{"id":"354263644bef5d184eb8890471e404f0","_format":"hh-sol-build-info-1","solcVersion":"0.8.30","solcLongVersion":"0.8.30+commit.73712a01","input":{"language":"Solidity","sources":{"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {IAccessManager} from \"@openzeppelin/contracts/access/manager/IAccessManager.sol\";\nimport {IAccessManagedProxy} from \"./interfaces/IAccessManagedProxy.sol\";\nimport {AccessManagedProxyBase} from \"./AccessManagedProxyBase.sol\";\nimport {AMPUtils} from \"./AMPUtils.sol\";\n\n/**\n * @title AccessManagedProxy\n * @notice Proxy contract using IAccessManager to manage access control before delegating calls (mutable version)\n * @dev It's a variant of ERC1967Proxy.\n *\n *      Currently the check is executed on any call received by the proxy contract (even calls to view methods, i.e.\n *      staticcall). For gas efficiency, you can also have `passThruMethods`, and for those methods it will skip\n *      the call to the AccessManager, calling directly to the implementation contract.\n *\n *      The accessManager and the passThruMethods are in the storage, but this contract doesn't include any method\n *      to modify them. They should be modified by the implementation contract (check AMPUtils for functions that\n *      encapsulate these operations).\n *\n *      Check https://forum.openzeppelin.com/t/accessmanagedproxy-is-a-good-idea/41917 for a discussion on the\n *      advantages and disadvantages of using it. Also https://www.youtube.com/watch?v=DKdwJ9Ap9vM for a presentation\n *      on this approach.\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract AccessManagedProxy is AccessManagedProxyBase {\n  /// @custom:storage-location erc7201:ensuro.storage.AccessManagedProxy\n  /// For struct AMPUtils.AccessManagedProxyStorage\n\n  /**\n   * @notice Constructor of the proxy, defining the implementation and the access manager\n   * @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation` and\n   *      with `accessManager` as the ACCESS_MANAGER that will handle access control.\n   *\n   * @param implementation The initial implementation contract.\n   * @param _data If nonempty, it's used as data in a delegate call to `implementation`. This will typically be an\n   *              encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\n   * @param accessManager The access manager that will handle access control\n   * @param passThruMethods The selector of methods that will skip the access control validation, typically used for\n   *                        views and other methods for gas optimization.\n   *\n   * @custom:pre If `_data` is empty, `msg.value` must be zero.\n   */\n  constructor(\n    address implementation,\n    bytes memory _data,\n    IAccessManager accessManager,\n    bytes4[] memory passThruMethods\n  ) payable AccessManagedProxyBase(implementation, _data) {\n    AMPUtils.setAccessManager(accessManager);\n    AMPUtils.setPassThruMethods(passThruMethods);\n  }\n\n  /// @inheritdoc AccessManagedProxyBase\n  function _skipAC(bytes4 selector) internal view override returns (bool) {\n    return AMPUtils.getAccessManagedProxyStorage().skipAc[selector];\n  }\n\n  /// @inheritdoc IAccessManagedProxy\n  // solhint-disable-next-line func-name-mixedcase\n  function PASS_THRU_METHODS() external view override returns (bytes4[] memory methods) {\n    return AMPUtils.getAccessManagedProxyStorage().passThruMethods;\n  }\n\n  /// @inheritdoc IAccessManagedProxy\n  // solhint-disable-next-line func-name-mixedcase\n  function ACCESS_MANAGER() public view override returns (IAccessManager) {\n    return AMPUtils.getAccessManagedProxyStorage().accessManager;\n  }\n}\n"},"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {ERC1967Proxy} from \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\";\nimport {IAccessManager} from \"@openzeppelin/contracts/access/manager/IAccessManager.sol\";\nimport {IAccessManagedProxy} from \"./interfaces/IAccessManagedProxy.sol\";\n\n/**\n * @title AccessManagedProxyBase\n * @notice Proxy contract using IAccessManager to manage access control before delegating calls.\n * @dev It's a variant of ERC1967Proxy.\n *\n *      Currently the check is executed on any call received by the proxy contract even calls to view methods\n *      (staticcall). In the setup of the ACCESS_MANAGER permissions you would want to make all the views and pure\n *      functions enabled for the PUBLIC_ROLE.\n *\n *      This base contract delegates on descendent contracts the storage of the ACCESS_MANAGER.\n *\n *      Check https://forum.openzeppelin.com/t/accessmanagedproxy-is-a-good-idea/41917 for a discussion on the\n *      advantages and disadvantages of using it.\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\nabstract contract AccessManagedProxyBase is ERC1967Proxy, IAccessManagedProxy {\n  bytes4 internal constant RECEIVE_SELECTOR = bytes4(keccak256(\"receive\"));\n  bytes4 internal constant FALLBACK_SELECTOR = bytes4(keccak256(\"fallback\"));\n\n  /**\n   * @notice Constructor of the proxy, defining the implementation and the access manager\n   * @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation` and\n   *      with `manager` as the ACCESS_MANAGER that will handle access control.\n   *\n   * @param implementation The initial implementation contract.\n   * @param _data If nonempty, it's used as data in a delegate call to `implementation`. This will typically be an\n   *              encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\n   *\n   * @custom:pre If `_data` is empty, `msg.value` must be zero.\n   */\n  constructor(address implementation, bytes memory _data) payable ERC1967Proxy(implementation, _data) {}\n\n  /// @inheritdoc IAccessManagedProxy\n  // solhint-disable-next-line func-name-mixedcase\n  function ACCESS_MANAGER() public view virtual returns (IAccessManager);\n\n  /// @inheritdoc IAccessManagedProxy\n  function authority() external view virtual returns (address) {\n    return address(ACCESS_MANAGER());\n  }\n\n  /**\n   * @notice Intercepts the super._delegate call to implement access control\n   * @dev Checks with the ACCESS_MANAGER if msg.sender is authorized to call the current call's function,\n   * and if so, delegates the current call to `implementation`.\n   * @param implementation The implementation contract\n   *\n   * This function does not return to its internal call site, it will return directly to the external caller.\n   */\n  function _delegate(address implementation) internal virtual override {\n    bytes4 selector = msg.data.length < 4\n      ? (msg.data.length == 0 ? RECEIVE_SELECTOR : FALLBACK_SELECTOR)\n      : bytes4(msg.data[0:4]);\n    bool immediate = _skipAC(selector); // reuse immediate variable both for skipped methods and canCall result\n    if (!immediate) {\n      (immediate, ) = ACCESS_MANAGER().canCall(msg.sender, address(this), selector);\n      if (!immediate) revert AccessManagedUnauthorized(msg.sender);\n    }\n    super._delegate(implementation);\n  }\n\n  /**\n   * @notice Returns whether to skip the access control validation or not\n   * @dev Hook called before ACCESS_MANAGER.canCall to enable skipping the call to the access manager for performance\n   *      reasons (for example on views) or to remove access control for other specific cases\n   * @param selector The selector of the method called\n   * @return Whether the access control using ACCESS_MANAGER should be skipped or not\n   */\n  function _skipAC(bytes4 selector) internal view virtual returns (bool);\n}\n"},"@ensuro/access-managed-proxy/contracts/AMPUtils.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {IAccessManager} from \"@openzeppelin/contracts/access/manager/IAccessManager.sol\";\nimport {IAccessManagedProxy} from \"./interfaces/IAccessManagedProxy.sol\";\n\n/**\n * @title AMPUtils\n * @dev Utility functions for doing custom access control rules, for contracts deployed\n *      with AccessManagedProxy\n * @author Ensuro\n */\nlibrary AMPUtils {\n  // Error copied from IAccessManaged\n  error AccessManagedUnauthorized(address caller);\n\n  struct AccessManagedProxyStorage {\n    IAccessManager accessManager;\n    bytes4[] passThruMethods; // This is used for observability\n    mapping(bytes4 => bool) skipAc; // This is the used for actual lookup\n  }\n\n  /**\n   * @notice Storage slot with the address of the current access mananger.\n   * @dev Computed as: `keccak256(\n   *    abi.encode(uint256(keccak256(\"ensuro.storage.AccessManagedProxy\")) - 1)\n   * ) & ~bytes32(uint256(0xff))\n   */\n  // solhint-disable-next-line const-name-snakecase\n  bytes32 internal constant AccessManagedProxyStorageLocation =\n    0x787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c00;\n\n  function getAccessManagedProxyStorage() internal pure returns (AccessManagedProxyStorage storage $) {\n    // solhint-disable-next-line no-inline-assembly\n    assembly {\n      $.slot := AccessManagedProxyStorageLocation\n    }\n  }\n\n  function setAccessManager(IAccessManager accessManager) internal {\n    if (address(accessManager).code.length == 0) {\n      revert IAccessManagedProxy.AccessManagedInvalidAuthority(address(accessManager));\n    }\n    getAccessManagedProxyStorage().accessManager = accessManager;\n    emit IAccessManagedProxy.AuthorityUpdated(address(accessManager));\n  }\n\n  function setPassThruMethods(bytes4[] memory passThruMethods) internal {\n    AccessManagedProxyStorage storage $ = AMPUtils.getAccessManagedProxyStorage();\n    $.passThruMethods = new bytes4[](passThruMethods.length);\n    for (uint256 i; i < passThruMethods.length; ++i) {\n      $.passThruMethods[i] = passThruMethods[i];\n      $.skipAc[passThruMethods[i]] = true;\n    }\n    emit IAccessManagedProxy.PassThruMethodsChanged(passThruMethods);\n  }\n\n  function replacePassThruMethods(bytes4[] memory newPassThruMethods) internal {\n    AccessManagedProxyStorage storage $ = AMPUtils.getAccessManagedProxyStorage();\n    bytes4[] memory oldPassThruMethods = $.passThruMethods;\n    for (uint256 i; i < oldPassThruMethods.length; ++i) {\n      $.skipAc[oldPassThruMethods[i]] = false;\n    }\n    setPassThruMethods(newPassThruMethods);\n  }\n\n  /**\n   * @dev Checks if the user can call a particular selector, assuming the calling contract was deployed as an AMP.\n   *\n   * @param user The user for which you want to check the access, typically msg.sender\n   * @param selector The selector of the method called (or a fake selector generated with makeSelector or another way)\n   */\n  function checkCanCall(address user, bytes4 selector) internal view {\n    (bool immediate, ) = IAccessManagedProxy(payable(address(this))).ACCESS_MANAGER().canCall(\n      user,\n      address(this),\n      selector\n    );\n    require(immediate, AccessManagedUnauthorized(user));\n  }\n\n  /**\n   * @dev Standard way of creating \"fake selectors\" (not necessarily tied to a method call) for specific permissions\n   */\n  function makeSelector(bytes memory something) internal pure returns (bytes4) {\n    return bytes4(keccak256(something));\n  }\n}\n"},"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IAccessManager} from \"@openzeppelin/contracts/access/manager/IAccessManager.sol\";\n\n/**\n * @title IAccessManagedProxy - Interface of AccessManagedProxy contracts\n * @notice This interface gives observability of the access control setup\n *\n * @dev The `ACCESS_MANAGER()` is the AccessManager contract that stores the access roles for most of the methods,\n * except those listed in `PASS_THRU_METHODS()` that are forwarded directly to the proxy and don't have access control\n * (at least not by the AccessManager contract).\n *\n * @author Ensuro\n */\ninterface IAccessManagedProxy {\n  /**\n   * @notice The ACCESS_MANAGER that manages the access controls was updated\n   * @dev Authority that manages this contract was updated. Uses same interface as OZ's IAccessManaged\n   */\n  // solhint-disable-next-line gas-indexed-events\n  event AuthorityUpdated(address authority);\n\n  /**\n   * @dev Emitted when the passThruMethods has changed.\n   */\n  event PassThruMethodsChanged(bytes4[] newPassThruMethods);\n\n  // Errors copied from OZ's IAccessManaged\n  error AccessManagedUnauthorized(address caller);\n  error AccessManagedInvalidAuthority(address authority);\n\n  /**\n   * @notice Returns the current authority.\n   * @dev Returns the current authority. Same as ACCESS_MANAGER(), added for compatibility with OZ's IAccessManaged\n   */\n  function authority() external view returns (address);\n\n  /**\n   * @notice AccessManager contract that handles the permissions to access the implementation methods\n   */\n  // solhint-disable-next-line func-name-mixedcase\n  function ACCESS_MANAGER() external view returns (IAccessManager);\n\n  /**\n   * @notice Gives observability to the methods that are skipped from access control\n   * @return methods The list of method selectors that skip ACCESS_MANAGER access control\n   */\n  // solhint-disable-next-line func-name-mixedcase\n  function PASS_THRU_METHODS() external view returns (bytes4[] memory methods);\n}\n"},"@ensuro/utils/contracts/TestCurrency.sol":{"content":"//SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {ERC20} from \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\n\ncontract TestCurrency is ERC20 {\n  uint8 internal immutable _decimals;\n\n  constructor(\n    string memory name_,\n    string memory symbol_,\n    uint256 initialSupply,\n    uint8 decimals_\n  ) ERC20(name_, symbol_) {\n    _decimals = decimals_;\n    _mint(msg.sender, initialSupply);\n  }\n\n  function decimals() public view virtual override returns (uint8) {\n    return _decimals;\n  }\n\n  function mint(address recipient, uint256 amount) public virtual {\n    return _mint(recipient, amount);\n  }\n\n  function burn(address recipient, uint256 amount) public virtual {\n    return _burn(recipient, amount);\n  }\n}\n"},"@ensuro/utils/contracts/TestCurrencyPermit.sol":{"content":"//SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {ERC20} from \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\nimport {ERC20Permit} from \"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol\";\n\ncontract TestCurrencyPermit is ERC20Permit {\n  uint8 internal immutable _decimals;\n\n  constructor(\n    string memory name_,\n    string memory symbol_,\n    uint256 initialSupply,\n    uint8 decimals_\n  ) ERC20(name_, symbol_) ERC20Permit(name_) {\n    _decimals = decimals_;\n    _mint(msg.sender, initialSupply);\n  }\n\n  function decimals() public view virtual override returns (uint8) {\n    return _decimals;\n  }\n\n  function mint(address recipient, uint256 amount) public virtual {\n    return _mint(recipient, amount);\n  }\n\n  function burn(address recipient, uint256 amount) public virtual {\n    return _burn(recipient, amount);\n  }\n}\n"},"@ensuro/utils/contracts/TestERC4626.sol":{"content":"//SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {ERC20} from \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\nimport {ERC4626} from \"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\n\ninterface IMintable {\n  function mint(address recipient, uint256 amount) external;\n  function burn(address recipient, uint256 amount) external;\n}\n\ncontract TestERC4626 is ERC4626 {\n  bool internal _broken;\n\n  uint256 public overrideMaxDeposit;\n  uint256 public overrideMaxMint;\n  uint256 public overrideMaxWithdraw;\n  uint256 public overrideMaxRedeem;\n\n  uint256 public constant OVERRIDE_UNSET = type(uint256).max - 99;\n\n  enum OverrideOption {\n    deposit,\n    mint,\n    withdraw,\n    redeem\n  }\n\n  error VaultIsBroken(bytes4 selector);\n\n  modifier isBroken() {\n    require(!_broken, VaultIsBroken(bytes4(msg.data[0:4])));\n    _;\n  }\n\n  constructor(string memory name_, string memory symbol_, IERC20Metadata asset_) ERC20(name_, symbol_) ERC4626(asset_) {\n    overrideMaxRedeem = overrideMaxWithdraw = overrideMaxMint = overrideMaxDeposit = OVERRIDE_UNSET;\n  }\n\n  function _deposit(\n    address caller,\n    address receiver,\n    uint256 assets,\n    uint256 shares\n  ) internal virtual override isBroken {\n    super._deposit(caller, receiver, assets, shares);\n  }\n\n  function _withdraw(\n    address caller,\n    address receiver,\n    address owner,\n    uint256 assets,\n    uint256 shares\n  ) internal virtual override isBroken {\n    super._withdraw(caller, receiver, owner, assets, shares);\n  }\n\n  /*\n   * @dev Adds or remove assets not generated by deposits/withdraw - For testing discrete earnings/losses\n   */\n  function discreteEarning(int256 assets) external {\n    if (assets > 0) {\n      IMintable(asset()).mint(address(this), uint256(assets));\n    } else {\n      IMintable(asset()).burn(address(this), uint256(-assets));\n    }\n  }\n\n  function setBroken(bool broken_) external {\n    _broken = broken_;\n  }\n\n  function broken() external view returns (bool) {\n    return _broken;\n  }\n\n  function maxDeposit(address owner) public view override returns (uint256) {\n    return overrideMaxDeposit == OVERRIDE_UNSET ? super.maxDeposit(owner) : overrideMaxDeposit;\n  }\n\n  function maxMint(address owner) public view override returns (uint256) {\n    return overrideMaxMint == OVERRIDE_UNSET ? super.maxMint(owner) : overrideMaxMint;\n  }\n\n  function maxWithdraw(address owner) public view override returns (uint256) {\n    return overrideMaxWithdraw == OVERRIDE_UNSET ? super.maxWithdraw(owner) : overrideMaxWithdraw;\n  }\n\n  function maxRedeem(address owner) public view override returns (uint256) {\n    return overrideMaxRedeem == OVERRIDE_UNSET ? super.maxRedeem(owner) : overrideMaxRedeem;\n  }\n\n  function setOverride(OverrideOption option, uint256 newValue) external {\n    if (option == OverrideOption.deposit) overrideMaxDeposit = newValue;\n    if (option == OverrideOption.mint) overrideMaxMint = newValue;\n    if (option == OverrideOption.withdraw) overrideMaxWithdraw = newValue;\n    if (option == OverrideOption.redeem) overrideMaxRedeem = newValue;\n  }\n}\n"},"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {ContextUpgradeable} from \"../../utils/ContextUpgradeable.sol\";\nimport {IERC20Errors} from \"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.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 ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20, IERC20Metadata, IERC20Errors {\n    /// @custom:storage-location erc7201:openzeppelin.storage.ERC20\n    struct ERC20Storage {\n        mapping(address account => uint256) _balances;\n\n        mapping(address account => mapping(address spender => uint256)) _allowances;\n\n        uint256 _totalSupply;\n\n        string _name;\n        string _symbol;\n    }\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.ERC20\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant ERC20StorageLocation = 0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00;\n\n    function _getERC20Storage() private pure returns (ERC20Storage storage $) {\n        assembly {\n            $.slot := ERC20StorageLocation\n        }\n    }\n\n    /**\n     * @dev Sets the values for {name} and {symbol}.\n     *\n     * Both values are immutable: they can only be set once during construction.\n     */\n    function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing {\n        __ERC20_init_unchained(name_, symbol_);\n    }\n\n    function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {\n        ERC20Storage storage $ = _getERC20Storage();\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        ERC20Storage storage $ = _getERC20Storage();\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        ERC20Storage storage $ = _getERC20Storage();\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    /// @inheritdoc IERC20\n    function totalSupply() public view virtual returns (uint256) {\n        ERC20Storage storage $ = _getERC20Storage();\n        return $._totalSupply;\n    }\n\n    /// @inheritdoc IERC20\n    function balanceOf(address account) public view virtual returns (uint256) {\n        ERC20Storage storage $ = _getERC20Storage();\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    /// @inheritdoc IERC20\n    function allowance(address owner, address spender) public view virtual returns (uint256) {\n        ERC20Storage storage $ = _getERC20Storage();\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        ERC20Storage storage $ = _getERC20Storage();\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 sets 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        ERC20Storage storage $ = _getERC20Storage();\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-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC20/extensions/ERC20Permit.sol)\n\npragma solidity ^0.8.24;\n\nimport {IERC20Permit} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\";\nimport {ERC20Upgradeable} from \"../ERC20Upgradeable.sol\";\nimport {ECDSA} from \"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\";\nimport {EIP712Upgradeable} from \"../../../utils/cryptography/EIP712Upgradeable.sol\";\nimport {NoncesUpgradeable} from \"../../../utils/NoncesUpgradeable.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\n\n/**\n * @dev Implementation of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n */\nabstract contract ERC20PermitUpgradeable is Initializable, ERC20Upgradeable, IERC20Permit, EIP712Upgradeable, NoncesUpgradeable {\n    bytes32 private constant PERMIT_TYPEHASH =\n        keccak256(\"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\");\n\n    /**\n     * @dev Permit deadline has expired.\n     */\n    error ERC2612ExpiredSignature(uint256 deadline);\n\n    /**\n     * @dev Mismatched signature.\n     */\n    error ERC2612InvalidSigner(address signer, address owner);\n\n    /**\n     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\"1\"`.\n     *\n     * It's a good idea to use the same `name` that is defined as the ERC-20 token name.\n     */\n    function __ERC20Permit_init(string memory name) internal onlyInitializing {\n        __EIP712_init_unchained(name, \"1\");\n    }\n\n    function __ERC20Permit_init_unchained(string memory) internal onlyInitializing {}\n\n    /// @inheritdoc IERC20Permit\n    function permit(\n        address owner,\n        address spender,\n        uint256 value,\n        uint256 deadline,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) public virtual {\n        if (block.timestamp > deadline) {\n            revert ERC2612ExpiredSignature(deadline);\n        }\n\n        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));\n\n        bytes32 hash = _hashTypedDataV4(structHash);\n\n        address signer = ECDSA.recover(hash, v, r, s);\n        if (signer != owner) {\n            revert ERC2612InvalidSigner(signer, owner);\n        }\n\n        _approve(owner, spender, value);\n    }\n\n    /// @inheritdoc IERC20Permit\n    function nonces(address owner) public view virtual override(IERC20Permit, NoncesUpgradeable) returns (uint256) {\n        return super.nonces(owner);\n    }\n\n    /// @inheritdoc IERC20Permit\n    // solhint-disable-next-line func-name-mixedcase\n    function DOMAIN_SEPARATOR() external view returns (bytes32) {\n        return _domainSeparatorV4();\n    }\n}\n"},"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC721/ERC721.sol)\n\npragma solidity ^0.8.24;\n\nimport {IERC721} from \"@openzeppelin/contracts/token/ERC721/IERC721.sol\";\nimport {IERC721Metadata} from \"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\";\nimport {ERC721Utils} from \"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol\";\nimport {ContextUpgradeable} from \"../../utils/ContextUpgradeable.sol\";\nimport {Strings} from \"@openzeppelin/contracts/utils/Strings.sol\";\nimport {IERC165} from \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\nimport {ERC165Upgradeable} from \"../../utils/introspection/ERC165Upgradeable.sol\";\nimport {IERC721Errors} from \"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\n\n/**\n * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC-721] Non-Fungible Token Standard, including\n * the Metadata extension, but not including the Enumerable extension, which is available separately as\n * {ERC721Enumerable}.\n */\nabstract contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721, IERC721Metadata, IERC721Errors {\n    using Strings for uint256;\n\n    /// @custom:storage-location erc7201:openzeppelin.storage.ERC721\n    struct ERC721Storage {\n        // Token name\n        string _name;\n\n        // Token symbol\n        string _symbol;\n\n        mapping(uint256 tokenId => address) _owners;\n\n        mapping(address owner => uint256) _balances;\n\n        mapping(uint256 tokenId => address) _tokenApprovals;\n\n        mapping(address owner => mapping(address operator => bool)) _operatorApprovals;\n    }\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.ERC721\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant ERC721StorageLocation = 0x80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300;\n\n    function _getERC721Storage() private pure returns (ERC721Storage storage $) {\n        assembly {\n            $.slot := ERC721StorageLocation\n        }\n    }\n\n    /**\n     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.\n     */\n    function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing {\n        __ERC721_init_unchained(name_, symbol_);\n    }\n\n    function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {\n        ERC721Storage storage $ = _getERC721Storage();\n        $._name = name_;\n        $._symbol = symbol_;\n    }\n\n    /// @inheritdoc IERC165\n    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165) returns (bool) {\n        return\n            interfaceId == type(IERC721).interfaceId ||\n            interfaceId == type(IERC721Metadata).interfaceId ||\n            super.supportsInterface(interfaceId);\n    }\n\n    /// @inheritdoc IERC721\n    function balanceOf(address owner) public view virtual returns (uint256) {\n        ERC721Storage storage $ = _getERC721Storage();\n        if (owner == address(0)) {\n            revert ERC721InvalidOwner(address(0));\n        }\n        return $._balances[owner];\n    }\n\n    /// @inheritdoc IERC721\n    function ownerOf(uint256 tokenId) public view virtual returns (address) {\n        return _requireOwned(tokenId);\n    }\n\n    /// @inheritdoc IERC721Metadata\n    function name() public view virtual returns (string memory) {\n        ERC721Storage storage $ = _getERC721Storage();\n        return $._name;\n    }\n\n    /// @inheritdoc IERC721Metadata\n    function symbol() public view virtual returns (string memory) {\n        ERC721Storage storage $ = _getERC721Storage();\n        return $._symbol;\n    }\n\n    /// @inheritdoc IERC721Metadata\n    function tokenURI(uint256 tokenId) public view virtual returns (string memory) {\n        _requireOwned(tokenId);\n\n        string memory baseURI = _baseURI();\n        return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : \"\";\n    }\n\n    /**\n     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each\n     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n     * by default, can be overridden in child contracts.\n     */\n    function _baseURI() internal view virtual returns (string memory) {\n        return \"\";\n    }\n\n    /// @inheritdoc IERC721\n    function approve(address to, uint256 tokenId) public virtual {\n        _approve(to, tokenId, _msgSender());\n    }\n\n    /// @inheritdoc IERC721\n    function getApproved(uint256 tokenId) public view virtual returns (address) {\n        _requireOwned(tokenId);\n\n        return _getApproved(tokenId);\n    }\n\n    /// @inheritdoc IERC721\n    function setApprovalForAll(address operator, bool approved) public virtual {\n        _setApprovalForAll(_msgSender(), operator, approved);\n    }\n\n    /// @inheritdoc IERC721\n    function isApprovedForAll(address owner, address operator) public view virtual returns (bool) {\n        ERC721Storage storage $ = _getERC721Storage();\n        return $._operatorApprovals[owner][operator];\n    }\n\n    /// @inheritdoc IERC721\n    function transferFrom(address from, address to, uint256 tokenId) public virtual {\n        if (to == address(0)) {\n            revert ERC721InvalidReceiver(address(0));\n        }\n        // Setting an \"auth\" arguments enables the `_isAuthorized` check which verifies that the token exists\n        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.\n        address previousOwner = _update(to, tokenId, _msgSender());\n        if (previousOwner != from) {\n            revert ERC721IncorrectOwner(from, tokenId, previousOwner);\n        }\n    }\n\n    /// @inheritdoc IERC721\n    function safeTransferFrom(address from, address to, uint256 tokenId) public {\n        safeTransferFrom(from, to, tokenId, \"\");\n    }\n\n    /// @inheritdoc IERC721\n    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {\n        transferFrom(from, to, tokenId);\n        ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data);\n    }\n\n    /**\n     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist\n     *\n     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the\n     * core ERC-721 logic MUST be matched with the use of {_increaseBalance} to keep balances\n     * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by\n     * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.\n     */\n    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {\n        ERC721Storage storage $ = _getERC721Storage();\n        return $._owners[tokenId];\n    }\n\n    /**\n     * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.\n     */\n    function _getApproved(uint256 tokenId) internal view virtual returns (address) {\n        ERC721Storage storage $ = _getERC721Storage();\n        return $._tokenApprovals[tokenId];\n    }\n\n    /**\n     * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in\n     * particular (ignoring whether it is owned by `owner`).\n     *\n     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this\n     * assumption.\n     */\n    function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {\n        return\n            spender != address(0) &&\n            (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);\n    }\n\n    /**\n     * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.\n     * Reverts if:\n     * - `spender` does not have approval from `owner` for `tokenId`.\n     * - `spender` does not have approval to manage all of `owner`'s assets.\n     *\n     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this\n     * assumption.\n     */\n    function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {\n        if (!_isAuthorized(owner, spender, tokenId)) {\n            if (owner == address(0)) {\n                revert ERC721NonexistentToken(tokenId);\n            } else {\n                revert ERC721InsufficientApproval(spender, tokenId);\n            }\n        }\n    }\n\n    /**\n     * @dev Unsafe write access to the balances, used by extensions that \"mint\" tokens using an {ownerOf} override.\n     *\n     * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that\n     * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.\n     *\n     * WARNING: Increasing an account's balance using this function tends to be paired with an override of the\n     * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership\n     * remain consistent with one another.\n     */\n    function _increaseBalance(address account, uint128 value) internal virtual {\n        ERC721Storage storage $ = _getERC721Storage();\n        unchecked {\n            $._balances[account] += value;\n        }\n    }\n\n    /**\n     * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner\n     * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.\n     *\n     * The `auth` argument is optional. If the value passed is non 0, then this function will check that\n     * `auth` is either the owner of the token, or approved to operate on the token (by the owner).\n     *\n     * Emits a {Transfer} event.\n     *\n     * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.\n     */\n    function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {\n        ERC721Storage storage $ = _getERC721Storage();\n        address from = _ownerOf(tokenId);\n\n        // Perform (optional) operator check\n        if (auth != address(0)) {\n            _checkAuthorized(from, auth, tokenId);\n        }\n\n        // Execute the update\n        if (from != address(0)) {\n            // Clear approval. No need to re-authorize or emit the Approval event\n            _approve(address(0), tokenId, address(0), false);\n\n            unchecked {\n                $._balances[from] -= 1;\n            }\n        }\n\n        if (to != address(0)) {\n            unchecked {\n                $._balances[to] += 1;\n            }\n        }\n\n        $._owners[tokenId] = to;\n\n        emit Transfer(from, to, tokenId);\n\n        return from;\n    }\n\n    /**\n     * @dev Mints `tokenId` and transfers it to `to`.\n     *\n     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible\n     *\n     * Requirements:\n     *\n     * - `tokenId` must not exist.\n     * - `to` cannot be the zero address.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _mint(address to, uint256 tokenId) internal {\n        if (to == address(0)) {\n            revert ERC721InvalidReceiver(address(0));\n        }\n        address previousOwner = _update(to, tokenId, address(0));\n        if (previousOwner != address(0)) {\n            revert ERC721InvalidSender(address(0));\n        }\n    }\n\n    /**\n     * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must not exist.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _safeMint(address to, uint256 tokenId) internal {\n        _safeMint(to, tokenId, \"\");\n    }\n\n    /**\n     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is\n     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.\n     */\n    function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {\n        _mint(to, tokenId);\n        ERC721Utils.checkOnERC721Received(_msgSender(), address(0), to, tokenId, data);\n    }\n\n    /**\n     * @dev Destroys `tokenId`.\n     * The approval is cleared when the token is burned.\n     * This is an internal function that does not check if the sender is authorized to operate on the token.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _burn(uint256 tokenId) internal {\n        address previousOwner = _update(address(0), tokenId, address(0));\n        if (previousOwner == address(0)) {\n            revert ERC721NonexistentToken(tokenId);\n        }\n    }\n\n    /**\n     * @dev Transfers `tokenId` from `from` to `to`.\n     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.\n     *\n     * Requirements:\n     *\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must be owned by `from`.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _transfer(address from, address to, uint256 tokenId) internal {\n        if (to == address(0)) {\n            revert ERC721InvalidReceiver(address(0));\n        }\n        address previousOwner = _update(to, tokenId, address(0));\n        if (previousOwner == address(0)) {\n            revert ERC721NonexistentToken(tokenId);\n        } else if (previousOwner != from) {\n            revert ERC721IncorrectOwner(from, tokenId, previousOwner);\n        }\n    }\n\n    /**\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients\n     * are aware of the ERC-721 standard to prevent tokens from being forever locked.\n     *\n     * `data` is additional data, it has no specified format and it is sent in call to `to`.\n     *\n     * This internal function is like {safeTransferFrom} in the sense that it invokes\n     * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.\n     * implement alternative mechanisms to perform token transfer, such as signature-based.\n     *\n     * Requirements:\n     *\n     * - `tokenId` token must exist and be owned by `from`.\n     * - `to` cannot be the zero address.\n     * - `from` cannot be the zero address.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _safeTransfer(address from, address to, uint256 tokenId) internal {\n        _safeTransfer(from, to, tokenId, \"\");\n    }\n\n    /**\n     * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is\n     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.\n     */\n    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {\n        _transfer(from, to, tokenId);\n        ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data);\n    }\n\n    /**\n     * @dev Approve `to` to operate on `tokenId`\n     *\n     * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is\n     * either the owner of the token, or approved to operate on all tokens held by this owner.\n     *\n     * Emits an {Approval} event.\n     *\n     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.\n     */\n    function _approve(address to, uint256 tokenId, address auth) internal {\n        _approve(to, tokenId, auth, true);\n    }\n\n    /**\n     * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not\n     * emitted in the context of transfers.\n     */\n    function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {\n        ERC721Storage storage $ = _getERC721Storage();\n        // Avoid reading the owner unless necessary\n        if (emitEvent || auth != address(0)) {\n            address owner = _requireOwned(tokenId);\n\n            // We do not use _isAuthorized because single-token approvals should not be able to call approve\n            if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {\n                revert ERC721InvalidApprover(auth);\n            }\n\n            if (emitEvent) {\n                emit Approval(owner, to, tokenId);\n            }\n        }\n\n        $._tokenApprovals[tokenId] = to;\n    }\n\n    /**\n     * @dev Approve `operator` to operate on all of `owner` tokens\n     *\n     * Requirements:\n     * - operator can't be the address zero.\n     *\n     * Emits an {ApprovalForAll} event.\n     */\n    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {\n        ERC721Storage storage $ = _getERC721Storage();\n        if (operator == address(0)) {\n            revert ERC721InvalidOperator(operator);\n        }\n        $._operatorApprovals[owner][operator] = approved;\n        emit ApprovalForAll(owner, operator, approved);\n    }\n\n    /**\n     * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).\n     * Returns the owner.\n     *\n     * Overrides to ownership logic should be done to {_ownerOf}.\n     */\n    function _requireOwned(uint256 tokenId) internal view returns (address) {\n        address owner = _ownerOf(tokenId);\n        if (owner == address(0)) {\n            revert ERC721NonexistentToken(tokenId);\n        }\n        return owner;\n    }\n}\n"},"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)\n\npragma solidity ^0.8.20;\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\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 ContextUpgradeable is Initializable {\n    function __Context_init() internal onlyInitializing {\n    }\n\n    function __Context_init_unchained() internal onlyInitializing {\n    }\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-upgradeable/utils/cryptography/EIP712Upgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/cryptography/EIP712.sol)\n\npragma solidity ^0.8.24;\n\nimport {MessageHashUtils} from \"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\";\nimport {IERC5267} from \"@openzeppelin/contracts/interfaces/IERC5267.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.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: The upgradeable version of this contract does not use an immutable cache and recomputes the domain separator\n * each time {_domainSeparatorV4} is called. That is cheaper than accessing a cached version in cold storage.\n */\nabstract contract EIP712Upgradeable is Initializable, IERC5267 {\n    bytes32 private constant TYPE_HASH =\n        keccak256(\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\");\n\n    /// @custom:storage-location erc7201:openzeppelin.storage.EIP712\n    struct EIP712Storage {\n        /// @custom:oz-renamed-from _HASHED_NAME\n        bytes32 _hashedName;\n        /// @custom:oz-renamed-from _HASHED_VERSION\n        bytes32 _hashedVersion;\n\n        string _name;\n        string _version;\n    }\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.EIP712\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant EIP712StorageLocation = 0xa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d100;\n\n    function _getEIP712Storage() private pure returns (EIP712Storage storage $) {\n        assembly {\n            $.slot := EIP712StorageLocation\n        }\n    }\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    function __EIP712_init(string memory name, string memory version) internal onlyInitializing {\n        __EIP712_init_unchained(name, version);\n    }\n\n    function __EIP712_init_unchained(string memory name, string memory version) internal onlyInitializing {\n        EIP712Storage storage $ = _getEIP712Storage();\n        $._name = name;\n        $._version = version;\n\n        // Reset prior values in storage if upgrading\n        $._hashedName = 0;\n        $._hashedVersion = 0;\n    }\n\n    /**\n     * @dev Returns the domain separator for the current chain.\n     */\n    function _domainSeparatorV4() internal view returns (bytes32) {\n        return _buildDomainSeparator();\n    }\n\n    function _buildDomainSeparator() private view returns (bytes32) {\n        return keccak256(abi.encode(TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash(), 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    /// @inheritdoc IERC5267\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        EIP712Storage storage $ = _getEIP712Storage();\n        // If the hashed name and version in storage are non-zero, the contract hasn't been properly initialized\n        // and the EIP712 domain is not reliable, as it will be missing name and version.\n        require($._hashedName == 0 && $._hashedVersion == 0, \"EIP712: Uninitialized\");\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: This function reads from storage by default, but can be redefined to return a constant value if gas costs\n     * are a concern.\n     */\n    function _EIP712Name() internal view virtual returns (string memory) {\n        EIP712Storage storage $ = _getEIP712Storage();\n        return $._name;\n    }\n\n    /**\n     * @dev The version parameter for the EIP712 domain.\n     *\n     * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs\n     * are a concern.\n     */\n    function _EIP712Version() internal view virtual returns (string memory) {\n        EIP712Storage storage $ = _getEIP712Storage();\n        return $._version;\n    }\n\n    /**\n     * @dev The hash of the name parameter for the EIP712 domain.\n     *\n     * NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Name` instead.\n     */\n    function _EIP712NameHash() internal view returns (bytes32) {\n        EIP712Storage storage $ = _getEIP712Storage();\n        string memory name = _EIP712Name();\n        if (bytes(name).length > 0) {\n            return keccak256(bytes(name));\n        } else {\n            // If the name is empty, the contract may have been upgraded without initializing the new storage.\n            // We return the name hash in storage if non-zero, otherwise we assume the name is empty by design.\n            bytes32 hashedName = $._hashedName;\n            if (hashedName != 0) {\n                return hashedName;\n            } else {\n                return keccak256(\"\");\n            }\n        }\n    }\n\n    /**\n     * @dev The hash of the version parameter for the EIP712 domain.\n     *\n     * NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Version` instead.\n     */\n    function _EIP712VersionHash() internal view returns (bytes32) {\n        EIP712Storage storage $ = _getEIP712Storage();\n        string memory version = _EIP712Version();\n        if (bytes(version).length > 0) {\n            return keccak256(bytes(version));\n        } else {\n            // If the version is empty, the contract may have been upgraded without initializing the new storage.\n            // We return the version hash in storage if non-zero, otherwise we assume the version is empty by design.\n            bytes32 hashedVersion = $._hashedVersion;\n            if (hashedVersion != 0) {\n                return hashedVersion;\n            } else {\n                return keccak256(\"\");\n            }\n        }\n    }\n}\n"},"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165 {\n    function __ERC165_init() internal onlyInitializing {\n    }\n\n    function __ERC165_init_unchained() internal onlyInitializing {\n    }\n    /// @inheritdoc IERC165\n    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {\n        return interfaceId == type(IERC165).interfaceId;\n    }\n}\n"},"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/Multicall.sol)\n\npragma solidity ^0.8.20;\n\nimport {Address} from \"@openzeppelin/contracts/utils/Address.sol\";\nimport {ContextUpgradeable} from \"./ContextUpgradeable.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\n\n/**\n * @dev Provides a function to batch together multiple calls in a single external call.\n *\n * Consider any assumption about calldata validation performed by the sender may be violated if it's not especially\n * careful about sending transactions invoking {multicall}. For example, a relay address that filters function\n * selectors won't filter calls nested within a {multicall} operation.\n *\n * NOTE: Since 5.0.1 and 4.9.4, this contract identifies non-canonical contexts (i.e. `msg.sender` is not {Context-_msgSender}).\n * If a non-canonical context is identified, the following self `delegatecall` appends the last bytes of `msg.data`\n * to the subcall. This makes it safe to use with {ERC2771Context}. Contexts that don't affect the resolution of\n * {Context-_msgSender} are not propagated to subcalls.\n */\nabstract contract MulticallUpgradeable is Initializable, ContextUpgradeable {\n    function __Multicall_init() internal onlyInitializing {\n    }\n\n    function __Multicall_init_unchained() internal onlyInitializing {\n    }\n    /**\n     * @dev Receives and executes a batch of function calls on this contract.\n     * @custom:oz-upgrades-unsafe-allow-reachable delegatecall\n     */\n    function multicall(bytes[] calldata data) public virtual returns (bytes[] memory results) {\n        bytes memory context = msg.sender == _msgSender()\n            ? new bytes(0)\n            : msg.data[msg.data.length - _contextSuffixLength():];\n\n        results = new bytes[](data.length);\n        for (uint256 i = 0; i < data.length; i++) {\n            results[i] = Address.functionDelegateCall(address(this), bytes.concat(data[i], context));\n        }\n        return results;\n    }\n}\n"},"@openzeppelin/contracts-upgradeable/utils/NoncesUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol)\npragma solidity ^0.8.20;\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\n\n/**\n * @dev Provides tracking nonces for addresses. Nonces will only increment.\n */\nabstract contract NoncesUpgradeable is Initializable {\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    /// @custom:storage-location erc7201:openzeppelin.storage.Nonces\n    struct NoncesStorage {\n        mapping(address account => uint256) _nonces;\n    }\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.Nonces\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant NoncesStorageLocation = 0x5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb00;\n\n    function _getNoncesStorage() private pure returns (NoncesStorage storage $) {\n        assembly {\n            $.slot := NoncesStorageLocation\n        }\n    }\n\n    function __Nonces_init() internal onlyInitializing {\n    }\n\n    function __Nonces_init_unchained() internal onlyInitializing {\n    }\n    /**\n     * @dev Returns the next unused nonce for an address.\n     */\n    function nonces(address owner) public view virtual returns (uint256) {\n        NoncesStorage storage $ = _getNoncesStorage();\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        NoncesStorage storage $ = _getNoncesStorage();\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-upgradeable/utils/PausableUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (utils/Pausable.sol)\n\npragma solidity ^0.8.20;\n\nimport {ContextUpgradeable} from \"../utils/ContextUpgradeable.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\n\n/**\n * @dev Contract module which allows children to implement an emergency stop\n * mechanism that can be triggered by an authorized account.\n *\n * This module is used through inheritance. It will make available the\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\n * the functions of your contract. Note that they will not be pausable by\n * simply including this module, only once the modifiers are put in place.\n */\nabstract contract PausableUpgradeable is Initializable, ContextUpgradeable {\n    /// @custom:storage-location erc7201:openzeppelin.storage.Pausable\n    struct PausableStorage {\n        bool _paused;\n    }\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.Pausable\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant PausableStorageLocation = 0xcd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300;\n\n    function _getPausableStorage() private pure returns (PausableStorage storage $) {\n        assembly {\n            $.slot := PausableStorageLocation\n        }\n    }\n\n    /**\n     * @dev Emitted when the pause is triggered by `account`.\n     */\n    event Paused(address account);\n\n    /**\n     * @dev Emitted when the pause is lifted by `account`.\n     */\n    event Unpaused(address account);\n\n    /**\n     * @dev The operation failed because the contract is paused.\n     */\n    error EnforcedPause();\n\n    /**\n     * @dev The operation failed because the contract is not paused.\n     */\n    error ExpectedPause();\n\n    /**\n     * @dev Modifier to make a function callable only when the contract is not paused.\n     *\n     * Requirements:\n     *\n     * - The contract must not be paused.\n     */\n    modifier whenNotPaused() {\n        _requireNotPaused();\n        _;\n    }\n\n    /**\n     * @dev Modifier to make a function callable only when the contract is paused.\n     *\n     * Requirements:\n     *\n     * - The contract must be paused.\n     */\n    modifier whenPaused() {\n        _requirePaused();\n        _;\n    }\n\n    function __Pausable_init() internal onlyInitializing {\n    }\n\n    function __Pausable_init_unchained() internal onlyInitializing {\n    }\n    /**\n     * @dev Returns true if the contract is paused, and false otherwise.\n     */\n    function paused() public view virtual returns (bool) {\n        PausableStorage storage $ = _getPausableStorage();\n        return $._paused;\n    }\n\n    /**\n     * @dev Throws if the contract is paused.\n     */\n    function _requireNotPaused() internal view virtual {\n        if (paused()) {\n            revert EnforcedPause();\n        }\n    }\n\n    /**\n     * @dev Throws if the contract is not paused.\n     */\n    function _requirePaused() internal view virtual {\n        if (!paused()) {\n            revert ExpectedPause();\n        }\n    }\n\n    /**\n     * @dev Triggers stopped state.\n     *\n     * Requirements:\n     *\n     * - The contract must not be paused.\n     */\n    function _pause() internal virtual whenNotPaused {\n        PausableStorage storage $ = _getPausableStorage();\n        $._paused = true;\n        emit Paused(_msgSender());\n    }\n\n    /**\n     * @dev Returns to normal state.\n     *\n     * Requirements:\n     *\n     * - The contract must be paused.\n     */\n    function _unpause() internal virtual whenPaused {\n        PausableStorage storage $ = _getPausableStorage();\n        $._paused = false;\n        emit Unpaused(_msgSender());\n    }\n}\n"},"@openzeppelin/contracts/access/IAccessControl.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (access/IAccessControl.sol)\n\npragma solidity >=0.8.4;\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 to signal 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/access/manager/AccessManager.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (access/manager/AccessManager.sol)\n\npragma solidity ^0.8.20;\n\nimport {IAccessManager} from \"./IAccessManager.sol\";\nimport {IAccessManaged} from \"./IAccessManaged.sol\";\nimport {Address} from \"../../utils/Address.sol\";\nimport {Context} from \"../../utils/Context.sol\";\nimport {Multicall} from \"../../utils/Multicall.sol\";\nimport {Math} from \"../../utils/math/Math.sol\";\nimport {Time} from \"../../utils/types/Time.sol\";\nimport {Hashes} from \"../../utils/cryptography/Hashes.sol\";\n\n/**\n * @dev AccessManager is a central contract to store the permissions of a system.\n *\n * A smart contract under the control of an AccessManager instance is known as a target, and will inherit from the\n * {AccessManaged} contract, be connected to this contract as its manager and implement the {AccessManaged-restricted}\n * modifier on a set of functions selected to be permissioned. Note that any function without this setup won't be\n * effectively restricted.\n *\n * The restriction rules for such functions are defined in terms of \"roles\" identified by an `uint64` and scoped\n * by target (`address`) and function selectors (`bytes4`). These roles are stored in this contract and can be\n * configured by admins (`ADMIN_ROLE` members) after a delay (see {getTargetAdminDelay}).\n *\n * For each target contract, admins can configure the following without any delay:\n *\n * * The target's {AccessManaged-authority} via {updateAuthority}.\n * * Close or open a target via {setTargetClosed} keeping the permissions intact.\n * * The roles that are allowed (or disallowed) to call a given function (identified by its selector) through {setTargetFunctionRole}.\n *\n * By default every address is member of the `PUBLIC_ROLE` and every target function is restricted to the `ADMIN_ROLE` until configured otherwise.\n * Additionally, each role has the following configuration options restricted to this manager's admins:\n *\n * * A role's admin role via {setRoleAdmin} who can grant or revoke roles.\n * * A role's guardian role via {setRoleGuardian} who's allowed to cancel operations.\n * * A delay in which a role takes effect after being granted through {setGrantDelay}.\n * * A delay of any target's admin action via {setTargetAdminDelay}.\n * * A role label for discoverability purposes with {labelRole}.\n *\n * Any account can be added and removed into any number of these roles by using the {grantRole} and {revokeRole} functions\n * restricted to each role's admin (see {getRoleAdmin}).\n *\n * Since all the permissions of the managed system can be modified by the admins of this instance, it is expected that\n * they will be highly secured (e.g., a multisig or a well-configured DAO).\n *\n * NOTE: This contract implements a form of the {IAuthority} interface, but {canCall} has additional return data so it\n * doesn't inherit `IAuthority`. It is however compatible with the `IAuthority` interface since the first 32 bytes of\n * the return data are a boolean as expected by that interface.\n *\n * NOTE: Systems that implement other access control mechanisms (for example using {Ownable}) can be paired with an\n * {AccessManager} by transferring permissions (ownership in the case of {Ownable}) directly to the {AccessManager}.\n * Users will be able to interact with these contracts through the {execute} function, following the access rules\n * registered in the {AccessManager}. Keep in mind that in that context, the msg.sender seen by restricted functions\n * will be {AccessManager} itself.\n *\n * WARNING: When granting permissions over an {Ownable} or {AccessControl} contract to an {AccessManager}, be very\n * mindful of the danger associated with functions such as {Ownable-renounceOwnership} or\n * {AccessControl-renounceRole}.\n */\ncontract AccessManager is Context, Multicall, IAccessManager {\n    using Time for *;\n\n    // Structure that stores the details for a target contract.\n    struct TargetConfig {\n        mapping(bytes4 selector => uint64 roleId) allowedRoles;\n        Time.Delay adminDelay;\n        bool closed;\n    }\n\n    // Structure that stores the details for a role/account pair. This structure fits into a single slot.\n    struct Access {\n        // Timepoint at which the user gets the permission.\n        // If this is either 0 or in the future, then the role permission is not available.\n        uint48 since;\n        // Delay for execution. Only applies to restricted() / execute() calls.\n        Time.Delay delay;\n    }\n\n    // Structure that stores the details of a role.\n    struct Role {\n        // Members of the role.\n        mapping(address user => Access access) members;\n        // Admin who can grant or revoke permissions.\n        uint64 admin;\n        // Guardian who can cancel operations targeting functions that need this role.\n        uint64 guardian;\n        // Delay in which the role takes effect after being granted.\n        Time.Delay grantDelay;\n    }\n\n    // Structure that stores the details for a scheduled operation. This structure fits into a single slot.\n    struct Schedule {\n        // Moment at which the operation can be executed.\n        uint48 timepoint;\n        // Operation nonce to allow third-party contracts to identify the operation.\n        uint32 nonce;\n    }\n\n    /**\n     * @dev The identifier of the admin role. Required to perform most configuration operations including\n     * other roles' management and target restrictions.\n     */\n    uint64 public constant ADMIN_ROLE = type(uint64).min; // 0\n\n    /**\n     * @dev The identifier of the public role. Automatically granted to all addresses with no delay.\n     */\n    uint64 public constant PUBLIC_ROLE = type(uint64).max; // 2**64-1\n\n    mapping(address target => TargetConfig mode) private _targets;\n    mapping(uint64 roleId => Role) private _roles;\n    mapping(bytes32 operationId => Schedule) private _schedules;\n\n    // Used to identify operations that are currently being executed via {execute}.\n    // This should be transient storage when supported by the EVM.\n    bytes32 private _executionId;\n\n    /**\n     * @dev Check that the caller is authorized to perform the operation.\n     * See {AccessManager} description for a detailed breakdown of the authorization logic.\n     */\n    modifier onlyAuthorized() {\n        _checkAuthorized();\n        _;\n    }\n\n    constructor(address initialAdmin) {\n        if (initialAdmin == address(0)) {\n            revert AccessManagerInvalidInitialAdmin(address(0));\n        }\n\n        // admin is active immediately and without any execution delay.\n        _grantRole(ADMIN_ROLE, initialAdmin, 0, 0);\n    }\n\n    // =================================================== GETTERS ====================================================\n    /// @inheritdoc IAccessManager\n    function canCall(\n        address caller,\n        address target,\n        bytes4 selector\n    ) public view virtual returns (bool immediate, uint32 delay) {\n        if (isTargetClosed(target)) {\n            return (false, 0);\n        } else if (caller == address(this)) {\n            // Caller is AccessManager, this means the call was sent through {execute} and it already checked\n            // permissions. We verify that the call \"identifier\", which is set during {execute}, is correct.\n            return (_isExecuting(target, selector), 0);\n        } else {\n            uint64 roleId = getTargetFunctionRole(target, selector);\n            (bool isMember, uint32 currentDelay) = hasRole(roleId, caller);\n            return isMember ? (currentDelay == 0, currentDelay) : (false, 0);\n        }\n    }\n\n    /// @inheritdoc IAccessManager\n    function expiration() public view virtual returns (uint32) {\n        return 1 weeks;\n    }\n\n    /// @inheritdoc IAccessManager\n    function minSetback() public view virtual returns (uint32) {\n        return 5 days;\n    }\n\n    /// @inheritdoc IAccessManager\n    function isTargetClosed(address target) public view virtual returns (bool) {\n        return _targets[target].closed;\n    }\n\n    /// @inheritdoc IAccessManager\n    function getTargetFunctionRole(address target, bytes4 selector) public view virtual returns (uint64) {\n        return _targets[target].allowedRoles[selector];\n    }\n\n    /// @inheritdoc IAccessManager\n    function getTargetAdminDelay(address target) public view virtual returns (uint32) {\n        return _targets[target].adminDelay.get();\n    }\n\n    /// @inheritdoc IAccessManager\n    function getRoleAdmin(uint64 roleId) public view virtual returns (uint64) {\n        return _roles[roleId].admin;\n    }\n\n    /// @inheritdoc IAccessManager\n    function getRoleGuardian(uint64 roleId) public view virtual returns (uint64) {\n        return _roles[roleId].guardian;\n    }\n\n    /// @inheritdoc IAccessManager\n    function getRoleGrantDelay(uint64 roleId) public view virtual returns (uint32) {\n        return _roles[roleId].grantDelay.get();\n    }\n\n    /// @inheritdoc IAccessManager\n    function getAccess(\n        uint64 roleId,\n        address account\n    ) public view virtual returns (uint48 since, uint32 currentDelay, uint32 pendingDelay, uint48 effect) {\n        Access storage access = _roles[roleId].members[account];\n\n        since = access.since;\n        (currentDelay, pendingDelay, effect) = access.delay.getFull();\n\n        return (since, currentDelay, pendingDelay, effect);\n    }\n\n    /// @inheritdoc IAccessManager\n    function hasRole(\n        uint64 roleId,\n        address account\n    ) public view virtual returns (bool isMember, uint32 executionDelay) {\n        if (roleId == PUBLIC_ROLE) {\n            return (true, 0);\n        } else {\n            (uint48 hasRoleSince, uint32 currentDelay, , ) = getAccess(roleId, account);\n            return (hasRoleSince != 0 && hasRoleSince <= Time.timestamp(), currentDelay);\n        }\n    }\n\n    // =============================================== ROLE MANAGEMENT ===============================================\n    /// @inheritdoc IAccessManager\n    function labelRole(uint64 roleId, string calldata label) public virtual onlyAuthorized {\n        if (roleId == ADMIN_ROLE || roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n        emit RoleLabel(roleId, label);\n    }\n\n    /// @inheritdoc IAccessManager\n    function grantRole(uint64 roleId, address account, uint32 executionDelay) public virtual onlyAuthorized {\n        _grantRole(roleId, account, getRoleGrantDelay(roleId), executionDelay);\n    }\n\n    /// @inheritdoc IAccessManager\n    function revokeRole(uint64 roleId, address account) public virtual onlyAuthorized {\n        _revokeRole(roleId, account);\n    }\n\n    /// @inheritdoc IAccessManager\n    function renounceRole(uint64 roleId, address callerConfirmation) public virtual {\n        if (callerConfirmation != _msgSender()) {\n            revert AccessManagerBadConfirmation();\n        }\n        _revokeRole(roleId, callerConfirmation);\n    }\n\n    /// @inheritdoc IAccessManager\n    function setRoleAdmin(uint64 roleId, uint64 admin) public virtual onlyAuthorized {\n        _setRoleAdmin(roleId, admin);\n    }\n\n    /// @inheritdoc IAccessManager\n    function setRoleGuardian(uint64 roleId, uint64 guardian) public virtual onlyAuthorized {\n        _setRoleGuardian(roleId, guardian);\n    }\n\n    /// @inheritdoc IAccessManager\n    function setGrantDelay(uint64 roleId, uint32 newDelay) public virtual onlyAuthorized {\n        _setGrantDelay(roleId, newDelay);\n    }\n\n    /**\n     * @dev Internal version of {grantRole} without access control. Returns true if the role was newly granted.\n     *\n     * Emits a {RoleGranted} event.\n     */\n    function _grantRole(\n        uint64 roleId,\n        address account,\n        uint32 grantDelay,\n        uint32 executionDelay\n    ) internal virtual returns (bool) {\n        if (roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n\n        bool newMember = _roles[roleId].members[account].since == 0;\n        uint48 since;\n\n        if (newMember) {\n            since = Time.timestamp() + grantDelay;\n            _roles[roleId].members[account] = Access({since: since, delay: executionDelay.toDelay()});\n        } else {\n            // No setback here. Value can be reset by doing revoke + grant, effectively allowing the admin to perform\n            // any change to the execution delay within the duration of the role admin delay.\n            (_roles[roleId].members[account].delay, since) = _roles[roleId].members[account].delay.withUpdate(\n                executionDelay,\n                0\n            );\n        }\n\n        emit RoleGranted(roleId, account, executionDelay, since, newMember);\n        return newMember;\n    }\n\n    /**\n     * @dev Internal version of {revokeRole} without access control. This logic is also used by {renounceRole}.\n     * Returns true if the role was previously granted.\n     *\n     * Emits a {RoleRevoked} event if the account had the role.\n     */\n    function _revokeRole(uint64 roleId, address account) internal virtual returns (bool) {\n        if (roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n\n        if (_roles[roleId].members[account].since == 0) {\n            return false;\n        }\n\n        delete _roles[roleId].members[account];\n\n        emit RoleRevoked(roleId, account);\n        return true;\n    }\n\n    /**\n     * @dev Internal version of {setRoleAdmin} without access control.\n     *\n     * Emits a {RoleAdminChanged} event.\n     *\n     * NOTE: Setting the admin role as the `PUBLIC_ROLE` is allowed, but it will effectively allow\n     * anyone to set grant or revoke such role.\n     */\n    function _setRoleAdmin(uint64 roleId, uint64 admin) internal virtual {\n        if (roleId == ADMIN_ROLE || roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n\n        _roles[roleId].admin = admin;\n\n        emit RoleAdminChanged(roleId, admin);\n    }\n\n    /**\n     * @dev Internal version of {setRoleGuardian} without access control.\n     *\n     * Emits a {RoleGuardianChanged} event.\n     *\n     * NOTE: Setting the guardian role as the `PUBLIC_ROLE` is allowed, but it will effectively allow\n     * anyone to cancel any scheduled operation for such role.\n     */\n    function _setRoleGuardian(uint64 roleId, uint64 guardian) internal virtual {\n        if (roleId == ADMIN_ROLE || roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n\n        _roles[roleId].guardian = guardian;\n\n        emit RoleGuardianChanged(roleId, guardian);\n    }\n\n    /**\n     * @dev Internal version of {setGrantDelay} without access control.\n     *\n     * Emits a {RoleGrantDelayChanged} event.\n     */\n    function _setGrantDelay(uint64 roleId, uint32 newDelay) internal virtual {\n        if (roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n\n        uint48 effect;\n        (_roles[roleId].grantDelay, effect) = _roles[roleId].grantDelay.withUpdate(newDelay, minSetback());\n\n        emit RoleGrantDelayChanged(roleId, newDelay, effect);\n    }\n\n    // ============================================= FUNCTION MANAGEMENT ==============================================\n    /// @inheritdoc IAccessManager\n    function setTargetFunctionRole(\n        address target,\n        bytes4[] calldata selectors,\n        uint64 roleId\n    ) public virtual onlyAuthorized {\n        for (uint256 i = 0; i < selectors.length; ++i) {\n            _setTargetFunctionRole(target, selectors[i], roleId);\n        }\n    }\n\n    /**\n     * @dev Internal version of {setTargetFunctionRole} without access control.\n     *\n     * Emits a {TargetFunctionRoleUpdated} event.\n     */\n    function _setTargetFunctionRole(address target, bytes4 selector, uint64 roleId) internal virtual {\n        _targets[target].allowedRoles[selector] = roleId;\n        emit TargetFunctionRoleUpdated(target, selector, roleId);\n    }\n\n    /// @inheritdoc IAccessManager\n    function setTargetAdminDelay(address target, uint32 newDelay) public virtual onlyAuthorized {\n        _setTargetAdminDelay(target, newDelay);\n    }\n\n    /**\n     * @dev Internal version of {setTargetAdminDelay} without access control.\n     *\n     * Emits a {TargetAdminDelayUpdated} event.\n     */\n    function _setTargetAdminDelay(address target, uint32 newDelay) internal virtual {\n        uint48 effect;\n        (_targets[target].adminDelay, effect) = _targets[target].adminDelay.withUpdate(newDelay, minSetback());\n\n        emit TargetAdminDelayUpdated(target, newDelay, effect);\n    }\n\n    // =============================================== MODE MANAGEMENT ================================================\n    /// @inheritdoc IAccessManager\n    function setTargetClosed(address target, bool closed) public virtual onlyAuthorized {\n        _setTargetClosed(target, closed);\n    }\n\n    /**\n     * @dev Set the closed flag for a contract. This is an internal setter with no access restrictions.\n     *\n     * Emits a {TargetClosed} event.\n     */\n    function _setTargetClosed(address target, bool closed) internal virtual {\n        _targets[target].closed = closed;\n        emit TargetClosed(target, closed);\n    }\n\n    // ============================================== DELAYED OPERATIONS ==============================================\n    /// @inheritdoc IAccessManager\n    function getSchedule(bytes32 id) public view virtual returns (uint48) {\n        uint48 timepoint = _schedules[id].timepoint;\n        return _isExpired(timepoint) ? 0 : timepoint;\n    }\n\n    /// @inheritdoc IAccessManager\n    function getNonce(bytes32 id) public view virtual returns (uint32) {\n        return _schedules[id].nonce;\n    }\n\n    /// @inheritdoc IAccessManager\n    function schedule(\n        address target,\n        bytes calldata data,\n        uint48 when\n    ) public virtual returns (bytes32 operationId, uint32 nonce) {\n        address caller = _msgSender();\n\n        // Fetch restrictions that apply to the caller on the targeted function\n        (, uint32 setback) = _canCallExtended(caller, target, data);\n\n        uint48 minWhen = Time.timestamp() + setback;\n\n        // If call with delay is not authorized, or if requested timing is too soon, revert\n        if (setback == 0 || (when > 0 && when < minWhen)) {\n            revert AccessManagerUnauthorizedCall(caller, target, _checkSelector(data));\n        }\n\n        // Reuse variable due to stack too deep\n        when = uint48(Math.max(when, minWhen)); // cast is safe: both inputs are uint48\n\n        // If caller is authorised, schedule operation\n        operationId = hashOperation(caller, target, data);\n\n        _checkNotScheduled(operationId);\n\n        unchecked {\n            // It's not feasible to overflow the nonce in less than 1000 years\n            nonce = _schedules[operationId].nonce + 1;\n        }\n        _schedules[operationId].timepoint = when;\n        _schedules[operationId].nonce = nonce;\n        emit OperationScheduled(operationId, nonce, when, caller, target, data);\n\n        // Using named return values because otherwise we get stack too deep\n    }\n\n    /**\n     * @dev Reverts if the operation is currently scheduled and has not expired.\n     *\n     * NOTE: This function was introduced due to stack too deep errors in schedule.\n     */\n    function _checkNotScheduled(bytes32 operationId) private view {\n        uint48 prevTimepoint = _schedules[operationId].timepoint;\n        if (prevTimepoint != 0 && !_isExpired(prevTimepoint)) {\n            revert AccessManagerAlreadyScheduled(operationId);\n        }\n    }\n\n    /// @inheritdoc IAccessManager\n    // Reentrancy is not an issue because permissions are checked on msg.sender. Additionally,\n    // _consumeScheduledOp guarantees a scheduled operation is only executed once.\n    // slither-disable-next-line reentrancy-no-eth\n    function execute(address target, bytes calldata data) public payable virtual returns (uint32) {\n        address caller = _msgSender();\n\n        // Fetch restrictions that apply to the caller on the targeted function\n        (bool immediate, uint32 setback) = _canCallExtended(caller, target, data);\n\n        // If call is not authorized, revert\n        if (!immediate && setback == 0) {\n            revert AccessManagerUnauthorizedCall(caller, target, _checkSelector(data));\n        }\n\n        bytes32 operationId = hashOperation(caller, target, data);\n        uint32 nonce;\n\n        // If caller is authorised, check operation was scheduled early enough\n        // Consume an available schedule even if there is no currently enforced delay\n        if (setback != 0 || getSchedule(operationId) != 0) {\n            nonce = _consumeScheduledOp(operationId);\n        }\n\n        // Mark the target and selector as authorised\n        bytes32 executionIdBefore = _executionId;\n        _executionId = _hashExecutionId(target, _checkSelector(data));\n\n        // Perform call\n        Address.functionCallWithValue(target, data, msg.value);\n\n        // Reset execute identifier\n        _executionId = executionIdBefore;\n\n        return nonce;\n    }\n\n    /// @inheritdoc IAccessManager\n    function cancel(address caller, address target, bytes calldata data) public virtual returns (uint32) {\n        address msgsender = _msgSender();\n        bytes4 selector = _checkSelector(data);\n\n        bytes32 operationId = hashOperation(caller, target, data);\n        if (_schedules[operationId].timepoint == 0) {\n            revert AccessManagerNotScheduled(operationId);\n        } else if (caller != msgsender) {\n            // calls can only be canceled by the account that scheduled them, a global admin, or by a guardian of the required role.\n            (bool isAdmin, ) = hasRole(ADMIN_ROLE, msgsender);\n            (bool isGuardian, ) = hasRole(getRoleGuardian(getTargetFunctionRole(target, selector)), msgsender);\n            if (!isAdmin && !isGuardian) {\n                revert AccessManagerUnauthorizedCancel(msgsender, caller, target, selector);\n            }\n        }\n\n        delete _schedules[operationId].timepoint; // reset the timepoint, keep the nonce\n        uint32 nonce = _schedules[operationId].nonce;\n        emit OperationCanceled(operationId, nonce);\n\n        return nonce;\n    }\n\n    /// @inheritdoc IAccessManager\n    function consumeScheduledOp(address caller, bytes calldata data) public virtual {\n        address target = _msgSender();\n        if (IAccessManaged(target).isConsumingScheduledOp() != IAccessManaged.isConsumingScheduledOp.selector) {\n            revert AccessManagerUnauthorizedConsume(target);\n        }\n        _consumeScheduledOp(hashOperation(caller, target, data));\n    }\n\n    /**\n     * @dev Internal variant of {consumeScheduledOp} that operates on bytes32 operationId.\n     *\n     * Returns the nonce of the scheduled operation that is consumed.\n     */\n    function _consumeScheduledOp(bytes32 operationId) internal virtual returns (uint32) {\n        uint48 timepoint = _schedules[operationId].timepoint;\n        uint32 nonce = _schedules[operationId].nonce;\n\n        if (timepoint == 0) {\n            revert AccessManagerNotScheduled(operationId);\n        } else if (timepoint > Time.timestamp()) {\n            revert AccessManagerNotReady(operationId);\n        } else if (_isExpired(timepoint)) {\n            revert AccessManagerExpired(operationId);\n        }\n\n        delete _schedules[operationId].timepoint; // reset the timepoint, keep the nonce\n        emit OperationExecuted(operationId, nonce);\n\n        return nonce;\n    }\n\n    /// @inheritdoc IAccessManager\n    function hashOperation(address caller, address target, bytes calldata data) public view virtual returns (bytes32) {\n        return keccak256(abi.encode(caller, target, data));\n    }\n\n    // ==================================================== OTHERS ====================================================\n    /// @inheritdoc IAccessManager\n    function updateAuthority(address target, address newAuthority) public virtual onlyAuthorized {\n        IAccessManaged(target).setAuthority(newAuthority);\n    }\n\n    // ================================================= ADMIN LOGIC ==================================================\n    /**\n     * @dev Check if the current call is authorized according to admin and roles logic.\n     *\n     * WARNING: Carefully review the considerations of {AccessManaged-restricted} since they apply to this modifier.\n     */\n    function _checkAuthorized() private {\n        address caller = _msgSender();\n        (bool immediate, uint32 delay) = _canCallSelf(caller, _msgData());\n        if (!immediate) {\n            if (delay == 0) {\n                (, uint64 requiredRole, ) = _getAdminRestrictions(_msgData());\n                revert AccessManagerUnauthorizedAccount(caller, requiredRole);\n            } else {\n                _consumeScheduledOp(hashOperation(caller, address(this), _msgData()));\n            }\n        }\n    }\n\n    /**\n     * @dev Get the admin restrictions of a given function call based on the function and arguments involved.\n     *\n     * Returns:\n     * - bool restricted: does this data match a restricted operation\n     * - uint64: which role is this operation restricted to\n     * - uint32: minimum delay to enforce for that operation (max between operation's delay and admin's execution delay)\n     */\n    function _getAdminRestrictions(\n        bytes calldata data\n    ) private view returns (bool adminRestricted, uint64 roleAdminId, uint32 executionDelay) {\n        if (data.length < 4) {\n            return (false, 0, 0);\n        }\n\n        bytes4 selector = _checkSelector(data);\n\n        // Restricted to ADMIN with no delay beside any execution delay the caller may have\n        if (\n            selector == this.labelRole.selector ||\n            selector == this.setRoleAdmin.selector ||\n            selector == this.setRoleGuardian.selector ||\n            selector == this.setGrantDelay.selector ||\n            selector == this.setTargetAdminDelay.selector\n        ) {\n            return (true, ADMIN_ROLE, 0);\n        }\n\n        // Restricted to ADMIN with the admin delay corresponding to the target\n        if (\n            selector == this.updateAuthority.selector ||\n            selector == this.setTargetClosed.selector ||\n            selector == this.setTargetFunctionRole.selector\n        ) {\n            // First argument is a target.\n            address target = abi.decode(data[0x04:0x24], (address));\n            uint32 delay = getTargetAdminDelay(target);\n            return (true, ADMIN_ROLE, delay);\n        }\n\n        // Restricted to that role's admin with no delay beside any execution delay the caller may have.\n        if (selector == this.grantRole.selector || selector == this.revokeRole.selector) {\n            // First argument is a roleId.\n            uint64 roleId = abi.decode(data[0x04:0x24], (uint64));\n            return (true, getRoleAdmin(roleId), 0);\n        }\n\n        return (false, getTargetFunctionRole(address(this), selector), 0);\n    }\n\n    // =================================================== HELPERS ====================================================\n    /**\n     * @dev An extended version of {canCall} for internal usage that checks {_canCallSelf}\n     * when the target is this contract.\n     *\n     * Returns:\n     * - bool immediate: whether the operation can be executed immediately (with no delay)\n     * - uint32 delay: the execution delay\n     */\n    function _canCallExtended(\n        address caller,\n        address target,\n        bytes calldata data\n    ) private view returns (bool immediate, uint32 delay) {\n        if (target == address(this)) {\n            return _canCallSelf(caller, data);\n        } else {\n            return data.length < 4 ? (false, 0) : canCall(caller, target, _checkSelector(data));\n        }\n    }\n\n    /**\n     * @dev A version of {canCall} that checks for restrictions in this contract.\n     */\n    function _canCallSelf(address caller, bytes calldata data) private view returns (bool immediate, uint32 delay) {\n        if (data.length < 4) {\n            return (false, 0);\n        }\n\n        if (caller == address(this)) {\n            // Caller is AccessManager, this means the call was sent through {execute} and it already checked\n            // permissions. We verify that the call \"identifier\", which is set during {execute}, is correct.\n            return (_isExecuting(address(this), _checkSelector(data)), 0);\n        }\n\n        (bool adminRestricted, uint64 roleId, uint32 operationDelay) = _getAdminRestrictions(data);\n\n        // isTargetClosed apply to non-admin-restricted function\n        if (!adminRestricted && isTargetClosed(address(this))) {\n            return (false, 0);\n        }\n\n        (bool inRole, uint32 executionDelay) = hasRole(roleId, caller);\n        if (!inRole) {\n            return (false, 0);\n        }\n\n        // downcast is safe because both options are uint32\n        delay = uint32(Math.max(operationDelay, executionDelay));\n        return (delay == 0, delay);\n    }\n\n    /**\n     * @dev Returns true if a call with `target` and `selector` is being executed via {executed}.\n     */\n    function _isExecuting(address target, bytes4 selector) private view returns (bool) {\n        return _executionId == _hashExecutionId(target, selector);\n    }\n\n    /**\n     * @dev Returns true if a schedule timepoint is past its expiration deadline.\n     */\n    function _isExpired(uint48 timepoint) private view returns (bool) {\n        return timepoint + expiration() <= Time.timestamp();\n    }\n\n    /**\n     * @dev Extracts the selector from calldata. Panics if data is not at least 4 bytes\n     */\n    function _checkSelector(bytes calldata data) private pure returns (bytes4) {\n        return bytes4(data[0:4]);\n    }\n\n    /**\n     * @dev Hashing function for execute protection\n     */\n    function _hashExecutionId(address target, bytes4 selector) private pure returns (bytes32) {\n        return Hashes.efficientKeccak256(bytes32(uint256(uint160(target))), selector);\n    }\n}\n"},"@openzeppelin/contracts/access/manager/IAccessManaged.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (access/manager/IAccessManaged.sol)\n\npragma solidity >=0.8.4;\n\ninterface IAccessManaged {\n    /**\n     * @dev Authority that manages this contract was updated.\n     */\n    event AuthorityUpdated(address authority);\n\n    error AccessManagedUnauthorized(address caller);\n    error AccessManagedRequiredDelay(address caller, uint32 delay);\n    error AccessManagedInvalidAuthority(address authority);\n\n    /**\n     * @dev Returns the current authority.\n     */\n    function authority() external view returns (address);\n\n    /**\n     * @dev Transfers control to a new authority. The caller must be the current authority.\n     */\n    function setAuthority(address) external;\n\n    /**\n     * @dev Returns true only in the context of a delayed restricted call, at the moment that the scheduled operation is\n     * being consumed. Prevents denial of service for delayed restricted calls in the case that the contract performs\n     * attacker controlled calls.\n     */\n    function isConsumingScheduledOp() external view returns (bytes4);\n}\n"},"@openzeppelin/contracts/access/manager/IAccessManager.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (access/manager/IAccessManager.sol)\n\npragma solidity >=0.8.4;\n\ninterface IAccessManager {\n    /**\n     * @dev A delayed operation was scheduled.\n     */\n    event OperationScheduled(\n        bytes32 indexed operationId,\n        uint32 indexed nonce,\n        uint48 schedule,\n        address caller,\n        address target,\n        bytes data\n    );\n\n    /**\n     * @dev A scheduled operation was executed.\n     */\n    event OperationExecuted(bytes32 indexed operationId, uint32 indexed nonce);\n\n    /**\n     * @dev A scheduled operation was canceled.\n     */\n    event OperationCanceled(bytes32 indexed operationId, uint32 indexed nonce);\n\n    /**\n     * @dev Informational labelling for a roleId.\n     */\n    event RoleLabel(uint64 indexed roleId, string label);\n\n    /**\n     * @dev Emitted when `account` is granted `roleId`.\n     *\n     * NOTE: The meaning of the `since` argument depends on the `newMember` argument.\n     * If the role is granted to a new member, the `since` argument indicates when the account becomes a member of the role,\n     * otherwise it indicates the execution delay for this account and roleId is updated.\n     */\n    event RoleGranted(uint64 indexed roleId, address indexed account, uint32 delay, uint48 since, bool newMember);\n\n    /**\n     * @dev Emitted when `account` membership or `roleId` is revoked. Unlike granting, revoking is instantaneous.\n     */\n    event RoleRevoked(uint64 indexed roleId, address indexed account);\n\n    /**\n     * @dev Role acting as admin over a given `roleId` is updated.\n     */\n    event RoleAdminChanged(uint64 indexed roleId, uint64 indexed admin);\n\n    /**\n     * @dev Role acting as guardian over a given `roleId` is updated.\n     */\n    event RoleGuardianChanged(uint64 indexed roleId, uint64 indexed guardian);\n\n    /**\n     * @dev Grant delay for a given `roleId` will be updated to `delay` when `since` is reached.\n     */\n    event RoleGrantDelayChanged(uint64 indexed roleId, uint32 delay, uint48 since);\n\n    /**\n     * @dev Target mode is updated (true = closed, false = open).\n     */\n    event TargetClosed(address indexed target, bool closed);\n\n    /**\n     * @dev Role required to invoke `selector` on `target` is updated to `roleId`.\n     */\n    event TargetFunctionRoleUpdated(address indexed target, bytes4 selector, uint64 indexed roleId);\n\n    /**\n     * @dev Admin delay for a given `target` will be updated to `delay` when `since` is reached.\n     */\n    event TargetAdminDelayUpdated(address indexed target, uint32 delay, uint48 since);\n\n    error AccessManagerAlreadyScheduled(bytes32 operationId);\n    error AccessManagerNotScheduled(bytes32 operationId);\n    error AccessManagerNotReady(bytes32 operationId);\n    error AccessManagerExpired(bytes32 operationId);\n    error AccessManagerLockedRole(uint64 roleId);\n    error AccessManagerBadConfirmation();\n    error AccessManagerUnauthorizedAccount(address msgsender, uint64 roleId);\n    error AccessManagerUnauthorizedCall(address caller, address target, bytes4 selector);\n    error AccessManagerUnauthorizedConsume(address target);\n    error AccessManagerUnauthorizedCancel(address msgsender, address caller, address target, bytes4 selector);\n    error AccessManagerInvalidInitialAdmin(address initialAdmin);\n\n    /**\n     * @dev Check if an address (`caller`) is authorised to call a given function on a given contract directly (with\n     * no restriction). Additionally, it returns the delay needed to perform the call indirectly through the {schedule}\n     * & {execute} workflow.\n     *\n     * This function is usually called by the targeted contract to control immediate execution of restricted functions.\n     * Therefore we only return true if the call can be performed without any delay. If the call is subject to a\n     * previously set delay (not zero), then the function should return false and the caller should schedule the operation\n     * for future execution.\n     *\n     * If `allowed` is true, the delay can be disregarded and the operation can be immediately executed, otherwise\n     * the operation can be executed if and only if delay is greater than 0.\n     *\n     * NOTE: The IAuthority interface does not include the `uint32` delay. This is an extension of that interface that\n     * is backward compatible. Some contracts may thus ignore the second return argument. In that case they will fail\n     * to identify the indirect workflow, and will consider calls that require a delay to be forbidden.\n     *\n     * NOTE: This function does not report the permissions of the admin functions in the manager itself. These are defined by the\n     * {AccessManager} documentation.\n     */\n    function canCall(\n        address caller,\n        address target,\n        bytes4 selector\n    ) external view returns (bool allowed, uint32 delay);\n\n    /**\n     * @dev Expiration delay for scheduled proposals. Defaults to 1 week.\n     *\n     * IMPORTANT: Avoid overriding the expiration with 0. Otherwise every contract proposal will be expired immediately,\n     * disabling any scheduling usage.\n     */\n    function expiration() external view returns (uint32);\n\n    /**\n     * @dev Minimum setback for all delay updates, with the exception of execution delays. It\n     * can be increased without setback (and reset via {revokeRole} in the event of an\n     * accidental increase). Defaults to 5 days.\n     */\n    function minSetback() external view returns (uint32);\n\n    /**\n     * @dev Get whether the contract is closed disabling any access. Otherwise role permissions are applied.\n     *\n     * NOTE: When the manager itself is closed, admin functions are still accessible to avoid locking the contract.\n     */\n    function isTargetClosed(address target) external view returns (bool);\n\n    /**\n     * @dev Get the role required to call a function.\n     */\n    function getTargetFunctionRole(address target, bytes4 selector) external view returns (uint64);\n\n    /**\n     * @dev Get the admin delay for a target contract. Changes to contract configuration are subject to this delay.\n     */\n    function getTargetAdminDelay(address target) external view returns (uint32);\n\n    /**\n     * @dev Get the id of the role that acts as an admin for the given role.\n     *\n     * The admin permission is required to grant the role, revoke the role and update the execution delay to execute\n     * an operation that is restricted to this role.\n     */\n    function getRoleAdmin(uint64 roleId) external view returns (uint64);\n\n    /**\n     * @dev Get the role that acts as a guardian for a given role.\n     *\n     * The guardian permission allows canceling operations that have been scheduled under the role.\n     */\n    function getRoleGuardian(uint64 roleId) external view returns (uint64);\n\n    /**\n     * @dev Get the role current grant delay.\n     *\n     * Its value may change at any point without an event emitted following a call to {setGrantDelay}.\n     * Changes to this value, including effect timepoint are notified in advance by the {RoleGrantDelayChanged} event.\n     */\n    function getRoleGrantDelay(uint64 roleId) external view returns (uint32);\n\n    /**\n     * @dev Get the access details for a given account for a given role. These details include the timepoint at which\n     * membership becomes active, and the delay applied to all operations by this user that requires this permission\n     * level.\n     *\n     * Returns:\n     * [0] Timestamp at which the account membership becomes valid. 0 means role is not granted.\n     * [1] Current execution delay for the account.\n     * [2] Pending execution delay for the account.\n     * [3] Timestamp at which the pending execution delay will become active. 0 means no delay update is scheduled.\n     */\n    function getAccess(\n        uint64 roleId,\n        address account\n    ) external view returns (uint48 since, uint32 currentDelay, uint32 pendingDelay, uint48 effect);\n\n    /**\n     * @dev Check if a given account currently has the permission level corresponding to a given role. Note that this\n     * permission might be associated with an execution delay. {getAccess} can provide more details.\n     */\n    function hasRole(uint64 roleId, address account) external view returns (bool isMember, uint32 executionDelay);\n\n    /**\n     * @dev Give a label to a role, for improved role discoverability by UIs.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {RoleLabel} event.\n     */\n    function labelRole(uint64 roleId, string calldata label) external;\n\n    /**\n     * @dev Add `account` to `roleId`, or change its execution delay.\n     *\n     * This gives the account the authorization to call any function that is restricted to this role. An optional\n     * execution delay (in seconds) can be set. If that delay is non 0, the user is required to schedule any operation\n     * that is restricted to members of this role. The user will only be able to execute the operation after the delay has\n     * passed, before it has expired. During this period, admin and guardians can cancel the operation (see {cancel}).\n     *\n     * If the account has already been granted this role, the execution delay will be updated. This update is not\n     * immediate and follows the delay rules. For example, if a user currently has a delay of 3 hours, and this is\n     * called to reduce that delay to 1 hour, the new delay will take some time to take effect, enforcing that any\n     * operation executed in the 3 hours that follows this update was indeed scheduled before this update.\n     *\n     * Requirements:\n     *\n     * - the caller must be an admin for the role (see {getRoleAdmin})\n     * - granted role must not be the `PUBLIC_ROLE`\n     *\n     * Emits a {RoleGranted} event.\n     */\n    function grantRole(uint64 roleId, address account, uint32 executionDelay) external;\n\n    /**\n     * @dev Remove an account from a role, with immediate effect. If the account does not have the role, this call has\n     * no effect.\n     *\n     * Requirements:\n     *\n     * - the caller must be an admin for the role (see {getRoleAdmin})\n     * - revoked role must not be the `PUBLIC_ROLE`\n     *\n     * Emits a {RoleRevoked} event if the account had the role.\n     */\n    function revokeRole(uint64 roleId, address account) external;\n\n    /**\n     * @dev Renounce role permissions for the calling account with immediate effect. If the sender is not in\n     * the role this call has no effect.\n     *\n     * Requirements:\n     *\n     * - the caller must be `callerConfirmation`.\n     *\n     * Emits a {RoleRevoked} event if the account had the role.\n     */\n    function renounceRole(uint64 roleId, address callerConfirmation) external;\n\n    /**\n     * @dev Change admin role for a given role.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {RoleAdminChanged} event\n     */\n    function setRoleAdmin(uint64 roleId, uint64 admin) external;\n\n    /**\n     * @dev Change guardian role for a given role.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {RoleGuardianChanged} event\n     */\n    function setRoleGuardian(uint64 roleId, uint64 guardian) external;\n\n    /**\n     * @dev Update the delay for granting a `roleId`.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {RoleGrantDelayChanged} event.\n     */\n    function setGrantDelay(uint64 roleId, uint32 newDelay) external;\n\n    /**\n     * @dev Set the role required to call functions identified by the `selectors` in the `target` contract.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {TargetFunctionRoleUpdated} event per selector.\n     */\n    function setTargetFunctionRole(address target, bytes4[] calldata selectors, uint64 roleId) external;\n\n    /**\n     * @dev Set the delay for changing the configuration of a given target contract.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {TargetAdminDelayUpdated} event.\n     */\n    function setTargetAdminDelay(address target, uint32 newDelay) external;\n\n    /**\n     * @dev Set the closed flag for a contract.\n     *\n     * Closing the manager itself won't disable access to admin methods to avoid locking the contract.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {TargetClosed} event.\n     */\n    function setTargetClosed(address target, bool closed) external;\n\n    /**\n     * @dev Return the timepoint at which a scheduled operation will be ready for execution. This returns 0 if the\n     * operation is not yet scheduled, has expired, was executed, or was canceled.\n     */\n    function getSchedule(bytes32 id) external view returns (uint48);\n\n    /**\n     * @dev Return the nonce for the latest scheduled operation with a given id. Returns 0 if the operation has never\n     * been scheduled.\n     */\n    function getNonce(bytes32 id) external view returns (uint32);\n\n    /**\n     * @dev Schedule a delayed operation for future execution, and return the operation identifier. It is possible to\n     * choose the timestamp at which the operation becomes executable as long as it satisfies the execution delays\n     * required for the caller. The special value zero will automatically set the earliest possible time.\n     *\n     * Returns the `operationId` that was scheduled. Since this value is a hash of the parameters, it can reoccur when\n     * the same parameters are used; if this is relevant, the returned `nonce` can be used to uniquely identify this\n     * scheduled operation from other occurrences of the same `operationId` in invocations of {execute} and {cancel}.\n     *\n     * Emits a {OperationScheduled} event.\n     *\n     * NOTE: It is not possible to concurrently schedule more than one operation with the same `target` and `data`. If\n     * this is necessary, a random byte can be appended to `data` to act as a salt that will be ignored by the target\n     * contract if it is using standard Solidity ABI encoding.\n     */\n    function schedule(\n        address target,\n        bytes calldata data,\n        uint48 when\n    ) external returns (bytes32 operationId, uint32 nonce);\n\n    /**\n     * @dev Execute a function that is delay restricted, provided it was properly scheduled beforehand, or the\n     * execution delay is 0.\n     *\n     * Returns the nonce that identifies the previously scheduled operation that is executed, or 0 if the\n     * operation wasn't previously scheduled (if the caller doesn't have an execution delay).\n     *\n     * Emits an {OperationExecuted} event only if the call was scheduled and delayed.\n     */\n    function execute(address target, bytes calldata data) external payable returns (uint32);\n\n    /**\n     * @dev Cancel a scheduled (delayed) operation. Returns the nonce that identifies the previously scheduled\n     * operation that is cancelled.\n     *\n     * Requirements:\n     *\n     * - the caller must be the proposer, a guardian of the targeted function, or a global admin\n     *\n     * Emits a {OperationCanceled} event.\n     */\n    function cancel(address caller, address target, bytes calldata data) external returns (uint32);\n\n    /**\n     * @dev Consume a scheduled operation targeting the caller. If such an operation exists, mark it as consumed\n     * (emit an {OperationExecuted} event and clean the state). Otherwise, throw an error.\n     *\n     * This is useful for contracts that want to enforce that calls targeting them were scheduled on the manager,\n     * with all the verifications that it implies.\n     *\n     * Emit a {OperationExecuted} event.\n     */\n    function consumeScheduledOp(address caller, bytes calldata data) external;\n\n    /**\n     * @dev Hashing function for delayed operations.\n     */\n    function hashOperation(address caller, address target, bytes calldata data) external view returns (bytes32);\n\n    /**\n     * @dev Changes the authority of a target managed by this manager instance.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     */\n    function updateAuthority(address target, address newAuthority) external;\n}\n"},"@openzeppelin/contracts/interfaces/draft-IERC1822.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC1822.sol)\n\npragma solidity >=0.4.16;\n\n/**\n * @dev ERC-1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified\n * proxy whose upgrades are fully controlled by the current implementation.\n */\ninterface IERC1822Proxiable {\n    /**\n     * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation\n     * address.\n     *\n     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n     * function revert if invoked through a proxy.\n     */\n    function proxiableUUID() external view returns (bytes32);\n}\n"},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (interfaces/draft-IERC6093.sol)\n\npragma solidity >=0.8.4;\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-721.\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/IERC1363.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC1363.sol)\n\npragma solidity >=0.6.2;\n\nimport {IERC20} from \"./IERC20.sol\";\nimport {IERC165} from \"./IERC165.sol\";\n\n/**\n * @title IERC1363\n * @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].\n *\n * Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract\n * after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.\n */\ninterface IERC1363 is IERC20, IERC165 {\n    /*\n     * Note: the ERC-165 identifier for this interface is 0xb0202a11.\n     * 0xb0202a11 ===\n     *   bytes4(keccak256('transferAndCall(address,uint256)')) ^\n     *   bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^\n     *   bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^\n     *   bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^\n     *   bytes4(keccak256('approveAndCall(address,uint256)')) ^\n     *   bytes4(keccak256('approveAndCall(address,uint256,bytes)'))\n     */\n\n    /**\n     * @dev Moves a `value` amount of tokens from the caller's account to `to`\n     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n     * @param to The address which you want to transfer to.\n     * @param value The amount of tokens to be transferred.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function transferAndCall(address to, uint256 value) external returns (bool);\n\n    /**\n     * @dev Moves a `value` amount of tokens from the caller's account to `to`\n     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n     * @param to The address which you want to transfer to.\n     * @param value The amount of tokens to be transferred.\n     * @param data Additional data with no specified format, sent in call to `to`.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool);\n\n    /**\n     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism\n     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n     * @param from The address which you want to send tokens from.\n     * @param to The address which you want to transfer to.\n     * @param value The amount of tokens to be transferred.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function transferFromAndCall(address from, address to, uint256 value) external returns (bool);\n\n    /**\n     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism\n     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n     * @param from The address which you want to send tokens from.\n     * @param to The address which you want to transfer to.\n     * @param value The amount of tokens to be transferred.\n     * @param data Additional data with no specified format, sent in call to `to`.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool);\n\n    /**\n     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\n     * @param spender The address which will spend the funds.\n     * @param value The amount of tokens to be spent.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function approveAndCall(address spender, uint256 value) external returns (bool);\n\n    /**\n     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\n     * @param spender The address which will spend the funds.\n     * @param value The amount of tokens to be spent.\n     * @param data Additional data with no specified format, sent in call to `spender`.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool);\n}\n"},"@openzeppelin/contracts/interfaces/IERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC165.sol)\n\npragma solidity >=0.4.16;\n\nimport {IERC165} from \"../utils/introspection/IERC165.sol\";\n"},"@openzeppelin/contracts/interfaces/IERC1967.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC1967.sol)\n\npragma solidity >=0.4.11;\n\n/**\n * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.\n */\ninterface IERC1967 {\n    /**\n     * @dev Emitted when the implementation is upgraded.\n     */\n    event Upgraded(address indexed implementation);\n\n    /**\n     * @dev Emitted when the admin account has changed.\n     */\n    event AdminChanged(address previousAdmin, address newAdmin);\n\n    /**\n     * @dev Emitted when the beacon is changed.\n     */\n    event BeaconUpgraded(address indexed beacon);\n}\n"},"@openzeppelin/contracts/interfaces/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC20.sol)\n\npragma solidity >=0.4.16;\n\nimport {IERC20} from \"../token/ERC20/IERC20.sol\";\n"},"@openzeppelin/contracts/interfaces/IERC4626.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (interfaces/IERC4626.sol)\n\npragma solidity >=0.6.2;\n\nimport {IERC20} from \"../token/ERC20/IERC20.sol\";\nimport {IERC20Metadata} from \"../token/ERC20/extensions/IERC20Metadata.sol\";\n\n/**\n * @dev Interface of the ERC-4626 \"Tokenized Vault Standard\", as defined in\n * https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].\n */\ninterface IERC4626 is IERC20, IERC20Metadata {\n    event Deposit(address indexed sender, address indexed owner, uint256 assets, uint256 shares);\n\n    event Withdraw(\n        address indexed sender,\n        address indexed receiver,\n        address indexed owner,\n        uint256 assets,\n        uint256 shares\n    );\n\n    /**\n     * @dev Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing.\n     *\n     * - MUST be an ERC-20 token contract.\n     * - MUST NOT revert.\n     */\n    function asset() external view returns (address assetTokenAddress);\n\n    /**\n     * @dev Returns the total amount of the underlying asset that is “managed” by Vault.\n     *\n     * - SHOULD include any compounding that occurs from yield.\n     * - MUST be inclusive of any fees that are charged against assets in the Vault.\n     * - MUST NOT revert.\n     */\n    function totalAssets() external view returns (uint256 totalManagedAssets);\n\n    /**\n     * @dev Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal\n     * scenario where all the conditions are met.\n     *\n     * - MUST NOT be inclusive of any fees that are charged against assets in the Vault.\n     * - MUST NOT show any variations depending on the caller.\n     * - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange.\n     * - MUST NOT revert.\n     *\n     * NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the\n     * “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and\n     * from.\n     */\n    function convertToShares(uint256 assets) external view returns (uint256 shares);\n\n    /**\n     * @dev Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal\n     * scenario where all the conditions are met.\n     *\n     * - MUST NOT be inclusive of any fees that are charged against assets in the Vault.\n     * - MUST NOT show any variations depending on the caller.\n     * - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange.\n     * - MUST NOT revert.\n     *\n     * NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the\n     * “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and\n     * from.\n     */\n    function convertToAssets(uint256 shares) external view returns (uint256 assets);\n\n    /**\n     * @dev Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver,\n     * through a deposit call.\n     *\n     * - MUST return a limited value if receiver is subject to some deposit limit.\n     * - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited.\n     * - MUST NOT revert.\n     */\n    function maxDeposit(address receiver) external view returns (uint256 maxAssets);\n\n    /**\n     * @dev Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given\n     * current on-chain conditions.\n     *\n     * - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit\n     *   call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called\n     *   in the same transaction.\n     * - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the\n     *   deposit would be accepted, regardless if the user has enough tokens approved, etc.\n     * - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees.\n     * - MUST NOT revert.\n     *\n     * NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in\n     * share price or some other type of condition, meaning the depositor will lose assets by depositing.\n     */\n    function previewDeposit(uint256 assets) external view returns (uint256 shares);\n\n    /**\n     * @dev Deposit `assets` underlying tokens and send the corresponding number of vault shares (`shares`) to `receiver`.\n     *\n     * - MUST emit the Deposit event.\n     * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n     *   deposit execution, and are accounted for during deposit.\n     * - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not\n     *   approving enough underlying tokens to the Vault contract, etc).\n     *\n     * NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token.\n     */\n    function deposit(uint256 assets, address receiver) external returns (uint256 shares);\n\n    /**\n     * @dev Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call.\n     * - MUST return a limited value if receiver is subject to some mint limit.\n     * - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted.\n     * - MUST NOT revert.\n     */\n    function maxMint(address receiver) external view returns (uint256 maxShares);\n\n    /**\n     * @dev Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given\n     * current on-chain conditions.\n     *\n     * - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call\n     *   in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the\n     *   same transaction.\n     * - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint\n     *   would be accepted, regardless if the user has enough tokens approved, etc.\n     * - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees.\n     * - MUST NOT revert.\n     *\n     * NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in\n     * share price or some other type of condition, meaning the depositor will lose assets by minting.\n     */\n    function previewMint(uint256 shares) external view returns (uint256 assets);\n\n    /**\n     * @dev Mints exactly `shares` vault shares to `receiver` in exchange for `assets` underlying tokens.\n     *\n     * - MUST emit the Deposit event.\n     * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint\n     *   execution, and are accounted for during mint.\n     * - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not\n     *   approving enough underlying tokens to the Vault contract, etc).\n     *\n     * NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token.\n     */\n    function mint(uint256 shares, address receiver) external returns (uint256 assets);\n\n    /**\n     * @dev Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the\n     * Vault, through a withdraw call.\n     *\n     * - MUST return a limited value if owner is subject to some withdrawal limit or timelock.\n     * - MUST NOT revert.\n     */\n    function maxWithdraw(address owner) external view returns (uint256 maxAssets);\n\n    /**\n     * @dev Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block,\n     * given current on-chain conditions.\n     *\n     * - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw\n     *   call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if\n     *   called\n     *   in the same transaction.\n     * - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though\n     *   the withdrawal would be accepted, regardless if the user has enough shares, etc.\n     * - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees.\n     * - MUST NOT revert.\n     *\n     * NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in\n     * share price or some other type of condition, meaning the depositor will lose assets by depositing.\n     */\n    function previewWithdraw(uint256 assets) external view returns (uint256 shares);\n\n    /**\n     * @dev Burns shares from owner and sends exactly assets of underlying tokens to receiver.\n     *\n     * - MUST emit the Withdraw event.\n     * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n     *   withdraw execution, and are accounted for during withdraw.\n     * - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner\n     *   not having enough shares, etc).\n     *\n     * Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed.\n     * Those methods should be performed separately.\n     */\n    function withdraw(uint256 assets, address receiver, address owner) external returns (uint256 shares);\n\n    /**\n     * @dev Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault,\n     * through a redeem call.\n     *\n     * - MUST return a limited value if owner is subject to some withdrawal limit or timelock.\n     * - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock.\n     * - MUST NOT revert.\n     */\n    function maxRedeem(address owner) external view returns (uint256 maxShares);\n\n    /**\n     * @dev Allows an on-chain or off-chain user to simulate the effects of their redemption at the current block,\n     * given current on-chain conditions.\n     *\n     * - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call\n     *   in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the\n     *   same transaction.\n     * - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the\n     *   redemption would be accepted, regardless if the user has enough shares, etc.\n     * - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees.\n     * - MUST NOT revert.\n     *\n     * NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in\n     * share price or some other type of condition, meaning the depositor will lose assets by redeeming.\n     */\n    function previewRedeem(uint256 shares) external view returns (uint256 assets);\n\n    /**\n     * @dev Burns exactly shares from owner and sends assets of underlying tokens to receiver.\n     *\n     * - MUST emit the Withdraw event.\n     * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n     *   redeem execution, and are accounted for during redeem.\n     * - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner\n     *   not having enough shares, etc).\n     *\n     * NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed.\n     * Those methods should be performed separately.\n     */\n    function redeem(uint256 shares, address receiver, address owner) external returns (uint256 assets);\n}\n"},"@openzeppelin/contracts/interfaces/IERC5267.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC5267.sol)\n\npragma solidity >=0.4.16;\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/proxy/beacon/IBeacon.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (proxy/beacon/IBeacon.sol)\n\npragma solidity >=0.4.16;\n\n/**\n * @dev This is the interface that {BeaconProxy} expects of its beacon.\n */\ninterface IBeacon {\n    /**\n     * @dev Must return an address that can be used as a delegate call target.\n     *\n     * {UpgradeableBeacon} will check that this address is a contract.\n     */\n    function implementation() external view returns (address);\n}\n"},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (proxy/ERC1967/ERC1967Proxy.sol)\n\npragma solidity ^0.8.22;\n\nimport {Proxy} from \"../Proxy.sol\";\nimport {ERC1967Utils} from \"./ERC1967Utils.sol\";\n\n/**\n * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an\n * implementation address that can be changed. This address is stored in storage in the location specified by\n * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967], so that it doesn't conflict with the storage layout of the\n * implementation behind the proxy.\n */\ncontract ERC1967Proxy is Proxy {\n    /**\n     * @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation`.\n     *\n     * If `_data` is nonempty, it's used as data in a delegate call to `implementation`. This will typically be an\n     * encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\n     *\n     * Requirements:\n     *\n     * - If `data` is empty, `msg.value` must be zero.\n     */\n    constructor(address implementation, bytes memory _data) payable {\n        ERC1967Utils.upgradeToAndCall(implementation, _data);\n    }\n\n    /**\n     * @dev Returns the current implementation address.\n     *\n     * TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using\n     * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n     * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`\n     */\n    function _implementation() internal view virtual override returns (address) {\n        return ERC1967Utils.getImplementation();\n    }\n}\n"},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (proxy/ERC1967/ERC1967Utils.sol)\n\npragma solidity ^0.8.21;\n\nimport {IBeacon} from \"../beacon/IBeacon.sol\";\nimport {IERC1967} from \"../../interfaces/IERC1967.sol\";\nimport {Address} from \"../../utils/Address.sol\";\nimport {StorageSlot} from \"../../utils/StorageSlot.sol\";\n\n/**\n * @dev This library provides getters and event emitting update functions for\n * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.\n */\nlibrary ERC1967Utils {\n    /**\n     * @dev Storage slot with the address of the current implementation.\n     * This is the keccak-256 hash of \"eip1967.proxy.implementation\" subtracted by 1.\n     */\n    // solhint-disable-next-line private-vars-leading-underscore\n    bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n\n    /**\n     * @dev The `implementation` of the proxy is invalid.\n     */\n    error ERC1967InvalidImplementation(address implementation);\n\n    /**\n     * @dev The `admin` of the proxy is invalid.\n     */\n    error ERC1967InvalidAdmin(address admin);\n\n    /**\n     * @dev The `beacon` of the proxy is invalid.\n     */\n    error ERC1967InvalidBeacon(address beacon);\n\n    /**\n     * @dev An upgrade function sees `msg.value > 0` that may be lost.\n     */\n    error ERC1967NonPayable();\n\n    /**\n     * @dev Returns the current implementation address.\n     */\n    function getImplementation() internal view returns (address) {\n        return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value;\n    }\n\n    /**\n     * @dev Stores a new address in the ERC-1967 implementation slot.\n     */\n    function _setImplementation(address newImplementation) private {\n        if (newImplementation.code.length == 0) {\n            revert ERC1967InvalidImplementation(newImplementation);\n        }\n        StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation;\n    }\n\n    /**\n     * @dev Performs implementation upgrade with additional setup call if data is nonempty.\n     * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n     * to avoid stuck value in the contract.\n     *\n     * Emits an {IERC1967-Upgraded} event.\n     */\n    function upgradeToAndCall(address newImplementation, bytes memory data) internal {\n        _setImplementation(newImplementation);\n        emit IERC1967.Upgraded(newImplementation);\n\n        if (data.length > 0) {\n            Address.functionDelegateCall(newImplementation, data);\n        } else {\n            _checkNonPayable();\n        }\n    }\n\n    /**\n     * @dev Storage slot with the admin of the contract.\n     * This is the keccak-256 hash of \"eip1967.proxy.admin\" subtracted by 1.\n     */\n    // solhint-disable-next-line private-vars-leading-underscore\n    bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;\n\n    /**\n     * @dev Returns the current admin.\n     *\n     * TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using\n     * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n     * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`\n     */\n    function getAdmin() internal view returns (address) {\n        return StorageSlot.getAddressSlot(ADMIN_SLOT).value;\n    }\n\n    /**\n     * @dev Stores a new address in the ERC-1967 admin slot.\n     */\n    function _setAdmin(address newAdmin) private {\n        if (newAdmin == address(0)) {\n            revert ERC1967InvalidAdmin(address(0));\n        }\n        StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin;\n    }\n\n    /**\n     * @dev Changes the admin of the proxy.\n     *\n     * Emits an {IERC1967-AdminChanged} event.\n     */\n    function changeAdmin(address newAdmin) internal {\n        emit IERC1967.AdminChanged(getAdmin(), newAdmin);\n        _setAdmin(newAdmin);\n    }\n\n    /**\n     * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.\n     * This is the keccak-256 hash of \"eip1967.proxy.beacon\" subtracted by 1.\n     */\n    // solhint-disable-next-line private-vars-leading-underscore\n    bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;\n\n    /**\n     * @dev Returns the current beacon.\n     */\n    function getBeacon() internal view returns (address) {\n        return StorageSlot.getAddressSlot(BEACON_SLOT).value;\n    }\n\n    /**\n     * @dev Stores a new beacon in the ERC-1967 beacon slot.\n     */\n    function _setBeacon(address newBeacon) private {\n        if (newBeacon.code.length == 0) {\n            revert ERC1967InvalidBeacon(newBeacon);\n        }\n\n        StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon;\n\n        address beaconImplementation = IBeacon(newBeacon).implementation();\n        if (beaconImplementation.code.length == 0) {\n            revert ERC1967InvalidImplementation(beaconImplementation);\n        }\n    }\n\n    /**\n     * @dev Change the beacon and trigger a setup call if data is nonempty.\n     * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n     * to avoid stuck value in the contract.\n     *\n     * Emits an {IERC1967-BeaconUpgraded} event.\n     *\n     * CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since\n     * it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for\n     * efficiency.\n     */\n    function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal {\n        _setBeacon(newBeacon);\n        emit IERC1967.BeaconUpgraded(newBeacon);\n\n        if (data.length > 0) {\n            Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);\n        } else {\n            _checkNonPayable();\n        }\n    }\n\n    /**\n     * @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract\n     * if an upgrade doesn't perform an initialization call.\n     */\n    function _checkNonPayable() private {\n        if (msg.value > 0) {\n            revert ERC1967NonPayable();\n        }\n    }\n}\n"},"@openzeppelin/contracts/proxy/Proxy.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (proxy/Proxy.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM\n * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to\n * be specified by overriding the virtual {_implementation} function.\n *\n * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a\n * different contract through the {_delegate} function.\n *\n * The success and return data of the delegated call will be returned back to the caller of the proxy.\n */\nabstract contract Proxy {\n    /**\n     * @dev Delegates the current call to `implementation`.\n     *\n     * This function does not return to its internal call site, it will return directly to the external caller.\n     */\n    function _delegate(address implementation) internal virtual {\n        assembly {\n            // Copy msg.data. We take full control of memory in this inline assembly\n            // block because it will not return to Solidity code. We overwrite the\n            // Solidity scratch pad at memory position 0.\n            calldatacopy(0x00, 0x00, calldatasize())\n\n            // Call the implementation.\n            // out and outsize are 0 because we don't know the size yet.\n            let result := delegatecall(gas(), implementation, 0x00, calldatasize(), 0x00, 0x00)\n\n            // Copy the returned data.\n            returndatacopy(0x00, 0x00, returndatasize())\n\n            switch result\n            // delegatecall returns 0 on error.\n            case 0 {\n                revert(0x00, returndatasize())\n            }\n            default {\n                return(0x00, returndatasize())\n            }\n        }\n    }\n\n    /**\n     * @dev This is a virtual function that should be overridden so it returns the address to which the fallback\n     * function and {_fallback} should delegate.\n     */\n    function _implementation() internal view virtual returns (address);\n\n    /**\n     * @dev Delegates the current call to the address returned by `_implementation()`.\n     *\n     * This function does not return to its internal call site, it will return directly to the external caller.\n     */\n    function _fallback() internal virtual {\n        _delegate(_implementation());\n    }\n\n    /**\n     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other\n     * function in the contract matches the call data.\n     */\n    fallback() external payable virtual {\n        _fallback();\n    }\n}\n"},"@openzeppelin/contracts/proxy/utils/Initializable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (proxy/utils/Initializable.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n *\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n * reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n * case an upgrade adds a module that needs to be initialized.\n *\n * For example:\n *\n * [.hljs-theme-light.nopadding]\n * ```solidity\n * contract MyToken is ERC20Upgradeable {\n *     function initialize() initializer public {\n *         __ERC20_init(\"MyToken\", \"MTK\");\n *     }\n * }\n *\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n *     function initializeV2() reinitializer(2) public {\n *         __ERC20Permit_init(\"MyToken\");\n *     }\n * }\n * ```\n *\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n *\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n *\n * [CAUTION]\n * ====\n * Avoid leaving a contract uninitialized.\n *\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n *\n * [.hljs-theme-light.nopadding]\n * ```\n * /// @custom:oz-upgrades-unsafe-allow constructor\n * constructor() {\n *     _disableInitializers();\n * }\n * ```\n * ====\n */\nabstract contract Initializable {\n    /**\n     * @dev Storage of the initializable contract.\n     *\n     * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions\n     * when using with upgradeable contracts.\n     *\n     * @custom:storage-location erc7201:openzeppelin.storage.Initializable\n     */\n    struct InitializableStorage {\n        /**\n         * @dev Indicates that the contract has been initialized.\n         */\n        uint64 _initialized;\n        /**\n         * @dev Indicates that the contract is in the process of being initialized.\n         */\n        bool _initializing;\n    }\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.Initializable\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00;\n\n    /**\n     * @dev The contract is already initialized.\n     */\n    error InvalidInitialization();\n\n    /**\n     * @dev The contract is not initializing.\n     */\n    error NotInitializing();\n\n    /**\n     * @dev Triggered when the contract has been initialized or reinitialized.\n     */\n    event Initialized(uint64 version);\n\n    /**\n     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n     * `onlyInitializing` functions can be used to initialize parent contracts.\n     *\n     * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any\n     * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in\n     * production.\n     *\n     * Emits an {Initialized} event.\n     */\n    modifier initializer() {\n        // solhint-disable-next-line var-name-mixedcase\n        InitializableStorage storage $ = _getInitializableStorage();\n\n        // Cache values to avoid duplicated sloads\n        bool isTopLevelCall = !$._initializing;\n        uint64 initialized = $._initialized;\n\n        // Allowed calls:\n        // - initialSetup: the contract is not in the initializing state and no previous version was\n        //                 initialized\n        // - construction: the contract is initialized at version 1 (no reinitialization) and the\n        //                 current contract is just being deployed\n        bool initialSetup = initialized == 0 && isTopLevelCall;\n        bool construction = initialized == 1 && address(this).code.length == 0;\n\n        if (!initialSetup && !construction) {\n            revert InvalidInitialization();\n        }\n        $._initialized = 1;\n        if (isTopLevelCall) {\n            $._initializing = true;\n        }\n        _;\n        if (isTopLevelCall) {\n            $._initializing = false;\n            emit Initialized(1);\n        }\n    }\n\n    /**\n     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n     * used to initialize parent contracts.\n     *\n     * A reinitializer may be used after the original initialization step. This is essential to configure modules that\n     * are added through upgrades and that require initialization.\n     *\n     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\n     * cannot be nested. If one is invoked in the context of another, execution will revert.\n     *\n     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n     * a contract, executing them in the right order is up to the developer or operator.\n     *\n     * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.\n     *\n     * Emits an {Initialized} event.\n     */\n    modifier reinitializer(uint64 version) {\n        // solhint-disable-next-line var-name-mixedcase\n        InitializableStorage storage $ = _getInitializableStorage();\n\n        if ($._initializing || $._initialized >= version) {\n            revert InvalidInitialization();\n        }\n        $._initialized = version;\n        $._initializing = true;\n        _;\n        $._initializing = false;\n        emit Initialized(version);\n    }\n\n    /**\n     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n     * {initializer} and {reinitializer} modifiers, directly or indirectly.\n     */\n    modifier onlyInitializing() {\n        _checkInitializing();\n        _;\n    }\n\n    /**\n     * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}.\n     */\n    function _checkInitializing() internal view virtual {\n        if (!_isInitializing()) {\n            revert NotInitializing();\n        }\n    }\n\n    /**\n     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n     * through proxies.\n     *\n     * Emits an {Initialized} event the first time it is successfully executed.\n     */\n    function _disableInitializers() internal virtual {\n        // solhint-disable-next-line var-name-mixedcase\n        InitializableStorage storage $ = _getInitializableStorage();\n\n        if ($._initializing) {\n            revert InvalidInitialization();\n        }\n        if ($._initialized != type(uint64).max) {\n            $._initialized = type(uint64).max;\n            emit Initialized(type(uint64).max);\n        }\n    }\n\n    /**\n     * @dev Returns the highest version that has been initialized. See {reinitializer}.\n     */\n    function _getInitializedVersion() internal view returns (uint64) {\n        return _getInitializableStorage()._initialized;\n    }\n\n    /**\n     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\n     */\n    function _isInitializing() internal view returns (bool) {\n        return _getInitializableStorage()._initializing;\n    }\n\n    /**\n     * @dev Pointer to storage slot. Allows integrators to override it with a custom storage location.\n     *\n     * NOTE: Consider following the ERC-7201 formula to derive storage locations.\n     */\n    function _initializableStorageSlot() internal pure virtual returns (bytes32) {\n        return INITIALIZABLE_STORAGE;\n    }\n\n    /**\n     * @dev Returns a pointer to the storage namespace.\n     */\n    // solhint-disable-next-line var-name-mixedcase\n    function _getInitializableStorage() private pure returns (InitializableStorage storage $) {\n        bytes32 slot = _initializableStorageSlot();\n        assembly {\n            $.slot := slot\n        }\n    }\n}\n"},"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (proxy/utils/UUPSUpgradeable.sol)\n\npragma solidity ^0.8.22;\n\nimport {IERC1822Proxiable} from \"../../interfaces/draft-IERC1822.sol\";\nimport {ERC1967Utils} from \"../ERC1967/ERC1967Utils.sol\";\n\n/**\n * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an\n * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.\n *\n * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is\n * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing\n * `UUPSUpgradeable` with a custom implementation of upgrades.\n *\n * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.\n *\n * @custom:stateless\n */\nabstract contract UUPSUpgradeable is IERC1822Proxiable {\n    /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n    address private immutable __self = address(this);\n\n    /**\n     * @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)`\n     * and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called,\n     * while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string.\n     * If the getter returns `\"5.0.0\"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must\n     * be the empty byte string if no function should be called, making it impossible to invoke the `receive` function\n     * during an upgrade.\n     */\n    string public constant UPGRADE_INTERFACE_VERSION = \"5.0.0\";\n\n    /**\n     * @dev The call is from an unauthorized context.\n     */\n    error UUPSUnauthorizedCallContext();\n\n    /**\n     * @dev The storage `slot` is unsupported as a UUID.\n     */\n    error UUPSUnsupportedProxiableUUID(bytes32 slot);\n\n    /**\n     * @dev Check that the execution is being performed through a delegatecall call and that the execution context is\n     * a proxy contract with an implementation (as defined in ERC-1967) pointing to self. This should only be the case\n     * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a\n     * function through ERC-1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to\n     * fail.\n     */\n    modifier onlyProxy() {\n        _checkProxy();\n        _;\n    }\n\n    /**\n     * @dev Check that the execution is not being performed through a delegate call. This allows a function to be\n     * callable on the implementing contract but not through proxies.\n     */\n    modifier notDelegated() {\n        _checkNotDelegated();\n        _;\n    }\n\n    /**\n     * @dev Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the\n     * implementation. It is used to validate the implementation's compatibility when performing an upgrade.\n     *\n     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n     * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\n     */\n    function proxiableUUID() external view notDelegated returns (bytes32) {\n        return ERC1967Utils.IMPLEMENTATION_SLOT;\n    }\n\n    /**\n     * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call\n     * encoded in `data`.\n     *\n     * Calls {_authorizeUpgrade}.\n     *\n     * Emits an {Upgraded} event.\n     *\n     * @custom:oz-upgrades-unsafe-allow-reachable delegatecall\n     */\n    function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {\n        _authorizeUpgrade(newImplementation);\n        _upgradeToAndCallUUPS(newImplementation, data);\n    }\n\n    /**\n     * @dev Reverts if the execution is not performed via delegatecall or the execution\n     * context is not of a proxy with an ERC-1967 compliant implementation pointing to self.\n     */\n    function _checkProxy() internal view virtual {\n        if (\n            address(this) == __self || // Must be called through delegatecall\n            ERC1967Utils.getImplementation() != __self // Must be called through an active proxy\n        ) {\n            revert UUPSUnauthorizedCallContext();\n        }\n    }\n\n    /**\n     * @dev Reverts if the execution is performed via delegatecall.\n     * See {notDelegated}.\n     */\n    function _checkNotDelegated() internal view virtual {\n        if (address(this) != __self) {\n            // Must not be called through delegatecall\n            revert UUPSUnauthorizedCallContext();\n        }\n    }\n\n    /**\n     * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by\n     * {upgradeToAndCall}.\n     *\n     * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.\n     *\n     * ```solidity\n     * function _authorizeUpgrade(address) internal onlyOwner {}\n     * ```\n     */\n    function _authorizeUpgrade(address newImplementation) internal virtual;\n\n    /**\n     * @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call.\n     *\n     * As a security check, {proxiableUUID} is invoked in the new implementation, and the return value\n     * is expected to be the implementation slot in ERC-1967.\n     *\n     * Emits an {IERC1967-Upgraded} event.\n     */\n    function _upgradeToAndCallUUPS(address newImplementation, bytes memory data) private {\n        try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) {\n            if (slot != ERC1967Utils.IMPLEMENTATION_SLOT) {\n                revert UUPSUnsupportedProxiableUUID(slot);\n            }\n            ERC1967Utils.upgradeToAndCall(newImplementation, data);\n        } catch {\n            // The implementation is not UUPS\n            revert ERC1967Utils.ERC1967InvalidImplementation(newImplementation);\n        }\n    }\n}\n"},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.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     * Both values are immutable: they can only be set once during 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    /// @inheritdoc IERC20\n    function totalSupply() public view virtual returns (uint256) {\n        return _totalSupply;\n    }\n\n    /// @inheritdoc IERC20\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    /// @inheritdoc IERC20\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 sets 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/ERC20Permit.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC20/extensions/ERC20Permit.sol)\n\npragma solidity ^0.8.24;\n\nimport {IERC20Permit} from \"./IERC20Permit.sol\";\nimport {ERC20} from \"../ERC20.sol\";\nimport {ECDSA} from \"../../../utils/cryptography/ECDSA.sol\";\nimport {EIP712} from \"../../../utils/cryptography/EIP712.sol\";\nimport {Nonces} from \"../../../utils/Nonces.sol\";\n\n/**\n * @dev Implementation of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n */\nabstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces {\n    bytes32 private constant PERMIT_TYPEHASH =\n        keccak256(\"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\");\n\n    /**\n     * @dev Permit deadline has expired.\n     */\n    error ERC2612ExpiredSignature(uint256 deadline);\n\n    /**\n     * @dev Mismatched signature.\n     */\n    error ERC2612InvalidSigner(address signer, address owner);\n\n    /**\n     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\"1\"`.\n     *\n     * It's a good idea to use the same `name` that is defined as the ERC-20 token name.\n     */\n    constructor(string memory name) EIP712(name, \"1\") {}\n\n    /// @inheritdoc IERC20Permit\n    function permit(\n        address owner,\n        address spender,\n        uint256 value,\n        uint256 deadline,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) public virtual {\n        if (block.timestamp > deadline) {\n            revert ERC2612ExpiredSignature(deadline);\n        }\n\n        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));\n\n        bytes32 hash = _hashTypedDataV4(structHash);\n\n        address signer = ECDSA.recover(hash, v, r, s);\n        if (signer != owner) {\n            revert ERC2612InvalidSigner(signer, owner);\n        }\n\n        _approve(owner, spender, value);\n    }\n\n    /// @inheritdoc IERC20Permit\n    function nonces(address owner) public view virtual override(IERC20Permit, Nonces) returns (uint256) {\n        return super.nonces(owner);\n    }\n\n    /// @inheritdoc IERC20Permit\n    // solhint-disable-next-line func-name-mixedcase\n    function DOMAIN_SEPARATOR() external view returns (bytes32) {\n        return _domainSeparatorV4();\n    }\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC20/extensions/ERC4626.sol)\n\npragma solidity ^0.8.24;\n\nimport {IERC20, IERC20Metadata, ERC20} from \"../ERC20.sol\";\nimport {SafeERC20} from \"../utils/SafeERC20.sol\";\nimport {IERC4626} from \"../../../interfaces/IERC4626.sol\";\nimport {LowLevelCall} from \"../../../utils/LowLevelCall.sol\";\nimport {Memory} from \"../../../utils/Memory.sol\";\nimport {Math} from \"../../../utils/math/Math.sol\";\n\n/**\n * @dev Implementation of the ERC-4626 \"Tokenized Vault Standard\" as defined in\n * https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].\n *\n * This extension allows the minting and burning of \"shares\" (represented using the ERC-20 inheritance) in exchange for\n * underlying \"assets\" through standardized {deposit}, {mint}, {redeem} and {burn} workflows. This contract extends\n * the ERC-20 standard. Any additional extensions included along it would affect the \"shares\" token represented by this\n * contract and not the \"assets\" token which is an independent contract.\n *\n * [CAUTION]\n * ====\n * In empty (or nearly empty) ERC-4626 vaults, deposits are at high risk of being stolen through frontrunning\n * with a \"donation\" to the vault that inflates the price of a share. This is variously known as a donation or inflation\n * attack and is essentially a problem of slippage. Vault deployers can protect against this attack by making an initial\n * deposit of a non-trivial amount of the asset, such that price manipulation becomes infeasible. Withdrawals may\n * similarly be affected by slippage. Users can protect against this attack as well as unexpected slippage in general by\n * verifying the amount received is as expected, using a wrapper that performs these checks such as\n * https://github.com/fei-protocol/ERC4626#erc4626router-and-base[ERC4626Router].\n *\n * Since v4.9, this implementation introduces configurable virtual assets and shares to help developers mitigate that risk.\n * The `_decimalsOffset()` corresponds to an offset in the decimal representation between the underlying asset's decimals\n * and the vault decimals. This offset also determines the rate of virtual shares to virtual assets in the vault, which\n * itself determines the initial exchange rate. While not fully preventing the attack, analysis shows that the default\n * offset (0) makes it non-profitable even if an attacker is able to capture value from multiple user deposits, as a result\n * of the value being captured by the virtual shares (out of the attacker's donation) matching the attacker's expected gains.\n * With a larger offset, the attack becomes orders of magnitude more expensive than it is profitable. More details about the\n * underlying math can be found xref:ROOT:erc4626.adoc#inflation-attack[here].\n *\n * The drawback of this approach is that the virtual shares do capture (a very small) part of the value being accrued\n * to the vault. Also, if the vault experiences losses, the users try to exit the vault, the virtual shares and assets\n * will cause the first user to exit to experience reduced losses in detriment to the last users that will experience\n * bigger losses. Developers willing to revert back to the pre-v4.9 behavior just need to override the\n * `_convertToShares` and `_convertToAssets` functions.\n *\n * To learn more, check out our xref:ROOT:erc4626.adoc[ERC-4626 guide].\n * ====\n *\n * [NOTE]\n * ====\n * When overriding this contract, some elements must be considered:\n *\n * * When overriding the behavior of the deposit or withdraw mechanisms, it is recommended to override the internal\n * functions. Overriding {_deposit} automatically affects both {deposit} and {mint}. Similarly, overriding {_withdraw}\n * automatically affects both {withdraw} and {redeem}. Overall it is not recommended to override the public facing\n * functions since that could lead to inconsistent behaviors between the {deposit} and {mint} or between {withdraw} and\n * {redeem}, which is documented to have lead to loss of funds.\n *\n * * Overrides to the deposit or withdraw mechanism must be reflected in the preview functions as well.\n *\n * * {maxWithdraw} depends on {maxRedeem}. Therefore, overriding {maxRedeem} only is enough. On the other hand,\n * overriding {maxWithdraw} only would have no effect on {maxRedeem}, and could create an inconsistency between the two\n * functions.\n *\n * * If {previewRedeem} is overridden to revert, {maxWithdraw} must be overridden as necessary to ensure it\n * always return successfully.\n * ====\n */\nabstract contract ERC4626 is ERC20, IERC4626 {\n    using Math for uint256;\n\n    IERC20 private immutable _asset;\n    uint8 private immutable _underlyingDecimals;\n\n    /**\n     * @dev Attempted to deposit more assets than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxDeposit(address receiver, uint256 assets, uint256 max);\n\n    /**\n     * @dev Attempted to mint more shares than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxMint(address receiver, uint256 shares, uint256 max);\n\n    /**\n     * @dev Attempted to withdraw more assets than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxWithdraw(address owner, uint256 assets, uint256 max);\n\n    /**\n     * @dev Attempted to redeem more shares than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxRedeem(address owner, uint256 shares, uint256 max);\n\n    /**\n     * @dev Set the underlying asset contract. This must be an ERC20-compatible contract (ERC-20 or ERC-777).\n     */\n    constructor(IERC20 asset_) {\n        (bool success, uint8 assetDecimals) = _tryGetAssetDecimals(asset_);\n        _underlyingDecimals = success ? assetDecimals : 18;\n        _asset = asset_;\n    }\n\n    /**\n     * @dev Attempts to fetch the asset decimals. A return value of false indicates that the attempt failed in some way.\n     */\n    function _tryGetAssetDecimals(IERC20 asset_) private view returns (bool ok, uint8 assetDecimals) {\n        Memory.Pointer ptr = Memory.getFreeMemoryPointer();\n        (bool success, bytes32 returnedDecimals, ) = LowLevelCall.staticcallReturn64Bytes(\n            address(asset_),\n            abi.encodeCall(IERC20Metadata.decimals, ())\n        );\n        Memory.setFreeMemoryPointer(ptr);\n\n        return\n            (success && LowLevelCall.returnDataSize() >= 32 && uint256(returnedDecimals) <= type(uint8).max)\n                ? (true, uint8(uint256(returnedDecimals)))\n                : (false, 0);\n    }\n\n    /**\n     * @dev Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This\n     * \"original\" value is cached during construction of the vault contract. If this read operation fails (e.g., the\n     * asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals.\n     *\n     * See {IERC20Metadata-decimals}.\n     */\n    function decimals() public view virtual override(IERC20Metadata, ERC20) returns (uint8) {\n        return _underlyingDecimals + _decimalsOffset();\n    }\n\n    /// @inheritdoc IERC4626\n    function asset() public view virtual returns (address) {\n        return address(_asset);\n    }\n\n    /// @inheritdoc IERC4626\n    function totalAssets() public view virtual returns (uint256) {\n        return IERC20(asset()).balanceOf(address(this));\n    }\n\n    /// @inheritdoc IERC4626\n    function convertToShares(uint256 assets) public view virtual returns (uint256) {\n        return _convertToShares(assets, Math.Rounding.Floor);\n    }\n\n    /// @inheritdoc IERC4626\n    function convertToAssets(uint256 shares) public view virtual returns (uint256) {\n        return _convertToAssets(shares, Math.Rounding.Floor);\n    }\n\n    /// @inheritdoc IERC4626\n    function maxDeposit(address) public view virtual returns (uint256) {\n        return type(uint256).max;\n    }\n\n    /// @inheritdoc IERC4626\n    function maxMint(address) public view virtual returns (uint256) {\n        return type(uint256).max;\n    }\n\n    /// @inheritdoc IERC4626\n    function maxWithdraw(address owner) public view virtual returns (uint256) {\n        return previewRedeem(maxRedeem(owner));\n    }\n\n    /// @inheritdoc IERC4626\n    function maxRedeem(address owner) public view virtual returns (uint256) {\n        return balanceOf(owner);\n    }\n\n    /// @inheritdoc IERC4626\n    function previewDeposit(uint256 assets) public view virtual returns (uint256) {\n        return _convertToShares(assets, Math.Rounding.Floor);\n    }\n\n    /// @inheritdoc IERC4626\n    function previewMint(uint256 shares) public view virtual returns (uint256) {\n        return _convertToAssets(shares, Math.Rounding.Ceil);\n    }\n\n    /// @inheritdoc IERC4626\n    function previewWithdraw(uint256 assets) public view virtual returns (uint256) {\n        return _convertToShares(assets, Math.Rounding.Ceil);\n    }\n\n    /// @inheritdoc IERC4626\n    function previewRedeem(uint256 shares) public view virtual returns (uint256) {\n        return _convertToAssets(shares, Math.Rounding.Floor);\n    }\n\n    /// @inheritdoc IERC4626\n    function deposit(uint256 assets, address receiver) public virtual returns (uint256) {\n        uint256 maxAssets = maxDeposit(receiver);\n        if (assets > maxAssets) {\n            revert ERC4626ExceededMaxDeposit(receiver, assets, maxAssets);\n        }\n\n        uint256 shares = previewDeposit(assets);\n        _deposit(_msgSender(), receiver, assets, shares);\n\n        return shares;\n    }\n\n    /// @inheritdoc IERC4626\n    function mint(uint256 shares, address receiver) public virtual returns (uint256) {\n        uint256 maxShares = maxMint(receiver);\n        if (shares > maxShares) {\n            revert ERC4626ExceededMaxMint(receiver, shares, maxShares);\n        }\n\n        uint256 assets = previewMint(shares);\n        _deposit(_msgSender(), receiver, assets, shares);\n\n        return assets;\n    }\n\n    /// @inheritdoc IERC4626\n    function withdraw(uint256 assets, address receiver, address owner) public virtual returns (uint256) {\n        uint256 maxAssets = maxWithdraw(owner);\n        if (assets > maxAssets) {\n            revert ERC4626ExceededMaxWithdraw(owner, assets, maxAssets);\n        }\n\n        uint256 shares = previewWithdraw(assets);\n        _withdraw(_msgSender(), receiver, owner, assets, shares);\n\n        return shares;\n    }\n\n    /// @inheritdoc IERC4626\n    function redeem(uint256 shares, address receiver, address owner) public virtual returns (uint256) {\n        uint256 maxShares = maxRedeem(owner);\n        if (shares > maxShares) {\n            revert ERC4626ExceededMaxRedeem(owner, shares, maxShares);\n        }\n\n        uint256 assets = previewRedeem(shares);\n        _withdraw(_msgSender(), receiver, owner, assets, shares);\n\n        return assets;\n    }\n\n    /**\n     * @dev Internal conversion function (from assets to shares) with support for rounding direction.\n     */\n    function _convertToShares(uint256 assets, Math.Rounding rounding) internal view virtual returns (uint256) {\n        return assets.mulDiv(totalSupply() + 10 ** _decimalsOffset(), totalAssets() + 1, rounding);\n    }\n\n    /**\n     * @dev Internal conversion function (from shares to assets) with support for rounding direction.\n     */\n    function _convertToAssets(uint256 shares, Math.Rounding rounding) internal view virtual returns (uint256) {\n        return shares.mulDiv(totalAssets() + 1, totalSupply() + 10 ** _decimalsOffset(), rounding);\n    }\n\n    /**\n     * @dev Deposit/mint common workflow.\n     */\n    function _deposit(address caller, address receiver, uint256 assets, uint256 shares) internal virtual {\n        // If asset() is ERC-777, `transferFrom` can trigger a reentrancy BEFORE the transfer happens through the\n        // `tokensToSend` hook. On the other hand, the `tokenReceived` hook, that is triggered after the transfer,\n        // calls the vault, which is assumed not malicious.\n        //\n        // Conclusion: we need to do the transfer before we mint so that any reentrancy would happen before the\n        // assets are transferred and before the shares are minted, which is a valid state.\n        // slither-disable-next-line reentrancy-no-eth\n        SafeERC20.safeTransferFrom(IERC20(asset()), caller, address(this), assets);\n        _mint(receiver, shares);\n\n        emit Deposit(caller, receiver, assets, shares);\n    }\n\n    /**\n     * @dev Withdraw/redeem common workflow.\n     */\n    function _withdraw(\n        address caller,\n        address receiver,\n        address owner,\n        uint256 assets,\n        uint256 shares\n    ) internal virtual {\n        if (caller != owner) {\n            _spendAllowance(owner, caller, shares);\n        }\n\n        // If asset() is ERC-777, `transfer` can trigger a reentrancy AFTER the transfer happens through the\n        // `tokensReceived` hook. On the other hand, the `tokensToSend` hook, that is triggered before the transfer,\n        // calls the vault, which is assumed not malicious.\n        //\n        // Conclusion: we need to do the transfer after the burn so that any reentrancy would happen after the\n        // shares are burned and after the assets are transferred, which is a valid state.\n        _burn(owner, shares);\n        SafeERC20.safeTransfer(IERC20(asset()), receiver, assets);\n\n        emit Withdraw(caller, receiver, owner, assets, shares);\n    }\n\n    function _decimalsOffset() internal view virtual returns (uint8) {\n        return 0;\n    }\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity >=0.6.2;\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/extensions/IERC20Permit.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC20/extensions/IERC20Permit.sol)\n\npragma solidity >=0.4.16;\n\n/**\n * @dev Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n *\n * ==== Security Considerations\n *\n * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\n * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\n * considered as an intention to spend the allowance in any specific way. The second is that because permits have\n * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\n * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\n * generally recommended is:\n *\n * ```solidity\n * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\n *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\n *     doThing(..., value);\n * }\n *\n * function doThing(..., uint256 value) public {\n *     token.safeTransferFrom(msg.sender, address(this), value);\n *     ...\n * }\n * ```\n *\n * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\n * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\n * {SafeERC20-safeTransferFrom}).\n *\n * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\n * contracts should have entry points that don't rely on permit.\n */\ninterface IERC20Permit {\n    /**\n     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n     * given ``owner``'s signed approval.\n     *\n     * IMPORTANT: The same issues {IERC20-approve} has related to transaction\n     * ordering also applies here.\n     *\n     * Emits an {Approval} event.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     * - `deadline` must be a timestamp in the future.\n     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n     * over the EIP712-formatted function arguments.\n     * - the signature must use ``owner``'s current nonce (see {nonces}).\n     *\n     * For more information on the signature format, see the\n     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n     * section].\n     *\n     * CAUTION: See Security Considerations above.\n     */\n    function permit(\n        address owner,\n        address spender,\n        uint256 value,\n        uint256 deadline,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) external;\n\n    /**\n     * @dev Returns the current nonce for `owner`. This value must be\n     * included whenever a signature is generated for {permit}.\n     *\n     * Every successful call to {permit} increases ``owner``'s nonce by one. This\n     * prevents a signature from being used multiple times.\n     */\n    function nonces(address owner) external view returns (uint256);\n\n    /**\n     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\n     */\n    // solhint-disable-next-line func-name-mixedcase\n    function DOMAIN_SEPARATOR() external view returns (bytes32);\n}\n"},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)\n\npragma solidity >=0.4.16;\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/ERC20/utils/SafeERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC20/utils/SafeERC20.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"../IERC20.sol\";\nimport {IERC1363} from \"../../../interfaces/IERC1363.sol\";\n\n/**\n * @title SafeERC20\n * @dev Wrappers around ERC-20 operations that throw on failure (when the token\n * contract returns false). Tokens that return no value (and instead revert or\n * throw on failure) are also supported, non-reverting calls are assumed to be\n * successful.\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\n */\nlibrary SafeERC20 {\n    /**\n     * @dev An operation with an ERC-20 token failed.\n     */\n    error SafeERC20FailedOperation(address token);\n\n    /**\n     * @dev Indicates a failed `decreaseAllowance` request.\n     */\n    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);\n\n    /**\n     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\n     * non-reverting calls are assumed to be successful.\n     */\n    function safeTransfer(IERC20 token, address to, uint256 value) internal {\n        if (!_safeTransfer(token, to, value, true)) {\n            revert SafeERC20FailedOperation(address(token));\n        }\n    }\n\n    /**\n     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\n     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.\n     */\n    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {\n        if (!_safeTransferFrom(token, from, to, value, true)) {\n            revert SafeERC20FailedOperation(address(token));\n        }\n    }\n\n    /**\n     * @dev Variant of {safeTransfer} that returns a bool instead of reverting if the operation is not successful.\n     */\n    function trySafeTransfer(IERC20 token, address to, uint256 value) internal returns (bool) {\n        return _safeTransfer(token, to, value, false);\n    }\n\n    /**\n     * @dev Variant of {safeTransferFrom} that returns a bool instead of reverting if the operation is not successful.\n     */\n    function trySafeTransferFrom(IERC20 token, address from, address to, uint256 value) internal returns (bool) {\n        return _safeTransferFrom(token, from, to, value, false);\n    }\n\n    /**\n     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n     * non-reverting calls are assumed to be successful.\n     *\n     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the \"client\"\n     * smart contract uses ERC-7674 to set temporary allowances, then the \"client\" smart contract should avoid using\n     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract\n     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.\n     */\n    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {\n        uint256 oldAllowance = token.allowance(address(this), spender);\n        forceApprove(token, spender, oldAllowance + value);\n    }\n\n    /**\n     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no\n     * value, non-reverting calls are assumed to be successful.\n     *\n     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the \"client\"\n     * smart contract uses ERC-7674 to set temporary allowances, then the \"client\" smart contract should avoid using\n     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract\n     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.\n     */\n    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {\n        unchecked {\n            uint256 currentAllowance = token.allowance(address(this), spender);\n            if (currentAllowance < requestedDecrease) {\n                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);\n            }\n            forceApprove(token, spender, currentAllowance - requestedDecrease);\n        }\n    }\n\n    /**\n     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\n     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\n     * to be set to zero before setting it to a non-zero value, such as USDT.\n     *\n     * NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function\n     * only sets the \"standard\" allowance. Any temporary allowance will remain active, in addition to the value being\n     * set here.\n     */\n    function forceApprove(IERC20 token, address spender, uint256 value) internal {\n        if (!_safeApprove(token, spender, value, false)) {\n            if (!_safeApprove(token, spender, 0, true)) revert SafeERC20FailedOperation(address(token));\n            if (!_safeApprove(token, spender, value, true)) revert SafeERC20FailedOperation(address(token));\n        }\n    }\n\n    /**\n     * @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no\n     * code. This can be used to implement an {ERC721}-like safe transfer that relies on {ERC1363} checks when\n     * targeting contracts.\n     *\n     * Reverts if the returned value is other than `true`.\n     */\n    function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {\n        if (to.code.length == 0) {\n            safeTransfer(token, to, value);\n        } else if (!token.transferAndCall(to, value, data)) {\n            revert SafeERC20FailedOperation(address(token));\n        }\n    }\n\n    /**\n     * @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target\n     * has no code. This can be used to implement an {ERC721}-like safe transfer that relies on {ERC1363} checks when\n     * targeting contracts.\n     *\n     * Reverts if the returned value is other than `true`.\n     */\n    function transferFromAndCallRelaxed(\n        IERC1363 token,\n        address from,\n        address to,\n        uint256 value,\n        bytes memory data\n    ) internal {\n        if (to.code.length == 0) {\n            safeTransferFrom(token, from, to, value);\n        } else if (!token.transferFromAndCall(from, to, value, data)) {\n            revert SafeERC20FailedOperation(address(token));\n        }\n    }\n\n    /**\n     * @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no\n     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when\n     * targeting contracts.\n     *\n     * NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.\n     * Oppositely, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}\n     * once without retrying, and relies on the returned value to be true.\n     *\n     * Reverts if the returned value is other than `true`.\n     */\n    function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {\n        if (to.code.length == 0) {\n            forceApprove(token, to, value);\n        } else if (!token.approveAndCall(to, value, data)) {\n            revert SafeERC20FailedOperation(address(token));\n        }\n    }\n\n    /**\n     * @dev Imitates a Solidity `token.transfer(to, value)` call, relaxing the requirement on the return value: the\n     * return value is optional (but if data is returned, it must not be false).\n     *\n     * @param token The token targeted by the call.\n     * @param to The recipient of the tokens\n     * @param value The amount of token to transfer\n     * @param bubble Behavior switch if the transfer call reverts: bubble the revert reason or return a false boolean.\n     */\n    function _safeTransfer(IERC20 token, address to, uint256 value, bool bubble) private returns (bool success) {\n        bytes4 selector = IERC20.transfer.selector;\n\n        assembly (\"memory-safe\") {\n            let fmp := mload(0x40)\n            mstore(0x00, selector)\n            mstore(0x04, and(to, shr(96, not(0))))\n            mstore(0x24, value)\n            success := call(gas(), token, 0, 0x00, 0x44, 0x00, 0x20)\n            // if call success and return is true, all is good.\n            // otherwise (not success or return is not true), we need to perform further checks\n            if iszero(and(success, eq(mload(0x00), 1))) {\n                // if the call was a failure and bubble is enabled, bubble the error\n                if and(iszero(success), bubble) {\n                    returndatacopy(fmp, 0x00, returndatasize())\n                    revert(fmp, returndatasize())\n                }\n                // if the return value is not true, then the call is only successful if:\n                // - the token address has code\n                // - the returndata is empty\n                success := and(success, and(iszero(returndatasize()), gt(extcodesize(token), 0)))\n            }\n            mstore(0x40, fmp)\n        }\n    }\n\n    /**\n     * @dev Imitates a Solidity `token.transferFrom(from, to, value)` call, relaxing the requirement on the return\n     * value: the return value is optional (but if data is returned, it must not be false).\n     *\n     * @param token The token targeted by the call.\n     * @param from The sender of the tokens\n     * @param to The recipient of the tokens\n     * @param value The amount of token to transfer\n     * @param bubble Behavior switch if the transfer call reverts: bubble the revert reason or return a false boolean.\n     */\n    function _safeTransferFrom(\n        IERC20 token,\n        address from,\n        address to,\n        uint256 value,\n        bool bubble\n    ) private returns (bool success) {\n        bytes4 selector = IERC20.transferFrom.selector;\n\n        assembly (\"memory-safe\") {\n            let fmp := mload(0x40)\n            mstore(0x00, selector)\n            mstore(0x04, and(from, shr(96, not(0))))\n            mstore(0x24, and(to, shr(96, not(0))))\n            mstore(0x44, value)\n            success := call(gas(), token, 0, 0x00, 0x64, 0x00, 0x20)\n            // if call success and return is true, all is good.\n            // otherwise (not success or return is not true), we need to perform further checks\n            if iszero(and(success, eq(mload(0x00), 1))) {\n                // if the call was a failure and bubble is enabled, bubble the error\n                if and(iszero(success), bubble) {\n                    returndatacopy(fmp, 0x00, returndatasize())\n                    revert(fmp, returndatasize())\n                }\n                // if the return value is not true, then the call is only successful if:\n                // - the token address has code\n                // - the returndata is empty\n                success := and(success, and(iszero(returndatasize()), gt(extcodesize(token), 0)))\n            }\n            mstore(0x40, fmp)\n            mstore(0x60, 0)\n        }\n    }\n\n    /**\n     * @dev Imitates a Solidity `token.approve(spender, value)` call, relaxing the requirement on the return value:\n     * the return value is optional (but if data is returned, it must not be false).\n     *\n     * @param token The token targeted by the call.\n     * @param spender The spender of the tokens\n     * @param value The amount of token to transfer\n     * @param bubble Behavior switch if the transfer call reverts: bubble the revert reason or return a false boolean.\n     */\n    function _safeApprove(IERC20 token, address spender, uint256 value, bool bubble) private returns (bool success) {\n        bytes4 selector = IERC20.approve.selector;\n\n        assembly (\"memory-safe\") {\n            let fmp := mload(0x40)\n            mstore(0x00, selector)\n            mstore(0x04, and(spender, shr(96, not(0))))\n            mstore(0x24, value)\n            success := call(gas(), token, 0, 0x00, 0x44, 0x00, 0x20)\n            // if call success and return is true, all is good.\n            // otherwise (not success or return is not true), we need to perform further checks\n            if iszero(and(success, eq(mload(0x00), 1))) {\n                // if the call was a failure and bubble is enabled, bubble the error\n                if and(iszero(success), bubble) {\n                    returndatacopy(fmp, 0x00, returndatasize())\n                    revert(fmp, returndatasize())\n                }\n                // if the return value is not true, then the call is only successful if:\n                // - the token address has code\n                // - the returndata is empty\n                success := and(success, and(iszero(returndatasize()), gt(extcodesize(token), 0)))\n            }\n            mstore(0x40, fmp)\n        }\n    }\n}\n"},"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC721/extensions/IERC721Metadata.sol)\n\npragma solidity >=0.6.2;\n\nimport {IERC721} from \"../IERC721.sol\";\n\n/**\n * @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n * @dev See https://eips.ethereum.org/EIPS/eip-721\n */\ninterface IERC721Metadata is IERC721 {\n    /**\n     * @dev Returns the token collection name.\n     */\n    function name() external view returns (string memory);\n\n    /**\n     * @dev Returns the token collection symbol.\n     */\n    function symbol() external view returns (string memory);\n\n    /**\n     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.\n     */\n    function tokenURI(uint256 tokenId) external view returns (string memory);\n}\n"},"@openzeppelin/contracts/token/ERC721/IERC721.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC721/IERC721.sol)\n\npragma solidity >=0.6.2;\n\nimport {IERC165} from \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Required interface of an ERC-721 compliant contract.\n */\ninterface IERC721 is IERC165 {\n    /**\n     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\n     */\n    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\n\n    /**\n     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\n     */\n    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\n\n    /**\n     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\n     */\n    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\n\n    /**\n     * @dev Returns the number of tokens in ``owner``'s account.\n     */\n    function balanceOf(address owner) external view returns (uint256 balance);\n\n    /**\n     * @dev Returns the owner of the `tokenId` token.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     */\n    function ownerOf(uint256 tokenId) external view returns (address owner);\n\n    /**\n     * @dev Safely transfers `tokenId` token from `from` to `to`.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must exist and be owned by `from`.\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon\n     *   a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;\n\n    /**\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n     * are aware of the ERC-721 protocol to prevent tokens from being forever locked.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must exist and be owned by `from`.\n     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or\n     *   {setApprovalForAll}.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon\n     *   a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function safeTransferFrom(address from, address to, uint256 tokenId) external;\n\n    /**\n     * @dev Transfers `tokenId` token from `from` to `to`.\n     *\n     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721\n     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must\n     * understand this adds an external call which potentially creates a reentrancy vulnerability.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must be owned by `from`.\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transferFrom(address from, address to, uint256 tokenId) external;\n\n    /**\n     * @dev Gives permission to `to` to transfer `tokenId` token to another account.\n     * The approval is cleared when the token is transferred.\n     *\n     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n     *\n     * Requirements:\n     *\n     * - The caller must own the token or be an approved operator.\n     * - `tokenId` must exist.\n     *\n     * Emits an {Approval} event.\n     */\n    function approve(address to, uint256 tokenId) external;\n\n    /**\n     * @dev Approve or remove `operator` as an operator for the caller.\n     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n     *\n     * Requirements:\n     *\n     * - The `operator` cannot be the address zero.\n     *\n     * Emits an {ApprovalForAll} event.\n     */\n    function setApprovalForAll(address operator, bool approved) external;\n\n    /**\n     * @dev Returns the account approved for `tokenId` token.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     */\n    function getApproved(uint256 tokenId) external view returns (address operator);\n\n    /**\n     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n     *\n     * See {setApprovalForAll}\n     */\n    function isApprovedForAll(address owner, address operator) external view returns (bool);\n}\n"},"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC721/IERC721Receiver.sol)\n\npragma solidity >=0.5.0;\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/ERC721Utils.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC721/utils/ERC721Utils.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC721Receiver} from \"../IERC721Receiver.sol\";\nimport {IERC721Errors} from \"../../../interfaces/draft-IERC6093.sol\";\n\n/**\n * @dev Library that provides common ERC-721 utility functions.\n *\n * See https://eips.ethereum.org/EIPS/eip-721[ERC-721].\n *\n * _Available since v5.1._\n */\nlibrary ERC721Utils {\n    /**\n     * @dev Performs an acceptance check for the provided `operator` by calling {IERC721Receiver-onERC721Received}\n     * on the `to` address. The `operator` is generally the address that initiated the token transfer (i.e. `msg.sender`).\n     *\n     * The acceptance call is not executed and treated as a no-op if the target address doesn't contain code (i.e. an EOA).\n     * Otherwise, the recipient must implement {IERC721Receiver-onERC721Received} and return the acceptance magic value to accept\n     * the transfer.\n     */\n    function checkOnERC721Received(\n        address operator,\n        address from,\n        address to,\n        uint256 tokenId,\n        bytes memory data\n    ) internal {\n        if (to.code.length > 0) {\n            try IERC721Receiver(to).onERC721Received(operator, from, tokenId, data) returns (bytes4 retval) {\n                if (retval != IERC721Receiver.onERC721Received.selector) {\n                    // Token rejected\n                    revert IERC721Errors.ERC721InvalidReceiver(to);\n                }\n            } catch (bytes memory reason) {\n                if (reason.length == 0) {\n                    // non-IERC721Receiver implementer\n                    revert IERC721Errors.ERC721InvalidReceiver(to);\n                } else {\n                    assembly (\"memory-safe\") {\n                        revert(add(reason, 0x20), mload(reason))\n                    }\n                }\n            }\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Address.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/Address.sol)\n\npragma solidity ^0.8.20;\n\nimport {Errors} from \"./Errors.sol\";\nimport {LowLevelCall} from \"./LowLevelCall.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        if (LowLevelCall.callNoReturn(recipient, amount, \"\")) {\n            // call successful, nothing to do\n            return;\n        } else if (LowLevelCall.returnDataSize() > 0) {\n            LowLevelCall.bubbleRevert();\n        } else {\n            revert Errors.FailedCall();\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 = LowLevelCall.callNoReturn(target, value, data);\n        if (success && (LowLevelCall.returnDataSize() > 0 || target.code.length > 0)) {\n            return LowLevelCall.returnData();\n        } else if (success) {\n            revert AddressEmptyCode(target);\n        } else if (LowLevelCall.returnDataSize() > 0) {\n            LowLevelCall.bubbleRevert();\n        } else {\n            revert Errors.FailedCall();\n        }\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 = LowLevelCall.staticcallNoReturn(target, data);\n        if (success && (LowLevelCall.returnDataSize() > 0 || target.code.length > 0)) {\n            return LowLevelCall.returnData();\n        } else if (success) {\n            revert AddressEmptyCode(target);\n        } else if (LowLevelCall.returnDataSize() > 0) {\n            LowLevelCall.bubbleRevert();\n        } else {\n            revert Errors.FailedCall();\n        }\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 = LowLevelCall.delegatecallNoReturn(target, data);\n        if (success && (LowLevelCall.returnDataSize() > 0 || target.code.length > 0)) {\n            return LowLevelCall.returnData();\n        } else if (success) {\n            revert AddressEmptyCode(target);\n        } else if (LowLevelCall.returnDataSize() > 0) {\n            LowLevelCall.bubbleRevert();\n        } else {\n            revert Errors.FailedCall();\n        }\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     * NOTE: This function is DEPRECATED and may be removed in the next major release.\n     */\n    function verifyCallResultFromTarget(\n        address target,\n        bool success,\n        bytes memory returndata\n    ) internal view returns (bytes memory) {\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 (success && (returndata.length > 0 || target.code.length > 0)) {\n            return returndata;\n        } else if (success) {\n            revert AddressEmptyCode(target);\n        } else if (returndata.length > 0) {\n            LowLevelCall.bubbleRevert(returndata);\n        } else {\n            revert Errors.FailedCall();\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            return returndata;\n        } else if (returndata.length > 0) {\n            LowLevelCall.bubbleRevert(returndata);\n        } else {\n            revert Errors.FailedCall();\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Bytes.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/Bytes.sol)\n\npragma solidity ^0.8.24;\n\nimport {Math} from \"./math/Math.sol\";\n\n/**\n * @dev Bytes operations.\n */\nlibrary Bytes {\n    /**\n     * @dev Forward search for `s` in `buffer`\n     * * If `s` is present in the buffer, returns the index of the first instance\n     * * If `s` is not present in the buffer, returns type(uint256).max\n     *\n     * NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf[Javascript's `Array.indexOf`]\n     */\n    function indexOf(bytes memory buffer, bytes1 s) internal pure returns (uint256) {\n        return indexOf(buffer, s, 0);\n    }\n\n    /**\n     * @dev Forward search for `s` in `buffer` starting at position `pos`\n     * * If `s` is present in the buffer (at or after `pos`), returns the index of the next instance\n     * * If `s` is not present in the buffer (at or after `pos`), returns type(uint256).max\n     *\n     * NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf[Javascript's `Array.indexOf`]\n     */\n    function indexOf(bytes memory buffer, bytes1 s, uint256 pos) internal pure returns (uint256) {\n        uint256 length = buffer.length;\n        for (uint256 i = pos; i < length; ++i) {\n            if (bytes1(_unsafeReadBytesOffset(buffer, i)) == s) {\n                return i;\n            }\n        }\n        return type(uint256).max;\n    }\n\n    /**\n     * @dev Backward search for `s` in `buffer`\n     * * If `s` is present in the buffer, returns the index of the last instance\n     * * If `s` is not present in the buffer, returns type(uint256).max\n     *\n     * NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf[Javascript's `Array.lastIndexOf`]\n     */\n    function lastIndexOf(bytes memory buffer, bytes1 s) internal pure returns (uint256) {\n        return lastIndexOf(buffer, s, type(uint256).max);\n    }\n\n    /**\n     * @dev Backward search for `s` in `buffer` starting at position `pos`\n     * * If `s` is present in the buffer (at or before `pos`), returns the index of the previous instance\n     * * If `s` is not present in the buffer (at or before `pos`), returns type(uint256).max\n     *\n     * NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf[Javascript's `Array.lastIndexOf`]\n     */\n    function lastIndexOf(bytes memory buffer, bytes1 s, uint256 pos) internal pure returns (uint256) {\n        unchecked {\n            uint256 length = buffer.length;\n            for (uint256 i = Math.min(Math.saturatingAdd(pos, 1), length); i > 0; --i) {\n                if (bytes1(_unsafeReadBytesOffset(buffer, i - 1)) == s) {\n                    return i - 1;\n                }\n            }\n            return type(uint256).max;\n        }\n    }\n\n    /**\n     * @dev Copies the content of `buffer`, from `start` (included) to the end of `buffer` into a new bytes object in\n     * memory.\n     *\n     * NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice[Javascript's `Array.slice`]\n     */\n    function slice(bytes memory buffer, uint256 start) internal pure returns (bytes memory) {\n        return slice(buffer, start, buffer.length);\n    }\n\n    /**\n     * @dev Copies the content of `buffer`, from `start` (included) to `end` (excluded) into a new bytes object in\n     * memory. The `end` argument is truncated to the length of the `buffer`.\n     *\n     * NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice[Javascript's `Array.slice`]\n     */\n    function slice(bytes memory buffer, uint256 start, uint256 end) internal pure returns (bytes memory) {\n        // sanitize\n        end = Math.min(end, buffer.length);\n        start = Math.min(start, end);\n\n        // allocate and copy\n        bytes memory result = new bytes(end - start);\n        assembly (\"memory-safe\") {\n            mcopy(add(result, 0x20), add(add(buffer, 0x20), start), sub(end, start))\n        }\n\n        return result;\n    }\n\n    /**\n     * @dev Moves the content of `buffer`, from `start` (included) to the end of `buffer` to the start of that buffer.\n     *\n     * NOTE: This function modifies the provided buffer in place. If you need to preserve the original buffer, use {slice} instead\n     * NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice[Javascript's `Array.splice`]\n     */\n    function splice(bytes memory buffer, uint256 start) internal pure returns (bytes memory) {\n        return splice(buffer, start, buffer.length);\n    }\n\n    /**\n     * @dev Moves the content of `buffer`, from `start` (included) to end (excluded) to the start of that buffer. The\n     * `end` argument is truncated to the length of the `buffer`.\n     *\n     * NOTE: This function modifies the provided buffer in place. If you need to preserve the original buffer, use {slice} instead\n     * NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice[Javascript's `Array.splice`]\n     */\n    function splice(bytes memory buffer, uint256 start, uint256 end) internal pure returns (bytes memory) {\n        // sanitize\n        end = Math.min(end, buffer.length);\n        start = Math.min(start, end);\n\n        // allocate and copy\n        assembly (\"memory-safe\") {\n            mcopy(add(buffer, 0x20), add(add(buffer, 0x20), start), sub(end, start))\n            mstore(buffer, sub(end, start))\n        }\n\n        return buffer;\n    }\n\n    /**\n     * @dev Concatenate an array of bytes into a single bytes object.\n     *\n     * For fixed bytes types, we recommend using the solidity built-in `bytes.concat` or (equivalent)\n     * `abi.encodePacked`.\n     *\n     * NOTE: this could be done in assembly with a single loop that expands starting at the FMP, but that would be\n     * significantly less readable. It might be worth benchmarking the savings of the full-assembly approach.\n     */\n    function concat(bytes[] memory buffers) internal pure returns (bytes memory) {\n        uint256 length = 0;\n        for (uint256 i = 0; i < buffers.length; ++i) {\n            length += buffers[i].length;\n        }\n\n        bytes memory result = new bytes(length);\n\n        uint256 offset = 0x20;\n        for (uint256 i = 0; i < buffers.length; ++i) {\n            bytes memory input = buffers[i];\n            assembly (\"memory-safe\") {\n                mcopy(add(result, offset), add(input, 0x20), mload(input))\n            }\n            unchecked {\n                offset += input.length;\n            }\n        }\n\n        return result;\n    }\n\n    /**\n     * @dev Returns true if the two byte buffers are equal.\n     */\n    function equal(bytes memory a, bytes memory b) internal pure returns (bool) {\n        return a.length == b.length && keccak256(a) == keccak256(b);\n    }\n\n    /**\n     * @dev Reverses the byte order of a bytes32 value, converting between little-endian and big-endian.\n     * Inspired by https://graphics.stanford.edu/~seander/bithacks.html#ReverseParallel[Reverse Parallel]\n     */\n    function reverseBytes32(bytes32 value) internal pure returns (bytes32) {\n        value = // swap bytes\n            ((value >> 8) & 0x00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF) |\n            ((value & 0x00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF) << 8);\n        value = // swap 2-byte long pairs\n            ((value >> 16) & 0x0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF) |\n            ((value & 0x0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF) << 16);\n        value = // swap 4-byte long pairs\n            ((value >> 32) & 0x00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF) |\n            ((value & 0x00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF) << 32);\n        value = // swap 8-byte long pairs\n            ((value >> 64) & 0x0000000000000000FFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF) |\n            ((value & 0x0000000000000000FFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF) << 64);\n        return (value >> 128) | (value << 128); // swap 16-byte long pairs\n    }\n\n    /// @dev Same as {reverseBytes32} but optimized for 128-bit values.\n    function reverseBytes16(bytes16 value) internal pure returns (bytes16) {\n        value = // swap bytes\n            ((value & 0xFF00FF00FF00FF00FF00FF00FF00FF00) >> 8) |\n            ((value & 0x00FF00FF00FF00FF00FF00FF00FF00FF) << 8);\n        value = // swap 2-byte long pairs\n            ((value & 0xFFFF0000FFFF0000FFFF0000FFFF0000) >> 16) |\n            ((value & 0x0000FFFF0000FFFF0000FFFF0000FFFF) << 16);\n        value = // swap 4-byte long pairs\n            ((value & 0xFFFFFFFF00000000FFFFFFFF00000000) >> 32) |\n            ((value & 0x00000000FFFFFFFF00000000FFFFFFFF) << 32);\n        return (value >> 64) | (value << 64); // swap 8-byte long pairs\n    }\n\n    /// @dev Same as {reverseBytes32} but optimized for 64-bit values.\n    function reverseBytes8(bytes8 value) internal pure returns (bytes8) {\n        value = ((value & 0xFF00FF00FF00FF00) >> 8) | ((value & 0x00FF00FF00FF00FF) << 8); // swap bytes\n        value = ((value & 0xFFFF0000FFFF0000) >> 16) | ((value & 0x0000FFFF0000FFFF) << 16); // swap 2-byte long pairs\n        return (value >> 32) | (value << 32); // swap 4-byte long pairs\n    }\n\n    /// @dev Same as {reverseBytes32} but optimized for 32-bit values.\n    function reverseBytes4(bytes4 value) internal pure returns (bytes4) {\n        value = ((value & 0xFF00FF00) >> 8) | ((value & 0x00FF00FF) << 8); // swap bytes\n        return (value >> 16) | (value << 16); // swap 2-byte long pairs\n    }\n\n    /// @dev Same as {reverseBytes32} but optimized for 16-bit values.\n    function reverseBytes2(bytes2 value) internal pure returns (bytes2) {\n        return (value >> 8) | (value << 8);\n    }\n\n    /**\n     * @dev Counts the number of leading zero bits a bytes array. Returns `8 * buffer.length`\n     * if the buffer is all zeros.\n     */\n    function clz(bytes memory buffer) internal pure returns (uint256) {\n        for (uint256 i = 0; i < buffer.length; i += 0x20) {\n            bytes32 chunk = _unsafeReadBytesOffset(buffer, i);\n            if (chunk != bytes32(0)) {\n                return Math.min(8 * i + Math.clz(uint256(chunk)), 8 * buffer.length);\n            }\n        }\n        return 8 * buffer.length;\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(add(buffer, 0x20), offset))\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.5.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     * NOTE: This function only supports 65-byte signatures. ERC-2098 short signatures are rejected. This restriction\n     * is DEPRECATED and will be removed in v6.0. Developers SHOULD NOT use signatures as unique identifiers; use hash\n     * invalidation or nonces for replay protection.\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     *\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 Variant of {tryRecover} that takes a signature in calldata\n     */\n    function tryRecoverCalldata(\n        bytes32 hash,\n        bytes calldata 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, calldata slices would work here, but are\n            // significantly more expensive (length check) than using calldataload in assembly.\n            assembly (\"memory-safe\") {\n                r := calldataload(signature.offset)\n                s := calldataload(add(signature.offset, 0x20))\n                v := byte(0, calldataload(add(signature.offset, 0x40)))\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     * NOTE: This function only supports 65-byte signatures. ERC-2098 short signatures are rejected. This restriction\n     * is DEPRECATED and will be removed in v6.0. Developers SHOULD NOT use signatures as unique identifiers; use hash\n     * invalidation or nonces for replay protection.\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 Variant of {recover} that takes a signature in calldata\n     */\n    function recoverCalldata(bytes32 hash, bytes calldata signature) internal pure returns (address) {\n        (address recovered, RecoverError error, bytes32 errorArg) = tryRecoverCalldata(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 Parse a signature into its `v`, `r` and `s` components. Supports 65-byte and 64-byte (ERC-2098)\n     * formats. Returns (0,0,0) for invalid signatures.\n     *\n     * For 64-byte signatures, `v` is automatically normalized to 27 or 28.\n     * For 65-byte signatures, `v` is returned as-is and MUST already be 27 or 28 for use with ecrecover.\n     *\n     * Consider validating the result before use, or use {tryRecover}/{recover} which perform full validation.\n     */\n    function parse(bytes memory signature) internal pure returns (uint8 v, bytes32 r, bytes32 s) {\n        assembly (\"memory-safe\") {\n            // Check the signature length\n            switch mload(signature)\n            // - case 65: r,s,v signature (standard)\n            case 65 {\n                r := mload(add(signature, 0x20))\n                s := mload(add(signature, 0x40))\n                v := byte(0, mload(add(signature, 0x60)))\n            }\n            // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098)\n            case 64 {\n                let vs := mload(add(signature, 0x40))\n                r := mload(add(signature, 0x20))\n                s := and(vs, shr(1, not(0)))\n                v := add(shr(255, vs), 27)\n            }\n            default {\n                r := 0\n                s := 0\n                v := 0\n            }\n        }\n    }\n\n    /**\n     * @dev Variant of {parse} that takes a signature in calldata\n     */\n    function parseCalldata(bytes calldata signature) internal pure returns (uint8 v, bytes32 r, bytes32 s) {\n        assembly (\"memory-safe\") {\n            // Check the signature length\n            switch signature.length\n            // - case 65: r,s,v signature (standard)\n            case 65 {\n                r := calldataload(signature.offset)\n                s := calldataload(add(signature.offset, 0x20))\n                v := byte(0, calldataload(add(signature.offset, 0x40)))\n            }\n            // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098)\n            case 64 {\n                let vs := calldataload(add(signature.offset, 0x20))\n                r := calldataload(signature.offset)\n                s := and(vs, shr(1, not(0)))\n                v := add(shr(255, vs), 27)\n            }\n            default {\n                r := 0\n                s := 0\n                v := 0\n            }\n        }\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.5.0) (utils/cryptography/EIP712.sol)\n\npragma solidity ^0.8.24;\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    // slither-disable-next-line constable-states\n    string private _nameFallback;\n    // slither-disable-next-line constable-states\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    /// @inheritdoc IERC5267\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/Hashes.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (utils/cryptography/Hashes.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Library of standard hash functions.\n *\n * _Available since v5.1._\n */\nlibrary Hashes {\n    /**\n     * @dev Commutative Keccak256 hash of a sorted pair of bytes32. Frequently used when working with merkle proofs.\n     *\n     * NOTE: Equivalent to the `standardNodeHash` in our https://github.com/OpenZeppelin/merkle-tree[JavaScript library].\n     */\n    function commutativeKeccak256(bytes32 a, bytes32 b) internal pure returns (bytes32) {\n        return a < b ? efficientKeccak256(a, b) : efficientKeccak256(b, a);\n    }\n\n    /**\n     * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory.\n     */\n    function efficientKeccak256(bytes32 a, bytes32 b) internal pure returns (bytes32 value) {\n        assembly (\"memory-safe\") {\n            mstore(0x00, a)\n            mstore(0x20, b)\n            value := keccak256(0x00, 0x40)\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/cryptography/MessageHashUtils.sol)\n\npragma solidity ^0.8.24;\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://ethereum.org/en/developers/docs/apis/json-rpc/#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://ethereum.org/en/developers/docs/apis/json-rpc/#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 Variant of {toDataWithIntendedValidatorHash-address-bytes} optimized for cases where `data` is a bytes32.\n     */\n    function toDataWithIntendedValidatorHash(\n        address validator,\n        bytes32 messageHash\n    ) internal pure returns (bytes32 digest) {\n        assembly (\"memory-safe\") {\n            mstore(0x00, hex\"19_00\")\n            mstore(0x02, shl(96, validator))\n            mstore(0x16, messageHash)\n            digest := keccak256(0x00, 0x36)\n        }\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/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/ERC165Checker.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/introspection/ERC165Checker.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"./IERC165.sol\";\n\n/**\n * @dev Library used to query support of an interface declared via {IERC165}.\n *\n * Note that these functions return the actual result of the query: they do not\n * `revert` if an interface is not supported. It is up to the caller to decide\n * what to do in these cases.\n */\nlibrary ERC165Checker {\n    // As per the ERC-165 spec, no interface should ever match 0xffffffff\n    bytes4 private constant INTERFACE_ID_INVALID = 0xffffffff;\n\n    /**\n     * @dev Returns true if `account` supports the {IERC165} interface.\n     */\n    function supportsERC165(address account) internal view returns (bool) {\n        // Any contract that implements ERC-165 must explicitly indicate support of\n        // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid\n        if (supportsERC165InterfaceUnchecked(account, type(IERC165).interfaceId)) {\n            (bool success, bool supported) = _trySupportsInterface(account, INTERFACE_ID_INVALID);\n            return success && !supported;\n        } else {\n            return false;\n        }\n    }\n\n    /**\n     * @dev Returns true if `account` supports the interface defined by\n     * `interfaceId`. Support for {IERC165} itself is queried automatically.\n     *\n     * See {IERC165-supportsInterface}.\n     */\n    function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {\n        // query support of both ERC-165 as per the spec and support of _interfaceId\n        return supportsERC165(account) && supportsERC165InterfaceUnchecked(account, interfaceId);\n    }\n\n    /**\n     * @dev Returns a boolean array where each value corresponds to the\n     * interfaces passed in and whether they're supported or not. This allows\n     * you to batch check interfaces for a contract where your expectation\n     * is that some interfaces may not be supported.\n     *\n     * See {IERC165-supportsInterface}.\n     */\n    function getSupportedInterfaces(\n        address account,\n        bytes4[] memory interfaceIds\n    ) internal view returns (bool[] memory) {\n        // an array of booleans corresponding to interfaceIds and whether they're supported or not\n        bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length);\n\n        // query support of ERC-165 itself\n        if (supportsERC165(account)) {\n            // query support of each interface in interfaceIds\n            for (uint256 i = 0; i < interfaceIds.length; i++) {\n                interfaceIdsSupported[i] = supportsERC165InterfaceUnchecked(account, interfaceIds[i]);\n            }\n        }\n\n        return interfaceIdsSupported;\n    }\n\n    /**\n     * @dev Returns true if `account` supports all the interfaces defined in\n     * `interfaceIds`. Support for {IERC165} itself is queried automatically.\n     *\n     * Batch-querying can lead to gas savings by skipping repeated checks for\n     * {IERC165} support.\n     *\n     * See {IERC165-supportsInterface}.\n     */\n    function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {\n        // query support of ERC-165 itself\n        if (!supportsERC165(account)) {\n            return false;\n        }\n\n        // query support of each interface in interfaceIds\n        for (uint256 i = 0; i < interfaceIds.length; i++) {\n            if (!supportsERC165InterfaceUnchecked(account, interfaceIds[i])) {\n                return false;\n            }\n        }\n\n        // all interfaces supported\n        return true;\n    }\n\n    /**\n     * @notice Query if a contract implements an interface, does not check ERC-165 support\n     * @param account The address of the contract to query for support of an interface\n     * @param interfaceId The interface identifier, as specified in ERC-165\n     * @return true if the contract at account indicates support of the interface with\n     * identifier interfaceId, false otherwise\n     * @dev Assumes that account contains a contract that supports ERC-165, otherwise\n     * the behavior of this method is undefined. This precondition can be checked\n     * with {supportsERC165}.\n     *\n     * Some precompiled contracts will falsely indicate support for a given interface, so caution\n     * should be exercised when using this function.\n     *\n     * Interface identification is specified in ERC-165.\n     */\n    function supportsERC165InterfaceUnchecked(address account, bytes4 interfaceId) internal view returns (bool) {\n        (bool success, bool supported) = _trySupportsInterface(account, interfaceId);\n        return success && supported;\n    }\n\n    /**\n     * @dev Attempts to call `supportsInterface` on a contract and returns both the call\n     * success status and the interface support result.\n     *\n     * This function performs a low-level static call to the contract's `supportsInterface`\n     * function. It returns:\n     *\n     * * `success`: true if the call didn't revert, false if it did\n     * * `supported`: true if the call succeeded AND returned data indicating the interface is supported\n     */\n    function _trySupportsInterface(\n        address account,\n        bytes4 interfaceId\n    ) private view returns (bool success, bool supported) {\n        bytes4 selector = IERC165.supportsInterface.selector;\n\n        assembly (\"memory-safe\") {\n            mstore(0x00, selector)\n            mstore(0x04, interfaceId)\n            success := staticcall(30000, account, 0x00, 0x24, 0x00, 0x20)\n            supported := and(\n                gt(returndatasize(), 0x1F), // we have at least 32 bytes of returndata\n                iszero(iszero(mload(0x00))) // the first 32 bytes of returndata are non-zero\n            )\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (utils/introspection/IERC165.sol)\n\npragma solidity >=0.4.16;\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/LowLevelCall.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/LowLevelCall.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Library of low level call functions that implement different calling strategies to deal with the return data.\n *\n * WARNING: Using this library requires an advanced understanding of Solidity and how the EVM works. It is recommended\n * to use the {Address} library instead.\n */\nlibrary LowLevelCall {\n    /// @dev Performs a Solidity function call using a low level `call` and ignoring the return data.\n    function callNoReturn(address target, bytes memory data) internal returns (bool success) {\n        return callNoReturn(target, 0, data);\n    }\n\n    /// @dev Same as {callNoReturn}, but allows to specify the value to be sent in the call.\n    function callNoReturn(address target, uint256 value, bytes memory data) internal returns (bool success) {\n        assembly (\"memory-safe\") {\n            success := call(gas(), target, value, add(data, 0x20), mload(data), 0x00, 0x00)\n        }\n    }\n\n    /// @dev Performs a Solidity function call using a low level `call` and returns the first 64 bytes of the result\n    /// in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n    ///\n    /// WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n    /// and this function doesn't zero it out.\n    function callReturn64Bytes(\n        address target,\n        bytes memory data\n    ) internal returns (bool success, bytes32 result1, bytes32 result2) {\n        return callReturn64Bytes(target, 0, data);\n    }\n\n    /// @dev Same as {callReturnBytes32Pair}, but allows to specify the value to be sent in the call.\n    function callReturn64Bytes(\n        address target,\n        uint256 value,\n        bytes memory data\n    ) internal returns (bool success, bytes32 result1, bytes32 result2) {\n        assembly (\"memory-safe\") {\n            success := call(gas(), target, value, add(data, 0x20), mload(data), 0x00, 0x40)\n            result1 := mload(0x00)\n            result2 := mload(0x20)\n        }\n    }\n\n    /// @dev Performs a Solidity function call using a low level `staticcall` and ignoring the return data.\n    function staticcallNoReturn(address target, bytes memory data) internal view returns (bool success) {\n        assembly (\"memory-safe\") {\n            success := staticcall(gas(), target, add(data, 0x20), mload(data), 0x00, 0x00)\n        }\n    }\n\n    /// @dev Performs a Solidity function call using a low level `staticcall` and returns the first 64 bytes of the result\n    /// in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n    ///\n    /// WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n    /// and this function doesn't zero it out.\n    function staticcallReturn64Bytes(\n        address target,\n        bytes memory data\n    ) internal view returns (bool success, bytes32 result1, bytes32 result2) {\n        assembly (\"memory-safe\") {\n            success := staticcall(gas(), target, add(data, 0x20), mload(data), 0x00, 0x40)\n            result1 := mload(0x00)\n            result2 := mload(0x20)\n        }\n    }\n\n    /// @dev Performs a Solidity function call using a low level `delegatecall` and ignoring the return data.\n    function delegatecallNoReturn(address target, bytes memory data) internal returns (bool success) {\n        assembly (\"memory-safe\") {\n            success := delegatecall(gas(), target, add(data, 0x20), mload(data), 0x00, 0x00)\n        }\n    }\n\n    /// @dev Performs a Solidity function call using a low level `delegatecall` and returns the first 64 bytes of the result\n    /// in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n    ///\n    /// WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n    /// and this function doesn't zero it out.\n    function delegatecallReturn64Bytes(\n        address target,\n        bytes memory data\n    ) internal returns (bool success, bytes32 result1, bytes32 result2) {\n        assembly (\"memory-safe\") {\n            success := delegatecall(gas(), target, add(data, 0x20), mload(data), 0x00, 0x40)\n            result1 := mload(0x00)\n            result2 := mload(0x20)\n        }\n    }\n\n    /// @dev Returns the size of the return data buffer.\n    function returnDataSize() internal pure returns (uint256 size) {\n        assembly (\"memory-safe\") {\n            size := returndatasize()\n        }\n    }\n\n    /// @dev Returns a buffer containing the return data from the last call.\n    function returnData() internal pure returns (bytes memory result) {\n        assembly (\"memory-safe\") {\n            result := mload(0x40)\n            mstore(result, returndatasize())\n            returndatacopy(add(result, 0x20), 0x00, returndatasize())\n            mstore(0x40, add(result, add(0x20, returndatasize())))\n        }\n    }\n\n    /// @dev Revert with the return data from the last call.\n    function bubbleRevert() internal pure {\n        assembly (\"memory-safe\") {\n            let fmp := mload(0x40)\n            returndatacopy(fmp, 0x00, returndatasize())\n            revert(fmp, returndatasize())\n        }\n    }\n\n    function bubbleRevert(bytes memory returndata) internal pure {\n        assembly (\"memory-safe\") {\n            revert(add(returndata, 0x20), mload(returndata))\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/math/Math.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.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 Return the 512-bit addition of two uint256.\n     *\n     * The result is stored in two 256 variables such that sum = high * 2²⁵⁶ + low.\n     */\n    function add512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) {\n        assembly (\"memory-safe\") {\n            low := add(a, b)\n            high := lt(low, a)\n        }\n    }\n\n    /**\n     * @dev Return the 512-bit multiplication of two uint256.\n     *\n     * The result is stored in two 256 variables such that product = high * 2²⁵⁶ + low.\n     */\n    function mul512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) {\n        // 512-bit multiply [high low] = 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 = high * 2²⁵⁶ + low.\n        assembly (\"memory-safe\") {\n            let mm := mulmod(a, b, not(0))\n            low := mul(a, b)\n            high := sub(sub(mm, low), lt(mm, low))\n        }\n    }\n\n    /**\n     * @dev Returns the addition of two unsigned integers, with a 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            success = c >= a;\n            result = c * SafeCast.toUint(success);\n        }\n    }\n\n    /**\n     * @dev Returns the subtraction of two unsigned integers, with a success flag (no overflow).\n     */\n    function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            uint256 c = a - b;\n            success = c <= a;\n            result = c * SafeCast.toUint(success);\n        }\n    }\n\n    /**\n     * @dev Returns the multiplication of two unsigned integers, with a success flag (no overflow).\n     */\n    function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            uint256 c = a * b;\n            assembly (\"memory-safe\") {\n                // Only true when the multiplication doesn't overflow\n                // (c / a == b) || (a == 0)\n                success := or(eq(div(c, a), b), iszero(a))\n            }\n            // equivalent to: success ? c : 0\n            result = c * SafeCast.toUint(success);\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            success = b > 0;\n            assembly (\"memory-safe\") {\n                // The `DIV` opcode returns zero when the denominator is 0.\n                result := div(a, b)\n            }\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            success = b > 0;\n            assembly (\"memory-safe\") {\n                // The `MOD` opcode returns zero when the denominator is 0.\n                result := mod(a, b)\n            }\n        }\n    }\n\n    /**\n     * @dev Unsigned saturating addition, bounds to `2²⁵⁶ - 1` instead of overflowing.\n     */\n    function saturatingAdd(uint256 a, uint256 b) internal pure returns (uint256) {\n        (bool success, uint256 result) = tryAdd(a, b);\n        return ternary(success, result, type(uint256).max);\n    }\n\n    /**\n     * @dev Unsigned saturating subtraction, bounds to zero instead of overflowing.\n     */\n    function saturatingSub(uint256 a, uint256 b) internal pure returns (uint256) {\n        (, uint256 result) = trySub(a, b);\n        return result;\n    }\n\n    /**\n     * @dev Unsigned saturating multiplication, bounds to `2²⁵⁶ - 1` instead of overflowing.\n     */\n    function saturatingMul(uint256 a, uint256 b) internal pure returns (uint256) {\n        (bool success, uint256 result) = tryMul(a, b);\n        return ternary(success, result, type(uint256).max);\n    }\n\n    /**\n     * @dev Branchless ternary evaluation for `condition ? a : b`. 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. `condition ? a : b`) 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            (uint256 high, uint256 low) = mul512(x, y);\n\n            // Handle non-overflow cases, 256 by 256 division.\n            if (high == 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 low / denominator;\n            }\n\n            // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0.\n            if (denominator <= high) {\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 [high low].\n            uint256 remainder;\n            assembly (\"memory-safe\") {\n                // Compute remainder using mulmod.\n                remainder := mulmod(x, y, denominator)\n\n                // Subtract 256 bit number from 512 bit number.\n                high := sub(high, gt(remainder, low))\n                low := sub(low, 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 (\"memory-safe\") {\n                // Divide denominator by twos.\n                denominator := div(denominator, twos)\n\n                // Divide [high low] by twos.\n                low := div(low, 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 high into low.\n            low |= high * 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 high\n            // is no longer required.\n            result = low * 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 Calculates floor(x * y >> n) with full precision. Throws if result overflows a uint256.\n     */\n    function mulShr(uint256 x, uint256 y, uint8 n) internal pure returns (uint256 result) {\n        unchecked {\n            (uint256 high, uint256 low) = mul512(x, y);\n            if (high >= 1 << n) {\n                Panic.panic(Panic.UNDER_OVERFLOW);\n            }\n            return (high << (256 - n)) | (low >> n);\n        }\n    }\n\n    /**\n     * @dev Calculates x * y >> n with full precision, following the selected rounding direction.\n     */\n    function mulShr(uint256 x, uint256 y, uint8 n, Rounding rounding) internal pure returns (uint256) {\n        return mulShr(x, y, n) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, 1 << n) > 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 x) internal pure returns (uint256 r) {\n        // If value has upper 128 bits set, log2 result is at least 128\n        r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7;\n        // If upper 64 bits of 128-bit half set, add 64 to result\n        r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6;\n        // If upper 32 bits of 64-bit half set, add 32 to result\n        r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5;\n        // If upper 16 bits of 32-bit half set, add 16 to result\n        r |= SafeCast.toUint((x >> r) > 0xffff) << 4;\n        // If upper 8 bits of 16-bit half set, add 8 to result\n        r |= SafeCast.toUint((x >> r) > 0xff) << 3;\n        // If upper 4 bits of 8-bit half set, add 4 to result\n        r |= SafeCast.toUint((x >> r) > 0xf) << 2;\n\n        // Shifts value right by the current result and use it as an index into this lookup table:\n        //\n        // | x (4 bits) |  index  | table[index] = MSB position |\n        // |------------|---------|-----------------------------|\n        // |    0000    |    0    |        table[0] = 0         |\n        // |    0001    |    1    |        table[1] = 0         |\n        // |    0010    |    2    |        table[2] = 1         |\n        // |    0011    |    3    |        table[3] = 1         |\n        // |    0100    |    4    |        table[4] = 2         |\n        // |    0101    |    5    |        table[5] = 2         |\n        // |    0110    |    6    |        table[6] = 2         |\n        // |    0111    |    7    |        table[7] = 2         |\n        // |    1000    |    8    |        table[8] = 3         |\n        // |    1001    |    9    |        table[9] = 3         |\n        // |    1010    |   10    |        table[10] = 3        |\n        // |    1011    |   11    |        table[11] = 3        |\n        // |    1100    |   12    |        table[12] = 3        |\n        // |    1101    |   13    |        table[13] = 3        |\n        // |    1110    |   14    |        table[14] = 3        |\n        // |    1111    |   15    |        table[15] = 3        |\n        //\n        // The lookup table is represented as a 32-byte value with the MSB positions for 0-15 in the last 16 bytes.\n        assembly (\"memory-safe\") {\n            r := or(r, byte(shr(r, x), 0x0000010102020202030303030303030300000000000000000000000000000000))\n        }\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 x) internal pure returns (uint256 r) {\n        // If value has upper 128 bits set, log2 result is at least 128\n        r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7;\n        // If upper 64 bits of 128-bit half set, add 64 to result\n        r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6;\n        // If upper 32 bits of 64-bit half set, add 32 to result\n        r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5;\n        // If upper 16 bits of 32-bit half set, add 16 to result\n        r |= SafeCast.toUint((x >> r) > 0xffff) << 4;\n        // Add 1 if upper 8 bits of 16-bit half set, and divide accumulated result by 8\n        return (r >> 3) | SafeCast.toUint((x >> r) > 0xff);\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    /**\n     * @dev Counts the number of leading zero bits in a uint256.\n     */\n    function clz(uint256 x) internal pure returns (uint256) {\n        return ternary(x == 0, 256, 255 - log2(x));\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/Memory.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/Memory.sol)\n\npragma solidity ^0.8.24;\n\nimport {Panic} from \"./Panic.sol\";\nimport {Math} from \"./math/Math.sol\";\n\n/**\n * @dev Utilities to manipulate memory.\n *\n * Memory is a contiguous and dynamic byte array in which Solidity stores non-primitive types.\n * This library provides functions to manipulate pointers to this dynamic array and work with slices of it.\n *\n * Slices provide a view into a portion of memory without copying data, enabling efficient substring operations.\n *\n * WARNING: When manipulating memory pointers or slices, make sure to follow the Solidity documentation\n * guidelines for https://docs.soliditylang.org/en/v0.8.20/assembly.html#memory-safety[Memory Safety].\n */\nlibrary Memory {\n    type Pointer is bytes32;\n\n    /// @dev Returns a `Pointer` to the current free `Pointer`.\n    function getFreeMemoryPointer() internal pure returns (Pointer ptr) {\n        assembly (\"memory-safe\") {\n            ptr := mload(0x40)\n        }\n    }\n\n    /**\n     * @dev Sets the free `Pointer` to a specific value.\n     *\n     * WARNING: Everything after the pointer may be overwritten.\n     **/\n    function setFreeMemoryPointer(Pointer ptr) internal pure {\n        assembly (\"memory-safe\") {\n            mstore(0x40, ptr)\n        }\n    }\n\n    /// @dev `Pointer` to `bytes32`. Expects a pointer to a properly ABI-encoded `bytes` object.\n    function asBytes32(Pointer ptr) internal pure returns (bytes32) {\n        return Pointer.unwrap(ptr);\n    }\n\n    /// @dev `bytes32` to `Pointer`. Expects a pointer to a properly ABI-encoded `bytes` object.\n    function asPointer(bytes32 value) internal pure returns (Pointer) {\n        return Pointer.wrap(value);\n    }\n\n    /// @dev Move a pointer forward by a given offset.\n    function forward(Pointer ptr, uint256 offset) internal pure returns (Pointer) {\n        return Pointer.wrap(bytes32(uint256(Pointer.unwrap(ptr)) + offset));\n    }\n\n    /// @dev Equality comparator for memory pointers.\n    function equal(Pointer ptr1, Pointer ptr2) internal pure returns (bool) {\n        return Pointer.unwrap(ptr1) == Pointer.unwrap(ptr2);\n    }\n\n    type Slice is bytes32;\n\n    /// @dev Get a slice representation of a bytes object in memory\n    function asSlice(bytes memory self) internal pure returns (Slice result) {\n        assembly (\"memory-safe\") {\n            result := or(shl(128, mload(self)), add(self, 0x20))\n        }\n    }\n\n    /// @dev Returns the length of a given slice (equiv to self.length for calldata slices)\n    function length(Slice self) internal pure returns (uint256 result) {\n        assembly (\"memory-safe\") {\n            result := shr(128, self)\n        }\n    }\n\n    /// @dev Offset a memory slice (equivalent to self[start:] for calldata slices)\n    function slice(Slice self, uint256 offset) internal pure returns (Slice) {\n        if (offset > length(self)) Panic.panic(Panic.ARRAY_OUT_OF_BOUNDS);\n        return _asSlice(length(self) - offset, forward(_pointer(self), offset));\n    }\n\n    /// @dev Offset and cut a Slice (equivalent to self[start:start+length] for calldata slices)\n    function slice(Slice self, uint256 offset, uint256 len) internal pure returns (Slice) {\n        if (offset + len > length(self)) Panic.panic(Panic.ARRAY_OUT_OF_BOUNDS);\n        return _asSlice(len, forward(_pointer(self), offset));\n    }\n\n    /**\n     * @dev Read a bytes32 buffer from a given Slice at a specific offset\n     *\n     * NOTE: If offset > length(slice) - 0x20, part of the return value will be out of bound of the slice. These bytes are zeroed.\n     */\n    function load(Slice self, uint256 offset) internal pure returns (bytes32 value) {\n        uint256 outOfBoundBytes = Math.saturatingSub(0x20 + offset, length(self));\n        if (outOfBoundBytes > 0x1f) Panic.panic(Panic.ARRAY_OUT_OF_BOUNDS);\n\n        assembly (\"memory-safe\") {\n            value := and(mload(add(and(self, shr(128, not(0))), offset)), shl(mul(8, outOfBoundBytes), not(0)))\n        }\n    }\n\n    /// @dev Extract the data corresponding to a Slice (allocate new memory)\n    function toBytes(Slice self) internal pure returns (bytes memory result) {\n        uint256 len = length(self);\n        Memory.Pointer ptr = _pointer(self);\n        assembly (\"memory-safe\") {\n            result := mload(0x40)\n            mstore(result, len)\n            mcopy(add(result, 0x20), ptr, len)\n            mstore(0x40, add(add(result, len), 0x20))\n        }\n    }\n\n    /**\n     * @dev Private helper: create a slice from raw values (length and pointer)\n     *\n     * NOTE: this function MUST NOT be called with `len` or `ptr` that exceed `2**128-1`. This should never be\n     * the case of slices produced by `asSlice(bytes)`, and function that reduce the scope of slices\n     * (`slice(Slice,uint256)` and `slice(Slice,uint256, uint256)`) should not cause this issue if the parent slice is\n     * correct.\n     */\n    function _asSlice(uint256 len, Memory.Pointer ptr) private pure returns (Slice result) {\n        assembly (\"memory-safe\") {\n            result := or(shl(128, len), ptr)\n        }\n    }\n\n    /// @dev Returns the memory location of a given slice (equiv to self.offset for calldata slices)\n    function _pointer(Slice self) private pure returns (Memory.Pointer result) {\n        assembly (\"memory-safe\") {\n            result := and(self, shr(128, not(0)))\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Multicall.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/Multicall.sol)\n\npragma solidity ^0.8.20;\n\nimport {Address} from \"./Address.sol\";\nimport {Context} from \"./Context.sol\";\n\n/**\n * @dev Provides a function to batch together multiple calls in a single external call.\n *\n * Consider any assumption about calldata validation performed by the sender may be violated if it's not especially\n * careful about sending transactions invoking {multicall}. For example, a relay address that filters function\n * selectors won't filter calls nested within a {multicall} operation.\n *\n * NOTE: Since 5.0.1 and 4.9.4, this contract identifies non-canonical contexts (i.e. `msg.sender` is not {Context-_msgSender}).\n * If a non-canonical context is identified, the following self `delegatecall` appends the last bytes of `msg.data`\n * to the subcall. This makes it safe to use with {ERC2771Context}. Contexts that don't affect the resolution of\n * {Context-_msgSender} are not propagated to subcalls.\n */\nabstract contract Multicall is Context {\n    /**\n     * @dev Receives and executes a batch of function calls on this contract.\n     * @custom:oz-upgrades-unsafe-allow-reachable delegatecall\n     */\n    function multicall(bytes[] calldata data) public virtual returns (bytes[] memory results) {\n        bytes memory context = msg.sender == _msgSender()\n            ? new bytes(0)\n            : msg.data[msg.data.length - _contextSuffixLength():];\n\n        results = new bytes[](data.length);\n        for (uint256 i = 0; i < data.length; i++) {\n            results[i] = Address.functionDelegateCall(address(this), bytes.concat(data[i], context));\n        }\n        return results;\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.5.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 > 0x1f) {\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(0x20);\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 > 0x1f) {\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 < 0x20) {\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 {toShortStringWithFallback}.\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     * {toShortStringWithFallback}.\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.5.0) (utils/Strings.sol)\n\npragma solidity ^0.8.24;\n\nimport {Math} from \"./math/Math.sol\";\nimport {SafeCast} from \"./math/SafeCast.sol\";\nimport {SignedMath} from \"./math/SignedMath.sol\";\nimport {Bytes} from \"./Bytes.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    uint256 private constant SPECIAL_CHARS_LOOKUP =\n        (1 << 0x08) | // backspace\n            (1 << 0x09) | // tab\n            (1 << 0x0a) | // newline\n            (1 << 0x0c) | // form feed\n            (1 << 0x0d) | // carriage return\n            (1 << 0x22) | // double quote\n            (1 << 0x5c); // backslash\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(add(buffer, 0x20), 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 Converts a `bytes` buffer to its ASCII `string` hexadecimal representation.\n     */\n    function toHexString(bytes memory input) internal pure returns (string memory) {\n        unchecked {\n            bytes memory buffer = new bytes(2 * input.length + 2);\n            buffer[0] = \"0\";\n            buffer[1] = \"x\";\n            for (uint256 i = 0; i < input.length; ++i) {\n                uint8 v = uint8(input[i]);\n                buffer[2 * i + 2] = HEX_DIGITS[v >> 4];\n                buffer[2 * i + 3] = HEX_DIGITS[v & 0xf];\n            }\n            return string(buffer);\n        }\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.equal(bytes(a), 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-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 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-string-uint256-uint256} 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-string-uint256-uint256} 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-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 `(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-string-uint256-uint256} 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 guarantees 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-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 `(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-string} 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-string-uint256-uint256} 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 Escape special characters in JSON strings. This can be useful to prevent JSON injection in NFT metadata.\n     *\n     * WARNING: This function should only be used in double quoted JSON strings. Single quotes are not escaped.\n     *\n     * NOTE: This function escapes all unicode characters, and not just the ones in ranges defined in section 2.5 of\n     * RFC-4627 (U+0000 to U+001F, U+0022 and U+005C). ECMAScript's `JSON.parse` does recover escaped unicode\n     * characters that are not in this range, but other tooling may provide different results.\n     */\n    function escapeJSON(string memory input) internal pure returns (string memory) {\n        bytes memory buffer = bytes(input);\n        bytes memory output = new bytes(2 * buffer.length); // worst case scenario\n        uint256 outputLength = 0;\n\n        for (uint256 i = 0; i < buffer.length; ++i) {\n            bytes1 char = bytes1(_unsafeReadBytesOffset(buffer, i));\n            if (((SPECIAL_CHARS_LOOKUP & (1 << uint8(char))) != 0)) {\n                output[outputLength++] = \"\\\\\";\n                if (char == 0x08) output[outputLength++] = \"b\";\n                else if (char == 0x09) output[outputLength++] = \"t\";\n                else if (char == 0x0a) output[outputLength++] = \"n\";\n                else if (char == 0x0c) output[outputLength++] = \"f\";\n                else if (char == 0x0d) output[outputLength++] = \"r\";\n                else if (char == 0x5c) output[outputLength++] = \"\\\\\";\n                else if (char == 0x22) {\n                    // solhint-disable-next-line quotes\n                    output[outputLength++] = '\"';\n                }\n            } else {\n                output[outputLength++] = char;\n            }\n        }\n        // write the actual length and deallocate unused memory\n        assembly (\"memory-safe\") {\n            mstore(output, outputLength)\n            mstore(0x40, add(output, shl(5, shr(5, add(outputLength, 63)))))\n        }\n\n        return string(output);\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(add(buffer, 0x20), offset))\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/types/Time.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.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 transition 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/Cooler.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IERC165} from \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\nimport {IERC20} from \"@openzeppelin/contracts/interfaces/IERC20.sol\";\nimport {IERC20Permit} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\";\nimport {ERC721Upgradeable} from \"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol\";\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport {SafeCast} from \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport {Math} from \"@openzeppelin/contracts/utils/math/Math.sol\";\nimport {PolicyPoolComponent} from \"./PolicyPoolComponent.sol\";\nimport {ICooler} from \"./interfaces/ICooler.sol\";\nimport {IEToken} from \"./interfaces/IEToken.sol\";\nimport {IPolicyPool} from \"./interfaces/IPolicyPool.sol\";\nimport {PolicyPool} from \"./PolicyPool.sol\";\nimport {ETKLib} from \"./ETKLib.sol\";\n\n/**\n * @title Cooler contract\n * @notice This contract handles the cooldown required before withdrawal of eTokens\n * @dev For each withdrawal position it mints an NFT. The owner of the NFT is who receives the funds when the\n * withdrawal is executed. The value of the eTokens at the execution time can be higher or lower than the value\n * of the eTokens when the withdrawal was scheduled, due to earnings and losses during the cooldown period. If the\n * resulting amount is lower, the LP (owner of the NFT) will receive less. If the value is higher than the value at\n * the schedule period, the LP will receive ONLY the value at the schedule time, and the difference will be\n * distributed to the remaining LPs of the token.\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract Cooler is ICooler, PolicyPoolComponent, ERC721Upgradeable {\n  using SafeERC20 for IERC20;\n  using SafeCast for uint256;\n  using Math for uint256;\n\n  /**\n   * @notice Struct to store info about the withdrawal request\n   * @dev There's one of this for each request (each NFT). It contains the request amount and the request time\n   * and expiration.\n   */\n  struct WithdrawalRequest {\n    ETKLib.Scale scaleAtRequest; // in Wad - the scale factor of the eToken at request time\n    IEToken etk; // Whitelist for deposits and transfers\n    uint128 requestedAmount; // Withdrawal amount requested\n    uint40 requestedAt; // Timestamp when the withdrawal was requested\n    uint40 expiration; // Timestamp when the withdrawal can be executed\n  }\n\n  /// @notice Mapping with the WithdrawalRequest info\n  mapping(uint256 => WithdrawalRequest) internal _withdrawalRequests;\n\n  /// @notice Mapping with the cooldown period (in seconds) for each eToken\n  mapping(IEToken => uint40) internal _cooldownPeriods;\n\n  /// @notice Mapping with the aggregate amount of pending withdrawals per eToken\n  mapping(IEToken => uint256) internal _pendingWithdrawals;\n\n  /// @notice It used for the withdrawal NFTs, starts at 1.\n  uint256 internal _nextTokenId;\n\n  /**\n   * @notice Event emitted when the cooldown period is changed\n   *\n   * @param eToken The EToken contract address for which the cooldown period was modified\n   * @param oldCooldownPeriod The previous cooldown period value (in seconds)\n   * @param newCooldownPeriod The new cooldown period value (in seconds)\n   */\n  event CooldownPeriodChanged(IEToken indexed eToken, uint40 oldCooldownPeriod, uint40 newCooldownPeriod);\n\n  /**\n   * @notice Event emitted when a withdrawal is requested\n   *\n   * @param eToken The EToken contract from which the withdrawal is being requested\n   * @param tokenId The NFT id of the withdrawal position created\n   * @param owner The owner initiating the withdrawal request\n   * @param when The timestamp when the withdrawal can be executed\n   * @param scaleAtRequest The token scale (see {EToken.getCurrentScale(true)}) at the time of the withdrawal request\n   * @param amount The amount of eTokens being requested for withdrawal\n   */\n  event WithdrawalRequested(\n    IEToken indexed eToken,\n    uint256 indexed tokenId,\n    address indexed owner,\n    uint40 when,\n    ETKLib.Scale scaleAtRequest,\n    uint256 amount\n  );\n\n  /**\n   * @notice Event emitted when a withdrawal is executed\n   *\n   * @param eToken The EToken contract from which the withdrawal was processed\n   * @param tokenId The unique identifier of the token position that was withdrawn\n   * @param receiver The address that received the withdrawn funds\n   * @param amountRequested The original amount of eTokens requested for withdrawal\n   * @param amountWithdrawn The actual amount withdrawn to the receiver\n   */\n  event WithdrawalExecuted(\n    IEToken indexed eToken,\n    uint256 indexed tokenId,\n    address indexed receiver,\n    uint256 amountRequested,\n    uint256 amountWithdrawn\n  );\n\n  /**\n   * @notice Error produced when requesting a withdrawal earlier than the minimum withdrawal period\n   */\n  error WithdrawalRequestEarlierThanMin(uint40 minRequestTime, uint40 timeRequested);\n\n  /**\n   * @notice Error produced when requesting a withdrawal from an eToken that doesn't have address(this) as cooler\n   */\n  error InvalidEToken(IEToken eToken);\n\n  /**\n   * @notice Error produced when trying to execute a withdrawal of an non-existent or already used NFT\n   */\n  error InvalidWithdrawalRequest(uint256 tokenId);\n\n  /**\n   * @notice Error produced when trying to execute a withdrawal ahead of time (WithdrawalRequest.when)\n   */\n  error WithdrawalNotReady(uint256 tokenId, uint40 expiration);\n\n  /**\n   * @notice Error produced when trying to schedule a withdrawal with zero amount\n   */\n  error CannotDoZeroWithdrawals();\n\n  /// @custom:oz-upgrades-unsafe-allow constructor\n  // solhint-disable-next-line no-empty-blocks\n  constructor(IPolicyPool policyPool_) PolicyPoolComponent(policyPool_) {}\n\n  /**\n   * @notice Initializes the Cooler contract\n   *\n   * @param name_ ERC721 name attribute of the NFT collection\n   * @param symbol_ ERC721 symbol attribute of the NFT collection\n   */\n  function initialize(string memory name_, string memory symbol_) public virtual initializer {\n    __Cooler_init(name_, symbol_);\n  }\n\n  // solhint-disable-next-line func-name-mixedcase\n  function __Cooler_init(string memory name_, string memory symbol_) internal onlyInitializing {\n    __PolicyPoolComponent_init();\n    __ERC721_init(name_, symbol_);\n  }\n\n  /// @inheritdoc IERC165\n  function supportsInterface(\n    bytes4 interfaceId\n  ) public view virtual override(ERC721Upgradeable, PolicyPoolComponent) returns (bool) {\n    return\n      ERC721Upgradeable.supportsInterface(interfaceId) ||\n      PolicyPoolComponent.supportsInterface(interfaceId) ||\n      interfaceId == type(ICooler).interfaceId;\n  }\n\n  /// @inheritdoc ICooler\n  function pendingWithdrawals(IEToken eToken) external view override returns (uint256) {\n    return _pendingWithdrawals[eToken];\n  }\n\n  /// @inheritdoc ICooler\n  function cooldownPeriod(\n    IEToken eToken,\n    address /* owner */,\n    uint256 /* amount */\n  ) public view override returns (uint40) {\n    return _cooldownPeriods[eToken];\n  }\n\n  /**\n   * @notice Sets the cooldown period for a specific EToken\n   *\n   * @param eToken The EToken contract address to configure the cooldown period for\n   * @param newCooldownPeriod The new cooldown period duration in seconds\n   *\n   * @custom:emits CooldownPeriodChanged event with the old and new cooldown periods\n   */\n  function setCooldownPeriod(IEToken eToken, uint40 newCooldownPeriod) external {\n    emit CooldownPeriodChanged(eToken, _cooldownPeriods[eToken], newCooldownPeriod);\n    _cooldownPeriods[eToken] = newCooldownPeriod;\n  }\n\n  /**\n   * @notice Schedules a withdrawal using EIP-2612 permit for gasless approval\n   *\n   * @dev This function allows users to schedule withdrawals without prior ERC20 approvals\n   * by using EIP-2612 permit signatures for gasless transactions\n   *\n   * @custom:emits WithdrawalRequested\n   *\n   * @param eToken The EToken contract from which to withdraw\n   * @param when The timestamp when the withdrawal should be executable (when =0 uses the minimum cooldown period)\n   * @param amount The amount of eTokens to withdraw\n   * @param deadline The expiration timestamp for the permit signature\n   * @param v The recovery byte of the signature\n   * @param r The R component of the signature\n   * @param s The S component of the signature\n   * @return tokenId The NFT ID of the token representing the withdrawal position\n   */\n  function scheduleWithdrawalWithPermit(\n    IEToken eToken,\n    uint40 when,\n    uint256 amount,\n    uint256 deadline,\n    uint8 v,\n    bytes32 r,\n    bytes32 s\n  ) external returns (uint256 tokenId) {\n    // solhint-disable-next-line no-empty-blocks\n    try IERC20Permit(address(eToken)).permit(_msgSender(), address(this), amount, deadline, v, r, s) {} catch {}\n    // Check https://github.com/OpenZeppelin/openzeppelin-contracts/blob/1cf13771092c83a060eaef0f8809493fb4c04eb1/contracts/token/ERC20/extensions/IERC20Permit.sol#L16\n    // for explanation of this try/catch pattern\n    return _scheduleWithdrawal(eToken, when, amount);\n  }\n\n  /**\n   * @notice Schedules a withdrawal\n   *\n   * @custom:emits WithdrawalRequested\n   *\n   * @param eToken The EToken contract from which to withdraw\n   * @param when The timestamp when the withdrawal should be executable (when =0 uses the minimum cooldown period)\n   * @param amount The amount of eTokens to withdraw\n   * @return tokenId The NFT ID of the token representing the withdrawal position\n   */\n  function scheduleWithdrawal(IEToken eToken, uint40 when, uint256 amount) external returns (uint256 tokenId) {\n    return _scheduleWithdrawal(eToken, when, amount);\n  }\n\n  function _scheduleWithdrawal(IEToken eToken, uint40 when, uint256 amount) internal returns (uint256 tokenId) {\n    require(eToken.cooler() == address(this), InvalidEToken(eToken));\n    if (amount == type(uint256).max) amount = IERC20(address(eToken)).balanceOf(_msgSender());\n    require(amount > 0, CannotDoZeroWithdrawals());\n    // Check or compute the withdrawal time\n    uint40 minCooldownWhen = uint40(block.timestamp) + cooldownPeriod(eToken, _msgSender(), amount);\n    if (when == 0) {\n      when = minCooldownWhen;\n    } else if (when < minCooldownWhen) {\n      revert WithdrawalRequestEarlierThanMin(minCooldownWhen, when);\n    }\n    // Store withdrawal request\n    tokenId = ++_nextTokenId;\n    ETKLib.Scale scaleAtRequest = ETKLib.Scale.wrap(uint96(eToken.getCurrentScale(true)));\n    _withdrawalRequests[tokenId] = WithdrawalRequest({\n      etk: eToken,\n      scaleAtRequest: scaleAtRequest,\n      requestedAt: uint40(block.timestamp),\n      expiration: when,\n      requestedAmount: amount.toUint128()\n    });\n    _pendingWithdrawals[eToken] += amount;\n    IERC20(address(eToken)).safeTransferFrom(_msgSender(), address(this), amount);\n    _safeMint(_msgSender(), tokenId, abi.encode(_withdrawalRequests[tokenId]));\n    emit WithdrawalRequested(eToken, tokenId, _msgSender(), when, scaleAtRequest, amount);\n  }\n\n  /**\n   * @notice Executes a previously scheduled withdrawal after the cooldown period has elapsed\n   * @dev This function processes a withdrawal request that has completed its cooldown period,\n   * transferring the underlying tokens to the token owner and cleaning up the withdrawal state.\n   *\n   * @param tokenId The ID of the token representing the withdrawal position to execute\n   *\n   * @custom:pre The withdrawal request must exist (`request.requestedAt != 0`)\n   * @custom:pre The cooldown period must have elapsed (`block.timestamp >= request.expiration`)\n   *\n   * @custom:emits WithdrawalExecuted with the requested and actual withdrawn amounts\n   */\n  function executeWithdrawal(uint256 tokenId) external {\n    WithdrawalRequest storage request = _withdrawalRequests[tokenId];\n    require(request.requestedAt != 0, InvalidWithdrawalRequest(tokenId));\n    require(block.timestamp >= request.expiration, WithdrawalNotReady(tokenId, request.expiration));\n\n    address receiver = ownerOf(tokenId);\n    uint256 amountAtExecution = _computeCurrentValue(request);\n    uint256 amountWithdraw = Math.min(amountAtExecution, request.requestedAmount);\n\n    // Clean my storage before calling other contracts\n    request.requestedAt = 0; // Delete the request\n    _burn(tokenId);\n    _pendingWithdrawals[request.etk] -= request.requestedAmount;\n\n    PolicyPool(address(_policyPool)).withdraw(request.etk, amountWithdraw, receiver, address(this));\n    if (amountAtExecution > amountWithdraw) {\n      // Burn some eTokens to generate additional yields to remaining LPs\n      // uses balanceOf just in case there's small difference in the funds available to redistribute because\n      // of pessimistic rounding\n      request.etk.redistribute(\n        Math.min(amountAtExecution - amountWithdraw, IERC20(address(request.etk)).balanceOf(address(this)))\n      );\n    }\n    emit WithdrawalExecuted(request.etk, tokenId, receiver, request.requestedAmount, amountWithdraw);\n  }\n\n  function _computeCurrentValue(WithdrawalRequest storage request) internal view returns (uint256) {\n    return\n      uint256(request.requestedAmount).mulDiv(\n        request.etk.getCurrentScale(true), // scaleAtExecution\n        ETKLib.Scale.unwrap(request.scaleAtRequest)\n      );\n  }\n\n  /**\n   * @notice Returns the current withdrawable value for a given withdrawal position\n   *\n   * @param tokenId The ID of the token representing the withdrawal position\n   * @return The current withdrawable amount in underlying tokens\n   */\n  function getCurrentValue(uint256 tokenId) external view returns (uint256) {\n    WithdrawalRequest storage request = _withdrawalRequests[tokenId];\n    if (request.requestedAt == 0) return 0;\n    return Math.min(_computeCurrentValue(request), request.requestedAmount);\n  }\n\n  /**\n   * @notice Returns the information of a pending withdrawal request\n   *\n   * @param tokenId The ID of the token representing the withdrawal position\n   * @return The information about the withdrawal request\n   */\n  function getWithdrawalRequestInfo(uint256 tokenId) external view returns (WithdrawalRequest memory) {\n    return _withdrawalRequests[tokenId];\n  }\n}\n"},"contracts/ETKLib.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\n\npragma solidity ^0.8.28;\n\nimport {SafeCast} from \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\n\n/**\n * @title ETKLib\n * @notice Library with different datatypes and utils used by the eToken contract\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\nlibrary ETKLib {\n  using SafeCast for uint256;\n  using ETKLib for Scale;\n\n  type Scale is uint96;\n\n  uint256 private constant SECONDS_PER_YEAR = 365 days;\n  Scale private constant SCALE_INITIAL = Scale.wrap(1e14);\n  uint256 private constant MIN_SCALE = 1e6; // 0.0000000001 == 1e-12 in wad = SCALE_INITIAL / 1e8\n  uint256 internal constant WAD = 1e18;\n  int256 internal constant SWAD = 1e18;\n\n  // solhint-disable-next-line gas-struct-packing\n  struct ScaledAmount {\n    uint128 amount; // amount before applying any factor to take it to current value\n    Scale scale; // in Wad - factor used to compute the current value from the amount at the lastUpdate time\n    uint32 lastUpdate; // Timestamp when the scale was computed. From that point to 'now', we increase with at a\n    // given interestRate.\n  }\n\n  struct Scr {\n    uint128 scr; // amount - Capital locked as Solvency Capital Requirement of backed up policies\n    uint128 interestRate; // in Wad - Interest rate received in exchange of solvency capital\n  }\n\n  error ScaleTooSmall(uint256 rejectedScale); // Scale too small, can lead to rounding errors\n\n  /**\n   * @notice unchecked version of Math.mulDiv that returns the result of a * b / c.\n   *\n   * Assumes a * b < 2**256\n   */\n  function _mulDiv(uint256 a, uint256 b, uint256 c) internal pure returns (uint256) {\n    unchecked {\n      return (a * b) / c;\n    }\n  }\n\n  /**\n   * @notice unchecked version of Math.mulDiv that returns the result of a * b / c. (signed version)\n   *\n   * Assumes a * b < 2**256\n   */\n  function _mulDiv(int256 a, int256 b, int256 c) internal pure returns (int256) {\n    unchecked {\n      return (a * b) / c;\n    }\n  }\n\n  /**\n   * @notice unchecked version of Math.mulDiv that returns the result of a * b / c, rounding up when there is non-zero remainder.\n   *\n   * Assumes a * b < 2**256\n   */\n  function _mulDivCeil(uint256 a, uint256 b, uint256 c) internal pure returns (uint256) {\n    unchecked {\n      return (a * b) / c + SafeCast.toUint(mulmod(a, b, c) > 0);\n    }\n  }\n\n  /*** BEGIN Scale functions ***/\n\n  /**\n   * @notice Converts a \"scaled amount\" (raw value, without applying earnings) to the current value after\n   *      after applying the scale.\n   * @param scaledAmount The `scaled amount` as the ones stored in `$._balances`\n   * @param scale        The scale to apply.\n   * @return The current amount, that results of `scaledAmount * scale`\n   */\n  function toCurrent(Scale scale, uint256 scaledAmount) internal pure returns (uint256) {\n    return _mulDiv(scaledAmount, scale.toUint256(), WAD);\n  }\n\n  /**\n   * @notice Converts a \"scaled amount\" (raw value, without applying earnings) to the current value after\n   *      after applying the scale, rounding to the ceil\n   * @param scaledAmount The `scaled amount` as the ones stored in `$._balances`\n   * @param scale        The scale to apply.\n   * @return The current amount, that results of `scaledAmount * scale`\n   */\n  function toCurrentCeil(Scale scale, uint256 scaledAmount) internal pure returns (uint256) {\n    return _mulDivCeil(scaledAmount, scale.toUint256(), WAD);\n  }\n\n  /**\n   * @notice Converts a \"current amount\" (user-facing value, after applying earnings/scale) into a scaled amount (raw value).\n   * @dev Un-applies the scale (in WAD): `scaled = currentAmount * WAD / scale`.\n   * @param scale The scale (WAD) to un-apply.\n   * @param currentAmount The current amount as obtained from balanceOf() or totalSupply().\n   * @return scaledAmount The scaled amount (raw value).\n   */\n  function toScaled(Scale scale, uint256 currentAmount) internal pure returns (uint256) {\n    return _mulDiv(currentAmount, WAD, scale.toUint256());\n  }\n\n  /**\n   * @notice Same as {toScaled}, but rounds up when there is a non-zero remainder.\n   * @dev `scaled = ceil(currentAmount * WAD / scale)`.\n   * @param scale The scale (WAD) to un-apply.\n   * @param currentAmount The current amount as obtained from balanceOf() or totalSupply().\n   * @return scaledAmount The scaled amount (raw value), rounded up.\n   */\n  function toScaledCeil(Scale scale, uint256 currentAmount) internal pure returns (uint256) {\n    return _mulDivCeil(currentAmount, WAD, scale.toUint256());\n  }\n\n  /**\n   * @notice Returns a `newScale = scale * (1 + factor)`\n   *\n   * @param scale The base scale.\n   * @param factor The multiplicative increment, in WAD.\n   * @return newScale The updated scale.\n   */\n  function grow(Scale scale, uint256 factor) internal pure returns (Scale newScale) {\n    return Scale.wrap(_mulDiv(scale.toUint256(), factor + WAD, WAD).toUint96());\n  }\n\n  /**\n   * @notice Returns a `newScale = scale + factor`.\n   *\n   * @param scale The base scale.\n   * @param factor The additive increment (same units as `scale`).\n   * @return newScale The updated scale.\n   */\n  function add(Scale scale, uint256 factor) internal pure returns (Scale newScale) {\n    return Scale.wrap((scale.toUint256() + factor).toUint96());\n  }\n\n  /**\n   * @notice Returns a `newScale = scale + factor`, allowing it to increase or decrease.\n   *         Reverts if the resulting scale would be below `MIN_SCALE`.\n   * @param scale The base scale.\n   * @param factor The signed additive increment (same units as `scale`).\n   * @return newScale The updated scale.\n   */\n  function add(Scale scale, int256 factor) internal pure returns (Scale newScale) {\n    uint256 newScaleInt = uint256(int256(scale.toUint256()) + factor);\n    require(newScaleInt >= MIN_SCALE, ScaleTooSmall(newScaleInt));\n    return Scale.wrap(newScaleInt.toUint96());\n  }\n\n  /**\n   * @notice Unwraps {Scale} into uint256.\n   */\n  function toUint256(Scale scale) internal pure returns (uint256) {\n    return Scale.unwrap(scale);\n  }\n\n  /*** BEGIN ScaledAmount functions ***/\n\n  /**\n   * @notice Computes the scale of the scaledAmount projecting the last recorded value to the future asumming linear rate\n   */\n  function projectScale(ScaledAmount storage scaledAmount, uint256 interestRate) internal view returns (Scale) {\n    uint32 now_ = uint32(block.timestamp);\n    if (scaledAmount.lastUpdate < now_) {\n      return scaledAmount.scale.grow((interestRate * uint256(now_ - scaledAmount.lastUpdate)) / SECONDS_PER_YEAR);\n    } else {\n      return scaledAmount.scale;\n    }\n  }\n\n  /**\n   * @notice Computes the scale of the scaledAmount projecting the last recorded value to the future asumming linear rate\n   */\n  function projectScale(ScaledAmount storage scaledAmount, Scr storage scr) internal view returns (Scale ret) {\n    uint256 scrEarnings = earnings(scr, scaledAmount.lastUpdate);\n    if (scrEarnings == 0) return scaledAmount.scale;\n    ret = scaledAmount.scale.add(_mulDiv(scrEarnings, WAD, uint256(scaledAmount.amount)));\n  }\n\n  function init(ScaledAmount storage scaledAmount) internal {\n    scaledAmount.scale = SCALE_INITIAL;\n    scaledAmount.amount = 0;\n    scaledAmount.lastUpdate = uint32(block.timestamp);\n  }\n\n  /**\n   * @notice Internal helper to add `amount` (current units) to a {ScaledAmount} using a given `scale`.\n   *\n   * @return newScaledAmount Updated in-memory struct (caller is expected to store it).\n   * @return scaledAdd Amount converted to scaled units (rounded down).\n   *\n   * @custom:pre `uint256(scale) != 0`\n   * @custom:pre `uint256(scaledAmount.amount) + scale.toScaled(amount)` fits in uint128\n   */\n  function _add(\n    ScaledAmount storage scaledAmount,\n    uint256 amount,\n    Scale scale\n  ) internal view returns (ScaledAmount memory newScaledAmount, uint256 scaledAdd) {\n    scaledAdd = scale.toScaled(amount);\n    return (\n      ScaledAmount({\n        scale: scale,\n        amount: (uint256(scaledAmount.amount) + scaledAdd).toUint128(),\n        lastUpdate: uint32(block.timestamp)\n      }),\n      scaledAdd\n    );\n  }\n\n  /**\n   * @notice Subtracts `amount` (current units) from a {ScaledAmount} using the provided `scale`.\n   *\n   * @dev It uses `toScaledCeil` (round up) to avoid leaving dust due to rounding. If the ceil conversion\n   * would underflow by 1 unit, it retries with `toScaled` (round down).\n   *\n   * @param scaledAmount The storage record to update.\n   * @param amount Amount expressed in current units.\n   * @param scale Scale (wad) to use to convert `amount` into scaled units.\n   * @return newScaledAmount Updated in-memory struct (caller is expected to store it).\n   * @return scaledSub The subtracted value expressed in scaled units (ceil, or floor in the retry path).\n   *\n   * @custom:pre `uint256(scale) != 0`\n   * @custom:pre `scale.toScaledCeil(amount) <= scaledAmount.amount` OR `scale.toScaled(amount) <= scaledAmount.amount`\n   */\n  function _sub(\n    ScaledAmount storage scaledAmount,\n    uint256 amount,\n    Scale scale\n  ) internal view returns (ScaledAmount memory newScaledAmount, uint256 scaledSub) {\n    scaledSub = scale.toScaledCeil(amount);\n    uint256 oldAmount = uint256(scaledAmount.amount);\n    uint256 newAmount = oldAmount - scaledSub;\n    if (newAmount == 0) {\n      // Reset scale if amount == 0\n      scale = SCALE_INITIAL;\n    }\n    return (\n      ScaledAmount({scale: scale, amount: newAmount.toUint128(), lastUpdate: uint32(block.timestamp)}),\n      scaledSub\n    );\n  }\n\n  /**\n   * @notice Adds `amount` (current units) projecting the scale forward using a linear `interestRate`.\n   */\n  function add(\n    ScaledAmount storage scaledAmount,\n    uint256 amount,\n    uint256 interestRate\n  ) internal view returns (ScaledAmount memory newScaledAmount, uint256 scaledAdd) {\n    return _add(scaledAmount, amount, projectScale(scaledAmount, interestRate));\n  }\n\n  /**\n   * @notice Subtracts `amount` (current units) projecting the scale forward using a linear `interestRate`.\n   */\n  function sub(\n    ScaledAmount storage scaledAmount,\n    uint256 amount,\n    uint256 interestRate\n  ) internal view returns (ScaledAmount memory newScaledAmount, uint256 scaledSub) {\n    return _sub(scaledAmount, amount, projectScale(scaledAmount, interestRate));\n  }\n\n  /**\n   * @notice Adds `amount` (current units) projecting the scale forward using SCR earnings.\n   */\n  function add(\n    ScaledAmount storage scaledAmount,\n    uint256 amount,\n    Scr storage scr\n  ) internal view returns (ScaledAmount memory newScaledAmount, uint256 scaledAdd) {\n    return _add(scaledAmount, amount, projectScale(scaledAmount, scr));\n  }\n\n  /**\n   * @notice Subtracts `amount` (current units) projecting the scale forward using SCR earnings.\n   */\n  function sub(\n    ScaledAmount storage scaledAmount,\n    uint256 amount,\n    Scr storage scr\n  ) internal view returns (ScaledAmount memory newScaledAmount, uint256 scaledSub) {\n    return _sub(scaledAmount, amount, projectScale(scaledAmount, scr));\n  }\n\n  /**\n   * @notice Applies a discrete signed change (in current units) to the scale, and also accounts for SCR earnings accrued\n   * since `scaledAmount.lastUpdate`.\n   *\n   * @param amount Signed discrete change in current units.\n   * @return newScaledAmount Updated in-memory struct with the same stored `amount`, but an adjusted `scale`.\n   *\n   * @custom:pre `scaledAmount.amount != 0` (required to compute proportional scale change)\n   */\n  function discreteChange(\n    ScaledAmount storage scaledAmount,\n    int256 amount,\n    Scr storage scr\n  ) internal view returns (ScaledAmount memory newScaledAmount) {\n    // Adds to the discrete change what was earned from SCR returns\n    amount += int256(earnings(scr, scaledAmount.lastUpdate));\n    Scale newScale = scaledAmount.scale.add(_mulDiv(amount, SWAD, int256(uint256(scaledAmount.amount))));\n    if (Scale.unwrap(newScale) < MIN_SCALE) revert ScaleTooSmall(Scale.unwrap(newScale));\n    return ScaledAmount({amount: scaledAmount.amount, scale: newScale, lastUpdate: uint32(block.timestamp)});\n  }\n\n  /**\n   * @notice Returns the minimum current value representable by `scaledAmount.amount` under the minimum scale.\n   */\n  function minValue(ScaledAmount storage scaledAmount) internal view returns (uint256) {\n    return _mulDivCeil(uint256(scaledAmount.amount), MIN_SCALE, WAD);\n  }\n  /*** END ScaledAmount functions ***/\n\n  /*** BEGIN Scr functions ***/\n  /**\n   * @notice Adds SCR and updates the weighted-average `interestRate`.\n   *\n   * @param scrAmount_ Amount of SCR to add.\n   * @param policyInterestRate Annualized rate (wad) associated with `scrAmount_`.\n   * @return modifiedScr New in-memory SCR struct reflecting the addition.\n   *\n   * @custom:pre If `scr.scr != 0`, then `uint256(scr.scr) + scrAmount_` fits in uint256\n   * @custom:pre `policyInterestRate` is expressed in wad\n   */\n  function add(\n    Scr storage scr,\n    uint256 scrAmount_,\n    uint256 policyInterestRate\n  ) internal view returns (Scr memory modifiedScr) {\n    if (scr.scr == 0) {\n      return Scr({scr: scrAmount_.toUint128(), interestRate: policyInterestRate.toUint128()});\n    } else {\n      uint256 origScr = uint256(scr.scr);\n      uint256 newScr = origScr + scrAmount_;\n      // newInterestRate = (oldInterestRate * oldScr + policyInterestRate * scrAmount_) / newScr\n      uint256 newInterestRate = _mulDiv(\n        _mulDiv(uint256(scr.interestRate), origScr, WAD) + _mulDiv(policyInterestRate, scrAmount_, WAD),\n        WAD,\n        newScr\n      );\n\n      return Scr({scr: newScr.toUint128(), interestRate: newInterestRate.toUint128()});\n    }\n  }\n\n  /**\n   * @notice Subtracts SCR and updates the weighted-average `interestRate`.\n   *\n   * @param scrAmount_ Amount of SCR to remove.\n   * @param policyInterestRate Annualized rate (wad) associated with `scrAmount_`.\n   * @return modifiedScr New in-memory SCR struct reflecting the subtraction.\n   *\n   * @custom:pre `scrAmount_ <= scr.scr`\n   */\n  function sub(\n    Scr storage scr,\n    uint256 scrAmount_,\n    uint256 policyInterestRate\n  ) internal view returns (Scr memory modifiedScr) {\n    if (scr.scr == scrAmount_) {\n      return Scr({scr: 0, interestRate: 0});\n    } else {\n      uint256 origScr = uint256(scr.scr);\n      uint256 newScr = origScr - scrAmount_;\n      // newInterestRate = (oldInterestRate * oldScr - scrAmount_ * policyInterestRate) / newScr\n      uint256 newInterestRate = _mulDiv(\n        _mulDiv(uint256(scr.interestRate), origScr, WAD) - _mulDiv(policyInterestRate, scrAmount_, WAD),\n        WAD,\n        newScr\n      );\n\n      return Scr({scr: newScr.toUint128(), interestRate: newInterestRate.toUint128()});\n    }\n  }\n\n  /**\n   * @notice Returns the earnings of the SCR since a given date\n   */\n  function earnings(Scr storage scr, uint32 since) internal view returns (uint256) {\n    return\n      _mulDiv(\n        uint256(scr.scr),\n        (uint256(scr.interestRate) * (block.timestamp - uint256(since))) / SECONDS_PER_YEAR,\n        WAD\n      );\n  }\n\n  /**\n   * @notice Returns liquid funds available given `totalSupply`, excluding locked SCR.\n   *\n   * @param totalSupply Total supply expressed in current units.\n   * @return available `max(totalSupply - scr.scr, 0)`.\n   */\n  function fundsAvailable(Scr storage scr, uint256 totalSupply) internal view returns (uint256) {\n    uint256 scr_ = uint256(scr.scr);\n    if (totalSupply > scr_) return totalSupply - scr_;\n    else return 0;\n  }\n\n  /**\n   * @notice Returns the SCR amount (locked capital) in current units.\n   */\n  function scrAmount(Scr storage scr) internal view returns (uint256) {\n    return uint256(scr.scr);\n  }\n\n  /*** END Scr functions ***/\n}\n"},"contracts/EToken.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IERC20} from \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport {IERC165} from \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\nimport {IERC4626} from \"@openzeppelin/contracts/interfaces/IERC4626.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {ERC20Upgradeable} from \"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\";\nimport {ERC20PermitUpgradeable} from \"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol\";\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport {SafeCast} from \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport {Math} from \"@openzeppelin/contracts/utils/math/Math.sol\";\nimport {IPolicyPool} from \"./interfaces/IPolicyPool.sol\";\nimport {ILPWhitelist} from \"./interfaces/ILPWhitelist.sol\";\nimport {ICooler} from \"./interfaces/ICooler.sol\";\nimport {IEToken} from \"./interfaces/IEToken.sol\";\nimport {IPolicyPoolComponent} from \"./interfaces/IPolicyPoolComponent.sol\";\nimport {ETKLib} from \"./ETKLib.sol\";\nimport {Reserve} from \"./Reserve.sol\";\n\n/**\n * @title Ensuro ERC20 EToken - interest-bearing token\n * @notice These are the liquidity pools where users provide funds to cover insurance products\n * @dev Implementation of the interest/earnings bearing token for the Ensuro protocol.\n *      `_tsScaled.scale` scales the balances stored in _balances. _tsScaled (totalSupply scaled) grows\n *      continuoulsly at tokenInterestRate().\n *      Every operation that changes the utilization rate (_scr.scr/totalSupply) or the _scr.interestRate, updates\n *      first the _tsScaled.scale accumulating the interest accrued since _tsScaled.lastUpdate.\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract EToken is Reserve, ERC20PermitUpgradeable, IEToken {\n  using Math for uint256;\n  using ETKLib for ETKLib.ScaledAmount;\n  using ETKLib for ETKLib.Scr;\n  using ETKLib for ETKLib.Scale;\n  using SafeERC20 for IERC20Metadata;\n  using SafeCast for uint256;\n\n  uint256 internal constant WAD = 1e18;\n  uint256 internal constant FOUR_DECIMAL_TO_WAD = 1e14;\n  uint16 internal constant HUNDRED_PERCENT = 1e4;\n  uint256 internal constant LIQ_REQ_MIN = 0.8e18; // 80%\n  uint256 internal constant LIQ_REQ_MAX = 1.3e18; // 130%\n  uint256 internal constant INT_LOAN_IR_MAX = 0.5e18; // 50% - Maximum value for InternalLoan interest rate\n\n  ETKLib.ScaledAmount internal _tsScaled; // Total Supply scaled\n\n  ETKLib.Scr internal _scr;\n\n  /// @notice Mapping that keeps track of allowed borrowers (PremiumsAccount) and their current debt\n  mapping(address => ETKLib.ScaledAmount) internal _loans;\n\n  /**\n   * @notice Struct to store different parameters of the eToken\n   * @dev Packed so it fits in 256 bits. The parameters are stored with 4 decimals.\n   */\n  struct PackedParams {\n    ILPWhitelist whitelist; // Whitelist for deposits and transfers\n    uint16 liquidityRequirement; // Liquidity requirement to lock more/less than SCR - 4 decimals\n    uint16 minUtilizationRate; // Min utilization rate, to reject deposits that leave UR under this value - 4 decimals\n    uint16 maxUtilizationRate; // Max utilization rate, to reject lockScr that leave UR above this value - 4 decimals\n    uint16 internalLoanInterestRate; // Annualized interest rate charged to internal borrowers (premiums accounts) - 4dec\n  }\n\n  /// @notice eToken parameters\n  PackedParams internal _params;\n\n  /// @notice ERC-4626 vault where the funds of the eToken are invested to generate additional yields\n  IERC4626 internal _yieldVault;\n\n  /// @notice When defined (not address(0)), it's a contract that will handle the coooldown period and process\n  ICooler internal _cooler;\n\n  /// @notice Thrown when called by a non-borrower on borrower operations (internalLoan and lock/unlock scr)\n  error OnlyBorrower(address caller);\n\n  /// @notice Thrown on setParam when the given value doesn't match the specific validations\n  error InvalidParameter(Parameter parameter);\n\n  /// @notice Thrown when a transfer is rejected by the Whitelist\n  error TransferNotWhitelisted(address from_, address to_, uint256 value);\n\n  /// @notice Thrown when a deposit is rejected by the Whitelist\n  error DepositNotWhitelisted(address account, uint256 value);\n\n  /// @notice Thrown when a withdrawal is rejected by the Whitelist\n  error WithdrawalNotWhitelisted(address account, uint256 value);\n\n  /// @notice Thrown when trying to lock more funds than the ones that are available\n  error NotEnoughScrFunds(uint256 required, uint256 available);\n\n  /// @notice Thrown when a deposit leaves the utilizationRate under the minUtilization\n  error UtilizationRateTooLow(uint256 actualUtilization, uint256 minUtilization);\n\n  /// @notice Thrown when trying to repayLoan or query a loan of a non-borrower\n  error InvalidBorrower(address borrower);\n\n  /// @notice Thrown when trying to add a borrower twice\n  error BorrowerAlreadyAdded(address borrower);\n\n  /// @notice Thrown when trying to change the whitelist to a contract that doesn't belong to the same policyPool()\n  error InvalidWhitelist(ILPWhitelist whitelist);\n\n  /// @notice Thrown when trying to change the cooler to a contract that doesn't belong to the same policyPool()\n  error InvalidCooler(ICooler cooler);\n\n  /// @notice Thrown when trying to withdraw an amount that exceeds either the user funds or totalWithdrawable()\n  error ExceedsMaxWithdraw(uint256 requested, uint256 maxWithdraw);\n\n  /// @notice Thrown when trying to execute an instant withdraw when the eToken has non-zero cooldownPeriod\n  error WithdrawalsRequireCooldown(ICooler cooler);\n\n  /**\n   * @notice Event emitted when a PremiumsAccount takes funds (loan) from the eToken\n   * @dev These funds are used to cover the losses and may be later repaid if the performance of the product improves\n   * and accumulates surplus.\n   *\n   * @param borrower The address of the borrower, a {PremiumsAccount}\n   * @param value The amount of the loan\n   * @param amountAsked The amount originally asked\n   */\n  event InternalLoan(address indexed borrower, uint256 value, uint256 amountAsked);\n\n  /**\n   * @notice Event emitted when a PremiumsAccount repays a loan previously taken\n   *\n   * @param borrower The address of the borrower, a {PremiumsAccount}\n   * @param value The amount of the repayment\n   */\n  event InternalLoanRepaid(address indexed borrower, uint256 value);\n\n  /// @notice Event emitted when a new borrower (PremiumsAccount) is added\n  event InternalBorrowerAdded(address indexed borrower);\n\n  /**\n   * @notice Event emitted when a borrower is removed (it can't lock funds or take loans anymore)\n   *\n   * @param borrower The address of the borrower, a {PremiumsAccount}\n   * @param defaultedDebt The unpaid amount left by the borrower\n   */\n  event InternalBorrowerRemoved(address indexed borrower, uint256 defaultedDebt);\n\n  /**\n   * @notice Event emitted when a parameter was changed\n   *\n   * @param param Type of parameter change\n   * @param newValue The new value set\n   */\n  event ParameterChanged(Parameter param, uint256 newValue);\n\n  /**\n   * @notice Event emitted when the whitelist is changed\n   * @dev The event reports the old and new whitelist\n   */\n  event WhitelistChanged(ILPWhitelist oldWhitelist, ILPWhitelist newWhitelist);\n\n  /**\n   * @notice Event emitted when the cooler is changed\n   * @dev The event reports the old and new cooler\n   */\n  event CoolerChanged(ICooler oldCooler, ICooler newCooler);\n\n  /**\n   * @notice Event emitted when tokens are burn, redistributing the value to the rest of LPs\n   * @dev This typically happens when a cooldown is executed and there were profits during the period\n   *\n   * @param owner The owner of the burned tokens (the cooler)\n   * @param distributedProfit The amount that is distributed between all the LPs\n   */\n  event ETokensRedistributed(address indexed owner, uint256 distributedProfit);\n\n  /**\n   * @notice Event emitted when part of a previously received CoC is refunded\n   * @dev This happends when a policy is cancelled with refund. It doesn't affect the totalSupply since it should\n   * be not yet accrued money.\n   *\n   * @param policyId The owner of the burned tokens (the cooler)\n   * @param receiver The user that received the refund\n   * @param amount The amount of the refund\n   */\n  event CoCRefunded(uint256 indexed policyId, address indexed receiver, uint256 amount);\n\n  /// @notice Modifier used to validate the methods that can be called only by borrowers (PremiumsAccount)\n  modifier onlyBorrower() {\n    require(_loans[_msgSender()].lastUpdate != 0, OnlyBorrower(_msgSender()));\n    _;\n  }\n\n  // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.ERC20\")) - 1)) & ~bytes32(uint256(0xff))\n  // solhint-disable-next-line const-name-snakecase\n  bytes32 private constant ERC20StorageLocation = 0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00;\n\n  function _getERC20StorageFromEToken() private pure returns (ERC20Storage storage $) {\n    // solhint-disable-next-line no-inline-assembly\n    assembly {\n      $.slot := ERC20StorageLocation\n    }\n  }\n\n  /// @custom:oz-upgrades-unsafe-allow constructor\n  // solhint-disable-next-line no-empty-blocks\n  constructor(IPolicyPool policyPool_) Reserve(policyPool_) {}\n\n  /**\n   * @dev Initializes the eToken\n   * @param name_ Name of the eToken\n   * @param symbol_ Symbol of the eToken\n   * @param maxUtilizationRate_ Max utilization rate (scr / totalSupply), in WAD (1e18)\n   * @param internalLoanInterestRate_ Annualized interest rate charged on internal loans, in WAD (1e18)\n   */\n  function initialize(\n    string memory name_,\n    string memory symbol_,\n    uint256 maxUtilizationRate_,\n    uint256 internalLoanInterestRate_\n  ) public initializer {\n    __Reserve_init();\n    __ERC20_init(name_, symbol_);\n    __ERC20Permit_init(name_);\n    __EToken_init_unchained(maxUtilizationRate_, internalLoanInterestRate_);\n  }\n\n  // solhint-disable-next-line func-name-mixedcase\n  function __EToken_init_unchained(\n    uint256 maxUtilizationRate_,\n    uint256 internalLoanInterestRate_\n  ) internal onlyInitializing {\n    _tsScaled.init();\n    /* _scr = Scr({\n      scr: 0,\n      interestRate: 0,\n      tokenInterestRate: 0\n    }); */\n    _params = PackedParams({\n      maxUtilizationRate: 0, // Will be set in the next line\n      liquidityRequirement: HUNDRED_PERCENT,\n      minUtilizationRate: 0,\n      internalLoanInterestRate: 0, // Will be set in the next line\n      whitelist: ILPWhitelist(address(0))\n    });\n\n    setParam(Parameter.maxUtilizationRate, maxUtilizationRate_);\n    setParam(Parameter.internalLoanInterestRate, internalLoanInterestRate_);\n  }\n\n  /// @inheritdoc IERC165\n  function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n    return\n      super.supportsInterface(interfaceId) ||\n      interfaceId == type(IERC20).interfaceId ||\n      interfaceId == type(IERC20Metadata).interfaceId ||\n      interfaceId == type(IEToken).interfaceId;\n  }\n\n  /*** BEGIN ERC20 methods - changes required to customize OZ's ERC20 implementation */\n\n  /// @inheritdoc IERC20Metadata\n  function decimals() public view virtual override returns (uint8) {\n    return _policyPool.currency().decimals();\n  }\n\n  /// @inheritdoc IERC20\n  function totalSupply() public view virtual override returns (uint256) {\n    return _tsScaled.projectScale(_scr).toCurrent(_tsScaled.amount);\n  }\n\n  /// @inheritdoc IERC20\n  function balanceOf(address account) public view virtual override returns (uint256) {\n    return _tsScaled.projectScale(_scr).toCurrent(super.balanceOf(account));\n  }\n\n  /// @inheritdoc ERC20Upgradeable\n  function _update(address from, address to, uint256 value) internal virtual override {\n    uint256 valueScaled;\n    if (from == address(0)) {\n      // Mint\n      (_tsScaled, valueScaled) = _tsScaled.add(value, _scr);\n    } else if (to == address(0)) {\n      // Burn\n      (_tsScaled, valueScaled) = _tsScaled.sub(value, _scr);\n    } else {\n      // Transfer\n      require(\n        address(_params.whitelist) == address(0) || _params.whitelist.acceptsTransfer(this, from, to, value),\n        TransferNotWhitelisted(from, to, value)\n      );\n      valueScaled = _tsScaled.projectScale(_scr).toScaledCeil(value);\n    }\n\n    ERC20Storage storage $ = _getERC20StorageFromEToken();\n    if (from != address(0)) {\n      uint256 fromBalance = $._balances[from];\n      if (fromBalance < valueScaled) {\n        revert ERC20InsufficientBalance(from, _tsScaled.projectScale(_scr).toCurrent(fromBalance), value);\n      }\n      unchecked {\n        // Overflow not possible: valueScaled <= fromBalance <= totalSupply.\n        $._balances[from] = fromBalance - valueScaled;\n      }\n    }\n\n    if (to != address(0)) {\n      unchecked {\n        // Overflow not possible: balance + valueScaled is at most totalSupply, which we know fits into a uint256.\n        $._balances[to] += valueScaled;\n      }\n    }\n\n    emit Transfer(from, to, value);\n  }\n\n  /*** END ERC20 methods */\n\n  /** BEGIN Methods following AAVE's IScaledBalanceToken, to simplify future integrations */\n\n  /**\n   * @dev Returns the scaled balance of the user. The scaled balance is the sum of all the\n   * updated stored balance divided by the EToken's scale index\n   * @param user The user whose balance is calculated\n   * @return The scaled balance of the user\n   **/\n  function scaledBalanceOf(address user) external view returns (uint256) {\n    return super.balanceOf(user);\n  }\n\n  /**\n   * @dev Returns the scaled balance of the user and the scaled total supply.\n   * @param user The address of the user\n   * @return The scaled balance of the user\n   * @return The scaled balance and the scaled total supply\n   **/\n  function getScaledUserBalanceAndSupply(address user) external view returns (uint256, uint256) {\n    return (super.balanceOf(user), uint256(_tsScaled.amount));\n  }\n\n  /**\n   * @notice Returns the total supply in scaled/raw units (without applying the current scale index). Equals the sum of {scaledBalanceOf} across all users.\n   * @return The total supply in scaled/raw units.\n   */\n  function scaledTotalSupply() external view returns (uint256) {\n    return uint256(_tsScaled.amount);\n  }\n\n  /** END Methods following AAVE's IScaledBalanceToken */\n\n  /// @inheritdoc IEToken\n  function getCurrentScale(bool updated) public view override returns (uint256) {\n    if (updated) return _tsScaled.projectScale(_scr).toUint256();\n    else return _tsScaled.scale.toUint256();\n  }\n\n  /**\n   * @dev Returns the amount of totalSupply that isn't utilized as SCR.\n   */\n  function fundsAvailable() public view returns (uint256) {\n    return _scr.fundsAvailable(totalSupply());\n  }\n\n  /**\n   * @dev Returns the funds that can be treated as available to lock as SCR, after applying the\n   *      max utilization cap and (if a Cooler is configured) subtracting pending withdrawals.\n   */\n  function fundsAvailableToLock() public view returns (uint256) {\n    uint256 ts = totalSupply();\n    if (address(_cooler) != address(0)) {\n      uint256 pendingWithdraw = _cooler.pendingWithdrawals(this);\n      if (pendingWithdraw >= ts) {\n        ts = 0;\n      } else {\n        ts = Math.min(ts - pendingWithdraw, ts.mulDiv(maxUtilizationRate(), WAD));\n      }\n    } else {\n      ts = ts.mulDiv(maxUtilizationRate(), WAD);\n    }\n    return _scr.fundsAvailable(ts);\n  }\n\n  /// @inheritdoc Reserve\n  function yieldVault() public view override returns (IERC4626) {\n    return _yieldVault;\n  }\n\n  function _setYieldVault(IERC4626 newYV) internal override {\n    _yieldVault = newYV;\n  }\n\n  // solhint-disable-next-line func-name-mixedcase\n  function _4toWad(uint16 value) internal pure returns (uint256) {\n    // 4 decimals to Wad (18 decimals)\n    return uint256(value) * FOUR_DECIMAL_TO_WAD;\n  }\n\n  function _wadTo4(uint256 value) internal pure returns (uint16) {\n    // Wad to 4 decimals\n    return (value / FOUR_DECIMAL_TO_WAD).toUint16();\n  }\n\n  /// @inheritdoc IEToken\n  function scr() public view virtual override returns (uint256) {\n    return _scr.scrAmount();\n  }\n\n  /// @inheritdoc IEToken\n  function scrInterestRate() public view override returns (uint256) {\n    return uint256(_scr.interestRate);\n  }\n\n  /// @inheritdoc IEToken\n  function tokenInterestRate() public view override returns (uint256) {\n    uint256 ts = totalSupply();\n    return ts == 0 ? 0 : uint256(_scr.interestRate).mulDiv(_scr.scr, ts);\n  }\n\n  /**\n   * @dev Returns the factor applied to SCR when computing the non-withdrawable. Typically 1.0 (in wad).\n   */\n  function liquidityRequirement() public view returns (uint256) {\n    return _4toWad(_params.liquidityRequirement);\n  }\n\n  /**\n   * @dev Returns the maximum utilization rate (UR) that is acceptable when locking funds.\n   *      The UR can be higher than this value as a consequence of withdrawals or other operations,\n   *      but not as a consequence of a lockScr call.\n   */\n  function maxUtilizationRate() public view returns (uint256) {\n    return _4toWad(_params.maxUtilizationRate);\n  }\n\n  /**\n   * @dev Returns the minimum utilization rate (UR) that is acceptable after deposits.\n   *      The UR can be lower than this value as a consequence of SCR unlocks or other operations,\n   *      but not as a consequence of a deposit call.\n   */\n  function minUtilizationRate() public view returns (uint256) {\n    return _4toWad(_params.minUtilizationRate);\n  }\n\n  /**\n   * @dev Returns the percentage of the total supply that is used as SCR (solvency capital backing risks)\n   */\n  function utilizationRate() public view returns (uint256) {\n    uint256 ts = totalSupply();\n    return ts == 0 ? 0 : _scr.scrAmount().mulDiv(WAD, ts);\n  }\n\n  function lockScr(uint256 policyId, uint256 scrAmount, uint256 policyInterestRate) external override onlyBorrower {\n    if (scrAmount > fundsAvailableToLock()) revert NotEnoughScrFunds(scrAmount, fundsAvailableToLock());\n    _tsScaled = _tsScaled.discreteChange(0, _scr); // Accrues interests so far, to update the scale before SCR changes\n    _scr = _scr.add(scrAmount, policyInterestRate);\n    emit SCRLocked(policyId, policyInterestRate, scrAmount);\n  }\n\n  function _unlockScr(uint256 policyId, uint256 scrAmount, uint256 policyInterestRate, int256 adjustment) internal {\n    // Require removed, since it shouldn't happen and if happens it will fail in _scr.sub\n    // require(scrAmount <= uint256(_scr.scr), \"Current SCR less than the amount you want to unlock\");\n    _tsScaled = _tsScaled.discreteChange(adjustment, _scr);\n    _scr = _scr.sub(scrAmount, policyInterestRate);\n    emit SCRUnlocked(policyId, policyInterestRate, scrAmount, adjustment);\n  }\n\n  function unlockScr(\n    uint256 policyId,\n    uint256 scrAmount,\n    uint256 policyInterestRate,\n    int256 adjustment\n  ) external override onlyBorrower {\n    _unlockScr(policyId, scrAmount, policyInterestRate, adjustment);\n  }\n\n  function unlockScrWithRefund(\n    uint256 policyId,\n    uint256 scrAmount,\n    uint256 policyInterestRate,\n    int256 adjustment,\n    address receiver,\n    uint256 refundAmount\n  ) external override onlyBorrower {\n    _unlockScr(policyId, scrAmount, policyInterestRate, adjustment);\n    if (refundAmount != 0) {\n      _transferTo(receiver, refundAmount);\n      emit CoCRefunded(policyId, receiver, refundAmount);\n    }\n  }\n\n  function _yieldEarnings(int256 earnings) internal override {\n    _discreteChange(earnings);\n    super._yieldEarnings(earnings);\n  }\n\n  function _discreteChange(int256 amount) internal {\n    _tsScaled = _tsScaled.discreteChange(amount, _scr);\n  }\n\n  function deposit(uint256 amount, address caller, address receiver) external override onlyPolicyPool {\n    require(\n      address(_params.whitelist) == address(0) ||\n        (_params.whitelist.acceptsDeposit(this, caller, amount) &&\n          (caller == receiver || _params.whitelist.acceptsTransfer(this, caller, receiver, amount))),\n      DepositNotWhitelisted(caller, amount)\n    );\n    _mint(receiver, amount);\n    if (utilizationRate() < minUtilizationRate()) revert UtilizationRateTooLow(utilizationRate(), minUtilizationRate());\n  }\n\n  /// @inheritdoc IEToken\n  function totalWithdrawable() public view virtual override returns (uint256) {\n    uint256 locked = _scr.scrAmount().mulDiv(liquidityRequirement(), WAD);\n    uint256 ts = totalSupply();\n    return (ts >= locked) ? ts - locked : 0;\n  }\n\n  function withdraw(\n    uint256 amount,\n    address caller,\n    address owner,\n    address receiver\n  ) external override onlyPolicyPool returns (uint256) {\n    /**\n     * Here we don't check for maxUtilizationRate because that limit only affects locking more capital (`lockScr`), but\n     * doesn't affects the right of liquidity providers to withdraw their funds.\n     * The only limit for withdraws is the `totalWithdrawable()` function, that's affected by the relation between the\n     * scr and the totalSupply.\n     */\n    if (address(yieldVault()) != address(0)) {\n      // Always update the accounting before a withdrawal. There may be unrecorded earnings/losses otherwise.\n      recordEarnings();\n    }\n    uint256 maxWithdraw = Math.min(balanceOf(owner), totalWithdrawable());\n    if (amount == type(uint256).max) amount = maxWithdraw;\n    if (amount == 0) return 0;\n    require(\n      address(_cooler) == address(0) || address(_cooler) == caller || _cooler.cooldownPeriod(this, owner, amount) == 0,\n      WithdrawalsRequireCooldown(_cooler)\n    );\n    require(amount <= maxWithdraw, ExceedsMaxWithdraw(amount, maxWithdraw));\n    /**\n     * For the whitelist validation, I use the owner address. If the caller != owner, then I assume that if the\n     * owner gave spending approval to the caller, that's enough.\n     */\n    require(\n      address(_params.whitelist) == address(0) || _params.whitelist.acceptsWithdrawal(this, owner, amount),\n      WithdrawalNotWhitelisted(owner, amount)\n    );\n    if (caller != owner) {\n      _spendAllowance(owner, caller, amount);\n    }\n    _burn(owner, amount);\n    _transferTo(receiver, amount);\n    return amount;\n  }\n\n  function redistribute(uint256 amount) external override {\n    _burn(_msgSender(), amount);\n    _discreteChange(amount.toInt256());\n    emit ETokensRedistributed(_msgSender(), amount);\n  }\n\n  function addBorrower(address borrower) external override onlyPolicyPool {\n    require(borrower != address(0), InvalidBorrower(borrower));\n    ETKLib.ScaledAmount storage loan = _loans[borrower];\n    require(loan.lastUpdate == 0, BorrowerAlreadyAdded(borrower));\n    loan.init();\n    emit InternalBorrowerAdded(borrower);\n  }\n\n  function removeBorrower(address borrower) external override onlyPolicyPool {\n    require(borrower != address(0), InvalidBorrower(borrower));\n    uint256 defaultedDebt = getLoan(borrower);\n    delete _loans[borrower];\n    emit InternalBorrowerRemoved(borrower, defaultedDebt);\n  }\n\n  /**\n   * @dev Returns the maximum negative adjustment (discrete loss) the eToken can accept without breaking consistency.\n   *      The limit comes from limits in the internal scale that takes scaledTotalSupply() to totalSupply()\n   */\n  function maxNegativeAdjustment() public view returns (uint256) {\n    return totalSupply() - _tsScaled.minValue(); // Min value accepted by _tsScaled\n  }\n\n  function internalLoan(uint256 amount, address receiver) external override onlyBorrower returns (uint256) {\n    uint256 amountAsked = amount;\n    amount = Math.min(amount, maxNegativeAdjustment());\n    if (amount == 0) return amountAsked;\n    (_loans[_msgSender()], ) = _loans[_msgSender()].add(amount, internalLoanInterestRate());\n    _discreteChange(-int256(amount));\n    _transferTo(receiver, amount);\n    emit InternalLoan(_msgSender(), amount, amountAsked);\n    return amountAsked - amount;\n  }\n\n  function repayLoan(uint256 amount, address onBehalfOf) external override {\n    // Anyone can call this method, since it has to pay\n    uint256 currentLoan = getLoan(onBehalfOf);\n    ETKLib.ScaledAmount storage loan = _loans[onBehalfOf];\n    if (currentLoan <= amount) {\n      amount = currentLoan;\n      if (currentLoan != 0) loan.init(); // Just resets the loan to zero\n    } else {\n      (_loans[onBehalfOf], ) = loan.sub(amount, internalLoanInterestRate());\n    }\n    if (amount == 0) return; // I accept amount = 0 to simplify caller's code, but I don't do anything in that case\n    _discreteChange(int256(amount));\n    emit InternalLoanRepaid(onBehalfOf, amount);\n    // Interaction at the end for security reasons\n    currency().safeTransferFrom(_msgSender(), address(this), amount);\n  }\n\n  /// @inheritdoc IEToken\n  function getLoan(address borrower) public view virtual override returns (uint256) {\n    ETKLib.ScaledAmount storage loan = _loans[borrower];\n    require(loan.lastUpdate != 0, InvalidBorrower(borrower));\n    return loan.projectScale(internalLoanInterestRate()).toCurrentCeil(uint256(loan.amount));\n  }\n\n  /**\n   * @dev Returns the annualized interest rate charged to borrowers (see PremiumsAccount) when they take funds\n   */\n  function internalLoanInterestRate() public view returns (uint256) {\n    return _4toWad(_params.internalLoanInterestRate);\n  }\n\n  function setParam(Parameter param, uint256 newValue) public {\n    if (param == Parameter.liquidityRequirement) {\n      require(newValue >= LIQ_REQ_MIN && newValue <= LIQ_REQ_MAX, InvalidParameter(param));\n      _params.liquidityRequirement = _wadTo4(newValue);\n    } else if (param == Parameter.minUtilizationRate) {\n      require(newValue <= WAD, InvalidParameter(param));\n      _params.minUtilizationRate = _wadTo4(newValue);\n    } else if (param == Parameter.maxUtilizationRate) {\n      require(newValue <= WAD, InvalidParameter(param));\n      _params.maxUtilizationRate = _wadTo4(newValue);\n      /*\n       * We don't validate minUtilizationRate < maxUtilizationRate because the opposite is valid too.\n       * These limits aren't strong limits on the values the utilization rate can take, but instead they are\n       * limits on specific operations.\n       * `minUtilizationRate` is used to avoid new deposits to dilute the yields of existing LPs, but it doesn't\n       * prevent the UR from going down in other operations (`unlockScr` for example).\n       * `maxUtilizationRate` is used to prevent selling more coverage when UR is too high, only checked on `lockScr`\n       * operations, but not in withdrawals or other operations.\n       */\n    } else {\n      // (param == Parameter.internalLoanInterestRate) - since param can only take one of 4 values\n\n      // This call changes the interest rate without updating the current loans up to this point\n      // So, if interest rate goes from 5% to 6%, this change will be retroactive to the lastUpdate of each\n      // loan. Since it's a permissioned call, I'm ok with this. If a caller wants to reduce the impact, it can\n      // issue 1 wei repayLoan to each active loan, forcing the update of the scales\n      require(newValue <= INT_LOAN_IR_MAX, InvalidParameter(param));\n      _params.internalLoanInterestRate = _wadTo4(newValue);\n    }\n    emit ParameterChanged(param, newValue);\n  }\n\n  function setWhitelist(ILPWhitelist lpWhitelist_) external {\n    require(\n      address(lpWhitelist_) == address(0) || IPolicyPoolComponent(address(lpWhitelist_)).policyPool() == _policyPool,\n      InvalidWhitelist(lpWhitelist_)\n    );\n    emit WhitelistChanged(_params.whitelist, lpWhitelist_);\n    _params.whitelist = lpWhitelist_;\n  }\n\n  function whitelist() external view returns (ILPWhitelist) {\n    return _params.whitelist;\n  }\n\n  function setCooler(ICooler newCooler) external {\n    require(\n      address(newCooler) == address(0) || IPolicyPoolComponent(address(newCooler)).policyPool() == _policyPool,\n      InvalidCooler(newCooler)\n    );\n    emit CoolerChanged(_cooler, newCooler);\n    _cooler = newCooler;\n  }\n\n  function cooler() external view override returns (address) {\n    return address(_cooler);\n  }\n\n  /**\n   * @dev This empty reserved space is put in place to allow future versions to add new\n   * variables without shifting down storage in the inheritance chain.\n   * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n   */\n  uint256[44] private __gap;\n}\n"},"contracts/hardhat-dependency-compiler/@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol';\n"},"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestCurrency.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@ensuro/utils/contracts/TestCurrency.sol';\n"},"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestCurrencyPermit.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@ensuro/utils/contracts/TestCurrencyPermit.sol';\n"},"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestERC4626.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@ensuro/utils/contracts/TestERC4626.sol';\n"},"contracts/hardhat-dependency-compiler/@openzeppelin/contracts/access/manager/AccessManager.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@openzeppelin/contracts/access/manager/AccessManager.sol';\n"},"contracts/hardhat-dependency-compiler/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol';\n"},"contracts/interfaces/ICooler.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IEToken} from \"./IEToken.sol\";\n\n/**\n * @title ICooler - Interface of Cooler contracts, for eTokens that have cooldown\n *\n * @dev This contract will hold the tokens during the cooldown period\n * @author Ensuro\n */\ninterface ICooler {\n  /**\n   * @notice Returns the amount of pending (scheduled) withdrawals for a given eToken\n   *\n   * @param eToken The eToken (see {EToken})\n   * @return The amount in currency that is pending\n   */\n  function pendingWithdrawals(IEToken eToken) external view returns (uint256);\n\n  /**\n   * @notice Returns the cooldown period in seconds required for withdrawals in a given eToken\n   *\n   * @param eToken The eToken (see {EToken})\n   * @param owner  The owner of the tokens requested to withdraw\n   * @param amount The amount requested to withdraw\n   * @return The cooldown period in seconds\n   */\n  function cooldownPeriod(IEToken eToken, address owner, uint256 amount) external view returns (uint40);\n}\n"},"contracts/interfaces/IEToken.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\n/**\n * @title IEToken interface\n * @notice Interface for EToken smart contracts, these are the capital pools.\n * @author Ensuro\n */\ninterface IEToken {\n  /**\n   * @notice Enum of the configurable parameters in an EToken.\n   *\n   * @dev These are the supported parameter types:\n   * - liquidityRequirement: target solvency/liquidity constraint (typically 1, scales the SCR to lock more)\n   * - minUtilizationRate: lower bound for utilization rate after deposits (prevents excess idle liquidity)\n   * - maxUtilizationRate: upper bound for utilization rate after capital lock (prevents locking all the capital)\n   * - internalLoanInterestRate: annualized rate charged on internal loans (wad)\n   */\n  enum Parameter {\n    liquidityRequirement,\n    minUtilizationRate,\n    maxUtilizationRate,\n    internalLoanInterestRate\n  }\n\n  /**\n   * @notice Event emitted when part of the funds of the eToken are locked as solvency capital.\n   * @param policyId The id of the policy that locks the capital\n   * @param interestRate The annualized interestRate paid for the capital (wad)\n   * @param value The amount locked\n   */\n  event SCRLocked(uint256 indexed policyId, uint256 interestRate, uint256 value);\n\n  /**\n   * @notice Event emitted when the locked funds are unlocked and no longer used as solvency capital.\n   * @param policyId The id of the policy that unlocks the capital (should be the that locked before with SCRLocked)\n   * @param interestRate The annualized interestRate that was paid for the capital (wad)\n   * @param value The amount unlocked\n   * @param adjustment Discrete amount of adjustment done to the totalSupply to reflect when more or less\n   *                   than the received cost of capital has been accrued since the SCR was locked.\n   */\n  event SCRUnlocked(uint256 indexed policyId, uint256 interestRate, uint256 value, int256 adjustment);\n\n  /**\n   * @notice Returns the amount of capital that's locked as solvency capital for active policies.\n   */\n  function scr() external view returns (uint256);\n\n  /**\n   * @notice Locks part of the liquidity of the EToken as solvency capital.\n   *\n   * @param policyId The id of the policy that locks the capital\n   * @param scrAmount The amount to lock\n   * @param policyInterestRate The annualized interest rate (wad) to be paid for the `scrAmount`\n   *\n   * @custom:pre Must be called by a _borrower_ (PremiumsAccount) previously added with `addBorrower`.\n   * @custom:pre `scrAmount` <= `fundsAvailableToLock()`\n   *\n   * @custom:emits SCRLocked\n   */\n  function lockScr(uint256 policyId, uint256 scrAmount, uint256 policyInterestRate) external;\n\n  /**\n   * @notice Unlocks solvency capital previously locked with `lockScr`.\n   * @dev The capital no longer needed as solvency, enabling withdrawal.\n   *\n   * @param policyId The id of the policy that locked the scr originally\n   * @param scrAmount The amount to unlock\n   * @param policyInterestRate The annualized interest rate that was paid for the `scrAmount`, must be the same that\n   *                           was sent in `lockScr` call.\n   * @param adjustment Discrete amount of adjustment done to the totalSupply to reflect when more or less\n   *                   than the received cost of capital has been accrued since the SCR was locked.\n   *\n   * @custom:pre Must be called by a _borrower_ (PremiumsAccount) previously added with `addBorrower`.\n   * @custom:pre `scrAmount` must be <= {scr}\n   *\n   * @custom:emits SCRUnlocked\n   */\n  function unlockScr(uint256 policyId, uint256 scrAmount, uint256 policyInterestRate, int256 adjustment) external;\n\n  /**\n   * @notice Unlocks solvency capital previously locked with `lockScr`, doing a refund of the CoC previously received\n   * @dev The capital no longer needed as solvency . It refunds part of the Coc received that wasn't accrued (or if\n   * it was already accrued, it is adjusted). The refund doesn't affect the totalSupply. It just changes the reserves.\n   *\n   * @param policyId The id of the policy that locked the scr originally\n   * @param scrAmount The amount to unlock\n   * @param policyInterestRate The annualized interest rate that was paid for the `scrAmount`, must be the same that\n   * was sent in `lockScr` call.\n   * @param receiver The address of the receiver of the refund\n   * @param refundAmount The amount to refund\n   *\n   * @custom:pre Must be called by a _borrower_ previously added with `addBorrower`.\n   *\n   * @custom:emits SCRUnlocked\n   * @custom:emits CoCRefunded\n   */\n  function unlockScrWithRefund(\n    uint256 policyId,\n    uint256 scrAmount,\n    uint256 policyInterestRate,\n    int256 adjustment,\n    address receiver,\n    uint256 refundAmount\n  ) external;\n\n  /**\n   * @notice Registers a deposit of liquidity in the pool.\n   * @dev Called from the PolicyPool, assumes the amount has already been transferred. `amount` of eToken are minted\n   * and given to the provider in exchange of the liquidity provided.\n   *\n   * @param amount The amount deposited.\n   * @param caller The user that initiates the deposit\n   * @param receiver The user that will receive the minted eTokens\n   *\n   * @custom:pre Must be called by `policyPool()`\n   * @custom:pre The amount was transferred\n   * @custom:pre `utilizationRate()` after the deposit is >= `minUtilizationRate()`\n   * @custom:pre If there is a whitelist, caller must be authorized to deposit. If caller != receiver, then transfer from caller\n   *             to received must be authorized\n   *\n   * @custom:emits Transfer with `from` = 0x0 and to = `provider` (mint)\n   */\n  function deposit(uint256 amount, address caller, address receiver) external;\n\n  /**\n   * @notice Withdraws an amount from an eToken.\n   * @dev `withdrawn` eTokens are be burned and the user receives the same amount in `currency()`.\n   * If `amount == type(uint256).max`, it withdraws up to `maxWithdraw` (i.e., as much as possible).\n   * Otherwise, it reverts if `amount > maxWithdraw`.\n   *\n   * @param amount The amount to withdraw. If `amount == type(uint256).max`, withdraws up to `maxWithdraw`.\n   * @param caller The user that initiates the withdrawal\n   * @param owner The owner of the eTokens (either caller==owner or caller has allowance)\n   * @param receiver The address that will receive the resulting `currency()`\n   *\n   * @custom:pre Must be called by `policyPool()`\n   *\n   * @custom:emits Transfer with `from` = `provider` and to = `0x0` (burn)\n   */\n  function withdraw(\n    uint256 amount,\n    address caller,\n    address owner,\n    address receiver\n  ) external returns (uint256 withdrawn);\n\n  /**\n   * @notice Returns the total amount that can be withdrawn\n   */\n  function totalWithdrawable() external view returns (uint256);\n\n  /**\n   * @notice Adds an authorized _borrower_ to the eToken. This _borrower_ will be allowed to lock/unlock funds and to take\n   * loans.\n   *\n   * @dev Borrowers (typically PremiumsAccounts) can:\n   * - lock/unlock SCR via {lockScr}/{unlockScr}/{unlockScrWithRefund}\n   * - take internal loans via {internalLoan}\n   *\n   * @param borrower The address of the _borrower_, a PremiumsAccount that has this eToken as senior or junior eToken.\n   *\n   * @custom:pre Must be called by `policyPool()`\n   * @custom:emits InternalBorrowerAdded\n   */\n  function addBorrower(address borrower) external;\n\n  /**\n   * @notice Removes an authorized _borrower_ to the eToken. The _borrower_ can't no longer lock funds or take loans.\n   *\n   * @param borrower The address of the _borrower_, a PremiumsAccount that has this eToken as senior or junior eToken.\n   *\n   * @custom:pre Must be called by `policyPool()`\n   * @custom:emits InternalBorrowerRemoved with the defaulted debt\n   */\n  function removeBorrower(address borrower) external;\n\n  /**\n   * @notice Lends `amount` to the borrower (msg.sender), transferring the money to `receiver`.\n   * @dev This reduces the `totalSupply()` of the eToken, and stores a debt that will be repaid (hopefully) with\n   * `repayLoan`.\n   *\n   * @param amount The amount required\n   * @param receiver The received of the funds lent. This is usually the policyholder if the loan is used for a payout.\n   * @return Returns the amount that wasn't able to fulfil. `amount - lent`\n   *\n   * @custom:pre Must be called by a _borrower_ previously added with `addBorrower`.\n   *\n   * @custom:emits {InternalLoan}\n   * @custom:emits {ERC20-Transfer} transferring `lent` to `receiver`\n   */\n  function internalLoan(uint256 amount, address receiver) external returns (uint256);\n\n  /**\n   * @notice Repays a loan taken with `internalLoan`.\n   *\n   * @param amount The amount to repaid, that will be transferred from `msg.sender` balance.\n   * @param onBehalfOf The address of the borrower that took the loan. Usually `onBehalfOf == msg.sender` but we keep it\n   * open because in some cases with might need someone else pays the debt.\n   *\n   * @custom:pre `msg.sender` approved the spending of `currency()` for at least `amount`\n   *\n   * @custom:emits {InternalLoanRepaid}\n   * @custom:emits {ERC20-Transfer} transferring `amount` from `msg.sender` to `this`\n   */\n  function repayLoan(uint256 amount, address onBehalfOf) external;\n\n  /**\n   * @notice Returns the updated debt (principal + interest) of the `borrower`.\n   */\n  function getLoan(address borrower) external view returns (uint256);\n\n  /**\n   * @notice The annualized interest rate at which the `totalSupply()` grows\n   */\n  function tokenInterestRate() external view returns (uint256);\n\n  /**\n   * @notice The weighted average annualized interest rate paid by the currently locked `scr()`.\n   */\n  function scrInterestRate() external view returns (uint256);\n\n  /**\n   * @notice Returns the number that scales the shares to reflect the earnings or losses (rebasing token)\n   *\n   * @param updated When it's false, it returns the last scale stored. When it's true, it projects that scale applying\n   *                the accrued returns of the scr\n   */\n  function getCurrentScale(bool updated) external view returns (uint256);\n\n  /**\n   * @notice Redistributes a given amount of eTokens of the caller between the remaining LPs\n   *\n   * @param amount The amount of eTokens to burn\n   */\n  function redistribute(uint256 amount) external;\n\n  /**\n   * @notice Returns the cooler contract plugged into the eToken\n   */\n  function cooler() external view returns (address);\n}\n"},"contracts/interfaces/ILPWhitelist.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IEToken} from \"./IEToken.sol\";\n\n/**\n * @title ILPWhitelist - Interface that handles the whitelisting of Liquidity Providers\n * @author Ensuro\n */\ninterface ILPWhitelist {\n  /**\n   * @dev Indicates whether or not a liquidity provider can do a deposit in an eToken.\n   *\n   * @param etoken The eToken (see {EToken}) where the provider wants to deposit money.\n   * @param provider The address of the liquidity provider (user) that wants to deposit\n   * @param amount The amount of the deposit\n   * @return true if `provider` deposit is accepted, false if not\n   */\n  function acceptsDeposit(IEToken etoken, address provider, uint256 amount) external view returns (bool);\n\n  /**\n   * @dev Indicates whether or not the eTokens can be transferred from `providerFrom` to `providerTo`\n   *\n   * @param etoken The eToken (see {EToken}) that the LPs have the intention to transfer.\n   * @param providerFrom The current owner of the tokens\n   * @param providerTo The destination of the tokens if the transfer is accepted\n   * @param amount The amount of tokens to be transferred\n   * @return true if the transfer operation is accepted, false if not.\n   */\n  function acceptsTransfer(\n    IEToken etoken,\n    address providerFrom,\n    address providerTo,\n    uint256 amount\n  ) external view returns (bool);\n\n  /**\n   * @dev Indicates whether or not a liquidity provider can withdraw an eToken.\n   *\n   * @param etoken The eToken (see {EToken}) where the provider wants to withdraw money.\n   * @param provider The address of the liquidity provider (user) that wants to withdraw\n   * @param amount The amount of the withdrawal\n   * @return true if `provider` withdraw request is accepted, false if not\n   */\n  function acceptsWithdrawal(IEToken etoken, address provider, uint256 amount) external view returns (bool);\n}\n"},"contracts/interfaces/IPolicyHolder.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IERC721Receiver} from \"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\";\n\n/**\n * @title Policy holder interface\n * @dev Interface for any contract that wants to be a holder of Ensuro Policies and receive the payouts\n */\ninterface IPolicyHolder is IERC721Receiver {\n  /**\n   * @dev Whenever an Policy is expired or resolved with payout = 0, this function is called\n   *\n   * It should return its Solidity selector to confirm the payout.\n   * If interface is not implemented by the recipient, it will be ignored and the payout will be successful.\n   * No mather what's the return value or even if this function reverts, this function will not revert the policy\n   * expiration.\n   *\n   * The selector can be obtained in Solidity with `IPolicyHolder.onPolicyExpired.selector`.\n   */\n  function onPolicyExpired(address operator, address from, uint256 policyId) external returns (bytes4);\n\n  /**\n   * @dev Whenever an Policy is resolved with payout > 0, this function is called\n   *\n   * It must return its Solidity selector to confirm the payout.\n   * If interface is not implemented by the recipient, it will be ignored and the payout will be successful.\n   * If any other value is returned or it reverts, the policy resolution / payout will be reverted.\n   *\n   * The selector can be obtained in Solidity with `IPolicyHolder.onPayoutReceived.selector`.\n   */\n  function onPayoutReceived(address operator, address from, uint256 policyId, uint256 amount) external returns (bytes4);\n\n  /**\n   * @dev Whenever a policy is replaced, this function is called\n   *\n   * It must return its Solidity selector to confirm the operation.\n   * If interface is not implemented by the recipient, it will be ignored and the replacement will be successful.\n   * If any other value is returned or it reverts, the policy replacement will be reverted.\n   *\n   * The selector can be obtained in Solidity with `IPolicyHolder.onPolicyReplaced.selector`.\n   */\n  function onPolicyReplaced(\n    address operator,\n    address from,\n    uint256 oldPolicyId,\n    uint256 newPolicyId\n  ) external returns (bytes4);\n\n  /**\n   * @dev Whenever a policy is cancelled, this function is called\n   *\n   * It must return its Solidity selector to confirm the operation.\n   * If interface is not implemented by the recipient, it will be ignored and the cancellation will be successful.\n   * If any other value is returned or it reverts, the policy cancellation will be reverted.\n   *\n   * The selector can be obtained in Solidity with `IPolicyHolder.onPolicyCancelled.selector`.\n   */\n  function onPolicyCancelled(\n    address operator,\n    address from,\n    uint256 cancelledPolicyId,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund\n  ) external returns (bytes4);\n}\n"},"contracts/interfaces/IPolicyPool.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {Policy} from \"../Policy.sol\";\nimport {IEToken} from \"./IEToken.sol\";\nimport {IRiskModule} from \"./IRiskModule.sol\";\n\n/**\n * @title Interface of PolicyPool contracts\n * @notice There's a single instance of PolicyPool contract for a given deployment of the protocol\n * @dev Some methods of this interface will be called by other components of the protocol (like RiskModule or\n *      PremiumsAccount).\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ninterface IPolicyPool {\n  /**\n   * @notice Event emitted every time a new policy is added to the pool\n   * @dev Contains all the data about the policy that is later required for doing operations with the policy like\n   *      resolution or expiration.\n   *\n   * @param riskModule The risk module that created the policy\n   * @param policy The {Policy-PolicyData} struct with all the immutable fields of the policy.\n   */\n  event NewPolicy(IRiskModule indexed riskModule, Policy.PolicyData policy);\n\n  /**\n   * @notice Event emitted every time a new policy replaces an old Policy.\n   * @dev The event contains only the id of the replacement policy, the full data is available in the NewPolicy event.\n   *\n   * @param riskModule The risk module that created the policy\n   * @param oldPolicyId The id of the replaced policy.\n   * @param newPolicyId The id of the new policy.\n   */\n  event PolicyReplaced(IRiskModule indexed riskModule, uint256 indexed oldPolicyId, uint256 indexed newPolicyId);\n\n  /**\n   * @notice Event emitted when a policy is cancelled, and part of the paid premium is refunded.\n   * @dev After this, the policy is no longer active. The refund amounts are transferred to the policy holder.\n   *\n   * @param riskModule The risk module that created the policy\n   * @param cancelledPolicyId The id of the cancelled policy.\n   * @param purePremiumRefund The amount of pure premium refunded\n   * @param jrCocRefund The amount of Jr CoC refunded\n   * @param srCocRefund The amount of Sr CoC refunded\n   */\n  event PolicyCancelled(\n    IRiskModule indexed riskModule,\n    uint256 indexed cancelledPolicyId,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund\n  );\n\n  /**\n   * @notice Event emitted every time a policy is removed from the pool\n   * @dev If the policy expired, the `payout` is 0, otherwise is the amount transferred to the policyholder.\n   *\n   * @param riskModule The risk module where that created the policy initially.\n   * @param policyId The unique id of the policy\n   * @param payout The payout that has been paid to the policy holder. 0 when the policy expired.\n   */\n  event PolicyResolved(IRiskModule indexed riskModule, uint256 indexed policyId, uint256 payout);\n\n  /**\n   * @notice Reference to the main currency (ERC20, e.g. USDC) used in the protocol\n   */\n  function currency() external view returns (IERC20Metadata);\n\n  /**\n   * @notice Address of the treasury, that receives protocol fees.\n   */\n  function treasury() external view returns (address);\n\n  /**\n   * @notice Creates a new Policy\n   * @dev It charges the premium and distributes it to the different parties (PremiumsAccount, ETokens, treasury)\n   *\n   * @custom:pre `msg.sender` must be an active RiskModule\n   * @custom:pre `rm.premiumsAccount()` must be an active PremiumsAccount\n   * @custom:pre `payer` approved the spending of `currency()` for at least `policy.premium`\n   * @custom:pre `internalId` must be unique within the risk module (`msg.sender`) and not used before\n   *\n   * @custom:emits NewPolicy with all the details about the policy\n   * @custom:emits ERC20-Transfer transfers from `payer` to the different receivers of the premium\n   *               (see Premium Split in the docs)\n   *\n   * @custom:throws PolicyAlreadyExists when reusing an internalId\n\n   * @param policy A policy created with {Policy-initialize}\n   * @param payer The address that will pay for the premium\n   * @param policyHolder The address of the policy holder\n   * @param internalId A unique id within the RiskModule, that will be used to compute the policy id\n   * @return The policy id, identifying the NFT and the policy\n   */\n  function newPolicy(\n    Policy.PolicyData memory policy,\n    address payer,\n    address policyHolder,\n    uint96 internalId\n  ) external returns (uint256);\n\n  /**\n   * @notice Replaces a policy with another\n   * @dev After this call, the oldPolicy is no longer active and a new policy is created. Diferencial changes to\n   *      premiums and locked SCR.\n   *\n   * @param oldPolicy A policy created previously and not expired\n   * @param newPolicy_ A policy created with {Policy-initialize}\n   * @param payer The address that will pay for the premium difference\n   * @param internalId A unique id within the RiskModule, that will be used to compute the policy id\n   * @return The policy id, identifying the NFT and the policy\n   *\n   * @custom:pre `msg.sender` must be an active RiskModule\n   * @custom:pre `rm.premiumsAccount()` must be an active PremiumsAccount\n   * @custom:pre `payer` approved the spending of `currency()` for at least `newPolicy_.premium - oldPolicy.premium`\n   * @custom:pre `internalId` must be unique within `policy.riskModule` and not used before\n   *\n   * @custom:throws PolicyAlreadyExpired when trying to replace an expired policy\n   * @custom:throws InvalidPolicyReplacement when trying to reduce some of the premium componentsa\n   *\n   * @custom:emits PolicyReplaced with the ids of the new and replaced policy\n   * @custom:emits NewPolicy with all the details of the new policy\n   */\n  function replacePolicy(\n    Policy.PolicyData memory oldPolicy,\n    Policy.PolicyData memory newPolicy_,\n    address payer,\n    uint96 internalId\n  ) external returns (uint256);\n\n  /**\n   * @notice Cancels a policy, doing optional refunds of parts of the premium.\n   * @dev After this call the policy is not claimable and funds are unlocked\n   *\n   * @custom:pre `msg.sender` must be an active or deprecated RiskModule\n   * @custom:pre Policy not expired\n   *\n   * Events:\n   * @custom:emits PolicyCancelled with the refund amounts\n   * @custom:emits ERC20-Transfer transfers of the refunds amount to the policy holder\n   *\n   * @param policyToCancel A policy created previously and not expired, that will be cancelled\n   * @param purePremiumRefund The amount to refund from pure premiums (<= policyToCancel.purePremium)\n   * @param jrCocRefund The amount to refund from jrCoc (<= policyToCancel.jrCoc)\n   * @param srCocRefund The amount to refund from srCoc (<= policyToCancel.jrCoc)\n   */\n  function cancelPolicy(\n    Policy.PolicyData calldata policyToCancel,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund\n  ) external;\n\n  /**\n   * @notice Resolves a policy with a payout, sending the payment to the owner of the policy NFT.\n   * @dev After this call the policy is no longer active and the funds have been unlocked.\n   *\n   * @custom:pre `msg.sender` must be an active or deprecated RiskModule\n   * @custom:pre `payout`: must be less than equal to `policy.payout`.\n   * @custom:pre `policy`: must be a Policy not resolved before and not expired (if payout > 0).\n   *\n   * @custom:emits PolicyResolved with the payout amount\n   * @custom:emits ERC20-Transfer to the policyholder with the payout\n   *\n   * @param policy A policy previously created with `newPolicy`\n   * @param payout The amount to pay to the policyholder\n   */\n  function resolvePolicy(Policy.PolicyData calldata policy, uint256 payout) external;\n\n  /**\n   * @notice Expires a policy, unlocked the solvency.\n   * @dev Resolves a policy with a payout 0, unlocking the solvency. Can be called by anyone, but only after\n   *      `Policy.expiration`.\n   *\n   * @custom:pre `policy`: must be a Policy not resolved before\n   * @custom:pre `policy.expiration` <= block.timestamp\n   *\n   * @custom:emits PolicyResolved with the payout == 0\n   *\n   * @param policy A policy previously created with `newPolicy`\n   */\n  function expirePolicy(Policy.PolicyData calldata policy) external;\n\n  /**\n   * @notice Returns whether a policy is active\n   * @dev A policy is active when it's still in the PolicyPool, not yet resolved or expired.\n   *      Be aware that a policy might be active but the `block.timestamp` might be after the expiration date, so it\n   *      can't be triggered with a payout.\n   *\n   * @param policyId The id of the policy queried\n   * @return Whether the policy is active or not\n   */\n  function isActive(uint256 policyId) external view returns (bool);\n\n  /**\n   * @notice Returns the stored hash of the policy\n   * @dev Returns `bytes32(0)` if the policy isn't active.\n   *\n   * @param policyId The id of the policy queried\n   * @return Returns the hash of a given policy id\n   */\n  function getPolicyHash(uint256 policyId) external view returns (bytes32);\n\n  /**\n   * @notice Deposits liquidity into an eToken\n   * @dev Forwards the call to {EToken-deposit}, after transferring the funds.\n   *      The user will receive etokens for the same amount deposited.\n   *\n   * @custom:pre `msg.sender` approved the spending of `currency()` for at least `amount`\n   * @custom:pre `eToken` is an active eToken installed in the pool.\n   *\n   * @custom:emits EToken-Transfer from 0x0 to `receiver`, reflects the eTokens minted.\n   * @custom:emits ERC20-Transfer from `msg.sender` to address(eToken)\n   *\n   * @param eToken The address of the eToken to which the user wants to provide liquidity\n   * @param amount The amount to deposit\n   * @param receiver The user that will receive the minted tokens\n   */\n  function deposit(IEToken eToken, uint256 amount, address receiver) external;\n\n  /**\n   * @notice Deposits liquidity into an eToken, EIP-2612 compatible version.\n   * @dev Forwards the call to {EToken-deposit}, after transferring the funds.\n   *      The user will receive etokens for the same amount deposited. EIP-2612 compatible version, allows sending a\n   *      signed permit in the same operation.\n   *\n   * @custom:pre `msg.sender` approved the spending of `currency()` for at least `amount`\n   * @custom:pre `eToken` is an active eToken installed in the pool.\n   *\n   * @custom:emits EToken-Transfer from 0x0 to `receiver`, reflects the eTokens minted.\n   * @custom:emits ERC20-Transfer from `msg.sender` to address(eToken)\n   *\n   * @param eToken The address of the eToken to which the user wants to provide liquidity\n   * @param receiver The user that will receive the minted tokens\n   * @param amount The amount to deposit\n   * @param deadline The deadline of the permit\n   * @param v Component of the secp256k1 signature\n   * @param r Component of the secp256k1 signature\n   * @param s Component of the secp256k1 signature\n   */\n  function depositWithPermit(\n    IEToken eToken,\n    uint256 amount,\n    address receiver,\n    uint256 deadline,\n    uint8 v,\n    bytes32 r,\n    bytes32 s\n  ) external;\n\n  /**\n   * @notice Withdraws an amount from an eToken\n   * @dev Forwards the call to {EToken-withdraw}. `amount` of eTokens will be burned and the user will receive the\n   *      same amount in `currency()`.\n   *\n   * @custom:pre `eToken` is an active (or deprecated) eToken installed in the pool.\n   *\n   * @custom:emits EToken-Transfer from `owner` to `0x0`, reflects the eTokens burned.\n   * @custom:emits ERC20-Transfer from address(eToken) to `receiver`\n   *\n   * @param eToken The address of the eToken from where the user wants to withdraw liquidity\n   * @param amount The amount to withdraw. If equal to type(uint256).max, means full withdrawal.\n   *               If the balance is not enough or can't be withdrawn (locked as SCR), it withdraws\n   *               as much as it can, but doesn't fails.\n   * @param receiver The user that will receive the resulting `currency()`\n   * @param owner The user that owns the eTokens (must be msg.sender or have allowance)\n   * @return Returns the actual amount withdrawn.\n   */\n  function withdraw(IEToken eToken, uint256 amount, address receiver, address owner) external returns (uint256);\n}\n"},"contracts/interfaces/IPolicyPoolComponent.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IPolicyPool} from \"./IPolicyPool.sol\";\nimport {IERC165} from \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\n\n/**\n * @title IPolicyPoolComponent interface\n * @notice Interface for Contracts linked (owned) by a PolicyPool. Useful to avoid cyclic dependencies\n * @author Ensuro\n */\ninterface IPolicyPoolComponent is IERC165 {\n  /**\n   * @notice Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\n   */\n  function policyPool() external view returns (IPolicyPool);\n}\n"},"contracts/interfaces/IPremiumsAccount.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IEToken} from \"./IEToken.sol\";\nimport {Policy} from \"../Policy.sol\";\n\n/**\n * @title IPremiumsAccount interface\n * @notice Interface for Premiums Account contracts.\n * @author Ensuro\n */\ninterface IPremiumsAccount {\n  /**\n   * @notice Adds a policy to the PremiumsAccount. Stores the pure premiums and locks the aditional funds from junior and\n   * senior eTokens.\n   *\n   * @param policy The policy to add (created in this transaction)\n   *\n   * @custom:pre Must be called by `policyPool()`\n   *\n   * @custom:emits {EToken-SCRLocked}\n   */\n  function policyCreated(Policy.PolicyData memory policy) external;\n\n  /**\n   * @notice Replaces a policy with another in PremiumsAccount. Stores the pure premiums difference and\n   * re-locks the aditional funds from junior and senior eTokens.\n   *\n   * @param oldPolicy The policy to replace (created in a previous transaction)\n   * @param newPolicy The policy that will replace the old one (created in this transaction)\n   *\n   * @custom:pre Must be called by `policyPool()`\n   *\n   * @custom:emits {EToken-SCRUnlocked}\n   * @custom:emits {EToken-SCRLocked}\n   */\n  function policyReplaced(Policy.PolicyData memory oldPolicy, Policy.PolicyData memory newPolicy) external;\n\n  /**\n   * @notice Reflects the cancellation of a policy, doing the required refunds.\n   *\n   * @param policyToCancel The policy that is being cancelled\n   * @param purePremiumRefund The pure premium amount that will be reimbursed to the policy holder\n   * @param jrCocRefund The jrCoc that will be reimbursed to the policy holder\n   * @param srCocRefund The srCoc that will be reimbursed to the policy holder\n   * @param policyHolder Owner of the policy that will receive the reimbursement\n   *\n   * @custom:pre Must be called by `policyPool()`\n   *\n   * @custom:emits {EToken-SCRUnlocked}\n   */\n  function policyCancelled(\n    Policy.PolicyData calldata policyToCancel,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund,\n    address policyHolder\n  ) external;\n\n  /**\n   * @notice The PremiumsAccount is notified that the policy was resolved and issues the payout to the policyHolder.\n   *\n   * @param policyHolder The one that will receive the payout\n   * @param policy The policy that was resolved\n   * @param payout The amount that has to be transferred to `policyHolder`\n   *\n   * @custom:pre Must be called by `policyPool()`\n   * @custom:emits {ERC20-Transfer}: `to == policyHolder`, `amount == payout`\n   * @custom:emits {EToken-InternalLoan}: optional, if a loan needs to be taken\n   * @custom:emits {EToken-SCRUnlocked}\n   */\n  function policyResolvedWithPayout(address policyHolder, Policy.PolicyData memory policy, uint256 payout) external;\n\n  /**\n   * @notice The PremiumsAccount is notified that the policy has expired, unlocks the SCR and earns the pure premium.\n   *\n   * @param policy The policy that has expired\n   *\n   * @custom:pre Must be called by `policyPool()`\n   * @custom:emits {ERC20-Transfer}: `to == policyHolder`, `amount == payout`\n   * @custom:emits {EToken-InternalLoanRepaid}: optional, if a loan was taken before\n   */\n  function policyExpired(Policy.PolicyData memory policy) external;\n\n  /**\n   * @notice The senior eToken, the secondary source of solvency, used if the premiums account is exhausted and junior too\n   */\n  function seniorEtk() external view returns (IEToken);\n\n  /**\n   * @notice The junior eToken, the primary source of solvency, used if the premiums account is exhausted.\n   */\n  function juniorEtk() external view returns (IEToken);\n\n  /**\n   * @notice Returns the juniorEtk and seniorEtk. See {juniorEtk()} and {seniorEtk()}\n   */\n  function etks() external view returns (IEToken juniorEtk, IEToken seniorEtk);\n\n  /**\n   * @notice The total amount of premiums hold by this PremiumsAccount\n   */\n  function purePremiums() external view returns (uint256);\n}\n"},"contracts/interfaces/IRiskModule.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IPremiumsAccount} from \"./IPremiumsAccount.sol\";\n\n/**\n * @title IRiskModule interface\n * @notice Interface for RiskModule smart contracts. Gives access to RiskModule configuration parameters\n * @author Ensuro\n */\ninterface IRiskModule {\n  /**\n   * @notice Returns the address of the partner that receives the partnerCommission\n   */\n  function wallet() external view returns (address);\n\n  /**\n   * @notice Returns the {PremiumsAccount} where the premiums of this risk module are collected. Never changes.\n   */\n  function premiumsAccount() external view returns (IPremiumsAccount);\n}\n"},"contracts/interfaces/IUnderwriter.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\nimport {Policy} from \"../Policy.sol\";\n\n/**\n * @title Underwriter interface\n * @notice Interface for a contract that validates inputs and converts it into the fields required to create a policy\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ninterface IUnderwriter {\n  /**\n   * @notice Prices a new policy request for RiskModule `rm`.\n   *\n   * @param rm        The RiskModule address requesting pricing (implementations may use it for access checks).\n   * @param inputData Opaque payload consumed by the Underwriter implementation.\n   *\n   * @return payout      The policy payout.\n   * @return premium     The total premium for the policy.\n   * @return lossProb    Loss probability used for pricing/risk calculations.\n   * @return expiration  Policy expiration timestamp (seconds since epoch).\n   * @return internalId  Unique id within `rm` used to derive the policy id.\n   * @return params      Additional policy parameters used by {Policy-initialize}.\n   *\n   * @custom:pre `inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.\n   * @custom:pre The caller must satisfy any access/authentication requirements imposed by the implementation.\n   */\n  function priceNewPolicy(\n    address rm,\n    bytes calldata inputData\n  )\n    external\n    view\n    returns (\n      uint256 payout,\n      uint256 premium,\n      uint256 lossProb,\n      uint40 expiration,\n      uint96 internalId,\n      Policy.Params memory params\n    );\n\n  /**\n   * @notice Prices a policy replacement request for RiskModule `rm`.\n   *\n   * @param rm        The RiskModule address requesting pricing (implementations may use it for access checks).\n   * @param inputData Opaque payload consumed by the Underwriter implementation.\n   *\n   * @return oldPolicy   The policy being replaced (as {Policy-PolicyData}).\n   * @return payout      The replacement policy payout.\n   * @return premium     The replacement policy premium.\n   * @return lossProb    Loss probability used for pricing/risk calculations.\n   * @return expiration  Replacement policy expiration timestamp.\n   * @return internalId  Unique id within `rm` for the replacement policy.\n   * @return params      Additional policy parameters used by {Policy-initialize}.\n   *\n   * @custom:pre `inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.\n   * @custom:pre The caller must satisfy any access/authentication requirements imposed by the implementation.\n   */\n  function pricePolicyReplacement(\n    address rm,\n    bytes calldata inputData\n  )\n    external\n    view\n    returns (\n      Policy.PolicyData memory oldPolicy,\n      uint256 payout,\n      uint256 premium,\n      uint256 lossProb,\n      uint40 expiration,\n      uint96 internalId,\n      Policy.Params memory params\n    );\n\n  /**\n   * @notice Prices a policy cancellation request for RiskModule `rm`.\n   *\n   * @param rm        The RiskModule address requesting pricing (implementations may use it for access checks).\n   * @param inputData Opaque payload consumed by the Underwriter implementation.\n   *\n   * @return policyToCancel    The policy to cancel (as {Policy-PolicyData}).\n   * @return purePremiumRefund Amount to refund from pure premium.\n   * @return jrCocRefund       Amount to refund from junior CoC (or a sentinel value, if supported).\n   * @return srCocRefund       Amount to refund from senior CoC (or a sentinel value, if supported).\n   *\n   * @custom:pre `inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.\n   * @custom:pre The caller must satisfy any access/authentication requirements imposed by the implementation.\n   */\n  function pricePolicyCancellation(\n    address rm,\n    bytes calldata inputData\n  )\n    external\n    view\n    returns (\n      Policy.PolicyData memory policyToCancel,\n      uint256 purePremiumRefund,\n      uint256 jrCocRefund,\n      uint256 srCocRefund\n    );\n}\n"},"contracts/LPManualWhitelist.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IPolicyPool} from \"./interfaces/IPolicyPool.sol\";\nimport {PolicyPoolComponent} from \"./PolicyPoolComponent.sol\";\nimport {ILPWhitelist} from \"./interfaces/ILPWhitelist.sol\";\nimport {IEToken} from \"./interfaces/IEToken.sol\";\n\n/**\n * @title Manual Whitelisting contract\n * @notice LP addresses are whitelisted (and un-whitelisted) manually with transactions by user with given role\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract LPManualWhitelist is ILPWhitelist, PolicyPoolComponent {\n  /**\n   * @notice Enum with the different options for whitelisting status\n   */\n  enum WhitelistOptions {\n    undefined,\n    whitelisted,\n    blacklisted\n  }\n\n  struct WhitelistStatus {\n    WhitelistOptions deposit;\n    WhitelistOptions withdraw;\n    WhitelistOptions sendTransfer;\n    WhitelistOptions receiveTransfer;\n  }\n\n  mapping(address => WhitelistStatus) private _wlStatus;\n\n  error InvalidProvider(address provider);\n  error InvalidWhitelistStatus(WhitelistStatus newStatus);\n\n  /**\n   * @notice Emitted when the whitelist status for a provider (or the defaults entry at address(0)) is updated.\n   *\n   * @param provider The provider whose status was changed. `address(0)` denotes the defaults entry.\n   * @param whitelisted The new status stored for the provider.\n   */\n  event LPWhitelistStatusChanged(address provider, WhitelistStatus whitelisted);\n\n  /// @custom:oz-upgrades-unsafe-allow constructor\n  // solhint-disable-next-line no-empty-blocks\n  constructor(IPolicyPool policyPool_) PolicyPoolComponent(policyPool_) {}\n\n  /**\n   * @notice Initializes the Whitelist contract\n   */\n  function initialize(WhitelistStatus calldata defaultStatus) public virtual initializer {\n    __LPManualWhitelist_init(defaultStatus);\n  }\n\n  // solhint-disable-next-line func-name-mixedcase\n  function __LPManualWhitelist_init(WhitelistStatus calldata defaultStatus) internal onlyInitializing {\n    __PolicyPoolComponent_init();\n    __LPManualWhitelist_init_unchained(defaultStatus);\n  }\n\n  // solhint-disable-next-line func-name-mixedcase\n  function __LPManualWhitelist_init_unchained(WhitelistStatus calldata defaultStatus) internal onlyInitializing {\n    _checkDefaultStatus(defaultStatus);\n    _wlStatus[address(0)] = defaultStatus;\n    emit LPWhitelistStatusChanged(address(0), defaultStatus);\n  }\n\n  /**\n   * @notice Sets a custom whitelist status for `provider`.\n   *\n   * @param provider The LP address whose status will be updated. Must be non-zero.\n   * @param newStatus The status to store for `provider`. Fields may be `undefined` to indicate \"use defaults\".\n   *\n   * @custom:pre `provider != address(0)`\n   *\n   * @custom:throws {InvalidProvider} if `provider == address(0)`\n   */\n  function whitelistAddress(address provider, WhitelistStatus calldata newStatus) external {\n    require(provider != address(0), InvalidProvider(provider));\n    _whitelistAddress(provider, newStatus);\n  }\n\n  /**\n   * @notice Internal validator for the defaults entry. All fields must be explicitly set (non-`undefined`).\n   *\n   * @param newStatus Candidate defaults status.\n   *\n   * @custom:pre `newStatus.deposit != WhitelistOptions.undefined`\n   * @custom:pre `newStatus.withdraw != WhitelistOptions.undefined`\n   * @custom:pre `newStatus.sendTransfer != WhitelistOptions.undefined`\n   * @custom:pre `newStatus.receiveTransfer != WhitelistOptions.undefined`\n   *\n   * @custom:throws {InvalidWhitelistStatus} if any field is `undefined`\n   */\n  function _checkDefaultStatus(WhitelistStatus calldata newStatus) internal pure {\n    require(\n      newStatus.deposit != WhitelistOptions.undefined &&\n        newStatus.withdraw != WhitelistOptions.undefined &&\n        newStatus.sendTransfer != WhitelistOptions.undefined &&\n        newStatus.receiveTransfer != WhitelistOptions.undefined,\n      InvalidWhitelistStatus(newStatus)\n    );\n  }\n\n  /**\n   * @notice Updates the default whitelist status stored at `_wlStatus[address(0)]`.\n   *\n   * @param newStatus The new defaults entry. All fields must be non-`undefined`.\n   *\n   * @custom:pre `newStatus.deposit != WhitelistOptions.undefined`\n   * @custom:pre `newStatus.withdraw != WhitelistOptions.undefined`\n   * @custom:pre `newStatus.sendTransfer != WhitelistOptions.undefined`\n   * @custom:pre `newStatus.receiveTransfer != WhitelistOptions.undefined`\n   *\n   * @custom:throws {InvalidWhitelistStatus} if any defaults field is `undefined`\n   */\n  function setWhitelistDefaults(WhitelistStatus calldata newStatus) external {\n    _checkDefaultStatus(newStatus);\n    _whitelistAddress(address(0), newStatus);\n  }\n\n  /**\n   * @notice Returns the default whitelist status stored at `_wlStatus[address(0)]`.\n   */\n  function getWhitelistDefaults() external view returns (WhitelistStatus memory) {\n    return _wlStatus[address(0)];\n  }\n\n  /**\n   * @notice Stores `newStatus` for `provider`.\n   *\n   * @param provider The provider whose entry is being written.\n   * @param newStatus The status to store.\n   *\n   * @custom:emits {LPWhitelistStatusChanged}\n   */\n  function _whitelistAddress(address provider, WhitelistStatus memory newStatus) internal {\n    _wlStatus[provider] = newStatus;\n    emit LPWhitelistStatusChanged(provider, newStatus);\n  }\n\n  /**\n   * @dev See {IERC165-supportsInterface}.\n   */\n  function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n    return super.supportsInterface(interfaceId) || interfaceId == type(ILPWhitelist).interfaceId;\n  }\n\n  /// @inheritdoc ILPWhitelist\n  function acceptsDeposit(IEToken, address provider, uint256) external view override returns (bool) {\n    WhitelistOptions wl = _wlStatus[provider].deposit;\n    if (wl == WhitelistOptions.undefined) {\n      wl = _wlStatus[address(0)].deposit;\n    }\n    return wl == WhitelistOptions.whitelisted;\n  }\n\n  /// @inheritdoc ILPWhitelist\n  function acceptsWithdrawal(IEToken, address provider, uint256) external view override returns (bool) {\n    WhitelistOptions wl = _wlStatus[provider].withdraw;\n    if (wl == WhitelistOptions.undefined) {\n      wl = _wlStatus[address(0)].withdraw;\n    }\n    return wl == WhitelistOptions.whitelisted;\n  }\n\n  /// @inheritdoc ILPWhitelist\n  function acceptsTransfer(\n    IEToken,\n    address providerFrom,\n    address providerTo,\n    uint256\n  ) external view override returns (bool) {\n    WhitelistOptions wl = _wlStatus[providerFrom].sendTransfer;\n    if (wl == WhitelistOptions.undefined) {\n      wl = _wlStatus[address(0)].sendTransfer;\n    }\n    if (wl != WhitelistOptions.whitelisted) return false;\n    wl = _wlStatus[providerTo].receiveTransfer;\n    if (wl == WhitelistOptions.undefined) {\n      wl = _wlStatus[address(0)].receiveTransfer;\n    }\n    return wl == WhitelistOptions.whitelisted;\n  }\n\n  /**\n   * @dev This empty reserved space is put in place to allow future versions to add new\n   * variables without shifting down storage in the inheritance chain.\n   * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n   */\n  uint256[49] private __gap;\n}\n"},"contracts/mocks/ForwardProxy.sol":{"content":"//SPDX-License-Identifier: Apache-2.0\n\npragma solidity ^0.8.28;\n\nimport {Proxy} from \"@openzeppelin/contracts/proxy/Proxy.sol\";\n\n/**\n * @dev This contract provides a fallback function that forwards all calls to another contract using the EVM\n * instruction `call`.\n *\n * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a\n * different contract through the {_delegate} function.\n *\n * The success and return data of the delegated call will be returned back to the caller of the proxy.\n */\ncontract ForwardProxy is Proxy {\n  address internal _forwardTo;\n\n  constructor(address forwardTo) {\n    _forwardTo = forwardTo;\n  }\n\n  /**\n   * @dev Delegates the current call to `implementation`.\n   *\n   * This function does not return to its internall call site, it will return directly to the external caller.\n   */\n  function _delegate(address implementation) internal virtual override {\n    // solhint-disable-next-line no-inline-assembly\n    assembly {\n      // Copy msg.data. We take full control of memory in this inline assembly\n      // block because it will not return to Solidity code. We overwrite the\n      // Solidity scratch pad at memory position 0.\n      calldatacopy(0, 0, calldatasize())\n\n      // Call the implementation.\n      // out and outsize are 0 because we don't know the size yet.\n      // let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)\n      let result := call(gas(), implementation, 0, 0, calldatasize(), 0, 0)\n\n      // Copy the returned data.\n      returndatacopy(0, 0, returndatasize())\n\n      switch result\n      // delegatecall returns 0 on error.\n      case 0 {\n        revert(0, returndatasize())\n      }\n      default {\n        return(0, returndatasize())\n      }\n    }\n  }\n\n  /**\n   * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function\n   * and {_fallback} should delegate.\n   */\n  function _implementation() internal view virtual override returns (address) {\n    return _forwardTo;\n  }\n\n  function setForwardTo(address forwardTo) external {\n    _forwardTo = forwardTo;\n  }\n}\n"},"contracts/mocks/InterfaceIdCalculator.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IERC165} from \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\nimport {IERC20} from \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {IERC721} from \"@openzeppelin/contracts/token/ERC721/IERC721.sol\";\nimport {IAccessControl} from \"@openzeppelin/contracts/access/IAccessControl.sol\";\nimport {IPolicyPool} from \"../interfaces/IPolicyPool.sol\";\nimport {IPolicyPoolComponent} from \"../interfaces/IPolicyPoolComponent.sol\";\nimport {IEToken} from \"../interfaces/IEToken.sol\";\nimport {IRiskModule} from \"../interfaces/IRiskModule.sol\";\nimport {IPolicyHolder} from \"../interfaces/IPolicyHolder.sol\";\nimport {IPremiumsAccount} from \"../interfaces/IPremiumsAccount.sol\";\nimport {ILPWhitelist} from \"../interfaces/ILPWhitelist.sol\";\nimport {ICooler} from \"../interfaces/ICooler.sol\";\n\ncontract InterfaceIdCalculator {\n  bytes4 public constant IERC165_INTERFACEID = type(IERC165).interfaceId;\n  bytes4 public constant IERC20_INTERFACEID = type(IERC20).interfaceId;\n  bytes4 public constant IERC20METADATA_INTERFACEID = type(IERC20Metadata).interfaceId;\n  bytes4 public constant IERC721_INTERFACEID = type(IERC721).interfaceId;\n  bytes4 public constant IACCESSCONTROL_INTERFACEID = type(IAccessControl).interfaceId;\n  bytes4 public constant IPOLICYPOOL_INTERFACEID = type(IPolicyPool).interfaceId;\n  bytes4 public constant IPOLICYPOOLCOMPONENT_INTERFACEID = type(IPolicyPoolComponent).interfaceId;\n  bytes4 public constant IETOKEN_INTERFACEID = type(IEToken).interfaceId;\n  bytes4 public constant IRISKMODULE_INTERFACEID = type(IRiskModule).interfaceId;\n  bytes4 public constant IPREMIUMSACCOUNT_INTERFACEID = type(IPremiumsAccount).interfaceId;\n  bytes4 public constant ILPWHITELIST_INTERFACEID = type(ILPWhitelist).interfaceId;\n  bytes4 public constant IPOLICYHOLDER_INTERFACEID = type(IPolicyHolder).interfaceId;\n  bytes4 public constant ICOOLER_INTERFACEID = type(ICooler).interfaceId;\n}\n"},"contracts/mocks/PolicyHolderMock.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IPolicyHolder} from \"../interfaces/IPolicyHolder.sol\";\nimport {IERC721Receiver} from \"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\";\nimport {IERC165} from \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\nimport {StorageSlot} from \"@openzeppelin/contracts/utils/StorageSlot.sol\";\n\ncontract PolicyHolderMock is IPolicyHolder {\n  uint256 public policyId;\n  uint256 public payout;\n  bool public fail;\n  bool public failReplace;\n  bool public failCancellation;\n  bool public emptyRevert;\n  bool public notImplemented;\n  bool public badlyImplemented;\n  bool public badlyImplementedReplace;\n  bool public noERC165;\n  uint256 public spendGasCount;\n\n  enum NotificationKind {\n    PolicyReceived,\n    PayoutReceived,\n    PolicyExpired,\n    PolicyReplaced,\n    PolicyCancelled\n  }\n\n  event NotificationReceived(NotificationKind kind, uint256 policyId, address operator, address from);\n\n  constructor() {\n    fail = false;\n    notImplemented = false;\n    badlyImplemented = false;\n    emptyRevert = false;\n    noERC165 = false;\n    payout = type(uint256).max;\n    spendGasCount = 0;\n  }\n\n  function setFail(bool fail_) external {\n    fail = fail_;\n  }\n\n  function setFailReplace(bool failReplace_) external {\n    failReplace = failReplace_;\n  }\n\n  function setFailCancellation(bool fail_) external {\n    failCancellation = fail_;\n  }\n\n  function setSpendGasCount(uint256 spendGasCount_) external {\n    spendGasCount = spendGasCount_;\n  }\n\n  function setNotImplemented(bool notImplemented_) external {\n    notImplemented = notImplemented_;\n  }\n\n  function setBadlyImplemented(bool badlyImplemented_) external {\n    badlyImplemented = badlyImplemented_;\n  }\n\n  function setBadlyImplementedReplace(bool badlyImplementedReplace_) external {\n    badlyImplementedReplace = badlyImplementedReplace_;\n  }\n\n  function setNoERC165(bool noERC165_) external {\n    noERC165 = noERC165_;\n  }\n\n  function setEmptyRevert(bool emptyRevert_) external {\n    emptyRevert = emptyRevert_;\n  }\n\n  function spendGas() internal {\n    // Spends gas doing storage writes\n    for (uint256 i = 0; i < spendGasCount; i++) {\n      StorageSlot.getUint256Slot(bytes32(100 + i)).value = i + 1;\n    }\n  }\n\n  /**\n   * @dev See {IERC165-supportsInterface}.\n   */\n  function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {\n    if (noERC165)\n      assembly {\n        revert(0, 0)\n      }\n    if (notImplemented) return false;\n    return interfaceId == type(IPolicyHolder).interfaceId || interfaceId == type(IERC165).interfaceId;\n  }\n\n  function onERC721Received(\n    address operator,\n    address from,\n    uint256 policyId_,\n    bytes calldata\n  ) external override returns (bytes4) {\n    if (fail)\n      if (emptyRevert)\n        assembly {\n          revert(0, 0)\n        }\n      else revert(\"onERC721Received: They told me I have to fail\");\n\n    policyId = policyId_;\n    payout = type(uint256).max;\n    emit NotificationReceived(NotificationKind.PolicyReceived, policyId_, operator, from);\n\n    if (badlyImplemented) return bytes4(0x0badf00d);\n\n    spendGas();\n\n    return IERC721Receiver.onERC721Received.selector;\n  }\n\n  function onPolicyExpired(address operator, address from, uint256 policyId_) external override returns (bytes4) {\n    if (fail)\n      if (emptyRevert)\n        assembly {\n          revert(0, 0)\n        }\n      else revert(\"onPolicyExpired: They told me I have to fail\");\n    policyId = policyId_;\n    payout = 0;\n    emit NotificationReceived(NotificationKind.PolicyExpired, policyId_, operator, from);\n\n    if (badlyImplemented) return bytes4(0x0badf00d);\n\n    spendGas();\n\n    return IPolicyHolder.onPolicyExpired.selector;\n  }\n\n  /**\n   * @dev See {IPolicyHolderV2-onPayoutReceived}.\n   */\n  function onPayoutReceived(\n    address operator,\n    address from,\n    uint256 policyId_,\n    uint256 amount\n  ) external override returns (bytes4) {\n    if (fail)\n      if (emptyRevert)\n        assembly {\n          revert(0, 0)\n        }\n      else revert(\"onPayoutReceived: They told me I have to fail\");\n    policyId = policyId_;\n    payout = amount;\n    emit NotificationReceived(NotificationKind.PayoutReceived, policyId_, operator, from);\n\n    if (badlyImplemented) return bytes4(0x0badf00d);\n\n    spendGas();\n\n    return IPolicyHolder.onPayoutReceived.selector;\n  }\n\n  /**\n   * @dev See {IPolicyHolderV2-onPolicyReplaced}.\n   */\n  function onPolicyReplaced(\n    address operator,\n    address from,\n    uint256 oldPolicyId,\n    uint256 newPolicyId\n  ) external override returns (bytes4) {\n    if (failReplace)\n      if (emptyRevert)\n        assembly {\n          revert(0, 0)\n        }\n      else revert(\"onPolicyReplaced: They told me I have to fail\");\n    policyId = oldPolicyId;\n    payout = newPolicyId;\n    emit NotificationReceived(NotificationKind.PolicyReplaced, oldPolicyId, operator, from);\n\n    if (badlyImplementedReplace) return bytes4(0x0badf00d);\n\n    spendGas();\n\n    return IPolicyHolder.onPolicyReplaced.selector;\n  }\n\n  function onPolicyCancelled(\n    address operator,\n    address from,\n    uint256 cancelledPolicyId,\n    uint256 /* purePremiumRefund */,\n    uint256 /* jrCocRefund */,\n    uint256 /* srCocRefund */\n  ) external returns (bytes4) {\n    if (failCancellation)\n      if (emptyRevert)\n        assembly {\n          revert(0, 0)\n        }\n      else revert(\"onPolicyCancelled: They told me I have to fail\");\n    policyId = cancelledPolicyId;\n    emit NotificationReceived(NotificationKind.PolicyCancelled, cancelledPolicyId, operator, from);\n\n    if (badlyImplementedReplace) return bytes4(0x0badfeed);\n\n    spendGas();\n\n    return IPolicyHolder.onPolicyCancelled.selector;\n  }\n}\n"},"contracts/mocks/PolicyPoolComponentMock.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IERC165} from \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\nimport {IPolicyPool} from \"../interfaces/IPolicyPool.sol\";\nimport {IPolicyPoolComponent} from \"../interfaces/IPolicyPoolComponent.sol\";\n\ncontract PolicyPoolComponentMock is IPolicyPoolComponent {\n  IPolicyPool internal immutable _policyPool;\n\n  constructor(IPolicyPool policyPool_) {\n    _policyPool = policyPool_;\n  }\n\n  function policyPool() external view override returns (IPolicyPool) {\n    return _policyPool;\n  }\n\n  /**\n   * @dev See {IERC165-supportsInterface}.\n   */\n  function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n    return interfaceId == type(IERC165).interfaceId || interfaceId == type(IPolicyPoolComponent).interfaceId;\n  }\n}\n"},"contracts/mocks/PolicyPoolMock.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IPolicyPool} from \"../interfaces/IPolicyPool.sol\";\nimport {IRiskModule} from \"../interfaces/IRiskModule.sol\";\nimport {IEToken} from \"../interfaces/IEToken.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {Policy} from \"../Policy.sol\";\nimport {ForwardProxy} from \"./ForwardProxy.sol\";\n\ncontract PolicyPoolMock is IPolicyPool {\n  using Policy for Policy.PolicyData;\n\n  uint256 public constant MAX_INT = 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff;\n\n  IERC20Metadata internal _currency;\n\n  mapping(uint256 => Policy.PolicyData) internal policies;\n  mapping(uint256 => bytes32) internal policyHashes;\n\n  constructor(IERC20Metadata currency_) {\n    _currency = currency_;\n  }\n\n  function currency() external view override returns (IERC20Metadata) {\n    return _currency;\n  }\n\n  function treasury() external pure override returns (address) {\n    return address(0);\n  }\n\n  function newPolicy(\n    Policy.PolicyData memory policy,\n    address /* payer */,\n    address /* policyHolder */,\n    uint96 internalId\n  ) external override returns (uint256) {\n    policy.id = (uint256(uint160(msg.sender)) << 96) + internalId;\n    policyHashes[policy.id] = policy.hash();\n    emit NewPolicy(IRiskModule(msg.sender), policy);\n    return policy.id;\n  }\n\n  function replacePolicy(\n    Policy.PolicyData memory oldPolicy,\n    Policy.PolicyData memory newPolicy_,\n    address /* payer */,\n    uint96 internalId\n  ) external override returns (uint256) {\n    newPolicy_.id = (uint256(uint160(msg.sender)) << 96) + internalId;\n    policyHashes[newPolicy_.id] = newPolicy_.hash();\n    IRiskModule rm = IRiskModule(msg.sender);\n    emit NewPolicy(rm, newPolicy_);\n    emit PolicyReplaced(IRiskModule(msg.sender), oldPolicy.id, newPolicy_.id);\n    return newPolicy_.id;\n  }\n\n  function cancelPolicy(\n    Policy.PolicyData memory policyToCancel,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund\n  ) external override {}\n\n  function extractRiskModule(uint256 policyId) public pure returns (IRiskModule) {\n    return IRiskModule(address(uint160(policyId >> 96)));\n  }\n\n  function _resolvePolicy(Policy.PolicyData memory policy, uint256 payout) internal {\n    require(policy.id != 0, \"Policy not found\");\n    require(policy.hash() == policyHashes[policy.id], \"Hash doesn't match\");\n    delete policies[policy.id];\n    delete policyHashes[policy.id];\n    emit PolicyResolved(IRiskModule(msg.sender), policy.id, payout);\n  }\n\n  function resolvePolicy(Policy.PolicyData calldata policy, uint256 payout) external override {\n    _resolvePolicy(policy, payout);\n  }\n\n  function expirePolicy(Policy.PolicyData calldata policy) external override {\n    _resolvePolicy(policy, 0);\n  }\n\n  function isActive(uint256 policyId) external view override returns (bool) {\n    return policyHashes[policyId] != bytes32(0);\n  }\n\n  function getPolicyHash(uint256 policyId) external view override returns (bytes32) {\n    return policyHashes[policyId];\n  }\n\n  function deposit(IEToken, uint256, address) external pure override {\n    revert(\"Not Implemented deposit\");\n  }\n\n  function depositWithPermit(IEToken, uint256, address, uint256, uint8, bytes32, bytes32) external pure override {\n    revert(\"Not Implemented deposit\");\n  }\n\n  function withdraw(IEToken, uint256, address, address) external pure override returns (uint256) {\n    revert(\"Not Implemented withdraw\");\n  }\n\n  /**\n   * @dev Simple passthrough method for testing Policy.initialize\n   */\n  function initializeAndEmitPolicy(\n    Policy.Params memory rmParams,\n    uint256 premium,\n    uint256 payout,\n    uint256 lossProb,\n    uint40 expiration,\n    uint40 start\n  ) external {\n    Policy.PolicyData memory policy = Policy.initialize(\n      rmParams,\n      premium,\n      payout,\n      lossProb,\n      expiration,\n      start == 0 ? uint40(block.timestamp) : start\n    );\n\n    emit NewPolicy(IRiskModule(address(0)), policy);\n  }\n}\n\n/**\n * @title PolicyPoolMockForward\n * @dev PolicyPool that forwards fallback calls to another contract. Used to simulate calls to EToken\n *      and other contracts that have functions that can be called only from PolicyPool\n */\ncontract PolicyPoolMockForward is ForwardProxy {\n  uint256 public constant MAX_INT = 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff;\n\n  IERC20Metadata internal _currency;\n\n  constructor(address forwardTo, IERC20Metadata currency_) ForwardProxy(forwardTo) {\n    _currency = currency_;\n  }\n\n  function currency() external view returns (IERC20Metadata) {\n    return _currency;\n  }\n}\n"},"contracts/mocks/ReserveMock.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {IERC4626} from \"@openzeppelin/contracts/interfaces/IERC4626.sol\";\nimport {IPolicyPool} from \"../interfaces/IPolicyPool.sol\";\nimport {Reserve} from \"../Reserve.sol\";\n\n/**\n * @title Ensuro Premiums Account\n * @dev This contract holds the pure premiums of a set of risk modules. The pure premiums is the part of the premium\n * that is expected to cover the losses. The contract keeps track of the pure premiums of the active policies\n * (_activePurePremiums) and the surplus or deficit generated by the finalized policies (pure premiums collected -\n * losses).\n *\n * Collaborates with a junior {EToken} and a senior {EToken} that act as lenders when the premiums aren't enough to\n * cover the losses.\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract ReserveMock is Reserve {\n  using SafeERC20 for IERC20Metadata;\n\n  IERC4626 internal _yieldVault;\n  int256 internal _totalEarnings;\n\n  /**\n   * @dev Constructor of the contract, sets the immutable fields.\n   *\n   */\n  /// @custom:oz-upgrades-unsafe-allow constructor\n  constructor(IPolicyPool policyPool_) Reserve(policyPool_) {}\n\n  /**\n   * @dev Initializes the PremiumsAccount\n   */\n  function initialize() public initializer {\n    __Reserve_init();\n  }\n\n  function yieldVault() public view override returns (IERC4626) {\n    return _yieldVault;\n  }\n\n  function _setYieldVault(IERC4626 newYV) internal override {\n    _yieldVault = newYV;\n  }\n\n  /**\n   * @dev This is called by the {Reserve} base class to record the earnings generated by the asset management.\n   *\n   * @param earningsOrLosses Indicates the amount earned since last time earnings where recorded.\n   * - If positive, repays the loans and accumulates the rest in the surplus.\n   * - If negative (losses) substracts it from surplus. It never can exceed _maxDeficit and doesn't takes\n   *   loans to cover asset losses.\n   */\n  function _yieldEarnings(int256 earningsOrLosses) internal override {\n    _totalEarnings += earningsOrLosses;\n    super._yieldEarnings(earningsOrLosses);\n  }\n\n  function addMoney(uint256 amount) external {\n    currency().safeTransferFrom(msg.sender, address(this), amount);\n  }\n\n  function transferTo(address destination, uint256 amount) external {\n    _transferTo(destination, amount);\n  }\n\n  /**\n   * @dev This empty reserved space is put in place to allow future versions to add new\n   * variables without shifting down storage in the inheritance chain.\n   * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n   */\n  uint256[48] private __gap;\n}\n"},"contracts/mocks/RiskModuleMock.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IPolicyPool} from \"../interfaces/IPolicyPool.sol\";\nimport {IPremiumsAccount} from \"../interfaces/IPremiumsAccount.sol\";\nimport {IRiskModule} from \"../interfaces/IRiskModule.sol\";\nimport {IPolicyPoolComponent} from \"../interfaces/IPolicyPoolComponent.sol\";\nimport {ForwardProxy} from \"./ForwardProxy.sol\";\n\ncontract RiskModuleMock is ForwardProxy, IRiskModule, IPolicyPoolComponent {\n  IPremiumsAccount internal immutable _premiumsAccount;\n  address internal immutable _wallet;\n\n  constructor(\n    IPolicyPool policyPool_,\n    IPremiumsAccount premiumsAccount_,\n    address wallet_\n  ) ForwardProxy(address(policyPool_)) {\n    _premiumsAccount = premiumsAccount_;\n    _wallet = wallet_;\n  }\n\n  function policyPool() public view override returns (IPolicyPool) {\n    return IPolicyPool(_forwardTo);\n  }\n\n  function premiumsAccount() external view override returns (IPremiumsAccount) {\n    return _premiumsAccount;\n  }\n\n  /**\n   * @dev Returns the address of the partner that receives the partnerCommission\n   */\n  function wallet() external view returns (address) {\n    return _wallet;\n  }\n\n  function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n    return interfaceId == type(IRiskModule).interfaceId;\n  }\n}\n"},"contracts/Policy.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\nimport {Math} from \"@openzeppelin/contracts/utils/math/Math.sol\";\n\n/**\n * @title Policy library\n * @notice Library for PolicyData struct. This struct represents an active policy, the premium and solvency breakdown\n * @dev Tracks how the premium is distributed, the probability of payout, duration and how the capital is locked.\n * It is never stored on-chain, but instead we store a hash and we receive the policy on each operation\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\nlibrary Policy {\n  using Math for uint256;\n\n  uint256 internal constant WAD = 1e18;\n  uint256 internal constant SECONDS_PER_YEAR = 365 days;\n\n  /**\n   * @notice Struct of the parameters of the risk module that are used to calculate the different Policy fields (see\n   * {Policy-PolicyData}.\n   */\n  struct Params {\n    /**\n     * @dev MoC (Margin of Conservativism) is a factor that multiplies the lossProb to increase or decrease the pure\n     * premium.\n     */\n    uint256 moc;\n    /**\n     * @dev Junior Collateralization Ratio is the percentage of policy exposure (payout) that will be covered with the\n     * purePremium and the Junior EToken\n     */\n    uint256 jrCollRatio;\n    /**\n     * @dev Collateralization Ratio is the percentage of policy exposure (payout) that will be covered by the\n     * purePremium and the Junior and Senior EToken. Usually is calculated as the relation between VAR99.5% and VAR100\n     * (full collateralization).\n     */\n    uint256 collRatio;\n    /**\n     * @dev Ensuro PurePremium Fee is the percentage that will be multiplied by the pure premium to obtain the part of\n     * the Ensuro Fee that's proportional to the pure premium.\n     */\n    uint256 ensuroPpFee;\n    /**\n     * @dev Ensuro Cost of Capital Fee is the percentage that will be multiplied by the cost of capital (CoC) to\n     * obtain the part of the Ensuro Fee that's proportional to the CoC.\n     */\n    uint256 ensuroCocFee;\n    /**\n     * @dev Junior Return on Capital is the annualized interest rate that's charged for the capital locked in the Junior\n     * EToken.\n     */\n    uint256 jrRoc;\n    /**\n     * @dev Senior Return on Capital is the annualized interest rate that's charged for the capital locked in the Senior\n     * EToken.\n     */\n    uint256 srRoc;\n  }\n\n  /**\n   * @notice Struct with all the info of a given policy\n   * @dev It includes the premium breakdown\n   * (`premium=purePremium + jrCoc + srCoc + ensuroCommission + partnerCommission`), the solvency breakdown\n   * (`solvency = purePremium + jrScr + srScr = payout * collRatio`), and the start and end of the policy.\n   */\n  struct PolicyData {\n    uint256 id;\n    uint256 payout;\n    uint256 jrScr;\n    uint256 srScr;\n    uint256 lossProb; // original loss probability (in wad)\n    uint256 purePremium; // share of the premium that covers expected losses\n    // equal to payout * lossProb * riskModule.moc\n    uint256 ensuroCommission; // share of the premium that goes for Ensuro\n    uint256 partnerCommission; // share of the premium that goes for the RM\n    uint256 jrCoc; // share of the premium that goes to junior liquidity providers (won or not)\n    uint256 srCoc; // share of the premium that goes to senior liquidity providers (won or not)\n    uint40 start;\n    uint40 expiration;\n  }\n\n  /**\n   * @notice Struct that contains the breakdown of premium and policy solvency\n   * @dev Used for internal calculations.\n   * `totalPremium = purePremium + jrCoc + srCoc + ensuroCommission + partnerCommission`\n   */\n  struct PremiumComposition {\n    uint256 purePremium;\n    uint256 jrScr;\n    uint256 srScr;\n    uint256 jrCoc;\n    uint256 srCoc;\n    uint256 ensuroCommission;\n    uint256 partnerCommission;\n    uint256 totalPremium;\n  }\n\n  /**\n   * @notice Raised when the received premium is less than the minimum\n   * @dev The minPremium is the one that results of computing the CoCs, purePremium and ensuroCommission for the given\n   * parameters, assuming partnerCommission = 0.\n   */\n  error PremiumLessThanMinimum(uint256 premium, uint256 minPremium);\n\n  /// @notice Raised when the premium exceeds the payoutreceived premium is less than the minimum\n  error PremiumExceedsPayout(uint256 premium, uint256 payout);\n\n  /// @notice Raised when the computed hash is bytes32(0)\n  error ZeroHash(PolicyData policy);\n\n  /**\n   * @notice Computes the minimum premium\n   * @dev The minPremium is the one that results of computing the CoCs, purePremium and ensuroCommission for the given\n   * parameters, assuming partnerCommission = 0.\n   *\n   * @param rmParams Struct with the business and quantitative parameters that define the risk (see {Params}).\n   * @param payout Maximum payout (exposure) of the policy\n   * @param lossProb Probability of paying the maximum payout (purePremium = rmParams.moc * lossProb * payout)\n   * @param expiration Timestamp when the policy expires (can't be claimed anymore)\n   * @param start Timestamp when the policy starts (block.timestamp for new policies)\n   * @return minPremium PremiumComposition struct with the computed premium and its breakdown\n   */\n  function getMinimumPremium(\n    Params memory rmParams,\n    uint256 payout,\n    uint256 lossProb,\n    uint40 expiration,\n    uint40 start\n  ) internal pure returns (PremiumComposition memory minPremium) {\n    minPremium.purePremium = payout.mulDiv(lossProb, WAD).mulDiv(rmParams.moc, WAD);\n    minPremium.jrScr = payout.mulDiv(rmParams.jrCollRatio, WAD);\n    if (minPremium.jrScr > minPremium.purePremium) {\n      minPremium.jrScr -= minPremium.purePremium;\n    } else {\n      minPremium.jrScr = 0;\n    }\n\n    minPremium.srScr = payout.mulDiv(rmParams.collRatio, WAD);\n    if (minPremium.srScr > (minPremium.purePremium + minPremium.jrScr)) {\n      minPremium.srScr -= minPremium.purePremium + minPremium.jrScr;\n    } else {\n      minPremium.srScr = 0;\n    }\n\n    // Calculate CoCs\n    minPremium.jrCoc = minPremium.jrScr.mulDiv(rmParams.jrRoc * (expiration - start), WAD * SECONDS_PER_YEAR);\n    minPremium.srCoc = minPremium.srScr.mulDiv(rmParams.srRoc * (expiration - start), WAD * SECONDS_PER_YEAR);\n    uint256 totalCoc = minPremium.jrCoc + minPremium.srCoc;\n\n    minPremium.ensuroCommission =\n      minPremium.purePremium.mulDiv(rmParams.ensuroPpFee, WAD) +\n      totalCoc.mulDiv(rmParams.ensuroCocFee, WAD);\n\n    minPremium.totalPremium = minPremium.purePremium + minPremium.ensuroCommission + totalCoc;\n  }\n\n  /**\n   * @notice Initializes a policy struct\n   * @dev Computes the minimum premium and the remaining (premium - minPremium) is assigned as partnerCommissiona\n   *\n   * @custom:throws PremiumLessThanMinimum when `premium` parameter is less than the computed minPremium\n   *\n   * @param rmParams Struct with the business and quantitative parameters that define the risk (see {Params}).\n   * @param premium The premium that will be paid for the policy\n   * @param payout Maximum payout (exposure) of the policy\n   * @param lossProb Probability of paying the maximum payout (purePremium = rmParams.moc * lossProb * payout)\n   * @param expiration Timestamp when the policy expires (can't be claimed anymore)\n   * @param start Timestamp when the policy starts (block.timestamp for new policies)\n   * @return newPolicy PolicyData struct with the fields initialized (all except .id)\n   */\n  function initialize(\n    Params memory rmParams,\n    uint256 premium,\n    uint256 payout,\n    uint256 lossProb,\n    uint40 expiration,\n    uint40 start\n  ) internal pure returns (PolicyData memory newPolicy) {\n    require(premium < payout, PremiumExceedsPayout(premium, payout));\n    PolicyData memory policy;\n\n    policy.payout = payout;\n    policy.lossProb = lossProb;\n    policy.start = start;\n    policy.expiration = expiration;\n\n    PremiumComposition memory minPremium = getMinimumPremium(rmParams, payout, lossProb, expiration, start);\n\n    policy.purePremium = minPremium.purePremium;\n    policy.jrScr = minPremium.jrScr;\n    policy.srScr = minPremium.srScr;\n    policy.jrCoc = minPremium.jrCoc;\n    policy.srCoc = minPremium.srCoc;\n    policy.ensuroCommission = minPremium.ensuroCommission;\n\n    require(minPremium.totalPremium <= premium, PremiumLessThanMinimum(premium, minPremium.totalPremium));\n\n    policy.partnerCommission = premium - minPremium.totalPremium;\n    return policy;\n  }\n\n  /**\n   * @notice Computes the annualized interest rate paid to Junior LPs, for a given policy\n   * @dev Computed as `(jrCoc / jrScr) * (SECONDS_PER_YEAR / duration)`. The result should be almost the same as\n   * the initial rmParams.jrRoc sent to `initialize`.\n   *\n   * @param policy Struct with all the info of the policy\n   * @return Annualized interest rate in WAD\n   */\n  function jrInterestRate(PolicyData memory policy) internal pure returns (uint256) {\n    return (policy.jrCoc * SECONDS_PER_YEAR).mulDiv(WAD, policy.jrScr * duration(policy));\n  }\n\n  /**\n   * @notice Computed the interest accrued by junior LPs\n   * @dev The value is directly proportional to the elapsed time since policy.start with respect to the duration\n   *\n   * @param policy Struct with all the info of the policy\n   * @return Amount of the JrCoc accrued so far\n   */\n  function jrAccruedInterest(PolicyData memory policy) internal view returns (uint256) {\n    return (policy.jrCoc * (block.timestamp - policy.start)) / duration(policy);\n  }\n\n  /**\n   * @notice Computes the annualized interest rate paid to Senior LPs, for a given policy\n   * @dev Computed as `(srCoc / srScr) * (SECONDS_PER_YEAR / duration)`. The result should be almost the same as\n   * the initial rmParams.srRoc sent to `initialize`.\n   *\n   * @param policy Struct with all the info of the policy\n   * @return Annualized interest rate in WAD\n   */\n  function srInterestRate(PolicyData memory policy) internal pure returns (uint256) {\n    return (policy.srCoc * SECONDS_PER_YEAR).mulDiv(WAD, policy.srScr * duration(policy));\n  }\n\n  /**\n   * @notice Computed the interest accrued by senior LPs\n   * @dev The value is directly proportional to the elapsed time since policy.start with respect to the duration\n   *\n   * @param policy Struct with all the info of the policy\n   * @return Amount of the SrCoc accrued so far\n   */\n  function srAccruedInterest(PolicyData memory policy) internal view returns (uint256) {\n    return (policy.srCoc * (block.timestamp - policy.start)) / duration(policy);\n  }\n\n  /// @notice Returns the duration in seconds of the policy\n  function duration(PolicyData memory policy) internal pure returns (uint40) {\n    return policy.expiration - policy.start;\n  }\n\n  /// @notice Returns a hash of all the fields of the policy\n  function hash(PolicyData memory policy) internal pure returns (bytes32 retHash) {\n    retHash = keccak256(abi.encode(policy));\n    require(retHash != bytes32(0), ZeroHash(policy));\n    return retHash;\n  }\n\n  /// @notice Extracts the risk module address from a policyId (first 20 bytes)\n  function extractRiskModule(uint256 policyId) internal pure returns (address) {\n    return address(uint160(policyId >> 96));\n  }\n\n  /// @notice Extracts the internalId from a policyId (last 96 bits)\n  function extractInternalId(uint256 policyId) internal pure returns (uint96) {\n    return uint96(policyId % (2 ** 96));\n  }\n\n  /**\n   * @notice Generates a policyId, combining the riskModule (first 20 bytes) with the internalId (last 12 bytes)\n   *\n   * @param rm The risk module\n   * @param internalId An identifier for the policy that is unique within a given risk module\n   * @return The policy id, that will be used as the tokenId for the minted policy NFT\n   */\n  function makePolicyId(address rm, uint96 internalId) internal pure returns (uint256) {\n    return (uint256(uint160(address(rm))) << 96) + internalId;\n  }\n}\n"},"contracts/PolicyPool.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IERC165} from \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\nimport {ERC165Checker} from \"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\";\nimport {ERC721Upgradeable} from \"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol\";\nimport {IERC20Permit} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {PausableUpgradeable} from \"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol\";\nimport {MulticallUpgradeable} from \"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol\";\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport {SafeCast} from \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport {UUPSUpgradeable} from \"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\";\n\nimport {IEToken} from \"./interfaces/IEToken.sol\";\nimport {IPolicyHolder} from \"./interfaces/IPolicyHolder.sol\";\nimport {IPolicyPool} from \"./interfaces/IPolicyPool.sol\";\nimport {IPolicyPoolComponent} from \"./interfaces/IPolicyPoolComponent.sol\";\nimport {IPremiumsAccount} from \"./interfaces/IPremiumsAccount.sol\";\nimport {IRiskModule} from \"./interfaces/IRiskModule.sol\";\nimport {Policy} from \"./Policy.sol\";\n\n/**\n * @title Ensuro PolicyPool contract\n * @notice This is the main contract of the protocol.\n * @dev There's a single instance of PolicyPool contract for a given deployment of the protocol.\n * It stores the registry of components (eTokens, PremiumsAccounts, and RiskModules). It also tracks the active\n * exposure and exposure limit per risk module.\n *\n * This is also the contract that receives and sends the underlying asset (currency, typically USDC).\n * The currency spending approvals should be done to this protocol for deposits or premium payments.\n *\n * This contract implements the ERC721 standard, because it mints and NFT for each policy created. The\n * property of the NFT represents the one that will receive the payout.\n *\n * The active policies are tracked in _policies as hashes, but for gas optimization we just store the hash\n * of the policy struct, and the struct needs to be stored off-chain and provided on every subsequent call.\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract PolicyPool is IPolicyPool, PausableUpgradeable, UUPSUpgradeable, ERC721Upgradeable, MulticallUpgradeable {\n  using Policy for Policy.PolicyData;\n  using SafeERC20 for IERC20Metadata;\n  using SafeCast for uint256;\n\n  uint256 internal constant HOLDER_GAS_LIMIT = 150000;\n\n  /**\n   * @notice {ERC20} token used in PolicyPool as currency. Usually it will be a stablecoin such as USDC.\n   */\n  /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n  IERC20Metadata internal immutable _currency;\n\n  /**\n   * @notice Address of Ensuro's treasury that receives the protocol fees.\n   */\n  address internal _treasury; // address of Ensuro treasury\n\n  /**\n   * @notice Different statuses that a component ({PremiumsAccount}, {EToken} or {RiskModule} can have.\n   */\n  enum ComponentStatus {\n    /**\n     * @notice inactive status = 0 means the component doesn't exists - All operations rejected\n     */\n    inactive,\n    /**\n     * @notice active means the component is fully functional, all the component operations are allowed.\n     *         deposit / withdraw for eTokens\n     *         newPolicy / resolvePolicy for riskModules\n     *         policyCreated / policyExpired / policyResolvedWithPayout for premiumsAccount\n     */\n    active,\n    /**\n     * @notice deprecated means the component is in process of being deactivated. Only some operations are allowed:\n     *         withdraw for eTokens\n     *         resolvePolicy / expirePolicy for riskModules\n     *         policyExpired / policyResolvedWithPayout for premiumsAccount\n     */\n    deprecated,\n    /**\n     * @notice suspended means the component is temporarily deactivated. All the operations are rejected. Only GUARDIAN\n     *         can suspend.\n     */\n    suspended\n  }\n\n  /**\n   * @notice Enum of the different kind of top level components that can be plugged into the pool. Each one corresponds\n   * with the {EToken}, {RiskModule} and {PremiumsAccount} respectively.\n   */\n  enum ComponentKind {\n    unknown,\n    eToken,\n    riskModule,\n    premiumsAccount\n  }\n\n  /**\n   * @notice Struct to keep the state and type of the components installed\n   * @dev The `kind` never changes. The `status` initially is `active` and can be changes with\n   * {PolicyPool-changeComponentStatus} and {PolicyPool-removeComponent}.\n   */\n  struct Component {\n    ComponentStatus status;\n    ComponentKind kind;\n  }\n\n  /**\n   * @notice Mapping of installed components (see {EToken}, {RiskModule}, {PremiumsAccount}) in the PolicyPool.\n   */\n  mapping(IPolicyPoolComponent => Component) internal _components;\n\n  /**\n   * @notice Mapping that stores the active policies (the policyId is the key).\n   * @dev It just saves the hash of the policies, the full {Policy-PolicyData} struct has to be sent for each\n   * operation (hash is used to verify).\n   */\n  mapping(uint256 => bytes32) internal _policies;\n\n  struct Exposure {\n    uint128 active;\n    uint128 limit;\n  }\n\n  /**\n   * @notice Base URI for the minted policy NFTs.\n   */\n  string internal _nftBaseURI;\n\n  /**\n   * @notice Mapping of current exposures and limits for each risk module.\n   */\n  mapping(IRiskModule => Exposure) internal _exposureByRm;\n\n  /**\n   * @notice Constructor error when address(0) is sent as `currency()`\n   */\n  error NoZeroCurrency();\n\n  /**\n   * @notice Constructor error (or setTreasury) when address(0) is sent as `treasury()`\n   */\n  error NoZeroTreasury();\n\n  /**\n   * @notice Initialization error when empty name for the ERC721 is sent\n   */\n  error NoEmptyName();\n\n  /**\n   * @notice Initialization error when empty symbol for the ERC721 is sent\n   */\n  error NoEmptySymbol();\n\n  /// @notice Thrown when trying to change the currency during an upgrade\n  error UpgradeCannotChangeCurrency();\n\n  /**\n   * @notice Error when trying to add a component that was already added to the PolicyPool\n   */\n  error ComponentAlreadyInThePool();\n\n  /**\n   * @notice Error when trying to add a component that isn't linked to this pool (`.policyPool() != this`)\n   */\n  error ComponentNotLinkedToThisPool();\n\n  /**\n   * @notice Raised when a component is not of the right kind\n   * @dev It might happen if a component declared as ComponentKind.eToken doesn't support the IEToken interface (or\n   * similar) or when in a given operation we expect a component to be a risk module and the stored kind is different.\n   */\n  error ComponentNotTheRightKind(IPolicyPoolComponent component, ComponentKind expectedKind);\n\n  /**\n   * @notice Error when a component is not deprecated for the operation (see `removeComponent`), when it must.\n   */\n  error ComponentNotDeprecated();\n\n  /**\n   * @notice Error when trying to remove a component that is still in use.\n   * @dev The \"in use\" definition can change from one component to the other. For eToken in use means\n   * `totalSupply() != 0`. For PremiumsAccount means `purePremiums() != 0`. For RiskModule means\n   * `activeExposure() != 0`.\n   */\n  error ComponentInUseCannotRemove(ComponentKind kind, uint256 amount);\n\n  /**\n   * @notice Error when a component is not found in the pool (status = 0 = inactive)\n   */\n  error ComponentNotFound();\n\n  /**\n   * @notice Error when a component is not found in the pool or is not active (status != active)\n   */\n  error ComponentNotFoundOrNotActive();\n\n  /// @notice Thrown when attempting to set a component status to `inactive` via changeComponentStatus, use removeComponent() instead.\n  error InvalidComponentStatus();\n\n  /**\n   * @notice Error when a component is not active or deprecated. Happens on some operations like eToken withdrawals or\n   * policy resolutions that accept the component might be active or deprecated and isn't on any of those states.\n   */\n  error ComponentMustBeActiveOrDeprecated();\n\n  /**\n   * @notice Error when a method intented to be called by riskModule (and by policy's risk module) is called by\n   * someone else.\n   */\n  error OnlyRiskModuleAllowed();\n\n  /**\n   * @notice Raised when IPolicyHolder doesn't return the expected selector answer when notified of policy payout,\n   * replacement or cancellation.\n   */\n  error InvalidNotificationResponse(bytes4 response);\n\n  /// @notice Thrown when attempting to create a policy with an ID that already exists\n  error PolicyAlreadyExists(uint256 policyId);\n\n  /// @notice Thrown when attempting to process an action (other than expiration) on a policy after its expiration date\n  error PolicyAlreadyExpired(uint256 policyId);\n\n  /// @notice Thrown when attempting to execute an action on a policy that does not exist (or was already expired)\n  error PolicyNotFound(uint256 policyId);\n\n  /**\n   * @notice Thrown when attempting to expire a policy, but the policy is still active (policy.expiration >\n   * block.timestamp)\n   *\n   * @param policyId The ID of the policy that is not yet expired\n   * @param expiration The timestamp when the policy expires\n   * @param now The current block timestamp\n   */\n  error PolicyNotExpired(uint256 policyId, uint40 expiration, uint256 now);\n\n  /**\n   * @notice Thrown when attempting to replace a policy with an invalid replacement\n   * @dev This could occur if the policies have a different start, or if any of the premium components of the\n   *      newPolicy are lower than the same component of the original policy.\n   *\n   * @param oldPolicy The original policy data\n   * @param newPolicy The proposed replacement policy data\n   */\n  error InvalidPolicyReplacement(Policy.PolicyData oldPolicy, Policy.PolicyData newPolicy);\n\n  /**\n   * @notice Thrown when attempting to cancel a policy with invalid refunds\n   * @dev The refunds amounts can never exceed the original premium components.\n   *\n   * @param policyToCancel The data of the policy being cancelled\n   * @param purePremiumRefund The amount to refund from pure premium charged\n   * @param jrCocRefund The amount to refund from jrCoc charged\n   * @param srCocRefund The amount to refund from srCoc charged\n   */\n  error InvalidPolicyCancellation(\n    Policy.PolicyData policyToCancel,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund\n  );\n\n  /// @notice Thrown when a requested payout exceeds the policy's maximum payout limit\n  error PayoutExceedsLimit(uint256 payout, uint256 policyPayout);\n\n  /// @notice Thrown when an action would cause the active exposure to exceed the configured limit\n  error ExposureLimitExceeded(uint128 activeExposure, uint128 exposureLimit);\n\n  /// @notice Thrown when an invalid receiver address (address(0)) is provided as received of deposit or withdraw\n  error InvalidReceiver(address receiver);\n\n  /**\n   * @notice Event emitted when the treasury (who receives ensuroCommission) changes\n   *\n   * @param oldTreasury The address of the treasury before the change\n   * @param newTreasury  The address of the treasury after the change\n   */\n  event TreasuryChanged(address oldTreasury, address newTreasury);\n\n  /**\n   * @notice Event emitted when the baseURI (for policy NFTs) changes\n   *\n   * @param oldBaseURI The baseURI before the change\n   * @param newBaseURI The baseURI after the change\n   */\n  event BaseURIChanged(string oldBaseURI, string newBaseURI);\n\n  /**\n   * @notice Event emitted when a new component added/removed to the pool or the status changes.\n   *\n   * @param component The address of the component, it can be an {EToken}, {RiskModule} or {PremiumsAccount}\n   * @param kind Value indicating the kind of component. See {ComponentKind}\n   * @param newStatus The status of the component after the operation. See {ComponentStatus}\n   */\n  event ComponentStatusChanged(IPolicyPoolComponent indexed component, ComponentKind kind, ComponentStatus newStatus);\n\n  /**\n   * @notice Event emitted when a IPolicyHolder reverts on the expiration notification. The operation doesn't reverts\n   *\n   * @param policyId The id of the policy being expired\n   * @param holder The address of the contract that owns the policy\n   */\n  event ExpirationNotificationFailed(uint256 indexed policyId, IPolicyHolder holder);\n\n  /**\n   * @notice Event emitted when the exposure limit for a given risk module is changed\n   *\n   * @param riskModule The risk module whose limit will be changed\n   * @param oldLimit Exposure limit before the change\n   * @param newLimit Exposure limit after the change\n   */\n  event ExposureLimitChanged(IRiskModule indexed riskModule, uint128 oldLimit, uint128 newLimit);\n\n  /**\n   * @notice Event emitted for every deposit into an eToken\n   *\n   * @param eToken The eToken receiving the funds\n   * @param sender The sender of the funds (the user calling `deposit` or `depositWithPermit`)\n   * @param owner The user that will receive the minted eTokens\n   * @param amount Amount in `currency()` paid for the eTokens (equal to the amount of eTokens received)\n   */\n  event Deposit(IEToken indexed eToken, address indexed sender, address indexed owner, uint256 amount);\n\n  /**\n   * @notice Event emitted for every withdrawal from an eToken\n   *\n   * @param eToken The eToken where the withdrawal will be done\n   * @param sender The user calling the withdraw method. Must be the owner or have spending approval from it.\n   * @param receiver The user that receives the resulting funds (`currency()`)\n   * @param owner The owner of the burned eTokens\n   * @param amount Amount in `currency()` that will be received by `receiver`.\n   */\n  event Withdraw(\n    IEToken indexed eToken,\n    address indexed sender,\n    address indexed receiver,\n    address owner,\n    uint256 amount\n  );\n\n  /**\n   * @dev Instantiates a Policy Pool. Sets immutable fields.\n   *\n   * @param currency_ The {ERC20} token that's used as a currency in the protocol. Usually a stablecoin such as USDC.\n   */\n  /// @custom:oz-upgrades-unsafe-allow constructor\n  constructor(IERC20Metadata currency_) {\n    if (address(currency_) == address(0)) revert NoZeroCurrency();\n    _disableInitializers();\n    _currency = currency_;\n  }\n\n  /**\n   * @dev Initializes a Policy Pool\n   *\n   * @param name_ The name of the ERC721 token.\n   * @param symbol_ The symbol of the ERC721 token.\n   * @param treasury_ The address of the treasury that will receive the protocol fees.\n   */\n  function initialize(string memory name_, string memory symbol_, address treasury_) public initializer {\n    if (bytes(name_).length == 0) revert NoEmptyName();\n    if (bytes(symbol_).length == 0) revert NoEmptySymbol();\n    __ERC721_init(name_, symbol_);\n    __Pausable_init();\n    __PolicyPool_init_unchained(treasury_);\n  }\n\n  /// @inheritdoc IERC165\n  function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n    return super.supportsInterface(interfaceId) || interfaceId == type(IPolicyPool).interfaceId;\n  }\n\n  // solhint-disable-next-line func-name-mixedcase\n  function __PolicyPool_init_unchained(address treasury_) internal onlyInitializing {\n    _setTreasury(treasury_);\n  }\n\n  function _authorizeUpgrade(address newImpl) internal view override {\n    IPolicyPool newPool = IPolicyPool(newImpl);\n    if (newPool.currency() != _currency) revert UpgradeCannotChangeCurrency();\n  }\n\n  /**\n   * @notice Pauses the contract.\n   * @dev When the contract is paused, several operations are rejected: deposits, withdrawals, new\n   * policies, policy resolution and expiration, nft transfers.\n   */\n  function pause() public {\n    _pause();\n  }\n\n  /**\n   * @notice Unpauses the contract.\n   * @dev All the operations disabled when the contract was paused are re-enabled.\n   */\n  function unpause() public {\n    _unpause();\n  }\n\n  /// @inheritdoc IPolicyPool\n  function currency() external view virtual override returns (IERC20Metadata) {\n    return _currency;\n  }\n\n  function _setTreasury(address treasury_) internal {\n    if (treasury_ == address(0)) revert NoZeroTreasury();\n    emit TreasuryChanged(_treasury, treasury_);\n    _treasury = treasury_;\n  }\n\n  /**\n   * @notice Changes the address of the treasury, the one that receives the protocol fees.\n   *\n   * @custom:emits TreasuryChanged with the previous and current treasury\n   */\n  function setTreasury(address treasury_) external {\n    _setTreasury(treasury_);\n  }\n\n  /// @inheritdoc IPolicyPool\n  function treasury() external view override returns (address) {\n    return _treasury;\n  }\n\n  /**\n   * @notice Adds a new component (either an {EToken}, {RiskModule} or {PremiumsAccount}) to the protocol.\n   * @dev The component status will be `active`.\n   *\n   * @custom:emits ComponentStatusChanged with status active.\n   * @custom:throws ComponentNotTheRightKind When there's a mismatch between the specified kind and supported interface\n   *\n   * @param component The address of component contract. Must be an {EToken}, {RiskModule} or {PremiumsAccount} linked\n   * to this specific {PolicyPool} and matching the `kind` specified in the next paramter.\n   * @param kind The type of component to be added.\n   */\n  function addComponent(IPolicyPoolComponent component, ComponentKind kind) external {\n    Component storage comp = _components[component];\n    if (comp.status != ComponentStatus.inactive) revert ComponentAlreadyInThePool();\n    if (component.policyPool() != this) revert ComponentNotLinkedToThisPool();\n\n    if (\n      (kind == ComponentKind.unknown) ||\n      (kind == ComponentKind.eToken && !component.supportsInterface(type(IEToken).interfaceId)) ||\n      (kind == ComponentKind.premiumsAccount && !component.supportsInterface(type(IPremiumsAccount).interfaceId)) ||\n      (kind == ComponentKind.riskModule && !component.supportsInterface(type(IRiskModule).interfaceId))\n    ) revert ComponentNotTheRightKind(component, kind);\n\n    comp.status = ComponentStatus.active;\n    comp.kind = kind;\n    if (kind == ComponentKind.premiumsAccount) {\n      IPremiumsAccount pa = IPremiumsAccount(address(component));\n      IEToken etk = pa.juniorEtk();\n      if (address(etk) != address(0)) {\n        etk.addBorrower(address(pa));\n      }\n      etk = pa.seniorEtk();\n      if (address(etk) != address(0)) {\n        etk.addBorrower(address(pa));\n      }\n    }\n    emit ComponentStatusChanged(component, kind, ComponentStatus.active);\n  }\n\n  /**\n   * @notice Removes a component from the protocol\n   * @dev The component needs to be in `deprecated` status before doing this operation.\n   *\n   * @custom:emits ComponentStatusChanged with status inactive.\n   *\n   * @param component The address of component contract. Must be a component added before.\n   */\n  function removeComponent(IPolicyPoolComponent component) external {\n    Component storage comp = _components[component];\n    if (comp.status != ComponentStatus.deprecated) revert ComponentNotDeprecated();\n    if (comp.kind == ComponentKind.eToken) {\n      if (IERC20Metadata(address(component)).totalSupply() != 0)\n        revert ComponentInUseCannotRemove(comp.kind, IERC20Metadata(address(component)).totalSupply());\n    } else if (comp.kind == ComponentKind.riskModule) {\n      if (_exposureByRm[IRiskModule(address(component))].active != 0)\n        revert ComponentInUseCannotRemove(comp.kind, _exposureByRm[IRiskModule(address(component))].active);\n    } else {\n      // (comp.kind == ComponentKind.premiumsAccount)\n      IPremiumsAccount pa = IPremiumsAccount(address(component));\n      if (pa.purePremiums() != 0) revert ComponentInUseCannotRemove(comp.kind, pa.purePremiums());\n      IEToken etk = pa.juniorEtk();\n      if (address(etk) != address(0)) {\n        etk.removeBorrower(address(pa));\n      }\n      etk = pa.seniorEtk();\n      if (address(etk) != address(0)) {\n        etk.removeBorrower(address(pa));\n      }\n    }\n    emit ComponentStatusChanged(component, comp.kind, ComponentStatus.inactive);\n    delete _components[component];\n  }\n\n  /**\n   * @notice Changes the status of a component.\n   *\n   * @custom:emits ComponentStatusChanged with the new status.\n   * @custom:throws InvalidComponentStatus() when newStatus is inactive (use removeComponent() instead)\n   * @param component The address of component contract. Must be a component added before.\n   * @param newStatus The new status, must be either `active`, `deprecated` or `suspended`.\n   */\n  function changeComponentStatus(IPolicyPoolComponent component, ComponentStatus newStatus) external {\n    Component storage comp = _components[component];\n    require(comp.status != ComponentStatus.inactive, ComponentNotFound());\n    require(newStatus != ComponentStatus.inactive, InvalidComponentStatus());\n    comp.status = newStatus;\n    emit ComponentStatusChanged(component, comp.kind, newStatus);\n  }\n\n  /**\n   * @notice Returns the status of a component.\n   *\n   * @param component The address of the component\n   * @return The status of the component. See {ComponentStatus}\n   */\n  function getComponentStatus(IPolicyPoolComponent component) external view returns (ComponentStatus) {\n    return _components[component].status;\n  }\n\n  function _componentStatus(address component, ComponentKind kind) internal view returns (ComponentStatus) {\n    Component storage comp = _components[IPolicyPoolComponent(component)];\n    if (comp.kind != kind) revert ComponentNotTheRightKind(IPolicyPoolComponent(component), kind);\n    return comp.status;\n  }\n\n  function _requireCompActive(address component, ComponentKind kind) internal view {\n    if (_componentStatus(component, kind) != ComponentStatus.active) revert ComponentNotFoundOrNotActive();\n  }\n\n  function _requireCompActiveOrDeprecated(address component, ComponentKind kind) internal view {\n    ComponentStatus status = _componentStatus(component, kind);\n    if (status != ComponentStatus.active && status != ComponentStatus.deprecated)\n      revert ComponentMustBeActiveOrDeprecated();\n  }\n\n  function _deposit(IEToken eToken, uint256 amount, address receiver) internal {\n    require(receiver != address(0), InvalidReceiver(receiver));\n    _requireCompActive(address(eToken), ComponentKind.eToken);\n    _currency.safeTransferFrom(_msgSender(), address(eToken), amount);\n    eToken.deposit(amount, _msgSender(), receiver);\n    emit Deposit(eToken, _msgSender(), receiver, amount);\n  }\n\n  /// @inheritdoc IPolicyPool\n  function deposit(IEToken eToken, uint256 amount, address receiver) external override whenNotPaused {\n    _deposit(eToken, amount, receiver);\n  }\n\n  /// @inheritdoc IPolicyPool\n  function depositWithPermit(\n    IEToken eToken,\n    uint256 amount,\n    address receiver,\n    uint256 deadline,\n    uint8 v,\n    bytes32 r,\n    bytes32 s\n  ) external override whenNotPaused {\n    // solhint-disable-next-line no-empty-blocks\n    try IERC20Permit(address(_currency)).permit(_msgSender(), address(this), amount, deadline, v, r, s) {} catch {}\n    // Check https://github.com/OpenZeppelin/openzeppelin-contracts/blob/1cf13771092c83a060eaef0f8809493fb4c04eb1/contracts/token/ERC20/extensions/IERC20Permit.sol#L16\n    // for explanation of this try/catch pattern\n    _deposit(eToken, amount, receiver);\n  }\n\n  /// @inheritdoc IPolicyPool\n  function withdraw(\n    IEToken eToken,\n    uint256 amount,\n    address receiver,\n    address owner\n  ) external override whenNotPaused returns (uint256 amountWithdrawn) {\n    require(receiver != address(0), InvalidReceiver(receiver));\n    _requireCompActiveOrDeprecated(address(eToken), ComponentKind.eToken);\n    amountWithdrawn = eToken.withdraw(amount, _msgSender(), owner, receiver);\n    emit Withdraw(eToken, _msgSender(), receiver, owner, amountWithdrawn);\n  }\n\n  /// @inheritdoc IPolicyPool\n  function newPolicy(\n    Policy.PolicyData memory policy,\n    address payer,\n    address policyHolder,\n    uint96 internalId\n  ) external override whenNotPaused returns (uint256) {\n    // Checks\n    IRiskModule rm = IRiskModule(_msgSender());\n    _requireCompActive(address(rm), ComponentKind.riskModule);\n    IPremiumsAccount pa = rm.premiumsAccount();\n    _requireCompActive(address(pa), ComponentKind.premiumsAccount);\n\n    // Effects\n    policy.id = Policy.makePolicyId(address(rm), internalId);\n    policy.start = uint40(block.timestamp);\n    require(_policies[policy.id] == bytes32(0), PolicyAlreadyExists(policy.id));\n    _policies[policy.id] = policy.hash();\n    _safeMint(policyHolder, policy.id, \"\");\n    _changeExposure(rm, true, policy.payout);\n\n    // Interactions\n    pa.policyCreated(policy);\n\n    // Distribute the premium\n    _currency.safeTransferFrom(payer, address(pa), policy.purePremium);\n    (IEToken jrEtk, IEToken srEtk) = pa.etks();\n    if (policy.srCoc > 0) _currency.safeTransferFrom(payer, address(srEtk), policy.srCoc);\n    if (policy.jrCoc > 0) _currency.safeTransferFrom(payer, address(jrEtk), policy.jrCoc);\n    _currency.safeTransferFrom(payer, _treasury, policy.ensuroCommission);\n    if (policy.partnerCommission > 0 && payer != rm.wallet())\n      _currency.safeTransferFrom(payer, rm.wallet(), policy.partnerCommission);\n    /**\n     * This code does up to 5 ERC20 transfers. This can be avoided to reduce the gas cost, by implementing delayed\n     * transfers. This might be considered in the future, but to avoid increasing the complexity and since so far we\n     * operate on low gas-cost blockchains, we keep it as it is.\n     */\n\n    emit NewPolicy(rm, policy);\n    return policy.id;\n  }\n\n  /// @inheritdoc IPolicyPool\n  // solhint-disable-next-line function-max-lines\n  function replacePolicy(\n    Policy.PolicyData calldata oldPolicy,\n    Policy.PolicyData memory newPolicy_,\n    address payer,\n    uint96 internalId\n  ) external override whenNotPaused returns (uint256) {\n    // Checks\n    _validatePolicy(oldPolicy);\n    IRiskModule rm = IRiskModule(_msgSender());\n    if (Policy.extractRiskModule(oldPolicy.id) != address(rm)) revert OnlyRiskModuleAllowed();\n    _requireCompActive(address(rm), ComponentKind.riskModule);\n    IPremiumsAccount pa = rm.premiumsAccount();\n    _requireCompActive(address(pa), ComponentKind.premiumsAccount);\n    require(\n      oldPolicy.expiration > uint40(block.timestamp) && newPolicy_.expiration >= uint40(block.timestamp),\n      PolicyAlreadyExpired(oldPolicy.id)\n    );\n    require(\n      oldPolicy.start == newPolicy_.start &&\n        oldPolicy.purePremium <= newPolicy_.purePremium &&\n        oldPolicy.ensuroCommission <= newPolicy_.ensuroCommission &&\n        oldPolicy.jrCoc <= newPolicy_.jrCoc &&\n        oldPolicy.srCoc <= newPolicy_.srCoc &&\n        oldPolicy.partnerCommission <= newPolicy_.partnerCommission,\n      InvalidPolicyReplacement(oldPolicy, newPolicy_)\n    );\n    // payout, jrScr, srScr, expiration can change in any direction\n\n    // Effects\n    newPolicy_.id = Policy.makePolicyId(address(rm), internalId);\n    require(_policies[newPolicy_.id] == bytes32(0), PolicyAlreadyExists(newPolicy_.id));\n    _policies[newPolicy_.id] = newPolicy_.hash();\n    address policyHolder = ownerOf(oldPolicy.id);\n    _safeMint(policyHolder, newPolicy_.id, \"\");\n    if (newPolicy_.payout > oldPolicy.payout) _changeExposure(rm, true, newPolicy_.payout - oldPolicy.payout);\n    else _changeExposure(rm, false, oldPolicy.payout - newPolicy_.payout);\n    delete _policies[oldPolicy.id];\n\n    // Interactions\n    pa.policyReplaced(oldPolicy, newPolicy_);\n\n    // Distribute the premium\n    _transferIfNonZero(payer, address(pa), newPolicy_.purePremium, oldPolicy.purePremium);\n    (IEToken jrEtk, IEToken srEtk) = pa.etks();\n    _transferIfNonZero(payer, address(srEtk), newPolicy_.srCoc, oldPolicy.srCoc);\n    _transferIfNonZero(payer, address(jrEtk), newPolicy_.jrCoc, oldPolicy.jrCoc);\n    _transferIfNonZero(payer, _treasury, newPolicy_.ensuroCommission, oldPolicy.ensuroCommission);\n    address rmWallet = rm.wallet();\n    if (payer != rmWallet)\n      _transferIfNonZero(payer, rmWallet, newPolicy_.partnerCommission, oldPolicy.partnerCommission);\n    /**\n     * This code does up to 5 ERC20 transfers. This can be avoided to reduce the gas cost, by implementing delayed\n     * transfers. This might be considered in the future, but to avoid increasing the complexity and since so far we\n     * operate on low gas-cost blockchains, we keep it as it is.\n     */\n\n    emit NewPolicy(rm, newPolicy_);\n    emit PolicyReplaced(rm, oldPolicy.id, newPolicy_.id);\n    _notifyReplacement(oldPolicy.id, newPolicy_.id);\n    return newPolicy_.id;\n  }\n\n  /// @inheritdoc IPolicyPool\n  function cancelPolicy(\n    Policy.PolicyData calldata policyToCancel,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund\n  ) external override whenNotPaused {\n    // Checks\n    _validatePolicy(policyToCancel);\n    IRiskModule rm = IRiskModule(_msgSender());\n    if (Policy.extractRiskModule(policyToCancel.id) != address(rm)) revert OnlyRiskModuleAllowed();\n    _requireCompActiveOrDeprecated(address(rm), ComponentKind.riskModule);\n    IPremiumsAccount pa = rm.premiumsAccount();\n    _requireCompActiveOrDeprecated(address(pa), ComponentKind.premiumsAccount);\n    require(policyToCancel.expiration > uint40(block.timestamp), PolicyAlreadyExpired(policyToCancel.id));\n    require(\n      purePremiumRefund <= policyToCancel.purePremium &&\n        jrCocRefund <= policyToCancel.jrCoc &&\n        srCocRefund <= policyToCancel.srCoc,\n      InvalidPolicyCancellation(policyToCancel, purePremiumRefund, jrCocRefund, srCocRefund)\n    );\n\n    // Effects\n    address policyHolder = ownerOf(policyToCancel.id);\n    _changeExposure(rm, false, policyToCancel.payout);\n    delete _policies[policyToCancel.id];\n\n    // Interactions\n    pa.policyCancelled(policyToCancel, purePremiumRefund, jrCocRefund, srCocRefund, policyHolder);\n\n    emit PolicyCancelled(rm, policyToCancel.id, purePremiumRefund, jrCocRefund, srCocRefund);\n    _notifyCancellation(policyToCancel.id, purePremiumRefund, jrCocRefund, srCocRefund);\n  }\n\n  function _transferIfNonZero(address payer, address target, uint256 new_, uint256 old_) internal {\n    uint256 aux = new_ - old_;\n    if (aux != 0) {\n      _currency.safeTransferFrom(payer, target, aux);\n    }\n  }\n\n  function _validatePolicy(Policy.PolicyData memory policy) internal view {\n    require(policy.id != 0 && policy.hash() == _policies[policy.id], PolicyNotFound(policy.id));\n  }\n\n  /// @inheritdoc IPolicyPool\n  function expirePolicy(Policy.PolicyData calldata policy) external override whenNotPaused {\n    if (policy.expiration > block.timestamp) revert PolicyNotExpired(policy.id, policy.expiration, block.timestamp);\n    return _resolvePolicy(policy, 0, true);\n  }\n\n  /// @inheritdoc IPolicyPool\n  function resolvePolicy(Policy.PolicyData calldata policy, uint256 payout) external override whenNotPaused {\n    return _resolvePolicy(policy, payout, false);\n  }\n\n  /// @inheritdoc IPolicyPool\n  function isActive(uint256 policyId) external view override returns (bool) {\n    return _policies[policyId] != bytes32(0);\n  }\n\n  /// @inheritdoc IPolicyPool\n  function getPolicyHash(uint256 policyId) external view override returns (bytes32) {\n    return _policies[policyId];\n  }\n\n  /**\n   * @notice Internal function that handles the different alternative resolutions for a policy.\n   * @dev Alternatives: with or without payout and expiration.\n   *\n   * @custom:emits PolicyResolved with the payout amount\n   *\n   * @param policy A policy created with {Policy-initialize}\n   * @param payout The amount to paid to the policyholder\n   * @param expired True for expiration resolution (`payout` must be 0)\n   */\n  function _resolvePolicy(Policy.PolicyData memory policy, uint256 payout, bool expired) internal {\n    // Checks\n    _validatePolicy(policy);\n    IRiskModule rm = IRiskModule(Policy.extractRiskModule(policy.id));\n    if (!expired && address(rm) != _msgSender()) revert OnlyRiskModuleAllowed();\n    require(payout == 0 || policy.expiration > block.timestamp, PolicyAlreadyExpired(policy.id));\n    _requireCompActiveOrDeprecated(address(rm), ComponentKind.riskModule);\n\n    require(payout <= policy.payout, PayoutExceedsLimit(payout, policy.payout));\n\n    bool customerWon = payout > 0;\n\n    IPremiumsAccount pa = rm.premiumsAccount();\n    _requireCompActiveOrDeprecated(address(pa), ComponentKind.premiumsAccount);\n    // Effects\n    delete _policies[policy.id];\n    // Interactions\n    if (customerWon) {\n      address policyOwner = ownerOf(policy.id);\n      pa.policyResolvedWithPayout(policyOwner, policy, payout);\n    } else {\n      pa.policyExpired(policy);\n    }\n\n    _changeExposure(rm, false, policy.payout);\n\n    emit PolicyResolved(rm, policy.id, payout);\n    if (payout > 0) {\n      _notifyPayout(policy.id, payout);\n    } else {\n      _notifyExpiration(policy.id);\n    }\n  }\n\n  function _changeExposure(IRiskModule rm, bool increase, uint256 change) internal {\n    Exposure storage exposure = _exposureByRm[rm];\n    if (increase) {\n      exposure.active += change.toUint128();\n      require(exposure.active <= exposure.limit, ExposureLimitExceeded(exposure.active, exposure.limit));\n    } else {\n      exposure.active -= change.toUint128();\n    }\n  }\n\n  /**\n   * @notice  Changes the maximum cumulative loss limit (exposure limit) for a given risk module\n   * @dev     This function allows updating the exposure limit for a risk module.\n   *          The new limit must be greater than or equal to the current active exposure.\n   *\n   * @param   rm  The risk module interface for which to update the exposure limit\n   * @param   newLimit  The new exposure limit to set (will be converted to uint128)\n   * @custom:throws ExposureLimitExceeded if the new limit is less than the current active exposure\n   * @custom:emits  ExposureLimitChanged with parameters: (risk module, old limit, new limit)\n   */\n  function setExposureLimit(IRiskModule rm, uint256 newLimit) external {\n    Exposure storage exposure = _exposureByRm[rm];\n    uint128 newLimit128 = newLimit.toUint128();\n    require(exposure.active <= newLimit128, ExposureLimitExceeded(exposure.active, newLimit128));\n    emit ExposureLimitChanged(rm, exposure.limit, newLimit128);\n    exposure.limit = newLimit128;\n  }\n\n  /**\n   * @notice  Retrieves the current exposure data for a specific risk module\n   * @dev     Returns both the active exposure (current cumulative losses)\n   * and the configured exposure limit for the given risk module.\n   *\n   * @param   rm  The risk module interface to query exposure data for\n   * @return  active  The current active exposure (cumulative losses) for the risk module\n   * @return  limit   The configured maximum exposure limit for the risk module\n   */\n  function getExposure(IRiskModule rm) external view returns (uint256 active, uint256 limit) {\n    Exposure storage exposure = _exposureByRm[rm];\n    active = exposure.active;\n    limit = exposure.limit;\n  }\n\n  /**\n   * @notice Notifies the payout with a callback\n   * @dev Only if the policyholder implements the IPolicyHolder interface.\n   * Reverts if the policyholder contract explicitly reverts or it doesn't return the\n   * IPolicyHolder.onPayoutReceived selector.\n   */\n  function _notifyPayout(uint256 policyId, uint256 payout) internal {\n    address customer = ownerOf(policyId);\n    if (!ERC165Checker.supportsInterface(customer, type(IPolicyHolder).interfaceId)) return;\n\n    bytes4 retval = IPolicyHolder(customer).onPayoutReceived(_msgSender(), address(this), policyId, payout);\n    if (retval != IPolicyHolder.onPayoutReceived.selector) revert InvalidNotificationResponse(retval);\n  }\n\n  /**\n   * @notice Notifies the expiration with a callback\n   * @dev Only if the policyholder implements the IPolicyHolder interface. Never reverts. The onPolicyExpired has\n   * a gas limit = HOLDER_GAS_LIMIT\n   */\n  function _notifyExpiration(uint256 policyId) internal {\n    address customer = ownerOf(policyId);\n    if (!ERC165Checker.supportsInterface(customer, type(IPolicyHolder).interfaceId)) return;\n\n    try IPolicyHolder(customer).onPolicyExpired{gas: HOLDER_GAS_LIMIT}(_msgSender(), address(this), policyId) returns (\n      bytes4\n    ) {\n      return;\n    } catch {\n      emit ExpirationNotificationFailed(policyId, IPolicyHolder(customer));\n      return;\n    }\n  }\n\n  /**\n   * @notice Notifies the replacement with a callback\n   * @dev Only if the policyholder implements the IPolicyHolder interface.\n   * Reverts if the policyholder contract explicitly reverts or it doesn't return the\n   * IPolicyHolder.onPolicyReplaced selector.\n   */\n  function _notifyReplacement(uint256 oldPolicyId, uint256 newPolicyId) internal {\n    address customer = ownerOf(oldPolicyId);\n    if (!ERC165Checker.supportsInterface(customer, type(IPolicyHolder).interfaceId)) return;\n\n    bytes4 retval = IPolicyHolder(customer).onPolicyReplaced(_msgSender(), address(this), oldPolicyId, newPolicyId);\n    // PolicyHolder can revert and cancel the policy replacement\n    if (retval != IPolicyHolder.onPolicyReplaced.selector) revert InvalidNotificationResponse(retval);\n  }\n\n  /**\n   * @notice Notifies the cancellation with a callback\n   * @dev Only if the policyholder implements the IPolicyHolder interface.\n   * Reverts if the policyholder contract explicitly reverts or it doesn't return the\n   * IPolicyHolder.onPolicyCancelled selector.\n   */\n  function _notifyCancellation(\n    uint256 cancelledPolicyId,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund\n  ) internal {\n    address customer = ownerOf(cancelledPolicyId);\n    if (!ERC165Checker.supportsInterface(customer, type(IPolicyHolder).interfaceId)) return;\n\n    bytes4 retval = IPolicyHolder(customer).onPolicyCancelled(\n      _msgSender(),\n      address(this),\n      cancelledPolicyId,\n      purePremiumRefund,\n      jrCocRefund,\n      srCocRefund\n    );\n    // PolicyHolder can revert and cancel the policy cancellation\n    if (retval != IPolicyHolder.onPolicyCancelled.selector) revert InvalidNotificationResponse(retval);\n  }\n\n  /**\n   * @notice Base URI for computing {tokenURI}.\n   * @dev If set, the resulting URI for each token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n   * by default, can be modified calling {setBaseURI}.\n   */\n  function _baseURI() internal view virtual override returns (string memory) {\n    return _nftBaseURI;\n  }\n\n  /**\n   * @notice Changes the baseURI of the minted policy NFTs\n   *\n   * @custom:emits BaseURIChanged With the new and old URIs\n   */\n  function setBaseURI(string calldata nftBaseURI_) external {\n    emit BaseURIChanged(_nftBaseURI, nftBaseURI_);\n    _nftBaseURI = nftBaseURI_;\n  }\n\n  function _update(address to, uint256 tokenId, address auth) internal override whenNotPaused returns (address) {\n    return super._update(to, tokenId, auth);\n  }\n\n  /**\n   * @dev This empty reserved space is put in place to allow future versions to add new\n   * variables without shifting down storage in the inheritance chain.\n   * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n   */\n  uint256[45] private __gap;\n}\n"},"contracts/PolicyPoolComponent.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {UUPSUpgradeable} from \"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {IERC165} from \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\nimport {IPolicyPool} from \"./interfaces/IPolicyPool.sol\";\nimport {IPolicyPoolComponent} from \"./interfaces/IPolicyPoolComponent.sol\";\n\n/**\n * @title Base class for PolicyPool components\n * @dev This is the base class of all the components of the protocol that are linked to the PolicyPool and created\n *      after it.\n *      Holds the reference to _policyPool as immutable, also provides access to common admin roles:\n *\n *      This contract also keeps track of the tweaks to avoid two tweaks of the same type are done in a short period.\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\nabstract contract PolicyPoolComponent is Initializable, UUPSUpgradeable, IPolicyPoolComponent {\n  /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n  IPolicyPool internal immutable _policyPool;\n\n  error NoZeroPolicyPool();\n  error UpgradeCannotChangePolicyPool();\n  error OnlyPolicyPool();\n\n  modifier onlyPolicyPool() {\n    require(msg.sender == address(_policyPool), OnlyPolicyPool());\n    _;\n  }\n\n  /// @custom:oz-upgrades-unsafe-allow constructor\n  constructor(IPolicyPool policyPool_) {\n    if (address(policyPool_) == address(0)) revert NoZeroPolicyPool();\n    _disableInitializers();\n    _policyPool = policyPool_;\n  }\n\n  // solhint-disable-next-line func-name-mixedcase, no-empty-blocks\n  function __PolicyPoolComponent_init() internal onlyInitializing {}\n\n  function _authorizeUpgrade(address newImpl) internal view override {\n    _upgradeValidations(newImpl);\n  }\n\n  function _upgradeValidations(address newImpl) internal view virtual {\n    if (IPolicyPoolComponent(newImpl).policyPool() != _policyPool) revert UpgradeCannotChangePolicyPool();\n  }\n\n  /**\n   * @dev See {IERC165-supportsInterface}.\n   */\n  function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n    return interfaceId == type(IERC165).interfaceId || interfaceId == type(IPolicyPoolComponent).interfaceId;\n  }\n\n  function policyPool() public view override returns (IPolicyPool) {\n    return _policyPool;\n  }\n\n  function currency() public view returns (IERC20Metadata) {\n    return _policyPool.currency();\n  }\n\n  /**\n   * @dev This empty reserved space is put in place to allow future versions to add new\n   * variables without shifting down storage in the inheritance chain.\n   * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n   */\n  uint256[50] private __gap;\n}\n"},"contracts/PremiumsAccount.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {Math} from \"@openzeppelin/contracts/utils/math/Math.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {IERC4626} from \"@openzeppelin/contracts/interfaces/IERC4626.sol\";\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport {SafeCast} from \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport {IPolicyPool} from \"./interfaces/IPolicyPool.sol\";\nimport {IEToken} from \"./interfaces/IEToken.sol\";\nimport {Reserve} from \"./Reserve.sol\";\nimport {IPremiumsAccount} from \"./interfaces/IPremiumsAccount.sol\";\nimport {Policy} from \"./Policy.sol\";\n\n/**\n * @title Ensuro Premiums Account\n * @notice This contract holds the pure premiums of a set of risk modules.\n * @dev Pure premiums is the part of the premium that is expected to cover the losses. The contract keeps track of the pure premiums of the active policies\n * (_activePurePremiums) and the surplus or deficit generated by the finalized policies (pure premiums collected -\n * losses).\n *\n * Collaborates with a junior {EToken} and a senior {EToken} that act as lenders when the premiums aren't enough to\n * cover the losses.\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract PremiumsAccount is IPremiumsAccount, Reserve {\n  using Policy for Policy.PolicyData;\n  using Math for uint256;\n  using SafeERC20 for IERC20Metadata;\n  using SafeCast for uint256;\n\n  uint256 internal constant WAD = 1e18;\n  uint256 internal constant FOUR_DECIMAL_TO_WAD = 1e14;\n  uint16 internal constant HUNDRED_PERCENT = 1e4;\n\n  /**\n   * @dev The Junior eToken is the first {EToken} to which the PremiumsAccount will go for credit when it runs out of\n   * money. Optional (address(0)).\n   */\n  /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n  IEToken internal immutable _juniorEtk;\n\n  /**\n   * @dev The Senior eToken is the second {EToken} to which the PremiumsAccount will go for credit, after trying before\n   * with the junior eToken, when it runs out of money. Optional (address(0)).\n   */\n  /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n  IEToken internal immutable _seniorEtk;\n\n  /**\n   * @dev The active pure premiums field keeps track of the pure premiums collected by the active policies of risk\n   * modules linked with this PremiumsAccount.\n   */\n  uint256 internal _activePurePremiums; // sum of pure-premiums of active policies - In Wad\n\n  /**\n   * @dev The surplus field keeps track of the surplus or deficit (when negative) of the actual payouts made by the\n   * PremiumsAccount versus the collected pure premiums. On the negative side, it has a limit defined by `_maxDeficit()`,\n   * after that limit, internal loans are taken from the eTokens.\n   */\n  int256 internal _surplus;\n\n  /**\n   * @notice This struct has the parameters that can be modified by governance\n   * @member deficitRatio A value between [0, 1] that defines the percentage of active pure premiums that can be used\n   *                      to cover losses.\n   * @member yieldVault   This is the implementation contract that manages the PremiumsAccount's funds. See\n   *                      {yieldVault()}\n   * @member jrLoanLimit  This is the maximum amount that can be borrowed from the Junior eToken (without decimals)\n   * @member srLoanLimit  This is the maximum amount that can be borrowed from the Senior eToken (without decimals)\n   */\n  struct PackedParams {\n    IERC4626 yieldVault;\n    uint32 jrLoanLimit;\n    uint32 srLoanLimit;\n    uint16 deficitRatio;\n  }\n\n  PackedParams internal _params;\n\n  /**\n   * @notice Thrown when yield-vault losses would push the account below its maximum allowed deficit.\n   * @dev `excess` is the remaining unpaid amount returned by `_payFromPremiums(losses)` after clamping to `_maxDeficit()`.\n   * @param losses The total losses being applied\n   * @param excess The unpaid portion that exceeds the max-deficit capacity\n   */\n  error LossesCannotExceedMaxDeficit(uint256 losses, uint256 excess);\n  /**\n   * @notice Thrown during upgrade validation if the configured eToken addresses change unexpectedly.\n   * @dev Upgrades must keep the same junior/senior eToken wiring (unless the current eToken is zero-address).\n   * @param oldEToken The currently configured eToken\n   * @param newEToken The eToken reported by the new implementation\n   */\n  error InvalidUpgradeETokenChanged(IEToken oldEToken, IEToken newEToken);\n  /**\n   * @notice Thrown when a new deficit ratio is invalid (out of range or not representable with 4 decimals).\n   * @param newDeficitRatio The proposed ratio (wad)\n   */\n  error InvalidDeficitRatio(uint256 newDeficitRatio);\n  /**\n   * @notice Thrown when attempting to set a deficit ratio without adjustment while the current deficit exceeds the new\n   * maximum allowed deficit.\n   * @param currentDeficit Current deficit (positive value, i.e., `-surplus`)\n   * @param newMaxDeficit New maximum deficit (positive value, i.e., `-maxDeficit`)\n   */\n  error DeficitExceedsMaxDeficit(int256 currentDeficit, int256 newMaxDeficit);\n  /**\n   * @notice Thrown when the required funds cannot be fully borrowed from the configured eTokens within their limits.\n   * @param amountLeft The remaining amount that could not be borrowed\n   */\n  error CannotBeBorrowed(uint256 amountLeft);\n  /**\n   * @notice Thrown when a loan limit cannot be represented with 0 decimals when packing/unpacking.\n   * @param loanLimit The provided limit value\n   */\n  error InvalidLoanLimit(uint256 loanLimit);\n  /**\n   * @notice Thrown when the destination address is invalid.\n   * @param destination The provided destination address\n   */\n  error InvalidDestination(address destination);\n  /**\n   * @notice Thrown when attempting to withdraw more than the current surplus (when `amount != type(uint256).max`).\n   * @param amountRequired The requested amount to withdraw\n   * @param surplus The current surplus (can be negative)\n   */\n  error WithdrawExceedsSurplus(uint256 amountRequired, int256 surplus);\n\n  /**\n   * @notice Emitted when \"won premiums\" move in or out of the PremiumsAccount.\n   * @dev Emitted by `receiveGrant` when funds are received without liability, and by `withdrawWonPremiums` when\n   * surplus is withdrawn (typically to the treasury).\n   *\n   * @param moneyIn Indicates if money came in or out (false).\n   * @param value The amount of money received or given\n   */\n  event WonPremiumsInOut(bool moneyIn, uint256 value);\n\n  /**\n   * @notice Emitted when the deficitRatio is changed\n   *\n   * @param oldRatio Ratio before the change\n   * @param newRatio Ratio after the change\n   * @param adjustment Adjustement (etk loan) made to adjust the contract, so deficit <= maxDeficit\n   */\n  event DeficitRatioChanged(uint256 oldRatio, uint256 newRatio, uint256 adjustment);\n\n  /**\n   * @notice Emitted when the loan limits are changed\n   *\n   * @param oldLimit Limit before the change\n   * @param newLimit Limit after the change\n   * @param isSenior If true, the limit changed is the senior limit, otherwise is the junior limit\n   */\n  event LoanLimitChanged(uint256 oldLimit, uint256 newLimit, bool isSenior);\n\n  /**\n   * @dev Constructor of the contract, sets the immutable fields.\n   *\n   * @param juniorEtk_ Address of the Junior EToken (first loss lender). `address(0)` if not present.\n   * @param seniorEtk_ Address of the Senior EToken (2nd loss lender). `address(0)` if not present.\n   */\n  /// @custom:oz-upgrades-unsafe-allow constructor\n  constructor(IPolicyPool policyPool_, IEToken juniorEtk_, IEToken seniorEtk_) Reserve(policyPool_) {\n    _juniorEtk = juniorEtk_;\n    _seniorEtk = seniorEtk_;\n  }\n\n  /**\n   * @dev Initializes the PremiumsAccount\n   */\n  function initialize() public initializer {\n    __PremiumsAccount_init();\n  }\n\n  /**\n   * @dev Initializes the PremiumsAccount (to be called by subclasses)\n   */\n  // solhint-disable-next-line func-name-mixedcase\n  function __PremiumsAccount_init() internal onlyInitializing {\n    __Reserve_init();\n    __PremiumsAccount_init_unchained();\n  }\n\n  // solhint-disable-next-line func-name-mixedcase\n  function __PremiumsAccount_init_unchained() internal onlyInitializing {\n    /*\n    _activePurePremiums = 0;\n    */\n    _params = PackedParams({\n      deficitRatio: HUNDRED_PERCENT,\n      yieldVault: IERC4626(address(0)),\n      jrLoanLimit: 0,\n      srLoanLimit: 0\n    });\n  }\n\n  function _upgradeValidations(address newImpl) internal view virtual override {\n    super._upgradeValidations(newImpl);\n    IPremiumsAccount newPA = IPremiumsAccount(newImpl);\n    (IEToken newJr, IEToken newSr) = newPA.etks();\n    require(newJr == _juniorEtk || address(_juniorEtk) == address(0), InvalidUpgradeETokenChanged(_juniorEtk, newJr));\n    require(newSr == _seniorEtk || address(_seniorEtk) == address(0), InvalidUpgradeETokenChanged(_seniorEtk, newSr));\n  }\n\n  /**\n   * @dev See {IERC165-supportsInterface}.\n   */\n  function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n    return super.supportsInterface(interfaceId) || interfaceId == type(IPremiumsAccount).interfaceId;\n  }\n\n  /// @inheritdoc Reserve\n  function yieldVault() public view override returns (IERC4626) {\n    return _params.yieldVault;\n  }\n\n  /// @inheritdoc Reserve\n  function _setYieldVault(IERC4626 newYV) internal override {\n    _params.yieldVault = newYV;\n  }\n\n  /**\n   * @dev This is called by the {Reserve} base class to record the earnings generated by the asset management.\n   *\n   * @param earningsOrLosses Indicates the amount earned since last time earnings where recorded.\n   * - If positive, accumulates the amount in the surplus.\n   * - If negative (losses) substracts it from surplus. It never can exceed _maxDeficit and doesn't takes\n   *   loans to cover asset losses.\n   */\n  function _yieldEarnings(int256 earningsOrLosses) internal override {\n    if (earningsOrLosses >= 0) {\n      _storePurePremiumWon(uint256(earningsOrLosses));\n    } else {\n      uint256 excess = _payFromPremiums(-earningsOrLosses);\n      require(excess == 0, LossesCannotExceedMaxDeficit(uint256(-earningsOrLosses), excess));\n    }\n    super._yieldEarnings(earningsOrLosses);\n  }\n\n  function purePremiums() external view override returns (uint256) {\n    return uint256(int256(_activePurePremiums) + _surplus);\n  }\n\n  /**\n   * @dev Returns the total amount of pure premiums that were collected by the active policies of the risk modules\n   * linked to this PremiumsAccount.\n   */\n  function activePurePremiums() external view returns (uint256) {\n    return _activePurePremiums;\n  }\n\n  /**\n   * @dev Returns the surplus between pure premiums collected and payouts of finalized policies. Returns 0 if no surplus\n   * or deficit.\n   */\n  function wonPurePremiums() external view returns (uint256) {\n    return _surplus >= 0 ? uint256(_surplus) : 0;\n  }\n\n  /**\n   * @dev Returns the amount of active pure premiums that was used to cover payouts of finalized policies (in excess of\n   * collected pure premiums). This is limited by `_maxDeficit()`\n   */\n  function borrowedActivePP() external view returns (uint256) {\n    return _surplus >= 0 ? 0 : uint256(-_surplus);\n  }\n\n  /**\n   * @dev Returns the surplus between pure premiums collected and payouts of finalized policies. Losses where more than\n   * premiums collected, returns a negative number that indicates the amount of the active pure premiums that was used\n   * to cover finalized premiums.\n   */\n  function surplus() external view returns (int256) {\n    return _surplus;\n  }\n\n  /**\n   * @dev Returns the amount of funds available to cover losses or repay eToken loans.\n   */\n  function fundsAvailable() public view returns (uint256) {\n    // This is guaranteed to be positive because _maxDeficit is negative and always gte _surplus in absolute value\n    return uint256(_surplus - _maxDeficit(deficitRatio()));\n  }\n\n  function seniorEtk() external view override returns (IEToken) {\n    return _seniorEtk;\n  }\n\n  function juniorEtk() external view override returns (IEToken) {\n    return _juniorEtk;\n  }\n\n  function etks() external view override returns (IEToken, IEToken) {\n    return (_juniorEtk, _seniorEtk);\n  }\n\n  /**\n   * @dev Returns the maximum deficit that's supported by the PremiumsAccount. If more money is needed, it must take\n   * loans from the eTokens. The value is calculated as a fraction of the active pure premiums. The fraction is\n   * regulated by the `deficitRatio` parameter that indicates the percentage of the active pure premiums that can be\n   * used to cover payouts of finalized policies. In many cases is fine to use the active pure premiums to cover the\n   * losses because in most cases the policies with payout are triggered long time before the policies without payout.\n   * But this also can be dangerous because it can be postponing the losses that should impact on liquidity providers.\n   *\n   * @param ratio The ratio used in the calculation of the deficit. It's the deficitRatio parameter (whether the current\n   * one or the new one when it's being modified).\n   */\n  function _maxDeficit(uint256 ratio) internal view returns (int256) {\n    return -int256(_activePurePremiums.mulDiv(ratio, WAD));\n  }\n\n  function _toAmount(uint32 value) internal view returns (uint256) {\n    // 0 decimals to amount decimals\n    return uint256(value) * 10 ** currency().decimals();\n  }\n\n  function _toZeroDecimals(uint256 amount) internal view returns (uint32) {\n    // Removes the decimals from the amount\n    return (amount / 10 ** currency().decimals()).toUint32();\n  }\n\n  /**\n   * @dev Returns the percentage of the active pure premiums that can be used to cover losses of finalized policies.\n   */\n  function deficitRatio() public view returns (uint256) {\n    return uint256(_params.deficitRatio) * FOUR_DECIMAL_TO_WAD; // 4 -> 18 decimals\n  }\n\n  /**\n   * @dev Returns the limit on the Junior eToken loans (infinite if _params.jrLoanLimit == 0)\n   */\n  function jrLoanLimit() public view returns (uint256) {\n    return _params.jrLoanLimit == 0 ? type(uint256).max : _toAmount(_params.jrLoanLimit);\n  }\n\n  /**\n   * @dev Returns the limit on the Senior eToken loans (infinite if _params.srLoanLimit == 0)\n   */\n  function srLoanLimit() public view returns (uint256) {\n    return _params.srLoanLimit == 0 ? type(uint256).max : _toAmount(_params.srLoanLimit);\n  }\n\n  /**\n   * @notice Changes the `deficitRatio` parameter.\n   *\n   * @param newRatio New deficit ratio (wad). Must be `<= WAD` and exactly representable with 4 decimals\n   *                 (multiple of `FOUR_DECIMAL_TO_WAD`).\n   * @param adjustment If true, allows borrowing from eTokens to satisfy the new max-deficit bound when needed.\n   *\n   * @custom:pre `newRatio <= WAD`\n   * @custom:pre `newRatio` must be exactly representable with 4 decimals:\n   *             `uint256(uint16(newRatio / FOUR_DECIMAL_TO_WAD)) * FOUR_DECIMAL_TO_WAD == newRatio`\n   * @custom:pre If `adjustment == false`, then `_surplus >= _maxDeficit(newRatio)`\n   *\n   * @custom:throws {InvalidDeficitRatio} if `newRatio` is out of range or not representable with 4 decimals\n   * @custom:throws {DeficitExceedsMaxDeficit} if `adjustment == false` and `_surplus < _maxDeficit(newRatio)`\n   *\n   * @custom:emits {DeficitRatioChanged}\n   */\n  function setDeficitRatio(uint256 newRatio, bool adjustment) external {\n    uint16 truncatedRatio = (newRatio / FOUR_DECIMAL_TO_WAD).toUint16();\n    require(\n      newRatio <= WAD && uint256(truncatedRatio) * FOUR_DECIMAL_TO_WAD == newRatio,\n      InvalidDeficitRatio(newRatio)\n    );\n\n    int256 maxDeficit = _maxDeficit(newRatio);\n    if (!adjustment && _surplus < maxDeficit) revert DeficitExceedsMaxDeficit(-_surplus, -maxDeficit);\n\n    uint256 borrow;\n    if (_surplus < maxDeficit) {\n      // Do the adjustment\n      borrow = uint256(-_surplus + maxDeficit);\n      _surplus = maxDeficit;\n      _borrowFromEtk(borrow, address(this), address(_juniorEtk) != address(0));\n    }\n    emit DeficitRatioChanged(_params.deficitRatio * FOUR_DECIMAL_TO_WAD, newRatio, borrow);\n    _params.deficitRatio = truncatedRatio;\n  }\n\n  /**\n   * @notice Changes the `jrLoanLimit` or `srLoanLimit` parameter.\n   *\n   * @param newLimitJr The new limit to be set for the loans taken from the Junior eToken.\n   *                   If newLimitJr == MAX_UINT, it's ignored. If == 0, means the loans are unbounded.\n   * @param newLimitSr The new limit to be set for the loans taken from the Senior eToken.\n   *                   If newLimitSr == MAX_UINT, it's ignored. If == 0, means the loans are unbounded.\n   *\n   * @custom:pre For each limit `newLimit` that is updated (`newLimit != type(uint256).max`), it must be representable with 0 decimals:\n   *             `_toAmount(_toZeroDecimals(newLimit)) == newLimit`\n   *\n   * @custom:throws {InvalidLoanLimit} if any provided limit cannot be packed/unpacked without losing precision\n   *\n   * @custom:emits {LoanLimitChanged} once per updated limit (up to two emits)\n   */\n  function setLoanLimits(uint256 newLimitJr, uint256 newLimitSr) external {\n    if (newLimitJr != type(uint256).max) {\n      emit LoanLimitChanged(jrLoanLimit(), newLimitJr, false);\n      _params.jrLoanLimit = _toZeroDecimals(newLimitJr);\n      require(_toAmount(_params.jrLoanLimit) == newLimitJr, InvalidLoanLimit(newLimitJr));\n    }\n    if (newLimitSr != type(uint256).max) {\n      emit LoanLimitChanged(srLoanLimit(), newLimitSr, true);\n      _params.srLoanLimit = _toZeroDecimals(newLimitSr);\n      require(_toAmount(_params.srLoanLimit) == newLimitSr, InvalidLoanLimit(newLimitSr));\n    }\n  }\n\n  /**\n   * @dev Internal function called when money in the PremiumsAccount is not enough and we need to borrow from the\n   * eTokens.\n   *\n   * @param borrow The amount to borrow.\n   * @param receiver The address that will receive the money of the loan. Usually is the policy holder if this is called\n   *                 in the context of a policy payout.\n   * @param jrEtk If true it indicates that the loan is asked first from the junior eToken.\n   */\n  function _borrowFromEtk(uint256 borrow, address receiver, bool jrEtk) internal {\n    uint256 left = borrow;\n    if (jrEtk) {\n      uint256 jrLoan = _juniorEtk.getLoan(address(this));\n      if (jrLoan + borrow <= jrLoanLimit()) {\n        left = _juniorEtk.internalLoan(borrow, receiver);\n      } else if (jrLoan < jrLoanLimit()) {\n        // Partial loan\n        uint256 loanExcess = jrLoan + borrow - jrLoanLimit();\n        left = loanExcess + _juniorEtk.internalLoan(borrow - loanExcess, receiver);\n      }\n    }\n    if (left != 0) {\n      // if _seniorEtk == address(0) it will revert without message, instead of CannotBeBorrowed\n      if (_seniorEtk.getLoan(address(this)) + left <= srLoanLimit()) {\n        left = _seniorEtk.internalLoan(left, receiver);\n      } // in the senior eToken doesn't make sense to handle partial loan\n      require(left == 0, CannotBeBorrowed(left));\n    }\n  }\n\n  /**\n   * @dev Updates the `_surplus` field with the payment made. Since the _surplus can never exceed `_maxDeficit()`,\n   * returns the remaining amount in case something can't be paid from the PremiumsAccount.\n   *\n   * @param toPay The amount to pay.\n   * @return The amount that couldn't be paid from the premiums account.\n   */\n  function _payFromPremiums(int256 toPay) internal returns (uint256) {\n    int256 newSurplus = _surplus - toPay;\n    int256 maxDeficit = _maxDeficit(deficitRatio());\n    if (newSurplus >= maxDeficit) {\n      _surplus = newSurplus;\n      return 0;\n    }\n    _surplus = maxDeficit;\n    return uint256(-newSurplus + maxDeficit);\n  }\n\n  /**\n   * @dev Stores an earned pure premium. Adds to the surplus, increasing the surplus if it was positive or reducing the\n   * deficit if it was negative.\n   *\n   * @param purePremiumWon The amount earned\n   */\n  function _storePurePremiumWon(uint256 purePremiumWon) internal {\n    _surplus += int256(purePremiumWon);\n  }\n\n  /**\n   * @notice Endpoint to receive \"free money\" and inject that money into the premium pool.\n   * @dev Can be used for example if the PolicyPool subscribes an excess loss policy with other company.\n   *\n   * @param amount The amount to be transferred.\n   *\n   * @custom:pre `msg.sender` approved `currency()` to this contract for at least `amount`\n   *\n   * @custom:emits {WonPremiumsInOut} with `moneyIn = true`\n   */\n  function receiveGrant(uint256 amount) external {\n    _storePurePremiumWon(amount);\n    currency().safeTransferFrom(msg.sender, address(this), amount);\n    emit WonPremiumsInOut(true, amount);\n  }\n\n  /**\n   * @notice Withdraws excess premiums (surplus) to the destination.\n   * @dev This might be needed in some cases for example if we are deprecating the protocol or the excess premiums\n   * are needed to compensate something. Or to extract profits accrued either by Ensuro or the partners.\n   *\n   * @param amount The amount to withdraw. If amount == type(uint256).max it withdraws as much as possible and doesn't\n   *               fails. If amount != type(uint256).max it tries to withdraw that amount or it fails\n   * @param destination The address that will receive the transferred funds.\n   * @return Returns the actual amount withdrawn.\n   *\n   * @custom:pre `destination != address(0)`\n   * @custom:pre If `amount != type(uint256).max`, then `int256(amount) <= _surplus`\n   *\n   * @custom:throws {InvalidDestination} if `destination == address(0)`\n   * @custom:throws {WithdrawExceedsSurplus} if `amount != type(uint256).max` and `int256(amount) > _surplus`\n   *\n   * @custom:emits {WonPremiumsInOut} with `moneyIn = false`\n   */\n  function withdrawWonPremiums(uint256 amount, address destination) external returns (uint256) {\n    require(destination != address(0), InvalidDestination(destination));\n    if (address(yieldVault()) != address(0)) recordEarnings();\n    if (amount == type(uint256).max) {\n      if (_surplus <= 0) return 0;\n      amount = uint256(_surplus);\n    } else {\n      require(int256(amount) <= _surplus, WithdrawExceedsSurplus(amount, _surplus));\n    }\n    _surplus -= int256(amount);\n    _transferTo(destination, amount);\n    emit WonPremiumsInOut(false, amount);\n    return amount;\n  }\n\n  /// @inheritdoc IPremiumsAccount\n  function policyCreated(Policy.PolicyData calldata policy) external override onlyPolicyPool {\n    _activePurePremiums += policy.purePremium;\n    if (policy.jrScr > 0) _juniorEtk.lockScr(policy.id, policy.jrScr, policy.jrInterestRate());\n    if (policy.srScr > 0) _seniorEtk.lockScr(policy.id, policy.srScr, policy.srInterestRate());\n  }\n\n  /// @inheritdoc IPremiumsAccount\n  function policyReplaced(\n    Policy.PolicyData calldata oldPolicy,\n    Policy.PolicyData calldata newPolicy\n  ) external override onlyPolicyPool {\n    /**\n     * Assumptions:\n     * 1. newPolicy.purePremium >= oldPolicy.purePremium (validated by PolicyPool)\n     * 2. jrCoc != 0 ==> jrScr != 0 ^ srCoc != 0 ==> srScr != 0 (guaranteed by Policy.sol)\n     * 3. newPolicy.jrCoc >= oldPolicy.jrCoc (validated by PolicyPool)\n     * 4. newPolicy.srCoc >= oldPolicy.srCoc (validated by PolicyPool)\n     * 5. Then sr/jrInterestRate() never fails\n     */\n    _activePurePremiums += newPolicy.purePremium - oldPolicy.purePremium;\n\n    /**\n     * Applies an adjustment based on the difference between the accrued interest with the old policy and the new\n     * policy.\n     * The CoC is disbursed linearly from policy start (the same for old and new policy) and policy.expiration (might\n     * be different).\n     * The adjustment corrects the gap between the two straight lines at the replacement time\n     */\n    if (oldPolicy.jrScr != 0)\n      _juniorEtk.unlockScr(\n        oldPolicy.id,\n        oldPolicy.jrScr,\n        oldPolicy.jrInterestRate(),\n        int256(newPolicy.jrAccruedInterest()) - int256(oldPolicy.jrAccruedInterest())\n      );\n    if (newPolicy.jrScr > 0) _juniorEtk.lockScr(newPolicy.id, newPolicy.jrScr, newPolicy.jrInterestRate());\n    if (oldPolicy.srScr != 0)\n      _seniorEtk.unlockScr(\n        oldPolicy.id,\n        oldPolicy.srScr,\n        oldPolicy.srInterestRate(),\n        int256(newPolicy.srAccruedInterest()) - int256(oldPolicy.srAccruedInterest())\n      );\n    if (newPolicy.srScr > 0) _seniorEtk.lockScr(newPolicy.id, newPolicy.srScr, newPolicy.srInterestRate());\n  }\n\n  /// @inheritdoc IPremiumsAccount\n  function policyCancelled(\n    Policy.PolicyData calldata policy,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund,\n    address policyHolder\n  ) external override onlyPolicyPool {\n    _activePurePremiums -= policy.purePremium;\n    uint256 borrowFromScr = _payFromPremiums(int256(purePremiumRefund) - int256(policy.purePremium));\n    if (borrowFromScr != 0) {\n      _unlockScrWithRefund(policy, jrCocRefund, srCocRefund, policyHolder);\n      _borrowFromEtk(borrowFromScr, policyHolder, policy.jrScr > 0);\n    } else {\n      _unlockScrWithRefund(policy, jrCocRefund, srCocRefund, policyHolder);\n    }\n    _transferTo(policyHolder, purePremiumRefund - borrowFromScr);\n  }\n\n  /// @inheritdoc IPremiumsAccount\n  function policyResolvedWithPayout(\n    address policyHolder,\n    Policy.PolicyData calldata policy,\n    uint256 payout\n  ) external override onlyPolicyPool {\n    _activePurePremiums -= policy.purePremium;\n    uint256 borrowFromScr = _payFromPremiums(int256(payout) - int256(policy.purePremium));\n    if (borrowFromScr != 0) {\n      _unlockScr(policy);\n      _borrowFromEtk(borrowFromScr, policyHolder, policy.jrScr > 0);\n    } else {\n      _unlockScr(policy);\n    }\n    _transferTo(policyHolder, payout - borrowFromScr);\n  }\n\n  /**\n   * @dev Internal function that calls the eTokens to unlock the solvency capital when the policy expires\n   *\n   * @param policy The policy expired\n   */\n  function _unlockScr(Policy.PolicyData memory policy) internal {\n    if (policy.jrScr > 0) {\n      _juniorEtk.unlockScr(\n        policy.id,\n        policy.jrScr,\n        policy.jrInterestRate(),\n        int256(policy.jrCoc) - int256(policy.jrAccruedInterest())\n      );\n    }\n    if (policy.srScr > 0) {\n      _seniorEtk.unlockScr(\n        policy.id,\n        policy.srScr,\n        policy.srInterestRate(),\n        int256(policy.srCoc) - int256(policy.srAccruedInterest())\n      );\n    }\n  }\n\n  /**\n   * @dev Internal function that calls the eTokens to unlock the solvency capital when the policy is cancelled, doing\n   *      refund of the jr and sr Coc\n   *\n   * @param policy The policy cancelled\n   */\n  function _unlockScrWithRefund(\n    Policy.PolicyData memory policy,\n    uint256 jrCocRefund,\n    uint256 srCocRefund,\n    address policyHolder\n  ) internal {\n    if (policy.jrScr > 0) {\n      _juniorEtk.unlockScrWithRefund(\n        policy.id,\n        policy.jrScr,\n        policy.jrInterestRate(),\n        int256(policy.jrCoc - jrCocRefund) - int256(policy.jrAccruedInterest()),\n        policyHolder,\n        jrCocRefund\n      );\n    }\n    if (policy.srScr > 0) {\n      _seniorEtk.unlockScrWithRefund(\n        policy.id,\n        policy.srScr,\n        policy.srInterestRate(),\n        int256(policy.srCoc - srCocRefund) - int256(policy.srAccruedInterest()),\n        policyHolder,\n        srCocRefund\n      );\n    }\n  }\n\n  /**\n   * @notice Function that repays the loan(s) if fundsAvailable\n   *\n   * @return available The funds still available after repayment\n   */\n  function repayLoans() external returns (uint256 available) {\n    if (address(yieldVault()) != address(0)) recordEarnings();\n    available = fundsAvailable();\n    if (available != 0 && address(_seniorEtk) != address(0)) available = _repayLoan(available, _seniorEtk);\n    if (available != 0 && address(_juniorEtk) != address(0)) available = _repayLoan(available, _juniorEtk);\n    return available;\n  }\n\n  /**\n   * @dev Internal function that repays a loan taken (if any outstanding) from the an eToken\n   *\n   * @param fundsAvailable_ The amount of funds available for the repayment\n   * @param etk The eToken with the potential debt\n   * @return The excess amount of the purePremiumWon that wasn't used for the loan repayment.\n   */\n  function _repayLoan(uint256 fundsAvailable_, IEToken etk) internal returns (uint256) {\n    uint256 borrowedFromEtk = etk.getLoan(address(this));\n    if (borrowedFromEtk == 0) return fundsAvailable_;\n    uint256 repayAmount = Math.min(fundsAvailable_, borrowedFromEtk);\n    _surplus -= int256(repayAmount);\n\n    // Makes sure there's enough liquidity for repayAmount\n    _transferTo(address(this), repayAmount);\n    // Checks the allowance before repayment\n    if (currency().allowance(address(this), address(etk)) < repayAmount) {\n      // If I have to approve, I approve for all the pending debt (not just repayAmount), this way I avoid some\n      // future approvals.\n      currency().approve(address(etk), borrowedFromEtk);\n    }\n    etk.repayLoan(repayAmount, address(this));\n    return fundsAvailable_ - repayAmount;\n  }\n\n  /// @inheritdoc IPremiumsAccount\n  function policyExpired(Policy.PolicyData calldata policy) external override onlyPolicyPool {\n    _activePurePremiums -= policy.purePremium;\n    _storePurePremiumWon(policy.purePremium);\n    _unlockScr(policy);\n  }\n\n  /**\n   * @dev This empty reserved space is put in place to allow future versions to add new\n   * variables without shifting down storage in the inheritance chain.\n   * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n   */\n  uint256[47] private __gap;\n}\n"},"contracts/Reserve.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {IERC4626} from \"@openzeppelin/contracts/interfaces/IERC4626.sol\";\nimport {IPolicyPool} from \"./interfaces/IPolicyPool.sol\";\nimport {PolicyPoolComponent} from \"./PolicyPoolComponent.sol\";\n\n/**\n * @title Base contract for Ensuro cash reserves\n * @notice Implements the methods related with management of the reserves and payments. {EToken} and\n * {PremiumsAccount} inherit from this contract.\n *\n * @dev These contracts have an asset manager {IAssetManager} that's a strategy contract that runs in the same context\n * (called with delegatecall) that apply some strategy to reinvest the assets managed by the contract to generate\n * additional returns.\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\nabstract contract Reserve is PolicyPoolComponent {\n  using SafeERC20 for IERC20Metadata;\n\n  /**\n   * @dev Tracks the amount of assets invested in the yieldVault, up to the last time it was recorded\n   */\n  uint256 internal _invested;\n\n  /// @notice Thrown when the yield vault is unset or invalid for the configured currency.\n  error InvalidYieldVault();\n  /**\n   * @notice Thrown when trying to invest more cash than currently liquid in the reserve.\n   * @param required The requested amount of liquid funds\n   * @param available The currently available liquid balance\n   */\n  error NotEnoughCash(uint256 required, uint256 available);\n  /**\n   * @notice Thrown when attempting to transfer to the zero address.\n   * @param receiver The receiver that was provided (cannot be the zero address)\n   */\n  error ReserveInvalidReceiver(address receiver);\n\n  /**\n   * @notice Emitted when the yield vault is changed.\n   * @dev When replacing an existing vault, the reserve attempts to redeem the full position (unless `force` is used).\n   *\n   * @param oldVault The previous yield vault (can be `address(0)`)\n   * @param newVault The new yield vault (can be `address(0)`)\n   * @param forced True if the switch ignored a partial/failed deinvestment and proceeded anyway\n   */\n  event YieldVaultChanged(IERC4626 indexed oldVault, IERC4626 indexed newVault, bool forced);\n\n  /**\n   * @notice Emitted when a forced deinvestment ignored a redeem failure.\n   *\n   * @param oldVault The vault that failed to redeem\n   * @param shares The number of shares attempted to redeem\n   */\n  event ErrorIgnoredDeinvestingVault(IERC4626 indexed oldVault, uint256 shares);\n\n  /**\n   * @notice Event emitted when investment yields are accounted in the reserve\n   *\n   * @param earnings The amount of earnings generated since last record. It's positive in the case of earnings or\n   * negative when there are losses.\n   */\n  event EarningsRecorded(int256 earnings);\n\n  /**\n   * @dev Reserve constructor\n   *\n   * @param policyPool_ The {PolicyPool} where this reserve will be plugged\n   */\n  /// @custom:oz-upgrades-unsafe-allow constructor\n  constructor(IPolicyPool policyPool_) PolicyPoolComponent(policyPool_) {}\n\n  /**\n   * @dev Initializes the Reserve (to be called by subclasses)\n   */\n  // solhint-disable-next-line func-name-mixedcase\n  function __Reserve_init() internal onlyInitializing {\n    __PolicyPoolComponent_init();\n  }\n\n  /**\n   * @dev Internal function that transfers money to a destination. It might need to call `_deinvest` to deinvest\n   *      some money to have enough liquidity for the payment.\n   *\n   * @param destination The destination of the transfer. If destination == address(this) it doesn't transfer, just\n   *                    makes sure the amount is available.\n   * @param amount The amount to be transferred.\n   *\n   * @custom:pre `destination` must not be `address(0)`\n   * @custom:pre If a yield vault is configured, it must be compatible with {currency()}\n   *\n   * @custom:throws ReserveInvalidReceiver if `destination == address(0)`\n   */\n  function _transferTo(address destination, uint256 amount) internal {\n    require(destination != address(0), ReserveInvalidReceiver(destination));\n    if (amount == 0) return;\n    uint256 balance = _balance();\n    if (balance < amount) {\n      IERC4626 yv = yieldVault();\n      if (address(yv) != address(0)) {\n        _deinvest(yv, amount - balance);\n      }\n      // If balance still < amount, it will fail later...\n    }\n    if (destination != address(this)) currency().safeTransfer(destination, amount);\n  }\n\n  /**\n   * @notice Returns the address of the yield vault, where the part of the funds are invested to generate additional\n   *      yields. Can be `address(0)` if no yieldVault has been set.\n   */\n  function yieldVault() public view virtual returns (IERC4626);\n\n  /**\n   * @dev Internal function that needs to be implemented by child contracts because they might store the yield vault\n   * address in a different way. This function just stores the value, doesn't do any validation (validations are done\n   * on `setYieldVault`.\n   *\n   * @param newYieldVault The address of the new Yield vault. The yield vault is an ERC-4626 compatible vault\n   */\n  function _setYieldVault(IERC4626 newYieldVault) internal virtual;\n\n  /**\n   * @notice Returns the amount of funds that were invested in the yieldVault, up to the last recorded earnings / losses\n   */\n  function investedInYV() public view returns (uint256) {\n    return _invested;\n  }\n\n  /**\n   * @dev Internal function that needs to be implemented by child contracts to record the earnings (or losses if\n   * negative) generated by the yield vault\n   *\n   * @param earnings The amount of earnings (or losses if negative) generated since last time the earnings were\n   * recorded.\n   *\n   * @custom:emits {EarningsRecorded}\n   */\n  function _yieldEarnings(int256 earnings) internal virtual {\n    emit EarningsRecorded(earnings);\n  }\n\n  /**\n   * @notice Sets the new yield vault for this reserve. If the reserve had previously a yield vault, it will deinvest all\n   * the funds, making all of the liquid in the reserve balance.\n   *\n   *\n   * @param newYieldVault The address of the new yield vault to assign to the reserve. If is `address(0)` it means\n   *                      the reserve will not have a yield vault. If not `address(0)` it MUST be an IERC4626\n   *                      where `newYieldVault.asset()` equals `.currency()`\n   * @param force When a previous yield vault exists, before setting the new one, the funds are deinvested. When\n   *              `force` is true, an error in the deinvestment of the assets (or some assets not withdrawable)\n   *              will be ignored. When `force` is false, it will revert if `oldVault.balanceOf(address(this)) != 0`.\n   * @custom:emits {YieldVaultChanged}\n   */\n  function setYieldVault(IERC4626 newYieldVault, bool force) external {\n    bool forced;\n    IERC20Metadata asset = currency();\n    require(address(newYieldVault) == address(0) || newYieldVault.asset() == address(asset), InvalidYieldVault());\n    IERC4626 oldYV = yieldVault();\n    uint256 deinvested;\n\n    if (address(oldYV) != address(0)) {\n      uint256 yvShares = oldYV.balanceOf(address(this));\n      if (yvShares != 0) {\n        if (force) {\n          // Never fails, honors maxRedeem and deinvest as much as possible\n          (deinvested, forced) = _safeDeInvestAll(oldYV, yvShares);\n        } else {\n          // Redeems ALL the shares, otherwise, it fails\n          deinvested = oldYV.redeem(yvShares, address(this), address(this));\n        }\n      }\n    }\n    _setYieldVault(newYieldVault); // Stores the new YV\n\n    // Records the earnings\n    _yieldEarnings(int256(deinvested) - int256(_invested));\n    _invested = 0;\n    emit YieldVaultChanged(oldYV, newYieldVault, forced);\n  }\n\n  /**\n   * @dev Internal helper to deinvest `amount` assets from `yieldVault_`.\n   *\n   * It calls `withdraw(amount, address(this), address(this))` on the vault and updates `_invested`,\n   * also recording earnings if more than the tracked `_invested` is recovered.\n   *\n   * Although the protocol usually operates with safe investments where significant losses are not expected,\n   * there could be losses anyway. Calls to deinvest should be preceded by a call to `recordEarnings()`\n   * in situations where accurate earnings/losses tracking is required (like LP withdrawals).\n   *\n   * @param yieldVault_ Yield vault to deinvest from\n   * @param amount Amount of assets to withdraw from the vault\n   */\n  function _deinvest(IERC4626 yieldVault_, uint256 amount) internal {\n    yieldVault_.withdraw(amount, address(this), address(this));\n    if (amount > _invested) {\n      // If deinvests more than was already invested, then there's an earning and we have to record it.\n      _yieldEarnings(int256(amount - _invested));\n      _invested = 0;\n    } else {\n      _invested -= amount;\n    }\n  }\n\n  /**\n   * @dev Deinvests all the funds or as much as possible, without failing.\n   *\n   * @param yieldVault_ Yield vault to deinvest from\n   * @param sharesToRedeem Initial amount of shares to redeem\n   *\n   * @return deinvested The amount that was withdrawn from the vault\n   * @return forced If true, it indicates that something failed and it wasn't able to withdraw all the funds\n   *\n   * @custom:emits {ErrorIgnoredDeinvestingVault}\n   */\n  function _safeDeInvestAll(\n    IERC4626 yieldVault_,\n    uint256 sharesToRedeem\n  ) internal returns (uint256 deinvested, bool forced) {\n    try yieldVault_.maxRedeem(address(this)) returns (uint256 result) {\n      if (result < sharesToRedeem) {\n        forced = true;\n        sharesToRedeem = result;\n      }\n      // solhint-disable-next-line no-empty-blocks\n    } catch {}\n    try yieldVault_.redeem(sharesToRedeem, address(this), address(this)) returns (uint256 result) {\n      deinvested = result;\n    } catch {\n      emit ErrorIgnoredDeinvestingVault(yieldVault_, sharesToRedeem);\n      forced = true;\n    }\n  }\n\n  /**\n   * @dev Returns the liquid balance of `currency()` held directly by this reserve.\n   */\n  function _balance() internal view returns (uint256) {\n    return IERC20Metadata(currency()).balanceOf(address(this));\n  }\n\n  /**\n   * @notice Deinvest from the vault a given amount.\n   *\n   * @param amount Amount to withdraw from the `yieldVault()`. If equal type(uint256).max, deinvests maxWithdraw()\n   * @return deinvested The amount that was deinvested and added as liquid funds to the reserve\n   * @custom:pre yieldVault() != address(0)\n   * @custom:pre yieldVault().maxWithdraw(address(this)) >= amount\n   *             (this condition is not checked here; exceeding it is expected to revert in the vault during _deinvest()).\n   */\n  function withdrawFromYieldVault(uint256 amount) external returns (uint256 deinvested) {\n    recordEarnings();\n    IERC4626 yv = yieldVault();\n    if (amount == type(uint256).max) amount = yv.maxWithdraw(address(this));\n    _deinvest(yv, amount);\n    return amount;\n  }\n\n  /**\n   * @notice Moves money that's liquid in the contract to the yield vault, to generate yields\n   * @param amount Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`\n   * @custom:pre _balance() >= amount\n   */\n  function depositIntoYieldVault(uint256 amount) external {\n    IERC4626 yv = yieldVault();\n    require(address(yv) != address(0), InvalidYieldVault());\n    uint256 balance = _balance();\n    if (amount == type(uint256).max) {\n      amount = balance;\n    } else {\n      require(amount <= balance, NotEnoughCash(amount, balance));\n    }\n    _invested += amount;\n    currency().approve(address(yv), amount);\n    yv.deposit(amount, address(this));\n  }\n\n  /**\n   * @dev Computes the value of the assets invested in the yieldVault() and then calls `_yieldEarnings` to\n   *      reflect the earnings/losses in the way defined for each reserve.\n   * @custom:emits {EarningsRecorded}\n   */\n  function recordEarnings() public {\n    IERC4626 yv = yieldVault();\n    require(address(yv) != address(0), InvalidYieldVault());\n    uint256 assetsInvested = yv.convertToAssets(yv.balanceOf(address(this)));\n    int256 earned = int256(assetsInvested) - int256(_invested);\n    if (earned != 0) {\n      _invested = assetsInvested;\n      _yieldEarnings(earned);\n    }\n  }\n\n  /**\n   * @dev This empty reserved space is put in place to allow future versions to add new\n   * variables without shifting down storage in the inheritance chain.\n   * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n   */\n  uint256[49] private __gap;\n}\n"},"contracts/RiskModule.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {SafeCast} from \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport {IPolicyPool} from \"./interfaces/IPolicyPool.sol\";\nimport {PolicyPoolComponent} from \"./PolicyPoolComponent.sol\";\nimport {IRiskModule} from \"./interfaces/IRiskModule.sol\";\nimport {IUnderwriter} from \"./interfaces/IUnderwriter.sol\";\nimport {IPremiumsAccount} from \"./interfaces/IPremiumsAccount.sol\";\nimport {Policy} from \"./Policy.sol\";\n\n/**\n * @title Ensuro Risk Module contract\n * @dev Risk Module that keeps the configuration and is responsible for injecting policies and policy resolution\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract RiskModule is IRiskModule, PolicyPoolComponent {\n  using Policy for Policy.PolicyData;\n  using SafeCast for uint256;\n\n  /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n  IPremiumsAccount internal immutable _premiumsAccount;\n\n  IUnderwriter internal _underwriter;\n\n  address internal _wallet; // Address of the RiskModule provider\n\n  event PartnerWalletChanged(address oldWallet, address newWallet);\n  event UnderwriterChanged(IUnderwriter oldUW, IUnderwriter newUW);\n\n  error InvalidWallet(address wallet);\n  error InvalidUnderwriter(IUnderwriter uw);\n  error PremiumsAccountMustBePartOfThePool();\n  error UpgradeCannotChangePremiumsAccount();\n  error ExpirationMustBeInTheFuture(uint40 expiration, uint40 now);\n  error InvalidCustomer(address customer);\n\n  /// @custom:oz-upgrades-unsafe-allow constructor\n  constructor(IPolicyPool policyPool_, IPremiumsAccount premiumsAccount_) PolicyPoolComponent(policyPool_) {\n    if (PolicyPoolComponent(address(premiumsAccount_)).policyPool() != policyPool_) {\n      revert PremiumsAccountMustBePartOfThePool();\n    }\n    _premiumsAccount = premiumsAccount_;\n  }\n\n  /**\n   * @dev Initializes the RiskModule\n   * @param underwriter_ Contract in charge of decoding and validating the input and pricing the policies\n   * @param wallet_ Address of the RiskModule provider\n   */\n  function initialize(IUnderwriter underwriter_, address wallet_) public initializer {\n    __RiskModule_init(underwriter_, wallet_);\n  }\n\n  /**\n   * @dev Initializes the RiskModule\n   * @param underwriter_ Contract in charge of decoding and validating the input and pricing the policies\n   * @param wallet_ Address of the RiskModule provider\n   */\n  // solhint-disable-next-line func-name-mixedcase\n  function __RiskModule_init(IUnderwriter underwriter_, address wallet_) internal onlyInitializing {\n    __PolicyPoolComponent_init();\n    __RiskModule_init_unchained(underwriter_, wallet_);\n  }\n\n  // solhint-disable-next-line func-name-mixedcase\n  function __RiskModule_init_unchained(IUnderwriter underwriter_, address wallet_) internal onlyInitializing {\n    setWallet(wallet_);\n    setUnderwriter(underwriter_);\n  }\n\n  function _upgradeValidations(address newImpl) internal view virtual override {\n    super._upgradeValidations(newImpl);\n    IRiskModule newRM = IRiskModule(newImpl);\n    if (newRM.premiumsAccount() != _premiumsAccount) {\n      revert UpgradeCannotChangePremiumsAccount();\n    }\n  }\n\n  /**\n   * @dev See {IERC165-supportsInterface}.\n   */\n  function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n    return super.supportsInterface(interfaceId) || interfaceId == type(IRiskModule).interfaceId;\n  }\n\n  /// @inheritdoc IRiskModule\n  function wallet() public view override returns (address) {\n    return _wallet;\n  }\n\n  /**\n   * @dev Changes the wallet that will receive the partner commission of the policies created by this risk module.\n   * Events:\n   * - {RiskModule-PartnerWalletChanged}\n   * @param newWallet The new wallet that will receive the partner commissions. It can't be address(0).\n   */\n  function setWallet(address newWallet) public {\n    require(newWallet != address(0), InvalidWallet(newWallet));\n    emit PartnerWalletChanged(_wallet, newWallet);\n    _wallet = newWallet;\n  }\n\n  /**\n   * @notice Returns the underwriter contract, responsible for pricing and validating new policies, replacements and cancellations.\n   */\n  function underwriter() public view returns (IUnderwriter) {\n    return _underwriter;\n  }\n\n  /**\n   * @dev Changes the underwriter contract, responsible for pricing and validating new policies, replacements and cancellations.\n   * Events:\n   * - {RiskModule-UnderwriterChanged}\n   * @param newUW The new underwriter contract. It can't be address(0)\n   */\n  function setUnderwriter(IUnderwriter newUW) public {\n    require(address(newUW) != address(0), InvalidUnderwriter(newUW));\n    emit UnderwriterChanged(_underwriter, newUW);\n    _underwriter = newUW;\n  }\n\n  /// @inheritdoc IRiskModule\n  function premiumsAccount() external view override returns (IPremiumsAccount) {\n    return _premiumsAccount;\n  }\n\n  function getMinimumPremium(\n    uint256 payout,\n    uint256 lossProb,\n    uint40 start,\n    uint40 expiration,\n    Policy.Params memory p\n  ) public pure returns (uint256) {\n    return Policy.getMinimumPremium(p, payout, lossProb, expiration, start).totalPremium;\n  }\n\n  /**\n   * @dev Creates a new policy. The premium will paid by msg.sender\n   *\n   * @param inputData Input data that will be decoded by the _underwriter to construct the parameters for the\n   *                  new policy.\n   * @param onBehalfOf The address that will be the owner of the created policy\n   */\n  function newPolicy(bytes calldata inputData, address onBehalfOf) public returns (Policy.PolicyData memory policy) {\n    (\n      uint256 payout,\n      uint256 premium,\n      uint256 lossProb,\n      uint40 expiration,\n      uint96 internalId,\n      Policy.Params memory params_\n    ) = _underwriter.priceNewPolicy(address(this), inputData);\n\n    uint40 now_ = uint40(block.timestamp);\n    if (premium == type(uint256).max) {\n      premium = getMinimumPremium(payout, lossProb, now_, expiration, params_);\n    }\n    require(expiration > now_, ExpirationMustBeInTheFuture(expiration, now_));\n    require(onBehalfOf != address(0), InvalidCustomer(onBehalfOf));\n    policy = Policy.initialize(params_, premium, payout, lossProb, expiration, now_);\n    policy.id = _policyPool.newPolicy(policy, msg.sender, onBehalfOf, internalId);\n    return policy;\n  }\n\n  /**\n   * @dev Creates several policies, the premium is paid by msg.sender\n   *\n   * @param inputData Input data that will be decoded by the _underwriter to construct the parameters for the\n   *                  new policy.\n   * @param onBehalfOf The address that will be the owner of the created policy (same for all the policies)\n   */\n  function newPolicies(bytes[] calldata inputData, address onBehalfOf) external {\n    for (uint256 i = 0; i < inputData.length; ++i) {\n      newPolicy(inputData[i], onBehalfOf);\n    }\n  }\n\n  /**\n   * @dev Replaces a policy with a new one, with the same owner\n   *\n   * @param inputData Input data that will be decoded by the _underwriter to construct the oldPolicy and the\n   *                  parameters for the new policy.\n   */\n  function replacePolicy(bytes calldata inputData) external virtual returns (Policy.PolicyData memory policy) {\n    (\n      Policy.PolicyData memory oldPolicy,\n      uint256 payout,\n      uint256 premium,\n      uint256 lossProb,\n      uint40 expiration,\n      uint96 internalId,\n      Policy.Params memory params_\n    ) = _underwriter.pricePolicyReplacement(address(this), inputData);\n\n    if (premium == type(uint256).max) {\n      premium = getMinimumPremium(payout, lossProb, oldPolicy.start, expiration, params_);\n    }\n    if (expiration < uint40(block.timestamp)) revert ExpirationMustBeInTheFuture(expiration, uint40(block.timestamp));\n    policy = Policy.initialize(params_, premium, payout, lossProb, expiration, oldPolicy.start);\n\n    policy.id = _policyPool.replacePolicy(oldPolicy, policy, msg.sender, internalId);\n\n    return policy;\n  }\n\n  /**\n   * @dev Cancels a policy, giving back all (or part) of the pure premium and the non-accrued CoC\n   *\n   * @param inputData Input data that will be decoded by the _underwriter to construct the oldPolicy and the\n   *                  parameters for the new policy.\n   */\n  function cancelPolicy(bytes calldata inputData) external virtual {\n    (\n      Policy.PolicyData memory policyToCancel,\n      uint256 purePremiumRefund,\n      uint256 jrCocRefund,\n      uint256 srCocRefund\n    ) = _underwriter.pricePolicyCancellation(address(this), inputData);\n\n    _policyPool.cancelPolicy(policyToCancel, purePremiumRefund, jrCocRefund, srCocRefund);\n  }\n\n  /**\n   * @dev Resolves a policy, if payout > 0, it pays to the policy holder.\n   *\n   * Requirements:\n   * - payout <= policy.payout\n   * - block.timestamp >= policy.expiration\n   *\n   * Emits:\n   * - {PolicyPool.PolicyResolved}\n   *\n   * @param policy The policy previously created (from {NewPolicy} event)\n   * @param payout The payout to transfer to the policy holder\n   */\n  function resolvePolicy(Policy.PolicyData calldata policy, uint256 payout) external {\n    _policyPool.resolvePolicy(policy, payout);\n  }\n\n  /**\n   * @dev This empty reserved space is put in place to allow future versions to add new\n   * variables without shifting down storage in the inheritance chain.\n   * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n   */\n  uint256[48] private __gap;\n}\n"},"contracts/underwriters/FullSignedUW.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\nimport {ECDSA} from \"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\";\nimport {MessageHashUtils} from \"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\";\nimport {Policy} from \"../Policy.sol\";\nimport {IUnderwriter} from \"../interfaces/IUnderwriter.sol\";\nimport {AccessManagedProxy} from \"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol\";\n\n/**\n * @title FullSignedUW\n * @notice Underwriter that just decodes what it receives and checks it was signed by an authorized account.\n *      The signer needs to have the specific selectors granted in the target RM\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract FullSignedUW is IUnderwriter {\n  using Policy for Policy.PolicyData;\n\n  bytes4 internal constant FULL_PRICE_NEW_POLICY = bytes4(keccak256(\"FULL_PRICE_NEW_POLICY\"));\n  bytes4 internal constant FULL_PRICE_REPLACE_POLICY = bytes4(keccak256(\"FULL_PRICE_REPLACE_POLICY\"));\n  bytes4 internal constant FULL_PRICE_CANCEL_POLICY = bytes4(keccak256(\"FULL_PRICE_CANCEL_POLICY\"));\n  uint256 private constant NEW_POLICY_DATA_SIZE = 5 * 32 + 7 * 32 /* Params */;\n  uint256 private constant REPLACE_POLICY_DATA_SIZE = NEW_POLICY_DATA_SIZE + 12 * 32 /* Policy */;\n  uint256 private constant CANCEL_POLICY_DATA_SIZE = 12 * 32 /* Policy */ + 3 * 32;\n  uint256 private constant SIGNATURE_SIZE = 65;\n\n  /**\n   * @notice Thrown when the recovered signer is not authorized to perform the requested pricing operation on `rm`.\n   * @dev `selector` is the permission/role identifier checked through the RM's AccessManager (one of `FULL_PRICE_*`).\n   *\n   * @param signer   The address recovered from the appended ECDSA signature.\n   * @param selector The required permission/role id for the operation.\n   */\n  error UnauthorizedSigner(address signer, bytes4 selector);\n  /**\n   * @notice Thrown when `inputData` does not have the expected length: `payload || signature`.\n   * @dev The signature is expected to be exactly 65 bytes, so `inputData.length` must be `inputSize + 65`.\n   *\n   * @param actual   The actual length of `inputData` in bytes.\n   * @param expected The expected length of `inputData` in bytes.\n   */\n  error InvalidInputSize(uint256 actual, uint256 expected);\n\n  /// @notice Thrown when the received signature doesn't match the calling rm\n  error SignatureRmMismatch();\n\n  /**\n   * @notice Validates the signature appended to `inputData` and checks the recovered signer is authorized in `rm`.\n   *\n   * @param rm           Target RiskModule (must be an {AccessManagedProxy}).\n   * @param inputData    Concatenated bytes: `payload || signature`.\n   * @param inputSize    Expected length of the payload portion (without signature).\n   * @param requiredRole Role/selector id required for this operation (one of the `FULL_PRICE_*` constants).\n   *\n   * @custom:pre `inputData` is exactly `inputSize + 65` bytes long.\n   * @custom:pre `rm` is an {AccessManagedProxy} instance whose `ACCESS_MANAGER()` supports `canCall(...)`.\n   *\n   * @custom:throws InvalidInputSize if `inputData.length != inputSize + 65`.\n   * @custom:throws (via {ECDSA-recover}) if the signature is malformed/invalid.\n   * @custom:throws UnauthorizedSigner if the recovered signer is not permitted to call `rm` with `requiredRole`.\n   */\n  function _checkSignature(address rm, bytes calldata inputData, uint256 inputSize, bytes4 requiredRole) internal view {\n    // Check length\n    uint256 inputLength = inputData.length;\n    if (inputLength != (inputSize + SIGNATURE_SIZE)) revert InvalidInputSize(inputLength, inputSize + SIGNATURE_SIZE);\n\n    // Recover signer\n    bytes32 inputHash = MessageHashUtils.toEthSignedMessageHash(inputData[0:inputSize]);\n    address signer = ECDSA.recover(inputHash, inputData[inputSize:inputLength]);\n\n    // Check it has the permission in the RM\n    (bool immediate, ) = AccessManagedProxy(payable(rm)).ACCESS_MANAGER().canCall(signer, rm, requiredRole);\n    require(immediate, UnauthorizedSigner(signer, requiredRole));\n  }\n\n  /// @inheritdoc IUnderwriter\n  function priceNewPolicy(\n    address rm,\n    bytes calldata inputData\n  )\n    external\n    view\n    override\n    returns (\n      uint256 payout,\n      uint256 premium,\n      uint256 lossProb,\n      uint40 expiration,\n      uint96 internalId,\n      Policy.Params memory params\n    )\n  {\n    _checkSignature(rm, inputData, NEW_POLICY_DATA_SIZE, FULL_PRICE_NEW_POLICY);\n    uint256 policyId;\n    (payout, premium, lossProb, expiration, policyId, params) = abi.decode(\n      inputData[0:NEW_POLICY_DATA_SIZE],\n      (uint256, uint256, uint256, uint40, uint256, Policy.Params)\n    );\n    require(Policy.extractRiskModule(policyId) == rm, SignatureRmMismatch());\n    internalId = Policy.extractInternalId(policyId);\n  }\n\n  /// @inheritdoc IUnderwriter\n  function pricePolicyReplacement(\n    address rm,\n    bytes calldata inputData\n  )\n    external\n    view\n    override\n    returns (\n      Policy.PolicyData memory oldPolicy,\n      uint256 payout,\n      uint256 premium,\n      uint256 lossProb,\n      uint40 expiration,\n      uint96 internalId,\n      Policy.Params memory params\n    )\n  {\n    _checkSignature(rm, inputData, REPLACE_POLICY_DATA_SIZE, FULL_PRICE_REPLACE_POLICY);\n    uint256 policyId;\n    (oldPolicy, payout, premium, lossProb, expiration, policyId, params) = abi.decode(\n      inputData[0:REPLACE_POLICY_DATA_SIZE],\n      (Policy.PolicyData, uint256, uint256, uint256, uint40, uint256, Policy.Params)\n    );\n    require(\n      Policy.extractRiskModule(policyId) == rm && Policy.extractRiskModule(oldPolicy.id) == rm,\n      SignatureRmMismatch()\n    );\n    internalId = Policy.extractInternalId(policyId);\n  }\n\n  /// @inheritdoc IUnderwriter\n  function pricePolicyCancellation(\n    address rm,\n    bytes calldata inputData\n  )\n    external\n    view\n    override\n    returns (\n      Policy.PolicyData memory policyToCancel,\n      uint256 purePremiumRefund,\n      uint256 jrCocRefund,\n      uint256 srCocRefund\n    )\n  {\n    _checkSignature(rm, inputData, CANCEL_POLICY_DATA_SIZE, FULL_PRICE_CANCEL_POLICY);\n    (policyToCancel, purePremiumRefund, jrCocRefund, srCocRefund) = abi.decode(\n      inputData[0:CANCEL_POLICY_DATA_SIZE],\n      (Policy.PolicyData, uint256, uint256, uint256)\n    );\n    require(Policy.extractRiskModule(policyToCancel.id) == rm, SignatureRmMismatch());\n    if (jrCocRefund == type(uint256).max) jrCocRefund = policyToCancel.jrCoc - policyToCancel.jrAccruedInterest();\n    if (srCocRefund == type(uint256).max) srCocRefund = policyToCancel.srCoc - policyToCancel.srAccruedInterest();\n  }\n}\n"},"contracts/underwriters/FullTrustedUW.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\nimport {Policy} from \"../Policy.sol\";\nimport {IUnderwriter} from \"../interfaces/IUnderwriter.sol\";\n\n/**\n * @title FullTrustedUW\n * @notice Underwriter that just decodes what it receives. The access validations should be done on risk module methods.\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract FullTrustedUW is IUnderwriter {\n  using Policy for Policy.PolicyData;\n\n  /// @inheritdoc IUnderwriter\n  function priceNewPolicy(\n    address /* rm */,\n    bytes calldata inputData\n  )\n    external\n    pure\n    override\n    returns (\n      uint256 payout,\n      uint256 premium,\n      uint256 lossProb,\n      uint40 expiration,\n      uint96 internalId,\n      Policy.Params memory params\n    )\n  {\n    return abi.decode(inputData, (uint256, uint256, uint256, uint40, uint96, Policy.Params));\n  }\n\n  /// @inheritdoc IUnderwriter\n  function pricePolicyReplacement(\n    address /* rm */,\n    bytes calldata inputData\n  )\n    external\n    pure\n    override\n    returns (\n      Policy.PolicyData memory oldPolicy,\n      uint256 payout,\n      uint256 premium,\n      uint256 lossProb,\n      uint40 expiration,\n      uint96 internalId,\n      Policy.Params memory params\n    )\n  {\n    return abi.decode(inputData, (Policy.PolicyData, uint256, uint256, uint256, uint40, uint96, Policy.Params));\n  }\n\n  /// @inheritdoc IUnderwriter\n  function pricePolicyCancellation(\n    address /* rm */,\n    bytes calldata inputData\n  )\n    external\n    view\n    override\n    returns (\n      Policy.PolicyData memory policyToCancel,\n      uint256 purePremiumRefund,\n      uint256 jrCocRefund,\n      uint256 srCocRefund\n    )\n  {\n    (policyToCancel, purePremiumRefund, jrCocRefund, srCocRefund) = abi.decode(\n      inputData,\n      (Policy.PolicyData, uint256, uint256, uint256)\n    );\n    if (jrCocRefund == type(uint256).max) jrCocRefund = policyToCancel.jrCoc - policyToCancel.jrAccruedInterest();\n    if (srCocRefund == type(uint256).max) srCocRefund = policyToCancel.srCoc - policyToCancel.srAccruedInterest();\n  }\n}\n"}},"settings":{"optimizer":{"enabled":true,"runs":200},"evmVersion":"prague","outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata","storageLayout"],"":["ast"]}}}},"output":{"errors":[{"component":"general","errorCode":"3628","formattedMessage":"Warning: This contract has a payable fallback function, but no receive ether function. Consider adding a receive ether function.\n  --> @ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol:25:1:\n   |\n25 | abstract contract AccessManagedProxyBase is ERC1967Proxy, IAccessManagedProxy {\n   | ^ (Relevant source part starts here and spans across multiple lines).\nNote: The payable fallback function is defined here.\n  --> @openzeppelin/contracts/proxy/Proxy.sol:66:5:\n   |\n66 |     fallback() external payable virtual {\n   |     ^ (Relevant source part starts here and spans across multiple lines).\n\n","message":"This contract has a payable fallback function, but no receive ether function. Consider adding a receive ether function.","secondarySourceLocations":[{"end":2694,"file":"@openzeppelin/contracts/proxy/Proxy.sol","message":"The payable fallback function is defined here.","start":2630}],"severity":"warning","sourceLocation":{"end":3906,"file":"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol","start":1098},"type":"Warning"},{"component":"general","errorCode":"3628","formattedMessage":"Warning: This contract has a payable fallback function, but no receive ether function. Consider adding a receive ether function.\n  --> @ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol:29:1:\n   |\n29 | contract AccessManagedProxy is AccessManagedProxyBase {\n   | ^ (Relevant source part starts here and spans across multiple lines).\nNote: The payable fallback function is defined here.\n  --> @openzeppelin/contracts/proxy/Proxy.sol:66:5:\n   |\n66 |     fallback() external payable virtual {\n   |     ^ (Relevant source part starts here and spans across multiple lines).\n\n","message":"This contract has a payable fallback function, but no receive ether function. Consider adding a receive ether function.","secondarySourceLocations":[{"end":2694,"file":"@openzeppelin/contracts/proxy/Proxy.sol","message":"The payable fallback function is defined here.","start":2630}],"severity":"warning","sourceLocation":{"end":3544,"file":"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol","start":1448},"type":"Warning"},{"component":"general","errorCode":"3628","formattedMessage":"Warning: This contract has a payable fallback function, but no receive ether function. Consider adding a receive ether function.\n  --> contracts/mocks/ForwardProxy.sol:16:1:\n   |\n16 | contract ForwardProxy is Proxy {\n   | ^ (Relevant source part starts here and spans across multiple lines).\nNote: The payable fallback function is defined here.\n  --> @openzeppelin/contracts/proxy/Proxy.sol:66:5:\n   |\n66 |     fallback() external payable virtual {\n   |     ^ (Relevant source part starts here and spans across multiple lines).\n\n","message":"This contract has a payable fallback function, but no receive ether function. Consider adding a receive ether function.","secondarySourceLocations":[{"end":2694,"file":"@openzeppelin/contracts/proxy/Proxy.sol","message":"The payable fallback function is defined here.","start":2630}],"severity":"warning","sourceLocation":{"end":2158,"file":"contracts/mocks/ForwardProxy.sol","start":552},"type":"Warning"},{"component":"general","errorCode":"3628","formattedMessage":"Warning: This contract has a payable fallback function, but no receive ether function. Consider adding a receive ether function.\n   --> contracts/mocks/PolicyPoolMock.sol:135:1:\n    |\n135 | contract PolicyPoolMockForward is ForwardProxy {\n    | ^ (Relevant source part starts here and spans across multiple lines).\nNote: The payable fallback function is defined here.\n  --> @openzeppelin/contracts/proxy/Proxy.sol:66:5:\n   |\n66 |     fallback() external payable virtual {\n   |     ^ (Relevant source part starts here and spans across multiple lines).\n\n","message":"This contract has a payable fallback function, but no receive ether function. Consider adding a receive ether function.","secondarySourceLocations":[{"end":2694,"file":"@openzeppelin/contracts/proxy/Proxy.sol","message":"The payable fallback function is defined here.","start":2630}],"severity":"warning","sourceLocation":{"end":4661,"file":"contracts/mocks/PolicyPoolMock.sol","start":4262},"type":"Warning"},{"component":"general","errorCode":"3628","formattedMessage":"Warning: This contract has a payable fallback function, but no receive ether function. Consider adding a receive ether function.\n  --> contracts/mocks/RiskModuleMock.sol:10:1:\n   |\n10 | contract RiskModuleMock is ForwardProxy, IRiskModule, IPolicyPoolComponent {\n   | ^ (Relevant source part starts here and spans across multiple lines).\nNote: The payable fallback function is defined here.\n  --> @openzeppelin/contracts/proxy/Proxy.sol:66:5:\n   |\n66 |     fallback() external payable virtual {\n   |     ^ (Relevant source part starts here and spans across multiple lines).\n\n","message":"This contract has a payable fallback function, but no receive ether function. Consider adding a receive ether function.","secondarySourceLocations":[{"end":2694,"file":"@openzeppelin/contracts/proxy/Proxy.sol","message":"The payable fallback function is defined here.","start":2630}],"severity":"warning","sourceLocation":{"end":1318,"file":"contracts/mocks/RiskModuleMock.sol","start":379},"type":"Warning"}],"sources":{"@ensuro/access-managed-proxy/contracts/AMPUtils.sol":{"ast":{"absolutePath":"@ensuro/access-managed-proxy/contracts/AMPUtils.sol","exportedSymbols":{"AMPUtils":[240],"IAccessManagedProxy":[519],"IAccessManager":[6119]},"id":241,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"39:23:0"},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","file":"@openzeppelin/contracts/access/manager/IAccessManager.sol","id":3,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":241,"sourceUnit":6120,"src":"64:89:0","symbolAliases":[{"foreign":{"id":2,"name":"IAccessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6119,"src":"72:14:0","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol","file":"./interfaces/IAccessManagedProxy.sol","id":5,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":241,"sourceUnit":520,"src":"154:73:0","symbolAliases":[{"foreign":{"id":4,"name":"IAccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":519,"src":"162:19:0","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"AMPUtils","contractDependencies":[],"contractKind":"library","documentation":{"id":6,"nodeType":"StructuredDocumentation","src":"229:164:0","text":" @title AMPUtils\n @dev Utility functions for doing custom access control rules, for contracts deployed\n      with AccessManagedProxy\n @author Ensuro"},"fullyImplemented":true,"id":240,"linearizedBaseContracts":[240],"name":"AMPUtils","nameLocation":"402:8:0","nodeType":"ContractDefinition","nodes":[{"errorSelector":"068ca9d8","id":10,"name":"AccessManagedUnauthorized","nameLocation":"459:25:0","nodeType":"ErrorDefinition","parameters":{"id":9,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8,"mutability":"mutable","name":"caller","nameLocation":"493:6:0","nodeType":"VariableDeclaration","scope":10,"src":"485:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7,"name":"address","nodeType":"ElementaryTypeName","src":"485:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"484:16:0"},"src":"453:48:0"},{"canonicalName":"AMPUtils.AccessManagedProxyStorage","id":21,"members":[{"constant":false,"id":13,"mutability":"mutable","name":"accessManager","nameLocation":"559:13:0","nodeType":"VariableDeclaration","scope":21,"src":"544:28:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"},"typeName":{"id":12,"nodeType":"UserDefinedTypeName","pathNode":{"id":11,"name":"IAccessManager","nameLocations":["544:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":6119,"src":"544:14:0"},"referencedDeclaration":6119,"src":"544:14:0","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}},"visibility":"internal"},{"constant":false,"id":16,"mutability":"mutable","name":"passThruMethods","nameLocation":"587:15:0","nodeType":"VariableDeclaration","scope":21,"src":"578:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":14,"name":"bytes4","nodeType":"ElementaryTypeName","src":"578:6:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":15,"nodeType":"ArrayTypeName","src":"578:8:0","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"},{"constant":false,"id":20,"mutability":"mutable","name":"skipAc","nameLocation":"666:6:0","nodeType":"VariableDeclaration","scope":21,"src":"642:30:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_bool_$","typeString":"mapping(bytes4 => bool)"},"typeName":{"id":19,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":17,"name":"bytes4","nodeType":"ElementaryTypeName","src":"650:6:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"Mapping","src":"642:23:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_bool_$","typeString":"mapping(bytes4 => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":18,"name":"bool","nodeType":"ElementaryTypeName","src":"660:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"}],"name":"AccessManagedProxyStorage","nameLocation":"512:25:0","nodeType":"StructDefinition","scope":240,"src":"505:210:0","visibility":"public"},{"constant":true,"documentation":{"id":22,"nodeType":"StructuredDocumentation","src":"719:232:0","text":" @notice Storage slot with the address of the current access mananger.\n @dev Computed as: `keccak256(\n    abi.encode(uint256(keccak256(\"ensuro.storage.AccessManagedProxy\")) - 1)\n ) & ~bytes32(uint256(0xff))"},"id":25,"mutability":"constant","name":"AccessManagedProxyStorageLocation","nameLocation":"1032:33:0","nodeType":"VariableDeclaration","scope":240,"src":"1006:132:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":23,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1006:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307837383763396437616339313064363432353262636561303561636435623761663664353936343465303435316138626235363734353837353535303439633030","id":24,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1072:66:0","typeDescriptions":{"typeIdentifier":"t_rational_54497717750489122717228104159160360351638605248007149183892210957931124136960_by_1","typeString":"int_const 5449...(69 digits omitted)...6960"},"value":"0x787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c00"},"visibility":"internal"},{"body":{"id":32,"nodeType":"Block","src":"1243:128:0","statements":[{"AST":{"nativeSrc":"1310:57:0","nodeType":"YulBlock","src":"1310:57:0","statements":[{"nativeSrc":"1318:43:0","nodeType":"YulAssignment","src":"1318:43:0","value":{"name":"AccessManagedProxyStorageLocation","nativeSrc":"1328:33:0","nodeType":"YulIdentifier","src":"1328:33:0"},"variableNames":[{"name":"$.slot","nativeSrc":"1318:6:0","nodeType":"YulIdentifier","src":"1318:6:0"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29,"isOffset":false,"isSlot":true,"src":"1318:6:0","suffix":"slot","valueSize":1},{"declaration":25,"isOffset":false,"isSlot":false,"src":"1328:33:0","valueSize":1}],"id":31,"nodeType":"InlineAssembly","src":"1301:66:0"}]},"id":33,"implemented":true,"kind":"function","modifiers":[],"name":"getAccessManagedProxyStorage","nameLocation":"1152:28:0","nodeType":"FunctionDefinition","parameters":{"id":26,"nodeType":"ParameterList","parameters":[],"src":"1180:2:0"},"returnParameters":{"id":30,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29,"mutability":"mutable","name":"$","nameLocation":"1240:1:0","nodeType":"VariableDeclaration","scope":33,"src":"1206:35:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$21_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage"},"typeName":{"id":28,"nodeType":"UserDefinedTypeName","pathNode":{"id":27,"name":"AccessManagedProxyStorage","nameLocations":["1206:25:0"],"nodeType":"IdentifierPath","referencedDeclaration":21,"src":"1206:25:0"},"referencedDeclaration":21,"src":"1206:25:0","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$21_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage"}},"visibility":"internal"}],"src":"1205:37:0"},"scope":240,"src":"1143:228:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":73,"nodeType":"Block","src":"1440:287:0","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":46,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"arguments":[{"id":41,"name":"accessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36,"src":"1458:13:0","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}],"id":40,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1450:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":39,"name":"address","nodeType":"ElementaryTypeName","src":"1450:7:0","typeDescriptions":{}}},"id":42,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1450:22:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":43,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1473:4:0","memberName":"code","nodeType":"MemberAccess","src":"1450:27:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":44,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1478:6:0","memberName":"length","nodeType":"MemberAccess","src":"1450:34:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":45,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1488:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1450:39:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":57,"nodeType":"IfStatement","src":"1446:140:0","trueBody":{"id":56,"nodeType":"Block","src":"1491:95:0","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":52,"name":"accessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36,"src":"1564:13:0","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}],"id":51,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1556:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":50,"name":"address","nodeType":"ElementaryTypeName","src":"1556:7:0","typeDescriptions":{}}},"id":53,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1556:22:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":47,"name":"IAccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":519,"src":"1506:19:0","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManagedProxy_$519_$","typeString":"type(contract IAccessManagedProxy)"}},"id":49,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1526:29:0","memberName":"AccessManagedInvalidAuthority","nodeType":"MemberAccess","referencedDeclaration":498,"src":"1506:49:0","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":54,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1506:73:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":55,"nodeType":"RevertStatement","src":"1499:80:0"}]}},{"expression":{"id":62,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":58,"name":"getAccessManagedProxyStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33,"src":"1591:28:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_AccessManagedProxyStorage_$21_storage_ptr_$","typeString":"function () pure returns (struct AMPUtils.AccessManagedProxyStorage storage pointer)"}},"id":59,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1591:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$21_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":60,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1622:13:0","memberName":"accessManager","nodeType":"MemberAccess","referencedDeclaration":13,"src":"1591:44:0","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":61,"name":"accessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36,"src":"1638:13:0","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}},"src":"1591:60:0","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}},"id":63,"nodeType":"ExpressionStatement","src":"1591:60:0"},{"eventCall":{"arguments":[{"arguments":[{"id":69,"name":"accessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36,"src":"1707:13:0","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}],"id":68,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1699:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":67,"name":"address","nodeType":"ElementaryTypeName","src":"1699:7:0","typeDescriptions":{}}},"id":70,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1699:22:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":64,"name":"IAccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":519,"src":"1662:19:0","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManagedProxy_$519_$","typeString":"type(contract IAccessManagedProxy)"}},"id":66,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1682:16:0","memberName":"AuthorityUpdated","nodeType":"MemberAccess","referencedDeclaration":484,"src":"1662:36:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":71,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1662:60:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":72,"nodeType":"EmitStatement","src":"1657:65:0"}]},"id":74,"implemented":true,"kind":"function","modifiers":[],"name":"setAccessManager","nameLocation":"1384:16:0","nodeType":"FunctionDefinition","parameters":{"id":37,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36,"mutability":"mutable","name":"accessManager","nameLocation":"1416:13:0","nodeType":"VariableDeclaration","scope":74,"src":"1401:28:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"},"typeName":{"id":35,"nodeType":"UserDefinedTypeName","pathNode":{"id":34,"name":"IAccessManager","nameLocations":["1401:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":6119,"src":"1401:14:0"},"referencedDeclaration":6119,"src":"1401:14:0","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}},"visibility":"internal"}],"src":"1400:30:0"},"returnParameters":{"id":38,"nodeType":"ParameterList","parameters":[],"src":"1440:0:0"},"scope":240,"src":"1375:352:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":136,"nodeType":"Block","src":"1801:373:0","statements":[{"assignments":[82],"declarations":[{"constant":false,"id":82,"mutability":"mutable","name":"$","nameLocation":"1841:1:0","nodeType":"VariableDeclaration","scope":136,"src":"1807:35:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$21_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage"},"typeName":{"id":81,"nodeType":"UserDefinedTypeName","pathNode":{"id":80,"name":"AccessManagedProxyStorage","nameLocations":["1807:25:0"],"nodeType":"IdentifierPath","referencedDeclaration":21,"src":"1807:25:0"},"referencedDeclaration":21,"src":"1807:25:0","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$21_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage"}},"visibility":"internal"}],"id":86,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":83,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":240,"src":"1845:8:0","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AMPUtils_$240_$","typeString":"type(library AMPUtils)"}},"id":84,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1854:28:0","memberName":"getAccessManagedProxyStorage","nodeType":"MemberAccess","referencedDeclaration":33,"src":"1845:37:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_AccessManagedProxyStorage_$21_storage_ptr_$","typeString":"function () pure returns (struct AMPUtils.AccessManagedProxyStorage storage pointer)"}},"id":85,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1845:39:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$21_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"1807:77:0"},{"expression":{"id":96,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":87,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":82,"src":"1890:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$21_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":89,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1892:15:0","memberName":"passThruMethods","nodeType":"MemberAccess","referencedDeclaration":16,"src":"1890:17:0","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage","typeString":"bytes4[] storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":93,"name":"passThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":77,"src":"1923:15:0","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":94,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1939:6:0","memberName":"length","nodeType":"MemberAccess","src":"1923:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":92,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1910:12:0","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_bytes4_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (bytes4[] memory)"},"typeName":{"baseType":{"id":90,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1914:6:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":91,"nodeType":"ArrayTypeName","src":"1914:8:0","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}}},"id":95,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1910:36:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"src":"1890:56:0","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage","typeString":"bytes4[] storage ref"}},"id":97,"nodeType":"ExpressionStatement","src":"1890:56:0"},{"body":{"id":128,"nodeType":"Block","src":"2001:99:0","statements":[{"expression":{"id":116,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":108,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":82,"src":"2009:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$21_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":111,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2011:15:0","memberName":"passThruMethods","nodeType":"MemberAccess","referencedDeclaration":16,"src":"2009:17:0","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage","typeString":"bytes4[] storage ref"}},"id":112,"indexExpression":{"id":110,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":99,"src":"2027:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2009:20:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":113,"name":"passThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":77,"src":"2032:15:0","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":115,"indexExpression":{"id":114,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":99,"src":"2048:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2032:18:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2009:41:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":117,"nodeType":"ExpressionStatement","src":"2009:41:0"},{"expression":{"id":126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":118,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":82,"src":"2058:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$21_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":123,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2060:6:0","memberName":"skipAc","nodeType":"MemberAccess","referencedDeclaration":20,"src":"2058:8:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_bool_$","typeString":"mapping(bytes4 => bool)"}},"id":124,"indexExpression":{"baseExpression":{"id":120,"name":"passThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":77,"src":"2067:15:0","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":122,"indexExpression":{"id":121,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":99,"src":"2083:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2067:18:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2058:28:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":125,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2089:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"2058:35:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":127,"nodeType":"ExpressionStatement","src":"2058:35:0"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":104,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":101,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":99,"src":"1968:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":102,"name":"passThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":77,"src":"1972:15:0","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1988:6:0","memberName":"length","nodeType":"MemberAccess","src":"1972:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1968:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":129,"initializationExpression":{"assignments":[99],"declarations":[{"constant":false,"id":99,"mutability":"mutable","name":"i","nameLocation":"1965:1:0","nodeType":"VariableDeclaration","scope":129,"src":"1957:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":98,"name":"uint256","nodeType":"ElementaryTypeName","src":"1957:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":100,"nodeType":"VariableDeclarationStatement","src":"1957:9:0"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":106,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"1996:3:0","subExpression":{"id":105,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":99,"src":"1998:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":107,"nodeType":"ExpressionStatement","src":"1996:3:0"},"nodeType":"ForStatement","src":"1952:148:0"},{"eventCall":{"arguments":[{"id":133,"name":"passThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":77,"src":"2153:15:0","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}],"expression":{"id":130,"name":"IAccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":519,"src":"2110:19:0","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManagedProxy_$519_$","typeString":"type(contract IAccessManagedProxy)"}},"id":132,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2130:22:0","memberName":"PassThruMethodsChanged","nodeType":"MemberAccess","referencedDeclaration":490,"src":"2110:42:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_array$_t_bytes4_$dyn_memory_ptr_$returns$__$","typeString":"function (bytes4[] memory)"}},"id":134,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2110:59:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":135,"nodeType":"EmitStatement","src":"2105:64:0"}]},"id":137,"implemented":true,"kind":"function","modifiers":[],"name":"setPassThruMethods","nameLocation":"1740:18:0","nodeType":"FunctionDefinition","parameters":{"id":78,"nodeType":"ParameterList","parameters":[{"constant":false,"id":77,"mutability":"mutable","name":"passThruMethods","nameLocation":"1775:15:0","nodeType":"VariableDeclaration","scope":137,"src":"1759:31:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":75,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1759:6:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":76,"nodeType":"ArrayTypeName","src":"1759:8:0","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"src":"1758:33:0"},"returnParameters":{"id":79,"nodeType":"ParameterList","parameters":[],"src":"1801:0:0"},"scope":240,"src":"1731:443:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":184,"nodeType":"Block","src":"2255:303:0","statements":[{"assignments":[145],"declarations":[{"constant":false,"id":145,"mutability":"mutable","name":"$","nameLocation":"2295:1:0","nodeType":"VariableDeclaration","scope":184,"src":"2261:35:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$21_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage"},"typeName":{"id":144,"nodeType":"UserDefinedTypeName","pathNode":{"id":143,"name":"AccessManagedProxyStorage","nameLocations":["2261:25:0"],"nodeType":"IdentifierPath","referencedDeclaration":21,"src":"2261:25:0"},"referencedDeclaration":21,"src":"2261:25:0","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$21_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage"}},"visibility":"internal"}],"id":149,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":146,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":240,"src":"2299:8:0","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AMPUtils_$240_$","typeString":"type(library AMPUtils)"}},"id":147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2308:28:0","memberName":"getAccessManagedProxyStorage","nodeType":"MemberAccess","referencedDeclaration":33,"src":"2299:37:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_AccessManagedProxyStorage_$21_storage_ptr_$","typeString":"function () pure returns (struct AMPUtils.AccessManagedProxyStorage storage pointer)"}},"id":148,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2299:39:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$21_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"2261:77:0"},{"assignments":[154],"declarations":[{"constant":false,"id":154,"mutability":"mutable","name":"oldPassThruMethods","nameLocation":"2360:18:0","nodeType":"VariableDeclaration","scope":184,"src":"2344:34:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":152,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2344:6:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":153,"nodeType":"ArrayTypeName","src":"2344:8:0","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"id":157,"initialValue":{"expression":{"id":155,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":145,"src":"2381:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$21_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":156,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2383:15:0","memberName":"passThruMethods","nodeType":"MemberAccess","referencedDeclaration":16,"src":"2381:17:0","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage","typeString":"bytes4[] storage ref"}},"nodeType":"VariableDeclarationStatement","src":"2344:54:0"},{"body":{"id":178,"nodeType":"Block","src":"2456:54:0","statements":[{"expression":{"id":176,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":168,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":145,"src":"2464:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$21_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":173,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2466:6:0","memberName":"skipAc","nodeType":"MemberAccess","referencedDeclaration":20,"src":"2464:8:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_bool_$","typeString":"mapping(bytes4 => bool)"}},"id":174,"indexExpression":{"baseExpression":{"id":170,"name":"oldPassThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":154,"src":"2473:18:0","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":172,"indexExpression":{"id":171,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":159,"src":"2492:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2473:21:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2464:31:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":175,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2498:5:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"2464:39:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":177,"nodeType":"ExpressionStatement","src":"2464:39:0"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":161,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":159,"src":"2420:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":162,"name":"oldPassThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":154,"src":"2424:18:0","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2443:6:0","memberName":"length","nodeType":"MemberAccess","src":"2424:25:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2420:29:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":179,"initializationExpression":{"assignments":[159],"declarations":[{"constant":false,"id":159,"mutability":"mutable","name":"i","nameLocation":"2417:1:0","nodeType":"VariableDeclaration","scope":179,"src":"2409:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":158,"name":"uint256","nodeType":"ElementaryTypeName","src":"2409:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":160,"nodeType":"VariableDeclarationStatement","src":"2409:9:0"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":166,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"2451:3:0","subExpression":{"id":165,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":159,"src":"2453:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":167,"nodeType":"ExpressionStatement","src":"2451:3:0"},"nodeType":"ForStatement","src":"2404:106:0"},{"expression":{"arguments":[{"id":181,"name":"newPassThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":140,"src":"2534:18:0","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}],"id":180,"name":"setPassThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":137,"src":"2515:18:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_bytes4_$dyn_memory_ptr_$returns$__$","typeString":"function (bytes4[] memory)"}},"id":182,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2515:38:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":183,"nodeType":"ExpressionStatement","src":"2515:38:0"}]},"id":185,"implemented":true,"kind":"function","modifiers":[],"name":"replacePassThruMethods","nameLocation":"2187:22:0","nodeType":"FunctionDefinition","parameters":{"id":141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":140,"mutability":"mutable","name":"newPassThruMethods","nameLocation":"2226:18:0","nodeType":"VariableDeclaration","scope":185,"src":"2210:34:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":138,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2210:6:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":139,"nodeType":"ArrayTypeName","src":"2210:8:0","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"src":"2209:36:0"},"returnParameters":{"id":142,"nodeType":"ParameterList","parameters":[],"src":"2255:0:0"},"scope":240,"src":"2178:380:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":222,"nodeType":"Block","src":"2967:212:0","statements":[{"assignments":[194,null],"declarations":[{"constant":false,"id":194,"mutability":"mutable","name":"immediate","nameLocation":"2979:9:0","nodeType":"VariableDeclaration","scope":222,"src":"2974:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":193,"name":"bool","nodeType":"ElementaryTypeName","src":"2974:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":214,"initialValue":{"arguments":[{"id":207,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":188,"src":"3070:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":210,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3090:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_AMPUtils_$240","typeString":"library AMPUtils"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AMPUtils_$240","typeString":"library AMPUtils"}],"id":209,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3082:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":208,"name":"address","nodeType":"ElementaryTypeName","src":"3082:7:0","typeDescriptions":{}}},"id":211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3082:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":212,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":190,"src":"3103:8:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"arguments":[{"id":200,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3030:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_AMPUtils_$240","typeString":"library AMPUtils"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AMPUtils_$240","typeString":"library AMPUtils"}],"id":199,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3022:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":198,"name":"address","nodeType":"ElementaryTypeName","src":"3022:7:0","typeDescriptions":{}}},"id":201,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3022:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":197,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3014:8:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_payable_$","typeString":"type(address payable)"},"typeName":{"id":196,"name":"address","nodeType":"ElementaryTypeName","src":"3014:8:0","stateMutability":"payable","typeDescriptions":{}}},"id":202,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3014:22:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"}],"id":195,"name":"IAccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":519,"src":"2994:19:0","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManagedProxy_$519_$","typeString":"type(contract IAccessManagedProxy)"}},"id":203,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2994:43:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManagedProxy_$519","typeString":"contract IAccessManagedProxy"}},"id":204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3038:14:0","memberName":"ACCESS_MANAGER","nodeType":"MemberAccess","referencedDeclaration":511,"src":"2994:58:0","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IAccessManager_$6119_$","typeString":"function () view external returns (contract IAccessManager)"}},"id":205,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2994:60:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}},"id":206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3055:7:0","memberName":"canCall","nodeType":"MemberAccess","referencedDeclaration":5863,"src":"2994:68:0","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$_t_bytes4_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes4) view external returns (bool,uint32)"}},"id":213,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2994:123:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"2973:144:0"},{"expression":{"arguments":[{"id":216,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":194,"src":"3131:9:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":218,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":188,"src":"3168:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":217,"name":"AccessManagedUnauthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10,"src":"3142:25:0","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":219,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3142:31:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":215,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3123:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":220,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3123:51:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":221,"nodeType":"ExpressionStatement","src":"3123:51:0"}]},"documentation":{"id":186,"nodeType":"StructuredDocumentation","src":"2562:335:0","text":" @dev Checks if the user can call a particular selector, assuming the calling contract was deployed as an AMP.\n @param user The user for which you want to check the access, typically msg.sender\n @param selector The selector of the method called (or a fake selector generated with makeSelector or another way)"},"id":223,"implemented":true,"kind":"function","modifiers":[],"name":"checkCanCall","nameLocation":"2909:12:0","nodeType":"FunctionDefinition","parameters":{"id":191,"nodeType":"ParameterList","parameters":[{"constant":false,"id":188,"mutability":"mutable","name":"user","nameLocation":"2930:4:0","nodeType":"VariableDeclaration","scope":223,"src":"2922:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":187,"name":"address","nodeType":"ElementaryTypeName","src":"2922:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":190,"mutability":"mutable","name":"selector","nameLocation":"2943:8:0","nodeType":"VariableDeclaration","scope":223,"src":"2936:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":189,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2936:6:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2921:31:0"},"returnParameters":{"id":192,"nodeType":"ParameterList","parameters":[],"src":"2967:0:0"},"scope":240,"src":"2900:279:0","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":238,"nodeType":"Block","src":"3389:46:0","statements":[{"expression":{"arguments":[{"arguments":[{"id":234,"name":"something","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":226,"src":"3419:9:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":233,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"3409:9:0","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":235,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3409:20:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":232,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3402:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":231,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3402:6:0","typeDescriptions":{}}},"id":236,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3402:28:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":230,"id":237,"nodeType":"Return","src":"3395:35:0"}]},"documentation":{"id":224,"nodeType":"StructuredDocumentation","src":"3183:126:0","text":" @dev Standard way of creating \"fake selectors\" (not necessarily tied to a method call) for specific permissions"},"id":239,"implemented":true,"kind":"function","modifiers":[],"name":"makeSelector","nameLocation":"3321:12:0","nodeType":"FunctionDefinition","parameters":{"id":227,"nodeType":"ParameterList","parameters":[{"constant":false,"id":226,"mutability":"mutable","name":"something","nameLocation":"3347:9:0","nodeType":"VariableDeclaration","scope":239,"src":"3334:22:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":225,"name":"bytes","nodeType":"ElementaryTypeName","src":"3334:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3333:24:0"},"returnParameters":{"id":230,"nodeType":"ParameterList","parameters":[{"constant":false,"id":229,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":239,"src":"3381:6:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":228,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3381:6:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3380:8:0"},"scope":240,"src":"3312:123:0","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":241,"src":"394:3043:0","usedErrors":[10],"usedEvents":[]}],"src":"39:3399:0"},"id":0},"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol":{"ast":{"absolutePath":"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol","exportedSymbols":{"AMPUtils":[240],"AccessManagedProxy":[330],"AccessManagedProxyBase":[474],"IAccessManagedProxy":[519],"IAccessManager":[6119]},"id":331,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":242,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"39:23:1"},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","file":"@openzeppelin/contracts/access/manager/IAccessManager.sol","id":244,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":331,"sourceUnit":6120,"src":"64:89:1","symbolAliases":[{"foreign":{"id":243,"name":"IAccessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6119,"src":"72:14:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol","file":"./interfaces/IAccessManagedProxy.sol","id":246,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":331,"sourceUnit":520,"src":"154:73:1","symbolAliases":[{"foreign":{"id":245,"name":"IAccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":519,"src":"162:19:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol","file":"./AccessManagedProxyBase.sol","id":248,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":331,"sourceUnit":475,"src":"228:68:1","symbolAliases":[{"foreign":{"id":247,"name":"AccessManagedProxyBase","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":474,"src":"236:22:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/AMPUtils.sol","file":"./AMPUtils.sol","id":250,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":331,"sourceUnit":241,"src":"297:40:1","symbolAliases":[{"foreign":{"id":249,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":240,"src":"305:8:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":252,"name":"AccessManagedProxyBase","nameLocations":["1479:22:1"],"nodeType":"IdentifierPath","referencedDeclaration":474,"src":"1479:22:1"},"id":253,"nodeType":"InheritanceSpecifier","src":"1479:22:1"}],"canonicalName":"AccessManagedProxy","contractDependencies":[],"contractKind":"contract","documentation":{"id":251,"nodeType":"StructuredDocumentation","src":"339:1108:1","text":" @title AccessManagedProxy\n @notice Proxy contract using IAccessManager to manage access control before delegating calls (mutable version)\n @dev It's a variant of ERC1967Proxy.\n      Currently the check is executed on any call received by the proxy contract (even calls to view methods, i.e.\n      staticcall). For gas efficiency, you can also have `passThruMethods`, and for those methods it will skip\n      the call to the AccessManager, calling directly to the implementation contract.\n      The accessManager and the passThruMethods are in the storage, but this contract doesn't include any method\n      to modify them. They should be modified by the implementation contract (check AMPUtils for functions that\n      encapsulate these operations).\n      Check https://forum.openzeppelin.com/t/accessmanagedproxy-is-a-good-idea/41917 for a discussion on the\n      advantages and disadvantages of using it. Also https://www.youtube.com/watch?v=DKdwJ9Ap9vM for a presentation\n      on this approach.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":330,"linearizedBaseContracts":[330,474,519,6610,6940],"name":"AccessManagedProxy","nameLocation":"1457:18:1","nodeType":"ContractDefinition","nodes":[{"body":{"id":283,"nodeType":"Block","src":"2762:101:1","statements":[{"expression":{"arguments":[{"id":274,"name":"accessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":261,"src":"2794:13:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}],"expression":{"id":271,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":240,"src":"2768:8:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AMPUtils_$240_$","typeString":"type(library AMPUtils)"}},"id":273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2777:16:1","memberName":"setAccessManager","nodeType":"MemberAccess","referencedDeclaration":74,"src":"2768:25:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IAccessManager_$6119_$returns$__$","typeString":"function (contract IAccessManager)"}},"id":275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2768:40:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":276,"nodeType":"ExpressionStatement","src":"2768:40:1"},{"expression":{"arguments":[{"id":280,"name":"passThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":264,"src":"2842:15:1","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}],"expression":{"id":277,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":240,"src":"2814:8:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AMPUtils_$240_$","typeString":"type(library AMPUtils)"}},"id":279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2823:18:1","memberName":"setPassThruMethods","nodeType":"MemberAccess","referencedDeclaration":137,"src":"2814:27:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_bytes4_$dyn_memory_ptr_$returns$__$","typeString":"function (bytes4[] memory)"}},"id":281,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2814:44:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":282,"nodeType":"ExpressionStatement","src":"2814:44:1"}]},"documentation":{"id":254,"nodeType":"StructuredDocumentation","src":"1632:934:1","text":" @notice Constructor of the proxy, defining the implementation and the access manager\n @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation` and\n      with `accessManager` as the ACCESS_MANAGER that will handle access control.\n @param implementation The initial implementation contract.\n @param _data If nonempty, it's used as data in a delegate call to `implementation`. This will typically be an\n              encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\n @param accessManager The access manager that will handle access control\n @param passThruMethods The selector of methods that will skip the access control validation, typically used for\n                        views and other methods for gas optimization.\n @custom:pre If `_data` is empty, `msg.value` must be zero."},"id":284,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":267,"name":"implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"2739:14:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":268,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":258,"src":"2755:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":269,"kind":"baseConstructorSpecifier","modifierName":{"id":266,"name":"AccessManagedProxyBase","nameLocations":["2716:22:1"],"nodeType":"IdentifierPath","referencedDeclaration":474,"src":"2716:22:1"},"nodeType":"ModifierInvocation","src":"2716:45:1"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":256,"mutability":"mutable","name":"implementation","nameLocation":"2594:14:1","nodeType":"VariableDeclaration","scope":284,"src":"2586:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":255,"name":"address","nodeType":"ElementaryTypeName","src":"2586:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":258,"mutability":"mutable","name":"_data","nameLocation":"2627:5:1","nodeType":"VariableDeclaration","scope":284,"src":"2614:18:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":257,"name":"bytes","nodeType":"ElementaryTypeName","src":"2614:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":261,"mutability":"mutable","name":"accessManager","nameLocation":"2653:13:1","nodeType":"VariableDeclaration","scope":284,"src":"2638:28:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"},"typeName":{"id":260,"nodeType":"UserDefinedTypeName","pathNode":{"id":259,"name":"IAccessManager","nameLocations":["2638:14:1"],"nodeType":"IdentifierPath","referencedDeclaration":6119,"src":"2638:14:1"},"referencedDeclaration":6119,"src":"2638:14:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}},"visibility":"internal"},{"constant":false,"id":264,"mutability":"mutable","name":"passThruMethods","nameLocation":"2688:15:1","nodeType":"VariableDeclaration","scope":284,"src":"2672:31:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":262,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2672:6:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":263,"nodeType":"ArrayTypeName","src":"2672:8:1","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"src":"2580:127:1"},"returnParameters":{"id":270,"nodeType":"ParameterList","parameters":[],"src":"2762:0:1"},"scope":330,"src":"2569:294:1","stateMutability":"payable","virtual":false,"visibility":"public"},{"baseFunctions":[473],"body":{"id":300,"nodeType":"Block","src":"2980:74:1","statements":[{"expression":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":293,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":240,"src":"2993:8:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AMPUtils_$240_$","typeString":"type(library AMPUtils)"}},"id":294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3002:28:1","memberName":"getAccessManagedProxyStorage","nodeType":"MemberAccess","referencedDeclaration":33,"src":"2993:37:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_AccessManagedProxyStorage_$21_storage_ptr_$","typeString":"function () pure returns (struct AMPUtils.AccessManagedProxyStorage storage pointer)"}},"id":295,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2993:39:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$21_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":296,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3033:6:1","memberName":"skipAc","nodeType":"MemberAccess","referencedDeclaration":20,"src":"2993:46:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_bool_$","typeString":"mapping(bytes4 => bool)"}},"id":298,"indexExpression":{"id":297,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":287,"src":"3040:8:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2993:56:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":292,"id":299,"nodeType":"Return","src":"2986:63:1"}]},"documentation":{"id":285,"nodeType":"StructuredDocumentation","src":"2867:38:1","text":"@inheritdoc AccessManagedProxyBase"},"id":301,"implemented":true,"kind":"function","modifiers":[],"name":"_skipAC","nameLocation":"2917:7:1","nodeType":"FunctionDefinition","overrides":{"id":289,"nodeType":"OverrideSpecifier","overrides":[],"src":"2956:8:1"},"parameters":{"id":288,"nodeType":"ParameterList","parameters":[{"constant":false,"id":287,"mutability":"mutable","name":"selector","nameLocation":"2932:8:1","nodeType":"VariableDeclaration","scope":301,"src":"2925:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":286,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2925:6:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2924:17:1"},"returnParameters":{"id":292,"nodeType":"ParameterList","parameters":[{"constant":false,"id":291,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":301,"src":"2974:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":290,"name":"bool","nodeType":"ElementaryTypeName","src":"2974:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2973:6:1"},"scope":330,"src":"2908:146:1","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[518],"body":{"id":314,"nodeType":"Block","src":"3233:73:1","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":309,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":240,"src":"3246:8:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AMPUtils_$240_$","typeString":"type(library AMPUtils)"}},"id":310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3255:28:1","memberName":"getAccessManagedProxyStorage","nodeType":"MemberAccess","referencedDeclaration":33,"src":"3246:37:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_AccessManagedProxyStorage_$21_storage_ptr_$","typeString":"function () pure returns (struct AMPUtils.AccessManagedProxyStorage storage pointer)"}},"id":311,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3246:39:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$21_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":312,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3286:15:1","memberName":"passThruMethods","nodeType":"MemberAccess","referencedDeclaration":16,"src":"3246:55:1","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage","typeString":"bytes4[] storage ref"}},"functionReturnParameters":308,"id":313,"nodeType":"Return","src":"3239:62:1"}]},"documentation":{"id":302,"nodeType":"StructuredDocumentation","src":"3058:35:1","text":"@inheritdoc IAccessManagedProxy"},"functionSelector":"14416c03","id":315,"implemented":true,"kind":"function","modifiers":[],"name":"PASS_THRU_METHODS","nameLocation":"3156:17:1","nodeType":"FunctionDefinition","overrides":{"id":304,"nodeType":"OverrideSpecifier","overrides":[],"src":"3190:8:1"},"parameters":{"id":303,"nodeType":"ParameterList","parameters":[],"src":"3173:2:1"},"returnParameters":{"id":308,"nodeType":"ParameterList","parameters":[{"constant":false,"id":307,"mutability":"mutable","name":"methods","nameLocation":"3224:7:1","nodeType":"VariableDeclaration","scope":315,"src":"3208:23:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":305,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3208:6:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":306,"nodeType":"ArrayTypeName","src":"3208:8:1","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"src":"3207:25:1"},"scope":330,"src":"3147:159:1","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[379],"body":{"id":328,"nodeType":"Block","src":"3471:71:1","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":323,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":240,"src":"3484:8:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AMPUtils_$240_$","typeString":"type(library AMPUtils)"}},"id":324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3493:28:1","memberName":"getAccessManagedProxyStorage","nodeType":"MemberAccess","referencedDeclaration":33,"src":"3484:37:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_AccessManagedProxyStorage_$21_storage_ptr_$","typeString":"function () pure returns (struct AMPUtils.AccessManagedProxyStorage storage pointer)"}},"id":325,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3484:39:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$21_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":326,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3524:13:1","memberName":"accessManager","nodeType":"MemberAccess","referencedDeclaration":13,"src":"3484:53:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}},"functionReturnParameters":322,"id":327,"nodeType":"Return","src":"3477:60:1"}]},"documentation":{"id":316,"nodeType":"StructuredDocumentation","src":"3310:35:1","text":"@inheritdoc IAccessManagedProxy"},"functionSelector":"3a7b7a39","id":329,"implemented":true,"kind":"function","modifiers":[],"name":"ACCESS_MANAGER","nameLocation":"3408:14:1","nodeType":"FunctionDefinition","overrides":{"id":318,"nodeType":"OverrideSpecifier","overrides":[],"src":"3437:8:1"},"parameters":{"id":317,"nodeType":"ParameterList","parameters":[],"src":"3422:2:1"},"returnParameters":{"id":322,"nodeType":"ParameterList","parameters":[{"constant":false,"id":321,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":329,"src":"3455:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"},"typeName":{"id":320,"nodeType":"UserDefinedTypeName","pathNode":{"id":319,"name":"IAccessManager","nameLocations":["3455:14:1"],"nodeType":"IdentifierPath","referencedDeclaration":6119,"src":"3455:14:1"},"referencedDeclaration":6119,"src":"3455:14:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}},"visibility":"internal"}],"src":"3454:16:1"},"scope":330,"src":"3399:143:1","stateMutability":"view","virtual":false,"visibility":"public"}],"scope":331,"src":"1448:2096:1","usedErrors":[494,498,6630,6643,9606,10740],"usedEvents":[484,490,6213]}],"src":"39:3506:1"},"id":1},"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol":{"ast":{"absolutePath":"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol","exportedSymbols":{"AccessManagedProxyBase":[474],"ERC1967Proxy":[6610],"IAccessManagedProxy":[519],"IAccessManager":[6119]},"id":475,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":332,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"39:23:2"},{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","file":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","id":334,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":475,"sourceUnit":6611,"src":"64:84:2","symbolAliases":[{"foreign":{"id":333,"name":"ERC1967Proxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6610,"src":"72:12:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","file":"@openzeppelin/contracts/access/manager/IAccessManager.sol","id":336,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":475,"sourceUnit":6120,"src":"149:89:2","symbolAliases":[{"foreign":{"id":335,"name":"IAccessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6119,"src":"157:14:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol","file":"./interfaces/IAccessManagedProxy.sol","id":338,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":475,"sourceUnit":520,"src":"239:73:2","symbolAliases":[{"foreign":{"id":337,"name":"IAccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":519,"src":"247:19:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":340,"name":"ERC1967Proxy","nameLocations":["1142:12:2"],"nodeType":"IdentifierPath","referencedDeclaration":6610,"src":"1142:12:2"},"id":341,"nodeType":"InheritanceSpecifier","src":"1142:12:2"},{"baseName":{"id":342,"name":"IAccessManagedProxy","nameLocations":["1156:19:2"],"nodeType":"IdentifierPath","referencedDeclaration":519,"src":"1156:19:2"},"id":343,"nodeType":"InheritanceSpecifier","src":"1156:19:2"}],"canonicalName":"AccessManagedProxyBase","contractDependencies":[],"contractKind":"contract","documentation":{"id":339,"nodeType":"StructuredDocumentation","src":"314:783:2","text":" @title AccessManagedProxyBase\n @notice Proxy contract using IAccessManager to manage access control before delegating calls.\n @dev It's a variant of ERC1967Proxy.\n      Currently the check is executed on any call received by the proxy contract even calls to view methods\n      (staticcall). In the setup of the ACCESS_MANAGER permissions you would want to make all the views and pure\n      functions enabled for the PUBLIC_ROLE.\n      This base contract delegates on descendent contracts the storage of the ACCESS_MANAGER.\n      Check https://forum.openzeppelin.com/t/accessmanagedproxy-is-a-good-idea/41917 for a discussion on the\n      advantages and disadvantages of using it.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":false,"id":474,"linearizedBaseContracts":[474,519,6610,6940],"name":"AccessManagedProxyBase","nameLocation":"1116:22:2","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":351,"mutability":"constant","name":"RECEIVE_SELECTOR","nameLocation":"1205:16:2","nodeType":"VariableDeclaration","scope":474,"src":"1180:72:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":344,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1180:6:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"arguments":[{"arguments":[{"hexValue":"72656365697665","id":348,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1241:9:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_d217fcc64ca03b17db426f651be32786de1c93adfb772d680771c96323f9d57b","typeString":"literal_string \"receive\""},"value":"receive"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d217fcc64ca03b17db426f651be32786de1c93adfb772d680771c96323f9d57b","typeString":"literal_string \"receive\""}],"id":347,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1231:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1231:20:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":346,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1224:6:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":345,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1224:6:2","typeDescriptions":{}}},"id":350,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1224:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":true,"id":359,"mutability":"constant","name":"FALLBACK_SELECTOR","nameLocation":"1281:17:2","nodeType":"VariableDeclaration","scope":474,"src":"1256:74:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":352,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1256:6:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"arguments":[{"arguments":[{"hexValue":"66616c6c6261636b","id":356,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1318:10:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_b32cdf4d3c016cb0f079f205ad61c36b1a837fb3e95c70a94bdedfca0518a010","typeString":"literal_string \"fallback\""},"value":"fallback"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_b32cdf4d3c016cb0f079f205ad61c36b1a837fb3e95c70a94bdedfca0518a010","typeString":"literal_string \"fallback\""}],"id":355,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1308:9:2","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1308:21:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":354,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1301:6:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":353,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1301:6:2","typeDescriptions":{}}},"id":358,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1301:29:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"body":{"id":371,"nodeType":"Block","src":"2098:2:2","statements":[]},"documentation":{"id":360,"nodeType":"StructuredDocumentation","src":"1335:660:2","text":" @notice Constructor of the proxy, defining the implementation and the access manager\n @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation` and\n      with `manager` as the ACCESS_MANAGER that will handle access control.\n @param implementation The initial implementation contract.\n @param _data If nonempty, it's used as data in a delegate call to `implementation`. This will typically be an\n              encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\n @custom:pre If `_data` is empty, `msg.value` must be zero."},"id":372,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":367,"name":"implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":362,"src":"2075:14:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":368,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":364,"src":"2091:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":369,"kind":"baseConstructorSpecifier","modifierName":{"id":366,"name":"ERC1967Proxy","nameLocations":["2062:12:2"],"nodeType":"IdentifierPath","referencedDeclaration":6610,"src":"2062:12:2"},"nodeType":"ModifierInvocation","src":"2062:35:2"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":365,"nodeType":"ParameterList","parameters":[{"constant":false,"id":362,"mutability":"mutable","name":"implementation","nameLocation":"2018:14:2","nodeType":"VariableDeclaration","scope":372,"src":"2010:22:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":361,"name":"address","nodeType":"ElementaryTypeName","src":"2010:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":364,"mutability":"mutable","name":"_data","nameLocation":"2047:5:2","nodeType":"VariableDeclaration","scope":372,"src":"2034:18:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":363,"name":"bytes","nodeType":"ElementaryTypeName","src":"2034:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2009:44:2"},"returnParameters":{"id":370,"nodeType":"ParameterList","parameters":[],"src":"2098:0:2"},"scope":474,"src":"1998:102:2","stateMutability":"payable","virtual":false,"visibility":"internal"},{"baseFunctions":[511],"documentation":{"id":373,"nodeType":"StructuredDocumentation","src":"2104:35:2","text":"@inheritdoc IAccessManagedProxy"},"functionSelector":"3a7b7a39","id":379,"implemented":false,"kind":"function","modifiers":[],"name":"ACCESS_MANAGER","nameLocation":"2202:14:2","nodeType":"FunctionDefinition","parameters":{"id":374,"nodeType":"ParameterList","parameters":[],"src":"2216:2:2"},"returnParameters":{"id":378,"nodeType":"ParameterList","parameters":[{"constant":false,"id":377,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":379,"src":"2248:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"},"typeName":{"id":376,"nodeType":"UserDefinedTypeName","pathNode":{"id":375,"name":"IAccessManager","nameLocations":["2248:14:2"],"nodeType":"IdentifierPath","referencedDeclaration":6119,"src":"2248:14:2"},"referencedDeclaration":6119,"src":"2248:14:2","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}},"visibility":"internal"}],"src":"2247:16:2"},"scope":474,"src":"2193:71:2","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[504],"body":{"id":391,"nodeType":"Block","src":"2367:43:2","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":387,"name":"ACCESS_MANAGER","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":379,"src":"2388:14:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IAccessManager_$6119_$","typeString":"function () view returns (contract IAccessManager)"}},"id":388,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2388:16:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}],"id":386,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2380:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":385,"name":"address","nodeType":"ElementaryTypeName","src":"2380:7:2","typeDescriptions":{}}},"id":389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2380:25:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":384,"id":390,"nodeType":"Return","src":"2373:32:2"}]},"documentation":{"id":380,"nodeType":"StructuredDocumentation","src":"2268:35:2","text":"@inheritdoc IAccessManagedProxy"},"functionSelector":"bf7e214f","id":392,"implemented":true,"kind":"function","modifiers":[],"name":"authority","nameLocation":"2315:9:2","nodeType":"FunctionDefinition","parameters":{"id":381,"nodeType":"ParameterList","parameters":[],"src":"2324:2:2"},"returnParameters":{"id":384,"nodeType":"ParameterList","parameters":[{"constant":false,"id":383,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":392,"src":"2358:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":382,"name":"address","nodeType":"ElementaryTypeName","src":"2358:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2357:9:2"},"scope":474,"src":"2306:104:2","stateMutability":"view","virtual":true,"visibility":"external"},{"baseFunctions":[6915],"body":{"id":464,"nodeType":"Block","src":"2912:478:2","statements":[{"assignments":[400],"declarations":[{"constant":false,"id":400,"mutability":"mutable","name":"selector","nameLocation":"2925:8:2","nodeType":"VariableDeclaration","scope":464,"src":"2918:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":399,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2918:6:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":424,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":405,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":401,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2936:3:2","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2940:4:2","memberName":"data","nodeType":"MemberAccess","src":"2936:8:2","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2945:6:2","memberName":"length","nodeType":"MemberAccess","src":"2936:15:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"34","id":404,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2954:1:2","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"2936:19:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"baseExpression":{"expression":{"id":417,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3041:3:2","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":418,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3045:4:2","memberName":"data","nodeType":"MemberAccess","src":"3041:8:2","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":420,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3052:1:2","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":421,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"3041:13:2","startExpression":{"hexValue":"30","id":419,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3050:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":416,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3034:6:2","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":415,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3034:6:2","typeDescriptions":{}}},"id":422,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3034:21:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2936:119:2","trueExpression":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":406,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2965:3:2","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2969:4:2","memberName":"data","nodeType":"MemberAccess","src":"2965:8:2","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2974:6:2","memberName":"length","nodeType":"MemberAccess","src":"2965:15:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":409,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2984:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2965:20:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":412,"name":"FALLBACK_SELECTOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":359,"src":"3007:17:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":413,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2965:59:2","trueExpression":{"id":411,"name":"RECEIVE_SELECTOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":351,"src":"2988:16:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"id":414,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2964:61:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"2918:137:2"},{"assignments":[426],"declarations":[{"constant":false,"id":426,"mutability":"mutable","name":"immediate","nameLocation":"3066:9:2","nodeType":"VariableDeclaration","scope":464,"src":"3061:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":425,"name":"bool","nodeType":"ElementaryTypeName","src":"3061:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":430,"initialValue":{"arguments":[{"id":428,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":400,"src":"3086:8:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":427,"name":"_skipAC","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":473,"src":"3078:7:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":429,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3078:17:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"3061:34:2"},{"condition":{"id":432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3177:10:2","subExpression":{"id":431,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":426,"src":"3178:9:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":457,"nodeType":"IfStatement","src":"3173:176:2","trueBody":{"id":456,"nodeType":"Block","src":"3189:160:2","statements":[{"expression":{"id":446,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":433,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":426,"src":"3198:9:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},null],"id":434,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"3197:13:2","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$__$","typeString":"tuple(bool,)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":438,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3238:3:2","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3242:6:2","memberName":"sender","nodeType":"MemberAccess","src":"3238:10:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":442,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3258:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManagedProxyBase_$474","typeString":"contract AccessManagedProxyBase"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManagedProxyBase_$474","typeString":"contract AccessManagedProxyBase"}],"id":441,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3250:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":440,"name":"address","nodeType":"ElementaryTypeName","src":"3250:7:2","typeDescriptions":{}}},"id":443,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3250:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":444,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":400,"src":"3265:8:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":435,"name":"ACCESS_MANAGER","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":379,"src":"3213:14:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IAccessManager_$6119_$","typeString":"function () view returns (contract IAccessManager)"}},"id":436,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3213:16:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}},"id":437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3230:7:2","memberName":"canCall","nodeType":"MemberAccess","referencedDeclaration":5863,"src":"3213:24:2","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$_t_bytes4_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes4) view external returns (bool,uint32)"}},"id":445,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3213:61:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"src":"3197:77:2","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":447,"nodeType":"ExpressionStatement","src":"3197:77:2"},{"condition":{"id":449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3286:10:2","subExpression":{"id":448,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":426,"src":"3287:9:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":455,"nodeType":"IfStatement","src":"3282:60:2","trueBody":{"errorCall":{"arguments":[{"expression":{"id":451,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3331:3:2","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3335:6:2","memberName":"sender","nodeType":"MemberAccess","src":"3331:10:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":450,"name":"AccessManagedUnauthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":494,"src":"3305:25:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":453,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3305:37:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":454,"nodeType":"RevertStatement","src":"3298:44:2"}}]}},{"expression":{"arguments":[{"id":461,"name":"implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":395,"src":"3370:14:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":458,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"3354:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_AccessManagedProxyBase_$474_$","typeString":"type(contract super AccessManagedProxyBase)"}},"id":460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3360:9:2","memberName":"_delegate","nodeType":"MemberAccess","referencedDeclaration":6915,"src":"3354:15:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":462,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3354:31:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":463,"nodeType":"ExpressionStatement","src":"3354:31:2"}]},"documentation":{"id":393,"nodeType":"StructuredDocumentation","src":"2414:426:2","text":" @notice Intercepts the super._delegate call to implement access control\n @dev Checks with the ACCESS_MANAGER if msg.sender is authorized to call the current call's function,\n and if so, delegates the current call to `implementation`.\n @param implementation The implementation contract\n This function does not return to its internal call site, it will return directly to the external caller."},"id":465,"implemented":true,"kind":"function","modifiers":[],"name":"_delegate","nameLocation":"2852:9:2","nodeType":"FunctionDefinition","overrides":{"id":397,"nodeType":"OverrideSpecifier","overrides":[],"src":"2903:8:2"},"parameters":{"id":396,"nodeType":"ParameterList","parameters":[{"constant":false,"id":395,"mutability":"mutable","name":"implementation","nameLocation":"2870:14:2","nodeType":"VariableDeclaration","scope":465,"src":"2862:22:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":394,"name":"address","nodeType":"ElementaryTypeName","src":"2862:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2861:24:2"},"returnParameters":{"id":398,"nodeType":"ParameterList","parameters":[],"src":"2912:0:2"},"scope":474,"src":"2843:547:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"documentation":{"id":466,"nodeType":"StructuredDocumentation","src":"3394:436:2","text":" @notice Returns whether to skip the access control validation or not\n @dev Hook called before ACCESS_MANAGER.canCall to enable skipping the call to the access manager for performance\n      reasons (for example on views) or to remove access control for other specific cases\n @param selector The selector of the method called\n @return Whether the access control using ACCESS_MANAGER should be skipped or not"},"id":473,"implemented":false,"kind":"function","modifiers":[],"name":"_skipAC","nameLocation":"3842:7:2","nodeType":"FunctionDefinition","parameters":{"id":469,"nodeType":"ParameterList","parameters":[{"constant":false,"id":468,"mutability":"mutable","name":"selector","nameLocation":"3857:8:2","nodeType":"VariableDeclaration","scope":473,"src":"3850:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":467,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3850:6:2","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3849:17:2"},"returnParameters":{"id":472,"nodeType":"ParameterList","parameters":[{"constant":false,"id":471,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":473,"src":"3898:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":470,"name":"bool","nodeType":"ElementaryTypeName","src":"3898:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3897:6:2"},"scope":474,"src":"3833:71:2","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":475,"src":"1098:2808:2","usedErrors":[494,498,6630,6643,9606,10740],"usedEvents":[484,490,6213]}],"src":"39:3868:2"},"id":2},"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol":{"ast":{"absolutePath":"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol","exportedSymbols":{"IAccessManagedProxy":[519],"IAccessManager":[6119]},"id":520,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":476,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:3"},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","file":"@openzeppelin/contracts/access/manager/IAccessManager.sol","id":478,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":520,"sourceUnit":6120,"src":"65:89:3","symbolAliases":[{"foreign":{"id":477,"name":"IAccessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6119,"src":"73:14:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IAccessManagedProxy","contractDependencies":[],"contractKind":"interface","documentation":{"id":479,"nodeType":"StructuredDocumentation","src":"156:462:3","text":" @title IAccessManagedProxy - Interface of AccessManagedProxy contracts\n @notice This interface gives observability of the access control setup\n @dev The `ACCESS_MANAGER()` is the AccessManager contract that stores the access roles for most of the methods,\n except those listed in `PASS_THRU_METHODS()` that are forwarded directly to the proxy and don't have access control\n (at least not by the AccessManager contract).\n @author Ensuro"},"fullyImplemented":false,"id":519,"linearizedBaseContracts":[519],"name":"IAccessManagedProxy","nameLocation":"629:19:3","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":480,"nodeType":"StructuredDocumentation","src":"653:189:3","text":" @notice The ACCESS_MANAGER that manages the access controls was updated\n @dev Authority that manages this contract was updated. Uses same interface as OZ's IAccessManaged"},"eventSelector":"2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad","id":484,"name":"AuthorityUpdated","nameLocation":"901:16:3","nodeType":"EventDefinition","parameters":{"id":483,"nodeType":"ParameterList","parameters":[{"constant":false,"id":482,"indexed":false,"mutability":"mutable","name":"authority","nameLocation":"926:9:3","nodeType":"VariableDeclaration","scope":484,"src":"918:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":481,"name":"address","nodeType":"ElementaryTypeName","src":"918:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"917:19:3"},"src":"895:42:3"},{"anonymous":false,"documentation":{"id":485,"nodeType":"StructuredDocumentation","src":"941:65:3","text":" @dev Emitted when the passThruMethods has changed."},"eventSelector":"3da94442c0a9daca8284d03a02aafdc638dfaae447d5d7879542573a9095b493","id":490,"name":"PassThruMethodsChanged","nameLocation":"1015:22:3","nodeType":"EventDefinition","parameters":{"id":489,"nodeType":"ParameterList","parameters":[{"constant":false,"id":488,"indexed":false,"mutability":"mutable","name":"newPassThruMethods","nameLocation":"1047:18:3","nodeType":"VariableDeclaration","scope":490,"src":"1038:27:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":486,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1038:6:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":487,"nodeType":"ArrayTypeName","src":"1038:8:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"src":"1037:29:3"},"src":"1009:58:3"},{"errorSelector":"068ca9d8","id":494,"name":"AccessManagedUnauthorized","nameLocation":"1121:25:3","nodeType":"ErrorDefinition","parameters":{"id":493,"nodeType":"ParameterList","parameters":[{"constant":false,"id":492,"mutability":"mutable","name":"caller","nameLocation":"1155:6:3","nodeType":"VariableDeclaration","scope":494,"src":"1147:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":491,"name":"address","nodeType":"ElementaryTypeName","src":"1147:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1146:16:3"},"src":"1115:48:3"},{"errorSelector":"c2f31e5e","id":498,"name":"AccessManagedInvalidAuthority","nameLocation":"1172:29:3","nodeType":"ErrorDefinition","parameters":{"id":497,"nodeType":"ParameterList","parameters":[{"constant":false,"id":496,"mutability":"mutable","name":"authority","nameLocation":"1210:9:3","nodeType":"VariableDeclaration","scope":498,"src":"1202:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":495,"name":"address","nodeType":"ElementaryTypeName","src":"1202:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1201:19:3"},"src":"1166:55:3"},{"documentation":{"id":499,"nodeType":"StructuredDocumentation","src":"1225:169:3","text":" @notice Returns the current authority.\n @dev Returns the current authority. Same as ACCESS_MANAGER(), added for compatibility with OZ's IAccessManaged"},"functionSelector":"bf7e214f","id":504,"implemented":false,"kind":"function","modifiers":[],"name":"authority","nameLocation":"1406:9:3","nodeType":"FunctionDefinition","parameters":{"id":500,"nodeType":"ParameterList","parameters":[],"src":"1415:2:3"},"returnParameters":{"id":503,"nodeType":"ParameterList","parameters":[{"constant":false,"id":502,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":504,"src":"1441:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":501,"name":"address","nodeType":"ElementaryTypeName","src":"1441:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1440:9:3"},"scope":519,"src":"1397:53:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":505,"nodeType":"StructuredDocumentation","src":"1454:111:3","text":" @notice AccessManager contract that handles the permissions to access the implementation methods"},"functionSelector":"3a7b7a39","id":511,"implemented":false,"kind":"function","modifiers":[],"name":"ACCESS_MANAGER","nameLocation":"1628:14:3","nodeType":"FunctionDefinition","parameters":{"id":506,"nodeType":"ParameterList","parameters":[],"src":"1642:2:3"},"returnParameters":{"id":510,"nodeType":"ParameterList","parameters":[{"constant":false,"id":509,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":511,"src":"1668:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"},"typeName":{"id":508,"nodeType":"UserDefinedTypeName","pathNode":{"id":507,"name":"IAccessManager","nameLocations":["1668:14:3"],"nodeType":"IdentifierPath","referencedDeclaration":6119,"src":"1668:14:3"},"referencedDeclaration":6119,"src":"1668:14:3","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}},"visibility":"internal"}],"src":"1667:16:3"},"scope":519,"src":"1619:65:3","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":512,"nodeType":"StructuredDocumentation","src":"1688:184:3","text":" @notice Gives observability to the methods that are skipped from access control\n @return methods The list of method selectors that skip ACCESS_MANAGER access control"},"functionSelector":"14416c03","id":518,"implemented":false,"kind":"function","modifiers":[],"name":"PASS_THRU_METHODS","nameLocation":"1935:17:3","nodeType":"FunctionDefinition","parameters":{"id":513,"nodeType":"ParameterList","parameters":[],"src":"1952:2:3"},"returnParameters":{"id":517,"nodeType":"ParameterList","parameters":[{"constant":false,"id":516,"mutability":"mutable","name":"methods","nameLocation":"1994:7:3","nodeType":"VariableDeclaration","scope":518,"src":"1978:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":514,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1978:6:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":515,"nodeType":"ArrayTypeName","src":"1978:8:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"src":"1977:25:3"},"scope":519,"src":"1926:77:3","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":520,"src":"619:1386:3","usedErrors":[494,498],"usedEvents":[484,490]}],"src":"39:1967:3"},"id":3},"@ensuro/utils/contracts/TestCurrency.sol":{"ast":{"absolutePath":"@ensuro/utils/contracts/TestCurrency.sol","exportedSymbols":{"ERC20":[7899],"TestCurrency":[589]},"id":590,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":521,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"38:23:4"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":523,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":590,"sourceUnit":7900,"src":"63:68:4","symbolAliases":[{"foreign":{"id":522,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7899,"src":"71:5:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":524,"name":"ERC20","nameLocations":["158:5:4"],"nodeType":"IdentifierPath","referencedDeclaration":7899,"src":"158:5:4"},"id":525,"nodeType":"InheritanceSpecifier","src":"158:5:4"}],"canonicalName":"TestCurrency","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":589,"linearizedBaseContracts":[589,7899,6477,8863,7977,10727],"name":"TestCurrency","nameLocation":"142:12:4","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":527,"mutability":"immutable","name":"_decimals","nameLocation":"193:9:4","nodeType":"VariableDeclaration","scope":589,"src":"168:34:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":526,"name":"uint8","nodeType":"ElementaryTypeName","src":"168:5:4","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"body":{"id":552,"nodeType":"Block","src":"345:70:4","statements":[{"expression":{"id":544,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":542,"name":"_decimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":527,"src":"351:9:4","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":543,"name":"decimals_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":535,"src":"363:9:4","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"351:21:4","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":545,"nodeType":"ExpressionStatement","src":"351:21:4"},{"expression":{"arguments":[{"expression":{"id":547,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"384:3:4","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"388:6:4","memberName":"sender","nodeType":"MemberAccess","src":"384:10:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":549,"name":"initialSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":533,"src":"396:13:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":546,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7739,"src":"378:5:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":550,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"378:32:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":551,"nodeType":"ExpressionStatement","src":"378:32:4"}]},"id":553,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":538,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":529,"src":"329:5:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":539,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":531,"src":"336:7:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":540,"kind":"baseConstructorSpecifier","modifierName":{"id":537,"name":"ERC20","nameLocations":["323:5:4"],"nodeType":"IdentifierPath","referencedDeclaration":7899,"src":"323:5:4"},"nodeType":"ModifierInvocation","src":"323:21:4"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":536,"nodeType":"ParameterList","parameters":[{"constant":false,"id":529,"mutability":"mutable","name":"name_","nameLocation":"238:5:4","nodeType":"VariableDeclaration","scope":553,"src":"224:19:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":528,"name":"string","nodeType":"ElementaryTypeName","src":"224:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":531,"mutability":"mutable","name":"symbol_","nameLocation":"263:7:4","nodeType":"VariableDeclaration","scope":553,"src":"249:21:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":530,"name":"string","nodeType":"ElementaryTypeName","src":"249:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":533,"mutability":"mutable","name":"initialSupply","nameLocation":"284:13:4","nodeType":"VariableDeclaration","scope":553,"src":"276:21:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":532,"name":"uint256","nodeType":"ElementaryTypeName","src":"276:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":535,"mutability":"mutable","name":"decimals_","nameLocation":"309:9:4","nodeType":"VariableDeclaration","scope":553,"src":"303:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":534,"name":"uint8","nodeType":"ElementaryTypeName","src":"303:5:4","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"218:104:4"},"returnParameters":{"id":541,"nodeType":"ParameterList","parameters":[],"src":"345:0:4"},"scope":589,"src":"207:208:4","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[7463],"body":{"id":561,"nodeType":"Block","src":"484:27:4","statements":[{"expression":{"id":559,"name":"_decimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":527,"src":"497:9:4","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":558,"id":560,"nodeType":"Return","src":"490:16:4"}]},"functionSelector":"313ce567","id":562,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"428:8:4","nodeType":"FunctionDefinition","overrides":{"id":555,"nodeType":"OverrideSpecifier","overrides":[],"src":"459:8:4"},"parameters":{"id":554,"nodeType":"ParameterList","parameters":[],"src":"436:2:4"},"returnParameters":{"id":558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":557,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":562,"src":"477:5:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":556,"name":"uint8","nodeType":"ElementaryTypeName","src":"477:5:4","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"476:7:4"},"scope":589,"src":"419:92:4","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":574,"nodeType":"Block","src":"579:42:4","statements":[{"expression":{"arguments":[{"id":570,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":564,"src":"598:9:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":571,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":566,"src":"609:6:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":569,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7739,"src":"592:5:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":572,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"592:24:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"functionReturnParameters":568,"id":573,"nodeType":"Return","src":"585:31:4"}]},"functionSelector":"40c10f19","id":575,"implemented":true,"kind":"function","modifiers":[],"name":"mint","nameLocation":"524:4:4","nodeType":"FunctionDefinition","parameters":{"id":567,"nodeType":"ParameterList","parameters":[{"constant":false,"id":564,"mutability":"mutable","name":"recipient","nameLocation":"537:9:4","nodeType":"VariableDeclaration","scope":575,"src":"529:17:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":563,"name":"address","nodeType":"ElementaryTypeName","src":"529:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":566,"mutability":"mutable","name":"amount","nameLocation":"556:6:4","nodeType":"VariableDeclaration","scope":575,"src":"548:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":565,"name":"uint256","nodeType":"ElementaryTypeName","src":"548:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"528:35:4"},"returnParameters":{"id":568,"nodeType":"ParameterList","parameters":[],"src":"579:0:4"},"scope":589,"src":"515:106:4","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":587,"nodeType":"Block","src":"689:42:4","statements":[{"expression":{"arguments":[{"id":583,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":577,"src":"708:9:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":584,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":579,"src":"719:6:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":582,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7772,"src":"702:5:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"702:24:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"functionReturnParameters":581,"id":586,"nodeType":"Return","src":"695:31:4"}]},"functionSelector":"9dc29fac","id":588,"implemented":true,"kind":"function","modifiers":[],"name":"burn","nameLocation":"634:4:4","nodeType":"FunctionDefinition","parameters":{"id":580,"nodeType":"ParameterList","parameters":[{"constant":false,"id":577,"mutability":"mutable","name":"recipient","nameLocation":"647:9:4","nodeType":"VariableDeclaration","scope":588,"src":"639:17:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":576,"name":"address","nodeType":"ElementaryTypeName","src":"639:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":579,"mutability":"mutable","name":"amount","nameLocation":"666:6:4","nodeType":"VariableDeclaration","scope":588,"src":"658:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":578,"name":"uint256","nodeType":"ElementaryTypeName","src":"658:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"638:35:4"},"returnParameters":{"id":581,"nodeType":"ParameterList","parameters":[],"src":"689:0:4"},"scope":589,"src":"625:106:4","stateMutability":"nonpayable","virtual":true,"visibility":"public"}],"scope":590,"src":"133:600:4","usedErrors":[6447,6452,6457,6466,6471,6476],"usedEvents":[7911,7920]}],"src":"38:696:4"},"id":4},"@ensuro/utils/contracts/TestCurrencyPermit.sol":{"ast":{"absolutePath":"@ensuro/utils/contracts/TestCurrencyPermit.sol","exportedSymbols":{"ERC20":[7899],"ERC20Permit":[8131],"TestCurrencyPermit":[664]},"id":665,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":591,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"38:23:5"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":593,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":665,"sourceUnit":7900,"src":"63:68:5","symbolAliases":[{"foreign":{"id":592,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7899,"src":"71:5:5","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol","id":595,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":665,"sourceUnit":8132,"src":"132:91:5","symbolAliases":[{"foreign":{"id":594,"name":"ERC20Permit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8131,"src":"140:11:5","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":596,"name":"ERC20Permit","nameLocations":["256:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":8131,"src":"256:11:5"},"id":597,"nodeType":"InheritanceSpecifier","src":"256:11:5"}],"canonicalName":"TestCurrencyPermit","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":664,"linearizedBaseContracts":[664,8131,11365,13924,6425,8899,7899,6477,8863,7977,10727],"name":"TestCurrencyPermit","nameLocation":"234:18:5","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":599,"mutability":"immutable","name":"_decimals","nameLocation":"297:9:5","nodeType":"VariableDeclaration","scope":664,"src":"272:34:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":598,"name":"uint8","nodeType":"ElementaryTypeName","src":"272:5:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"body":{"id":627,"nodeType":"Block","src":"468:70:5","statements":[{"expression":{"id":619,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":617,"name":"_decimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":599,"src":"474:9:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":618,"name":"decimals_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":607,"src":"486:9:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"474:21:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":620,"nodeType":"ExpressionStatement","src":"474:21:5"},{"expression":{"arguments":[{"expression":{"id":622,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"507:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"511:6:5","memberName":"sender","nodeType":"MemberAccess","src":"507:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":624,"name":"initialSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":605,"src":"519:13:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":621,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7739,"src":"501:5:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":625,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"501:32:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":626,"nodeType":"ExpressionStatement","src":"501:32:5"}]},"id":628,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":610,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":601,"src":"433:5:5","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":611,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":603,"src":"440:7:5","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":612,"kind":"baseConstructorSpecifier","modifierName":{"id":609,"name":"ERC20","nameLocations":["427:5:5"],"nodeType":"IdentifierPath","referencedDeclaration":7899,"src":"427:5:5"},"nodeType":"ModifierInvocation","src":"427:21:5"},{"arguments":[{"id":614,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":601,"src":"461:5:5","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":615,"kind":"baseConstructorSpecifier","modifierName":{"id":613,"name":"ERC20Permit","nameLocations":["449:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":8131,"src":"449:11:5"},"nodeType":"ModifierInvocation","src":"449:18:5"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":608,"nodeType":"ParameterList","parameters":[{"constant":false,"id":601,"mutability":"mutable","name":"name_","nameLocation":"342:5:5","nodeType":"VariableDeclaration","scope":628,"src":"328:19:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":600,"name":"string","nodeType":"ElementaryTypeName","src":"328:6:5","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":603,"mutability":"mutable","name":"symbol_","nameLocation":"367:7:5","nodeType":"VariableDeclaration","scope":628,"src":"353:21:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":602,"name":"string","nodeType":"ElementaryTypeName","src":"353:6:5","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":605,"mutability":"mutable","name":"initialSupply","nameLocation":"388:13:5","nodeType":"VariableDeclaration","scope":628,"src":"380:21:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":604,"name":"uint256","nodeType":"ElementaryTypeName","src":"380:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":607,"mutability":"mutable","name":"decimals_","nameLocation":"413:9:5","nodeType":"VariableDeclaration","scope":628,"src":"407:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":606,"name":"uint8","nodeType":"ElementaryTypeName","src":"407:5:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"322:104:5"},"returnParameters":{"id":616,"nodeType":"ParameterList","parameters":[],"src":"468:0:5"},"scope":664,"src":"311:227:5","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[7463],"body":{"id":636,"nodeType":"Block","src":"607:27:5","statements":[{"expression":{"id":634,"name":"_decimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":599,"src":"620:9:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":633,"id":635,"nodeType":"Return","src":"613:16:5"}]},"functionSelector":"313ce567","id":637,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"551:8:5","nodeType":"FunctionDefinition","overrides":{"id":630,"nodeType":"OverrideSpecifier","overrides":[],"src":"582:8:5"},"parameters":{"id":629,"nodeType":"ParameterList","parameters":[],"src":"559:2:5"},"returnParameters":{"id":633,"nodeType":"ParameterList","parameters":[{"constant":false,"id":632,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":637,"src":"600:5:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":631,"name":"uint8","nodeType":"ElementaryTypeName","src":"600:5:5","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"599:7:5"},"scope":664,"src":"542:92:5","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":649,"nodeType":"Block","src":"702:42:5","statements":[{"expression":{"arguments":[{"id":645,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":639,"src":"721:9:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":646,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":641,"src":"732:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":644,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7739,"src":"715:5:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":647,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"715:24:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"functionReturnParameters":643,"id":648,"nodeType":"Return","src":"708:31:5"}]},"functionSelector":"40c10f19","id":650,"implemented":true,"kind":"function","modifiers":[],"name":"mint","nameLocation":"647:4:5","nodeType":"FunctionDefinition","parameters":{"id":642,"nodeType":"ParameterList","parameters":[{"constant":false,"id":639,"mutability":"mutable","name":"recipient","nameLocation":"660:9:5","nodeType":"VariableDeclaration","scope":650,"src":"652:17:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":638,"name":"address","nodeType":"ElementaryTypeName","src":"652:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":641,"mutability":"mutable","name":"amount","nameLocation":"679:6:5","nodeType":"VariableDeclaration","scope":650,"src":"671:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":640,"name":"uint256","nodeType":"ElementaryTypeName","src":"671:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"651:35:5"},"returnParameters":{"id":643,"nodeType":"ParameterList","parameters":[],"src":"702:0:5"},"scope":664,"src":"638:106:5","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":662,"nodeType":"Block","src":"812:42:5","statements":[{"expression":{"arguments":[{"id":658,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":652,"src":"831:9:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":659,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":654,"src":"842:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":657,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7772,"src":"825:5:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":660,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"825:24:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"functionReturnParameters":656,"id":661,"nodeType":"Return","src":"818:31:5"}]},"functionSelector":"9dc29fac","id":663,"implemented":true,"kind":"function","modifiers":[],"name":"burn","nameLocation":"757:4:5","nodeType":"FunctionDefinition","parameters":{"id":655,"nodeType":"ParameterList","parameters":[{"constant":false,"id":652,"mutability":"mutable","name":"recipient","nameLocation":"770:9:5","nodeType":"VariableDeclaration","scope":663,"src":"762:17:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":651,"name":"address","nodeType":"ElementaryTypeName","src":"762:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":654,"mutability":"mutable","name":"amount","nameLocation":"789:6:5","nodeType":"VariableDeclaration","scope":663,"src":"781:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":653,"name":"uint256","nodeType":"ElementaryTypeName","src":"781:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"761:35:5"},"returnParameters":{"id":656,"nodeType":"ParameterList","parameters":[],"src":"812:0:5"},"scope":664,"src":"748:106:5","stateMutability":"nonpayable","virtual":true,"visibility":"public"}],"scope":665,"src":"225:631:5","usedErrors":[6447,6452,6457,6466,6471,6476,8008,8015,11307,11431,11433,13249,13254,13259],"usedEvents":[6405,7911,7920]}],"src":"38:819:5"},"id":5},"@ensuro/utils/contracts/TestERC4626.sol":{"ast":{"absolutePath":"@ensuro/utils/contracts/TestERC4626.sol","exportedSymbols":{"ERC20":[7899],"ERC4626":[8837],"IERC20Metadata":[8863],"IMintable":[687],"TestERC4626":[998]},"id":999,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":666,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"38:23:6"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":668,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":999,"sourceUnit":7900,"src":"63:68:6","symbolAliases":[{"foreign":{"id":667,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7899,"src":"71:5:6","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol","id":670,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":999,"sourceUnit":8838,"src":"132:83:6","symbolAliases":[{"foreign":{"id":669,"name":"ERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8837,"src":"140:7:6","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":672,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":999,"sourceUnit":8864,"src":"216:97:6","symbolAliases":[{"foreign":{"id":671,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"224:14:6","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IMintable","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":687,"linearizedBaseContracts":[687],"name":"IMintable","nameLocation":"325:9:6","nodeType":"ContractDefinition","nodes":[{"functionSelector":"40c10f19","id":679,"implemented":false,"kind":"function","modifiers":[],"name":"mint","nameLocation":"348:4:6","nodeType":"FunctionDefinition","parameters":{"id":677,"nodeType":"ParameterList","parameters":[{"constant":false,"id":674,"mutability":"mutable","name":"recipient","nameLocation":"361:9:6","nodeType":"VariableDeclaration","scope":679,"src":"353:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":673,"name":"address","nodeType":"ElementaryTypeName","src":"353:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":676,"mutability":"mutable","name":"amount","nameLocation":"380:6:6","nodeType":"VariableDeclaration","scope":679,"src":"372:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":675,"name":"uint256","nodeType":"ElementaryTypeName","src":"372:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"352:35:6"},"returnParameters":{"id":678,"nodeType":"ParameterList","parameters":[],"src":"396:0:6"},"scope":687,"src":"339:58:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"9dc29fac","id":686,"implemented":false,"kind":"function","modifiers":[],"name":"burn","nameLocation":"409:4:6","nodeType":"FunctionDefinition","parameters":{"id":684,"nodeType":"ParameterList","parameters":[{"constant":false,"id":681,"mutability":"mutable","name":"recipient","nameLocation":"422:9:6","nodeType":"VariableDeclaration","scope":686,"src":"414:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":680,"name":"address","nodeType":"ElementaryTypeName","src":"414:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":683,"mutability":"mutable","name":"amount","nameLocation":"441:6:6","nodeType":"VariableDeclaration","scope":686,"src":"433:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":682,"name":"uint256","nodeType":"ElementaryTypeName","src":"433:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"413:35:6"},"returnParameters":{"id":685,"nodeType":"ParameterList","parameters":[],"src":"457:0:6"},"scope":687,"src":"400:58:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":999,"src":"315:145:6","usedErrors":[],"usedEvents":[]},{"abstract":false,"baseContracts":[{"baseName":{"id":688,"name":"ERC4626","nameLocations":["486:7:6"],"nodeType":"IdentifierPath","referencedDeclaration":8837,"src":"486:7:6"},"id":689,"nodeType":"InheritanceSpecifier","src":"486:7:6"}],"canonicalName":"TestERC4626","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":998,"linearizedBaseContracts":[998,8837,6400,7899,6477,8863,7977,10727],"name":"TestERC4626","nameLocation":"471:11:6","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":691,"mutability":"mutable","name":"_broken","nameLocation":"512:7:6","nodeType":"VariableDeclaration","scope":998,"src":"498:21:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":690,"name":"bool","nodeType":"ElementaryTypeName","src":"498:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"functionSelector":"39d88aff","id":693,"mutability":"mutable","name":"overrideMaxDeposit","nameLocation":"539:18:6","nodeType":"VariableDeclaration","scope":998,"src":"524:33:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":692,"name":"uint256","nodeType":"ElementaryTypeName","src":"524:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"034548cd","id":695,"mutability":"mutable","name":"overrideMaxMint","nameLocation":"576:15:6","nodeType":"VariableDeclaration","scope":998,"src":"561:30:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":694,"name":"uint256","nodeType":"ElementaryTypeName","src":"561:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"38359018","id":697,"mutability":"mutable","name":"overrideMaxWithdraw","nameLocation":"610:19:6","nodeType":"VariableDeclaration","scope":998,"src":"595:34:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":696,"name":"uint256","nodeType":"ElementaryTypeName","src":"595:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"cc7fcc60","id":699,"mutability":"mutable","name":"overrideMaxRedeem","nameLocation":"648:17:6","nodeType":"VariableDeclaration","scope":998,"src":"633:32:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":698,"name":"uint256","nodeType":"ElementaryTypeName","src":"633:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":true,"functionSelector":"f3c0b892","id":708,"mutability":"constant","name":"OVERRIDE_UNSET","nameLocation":"694:14:6","nodeType":"VariableDeclaration","scope":998,"src":"670:63:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":700,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":707,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":703,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"716:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":702,"name":"uint256","nodeType":"ElementaryTypeName","src":"716:7:6","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":701,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"711:4:6","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":704,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"711:13:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":705,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"725:3:6","memberName":"max","nodeType":"MemberAccess","src":"711:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"3939","id":706,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"731:2:6","typeDescriptions":{"typeIdentifier":"t_rational_99_by_1","typeString":"int_const 99"},"value":"99"},"src":"711:22:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"canonicalName":"TestERC4626.OverrideOption","id":713,"members":[{"id":709,"name":"deposit","nameLocation":"764:7:6","nodeType":"EnumValue","src":"764:7:6"},{"id":710,"name":"mint","nameLocation":"777:4:6","nodeType":"EnumValue","src":"777:4:6"},{"id":711,"name":"withdraw","nameLocation":"787:8:6","nodeType":"EnumValue","src":"787:8:6"},{"id":712,"name":"redeem","nameLocation":"801:6:6","nodeType":"EnumValue","src":"801:6:6"}],"name":"OverrideOption","nameLocation":"743:14:6","nodeType":"EnumDefinition","src":"738:73:6"},{"errorSelector":"8185faa6","id":717,"name":"VaultIsBroken","nameLocation":"821:13:6","nodeType":"ErrorDefinition","parameters":{"id":716,"nodeType":"ParameterList","parameters":[{"constant":false,"id":715,"mutability":"mutable","name":"selector","nameLocation":"842:8:6","nodeType":"VariableDeclaration","scope":717,"src":"835:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":714,"name":"bytes4","nodeType":"ElementaryTypeName","src":"835:6:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"834:17:6"},"src":"815:37:6"},{"body":{"id":735,"nodeType":"Block","src":"876:73:6","statements":[{"expression":{"arguments":[{"id":721,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"890:8:6","subExpression":{"id":720,"name":"_broken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":691,"src":"891:7:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"arguments":[{"baseExpression":{"expression":{"id":725,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"921:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":726,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"925:4:6","memberName":"data","nodeType":"MemberAccess","src":"921:8:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":728,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"932:1:6","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":729,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"921:13:6","startExpression":{"hexValue":"30","id":727,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"930:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":724,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"914:6:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":723,"name":"bytes4","nodeType":"ElementaryTypeName","src":"914:6:6","typeDescriptions":{}}},"id":730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"914:21:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":722,"name":"VaultIsBroken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":717,"src":"900:13:6","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes4_$returns$_t_error_$","typeString":"function (bytes4) pure returns (error)"}},"id":731,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"900:36:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":719,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"882:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":732,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"882:55:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":733,"nodeType":"ExpressionStatement","src":"882:55:6"},{"id":734,"nodeType":"PlaceholderStatement","src":"943:1:6"}]},"id":736,"name":"isBroken","nameLocation":"865:8:6","nodeType":"ModifierDefinition","parameters":{"id":718,"nodeType":"ParameterList","parameters":[],"src":"873:2:6"},"src":"856:93:6","virtual":false,"visibility":"internal"},{"body":{"id":763,"nodeType":"Block","src":"1070:106:6","statements":[{"expression":{"id":761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":753,"name":"overrideMaxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":699,"src":"1076:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":754,"name":"overrideMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":697,"src":"1096:19:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":759,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":755,"name":"overrideMaxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":695,"src":"1118:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":758,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":756,"name":"overrideMaxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":693,"src":"1136:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":757,"name":"OVERRIDE_UNSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":708,"src":"1157:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1136:35:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1118:53:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1096:75:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1076:95:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":762,"nodeType":"ExpressionStatement","src":"1076:95:6"}]},"id":764,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":746,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":738,"src":"1038:5:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":747,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":740,"src":"1045:7:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":748,"kind":"baseConstructorSpecifier","modifierName":{"id":745,"name":"ERC20","nameLocations":["1032:5:6"],"nodeType":"IdentifierPath","referencedDeclaration":7899,"src":"1032:5:6"},"nodeType":"ModifierInvocation","src":"1032:21:6"},{"arguments":[{"id":750,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":743,"src":"1062:6:6","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}}],"id":751,"kind":"baseConstructorSpecifier","modifierName":{"id":749,"name":"ERC4626","nameLocations":["1054:7:6"],"nodeType":"IdentifierPath","referencedDeclaration":8837,"src":"1054:7:6"},"nodeType":"ModifierInvocation","src":"1054:15:6"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":744,"nodeType":"ParameterList","parameters":[{"constant":false,"id":738,"mutability":"mutable","name":"name_","nameLocation":"979:5:6","nodeType":"VariableDeclaration","scope":764,"src":"965:19:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":737,"name":"string","nodeType":"ElementaryTypeName","src":"965:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":740,"mutability":"mutable","name":"symbol_","nameLocation":"1000:7:6","nodeType":"VariableDeclaration","scope":764,"src":"986:21:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":739,"name":"string","nodeType":"ElementaryTypeName","src":"986:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":743,"mutability":"mutable","name":"asset_","nameLocation":"1024:6:6","nodeType":"VariableDeclaration","scope":764,"src":"1009:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"},"typeName":{"id":742,"nodeType":"UserDefinedTypeName","pathNode":{"id":741,"name":"IERC20Metadata","nameLocations":["1009:14:6"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"1009:14:6"},"referencedDeclaration":8863,"src":"1009:14:6","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"src":"964:67:6"},"returnParameters":{"id":752,"nodeType":"ParameterList","parameters":[],"src":"1070:0:6"},"scope":998,"src":"953:223:6","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[8778],"body":{"id":787,"nodeType":"Block","src":"1319:59:6","statements":[{"expression":{"arguments":[{"id":781,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":766,"src":"1340:6:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":782,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"1348:8:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":783,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":770,"src":"1358:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":784,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":772,"src":"1366:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":778,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1325:5:6","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$998_$","typeString":"type(contract super TestERC4626)"}},"id":780,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1331:8:6","memberName":"_deposit","nodeType":"MemberAccess","referencedDeclaration":8778,"src":"1325:14:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":785,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1325:48:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":786,"nodeType":"ExpressionStatement","src":"1325:48:6"}]},"id":788,"implemented":true,"kind":"function","modifiers":[{"id":776,"kind":"modifierInvocation","modifierName":{"id":775,"name":"isBroken","nameLocations":["1310:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":736,"src":"1310:8:6"},"nodeType":"ModifierInvocation","src":"1310:8:6"}],"name":"_deposit","nameLocation":"1189:8:6","nodeType":"FunctionDefinition","overrides":{"id":774,"nodeType":"OverrideSpecifier","overrides":[],"src":"1301:8:6"},"parameters":{"id":773,"nodeType":"ParameterList","parameters":[{"constant":false,"id":766,"mutability":"mutable","name":"caller","nameLocation":"1211:6:6","nodeType":"VariableDeclaration","scope":788,"src":"1203:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":765,"name":"address","nodeType":"ElementaryTypeName","src":"1203:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":768,"mutability":"mutable","name":"receiver","nameLocation":"1231:8:6","nodeType":"VariableDeclaration","scope":788,"src":"1223:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":767,"name":"address","nodeType":"ElementaryTypeName","src":"1223:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":770,"mutability":"mutable","name":"assets","nameLocation":"1253:6:6","nodeType":"VariableDeclaration","scope":788,"src":"1245:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":769,"name":"uint256","nodeType":"ElementaryTypeName","src":"1245:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":772,"mutability":"mutable","name":"shares","nameLocation":"1273:6:6","nodeType":"VariableDeclaration","scope":788,"src":"1265:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":771,"name":"uint256","nodeType":"ElementaryTypeName","src":"1265:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1197:86:6"},"returnParameters":{"id":777,"nodeType":"ParameterList","parameters":[],"src":"1319:0:6"},"scope":998,"src":"1180:198:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[8828],"body":{"id":814,"nodeType":"Block","src":"1541:67:6","statements":[{"expression":{"arguments":[{"id":807,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":790,"src":"1563:6:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":808,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":792,"src":"1571:8:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":809,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":794,"src":"1581:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":810,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"1588:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":811,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":798,"src":"1596:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":804,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1547:5:6","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$998_$","typeString":"type(contract super TestERC4626)"}},"id":806,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1553:9:6","memberName":"_withdraw","nodeType":"MemberAccess","referencedDeclaration":8828,"src":"1547:15:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1547:56:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":813,"nodeType":"ExpressionStatement","src":"1547:56:6"}]},"id":815,"implemented":true,"kind":"function","modifiers":[{"id":802,"kind":"modifierInvocation","modifierName":{"id":801,"name":"isBroken","nameLocations":["1532:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":736,"src":"1532:8:6"},"nodeType":"ModifierInvocation","src":"1532:8:6"}],"name":"_withdraw","nameLocation":"1391:9:6","nodeType":"FunctionDefinition","overrides":{"id":800,"nodeType":"OverrideSpecifier","overrides":[],"src":"1523:8:6"},"parameters":{"id":799,"nodeType":"ParameterList","parameters":[{"constant":false,"id":790,"mutability":"mutable","name":"caller","nameLocation":"1414:6:6","nodeType":"VariableDeclaration","scope":815,"src":"1406:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":789,"name":"address","nodeType":"ElementaryTypeName","src":"1406:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":792,"mutability":"mutable","name":"receiver","nameLocation":"1434:8:6","nodeType":"VariableDeclaration","scope":815,"src":"1426:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":791,"name":"address","nodeType":"ElementaryTypeName","src":"1426:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":794,"mutability":"mutable","name":"owner","nameLocation":"1456:5:6","nodeType":"VariableDeclaration","scope":815,"src":"1448:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":793,"name":"address","nodeType":"ElementaryTypeName","src":"1448:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":796,"mutability":"mutable","name":"assets","nameLocation":"1475:6:6","nodeType":"VariableDeclaration","scope":815,"src":"1467:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":795,"name":"uint256","nodeType":"ElementaryTypeName","src":"1467:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":798,"mutability":"mutable","name":"shares","nameLocation":"1495:6:6","nodeType":"VariableDeclaration","scope":815,"src":"1487:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":797,"name":"uint256","nodeType":"ElementaryTypeName","src":"1487:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1400:105:6"},"returnParameters":{"id":803,"nodeType":"ParameterList","parameters":[],"src":"1541:0:6"},"scope":998,"src":"1382:226:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":857,"nodeType":"Block","src":"1778:173:6","statements":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":822,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":820,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":817,"src":"1788:6:6","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":821,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1797:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1788:10:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":855,"nodeType":"Block","src":"1876:71:6","statements":[{"expression":{"arguments":[{"arguments":[{"id":846,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1916:4:6","typeDescriptions":{"typeIdentifier":"t_contract$_TestERC4626_$998","typeString":"contract TestERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TestERC4626_$998","typeString":"contract TestERC4626"}],"id":845,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1908:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":844,"name":"address","nodeType":"ElementaryTypeName","src":"1908:7:6","typeDescriptions":{}}},"id":847,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1908:13:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"1931:7:6","subExpression":{"id":850,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":817,"src":"1932:6:6","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":849,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1923:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":848,"name":"uint256","nodeType":"ElementaryTypeName","src":"1923:7:6","typeDescriptions":{}}},"id":852,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1923:16:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":840,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8328,"src":"1894:5:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":841,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1894:7:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":839,"name":"IMintable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":687,"src":"1884:9:6","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IMintable_$687_$","typeString":"type(contract IMintable)"}},"id":842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1884:18:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IMintable_$687","typeString":"contract IMintable"}},"id":843,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1903:4:6","memberName":"burn","nodeType":"MemberAccess","referencedDeclaration":686,"src":"1884:23:6","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256) external"}},"id":853,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1884:56:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":854,"nodeType":"ExpressionStatement","src":"1884:56:6"}]},"id":856,"nodeType":"IfStatement","src":"1784:163:6","trueBody":{"id":838,"nodeType":"Block","src":"1800:70:6","statements":[{"expression":{"arguments":[{"arguments":[{"id":830,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1840:4:6","typeDescriptions":{"typeIdentifier":"t_contract$_TestERC4626_$998","typeString":"contract TestERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TestERC4626_$998","typeString":"contract TestERC4626"}],"id":829,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1832:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":828,"name":"address","nodeType":"ElementaryTypeName","src":"1832:7:6","typeDescriptions":{}}},"id":831,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1832:13:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":834,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":817,"src":"1855:6:6","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":833,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1847:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":832,"name":"uint256","nodeType":"ElementaryTypeName","src":"1847:7:6","typeDescriptions":{}}},"id":835,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1847:15:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":824,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8328,"src":"1818:5:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1818:7:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":823,"name":"IMintable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":687,"src":"1808:9:6","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IMintable_$687_$","typeString":"type(contract IMintable)"}},"id":826,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1808:18:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IMintable_$687","typeString":"contract IMintable"}},"id":827,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1827:4:6","memberName":"mint","nodeType":"MemberAccess","referencedDeclaration":679,"src":"1808:23:6","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256) external"}},"id":836,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1808:55:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":837,"nodeType":"ExpressionStatement","src":"1808:55:6"}]}}]},"functionSelector":"c7361ed2","id":858,"implemented":true,"kind":"function","modifiers":[],"name":"discreteEarning","nameLocation":"1738:15:6","nodeType":"FunctionDefinition","parameters":{"id":818,"nodeType":"ParameterList","parameters":[{"constant":false,"id":817,"mutability":"mutable","name":"assets","nameLocation":"1761:6:6","nodeType":"VariableDeclaration","scope":858,"src":"1754:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":816,"name":"int256","nodeType":"ElementaryTypeName","src":"1754:6:6","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1753:15:6"},"returnParameters":{"id":819,"nodeType":"ParameterList","parameters":[],"src":"1778:0:6"},"scope":998,"src":"1729:222:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":867,"nodeType":"Block","src":"1997:28:6","statements":[{"expression":{"id":865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":863,"name":"_broken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":691,"src":"2003:7:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":864,"name":"broken_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":860,"src":"2013:7:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2003:17:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":866,"nodeType":"ExpressionStatement","src":"2003:17:6"}]},"functionSelector":"86de9e4f","id":868,"implemented":true,"kind":"function","modifiers":[],"name":"setBroken","nameLocation":"1964:9:6","nodeType":"FunctionDefinition","parameters":{"id":861,"nodeType":"ParameterList","parameters":[{"constant":false,"id":860,"mutability":"mutable","name":"broken_","nameLocation":"1979:7:6","nodeType":"VariableDeclaration","scope":868,"src":"1974:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":859,"name":"bool","nodeType":"ElementaryTypeName","src":"1974:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1973:14:6"},"returnParameters":{"id":862,"nodeType":"ParameterList","parameters":[],"src":"1997:0:6"},"scope":998,"src":"1955:70:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":875,"nodeType":"Block","src":"2076:25:6","statements":[{"expression":{"id":873,"name":"_broken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":691,"src":"2089:7:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":872,"id":874,"nodeType":"Return","src":"2082:14:6"}]},"functionSelector":"7fb1ad62","id":876,"implemented":true,"kind":"function","modifiers":[],"name":"broken","nameLocation":"2038:6:6","nodeType":"FunctionDefinition","parameters":{"id":869,"nodeType":"ParameterList","parameters":[],"src":"2044:2:6"},"returnParameters":{"id":872,"nodeType":"ParameterList","parameters":[{"constant":false,"id":871,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":876,"src":"2070:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":870,"name":"bool","nodeType":"ElementaryTypeName","src":"2070:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2069:6:6"},"scope":998,"src":"2029:72:6","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[8393],"body":{"id":894,"nodeType":"Block","src":"2179:101:6","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":886,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":884,"name":"overrideMaxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":693,"src":"2192:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":885,"name":"OVERRIDE_UNSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":708,"src":"2214:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2192:36:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":891,"name":"overrideMaxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":693,"src":"2257:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":892,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2192:83:6","trueExpression":{"arguments":[{"id":889,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":878,"src":"2248:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":887,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2231:5:6","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$998_$","typeString":"type(contract super TestERC4626)"}},"id":888,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2237:10:6","memberName":"maxDeposit","nodeType":"MemberAccess","referencedDeclaration":8393,"src":"2231:16:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":890,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2231:23:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":883,"id":893,"nodeType":"Return","src":"2185:90:6"}]},"functionSelector":"402d267d","id":895,"implemented":true,"kind":"function","modifiers":[],"name":"maxDeposit","nameLocation":"2114:10:6","nodeType":"FunctionDefinition","overrides":{"id":880,"nodeType":"OverrideSpecifier","overrides":[],"src":"2152:8:6"},"parameters":{"id":879,"nodeType":"ParameterList","parameters":[{"constant":false,"id":878,"mutability":"mutable","name":"owner","nameLocation":"2133:5:6","nodeType":"VariableDeclaration","scope":895,"src":"2125:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":877,"name":"address","nodeType":"ElementaryTypeName","src":"2125:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2124:15:6"},"returnParameters":{"id":883,"nodeType":"ParameterList","parameters":[{"constant":false,"id":882,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":895,"src":"2170:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":881,"name":"uint256","nodeType":"ElementaryTypeName","src":"2170:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2169:9:6"},"scope":998,"src":"2105:175:6","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[8408],"body":{"id":913,"nodeType":"Block","src":"2355:92:6","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":905,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":903,"name":"overrideMaxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":695,"src":"2368:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":904,"name":"OVERRIDE_UNSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":708,"src":"2387:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2368:33:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":910,"name":"overrideMaxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":695,"src":"2427:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2368:74:6","trueExpression":{"arguments":[{"id":908,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":897,"src":"2418:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":906,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2404:5:6","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$998_$","typeString":"type(contract super TestERC4626)"}},"id":907,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2410:7:6","memberName":"maxMint","nodeType":"MemberAccess","referencedDeclaration":8408,"src":"2404:13:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":909,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2404:20:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":902,"id":912,"nodeType":"Return","src":"2361:81:6"}]},"functionSelector":"c63d75b6","id":914,"implemented":true,"kind":"function","modifiers":[],"name":"maxMint","nameLocation":"2293:7:6","nodeType":"FunctionDefinition","overrides":{"id":899,"nodeType":"OverrideSpecifier","overrides":[],"src":"2328:8:6"},"parameters":{"id":898,"nodeType":"ParameterList","parameters":[{"constant":false,"id":897,"mutability":"mutable","name":"owner","nameLocation":"2309:5:6","nodeType":"VariableDeclaration","scope":914,"src":"2301:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":896,"name":"address","nodeType":"ElementaryTypeName","src":"2301:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2300:15:6"},"returnParameters":{"id":902,"nodeType":"ParameterList","parameters":[{"constant":false,"id":901,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":914,"src":"2346:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":900,"name":"uint256","nodeType":"ElementaryTypeName","src":"2346:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2345:9:6"},"scope":998,"src":"2284:163:6","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[8423],"body":{"id":932,"nodeType":"Block","src":"2526:104:6","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":922,"name":"overrideMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":697,"src":"2539:19:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":923,"name":"OVERRIDE_UNSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":708,"src":"2562:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2539:37:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":929,"name":"overrideMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":697,"src":"2606:19:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2539:86:6","trueExpression":{"arguments":[{"id":927,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":916,"src":"2597:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":925,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2579:5:6","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$998_$","typeString":"type(contract super TestERC4626)"}},"id":926,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2585:11:6","memberName":"maxWithdraw","nodeType":"MemberAccess","referencedDeclaration":8423,"src":"2579:17:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":928,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2579:24:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":921,"id":931,"nodeType":"Return","src":"2532:93:6"}]},"functionSelector":"ce96cb77","id":933,"implemented":true,"kind":"function","modifiers":[],"name":"maxWithdraw","nameLocation":"2460:11:6","nodeType":"FunctionDefinition","overrides":{"id":918,"nodeType":"OverrideSpecifier","overrides":[],"src":"2499:8:6"},"parameters":{"id":917,"nodeType":"ParameterList","parameters":[{"constant":false,"id":916,"mutability":"mutable","name":"owner","nameLocation":"2480:5:6","nodeType":"VariableDeclaration","scope":933,"src":"2472:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":915,"name":"address","nodeType":"ElementaryTypeName","src":"2472:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2471:15:6"},"returnParameters":{"id":921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":920,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":933,"src":"2517:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":919,"name":"uint256","nodeType":"ElementaryTypeName","src":"2517:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2516:9:6"},"scope":998,"src":"2451:179:6","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[8436],"body":{"id":951,"nodeType":"Block","src":"2707:98:6","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":941,"name":"overrideMaxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":699,"src":"2720:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":942,"name":"OVERRIDE_UNSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":708,"src":"2741:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2720:35:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":948,"name":"overrideMaxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":699,"src":"2783:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2720:80:6","trueExpression":{"arguments":[{"id":946,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":935,"src":"2774:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":944,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2758:5:6","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$998_$","typeString":"type(contract super TestERC4626)"}},"id":945,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2764:9:6","memberName":"maxRedeem","nodeType":"MemberAccess","referencedDeclaration":8436,"src":"2758:15:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2758:22:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":940,"id":950,"nodeType":"Return","src":"2713:87:6"}]},"functionSelector":"d905777e","id":952,"implemented":true,"kind":"function","modifiers":[],"name":"maxRedeem","nameLocation":"2643:9:6","nodeType":"FunctionDefinition","overrides":{"id":937,"nodeType":"OverrideSpecifier","overrides":[],"src":"2680:8:6"},"parameters":{"id":936,"nodeType":"ParameterList","parameters":[{"constant":false,"id":935,"mutability":"mutable","name":"owner","nameLocation":"2661:5:6","nodeType":"VariableDeclaration","scope":952,"src":"2653:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":934,"name":"address","nodeType":"ElementaryTypeName","src":"2653:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2652:15:6"},"returnParameters":{"id":940,"nodeType":"ParameterList","parameters":[{"constant":false,"id":939,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":952,"src":"2698:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":938,"name":"uint256","nodeType":"ElementaryTypeName","src":"2698:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2697:9:6"},"scope":998,"src":"2634:171:6","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":996,"nodeType":"Block","src":"2880:291:6","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_OverrideOption_$713","typeString":"enum TestERC4626.OverrideOption"},"id":963,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":960,"name":"option","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":955,"src":"2890:6:6","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$713","typeString":"enum TestERC4626.OverrideOption"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":961,"name":"OverrideOption","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":713,"src":"2900:14:6","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OverrideOption_$713_$","typeString":"type(enum TestERC4626.OverrideOption)"}},"id":962,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2915:7:6","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":709,"src":"2900:22:6","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$713","typeString":"enum TestERC4626.OverrideOption"}},"src":"2890:32:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":968,"nodeType":"IfStatement","src":"2886:67:6","trueBody":{"expression":{"id":966,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":964,"name":"overrideMaxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":693,"src":"2924:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":965,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":957,"src":"2945:8:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2924:29:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":967,"nodeType":"ExpressionStatement","src":"2924:29:6"}},{"condition":{"commonType":{"typeIdentifier":"t_enum$_OverrideOption_$713","typeString":"enum TestERC4626.OverrideOption"},"id":972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":969,"name":"option","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":955,"src":"2963:6:6","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$713","typeString":"enum TestERC4626.OverrideOption"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":970,"name":"OverrideOption","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":713,"src":"2973:14:6","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OverrideOption_$713_$","typeString":"type(enum TestERC4626.OverrideOption)"}},"id":971,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2988:4:6","memberName":"mint","nodeType":"MemberAccess","referencedDeclaration":710,"src":"2973:19:6","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$713","typeString":"enum TestERC4626.OverrideOption"}},"src":"2963:29:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":977,"nodeType":"IfStatement","src":"2959:61:6","trueBody":{"expression":{"id":975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":973,"name":"overrideMaxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":695,"src":"2994:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":974,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":957,"src":"3012:8:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2994:26:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":976,"nodeType":"ExpressionStatement","src":"2994:26:6"}},{"condition":{"commonType":{"typeIdentifier":"t_enum$_OverrideOption_$713","typeString":"enum TestERC4626.OverrideOption"},"id":981,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":978,"name":"option","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":955,"src":"3030:6:6","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$713","typeString":"enum TestERC4626.OverrideOption"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":979,"name":"OverrideOption","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":713,"src":"3040:14:6","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OverrideOption_$713_$","typeString":"type(enum TestERC4626.OverrideOption)"}},"id":980,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3055:8:6","memberName":"withdraw","nodeType":"MemberAccess","referencedDeclaration":711,"src":"3040:23:6","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$713","typeString":"enum TestERC4626.OverrideOption"}},"src":"3030:33:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":986,"nodeType":"IfStatement","src":"3026:69:6","trueBody":{"expression":{"id":984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":982,"name":"overrideMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":697,"src":"3065:19:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":983,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":957,"src":"3087:8:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3065:30:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":985,"nodeType":"ExpressionStatement","src":"3065:30:6"}},{"condition":{"commonType":{"typeIdentifier":"t_enum$_OverrideOption_$713","typeString":"enum TestERC4626.OverrideOption"},"id":990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":987,"name":"option","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":955,"src":"3105:6:6","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$713","typeString":"enum TestERC4626.OverrideOption"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":988,"name":"OverrideOption","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":713,"src":"3115:14:6","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OverrideOption_$713_$","typeString":"type(enum TestERC4626.OverrideOption)"}},"id":989,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3130:6:6","memberName":"redeem","nodeType":"MemberAccess","referencedDeclaration":712,"src":"3115:21:6","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$713","typeString":"enum TestERC4626.OverrideOption"}},"src":"3105:31:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":995,"nodeType":"IfStatement","src":"3101:65:6","trueBody":{"expression":{"id":993,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":991,"name":"overrideMaxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":699,"src":"3138:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":992,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":957,"src":"3158:8:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3138:28:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":994,"nodeType":"ExpressionStatement","src":"3138:28:6"}}]},"functionSelector":"d6dd0234","id":997,"implemented":true,"kind":"function","modifiers":[],"name":"setOverride","nameLocation":"2818:11:6","nodeType":"FunctionDefinition","parameters":{"id":958,"nodeType":"ParameterList","parameters":[{"constant":false,"id":955,"mutability":"mutable","name":"option","nameLocation":"2845:6:6","nodeType":"VariableDeclaration","scope":997,"src":"2830:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$713","typeString":"enum TestERC4626.OverrideOption"},"typeName":{"id":954,"nodeType":"UserDefinedTypeName","pathNode":{"id":953,"name":"OverrideOption","nameLocations":["2830:14:6"],"nodeType":"IdentifierPath","referencedDeclaration":713,"src":"2830:14:6"},"referencedDeclaration":713,"src":"2830:14:6","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$713","typeString":"enum TestERC4626.OverrideOption"}},"visibility":"internal"},{"constant":false,"id":957,"mutability":"mutable","name":"newValue","nameLocation":"2861:8:6","nodeType":"VariableDeclaration","scope":997,"src":"2853:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":956,"name":"uint256","nodeType":"ElementaryTypeName","src":"2853:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2829:41:6"},"returnParameters":{"id":959,"nodeType":"ParameterList","parameters":[],"src":"2880:0:6"},"scope":998,"src":"2809:362:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":999,"src":"462:2711:6","usedErrors":[717,6447,6452,6457,6466,6471,6476,8169,8178,8187,8196,8911],"usedEvents":[6251,6263,7911,7920]}],"src":"38:3136:6"},"id":6},"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol","exportedSymbols":{"ContextUpgradeable":[2910],"ERC20Upgradeable":[1615],"IERC20":[7977],"IERC20Errors":[6477],"IERC20Metadata":[8863],"Initializable":[7218]},"id":1616,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1000,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"105:24:7"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"@openzeppelin/contracts/token/ERC20/IERC20.sol","id":1002,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1616,"sourceUnit":7978,"src":"131:70:7","symbolAliases":[{"foreign":{"id":1001,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"139:6:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":1004,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1616,"sourceUnit":8864,"src":"202:97:7","symbolAliases":[{"foreign":{"id":1003,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"210:14:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"../../utils/ContextUpgradeable.sol","id":1006,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1616,"sourceUnit":2911,"src":"300:70:7","symbolAliases":[{"foreign":{"id":1005,"name":"ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2910,"src":"308:18:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","id":1008,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1616,"sourceUnit":6573,"src":"371:83:7","symbolAliases":[{"foreign":{"id":1007,"name":"IERC20Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6477,"src":"379:12:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":1010,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1616,"sourceUnit":7219,"src":"455:84:7","symbolAliases":[{"foreign":{"id":1009,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7218,"src":"463:13:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":1012,"name":"Initializable","nameLocations":["1337:13:7"],"nodeType":"IdentifierPath","referencedDeclaration":7218,"src":"1337:13:7"},"id":1013,"nodeType":"InheritanceSpecifier","src":"1337:13:7"},{"baseName":{"id":1014,"name":"ContextUpgradeable","nameLocations":["1352:18:7"],"nodeType":"IdentifierPath","referencedDeclaration":2910,"src":"1352:18:7"},"id":1015,"nodeType":"InheritanceSpecifier","src":"1352:18:7"},{"baseName":{"id":1016,"name":"IERC20","nameLocations":["1372:6:7"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"1372:6:7"},"id":1017,"nodeType":"InheritanceSpecifier","src":"1372:6:7"},{"baseName":{"id":1018,"name":"IERC20Metadata","nameLocations":["1380:14:7"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"1380:14:7"},"id":1019,"nodeType":"InheritanceSpecifier","src":"1380:14:7"},{"baseName":{"id":1020,"name":"IERC20Errors","nameLocations":["1396:12:7"],"nodeType":"IdentifierPath","referencedDeclaration":6477,"src":"1396:12:7"},"id":1021,"nodeType":"InheritanceSpecifier","src":"1396:12:7"}],"canonicalName":"ERC20Upgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":1011,"nodeType":"StructuredDocumentation","src":"541:757:7","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":1615,"linearizedBaseContracts":[1615,6477,8863,7977,2910,7218],"name":"ERC20Upgradeable","nameLocation":"1317:16:7","nodeType":"ContractDefinition","nodes":[{"canonicalName":"ERC20Upgradeable.ERC20Storage","documentation":{"id":1022,"nodeType":"StructuredDocumentation","src":"1415:63:7","text":"@custom:storage-location erc7201:openzeppelin.storage.ERC20"},"id":1039,"members":[{"constant":false,"id":1026,"mutability":"mutable","name":"_balances","nameLocation":"1549:9:7","nodeType":"VariableDeclaration","scope":1039,"src":"1513:45:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1025,"keyName":"account","keyNameLocation":"1529:7:7","keyType":{"id":1023,"name":"address","nodeType":"ElementaryTypeName","src":"1521:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1513:35:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1024,"name":"uint256","nodeType":"ElementaryTypeName","src":"1540:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"id":1032,"mutability":"mutable","name":"_allowances","nameLocation":"1633:11:7","nodeType":"VariableDeclaration","scope":1039,"src":"1569:75:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":1031,"keyName":"account","keyNameLocation":"1585:7:7","keyType":{"id":1027,"name":"address","nodeType":"ElementaryTypeName","src":"1577:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1569:63:7","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":1030,"keyName":"spender","keyNameLocation":"1612:7:7","keyType":{"id":1028,"name":"address","nodeType":"ElementaryTypeName","src":"1604:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1596:35:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1029,"name":"uint256","nodeType":"ElementaryTypeName","src":"1623:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"internal"},{"constant":false,"id":1034,"mutability":"mutable","name":"_totalSupply","nameLocation":"1663:12:7","nodeType":"VariableDeclaration","scope":1039,"src":"1655:20:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1033,"name":"uint256","nodeType":"ElementaryTypeName","src":"1655:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1036,"mutability":"mutable","name":"_name","nameLocation":"1693:5:7","nodeType":"VariableDeclaration","scope":1039,"src":"1686:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":1035,"name":"string","nodeType":"ElementaryTypeName","src":"1686:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1038,"mutability":"mutable","name":"_symbol","nameLocation":"1715:7:7","nodeType":"VariableDeclaration","scope":1039,"src":"1708:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":1037,"name":"string","nodeType":"ElementaryTypeName","src":"1708:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"name":"ERC20Storage","nameLocation":"1490:12:7","nodeType":"StructDefinition","scope":1615,"src":"1483:246:7","visibility":"public"},{"constant":true,"id":1042,"mutability":"constant","name":"ERC20StorageLocation","nameLocation":"1869:20:7","nodeType":"VariableDeclaration","scope":1615,"src":"1844:114:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1040,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1844:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307835326336333234376531663437646231396435636530343630303330633439376630363763613463656266373162613938656561646162653230626163653030","id":1041,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1892:66:7","typeDescriptions":{"typeIdentifier":"t_rational_37439836327923360225337895871394760624280537466773280374265222508165906222592_by_1","typeString":"int_const 3743...(69 digits omitted)...2592"},"value":"0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00"},"visibility":"private"},{"body":{"id":1049,"nodeType":"Block","src":"2039:79:7","statements":[{"AST":{"nativeSrc":"2058:54:7","nodeType":"YulBlock","src":"2058:54:7","statements":[{"nativeSrc":"2072:30:7","nodeType":"YulAssignment","src":"2072:30:7","value":{"name":"ERC20StorageLocation","nativeSrc":"2082:20:7","nodeType":"YulIdentifier","src":"2082:20:7"},"variableNames":[{"name":"$.slot","nativeSrc":"2072:6:7","nodeType":"YulIdentifier","src":"2072:6:7"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":1046,"isOffset":false,"isSlot":true,"src":"2072:6:7","suffix":"slot","valueSize":1},{"declaration":1042,"isOffset":false,"isSlot":false,"src":"2082:20:7","valueSize":1}],"id":1048,"nodeType":"InlineAssembly","src":"2049:63:7"}]},"id":1050,"implemented":true,"kind":"function","modifiers":[],"name":"_getERC20Storage","nameLocation":"1974:16:7","nodeType":"FunctionDefinition","parameters":{"id":1043,"nodeType":"ParameterList","parameters":[],"src":"1990:2:7"},"returnParameters":{"id":1047,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1046,"mutability":"mutable","name":"$","nameLocation":"2036:1:7","nodeType":"VariableDeclaration","scope":1050,"src":"2015:22:7","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":1045,"nodeType":"UserDefinedTypeName","pathNode":{"id":1044,"name":"ERC20Storage","nameLocations":["2015:12:7"],"nodeType":"IdentifierPath","referencedDeclaration":1039,"src":"2015:12:7"},"referencedDeclaration":1039,"src":"2015:12:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"src":"2014:24:7"},"scope":1615,"src":"1965:153:7","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":1065,"nodeType":"Block","src":"2373:55:7","statements":[{"expression":{"arguments":[{"id":1061,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1053,"src":"2406:5:7","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":1062,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1055,"src":"2413:7:7","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"}],"id":1060,"name":"__ERC20_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1094,"src":"2383:22:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":1063,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2383:38:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1064,"nodeType":"ExpressionStatement","src":"2383:38:7"}]},"documentation":{"id":1051,"nodeType":"StructuredDocumentation","src":"2124:152:7","text":" @dev Sets the values for {name} and {symbol}.\n Both values are immutable: they can only be set once during construction."},"id":1066,"implemented":true,"kind":"function","modifiers":[{"id":1058,"kind":"modifierInvocation","modifierName":{"id":1057,"name":"onlyInitializing","nameLocations":["2356:16:7"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"2356:16:7"},"nodeType":"ModifierInvocation","src":"2356:16:7"}],"name":"__ERC20_init","nameLocation":"2290:12:7","nodeType":"FunctionDefinition","parameters":{"id":1056,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1053,"mutability":"mutable","name":"name_","nameLocation":"2317:5:7","nodeType":"VariableDeclaration","scope":1066,"src":"2303:19:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1052,"name":"string","nodeType":"ElementaryTypeName","src":"2303:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1055,"mutability":"mutable","name":"symbol_","nameLocation":"2338:7:7","nodeType":"VariableDeclaration","scope":1066,"src":"2324:21:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1054,"name":"string","nodeType":"ElementaryTypeName","src":"2324:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2302:44:7"},"returnParameters":{"id":1059,"nodeType":"ParameterList","parameters":[],"src":"2373:0:7"},"scope":1615,"src":"2281:147:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1093,"nodeType":"Block","src":"2536:114:7","statements":[{"assignments":[1077],"declarations":[{"constant":false,"id":1077,"mutability":"mutable","name":"$","nameLocation":"2567:1:7","nodeType":"VariableDeclaration","scope":1093,"src":"2546:22:7","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":1076,"nodeType":"UserDefinedTypeName","pathNode":{"id":1075,"name":"ERC20Storage","nameLocations":["2546:12:7"],"nodeType":"IdentifierPath","referencedDeclaration":1039,"src":"2546:12:7"},"referencedDeclaration":1039,"src":"2546:12:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":1080,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1078,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1050,"src":"2571:16:7","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$1039_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":1079,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2571:18:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"2546:43:7"},{"expression":{"id":1085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1081,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1077,"src":"2599:1:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":1083,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2601:5:7","memberName":"_name","nodeType":"MemberAccess","referencedDeclaration":1036,"src":"2599:7:7","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1084,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1068,"src":"2609:5:7","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"2599:15:7","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":1086,"nodeType":"ExpressionStatement","src":"2599:15:7"},{"expression":{"id":1091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1087,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1077,"src":"2624:1:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":1089,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2626:7:7","memberName":"_symbol","nodeType":"MemberAccess","referencedDeclaration":1038,"src":"2624:9:7","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1090,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1070,"src":"2636:7:7","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"2624:19:7","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":1092,"nodeType":"ExpressionStatement","src":"2624:19:7"}]},"id":1094,"implemented":true,"kind":"function","modifiers":[{"id":1073,"kind":"modifierInvocation","modifierName":{"id":1072,"name":"onlyInitializing","nameLocations":["2519:16:7"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"2519:16:7"},"nodeType":"ModifierInvocation","src":"2519:16:7"}],"name":"__ERC20_init_unchained","nameLocation":"2443:22:7","nodeType":"FunctionDefinition","parameters":{"id":1071,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1068,"mutability":"mutable","name":"name_","nameLocation":"2480:5:7","nodeType":"VariableDeclaration","scope":1094,"src":"2466:19:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1067,"name":"string","nodeType":"ElementaryTypeName","src":"2466:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1070,"mutability":"mutable","name":"symbol_","nameLocation":"2501:7:7","nodeType":"VariableDeclaration","scope":1094,"src":"2487:21:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1069,"name":"string","nodeType":"ElementaryTypeName","src":"2487:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2465:44:7"},"returnParameters":{"id":1074,"nodeType":"ParameterList","parameters":[],"src":"2536:0:7"},"scope":1615,"src":"2434:216:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[8850],"body":{"id":1109,"nodeType":"Block","src":"2775:84:7","statements":[{"assignments":[1102],"declarations":[{"constant":false,"id":1102,"mutability":"mutable","name":"$","nameLocation":"2806:1:7","nodeType":"VariableDeclaration","scope":1109,"src":"2785:22:7","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":1101,"nodeType":"UserDefinedTypeName","pathNode":{"id":1100,"name":"ERC20Storage","nameLocations":["2785:12:7"],"nodeType":"IdentifierPath","referencedDeclaration":1039,"src":"2785:12:7"},"referencedDeclaration":1039,"src":"2785:12:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":1105,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1103,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1050,"src":"2810:16:7","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$1039_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":1104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2810:18:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"2785:43:7"},{"expression":{"expression":{"id":1106,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1102,"src":"2845:1:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":1107,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2847:5:7","memberName":"_name","nodeType":"MemberAccess","referencedDeclaration":1036,"src":"2845:7:7","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":1099,"id":1108,"nodeType":"Return","src":"2838:14:7"}]},"documentation":{"id":1095,"nodeType":"StructuredDocumentation","src":"2656:54:7","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":1110,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"2724:4:7","nodeType":"FunctionDefinition","parameters":{"id":1096,"nodeType":"ParameterList","parameters":[],"src":"2728:2:7"},"returnParameters":{"id":1099,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1098,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1110,"src":"2760:13:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1097,"name":"string","nodeType":"ElementaryTypeName","src":"2760:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2759:15:7"},"scope":1615,"src":"2715:144:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[8856],"body":{"id":1125,"nodeType":"Block","src":"3034:86:7","statements":[{"assignments":[1118],"declarations":[{"constant":false,"id":1118,"mutability":"mutable","name":"$","nameLocation":"3065:1:7","nodeType":"VariableDeclaration","scope":1125,"src":"3044:22:7","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":1117,"nodeType":"UserDefinedTypeName","pathNode":{"id":1116,"name":"ERC20Storage","nameLocations":["3044:12:7"],"nodeType":"IdentifierPath","referencedDeclaration":1039,"src":"3044:12:7"},"referencedDeclaration":1039,"src":"3044:12:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":1121,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1119,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1050,"src":"3069:16:7","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$1039_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":1120,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3069:18:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3044:43:7"},{"expression":{"expression":{"id":1122,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"3104:1:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":1123,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3106:7:7","memberName":"_symbol","nodeType":"MemberAccess","referencedDeclaration":1038,"src":"3104:9:7","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":1115,"id":1124,"nodeType":"Return","src":"3097:16:7"}]},"documentation":{"id":1111,"nodeType":"StructuredDocumentation","src":"2865:102:7","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":1126,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"2981:6:7","nodeType":"FunctionDefinition","parameters":{"id":1112,"nodeType":"ParameterList","parameters":[],"src":"2987:2:7"},"returnParameters":{"id":1115,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1114,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1126,"src":"3019:13:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1113,"name":"string","nodeType":"ElementaryTypeName","src":"3019:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3018:15:7"},"scope":1615,"src":"2972:148:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[8862],"body":{"id":1134,"nodeType":"Block","src":"3809:26:7","statements":[{"expression":{"hexValue":"3138","id":1132,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3826:2:7","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":1131,"id":1133,"nodeType":"Return","src":"3819:9:7"}]},"documentation":{"id":1127,"nodeType":"StructuredDocumentation","src":"3126:622:7","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":1135,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"3762:8:7","nodeType":"FunctionDefinition","parameters":{"id":1128,"nodeType":"ParameterList","parameters":[],"src":"3770:2:7"},"returnParameters":{"id":1131,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1130,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1135,"src":"3802:5:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1129,"name":"uint8","nodeType":"ElementaryTypeName","src":"3802:5:7","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"3801:7:7"},"scope":1615,"src":"3753:82:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[7926],"body":{"id":1150,"nodeType":"Block","src":"3929:91:7","statements":[{"assignments":[1143],"declarations":[{"constant":false,"id":1143,"mutability":"mutable","name":"$","nameLocation":"3960:1:7","nodeType":"VariableDeclaration","scope":1150,"src":"3939:22:7","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":1142,"nodeType":"UserDefinedTypeName","pathNode":{"id":1141,"name":"ERC20Storage","nameLocations":["3939:12:7"],"nodeType":"IdentifierPath","referencedDeclaration":1039,"src":"3939:12:7"},"referencedDeclaration":1039,"src":"3939:12:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":1146,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1144,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1050,"src":"3964:16:7","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$1039_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":1145,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3964:18:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3939:43:7"},{"expression":{"expression":{"id":1147,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1143,"src":"3999:1:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":1148,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4001:12:7","memberName":"_totalSupply","nodeType":"MemberAccess","referencedDeclaration":1034,"src":"3999:14:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1140,"id":1149,"nodeType":"Return","src":"3992:21:7"}]},"documentation":{"id":1136,"nodeType":"StructuredDocumentation","src":"3841:22:7","text":"@inheritdoc IERC20"},"functionSelector":"18160ddd","id":1151,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"3877:11:7","nodeType":"FunctionDefinition","parameters":{"id":1137,"nodeType":"ParameterList","parameters":[],"src":"3888:2:7"},"returnParameters":{"id":1140,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1139,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1151,"src":"3920:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1138,"name":"uint256","nodeType":"ElementaryTypeName","src":"3920:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3919:9:7"},"scope":1615,"src":"3868:152:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[7934],"body":{"id":1170,"nodeType":"Block","src":"4127:97:7","statements":[{"assignments":[1161],"declarations":[{"constant":false,"id":1161,"mutability":"mutable","name":"$","nameLocation":"4158:1:7","nodeType":"VariableDeclaration","scope":1170,"src":"4137:22:7","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":1160,"nodeType":"UserDefinedTypeName","pathNode":{"id":1159,"name":"ERC20Storage","nameLocations":["4137:12:7"],"nodeType":"IdentifierPath","referencedDeclaration":1039,"src":"4137:12:7"},"referencedDeclaration":1039,"src":"4137:12:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":1164,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1162,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1050,"src":"4162:16:7","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$1039_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":1163,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4162:18:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"4137:43:7"},{"expression":{"baseExpression":{"expression":{"id":1165,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1161,"src":"4197:1:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":1166,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4199:9:7","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":1026,"src":"4197:11:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1168,"indexExpression":{"id":1167,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1154,"src":"4209:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4197:20:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1158,"id":1169,"nodeType":"Return","src":"4190:27:7"}]},"documentation":{"id":1152,"nodeType":"StructuredDocumentation","src":"4026:22:7","text":"@inheritdoc IERC20"},"functionSelector":"70a08231","id":1171,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"4062:9:7","nodeType":"FunctionDefinition","parameters":{"id":1155,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1154,"mutability":"mutable","name":"account","nameLocation":"4080:7:7","nodeType":"VariableDeclaration","scope":1171,"src":"4072:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1153,"name":"address","nodeType":"ElementaryTypeName","src":"4072:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4071:17:7"},"returnParameters":{"id":1158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1157,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1171,"src":"4118:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1156,"name":"uint256","nodeType":"ElementaryTypeName","src":"4118:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4117:9:7"},"scope":1615,"src":"4053:171:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[7944],"body":{"id":1194,"nodeType":"Block","src":"4494:103:7","statements":[{"assignments":[1182],"declarations":[{"constant":false,"id":1182,"mutability":"mutable","name":"owner","nameLocation":"4512:5:7","nodeType":"VariableDeclaration","scope":1194,"src":"4504:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1181,"name":"address","nodeType":"ElementaryTypeName","src":"4504:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1185,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1183,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"4520:10:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1184,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4520:12:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4504:28:7"},{"expression":{"arguments":[{"id":1187,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1182,"src":"4552:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1188,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1174,"src":"4559:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1189,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1176,"src":"4563:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1186,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1322,"src":"4542:9:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1190,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4542:27:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1191,"nodeType":"ExpressionStatement","src":"4542:27:7"},{"expression":{"hexValue":"74727565","id":1192,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4586:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1180,"id":1193,"nodeType":"Return","src":"4579:11:7"}]},"documentation":{"id":1172,"nodeType":"StructuredDocumentation","src":"4230:184:7","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":1195,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"4428:8:7","nodeType":"FunctionDefinition","parameters":{"id":1177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1174,"mutability":"mutable","name":"to","nameLocation":"4445:2:7","nodeType":"VariableDeclaration","scope":1195,"src":"4437:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1173,"name":"address","nodeType":"ElementaryTypeName","src":"4437:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1176,"mutability":"mutable","name":"value","nameLocation":"4457:5:7","nodeType":"VariableDeclaration","scope":1195,"src":"4449:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1175,"name":"uint256","nodeType":"ElementaryTypeName","src":"4449:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4436:27:7"},"returnParameters":{"id":1180,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1179,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1195,"src":"4488:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1178,"name":"bool","nodeType":"ElementaryTypeName","src":"4488:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4487:6:7"},"scope":1615,"src":"4419:178:7","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[7954],"body":{"id":1218,"nodeType":"Block","src":"4719:106:7","statements":[{"assignments":[1207],"declarations":[{"constant":false,"id":1207,"mutability":"mutable","name":"$","nameLocation":"4750:1:7","nodeType":"VariableDeclaration","scope":1218,"src":"4729:22:7","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":1206,"nodeType":"UserDefinedTypeName","pathNode":{"id":1205,"name":"ERC20Storage","nameLocations":["4729:12:7"],"nodeType":"IdentifierPath","referencedDeclaration":1039,"src":"4729:12:7"},"referencedDeclaration":1039,"src":"4729:12:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":1210,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1208,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1050,"src":"4754:16:7","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$1039_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":1209,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4754:18:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"4729:43:7"},{"expression":{"baseExpression":{"baseExpression":{"expression":{"id":1211,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1207,"src":"4789:1:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":1212,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4791:11:7","memberName":"_allowances","nodeType":"MemberAccess","referencedDeclaration":1032,"src":"4789:13:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":1214,"indexExpression":{"id":1213,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1198,"src":"4803:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4789:20:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1216,"indexExpression":{"id":1215,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1200,"src":"4810:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4789:29:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1204,"id":1217,"nodeType":"Return","src":"4782:36:7"}]},"documentation":{"id":1196,"nodeType":"StructuredDocumentation","src":"4603:22:7","text":"@inheritdoc IERC20"},"functionSelector":"dd62ed3e","id":1219,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"4639:9:7","nodeType":"FunctionDefinition","parameters":{"id":1201,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1198,"mutability":"mutable","name":"owner","nameLocation":"4657:5:7","nodeType":"VariableDeclaration","scope":1219,"src":"4649:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1197,"name":"address","nodeType":"ElementaryTypeName","src":"4649:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1200,"mutability":"mutable","name":"spender","nameLocation":"4672:7:7","nodeType":"VariableDeclaration","scope":1219,"src":"4664:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1199,"name":"address","nodeType":"ElementaryTypeName","src":"4664:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4648:32:7"},"returnParameters":{"id":1204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1203,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1219,"src":"4710:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1202,"name":"uint256","nodeType":"ElementaryTypeName","src":"4710:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4709:9:7"},"scope":1615,"src":"4630:195:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[7964],"body":{"id":1242,"nodeType":"Block","src":"5211:107:7","statements":[{"assignments":[1230],"declarations":[{"constant":false,"id":1230,"mutability":"mutable","name":"owner","nameLocation":"5229:5:7","nodeType":"VariableDeclaration","scope":1242,"src":"5221:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1229,"name":"address","nodeType":"ElementaryTypeName","src":"5221:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1233,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1231,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"5237:10:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5237:12:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5221:28:7"},{"expression":{"arguments":[{"id":1235,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1230,"src":"5268:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1236,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1222,"src":"5275:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1237,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1224,"src":"5284:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1234,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[1498,1566],"referencedDeclaration":1498,"src":"5259:8:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1238,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5259:31:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1239,"nodeType":"ExpressionStatement","src":"5259:31:7"},{"expression":{"hexValue":"74727565","id":1240,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5307:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1228,"id":1241,"nodeType":"Return","src":"5300:11:7"}]},"documentation":{"id":1220,"nodeType":"StructuredDocumentation","src":"4831:296:7","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":1243,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"5141:7:7","nodeType":"FunctionDefinition","parameters":{"id":1225,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1222,"mutability":"mutable","name":"spender","nameLocation":"5157:7:7","nodeType":"VariableDeclaration","scope":1243,"src":"5149:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1221,"name":"address","nodeType":"ElementaryTypeName","src":"5149:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1224,"mutability":"mutable","name":"value","nameLocation":"5174:5:7","nodeType":"VariableDeclaration","scope":1243,"src":"5166:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1223,"name":"uint256","nodeType":"ElementaryTypeName","src":"5166:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5148:32:7"},"returnParameters":{"id":1228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1227,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1243,"src":"5205:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1226,"name":"bool","nodeType":"ElementaryTypeName","src":"5205:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5204:6:7"},"scope":1615,"src":"5132:186:7","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[7976],"body":{"id":1274,"nodeType":"Block","src":"6003:151:7","statements":[{"assignments":[1256],"declarations":[{"constant":false,"id":1256,"mutability":"mutable","name":"spender","nameLocation":"6021:7:7","nodeType":"VariableDeclaration","scope":1274,"src":"6013:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1255,"name":"address","nodeType":"ElementaryTypeName","src":"6013:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1259,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1257,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"6031:10:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6031:12:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6013:30:7"},{"expression":{"arguments":[{"id":1261,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1246,"src":"6069:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1262,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1256,"src":"6075:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1263,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1250,"src":"6084:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1260,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1614,"src":"6053:15:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1264,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6053:37:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1265,"nodeType":"ExpressionStatement","src":"6053:37:7"},{"expression":{"arguments":[{"id":1267,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1246,"src":"6110:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1268,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1248,"src":"6116:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1269,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1250,"src":"6120:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1266,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1322,"src":"6100:9:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1270,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6100:26:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1271,"nodeType":"ExpressionStatement","src":"6100:26:7"},{"expression":{"hexValue":"74727565","id":1272,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6143:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1254,"id":1273,"nodeType":"Return","src":"6136:11:7"}]},"documentation":{"id":1244,"nodeType":"StructuredDocumentation","src":"5324:581:7","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":1275,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"5919:12:7","nodeType":"FunctionDefinition","parameters":{"id":1251,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1246,"mutability":"mutable","name":"from","nameLocation":"5940:4:7","nodeType":"VariableDeclaration","scope":1275,"src":"5932:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1245,"name":"address","nodeType":"ElementaryTypeName","src":"5932:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1248,"mutability":"mutable","name":"to","nameLocation":"5954:2:7","nodeType":"VariableDeclaration","scope":1275,"src":"5946:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1247,"name":"address","nodeType":"ElementaryTypeName","src":"5946:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1250,"mutability":"mutable","name":"value","nameLocation":"5966:5:7","nodeType":"VariableDeclaration","scope":1275,"src":"5958:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1249,"name":"uint256","nodeType":"ElementaryTypeName","src":"5958:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5931:41:7"},"returnParameters":{"id":1254,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1253,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1275,"src":"5997:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1252,"name":"bool","nodeType":"ElementaryTypeName","src":"5997:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5996:6:7"},"scope":1615,"src":"5910:244:7","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1321,"nodeType":"Block","src":"6596:231:7","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1285,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1278,"src":"6610:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1288,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6626:1:7","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":1287,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6618:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1286,"name":"address","nodeType":"ElementaryTypeName","src":"6618:7:7","typeDescriptions":{}}},"id":1289,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6618:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6610:18:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1299,"nodeType":"IfStatement","src":"6606:86:7","trueBody":{"id":1298,"nodeType":"Block","src":"6630:62:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6678:1:7","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":1293,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6670:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1292,"name":"address","nodeType":"ElementaryTypeName","src":"6670:7:7","typeDescriptions":{}}},"id":1295,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6670:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1291,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6452,"src":"6651:18:7","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":1296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6651:30:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1297,"nodeType":"RevertStatement","src":"6644:37:7"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1300,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1280,"src":"6705:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1303,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6719:1:7","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":1302,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6711:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1301,"name":"address","nodeType":"ElementaryTypeName","src":"6711:7:7","typeDescriptions":{}}},"id":1304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6711:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6705:16:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1314,"nodeType":"IfStatement","src":"6701:86:7","trueBody":{"id":1313,"nodeType":"Block","src":"6723:64:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1309,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6773:1:7","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":1308,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6765:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1307,"name":"address","nodeType":"ElementaryTypeName","src":"6765:7:7","typeDescriptions":{}}},"id":1310,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6765:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1306,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6457,"src":"6744:20:7","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":1311,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6744:32:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1312,"nodeType":"RevertStatement","src":"6737:39:7"}]}},{"expression":{"arguments":[{"id":1316,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1278,"src":"6804:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1317,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1280,"src":"6810:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1318,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1282,"src":"6814:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1315,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1414,"src":"6796:7:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1319,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6796:24:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1320,"nodeType":"ExpressionStatement","src":"6796:24:7"}]},"documentation":{"id":1276,"nodeType":"StructuredDocumentation","src":"6160:362:7","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":1322,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"6536:9:7","nodeType":"FunctionDefinition","parameters":{"id":1283,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1278,"mutability":"mutable","name":"from","nameLocation":"6554:4:7","nodeType":"VariableDeclaration","scope":1322,"src":"6546:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1277,"name":"address","nodeType":"ElementaryTypeName","src":"6546:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1280,"mutability":"mutable","name":"to","nameLocation":"6568:2:7","nodeType":"VariableDeclaration","scope":1322,"src":"6560:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1279,"name":"address","nodeType":"ElementaryTypeName","src":"6560:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1282,"mutability":"mutable","name":"value","nameLocation":"6580:5:7","nodeType":"VariableDeclaration","scope":1322,"src":"6572:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1281,"name":"uint256","nodeType":"ElementaryTypeName","src":"6572:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6545:41:7"},"returnParameters":{"id":1284,"nodeType":"ParameterList","parameters":[],"src":"6596:0:7"},"scope":1615,"src":"6527:300:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1413,"nodeType":"Block","src":"7217:1095:7","statements":[{"assignments":[1334],"declarations":[{"constant":false,"id":1334,"mutability":"mutable","name":"$","nameLocation":"7248:1:7","nodeType":"VariableDeclaration","scope":1413,"src":"7227:22:7","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":1333,"nodeType":"UserDefinedTypeName","pathNode":{"id":1332,"name":"ERC20Storage","nameLocations":["7227:12:7"],"nodeType":"IdentifierPath","referencedDeclaration":1039,"src":"7227:12:7"},"referencedDeclaration":1039,"src":"7227:12:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":1337,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1335,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1050,"src":"7252:16:7","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$1039_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":1336,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7252:18:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"7227:43:7"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1338,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1325,"src":"7284:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1341,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7300:1:7","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":1340,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7292:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1339,"name":"address","nodeType":"ElementaryTypeName","src":"7292:7:7","typeDescriptions":{}}},"id":1342,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7292:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7284:18:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1380,"nodeType":"Block","src":"7460:366:7","statements":[{"assignments":[1352],"declarations":[{"constant":false,"id":1352,"mutability":"mutable","name":"fromBalance","nameLocation":"7482:11:7","nodeType":"VariableDeclaration","scope":1380,"src":"7474:19:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1351,"name":"uint256","nodeType":"ElementaryTypeName","src":"7474:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1357,"initialValue":{"baseExpression":{"expression":{"id":1353,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1334,"src":"7496:1:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":1354,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7498:9:7","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":1026,"src":"7496:11:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1356,"indexExpression":{"id":1355,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1325,"src":"7508:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7496:17:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7474:39:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1358,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1352,"src":"7531:11:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1359,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1329,"src":"7545:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7531:19:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1368,"nodeType":"IfStatement","src":"7527:115:7","trueBody":{"id":1367,"nodeType":"Block","src":"7552:90:7","statements":[{"errorCall":{"arguments":[{"id":1362,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1325,"src":"7602:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1363,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1352,"src":"7608:11:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1364,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1329,"src":"7621:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1361,"name":"ERC20InsufficientBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6447,"src":"7577:24:7","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":1365,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7577:50:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1366,"nodeType":"RevertStatement","src":"7570:57:7"}]}},{"id":1379,"nodeType":"UncheckedBlock","src":"7655:161:7","statements":[{"expression":{"id":1377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":1369,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1334,"src":"7762:1:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":1372,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7764:9:7","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":1026,"src":"7762:11:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1373,"indexExpression":{"id":1371,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1325,"src":"7774:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7762:17:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1374,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1352,"src":"7782:11:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1375,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1329,"src":"7796:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7782:19:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7762:39:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1378,"nodeType":"ExpressionStatement","src":"7762:39:7"}]}]},"id":1381,"nodeType":"IfStatement","src":"7280:546:7","trueBody":{"id":1350,"nodeType":"Block","src":"7304:150:7","statements":[{"expression":{"id":1348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1344,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1334,"src":"7420:1:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":1346,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7422:12:7","memberName":"_totalSupply","nodeType":"MemberAccess","referencedDeclaration":1034,"src":"7420:14:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1347,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1329,"src":"7438:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7420:23:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1349,"nodeType":"ExpressionStatement","src":"7420:23:7"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1382,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1327,"src":"7840:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1385,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7854:1:7","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":1384,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7846:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1383,"name":"address","nodeType":"ElementaryTypeName","src":"7846:7:7","typeDescriptions":{}}},"id":1386,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7846:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7840:16:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1405,"nodeType":"Block","src":"8057:208:7","statements":[{"id":1404,"nodeType":"UncheckedBlock","src":"8071:184:7","statements":[{"expression":{"id":1402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":1396,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1334,"src":"8216:1:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":1399,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8218:9:7","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":1026,"src":"8216:11:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1400,"indexExpression":{"id":1398,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1327,"src":"8228:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8216:15:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1401,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1329,"src":"8235:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8216:24:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1403,"nodeType":"ExpressionStatement","src":"8216:24:7"}]}]},"id":1406,"nodeType":"IfStatement","src":"7836:429:7","trueBody":{"id":1395,"nodeType":"Block","src":"7858:193:7","statements":[{"id":1394,"nodeType":"UncheckedBlock","src":"7872:169:7","statements":[{"expression":{"id":1392,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1388,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1334,"src":"8003:1:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":1390,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8005:12:7","memberName":"_totalSupply","nodeType":"MemberAccess","referencedDeclaration":1034,"src":"8003:14:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":1391,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1329,"src":"8021:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8003:23:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1393,"nodeType":"ExpressionStatement","src":"8003:23:7"}]}]}},{"eventCall":{"arguments":[{"id":1408,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1325,"src":"8289:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1409,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1327,"src":"8295:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1410,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1329,"src":"8299:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1407,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7911,"src":"8280:8:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1411,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8280:25:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1412,"nodeType":"EmitStatement","src":"8275:30:7"}]},"documentation":{"id":1323,"nodeType":"StructuredDocumentation","src":"6833:304:7","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":1414,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"7151:7:7","nodeType":"FunctionDefinition","parameters":{"id":1330,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1325,"mutability":"mutable","name":"from","nameLocation":"7167:4:7","nodeType":"VariableDeclaration","scope":1414,"src":"7159:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1324,"name":"address","nodeType":"ElementaryTypeName","src":"7159:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1327,"mutability":"mutable","name":"to","nameLocation":"7181:2:7","nodeType":"VariableDeclaration","scope":1414,"src":"7173:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1326,"name":"address","nodeType":"ElementaryTypeName","src":"7173:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1329,"mutability":"mutable","name":"value","nameLocation":"7193:5:7","nodeType":"VariableDeclaration","scope":1414,"src":"7185:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1328,"name":"uint256","nodeType":"ElementaryTypeName","src":"7185:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7158:41:7"},"returnParameters":{"id":1331,"nodeType":"ParameterList","parameters":[],"src":"7217:0:7"},"scope":1615,"src":"7142:1170:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1446,"nodeType":"Block","src":"8711:152:7","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1427,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1422,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"8725:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1425,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8744:1:7","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":1424,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8736:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1423,"name":"address","nodeType":"ElementaryTypeName","src":"8736:7:7","typeDescriptions":{}}},"id":1426,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8736:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8725:21:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1436,"nodeType":"IfStatement","src":"8721:91:7","trueBody":{"id":1435,"nodeType":"Block","src":"8748:64:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1431,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8798:1:7","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":1430,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8790:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1429,"name":"address","nodeType":"ElementaryTypeName","src":"8790:7:7","typeDescriptions":{}}},"id":1432,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8790:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1428,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6457,"src":"8769:20:7","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":1433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8769:32:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1434,"nodeType":"RevertStatement","src":"8762:39:7"}]}},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":1440,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8837:1:7","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":1439,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8829:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1438,"name":"address","nodeType":"ElementaryTypeName","src":"8829:7:7","typeDescriptions":{}}},"id":1441,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8829:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1442,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"8841:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1443,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1419,"src":"8850:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1437,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1414,"src":"8821:7:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1444,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8821:35:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1445,"nodeType":"ExpressionStatement","src":"8821:35:7"}]},"documentation":{"id":1415,"nodeType":"StructuredDocumentation","src":"8318:332:7","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":1447,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"8664:5:7","nodeType":"FunctionDefinition","parameters":{"id":1420,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1417,"mutability":"mutable","name":"account","nameLocation":"8678:7:7","nodeType":"VariableDeclaration","scope":1447,"src":"8670:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1416,"name":"address","nodeType":"ElementaryTypeName","src":"8670:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1419,"mutability":"mutable","name":"value","nameLocation":"8695:5:7","nodeType":"VariableDeclaration","scope":1447,"src":"8687:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1418,"name":"uint256","nodeType":"ElementaryTypeName","src":"8687:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8669:32:7"},"returnParameters":{"id":1421,"nodeType":"ParameterList","parameters":[],"src":"8711:0:7"},"scope":1615,"src":"8655:208:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1479,"nodeType":"Block","src":"9237:150:7","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1455,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1450,"src":"9251:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1458,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9270:1:7","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":1457,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9262:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1456,"name":"address","nodeType":"ElementaryTypeName","src":"9262:7:7","typeDescriptions":{}}},"id":1459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9262:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9251:21:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1469,"nodeType":"IfStatement","src":"9247:89:7","trueBody":{"id":1468,"nodeType":"Block","src":"9274:62:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1464,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9322:1:7","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":1463,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9314:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1462,"name":"address","nodeType":"ElementaryTypeName","src":"9314:7:7","typeDescriptions":{}}},"id":1465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9314:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1461,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6452,"src":"9295:18:7","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":1466,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9295:30:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1467,"nodeType":"RevertStatement","src":"9288:37:7"}]}},{"expression":{"arguments":[{"id":1471,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1450,"src":"9353:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":1474,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9370:1:7","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":1473,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9362:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1472,"name":"address","nodeType":"ElementaryTypeName","src":"9362:7:7","typeDescriptions":{}}},"id":1475,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9362:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1476,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1452,"src":"9374:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1470,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1414,"src":"9345:7:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1477,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9345:35:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1478,"nodeType":"ExpressionStatement","src":"9345:35:7"}]},"documentation":{"id":1448,"nodeType":"StructuredDocumentation","src":"8869:307:7","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":1480,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"9190:5:7","nodeType":"FunctionDefinition","parameters":{"id":1453,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1450,"mutability":"mutable","name":"account","nameLocation":"9204:7:7","nodeType":"VariableDeclaration","scope":1480,"src":"9196:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1449,"name":"address","nodeType":"ElementaryTypeName","src":"9196:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1452,"mutability":"mutable","name":"value","nameLocation":"9221:5:7","nodeType":"VariableDeclaration","scope":1480,"src":"9213:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1451,"name":"uint256","nodeType":"ElementaryTypeName","src":"9213:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9195:32:7"},"returnParameters":{"id":1454,"nodeType":"ParameterList","parameters":[],"src":"9237:0:7"},"scope":1615,"src":"9181:206:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1497,"nodeType":"Block","src":"9997:54:7","statements":[{"expression":{"arguments":[{"id":1491,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1483,"src":"10016:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1492,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1485,"src":"10023:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1493,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1487,"src":"10032:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":1494,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10039:4:7","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":1490,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[1498,1566],"referencedDeclaration":1566,"src":"10007:8:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":1495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10007:37:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1496,"nodeType":"ExpressionStatement","src":"10007:37:7"}]},"documentation":{"id":1481,"nodeType":"StructuredDocumentation","src":"9393:525:7","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":1498,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"9932:8:7","nodeType":"FunctionDefinition","parameters":{"id":1488,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1483,"mutability":"mutable","name":"owner","nameLocation":"9949:5:7","nodeType":"VariableDeclaration","scope":1498,"src":"9941:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1482,"name":"address","nodeType":"ElementaryTypeName","src":"9941:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1485,"mutability":"mutable","name":"spender","nameLocation":"9964:7:7","nodeType":"VariableDeclaration","scope":1498,"src":"9956:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1484,"name":"address","nodeType":"ElementaryTypeName","src":"9956:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1487,"mutability":"mutable","name":"value","nameLocation":"9981:5:7","nodeType":"VariableDeclaration","scope":1498,"src":"9973:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1486,"name":"uint256","nodeType":"ElementaryTypeName","src":"9973:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9940:47:7"},"returnParameters":{"id":1489,"nodeType":"ParameterList","parameters":[],"src":"9997:0:7"},"scope":1615,"src":"9923:128:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1565,"nodeType":"Block","src":"10998:389:7","statements":[{"assignments":[1512],"declarations":[{"constant":false,"id":1512,"mutability":"mutable","name":"$","nameLocation":"11029:1:7","nodeType":"VariableDeclaration","scope":1565,"src":"11008:22:7","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":1511,"nodeType":"UserDefinedTypeName","pathNode":{"id":1510,"name":"ERC20Storage","nameLocations":["11008:12:7"],"nodeType":"IdentifierPath","referencedDeclaration":1039,"src":"11008:12:7"},"referencedDeclaration":1039,"src":"11008:12:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":1515,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1513,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1050,"src":"11033:16:7","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$1039_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":1514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11033:18:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"11008:43:7"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1516,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1501,"src":"11065:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1519,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11082:1:7","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":1518,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11074:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1517,"name":"address","nodeType":"ElementaryTypeName","src":"11074:7:7","typeDescriptions":{}}},"id":1520,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11074:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11065:19:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1530,"nodeType":"IfStatement","src":"11061:89:7","trueBody":{"id":1529,"nodeType":"Block","src":"11086:64:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1525,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11136:1:7","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":1524,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11128:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1523,"name":"address","nodeType":"ElementaryTypeName","src":"11128:7:7","typeDescriptions":{}}},"id":1526,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11128:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1522,"name":"ERC20InvalidApprover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6471,"src":"11107:20:7","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":1527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11107:32:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1528,"nodeType":"RevertStatement","src":"11100:39:7"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1531,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1503,"src":"11163:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1534,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11182:1:7","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":1533,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11174:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1532,"name":"address","nodeType":"ElementaryTypeName","src":"11174:7:7","typeDescriptions":{}}},"id":1535,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11174:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11163:21:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1545,"nodeType":"IfStatement","src":"11159:90:7","trueBody":{"id":1544,"nodeType":"Block","src":"11186:63:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1540,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11235:1:7","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":1539,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11227:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1538,"name":"address","nodeType":"ElementaryTypeName","src":"11227:7:7","typeDescriptions":{}}},"id":1541,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11227:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1537,"name":"ERC20InvalidSpender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6476,"src":"11207:19:7","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":1542,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11207:31:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1543,"nodeType":"RevertStatement","src":"11200:38:7"}]}},{"expression":{"id":1554,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"expression":{"id":1546,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1512,"src":"11258:1:7","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":1550,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11260:11:7","memberName":"_allowances","nodeType":"MemberAccess","referencedDeclaration":1032,"src":"11258:13:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":1551,"indexExpression":{"id":1548,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1501,"src":"11272:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11258:20:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1552,"indexExpression":{"id":1549,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1503,"src":"11279:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"11258:29:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1553,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1505,"src":"11290:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11258:37:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1555,"nodeType":"ExpressionStatement","src":"11258:37:7"},{"condition":{"id":1556,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1507,"src":"11309:9:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1564,"nodeType":"IfStatement","src":"11305:76:7","trueBody":{"id":1563,"nodeType":"Block","src":"11320:61:7","statements":[{"eventCall":{"arguments":[{"id":1558,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1501,"src":"11348:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1559,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1503,"src":"11355:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1560,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1505,"src":"11364:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1557,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7920,"src":"11339:8:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1561,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11339:31:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1562,"nodeType":"EmitStatement","src":"11334:36:7"}]}}]},"documentation":{"id":1499,"nodeType":"StructuredDocumentation","src":"10057:838:7","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 sets 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":1566,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"10909:8:7","nodeType":"FunctionDefinition","parameters":{"id":1508,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1501,"mutability":"mutable","name":"owner","nameLocation":"10926:5:7","nodeType":"VariableDeclaration","scope":1566,"src":"10918:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1500,"name":"address","nodeType":"ElementaryTypeName","src":"10918:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1503,"mutability":"mutable","name":"spender","nameLocation":"10941:7:7","nodeType":"VariableDeclaration","scope":1566,"src":"10933:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1502,"name":"address","nodeType":"ElementaryTypeName","src":"10933:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1505,"mutability":"mutable","name":"value","nameLocation":"10958:5:7","nodeType":"VariableDeclaration","scope":1566,"src":"10950:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1504,"name":"uint256","nodeType":"ElementaryTypeName","src":"10950:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1507,"mutability":"mutable","name":"emitEvent","nameLocation":"10970:9:7","nodeType":"VariableDeclaration","scope":1566,"src":"10965:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1506,"name":"bool","nodeType":"ElementaryTypeName","src":"10965:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10917:63:7"},"returnParameters":{"id":1509,"nodeType":"ParameterList","parameters":[],"src":"10998:0:7"},"scope":1615,"src":"10900:487:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1613,"nodeType":"Block","src":"11758:387:7","statements":[{"assignments":[1577],"declarations":[{"constant":false,"id":1577,"mutability":"mutable","name":"currentAllowance","nameLocation":"11776:16:7","nodeType":"VariableDeclaration","scope":1613,"src":"11768:24:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1576,"name":"uint256","nodeType":"ElementaryTypeName","src":"11768:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1582,"initialValue":{"arguments":[{"id":1579,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1569,"src":"11805:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1580,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1571,"src":"11812:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1578,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1219,"src":"11795:9:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":1581,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11795:25:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11768:52:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1589,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1583,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1577,"src":"11834:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":1586,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11858:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":1585,"name":"uint256","nodeType":"ElementaryTypeName","src":"11858:7:7","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":1584,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11853:4:7","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":1587,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11853:13:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":1588,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11867:3:7","memberName":"max","nodeType":"MemberAccess","src":"11853:17:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11834:36:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1612,"nodeType":"IfStatement","src":"11830:309:7","trueBody":{"id":1611,"nodeType":"Block","src":"11872:267:7","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1590,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1577,"src":"11890:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1591,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1573,"src":"11909:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11890:24:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1600,"nodeType":"IfStatement","src":"11886:130:7","trueBody":{"id":1599,"nodeType":"Block","src":"11916:100:7","statements":[{"errorCall":{"arguments":[{"id":1594,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1571,"src":"11968:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1595,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1577,"src":"11977:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1596,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1573,"src":"11995:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1593,"name":"ERC20InsufficientAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6466,"src":"11941:26:7","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":1597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11941:60:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1598,"nodeType":"RevertStatement","src":"11934:67:7"}]}},{"id":1610,"nodeType":"UncheckedBlock","src":"12029:100:7","statements":[{"expression":{"arguments":[{"id":1602,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1569,"src":"12066:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1603,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1571,"src":"12073:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1604,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1577,"src":"12082:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1605,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1573,"src":"12101:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12082:24:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":1607,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"12108:5:7","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":1601,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[1498,1566],"referencedDeclaration":1566,"src":"12057:8:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":1608,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12057:57:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1609,"nodeType":"ExpressionStatement","src":"12057:57:7"}]}]}}]},"documentation":{"id":1567,"nodeType":"StructuredDocumentation","src":"11393:271:7","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":1614,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"11678:15:7","nodeType":"FunctionDefinition","parameters":{"id":1574,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1569,"mutability":"mutable","name":"owner","nameLocation":"11702:5:7","nodeType":"VariableDeclaration","scope":1614,"src":"11694:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1568,"name":"address","nodeType":"ElementaryTypeName","src":"11694:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1571,"mutability":"mutable","name":"spender","nameLocation":"11717:7:7","nodeType":"VariableDeclaration","scope":1614,"src":"11709:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1570,"name":"address","nodeType":"ElementaryTypeName","src":"11709:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1573,"mutability":"mutable","name":"value","nameLocation":"11734:5:7","nodeType":"VariableDeclaration","scope":1614,"src":"11726:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1572,"name":"uint256","nodeType":"ElementaryTypeName","src":"11726:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11693:47:7"},"returnParameters":{"id":1575,"nodeType":"ParameterList","parameters":[],"src":"11758:0:7"},"scope":1615,"src":"11669:476:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":1616,"src":"1299:10848:7","usedErrors":[6447,6452,6457,6466,6471,6476,6967,6970],"usedEvents":[6975,7911,7920]}],"src":"105:12043:7"},"id":7},"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol","exportedSymbols":{"ECDSA":[13697],"EIP712Upgradeable":[3628],"ERC20PermitUpgradeable":[1784],"ERC20Upgradeable":[1615],"IERC20Permit":[8899],"Initializable":[7218],"NoncesUpgradeable":[3124]},"id":1785,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1617,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"122:24:8"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","id":1619,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1785,"sourceUnit":8900,"src":"148:93:8","symbolAliases":[{"foreign":{"id":1618,"name":"IERC20Permit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8899,"src":"156:12:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol","file":"../ERC20Upgradeable.sol","id":1621,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1785,"sourceUnit":1616,"src":"242:57:8","symbolAliases":[{"foreign":{"id":1620,"name":"ERC20Upgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1615,"src":"250:16:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","id":1623,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1785,"sourceUnit":13698,"src":"300:75:8","symbolAliases":[{"foreign":{"id":1622,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13697,"src":"308:5:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol","file":"../../../utils/cryptography/EIP712Upgradeable.sol","id":1625,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1785,"sourceUnit":3629,"src":"376:84:8","symbolAliases":[{"foreign":{"id":1624,"name":"EIP712Upgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3628,"src":"384:17:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/NoncesUpgradeable.sol","file":"../../../utils/NoncesUpgradeable.sol","id":1627,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1785,"sourceUnit":3125,"src":"461:71:8","symbolAliases":[{"foreign":{"id":1626,"name":"NoncesUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3124,"src":"469:17:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":1629,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1785,"sourceUnit":7219,"src":"533:84:8","symbolAliases":[{"foreign":{"id":1628,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7218,"src":"541:13:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":1631,"name":"Initializable","nameLocations":["1153:13:8"],"nodeType":"IdentifierPath","referencedDeclaration":7218,"src":"1153:13:8"},"id":1632,"nodeType":"InheritanceSpecifier","src":"1153:13:8"},{"baseName":{"id":1633,"name":"ERC20Upgradeable","nameLocations":["1168:16:8"],"nodeType":"IdentifierPath","referencedDeclaration":1615,"src":"1168:16:8"},"id":1634,"nodeType":"InheritanceSpecifier","src":"1168:16:8"},{"baseName":{"id":1635,"name":"IERC20Permit","nameLocations":["1186:12:8"],"nodeType":"IdentifierPath","referencedDeclaration":8899,"src":"1186:12:8"},"id":1636,"nodeType":"InheritanceSpecifier","src":"1186:12:8"},{"baseName":{"id":1637,"name":"EIP712Upgradeable","nameLocations":["1200:17:8"],"nodeType":"IdentifierPath","referencedDeclaration":3628,"src":"1200:17:8"},"id":1638,"nodeType":"InheritanceSpecifier","src":"1200:17:8"},{"baseName":{"id":1639,"name":"NoncesUpgradeable","nameLocations":["1219:17:8"],"nodeType":"IdentifierPath","referencedDeclaration":3124,"src":"1219:17:8"},"id":1640,"nodeType":"InheritanceSpecifier","src":"1219:17:8"}],"canonicalName":"ERC20PermitUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":1630,"nodeType":"StructuredDocumentation","src":"619:489:8","text":" @dev Implementation of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by\n presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't\n need to send a transaction, and thus is not required to hold Ether at all."},"fullyImplemented":true,"id":1784,"linearizedBaseContracts":[1784,3124,3628,6425,8899,1615,6477,8863,7977,2910,7218],"name":"ERC20PermitUpgradeable","nameLocation":"1127:22:8","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":1645,"mutability":"constant","name":"PERMIT_TYPEHASH","nameLocation":"1268:15:8","nodeType":"VariableDeclaration","scope":1784,"src":"1243:146:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1641,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1243:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"5065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e6529","id":1643,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1304:84:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9","typeString":"literal_string \"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\""},"value":"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9","typeString":"literal_string \"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\""}],"id":1642,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1294:9:8","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1644,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1294:95:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"documentation":{"id":1646,"nodeType":"StructuredDocumentation","src":"1396:52:8","text":" @dev Permit deadline has expired."},"errorSelector":"62791302","id":1650,"name":"ERC2612ExpiredSignature","nameLocation":"1459:23:8","nodeType":"ErrorDefinition","parameters":{"id":1649,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1648,"mutability":"mutable","name":"deadline","nameLocation":"1491:8:8","nodeType":"VariableDeclaration","scope":1650,"src":"1483:16:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1647,"name":"uint256","nodeType":"ElementaryTypeName","src":"1483:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1482:18:8"},"src":"1453:48:8"},{"documentation":{"id":1651,"nodeType":"StructuredDocumentation","src":"1507:45:8","text":" @dev Mismatched signature."},"errorSelector":"4b800e46","id":1657,"name":"ERC2612InvalidSigner","nameLocation":"1563:20:8","nodeType":"ErrorDefinition","parameters":{"id":1656,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1653,"mutability":"mutable","name":"signer","nameLocation":"1592:6:8","nodeType":"VariableDeclaration","scope":1657,"src":"1584:14:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1652,"name":"address","nodeType":"ElementaryTypeName","src":"1584:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1655,"mutability":"mutable","name":"owner","nameLocation":"1608:5:8","nodeType":"VariableDeclaration","scope":1657,"src":"1600:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1654,"name":"address","nodeType":"ElementaryTypeName","src":"1600:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1583:31:8"},"src":"1557:58:8"},{"body":{"id":1670,"nodeType":"Block","src":"1921:51:8","statements":[{"expression":{"arguments":[{"id":1666,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1660,"src":"1955:4:8","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"31","id":1667,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1961:3:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6","typeString":"literal_string \"1\""},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6","typeString":"literal_string \"1\""}],"id":1665,"name":"__EIP712_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3381,"src":"1931:23:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":1668,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1931:34:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1669,"nodeType":"ExpressionStatement","src":"1931:34:8"}]},"documentation":{"id":1658,"nodeType":"StructuredDocumentation","src":"1621:221:8","text":" @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\"1\"`.\n It's a good idea to use the same `name` that is defined as the ERC-20 token name."},"id":1671,"implemented":true,"kind":"function","modifiers":[{"id":1663,"kind":"modifierInvocation","modifierName":{"id":1662,"name":"onlyInitializing","nameLocations":["1904:16:8"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"1904:16:8"},"nodeType":"ModifierInvocation","src":"1904:16:8"}],"name":"__ERC20Permit_init","nameLocation":"1856:18:8","nodeType":"FunctionDefinition","parameters":{"id":1661,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1660,"mutability":"mutable","name":"name","nameLocation":"1889:4:8","nodeType":"VariableDeclaration","scope":1671,"src":"1875:18:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1659,"name":"string","nodeType":"ElementaryTypeName","src":"1875:6:8","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1874:20:8"},"returnParameters":{"id":1664,"nodeType":"ParameterList","parameters":[],"src":"1921:0:8"},"scope":1784,"src":"1847:125:8","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1678,"nodeType":"Block","src":"2057:2:8","statements":[]},"id":1679,"implemented":true,"kind":"function","modifiers":[{"id":1676,"kind":"modifierInvocation","modifierName":{"id":1675,"name":"onlyInitializing","nameLocations":["2040:16:8"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"2040:16:8"},"nodeType":"ModifierInvocation","src":"2040:16:8"}],"name":"__ERC20Permit_init_unchained","nameLocation":"1987:28:8","nodeType":"FunctionDefinition","parameters":{"id":1674,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1673,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1679,"src":"2016:13:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1672,"name":"string","nodeType":"ElementaryTypeName","src":"2016:6:8","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2015:15:8"},"returnParameters":{"id":1677,"nodeType":"ParameterList","parameters":[],"src":"2057:0:8"},"scope":1784,"src":"1978:81:8","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[8884],"body":{"id":1755,"nodeType":"Block","src":"2287:483:8","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1700,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1697,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"2301:5:8","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2307:9:8","memberName":"timestamp","nodeType":"MemberAccess","src":"2301:15:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":1699,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1688,"src":"2319:8:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2301:26:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1706,"nodeType":"IfStatement","src":"2297:97:8","trueBody":{"id":1705,"nodeType":"Block","src":"2329:65:8","statements":[{"errorCall":{"arguments":[{"id":1702,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1688,"src":"2374:8:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1701,"name":"ERC2612ExpiredSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1650,"src":"2350:23:8","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":1703,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2350:33:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1704,"nodeType":"RevertStatement","src":"2343:40:8"}]}},{"assignments":[1708],"declarations":[{"constant":false,"id":1708,"mutability":"mutable","name":"structHash","nameLocation":"2412:10:8","nodeType":"VariableDeclaration","scope":1755,"src":"2404:18:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1707,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2404:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":1722,"initialValue":{"arguments":[{"arguments":[{"id":1712,"name":"PERMIT_TYPEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1645,"src":"2446:15:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1713,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1682,"src":"2463:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1714,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1684,"src":"2470:7:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1715,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1686,"src":"2479:5:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":1717,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1682,"src":"2496:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1716,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3098,"src":"2486:9:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":1718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2486:16:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1719,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1688,"src":"2504:8:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1710,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2435:3:8","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1711,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2439:6:8","memberName":"encode","nodeType":"MemberAccess","src":"2435:10:8","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1720,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2435:78:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1709,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2425:9:8","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1721,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2425:89:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2404:110:8"},{"assignments":[1724],"declarations":[{"constant":false,"id":1724,"mutability":"mutable","name":"hash","nameLocation":"2533:4:8","nodeType":"VariableDeclaration","scope":1755,"src":"2525:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1723,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2525:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":1728,"initialValue":{"arguments":[{"id":1726,"name":"structHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1708,"src":"2557:10:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1725,"name":"_hashTypedDataV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3430,"src":"2540:16:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":1727,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2540:28:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2525:43:8"},{"assignments":[1730],"declarations":[{"constant":false,"id":1730,"mutability":"mutable","name":"signer","nameLocation":"2587:6:8","nodeType":"VariableDeclaration","scope":1755,"src":"2579:14:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1729,"name":"address","nodeType":"ElementaryTypeName","src":"2579:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1738,"initialValue":{"arguments":[{"id":1733,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1724,"src":"2610:4:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1734,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1690,"src":"2616:1:8","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1735,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1692,"src":"2619:1:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1736,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1694,"src":"2622:1:8","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":1731,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13697,"src":"2596:5:8","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$13697_$","typeString":"type(library ECDSA)"}},"id":1732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2602:7:8","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":13619,"src":"2596:13:8","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":1737,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2596:28:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2579:45:8"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1739,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1730,"src":"2638:6:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":1740,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1682,"src":"2648:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2638:15:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1748,"nodeType":"IfStatement","src":"2634:88:8","trueBody":{"id":1747,"nodeType":"Block","src":"2655:67:8","statements":[{"errorCall":{"arguments":[{"id":1743,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1730,"src":"2697:6:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1744,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1682,"src":"2705:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1742,"name":"ERC2612InvalidSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1657,"src":"2676:20:8","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$returns$_t_error_$","typeString":"function (address,address) pure returns (error)"}},"id":1745,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2676:35:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1746,"nodeType":"RevertStatement","src":"2669:42:8"}]}},{"expression":{"arguments":[{"id":1750,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1682,"src":"2741:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1751,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1684,"src":"2748:7:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1752,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1686,"src":"2757:5:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1749,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[1498,1566],"referencedDeclaration":1498,"src":"2732:8:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1753,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2732:31:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1754,"nodeType":"ExpressionStatement","src":"2732:31:8"}]},"documentation":{"id":1680,"nodeType":"StructuredDocumentation","src":"2065:28:8","text":"@inheritdoc IERC20Permit"},"functionSelector":"d505accf","id":1756,"implemented":true,"kind":"function","modifiers":[],"name":"permit","nameLocation":"2107:6:8","nodeType":"FunctionDefinition","parameters":{"id":1695,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1682,"mutability":"mutable","name":"owner","nameLocation":"2131:5:8","nodeType":"VariableDeclaration","scope":1756,"src":"2123:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1681,"name":"address","nodeType":"ElementaryTypeName","src":"2123:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1684,"mutability":"mutable","name":"spender","nameLocation":"2154:7:8","nodeType":"VariableDeclaration","scope":1756,"src":"2146:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1683,"name":"address","nodeType":"ElementaryTypeName","src":"2146:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1686,"mutability":"mutable","name":"value","nameLocation":"2179:5:8","nodeType":"VariableDeclaration","scope":1756,"src":"2171:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1685,"name":"uint256","nodeType":"ElementaryTypeName","src":"2171:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1688,"mutability":"mutable","name":"deadline","nameLocation":"2202:8:8","nodeType":"VariableDeclaration","scope":1756,"src":"2194:16:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1687,"name":"uint256","nodeType":"ElementaryTypeName","src":"2194:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1690,"mutability":"mutable","name":"v","nameLocation":"2226:1:8","nodeType":"VariableDeclaration","scope":1756,"src":"2220:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1689,"name":"uint8","nodeType":"ElementaryTypeName","src":"2220:5:8","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1692,"mutability":"mutable","name":"r","nameLocation":"2245:1:8","nodeType":"VariableDeclaration","scope":1756,"src":"2237:9:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1691,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2237:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1694,"mutability":"mutable","name":"s","nameLocation":"2264:1:8","nodeType":"VariableDeclaration","scope":1756,"src":"2256:9:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1693,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2256:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2113:158:8"},"returnParameters":{"id":1696,"nodeType":"ParameterList","parameters":[],"src":"2287:0:8"},"scope":1784,"src":"2098:672:8","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[3076,8892],"body":{"id":1772,"nodeType":"Block","src":"2920:43:8","statements":[{"expression":{"arguments":[{"id":1769,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1759,"src":"2950:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":1767,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2937:5:8","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC20PermitUpgradeable_$1784_$","typeString":"type(contract super ERC20PermitUpgradeable)"}},"id":1768,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2943:6:8","memberName":"nonces","nodeType":"MemberAccess","referencedDeclaration":3076,"src":"2937:12:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1770,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2937:19:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1766,"id":1771,"nodeType":"Return","src":"2930:26:8"}]},"documentation":{"id":1757,"nodeType":"StructuredDocumentation","src":"2776:28:8","text":"@inheritdoc IERC20Permit"},"functionSelector":"7ecebe00","id":1773,"implemented":true,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"2818:6:8","nodeType":"FunctionDefinition","overrides":{"id":1763,"nodeType":"OverrideSpecifier","overrides":[{"id":1761,"name":"IERC20Permit","nameLocations":["2869:12:8"],"nodeType":"IdentifierPath","referencedDeclaration":8899,"src":"2869:12:8"},{"id":1762,"name":"NoncesUpgradeable","nameLocations":["2883:17:8"],"nodeType":"IdentifierPath","referencedDeclaration":3124,"src":"2883:17:8"}],"src":"2860:41:8"},"parameters":{"id":1760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1759,"mutability":"mutable","name":"owner","nameLocation":"2833:5:8","nodeType":"VariableDeclaration","scope":1773,"src":"2825:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1758,"name":"address","nodeType":"ElementaryTypeName","src":"2825:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2824:15:8"},"returnParameters":{"id":1766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1765,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1773,"src":"2911:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1764,"name":"uint256","nodeType":"ElementaryTypeName","src":"2911:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2910:9:8"},"scope":1784,"src":"2809:154:8","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[8898],"body":{"id":1782,"nodeType":"Block","src":"3115:44:8","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1779,"name":"_domainSeparatorV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3391,"src":"3132:18:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":1780,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3132:20:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":1778,"id":1781,"nodeType":"Return","src":"3125:27:8"}]},"documentation":{"id":1774,"nodeType":"StructuredDocumentation","src":"2969:28:8","text":"@inheritdoc IERC20Permit"},"functionSelector":"3644e515","id":1783,"implemented":true,"kind":"function","modifiers":[],"name":"DOMAIN_SEPARATOR","nameLocation":"3064:16:8","nodeType":"FunctionDefinition","parameters":{"id":1775,"nodeType":"ParameterList","parameters":[],"src":"3080:2:8"},"returnParameters":{"id":1778,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1777,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1783,"src":"3106:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1776,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3106:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3105:9:8"},"scope":1784,"src":"3055:104:8","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":1785,"src":"1109:2052:8","usedErrors":[1650,1657,3027,6447,6452,6457,6466,6471,6476,6967,6970,13249,13254,13259],"usedEvents":[6405,6975,7911,7920]}],"src":"122:3040:8"},"id":8},"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol","exportedSymbols":{"ContextUpgradeable":[2910],"ERC165Upgradeable":[3668],"ERC721Upgradeable":[2864],"ERC721Utils":[9594],"IERC165":[14272],"IERC721":[9471],"IERC721Errors":[6525],"IERC721Metadata":[9517],"Initializable":[7218],"Strings":[13238]},"id":2865,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1786,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"107:24:9"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","file":"@openzeppelin/contracts/token/ERC721/IERC721.sol","id":1788,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2865,"sourceUnit":9472,"src":"133:73:9","symbolAliases":[{"foreign":{"id":1787,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9471,"src":"141:7:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol","file":"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol","id":1790,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2865,"sourceUnit":9518,"src":"207:100:9","symbolAliases":[{"foreign":{"id":1789,"name":"IERC721Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9517,"src":"215:15:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol","file":"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol","id":1792,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2865,"sourceUnit":9595,"src":"308:87:9","symbolAliases":[{"foreign":{"id":1791,"name":"ERC721Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9594,"src":"316:11:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"../../utils/ContextUpgradeable.sol","id":1794,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2865,"sourceUnit":2911,"src":"396:70:9","symbolAliases":[{"foreign":{"id":1793,"name":"ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2910,"src":"404:18:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","file":"@openzeppelin/contracts/utils/Strings.sol","id":1796,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2865,"sourceUnit":13239,"src":"467:66:9","symbolAliases":[{"foreign":{"id":1795,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13238,"src":"475:7:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":1798,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2865,"sourceUnit":14273,"src":"534:80:9","symbolAliases":[{"foreign":{"id":1797,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"542:7:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol","file":"../../utils/introspection/ERC165Upgradeable.sol","id":1800,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2865,"sourceUnit":3669,"src":"615:82:9","symbolAliases":[{"foreign":{"id":1799,"name":"ERC165Upgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3668,"src":"623:17:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","id":1802,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2865,"sourceUnit":6573,"src":"698:84:9","symbolAliases":[{"foreign":{"id":1801,"name":"IERC721Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6525,"src":"706:13:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":1804,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2865,"sourceUnit":7219,"src":"783:84:9","symbolAliases":[{"foreign":{"id":1803,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7218,"src":"791:13:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":1806,"name":"Initializable","nameLocations":["1156:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":7218,"src":"1156:13:9"},"id":1807,"nodeType":"InheritanceSpecifier","src":"1156:13:9"},{"baseName":{"id":1808,"name":"ContextUpgradeable","nameLocations":["1171:18:9"],"nodeType":"IdentifierPath","referencedDeclaration":2910,"src":"1171:18:9"},"id":1809,"nodeType":"InheritanceSpecifier","src":"1171:18:9"},{"baseName":{"id":1810,"name":"ERC165Upgradeable","nameLocations":["1191:17:9"],"nodeType":"IdentifierPath","referencedDeclaration":3668,"src":"1191:17:9"},"id":1811,"nodeType":"InheritanceSpecifier","src":"1191:17:9"},{"baseName":{"id":1812,"name":"IERC721","nameLocations":["1210:7:9"],"nodeType":"IdentifierPath","referencedDeclaration":9471,"src":"1210:7:9"},"id":1813,"nodeType":"InheritanceSpecifier","src":"1210:7:9"},{"baseName":{"id":1814,"name":"IERC721Metadata","nameLocations":["1219:15:9"],"nodeType":"IdentifierPath","referencedDeclaration":9517,"src":"1219:15:9"},"id":1815,"nodeType":"InheritanceSpecifier","src":"1219:15:9"},{"baseName":{"id":1816,"name":"IERC721Errors","nameLocations":["1236:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":6525,"src":"1236:13:9"},"id":1817,"nodeType":"InheritanceSpecifier","src":"1236:13:9"}],"canonicalName":"ERC721Upgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":1805,"nodeType":"StructuredDocumentation","src":"869:247:9","text":" @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC-721] Non-Fungible Token Standard, including\n the Metadata extension, but not including the Enumerable extension, which is available separately as\n {ERC721Enumerable}."},"fullyImplemented":true,"id":2864,"linearizedBaseContracts":[2864,6525,9517,9471,3668,14272,2910,7218],"name":"ERC721Upgradeable","nameLocation":"1135:17:9","nodeType":"ContractDefinition","nodes":[{"global":false,"id":1820,"libraryName":{"id":1818,"name":"Strings","nameLocations":["1262:7:9"],"nodeType":"IdentifierPath","referencedDeclaration":13238,"src":"1262:7:9"},"nodeType":"UsingForDirective","src":"1256:26:9","typeName":{"id":1819,"name":"uint256","nodeType":"ElementaryTypeName","src":"1274:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"canonicalName":"ERC721Upgradeable.ERC721Storage","documentation":{"id":1821,"nodeType":"StructuredDocumentation","src":"1288:64:9","text":"@custom:storage-location erc7201:openzeppelin.storage.ERC721"},"id":1844,"members":[{"constant":false,"id":1823,"mutability":"mutable","name":"_name","nameLocation":"1417:5:9","nodeType":"VariableDeclaration","scope":1844,"src":"1410:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":1822,"name":"string","nodeType":"ElementaryTypeName","src":"1410:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1825,"mutability":"mutable","name":"_symbol","nameLocation":"1464:7:9","nodeType":"VariableDeclaration","scope":1844,"src":"1457:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":1824,"name":"string","nodeType":"ElementaryTypeName","src":"1457:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1829,"mutability":"mutable","name":"_owners","nameLocation":"1518:7:9","nodeType":"VariableDeclaration","scope":1844,"src":"1482:43:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"},"typeName":{"id":1828,"keyName":"tokenId","keyNameLocation":"1498:7:9","keyType":{"id":1826,"name":"uint256","nodeType":"ElementaryTypeName","src":"1490:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1482:35:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1827,"name":"address","nodeType":"ElementaryTypeName","src":"1509:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"internal"},{"constant":false,"id":1833,"mutability":"mutable","name":"_balances","nameLocation":"1570:9:9","nodeType":"VariableDeclaration","scope":1844,"src":"1536:43:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1832,"keyName":"owner","keyNameLocation":"1552:5:9","keyType":{"id":1830,"name":"address","nodeType":"ElementaryTypeName","src":"1544:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1536:33:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1831,"name":"uint256","nodeType":"ElementaryTypeName","src":"1561:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"id":1837,"mutability":"mutable","name":"_tokenApprovals","nameLocation":"1626:15:9","nodeType":"VariableDeclaration","scope":1844,"src":"1590:51:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"},"typeName":{"id":1836,"keyName":"tokenId","keyNameLocation":"1606:7:9","keyType":{"id":1834,"name":"uint256","nodeType":"ElementaryTypeName","src":"1598:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1590:35:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1835,"name":"address","nodeType":"ElementaryTypeName","src":"1617:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"internal"},{"constant":false,"id":1843,"mutability":"mutable","name":"_operatorApprovals","nameLocation":"1712:18:9","nodeType":"VariableDeclaration","scope":1844,"src":"1652:78:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$","typeString":"mapping(address => mapping(address => bool))"},"typeName":{"id":1842,"keyName":"owner","keyNameLocation":"1668:5:9","keyType":{"id":1838,"name":"address","nodeType":"ElementaryTypeName","src":"1660:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1652:59:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$","typeString":"mapping(address => mapping(address => bool))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1841,"keyName":"operator","keyNameLocation":"1693:8:9","keyType":{"id":1839,"name":"address","nodeType":"ElementaryTypeName","src":"1685:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1677:33:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1840,"name":"bool","nodeType":"ElementaryTypeName","src":"1705:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}}},"visibility":"internal"}],"name":"ERC721Storage","nameLocation":"1364:13:9","nodeType":"StructDefinition","scope":2864,"src":"1357:380:9","visibility":"public"},{"constant":true,"id":1847,"mutability":"constant","name":"ERC721StorageLocation","nameLocation":"1878:21:9","nodeType":"VariableDeclaration","scope":2864,"src":"1853:115:9","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1845,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1853:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307838306262326236333863633230626334643061363064363639343066336162346130306331643762333133343937636138326662306234616230303739333030","id":1846,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1902:66:9","typeDescriptions":{"typeIdentifier":"t_rational_58226744478722834339948329933988999792353370511964151963072532422914231210752_by_1","typeString":"int_const 5822...(69 digits omitted)...0752"},"value":"0x80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300"},"visibility":"private"},{"body":{"id":1854,"nodeType":"Block","src":"2051:80:9","statements":[{"AST":{"nativeSrc":"2070:55:9","nodeType":"YulBlock","src":"2070:55:9","statements":[{"nativeSrc":"2084:31:9","nodeType":"YulAssignment","src":"2084:31:9","value":{"name":"ERC721StorageLocation","nativeSrc":"2094:21:9","nodeType":"YulIdentifier","src":"2094:21:9"},"variableNames":[{"name":"$.slot","nativeSrc":"2084:6:9","nodeType":"YulIdentifier","src":"2084:6:9"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":1851,"isOffset":false,"isSlot":true,"src":"2084:6:9","suffix":"slot","valueSize":1},{"declaration":1847,"isOffset":false,"isSlot":false,"src":"2094:21:9","valueSize":1}],"id":1853,"nodeType":"InlineAssembly","src":"2061:64:9"}]},"id":1855,"implemented":true,"kind":"function","modifiers":[],"name":"_getERC721Storage","nameLocation":"1984:17:9","nodeType":"FunctionDefinition","parameters":{"id":1848,"nodeType":"ParameterList","parameters":[],"src":"2001:2:9"},"returnParameters":{"id":1852,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1851,"mutability":"mutable","name":"$","nameLocation":"2048:1:9","nodeType":"VariableDeclaration","scope":1855,"src":"2026:23:9","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":1850,"nodeType":"UserDefinedTypeName","pathNode":{"id":1849,"name":"ERC721Storage","nameLocations":["2026:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":1844,"src":"2026:13:9"},"referencedDeclaration":1844,"src":"2026:13:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"src":"2025:25:9"},"scope":2864,"src":"1975:156:9","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":1870,"nodeType":"Block","src":"2343:56:9","statements":[{"expression":{"arguments":[{"id":1866,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1858,"src":"2377:5:9","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":1867,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1860,"src":"2384:7:9","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"}],"id":1865,"name":"__ERC721_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1899,"src":"2353:23:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":1868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2353:39:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1869,"nodeType":"ExpressionStatement","src":"2353:39:9"}]},"documentation":{"id":1856,"nodeType":"StructuredDocumentation","src":"2137:108:9","text":" @dev Initializes the contract by setting a `name` and a `symbol` to the token collection."},"id":1871,"implemented":true,"kind":"function","modifiers":[{"id":1863,"kind":"modifierInvocation","modifierName":{"id":1862,"name":"onlyInitializing","nameLocations":["2326:16:9"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"2326:16:9"},"nodeType":"ModifierInvocation","src":"2326:16:9"}],"name":"__ERC721_init","nameLocation":"2259:13:9","nodeType":"FunctionDefinition","parameters":{"id":1861,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1858,"mutability":"mutable","name":"name_","nameLocation":"2287:5:9","nodeType":"VariableDeclaration","scope":1871,"src":"2273:19:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1857,"name":"string","nodeType":"ElementaryTypeName","src":"2273:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1860,"mutability":"mutable","name":"symbol_","nameLocation":"2308:7:9","nodeType":"VariableDeclaration","scope":1871,"src":"2294:21:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1859,"name":"string","nodeType":"ElementaryTypeName","src":"2294:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2272:44:9"},"returnParameters":{"id":1864,"nodeType":"ParameterList","parameters":[],"src":"2343:0:9"},"scope":2864,"src":"2250:149:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1898,"nodeType":"Block","src":"2508:116:9","statements":[{"assignments":[1882],"declarations":[{"constant":false,"id":1882,"mutability":"mutable","name":"$","nameLocation":"2540:1:9","nodeType":"VariableDeclaration","scope":1898,"src":"2518:23:9","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":1881,"nodeType":"UserDefinedTypeName","pathNode":{"id":1880,"name":"ERC721Storage","nameLocations":["2518:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":1844,"src":"2518:13:9"},"referencedDeclaration":1844,"src":"2518:13:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":1885,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1883,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1855,"src":"2544:17:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$1844_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":1884,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2544:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"2518:45:9"},{"expression":{"id":1890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1886,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1882,"src":"2573:1:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":1888,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2575:5:9","memberName":"_name","nodeType":"MemberAccess","referencedDeclaration":1823,"src":"2573:7:9","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1889,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1873,"src":"2583:5:9","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"2573:15:9","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":1891,"nodeType":"ExpressionStatement","src":"2573:15:9"},{"expression":{"id":1896,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1892,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1882,"src":"2598:1:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":1894,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2600:7:9","memberName":"_symbol","nodeType":"MemberAccess","referencedDeclaration":1825,"src":"2598:9:9","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1895,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1875,"src":"2610:7:9","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"2598:19:9","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":1897,"nodeType":"ExpressionStatement","src":"2598:19:9"}]},"id":1899,"implemented":true,"kind":"function","modifiers":[{"id":1878,"kind":"modifierInvocation","modifierName":{"id":1877,"name":"onlyInitializing","nameLocations":["2491:16:9"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"2491:16:9"},"nodeType":"ModifierInvocation","src":"2491:16:9"}],"name":"__ERC721_init_unchained","nameLocation":"2414:23:9","nodeType":"FunctionDefinition","parameters":{"id":1876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1873,"mutability":"mutable","name":"name_","nameLocation":"2452:5:9","nodeType":"VariableDeclaration","scope":1899,"src":"2438:19:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1872,"name":"string","nodeType":"ElementaryTypeName","src":"2438:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1875,"mutability":"mutable","name":"symbol_","nameLocation":"2473:7:9","nodeType":"VariableDeclaration","scope":1899,"src":"2459:21:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1874,"name":"string","nodeType":"ElementaryTypeName","src":"2459:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2437:44:9"},"returnParameters":{"id":1879,"nodeType":"ParameterList","parameters":[],"src":"2508:0:9"},"scope":2864,"src":"2405:219:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[3667,14271],"body":{"id":1929,"nodeType":"Block","src":"2777:192:9","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1927,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1922,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":1915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1910,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"2806:11:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":1912,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9471,"src":"2826:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721_$9471_$","typeString":"type(contract IERC721)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC721_$9471_$","typeString":"type(contract IERC721)"}],"id":1911,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2821:4:9","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":1913,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2821:13:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC721_$9471","typeString":"type(contract IERC721)"}},"id":1914,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2835:11:9","memberName":"interfaceId","nodeType":"MemberAccess","src":"2821:25:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2806:40:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":1921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1916,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"2862:11:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":1918,"name":"IERC721Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9517,"src":"2882:15:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Metadata_$9517_$","typeString":"type(contract IERC721Metadata)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC721Metadata_$9517_$","typeString":"type(contract IERC721Metadata)"}],"id":1917,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2877:4:9","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":1919,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2877:21:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC721Metadata_$9517","typeString":"type(contract IERC721Metadata)"}},"id":1920,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2899:11:9","memberName":"interfaceId","nodeType":"MemberAccess","src":"2877:33:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2862:48:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2806:104:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":1925,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"2950:11:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":1923,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2926:5:9","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC721Upgradeable_$2864_$","typeString":"type(contract super ERC721Upgradeable)"}},"id":1924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2932:17:9","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":3667,"src":"2926:23:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":1926,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2926:36:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2806:156:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":1909,"id":1928,"nodeType":"Return","src":"2787:175:9"}]},"documentation":{"id":1900,"nodeType":"StructuredDocumentation","src":"2630:23:9","text":"@inheritdoc IERC165"},"functionSelector":"01ffc9a7","id":1930,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"2667:17:9","nodeType":"FunctionDefinition","overrides":{"id":1906,"nodeType":"OverrideSpecifier","overrides":[{"id":1904,"name":"ERC165Upgradeable","nameLocations":["2734:17:9"],"nodeType":"IdentifierPath","referencedDeclaration":3668,"src":"2734:17:9"},{"id":1905,"name":"IERC165","nameLocations":["2753:7:9"],"nodeType":"IdentifierPath","referencedDeclaration":14272,"src":"2753:7:9"}],"src":"2725:36:9"},"parameters":{"id":1903,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1902,"mutability":"mutable","name":"interfaceId","nameLocation":"2692:11:9","nodeType":"VariableDeclaration","scope":1930,"src":"2685:18:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1901,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2685:6:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2684:20:9"},"returnParameters":{"id":1909,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1908,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1930,"src":"2771:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1907,"name":"bool","nodeType":"ElementaryTypeName","src":"2771:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2770:6:9"},"scope":2864,"src":"2658:311:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9396],"body":{"id":1964,"nodeType":"Block","src":"3075:193:9","statements":[{"assignments":[1940],"declarations":[{"constant":false,"id":1940,"mutability":"mutable","name":"$","nameLocation":"3107:1:9","nodeType":"VariableDeclaration","scope":1964,"src":"3085:23:9","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":1939,"nodeType":"UserDefinedTypeName","pathNode":{"id":1938,"name":"ERC721Storage","nameLocations":["3085:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":1844,"src":"3085:13:9"},"referencedDeclaration":1844,"src":"3085:13:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":1943,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1941,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1855,"src":"3111:17:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$1844_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":1942,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3111:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3085:45:9"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1944,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1933,"src":"3144:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1947,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3161:1:9","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":1946,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3153:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1945,"name":"address","nodeType":"ElementaryTypeName","src":"3153:7:9","typeDescriptions":{}}},"id":1948,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3153:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3144:19:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1958,"nodeType":"IfStatement","src":"3140:87:9","trueBody":{"id":1957,"nodeType":"Block","src":"3165:62:9","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1953,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3213:1:9","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":1952,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3205:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1951,"name":"address","nodeType":"ElementaryTypeName","src":"3205:7:9","typeDescriptions":{}}},"id":1954,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3205:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1950,"name":"ERC721InvalidOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6483,"src":"3186:18:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":1955,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3186:30:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1956,"nodeType":"RevertStatement","src":"3179:37:9"}]}},{"expression":{"baseExpression":{"expression":{"id":1959,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1940,"src":"3243:1:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":1960,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3245:9:9","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":1833,"src":"3243:11:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1962,"indexExpression":{"id":1961,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1933,"src":"3255:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3243:18:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1937,"id":1963,"nodeType":"Return","src":"3236:25:9"}]},"documentation":{"id":1931,"nodeType":"StructuredDocumentation","src":"2975:23:9","text":"@inheritdoc IERC721"},"functionSelector":"70a08231","id":1965,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"3012:9:9","nodeType":"FunctionDefinition","parameters":{"id":1934,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1933,"mutability":"mutable","name":"owner","nameLocation":"3030:5:9","nodeType":"VariableDeclaration","scope":1965,"src":"3022:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1932,"name":"address","nodeType":"ElementaryTypeName","src":"3022:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3021:15:9"},"returnParameters":{"id":1937,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1936,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1965,"src":"3066:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1935,"name":"uint256","nodeType":"ElementaryTypeName","src":"3066:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3065:9:9"},"scope":2864,"src":"3003:265:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9404],"body":{"id":1977,"nodeType":"Block","src":"3374:46:9","statements":[{"expression":{"arguments":[{"id":1974,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1968,"src":"3405:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1973,"name":"_requireOwned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2863,"src":"3391:13:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":1975,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3391:22:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":1972,"id":1976,"nodeType":"Return","src":"3384:29:9"}]},"documentation":{"id":1966,"nodeType":"StructuredDocumentation","src":"3274:23:9","text":"@inheritdoc IERC721"},"functionSelector":"6352211e","id":1978,"implemented":true,"kind":"function","modifiers":[],"name":"ownerOf","nameLocation":"3311:7:9","nodeType":"FunctionDefinition","parameters":{"id":1969,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1968,"mutability":"mutable","name":"tokenId","nameLocation":"3327:7:9","nodeType":"VariableDeclaration","scope":1978,"src":"3319:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1967,"name":"uint256","nodeType":"ElementaryTypeName","src":"3319:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3318:17:9"},"returnParameters":{"id":1972,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1971,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1978,"src":"3365:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1970,"name":"address","nodeType":"ElementaryTypeName","src":"3365:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3364:9:9"},"scope":2864,"src":"3302:118:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9502],"body":{"id":1993,"nodeType":"Block","src":"3522:86:9","statements":[{"assignments":[1986],"declarations":[{"constant":false,"id":1986,"mutability":"mutable","name":"$","nameLocation":"3554:1:9","nodeType":"VariableDeclaration","scope":1993,"src":"3532:23:9","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":1985,"nodeType":"UserDefinedTypeName","pathNode":{"id":1984,"name":"ERC721Storage","nameLocations":["3532:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":1844,"src":"3532:13:9"},"referencedDeclaration":1844,"src":"3532:13:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":1989,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1987,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1855,"src":"3558:17:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$1844_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":1988,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3558:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3532:45:9"},{"expression":{"expression":{"id":1990,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1986,"src":"3594:1:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":1991,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3596:5:9","memberName":"_name","nodeType":"MemberAccess","referencedDeclaration":1823,"src":"3594:7:9","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":1983,"id":1992,"nodeType":"Return","src":"3587:14:9"}]},"documentation":{"id":1979,"nodeType":"StructuredDocumentation","src":"3426:31:9","text":"@inheritdoc IERC721Metadata"},"functionSelector":"06fdde03","id":1994,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"3471:4:9","nodeType":"FunctionDefinition","parameters":{"id":1980,"nodeType":"ParameterList","parameters":[],"src":"3475:2:9"},"returnParameters":{"id":1983,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1982,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1994,"src":"3507:13:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1981,"name":"string","nodeType":"ElementaryTypeName","src":"3507:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3506:15:9"},"scope":2864,"src":"3462:146:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9508],"body":{"id":2009,"nodeType":"Block","src":"3712:88:9","statements":[{"assignments":[2002],"declarations":[{"constant":false,"id":2002,"mutability":"mutable","name":"$","nameLocation":"3744:1:9","nodeType":"VariableDeclaration","scope":2009,"src":"3722:23:9","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":2001,"nodeType":"UserDefinedTypeName","pathNode":{"id":2000,"name":"ERC721Storage","nameLocations":["3722:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":1844,"src":"3722:13:9"},"referencedDeclaration":1844,"src":"3722:13:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":2005,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":2003,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1855,"src":"3748:17:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$1844_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":2004,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3748:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3722:45:9"},{"expression":{"expression":{"id":2006,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2002,"src":"3784:1:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":2007,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3786:7:9","memberName":"_symbol","nodeType":"MemberAccess","referencedDeclaration":1825,"src":"3784:9:9","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":1999,"id":2008,"nodeType":"Return","src":"3777:16:9"}]},"documentation":{"id":1995,"nodeType":"StructuredDocumentation","src":"3614:31:9","text":"@inheritdoc IERC721Metadata"},"functionSelector":"95d89b41","id":2010,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"3659:6:9","nodeType":"FunctionDefinition","parameters":{"id":1996,"nodeType":"ParameterList","parameters":[],"src":"3665:2:9"},"returnParameters":{"id":1999,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1998,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2010,"src":"3697:13:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1997,"name":"string","nodeType":"ElementaryTypeName","src":"3697:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3696:15:9"},"scope":2864,"src":"3650:150:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9516],"body":{"id":2045,"nodeType":"Block","src":"3921:176:9","statements":[{"expression":{"arguments":[{"id":2019,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2013,"src":"3945:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2018,"name":"_requireOwned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2863,"src":"3931:13:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":2020,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3931:22:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2021,"nodeType":"ExpressionStatement","src":"3931:22:9"},{"assignments":[2023],"declarations":[{"constant":false,"id":2023,"mutability":"mutable","name":"baseURI","nameLocation":"3978:7:9","nodeType":"VariableDeclaration","scope":2045,"src":"3964:21:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2022,"name":"string","nodeType":"ElementaryTypeName","src":"3964:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":2026,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":2024,"name":"_baseURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2055,"src":"3988:8:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":2025,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3988:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"3964:34:9"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":2029,"name":"baseURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2023,"src":"4021:7:9","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2028,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4015:5:9","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2027,"name":"bytes","nodeType":"ElementaryTypeName","src":"4015:5:9","typeDescriptions":{}}},"id":2030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4015:14:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4030:6:9","memberName":"length","nodeType":"MemberAccess","src":"4015:21:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2032,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4039:1:9","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4015:25:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"","id":2042,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4088:2:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"id":2043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4015:75:9","trueExpression":{"arguments":[{"id":2037,"name":"baseURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2023,"src":"4057:7:9","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":2038,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2013,"src":"4066:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4074:8:9","memberName":"toString","nodeType":"MemberAccess","referencedDeclaration":11874,"src":"4066:16:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (string memory)"}},"id":2040,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4066:18:9","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":2035,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4043:6:9","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":2034,"name":"string","nodeType":"ElementaryTypeName","src":"4043:6:9","typeDescriptions":{}}},"id":2036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4050:6:9","memberName":"concat","nodeType":"MemberAccess","src":"4043:13:9","typeDescriptions":{"typeIdentifier":"t_function_stringconcat_pure$__$returns$_t_string_memory_ptr_$","typeString":"function () pure returns (string memory)"}},"id":2041,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4043:42:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":2017,"id":2044,"nodeType":"Return","src":"4008:82:9"}]},"documentation":{"id":2011,"nodeType":"StructuredDocumentation","src":"3806:31:9","text":"@inheritdoc IERC721Metadata"},"functionSelector":"c87b56dd","id":2046,"implemented":true,"kind":"function","modifiers":[],"name":"tokenURI","nameLocation":"3851:8:9","nodeType":"FunctionDefinition","parameters":{"id":2014,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2013,"mutability":"mutable","name":"tokenId","nameLocation":"3868:7:9","nodeType":"VariableDeclaration","scope":2046,"src":"3860:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2012,"name":"uint256","nodeType":"ElementaryTypeName","src":"3860:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3859:17:9"},"returnParameters":{"id":2017,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2016,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2046,"src":"3906:13:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2015,"name":"string","nodeType":"ElementaryTypeName","src":"3906:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3905:15:9"},"scope":2864,"src":"3842:255:9","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":2054,"nodeType":"Block","src":"4405:26:9","statements":[{"expression":{"hexValue":"","id":2052,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4422:2:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"functionReturnParameters":2051,"id":2053,"nodeType":"Return","src":"4415:9:9"}]},"documentation":{"id":2047,"nodeType":"StructuredDocumentation","src":"4103:231:9","text":" @dev Base URI for computing {tokenURI}. If set, the resulting URI for each\n token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n by default, can be overridden in child contracts."},"id":2055,"implemented":true,"kind":"function","modifiers":[],"name":"_baseURI","nameLocation":"4348:8:9","nodeType":"FunctionDefinition","parameters":{"id":2048,"nodeType":"ParameterList","parameters":[],"src":"4356:2:9"},"returnParameters":{"id":2051,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2050,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2055,"src":"4390:13:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2049,"name":"string","nodeType":"ElementaryTypeName","src":"4390:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4389:15:9"},"scope":2864,"src":"4339:92:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[9444],"body":{"id":2070,"nodeType":"Block","src":"4526:52:9","statements":[{"expression":{"arguments":[{"id":2064,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2058,"src":"4545:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2065,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2060,"src":"4549:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":2066,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"4558:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2067,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4558:12:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2063,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[2715,2789],"referencedDeclaration":2715,"src":"4536:8:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_address_$returns$__$","typeString":"function (address,uint256,address)"}},"id":2068,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4536:35:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2069,"nodeType":"ExpressionStatement","src":"4536:35:9"}]},"documentation":{"id":2056,"nodeType":"StructuredDocumentation","src":"4437:23:9","text":"@inheritdoc IERC721"},"functionSelector":"095ea7b3","id":2071,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"4474:7:9","nodeType":"FunctionDefinition","parameters":{"id":2061,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2058,"mutability":"mutable","name":"to","nameLocation":"4490:2:9","nodeType":"VariableDeclaration","scope":2071,"src":"4482:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2057,"name":"address","nodeType":"ElementaryTypeName","src":"4482:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2060,"mutability":"mutable","name":"tokenId","nameLocation":"4502:7:9","nodeType":"VariableDeclaration","scope":2071,"src":"4494:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2059,"name":"uint256","nodeType":"ElementaryTypeName","src":"4494:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4481:29:9"},"returnParameters":{"id":2062,"nodeType":"ParameterList","parameters":[],"src":"4526:0:9"},"scope":2864,"src":"4465:113:9","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[9460],"body":{"id":2087,"nodeType":"Block","src":"4688:78:9","statements":[{"expression":{"arguments":[{"id":2080,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2074,"src":"4712:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2079,"name":"_requireOwned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2863,"src":"4698:13:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":2081,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4698:22:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2082,"nodeType":"ExpressionStatement","src":"4698:22:9"},{"expression":{"arguments":[{"id":2084,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2074,"src":"4751:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2083,"name":"_getApproved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2262,"src":"4738:12:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":2085,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4738:21:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":2078,"id":2086,"nodeType":"Return","src":"4731:28:9"}]},"documentation":{"id":2072,"nodeType":"StructuredDocumentation","src":"4584:23:9","text":"@inheritdoc IERC721"},"functionSelector":"081812fc","id":2088,"implemented":true,"kind":"function","modifiers":[],"name":"getApproved","nameLocation":"4621:11:9","nodeType":"FunctionDefinition","parameters":{"id":2075,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2074,"mutability":"mutable","name":"tokenId","nameLocation":"4641:7:9","nodeType":"VariableDeclaration","scope":2088,"src":"4633:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2073,"name":"uint256","nodeType":"ElementaryTypeName","src":"4633:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4632:17:9"},"returnParameters":{"id":2078,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2077,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2088,"src":"4679:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2076,"name":"address","nodeType":"ElementaryTypeName","src":"4679:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4678:9:9"},"scope":2864,"src":"4612:154:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9452],"body":{"id":2103,"nodeType":"Block","src":"4875:69:9","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":2097,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"4904:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2098,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4904:12:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2099,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2091,"src":"4918:8:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2100,"name":"approved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2093,"src":"4928:8:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":2096,"name":"_setApprovalForAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2834,"src":"4885:18:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_bool_$returns$__$","typeString":"function (address,address,bool)"}},"id":2101,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4885:52:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2102,"nodeType":"ExpressionStatement","src":"4885:52:9"}]},"documentation":{"id":2089,"nodeType":"StructuredDocumentation","src":"4772:23:9","text":"@inheritdoc IERC721"},"functionSelector":"a22cb465","id":2104,"implemented":true,"kind":"function","modifiers":[],"name":"setApprovalForAll","nameLocation":"4809:17:9","nodeType":"FunctionDefinition","parameters":{"id":2094,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2091,"mutability":"mutable","name":"operator","nameLocation":"4835:8:9","nodeType":"VariableDeclaration","scope":2104,"src":"4827:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2090,"name":"address","nodeType":"ElementaryTypeName","src":"4827:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2093,"mutability":"mutable","name":"approved","nameLocation":"4850:8:9","nodeType":"VariableDeclaration","scope":2104,"src":"4845:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2092,"name":"bool","nodeType":"ElementaryTypeName","src":"4845:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4826:33:9"},"returnParameters":{"id":2095,"nodeType":"ParameterList","parameters":[],"src":"4875:0:9"},"scope":2864,"src":"4800:144:9","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[9470],"body":{"id":2127,"nodeType":"Block","src":"5072:116:9","statements":[{"assignments":[2116],"declarations":[{"constant":false,"id":2116,"mutability":"mutable","name":"$","nameLocation":"5104:1:9","nodeType":"VariableDeclaration","scope":2127,"src":"5082:23:9","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":2115,"nodeType":"UserDefinedTypeName","pathNode":{"id":2114,"name":"ERC721Storage","nameLocations":["5082:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":1844,"src":"5082:13:9"},"referencedDeclaration":1844,"src":"5082:13:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":2119,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":2117,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1855,"src":"5108:17:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$1844_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":2118,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5108:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"5082:45:9"},{"expression":{"baseExpression":{"baseExpression":{"expression":{"id":2120,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2116,"src":"5144:1:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":2121,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5146:18:9","memberName":"_operatorApprovals","nodeType":"MemberAccess","referencedDeclaration":1843,"src":"5144:20:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$","typeString":"mapping(address => mapping(address => bool))"}},"id":2123,"indexExpression":{"id":2122,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2107,"src":"5165:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5144:27:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2125,"indexExpression":{"id":2124,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2109,"src":"5172:8:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5144:37:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2113,"id":2126,"nodeType":"Return","src":"5137:44:9"}]},"documentation":{"id":2105,"nodeType":"StructuredDocumentation","src":"4950:23:9","text":"@inheritdoc IERC721"},"functionSelector":"e985e9c5","id":2128,"implemented":true,"kind":"function","modifiers":[],"name":"isApprovedForAll","nameLocation":"4987:16:9","nodeType":"FunctionDefinition","parameters":{"id":2110,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2107,"mutability":"mutable","name":"owner","nameLocation":"5012:5:9","nodeType":"VariableDeclaration","scope":2128,"src":"5004:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2106,"name":"address","nodeType":"ElementaryTypeName","src":"5004:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2109,"mutability":"mutable","name":"operator","nameLocation":"5027:8:9","nodeType":"VariableDeclaration","scope":2128,"src":"5019:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2108,"name":"address","nodeType":"ElementaryTypeName","src":"5019:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5003:33:9"},"returnParameters":{"id":2113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2112,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2128,"src":"5066:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2111,"name":"bool","nodeType":"ElementaryTypeName","src":"5066:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5065:6:9"},"scope":2864,"src":"4978:210:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9436],"body":{"id":2173,"nodeType":"Block","src":"5302:498:9","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2138,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2133,"src":"5316:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2141,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5330:1:9","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":2140,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5322:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2139,"name":"address","nodeType":"ElementaryTypeName","src":"5322:7:9","typeDescriptions":{}}},"id":2142,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5322:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5316:16:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2152,"nodeType":"IfStatement","src":"5312:87:9","trueBody":{"id":2151,"nodeType":"Block","src":"5334:65:9","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":2147,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5385:1:9","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":2146,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5377:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2145,"name":"address","nodeType":"ElementaryTypeName","src":"5377:7:9","typeDescriptions":{}}},"id":2148,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5377:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2144,"name":"ERC721InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6507,"src":"5355:21:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":2149,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5355:33:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2150,"nodeType":"RevertStatement","src":"5348:40:9"}]}},{"assignments":[2154],"declarations":[{"constant":false,"id":2154,"mutability":"mutable","name":"previousOwner","nameLocation":"5625:13:9","nodeType":"VariableDeclaration","scope":2173,"src":"5617:21:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2153,"name":"address","nodeType":"ElementaryTypeName","src":"5617:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2161,"initialValue":{"arguments":[{"id":2156,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2133,"src":"5649:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2157,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2135,"src":"5653:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":2158,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"5662:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2159,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5662:12:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2155,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2461,"src":"5641:7:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_address_$returns$_t_address_$","typeString":"function (address,uint256,address) returns (address)"}},"id":2160,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5641:34:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5617:58:9"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2162,"name":"previousOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"5689:13:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":2163,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2131,"src":"5706:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5689:21:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2172,"nodeType":"IfStatement","src":"5685:109:9","trueBody":{"id":2171,"nodeType":"Block","src":"5712:82:9","statements":[{"errorCall":{"arguments":[{"id":2166,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2131,"src":"5754:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2167,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2135,"src":"5760:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2168,"name":"previousOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"5769:13:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2165,"name":"ERC721IncorrectOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6497,"src":"5733:20:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_address_$returns$_t_error_$","typeString":"function (address,uint256,address) pure returns (error)"}},"id":2169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5733:50:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2170,"nodeType":"RevertStatement","src":"5726:57:9"}]}}]},"documentation":{"id":2129,"nodeType":"StructuredDocumentation","src":"5194:23:9","text":"@inheritdoc IERC721"},"functionSelector":"23b872dd","id":2174,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"5231:12:9","nodeType":"FunctionDefinition","parameters":{"id":2136,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2131,"mutability":"mutable","name":"from","nameLocation":"5252:4:9","nodeType":"VariableDeclaration","scope":2174,"src":"5244:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2130,"name":"address","nodeType":"ElementaryTypeName","src":"5244:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2133,"mutability":"mutable","name":"to","nameLocation":"5266:2:9","nodeType":"VariableDeclaration","scope":2174,"src":"5258:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2132,"name":"address","nodeType":"ElementaryTypeName","src":"5258:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2135,"mutability":"mutable","name":"tokenId","nameLocation":"5278:7:9","nodeType":"VariableDeclaration","scope":2174,"src":"5270:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2134,"name":"uint256","nodeType":"ElementaryTypeName","src":"5270:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5243:43:9"},"returnParameters":{"id":2137,"nodeType":"ParameterList","parameters":[],"src":"5302:0:9"},"scope":2864,"src":"5222:578:9","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[9426],"body":{"id":2191,"nodeType":"Block","src":"5910:56:9","statements":[{"expression":{"arguments":[{"id":2185,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2177,"src":"5937:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2186,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2179,"src":"5943:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2187,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2181,"src":"5947:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"","id":2188,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5956:2:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":2184,"name":"safeTransferFrom","nodeType":"Identifier","overloadedDeclarations":[2192,2222],"referencedDeclaration":2222,"src":"5920:16:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,uint256,bytes memory)"}},"id":2189,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5920:39:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2190,"nodeType":"ExpressionStatement","src":"5920:39:9"}]},"documentation":{"id":2175,"nodeType":"StructuredDocumentation","src":"5806:23:9","text":"@inheritdoc IERC721"},"functionSelector":"42842e0e","id":2192,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"5843:16:9","nodeType":"FunctionDefinition","parameters":{"id":2182,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2177,"mutability":"mutable","name":"from","nameLocation":"5868:4:9","nodeType":"VariableDeclaration","scope":2192,"src":"5860:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2176,"name":"address","nodeType":"ElementaryTypeName","src":"5860:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2179,"mutability":"mutable","name":"to","nameLocation":"5882:2:9","nodeType":"VariableDeclaration","scope":2192,"src":"5874:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2178,"name":"address","nodeType":"ElementaryTypeName","src":"5874:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2181,"mutability":"mutable","name":"tokenId","nameLocation":"5894:7:9","nodeType":"VariableDeclaration","scope":2192,"src":"5886:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2180,"name":"uint256","nodeType":"ElementaryTypeName","src":"5886:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5859:43:9"},"returnParameters":{"id":2183,"nodeType":"ParameterList","parameters":[],"src":"5910:0:9"},"scope":2864,"src":"5834:132:9","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[9416],"body":{"id":2221,"nodeType":"Block","src":"6103:130:9","statements":[{"expression":{"arguments":[{"id":2205,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2195,"src":"6126:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2206,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2197,"src":"6132:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2207,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2199,"src":"6136:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2204,"name":"transferFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2174,"src":"6113:12:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2208,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6113:31:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2209,"nodeType":"ExpressionStatement","src":"6113:31:9"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":2213,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"6188:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2214,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6188:12:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2215,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2195,"src":"6202:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2216,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2197,"src":"6208:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2217,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2199,"src":"6212:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2218,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2201,"src":"6221:4:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":2210,"name":"ERC721Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9594,"src":"6154:11:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC721Utils_$9594_$","typeString":"type(library ERC721Utils)"}},"id":2212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6166:21:9","memberName":"checkOnERC721Received","nodeType":"MemberAccess","referencedDeclaration":9593,"src":"6154:33:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256,bytes memory)"}},"id":2219,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6154:72:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2220,"nodeType":"ExpressionStatement","src":"6154:72:9"}]},"documentation":{"id":2193,"nodeType":"StructuredDocumentation","src":"5972:23:9","text":"@inheritdoc IERC721"},"functionSelector":"b88d4fde","id":2222,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"6009:16:9","nodeType":"FunctionDefinition","parameters":{"id":2202,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2195,"mutability":"mutable","name":"from","nameLocation":"6034:4:9","nodeType":"VariableDeclaration","scope":2222,"src":"6026:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2194,"name":"address","nodeType":"ElementaryTypeName","src":"6026:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2197,"mutability":"mutable","name":"to","nameLocation":"6048:2:9","nodeType":"VariableDeclaration","scope":2222,"src":"6040:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2196,"name":"address","nodeType":"ElementaryTypeName","src":"6040:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2199,"mutability":"mutable","name":"tokenId","nameLocation":"6060:7:9","nodeType":"VariableDeclaration","scope":2222,"src":"6052:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2198,"name":"uint256","nodeType":"ElementaryTypeName","src":"6052:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2201,"mutability":"mutable","name":"data","nameLocation":"6082:4:9","nodeType":"VariableDeclaration","scope":2222,"src":"6069:17:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2200,"name":"bytes","nodeType":"ElementaryTypeName","src":"6069:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6025:62:9"},"returnParameters":{"id":2203,"nodeType":"ParameterList","parameters":[],"src":"6103:0:9"},"scope":2864,"src":"6000:233:9","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":2241,"nodeType":"Block","src":"6823:97:9","statements":[{"assignments":[2232],"declarations":[{"constant":false,"id":2232,"mutability":"mutable","name":"$","nameLocation":"6855:1:9","nodeType":"VariableDeclaration","scope":2241,"src":"6833:23:9","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":2231,"nodeType":"UserDefinedTypeName","pathNode":{"id":2230,"name":"ERC721Storage","nameLocations":["6833:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":1844,"src":"6833:13:9"},"referencedDeclaration":1844,"src":"6833:13:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":2235,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":2233,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1855,"src":"6859:17:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$1844_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":2234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6859:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"6833:45:9"},{"expression":{"baseExpression":{"expression":{"id":2236,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2232,"src":"6895:1:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":2237,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6897:7:9","memberName":"_owners","nodeType":"MemberAccess","referencedDeclaration":1829,"src":"6895:9:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":2239,"indexExpression":{"id":2238,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2225,"src":"6905:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6895:18:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":2229,"id":2240,"nodeType":"Return","src":"6888:25:9"}]},"documentation":{"id":2223,"nodeType":"StructuredDocumentation","src":"6239:504:9","text":" @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist\n IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the\n core ERC-721 logic MUST be matched with the use of {_increaseBalance} to keep balances\n consistent with ownership. The invariant to preserve is that for any address `a` the value returned by\n `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`."},"id":2242,"implemented":true,"kind":"function","modifiers":[],"name":"_ownerOf","nameLocation":"6757:8:9","nodeType":"FunctionDefinition","parameters":{"id":2226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2225,"mutability":"mutable","name":"tokenId","nameLocation":"6774:7:9","nodeType":"VariableDeclaration","scope":2242,"src":"6766:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2224,"name":"uint256","nodeType":"ElementaryTypeName","src":"6766:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6765:17:9"},"returnParameters":{"id":2229,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2228,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2242,"src":"6814:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2227,"name":"address","nodeType":"ElementaryTypeName","src":"6814:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6813:9:9"},"scope":2864,"src":"6748:172:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":2261,"nodeType":"Block","src":"7115:105:9","statements":[{"assignments":[2252],"declarations":[{"constant":false,"id":2252,"mutability":"mutable","name":"$","nameLocation":"7147:1:9","nodeType":"VariableDeclaration","scope":2261,"src":"7125:23:9","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":2251,"nodeType":"UserDefinedTypeName","pathNode":{"id":2250,"name":"ERC721Storage","nameLocations":["7125:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":1844,"src":"7125:13:9"},"referencedDeclaration":1844,"src":"7125:13:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":2255,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":2253,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1855,"src":"7151:17:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$1844_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":2254,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7151:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"7125:45:9"},{"expression":{"baseExpression":{"expression":{"id":2256,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2252,"src":"7187:1:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":2257,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7189:15:9","memberName":"_tokenApprovals","nodeType":"MemberAccess","referencedDeclaration":1837,"src":"7187:17:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":2259,"indexExpression":{"id":2258,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2245,"src":"7205:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7187:26:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":2249,"id":2260,"nodeType":"Return","src":"7180:33:9"}]},"documentation":{"id":2243,"nodeType":"StructuredDocumentation","src":"6926:105:9","text":" @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted."},"id":2262,"implemented":true,"kind":"function","modifiers":[],"name":"_getApproved","nameLocation":"7045:12:9","nodeType":"FunctionDefinition","parameters":{"id":2246,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2245,"mutability":"mutable","name":"tokenId","nameLocation":"7066:7:9","nodeType":"VariableDeclaration","scope":2262,"src":"7058:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2244,"name":"uint256","nodeType":"ElementaryTypeName","src":"7058:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7057:17:9"},"returnParameters":{"id":2249,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2248,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2262,"src":"7106:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2247,"name":"address","nodeType":"ElementaryTypeName","src":"7106:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7105:9:9"},"scope":2864,"src":"7036:184:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":2297,"nodeType":"Block","src":"7640:163:9","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2274,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2267,"src":"7669:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2277,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7688:1:9","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":2276,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7680:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2275,"name":"address","nodeType":"ElementaryTypeName","src":"7680:7:9","typeDescriptions":{}}},"id":2278,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7680:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7669:21:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2287,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2280,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2265,"src":"7707:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2281,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2267,"src":"7716:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7707:16:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":2284,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2265,"src":"7744:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2285,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2267,"src":"7751:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2283,"name":"isApprovedForAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2128,"src":"7727:16:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_bool_$","typeString":"function (address,address) view returns (bool)"}},"id":2286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7727:32:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7707:52:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2289,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2269,"src":"7776:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2288,"name":"_getApproved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2262,"src":"7763:12:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":2290,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7763:21:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2291,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2267,"src":"7788:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7763:32:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7707:88:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":2294,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7706:90:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7669:127:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2273,"id":2296,"nodeType":"Return","src":"7650:146:9"}]},"documentation":{"id":2263,"nodeType":"StructuredDocumentation","src":"7226:300:9","text":" @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in\n particular (ignoring whether it is owned by `owner`).\n WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this\n assumption."},"id":2298,"implemented":true,"kind":"function","modifiers":[],"name":"_isAuthorized","nameLocation":"7540:13:9","nodeType":"FunctionDefinition","parameters":{"id":2270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2265,"mutability":"mutable","name":"owner","nameLocation":"7562:5:9","nodeType":"VariableDeclaration","scope":2298,"src":"7554:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2264,"name":"address","nodeType":"ElementaryTypeName","src":"7554:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2267,"mutability":"mutable","name":"spender","nameLocation":"7577:7:9","nodeType":"VariableDeclaration","scope":2298,"src":"7569:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2266,"name":"address","nodeType":"ElementaryTypeName","src":"7569:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2269,"mutability":"mutable","name":"tokenId","nameLocation":"7594:7:9","nodeType":"VariableDeclaration","scope":2298,"src":"7586:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2268,"name":"uint256","nodeType":"ElementaryTypeName","src":"7586:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7553:49:9"},"returnParameters":{"id":2273,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2272,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2298,"src":"7634:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2271,"name":"bool","nodeType":"ElementaryTypeName","src":"7634:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7633:6:9"},"scope":2864,"src":"7531:272:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":2334,"nodeType":"Block","src":"8332:271:9","statements":[{"condition":{"id":2313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"8346:39:9","subExpression":{"arguments":[{"id":2309,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2301,"src":"8361:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2310,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2303,"src":"8368:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2311,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2305,"src":"8377:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2308,"name":"_isAuthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2298,"src":"8347:13:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,address,uint256) view returns (bool)"}},"id":2312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8347:38:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2333,"nodeType":"IfStatement","src":"8342:255:9","trueBody":{"id":2332,"nodeType":"Block","src":"8387:210:9","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2314,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2301,"src":"8405:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8422:1:9","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":2316,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8414:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2315,"name":"address","nodeType":"ElementaryTypeName","src":"8414:7:9","typeDescriptions":{}}},"id":2318,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8414:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8405:19:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2330,"nodeType":"Block","src":"8503:84:9","statements":[{"errorCall":{"arguments":[{"id":2326,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2303,"src":"8555:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2327,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2305,"src":"8564:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2325,"name":"ERC721InsufficientApproval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6514,"src":"8528:26:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256) pure returns (error)"}},"id":2328,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8528:44:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2329,"nodeType":"RevertStatement","src":"8521:51:9"}]},"id":2331,"nodeType":"IfStatement","src":"8401:186:9","trueBody":{"id":2324,"nodeType":"Block","src":"8426:71:9","statements":[{"errorCall":{"arguments":[{"id":2321,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2305,"src":"8474:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2320,"name":"ERC721NonexistentToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6488,"src":"8451:22:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":2322,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8451:31:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2323,"nodeType":"RevertStatement","src":"8444:38:9"}]}}]}}]},"documentation":{"id":2299,"nodeType":"StructuredDocumentation","src":"7809:421:9","text":" @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.\n Reverts if:\n - `spender` does not have approval from `owner` for `tokenId`.\n - `spender` does not have approval to manage all of `owner`'s assets.\n WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this\n assumption."},"id":2335,"implemented":true,"kind":"function","modifiers":[],"name":"_checkAuthorized","nameLocation":"8244:16:9","nodeType":"FunctionDefinition","parameters":{"id":2306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2301,"mutability":"mutable","name":"owner","nameLocation":"8269:5:9","nodeType":"VariableDeclaration","scope":2335,"src":"8261:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2300,"name":"address","nodeType":"ElementaryTypeName","src":"8261:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2303,"mutability":"mutable","name":"spender","nameLocation":"8284:7:9","nodeType":"VariableDeclaration","scope":2335,"src":"8276:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2302,"name":"address","nodeType":"ElementaryTypeName","src":"8276:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2305,"mutability":"mutable","name":"tokenId","nameLocation":"8301:7:9","nodeType":"VariableDeclaration","scope":2335,"src":"8293:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2304,"name":"uint256","nodeType":"ElementaryTypeName","src":"8293:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8260:49:9"},"returnParameters":{"id":2307,"nodeType":"ParameterList","parameters":[],"src":"8332:0:9"},"scope":2864,"src":"8235:368:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":2358,"nodeType":"Block","src":"9320:135:9","statements":[{"assignments":[2345],"declarations":[{"constant":false,"id":2345,"mutability":"mutable","name":"$","nameLocation":"9352:1:9","nodeType":"VariableDeclaration","scope":2358,"src":"9330:23:9","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":2344,"nodeType":"UserDefinedTypeName","pathNode":{"id":2343,"name":"ERC721Storage","nameLocations":["9330:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":1844,"src":"9330:13:9"},"referencedDeclaration":1844,"src":"9330:13:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":2348,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":2346,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1855,"src":"9356:17:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$1844_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":2347,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9356:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"9330:45:9"},{"id":2357,"nodeType":"UncheckedBlock","src":"9385:64:9","statements":[{"expression":{"id":2355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":2349,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2345,"src":"9409:1:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":2352,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9411:9:9","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":1833,"src":"9409:11:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2353,"indexExpression":{"id":2351,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2338,"src":"9421:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9409:20:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":2354,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2340,"src":"9433:5:9","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"9409:29:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2356,"nodeType":"ExpressionStatement","src":"9409:29:9"}]}]},"documentation":{"id":2336,"nodeType":"StructuredDocumentation","src":"8609:631:9","text":" @dev Unsafe write access to the balances, used by extensions that \"mint\" tokens using an {ownerOf} override.\n NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that\n a uint256 would ever overflow from increments when these increments are bounded to uint128 values.\n WARNING: Increasing an account's balance using this function tends to be paired with an override of the\n {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership\n remain consistent with one another."},"id":2359,"implemented":true,"kind":"function","modifiers":[],"name":"_increaseBalance","nameLocation":"9254:16:9","nodeType":"FunctionDefinition","parameters":{"id":2341,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2338,"mutability":"mutable","name":"account","nameLocation":"9279:7:9","nodeType":"VariableDeclaration","scope":2359,"src":"9271:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2337,"name":"address","nodeType":"ElementaryTypeName","src":"9271:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2340,"mutability":"mutable","name":"value","nameLocation":"9296:5:9","nodeType":"VariableDeclaration","scope":2359,"src":"9288:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2339,"name":"uint128","nodeType":"ElementaryTypeName","src":"9288:7:9","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"9270:32:9"},"returnParameters":{"id":2342,"nodeType":"ParameterList","parameters":[],"src":"9320:0:9"},"scope":2864,"src":"9245:210:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2460,"nodeType":"Block","src":"10143:761:9","statements":[{"assignments":[2373],"declarations":[{"constant":false,"id":2373,"mutability":"mutable","name":"$","nameLocation":"10175:1:9","nodeType":"VariableDeclaration","scope":2460,"src":"10153:23:9","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":2372,"nodeType":"UserDefinedTypeName","pathNode":{"id":2371,"name":"ERC721Storage","nameLocations":["10153:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":1844,"src":"10153:13:9"},"referencedDeclaration":1844,"src":"10153:13:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":2376,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":2374,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1855,"src":"10179:17:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$1844_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":2375,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10179:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"10153:45:9"},{"assignments":[2378],"declarations":[{"constant":false,"id":2378,"mutability":"mutable","name":"from","nameLocation":"10216:4:9","nodeType":"VariableDeclaration","scope":2460,"src":"10208:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2377,"name":"address","nodeType":"ElementaryTypeName","src":"10208:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2382,"initialValue":{"arguments":[{"id":2380,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2364,"src":"10232:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2379,"name":"_ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2242,"src":"10223:8:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":2381,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10223:17:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"10208:32:9"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2383,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2366,"src":"10300:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2386,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10316:1:9","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":2385,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10308:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2384,"name":"address","nodeType":"ElementaryTypeName","src":"10308:7:9","typeDescriptions":{}}},"id":2387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10308:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10300:18:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2396,"nodeType":"IfStatement","src":"10296:86:9","trueBody":{"id":2395,"nodeType":"Block","src":"10320:62:9","statements":[{"expression":{"arguments":[{"id":2390,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2378,"src":"10351:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2391,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2366,"src":"10357:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2392,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2364,"src":"10363:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2389,"name":"_checkAuthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2335,"src":"10334:16:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256) view"}},"id":2393,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10334:37:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2394,"nodeType":"ExpressionStatement","src":"10334:37:9"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2397,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2378,"src":"10426:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2400,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10442:1:9","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":2399,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10434:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2398,"name":"address","nodeType":"ElementaryTypeName","src":"10434:7:9","typeDescriptions":{}}},"id":2401,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10434:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10426:18:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2426,"nodeType":"IfStatement","src":"10422:258:9","trueBody":{"id":2425,"nodeType":"Block","src":"10446:234:9","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":2406,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10559:1:9","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":2405,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10551:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2404,"name":"address","nodeType":"ElementaryTypeName","src":"10551:7:9","typeDescriptions":{}}},"id":2407,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10551:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2408,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2364,"src":"10563:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"hexValue":"30","id":2411,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10580:1:9","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":2410,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10572:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2409,"name":"address","nodeType":"ElementaryTypeName","src":"10572:7:9","typeDescriptions":{}}},"id":2412,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10572:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"66616c7365","id":2413,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10584:5:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":2403,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[2715,2789],"referencedDeclaration":2789,"src":"10542:8:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_address_$_t_bool_$returns$__$","typeString":"function (address,uint256,address,bool)"}},"id":2414,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10542:48:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2415,"nodeType":"ExpressionStatement","src":"10542:48:9"},{"id":2424,"nodeType":"UncheckedBlock","src":"10605:65:9","statements":[{"expression":{"id":2422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":2416,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2373,"src":"10633:1:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":2419,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10635:9:9","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":1833,"src":"10633:11:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2420,"indexExpression":{"id":2418,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2378,"src":"10645:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10633:17:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"31","id":2421,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10654:1:9","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10633:22:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2423,"nodeType":"ExpressionStatement","src":"10633:22:9"}]}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2427,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2362,"src":"10694:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2430,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10708:1:9","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":2429,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10700:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2428,"name":"address","nodeType":"ElementaryTypeName","src":"10700:7:9","typeDescriptions":{}}},"id":2431,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10700:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10694:16:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2443,"nodeType":"IfStatement","src":"10690:109:9","trueBody":{"id":2442,"nodeType":"Block","src":"10712:87:9","statements":[{"id":2441,"nodeType":"UncheckedBlock","src":"10726:63:9","statements":[{"expression":{"id":2439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":2433,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2373,"src":"10754:1:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":2436,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10756:9:9","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":1833,"src":"10754:11:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2437,"indexExpression":{"id":2435,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2362,"src":"10766:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10754:15:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":2438,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10773:1:9","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10754:20:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2440,"nodeType":"ExpressionStatement","src":"10754:20:9"}]}]}},{"expression":{"id":2450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":2444,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2373,"src":"10809:1:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":2447,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10811:7:9","memberName":"_owners","nodeType":"MemberAccess","referencedDeclaration":1829,"src":"10809:9:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":2448,"indexExpression":{"id":2446,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2364,"src":"10819:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10809:18:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2449,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2362,"src":"10830:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10809:23:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2451,"nodeType":"ExpressionStatement","src":"10809:23:9"},{"eventCall":{"arguments":[{"id":2453,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2378,"src":"10857:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2454,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2362,"src":"10863:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2455,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2364,"src":"10867:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2452,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9370,"src":"10848:8:9","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2456,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10848:27:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2457,"nodeType":"EmitStatement","src":"10843:32:9"},{"expression":{"id":2458,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2378,"src":"10893:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":2370,"id":2459,"nodeType":"Return","src":"10886:11:9"}]},"documentation":{"id":2360,"nodeType":"StructuredDocumentation","src":"9461:582:9","text":" @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner\n (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.\n The `auth` argument is optional. If the value passed is non 0, then this function will check that\n `auth` is either the owner of the token, or approved to operate on the token (by the owner).\n Emits a {Transfer} event.\n NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}."},"id":2461,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"10057:7:9","nodeType":"FunctionDefinition","parameters":{"id":2367,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2362,"mutability":"mutable","name":"to","nameLocation":"10073:2:9","nodeType":"VariableDeclaration","scope":2461,"src":"10065:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2361,"name":"address","nodeType":"ElementaryTypeName","src":"10065:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2364,"mutability":"mutable","name":"tokenId","nameLocation":"10085:7:9","nodeType":"VariableDeclaration","scope":2461,"src":"10077:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2363,"name":"uint256","nodeType":"ElementaryTypeName","src":"10077:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2366,"mutability":"mutable","name":"auth","nameLocation":"10102:4:9","nodeType":"VariableDeclaration","scope":2461,"src":"10094:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2365,"name":"address","nodeType":"ElementaryTypeName","src":"10094:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10064:43:9"},"returnParameters":{"id":2370,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2369,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2461,"src":"10134:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2368,"name":"address","nodeType":"ElementaryTypeName","src":"10134:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10133:9:9"},"scope":2864,"src":"10048:856:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2510,"nodeType":"Block","src":"11279:274:9","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2469,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2464,"src":"11293:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2472,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11307:1:9","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":2471,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11299:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2470,"name":"address","nodeType":"ElementaryTypeName","src":"11299:7:9","typeDescriptions":{}}},"id":2473,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11299:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11293:16:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2483,"nodeType":"IfStatement","src":"11289:87:9","trueBody":{"id":2482,"nodeType":"Block","src":"11311:65:9","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":2478,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11362:1:9","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":2477,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11354:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2476,"name":"address","nodeType":"ElementaryTypeName","src":"11354:7:9","typeDescriptions":{}}},"id":2479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11354:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2475,"name":"ERC721InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6507,"src":"11332:21:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":2480,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11332:33:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2481,"nodeType":"RevertStatement","src":"11325:40:9"}]}},{"assignments":[2485],"declarations":[{"constant":false,"id":2485,"mutability":"mutable","name":"previousOwner","nameLocation":"11393:13:9","nodeType":"VariableDeclaration","scope":2510,"src":"11385:21:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2484,"name":"address","nodeType":"ElementaryTypeName","src":"11385:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2494,"initialValue":{"arguments":[{"id":2487,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2464,"src":"11417:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2488,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2466,"src":"11421:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"hexValue":"30","id":2491,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11438:1:9","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":2490,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11430:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2489,"name":"address","nodeType":"ElementaryTypeName","src":"11430:7:9","typeDescriptions":{}}},"id":2492,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11430:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2486,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2461,"src":"11409:7:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_address_$returns$_t_address_$","typeString":"function (address,uint256,address) returns (address)"}},"id":2493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11409:32:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"11385:56:9"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2500,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2495,"name":"previousOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2485,"src":"11455:13:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2498,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11480:1:9","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":2497,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11472:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2496,"name":"address","nodeType":"ElementaryTypeName","src":"11472:7:9","typeDescriptions":{}}},"id":2499,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11472:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11455:27:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2509,"nodeType":"IfStatement","src":"11451:96:9","trueBody":{"id":2508,"nodeType":"Block","src":"11484:63:9","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":2504,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11533:1:9","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":2503,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11525:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2502,"name":"address","nodeType":"ElementaryTypeName","src":"11525:7:9","typeDescriptions":{}}},"id":2505,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11525:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2501,"name":"ERC721InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6502,"src":"11505:19:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":2506,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11505:31:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2507,"nodeType":"RevertStatement","src":"11498:38:9"}]}}]},"documentation":{"id":2462,"nodeType":"StructuredDocumentation","src":"10910:311:9","text":" @dev Mints `tokenId` and transfers it to `to`.\n WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible\n Requirements:\n - `tokenId` must not exist.\n - `to` cannot be the zero address.\n Emits a {Transfer} event."},"id":2511,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"11235:5:9","nodeType":"FunctionDefinition","parameters":{"id":2467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2464,"mutability":"mutable","name":"to","nameLocation":"11249:2:9","nodeType":"VariableDeclaration","scope":2511,"src":"11241:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2463,"name":"address","nodeType":"ElementaryTypeName","src":"11241:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2466,"mutability":"mutable","name":"tokenId","nameLocation":"11261:7:9","nodeType":"VariableDeclaration","scope":2511,"src":"11253:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2465,"name":"uint256","nodeType":"ElementaryTypeName","src":"11253:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11240:29:9"},"returnParameters":{"id":2468,"nodeType":"ParameterList","parameters":[],"src":"11279:0:9"},"scope":2864,"src":"11226:327:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2525,"nodeType":"Block","src":"11961:43:9","statements":[{"expression":{"arguments":[{"id":2520,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2514,"src":"11981:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2521,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2516,"src":"11985:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"","id":2522,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11994:2:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":2519,"name":"_safeMint","nodeType":"Identifier","overloadedDeclarations":[2526,2556],"referencedDeclaration":2556,"src":"11971:9:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,uint256,bytes memory)"}},"id":2523,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11971:26:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2524,"nodeType":"ExpressionStatement","src":"11971:26:9"}]},"documentation":{"id":2512,"nodeType":"StructuredDocumentation","src":"11559:340:9","text":" @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.\n Requirements:\n - `tokenId` must not exist.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n Emits a {Transfer} event."},"id":2526,"implemented":true,"kind":"function","modifiers":[],"name":"_safeMint","nameLocation":"11913:9:9","nodeType":"FunctionDefinition","parameters":{"id":2517,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2514,"mutability":"mutable","name":"to","nameLocation":"11931:2:9","nodeType":"VariableDeclaration","scope":2526,"src":"11923:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2513,"name":"address","nodeType":"ElementaryTypeName","src":"11923:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2516,"mutability":"mutable","name":"tokenId","nameLocation":"11943:7:9","nodeType":"VariableDeclaration","scope":2526,"src":"11935:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2515,"name":"uint256","nodeType":"ElementaryTypeName","src":"11935:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11922:29:9"},"returnParameters":{"id":2518,"nodeType":"ParameterList","parameters":[],"src":"11961:0:9"},"scope":2864,"src":"11904:100:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2555,"nodeType":"Block","src":"12309:123:9","statements":[{"expression":{"arguments":[{"id":2537,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2529,"src":"12325:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2538,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2531,"src":"12329:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2536,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2511,"src":"12319:5:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2539,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12319:18:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2540,"nodeType":"ExpressionStatement","src":"12319:18:9"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":2544,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"12381:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2545,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12381:12:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":2548,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12403:1:9","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":2547,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12395:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2546,"name":"address","nodeType":"ElementaryTypeName","src":"12395:7:9","typeDescriptions":{}}},"id":2549,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12395:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2550,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2529,"src":"12407:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2551,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2531,"src":"12411:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2552,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2533,"src":"12420:4:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":2541,"name":"ERC721Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9594,"src":"12347:11:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC721Utils_$9594_$","typeString":"type(library ERC721Utils)"}},"id":2543,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12359:21:9","memberName":"checkOnERC721Received","nodeType":"MemberAccess","referencedDeclaration":9593,"src":"12347:33:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256,bytes memory)"}},"id":2553,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12347:78:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2554,"nodeType":"ExpressionStatement","src":"12347:78:9"}]},"documentation":{"id":2527,"nodeType":"StructuredDocumentation","src":"12010:210:9","text":" @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is\n forwarded in {IERC721Receiver-onERC721Received} to contract recipients."},"id":2556,"implemented":true,"kind":"function","modifiers":[],"name":"_safeMint","nameLocation":"12234:9:9","nodeType":"FunctionDefinition","parameters":{"id":2534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2529,"mutability":"mutable","name":"to","nameLocation":"12252:2:9","nodeType":"VariableDeclaration","scope":2556,"src":"12244:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2528,"name":"address","nodeType":"ElementaryTypeName","src":"12244:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2531,"mutability":"mutable","name":"tokenId","nameLocation":"12264:7:9","nodeType":"VariableDeclaration","scope":2556,"src":"12256:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2530,"name":"uint256","nodeType":"ElementaryTypeName","src":"12256:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2533,"mutability":"mutable","name":"data","nameLocation":"12286:4:9","nodeType":"VariableDeclaration","scope":2556,"src":"12273:17:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2532,"name":"bytes","nodeType":"ElementaryTypeName","src":"12273:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"12243:48:9"},"returnParameters":{"id":2535,"nodeType":"ParameterList","parameters":[],"src":"12309:0:9"},"scope":2864,"src":"12225:207:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2588,"nodeType":"Block","src":"12799:186:9","statements":[{"assignments":[2563],"declarations":[{"constant":false,"id":2563,"mutability":"mutable","name":"previousOwner","nameLocation":"12817:13:9","nodeType":"VariableDeclaration","scope":2588,"src":"12809:21:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2562,"name":"address","nodeType":"ElementaryTypeName","src":"12809:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2575,"initialValue":{"arguments":[{"arguments":[{"hexValue":"30","id":2567,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12849:1:9","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":2566,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12841:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2565,"name":"address","nodeType":"ElementaryTypeName","src":"12841:7:9","typeDescriptions":{}}},"id":2568,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12841:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2569,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2559,"src":"12853:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"hexValue":"30","id":2572,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12870:1:9","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":2571,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12862:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2570,"name":"address","nodeType":"ElementaryTypeName","src":"12862:7:9","typeDescriptions":{}}},"id":2573,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12862:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2564,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2461,"src":"12833:7:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_address_$returns$_t_address_$","typeString":"function (address,uint256,address) returns (address)"}},"id":2574,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12833:40:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"12809:64:9"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2576,"name":"previousOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2563,"src":"12887:13:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12912:1:9","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":2578,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12904:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2577,"name":"address","nodeType":"ElementaryTypeName","src":"12904:7:9","typeDescriptions":{}}},"id":2580,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12904:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12887:27:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2587,"nodeType":"IfStatement","src":"12883:96:9","trueBody":{"id":2586,"nodeType":"Block","src":"12916:63:9","statements":[{"errorCall":{"arguments":[{"id":2583,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2559,"src":"12960:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2582,"name":"ERC721NonexistentToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6488,"src":"12937:22:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":2584,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12937:31:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2585,"nodeType":"RevertStatement","src":"12930:38:9"}]}}]},"documentation":{"id":2557,"nodeType":"StructuredDocumentation","src":"12438:315:9","text":" @dev Destroys `tokenId`.\n The approval is cleared when the token is burned.\n This is an internal function that does not check if the sender is authorized to operate on the token.\n Requirements:\n - `tokenId` must exist.\n Emits a {Transfer} event."},"id":2589,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"12767:5:9","nodeType":"FunctionDefinition","parameters":{"id":2560,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2559,"mutability":"mutable","name":"tokenId","nameLocation":"12781:7:9","nodeType":"VariableDeclaration","scope":2589,"src":"12773:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2558,"name":"uint256","nodeType":"ElementaryTypeName","src":"12773:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12772:17:9"},"returnParameters":{"id":2561,"nodeType":"ParameterList","parameters":[],"src":"12799:0:9"},"scope":2864,"src":"12758:227:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2648,"nodeType":"Block","src":"13380:389:9","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2604,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2599,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2594,"src":"13394:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2602,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13408:1:9","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":2601,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13400:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2600,"name":"address","nodeType":"ElementaryTypeName","src":"13400:7:9","typeDescriptions":{}}},"id":2603,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13400:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"13394:16:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2613,"nodeType":"IfStatement","src":"13390:87:9","trueBody":{"id":2612,"nodeType":"Block","src":"13412:65:9","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":2608,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13463:1:9","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":2607,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13455:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2606,"name":"address","nodeType":"ElementaryTypeName","src":"13455:7:9","typeDescriptions":{}}},"id":2609,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13455:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2605,"name":"ERC721InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6507,"src":"13433:21:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":2610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13433:33:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2611,"nodeType":"RevertStatement","src":"13426:40:9"}]}},{"assignments":[2615],"declarations":[{"constant":false,"id":2615,"mutability":"mutable","name":"previousOwner","nameLocation":"13494:13:9","nodeType":"VariableDeclaration","scope":2648,"src":"13486:21:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2614,"name":"address","nodeType":"ElementaryTypeName","src":"13486:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2624,"initialValue":{"arguments":[{"id":2617,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2594,"src":"13518:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2618,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2596,"src":"13522:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"hexValue":"30","id":2621,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13539:1:9","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":2620,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13531:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2619,"name":"address","nodeType":"ElementaryTypeName","src":"13531:7:9","typeDescriptions":{}}},"id":2622,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13531:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2616,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2461,"src":"13510:7:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_address_$returns$_t_address_$","typeString":"function (address,uint256,address) returns (address)"}},"id":2623,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13510:32:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"13486:56:9"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2630,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2625,"name":"previousOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2615,"src":"13556:13:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2628,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13581:1:9","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":2627,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13573:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2626,"name":"address","nodeType":"ElementaryTypeName","src":"13573:7:9","typeDescriptions":{}}},"id":2629,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13573:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"13556:27:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2636,"name":"previousOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2615,"src":"13658:13:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":2637,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2592,"src":"13675:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"13658:21:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2646,"nodeType":"IfStatement","src":"13654:109:9","trueBody":{"id":2645,"nodeType":"Block","src":"13681:82:9","statements":[{"errorCall":{"arguments":[{"id":2640,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2592,"src":"13723:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2641,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2596,"src":"13729:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2642,"name":"previousOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2615,"src":"13738:13:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2639,"name":"ERC721IncorrectOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6497,"src":"13702:20:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_address_$returns$_t_error_$","typeString":"function (address,uint256,address) pure returns (error)"}},"id":2643,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13702:50:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2644,"nodeType":"RevertStatement","src":"13695:57:9"}]}},"id":2647,"nodeType":"IfStatement","src":"13552:211:9","trueBody":{"id":2635,"nodeType":"Block","src":"13585:63:9","statements":[{"errorCall":{"arguments":[{"id":2632,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2596,"src":"13629:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2631,"name":"ERC721NonexistentToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6488,"src":"13606:22:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":2633,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13606:31:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2634,"nodeType":"RevertStatement","src":"13599:38:9"}]}}]},"documentation":{"id":2590,"nodeType":"StructuredDocumentation","src":"12991:313:9","text":" @dev Transfers `tokenId` from `from` to `to`.\n  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.\n Requirements:\n - `to` cannot be the zero address.\n - `tokenId` token must be owned by `from`.\n Emits a {Transfer} event."},"id":2649,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"13318:9:9","nodeType":"FunctionDefinition","parameters":{"id":2597,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2592,"mutability":"mutable","name":"from","nameLocation":"13336:4:9","nodeType":"VariableDeclaration","scope":2649,"src":"13328:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2591,"name":"address","nodeType":"ElementaryTypeName","src":"13328:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2594,"mutability":"mutable","name":"to","nameLocation":"13350:2:9","nodeType":"VariableDeclaration","scope":2649,"src":"13342:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2593,"name":"address","nodeType":"ElementaryTypeName","src":"13342:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2596,"mutability":"mutable","name":"tokenId","nameLocation":"13362:7:9","nodeType":"VariableDeclaration","scope":2649,"src":"13354:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2595,"name":"uint256","nodeType":"ElementaryTypeName","src":"13354:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13327:43:9"},"returnParameters":{"id":2598,"nodeType":"ParameterList","parameters":[],"src":"13380:0:9"},"scope":2864,"src":"13309:460:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2666,"nodeType":"Block","src":"14778:53:9","statements":[{"expression":{"arguments":[{"id":2660,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2652,"src":"14802:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2661,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2654,"src":"14808:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2662,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2656,"src":"14812:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"","id":2663,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14821:2:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":2659,"name":"_safeTransfer","nodeType":"Identifier","overloadedDeclarations":[2667,2697],"referencedDeclaration":2697,"src":"14788:13:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,uint256,bytes memory)"}},"id":2664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14788:36:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2665,"nodeType":"ExpressionStatement","src":"14788:36:9"}]},"documentation":{"id":2650,"nodeType":"StructuredDocumentation","src":"13775:923:9","text":" @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients\n are aware of the ERC-721 standard to prevent tokens from being forever locked.\n `data` is additional data, it has no specified format and it is sent in call to `to`.\n This internal function is like {safeTransferFrom} in the sense that it invokes\n {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.\n implement alternative mechanisms to perform token transfer, such as signature-based.\n Requirements:\n - `tokenId` token must exist and be owned by `from`.\n - `to` cannot be the zero address.\n - `from` cannot be the zero address.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n Emits a {Transfer} event."},"id":2667,"implemented":true,"kind":"function","modifiers":[],"name":"_safeTransfer","nameLocation":"14712:13:9","nodeType":"FunctionDefinition","parameters":{"id":2657,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2652,"mutability":"mutable","name":"from","nameLocation":"14734:4:9","nodeType":"VariableDeclaration","scope":2667,"src":"14726:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2651,"name":"address","nodeType":"ElementaryTypeName","src":"14726:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2654,"mutability":"mutable","name":"to","nameLocation":"14748:2:9","nodeType":"VariableDeclaration","scope":2667,"src":"14740:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2653,"name":"address","nodeType":"ElementaryTypeName","src":"14740:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2656,"mutability":"mutable","name":"tokenId","nameLocation":"14760:7:9","nodeType":"VariableDeclaration","scope":2667,"src":"14752:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2655,"name":"uint256","nodeType":"ElementaryTypeName","src":"14752:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14725:43:9"},"returnParameters":{"id":2658,"nodeType":"ParameterList","parameters":[],"src":"14778:0:9"},"scope":2864,"src":"14703:128:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2696,"nodeType":"Block","src":"15170:127:9","statements":[{"expression":{"arguments":[{"id":2680,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2670,"src":"15190:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2681,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2672,"src":"15196:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2682,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2674,"src":"15200:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2679,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2649,"src":"15180:9:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15180:28:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2684,"nodeType":"ExpressionStatement","src":"15180:28:9"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":2688,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"15252:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2689,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15252:12:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2690,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2670,"src":"15266:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2691,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2672,"src":"15272:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2692,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2674,"src":"15276:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2693,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2676,"src":"15285:4:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":2685,"name":"ERC721Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9594,"src":"15218:11:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC721Utils_$9594_$","typeString":"type(library ERC721Utils)"}},"id":2687,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15230:21:9","memberName":"checkOnERC721Received","nodeType":"MemberAccess","referencedDeclaration":9593,"src":"15218:33:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256,bytes memory)"}},"id":2694,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15218:72:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2695,"nodeType":"ExpressionStatement","src":"15218:72:9"}]},"documentation":{"id":2668,"nodeType":"StructuredDocumentation","src":"14837:226:9","text":" @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is\n forwarded in {IERC721Receiver-onERC721Received} to contract recipients."},"id":2697,"implemented":true,"kind":"function","modifiers":[],"name":"_safeTransfer","nameLocation":"15077:13:9","nodeType":"FunctionDefinition","parameters":{"id":2677,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2670,"mutability":"mutable","name":"from","nameLocation":"15099:4:9","nodeType":"VariableDeclaration","scope":2697,"src":"15091:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2669,"name":"address","nodeType":"ElementaryTypeName","src":"15091:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2672,"mutability":"mutable","name":"to","nameLocation":"15113:2:9","nodeType":"VariableDeclaration","scope":2697,"src":"15105:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2671,"name":"address","nodeType":"ElementaryTypeName","src":"15105:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2674,"mutability":"mutable","name":"tokenId","nameLocation":"15125:7:9","nodeType":"VariableDeclaration","scope":2697,"src":"15117:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2673,"name":"uint256","nodeType":"ElementaryTypeName","src":"15117:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2676,"mutability":"mutable","name":"data","nameLocation":"15147:4:9","nodeType":"VariableDeclaration","scope":2697,"src":"15134:17:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2675,"name":"bytes","nodeType":"ElementaryTypeName","src":"15134:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15090:62:9"},"returnParameters":{"id":2678,"nodeType":"ParameterList","parameters":[],"src":"15170:0:9"},"scope":2864,"src":"15068:229:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2714,"nodeType":"Block","src":"15810:50:9","statements":[{"expression":{"arguments":[{"id":2708,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2700,"src":"15829:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2709,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2702,"src":"15833:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2710,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2704,"src":"15842:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"74727565","id":2711,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"15848:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":2707,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[2715,2789],"referencedDeclaration":2789,"src":"15820:8:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_address_$_t_bool_$returns$__$","typeString":"function (address,uint256,address,bool)"}},"id":2712,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15820:33:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2713,"nodeType":"ExpressionStatement","src":"15820:33:9"}]},"documentation":{"id":2698,"nodeType":"StructuredDocumentation","src":"15303:432:9","text":" @dev Approve `to` to operate on `tokenId`\n The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is\n either the owner of the token, or approved to operate on all tokens held by this owner.\n Emits an {Approval} event.\n Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument."},"id":2715,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"15749:8:9","nodeType":"FunctionDefinition","parameters":{"id":2705,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2700,"mutability":"mutable","name":"to","nameLocation":"15766:2:9","nodeType":"VariableDeclaration","scope":2715,"src":"15758:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2699,"name":"address","nodeType":"ElementaryTypeName","src":"15758:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2702,"mutability":"mutable","name":"tokenId","nameLocation":"15778:7:9","nodeType":"VariableDeclaration","scope":2715,"src":"15770:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2701,"name":"uint256","nodeType":"ElementaryTypeName","src":"15770:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2704,"mutability":"mutable","name":"auth","nameLocation":"15795:4:9","nodeType":"VariableDeclaration","scope":2715,"src":"15787:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2703,"name":"address","nodeType":"ElementaryTypeName","src":"15787:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15757:43:9"},"returnParameters":{"id":2706,"nodeType":"ParameterList","parameters":[],"src":"15810:0:9"},"scope":2864,"src":"15740:120:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2788,"nodeType":"Block","src":"16136:625:9","statements":[{"assignments":[2729],"declarations":[{"constant":false,"id":2729,"mutability":"mutable","name":"$","nameLocation":"16168:1:9","nodeType":"VariableDeclaration","scope":2788,"src":"16146:23:9","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":2728,"nodeType":"UserDefinedTypeName","pathNode":{"id":2727,"name":"ERC721Storage","nameLocations":["16146:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":1844,"src":"16146:13:9"},"referencedDeclaration":1844,"src":"16146:13:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":2732,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":2730,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1855,"src":"16172:17:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$1844_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":2731,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16172:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"16146:45:9"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2740,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2733,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2724,"src":"16257:9:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2739,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2734,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2722,"src":"16270:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2737,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16286:1:9","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":2736,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16278:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2735,"name":"address","nodeType":"ElementaryTypeName","src":"16278:7:9","typeDescriptions":{}}},"id":2738,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16278:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16270:18:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16257:31:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2779,"nodeType":"IfStatement","src":"16253:460:9","trueBody":{"id":2778,"nodeType":"Block","src":"16290:423:9","statements":[{"assignments":[2742],"declarations":[{"constant":false,"id":2742,"mutability":"mutable","name":"owner","nameLocation":"16312:5:9","nodeType":"VariableDeclaration","scope":2778,"src":"16304:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2741,"name":"address","nodeType":"ElementaryTypeName","src":"16304:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2746,"initialValue":{"arguments":[{"id":2744,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2720,"src":"16334:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2743,"name":"_requireOwned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2863,"src":"16320:13:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":2745,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16320:22:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"16304:38:9"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2747,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2722,"src":"16470:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2750,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16486:1:9","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":2749,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16478:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2748,"name":"address","nodeType":"ElementaryTypeName","src":"16478:7:9","typeDescriptions":{}}},"id":2751,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16478:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16470:18:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2753,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2742,"src":"16492:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":2754,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2722,"src":"16501:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16492:13:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16470:35:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":2761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"16509:30:9","subExpression":{"arguments":[{"id":2758,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2742,"src":"16527:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2759,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2722,"src":"16534:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2757,"name":"isApprovedForAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2128,"src":"16510:16:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_bool_$","typeString":"function (address,address) view returns (bool)"}},"id":2760,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16510:29:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16470:69:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2768,"nodeType":"IfStatement","src":"16466:142:9","trueBody":{"id":2767,"nodeType":"Block","src":"16541:67:9","statements":[{"errorCall":{"arguments":[{"id":2764,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2722,"src":"16588:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2763,"name":"ERC721InvalidApprover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6519,"src":"16566:21:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":2765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16566:27:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2766,"nodeType":"RevertStatement","src":"16559:34:9"}]}},{"condition":{"id":2769,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2724,"src":"16626:9:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2777,"nodeType":"IfStatement","src":"16622:81:9","trueBody":{"id":2776,"nodeType":"Block","src":"16637:66:9","statements":[{"eventCall":{"arguments":[{"id":2771,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2742,"src":"16669:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2772,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2718,"src":"16676:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2773,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2720,"src":"16680:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2770,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9379,"src":"16660:8:9","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2774,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16660:28:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2775,"nodeType":"EmitStatement","src":"16655:33:9"}]}}]}},{"expression":{"id":2786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":2780,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2729,"src":"16723:1:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":2783,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16725:15:9","memberName":"_tokenApprovals","nodeType":"MemberAccess","referencedDeclaration":1837,"src":"16723:17:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":2784,"indexExpression":{"id":2782,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2720,"src":"16741:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"16723:26:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2785,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2718,"src":"16752:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16723:31:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2787,"nodeType":"ExpressionStatement","src":"16723:31:9"}]},"documentation":{"id":2716,"nodeType":"StructuredDocumentation","src":"15866:171:9","text":" @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not\n emitted in the context of transfers."},"id":2789,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"16051:8:9","nodeType":"FunctionDefinition","parameters":{"id":2725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2718,"mutability":"mutable","name":"to","nameLocation":"16068:2:9","nodeType":"VariableDeclaration","scope":2789,"src":"16060:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2717,"name":"address","nodeType":"ElementaryTypeName","src":"16060:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2720,"mutability":"mutable","name":"tokenId","nameLocation":"16080:7:9","nodeType":"VariableDeclaration","scope":2789,"src":"16072:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2719,"name":"uint256","nodeType":"ElementaryTypeName","src":"16072:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2722,"mutability":"mutable","name":"auth","nameLocation":"16097:4:9","nodeType":"VariableDeclaration","scope":2789,"src":"16089:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2721,"name":"address","nodeType":"ElementaryTypeName","src":"16089:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2724,"mutability":"mutable","name":"emitEvent","nameLocation":"16108:9:9","nodeType":"VariableDeclaration","scope":2789,"src":"16103:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2723,"name":"bool","nodeType":"ElementaryTypeName","src":"16103:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"16059:59:9"},"returnParameters":{"id":2726,"nodeType":"ParameterList","parameters":[],"src":"16136:0:9"},"scope":2864,"src":"16042:719:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2833,"nodeType":"Block","src":"17063:276:9","statements":[{"assignments":[2801],"declarations":[{"constant":false,"id":2801,"mutability":"mutable","name":"$","nameLocation":"17095:1:9","nodeType":"VariableDeclaration","scope":2833,"src":"17073:23:9","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":2800,"nodeType":"UserDefinedTypeName","pathNode":{"id":2799,"name":"ERC721Storage","nameLocations":["17073:13:9"],"nodeType":"IdentifierPath","referencedDeclaration":1844,"src":"17073:13:9"},"referencedDeclaration":1844,"src":"17073:13:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":2804,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":2802,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1855,"src":"17099:17:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$1844_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":2803,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17099:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"17073:45:9"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2810,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2805,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2794,"src":"17132:8:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2808,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17152:1:9","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":2807,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17144:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2806,"name":"address","nodeType":"ElementaryTypeName","src":"17144:7:9","typeDescriptions":{}}},"id":2809,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17144:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"17132:22:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2816,"nodeType":"IfStatement","src":"17128:91:9","trueBody":{"id":2815,"nodeType":"Block","src":"17156:63:9","statements":[{"errorCall":{"arguments":[{"id":2812,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2794,"src":"17199:8:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2811,"name":"ERC721InvalidOperator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6524,"src":"17177:21:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":2813,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17177:31:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2814,"nodeType":"RevertStatement","src":"17170:38:9"}]}},{"expression":{"id":2825,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"expression":{"id":2817,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2801,"src":"17228:1:9","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$1844_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":2821,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17230:18:9","memberName":"_operatorApprovals","nodeType":"MemberAccess","referencedDeclaration":1843,"src":"17228:20:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$","typeString":"mapping(address => mapping(address => bool))"}},"id":2822,"indexExpression":{"id":2819,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2792,"src":"17249:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17228:27:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2823,"indexExpression":{"id":2820,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2794,"src":"17256:8:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"17228:37:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2824,"name":"approved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2796,"src":"17268:8:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17228:48:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2826,"nodeType":"ExpressionStatement","src":"17228:48:9"},{"eventCall":{"arguments":[{"id":2828,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2792,"src":"17306:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2829,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2794,"src":"17313:8:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2830,"name":"approved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2796,"src":"17323:8:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":2827,"name":"ApprovalForAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9388,"src":"17291:14:9","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_bool_$returns$__$","typeString":"function (address,address,bool)"}},"id":2831,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17291:41:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2832,"nodeType":"EmitStatement","src":"17286:46:9"}]},"documentation":{"id":2790,"nodeType":"StructuredDocumentation","src":"16767:198:9","text":" @dev Approve `operator` to operate on all of `owner` tokens\n Requirements:\n - operator can't be the address zero.\n Emits an {ApprovalForAll} event."},"id":2834,"implemented":true,"kind":"function","modifiers":[],"name":"_setApprovalForAll","nameLocation":"16979:18:9","nodeType":"FunctionDefinition","parameters":{"id":2797,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2792,"mutability":"mutable","name":"owner","nameLocation":"17006:5:9","nodeType":"VariableDeclaration","scope":2834,"src":"16998:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2791,"name":"address","nodeType":"ElementaryTypeName","src":"16998:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2794,"mutability":"mutable","name":"operator","nameLocation":"17021:8:9","nodeType":"VariableDeclaration","scope":2834,"src":"17013:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2793,"name":"address","nodeType":"ElementaryTypeName","src":"17013:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2796,"mutability":"mutable","name":"approved","nameLocation":"17036:8:9","nodeType":"VariableDeclaration","scope":2834,"src":"17031:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2795,"name":"bool","nodeType":"ElementaryTypeName","src":"17031:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"16997:48:9"},"returnParameters":{"id":2798,"nodeType":"ParameterList","parameters":[],"src":"17063:0:9"},"scope":2864,"src":"16970:369:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2862,"nodeType":"Block","src":"17646:169:9","statements":[{"assignments":[2843],"declarations":[{"constant":false,"id":2843,"mutability":"mutable","name":"owner","nameLocation":"17664:5:9","nodeType":"VariableDeclaration","scope":2862,"src":"17656:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2842,"name":"address","nodeType":"ElementaryTypeName","src":"17656:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2847,"initialValue":{"arguments":[{"id":2845,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2837,"src":"17681:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2844,"name":"_ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2242,"src":"17672:8:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":2846,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17672:17:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"17656:33:9"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2848,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2843,"src":"17703:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2851,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17720:1:9","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":2850,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17712:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2849,"name":"address","nodeType":"ElementaryTypeName","src":"17712:7:9","typeDescriptions":{}}},"id":2852,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17712:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"17703:19:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2859,"nodeType":"IfStatement","src":"17699:88:9","trueBody":{"id":2858,"nodeType":"Block","src":"17724:63:9","statements":[{"errorCall":{"arguments":[{"id":2855,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2837,"src":"17768:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2854,"name":"ERC721NonexistentToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6488,"src":"17745:22:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":2856,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17745:31:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2857,"nodeType":"RevertStatement","src":"17738:38:9"}]}},{"expression":{"id":2860,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2843,"src":"17803:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":2841,"id":2861,"nodeType":"Return","src":"17796:12:9"}]},"documentation":{"id":2835,"nodeType":"StructuredDocumentation","src":"17345:224:9","text":" @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).\n Returns the owner.\n Overrides to ownership logic should be done to {_ownerOf}."},"id":2863,"implemented":true,"kind":"function","modifiers":[],"name":"_requireOwned","nameLocation":"17583:13:9","nodeType":"FunctionDefinition","parameters":{"id":2838,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2837,"mutability":"mutable","name":"tokenId","nameLocation":"17605:7:9","nodeType":"VariableDeclaration","scope":2863,"src":"17597:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2836,"name":"uint256","nodeType":"ElementaryTypeName","src":"17597:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17596:17:9"},"returnParameters":{"id":2841,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2840,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2863,"src":"17637:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2839,"name":"address","nodeType":"ElementaryTypeName","src":"17637:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"17636:9:9"},"scope":2864,"src":"17574:241:9","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":2865,"src":"1117:16700:9","usedErrors":[6483,6488,6497,6502,6507,6514,6519,6524,6967,6970],"usedEvents":[6975,9370,9379,9388]}],"src":"107:17711:9"},"id":9},"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[2910],"Initializable":[7218]},"id":2911,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2866,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:10"},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":2868,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2911,"sourceUnit":7219,"src":"126:84:10","symbolAliases":[{"foreign":{"id":2867,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7218,"src":"134:13:10","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":2870,"name":"Initializable","nameLocations":["749:13:10"],"nodeType":"IdentifierPath","referencedDeclaration":7218,"src":"749:13:10"},"id":2871,"nodeType":"InheritanceSpecifier","src":"749:13:10"}],"canonicalName":"ContextUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":2869,"nodeType":"StructuredDocumentation","src":"212:496:10","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":2910,"linearizedBaseContracts":[2910,7218],"name":"ContextUpgradeable","nameLocation":"727:18:10","nodeType":"ContractDefinition","nodes":[{"body":{"id":2876,"nodeType":"Block","src":"821:7:10","statements":[]},"id":2877,"implemented":true,"kind":"function","modifiers":[{"id":2874,"kind":"modifierInvocation","modifierName":{"id":2873,"name":"onlyInitializing","nameLocations":["804:16:10"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"804:16:10"},"nodeType":"ModifierInvocation","src":"804:16:10"}],"name":"__Context_init","nameLocation":"778:14:10","nodeType":"FunctionDefinition","parameters":{"id":2872,"nodeType":"ParameterList","parameters":[],"src":"792:2:10"},"returnParameters":{"id":2875,"nodeType":"ParameterList","parameters":[],"src":"821:0:10"},"scope":2910,"src":"769:59:10","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2882,"nodeType":"Block","src":"896:7:10","statements":[]},"id":2883,"implemented":true,"kind":"function","modifiers":[{"id":2880,"kind":"modifierInvocation","modifierName":{"id":2879,"name":"onlyInitializing","nameLocations":["879:16:10"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"879:16:10"},"nodeType":"ModifierInvocation","src":"879:16:10"}],"name":"__Context_init_unchained","nameLocation":"843:24:10","nodeType":"FunctionDefinition","parameters":{"id":2878,"nodeType":"ParameterList","parameters":[],"src":"867:2:10"},"returnParameters":{"id":2881,"nodeType":"ParameterList","parameters":[],"src":"896:0:10"},"scope":2910,"src":"834:69:10","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2891,"nodeType":"Block","src":"970:34:10","statements":[{"expression":{"expression":{"id":2888,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"987:3:10","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2889,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"991:6:10","memberName":"sender","nodeType":"MemberAccess","src":"987:10:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":2887,"id":2890,"nodeType":"Return","src":"980:17:10"}]},"id":2892,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"917:10:10","nodeType":"FunctionDefinition","parameters":{"id":2884,"nodeType":"ParameterList","parameters":[],"src":"927:2:10"},"returnParameters":{"id":2887,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2886,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2892,"src":"961:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2885,"name":"address","nodeType":"ElementaryTypeName","src":"961:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"960:9:10"},"scope":2910,"src":"908:96:10","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":2900,"nodeType":"Block","src":"1077:32:10","statements":[{"expression":{"expression":{"id":2897,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1094:3:10","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2898,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1098:4:10","memberName":"data","nodeType":"MemberAccess","src":"1094:8:10","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":2896,"id":2899,"nodeType":"Return","src":"1087:15:10"}]},"id":2901,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"1019:8:10","nodeType":"FunctionDefinition","parameters":{"id":2893,"nodeType":"ParameterList","parameters":[],"src":"1027:2:10"},"returnParameters":{"id":2896,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2895,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2901,"src":"1061:14:10","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":2894,"name":"bytes","nodeType":"ElementaryTypeName","src":"1061:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1060:16:10"},"scope":2910,"src":"1010:99:10","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":2908,"nodeType":"Block","src":"1187:25:10","statements":[{"expression":{"hexValue":"30","id":2906,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1204:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":2905,"id":2907,"nodeType":"Return","src":"1197:8:10"}]},"id":2909,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"1124:20:10","nodeType":"FunctionDefinition","parameters":{"id":2902,"nodeType":"ParameterList","parameters":[],"src":"1144:2:10"},"returnParameters":{"id":2905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2904,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2909,"src":"1178:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2903,"name":"uint256","nodeType":"ElementaryTypeName","src":"1178:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1177:9:10"},"scope":2910,"src":"1115:97:10","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":2911,"src":"709:505:10","usedErrors":[6967,6970],"usedEvents":[6975]}],"src":"101:1114:10"},"id":10},"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol","exportedSymbols":{"Address":[9984],"ContextUpgradeable":[2910],"Initializable":[7218],"MulticallUpgradeable":[3013]},"id":3014,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2912,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"103:24:11"},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"@openzeppelin/contracts/utils/Address.sol","id":2914,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3014,"sourceUnit":9985,"src":"129:66:11","symbolAliases":[{"foreign":{"id":2913,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9984,"src":"137:7:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"./ContextUpgradeable.sol","id":2916,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3014,"sourceUnit":2911,"src":"196:60:11","symbolAliases":[{"foreign":{"id":2915,"name":"ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2910,"src":"204:18:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":2918,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3014,"sourceUnit":7219,"src":"257:84:11","symbolAliases":[{"foreign":{"id":2917,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7218,"src":"265:13:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":2920,"name":"Initializable","nameLocations":["1199:13:11"],"nodeType":"IdentifierPath","referencedDeclaration":7218,"src":"1199:13:11"},"id":2921,"nodeType":"InheritanceSpecifier","src":"1199:13:11"},{"baseName":{"id":2922,"name":"ContextUpgradeable","nameLocations":["1214:18:11"],"nodeType":"IdentifierPath","referencedDeclaration":2910,"src":"1214:18:11"},"id":2923,"nodeType":"InheritanceSpecifier","src":"1214:18:11"}],"canonicalName":"MulticallUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":2919,"nodeType":"StructuredDocumentation","src":"343:813:11","text":" @dev Provides a function to batch together multiple calls in a single external call.\n Consider any assumption about calldata validation performed by the sender may be violated if it's not especially\n careful about sending transactions invoking {multicall}. For example, a relay address that filters function\n selectors won't filter calls nested within a {multicall} operation.\n NOTE: Since 5.0.1 and 4.9.4, this contract identifies non-canonical contexts (i.e. `msg.sender` is not {Context-_msgSender}).\n If a non-canonical context is identified, the following self `delegatecall` appends the last bytes of `msg.data`\n to the subcall. This makes it safe to use with {ERC2771Context}. Contexts that don't affect the resolution of\n {Context-_msgSender} are not propagated to subcalls."},"fullyImplemented":true,"id":3013,"linearizedBaseContracts":[3013,2910,7218],"name":"MulticallUpgradeable","nameLocation":"1175:20:11","nodeType":"ContractDefinition","nodes":[{"body":{"id":2928,"nodeType":"Block","src":"1293:7:11","statements":[]},"id":2929,"implemented":true,"kind":"function","modifiers":[{"id":2926,"kind":"modifierInvocation","modifierName":{"id":2925,"name":"onlyInitializing","nameLocations":["1276:16:11"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"1276:16:11"},"nodeType":"ModifierInvocation","src":"1276:16:11"}],"name":"__Multicall_init","nameLocation":"1248:16:11","nodeType":"FunctionDefinition","parameters":{"id":2924,"nodeType":"ParameterList","parameters":[],"src":"1264:2:11"},"returnParameters":{"id":2927,"nodeType":"ParameterList","parameters":[],"src":"1293:0:11"},"scope":3013,"src":"1239:61:11","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2934,"nodeType":"Block","src":"1370:7:11","statements":[]},"id":2935,"implemented":true,"kind":"function","modifiers":[{"id":2932,"kind":"modifierInvocation","modifierName":{"id":2931,"name":"onlyInitializing","nameLocations":["1353:16:11"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"1353:16:11"},"nodeType":"ModifierInvocation","src":"1353:16:11"}],"name":"__Multicall_init_unchained","nameLocation":"1315:26:11","nodeType":"FunctionDefinition","parameters":{"id":2930,"nodeType":"ParameterList","parameters":[],"src":"1341:2:11"},"returnParameters":{"id":2933,"nodeType":"ParameterList","parameters":[],"src":"1370:0:11"},"scope":3013,"src":"1306:71:11","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3011,"nodeType":"Block","src":"1629:392:11","statements":[{"assignments":[2946],"declarations":[{"constant":false,"id":2946,"mutability":"mutable","name":"context","nameLocation":"1652:7:11","nodeType":"VariableDeclaration","scope":3011,"src":"1639:20:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2945,"name":"bytes","nodeType":"ElementaryTypeName","src":"1639:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2966,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2951,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2947,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1662:3:11","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1666:6:11","memberName":"sender","nodeType":"MemberAccess","src":"1662:10:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":2949,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"1676:10:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2950,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1676:12:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1662:26:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"baseExpression":{"expression":{"id":2956,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1730:3:11","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2957,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1734:4:11","memberName":"data","nodeType":"MemberAccess","src":"1730:8:11","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":2964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"1730:51:11","startExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2963,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":2958,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1739:3:11","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1743:4:11","memberName":"data","nodeType":"MemberAccess","src":"1739:8:11","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":2960,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1748:6:11","memberName":"length","nodeType":"MemberAccess","src":"1739:15:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":2961,"name":"_contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2909,"src":"1757:20:11","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":2962,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1757:22:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1739:40:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},"id":2965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1662:119:11","trueExpression":{"arguments":[{"hexValue":"30","id":2954,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1713: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":2953,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1703:9:11","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":2952,"name":"bytes","nodeType":"ElementaryTypeName","src":"1707:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":2955,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1703:12:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"1639:142:11"},{"expression":{"id":2974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2967,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2943,"src":"1792:7:11","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":2971,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2939,"src":"1814:4:11","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":2972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1819:6:11","memberName":"length","nodeType":"MemberAccess","src":"1814:11:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2970,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1802:11:11","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":2968,"name":"bytes","nodeType":"ElementaryTypeName","src":"1806:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2969,"nodeType":"ArrayTypeName","src":"1806:7:11","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}}},"id":2973,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1802:24:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"src":"1792:34:11","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":2975,"nodeType":"ExpressionStatement","src":"1792:34:11"},{"body":{"id":3007,"nodeType":"Block","src":"1878:113:11","statements":[{"expression":{"id":3005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2987,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2943,"src":"1892:7:11","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":2989,"indexExpression":{"id":2988,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2977,"src":"1900:1:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1892:10:11","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":2994,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1942:4:11","typeDescriptions":{"typeIdentifier":"t_contract$_MulticallUpgradeable_$3013","typeString":"contract MulticallUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_MulticallUpgradeable_$3013","typeString":"contract MulticallUpgradeable"}],"id":2993,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1934:7:11","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2992,"name":"address","nodeType":"ElementaryTypeName","src":"1934:7:11","typeDescriptions":{}}},"id":2995,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1934:13:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"baseExpression":{"id":2999,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2939,"src":"1962:4:11","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3001,"indexExpression":{"id":3000,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2977,"src":"1967:1:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1962:7:11","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":3002,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2946,"src":"1971:7:11","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":2997,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1949:5:11","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2996,"name":"bytes","nodeType":"ElementaryTypeName","src":"1949:5:11","typeDescriptions":{}}},"id":2998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1955:6:11","memberName":"concat","nodeType":"MemberAccess","src":"1949:12:11","typeDescriptions":{"typeIdentifier":"t_function_bytesconcat_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":3003,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1949:30:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":2990,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9984,"src":"1905:7:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$9984_$","typeString":"type(library Address)"}},"id":2991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1913:20:11","memberName":"functionDelegateCall","nodeType":"MemberAccess","referencedDeclaration":9894,"src":"1905:28:11","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":3004,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1905:75:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"1892:88:11","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3006,"nodeType":"ExpressionStatement","src":"1892:88:11"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2980,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2977,"src":"1856:1:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":2981,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2939,"src":"1860:4:11","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":2982,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1865:6:11","memberName":"length","nodeType":"MemberAccess","src":"1860:11:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1856:15:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3008,"initializationExpression":{"assignments":[2977],"declarations":[{"constant":false,"id":2977,"mutability":"mutable","name":"i","nameLocation":"1849:1:11","nodeType":"VariableDeclaration","scope":3008,"src":"1841:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2976,"name":"uint256","nodeType":"ElementaryTypeName","src":"1841:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2979,"initialValue":{"hexValue":"30","id":2978,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1853:1:11","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"1841:13:11"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":2985,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1873:3:11","subExpression":{"id":2984,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2977,"src":"1873:1:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2986,"nodeType":"ExpressionStatement","src":"1873:3:11"},"nodeType":"ForStatement","src":"1836:155:11"},{"expression":{"id":3009,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2943,"src":"2007:7:11","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"functionReturnParameters":2944,"id":3010,"nodeType":"Return","src":"2000:14:11"}]},"documentation":{"id":2936,"nodeType":"StructuredDocumentation","src":"1382:152:11","text":" @dev Receives and executes a batch of function calls on this contract.\n @custom:oz-upgrades-unsafe-allow-reachable delegatecall"},"functionSelector":"ac9650d8","id":3012,"implemented":true,"kind":"function","modifiers":[],"name":"multicall","nameLocation":"1548:9:11","nodeType":"FunctionDefinition","parameters":{"id":2940,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2939,"mutability":"mutable","name":"data","nameLocation":"1575:4:11","nodeType":"VariableDeclaration","scope":3012,"src":"1558:21:11","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2937,"name":"bytes","nodeType":"ElementaryTypeName","src":"1558:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2938,"nodeType":"ArrayTypeName","src":"1558:7:11","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"1557:23:11"},"returnParameters":{"id":2944,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2943,"mutability":"mutable","name":"results","nameLocation":"1620:7:11","nodeType":"VariableDeclaration","scope":3012,"src":"1605:22:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2941,"name":"bytes","nodeType":"ElementaryTypeName","src":"1605:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2942,"nodeType":"ArrayTypeName","src":"1605:7:11","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"1604:24:11"},"scope":3013,"src":"1539:482:11","stateMutability":"nonpayable","virtual":true,"visibility":"public"}],"scope":3014,"src":"1157:866:11","usedErrors":[6967,6970,9606,10740],"usedEvents":[6975]}],"src":"103:1921:11"},"id":11},"@openzeppelin/contracts-upgradeable/utils/NoncesUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/NoncesUpgradeable.sol","exportedSymbols":{"Initializable":[7218],"NoncesUpgradeable":[3124]},"id":3125,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3015,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:12"},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":3017,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3125,"sourceUnit":7219,"src":"124:84:12","symbolAliases":[{"foreign":{"id":3016,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7218,"src":"132:13:12","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":3019,"name":"Initializable","nameLocations":["333:13:12"],"nodeType":"IdentifierPath","referencedDeclaration":7218,"src":"333:13:12"},"id":3020,"nodeType":"InheritanceSpecifier","src":"333:13:12"}],"canonicalName":"NoncesUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":3018,"nodeType":"StructuredDocumentation","src":"210:83:12","text":" @dev Provides tracking nonces for addresses. Nonces will only increment."},"fullyImplemented":true,"id":3124,"linearizedBaseContracts":[3124,7218],"name":"NoncesUpgradeable","nameLocation":"312:17:12","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":3021,"nodeType":"StructuredDocumentation","src":"353:90:12","text":" @dev The nonce used for an `account` is not the expected current nonce."},"errorSelector":"752d88c0","id":3027,"name":"InvalidAccountNonce","nameLocation":"454:19:12","nodeType":"ErrorDefinition","parameters":{"id":3026,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3023,"mutability":"mutable","name":"account","nameLocation":"482:7:12","nodeType":"VariableDeclaration","scope":3027,"src":"474:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3022,"name":"address","nodeType":"ElementaryTypeName","src":"474:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3025,"mutability":"mutable","name":"currentNonce","nameLocation":"499:12:12","nodeType":"VariableDeclaration","scope":3027,"src":"491:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3024,"name":"uint256","nodeType":"ElementaryTypeName","src":"491:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"473:39:12"},"src":"448:65:12"},{"canonicalName":"NoncesUpgradeable.NoncesStorage","documentation":{"id":3028,"nodeType":"StructuredDocumentation","src":"519:64:12","text":"@custom:storage-location erc7201:openzeppelin.storage.Nonces"},"id":3033,"members":[{"constant":false,"id":3032,"mutability":"mutable","name":"_nonces","nameLocation":"655:7:12","nodeType":"VariableDeclaration","scope":3033,"src":"619:43:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":3031,"keyName":"account","keyNameLocation":"635:7:12","keyType":{"id":3029,"name":"address","nodeType":"ElementaryTypeName","src":"627:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"619:35:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":3030,"name":"uint256","nodeType":"ElementaryTypeName","src":"646:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"}],"name":"NoncesStorage","nameLocation":"595:13:12","nodeType":"StructDefinition","scope":3124,"src":"588:81:12","visibility":"public"},{"constant":true,"id":3036,"mutability":"constant","name":"NoncesStorageLocation","nameLocation":"810:21:12","nodeType":"VariableDeclaration","scope":3124,"src":"785:115:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3034,"name":"bytes32","nodeType":"ElementaryTypeName","src":"785:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307835616234326365643632383838383235396330386163393864623165623063663730326663313530313334343331316438623130306364316266653462623030","id":3035,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"834:66:12","typeDescriptions":{"typeIdentifier":"t_rational_41026498920877473550552694860415970151284396403628511442111957027090812156672_by_1","typeString":"int_const 4102...(69 digits omitted)...6672"},"value":"0x5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb00"},"visibility":"private"},{"body":{"id":3043,"nodeType":"Block","src":"983:80:12","statements":[{"AST":{"nativeSrc":"1002:55:12","nodeType":"YulBlock","src":"1002:55:12","statements":[{"nativeSrc":"1016:31:12","nodeType":"YulAssignment","src":"1016:31:12","value":{"name":"NoncesStorageLocation","nativeSrc":"1026:21:12","nodeType":"YulIdentifier","src":"1026:21:12"},"variableNames":[{"name":"$.slot","nativeSrc":"1016:6:12","nodeType":"YulIdentifier","src":"1016:6:12"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":3040,"isOffset":false,"isSlot":true,"src":"1016:6:12","suffix":"slot","valueSize":1},{"declaration":3036,"isOffset":false,"isSlot":false,"src":"1026:21:12","valueSize":1}],"id":3042,"nodeType":"InlineAssembly","src":"993:64:12"}]},"id":3044,"implemented":true,"kind":"function","modifiers":[],"name":"_getNoncesStorage","nameLocation":"916:17:12","nodeType":"FunctionDefinition","parameters":{"id":3037,"nodeType":"ParameterList","parameters":[],"src":"933:2:12"},"returnParameters":{"id":3041,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3040,"mutability":"mutable","name":"$","nameLocation":"980:1:12","nodeType":"VariableDeclaration","scope":3044,"src":"958:23:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$3033_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage"},"typeName":{"id":3039,"nodeType":"UserDefinedTypeName","pathNode":{"id":3038,"name":"NoncesStorage","nameLocations":["958:13:12"],"nodeType":"IdentifierPath","referencedDeclaration":3033,"src":"958:13:12"},"referencedDeclaration":3033,"src":"958:13:12","typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$3033_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage"}},"visibility":"internal"}],"src":"957:25:12"},"scope":3124,"src":"907:156:12","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":3049,"nodeType":"Block","src":"1120:7:12","statements":[]},"id":3050,"implemented":true,"kind":"function","modifiers":[{"id":3047,"kind":"modifierInvocation","modifierName":{"id":3046,"name":"onlyInitializing","nameLocations":["1103:16:12"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"1103:16:12"},"nodeType":"ModifierInvocation","src":"1103:16:12"}],"name":"__Nonces_init","nameLocation":"1078:13:12","nodeType":"FunctionDefinition","parameters":{"id":3045,"nodeType":"ParameterList","parameters":[],"src":"1091:2:12"},"returnParameters":{"id":3048,"nodeType":"ParameterList","parameters":[],"src":"1120:0:12"},"scope":3124,"src":"1069:58:12","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3055,"nodeType":"Block","src":"1194:7:12","statements":[]},"id":3056,"implemented":true,"kind":"function","modifiers":[{"id":3053,"kind":"modifierInvocation","modifierName":{"id":3052,"name":"onlyInitializing","nameLocations":["1177:16:12"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"1177:16:12"},"nodeType":"ModifierInvocation","src":"1177:16:12"}],"name":"__Nonces_init_unchained","nameLocation":"1142:23:12","nodeType":"FunctionDefinition","parameters":{"id":3051,"nodeType":"ParameterList","parameters":[],"src":"1165:2:12"},"returnParameters":{"id":3054,"nodeType":"ParameterList","parameters":[],"src":"1194:0:12"},"scope":3124,"src":"1133:68:12","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3075,"nodeType":"Block","src":"1349:95:12","statements":[{"assignments":[3066],"declarations":[{"constant":false,"id":3066,"mutability":"mutable","name":"$","nameLocation":"1381:1:12","nodeType":"VariableDeclaration","scope":3075,"src":"1359:23:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$3033_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage"},"typeName":{"id":3065,"nodeType":"UserDefinedTypeName","pathNode":{"id":3064,"name":"NoncesStorage","nameLocations":["1359:13:12"],"nodeType":"IdentifierPath","referencedDeclaration":3033,"src":"1359:13:12"},"referencedDeclaration":3033,"src":"1359:13:12","typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$3033_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage"}},"visibility":"internal"}],"id":3069,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3067,"name":"_getNoncesStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3044,"src":"1385:17:12","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_NoncesStorage_$3033_storage_ptr_$","typeString":"function () pure returns (struct NoncesUpgradeable.NoncesStorage storage pointer)"}},"id":3068,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1385:19:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$3033_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"1359:45:12"},{"expression":{"baseExpression":{"expression":{"id":3070,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3066,"src":"1421:1:12","typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$3033_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage storage pointer"}},"id":3071,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1423:7:12","memberName":"_nonces","nodeType":"MemberAccess","referencedDeclaration":3032,"src":"1421:9:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3073,"indexExpression":{"id":3072,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3059,"src":"1431:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1421:16:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3063,"id":3074,"nodeType":"Return","src":"1414:23:12"}]},"documentation":{"id":3057,"nodeType":"StructuredDocumentation","src":"1206:69:12","text":" @dev Returns the next unused nonce for an address."},"functionSelector":"7ecebe00","id":3076,"implemented":true,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"1289:6:12","nodeType":"FunctionDefinition","parameters":{"id":3060,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3059,"mutability":"mutable","name":"owner","nameLocation":"1304:5:12","nodeType":"VariableDeclaration","scope":3076,"src":"1296:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3058,"name":"address","nodeType":"ElementaryTypeName","src":"1296:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1295:15:12"},"returnParameters":{"id":3063,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3062,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3076,"src":"1340:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3061,"name":"uint256","nodeType":"ElementaryTypeName","src":"1340:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1339:9:12"},"scope":3124,"src":"1280:164:12","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":3097,"nodeType":"Block","src":"1627:383:12","statements":[{"assignments":[3086],"declarations":[{"constant":false,"id":3086,"mutability":"mutable","name":"$","nameLocation":"1659:1:12","nodeType":"VariableDeclaration","scope":3097,"src":"1637:23:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$3033_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage"},"typeName":{"id":3085,"nodeType":"UserDefinedTypeName","pathNode":{"id":3084,"name":"NoncesStorage","nameLocations":["1637:13:12"],"nodeType":"IdentifierPath","referencedDeclaration":3033,"src":"1637:13:12"},"referencedDeclaration":3033,"src":"1637:13:12","typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$3033_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage"}},"visibility":"internal"}],"id":3089,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3087,"name":"_getNoncesStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3044,"src":"1663:17:12","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_NoncesStorage_$3033_storage_ptr_$","typeString":"function () pure returns (struct NoncesUpgradeable.NoncesStorage storage pointer)"}},"id":3088,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1663:19:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$3033_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"1637:45:12"},{"id":3096,"nodeType":"UncheckedBlock","src":"1885:119:12","statements":[{"expression":{"id":3094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1975:18:12","subExpression":{"baseExpression":{"expression":{"id":3090,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3086,"src":"1975:1:12","typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$3033_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage storage pointer"}},"id":3091,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1977:7:12","memberName":"_nonces","nodeType":"MemberAccess","referencedDeclaration":3032,"src":"1975:9:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3093,"indexExpression":{"id":3092,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3079,"src":"1985:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1975:16:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3083,"id":3095,"nodeType":"Return","src":"1968:25:12"}]}]},"documentation":{"id":3077,"nodeType":"StructuredDocumentation","src":"1450:103:12","text":" @dev Consumes a nonce.\n Returns the current value and increments nonce."},"id":3098,"implemented":true,"kind":"function","modifiers":[],"name":"_useNonce","nameLocation":"1567:9:12","nodeType":"FunctionDefinition","parameters":{"id":3080,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3079,"mutability":"mutable","name":"owner","nameLocation":"1585:5:12","nodeType":"VariableDeclaration","scope":3098,"src":"1577:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3078,"name":"address","nodeType":"ElementaryTypeName","src":"1577:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1576:15:12"},"returnParameters":{"id":3083,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3082,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3098,"src":"1618:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3081,"name":"uint256","nodeType":"ElementaryTypeName","src":"1618:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1617:9:12"},"scope":3124,"src":"1558:452:12","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":3122,"nodeType":"Block","src":"2194:149:12","statements":[{"assignments":[3107],"declarations":[{"constant":false,"id":3107,"mutability":"mutable","name":"current","nameLocation":"2212:7:12","nodeType":"VariableDeclaration","scope":3122,"src":"2204:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3106,"name":"uint256","nodeType":"ElementaryTypeName","src":"2204:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3111,"initialValue":{"arguments":[{"id":3109,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3101,"src":"2232:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3108,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3098,"src":"2222:9:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":3110,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2222:16:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2204:34:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3112,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3103,"src":"2252:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":3113,"name":"current","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3107,"src":"2261:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2252:16:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3121,"nodeType":"IfStatement","src":"2248:89:12","trueBody":{"id":3120,"nodeType":"Block","src":"2270:67:12","statements":[{"errorCall":{"arguments":[{"id":3116,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3101,"src":"2311:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3117,"name":"current","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3107,"src":"2318:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3115,"name":"InvalidAccountNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3027,"src":"2291:19:12","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256) pure returns (error)"}},"id":3118,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2291:35:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":3119,"nodeType":"RevertStatement","src":"2284:42:12"}]}}]},"documentation":{"id":3099,"nodeType":"StructuredDocumentation","src":"2016:100:12","text":" @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`."},"id":3123,"implemented":true,"kind":"function","modifiers":[],"name":"_useCheckedNonce","nameLocation":"2130:16:12","nodeType":"FunctionDefinition","parameters":{"id":3104,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3101,"mutability":"mutable","name":"owner","nameLocation":"2155:5:12","nodeType":"VariableDeclaration","scope":3123,"src":"2147:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3100,"name":"address","nodeType":"ElementaryTypeName","src":"2147:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3103,"mutability":"mutable","name":"nonce","nameLocation":"2170:5:12","nodeType":"VariableDeclaration","scope":3123,"src":"2162:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3102,"name":"uint256","nodeType":"ElementaryTypeName","src":"2162:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2146:30:12"},"returnParameters":{"id":3105,"nodeType":"ParameterList","parameters":[],"src":"2194:0:12"},"scope":3124,"src":"2121:222:12","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":3125,"src":"294:2051:12","usedErrors":[3027,6967,6970],"usedEvents":[6975]}],"src":"99:2247:12"},"id":12},"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[2910],"Initializable":[7218],"PausableUpgradeable":[3284]},"id":3285,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3126,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"102:24:13"},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"../utils/ContextUpgradeable.sol","id":3128,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3285,"sourceUnit":2911,"src":"128:67:13","symbolAliases":[{"foreign":{"id":3127,"name":"ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2910,"src":"136:18:13","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":3130,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3285,"sourceUnit":7219,"src":"196:84:13","symbolAliases":[{"foreign":{"id":3129,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7218,"src":"204:13:13","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":3132,"name":"Initializable","nameLocations":["763:13:13"],"nodeType":"IdentifierPath","referencedDeclaration":7218,"src":"763:13:13"},"id":3133,"nodeType":"InheritanceSpecifier","src":"763:13:13"},{"baseName":{"id":3134,"name":"ContextUpgradeable","nameLocations":["778:18:13"],"nodeType":"IdentifierPath","referencedDeclaration":2910,"src":"778:18:13"},"id":3135,"nodeType":"InheritanceSpecifier","src":"778:18:13"}],"canonicalName":"PausableUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":3131,"nodeType":"StructuredDocumentation","src":"282:439:13","text":" @dev Contract module which allows children to implement an emergency stop\n mechanism that can be triggered by an authorized account.\n This module is used through inheritance. It will make available the\n modifiers `whenNotPaused` and `whenPaused`, which can be applied to\n the functions of your contract. Note that they will not be pausable by\n simply including this module, only once the modifiers are put in place."},"fullyImplemented":true,"id":3284,"linearizedBaseContracts":[3284,2910,7218],"name":"PausableUpgradeable","nameLocation":"740:19:13","nodeType":"ContractDefinition","nodes":[{"canonicalName":"PausableUpgradeable.PausableStorage","documentation":{"id":3136,"nodeType":"StructuredDocumentation","src":"803:66:13","text":"@custom:storage-location erc7201:openzeppelin.storage.Pausable"},"id":3139,"members":[{"constant":false,"id":3138,"mutability":"mutable","name":"_paused","nameLocation":"912:7:13","nodeType":"VariableDeclaration","scope":3139,"src":"907:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3137,"name":"bool","nodeType":"ElementaryTypeName","src":"907:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"PausableStorage","nameLocation":"881:15:13","nodeType":"StructDefinition","scope":3284,"src":"874:52:13","visibility":"public"},{"constant":true,"id":3142,"mutability":"constant","name":"PausableStorageLocation","nameLocation":"1069:23:13","nodeType":"VariableDeclaration","scope":3284,"src":"1044:117:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3140,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1044:7:13","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307863643565643135633665313837653737653961656538383138346332316634663231383261623538323763623362376530376662656463643633663033333030","id":3141,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1095:66:13","typeDescriptions":{"typeIdentifier":"t_rational_92891662540554778686986514950364265630913525426840345632122912437671245656832_by_1","typeString":"int_const 9289...(69 digits omitted)...6832"},"value":"0xcd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300"},"visibility":"private"},{"body":{"id":3149,"nodeType":"Block","src":"1248:82:13","statements":[{"AST":{"nativeSrc":"1267:57:13","nodeType":"YulBlock","src":"1267:57:13","statements":[{"nativeSrc":"1281:33:13","nodeType":"YulAssignment","src":"1281:33:13","value":{"name":"PausableStorageLocation","nativeSrc":"1291:23:13","nodeType":"YulIdentifier","src":"1291:23:13"},"variableNames":[{"name":"$.slot","nativeSrc":"1281:6:13","nodeType":"YulIdentifier","src":"1281:6:13"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":3146,"isOffset":false,"isSlot":true,"src":"1281:6:13","suffix":"slot","valueSize":1},{"declaration":3142,"isOffset":false,"isSlot":false,"src":"1291:23:13","valueSize":1}],"id":3148,"nodeType":"InlineAssembly","src":"1258:66:13"}]},"id":3150,"implemented":true,"kind":"function","modifiers":[],"name":"_getPausableStorage","nameLocation":"1177:19:13","nodeType":"FunctionDefinition","parameters":{"id":3143,"nodeType":"ParameterList","parameters":[],"src":"1196:2:13"},"returnParameters":{"id":3147,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3146,"mutability":"mutable","name":"$","nameLocation":"1245:1:13","nodeType":"VariableDeclaration","scope":3150,"src":"1221:25:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$3139_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage"},"typeName":{"id":3145,"nodeType":"UserDefinedTypeName","pathNode":{"id":3144,"name":"PausableStorage","nameLocations":["1221:15:13"],"nodeType":"IdentifierPath","referencedDeclaration":3139,"src":"1221:15:13"},"referencedDeclaration":3139,"src":"1221:15:13","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$3139_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage"}},"visibility":"internal"}],"src":"1220:27:13"},"scope":3284,"src":"1168:162:13","stateMutability":"pure","virtual":false,"visibility":"private"},{"anonymous":false,"documentation":{"id":3151,"nodeType":"StructuredDocumentation","src":"1336:73:13","text":" @dev Emitted when the pause is triggered by `account`."},"eventSelector":"62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258","id":3155,"name":"Paused","nameLocation":"1420:6:13","nodeType":"EventDefinition","parameters":{"id":3154,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3153,"indexed":false,"mutability":"mutable","name":"account","nameLocation":"1435:7:13","nodeType":"VariableDeclaration","scope":3155,"src":"1427:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3152,"name":"address","nodeType":"ElementaryTypeName","src":"1427:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1426:17:13"},"src":"1414:30:13"},{"anonymous":false,"documentation":{"id":3156,"nodeType":"StructuredDocumentation","src":"1450:70:13","text":" @dev Emitted when the pause is lifted by `account`."},"eventSelector":"5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa","id":3160,"name":"Unpaused","nameLocation":"1531:8:13","nodeType":"EventDefinition","parameters":{"id":3159,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3158,"indexed":false,"mutability":"mutable","name":"account","nameLocation":"1548:7:13","nodeType":"VariableDeclaration","scope":3160,"src":"1540:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3157,"name":"address","nodeType":"ElementaryTypeName","src":"1540:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1539:17:13"},"src":"1525:32:13"},{"documentation":{"id":3161,"nodeType":"StructuredDocumentation","src":"1563:76:13","text":" @dev The operation failed because the contract is paused."},"errorSelector":"d93c0665","id":3163,"name":"EnforcedPause","nameLocation":"1650:13:13","nodeType":"ErrorDefinition","parameters":{"id":3162,"nodeType":"ParameterList","parameters":[],"src":"1663:2:13"},"src":"1644:22:13"},{"documentation":{"id":3164,"nodeType":"StructuredDocumentation","src":"1672:80:13","text":" @dev The operation failed because the contract is not paused."},"errorSelector":"8dfc202b","id":3166,"name":"ExpectedPause","nameLocation":"1763:13:13","nodeType":"ErrorDefinition","parameters":{"id":3165,"nodeType":"ParameterList","parameters":[],"src":"1776:2:13"},"src":"1757:22:13"},{"body":{"id":3173,"nodeType":"Block","src":"1990:47:13","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":3169,"name":"_requireNotPaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3222,"src":"2000:17:13","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":3170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2000:19:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3171,"nodeType":"ExpressionStatement","src":"2000:19:13"},{"id":3172,"nodeType":"PlaceholderStatement","src":"2029:1:13"}]},"documentation":{"id":3167,"nodeType":"StructuredDocumentation","src":"1785:175:13","text":" @dev Modifier to make a function callable only when the contract is not paused.\n Requirements:\n - The contract must not be paused."},"id":3174,"name":"whenNotPaused","nameLocation":"1974:13:13","nodeType":"ModifierDefinition","parameters":{"id":3168,"nodeType":"ParameterList","parameters":[],"src":"1987:2:13"},"src":"1965:72:13","virtual":false,"visibility":"internal"},{"body":{"id":3181,"nodeType":"Block","src":"2237:44:13","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":3177,"name":"_requirePaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3235,"src":"2247:14:13","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":3178,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2247:16:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3179,"nodeType":"ExpressionStatement","src":"2247:16:13"},{"id":3180,"nodeType":"PlaceholderStatement","src":"2273:1:13"}]},"documentation":{"id":3175,"nodeType":"StructuredDocumentation","src":"2043:167:13","text":" @dev Modifier to make a function callable only when the contract is paused.\n Requirements:\n - The contract must be paused."},"id":3182,"name":"whenPaused","nameLocation":"2224:10:13","nodeType":"ModifierDefinition","parameters":{"id":3176,"nodeType":"ParameterList","parameters":[],"src":"2234:2:13"},"src":"2215:66:13","virtual":false,"visibility":"internal"},{"body":{"id":3187,"nodeType":"Block","src":"2340:7:13","statements":[]},"id":3188,"implemented":true,"kind":"function","modifiers":[{"id":3185,"kind":"modifierInvocation","modifierName":{"id":3184,"name":"onlyInitializing","nameLocations":["2323:16:13"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"2323:16:13"},"nodeType":"ModifierInvocation","src":"2323:16:13"}],"name":"__Pausable_init","nameLocation":"2296:15:13","nodeType":"FunctionDefinition","parameters":{"id":3183,"nodeType":"ParameterList","parameters":[],"src":"2311:2:13"},"returnParameters":{"id":3186,"nodeType":"ParameterList","parameters":[],"src":"2340:0:13"},"scope":3284,"src":"2287:60:13","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3193,"nodeType":"Block","src":"2416:7:13","statements":[]},"id":3194,"implemented":true,"kind":"function","modifiers":[{"id":3191,"kind":"modifierInvocation","modifierName":{"id":3190,"name":"onlyInitializing","nameLocations":["2399:16:13"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"2399:16:13"},"nodeType":"ModifierInvocation","src":"2399:16:13"}],"name":"__Pausable_init_unchained","nameLocation":"2362:25:13","nodeType":"FunctionDefinition","parameters":{"id":3189,"nodeType":"ParameterList","parameters":[],"src":"2387:2:13"},"returnParameters":{"id":3192,"nodeType":"ParameterList","parameters":[],"src":"2416:0:13"},"scope":3284,"src":"2353:70:13","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3209,"nodeType":"Block","src":"2570:92:13","statements":[{"assignments":[3202],"declarations":[{"constant":false,"id":3202,"mutability":"mutable","name":"$","nameLocation":"2604:1:13","nodeType":"VariableDeclaration","scope":3209,"src":"2580:25:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$3139_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage"},"typeName":{"id":3201,"nodeType":"UserDefinedTypeName","pathNode":{"id":3200,"name":"PausableStorage","nameLocations":["2580:15:13"],"nodeType":"IdentifierPath","referencedDeclaration":3139,"src":"2580:15:13"},"referencedDeclaration":3139,"src":"2580:15:13","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$3139_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage"}},"visibility":"internal"}],"id":3205,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3203,"name":"_getPausableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3150,"src":"2608:19:13","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_PausableStorage_$3139_storage_ptr_$","typeString":"function () pure returns (struct PausableUpgradeable.PausableStorage storage pointer)"}},"id":3204,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2608:21:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$3139_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"2580:49:13"},{"expression":{"expression":{"id":3206,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3202,"src":"2646:1:13","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$3139_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage storage pointer"}},"id":3207,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2648:7:13","memberName":"_paused","nodeType":"MemberAccess","referencedDeclaration":3138,"src":"2646:9:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3199,"id":3208,"nodeType":"Return","src":"2639:16:13"}]},"documentation":{"id":3195,"nodeType":"StructuredDocumentation","src":"2428:84:13","text":" @dev Returns true if the contract is paused, and false otherwise."},"functionSelector":"5c975abb","id":3210,"implemented":true,"kind":"function","modifiers":[],"name":"paused","nameLocation":"2526:6:13","nodeType":"FunctionDefinition","parameters":{"id":3196,"nodeType":"ParameterList","parameters":[],"src":"2532:2:13"},"returnParameters":{"id":3199,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3198,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3210,"src":"2564:4:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3197,"name":"bool","nodeType":"ElementaryTypeName","src":"2564:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2563:6:13"},"scope":3284,"src":"2517:145:13","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":3221,"nodeType":"Block","src":"2781:77:13","statements":[{"condition":{"arguments":[],"expression":{"argumentTypes":[],"id":3214,"name":"paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3210,"src":"2795:6:13","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":3215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2795:8:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3220,"nodeType":"IfStatement","src":"2791:61:13","trueBody":{"id":3219,"nodeType":"Block","src":"2805:47:13","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":3216,"name":"EnforcedPause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3163,"src":"2826:13:13","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":3217,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2826:15:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":3218,"nodeType":"RevertStatement","src":"2819:22:13"}]}}]},"documentation":{"id":3211,"nodeType":"StructuredDocumentation","src":"2668:57:13","text":" @dev Throws if the contract is paused."},"id":3222,"implemented":true,"kind":"function","modifiers":[],"name":"_requireNotPaused","nameLocation":"2739:17:13","nodeType":"FunctionDefinition","parameters":{"id":3212,"nodeType":"ParameterList","parameters":[],"src":"2756:2:13"},"returnParameters":{"id":3213,"nodeType":"ParameterList","parameters":[],"src":"2781:0:13"},"scope":3284,"src":"2730:128:13","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":3234,"nodeType":"Block","src":"2978:78:13","statements":[{"condition":{"id":3228,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"2992:9:13","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":3226,"name":"paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3210,"src":"2993:6:13","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":3227,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2993:8:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3233,"nodeType":"IfStatement","src":"2988:62:13","trueBody":{"id":3232,"nodeType":"Block","src":"3003:47:13","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":3229,"name":"ExpectedPause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3166,"src":"3024:13:13","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":3230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3024:15:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":3231,"nodeType":"RevertStatement","src":"3017:22:13"}]}}]},"documentation":{"id":3223,"nodeType":"StructuredDocumentation","src":"2864:61:13","text":" @dev Throws if the contract is not paused."},"id":3235,"implemented":true,"kind":"function","modifiers":[],"name":"_requirePaused","nameLocation":"2939:14:13","nodeType":"FunctionDefinition","parameters":{"id":3224,"nodeType":"ParameterList","parameters":[],"src":"2953:2:13"},"returnParameters":{"id":3225,"nodeType":"ParameterList","parameters":[],"src":"2978:0:13"},"scope":3284,"src":"2930:126:13","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":3258,"nodeType":"Block","src":"3240:127:13","statements":[{"assignments":[3243],"declarations":[{"constant":false,"id":3243,"mutability":"mutable","name":"$","nameLocation":"3274:1:13","nodeType":"VariableDeclaration","scope":3258,"src":"3250:25:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$3139_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage"},"typeName":{"id":3242,"nodeType":"UserDefinedTypeName","pathNode":{"id":3241,"name":"PausableStorage","nameLocations":["3250:15:13"],"nodeType":"IdentifierPath","referencedDeclaration":3139,"src":"3250:15:13"},"referencedDeclaration":3139,"src":"3250:15:13","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$3139_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage"}},"visibility":"internal"}],"id":3246,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3244,"name":"_getPausableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3150,"src":"3278:19:13","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_PausableStorage_$3139_storage_ptr_$","typeString":"function () pure returns (struct PausableUpgradeable.PausableStorage storage pointer)"}},"id":3245,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3278:21:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$3139_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3250:49:13"},{"expression":{"id":3251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3247,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3243,"src":"3309:1:13","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$3139_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage storage pointer"}},"id":3249,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3311:7:13","memberName":"_paused","nodeType":"MemberAccess","referencedDeclaration":3138,"src":"3309:9:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":3250,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3321:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"3309:16:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3252,"nodeType":"ExpressionStatement","src":"3309:16:13"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":3254,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"3347:10:13","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":3255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3347:12:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3253,"name":"Paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3155,"src":"3340:6:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":3256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3340:20:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3257,"nodeType":"EmitStatement","src":"3335:25:13"}]},"documentation":{"id":3236,"nodeType":"StructuredDocumentation","src":"3062:124:13","text":" @dev Triggers stopped state.\n Requirements:\n - The contract must not be paused."},"id":3259,"implemented":true,"kind":"function","modifiers":[{"id":3239,"kind":"modifierInvocation","modifierName":{"id":3238,"name":"whenNotPaused","nameLocations":["3226:13:13"],"nodeType":"IdentifierPath","referencedDeclaration":3174,"src":"3226:13:13"},"nodeType":"ModifierInvocation","src":"3226:13:13"}],"name":"_pause","nameLocation":"3200:6:13","nodeType":"FunctionDefinition","parameters":{"id":3237,"nodeType":"ParameterList","parameters":[],"src":"3206:2:13"},"returnParameters":{"id":3240,"nodeType":"ParameterList","parameters":[],"src":"3240:0:13"},"scope":3284,"src":"3191:176:13","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":3282,"nodeType":"Block","src":"3547:130:13","statements":[{"assignments":[3267],"declarations":[{"constant":false,"id":3267,"mutability":"mutable","name":"$","nameLocation":"3581:1:13","nodeType":"VariableDeclaration","scope":3282,"src":"3557:25:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$3139_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage"},"typeName":{"id":3266,"nodeType":"UserDefinedTypeName","pathNode":{"id":3265,"name":"PausableStorage","nameLocations":["3557:15:13"],"nodeType":"IdentifierPath","referencedDeclaration":3139,"src":"3557:15:13"},"referencedDeclaration":3139,"src":"3557:15:13","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$3139_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage"}},"visibility":"internal"}],"id":3270,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3268,"name":"_getPausableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3150,"src":"3585:19:13","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_PausableStorage_$3139_storage_ptr_$","typeString":"function () pure returns (struct PausableUpgradeable.PausableStorage storage pointer)"}},"id":3269,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3585:21:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$3139_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3557:49:13"},{"expression":{"id":3275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3271,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3267,"src":"3616:1:13","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$3139_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage storage pointer"}},"id":3273,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3618:7:13","memberName":"_paused","nodeType":"MemberAccess","referencedDeclaration":3138,"src":"3616:9:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":3274,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3628:5:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"3616:17:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3276,"nodeType":"ExpressionStatement","src":"3616:17:13"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":3278,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"3657:10:13","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":3279,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3657:12:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3277,"name":"Unpaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3160,"src":"3648:8:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":3280,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3648:22:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3281,"nodeType":"EmitStatement","src":"3643:27:13"}]},"documentation":{"id":3260,"nodeType":"StructuredDocumentation","src":"3373:121:13","text":" @dev Returns to normal state.\n Requirements:\n - The contract must be paused."},"id":3283,"implemented":true,"kind":"function","modifiers":[{"id":3263,"kind":"modifierInvocation","modifierName":{"id":3262,"name":"whenPaused","nameLocations":["3536:10:13"],"nodeType":"IdentifierPath","referencedDeclaration":3182,"src":"3536:10:13"},"nodeType":"ModifierInvocation","src":"3536:10:13"}],"name":"_unpause","nameLocation":"3508:8:13","nodeType":"FunctionDefinition","parameters":{"id":3261,"nodeType":"ParameterList","parameters":[],"src":"3516:2:13"},"returnParameters":{"id":3264,"nodeType":"ParameterList","parameters":[],"src":"3547:0:13"},"scope":3284,"src":"3499:178:13","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":3285,"src":"722:2957:13","usedErrors":[3163,3166,6967,6970],"usedEvents":[3155,3160,6975]}],"src":"102:3578:13"},"id":13},"@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol","exportedSymbols":{"EIP712Upgradeable":[3628],"IERC5267":[6425],"Initializable":[7218],"MessageHashUtils":[14050]},"id":3629,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3286,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"113:24:14"},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","file":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","id":3288,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3629,"sourceUnit":14051,"src":"139:97:14","symbolAliases":[{"foreign":{"id":3287,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14050,"src":"147:16:14","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5267.sol","file":"@openzeppelin/contracts/interfaces/IERC5267.sol","id":3290,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3629,"sourceUnit":6426,"src":"237:73:14","symbolAliases":[{"foreign":{"id":3289,"name":"IERC5267","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6425,"src":"245:8:14","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":3292,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3629,"sourceUnit":7219,"src":"311:84:14","symbolAliases":[{"foreign":{"id":3291,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7218,"src":"319:13:14","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":3294,"name":"Initializable","nameLocations":["1902:13:14"],"nodeType":"IdentifierPath","referencedDeclaration":7218,"src":"1902:13:14"},"id":3295,"nodeType":"InheritanceSpecifier","src":"1902:13:14"},{"baseName":{"id":3296,"name":"IERC5267","nameLocations":["1917:8:14"],"nodeType":"IdentifierPath","referencedDeclaration":6425,"src":"1917:8:14"},"id":3297,"nodeType":"InheritanceSpecifier","src":"1917:8:14"}],"canonicalName":"EIP712Upgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":3293,"nodeType":"StructuredDocumentation","src":"397:1465:14","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: The upgradeable version of this contract does not use an immutable cache and recomputes the domain separator\n each time {_domainSeparatorV4} is called. That is cheaper than accessing a cached version in cold storage."},"fullyImplemented":true,"id":3628,"linearizedBaseContracts":[3628,6425,7218],"name":"EIP712Upgradeable","nameLocation":"1881:17:14","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":3302,"mutability":"constant","name":"TYPE_HASH","nameLocation":"1957:9:14","nodeType":"VariableDeclaration","scope":3628,"src":"1932:140:14","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3298,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1932:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429","id":3300,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1987:84:14","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":3299,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1977:9:14","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3301,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1977:95:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"canonicalName":"EIP712Upgradeable.EIP712Storage","documentation":{"id":3303,"nodeType":"StructuredDocumentation","src":"2079:64:14","text":"@custom:storage-location erc7201:openzeppelin.storage.EIP712"},"id":3314,"members":[{"constant":false,"id":3306,"mutability":"mutable","name":"_hashedName","nameLocation":"2236:11:14","nodeType":"VariableDeclaration","scope":3314,"src":"2228:19:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3305,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2228:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3309,"mutability":"mutable","name":"_hashedVersion","nameLocation":"2317:14:14","nodeType":"VariableDeclaration","scope":3314,"src":"2309:22:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3308,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2309:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3311,"mutability":"mutable","name":"_name","nameLocation":"2349:5:14","nodeType":"VariableDeclaration","scope":3314,"src":"2342:12:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":3310,"name":"string","nodeType":"ElementaryTypeName","src":"2342:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3313,"mutability":"mutable","name":"_version","nameLocation":"2371:8:14","nodeType":"VariableDeclaration","scope":3314,"src":"2364:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":3312,"name":"string","nodeType":"ElementaryTypeName","src":"2364:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"name":"EIP712Storage","nameLocation":"2155:13:14","nodeType":"StructDefinition","scope":3628,"src":"2148:238:14","visibility":"public"},{"constant":true,"id":3317,"mutability":"constant","name":"EIP712StorageLocation","nameLocation":"2527:21:14","nodeType":"VariableDeclaration","scope":3628,"src":"2502:115:14","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3315,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2502:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307861313661343664393432363163373531376363386666383966363163306365393335393865336338343938303130313164656536343961366135353764313030","id":3316,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2551:66:14","typeDescriptions":{"typeIdentifier":"t_rational_73010143390315934406010559831118728393600729754696197287367516085911467577600_by_1","typeString":"int_const 7301...(69 digits omitted)...7600"},"value":"0xa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d100"},"visibility":"private"},{"body":{"id":3324,"nodeType":"Block","src":"2700:80:14","statements":[{"AST":{"nativeSrc":"2719:55:14","nodeType":"YulBlock","src":"2719:55:14","statements":[{"nativeSrc":"2733:31:14","nodeType":"YulAssignment","src":"2733:31:14","value":{"name":"EIP712StorageLocation","nativeSrc":"2743:21:14","nodeType":"YulIdentifier","src":"2743:21:14"},"variableNames":[{"name":"$.slot","nativeSrc":"2733:6:14","nodeType":"YulIdentifier","src":"2733:6:14"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":3321,"isOffset":false,"isSlot":true,"src":"2733:6:14","suffix":"slot","valueSize":1},{"declaration":3317,"isOffset":false,"isSlot":false,"src":"2743:21:14","valueSize":1}],"id":3323,"nodeType":"InlineAssembly","src":"2710:64:14"}]},"id":3325,"implemented":true,"kind":"function","modifiers":[],"name":"_getEIP712Storage","nameLocation":"2633:17:14","nodeType":"FunctionDefinition","parameters":{"id":3318,"nodeType":"ParameterList","parameters":[],"src":"2650:2:14"},"returnParameters":{"id":3322,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3321,"mutability":"mutable","name":"$","nameLocation":"2697:1:14","nodeType":"VariableDeclaration","scope":3325,"src":"2675:23:14","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"},"typeName":{"id":3320,"nodeType":"UserDefinedTypeName","pathNode":{"id":3319,"name":"EIP712Storage","nameLocations":["2675:13:14"],"nodeType":"IdentifierPath","referencedDeclaration":3314,"src":"2675:13:14"},"referencedDeclaration":3314,"src":"2675:13:14","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"}},"visibility":"internal"}],"src":"2674:25:14"},"scope":3628,"src":"2624:156:14","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":3340,"nodeType":"Block","src":"3442:55:14","statements":[{"expression":{"arguments":[{"id":3336,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3328,"src":"3476:4:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":3337,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3330,"src":"3482:7:14","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"}],"id":3335,"name":"__EIP712_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3381,"src":"3452:23:14","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":3338,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3452:38:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3339,"nodeType":"ExpressionStatement","src":"3452:38:14"}]},"documentation":{"id":3326,"nodeType":"StructuredDocumentation","src":"2786:559:14","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":3341,"implemented":true,"kind":"function","modifiers":[{"id":3333,"kind":"modifierInvocation","modifierName":{"id":3332,"name":"onlyInitializing","nameLocations":["3425:16:14"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"3425:16:14"},"nodeType":"ModifierInvocation","src":"3425:16:14"}],"name":"__EIP712_init","nameLocation":"3359:13:14","nodeType":"FunctionDefinition","parameters":{"id":3331,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3328,"mutability":"mutable","name":"name","nameLocation":"3387:4:14","nodeType":"VariableDeclaration","scope":3341,"src":"3373:18:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3327,"name":"string","nodeType":"ElementaryTypeName","src":"3373:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3330,"mutability":"mutable","name":"version","nameLocation":"3407:7:14","nodeType":"VariableDeclaration","scope":3341,"src":"3393:21:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3329,"name":"string","nodeType":"ElementaryTypeName","src":"3393:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3372:43:14"},"returnParameters":{"id":3334,"nodeType":"ParameterList","parameters":[],"src":"3442:0:14"},"scope":3628,"src":"3350:147:14","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3380,"nodeType":"Block","src":"3605:228:14","statements":[{"assignments":[3352],"declarations":[{"constant":false,"id":3352,"mutability":"mutable","name":"$","nameLocation":"3637:1:14","nodeType":"VariableDeclaration","scope":3380,"src":"3615:23:14","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"},"typeName":{"id":3351,"nodeType":"UserDefinedTypeName","pathNode":{"id":3350,"name":"EIP712Storage","nameLocations":["3615:13:14"],"nodeType":"IdentifierPath","referencedDeclaration":3314,"src":"3615:13:14"},"referencedDeclaration":3314,"src":"3615:13:14","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"}},"visibility":"internal"}],"id":3355,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3353,"name":"_getEIP712Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3325,"src":"3641:17:14","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_EIP712Storage_$3314_storage_ptr_$","typeString":"function () pure returns (struct EIP712Upgradeable.EIP712Storage storage pointer)"}},"id":3354,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3641:19:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3615:45:14"},{"expression":{"id":3360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3356,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3352,"src":"3670:1:14","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":3358,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3672:5:14","memberName":"_name","nodeType":"MemberAccess","referencedDeclaration":3311,"src":"3670:7:14","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3359,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3343,"src":"3680:4:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"3670:14:14","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":3361,"nodeType":"ExpressionStatement","src":"3670:14:14"},{"expression":{"id":3366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3362,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3352,"src":"3694:1:14","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":3364,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3696:8:14","memberName":"_version","nodeType":"MemberAccess","referencedDeclaration":3313,"src":"3694:10:14","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3365,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3345,"src":"3707:7:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"3694:20:14","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":3367,"nodeType":"ExpressionStatement","src":"3694:20:14"},{"expression":{"id":3372,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3368,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3352,"src":"3779:1:14","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":3370,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3781:11:14","memberName":"_hashedName","nodeType":"MemberAccess","referencedDeclaration":3306,"src":"3779:13:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3371,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3795:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3779:17:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":3373,"nodeType":"ExpressionStatement","src":"3779:17:14"},{"expression":{"id":3378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3374,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3352,"src":"3806:1:14","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":3376,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3808:14:14","memberName":"_hashedVersion","nodeType":"MemberAccess","referencedDeclaration":3309,"src":"3806:16:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3377,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3825:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3806:20:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":3379,"nodeType":"ExpressionStatement","src":"3806:20:14"}]},"id":3381,"implemented":true,"kind":"function","modifiers":[{"id":3348,"kind":"modifierInvocation","modifierName":{"id":3347,"name":"onlyInitializing","nameLocations":["3588:16:14"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"3588:16:14"},"nodeType":"ModifierInvocation","src":"3588:16:14"}],"name":"__EIP712_init_unchained","nameLocation":"3512:23:14","nodeType":"FunctionDefinition","parameters":{"id":3346,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3343,"mutability":"mutable","name":"name","nameLocation":"3550:4:14","nodeType":"VariableDeclaration","scope":3381,"src":"3536:18:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3342,"name":"string","nodeType":"ElementaryTypeName","src":"3536:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3345,"mutability":"mutable","name":"version","nameLocation":"3570:7:14","nodeType":"VariableDeclaration","scope":3381,"src":"3556:21:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3344,"name":"string","nodeType":"ElementaryTypeName","src":"3556:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3535:43:14"},"returnParameters":{"id":3349,"nodeType":"ParameterList","parameters":[],"src":"3605:0:14"},"scope":3628,"src":"3503:330:14","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3390,"nodeType":"Block","src":"3981:47:14","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":3387,"name":"_buildDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3414,"src":"3998:21:14","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":3388,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3998:23:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3386,"id":3389,"nodeType":"Return","src":"3991:30:14"}]},"documentation":{"id":3382,"nodeType":"StructuredDocumentation","src":"3839:75:14","text":" @dev Returns the domain separator for the current chain."},"id":3391,"implemented":true,"kind":"function","modifiers":[],"name":"_domainSeparatorV4","nameLocation":"3928:18:14","nodeType":"FunctionDefinition","parameters":{"id":3383,"nodeType":"ParameterList","parameters":[],"src":"3946:2:14"},"returnParameters":{"id":3386,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3385,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3391,"src":"3972:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3384,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3972:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3971:9:14"},"scope":3628,"src":"3919:109:14","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":3413,"nodeType":"Block","src":"4098:127:14","statements":[{"expression":{"arguments":[{"arguments":[{"id":3399,"name":"TYPE_HASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3302,"src":"4136:9:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":3400,"name":"_EIP712NameHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3575,"src":"4147:15:14","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":3401,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4147:17:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":3402,"name":"_EIP712VersionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3627,"src":"4166:18:14","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":3403,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4166:20:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":3404,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"4188:5:14","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3405,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4194:7:14","memberName":"chainid","nodeType":"MemberAccess","src":"4188:13:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":3408,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4211:4:14","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712Upgradeable_$3628","typeString":"contract EIP712Upgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712Upgradeable_$3628","typeString":"contract EIP712Upgradeable"}],"id":3407,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4203:7:14","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3406,"name":"address","nodeType":"ElementaryTypeName","src":"4203:7:14","typeDescriptions":{}}},"id":3409,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4203:13:14","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":3397,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4125:3:14","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":3398,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4129:6:14","memberName":"encode","nodeType":"MemberAccess","src":"4125:10:14","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":3410,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4125:92:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3396,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4115:9:14","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3411,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4115:103:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3395,"id":3412,"nodeType":"Return","src":"4108:110:14"}]},"id":3414,"implemented":true,"kind":"function","modifiers":[],"name":"_buildDomainSeparator","nameLocation":"4043:21:14","nodeType":"FunctionDefinition","parameters":{"id":3392,"nodeType":"ParameterList","parameters":[],"src":"4064:2:14"},"returnParameters":{"id":3395,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3394,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3414,"src":"4089:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3393,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4089:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4088:9:14"},"scope":3628,"src":"4034:191:14","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":3429,"nodeType":"Block","src":"4936:90:14","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":3424,"name":"_domainSeparatorV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3391,"src":"4986:18:14","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":3425,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4986:20:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3426,"name":"structHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3417,"src":"5008:10:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":3422,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14050,"src":"4953:16:14","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_MessageHashUtils_$14050_$","typeString":"type(library MessageHashUtils)"}},"id":3423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4970:15:14","memberName":"toTypedDataHash","nodeType":"MemberAccess","referencedDeclaration":14049,"src":"4953:32:14","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32,bytes32) pure returns (bytes32)"}},"id":3427,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4953:66:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3421,"id":3428,"nodeType":"Return","src":"4946:73:14"}]},"documentation":{"id":3415,"nodeType":"StructuredDocumentation","src":"4231:614:14","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":3430,"implemented":true,"kind":"function","modifiers":[],"name":"_hashTypedDataV4","nameLocation":"4859:16:14","nodeType":"FunctionDefinition","parameters":{"id":3418,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3417,"mutability":"mutable","name":"structHash","nameLocation":"4884:10:14","nodeType":"VariableDeclaration","scope":3430,"src":"4876:18:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3416,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4876:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4875:20:14"},"returnParameters":{"id":3421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3420,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3430,"src":"4927:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3419,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4927:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4926:9:14"},"scope":3628,"src":"4850:176:14","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[6424],"body":{"id":3490,"nodeType":"Block","src":"5389:575:14","statements":[{"assignments":[3451],"declarations":[{"constant":false,"id":3451,"mutability":"mutable","name":"$","nameLocation":"5421:1:14","nodeType":"VariableDeclaration","scope":3490,"src":"5399:23:14","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"},"typeName":{"id":3450,"nodeType":"UserDefinedTypeName","pathNode":{"id":3449,"name":"EIP712Storage","nameLocations":["5399:13:14"],"nodeType":"IdentifierPath","referencedDeclaration":3314,"src":"5399:13:14"},"referencedDeclaration":3314,"src":"5399:13:14","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"}},"visibility":"internal"}],"id":3454,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3452,"name":"_getEIP712Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3325,"src":"5425:17:14","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_EIP712Storage_$3314_storage_ptr_$","typeString":"function () pure returns (struct EIP712Upgradeable.EIP712Storage storage pointer)"}},"id":3453,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5425:19:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"5399:45:14"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3456,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3451,"src":"5665:1:14","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":3457,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5667:11:14","memberName":"_hashedName","nodeType":"MemberAccess","referencedDeclaration":3306,"src":"5665:13:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3458,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5682:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5665:18:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3460,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3451,"src":"5687:1:14","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":3461,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5689:14:14","memberName":"_hashedVersion","nodeType":"MemberAccess","referencedDeclaration":3309,"src":"5687:16:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3462,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5707:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5687:21:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5665:43:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4549503731323a20556e696e697469616c697a6564","id":3465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5710:23:14","typeDescriptions":{"typeIdentifier":"t_stringliteral_2e5045ff73280aa8e8acd8c82710f23812497f87f7f576e2220a2ddd0d45eade","typeString":"literal_string \"EIP712: Uninitialized\""},"value":"EIP712: Uninitialized"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2e5045ff73280aa8e8acd8c82710f23812497f87f7f576e2220a2ddd0d45eade","typeString":"literal_string \"EIP712: Uninitialized\""}],"id":3455,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"5657:7:14","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3466,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5657:77:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3467,"nodeType":"ExpressionStatement","src":"5657:77:14"},{"expression":{"components":[{"hexValue":"0f","id":3468,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"5766:7:14","typeDescriptions":{"typeIdentifier":"t_stringliteral_3d725c5ee53025f027da36bea8d3af3b6a3e9d2d1542d47c162631de48e66c1c","typeString":"literal_string hex\"0f\""},"value":"\u000f"},{"arguments":[],"expression":{"argumentTypes":[],"id":3469,"name":"_EIP712Name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3507,"src":"5796:11:14","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":3470,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5796:13:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[],"expression":{"argumentTypes":[],"id":3471,"name":"_EIP712Version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3523,"src":"5823:14:14","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":3472,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5823:16:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":3473,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5853:5:14","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5859:7:14","memberName":"chainid","nodeType":"MemberAccess","src":"5853:13:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":3477,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5888:4:14","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712Upgradeable_$3628","typeString":"contract EIP712Upgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712Upgradeable_$3628","typeString":"contract EIP712Upgradeable"}],"id":3476,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5880:7:14","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3475,"name":"address","nodeType":"ElementaryTypeName","src":"5880:7:14","typeDescriptions":{}}},"id":3478,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5880:13:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":3481,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5915:1:14","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":3480,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5907:7:14","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":3479,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5907:7:14","typeDescriptions":{}}},"id":3482,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5907:10:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"hexValue":"30","id":3486,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5945:1:14","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":3485,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"5931:13:14","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":3483,"name":"uint256","nodeType":"ElementaryTypeName","src":"5935:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3484,"nodeType":"ArrayTypeName","src":"5935:9:14","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":3487,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5931:16:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}}],"id":3488,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5752:205:14","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":3448,"id":3489,"nodeType":"Return","src":"5745:212:14"}]},"documentation":{"id":3431,"nodeType":"StructuredDocumentation","src":"5032:24:14","text":"@inheritdoc IERC5267"},"functionSelector":"84b0196e","id":3491,"implemented":true,"kind":"function","modifiers":[],"name":"eip712Domain","nameLocation":"5070:12:14","nodeType":"FunctionDefinition","parameters":{"id":3432,"nodeType":"ParameterList","parameters":[],"src":"5082:2:14"},"returnParameters":{"id":3448,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3434,"mutability":"mutable","name":"fields","nameLocation":"5166:6:14","nodeType":"VariableDeclaration","scope":3491,"src":"5159:13:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":3433,"name":"bytes1","nodeType":"ElementaryTypeName","src":"5159:6:14","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":3436,"mutability":"mutable","name":"name","nameLocation":"5200:4:14","nodeType":"VariableDeclaration","scope":3491,"src":"5186:18:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3435,"name":"string","nodeType":"ElementaryTypeName","src":"5186:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3438,"mutability":"mutable","name":"version","nameLocation":"5232:7:14","nodeType":"VariableDeclaration","scope":3491,"src":"5218:21:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3437,"name":"string","nodeType":"ElementaryTypeName","src":"5218:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3440,"mutability":"mutable","name":"chainId","nameLocation":"5261:7:14","nodeType":"VariableDeclaration","scope":3491,"src":"5253:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3439,"name":"uint256","nodeType":"ElementaryTypeName","src":"5253:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3442,"mutability":"mutable","name":"verifyingContract","nameLocation":"5290:17:14","nodeType":"VariableDeclaration","scope":3491,"src":"5282:25:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3441,"name":"address","nodeType":"ElementaryTypeName","src":"5282:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3444,"mutability":"mutable","name":"salt","nameLocation":"5329:4:14","nodeType":"VariableDeclaration","scope":3491,"src":"5321:12:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3443,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5321:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3447,"mutability":"mutable","name":"extensions","nameLocation":"5364:10:14","nodeType":"VariableDeclaration","scope":3491,"src":"5347:27:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":3445,"name":"uint256","nodeType":"ElementaryTypeName","src":"5347:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3446,"nodeType":"ArrayTypeName","src":"5347:9:14","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"5145:239:14"},"scope":3628,"src":"5061:903:14","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":3506,"nodeType":"Block","src":"6257:86:14","statements":[{"assignments":[3499],"declarations":[{"constant":false,"id":3499,"mutability":"mutable","name":"$","nameLocation":"6289:1:14","nodeType":"VariableDeclaration","scope":3506,"src":"6267:23:14","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"},"typeName":{"id":3498,"nodeType":"UserDefinedTypeName","pathNode":{"id":3497,"name":"EIP712Storage","nameLocations":["6267:13:14"],"nodeType":"IdentifierPath","referencedDeclaration":3314,"src":"6267:13:14"},"referencedDeclaration":3314,"src":"6267:13:14","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"}},"visibility":"internal"}],"id":3502,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3500,"name":"_getEIP712Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3325,"src":"6293:17:14","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_EIP712Storage_$3314_storage_ptr_$","typeString":"function () pure returns (struct EIP712Upgradeable.EIP712Storage storage pointer)"}},"id":3501,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6293:19:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"6267:45:14"},{"expression":{"expression":{"id":3503,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3499,"src":"6329:1:14","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":3504,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6331:5:14","memberName":"_name","nodeType":"MemberAccess","referencedDeclaration":3311,"src":"6329:7:14","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":3496,"id":3505,"nodeType":"Return","src":"6322:14:14"}]},"documentation":{"id":3492,"nodeType":"StructuredDocumentation","src":"5970:213:14","text":" @dev The name parameter for the EIP712 domain.\n NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs\n are a concern."},"id":3507,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712Name","nameLocation":"6197:11:14","nodeType":"FunctionDefinition","parameters":{"id":3493,"nodeType":"ParameterList","parameters":[],"src":"6208:2:14"},"returnParameters":{"id":3496,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3495,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3507,"src":"6242:13:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3494,"name":"string","nodeType":"ElementaryTypeName","src":"6242:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6241:15:14"},"scope":3628,"src":"6188:155:14","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":3522,"nodeType":"Block","src":"6642:89:14","statements":[{"assignments":[3515],"declarations":[{"constant":false,"id":3515,"mutability":"mutable","name":"$","nameLocation":"6674:1:14","nodeType":"VariableDeclaration","scope":3522,"src":"6652:23:14","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"},"typeName":{"id":3514,"nodeType":"UserDefinedTypeName","pathNode":{"id":3513,"name":"EIP712Storage","nameLocations":["6652:13:14"],"nodeType":"IdentifierPath","referencedDeclaration":3314,"src":"6652:13:14"},"referencedDeclaration":3314,"src":"6652:13:14","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"}},"visibility":"internal"}],"id":3518,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3516,"name":"_getEIP712Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3325,"src":"6678:17:14","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_EIP712Storage_$3314_storage_ptr_$","typeString":"function () pure returns (struct EIP712Upgradeable.EIP712Storage storage pointer)"}},"id":3517,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6678:19:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"6652:45:14"},{"expression":{"expression":{"id":3519,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3515,"src":"6714:1:14","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":3520,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6716:8:14","memberName":"_version","nodeType":"MemberAccess","referencedDeclaration":3313,"src":"6714:10:14","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":3512,"id":3521,"nodeType":"Return","src":"6707:17:14"}]},"documentation":{"id":3508,"nodeType":"StructuredDocumentation","src":"6349:216:14","text":" @dev The version parameter for the EIP712 domain.\n NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs\n are a concern."},"id":3523,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712Version","nameLocation":"6579:14:14","nodeType":"FunctionDefinition","parameters":{"id":3509,"nodeType":"ParameterList","parameters":[],"src":"6593:2:14"},"returnParameters":{"id":3512,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3511,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3523,"src":"6627:13:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3510,"name":"string","nodeType":"ElementaryTypeName","src":"6627:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6626:15:14"},"scope":3628,"src":"6570:161:14","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":3574,"nodeType":"Block","src":"7005:628:14","statements":[{"assignments":[3531],"declarations":[{"constant":false,"id":3531,"mutability":"mutable","name":"$","nameLocation":"7037:1:14","nodeType":"VariableDeclaration","scope":3574,"src":"7015:23:14","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"},"typeName":{"id":3530,"nodeType":"UserDefinedTypeName","pathNode":{"id":3529,"name":"EIP712Storage","nameLocations":["7015:13:14"],"nodeType":"IdentifierPath","referencedDeclaration":3314,"src":"7015:13:14"},"referencedDeclaration":3314,"src":"7015:13:14","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"}},"visibility":"internal"}],"id":3534,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3532,"name":"_getEIP712Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3325,"src":"7041:17:14","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_EIP712Storage_$3314_storage_ptr_$","typeString":"function () pure returns (struct EIP712Upgradeable.EIP712Storage storage pointer)"}},"id":3533,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7041:19:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"7015:45:14"},{"assignments":[3536],"declarations":[{"constant":false,"id":3536,"mutability":"mutable","name":"name","nameLocation":"7084:4:14","nodeType":"VariableDeclaration","scope":3574,"src":"7070:18:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3535,"name":"string","nodeType":"ElementaryTypeName","src":"7070:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":3539,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3537,"name":"_EIP712Name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3507,"src":"7091:11:14","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":3538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7091:13:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"7070:34:14"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3546,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":3542,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3536,"src":"7124:4:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3541,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7118:5:14","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3540,"name":"bytes","nodeType":"ElementaryTypeName","src":"7118:5:14","typeDescriptions":{}}},"id":3543,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7118:11:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3544,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7130:6:14","memberName":"length","nodeType":"MemberAccess","src":"7118:18:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3545,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7139:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7118:22:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3572,"nodeType":"Block","src":"7202:425:14","statements":[{"assignments":[3556],"declarations":[{"constant":false,"id":3556,"mutability":"mutable","name":"hashedName","nameLocation":"7447:10:14","nodeType":"VariableDeclaration","scope":3572,"src":"7439:18:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3555,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7439:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3559,"initialValue":{"expression":{"id":3557,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3531,"src":"7460:1:14","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":3558,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7462:11:14","memberName":"_hashedName","nodeType":"MemberAccess","referencedDeclaration":3306,"src":"7460:13:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"7439:34:14"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3562,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3560,"name":"hashedName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3556,"src":"7491:10:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":3561,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7505:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7491:15:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3570,"nodeType":"Block","src":"7564:53:14","statements":[{"expression":{"arguments":[{"hexValue":"","id":3567,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7599:2:14","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":3566,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"7589:9:14","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3568,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7589:13:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3528,"id":3569,"nodeType":"Return","src":"7582:20:14"}]},"id":3571,"nodeType":"IfStatement","src":"7487:130:14","trueBody":{"id":3565,"nodeType":"Block","src":"7508:50:14","statements":[{"expression":{"id":3563,"name":"hashedName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3556,"src":"7533:10:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3528,"id":3564,"nodeType":"Return","src":"7526:17:14"}]}}]},"id":3573,"nodeType":"IfStatement","src":"7114:513:14","trueBody":{"id":3554,"nodeType":"Block","src":"7142:54:14","statements":[{"expression":{"arguments":[{"arguments":[{"id":3550,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3536,"src":"7179:4:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3549,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7173:5:14","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3548,"name":"bytes","nodeType":"ElementaryTypeName","src":"7173:5:14","typeDescriptions":{}}},"id":3551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7173:11:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3547,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"7163:9:14","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7163:22:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3528,"id":3553,"nodeType":"Return","src":"7156:29:14"}]}}]},"documentation":{"id":3524,"nodeType":"StructuredDocumentation","src":"6737:204:14","text":" @dev The hash of the name parameter for the EIP712 domain.\n NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Name` instead."},"id":3575,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712NameHash","nameLocation":"6955:15:14","nodeType":"FunctionDefinition","parameters":{"id":3525,"nodeType":"ParameterList","parameters":[],"src":"6970:2:14"},"returnParameters":{"id":3528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3527,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3575,"src":"6996:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3526,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6996:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6995:9:14"},"scope":3628,"src":"6946:687:14","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":3626,"nodeType":"Block","src":"7916:661:14","statements":[{"assignments":[3583],"declarations":[{"constant":false,"id":3583,"mutability":"mutable","name":"$","nameLocation":"7948:1:14","nodeType":"VariableDeclaration","scope":3626,"src":"7926:23:14","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"},"typeName":{"id":3582,"nodeType":"UserDefinedTypeName","pathNode":{"id":3581,"name":"EIP712Storage","nameLocations":["7926:13:14"],"nodeType":"IdentifierPath","referencedDeclaration":3314,"src":"7926:13:14"},"referencedDeclaration":3314,"src":"7926:13:14","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"}},"visibility":"internal"}],"id":3586,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3584,"name":"_getEIP712Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3325,"src":"7952:17:14","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_EIP712Storage_$3314_storage_ptr_$","typeString":"function () pure returns (struct EIP712Upgradeable.EIP712Storage storage pointer)"}},"id":3585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7952:19:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"7926:45:14"},{"assignments":[3588],"declarations":[{"constant":false,"id":3588,"mutability":"mutable","name":"version","nameLocation":"7995:7:14","nodeType":"VariableDeclaration","scope":3626,"src":"7981:21:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3587,"name":"string","nodeType":"ElementaryTypeName","src":"7981:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":3591,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3589,"name":"_EIP712Version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3523,"src":"8005:14:14","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":3590,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8005:16:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"7981:40:14"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3598,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":3594,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3588,"src":"8041:7:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3593,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8035:5:14","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3592,"name":"bytes","nodeType":"ElementaryTypeName","src":"8035:5:14","typeDescriptions":{}}},"id":3595,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8035:14:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8050:6:14","memberName":"length","nodeType":"MemberAccess","src":"8035:21:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3597,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8059:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8035:25:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3624,"nodeType":"Block","src":"8125:446:14","statements":[{"assignments":[3608],"declarations":[{"constant":false,"id":3608,"mutability":"mutable","name":"hashedVersion","nameLocation":"8379:13:14","nodeType":"VariableDeclaration","scope":3624,"src":"8371:21:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3607,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8371:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3611,"initialValue":{"expression":{"id":3609,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3583,"src":"8395:1:14","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$3314_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":3610,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8397:14:14","memberName":"_hashedVersion","nodeType":"MemberAccess","referencedDeclaration":3309,"src":"8395:16:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"8371:40:14"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3614,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3612,"name":"hashedVersion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3608,"src":"8429:13:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":3613,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8446:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8429:18:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3622,"nodeType":"Block","src":"8508:53:14","statements":[{"expression":{"arguments":[{"hexValue":"","id":3619,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8543:2:14","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":3618,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"8533:9:14","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3620,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8533:13:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3580,"id":3621,"nodeType":"Return","src":"8526:20:14"}]},"id":3623,"nodeType":"IfStatement","src":"8425:136:14","trueBody":{"id":3617,"nodeType":"Block","src":"8449:53:14","statements":[{"expression":{"id":3615,"name":"hashedVersion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3608,"src":"8474:13:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3580,"id":3616,"nodeType":"Return","src":"8467:20:14"}]}}]},"id":3625,"nodeType":"IfStatement","src":"8031:540:14","trueBody":{"id":3606,"nodeType":"Block","src":"8062:57:14","statements":[{"expression":{"arguments":[{"arguments":[{"id":3602,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3588,"src":"8099:7:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3601,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8093:5:14","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3600,"name":"bytes","nodeType":"ElementaryTypeName","src":"8093:5:14","typeDescriptions":{}}},"id":3603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8093:14:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3599,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"8083:9:14","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3604,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8083:25:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3580,"id":3605,"nodeType":"Return","src":"8076:32:14"}]}}]},"documentation":{"id":3576,"nodeType":"StructuredDocumentation","src":"7639:210:14","text":" @dev The hash of the version parameter for the EIP712 domain.\n NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Version` instead."},"id":3627,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712VersionHash","nameLocation":"7863:18:14","nodeType":"FunctionDefinition","parameters":{"id":3577,"nodeType":"ParameterList","parameters":[],"src":"7881:2:14"},"returnParameters":{"id":3580,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3579,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3627,"src":"7907:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3578,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7907:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7906:9:14"},"scope":3628,"src":"7854:723:14","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":3629,"src":"1863:6716:14","usedErrors":[6967,6970],"usedEvents":[6405,6975]}],"src":"113:8467:14"},"id":14},"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol","exportedSymbols":{"ERC165Upgradeable":[3668],"IERC165":[14272],"Initializable":[7218]},"id":3669,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3630,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"114:24:15"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":3632,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3669,"sourceUnit":14273,"src":"140:80:15","symbolAliases":[{"foreign":{"id":3631,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"148:7:15","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":3634,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3669,"sourceUnit":7219,"src":"221:84:15","symbolAliases":[{"foreign":{"id":3633,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7218,"src":"229:13:15","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":3636,"name":"Initializable","nameLocations":["826:13:15"],"nodeType":"IdentifierPath","referencedDeclaration":7218,"src":"826:13:15"},"id":3637,"nodeType":"InheritanceSpecifier","src":"826:13:15"},{"baseName":{"id":3638,"name":"IERC165","nameLocations":["841:7:15"],"nodeType":"IdentifierPath","referencedDeclaration":14272,"src":"841:7:15"},"id":3639,"nodeType":"InheritanceSpecifier","src":"841:7:15"}],"canonicalName":"ERC165Upgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":3635,"nodeType":"StructuredDocumentation","src":"307:479:15","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":3668,"linearizedBaseContracts":[3668,14272,7218],"name":"ERC165Upgradeable","nameLocation":"805:17:15","nodeType":"ContractDefinition","nodes":[{"body":{"id":3644,"nodeType":"Block","src":"906:7:15","statements":[]},"id":3645,"implemented":true,"kind":"function","modifiers":[{"id":3642,"kind":"modifierInvocation","modifierName":{"id":3641,"name":"onlyInitializing","nameLocations":["889:16:15"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"889:16:15"},"nodeType":"ModifierInvocation","src":"889:16:15"}],"name":"__ERC165_init","nameLocation":"864:13:15","nodeType":"FunctionDefinition","parameters":{"id":3640,"nodeType":"ParameterList","parameters":[],"src":"877:2:15"},"returnParameters":{"id":3643,"nodeType":"ParameterList","parameters":[],"src":"906:0:15"},"scope":3668,"src":"855:58:15","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3650,"nodeType":"Block","src":"980:7:15","statements":[]},"id":3651,"implemented":true,"kind":"function","modifiers":[{"id":3648,"kind":"modifierInvocation","modifierName":{"id":3647,"name":"onlyInitializing","nameLocations":["963:16:15"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"963:16:15"},"nodeType":"ModifierInvocation","src":"963:16:15"}],"name":"__ERC165_init_unchained","nameLocation":"928:23:15","nodeType":"FunctionDefinition","parameters":{"id":3646,"nodeType":"ParameterList","parameters":[],"src":"951:2:15"},"returnParameters":{"id":3649,"nodeType":"ParameterList","parameters":[],"src":"980:0:15"},"scope":3668,"src":"919:68:15","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[14271],"body":{"id":3666,"nodeType":"Block","src":"1102:64:15","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":3664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3659,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3654,"src":"1119:11:15","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":3661,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"1139:7:15","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$14272_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$14272_$","typeString":"type(contract IERC165)"}],"id":3660,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1134:4:15","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3662,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1134:13:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$14272","typeString":"type(contract IERC165)"}},"id":3663,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1148:11:15","memberName":"interfaceId","nodeType":"MemberAccess","src":"1134:25:15","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1119:40:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3658,"id":3665,"nodeType":"Return","src":"1112:47:15"}]},"documentation":{"id":3652,"nodeType":"StructuredDocumentation","src":"992:23:15","text":"@inheritdoc IERC165"},"functionSelector":"01ffc9a7","id":3667,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"1029:17:15","nodeType":"FunctionDefinition","parameters":{"id":3655,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3654,"mutability":"mutable","name":"interfaceId","nameLocation":"1054:11:15","nodeType":"VariableDeclaration","scope":3667,"src":"1047:18:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":3653,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1047:6:15","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1046:20:15"},"returnParameters":{"id":3658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3657,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3667,"src":"1096:4:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3656,"name":"bool","nodeType":"ElementaryTypeName","src":"1096:4:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1095:6:15"},"scope":3668,"src":"1020:146:15","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":3669,"src":"787:381:15","usedErrors":[6967,6970],"usedEvents":[6975]}],"src":"114:1055:15"},"id":15},"@openzeppelin/contracts/access/IAccessControl.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/IAccessControl.sol","exportedSymbols":{"IAccessControl":[3751]},"id":3752,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3670,"literals":["solidity",">=","0.8",".4"],"nodeType":"PragmaDirective","src":"109:24:16"},{"abstract":false,"baseContracts":[],"canonicalName":"IAccessControl","contractDependencies":[],"contractKind":"interface","documentation":{"id":3671,"nodeType":"StructuredDocumentation","src":"135:90:16","text":" @dev External interface of AccessControl declared to support ERC-165 detection."},"fullyImplemented":false,"id":3751,"linearizedBaseContracts":[3751],"name":"IAccessControl","nameLocation":"236:14:16","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":3672,"nodeType":"StructuredDocumentation","src":"257:56:16","text":" @dev The `account` is missing a role."},"errorSelector":"e2517d3f","id":3678,"name":"AccessControlUnauthorizedAccount","nameLocation":"324:32:16","nodeType":"ErrorDefinition","parameters":{"id":3677,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3674,"mutability":"mutable","name":"account","nameLocation":"365:7:16","nodeType":"VariableDeclaration","scope":3678,"src":"357:15:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3673,"name":"address","nodeType":"ElementaryTypeName","src":"357:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3676,"mutability":"mutable","name":"neededRole","nameLocation":"382:10:16","nodeType":"VariableDeclaration","scope":3678,"src":"374:18:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3675,"name":"bytes32","nodeType":"ElementaryTypeName","src":"374:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"356:37:16"},"src":"318:76:16"},{"documentation":{"id":3679,"nodeType":"StructuredDocumentation","src":"400:148:16","text":" @dev The caller of a function is not the expected one.\n NOTE: Don't confuse with {AccessControlUnauthorizedAccount}."},"errorSelector":"6697b232","id":3681,"name":"AccessControlBadConfirmation","nameLocation":"559:28:16","nodeType":"ErrorDefinition","parameters":{"id":3680,"nodeType":"ParameterList","parameters":[],"src":"587:2:16"},"src":"553:37:16"},{"anonymous":false,"documentation":{"id":3682,"nodeType":"StructuredDocumentation","src":"596:254:16","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 to signal this."},"eventSelector":"bd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff","id":3690,"name":"RoleAdminChanged","nameLocation":"861:16:16","nodeType":"EventDefinition","parameters":{"id":3689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3684,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"894:4:16","nodeType":"VariableDeclaration","scope":3690,"src":"878:20:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3683,"name":"bytes32","nodeType":"ElementaryTypeName","src":"878:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3686,"indexed":true,"mutability":"mutable","name":"previousAdminRole","nameLocation":"916:17:16","nodeType":"VariableDeclaration","scope":3690,"src":"900:33:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3685,"name":"bytes32","nodeType":"ElementaryTypeName","src":"900:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3688,"indexed":true,"mutability":"mutable","name":"newAdminRole","nameLocation":"951:12:16","nodeType":"VariableDeclaration","scope":3690,"src":"935:28:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3687,"name":"bytes32","nodeType":"ElementaryTypeName","src":"935:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"877:87:16"},"src":"855:110:16"},{"anonymous":false,"documentation":{"id":3691,"nodeType":"StructuredDocumentation","src":"971:295:16","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":3699,"name":"RoleGranted","nameLocation":"1277:11:16","nodeType":"EventDefinition","parameters":{"id":3698,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3693,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"1305:4:16","nodeType":"VariableDeclaration","scope":3699,"src":"1289:20:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3692,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1289:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3695,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1327:7:16","nodeType":"VariableDeclaration","scope":3699,"src":"1311:23:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3694,"name":"address","nodeType":"ElementaryTypeName","src":"1311:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3697,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1352:6:16","nodeType":"VariableDeclaration","scope":3699,"src":"1336:22:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3696,"name":"address","nodeType":"ElementaryTypeName","src":"1336:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1288:71:16"},"src":"1271:89:16"},{"anonymous":false,"documentation":{"id":3700,"nodeType":"StructuredDocumentation","src":"1366:275:16","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":3708,"name":"RoleRevoked","nameLocation":"1652:11:16","nodeType":"EventDefinition","parameters":{"id":3707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3702,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"1680:4:16","nodeType":"VariableDeclaration","scope":3708,"src":"1664:20:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3701,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1664:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3704,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1702:7:16","nodeType":"VariableDeclaration","scope":3708,"src":"1686:23:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3703,"name":"address","nodeType":"ElementaryTypeName","src":"1686:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3706,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1727:6:16","nodeType":"VariableDeclaration","scope":3708,"src":"1711:22:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3705,"name":"address","nodeType":"ElementaryTypeName","src":"1711:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1663:71:16"},"src":"1646:89:16"},{"documentation":{"id":3709,"nodeType":"StructuredDocumentation","src":"1741:76:16","text":" @dev Returns `true` if `account` has been granted `role`."},"functionSelector":"91d14854","id":3718,"implemented":false,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"1831:7:16","nodeType":"FunctionDefinition","parameters":{"id":3714,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3711,"mutability":"mutable","name":"role","nameLocation":"1847:4:16","nodeType":"VariableDeclaration","scope":3718,"src":"1839:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3710,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1839:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3713,"mutability":"mutable","name":"account","nameLocation":"1861:7:16","nodeType":"VariableDeclaration","scope":3718,"src":"1853:15:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3712,"name":"address","nodeType":"ElementaryTypeName","src":"1853:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1838:31:16"},"returnParameters":{"id":3717,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3716,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3718,"src":"1893:4:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3715,"name":"bool","nodeType":"ElementaryTypeName","src":"1893:4:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1892:6:16"},"scope":3751,"src":"1822:77:16","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3719,"nodeType":"StructuredDocumentation","src":"1905:184:16","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":3726,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"2103:12:16","nodeType":"FunctionDefinition","parameters":{"id":3722,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3721,"mutability":"mutable","name":"role","nameLocation":"2124:4:16","nodeType":"VariableDeclaration","scope":3726,"src":"2116:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3720,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2116:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2115:14:16"},"returnParameters":{"id":3725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3724,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3726,"src":"2153:7:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3723,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2153:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2152:9:16"},"scope":3751,"src":"2094:68:16","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3727,"nodeType":"StructuredDocumentation","src":"2168:239:16","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":3734,"implemented":false,"kind":"function","modifiers":[],"name":"grantRole","nameLocation":"2421:9:16","nodeType":"FunctionDefinition","parameters":{"id":3732,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3729,"mutability":"mutable","name":"role","nameLocation":"2439:4:16","nodeType":"VariableDeclaration","scope":3734,"src":"2431:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3728,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2431:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3731,"mutability":"mutable","name":"account","nameLocation":"2453:7:16","nodeType":"VariableDeclaration","scope":3734,"src":"2445:15:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3730,"name":"address","nodeType":"ElementaryTypeName","src":"2445:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2430:31:16"},"returnParameters":{"id":3733,"nodeType":"ParameterList","parameters":[],"src":"2470:0:16"},"scope":3751,"src":"2412:59:16","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3735,"nodeType":"StructuredDocumentation","src":"2477:223:16","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":3742,"implemented":false,"kind":"function","modifiers":[],"name":"revokeRole","nameLocation":"2714:10:16","nodeType":"FunctionDefinition","parameters":{"id":3740,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3737,"mutability":"mutable","name":"role","nameLocation":"2733:4:16","nodeType":"VariableDeclaration","scope":3742,"src":"2725:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3736,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2725:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3739,"mutability":"mutable","name":"account","nameLocation":"2747:7:16","nodeType":"VariableDeclaration","scope":3742,"src":"2739:15:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3738,"name":"address","nodeType":"ElementaryTypeName","src":"2739:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2724:31:16"},"returnParameters":{"id":3741,"nodeType":"ParameterList","parameters":[],"src":"2764:0:16"},"scope":3751,"src":"2705:60:16","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3743,"nodeType":"StructuredDocumentation","src":"2771:491:16","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":3750,"implemented":false,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"3276:12:16","nodeType":"FunctionDefinition","parameters":{"id":3748,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3745,"mutability":"mutable","name":"role","nameLocation":"3297:4:16","nodeType":"VariableDeclaration","scope":3750,"src":"3289:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3744,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3289:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3747,"mutability":"mutable","name":"callerConfirmation","nameLocation":"3311:18:16","nodeType":"VariableDeclaration","scope":3750,"src":"3303:26:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3746,"name":"address","nodeType":"ElementaryTypeName","src":"3303:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3288:42:16"},"returnParameters":{"id":3749,"nodeType":"ParameterList","parameters":[],"src":"3339:0:16"},"scope":3751,"src":"3267:73:16","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":3752,"src":"226:3116:16","usedErrors":[3678,3681],"usedEvents":[3690,3699,3708]}],"src":"109:3234:16"},"id":16},"@openzeppelin/contracts/access/manager/AccessManager.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/manager/AccessManager.sol","exportedSymbols":{"AccessManager":[5649],"Address":[9984],"Context":[10727],"Hashes":[13964],"IAccessManaged":[5689],"IAccessManager":[6119],"Math":[15914],"Multicall":[11297],"Time":[18097]},"id":5650,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3753,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"116:24:17"},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","file":"./IAccessManager.sol","id":3755,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5650,"sourceUnit":6120,"src":"142:52:17","symbolAliases":[{"foreign":{"id":3754,"name":"IAccessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6119,"src":"150:14:17","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManaged.sol","file":"./IAccessManaged.sol","id":3757,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5650,"sourceUnit":5690,"src":"195:52:17","symbolAliases":[{"foreign":{"id":3756,"name":"IAccessManaged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5689,"src":"203:14:17","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"../../utils/Address.sol","id":3759,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5650,"sourceUnit":9985,"src":"248:48:17","symbolAliases":[{"foreign":{"id":3758,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9984,"src":"256:7:17","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":3761,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5650,"sourceUnit":10728,"src":"297:48:17","symbolAliases":[{"foreign":{"id":3760,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10727,"src":"305:7:17","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Multicall.sol","file":"../../utils/Multicall.sol","id":3763,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5650,"sourceUnit":11298,"src":"346:52:17","symbolAliases":[{"foreign":{"id":3762,"name":"Multicall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11297,"src":"354:9:17","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"../../utils/math/Math.sol","id":3765,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5650,"sourceUnit":15915,"src":"399:47:17","symbolAliases":[{"foreign":{"id":3764,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"407:4:17","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","file":"../../utils/types/Time.sol","id":3767,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5650,"sourceUnit":18098,"src":"447:48:17","symbolAliases":[{"foreign":{"id":3766,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18097,"src":"455:4:17","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/Hashes.sol","file":"../../utils/cryptography/Hashes.sol","id":3769,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5650,"sourceUnit":13965,"src":"496:59:17","symbolAliases":[{"foreign":{"id":3768,"name":"Hashes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13964,"src":"504:6:17","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":3771,"name":"Context","nameLocations":["3808:7:17"],"nodeType":"IdentifierPath","referencedDeclaration":10727,"src":"3808:7:17"},"id":3772,"nodeType":"InheritanceSpecifier","src":"3808:7:17"},{"baseName":{"id":3773,"name":"Multicall","nameLocations":["3817:9:17"],"nodeType":"IdentifierPath","referencedDeclaration":11297,"src":"3817:9:17"},"id":3774,"nodeType":"InheritanceSpecifier","src":"3817:9:17"},{"baseName":{"id":3775,"name":"IAccessManager","nameLocations":["3828:14:17"],"nodeType":"IdentifierPath","referencedDeclaration":6119,"src":"3828:14:17"},"id":3776,"nodeType":"InheritanceSpecifier","src":"3828:14:17"}],"canonicalName":"AccessManager","contractDependencies":[],"contractKind":"contract","documentation":{"id":3770,"nodeType":"StructuredDocumentation","src":"557:3224:17","text":" @dev AccessManager is a central contract to store the permissions of a system.\n A smart contract under the control of an AccessManager instance is known as a target, and will inherit from the\n {AccessManaged} contract, be connected to this contract as its manager and implement the {AccessManaged-restricted}\n modifier on a set of functions selected to be permissioned. Note that any function without this setup won't be\n effectively restricted.\n The restriction rules for such functions are defined in terms of \"roles\" identified by an `uint64` and scoped\n by target (`address`) and function selectors (`bytes4`). These roles are stored in this contract and can be\n configured by admins (`ADMIN_ROLE` members) after a delay (see {getTargetAdminDelay}).\n For each target contract, admins can configure the following without any delay:\n * The target's {AccessManaged-authority} via {updateAuthority}.\n * Close or open a target via {setTargetClosed} keeping the permissions intact.\n * The roles that are allowed (or disallowed) to call a given function (identified by its selector) through {setTargetFunctionRole}.\n By default every address is member of the `PUBLIC_ROLE` and every target function is restricted to the `ADMIN_ROLE` until configured otherwise.\n Additionally, each role has the following configuration options restricted to this manager's admins:\n * A role's admin role via {setRoleAdmin} who can grant or revoke roles.\n * A role's guardian role via {setRoleGuardian} who's allowed to cancel operations.\n * A delay in which a role takes effect after being granted through {setGrantDelay}.\n * A delay of any target's admin action via {setTargetAdminDelay}.\n * A role label for discoverability purposes with {labelRole}.\n Any account can be added and removed into any number of these roles by using the {grantRole} and {revokeRole} functions\n restricted to each role's admin (see {getRoleAdmin}).\n Since all the permissions of the managed system can be modified by the admins of this instance, it is expected that\n they will be highly secured (e.g., a multisig or a well-configured DAO).\n NOTE: This contract implements a form of the {IAuthority} interface, but {canCall} has additional return data so it\n doesn't inherit `IAuthority`. It is however compatible with the `IAuthority` interface since the first 32 bytes of\n the return data are a boolean as expected by that interface.\n NOTE: Systems that implement other access control mechanisms (for example using {Ownable}) can be paired with an\n {AccessManager} by transferring permissions (ownership in the case of {Ownable}) directly to the {AccessManager}.\n Users will be able to interact with these contracts through the {execute} function, following the access rules\n registered in the {AccessManager}. Keep in mind that in that context, the msg.sender seen by restricted functions\n will be {AccessManager} itself.\n WARNING: When granting permissions over an {Ownable} or {AccessControl} contract to an {AccessManager}, be very\n mindful of the danger associated with functions such as {Ownable-renounceOwnership} or\n {AccessControl-renounceRole}."},"fullyImplemented":true,"id":5649,"linearizedBaseContracts":[5649,6119,11297,10727],"name":"AccessManager","nameLocation":"3791:13:17","nodeType":"ContractDefinition","nodes":[{"global":false,"id":3778,"libraryName":{"id":3777,"name":"Time","nameLocations":["3855:4:17"],"nodeType":"IdentifierPath","referencedDeclaration":18097,"src":"3855:4:17"},"nodeType":"UsingForDirective","src":"3849:17:17"},{"canonicalName":"AccessManager.TargetConfig","id":3788,"members":[{"constant":false,"id":3782,"mutability":"mutable","name":"allowedRoles","nameLocation":"4008:12:17","nodeType":"VariableDeclaration","scope":3788,"src":"3966:54:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_uint64_$","typeString":"mapping(bytes4 => uint64)"},"typeName":{"id":3781,"keyName":"selector","keyNameLocation":"3981:8:17","keyType":{"id":3779,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3974:6:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"Mapping","src":"3966:41:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_uint64_$","typeString":"mapping(bytes4 => uint64)"},"valueName":"roleId","valueNameLocation":"4000:6:17","valueType":{"id":3780,"name":"uint64","nodeType":"ElementaryTypeName","src":"3993:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}},"visibility":"internal"},{"constant":false,"id":3785,"mutability":"mutable","name":"adminDelay","nameLocation":"4041:10:17","nodeType":"VariableDeclaration","scope":3788,"src":"4030:21:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"},"typeName":{"id":3784,"nodeType":"UserDefinedTypeName","pathNode":{"id":3783,"name":"Time.Delay","nameLocations":["4030:4:17","4035:5:17"],"nodeType":"IdentifierPath","referencedDeclaration":17860,"src":"4030:10:17"},"referencedDeclaration":17860,"src":"4030:10:17","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":3787,"mutability":"mutable","name":"closed","nameLocation":"4066:6:17","nodeType":"VariableDeclaration","scope":3788,"src":"4061:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3786,"name":"bool","nodeType":"ElementaryTypeName","src":"4061:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"TargetConfig","nameLocation":"3943:12:17","nodeType":"StructDefinition","scope":5649,"src":"3936:143:17","visibility":"public"},{"canonicalName":"AccessManager.Access","id":3794,"members":[{"constant":false,"id":3790,"mutability":"mutable","name":"since","nameLocation":"4374:5:17","nodeType":"VariableDeclaration","scope":3794,"src":"4367:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":3789,"name":"uint48","nodeType":"ElementaryTypeName","src":"4367:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":3793,"mutability":"mutable","name":"delay","nameLocation":"4480:5:17","nodeType":"VariableDeclaration","scope":3794,"src":"4469:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"},"typeName":{"id":3792,"nodeType":"UserDefinedTypeName","pathNode":{"id":3791,"name":"Time.Delay","nameLocations":["4469:4:17","4474:5:17"],"nodeType":"IdentifierPath","referencedDeclaration":17860,"src":"4469:10:17"},"referencedDeclaration":17860,"src":"4469:10:17","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"visibility":"internal"}],"name":"Access","nameLocation":"4198:6:17","nodeType":"StructDefinition","scope":5649,"src":"4191:301:17","visibility":"public"},{"canonicalName":"AccessManager.Role","id":3807,"members":[{"constant":false,"id":3799,"mutability":"mutable","name":"members","nameLocation":"4643:7:17","nodeType":"VariableDeclaration","scope":3807,"src":"4604:46:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$3794_storage_$","typeString":"mapping(address => struct AccessManager.Access)"},"typeName":{"id":3798,"keyName":"user","keyNameLocation":"4620:4:17","keyType":{"id":3795,"name":"address","nodeType":"ElementaryTypeName","src":"4612:7:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"4604:38:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$3794_storage_$","typeString":"mapping(address => struct AccessManager.Access)"},"valueName":"access","valueNameLocation":"4635:6:17","valueType":{"id":3797,"nodeType":"UserDefinedTypeName","pathNode":{"id":3796,"name":"Access","nameLocations":["4628:6:17"],"nodeType":"IdentifierPath","referencedDeclaration":3794,"src":"4628:6:17"},"referencedDeclaration":3794,"src":"4628:6:17","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$3794_storage_ptr","typeString":"struct AccessManager.Access"}}},"visibility":"internal"},{"constant":false,"id":3801,"mutability":"mutable","name":"admin","nameLocation":"4721:5:17","nodeType":"VariableDeclaration","scope":3807,"src":"4714:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":3800,"name":"uint64","nodeType":"ElementaryTypeName","src":"4714:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":3803,"mutability":"mutable","name":"guardian","nameLocation":"4830:8:17","nodeType":"VariableDeclaration","scope":3807,"src":"4823:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":3802,"name":"uint64","nodeType":"ElementaryTypeName","src":"4823:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":3806,"mutability":"mutable","name":"grantDelay","nameLocation":"4928:10:17","nodeType":"VariableDeclaration","scope":3807,"src":"4917:21:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"},"typeName":{"id":3805,"nodeType":"UserDefinedTypeName","pathNode":{"id":3804,"name":"Time.Delay","nameLocations":["4917:4:17","4922:5:17"],"nodeType":"IdentifierPath","referencedDeclaration":17860,"src":"4917:10:17"},"referencedDeclaration":17860,"src":"4917:10:17","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"visibility":"internal"}],"name":"Role","nameLocation":"4557:4:17","nodeType":"StructDefinition","scope":5649,"src":"4550:395:17","visibility":"public"},{"canonicalName":"AccessManager.Schedule","id":3812,"members":[{"constant":false,"id":3809,"mutability":"mutable","name":"timepoint","nameLocation":"5150:9:17","nodeType":"VariableDeclaration","scope":3812,"src":"5143:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":3808,"name":"uint48","nodeType":"ElementaryTypeName","src":"5143:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":3811,"mutability":"mutable","name":"nonce","nameLocation":"5261:5:17","nodeType":"VariableDeclaration","scope":3812,"src":"5254:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3810,"name":"uint32","nodeType":"ElementaryTypeName","src":"5254:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"name":"Schedule","nameLocation":"5066:8:17","nodeType":"StructDefinition","scope":5649,"src":"5059:214:17","visibility":"public"},{"constant":true,"documentation":{"id":3813,"nodeType":"StructuredDocumentation","src":"5279:173:17","text":" @dev The identifier of the admin role. Required to perform most configuration operations including\n other roles' management and target restrictions."},"functionSelector":"75b238fc","id":3820,"mutability":"constant","name":"ADMIN_ROLE","nameLocation":"5480:10:17","nodeType":"VariableDeclaration","scope":5649,"src":"5457:52:17","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":3814,"name":"uint64","nodeType":"ElementaryTypeName","src":"5457:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"value":{"expression":{"arguments":[{"id":3817,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5498:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":3816,"name":"uint64","nodeType":"ElementaryTypeName","src":"5498:6:17","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":3815,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5493:4:17","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3818,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5493:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":3819,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5506:3:17","memberName":"min","nodeType":"MemberAccess","src":"5493:16:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"public"},{"constant":true,"documentation":{"id":3821,"nodeType":"StructuredDocumentation","src":"5521:112:17","text":" @dev The identifier of the public role. Automatically granted to all addresses with no delay."},"functionSelector":"3ca7c02a","id":3828,"mutability":"constant","name":"PUBLIC_ROLE","nameLocation":"5661:11:17","nodeType":"VariableDeclaration","scope":5649,"src":"5638:53:17","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":3822,"name":"uint64","nodeType":"ElementaryTypeName","src":"5638:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"value":{"expression":{"arguments":[{"id":3825,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5680:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":3824,"name":"uint64","nodeType":"ElementaryTypeName","src":"5680:6:17","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":3823,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5675:4:17","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3826,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5675:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":3827,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5688:3:17","memberName":"max","nodeType":"MemberAccess","src":"5675:16:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"public"},{"constant":false,"id":3833,"mutability":"mutable","name":"_targets","nameLocation":"5762:8:17","nodeType":"VariableDeclaration","scope":5649,"src":"5709:61:17","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$3788_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig)"},"typeName":{"id":3832,"keyName":"target","keyNameLocation":"5725:6:17","keyType":{"id":3829,"name":"address","nodeType":"ElementaryTypeName","src":"5717:7:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"5709:44:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$3788_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig)"},"valueName":"mode","valueNameLocation":"5748:4:17","valueType":{"id":3831,"nodeType":"UserDefinedTypeName","pathNode":{"id":3830,"name":"TargetConfig","nameLocations":["5735:12:17"],"nodeType":"IdentifierPath","referencedDeclaration":3788,"src":"5735:12:17"},"referencedDeclaration":3788,"src":"5735:12:17","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$3788_storage_ptr","typeString":"struct AccessManager.TargetConfig"}}},"visibility":"private"},{"constant":false,"id":3838,"mutability":"mutable","name":"_roles","nameLocation":"5815:6:17","nodeType":"VariableDeclaration","scope":5649,"src":"5776:45:17","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$3807_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role)"},"typeName":{"id":3837,"keyName":"roleId","keyNameLocation":"5791:6:17","keyType":{"id":3834,"name":"uint64","nodeType":"ElementaryTypeName","src":"5784:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Mapping","src":"5776:30:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$3807_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":3836,"nodeType":"UserDefinedTypeName","pathNode":{"id":3835,"name":"Role","nameLocations":["5801:4:17"],"nodeType":"IdentifierPath","referencedDeclaration":3807,"src":"5801:4:17"},"referencedDeclaration":3807,"src":"5801:4:17","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$3807_storage_ptr","typeString":"struct AccessManager.Role"}}},"visibility":"private"},{"constant":false,"id":3843,"mutability":"mutable","name":"_schedules","nameLocation":"5876:10:17","nodeType":"VariableDeclaration","scope":5649,"src":"5827:59:17","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$3812_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule)"},"typeName":{"id":3842,"keyName":"operationId","keyNameLocation":"5843:11:17","keyType":{"id":3839,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5835:7:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"5827:40:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$3812_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":3841,"nodeType":"UserDefinedTypeName","pathNode":{"id":3840,"name":"Schedule","nameLocations":["5858:8:17"],"nodeType":"IdentifierPath","referencedDeclaration":3812,"src":"5858:8:17"},"referencedDeclaration":3812,"src":"5858:8:17","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$3812_storage_ptr","typeString":"struct AccessManager.Schedule"}}},"visibility":"private"},{"constant":false,"id":3845,"mutability":"mutable","name":"_executionId","nameLocation":"6060:12:17","nodeType":"VariableDeclaration","scope":5649,"src":"6044:28:17","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3844,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6044:7:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"body":{"id":3852,"nodeType":"Block","src":"6287:46:17","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":3848,"name":"_checkAuthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5269,"src":"6297:16:17","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":3849,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6297:18:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3850,"nodeType":"ExpressionStatement","src":"6297:18:17"},{"id":3851,"nodeType":"PlaceholderStatement","src":"6325:1:17"}]},"documentation":{"id":3846,"nodeType":"StructuredDocumentation","src":"6079:177:17","text":" @dev Check that the caller is authorized to perform the operation.\n See {AccessManager} description for a detailed breakdown of the authorization logic."},"id":3853,"name":"onlyAuthorized","nameLocation":"6270:14:17","nodeType":"ModifierDefinition","parameters":{"id":3847,"nodeType":"ParameterList","parameters":[],"src":"6284:2:17"},"src":"6261:72:17","virtual":false,"visibility":"internal"},{"body":{"id":3880,"nodeType":"Block","src":"6373:249:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3863,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3858,"name":"initialAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3855,"src":"6387:12:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":3861,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6411:1:17","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":3860,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6403:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3859,"name":"address","nodeType":"ElementaryTypeName","src":"6403:7:17","typeDescriptions":{}}},"id":3862,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6403:10:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6387:26:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3872,"nodeType":"IfStatement","src":"6383:108:17","trueBody":{"id":3871,"nodeType":"Block","src":"6415:76:17","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":3867,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6477:1:17","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":3866,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6469:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3865,"name":"address","nodeType":"ElementaryTypeName","src":"6469:7:17","typeDescriptions":{}}},"id":3868,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6469:10:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3864,"name":"AccessManagerInvalidInitialAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5849,"src":"6436:32:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":3869,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6436:44:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":3870,"nodeType":"RevertStatement","src":"6429:51:17"}]}},{"expression":{"arguments":[{"id":3874,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3820,"src":"6584:10:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":3875,"name":"initialAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3855,"src":"6596:12:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":3876,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6610:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":3877,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6613:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":3873,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4385,"src":"6573:10:17","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_address_$_t_uint32_$_t_uint32_$returns$_t_bool_$","typeString":"function (uint64,address,uint32,uint32) returns (bool)"}},"id":3878,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6573:42:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3879,"nodeType":"ExpressionStatement","src":"6573:42:17"}]},"id":3881,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":3856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3855,"mutability":"mutable","name":"initialAdmin","nameLocation":"6359:12:17","nodeType":"VariableDeclaration","scope":3881,"src":"6351:20:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3854,"name":"address","nodeType":"ElementaryTypeName","src":"6351:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6350:22:17"},"returnParameters":{"id":3857,"nodeType":"ParameterList","parameters":[],"src":"6373:0:17"},"scope":5649,"src":"6339:283:17","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[5863],"body":{"id":3947,"nodeType":"Block","src":"6938:647:17","statements":[{"condition":{"arguments":[{"id":3896,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3886,"src":"6967:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3895,"name":"isTargetClosed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3980,"src":"6952:14:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":3897,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6952:22:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3908,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3903,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3884,"src":"7028:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":3906,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7046:4:17","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}],"id":3905,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7038:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3904,"name":"address","nodeType":"ElementaryTypeName","src":"7038:7:17","typeDescriptions":{}}},"id":3907,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7038:13:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7028:23:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3944,"nodeType":"Block","src":"7345:234:17","statements":[{"assignments":[3918],"declarations":[{"constant":false,"id":3918,"mutability":"mutable","name":"roleId","nameLocation":"7366:6:17","nodeType":"VariableDeclaration","scope":3944,"src":"7359:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":3917,"name":"uint64","nodeType":"ElementaryTypeName","src":"7359:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":3923,"initialValue":{"arguments":[{"id":3920,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3886,"src":"7397:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3921,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3888,"src":"7405:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":3919,"name":"getTargetFunctionRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3998,"src":"7375:21:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_uint64_$","typeString":"function (address,bytes4) view returns (uint64)"}},"id":3922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7375:39:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"7359:55:17"},{"assignments":[3925,3927],"declarations":[{"constant":false,"id":3925,"mutability":"mutable","name":"isMember","nameLocation":"7434:8:17","nodeType":"VariableDeclaration","scope":3944,"src":"7429:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3924,"name":"bool","nodeType":"ElementaryTypeName","src":"7429:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3927,"mutability":"mutable","name":"currentDelay","nameLocation":"7451:12:17","nodeType":"VariableDeclaration","scope":3944,"src":"7444:19:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3926,"name":"uint32","nodeType":"ElementaryTypeName","src":"7444:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":3932,"initialValue":{"arguments":[{"id":3929,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3918,"src":"7475:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":3930,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3884,"src":"7483:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":3928,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4150,"src":"7467:7:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_bool_$_t_uint32_$","typeString":"function (uint64,address) view returns (bool,uint32)"}},"id":3931,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7467:23:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"7428:62:17"},{"expression":{"condition":{"id":3933,"name":"isMember","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3925,"src":"7511:8:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"hexValue":"66616c7365","id":3939,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7559:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":3940,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7566:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":3941,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"7558:10:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"id":3942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"7511:57:17","trueExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":3936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3934,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3927,"src":"7523:12:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3935,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7539:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7523:17:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":3937,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3927,"src":"7542:12:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":3938,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7522:33:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":3894,"id":3943,"nodeType":"Return","src":"7504:64:17"}]},"id":3945,"nodeType":"IfStatement","src":"7024:555:17","trueBody":{"id":3916,"nodeType":"Block","src":"7053:286:17","statements":[{"expression":{"components":[{"arguments":[{"id":3910,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3886,"src":"7307:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3911,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3888,"src":"7315:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":3909,"name":"_isExecuting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5587,"src":"7294:12:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":3912,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7294:30:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"30","id":3913,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7326:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":3914,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7293:35:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":3894,"id":3915,"nodeType":"Return","src":"7286:42:17"}]}},"id":3946,"nodeType":"IfStatement","src":"6948:631:17","trueBody":{"id":3902,"nodeType":"Block","src":"6976:42:17","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":3898,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6998:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":3899,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7005:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":3900,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6997:10:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":3894,"id":3901,"nodeType":"Return","src":"6990:17:17"}]}}]},"documentation":{"id":3882,"nodeType":"StructuredDocumentation","src":"6748:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"b7009613","id":3948,"implemented":true,"kind":"function","modifiers":[],"name":"canCall","nameLocation":"6792:7:17","nodeType":"FunctionDefinition","parameters":{"id":3889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3884,"mutability":"mutable","name":"caller","nameLocation":"6817:6:17","nodeType":"VariableDeclaration","scope":3948,"src":"6809:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3883,"name":"address","nodeType":"ElementaryTypeName","src":"6809:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3886,"mutability":"mutable","name":"target","nameLocation":"6841:6:17","nodeType":"VariableDeclaration","scope":3948,"src":"6833:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3885,"name":"address","nodeType":"ElementaryTypeName","src":"6833:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3888,"mutability":"mutable","name":"selector","nameLocation":"6864:8:17","nodeType":"VariableDeclaration","scope":3948,"src":"6857:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":3887,"name":"bytes4","nodeType":"ElementaryTypeName","src":"6857:6:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"6799:79:17"},"returnParameters":{"id":3894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3891,"mutability":"mutable","name":"immediate","nameLocation":"6913:9:17","nodeType":"VariableDeclaration","scope":3948,"src":"6908:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3890,"name":"bool","nodeType":"ElementaryTypeName","src":"6908:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3893,"mutability":"mutable","name":"delay","nameLocation":"6931:5:17","nodeType":"VariableDeclaration","scope":3948,"src":"6924:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3892,"name":"uint32","nodeType":"ElementaryTypeName","src":"6924:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"6907:30:17"},"scope":5649,"src":"6783:802:17","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5869],"body":{"id":3956,"nodeType":"Block","src":"7685:31:17","statements":[{"expression":{"hexValue":"31","id":3954,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7702:7:17","subdenomination":"weeks","typeDescriptions":{"typeIdentifier":"t_rational_604800_by_1","typeString":"int_const 604800"},"value":"1"},"functionReturnParameters":3953,"id":3955,"nodeType":"Return","src":"7695:14:17"}]},"documentation":{"id":3949,"nodeType":"StructuredDocumentation","src":"7591:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"4665096d","id":3957,"implemented":true,"kind":"function","modifiers":[],"name":"expiration","nameLocation":"7635:10:17","nodeType":"FunctionDefinition","parameters":{"id":3950,"nodeType":"ParameterList","parameters":[],"src":"7645:2:17"},"returnParameters":{"id":3953,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3952,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3957,"src":"7677:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3951,"name":"uint32","nodeType":"ElementaryTypeName","src":"7677:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"7676:8:17"},"scope":5649,"src":"7626:90:17","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5875],"body":{"id":3965,"nodeType":"Block","src":"7816:30:17","statements":[{"expression":{"hexValue":"35","id":3963,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7833:6:17","subdenomination":"days","typeDescriptions":{"typeIdentifier":"t_rational_432000_by_1","typeString":"int_const 432000"},"value":"5"},"functionReturnParameters":3962,"id":3964,"nodeType":"Return","src":"7826:13:17"}]},"documentation":{"id":3958,"nodeType":"StructuredDocumentation","src":"7722:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"cc1b6c81","id":3966,"implemented":true,"kind":"function","modifiers":[],"name":"minSetback","nameLocation":"7766:10:17","nodeType":"FunctionDefinition","parameters":{"id":3959,"nodeType":"ParameterList","parameters":[],"src":"7776:2:17"},"returnParameters":{"id":3962,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3961,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3966,"src":"7808:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3960,"name":"uint32","nodeType":"ElementaryTypeName","src":"7808:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"7807:8:17"},"scope":5649,"src":"7757:89:17","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5883],"body":{"id":3979,"nodeType":"Block","src":"7962:47:17","statements":[{"expression":{"expression":{"baseExpression":{"id":3974,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3833,"src":"7979:8:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$3788_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":3976,"indexExpression":{"id":3975,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3969,"src":"7988:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7979:16:17","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$3788_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":3977,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7996:6:17","memberName":"closed","nodeType":"MemberAccess","referencedDeclaration":3787,"src":"7979:23:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3973,"id":3978,"nodeType":"Return","src":"7972:30:17"}]},"documentation":{"id":3967,"nodeType":"StructuredDocumentation","src":"7852:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"a166aa89","id":3980,"implemented":true,"kind":"function","modifiers":[],"name":"isTargetClosed","nameLocation":"7896:14:17","nodeType":"FunctionDefinition","parameters":{"id":3970,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3969,"mutability":"mutable","name":"target","nameLocation":"7919:6:17","nodeType":"VariableDeclaration","scope":3980,"src":"7911:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3968,"name":"address","nodeType":"ElementaryTypeName","src":"7911:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7910:16:17"},"returnParameters":{"id":3973,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3972,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3980,"src":"7956:4:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3971,"name":"bool","nodeType":"ElementaryTypeName","src":"7956:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7955:6:17"},"scope":5649,"src":"7887:122:17","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5893],"body":{"id":3997,"nodeType":"Block","src":"8151:63:17","statements":[{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":3990,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3833,"src":"8168:8:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$3788_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":3992,"indexExpression":{"id":3991,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3983,"src":"8177:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8168:16:17","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$3788_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":3993,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8185:12:17","memberName":"allowedRoles","nodeType":"MemberAccess","referencedDeclaration":3782,"src":"8168:29:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_uint64_$","typeString":"mapping(bytes4 => uint64)"}},"id":3995,"indexExpression":{"id":3994,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3985,"src":"8198:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8168:39:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":3989,"id":3996,"nodeType":"Return","src":"8161:46:17"}]},"documentation":{"id":3981,"nodeType":"StructuredDocumentation","src":"8015:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"6d5115bd","id":3998,"implemented":true,"kind":"function","modifiers":[],"name":"getTargetFunctionRole","nameLocation":"8059:21:17","nodeType":"FunctionDefinition","parameters":{"id":3986,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3983,"mutability":"mutable","name":"target","nameLocation":"8089:6:17","nodeType":"VariableDeclaration","scope":3998,"src":"8081:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3982,"name":"address","nodeType":"ElementaryTypeName","src":"8081:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3985,"mutability":"mutable","name":"selector","nameLocation":"8104:8:17","nodeType":"VariableDeclaration","scope":3998,"src":"8097:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":3984,"name":"bytes4","nodeType":"ElementaryTypeName","src":"8097:6:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"8080:33:17"},"returnParameters":{"id":3989,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3988,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3998,"src":"8143:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":3987,"name":"uint64","nodeType":"ElementaryTypeName","src":"8143:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8142:8:17"},"scope":5649,"src":"8050:164:17","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5901],"body":{"id":4013,"nodeType":"Block","src":"8337:57:17","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"baseExpression":{"id":4006,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3833,"src":"8354:8:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$3788_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":4008,"indexExpression":{"id":4007,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4001,"src":"8363:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8354:16:17","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$3788_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":4009,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8371:10:17","memberName":"adminDelay","nodeType":"MemberAccess","referencedDeclaration":3785,"src":"8354:27:17","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"id":4010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8382:3:17","memberName":"get","nodeType":"MemberAccess","referencedDeclaration":17951,"src":"8354:31:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$17860_$returns$_t_uint32_$attached_to$_t_userDefinedValueType$_Delay_$17860_$","typeString":"function (Time.Delay) view returns (uint32)"}},"id":4011,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8354:33:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":4005,"id":4012,"nodeType":"Return","src":"8347:40:17"}]},"documentation":{"id":3999,"nodeType":"StructuredDocumentation","src":"8220:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"4c1da1e2","id":4014,"implemented":true,"kind":"function","modifiers":[],"name":"getTargetAdminDelay","nameLocation":"8264:19:17","nodeType":"FunctionDefinition","parameters":{"id":4002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4001,"mutability":"mutable","name":"target","nameLocation":"8292:6:17","nodeType":"VariableDeclaration","scope":4014,"src":"8284:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4000,"name":"address","nodeType":"ElementaryTypeName","src":"8284:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8283:16:17"},"returnParameters":{"id":4005,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4004,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4014,"src":"8329:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4003,"name":"uint32","nodeType":"ElementaryTypeName","src":"8329:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8328:8:17"},"scope":5649,"src":"8255:139:17","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5909],"body":{"id":4027,"nodeType":"Block","src":"8509:44:17","statements":[{"expression":{"expression":{"baseExpression":{"id":4022,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3838,"src":"8526:6:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$3807_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":4024,"indexExpression":{"id":4023,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4017,"src":"8533:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8526:14:17","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$3807_storage","typeString":"struct AccessManager.Role storage ref"}},"id":4025,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8541:5:17","memberName":"admin","nodeType":"MemberAccess","referencedDeclaration":3801,"src":"8526:20:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":4021,"id":4026,"nodeType":"Return","src":"8519:27:17"}]},"documentation":{"id":4015,"nodeType":"StructuredDocumentation","src":"8400:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"530dd456","id":4028,"implemented":true,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"8444:12:17","nodeType":"FunctionDefinition","parameters":{"id":4018,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4017,"mutability":"mutable","name":"roleId","nameLocation":"8464:6:17","nodeType":"VariableDeclaration","scope":4028,"src":"8457:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4016,"name":"uint64","nodeType":"ElementaryTypeName","src":"8457:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8456:15:17"},"returnParameters":{"id":4021,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4020,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4028,"src":"8501:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4019,"name":"uint64","nodeType":"ElementaryTypeName","src":"8501:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8500:8:17"},"scope":5649,"src":"8435:118:17","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5917],"body":{"id":4041,"nodeType":"Block","src":"8671:47:17","statements":[{"expression":{"expression":{"baseExpression":{"id":4036,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3838,"src":"8688:6:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$3807_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":4038,"indexExpression":{"id":4037,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4031,"src":"8695:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8688:14:17","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$3807_storage","typeString":"struct AccessManager.Role storage ref"}},"id":4039,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8703:8:17","memberName":"guardian","nodeType":"MemberAccess","referencedDeclaration":3803,"src":"8688:23:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":4035,"id":4040,"nodeType":"Return","src":"8681:30:17"}]},"documentation":{"id":4029,"nodeType":"StructuredDocumentation","src":"8559:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"0b0a93ba","id":4042,"implemented":true,"kind":"function","modifiers":[],"name":"getRoleGuardian","nameLocation":"8603:15:17","nodeType":"FunctionDefinition","parameters":{"id":4032,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4031,"mutability":"mutable","name":"roleId","nameLocation":"8626:6:17","nodeType":"VariableDeclaration","scope":4042,"src":"8619:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4030,"name":"uint64","nodeType":"ElementaryTypeName","src":"8619:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8618:15:17"},"returnParameters":{"id":4035,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4034,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4042,"src":"8663:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4033,"name":"uint64","nodeType":"ElementaryTypeName","src":"8663:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8662:8:17"},"scope":5649,"src":"8594:124:17","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5925],"body":{"id":4057,"nodeType":"Block","src":"8838:55:17","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"baseExpression":{"id":4050,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3838,"src":"8855:6:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$3807_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":4052,"indexExpression":{"id":4051,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4045,"src":"8862:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8855:14:17","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$3807_storage","typeString":"struct AccessManager.Role storage ref"}},"id":4053,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8870:10:17","memberName":"grantDelay","nodeType":"MemberAccess","referencedDeclaration":3806,"src":"8855:25:17","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"id":4054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8881:3:17","memberName":"get","nodeType":"MemberAccess","referencedDeclaration":17951,"src":"8855:29:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$17860_$returns$_t_uint32_$attached_to$_t_userDefinedValueType$_Delay_$17860_$","typeString":"function (Time.Delay) view returns (uint32)"}},"id":4055,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8855:31:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":4049,"id":4056,"nodeType":"Return","src":"8848:38:17"}]},"documentation":{"id":4043,"nodeType":"StructuredDocumentation","src":"8724:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"12be8727","id":4058,"implemented":true,"kind":"function","modifiers":[],"name":"getRoleGrantDelay","nameLocation":"8768:17:17","nodeType":"FunctionDefinition","parameters":{"id":4046,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4045,"mutability":"mutable","name":"roleId","nameLocation":"8793:6:17","nodeType":"VariableDeclaration","scope":4058,"src":"8786:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4044,"name":"uint64","nodeType":"ElementaryTypeName","src":"8786:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8785:15:17"},"returnParameters":{"id":4049,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4048,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4058,"src":"8830:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4047,"name":"uint32","nodeType":"ElementaryTypeName","src":"8830:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8829:8:17"},"scope":5649,"src":"8759:134:17","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5941],"body":{"id":4105,"nodeType":"Block","src":"9107:235:17","statements":[{"assignments":[4076],"declarations":[{"constant":false,"id":4076,"mutability":"mutable","name":"access","nameLocation":"9132:6:17","nodeType":"VariableDeclaration","scope":4105,"src":"9117:21:17","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$3794_storage_ptr","typeString":"struct AccessManager.Access"},"typeName":{"id":4075,"nodeType":"UserDefinedTypeName","pathNode":{"id":4074,"name":"Access","nameLocations":["9117:6:17"],"nodeType":"IdentifierPath","referencedDeclaration":3794,"src":"9117:6:17"},"referencedDeclaration":3794,"src":"9117:6:17","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$3794_storage_ptr","typeString":"struct AccessManager.Access"}},"visibility":"internal"}],"id":4083,"initialValue":{"baseExpression":{"expression":{"baseExpression":{"id":4077,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3838,"src":"9141:6:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$3807_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":4079,"indexExpression":{"id":4078,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4061,"src":"9148:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9141:14:17","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$3807_storage","typeString":"struct AccessManager.Role storage ref"}},"id":4080,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9156:7:17","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":3799,"src":"9141:22:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$3794_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":4082,"indexExpression":{"id":4081,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4063,"src":"9164:7:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9141:31:17","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$3794_storage","typeString":"struct AccessManager.Access storage ref"}},"nodeType":"VariableDeclarationStatement","src":"9117:55:17"},{"expression":{"id":4087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4084,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4066,"src":"9183:5:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":4085,"name":"access","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4076,"src":"9191:6:17","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$3794_storage_ptr","typeString":"struct AccessManager.Access storage pointer"}},"id":4086,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9198:5:17","memberName":"since","nodeType":"MemberAccess","referencedDeclaration":3790,"src":"9191:12:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"9183:20:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":4088,"nodeType":"ExpressionStatement","src":"9183:20:17"},{"expression":{"id":4097,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":4089,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4068,"src":"9214:12:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":4090,"name":"pendingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4070,"src":"9228:12:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":4091,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4072,"src":"9242:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":4092,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"9213:36:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":4093,"name":"access","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4076,"src":"9252:6:17","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$3794_storage_ptr","typeString":"struct AccessManager.Access storage pointer"}},"id":4094,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9259:5:17","memberName":"delay","nodeType":"MemberAccess","referencedDeclaration":3793,"src":"9252:12:17","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"id":4095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9265:7:17","memberName":"getFull","nodeType":"MemberAccess","referencedDeclaration":17933,"src":"9252:20:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$17860_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$17860_$","typeString":"function (Time.Delay) view returns (uint32,uint32,uint48)"}},"id":4096,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9252:22:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"src":"9213:61:17","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4098,"nodeType":"ExpressionStatement","src":"9213:61:17"},{"expression":{"components":[{"id":4099,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4066,"src":"9293:5:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":4100,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4068,"src":"9300:12:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":4101,"name":"pendingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4070,"src":"9314:12:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":4102,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4072,"src":"9328:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":4103,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9292:43:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint48_$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint48,uint32,uint32,uint48)"}},"functionReturnParameters":4073,"id":4104,"nodeType":"Return","src":"9285:50:17"}]},"documentation":{"id":4059,"nodeType":"StructuredDocumentation","src":"8899:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"3078f114","id":4106,"implemented":true,"kind":"function","modifiers":[],"name":"getAccess","nameLocation":"8943:9:17","nodeType":"FunctionDefinition","parameters":{"id":4064,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4061,"mutability":"mutable","name":"roleId","nameLocation":"8969:6:17","nodeType":"VariableDeclaration","scope":4106,"src":"8962:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4060,"name":"uint64","nodeType":"ElementaryTypeName","src":"8962:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":4063,"mutability":"mutable","name":"account","nameLocation":"8993:7:17","nodeType":"VariableDeclaration","scope":4106,"src":"8985:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4062,"name":"address","nodeType":"ElementaryTypeName","src":"8985:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8952:54:17"},"returnParameters":{"id":4073,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4066,"mutability":"mutable","name":"since","nameLocation":"9043:5:17","nodeType":"VariableDeclaration","scope":4106,"src":"9036:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4065,"name":"uint48","nodeType":"ElementaryTypeName","src":"9036:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":4068,"mutability":"mutable","name":"currentDelay","nameLocation":"9057:12:17","nodeType":"VariableDeclaration","scope":4106,"src":"9050:19:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4067,"name":"uint32","nodeType":"ElementaryTypeName","src":"9050:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":4070,"mutability":"mutable","name":"pendingDelay","nameLocation":"9078:12:17","nodeType":"VariableDeclaration","scope":4106,"src":"9071:19:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4069,"name":"uint32","nodeType":"ElementaryTypeName","src":"9071:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":4072,"mutability":"mutable","name":"effect","nameLocation":"9099:6:17","nodeType":"VariableDeclaration","scope":4106,"src":"9092:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4071,"name":"uint48","nodeType":"ElementaryTypeName","src":"9092:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"9035:71:17"},"scope":5649,"src":"8934:408:17","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5953],"body":{"id":4149,"nodeType":"Block","src":"9521:280:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":4120,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4118,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4109,"src":"9535:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4119,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3828,"src":"9545:11:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"9535:21:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":4147,"nodeType":"Block","src":"9605:190:17","statements":[{"assignments":[4127,4129,null,null],"declarations":[{"constant":false,"id":4127,"mutability":"mutable","name":"hasRoleSince","nameLocation":"9627:12:17","nodeType":"VariableDeclaration","scope":4147,"src":"9620:19:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4126,"name":"uint48","nodeType":"ElementaryTypeName","src":"9620:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":4129,"mutability":"mutable","name":"currentDelay","nameLocation":"9648:12:17","nodeType":"VariableDeclaration","scope":4147,"src":"9641:19:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4128,"name":"uint32","nodeType":"ElementaryTypeName","src":"9641:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},null,null],"id":4134,"initialValue":{"arguments":[{"id":4131,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4109,"src":"9678:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":4132,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4111,"src":"9686:7:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":4130,"name":"getAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4106,"src":"9668:9:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_uint48_$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"function (uint64,address) view returns (uint48,uint32,uint32,uint48)"}},"id":4133,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9668:26:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint48_$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint48,uint32,uint32,uint48)"}},"nodeType":"VariableDeclarationStatement","src":"9619:75:17"},{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":4137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4135,"name":"hasRoleSince","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4127,"src":"9716:12:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":4136,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9732:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9716:17:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":4142,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4138,"name":"hasRoleSince","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4127,"src":"9737:12:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4139,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18097,"src":"9753:4:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$18097_$","typeString":"type(library Time)"}},"id":4140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9758:9:17","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":17845,"src":"9753:14:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":4141,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9753:16:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"9737:32:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9716:53:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":4144,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4129,"src":"9771:12:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":4145,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9715:69:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":4117,"id":4146,"nodeType":"Return","src":"9708:76:17"}]},"id":4148,"nodeType":"IfStatement","src":"9531:264:17","trueBody":{"id":4125,"nodeType":"Block","src":"9558:41:17","statements":[{"expression":{"components":[{"hexValue":"74727565","id":4121,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9580:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"hexValue":"30","id":4122,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9586:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":4123,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"9579:9:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":4117,"id":4124,"nodeType":"Return","src":"9572:16:17"}]}}]},"documentation":{"id":4107,"nodeType":"StructuredDocumentation","src":"9348:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"d1f856ee","id":4150,"implemented":true,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"9392:7:17","nodeType":"FunctionDefinition","parameters":{"id":4112,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4109,"mutability":"mutable","name":"roleId","nameLocation":"9416:6:17","nodeType":"VariableDeclaration","scope":4150,"src":"9409:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4108,"name":"uint64","nodeType":"ElementaryTypeName","src":"9409:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":4111,"mutability":"mutable","name":"account","nameLocation":"9440:7:17","nodeType":"VariableDeclaration","scope":4150,"src":"9432:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4110,"name":"address","nodeType":"ElementaryTypeName","src":"9432:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9399:54:17"},"returnParameters":{"id":4117,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4114,"mutability":"mutable","name":"isMember","nameLocation":"9488:8:17","nodeType":"VariableDeclaration","scope":4150,"src":"9483:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4113,"name":"bool","nodeType":"ElementaryTypeName","src":"9483:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4116,"mutability":"mutable","name":"executionDelay","nameLocation":"9505:14:17","nodeType":"VariableDeclaration","scope":4150,"src":"9498:21:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4115,"name":"uint32","nodeType":"ElementaryTypeName","src":"9498:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"9482:38:17"},"scope":5649,"src":"9383:418:17","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5961],"body":{"id":4178,"nodeType":"Block","src":"10048:169:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4166,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":4162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4160,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4153,"src":"10062:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4161,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3820,"src":"10072:10:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"10062:20:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":4165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4163,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4153,"src":"10086:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4164,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3828,"src":"10096:11:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"10086:21:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10062:45:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4172,"nodeType":"IfStatement","src":"10058:114:17","trueBody":{"id":4171,"nodeType":"Block","src":"10109:63:17","statements":[{"errorCall":{"arguments":[{"id":4168,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4153,"src":"10154:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":4167,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5815,"src":"10130:23:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":4169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10130:31:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4170,"nodeType":"RevertStatement","src":"10123:38:17"}]}},{"eventCall":{"arguments":[{"id":4174,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4153,"src":"10196:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":4175,"name":"label","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4155,"src":"10204:5:17","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":4173,"name":"RoleLabel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5727,"src":"10186:9:17","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_string_memory_ptr_$returns$__$","typeString":"function (uint64,string memory)"}},"id":4176,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10186:24:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4177,"nodeType":"EmitStatement","src":"10181:29:17"}]},"documentation":{"id":4151,"nodeType":"StructuredDocumentation","src":"9926:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"853551b8","id":4179,"implemented":true,"kind":"function","modifiers":[{"id":4158,"kind":"modifierInvocation","modifierName":{"id":4157,"name":"onlyAuthorized","nameLocations":["10033:14:17"],"nodeType":"IdentifierPath","referencedDeclaration":3853,"src":"10033:14:17"},"nodeType":"ModifierInvocation","src":"10033:14:17"}],"name":"labelRole","nameLocation":"9970:9:17","nodeType":"FunctionDefinition","parameters":{"id":4156,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4153,"mutability":"mutable","name":"roleId","nameLocation":"9987:6:17","nodeType":"VariableDeclaration","scope":4179,"src":"9980:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4152,"name":"uint64","nodeType":"ElementaryTypeName","src":"9980:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":4155,"mutability":"mutable","name":"label","nameLocation":"10011:5:17","nodeType":"VariableDeclaration","scope":4179,"src":"9995:21:17","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":4154,"name":"string","nodeType":"ElementaryTypeName","src":"9995:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"9979:38:17"},"returnParameters":{"id":4159,"nodeType":"ParameterList","parameters":[],"src":"10048:0:17"},"scope":5649,"src":"9961:256:17","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[5971],"body":{"id":4200,"nodeType":"Block","src":"10362:87:17","statements":[{"expression":{"arguments":[{"id":4192,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4182,"src":"10383:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":4193,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4184,"src":"10391:7:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":4195,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4182,"src":"10418:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":4194,"name":"getRoleGrantDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4058,"src":"10400:17:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$returns$_t_uint32_$","typeString":"function (uint64) view returns (uint32)"}},"id":4196,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10400:25:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":4197,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4186,"src":"10427:14:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":4191,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4385,"src":"10372:10:17","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_address_$_t_uint32_$_t_uint32_$returns$_t_bool_$","typeString":"function (uint64,address,uint32,uint32) returns (bool)"}},"id":4198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10372:70:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4199,"nodeType":"ExpressionStatement","src":"10372:70:17"}]},"documentation":{"id":4180,"nodeType":"StructuredDocumentation","src":"10223:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"25c471a0","id":4201,"implemented":true,"kind":"function","modifiers":[{"id":4189,"kind":"modifierInvocation","modifierName":{"id":4188,"name":"onlyAuthorized","nameLocations":["10347:14:17"],"nodeType":"IdentifierPath","referencedDeclaration":3853,"src":"10347:14:17"},"nodeType":"ModifierInvocation","src":"10347:14:17"}],"name":"grantRole","nameLocation":"10267:9:17","nodeType":"FunctionDefinition","parameters":{"id":4187,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4182,"mutability":"mutable","name":"roleId","nameLocation":"10284:6:17","nodeType":"VariableDeclaration","scope":4201,"src":"10277:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4181,"name":"uint64","nodeType":"ElementaryTypeName","src":"10277:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":4184,"mutability":"mutable","name":"account","nameLocation":"10300:7:17","nodeType":"VariableDeclaration","scope":4201,"src":"10292:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4183,"name":"address","nodeType":"ElementaryTypeName","src":"10292:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4186,"mutability":"mutable","name":"executionDelay","nameLocation":"10316:14:17","nodeType":"VariableDeclaration","scope":4201,"src":"10309:21:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4185,"name":"uint32","nodeType":"ElementaryTypeName","src":"10309:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"10276:55:17"},"returnParameters":{"id":4190,"nodeType":"ParameterList","parameters":[],"src":"10362:0:17"},"scope":5649,"src":"10258:191:17","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[5979],"body":{"id":4216,"nodeType":"Block","src":"10572:45:17","statements":[{"expression":{"arguments":[{"id":4212,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4204,"src":"10594:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":4213,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4206,"src":"10602:7:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":4211,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4433,"src":"10582:11:17","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_address_$returns$_t_bool_$","typeString":"function (uint64,address) returns (bool)"}},"id":4214,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10582:28:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4215,"nodeType":"ExpressionStatement","src":"10582:28:17"}]},"documentation":{"id":4202,"nodeType":"StructuredDocumentation","src":"10455:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"b7d2b162","id":4217,"implemented":true,"kind":"function","modifiers":[{"id":4209,"kind":"modifierInvocation","modifierName":{"id":4208,"name":"onlyAuthorized","nameLocations":["10557:14:17"],"nodeType":"IdentifierPath","referencedDeclaration":3853,"src":"10557:14:17"},"nodeType":"ModifierInvocation","src":"10557:14:17"}],"name":"revokeRole","nameLocation":"10499:10:17","nodeType":"FunctionDefinition","parameters":{"id":4207,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4204,"mutability":"mutable","name":"roleId","nameLocation":"10517:6:17","nodeType":"VariableDeclaration","scope":4217,"src":"10510:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4203,"name":"uint64","nodeType":"ElementaryTypeName","src":"10510:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":4206,"mutability":"mutable","name":"account","nameLocation":"10533:7:17","nodeType":"VariableDeclaration","scope":4217,"src":"10525:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4205,"name":"address","nodeType":"ElementaryTypeName","src":"10525:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10509:32:17"},"returnParameters":{"id":4210,"nodeType":"ParameterList","parameters":[],"src":"10572:0:17"},"scope":5649,"src":"10490:127:17","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[5987],"body":{"id":4239,"nodeType":"Block","src":"10738:167:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":4228,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4225,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4222,"src":"10752:18:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":4226,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10709,"src":"10774:10:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":4227,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10774:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10752:34:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4233,"nodeType":"IfStatement","src":"10748:102:17","trueBody":{"id":4232,"nodeType":"Block","src":"10788:62:17","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":4229,"name":"AccessManagerBadConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5817,"src":"10809:28:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":4230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10809:30:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4231,"nodeType":"RevertStatement","src":"10802:37:17"}]}},{"expression":{"arguments":[{"id":4235,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4220,"src":"10871:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":4236,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4222,"src":"10879:18:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":4234,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4433,"src":"10859:11:17","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_address_$returns$_t_bool_$","typeString":"function (uint64,address) returns (bool)"}},"id":4237,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10859:39:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4238,"nodeType":"ExpressionStatement","src":"10859:39:17"}]},"documentation":{"id":4218,"nodeType":"StructuredDocumentation","src":"10623:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"fe0776f5","id":4240,"implemented":true,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"10667:12:17","nodeType":"FunctionDefinition","parameters":{"id":4223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4220,"mutability":"mutable","name":"roleId","nameLocation":"10687:6:17","nodeType":"VariableDeclaration","scope":4240,"src":"10680:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4219,"name":"uint64","nodeType":"ElementaryTypeName","src":"10680:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":4222,"mutability":"mutable","name":"callerConfirmation","nameLocation":"10703:18:17","nodeType":"VariableDeclaration","scope":4240,"src":"10695:26:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4221,"name":"address","nodeType":"ElementaryTypeName","src":"10695:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10679:43:17"},"returnParameters":{"id":4224,"nodeType":"ParameterList","parameters":[],"src":"10738:0:17"},"scope":5649,"src":"10658:247:17","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[5995],"body":{"id":4255,"nodeType":"Block","src":"11027:45:17","statements":[{"expression":{"arguments":[{"id":4251,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4243,"src":"11051:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":4252,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4245,"src":"11059:5:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":4250,"name":"_setRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4467,"src":"11037:13:17","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64)"}},"id":4253,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11037:28:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4254,"nodeType":"ExpressionStatement","src":"11037:28:17"}]},"documentation":{"id":4241,"nodeType":"StructuredDocumentation","src":"10911:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"30cae187","id":4256,"implemented":true,"kind":"function","modifiers":[{"id":4248,"kind":"modifierInvocation","modifierName":{"id":4247,"name":"onlyAuthorized","nameLocations":["11012:14:17"],"nodeType":"IdentifierPath","referencedDeclaration":3853,"src":"11012:14:17"},"nodeType":"ModifierInvocation","src":"11012:14:17"}],"name":"setRoleAdmin","nameLocation":"10955:12:17","nodeType":"FunctionDefinition","parameters":{"id":4246,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4243,"mutability":"mutable","name":"roleId","nameLocation":"10975:6:17","nodeType":"VariableDeclaration","scope":4256,"src":"10968:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4242,"name":"uint64","nodeType":"ElementaryTypeName","src":"10968:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":4245,"mutability":"mutable","name":"admin","nameLocation":"10990:5:17","nodeType":"VariableDeclaration","scope":4256,"src":"10983:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4244,"name":"uint64","nodeType":"ElementaryTypeName","src":"10983:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"10967:29:17"},"returnParameters":{"id":4249,"nodeType":"ParameterList","parameters":[],"src":"11027:0:17"},"scope":5649,"src":"10946:126:17","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[6003],"body":{"id":4271,"nodeType":"Block","src":"11200:51:17","statements":[{"expression":{"arguments":[{"id":4267,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4259,"src":"11227:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":4268,"name":"guardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4261,"src":"11235:8:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":4266,"name":"_setRoleGuardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4501,"src":"11210:16:17","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64)"}},"id":4269,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11210:34:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4270,"nodeType":"ExpressionStatement","src":"11210:34:17"}]},"documentation":{"id":4257,"nodeType":"StructuredDocumentation","src":"11078:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"52962952","id":4272,"implemented":true,"kind":"function","modifiers":[{"id":4264,"kind":"modifierInvocation","modifierName":{"id":4263,"name":"onlyAuthorized","nameLocations":["11185:14:17"],"nodeType":"IdentifierPath","referencedDeclaration":3853,"src":"11185:14:17"},"nodeType":"ModifierInvocation","src":"11185:14:17"}],"name":"setRoleGuardian","nameLocation":"11122:15:17","nodeType":"FunctionDefinition","parameters":{"id":4262,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4259,"mutability":"mutable","name":"roleId","nameLocation":"11145:6:17","nodeType":"VariableDeclaration","scope":4272,"src":"11138:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4258,"name":"uint64","nodeType":"ElementaryTypeName","src":"11138:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":4261,"mutability":"mutable","name":"guardian","nameLocation":"11160:8:17","nodeType":"VariableDeclaration","scope":4272,"src":"11153:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4260,"name":"uint64","nodeType":"ElementaryTypeName","src":"11153:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"11137:32:17"},"returnParameters":{"id":4265,"nodeType":"ParameterList","parameters":[],"src":"11200:0:17"},"scope":5649,"src":"11113:138:17","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[6011],"body":{"id":4287,"nodeType":"Block","src":"11377:49:17","statements":[{"expression":{"arguments":[{"id":4283,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4275,"src":"11402:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":4284,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4277,"src":"11410:8:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":4282,"name":"_setGrantDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4545,"src":"11387:14:17","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_uint32_$returns$__$","typeString":"function (uint64,uint32)"}},"id":4285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11387:32:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4286,"nodeType":"ExpressionStatement","src":"11387:32:17"}]},"documentation":{"id":4273,"nodeType":"StructuredDocumentation","src":"11257:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"a64d95ce","id":4288,"implemented":true,"kind":"function","modifiers":[{"id":4280,"kind":"modifierInvocation","modifierName":{"id":4279,"name":"onlyAuthorized","nameLocations":["11362:14:17"],"nodeType":"IdentifierPath","referencedDeclaration":3853,"src":"11362:14:17"},"nodeType":"ModifierInvocation","src":"11362:14:17"}],"name":"setGrantDelay","nameLocation":"11301:13:17","nodeType":"FunctionDefinition","parameters":{"id":4278,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4275,"mutability":"mutable","name":"roleId","nameLocation":"11322:6:17","nodeType":"VariableDeclaration","scope":4288,"src":"11315:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4274,"name":"uint64","nodeType":"ElementaryTypeName","src":"11315:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":4277,"mutability":"mutable","name":"newDelay","nameLocation":"11337:8:17","nodeType":"VariableDeclaration","scope":4288,"src":"11330:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4276,"name":"uint32","nodeType":"ElementaryTypeName","src":"11330:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"11314:32:17"},"returnParameters":{"id":4281,"nodeType":"ParameterList","parameters":[],"src":"11377:0:17"},"scope":5649,"src":"11292:134:17","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":4384,"nodeType":"Block","src":"11767:897:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":4304,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4302,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4291,"src":"11781:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4303,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3828,"src":"11791:11:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"11781:21:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4310,"nodeType":"IfStatement","src":"11777:90:17","trueBody":{"id":4309,"nodeType":"Block","src":"11804:63:17","statements":[{"errorCall":{"arguments":[{"id":4306,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4291,"src":"11849:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":4305,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5815,"src":"11825:23:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":4307,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11825:31:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4308,"nodeType":"RevertStatement","src":"11818:38:17"}]}},{"assignments":[4312],"declarations":[{"constant":false,"id":4312,"mutability":"mutable","name":"newMember","nameLocation":"11882:9:17","nodeType":"VariableDeclaration","scope":4384,"src":"11877:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4311,"name":"bool","nodeType":"ElementaryTypeName","src":"11877:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":4322,"initialValue":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":4321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":4313,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3838,"src":"11894:6:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$3807_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":4315,"indexExpression":{"id":4314,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4291,"src":"11901:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11894:14:17","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$3807_storage","typeString":"struct AccessManager.Role storage ref"}},"id":4316,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11909:7:17","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":3799,"src":"11894:22:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$3794_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":4318,"indexExpression":{"id":4317,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4293,"src":"11917:7:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11894:31:17","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$3794_storage","typeString":"struct AccessManager.Access storage ref"}},"id":4319,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11926:5:17","memberName":"since","nodeType":"MemberAccess","referencedDeclaration":3790,"src":"11894:37:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11935:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11894:42:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"11877:59:17"},{"assignments":[4324],"declarations":[{"constant":false,"id":4324,"mutability":"mutable","name":"since","nameLocation":"11953:5:17","nodeType":"VariableDeclaration","scope":4384,"src":"11946:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4323,"name":"uint48","nodeType":"ElementaryTypeName","src":"11946:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":4325,"nodeType":"VariableDeclarationStatement","src":"11946:12:17"},{"condition":{"id":4326,"name":"newMember","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4312,"src":"11973:9:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":4372,"nodeType":"Block","src":"12155:399:17","statements":[{"expression":{"id":4370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":4350,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3838,"src":"12382:6:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$3807_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":4352,"indexExpression":{"id":4351,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4291,"src":"12389:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12382:14:17","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$3807_storage","typeString":"struct AccessManager.Role storage ref"}},"id":4353,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12397:7:17","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":3799,"src":"12382:22:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$3794_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":4355,"indexExpression":{"id":4354,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4293,"src":"12405:7:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12382:31:17","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$3794_storage","typeString":"struct AccessManager.Access storage ref"}},"id":4356,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12414:5:17","memberName":"delay","nodeType":"MemberAccess","referencedDeclaration":3793,"src":"12382:37:17","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},{"id":4357,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4324,"src":"12421:5:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":4358,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"12381:46:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$17860_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4367,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4297,"src":"12496:14:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":4368,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12528:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"expression":{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":4359,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3838,"src":"12430:6:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$3807_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":4361,"indexExpression":{"id":4360,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4291,"src":"12437:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12430:14:17","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$3807_storage","typeString":"struct AccessManager.Role storage ref"}},"id":4362,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12445:7:17","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":3799,"src":"12430:22:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$3794_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":4364,"indexExpression":{"id":4363,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4293,"src":"12453:7:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12430:31:17","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$3794_storage","typeString":"struct AccessManager.Access storage ref"}},"id":4365,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12462:5:17","memberName":"delay","nodeType":"MemberAccess","referencedDeclaration":3793,"src":"12430:37:17","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"id":4366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12468:10:17","memberName":"withUpdate","nodeType":"MemberAccess","referencedDeclaration":18007,"src":"12430:48:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$17860_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_Delay_$17860_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$17860_$","typeString":"function (Time.Delay,uint32,uint32) view returns (Time.Delay,uint48)"}},"id":4369,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12430:113:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$17860_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"src":"12381:162:17","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4371,"nodeType":"ExpressionStatement","src":"12381:162:17"}]},"id":4373,"nodeType":"IfStatement","src":"11969:585:17","trueBody":{"id":4349,"nodeType":"Block","src":"11984:165:17","statements":[{"expression":{"id":4333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4327,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4324,"src":"11998:5:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":4332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4328,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18097,"src":"12006:4:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$18097_$","typeString":"type(library Time)"}},"id":4329,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12011:9:17","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":17845,"src":"12006:14:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":4330,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12006:16:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":4331,"name":"grantDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4295,"src":"12025:10:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"12006:29:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"11998:37:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":4334,"nodeType":"ExpressionStatement","src":"11998:37:17"},{"expression":{"id":4347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":4335,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3838,"src":"12049:6:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$3807_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":4337,"indexExpression":{"id":4336,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4291,"src":"12056:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12049:14:17","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$3807_storage","typeString":"struct AccessManager.Role storage ref"}},"id":4338,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12064:7:17","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":3799,"src":"12049:22:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$3794_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":4340,"indexExpression":{"id":4339,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4293,"src":"12072:7:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"12049:31:17","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$3794_storage","typeString":"struct AccessManager.Access storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4342,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4324,"src":"12098:5:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4343,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4297,"src":"12112:14:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":4344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12127:7:17","memberName":"toDelay","nodeType":"MemberAccess","referencedDeclaration":17875,"src":"12112:22:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$returns$_t_userDefinedValueType$_Delay_$17860_$attached_to$_t_uint32_$","typeString":"function (uint32) pure returns (Time.Delay)"}},"id":4345,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12112:24:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}],"id":4341,"name":"Access","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3794,"src":"12083:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Access_$3794_storage_ptr_$","typeString":"type(struct AccessManager.Access storage pointer)"}},"id":4346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["12091:5:17","12105:5:17"],"names":["since","delay"],"nodeType":"FunctionCall","src":"12083:55:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Access_$3794_memory_ptr","typeString":"struct AccessManager.Access memory"}},"src":"12049:89:17","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$3794_storage","typeString":"struct AccessManager.Access storage ref"}},"id":4348,"nodeType":"ExpressionStatement","src":"12049:89:17"}]}},{"eventCall":{"arguments":[{"id":4375,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4291,"src":"12581:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":4376,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4293,"src":"12589:7:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4377,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4297,"src":"12598:14:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":4378,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4324,"src":"12614:5:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":4379,"name":"newMember","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4312,"src":"12621:9:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":4374,"name":"RoleGranted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5740,"src":"12569:11:17","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_address_$_t_uint32_$_t_uint48_$_t_bool_$returns$__$","typeString":"function (uint64,address,uint32,uint48,bool)"}},"id":4380,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12569:62:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4381,"nodeType":"EmitStatement","src":"12564:67:17"},{"expression":{"id":4382,"name":"newMember","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4312,"src":"12648:9:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":4301,"id":4383,"nodeType":"Return","src":"12641:16:17"}]},"documentation":{"id":4289,"nodeType":"StructuredDocumentation","src":"11432:166:17","text":" @dev Internal version of {grantRole} without access control. Returns true if the role was newly granted.\n Emits a {RoleGranted} event."},"id":4385,"implemented":true,"kind":"function","modifiers":[],"name":"_grantRole","nameLocation":"11612:10:17","nodeType":"FunctionDefinition","parameters":{"id":4298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4291,"mutability":"mutable","name":"roleId","nameLocation":"11639:6:17","nodeType":"VariableDeclaration","scope":4385,"src":"11632:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4290,"name":"uint64","nodeType":"ElementaryTypeName","src":"11632:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":4293,"mutability":"mutable","name":"account","nameLocation":"11663:7:17","nodeType":"VariableDeclaration","scope":4385,"src":"11655:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4292,"name":"address","nodeType":"ElementaryTypeName","src":"11655:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4295,"mutability":"mutable","name":"grantDelay","nameLocation":"11687:10:17","nodeType":"VariableDeclaration","scope":4385,"src":"11680:17:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4294,"name":"uint32","nodeType":"ElementaryTypeName","src":"11680:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":4297,"mutability":"mutable","name":"executionDelay","nameLocation":"11714:14:17","nodeType":"VariableDeclaration","scope":4385,"src":"11707:21:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4296,"name":"uint32","nodeType":"ElementaryTypeName","src":"11707:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"11622:112:17"},"returnParameters":{"id":4301,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4300,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4385,"src":"11761:4:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4299,"name":"bool","nodeType":"ElementaryTypeName","src":"11761:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"11760:6:17"},"scope":5649,"src":"11603:1061:17","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":4432,"nodeType":"Block","src":"13010:315:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":4397,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4395,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4388,"src":"13024:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4396,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3828,"src":"13034:11:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13024:21:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4403,"nodeType":"IfStatement","src":"13020:90:17","trueBody":{"id":4402,"nodeType":"Block","src":"13047:63:17","statements":[{"errorCall":{"arguments":[{"id":4399,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4388,"src":"13092:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":4398,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5815,"src":"13068:23:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":4400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13068:31:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4401,"nodeType":"RevertStatement","src":"13061:38:17"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":4412,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":4404,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3838,"src":"13124:6:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$3807_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":4406,"indexExpression":{"id":4405,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4388,"src":"13131:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13124:14:17","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$3807_storage","typeString":"struct AccessManager.Role storage ref"}},"id":4407,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13139:7:17","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":3799,"src":"13124:22:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$3794_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":4409,"indexExpression":{"id":4408,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4390,"src":"13147:7:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13124:31:17","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$3794_storage","typeString":"struct AccessManager.Access storage ref"}},"id":4410,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13156:5:17","memberName":"since","nodeType":"MemberAccess","referencedDeclaration":3790,"src":"13124:37:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4411,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13165:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13124:42:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4416,"nodeType":"IfStatement","src":"13120:85:17","trueBody":{"id":4415,"nodeType":"Block","src":"13168:37:17","statements":[{"expression":{"hexValue":"66616c7365","id":4413,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13189:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":4394,"id":4414,"nodeType":"Return","src":"13182:12:17"}]}},{"expression":{"id":4423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"13215:38:17","subExpression":{"baseExpression":{"expression":{"baseExpression":{"id":4417,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3838,"src":"13222:6:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$3807_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":4419,"indexExpression":{"id":4418,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4388,"src":"13229:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13222:14:17","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$3807_storage","typeString":"struct AccessManager.Role storage ref"}},"id":4420,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13237:7:17","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":3799,"src":"13222:22:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$3794_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":4422,"indexExpression":{"id":4421,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4390,"src":"13245:7:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"13222:31:17","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$3794_storage","typeString":"struct AccessManager.Access storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4424,"nodeType":"ExpressionStatement","src":"13215:38:17"},{"eventCall":{"arguments":[{"id":4426,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4388,"src":"13281:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":4427,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4390,"src":"13289:7:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":4425,"name":"RoleRevoked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5747,"src":"13269:11:17","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_address_$returns$__$","typeString":"function (uint64,address)"}},"id":4428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13269:28:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4429,"nodeType":"EmitStatement","src":"13264:33:17"},{"expression":{"hexValue":"74727565","id":4430,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13314:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":4394,"id":4431,"nodeType":"Return","src":"13307:11:17"}]},"documentation":{"id":4386,"nodeType":"StructuredDocumentation","src":"12670:250:17","text":" @dev Internal version of {revokeRole} without access control. This logic is also used by {renounceRole}.\n Returns true if the role was previously granted.\n Emits a {RoleRevoked} event if the account had the role."},"id":4433,"implemented":true,"kind":"function","modifiers":[],"name":"_revokeRole","nameLocation":"12934:11:17","nodeType":"FunctionDefinition","parameters":{"id":4391,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4388,"mutability":"mutable","name":"roleId","nameLocation":"12953:6:17","nodeType":"VariableDeclaration","scope":4433,"src":"12946:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4387,"name":"uint64","nodeType":"ElementaryTypeName","src":"12946:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":4390,"mutability":"mutable","name":"account","nameLocation":"12969:7:17","nodeType":"VariableDeclaration","scope":4433,"src":"12961:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4389,"name":"address","nodeType":"ElementaryTypeName","src":"12961:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"12945:32:17"},"returnParameters":{"id":4394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4393,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4433,"src":"13004:4:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4392,"name":"bool","nodeType":"ElementaryTypeName","src":"13004:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"13003:6:17"},"scope":5649,"src":"12925:400:17","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":4466,"nodeType":"Block","src":"13689:216:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":4443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4441,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4436,"src":"13703:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4442,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3820,"src":"13713:10:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13703:20:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":4446,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4444,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4436,"src":"13727:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4445,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3828,"src":"13737:11:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13727:21:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"13703:45:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4453,"nodeType":"IfStatement","src":"13699:114:17","trueBody":{"id":4452,"nodeType":"Block","src":"13750:63:17","statements":[{"errorCall":{"arguments":[{"id":4449,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4436,"src":"13795:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":4448,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5815,"src":"13771:23:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":4450,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13771:31:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4451,"nodeType":"RevertStatement","src":"13764:38:17"}]}},{"expression":{"id":4459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":4454,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3838,"src":"13823:6:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$3807_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":4456,"indexExpression":{"id":4455,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4436,"src":"13830:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13823:14:17","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$3807_storage","typeString":"struct AccessManager.Role storage ref"}},"id":4457,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13838:5:17","memberName":"admin","nodeType":"MemberAccess","referencedDeclaration":3801,"src":"13823:20:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4458,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4438,"src":"13846:5:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13823:28:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":4460,"nodeType":"ExpressionStatement","src":"13823:28:17"},{"eventCall":{"arguments":[{"id":4462,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4436,"src":"13884:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":4463,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4438,"src":"13892:5:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":4461,"name":"RoleAdminChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5754,"src":"13867:16:17","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64)"}},"id":4464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13867:31:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4465,"nodeType":"EmitStatement","src":"13862:36:17"}]},"documentation":{"id":4434,"nodeType":"StructuredDocumentation","src":"13331:284:17","text":" @dev Internal version of {setRoleAdmin} without access control.\n Emits a {RoleAdminChanged} event.\n NOTE: Setting the admin role as the `PUBLIC_ROLE` is allowed, but it will effectively allow\n anyone to set grant or revoke such role."},"id":4467,"implemented":true,"kind":"function","modifiers":[],"name":"_setRoleAdmin","nameLocation":"13629:13:17","nodeType":"FunctionDefinition","parameters":{"id":4439,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4436,"mutability":"mutable","name":"roleId","nameLocation":"13650:6:17","nodeType":"VariableDeclaration","scope":4467,"src":"13643:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4435,"name":"uint64","nodeType":"ElementaryTypeName","src":"13643:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":4438,"mutability":"mutable","name":"admin","nameLocation":"13665:5:17","nodeType":"VariableDeclaration","scope":4467,"src":"13658:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4437,"name":"uint64","nodeType":"ElementaryTypeName","src":"13658:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"13642:29:17"},"returnParameters":{"id":4440,"nodeType":"ParameterList","parameters":[],"src":"13689:0:17"},"scope":5649,"src":"13620:285:17","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":4500,"nodeType":"Block","src":"14299:228:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":4477,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4475,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4470,"src":"14313:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4476,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3820,"src":"14323:10:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14313:20:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":4480,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4478,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4470,"src":"14337:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4479,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3828,"src":"14347:11:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14337:21:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"14313:45:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4487,"nodeType":"IfStatement","src":"14309:114:17","trueBody":{"id":4486,"nodeType":"Block","src":"14360:63:17","statements":[{"errorCall":{"arguments":[{"id":4483,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4470,"src":"14405:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":4482,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5815,"src":"14381:23:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":4484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14381:31:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4485,"nodeType":"RevertStatement","src":"14374:38:17"}]}},{"expression":{"id":4493,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":4488,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3838,"src":"14433:6:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$3807_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":4490,"indexExpression":{"id":4489,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4470,"src":"14440:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14433:14:17","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$3807_storage","typeString":"struct AccessManager.Role storage ref"}},"id":4491,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14448:8:17","memberName":"guardian","nodeType":"MemberAccess","referencedDeclaration":3803,"src":"14433:23:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4492,"name":"guardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4472,"src":"14459:8:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14433:34:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":4494,"nodeType":"ExpressionStatement","src":"14433:34:17"},{"eventCall":{"arguments":[{"id":4496,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4470,"src":"14503:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":4497,"name":"guardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4472,"src":"14511:8:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":4495,"name":"RoleGuardianChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5761,"src":"14483:19:17","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64)"}},"id":4498,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14483:37:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4499,"nodeType":"EmitStatement","src":"14478:42:17"}]},"documentation":{"id":4468,"nodeType":"StructuredDocumentation","src":"13911:308:17","text":" @dev Internal version of {setRoleGuardian} without access control.\n Emits a {RoleGuardianChanged} event.\n NOTE: Setting the guardian role as the `PUBLIC_ROLE` is allowed, but it will effectively allow\n anyone to cancel any scheduled operation for such role."},"id":4501,"implemented":true,"kind":"function","modifiers":[],"name":"_setRoleGuardian","nameLocation":"14233:16:17","nodeType":"FunctionDefinition","parameters":{"id":4473,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4470,"mutability":"mutable","name":"roleId","nameLocation":"14257:6:17","nodeType":"VariableDeclaration","scope":4501,"src":"14250:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4469,"name":"uint64","nodeType":"ElementaryTypeName","src":"14250:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":4472,"mutability":"mutable","name":"guardian","nameLocation":"14272:8:17","nodeType":"VariableDeclaration","scope":4501,"src":"14265:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4471,"name":"uint64","nodeType":"ElementaryTypeName","src":"14265:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"14249:32:17"},"returnParameters":{"id":4474,"nodeType":"ParameterList","parameters":[],"src":"14299:0:17"},"scope":5649,"src":"14224:303:17","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":4544,"nodeType":"Block","src":"14747:301:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":4511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4509,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4504,"src":"14761:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4510,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3828,"src":"14771:11:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14761:21:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4517,"nodeType":"IfStatement","src":"14757:90:17","trueBody":{"id":4516,"nodeType":"Block","src":"14784:63:17","statements":[{"errorCall":{"arguments":[{"id":4513,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4504,"src":"14829:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":4512,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5815,"src":"14805:23:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":4514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14805:31:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4515,"nodeType":"RevertStatement","src":"14798:38:17"}]}},{"assignments":[4519],"declarations":[{"constant":false,"id":4519,"mutability":"mutable","name":"effect","nameLocation":"14864:6:17","nodeType":"VariableDeclaration","scope":4544,"src":"14857:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4518,"name":"uint48","nodeType":"ElementaryTypeName","src":"14857:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":4520,"nodeType":"VariableDeclarationStatement","src":"14857:13:17"},{"expression":{"id":4536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"baseExpression":{"id":4521,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3838,"src":"14881:6:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$3807_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":4523,"indexExpression":{"id":4522,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4504,"src":"14888:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14881:14:17","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$3807_storage","typeString":"struct AccessManager.Role storage ref"}},"id":4524,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14896:10:17","memberName":"grantDelay","nodeType":"MemberAccess","referencedDeclaration":3806,"src":"14881:25:17","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},{"id":4525,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4519,"src":"14908:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":4526,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"14880:35:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$17860_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4532,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4506,"src":"14955:8:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":4533,"name":"minSetback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3966,"src":"14965:10:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint32_$","typeString":"function () view returns (uint32)"}},"id":4534,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14965:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"expression":{"baseExpression":{"id":4527,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3838,"src":"14918:6:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$3807_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":4529,"indexExpression":{"id":4528,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4504,"src":"14925:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14918:14:17","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$3807_storage","typeString":"struct AccessManager.Role storage ref"}},"id":4530,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14933:10:17","memberName":"grantDelay","nodeType":"MemberAccess","referencedDeclaration":3806,"src":"14918:25:17","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"id":4531,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14944:10:17","memberName":"withUpdate","nodeType":"MemberAccess","referencedDeclaration":18007,"src":"14918:36:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$17860_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_Delay_$17860_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$17860_$","typeString":"function (Time.Delay,uint32,uint32) view returns (Time.Delay,uint48)"}},"id":4535,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14918:60:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$17860_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"src":"14880:98:17","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4537,"nodeType":"ExpressionStatement","src":"14880:98:17"},{"eventCall":{"arguments":[{"id":4539,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4504,"src":"15016:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":4540,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4506,"src":"15024:8:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":4541,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4519,"src":"15034:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":4538,"name":"RoleGrantDelayChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5770,"src":"14994:21:17","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_uint32_$_t_uint48_$returns$__$","typeString":"function (uint64,uint32,uint48)"}},"id":4542,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14994:47:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4543,"nodeType":"EmitStatement","src":"14989:52:17"}]},"documentation":{"id":4502,"nodeType":"StructuredDocumentation","src":"14533:136:17","text":" @dev Internal version of {setGrantDelay} without access control.\n Emits a {RoleGrantDelayChanged} event."},"id":4545,"implemented":true,"kind":"function","modifiers":[],"name":"_setGrantDelay","nameLocation":"14683:14:17","nodeType":"FunctionDefinition","parameters":{"id":4507,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4504,"mutability":"mutable","name":"roleId","nameLocation":"14705:6:17","nodeType":"VariableDeclaration","scope":4545,"src":"14698:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4503,"name":"uint64","nodeType":"ElementaryTypeName","src":"14698:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":4506,"mutability":"mutable","name":"newDelay","nameLocation":"14720:8:17","nodeType":"VariableDeclaration","scope":4545,"src":"14713:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4505,"name":"uint32","nodeType":"ElementaryTypeName","src":"14713:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"14697:32:17"},"returnParameters":{"id":4508,"nodeType":"ParameterList","parameters":[],"src":"14747:0:17"},"scope":5649,"src":"14674:374:17","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[6022],"body":{"id":4579,"nodeType":"Block","src":"15360:140:17","statements":[{"body":{"id":4577,"nodeType":"Block","src":"15417:77:17","statements":[{"expression":{"arguments":[{"id":4570,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4548,"src":"15454:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":4571,"name":"selectors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4551,"src":"15462:9:17","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_calldata_ptr","typeString":"bytes4[] calldata"}},"id":4573,"indexExpression":{"id":4572,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4559,"src":"15472:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15462:12:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"id":4574,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4553,"src":"15476:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":4569,"name":"_setTargetFunctionRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4606,"src":"15431:22:17","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes4_$_t_uint64_$returns$__$","typeString":"function (address,bytes4,uint64)"}},"id":4575,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15431:52:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4576,"nodeType":"ExpressionStatement","src":"15431:52:17"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4565,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4562,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4559,"src":"15390:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":4563,"name":"selectors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4551,"src":"15394:9:17","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_calldata_ptr","typeString":"bytes4[] calldata"}},"id":4564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15404:6:17","memberName":"length","nodeType":"MemberAccess","src":"15394:16:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15390:20:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4578,"initializationExpression":{"assignments":[4559],"declarations":[{"constant":false,"id":4559,"mutability":"mutable","name":"i","nameLocation":"15383:1:17","nodeType":"VariableDeclaration","scope":4578,"src":"15375:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4558,"name":"uint256","nodeType":"ElementaryTypeName","src":"15375:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4561,"initialValue":{"hexValue":"30","id":4560,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15387:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"15375:13:17"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":4567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"15412:3:17","subExpression":{"id":4566,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4559,"src":"15414:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4568,"nodeType":"ExpressionStatement","src":"15412:3:17"},"nodeType":"ForStatement","src":"15370:124:17"}]},"documentation":{"id":4546,"nodeType":"StructuredDocumentation","src":"15174:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"08d6122d","id":4580,"implemented":true,"kind":"function","modifiers":[{"id":4556,"kind":"modifierInvocation","modifierName":{"id":4555,"name":"onlyAuthorized","nameLocations":["15345:14:17"],"nodeType":"IdentifierPath","referencedDeclaration":3853,"src":"15345:14:17"},"nodeType":"ModifierInvocation","src":"15345:14:17"}],"name":"setTargetFunctionRole","nameLocation":"15218:21:17","nodeType":"FunctionDefinition","parameters":{"id":4554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4548,"mutability":"mutable","name":"target","nameLocation":"15257:6:17","nodeType":"VariableDeclaration","scope":4580,"src":"15249:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4547,"name":"address","nodeType":"ElementaryTypeName","src":"15249:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4551,"mutability":"mutable","name":"selectors","nameLocation":"15291:9:17","nodeType":"VariableDeclaration","scope":4580,"src":"15273:27:17","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_calldata_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":4549,"name":"bytes4","nodeType":"ElementaryTypeName","src":"15273:6:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":4550,"nodeType":"ArrayTypeName","src":"15273:8:17","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"},{"constant":false,"id":4553,"mutability":"mutable","name":"roleId","nameLocation":"15317:6:17","nodeType":"VariableDeclaration","scope":4580,"src":"15310:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4552,"name":"uint64","nodeType":"ElementaryTypeName","src":"15310:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"15239:90:17"},"returnParameters":{"id":4557,"nodeType":"ParameterList","parameters":[],"src":"15360:0:17"},"scope":5649,"src":"15209:291:17","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":4605,"nodeType":"Block","src":"15756:131:17","statements":[{"expression":{"id":4597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":4590,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3833,"src":"15766:8:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$3788_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":4592,"indexExpression":{"id":4591,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4583,"src":"15775:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15766:16:17","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$3788_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":4593,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15783:12:17","memberName":"allowedRoles","nodeType":"MemberAccess","referencedDeclaration":3782,"src":"15766:29:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_uint64_$","typeString":"mapping(bytes4 => uint64)"}},"id":4595,"indexExpression":{"id":4594,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4585,"src":"15796:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"15766:39:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4596,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4587,"src":"15808:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"15766:48:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":4598,"nodeType":"ExpressionStatement","src":"15766:48:17"},{"eventCall":{"arguments":[{"id":4600,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4583,"src":"15855:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4601,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4585,"src":"15863:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"id":4602,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4587,"src":"15873:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":4599,"name":"TargetFunctionRoleUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5786,"src":"15829:25:17","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_bytes4_$_t_uint64_$returns$__$","typeString":"function (address,bytes4,uint64)"}},"id":4603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15829:51:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4604,"nodeType":"EmitStatement","src":"15824:56:17"}]},"documentation":{"id":4581,"nodeType":"StructuredDocumentation","src":"15506:148:17","text":" @dev Internal version of {setTargetFunctionRole} without access control.\n Emits a {TargetFunctionRoleUpdated} event."},"id":4606,"implemented":true,"kind":"function","modifiers":[],"name":"_setTargetFunctionRole","nameLocation":"15668:22:17","nodeType":"FunctionDefinition","parameters":{"id":4588,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4583,"mutability":"mutable","name":"target","nameLocation":"15699:6:17","nodeType":"VariableDeclaration","scope":4606,"src":"15691:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4582,"name":"address","nodeType":"ElementaryTypeName","src":"15691:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4585,"mutability":"mutable","name":"selector","nameLocation":"15714:8:17","nodeType":"VariableDeclaration","scope":4606,"src":"15707:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":4584,"name":"bytes4","nodeType":"ElementaryTypeName","src":"15707:6:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":4587,"mutability":"mutable","name":"roleId","nameLocation":"15731:6:17","nodeType":"VariableDeclaration","scope":4606,"src":"15724:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4586,"name":"uint64","nodeType":"ElementaryTypeName","src":"15724:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"15690:48:17"},"returnParameters":{"id":4589,"nodeType":"ParameterList","parameters":[],"src":"15756:0:17"},"scope":5649,"src":"15659:228:17","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[6030],"body":{"id":4621,"nodeType":"Block","src":"16020:55:17","statements":[{"expression":{"arguments":[{"id":4617,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4609,"src":"16051:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4618,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4611,"src":"16059:8:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":4616,"name":"_setTargetAdminDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4657,"src":"16030:20:17","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint32_$returns$__$","typeString":"function (address,uint32)"}},"id":4619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16030:38:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4620,"nodeType":"ExpressionStatement","src":"16030:38:17"}]},"documentation":{"id":4607,"nodeType":"StructuredDocumentation","src":"15893:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"d22b5989","id":4622,"implemented":true,"kind":"function","modifiers":[{"id":4614,"kind":"modifierInvocation","modifierName":{"id":4613,"name":"onlyAuthorized","nameLocations":["16005:14:17"],"nodeType":"IdentifierPath","referencedDeclaration":3853,"src":"16005:14:17"},"nodeType":"ModifierInvocation","src":"16005:14:17"}],"name":"setTargetAdminDelay","nameLocation":"15937:19:17","nodeType":"FunctionDefinition","parameters":{"id":4612,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4609,"mutability":"mutable","name":"target","nameLocation":"15965:6:17","nodeType":"VariableDeclaration","scope":4622,"src":"15957:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4608,"name":"address","nodeType":"ElementaryTypeName","src":"15957:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4611,"mutability":"mutable","name":"newDelay","nameLocation":"15980:8:17","nodeType":"VariableDeclaration","scope":4622,"src":"15973:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4610,"name":"uint32","nodeType":"ElementaryTypeName","src":"15973:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"15956:33:17"},"returnParameters":{"id":4615,"nodeType":"ParameterList","parameters":[],"src":"16020:0:17"},"scope":5649,"src":"15928:147:17","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":4656,"nodeType":"Block","src":"16310:207:17","statements":[{"assignments":[4631],"declarations":[{"constant":false,"id":4631,"mutability":"mutable","name":"effect","nameLocation":"16327:6:17","nodeType":"VariableDeclaration","scope":4656,"src":"16320:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4630,"name":"uint48","nodeType":"ElementaryTypeName","src":"16320:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":4632,"nodeType":"VariableDeclarationStatement","src":"16320:13:17"},{"expression":{"id":4648,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"baseExpression":{"id":4633,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3833,"src":"16344:8:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$3788_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":4635,"indexExpression":{"id":4634,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4625,"src":"16353:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16344:16:17","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$3788_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":4636,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16361:10:17","memberName":"adminDelay","nodeType":"MemberAccess","referencedDeclaration":3785,"src":"16344:27:17","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},{"id":4637,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4631,"src":"16373:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":4638,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"16343:37:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$17860_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4644,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4627,"src":"16422:8:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":4645,"name":"minSetback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3966,"src":"16432:10:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint32_$","typeString":"function () view returns (uint32)"}},"id":4646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16432:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"expression":{"baseExpression":{"id":4639,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3833,"src":"16383:8:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$3788_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":4641,"indexExpression":{"id":4640,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4625,"src":"16392:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16383:16:17","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$3788_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":4642,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16400:10:17","memberName":"adminDelay","nodeType":"MemberAccess","referencedDeclaration":3785,"src":"16383:27:17","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"id":4643,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16411:10:17","memberName":"withUpdate","nodeType":"MemberAccess","referencedDeclaration":18007,"src":"16383:38:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$17860_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_Delay_$17860_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$17860_$","typeString":"function (Time.Delay,uint32,uint32) view returns (Time.Delay,uint48)"}},"id":4647,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16383:62:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$17860_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"src":"16343:102:17","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4649,"nodeType":"ExpressionStatement","src":"16343:102:17"},{"eventCall":{"arguments":[{"id":4651,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4625,"src":"16485:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4652,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4627,"src":"16493:8:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":4653,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4631,"src":"16503:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":4650,"name":"TargetAdminDelayUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5795,"src":"16461:23:17","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint32_$_t_uint48_$returns$__$","typeString":"function (address,uint32,uint48)"}},"id":4654,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16461:49:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4655,"nodeType":"EmitStatement","src":"16456:54:17"}]},"documentation":{"id":4623,"nodeType":"StructuredDocumentation","src":"16081:144:17","text":" @dev Internal version of {setTargetAdminDelay} without access control.\n Emits a {TargetAdminDelayUpdated} event."},"id":4657,"implemented":true,"kind":"function","modifiers":[],"name":"_setTargetAdminDelay","nameLocation":"16239:20:17","nodeType":"FunctionDefinition","parameters":{"id":4628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4625,"mutability":"mutable","name":"target","nameLocation":"16268:6:17","nodeType":"VariableDeclaration","scope":4657,"src":"16260:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4624,"name":"address","nodeType":"ElementaryTypeName","src":"16260:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4627,"mutability":"mutable","name":"newDelay","nameLocation":"16283:8:17","nodeType":"VariableDeclaration","scope":4657,"src":"16276:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4626,"name":"uint32","nodeType":"ElementaryTypeName","src":"16276:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"16259:33:17"},"returnParameters":{"id":4629,"nodeType":"ParameterList","parameters":[],"src":"16310:0:17"},"scope":5649,"src":"16230:287:17","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[6038],"body":{"id":4672,"nodeType":"Block","src":"16762:49:17","statements":[{"expression":{"arguments":[{"id":4668,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4660,"src":"16789:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4669,"name":"closed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4662,"src":"16797:6:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":4667,"name":"_setTargetClosed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4694,"src":"16772:16:17","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bool_$returns$__$","typeString":"function (address,bool)"}},"id":4670,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16772:32:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4671,"nodeType":"ExpressionStatement","src":"16772:32:17"}]},"documentation":{"id":4658,"nodeType":"StructuredDocumentation","src":"16643:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"167bd395","id":4673,"implemented":true,"kind":"function","modifiers":[{"id":4665,"kind":"modifierInvocation","modifierName":{"id":4664,"name":"onlyAuthorized","nameLocations":["16747:14:17"],"nodeType":"IdentifierPath","referencedDeclaration":3853,"src":"16747:14:17"},"nodeType":"ModifierInvocation","src":"16747:14:17"}],"name":"setTargetClosed","nameLocation":"16687:15:17","nodeType":"FunctionDefinition","parameters":{"id":4663,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4660,"mutability":"mutable","name":"target","nameLocation":"16711:6:17","nodeType":"VariableDeclaration","scope":4673,"src":"16703:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4659,"name":"address","nodeType":"ElementaryTypeName","src":"16703:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4662,"mutability":"mutable","name":"closed","nameLocation":"16724:6:17","nodeType":"VariableDeclaration","scope":4673,"src":"16719:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4661,"name":"bool","nodeType":"ElementaryTypeName","src":"16719:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"16702:29:17"},"returnParameters":{"id":4666,"nodeType":"ParameterList","parameters":[],"src":"16762:0:17"},"scope":5649,"src":"16678:133:17","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":4693,"nodeType":"Block","src":"17053:92:17","statements":[{"expression":{"id":4686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":4681,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3833,"src":"17063:8:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$3788_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":4683,"indexExpression":{"id":4682,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4676,"src":"17072:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17063:16:17","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$3788_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":4684,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"17080:6:17","memberName":"closed","nodeType":"MemberAccess","referencedDeclaration":3787,"src":"17063:23:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4685,"name":"closed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4678,"src":"17089:6:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17063:32:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4687,"nodeType":"ExpressionStatement","src":"17063:32:17"},{"eventCall":{"arguments":[{"id":4689,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4676,"src":"17123:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4690,"name":"closed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4678,"src":"17131:6:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":4688,"name":"TargetClosed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5777,"src":"17110:12:17","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_bool_$returns$__$","typeString":"function (address,bool)"}},"id":4691,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17110:28:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4692,"nodeType":"EmitStatement","src":"17105:33:17"}]},"documentation":{"id":4674,"nodeType":"StructuredDocumentation","src":"16817:159:17","text":" @dev Set the closed flag for a contract. This is an internal setter with no access restrictions.\n Emits a {TargetClosed} event."},"id":4694,"implemented":true,"kind":"function","modifiers":[],"name":"_setTargetClosed","nameLocation":"16990:16:17","nodeType":"FunctionDefinition","parameters":{"id":4679,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4676,"mutability":"mutable","name":"target","nameLocation":"17015:6:17","nodeType":"VariableDeclaration","scope":4694,"src":"17007:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4675,"name":"address","nodeType":"ElementaryTypeName","src":"17007:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4678,"mutability":"mutable","name":"closed","nameLocation":"17028:6:17","nodeType":"VariableDeclaration","scope":4694,"src":"17023:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4677,"name":"bool","nodeType":"ElementaryTypeName","src":"17023:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"17006:29:17"},"returnParameters":{"id":4680,"nodeType":"ParameterList","parameters":[],"src":"17053:0:17"},"scope":5649,"src":"16981:164:17","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[6046],"body":{"id":4716,"nodeType":"Block","src":"17376:114:17","statements":[{"assignments":[4703],"declarations":[{"constant":false,"id":4703,"mutability":"mutable","name":"timepoint","nameLocation":"17393:9:17","nodeType":"VariableDeclaration","scope":4716,"src":"17386:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4702,"name":"uint48","nodeType":"ElementaryTypeName","src":"17386:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":4708,"initialValue":{"expression":{"baseExpression":{"id":4704,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3843,"src":"17405:10:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$3812_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":4706,"indexExpression":{"id":4705,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4697,"src":"17416:2:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17405:14:17","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$3812_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":4707,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17420:9:17","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":3809,"src":"17405:24:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"17386:43:17"},{"expression":{"condition":{"arguments":[{"id":4710,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4703,"src":"17457:9:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":4709,"name":"_isExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5605,"src":"17446:10:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint48_$returns$_t_bool_$","typeString":"function (uint48) view returns (bool)"}},"id":4711,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17446:21:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":4713,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4703,"src":"17474:9:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":4714,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"17446:37:17","trueExpression":{"hexValue":"30","id":4712,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17470:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":4701,"id":4715,"nodeType":"Return","src":"17439:44:17"}]},"documentation":{"id":4695,"nodeType":"StructuredDocumentation","src":"17271:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"3adc277a","id":4717,"implemented":true,"kind":"function","modifiers":[],"name":"getSchedule","nameLocation":"17315:11:17","nodeType":"FunctionDefinition","parameters":{"id":4698,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4697,"mutability":"mutable","name":"id","nameLocation":"17335:2:17","nodeType":"VariableDeclaration","scope":4717,"src":"17327:10:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4696,"name":"bytes32","nodeType":"ElementaryTypeName","src":"17327:7:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"17326:12:17"},"returnParameters":{"id":4701,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4700,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4717,"src":"17368:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4699,"name":"uint48","nodeType":"ElementaryTypeName","src":"17368:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"17367:8:17"},"scope":5649,"src":"17306:184:17","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6054],"body":{"id":4730,"nodeType":"Block","src":"17598:44:17","statements":[{"expression":{"expression":{"baseExpression":{"id":4725,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3843,"src":"17615:10:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$3812_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":4727,"indexExpression":{"id":4726,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4720,"src":"17626:2:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17615:14:17","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$3812_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":4728,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17630:5:17","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":3811,"src":"17615:20:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":4724,"id":4729,"nodeType":"Return","src":"17608:27:17"}]},"documentation":{"id":4718,"nodeType":"StructuredDocumentation","src":"17496:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"4136a33c","id":4731,"implemented":true,"kind":"function","modifiers":[],"name":"getNonce","nameLocation":"17540:8:17","nodeType":"FunctionDefinition","parameters":{"id":4721,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4720,"mutability":"mutable","name":"id","nameLocation":"17557:2:17","nodeType":"VariableDeclaration","scope":4731,"src":"17549:10:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4719,"name":"bytes32","nodeType":"ElementaryTypeName","src":"17549:7:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"17548:12:17"},"returnParameters":{"id":4724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4723,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4731,"src":"17590:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4722,"name":"uint32","nodeType":"ElementaryTypeName","src":"17590:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"17589:8:17"},"scope":5649,"src":"17531:111:17","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6068],"body":{"id":4844,"nodeType":"Block","src":"17840:1216:17","statements":[{"assignments":[4746],"declarations":[{"constant":false,"id":4746,"mutability":"mutable","name":"caller","nameLocation":"17858:6:17","nodeType":"VariableDeclaration","scope":4844,"src":"17850:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4745,"name":"address","nodeType":"ElementaryTypeName","src":"17850:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4749,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4747,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10709,"src":"17867:10:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":4748,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17867:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"17850:29:17"},{"assignments":[null,4751],"declarations":[null,{"constant":false,"id":4751,"mutability":"mutable","name":"setback","nameLocation":"17980:7:17","nodeType":"VariableDeclaration","scope":4844,"src":"17973:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4750,"name":"uint32","nodeType":"ElementaryTypeName","src":"17973:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":4757,"initialValue":{"arguments":[{"id":4753,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4746,"src":"18008:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4754,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4734,"src":"18016:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4755,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4736,"src":"18024:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":4752,"name":"_canCallExtended","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5467,"src":"17991:16:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes calldata) view returns (bool,uint32)"}},"id":4756,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17991:38:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"17970:59:17"},{"assignments":[4759],"declarations":[{"constant":false,"id":4759,"mutability":"mutable","name":"minWhen","nameLocation":"18047:7:17","nodeType":"VariableDeclaration","scope":4844,"src":"18040:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4758,"name":"uint48","nodeType":"ElementaryTypeName","src":"18040:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":4765,"initialValue":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":4764,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4760,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18097,"src":"18057:4:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$18097_$","typeString":"type(library Time)"}},"id":4761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18062:9:17","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":17845,"src":"18057:14:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":4762,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18057:16:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":4763,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4751,"src":"18076:7:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"18057:26:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"18040:43:17"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4777,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":4768,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4766,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4751,"src":"18190:7:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4767,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18201:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18190:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":4771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4769,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4738,"src":"18207:4:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4770,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18214:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18207:8:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":4774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4772,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4738,"src":"18219:4:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":4773,"name":"minWhen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4759,"src":"18226:7:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"18219:14:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"18207:26:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":4776,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"18206:28:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"18190:44:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4787,"nodeType":"IfStatement","src":"18186:149:17","trueBody":{"id":4786,"nodeType":"Block","src":"18236:99:17","statements":[{"errorCall":{"arguments":[{"id":4779,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4746,"src":"18287:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4780,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4734,"src":"18295:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":4782,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4736,"src":"18318:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":4781,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5622,"src":"18303:14:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":4783,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18303:20:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":4778,"name":"AccessManagerUnauthorizedCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5831,"src":"18257:29:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$_t_bytes4_$returns$_t_error_$","typeString":"function (address,address,bytes4) pure returns (error)"}},"id":4784,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18257:67:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4785,"nodeType":"RevertStatement","src":"18250:74:17"}]}},{"expression":{"id":4797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4788,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4738,"src":"18393:4:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":4793,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4738,"src":"18416:4:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":4794,"name":"minWhen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4759,"src":"18422:7:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"expression":{"id":4791,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"18407:4:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":4792,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18412:3:17","memberName":"max","nodeType":"MemberAccess","referencedDeclaration":14580,"src":"18407:8:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":4795,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18407:23:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4790,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18400:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":4789,"name":"uint48","nodeType":"ElementaryTypeName","src":"18400:6:17","typeDescriptions":{}}},"id":4796,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18400:31:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"18393:38:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":4798,"nodeType":"ExpressionStatement","src":"18393:38:17"},{"expression":{"id":4805,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4799,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4741,"src":"18537:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4801,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4746,"src":"18565:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4802,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4734,"src":"18573:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4803,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4736,"src":"18581:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":4800,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5197,"src":"18551:13:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (address,address,bytes calldata) view returns (bytes32)"}},"id":4804,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18551:35:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"18537:49:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":4806,"nodeType":"ExpressionStatement","src":"18537:49:17"},{"expression":{"arguments":[{"id":4808,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4741,"src":"18616:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4807,"name":"_checkNotScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4873,"src":"18597:18:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$__$","typeString":"function (bytes32) view"}},"id":4809,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18597:31:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4810,"nodeType":"ExpressionStatement","src":"18597:31:17"},{"id":4820,"nodeType":"UncheckedBlock","src":"18639:155:17","statements":[{"expression":{"id":4818,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4811,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4743,"src":"18742:5:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":4817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":4812,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3843,"src":"18750:10:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$3812_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":4814,"indexExpression":{"id":4813,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4741,"src":"18761:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18750:23:17","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$3812_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":4815,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18774:5:17","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":3811,"src":"18750:29:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":4816,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18782:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"18750:33:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"18742:41:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":4819,"nodeType":"ExpressionStatement","src":"18742:41:17"}]},{"expression":{"id":4826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":4821,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3843,"src":"18803:10:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$3812_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":4823,"indexExpression":{"id":4822,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4741,"src":"18814:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18803:23:17","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$3812_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":4824,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"18827:9:17","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":3809,"src":"18803:33:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4825,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4738,"src":"18839:4:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"18803:40:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":4827,"nodeType":"ExpressionStatement","src":"18803:40:17"},{"expression":{"id":4833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":4828,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3843,"src":"18853:10:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$3812_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":4830,"indexExpression":{"id":4829,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4741,"src":"18864:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18853:23:17","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$3812_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":4831,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"18877:5:17","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":3811,"src":"18853:29:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4832,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4743,"src":"18885:5:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"18853:37:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":4834,"nodeType":"ExpressionStatement","src":"18853:37:17"},{"eventCall":{"arguments":[{"id":4836,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4741,"src":"18924:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4837,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4743,"src":"18937:5:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":4838,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4738,"src":"18944:4:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":4839,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4746,"src":"18950:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4840,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4734,"src":"18958:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4841,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4736,"src":"18966:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":4835,"name":"OperationScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5706,"src":"18905:18:17","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint32_$_t_uint48_$_t_address_$_t_address_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes32,uint32,uint48,address,address,bytes memory)"}},"id":4842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18905:66:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4843,"nodeType":"EmitStatement","src":"18900:71:17"}]},"documentation":{"id":4732,"nodeType":"StructuredDocumentation","src":"17648:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"f801a698","id":4845,"implemented":true,"kind":"function","modifiers":[],"name":"schedule","nameLocation":"17692:8:17","nodeType":"FunctionDefinition","parameters":{"id":4739,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4734,"mutability":"mutable","name":"target","nameLocation":"17718:6:17","nodeType":"VariableDeclaration","scope":4845,"src":"17710:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4733,"name":"address","nodeType":"ElementaryTypeName","src":"17710:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4736,"mutability":"mutable","name":"data","nameLocation":"17749:4:17","nodeType":"VariableDeclaration","scope":4845,"src":"17734:19:17","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":4735,"name":"bytes","nodeType":"ElementaryTypeName","src":"17734:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":4738,"mutability":"mutable","name":"when","nameLocation":"17770:4:17","nodeType":"VariableDeclaration","scope":4845,"src":"17763:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4737,"name":"uint48","nodeType":"ElementaryTypeName","src":"17763:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"17700:80:17"},"returnParameters":{"id":4744,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4741,"mutability":"mutable","name":"operationId","nameLocation":"17813:11:17","nodeType":"VariableDeclaration","scope":4845,"src":"17805:19:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4740,"name":"bytes32","nodeType":"ElementaryTypeName","src":"17805:7:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4743,"mutability":"mutable","name":"nonce","nameLocation":"17833:5:17","nodeType":"VariableDeclaration","scope":4845,"src":"17826:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4742,"name":"uint32","nodeType":"ElementaryTypeName","src":"17826:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"17804:35:17"},"scope":5649,"src":"17683:1373:17","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":4872,"nodeType":"Block","src":"19312:210:17","statements":[{"assignments":[4852],"declarations":[{"constant":false,"id":4852,"mutability":"mutable","name":"prevTimepoint","nameLocation":"19329:13:17","nodeType":"VariableDeclaration","scope":4872,"src":"19322:20:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4851,"name":"uint48","nodeType":"ElementaryTypeName","src":"19322:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":4857,"initialValue":{"expression":{"baseExpression":{"id":4853,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3843,"src":"19345:10:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$3812_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":4855,"indexExpression":{"id":4854,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4848,"src":"19356:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19345:23:17","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$3812_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":4856,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19369:9:17","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":3809,"src":"19345:33:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"19322:56:17"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":4860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4858,"name":"prevTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4852,"src":"19392:13:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":4859,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19409:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"19392:18:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":4864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"19414:26:17","subExpression":{"arguments":[{"id":4862,"name":"prevTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4852,"src":"19426:13:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":4861,"name":"_isExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5605,"src":"19415:10:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint48_$returns$_t_bool_$","typeString":"function (uint48) view returns (bool)"}},"id":4863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19415:25:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"19392:48:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4871,"nodeType":"IfStatement","src":"19388:128:17","trueBody":{"id":4870,"nodeType":"Block","src":"19442:74:17","statements":[{"errorCall":{"arguments":[{"id":4867,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4848,"src":"19493:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4866,"name":"AccessManagerAlreadyScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5799,"src":"19463:29:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":4868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19463:42:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4869,"nodeType":"RevertStatement","src":"19456:49:17"}]}}]},"documentation":{"id":4846,"nodeType":"StructuredDocumentation","src":"19062:183:17","text":" @dev Reverts if the operation is currently scheduled and has not expired.\n NOTE: This function was introduced due to stack too deep errors in schedule."},"id":4873,"implemented":true,"kind":"function","modifiers":[],"name":"_checkNotScheduled","nameLocation":"19259:18:17","nodeType":"FunctionDefinition","parameters":{"id":4849,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4848,"mutability":"mutable","name":"operationId","nameLocation":"19286:11:17","nodeType":"VariableDeclaration","scope":4873,"src":"19278:19:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4847,"name":"bytes32","nodeType":"ElementaryTypeName","src":"19278:7:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"19277:21:17"},"returnParameters":{"id":4850,"nodeType":"ParameterList","parameters":[],"src":"19312:0:17"},"scope":5649,"src":"19250:272:17","stateMutability":"view","virtual":false,"visibility":"private"},{"baseFunctions":[6078],"body":{"id":4970,"nodeType":"Block","src":"19886:1144:17","statements":[{"assignments":[4884],"declarations":[{"constant":false,"id":4884,"mutability":"mutable","name":"caller","nameLocation":"19904:6:17","nodeType":"VariableDeclaration","scope":4970,"src":"19896:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4883,"name":"address","nodeType":"ElementaryTypeName","src":"19896:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4887,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4885,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10709,"src":"19913:10:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":4886,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19913:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"19896:29:17"},{"assignments":[4889,4891],"declarations":[{"constant":false,"id":4889,"mutability":"mutable","name":"immediate","nameLocation":"20022:9:17","nodeType":"VariableDeclaration","scope":4970,"src":"20017:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4888,"name":"bool","nodeType":"ElementaryTypeName","src":"20017:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4891,"mutability":"mutable","name":"setback","nameLocation":"20040:7:17","nodeType":"VariableDeclaration","scope":4970,"src":"20033:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4890,"name":"uint32","nodeType":"ElementaryTypeName","src":"20033:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":4897,"initialValue":{"arguments":[{"id":4893,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4884,"src":"20068:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4894,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4876,"src":"20076:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4895,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4878,"src":"20084:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":4892,"name":"_canCallExtended","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5467,"src":"20051:16:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes calldata) view returns (bool,uint32)"}},"id":4896,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20051:38:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"20016:73:17"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4899,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"20149:10:17","subExpression":{"id":4898,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4889,"src":"20150:9:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":4902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4900,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4891,"src":"20163:7:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4901,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20174:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20163:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"20149:26:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4913,"nodeType":"IfStatement","src":"20145:131:17","trueBody":{"id":4912,"nodeType":"Block","src":"20177:99:17","statements":[{"errorCall":{"arguments":[{"id":4905,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4884,"src":"20228:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4906,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4876,"src":"20236:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":4908,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4878,"src":"20259:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":4907,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5622,"src":"20244:14:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":4909,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20244:20:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":4904,"name":"AccessManagerUnauthorizedCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5831,"src":"20198:29:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$_t_bytes4_$returns$_t_error_$","typeString":"function (address,address,bytes4) pure returns (error)"}},"id":4910,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20198:67:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4911,"nodeType":"RevertStatement","src":"20191:74:17"}]}},{"assignments":[4915],"declarations":[{"constant":false,"id":4915,"mutability":"mutable","name":"operationId","nameLocation":"20294:11:17","nodeType":"VariableDeclaration","scope":4970,"src":"20286:19:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4914,"name":"bytes32","nodeType":"ElementaryTypeName","src":"20286:7:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4921,"initialValue":{"arguments":[{"id":4917,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4884,"src":"20322:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4918,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4876,"src":"20330:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4919,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4878,"src":"20338:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":4916,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5197,"src":"20308:13:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (address,address,bytes calldata) view returns (bytes32)"}},"id":4920,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20308:35:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"20286:57:17"},{"assignments":[4923],"declarations":[{"constant":false,"id":4923,"mutability":"mutable","name":"nonce","nameLocation":"20360:5:17","nodeType":"VariableDeclaration","scope":4970,"src":"20353:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4922,"name":"uint32","nodeType":"ElementaryTypeName","src":"20353:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":4924,"nodeType":"VariableDeclarationStatement","src":"20353:12:17"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":4927,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4925,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4891,"src":"20545:7:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":4926,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20556:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20545:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":4932,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":4929,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4915,"src":"20573:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4928,"name":"getSchedule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4717,"src":"20561:11:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_uint48_$","typeString":"function (bytes32) view returns (uint48)"}},"id":4930,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20561:24:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":4931,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20589:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20561:29:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"20545:45:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4941,"nodeType":"IfStatement","src":"20541:116:17","trueBody":{"id":4940,"nodeType":"Block","src":"20592:65:17","statements":[{"expression":{"id":4938,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4934,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4923,"src":"20606:5:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4936,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4915,"src":"20634:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4935,"name":"_consumeScheduledOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"20614:19:17","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$_t_uint32_$","typeString":"function (bytes32) returns (uint32)"}},"id":4937,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20614:32:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"20606:40:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":4939,"nodeType":"ExpressionStatement","src":"20606:40:17"}]}},{"assignments":[4943],"declarations":[{"constant":false,"id":4943,"mutability":"mutable","name":"executionIdBefore","nameLocation":"20729:17:17","nodeType":"VariableDeclaration","scope":4970,"src":"20721:25:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4942,"name":"bytes32","nodeType":"ElementaryTypeName","src":"20721:7:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4945,"initialValue":{"id":4944,"name":"_executionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3845,"src":"20749:12:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"20721:40:17"},{"expression":{"id":4953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4946,"name":"_executionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3845,"src":"20771:12:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4948,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4876,"src":"20803:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":4950,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4878,"src":"20826:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":4949,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5622,"src":"20811:14:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":4951,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20811:20:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":4947,"name":"_hashExecutionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5648,"src":"20786:16:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_bytes4_$returns$_t_bytes32_$","typeString":"function (address,bytes4) pure returns (bytes32)"}},"id":4952,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20786:46:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"20771:61:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":4954,"nodeType":"ExpressionStatement","src":"20771:61:17"},{"expression":{"arguments":[{"id":4958,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4876,"src":"20897:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4959,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4878,"src":"20905:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"expression":{"id":4960,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"20911:3:17","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20915:5:17","memberName":"value","nodeType":"MemberAccess","src":"20911:9:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4955,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9984,"src":"20867:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$9984_$","typeString":"type(library Address)"}},"id":4957,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20875:21:17","memberName":"functionCallWithValue","nodeType":"MemberAccess","referencedDeclaration":9766,"src":"20867:29:17","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":4962,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20867:54:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":4963,"nodeType":"ExpressionStatement","src":"20867:54:17"},{"expression":{"id":4966,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4964,"name":"_executionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3845,"src":"20968:12:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4965,"name":"executionIdBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4943,"src":"20983:17:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"20968:32:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":4967,"nodeType":"ExpressionStatement","src":"20968:32:17"},{"expression":{"id":4968,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4923,"src":"21018:5:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":4882,"id":4969,"nodeType":"Return","src":"21011:12:17"}]},"documentation":{"id":4874,"nodeType":"StructuredDocumentation","src":"19528:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"1cff79cd","id":4971,"implemented":true,"kind":"function","modifiers":[],"name":"execute","nameLocation":"19801:7:17","nodeType":"FunctionDefinition","parameters":{"id":4879,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4876,"mutability":"mutable","name":"target","nameLocation":"19817:6:17","nodeType":"VariableDeclaration","scope":4971,"src":"19809:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4875,"name":"address","nodeType":"ElementaryTypeName","src":"19809:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4878,"mutability":"mutable","name":"data","nameLocation":"19840:4:17","nodeType":"VariableDeclaration","scope":4971,"src":"19825:19:17","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":4877,"name":"bytes","nodeType":"ElementaryTypeName","src":"19825:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"19808:37:17"},"returnParameters":{"id":4882,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4881,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4971,"src":"19878:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4880,"name":"uint32","nodeType":"ElementaryTypeName","src":"19878:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"19877:8:17"},"scope":5649,"src":"19792:1238:17","stateMutability":"payable","virtual":true,"visibility":"public"},{"baseFunctions":[6090],"body":{"id":5072,"nodeType":"Block","src":"21172:1007:17","statements":[{"assignments":[4984],"declarations":[{"constant":false,"id":4984,"mutability":"mutable","name":"msgsender","nameLocation":"21190:9:17","nodeType":"VariableDeclaration","scope":5072,"src":"21182:17:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4983,"name":"address","nodeType":"ElementaryTypeName","src":"21182:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4987,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4985,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10709,"src":"21202:10:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":4986,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21202:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"21182:32:17"},{"assignments":[4989],"declarations":[{"constant":false,"id":4989,"mutability":"mutable","name":"selector","nameLocation":"21231:8:17","nodeType":"VariableDeclaration","scope":5072,"src":"21224:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":4988,"name":"bytes4","nodeType":"ElementaryTypeName","src":"21224:6:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":4993,"initialValue":{"arguments":[{"id":4991,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4978,"src":"21257:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":4990,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5622,"src":"21242:14:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":4992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21242:20:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"21224:38:17"},{"assignments":[4995],"declarations":[{"constant":false,"id":4995,"mutability":"mutable","name":"operationId","nameLocation":"21281:11:17","nodeType":"VariableDeclaration","scope":5072,"src":"21273:19:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4994,"name":"bytes32","nodeType":"ElementaryTypeName","src":"21273:7:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":5001,"initialValue":{"arguments":[{"id":4997,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4974,"src":"21309:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4998,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4976,"src":"21317:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4999,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4978,"src":"21325:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":4996,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5197,"src":"21295:13:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (address,address,bytes calldata) view returns (bytes32)"}},"id":5000,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21295:35:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"21273:57:17"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":5007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":5002,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3843,"src":"21344:10:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$3812_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":5004,"indexExpression":{"id":5003,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4995,"src":"21355:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21344:23:17","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$3812_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":5005,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21368:9:17","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":3809,"src":"21344:33:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5006,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21381:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"21344:38:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5015,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5013,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4974,"src":"21464:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":5014,"name":"msgsender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4984,"src":"21474:9:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21464:19:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5050,"nodeType":"IfStatement","src":"21460:494:17","trueBody":{"id":5049,"nodeType":"Block","src":"21485:469:17","statements":[{"assignments":[5017,null],"declarations":[{"constant":false,"id":5017,"mutability":"mutable","name":"isAdmin","nameLocation":"21638:7:17","nodeType":"VariableDeclaration","scope":5049,"src":"21633:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5016,"name":"bool","nodeType":"ElementaryTypeName","src":"21633:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":5022,"initialValue":{"arguments":[{"id":5019,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3820,"src":"21659:10:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":5020,"name":"msgsender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4984,"src":"21671:9:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":5018,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4150,"src":"21651:7:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_bool_$_t_uint32_$","typeString":"function (uint64,address) view returns (bool,uint32)"}},"id":5021,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21651:30:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"21632:49:17"},{"assignments":[5024,null],"declarations":[{"constant":false,"id":5024,"mutability":"mutable","name":"isGuardian","nameLocation":"21701:10:17","nodeType":"VariableDeclaration","scope":5049,"src":"21696:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5023,"name":"bool","nodeType":"ElementaryTypeName","src":"21696:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":5034,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":5028,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4976,"src":"21763:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5029,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4989,"src":"21771:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":5027,"name":"getTargetFunctionRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3998,"src":"21741:21:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_uint64_$","typeString":"function (address,bytes4) view returns (uint64)"}},"id":5030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21741:39:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":5026,"name":"getRoleGuardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4042,"src":"21725:15:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$returns$_t_uint64_$","typeString":"function (uint64) view returns (uint64)"}},"id":5031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21725:56:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":5032,"name":"msgsender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4984,"src":"21783:9:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":5025,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4150,"src":"21717:7:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_bool_$_t_uint32_$","typeString":"function (uint64,address) view returns (bool,uint32)"}},"id":5033,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21717:76:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"21695:98:17"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"21811:8:17","subExpression":{"id":5035,"name":"isAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5017,"src":"21812:7:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":5038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"21823:11:17","subExpression":{"id":5037,"name":"isGuardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5024,"src":"21824:10:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"21811:23:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5048,"nodeType":"IfStatement","src":"21807:137:17","trueBody":{"id":5047,"nodeType":"Block","src":"21836:108:17","statements":[{"errorCall":{"arguments":[{"id":5041,"name":"msgsender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4984,"src":"21893:9:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5042,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4974,"src":"21904:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5043,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4976,"src":"21912:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5044,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4989,"src":"21920:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":5040,"name":"AccessManagerUnauthorizedCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"21861:31:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$_t_address_$_t_bytes4_$returns$_t_error_$","typeString":"function (address,address,address,bytes4) pure returns (error)"}},"id":5045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21861:68:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5046,"nodeType":"RevertStatement","src":"21854:75:17"}]}}]}},"id":5051,"nodeType":"IfStatement","src":"21340:614:17","trueBody":{"id":5012,"nodeType":"Block","src":"21384:70:17","statements":[{"errorCall":{"arguments":[{"id":5009,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4995,"src":"21431:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":5008,"name":"AccessManagerNotScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5803,"src":"21405:25:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":5010,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21405:38:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5011,"nodeType":"RevertStatement","src":"21398:45:17"}]}},{"expression":{"id":5056,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"21964:40:17","subExpression":{"expression":{"baseExpression":{"id":5052,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3843,"src":"21971:10:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$3812_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":5054,"indexExpression":{"id":5053,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4995,"src":"21982:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21971:23:17","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$3812_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":5055,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"21995:9:17","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":3809,"src":"21971:33:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5057,"nodeType":"ExpressionStatement","src":"21964:40:17"},{"assignments":[5059],"declarations":[{"constant":false,"id":5059,"mutability":"mutable","name":"nonce","nameLocation":"22060:5:17","nodeType":"VariableDeclaration","scope":5072,"src":"22053:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5058,"name":"uint32","nodeType":"ElementaryTypeName","src":"22053:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":5064,"initialValue":{"expression":{"baseExpression":{"id":5060,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3843,"src":"22068:10:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$3812_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":5062,"indexExpression":{"id":5061,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4995,"src":"22079:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22068:23:17","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$3812_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":5063,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22092:5:17","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":3811,"src":"22068:29:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"22053:44:17"},{"eventCall":{"arguments":[{"id":5066,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4995,"src":"22130:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":5067,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5059,"src":"22143:5:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":5065,"name":"OperationCanceled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5720,"src":"22112:17:17","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint32_$returns$__$","typeString":"function (bytes32,uint32)"}},"id":5068,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22112:37:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5069,"nodeType":"EmitStatement","src":"22107:42:17"},{"expression":{"id":5070,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5059,"src":"22167:5:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":4982,"id":5071,"nodeType":"Return","src":"22160:12:17"}]},"documentation":{"id":4972,"nodeType":"StructuredDocumentation","src":"21036:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"d6bb62c6","id":5073,"implemented":true,"kind":"function","modifiers":[],"name":"cancel","nameLocation":"21080:6:17","nodeType":"FunctionDefinition","parameters":{"id":4979,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4974,"mutability":"mutable","name":"caller","nameLocation":"21095:6:17","nodeType":"VariableDeclaration","scope":5073,"src":"21087:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4973,"name":"address","nodeType":"ElementaryTypeName","src":"21087:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4976,"mutability":"mutable","name":"target","nameLocation":"21111:6:17","nodeType":"VariableDeclaration","scope":5073,"src":"21103:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4975,"name":"address","nodeType":"ElementaryTypeName","src":"21103:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4978,"mutability":"mutable","name":"data","nameLocation":"21134:4:17","nodeType":"VariableDeclaration","scope":5073,"src":"21119:19:17","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":4977,"name":"bytes","nodeType":"ElementaryTypeName","src":"21119:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"21086:53:17"},"returnParameters":{"id":4982,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4981,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5073,"src":"21164:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4980,"name":"uint32","nodeType":"ElementaryTypeName","src":"21164:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"21163:8:17"},"scope":5649,"src":"21071:1108:17","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[6098],"body":{"id":5109,"nodeType":"Block","src":"22300:296:17","statements":[{"assignments":[5082],"declarations":[{"constant":false,"id":5082,"mutability":"mutable","name":"target","nameLocation":"22318:6:17","nodeType":"VariableDeclaration","scope":5109,"src":"22310:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5081,"name":"address","nodeType":"ElementaryTypeName","src":"22310:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5085,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5083,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10709,"src":"22327:10:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5084,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22327:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"22310:29:17"},{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":5094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":5087,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5082,"src":"22368:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5086,"name":"IAccessManaged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5689,"src":"22353:14:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManaged_$5689_$","typeString":"type(contract IAccessManaged)"}},"id":5088,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22353:22:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManaged_$5689","typeString":"contract IAccessManaged"}},"id":5089,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22376:22:17","memberName":"isConsumingScheduledOp","nodeType":"MemberAccess","referencedDeclaration":5688,"src":"22353:45:17","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_bytes4_$","typeString":"function () view external returns (bytes4)"}},"id":5090,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22353:47:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"expression":{"id":5091,"name":"IAccessManaged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5689,"src":"22404:14:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManaged_$5689_$","typeString":"type(contract IAccessManaged)"}},"id":5092,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"22419:22:17","memberName":"isConsumingScheduledOp","nodeType":"MemberAccess","referencedDeclaration":5688,"src":"22404:37:17","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$__$returns$_t_bytes4_$","typeString":"function IAccessManaged.isConsumingScheduledOp() view returns (bytes4)"}},"id":5093,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"22442:8:17","memberName":"selector","nodeType":"MemberAccess","src":"22404:46:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"22353:97:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5100,"nodeType":"IfStatement","src":"22349:175:17","trueBody":{"id":5099,"nodeType":"Block","src":"22452:72:17","statements":[{"errorCall":{"arguments":[{"id":5096,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5082,"src":"22506:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5095,"name":"AccessManagerUnauthorizedConsume","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5835,"src":"22473:32:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":5097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22473:40:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5098,"nodeType":"RevertStatement","src":"22466:47:17"}]}},{"expression":{"arguments":[{"arguments":[{"id":5103,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5076,"src":"22567:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5104,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5082,"src":"22575:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5105,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5078,"src":"22583:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":5102,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5197,"src":"22553:13:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (address,address,bytes calldata) view returns (bytes32)"}},"id":5106,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22553:35:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":5101,"name":"_consumeScheduledOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"22533:19:17","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$_t_uint32_$","typeString":"function (bytes32) returns (uint32)"}},"id":5107,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22533:56:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":5108,"nodeType":"ExpressionStatement","src":"22533:56:17"}]},"documentation":{"id":5074,"nodeType":"StructuredDocumentation","src":"22185:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"94c7d7ee","id":5110,"implemented":true,"kind":"function","modifiers":[],"name":"consumeScheduledOp","nameLocation":"22229:18:17","nodeType":"FunctionDefinition","parameters":{"id":5079,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5076,"mutability":"mutable","name":"caller","nameLocation":"22256:6:17","nodeType":"VariableDeclaration","scope":5110,"src":"22248:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5075,"name":"address","nodeType":"ElementaryTypeName","src":"22248:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5078,"mutability":"mutable","name":"data","nameLocation":"22279:4:17","nodeType":"VariableDeclaration","scope":5110,"src":"22264:19:17","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":5077,"name":"bytes","nodeType":"ElementaryTypeName","src":"22264:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"22247:37:17"},"returnParameters":{"id":5080,"nodeType":"ParameterList","parameters":[],"src":"22300:0:17"},"scope":5649,"src":"22220:376:17","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":5174,"nodeType":"Block","src":"22870:592:17","statements":[{"assignments":[5119],"declarations":[{"constant":false,"id":5119,"mutability":"mutable","name":"timepoint","nameLocation":"22887:9:17","nodeType":"VariableDeclaration","scope":5174,"src":"22880:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":5118,"name":"uint48","nodeType":"ElementaryTypeName","src":"22880:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":5124,"initialValue":{"expression":{"baseExpression":{"id":5120,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3843,"src":"22899:10:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$3812_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":5122,"indexExpression":{"id":5121,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5113,"src":"22910:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22899:23:17","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$3812_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":5123,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22923:9:17","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":3809,"src":"22899:33:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"22880:52:17"},{"assignments":[5126],"declarations":[{"constant":false,"id":5126,"mutability":"mutable","name":"nonce","nameLocation":"22949:5:17","nodeType":"VariableDeclaration","scope":5174,"src":"22942:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5125,"name":"uint32","nodeType":"ElementaryTypeName","src":"22942:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":5131,"initialValue":{"expression":{"baseExpression":{"id":5127,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3843,"src":"22957:10:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$3812_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":5129,"indexExpression":{"id":5128,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5113,"src":"22968:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22957:23:17","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$3812_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":5130,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22981:5:17","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":3811,"src":"22957:29:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"22942:44:17"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":5134,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5132,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5119,"src":"23001:9:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5133,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23014:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23001:14:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":5144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5140,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5119,"src":"23097:9:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5141,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18097,"src":"23109:4:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$18097_$","typeString":"type(library Time)"}},"id":5142,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23114:9:17","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":17845,"src":"23109:14:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":5143,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23109:16:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"23097:28:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"arguments":[{"id":5151,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5119,"src":"23214:9:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":5150,"name":"_isExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5605,"src":"23203:10:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint48_$returns$_t_bool_$","typeString":"function (uint48) view returns (bool)"}},"id":5152,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23203:21:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5158,"nodeType":"IfStatement","src":"23199:92:17","trueBody":{"id":5157,"nodeType":"Block","src":"23226:65:17","statements":[{"errorCall":{"arguments":[{"id":5154,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5113,"src":"23268:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":5153,"name":"AccessManagerExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5811,"src":"23247:20:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":5155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23247:33:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5156,"nodeType":"RevertStatement","src":"23240:40:17"}]}},"id":5159,"nodeType":"IfStatement","src":"23093:198:17","trueBody":{"id":5149,"nodeType":"Block","src":"23127:66:17","statements":[{"errorCall":{"arguments":[{"id":5146,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5113,"src":"23170:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":5145,"name":"AccessManagerNotReady","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5807,"src":"23148:21:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":5147,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23148:34:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5148,"nodeType":"RevertStatement","src":"23141:41:17"}]}},"id":5160,"nodeType":"IfStatement","src":"22997:294:17","trueBody":{"id":5139,"nodeType":"Block","src":"23017:70:17","statements":[{"errorCall":{"arguments":[{"id":5136,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5113,"src":"23064:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":5135,"name":"AccessManagerNotScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5803,"src":"23038:25:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":5137,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23038:38:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5138,"nodeType":"RevertStatement","src":"23031:45:17"}]}},{"expression":{"id":5165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"23301:40:17","subExpression":{"expression":{"baseExpression":{"id":5161,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3843,"src":"23308:10:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$3812_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":5163,"indexExpression":{"id":5162,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5113,"src":"23319:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"23308:23:17","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$3812_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":5164,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"23332:9:17","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":3809,"src":"23308:33:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5166,"nodeType":"ExpressionStatement","src":"23301:40:17"},{"eventCall":{"arguments":[{"id":5168,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5113,"src":"23413:11:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":5169,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5126,"src":"23426:5:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":5167,"name":"OperationExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5713,"src":"23395:17:17","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint32_$returns$__$","typeString":"function (bytes32,uint32)"}},"id":5170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23395:37:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5171,"nodeType":"EmitStatement","src":"23390:42:17"},{"expression":{"id":5172,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5126,"src":"23450:5:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":5117,"id":5173,"nodeType":"Return","src":"23443:12:17"}]},"documentation":{"id":5111,"nodeType":"StructuredDocumentation","src":"22602:179:17","text":" @dev Internal variant of {consumeScheduledOp} that operates on bytes32 operationId.\n Returns the nonce of the scheduled operation that is consumed."},"id":5175,"implemented":true,"kind":"function","modifiers":[],"name":"_consumeScheduledOp","nameLocation":"22795:19:17","nodeType":"FunctionDefinition","parameters":{"id":5114,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5113,"mutability":"mutable","name":"operationId","nameLocation":"22823:11:17","nodeType":"VariableDeclaration","scope":5175,"src":"22815:19:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5112,"name":"bytes32","nodeType":"ElementaryTypeName","src":"22815:7:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"22814:21:17"},"returnParameters":{"id":5117,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5116,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5175,"src":"22862:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5115,"name":"uint32","nodeType":"ElementaryTypeName","src":"22862:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"22861:8:17"},"scope":5649,"src":"22786:676:17","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[6110],"body":{"id":5196,"nodeType":"Block","src":"23617:67:17","statements":[{"expression":{"arguments":[{"arguments":[{"id":5190,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5178,"src":"23655:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5191,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5180,"src":"23663:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5192,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5182,"src":"23671:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":5188,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"23644:3:17","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":5189,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"23648:6:17","memberName":"encode","nodeType":"MemberAccess","src":"23644:10:17","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":5193,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23644:32:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":5187,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"23634:9:17","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":5194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23634:43:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":5186,"id":5195,"nodeType":"Return","src":"23627:50:17"}]},"documentation":{"id":5176,"nodeType":"StructuredDocumentation","src":"23468:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"abd9bd2a","id":5197,"implemented":true,"kind":"function","modifiers":[],"name":"hashOperation","nameLocation":"23512:13:17","nodeType":"FunctionDefinition","parameters":{"id":5183,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5178,"mutability":"mutable","name":"caller","nameLocation":"23534:6:17","nodeType":"VariableDeclaration","scope":5197,"src":"23526:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5177,"name":"address","nodeType":"ElementaryTypeName","src":"23526:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5180,"mutability":"mutable","name":"target","nameLocation":"23550:6:17","nodeType":"VariableDeclaration","scope":5197,"src":"23542:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5179,"name":"address","nodeType":"ElementaryTypeName","src":"23542:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5182,"mutability":"mutable","name":"data","nameLocation":"23573:4:17","nodeType":"VariableDeclaration","scope":5197,"src":"23558:19:17","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":5181,"name":"bytes","nodeType":"ElementaryTypeName","src":"23558:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"23525:53:17"},"returnParameters":{"id":5186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5185,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5197,"src":"23608:7:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5184,"name":"bytes32","nodeType":"ElementaryTypeName","src":"23608:7:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"23607:9:17"},"scope":5649,"src":"23503:181:17","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6118],"body":{"id":5214,"nodeType":"Block","src":"23938:66:17","statements":[{"expression":{"arguments":[{"id":5211,"name":"newAuthority","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5202,"src":"23984:12:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"id":5208,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5200,"src":"23963:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5207,"name":"IAccessManaged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5689,"src":"23948:14:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManaged_$5689_$","typeString":"type(contract IAccessManaged)"}},"id":5209,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23948:22:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManaged_$5689","typeString":"contract IAccessManaged"}},"id":5210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23971:12:17","memberName":"setAuthority","nodeType":"MemberAccess","referencedDeclaration":5682,"src":"23948:35:17","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$returns$__$","typeString":"function (address) external"}},"id":5212,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23948:49:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5213,"nodeType":"ExpressionStatement","src":"23948:49:17"}]},"documentation":{"id":5198,"nodeType":"StructuredDocumentation","src":"23810:30:17","text":"@inheritdoc IAccessManager"},"functionSelector":"18ff183c","id":5215,"implemented":true,"kind":"function","modifiers":[{"id":5205,"kind":"modifierInvocation","modifierName":{"id":5204,"name":"onlyAuthorized","nameLocations":["23923:14:17"],"nodeType":"IdentifierPath","referencedDeclaration":3853,"src":"23923:14:17"},"nodeType":"ModifierInvocation","src":"23923:14:17"}],"name":"updateAuthority","nameLocation":"23854:15:17","nodeType":"FunctionDefinition","parameters":{"id":5203,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5200,"mutability":"mutable","name":"target","nameLocation":"23878:6:17","nodeType":"VariableDeclaration","scope":5215,"src":"23870:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5199,"name":"address","nodeType":"ElementaryTypeName","src":"23870:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5202,"mutability":"mutable","name":"newAuthority","nameLocation":"23894:12:17","nodeType":"VariableDeclaration","scope":5215,"src":"23886:20:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5201,"name":"address","nodeType":"ElementaryTypeName","src":"23886:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"23869:38:17"},"returnParameters":{"id":5206,"nodeType":"ParameterList","parameters":[],"src":"23938:0:17"},"scope":5649,"src":"23845:159:17","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":5268,"nodeType":"Block","src":"24394:467:17","statements":[{"assignments":[5220],"declarations":[{"constant":false,"id":5220,"mutability":"mutable","name":"caller","nameLocation":"24412:6:17","nodeType":"VariableDeclaration","scope":5268,"src":"24404:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5219,"name":"address","nodeType":"ElementaryTypeName","src":"24404:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5223,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5221,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10709,"src":"24421:10:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5222,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24421:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"24404:29:17"},{"assignments":[5225,5227],"declarations":[{"constant":false,"id":5225,"mutability":"mutable","name":"immediate","nameLocation":"24449:9:17","nodeType":"VariableDeclaration","scope":5268,"src":"24444:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5224,"name":"bool","nodeType":"ElementaryTypeName","src":"24444:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5227,"mutability":"mutable","name":"delay","nameLocation":"24467:5:17","nodeType":"VariableDeclaration","scope":5268,"src":"24460:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5226,"name":"uint32","nodeType":"ElementaryTypeName","src":"24460:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":5233,"initialValue":{"arguments":[{"id":5229,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5220,"src":"24489:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":5230,"name":"_msgData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10718,"src":"24497:8:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":5231,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24497:10:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":5228,"name":"_canCallSelf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5569,"src":"24476:12:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,bytes calldata) view returns (bool,uint32)"}},"id":5232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24476:32:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"24443:65:17"},{"condition":{"id":5235,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"24522:10:17","subExpression":{"id":5234,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5225,"src":"24523:9:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5267,"nodeType":"IfStatement","src":"24518:337:17","trueBody":{"id":5266,"nodeType":"Block","src":"24534:321:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":5238,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5236,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5227,"src":"24552:5:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24561:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24552:10:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":5264,"nodeType":"Block","src":"24743:102:17","statements":[{"expression":{"arguments":[{"arguments":[{"id":5254,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5220,"src":"24795:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":5257,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"24811:4:17","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}],"id":5256,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24803:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5255,"name":"address","nodeType":"ElementaryTypeName","src":"24803:7:17","typeDescriptions":{}}},"id":5258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24803:13:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":5259,"name":"_msgData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10718,"src":"24818:8:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":5260,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24818:10:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":5253,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5197,"src":"24781:13:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (address,address,bytes calldata) view returns (bytes32)"}},"id":5261,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24781:48:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":5252,"name":"_consumeScheduledOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"24761:19:17","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$_t_uint32_$","typeString":"function (bytes32) returns (uint32)"}},"id":5262,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24761:69:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":5263,"nodeType":"ExpressionStatement","src":"24761:69:17"}]},"id":5265,"nodeType":"IfStatement","src":"24548:297:17","trueBody":{"id":5251,"nodeType":"Block","src":"24564:173:17","statements":[{"assignments":[null,5240,null],"declarations":[null,{"constant":false,"id":5240,"mutability":"mutable","name":"requiredRole","nameLocation":"24592:12:17","nodeType":"VariableDeclaration","scope":5251,"src":"24585:19:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5239,"name":"uint64","nodeType":"ElementaryTypeName","src":"24585:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},null],"id":5245,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":5242,"name":"_msgData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10718,"src":"24632:8:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":5243,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24632:10:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":5241,"name":"_getAdminRestrictions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5422,"src":"24610:21:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"function (bytes calldata) view returns (bool,uint64,uint32)"}},"id":5244,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24610:33:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"tuple(bool,uint64,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"24582:61:17"},{"errorCall":{"arguments":[{"id":5247,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5220,"src":"24701:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5248,"name":"requiredRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5240,"src":"24709:12:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":5246,"name":"AccessManagerUnauthorizedAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5823,"src":"24668:32:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint64_$returns$_t_error_$","typeString":"function (address,uint64) pure returns (error)"}},"id":5249,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24668:54:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5250,"nodeType":"RevertStatement","src":"24661:61:17"}]}}]}}]},"documentation":{"id":5216,"nodeType":"StructuredDocumentation","src":"24130:223:17","text":" @dev Check if the current call is authorized according to admin and roles logic.\n WARNING: Carefully review the considerations of {AccessManaged-restricted} since they apply to this modifier."},"id":5269,"implemented":true,"kind":"function","modifiers":[],"name":"_checkAuthorized","nameLocation":"24367:16:17","nodeType":"FunctionDefinition","parameters":{"id":5217,"nodeType":"ParameterList","parameters":[],"src":"24383:2:17"},"returnParameters":{"id":5218,"nodeType":"ParameterList","parameters":[],"src":"24394:0:17"},"scope":5649,"src":"24358:503:17","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":5421,"nodeType":"Block","src":"25420:1525:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5281,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5272,"src":"25434:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":5282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25439:6:17","memberName":"length","nodeType":"MemberAccess","src":"25434:11:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"34","id":5283,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25448:1:17","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25434:15:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5291,"nodeType":"IfStatement","src":"25430:66:17","trueBody":{"id":5290,"nodeType":"Block","src":"25451:45:17","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":5285,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"25473:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":5286,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25480:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":5287,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25483:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":5288,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"25472:13:17","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":5280,"id":5289,"nodeType":"Return","src":"25465:20:17"}]}},{"assignments":[5293],"declarations":[{"constant":false,"id":5293,"mutability":"mutable","name":"selector","nameLocation":"25513:8:17","nodeType":"VariableDeclaration","scope":5421,"src":"25506:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5292,"name":"bytes4","nodeType":"ElementaryTypeName","src":"25506:6:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":5297,"initialValue":{"arguments":[{"id":5295,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5272,"src":"25539:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":5294,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5622,"src":"25524:14:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":5296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25524:20:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"25506:38:17"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5326,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5308,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":5302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5298,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5293,"src":"25664:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":5299,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25676:4:17","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}},"id":5300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25681:9:17","memberName":"labelRole","nodeType":"MemberAccess","referencedDeclaration":4179,"src":"25676:14:17","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_string_memory_ptr_$returns$__$","typeString":"function (uint64,string memory) external"}},"id":5301,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25691:8:17","memberName":"selector","nodeType":"MemberAccess","src":"25676:23:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"25664:35:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":5307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5303,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5293,"src":"25715:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":5304,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25727:4:17","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}},"id":5305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25732:12:17","memberName":"setRoleAdmin","nodeType":"MemberAccess","referencedDeclaration":4256,"src":"25727:17:17","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64) external"}},"id":5306,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25745:8:17","memberName":"selector","nodeType":"MemberAccess","src":"25727:26:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"25715:38:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25664:89:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":5313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5309,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5293,"src":"25769:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":5310,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25781:4:17","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}},"id":5311,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25786:15:17","memberName":"setRoleGuardian","nodeType":"MemberAccess","referencedDeclaration":4272,"src":"25781:20:17","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64) external"}},"id":5312,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25802:8:17","memberName":"selector","nodeType":"MemberAccess","src":"25781:29:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"25769:41:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25664:146:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":5319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5315,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5293,"src":"25826:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":5316,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25838:4:17","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}},"id":5317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25843:13:17","memberName":"setGrantDelay","nodeType":"MemberAccess","referencedDeclaration":4288,"src":"25838:18:17","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_uint32_$returns$__$","typeString":"function (uint64,uint32) external"}},"id":5318,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25857:8:17","memberName":"selector","nodeType":"MemberAccess","src":"25838:27:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"25826:39:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25664:201:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":5325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5321,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5293,"src":"25881:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":5322,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25893:4:17","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}},"id":5323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25898:19:17","memberName":"setTargetAdminDelay","nodeType":"MemberAccess","referencedDeclaration":4622,"src":"25893:24:17","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint32_$returns$__$","typeString":"function (address,uint32) external"}},"id":5324,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25918:8:17","memberName":"selector","nodeType":"MemberAccess","src":"25893:33:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"25881:45:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25664:262:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5333,"nodeType":"IfStatement","src":"25647:343:17","trueBody":{"id":5332,"nodeType":"Block","src":"25937:53:17","statements":[{"expression":{"components":[{"hexValue":"74727565","id":5327,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"25959:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":5328,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3820,"src":"25965:10:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"hexValue":"30","id":5329,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25977:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":5330,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"25958:21:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_rational_0_by_1_$","typeString":"tuple(bool,uint64,int_const 0)"}},"functionReturnParameters":5280,"id":5331,"nodeType":"Return","src":"25951:28:17"}]}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5350,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":5338,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5334,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5293,"src":"26097:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":5335,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26109:4:17","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}},"id":5336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26114:15:17","memberName":"updateAuthority","nodeType":"MemberAccess","referencedDeclaration":5215,"src":"26109:20:17","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address) external"}},"id":5337,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26130:8:17","memberName":"selector","nodeType":"MemberAccess","src":"26109:29:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26097:41:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":5343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5339,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5293,"src":"26154:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":5340,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26166:4:17","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}},"id":5341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26171:15:17","memberName":"setTargetClosed","nodeType":"MemberAccess","referencedDeclaration":4673,"src":"26166:20:17","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_bool_$returns$__$","typeString":"function (address,bool) external"}},"id":5342,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26187:8:17","memberName":"selector","nodeType":"MemberAccess","src":"26166:29:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26154:41:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26097:98:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":5349,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5345,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5293,"src":"26211:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":5346,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26223:4:17","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}},"id":5347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26228:21:17","memberName":"setTargetFunctionRole","nodeType":"MemberAccess","referencedDeclaration":4580,"src":"26223:26:17","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_array$_t_bytes4_$dyn_memory_ptr_$_t_uint64_$returns$__$","typeString":"function (address,bytes4[] memory,uint64) external"}},"id":5348,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26250:8:17","memberName":"selector","nodeType":"MemberAccess","src":"26223:35:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26211:47:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26097:161:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5376,"nodeType":"IfStatement","src":"26080:414:17","trueBody":{"id":5375,"nodeType":"Block","src":"26269:225:17","statements":[{"assignments":[5352],"declarations":[{"constant":false,"id":5352,"mutability":"mutable","name":"target","nameLocation":"26334:6:17","nodeType":"VariableDeclaration","scope":5375,"src":"26326:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5351,"name":"address","nodeType":"ElementaryTypeName","src":"26326:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5363,"initialValue":{"arguments":[{"baseExpression":{"id":5355,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5272,"src":"26354:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"30783234","id":5357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26364:4:17","typeDescriptions":{"typeIdentifier":"t_rational_36_by_1","typeString":"int_const 36"},"value":"0x24"},"id":5358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"26354:15:17","startExpression":{"hexValue":"30783034","id":5356,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26359:4:17","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"0x04"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"id":5360,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26372:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5359,"name":"address","nodeType":"ElementaryTypeName","src":"26372:7:17","typeDescriptions":{}}}],"id":5361,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"26371:9:17","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}],"expression":{"id":5353,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"26343:3:17","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":5354,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26347:6:17","memberName":"decode","nodeType":"MemberAccess","src":"26343:10:17","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":5362,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26343:38:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"nodeType":"VariableDeclarationStatement","src":"26326:55:17"},{"assignments":[5365],"declarations":[{"constant":false,"id":5365,"mutability":"mutable","name":"delay","nameLocation":"26402:5:17","nodeType":"VariableDeclaration","scope":5375,"src":"26395:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5364,"name":"uint32","nodeType":"ElementaryTypeName","src":"26395:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":5369,"initialValue":{"arguments":[{"id":5367,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5352,"src":"26430:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5366,"name":"getTargetAdminDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4014,"src":"26410:19:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint32_$","typeString":"function (address) view returns (uint32)"}},"id":5368,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26410:27:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"26395:42:17"},{"expression":{"components":[{"hexValue":"74727565","id":5370,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"26459:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":5371,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3820,"src":"26465:10:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":5372,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5365,"src":"26477:5:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":5373,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26458:25:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"tuple(bool,uint64,uint32)"}},"functionReturnParameters":5280,"id":5374,"nodeType":"Return","src":"26451:32:17"}]}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":5381,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5377,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5293,"src":"26613:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":5378,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26625:4:17","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}},"id":5379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26630:9:17","memberName":"grantRole","nodeType":"MemberAccess","referencedDeclaration":4201,"src":"26625:14:17","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_address_$_t_uint32_$returns$__$","typeString":"function (uint64,address,uint32) external"}},"id":5380,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26640:8:17","memberName":"selector","nodeType":"MemberAccess","src":"26625:23:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26613:35:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":5386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5382,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5293,"src":"26652:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":5383,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26664:4:17","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}},"id":5384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26669:10:17","memberName":"revokeRole","nodeType":"MemberAccess","referencedDeclaration":4217,"src":"26664:15:17","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_address_$returns$__$","typeString":"function (uint64,address) external"}},"id":5385,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26680:8:17","memberName":"selector","nodeType":"MemberAccess","src":"26664:24:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26652:36:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26613:75:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5409,"nodeType":"IfStatement","src":"26609:254:17","trueBody":{"id":5408,"nodeType":"Block","src":"26690:173:17","statements":[{"assignments":[5389],"declarations":[{"constant":false,"id":5389,"mutability":"mutable","name":"roleId","nameLocation":"26754:6:17","nodeType":"VariableDeclaration","scope":5408,"src":"26747:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5388,"name":"uint64","nodeType":"ElementaryTypeName","src":"26747:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":5400,"initialValue":{"arguments":[{"baseExpression":{"id":5392,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5272,"src":"26774:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"30783234","id":5394,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26784:4:17","typeDescriptions":{"typeIdentifier":"t_rational_36_by_1","typeString":"int_const 36"},"value":"0x24"},"id":5395,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"26774:15:17","startExpression":{"hexValue":"30783034","id":5393,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26779:4:17","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"0x04"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"id":5397,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26792:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":5396,"name":"uint64","nodeType":"ElementaryTypeName","src":"26792:6:17","typeDescriptions":{}}}],"id":5398,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"26791:8:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"expression":{"id":5390,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"26763:3:17","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":5391,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26767:6:17","memberName":"decode","nodeType":"MemberAccess","src":"26763:10:17","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":5399,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26763:37:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"26747:53:17"},{"expression":{"components":[{"hexValue":"74727565","id":5401,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"26822:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"arguments":[{"id":5403,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5389,"src":"26841:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":5402,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4028,"src":"26828:12:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$returns$_t_uint64_$","typeString":"function (uint64) view returns (uint64)"}},"id":5404,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26828:20:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"hexValue":"30","id":5405,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26850:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":5406,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26821:31:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_rational_0_by_1_$","typeString":"tuple(bool,uint64,int_const 0)"}},"functionReturnParameters":5280,"id":5407,"nodeType":"Return","src":"26814:38:17"}]}},{"expression":{"components":[{"hexValue":"66616c7365","id":5410,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"26881:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"arguments":[{"id":5414,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26918:4:17","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}],"id":5413,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26910:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5412,"name":"address","nodeType":"ElementaryTypeName","src":"26910:7:17","typeDescriptions":{}}},"id":5415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26910:13:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5416,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5293,"src":"26925:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":5411,"name":"getTargetFunctionRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3998,"src":"26888:21:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_uint64_$","typeString":"function (address,bytes4) view returns (uint64)"}},"id":5417,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26888:46:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"hexValue":"30","id":5418,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26936:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":5419,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26880:58:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_rational_0_by_1_$","typeString":"tuple(bool,uint64,int_const 0)"}},"functionReturnParameters":5280,"id":5420,"nodeType":"Return","src":"26873:65:17"}]},"documentation":{"id":5270,"nodeType":"StructuredDocumentation","src":"24867:395:17","text":" @dev Get the admin restrictions of a given function call based on the function and arguments involved.\n Returns:\n - bool restricted: does this data match a restricted operation\n - uint64: which role is this operation restricted to\n - uint32: minimum delay to enforce for that operation (max between operation's delay and admin's execution delay)"},"id":5422,"implemented":true,"kind":"function","modifiers":[],"name":"_getAdminRestrictions","nameLocation":"25276:21:17","nodeType":"FunctionDefinition","parameters":{"id":5273,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5272,"mutability":"mutable","name":"data","nameLocation":"25322:4:17","nodeType":"VariableDeclaration","scope":5422,"src":"25307:19:17","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":5271,"name":"bytes","nodeType":"ElementaryTypeName","src":"25307:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"25297:35:17"},"returnParameters":{"id":5280,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5275,"mutability":"mutable","name":"adminRestricted","nameLocation":"25360:15:17","nodeType":"VariableDeclaration","scope":5422,"src":"25355:20:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5274,"name":"bool","nodeType":"ElementaryTypeName","src":"25355:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5277,"mutability":"mutable","name":"roleAdminId","nameLocation":"25384:11:17","nodeType":"VariableDeclaration","scope":5422,"src":"25377:18:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5276,"name":"uint64","nodeType":"ElementaryTypeName","src":"25377:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":5279,"mutability":"mutable","name":"executionDelay","nameLocation":"25404:14:17","nodeType":"VariableDeclaration","scope":5422,"src":"25397:21:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5278,"name":"uint32","nodeType":"ElementaryTypeName","src":"25397:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"25354:65:17"},"scope":5649,"src":"25267:1678:17","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":5466,"nodeType":"Block","src":"27537:217:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5436,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5427,"src":"27551:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":5439,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"27569:4:17","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}],"id":5438,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27561:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5437,"name":"address","nodeType":"ElementaryTypeName","src":"27561:7:17","typeDescriptions":{}}},"id":5440,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27561:13:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27551:23:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":5464,"nodeType":"Block","src":"27640:108:17","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5451,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5448,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5429,"src":"27661:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":5449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27666:6:17","memberName":"length","nodeType":"MemberAccess","src":"27661:11:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"34","id":5450,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27675:1:17","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"27661:15:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":5456,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5425,"src":"27700:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5457,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5427,"src":"27708:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":5459,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5429,"src":"27731:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":5458,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5622,"src":"27716:14:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":5460,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27716:20:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":5455,"name":"canCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3948,"src":"27692:7:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes4) view returns (bool,uint32)"}},"id":5461,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27692:45:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"id":5462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"27661:76:17","trueExpression":{"components":[{"hexValue":"66616c7365","id":5452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"27680:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":5453,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27687:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":5454,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27679:10:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":5435,"id":5463,"nodeType":"Return","src":"27654:83:17"}]},"id":5465,"nodeType":"IfStatement","src":"27547:201:17","trueBody":{"id":5447,"nodeType":"Block","src":"27576:58:17","statements":[{"expression":{"arguments":[{"id":5443,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5425,"src":"27610:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5444,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5429,"src":"27618:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":5442,"name":"_canCallSelf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5569,"src":"27597:12:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,bytes calldata) view returns (bool,uint32)"}},"id":5445,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27597:26:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":5435,"id":5446,"nodeType":"Return","src":"27590:33:17"}]}}]},"documentation":{"id":5423,"nodeType":"StructuredDocumentation","src":"27071:300:17","text":" @dev An extended version of {canCall} for internal usage that checks {_canCallSelf}\n when the target is this contract.\n Returns:\n - bool immediate: whether the operation can be executed immediately (with no delay)\n - uint32 delay: the execution delay"},"id":5467,"implemented":true,"kind":"function","modifiers":[],"name":"_canCallExtended","nameLocation":"27385:16:17","nodeType":"FunctionDefinition","parameters":{"id":5430,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5425,"mutability":"mutable","name":"caller","nameLocation":"27419:6:17","nodeType":"VariableDeclaration","scope":5467,"src":"27411:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5424,"name":"address","nodeType":"ElementaryTypeName","src":"27411:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5427,"mutability":"mutable","name":"target","nameLocation":"27443:6:17","nodeType":"VariableDeclaration","scope":5467,"src":"27435:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5426,"name":"address","nodeType":"ElementaryTypeName","src":"27435:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5429,"mutability":"mutable","name":"data","nameLocation":"27474:4:17","nodeType":"VariableDeclaration","scope":5467,"src":"27459:19:17","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":5428,"name":"bytes","nodeType":"ElementaryTypeName","src":"27459:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"27401:83:17"},"returnParameters":{"id":5435,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5432,"mutability":"mutable","name":"immediate","nameLocation":"27512:9:17","nodeType":"VariableDeclaration","scope":5467,"src":"27507:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5431,"name":"bool","nodeType":"ElementaryTypeName","src":"27507:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5434,"mutability":"mutable","name":"delay","nameLocation":"27530:5:17","nodeType":"VariableDeclaration","scope":5467,"src":"27523:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5433,"name":"uint32","nodeType":"ElementaryTypeName","src":"27523:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"27506:30:17"},"scope":5649,"src":"27376:378:17","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":5568,"nodeType":"Block","src":"27969:996:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5479,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5472,"src":"27983:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":5480,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27988:6:17","memberName":"length","nodeType":"MemberAccess","src":"27983:11:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"34","id":5481,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27997:1:17","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"27983:15:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5488,"nodeType":"IfStatement","src":"27979:63:17","trueBody":{"id":5487,"nodeType":"Block","src":"28000:42:17","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":5483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"28022:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":5484,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28029:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":5485,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"28021:10:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":5478,"id":5486,"nodeType":"Return","src":"28014:17:17"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5494,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5489,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5470,"src":"28056:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":5492,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28074:4:17","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}],"id":5491,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28066:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5490,"name":"address","nodeType":"ElementaryTypeName","src":"28066:7:17","typeDescriptions":{}}},"id":5493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28066:13:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"28056:23:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5508,"nodeType":"IfStatement","src":"28052:334:17","trueBody":{"id":5507,"nodeType":"Block","src":"28081:305:17","statements":[{"expression":{"components":[{"arguments":[{"arguments":[{"id":5498,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28343:4:17","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}],"id":5497,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28335:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5496,"name":"address","nodeType":"ElementaryTypeName","src":"28335:7:17","typeDescriptions":{}}},"id":5499,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28335:13:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":5501,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5472,"src":"28365:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":5500,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5622,"src":"28350:14:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":5502,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28350:20:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":5495,"name":"_isExecuting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5587,"src":"28322:12:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":5503,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28322:49:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"30","id":5504,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28373:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":5505,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"28321:54:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":5478,"id":5506,"nodeType":"Return","src":"28314:61:17"}]}},{"assignments":[5510,5512,5514],"declarations":[{"constant":false,"id":5510,"mutability":"mutable","name":"adminRestricted","nameLocation":"28402:15:17","nodeType":"VariableDeclaration","scope":5568,"src":"28397:20:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5509,"name":"bool","nodeType":"ElementaryTypeName","src":"28397:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5512,"mutability":"mutable","name":"roleId","nameLocation":"28426:6:17","nodeType":"VariableDeclaration","scope":5568,"src":"28419:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5511,"name":"uint64","nodeType":"ElementaryTypeName","src":"28419:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":5514,"mutability":"mutable","name":"operationDelay","nameLocation":"28441:14:17","nodeType":"VariableDeclaration","scope":5568,"src":"28434:21:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5513,"name":"uint32","nodeType":"ElementaryTypeName","src":"28434:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":5518,"initialValue":{"arguments":[{"id":5516,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5472,"src":"28481:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":5515,"name":"_getAdminRestrictions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5422,"src":"28459:21:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"function (bytes calldata) view returns (bool,uint64,uint32)"}},"id":5517,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28459:27:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"tuple(bool,uint64,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"28396:90:17"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5527,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5520,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"28566:16:17","subExpression":{"id":5519,"name":"adminRestricted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5510,"src":"28567:15:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"arguments":[{"arguments":[{"id":5524,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28609:4:17","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$5649","typeString":"contract AccessManager"}],"id":5523,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28601:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5522,"name":"address","nodeType":"ElementaryTypeName","src":"28601:7:17","typeDescriptions":{}}},"id":5525,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28601:13:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5521,"name":"isTargetClosed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3980,"src":"28586:14:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":5526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28586:29:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"28566:49:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5533,"nodeType":"IfStatement","src":"28562:97:17","trueBody":{"id":5532,"nodeType":"Block","src":"28617:42:17","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":5528,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"28639:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":5529,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28646:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":5530,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"28638:10:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":5478,"id":5531,"nodeType":"Return","src":"28631:17:17"}]}},{"assignments":[5535,5537],"declarations":[{"constant":false,"id":5535,"mutability":"mutable","name":"inRole","nameLocation":"28675:6:17","nodeType":"VariableDeclaration","scope":5568,"src":"28670:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5534,"name":"bool","nodeType":"ElementaryTypeName","src":"28670:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5537,"mutability":"mutable","name":"executionDelay","nameLocation":"28690:14:17","nodeType":"VariableDeclaration","scope":5568,"src":"28683:21:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5536,"name":"uint32","nodeType":"ElementaryTypeName","src":"28683:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":5542,"initialValue":{"arguments":[{"id":5539,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5512,"src":"28716:6:17","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":5540,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5470,"src":"28724:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":5538,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4150,"src":"28708:7:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_bool_$_t_uint32_$","typeString":"function (uint64,address) view returns (bool,uint32)"}},"id":5541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28708:23:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"28669:62:17"},{"condition":{"id":5544,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"28745:7:17","subExpression":{"id":5543,"name":"inRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5535,"src":"28746:6:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5550,"nodeType":"IfStatement","src":"28741:55:17","trueBody":{"id":5549,"nodeType":"Block","src":"28754:42:17","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":5545,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"28776:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":5546,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28783:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":5547,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"28775:10:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":5478,"id":5548,"nodeType":"Return","src":"28768:17:17"}]}},{"expression":{"id":5560,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5551,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5477,"src":"28866:5:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":5556,"name":"operationDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5514,"src":"28890:14:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":5557,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5537,"src":"28906:14:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":5554,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"28881:4:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":5555,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28886:3:17","memberName":"max","nodeType":"MemberAccess","referencedDeclaration":14580,"src":"28881:8:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":5558,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28881:40:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5553,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28874:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":5552,"name":"uint32","nodeType":"ElementaryTypeName","src":"28874:6:17","typeDescriptions":{}}},"id":5559,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28874:48:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"28866:56:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":5561,"nodeType":"ExpressionStatement","src":"28866:56:17"},{"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":5564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5562,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5477,"src":"28940:5:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5563,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28949:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"28940:10:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":5565,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5477,"src":"28952:5:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":5566,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"28939:19:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":5478,"id":5567,"nodeType":"Return","src":"28932:26:17"}]},"documentation":{"id":5468,"nodeType":"StructuredDocumentation","src":"27760:93:17","text":" @dev A version of {canCall} that checks for restrictions in this contract."},"id":5569,"implemented":true,"kind":"function","modifiers":[],"name":"_canCallSelf","nameLocation":"27867:12:17","nodeType":"FunctionDefinition","parameters":{"id":5473,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5470,"mutability":"mutable","name":"caller","nameLocation":"27888:6:17","nodeType":"VariableDeclaration","scope":5569,"src":"27880:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5469,"name":"address","nodeType":"ElementaryTypeName","src":"27880:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5472,"mutability":"mutable","name":"data","nameLocation":"27911:4:17","nodeType":"VariableDeclaration","scope":5569,"src":"27896:19:17","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":5471,"name":"bytes","nodeType":"ElementaryTypeName","src":"27896:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"27879:37:17"},"returnParameters":{"id":5478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5475,"mutability":"mutable","name":"immediate","nameLocation":"27944:9:17","nodeType":"VariableDeclaration","scope":5569,"src":"27939:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5474,"name":"bool","nodeType":"ElementaryTypeName","src":"27939:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5477,"mutability":"mutable","name":"delay","nameLocation":"27962:5:17","nodeType":"VariableDeclaration","scope":5569,"src":"27955:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5476,"name":"uint32","nodeType":"ElementaryTypeName","src":"27955:6:17","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"27938:30:17"},"scope":5649,"src":"27858:1107:17","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":5586,"nodeType":"Block","src":"29168:74:17","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":5584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5579,"name":"_executionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3845,"src":"29185:12:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":5581,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5572,"src":"29218:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5582,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5574,"src":"29226:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":5580,"name":"_hashExecutionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5648,"src":"29201:16:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_bytes4_$returns$_t_bytes32_$","typeString":"function (address,bytes4) pure returns (bytes32)"}},"id":5583,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29201:34:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"29185:50:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":5578,"id":5585,"nodeType":"Return","src":"29178:57:17"}]},"documentation":{"id":5570,"nodeType":"StructuredDocumentation","src":"28971:109:17","text":" @dev Returns true if a call with `target` and `selector` is being executed via {executed}."},"id":5587,"implemented":true,"kind":"function","modifiers":[],"name":"_isExecuting","nameLocation":"29094:12:17","nodeType":"FunctionDefinition","parameters":{"id":5575,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5572,"mutability":"mutable","name":"target","nameLocation":"29115:6:17","nodeType":"VariableDeclaration","scope":5587,"src":"29107:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5571,"name":"address","nodeType":"ElementaryTypeName","src":"29107:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5574,"mutability":"mutable","name":"selector","nameLocation":"29130:8:17","nodeType":"VariableDeclaration","scope":5587,"src":"29123:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5573,"name":"bytes4","nodeType":"ElementaryTypeName","src":"29123:6:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"29106:33:17"},"returnParameters":{"id":5578,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5577,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5587,"src":"29162:4:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5576,"name":"bool","nodeType":"ElementaryTypeName","src":"29162:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"29161:6:17"},"scope":5649,"src":"29085:157:17","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":5604,"nodeType":"Block","src":"29412:68:17","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":5602,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":5598,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5595,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5590,"src":"29429:9:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":5596,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3957,"src":"29441:10:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint32_$","typeString":"function () view returns (uint32)"}},"id":5597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29441:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"29429:24:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5599,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18097,"src":"29457:4:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$18097_$","typeString":"type(library Time)"}},"id":5600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29462:9:17","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":17845,"src":"29457:14:17","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":5601,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29457:16:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"29429:44:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":5594,"id":5603,"nodeType":"Return","src":"29422:51:17"}]},"documentation":{"id":5588,"nodeType":"StructuredDocumentation","src":"29248:93:17","text":" @dev Returns true if a schedule timepoint is past its expiration deadline."},"id":5605,"implemented":true,"kind":"function","modifiers":[],"name":"_isExpired","nameLocation":"29355:10:17","nodeType":"FunctionDefinition","parameters":{"id":5591,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5590,"mutability":"mutable","name":"timepoint","nameLocation":"29373:9:17","nodeType":"VariableDeclaration","scope":5605,"src":"29366:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":5589,"name":"uint48","nodeType":"ElementaryTypeName","src":"29366:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"29365:18:17"},"returnParameters":{"id":5594,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5593,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5605,"src":"29406:4:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5592,"name":"bool","nodeType":"ElementaryTypeName","src":"29406:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"29405:6:17"},"scope":5649,"src":"29346:134:17","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":5621,"nodeType":"Block","src":"29665:41:17","statements":[{"expression":{"arguments":[{"baseExpression":{"id":5615,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5608,"src":"29689:4:17","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":5617,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29696:1:17","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":5618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"29689:9:17","startExpression":{"hexValue":"30","id":5616,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29694:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":5614,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29682:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":5613,"name":"bytes4","nodeType":"ElementaryTypeName","src":"29682:6:17","typeDescriptions":{}}},"id":5619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29682:17:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":5612,"id":5620,"nodeType":"Return","src":"29675:24:17"}]},"documentation":{"id":5606,"nodeType":"StructuredDocumentation","src":"29486:99:17","text":" @dev Extracts the selector from calldata. Panics if data is not at least 4 bytes"},"id":5622,"implemented":true,"kind":"function","modifiers":[],"name":"_checkSelector","nameLocation":"29599:14:17","nodeType":"FunctionDefinition","parameters":{"id":5609,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5608,"mutability":"mutable","name":"data","nameLocation":"29629:4:17","nodeType":"VariableDeclaration","scope":5622,"src":"29614:19:17","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":5607,"name":"bytes","nodeType":"ElementaryTypeName","src":"29614:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"29613:21:17"},"returnParameters":{"id":5612,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5611,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5622,"src":"29657:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5610,"name":"bytes4","nodeType":"ElementaryTypeName","src":"29657:6:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"29656:8:17"},"scope":5649,"src":"29590:116:17","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":5647,"nodeType":"Block","src":"29870:94:17","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"id":5640,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5625,"src":"29937:6:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5639,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29929:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":5638,"name":"uint160","nodeType":"ElementaryTypeName","src":"29929:7:17","typeDescriptions":{}}},"id":5641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29929:15:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":5637,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29921:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5636,"name":"uint256","nodeType":"ElementaryTypeName","src":"29921:7:17","typeDescriptions":{}}},"id":5642,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29921:24:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5635,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29913:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":5634,"name":"bytes32","nodeType":"ElementaryTypeName","src":"29913:7:17","typeDescriptions":{}}},"id":5643,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29913:33:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":5644,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5627,"src":"29948:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":5632,"name":"Hashes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13964,"src":"29887:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Hashes_$13964_$","typeString":"type(library Hashes)"}},"id":5633,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29894:18:17","memberName":"efficientKeccak256","nodeType":"MemberAccess","referencedDeclaration":13963,"src":"29887:25:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32,bytes32) pure returns (bytes32)"}},"id":5645,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29887:70:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":5631,"id":5646,"nodeType":"Return","src":"29880:77:17"}]},"documentation":{"id":5623,"nodeType":"StructuredDocumentation","src":"29712:63:17","text":" @dev Hashing function for execute protection"},"id":5648,"implemented":true,"kind":"function","modifiers":[],"name":"_hashExecutionId","nameLocation":"29789:16:17","nodeType":"FunctionDefinition","parameters":{"id":5628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5625,"mutability":"mutable","name":"target","nameLocation":"29814:6:17","nodeType":"VariableDeclaration","scope":5648,"src":"29806:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5624,"name":"address","nodeType":"ElementaryTypeName","src":"29806:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5627,"mutability":"mutable","name":"selector","nameLocation":"29829:8:17","nodeType":"VariableDeclaration","scope":5648,"src":"29822:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5626,"name":"bytes4","nodeType":"ElementaryTypeName","src":"29822:6:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"29805:33:17"},"returnParameters":{"id":5631,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5630,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5648,"src":"29861:7:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5629,"name":"bytes32","nodeType":"ElementaryTypeName","src":"29861:7:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"29860:9:17"},"scope":5649,"src":"29780:184:17","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":5650,"src":"3782:26184:17","usedErrors":[5799,5803,5807,5811,5815,5817,5823,5831,5835,5845,5849,9606,10737,10740,15924],"usedEvents":[5706,5713,5720,5727,5740,5747,5754,5761,5770,5777,5786,5795]}],"src":"116:29851:17"},"id":17},"@openzeppelin/contracts/access/manager/IAccessManaged.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManaged.sol","exportedSymbols":{"IAccessManaged":[5689]},"id":5690,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5651,"literals":["solidity",">=","0.8",".4"],"nodeType":"PragmaDirective","src":"117:24:18"},{"abstract":false,"baseContracts":[],"canonicalName":"IAccessManaged","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":5689,"linearizedBaseContracts":[5689],"name":"IAccessManaged","nameLocation":"153:14:18","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":5652,"nodeType":"StructuredDocumentation","src":"174:73:18","text":" @dev Authority that manages this contract was updated."},"eventSelector":"2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad","id":5656,"name":"AuthorityUpdated","nameLocation":"258:16:18","nodeType":"EventDefinition","parameters":{"id":5655,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5654,"indexed":false,"mutability":"mutable","name":"authority","nameLocation":"283:9:18","nodeType":"VariableDeclaration","scope":5656,"src":"275:17:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5653,"name":"address","nodeType":"ElementaryTypeName","src":"275:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"274:19:18"},"src":"252:42:18"},{"errorSelector":"068ca9d8","id":5660,"name":"AccessManagedUnauthorized","nameLocation":"306:25:18","nodeType":"ErrorDefinition","parameters":{"id":5659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5658,"mutability":"mutable","name":"caller","nameLocation":"340:6:18","nodeType":"VariableDeclaration","scope":5660,"src":"332:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5657,"name":"address","nodeType":"ElementaryTypeName","src":"332:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"331:16:18"},"src":"300:48:18"},{"errorSelector":"af77169d","id":5666,"name":"AccessManagedRequiredDelay","nameLocation":"359:26:18","nodeType":"ErrorDefinition","parameters":{"id":5665,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5662,"mutability":"mutable","name":"caller","nameLocation":"394:6:18","nodeType":"VariableDeclaration","scope":5666,"src":"386:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5661,"name":"address","nodeType":"ElementaryTypeName","src":"386:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5664,"mutability":"mutable","name":"delay","nameLocation":"409:5:18","nodeType":"VariableDeclaration","scope":5666,"src":"402:12:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5663,"name":"uint32","nodeType":"ElementaryTypeName","src":"402:6:18","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"385:30:18"},"src":"353:63:18"},{"errorSelector":"c2f31e5e","id":5670,"name":"AccessManagedInvalidAuthority","nameLocation":"427:29:18","nodeType":"ErrorDefinition","parameters":{"id":5669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5668,"mutability":"mutable","name":"authority","nameLocation":"465:9:18","nodeType":"VariableDeclaration","scope":5670,"src":"457:17:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5667,"name":"address","nodeType":"ElementaryTypeName","src":"457:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"456:19:18"},"src":"421:55:18"},{"documentation":{"id":5671,"nodeType":"StructuredDocumentation","src":"482:54:18","text":" @dev Returns the current authority."},"functionSelector":"bf7e214f","id":5676,"implemented":false,"kind":"function","modifiers":[],"name":"authority","nameLocation":"550:9:18","nodeType":"FunctionDefinition","parameters":{"id":5672,"nodeType":"ParameterList","parameters":[],"src":"559:2:18"},"returnParameters":{"id":5675,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5674,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5676,"src":"585:7:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5673,"name":"address","nodeType":"ElementaryTypeName","src":"585:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"584:9:18"},"scope":5689,"src":"541:53:18","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":5677,"nodeType":"StructuredDocumentation","src":"600:103:18","text":" @dev Transfers control to a new authority. The caller must be the current authority."},"functionSelector":"7a9e5e4b","id":5682,"implemented":false,"kind":"function","modifiers":[],"name":"setAuthority","nameLocation":"717:12:18","nodeType":"FunctionDefinition","parameters":{"id":5680,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5679,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5682,"src":"730:7:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5678,"name":"address","nodeType":"ElementaryTypeName","src":"730:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"729:9:18"},"returnParameters":{"id":5681,"nodeType":"ParameterList","parameters":[],"src":"747:0:18"},"scope":5689,"src":"708:40:18","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":5683,"nodeType":"StructuredDocumentation","src":"754:284:18","text":" @dev Returns true only in the context of a delayed restricted call, at the moment that the scheduled operation is\n being consumed. Prevents denial of service for delayed restricted calls in the case that the contract performs\n attacker controlled calls."},"functionSelector":"8fb36037","id":5688,"implemented":false,"kind":"function","modifiers":[],"name":"isConsumingScheduledOp","nameLocation":"1052:22:18","nodeType":"FunctionDefinition","parameters":{"id":5684,"nodeType":"ParameterList","parameters":[],"src":"1074:2:18"},"returnParameters":{"id":5687,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5686,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5688,"src":"1100:6:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5685,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1100:6:18","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1099:8:18"},"scope":5689,"src":"1043:65:18","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":5690,"src":"143:967:18","usedErrors":[5660,5666,5670],"usedEvents":[5656]}],"src":"117:994:18"},"id":18},"@openzeppelin/contracts/access/manager/IAccessManager.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","exportedSymbols":{"IAccessManager":[6119]},"id":6120,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5691,"literals":["solidity",">=","0.8",".4"],"nodeType":"PragmaDirective","src":"117:24:19"},{"abstract":false,"baseContracts":[],"canonicalName":"IAccessManager","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":6119,"linearizedBaseContracts":[6119],"name":"IAccessManager","nameLocation":"153:14:19","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":5692,"nodeType":"StructuredDocumentation","src":"174:58:19","text":" @dev A delayed operation was scheduled."},"eventSelector":"82a2da5dee54ea8021c6545b4444620291e07ee83be6dd57edb175062715f3b4","id":5706,"name":"OperationScheduled","nameLocation":"243:18:19","nodeType":"EventDefinition","parameters":{"id":5705,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5694,"indexed":true,"mutability":"mutable","name":"operationId","nameLocation":"287:11:19","nodeType":"VariableDeclaration","scope":5706,"src":"271:27:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5693,"name":"bytes32","nodeType":"ElementaryTypeName","src":"271:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":5696,"indexed":true,"mutability":"mutable","name":"nonce","nameLocation":"323:5:19","nodeType":"VariableDeclaration","scope":5706,"src":"308:20:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5695,"name":"uint32","nodeType":"ElementaryTypeName","src":"308:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":5698,"indexed":false,"mutability":"mutable","name":"schedule","nameLocation":"345:8:19","nodeType":"VariableDeclaration","scope":5706,"src":"338:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":5697,"name":"uint48","nodeType":"ElementaryTypeName","src":"338:6:19","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":5700,"indexed":false,"mutability":"mutable","name":"caller","nameLocation":"371:6:19","nodeType":"VariableDeclaration","scope":5706,"src":"363:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5699,"name":"address","nodeType":"ElementaryTypeName","src":"363:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5702,"indexed":false,"mutability":"mutable","name":"target","nameLocation":"395:6:19","nodeType":"VariableDeclaration","scope":5706,"src":"387:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5701,"name":"address","nodeType":"ElementaryTypeName","src":"387:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5704,"indexed":false,"mutability":"mutable","name":"data","nameLocation":"417:4:19","nodeType":"VariableDeclaration","scope":5706,"src":"411:10:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5703,"name":"bytes","nodeType":"ElementaryTypeName","src":"411:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"261:166:19"},"src":"237:191:19"},{"anonymous":false,"documentation":{"id":5707,"nodeType":"StructuredDocumentation","src":"434:59:19","text":" @dev A scheduled operation was executed."},"eventSelector":"76a2a46953689d4861a5d3f6ed883ad7e6af674a21f8e162707159fc9dde614d","id":5713,"name":"OperationExecuted","nameLocation":"504:17:19","nodeType":"EventDefinition","parameters":{"id":5712,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5709,"indexed":true,"mutability":"mutable","name":"operationId","nameLocation":"538:11:19","nodeType":"VariableDeclaration","scope":5713,"src":"522:27:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5708,"name":"bytes32","nodeType":"ElementaryTypeName","src":"522:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":5711,"indexed":true,"mutability":"mutable","name":"nonce","nameLocation":"566:5:19","nodeType":"VariableDeclaration","scope":5713,"src":"551:20:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5710,"name":"uint32","nodeType":"ElementaryTypeName","src":"551:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"521:51:19"},"src":"498:75:19"},{"anonymous":false,"documentation":{"id":5714,"nodeType":"StructuredDocumentation","src":"579:59:19","text":" @dev A scheduled operation was canceled."},"eventSelector":"bd9ac67a6e2f6463b80927326310338bcbb4bdb7936ce1365ea3e01067e7b9f7","id":5720,"name":"OperationCanceled","nameLocation":"649:17:19","nodeType":"EventDefinition","parameters":{"id":5719,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5716,"indexed":true,"mutability":"mutable","name":"operationId","nameLocation":"683:11:19","nodeType":"VariableDeclaration","scope":5720,"src":"667:27:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5715,"name":"bytes32","nodeType":"ElementaryTypeName","src":"667:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":5718,"indexed":true,"mutability":"mutable","name":"nonce","nameLocation":"711:5:19","nodeType":"VariableDeclaration","scope":5720,"src":"696:20:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5717,"name":"uint32","nodeType":"ElementaryTypeName","src":"696:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"666:51:19"},"src":"643:75:19"},{"anonymous":false,"documentation":{"id":5721,"nodeType":"StructuredDocumentation","src":"724:61:19","text":" @dev Informational labelling for a roleId."},"eventSelector":"1256f5b5ecb89caec12db449738f2fbcd1ba5806cf38f35413f4e5c15bf6a450","id":5727,"name":"RoleLabel","nameLocation":"796:9:19","nodeType":"EventDefinition","parameters":{"id":5726,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5723,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"821:6:19","nodeType":"VariableDeclaration","scope":5727,"src":"806:21:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5722,"name":"uint64","nodeType":"ElementaryTypeName","src":"806:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":5725,"indexed":false,"mutability":"mutable","name":"label","nameLocation":"836:5:19","nodeType":"VariableDeclaration","scope":5727,"src":"829:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5724,"name":"string","nodeType":"ElementaryTypeName","src":"829:6:19","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"805:37:19"},"src":"790:53:19"},{"anonymous":false,"documentation":{"id":5728,"nodeType":"StructuredDocumentation","src":"849:375:19","text":" @dev Emitted when `account` is granted `roleId`.\n NOTE: The meaning of the `since` argument depends on the `newMember` argument.\n If the role is granted to a new member, the `since` argument indicates when the account becomes a member of the role,\n otherwise it indicates the execution delay for this account and roleId is updated."},"eventSelector":"f98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf","id":5740,"name":"RoleGranted","nameLocation":"1235:11:19","nodeType":"EventDefinition","parameters":{"id":5739,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5730,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"1262:6:19","nodeType":"VariableDeclaration","scope":5740,"src":"1247:21:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5729,"name":"uint64","nodeType":"ElementaryTypeName","src":"1247:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":5732,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1286:7:19","nodeType":"VariableDeclaration","scope":5740,"src":"1270:23:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5731,"name":"address","nodeType":"ElementaryTypeName","src":"1270:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5734,"indexed":false,"mutability":"mutable","name":"delay","nameLocation":"1302:5:19","nodeType":"VariableDeclaration","scope":5740,"src":"1295:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5733,"name":"uint32","nodeType":"ElementaryTypeName","src":"1295:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":5736,"indexed":false,"mutability":"mutable","name":"since","nameLocation":"1316:5:19","nodeType":"VariableDeclaration","scope":5740,"src":"1309:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":5735,"name":"uint48","nodeType":"ElementaryTypeName","src":"1309:6:19","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":5738,"indexed":false,"mutability":"mutable","name":"newMember","nameLocation":"1328:9:19","nodeType":"VariableDeclaration","scope":5740,"src":"1323:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5737,"name":"bool","nodeType":"ElementaryTypeName","src":"1323:4:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1246:92:19"},"src":"1229:110:19"},{"anonymous":false,"documentation":{"id":5741,"nodeType":"StructuredDocumentation","src":"1345:125:19","text":" @dev Emitted when `account` membership or `roleId` is revoked. Unlike granting, revoking is instantaneous."},"eventSelector":"f229baa593af28c41b1d16b748cd7688f0c83aaf92d4be41c44005defe84c166","id":5747,"name":"RoleRevoked","nameLocation":"1481:11:19","nodeType":"EventDefinition","parameters":{"id":5746,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5743,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"1508:6:19","nodeType":"VariableDeclaration","scope":5747,"src":"1493:21:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5742,"name":"uint64","nodeType":"ElementaryTypeName","src":"1493:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":5745,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1532:7:19","nodeType":"VariableDeclaration","scope":5747,"src":"1516:23:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5744,"name":"address","nodeType":"ElementaryTypeName","src":"1516:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1492:48:19"},"src":"1475:66:19"},{"anonymous":false,"documentation":{"id":5748,"nodeType":"StructuredDocumentation","src":"1547:78:19","text":" @dev Role acting as admin over a given `roleId` is updated."},"eventSelector":"1fd6dd7631312dfac2205b52913f99de03b4d7e381d5d27d3dbfe0713e6e6340","id":5754,"name":"RoleAdminChanged","nameLocation":"1636:16:19","nodeType":"EventDefinition","parameters":{"id":5753,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5750,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"1668:6:19","nodeType":"VariableDeclaration","scope":5754,"src":"1653:21:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5749,"name":"uint64","nodeType":"ElementaryTypeName","src":"1653:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":5752,"indexed":true,"mutability":"mutable","name":"admin","nameLocation":"1691:5:19","nodeType":"VariableDeclaration","scope":5754,"src":"1676:20:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5751,"name":"uint64","nodeType":"ElementaryTypeName","src":"1676:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"1652:45:19"},"src":"1630:68:19"},{"anonymous":false,"documentation":{"id":5755,"nodeType":"StructuredDocumentation","src":"1704:81:19","text":" @dev Role acting as guardian over a given `roleId` is updated."},"eventSelector":"7a8059630b897b5de4c08ade69f8b90c3ead1f8596d62d10b6c4d14a0afb4ae2","id":5761,"name":"RoleGuardianChanged","nameLocation":"1796:19:19","nodeType":"EventDefinition","parameters":{"id":5760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5757,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"1831:6:19","nodeType":"VariableDeclaration","scope":5761,"src":"1816:21:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5756,"name":"uint64","nodeType":"ElementaryTypeName","src":"1816:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":5759,"indexed":true,"mutability":"mutable","name":"guardian","nameLocation":"1854:8:19","nodeType":"VariableDeclaration","scope":5761,"src":"1839:23:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5758,"name":"uint64","nodeType":"ElementaryTypeName","src":"1839:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"1815:48:19"},"src":"1790:74:19"},{"anonymous":false,"documentation":{"id":5762,"nodeType":"StructuredDocumentation","src":"1870:108:19","text":" @dev Grant delay for a given `roleId` will be updated to `delay` when `since` is reached."},"eventSelector":"feb69018ee8b8fd50ea86348f1267d07673379f72cffdeccec63853ee8ce8b48","id":5770,"name":"RoleGrantDelayChanged","nameLocation":"1989:21:19","nodeType":"EventDefinition","parameters":{"id":5769,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5764,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"2026:6:19","nodeType":"VariableDeclaration","scope":5770,"src":"2011:21:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5763,"name":"uint64","nodeType":"ElementaryTypeName","src":"2011:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":5766,"indexed":false,"mutability":"mutable","name":"delay","nameLocation":"2041:5:19","nodeType":"VariableDeclaration","scope":5770,"src":"2034:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5765,"name":"uint32","nodeType":"ElementaryTypeName","src":"2034:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":5768,"indexed":false,"mutability":"mutable","name":"since","nameLocation":"2055:5:19","nodeType":"VariableDeclaration","scope":5770,"src":"2048:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":5767,"name":"uint48","nodeType":"ElementaryTypeName","src":"2048:6:19","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2010:51:19"},"src":"1983:79:19"},{"anonymous":false,"documentation":{"id":5771,"nodeType":"StructuredDocumentation","src":"2068:77:19","text":" @dev Target mode is updated (true = closed, false = open)."},"eventSelector":"90d4e7bb7e5d933792b3562e1741306f8be94837e1348dacef9b6f1df56eb138","id":5777,"name":"TargetClosed","nameLocation":"2156:12:19","nodeType":"EventDefinition","parameters":{"id":5776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5773,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"2185:6:19","nodeType":"VariableDeclaration","scope":5777,"src":"2169:22:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5772,"name":"address","nodeType":"ElementaryTypeName","src":"2169:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5775,"indexed":false,"mutability":"mutable","name":"closed","nameLocation":"2198:6:19","nodeType":"VariableDeclaration","scope":5777,"src":"2193:11:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5774,"name":"bool","nodeType":"ElementaryTypeName","src":"2193:4:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2168:37:19"},"src":"2150:56:19"},{"anonymous":false,"documentation":{"id":5778,"nodeType":"StructuredDocumentation","src":"2212:94:19","text":" @dev Role required to invoke `selector` on `target` is updated to `roleId`."},"eventSelector":"9ea6790c7dadfd01c9f8b9762b3682607af2c7e79e05a9f9fdf5580dde949151","id":5786,"name":"TargetFunctionRoleUpdated","nameLocation":"2317:25:19","nodeType":"EventDefinition","parameters":{"id":5785,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5780,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"2359:6:19","nodeType":"VariableDeclaration","scope":5786,"src":"2343:22:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5779,"name":"address","nodeType":"ElementaryTypeName","src":"2343:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5782,"indexed":false,"mutability":"mutable","name":"selector","nameLocation":"2374:8:19","nodeType":"VariableDeclaration","scope":5786,"src":"2367:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5781,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2367:6:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":5784,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"2399:6:19","nodeType":"VariableDeclaration","scope":5786,"src":"2384:21:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5783,"name":"uint64","nodeType":"ElementaryTypeName","src":"2384:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"2342:64:19"},"src":"2311:96:19"},{"anonymous":false,"documentation":{"id":5787,"nodeType":"StructuredDocumentation","src":"2413:108:19","text":" @dev Admin delay for a given `target` will be updated to `delay` when `since` is reached."},"eventSelector":"a56b76017453f399ec2327ba00375dbfb1fd070ff854341ad6191e6a2e2de19c","id":5795,"name":"TargetAdminDelayUpdated","nameLocation":"2532:23:19","nodeType":"EventDefinition","parameters":{"id":5794,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5789,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"2572:6:19","nodeType":"VariableDeclaration","scope":5795,"src":"2556:22:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5788,"name":"address","nodeType":"ElementaryTypeName","src":"2556:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5791,"indexed":false,"mutability":"mutable","name":"delay","nameLocation":"2587:5:19","nodeType":"VariableDeclaration","scope":5795,"src":"2580:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5790,"name":"uint32","nodeType":"ElementaryTypeName","src":"2580:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":5793,"indexed":false,"mutability":"mutable","name":"since","nameLocation":"2601:5:19","nodeType":"VariableDeclaration","scope":5795,"src":"2594:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":5792,"name":"uint48","nodeType":"ElementaryTypeName","src":"2594:6:19","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2555:52:19"},"src":"2526:82:19"},{"errorSelector":"813e9459","id":5799,"name":"AccessManagerAlreadyScheduled","nameLocation":"2620:29:19","nodeType":"ErrorDefinition","parameters":{"id":5798,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5797,"mutability":"mutable","name":"operationId","nameLocation":"2658:11:19","nodeType":"VariableDeclaration","scope":5799,"src":"2650:19:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5796,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2650:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2649:21:19"},"src":"2614:57:19"},{"errorSelector":"60a299b0","id":5803,"name":"AccessManagerNotScheduled","nameLocation":"2682:25:19","nodeType":"ErrorDefinition","parameters":{"id":5802,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5801,"mutability":"mutable","name":"operationId","nameLocation":"2716:11:19","nodeType":"VariableDeclaration","scope":5803,"src":"2708:19:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5800,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2708:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2707:21:19"},"src":"2676:53:19"},{"errorSelector":"18cb6b7a","id":5807,"name":"AccessManagerNotReady","nameLocation":"2740:21:19","nodeType":"ErrorDefinition","parameters":{"id":5806,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5805,"mutability":"mutable","name":"operationId","nameLocation":"2770:11:19","nodeType":"VariableDeclaration","scope":5807,"src":"2762:19:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5804,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2762:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2761:21:19"},"src":"2734:49:19"},{"errorSelector":"78a5d6e4","id":5811,"name":"AccessManagerExpired","nameLocation":"2794:20:19","nodeType":"ErrorDefinition","parameters":{"id":5810,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5809,"mutability":"mutable","name":"operationId","nameLocation":"2823:11:19","nodeType":"VariableDeclaration","scope":5811,"src":"2815:19:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5808,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2815:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2814:21:19"},"src":"2788:48:19"},{"errorSelector":"1871a90c","id":5815,"name":"AccessManagerLockedRole","nameLocation":"2847:23:19","nodeType":"ErrorDefinition","parameters":{"id":5814,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5813,"mutability":"mutable","name":"roleId","nameLocation":"2878:6:19","nodeType":"VariableDeclaration","scope":5815,"src":"2871:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5812,"name":"uint64","nodeType":"ElementaryTypeName","src":"2871:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"2870:15:19"},"src":"2841:45:19"},{"errorSelector":"5f159e63","id":5817,"name":"AccessManagerBadConfirmation","nameLocation":"2897:28:19","nodeType":"ErrorDefinition","parameters":{"id":5816,"nodeType":"ParameterList","parameters":[],"src":"2925:2:19"},"src":"2891:37:19"},{"errorSelector":"f07e038f","id":5823,"name":"AccessManagerUnauthorizedAccount","nameLocation":"2939:32:19","nodeType":"ErrorDefinition","parameters":{"id":5822,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5819,"mutability":"mutable","name":"msgsender","nameLocation":"2980:9:19","nodeType":"VariableDeclaration","scope":5823,"src":"2972:17:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5818,"name":"address","nodeType":"ElementaryTypeName","src":"2972:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5821,"mutability":"mutable","name":"roleId","nameLocation":"2998:6:19","nodeType":"VariableDeclaration","scope":5823,"src":"2991:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5820,"name":"uint64","nodeType":"ElementaryTypeName","src":"2991:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"2971:34:19"},"src":"2933:73:19"},{"errorSelector":"81c6f24b","id":5831,"name":"AccessManagerUnauthorizedCall","nameLocation":"3017:29:19","nodeType":"ErrorDefinition","parameters":{"id":5830,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5825,"mutability":"mutable","name":"caller","nameLocation":"3055:6:19","nodeType":"VariableDeclaration","scope":5831,"src":"3047:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5824,"name":"address","nodeType":"ElementaryTypeName","src":"3047:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5827,"mutability":"mutable","name":"target","nameLocation":"3071:6:19","nodeType":"VariableDeclaration","scope":5831,"src":"3063:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5826,"name":"address","nodeType":"ElementaryTypeName","src":"3063:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5829,"mutability":"mutable","name":"selector","nameLocation":"3086:8:19","nodeType":"VariableDeclaration","scope":5831,"src":"3079:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5828,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3079:6:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3046:49:19"},"src":"3011:85:19"},{"errorSelector":"320ff748","id":5835,"name":"AccessManagerUnauthorizedConsume","nameLocation":"3107:32:19","nodeType":"ErrorDefinition","parameters":{"id":5834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5833,"mutability":"mutable","name":"target","nameLocation":"3148:6:19","nodeType":"VariableDeclaration","scope":5835,"src":"3140:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5832,"name":"address","nodeType":"ElementaryTypeName","src":"3140:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3139:16:19"},"src":"3101:55:19"},{"errorSelector":"3fe2751c","id":5845,"name":"AccessManagerUnauthorizedCancel","nameLocation":"3167:31:19","nodeType":"ErrorDefinition","parameters":{"id":5844,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5837,"mutability":"mutable","name":"msgsender","nameLocation":"3207:9:19","nodeType":"VariableDeclaration","scope":5845,"src":"3199:17:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5836,"name":"address","nodeType":"ElementaryTypeName","src":"3199:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5839,"mutability":"mutable","name":"caller","nameLocation":"3226:6:19","nodeType":"VariableDeclaration","scope":5845,"src":"3218:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5838,"name":"address","nodeType":"ElementaryTypeName","src":"3218:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5841,"mutability":"mutable","name":"target","nameLocation":"3242:6:19","nodeType":"VariableDeclaration","scope":5845,"src":"3234:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5840,"name":"address","nodeType":"ElementaryTypeName","src":"3234:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5843,"mutability":"mutable","name":"selector","nameLocation":"3257:8:19","nodeType":"VariableDeclaration","scope":5845,"src":"3250:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5842,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3250:6:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3198:68:19"},"src":"3161:106:19"},{"errorSelector":"0813ada2","id":5849,"name":"AccessManagerInvalidInitialAdmin","nameLocation":"3278:32:19","nodeType":"ErrorDefinition","parameters":{"id":5848,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5847,"mutability":"mutable","name":"initialAdmin","nameLocation":"3319:12:19","nodeType":"VariableDeclaration","scope":5849,"src":"3311:20:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5846,"name":"address","nodeType":"ElementaryTypeName","src":"3311:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3310:22:19"},"src":"3272:61:19"},{"documentation":{"id":5850,"nodeType":"StructuredDocumentation","src":"3339:1391:19","text":" @dev Check if an address (`caller`) is authorised to call a given function on a given contract directly (with\n no restriction). Additionally, it returns the delay needed to perform the call indirectly through the {schedule}\n & {execute} workflow.\n This function is usually called by the targeted contract to control immediate execution of restricted functions.\n Therefore we only return true if the call can be performed without any delay. If the call is subject to a\n previously set delay (not zero), then the function should return false and the caller should schedule the operation\n for future execution.\n If `allowed` is true, the delay can be disregarded and the operation can be immediately executed, otherwise\n the operation can be executed if and only if delay is greater than 0.\n NOTE: The IAuthority interface does not include the `uint32` delay. This is an extension of that interface that\n is backward compatible. Some contracts may thus ignore the second return argument. In that case they will fail\n to identify the indirect workflow, and will consider calls that require a delay to be forbidden.\n NOTE: This function does not report the permissions of the admin functions in the manager itself. These are defined by the\n {AccessManager} documentation."},"functionSelector":"b7009613","id":5863,"implemented":false,"kind":"function","modifiers":[],"name":"canCall","nameLocation":"4744:7:19","nodeType":"FunctionDefinition","parameters":{"id":5857,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5852,"mutability":"mutable","name":"caller","nameLocation":"4769:6:19","nodeType":"VariableDeclaration","scope":5863,"src":"4761:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5851,"name":"address","nodeType":"ElementaryTypeName","src":"4761:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5854,"mutability":"mutable","name":"target","nameLocation":"4793:6:19","nodeType":"VariableDeclaration","scope":5863,"src":"4785:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5853,"name":"address","nodeType":"ElementaryTypeName","src":"4785:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5856,"mutability":"mutable","name":"selector","nameLocation":"4816:8:19","nodeType":"VariableDeclaration","scope":5863,"src":"4809:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5855,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4809:6:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"4751:79:19"},"returnParameters":{"id":5862,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5859,"mutability":"mutable","name":"allowed","nameLocation":"4859:7:19","nodeType":"VariableDeclaration","scope":5863,"src":"4854:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5858,"name":"bool","nodeType":"ElementaryTypeName","src":"4854:4:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5861,"mutability":"mutable","name":"delay","nameLocation":"4875:5:19","nodeType":"VariableDeclaration","scope":5863,"src":"4868:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5860,"name":"uint32","nodeType":"ElementaryTypeName","src":"4868:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"4853:28:19"},"scope":6119,"src":"4735:147:19","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":5864,"nodeType":"StructuredDocumentation","src":"4888:252:19","text":" @dev Expiration delay for scheduled proposals. Defaults to 1 week.\n IMPORTANT: Avoid overriding the expiration with 0. Otherwise every contract proposal will be expired immediately,\n disabling any scheduling usage."},"functionSelector":"4665096d","id":5869,"implemented":false,"kind":"function","modifiers":[],"name":"expiration","nameLocation":"5154:10:19","nodeType":"FunctionDefinition","parameters":{"id":5865,"nodeType":"ParameterList","parameters":[],"src":"5164:2:19"},"returnParameters":{"id":5868,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5867,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5869,"src":"5190:6:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5866,"name":"uint32","nodeType":"ElementaryTypeName","src":"5190:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"5189:8:19"},"scope":6119,"src":"5145:53:19","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":5870,"nodeType":"StructuredDocumentation","src":"5204:241:19","text":" @dev Minimum setback for all delay updates, with the exception of execution delays. It\n can be increased without setback (and reset via {revokeRole} in the event of an\n accidental increase). Defaults to 5 days."},"functionSelector":"cc1b6c81","id":5875,"implemented":false,"kind":"function","modifiers":[],"name":"minSetback","nameLocation":"5459:10:19","nodeType":"FunctionDefinition","parameters":{"id":5871,"nodeType":"ParameterList","parameters":[],"src":"5469:2:19"},"returnParameters":{"id":5874,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5873,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5875,"src":"5495:6:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5872,"name":"uint32","nodeType":"ElementaryTypeName","src":"5495:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"5494:8:19"},"scope":6119,"src":"5450:53:19","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":5876,"nodeType":"StructuredDocumentation","src":"5509:243:19","text":" @dev Get whether the contract is closed disabling any access. Otherwise role permissions are applied.\n NOTE: When the manager itself is closed, admin functions are still accessible to avoid locking the contract."},"functionSelector":"a166aa89","id":5883,"implemented":false,"kind":"function","modifiers":[],"name":"isTargetClosed","nameLocation":"5766:14:19","nodeType":"FunctionDefinition","parameters":{"id":5879,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5878,"mutability":"mutable","name":"target","nameLocation":"5789:6:19","nodeType":"VariableDeclaration","scope":5883,"src":"5781:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5877,"name":"address","nodeType":"ElementaryTypeName","src":"5781:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5780:16:19"},"returnParameters":{"id":5882,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5881,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5883,"src":"5820:4:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5880,"name":"bool","nodeType":"ElementaryTypeName","src":"5820:4:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5819:6:19"},"scope":6119,"src":"5757:69:19","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":5884,"nodeType":"StructuredDocumentation","src":"5832:65:19","text":" @dev Get the role required to call a function."},"functionSelector":"6d5115bd","id":5893,"implemented":false,"kind":"function","modifiers":[],"name":"getTargetFunctionRole","nameLocation":"5911:21:19","nodeType":"FunctionDefinition","parameters":{"id":5889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5886,"mutability":"mutable","name":"target","nameLocation":"5941:6:19","nodeType":"VariableDeclaration","scope":5893,"src":"5933:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5885,"name":"address","nodeType":"ElementaryTypeName","src":"5933:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5888,"mutability":"mutable","name":"selector","nameLocation":"5956:8:19","nodeType":"VariableDeclaration","scope":5893,"src":"5949:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5887,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5949:6:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"5932:33:19"},"returnParameters":{"id":5892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5891,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5893,"src":"5989:6:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5890,"name":"uint64","nodeType":"ElementaryTypeName","src":"5989:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"5988:8:19"},"scope":6119,"src":"5902:95:19","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":5894,"nodeType":"StructuredDocumentation","src":"6003:127:19","text":" @dev Get the admin delay for a target contract. Changes to contract configuration are subject to this delay."},"functionSelector":"4c1da1e2","id":5901,"implemented":false,"kind":"function","modifiers":[],"name":"getTargetAdminDelay","nameLocation":"6144:19:19","nodeType":"FunctionDefinition","parameters":{"id":5897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5896,"mutability":"mutable","name":"target","nameLocation":"6172:6:19","nodeType":"VariableDeclaration","scope":5901,"src":"6164:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5895,"name":"address","nodeType":"ElementaryTypeName","src":"6164:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6163:16:19"},"returnParameters":{"id":5900,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5899,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5901,"src":"6203:6:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5898,"name":"uint32","nodeType":"ElementaryTypeName","src":"6203:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"6202:8:19"},"scope":6119,"src":"6135:76:19","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":5902,"nodeType":"StructuredDocumentation","src":"6217:265:19","text":" @dev Get the id of the role that acts as an admin for the given role.\n The admin permission is required to grant the role, revoke the role and update the execution delay to execute\n an operation that is restricted to this role."},"functionSelector":"530dd456","id":5909,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"6496:12:19","nodeType":"FunctionDefinition","parameters":{"id":5905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5904,"mutability":"mutable","name":"roleId","nameLocation":"6516:6:19","nodeType":"VariableDeclaration","scope":5909,"src":"6509:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5903,"name":"uint64","nodeType":"ElementaryTypeName","src":"6509:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6508:15:19"},"returnParameters":{"id":5908,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5907,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5909,"src":"6547:6:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5906,"name":"uint64","nodeType":"ElementaryTypeName","src":"6547:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6546:8:19"},"scope":6119,"src":"6487:68:19","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":5910,"nodeType":"StructuredDocumentation","src":"6561:185:19","text":" @dev Get the role that acts as a guardian for a given role.\n The guardian permission allows canceling operations that have been scheduled under the role."},"functionSelector":"0b0a93ba","id":5917,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleGuardian","nameLocation":"6760:15:19","nodeType":"FunctionDefinition","parameters":{"id":5913,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5912,"mutability":"mutable","name":"roleId","nameLocation":"6783:6:19","nodeType":"VariableDeclaration","scope":5917,"src":"6776:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5911,"name":"uint64","nodeType":"ElementaryTypeName","src":"6776:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6775:15:19"},"returnParameters":{"id":5916,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5915,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5917,"src":"6814:6:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5914,"name":"uint64","nodeType":"ElementaryTypeName","src":"6814:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6813:8:19"},"scope":6119,"src":"6751:71:19","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":5918,"nodeType":"StructuredDocumentation","src":"6828:286:19","text":" @dev Get the role current grant delay.\n Its value may change at any point without an event emitted following a call to {setGrantDelay}.\n Changes to this value, including effect timepoint are notified in advance by the {RoleGrantDelayChanged} event."},"functionSelector":"12be8727","id":5925,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleGrantDelay","nameLocation":"7128:17:19","nodeType":"FunctionDefinition","parameters":{"id":5921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5920,"mutability":"mutable","name":"roleId","nameLocation":"7153:6:19","nodeType":"VariableDeclaration","scope":5925,"src":"7146:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5919,"name":"uint64","nodeType":"ElementaryTypeName","src":"7146:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"7145:15:19"},"returnParameters":{"id":5924,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5923,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5925,"src":"7184:6:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5922,"name":"uint32","nodeType":"ElementaryTypeName","src":"7184:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"7183:8:19"},"scope":6119,"src":"7119:73:19","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":5926,"nodeType":"StructuredDocumentation","src":"7198:600:19","text":" @dev Get the access details for a given account for a given role. These details include the timepoint at which\n membership becomes active, and the delay applied to all operations by this user that requires this permission\n level.\n Returns:\n [0] Timestamp at which the account membership becomes valid. 0 means role is not granted.\n [1] Current execution delay for the account.\n [2] Pending execution delay for the account.\n [3] Timestamp at which the pending execution delay will become active. 0 means no delay update is scheduled."},"functionSelector":"3078f114","id":5941,"implemented":false,"kind":"function","modifiers":[],"name":"getAccess","nameLocation":"7812:9:19","nodeType":"FunctionDefinition","parameters":{"id":5931,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5928,"mutability":"mutable","name":"roleId","nameLocation":"7838:6:19","nodeType":"VariableDeclaration","scope":5941,"src":"7831:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5927,"name":"uint64","nodeType":"ElementaryTypeName","src":"7831:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":5930,"mutability":"mutable","name":"account","nameLocation":"7862:7:19","nodeType":"VariableDeclaration","scope":5941,"src":"7854:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5929,"name":"address","nodeType":"ElementaryTypeName","src":"7854:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7821:54:19"},"returnParameters":{"id":5940,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5933,"mutability":"mutable","name":"since","nameLocation":"7906:5:19","nodeType":"VariableDeclaration","scope":5941,"src":"7899:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":5932,"name":"uint48","nodeType":"ElementaryTypeName","src":"7899:6:19","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":5935,"mutability":"mutable","name":"currentDelay","nameLocation":"7920:12:19","nodeType":"VariableDeclaration","scope":5941,"src":"7913:19:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5934,"name":"uint32","nodeType":"ElementaryTypeName","src":"7913:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":5937,"mutability":"mutable","name":"pendingDelay","nameLocation":"7941:12:19","nodeType":"VariableDeclaration","scope":5941,"src":"7934:19:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5936,"name":"uint32","nodeType":"ElementaryTypeName","src":"7934:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":5939,"mutability":"mutable","name":"effect","nameLocation":"7962:6:19","nodeType":"VariableDeclaration","scope":5941,"src":"7955:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":5938,"name":"uint48","nodeType":"ElementaryTypeName","src":"7955:6:19","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"7898:71:19"},"scope":6119,"src":"7803:167:19","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":5942,"nodeType":"StructuredDocumentation","src":"7976:230:19","text":" @dev Check if a given account currently has the permission level corresponding to a given role. Note that this\n permission might be associated with an execution delay. {getAccess} can provide more details."},"functionSelector":"d1f856ee","id":5953,"implemented":false,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"8220:7:19","nodeType":"FunctionDefinition","parameters":{"id":5947,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5944,"mutability":"mutable","name":"roleId","nameLocation":"8235:6:19","nodeType":"VariableDeclaration","scope":5953,"src":"8228:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5943,"name":"uint64","nodeType":"ElementaryTypeName","src":"8228:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":5946,"mutability":"mutable","name":"account","nameLocation":"8251:7:19","nodeType":"VariableDeclaration","scope":5953,"src":"8243:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5945,"name":"address","nodeType":"ElementaryTypeName","src":"8243:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8227:32:19"},"returnParameters":{"id":5952,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5949,"mutability":"mutable","name":"isMember","nameLocation":"8288:8:19","nodeType":"VariableDeclaration","scope":5953,"src":"8283:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5948,"name":"bool","nodeType":"ElementaryTypeName","src":"8283:4:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5951,"mutability":"mutable","name":"executionDelay","nameLocation":"8305:14:19","nodeType":"VariableDeclaration","scope":5953,"src":"8298:21:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5950,"name":"uint32","nodeType":"ElementaryTypeName","src":"8298:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8282:38:19"},"scope":6119,"src":"8211:110:19","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":5954,"nodeType":"StructuredDocumentation","src":"8327:208:19","text":" @dev Give a label to a role, for improved role discoverability by UIs.\n Requirements:\n - the caller must be a global admin\n Emits a {RoleLabel} event."},"functionSelector":"853551b8","id":5961,"implemented":false,"kind":"function","modifiers":[],"name":"labelRole","nameLocation":"8549:9:19","nodeType":"FunctionDefinition","parameters":{"id":5959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5956,"mutability":"mutable","name":"roleId","nameLocation":"8566:6:19","nodeType":"VariableDeclaration","scope":5961,"src":"8559:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5955,"name":"uint64","nodeType":"ElementaryTypeName","src":"8559:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":5958,"mutability":"mutable","name":"label","nameLocation":"8590:5:19","nodeType":"VariableDeclaration","scope":5961,"src":"8574:21:19","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":5957,"name":"string","nodeType":"ElementaryTypeName","src":"8574:6:19","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8558:38:19"},"returnParameters":{"id":5960,"nodeType":"ParameterList","parameters":[],"src":"8605:0:19"},"scope":6119,"src":"8540:66:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":5962,"nodeType":"StructuredDocumentation","src":"8612:1222:19","text":" @dev Add `account` to `roleId`, or change its execution delay.\n This gives the account the authorization to call any function that is restricted to this role. An optional\n execution delay (in seconds) can be set. If that delay is non 0, the user is required to schedule any operation\n that is restricted to members of this role. The user will only be able to execute the operation after the delay has\n passed, before it has expired. During this period, admin and guardians can cancel the operation (see {cancel}).\n If the account has already been granted this role, the execution delay will be updated. This update is not\n immediate and follows the delay rules. For example, if a user currently has a delay of 3 hours, and this is\n called to reduce that delay to 1 hour, the new delay will take some time to take effect, enforcing that any\n operation executed in the 3 hours that follows this update was indeed scheduled before this update.\n Requirements:\n - the caller must be an admin for the role (see {getRoleAdmin})\n - granted role must not be the `PUBLIC_ROLE`\n Emits a {RoleGranted} event."},"functionSelector":"25c471a0","id":5971,"implemented":false,"kind":"function","modifiers":[],"name":"grantRole","nameLocation":"9848:9:19","nodeType":"FunctionDefinition","parameters":{"id":5969,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5964,"mutability":"mutable","name":"roleId","nameLocation":"9865:6:19","nodeType":"VariableDeclaration","scope":5971,"src":"9858:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5963,"name":"uint64","nodeType":"ElementaryTypeName","src":"9858:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":5966,"mutability":"mutable","name":"account","nameLocation":"9881:7:19","nodeType":"VariableDeclaration","scope":5971,"src":"9873:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5965,"name":"address","nodeType":"ElementaryTypeName","src":"9873:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5968,"mutability":"mutable","name":"executionDelay","nameLocation":"9897:14:19","nodeType":"VariableDeclaration","scope":5971,"src":"9890:21:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5967,"name":"uint32","nodeType":"ElementaryTypeName","src":"9890:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"9857:55:19"},"returnParameters":{"id":5970,"nodeType":"ParameterList","parameters":[],"src":"9921:0:19"},"scope":6119,"src":"9839:83:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":5972,"nodeType":"StructuredDocumentation","src":"9928:377:19","text":" @dev Remove an account from a role, with immediate effect. If the account does not have the role, this call has\n no effect.\n Requirements:\n - the caller must be an admin for the role (see {getRoleAdmin})\n - revoked role must not be the `PUBLIC_ROLE`\n Emits a {RoleRevoked} event if the account had the role."},"functionSelector":"b7d2b162","id":5979,"implemented":false,"kind":"function","modifiers":[],"name":"revokeRole","nameLocation":"10319:10:19","nodeType":"FunctionDefinition","parameters":{"id":5977,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5974,"mutability":"mutable","name":"roleId","nameLocation":"10337:6:19","nodeType":"VariableDeclaration","scope":5979,"src":"10330:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5973,"name":"uint64","nodeType":"ElementaryTypeName","src":"10330:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":5976,"mutability":"mutable","name":"account","nameLocation":"10353:7:19","nodeType":"VariableDeclaration","scope":5979,"src":"10345:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5975,"name":"address","nodeType":"ElementaryTypeName","src":"10345:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10329:32:19"},"returnParameters":{"id":5978,"nodeType":"ParameterList","parameters":[],"src":"10370:0:19"},"scope":6119,"src":"10310:61:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":5980,"nodeType":"StructuredDocumentation","src":"10377:317:19","text":" @dev Renounce role permissions for the calling account with immediate effect. If the sender is not in\n the role this call has no effect.\n Requirements:\n - the caller must be `callerConfirmation`.\n Emits a {RoleRevoked} event if the account had the role."},"functionSelector":"fe0776f5","id":5987,"implemented":false,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"10708:12:19","nodeType":"FunctionDefinition","parameters":{"id":5985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5982,"mutability":"mutable","name":"roleId","nameLocation":"10728:6:19","nodeType":"VariableDeclaration","scope":5987,"src":"10721:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5981,"name":"uint64","nodeType":"ElementaryTypeName","src":"10721:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":5984,"mutability":"mutable","name":"callerConfirmation","nameLocation":"10744:18:19","nodeType":"VariableDeclaration","scope":5987,"src":"10736:26:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5983,"name":"address","nodeType":"ElementaryTypeName","src":"10736:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10720:43:19"},"returnParameters":{"id":5986,"nodeType":"ParameterList","parameters":[],"src":"10772:0:19"},"scope":6119,"src":"10699:74:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":5988,"nodeType":"StructuredDocumentation","src":"10779:184:19","text":" @dev Change admin role for a given role.\n Requirements:\n - the caller must be a global admin\n Emits a {RoleAdminChanged} event"},"functionSelector":"30cae187","id":5995,"implemented":false,"kind":"function","modifiers":[],"name":"setRoleAdmin","nameLocation":"10977:12:19","nodeType":"FunctionDefinition","parameters":{"id":5993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5990,"mutability":"mutable","name":"roleId","nameLocation":"10997:6:19","nodeType":"VariableDeclaration","scope":5995,"src":"10990:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5989,"name":"uint64","nodeType":"ElementaryTypeName","src":"10990:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":5992,"mutability":"mutable","name":"admin","nameLocation":"11012:5:19","nodeType":"VariableDeclaration","scope":5995,"src":"11005:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5991,"name":"uint64","nodeType":"ElementaryTypeName","src":"11005:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"10989:29:19"},"returnParameters":{"id":5994,"nodeType":"ParameterList","parameters":[],"src":"11027:0:19"},"scope":6119,"src":"10968:60:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":5996,"nodeType":"StructuredDocumentation","src":"11034:190:19","text":" @dev Change guardian role for a given role.\n Requirements:\n - the caller must be a global admin\n Emits a {RoleGuardianChanged} event"},"functionSelector":"52962952","id":6003,"implemented":false,"kind":"function","modifiers":[],"name":"setRoleGuardian","nameLocation":"11238:15:19","nodeType":"FunctionDefinition","parameters":{"id":6001,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5998,"mutability":"mutable","name":"roleId","nameLocation":"11261:6:19","nodeType":"VariableDeclaration","scope":6003,"src":"11254:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5997,"name":"uint64","nodeType":"ElementaryTypeName","src":"11254:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":6000,"mutability":"mutable","name":"guardian","nameLocation":"11276:8:19","nodeType":"VariableDeclaration","scope":6003,"src":"11269:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5999,"name":"uint64","nodeType":"ElementaryTypeName","src":"11269:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"11253:32:19"},"returnParameters":{"id":6002,"nodeType":"ParameterList","parameters":[],"src":"11294:0:19"},"scope":6119,"src":"11229:66:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6004,"nodeType":"StructuredDocumentation","src":"11301:196:19","text":" @dev Update the delay for granting a `roleId`.\n Requirements:\n - the caller must be a global admin\n Emits a {RoleGrantDelayChanged} event."},"functionSelector":"a64d95ce","id":6011,"implemented":false,"kind":"function","modifiers":[],"name":"setGrantDelay","nameLocation":"11511:13:19","nodeType":"FunctionDefinition","parameters":{"id":6009,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6006,"mutability":"mutable","name":"roleId","nameLocation":"11532:6:19","nodeType":"VariableDeclaration","scope":6011,"src":"11525:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":6005,"name":"uint64","nodeType":"ElementaryTypeName","src":"11525:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":6008,"mutability":"mutable","name":"newDelay","nameLocation":"11547:8:19","nodeType":"VariableDeclaration","scope":6011,"src":"11540:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":6007,"name":"uint32","nodeType":"ElementaryTypeName","src":"11540:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"11524:32:19"},"returnParameters":{"id":6010,"nodeType":"ParameterList","parameters":[],"src":"11565:0:19"},"scope":6119,"src":"11502:64:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6012,"nodeType":"StructuredDocumentation","src":"11572:267:19","text":" @dev Set the role required to call functions identified by the `selectors` in the `target` contract.\n Requirements:\n - the caller must be a global admin\n Emits a {TargetFunctionRoleUpdated} event per selector."},"functionSelector":"08d6122d","id":6022,"implemented":false,"kind":"function","modifiers":[],"name":"setTargetFunctionRole","nameLocation":"11853:21:19","nodeType":"FunctionDefinition","parameters":{"id":6020,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6014,"mutability":"mutable","name":"target","nameLocation":"11883:6:19","nodeType":"VariableDeclaration","scope":6022,"src":"11875:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6013,"name":"address","nodeType":"ElementaryTypeName","src":"11875:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6017,"mutability":"mutable","name":"selectors","nameLocation":"11909:9:19","nodeType":"VariableDeclaration","scope":6022,"src":"11891:27:19","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_calldata_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":6015,"name":"bytes4","nodeType":"ElementaryTypeName","src":"11891:6:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":6016,"nodeType":"ArrayTypeName","src":"11891:8:19","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"},{"constant":false,"id":6019,"mutability":"mutable","name":"roleId","nameLocation":"11927:6:19","nodeType":"VariableDeclaration","scope":6022,"src":"11920:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":6018,"name":"uint64","nodeType":"ElementaryTypeName","src":"11920:6:19","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"11874:60:19"},"returnParameters":{"id":6021,"nodeType":"ParameterList","parameters":[],"src":"11943:0:19"},"scope":6119,"src":"11844:100:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6023,"nodeType":"StructuredDocumentation","src":"11950:229:19","text":" @dev Set the delay for changing the configuration of a given target contract.\n Requirements:\n - the caller must be a global admin\n Emits a {TargetAdminDelayUpdated} event."},"functionSelector":"d22b5989","id":6030,"implemented":false,"kind":"function","modifiers":[],"name":"setTargetAdminDelay","nameLocation":"12193:19:19","nodeType":"FunctionDefinition","parameters":{"id":6028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6025,"mutability":"mutable","name":"target","nameLocation":"12221:6:19","nodeType":"VariableDeclaration","scope":6030,"src":"12213:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6024,"name":"address","nodeType":"ElementaryTypeName","src":"12213:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6027,"mutability":"mutable","name":"newDelay","nameLocation":"12236:8:19","nodeType":"VariableDeclaration","scope":6030,"src":"12229:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":6026,"name":"uint32","nodeType":"ElementaryTypeName","src":"12229:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"12212:33:19"},"returnParameters":{"id":6029,"nodeType":"ParameterList","parameters":[],"src":"12254:0:19"},"scope":6119,"src":"12184:71:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6031,"nodeType":"StructuredDocumentation","src":"12261:291:19","text":" @dev Set the closed flag for a contract.\n Closing the manager itself won't disable access to admin methods to avoid locking the contract.\n Requirements:\n - the caller must be a global admin\n Emits a {TargetClosed} event."},"functionSelector":"167bd395","id":6038,"implemented":false,"kind":"function","modifiers":[],"name":"setTargetClosed","nameLocation":"12566:15:19","nodeType":"FunctionDefinition","parameters":{"id":6036,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6033,"mutability":"mutable","name":"target","nameLocation":"12590:6:19","nodeType":"VariableDeclaration","scope":6038,"src":"12582:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6032,"name":"address","nodeType":"ElementaryTypeName","src":"12582:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6035,"mutability":"mutable","name":"closed","nameLocation":"12603:6:19","nodeType":"VariableDeclaration","scope":6038,"src":"12598:11:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6034,"name":"bool","nodeType":"ElementaryTypeName","src":"12598:4:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12581:29:19"},"returnParameters":{"id":6037,"nodeType":"ParameterList","parameters":[],"src":"12619:0:19"},"scope":6119,"src":"12557:63:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6039,"nodeType":"StructuredDocumentation","src":"12626:209:19","text":" @dev Return the timepoint at which a scheduled operation will be ready for execution. This returns 0 if the\n operation is not yet scheduled, has expired, was executed, or was canceled."},"functionSelector":"3adc277a","id":6046,"implemented":false,"kind":"function","modifiers":[],"name":"getSchedule","nameLocation":"12849:11:19","nodeType":"FunctionDefinition","parameters":{"id":6042,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6041,"mutability":"mutable","name":"id","nameLocation":"12869:2:19","nodeType":"VariableDeclaration","scope":6046,"src":"12861:10:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6040,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12861:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"12860:12:19"},"returnParameters":{"id":6045,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6044,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6046,"src":"12896:6:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":6043,"name":"uint48","nodeType":"ElementaryTypeName","src":"12896:6:19","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"12895:8:19"},"scope":6119,"src":"12840:64:19","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6047,"nodeType":"StructuredDocumentation","src":"12910:152:19","text":" @dev Return the nonce for the latest scheduled operation with a given id. Returns 0 if the operation has never\n been scheduled."},"functionSelector":"4136a33c","id":6054,"implemented":false,"kind":"function","modifiers":[],"name":"getNonce","nameLocation":"13076:8:19","nodeType":"FunctionDefinition","parameters":{"id":6050,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6049,"mutability":"mutable","name":"id","nameLocation":"13093:2:19","nodeType":"VariableDeclaration","scope":6054,"src":"13085:10:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6048,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13085:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"13084:12:19"},"returnParameters":{"id":6053,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6052,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6054,"src":"13120:6:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":6051,"name":"uint32","nodeType":"ElementaryTypeName","src":"13120:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"13119:8:19"},"scope":6119,"src":"13067:61:19","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6055,"nodeType":"StructuredDocumentation","src":"13134:1068:19","text":" @dev Schedule a delayed operation for future execution, and return the operation identifier. It is possible to\n choose the timestamp at which the operation becomes executable as long as it satisfies the execution delays\n required for the caller. The special value zero will automatically set the earliest possible time.\n Returns the `operationId` that was scheduled. Since this value is a hash of the parameters, it can reoccur when\n the same parameters are used; if this is relevant, the returned `nonce` can be used to uniquely identify this\n scheduled operation from other occurrences of the same `operationId` in invocations of {execute} and {cancel}.\n Emits a {OperationScheduled} event.\n NOTE: It is not possible to concurrently schedule more than one operation with the same `target` and `data`. If\n this is necessary, a random byte can be appended to `data` to act as a salt that will be ignored by the target\n contract if it is using standard Solidity ABI encoding."},"functionSelector":"f801a698","id":6068,"implemented":false,"kind":"function","modifiers":[],"name":"schedule","nameLocation":"14216:8:19","nodeType":"FunctionDefinition","parameters":{"id":6062,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6057,"mutability":"mutable","name":"target","nameLocation":"14242:6:19","nodeType":"VariableDeclaration","scope":6068,"src":"14234:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6056,"name":"address","nodeType":"ElementaryTypeName","src":"14234:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6059,"mutability":"mutable","name":"data","nameLocation":"14273:4:19","nodeType":"VariableDeclaration","scope":6068,"src":"14258:19:19","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":6058,"name":"bytes","nodeType":"ElementaryTypeName","src":"14258:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":6061,"mutability":"mutable","name":"when","nameLocation":"14294:4:19","nodeType":"VariableDeclaration","scope":6068,"src":"14287:11:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":6060,"name":"uint48","nodeType":"ElementaryTypeName","src":"14287:6:19","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"14224:80:19"},"returnParameters":{"id":6067,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6064,"mutability":"mutable","name":"operationId","nameLocation":"14331:11:19","nodeType":"VariableDeclaration","scope":6068,"src":"14323:19:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6063,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14323:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":6066,"mutability":"mutable","name":"nonce","nameLocation":"14351:5:19","nodeType":"VariableDeclaration","scope":6068,"src":"14344:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":6065,"name":"uint32","nodeType":"ElementaryTypeName","src":"14344:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"14322:35:19"},"scope":6119,"src":"14207:151:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6069,"nodeType":"StructuredDocumentation","src":"14364:451:19","text":" @dev Execute a function that is delay restricted, provided it was properly scheduled beforehand, or the\n execution delay is 0.\n Returns the nonce that identifies the previously scheduled operation that is executed, or 0 if the\n operation wasn't previously scheduled (if the caller doesn't have an execution delay).\n Emits an {OperationExecuted} event only if the call was scheduled and delayed."},"functionSelector":"1cff79cd","id":6078,"implemented":false,"kind":"function","modifiers":[],"name":"execute","nameLocation":"14829:7:19","nodeType":"FunctionDefinition","parameters":{"id":6074,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6071,"mutability":"mutable","name":"target","nameLocation":"14845:6:19","nodeType":"VariableDeclaration","scope":6078,"src":"14837:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6070,"name":"address","nodeType":"ElementaryTypeName","src":"14837:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6073,"mutability":"mutable","name":"data","nameLocation":"14868:4:19","nodeType":"VariableDeclaration","scope":6078,"src":"14853:19:19","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":6072,"name":"bytes","nodeType":"ElementaryTypeName","src":"14853:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"14836:37:19"},"returnParameters":{"id":6077,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6076,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6078,"src":"14900:6:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":6075,"name":"uint32","nodeType":"ElementaryTypeName","src":"14900:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"14899:8:19"},"scope":6119,"src":"14820:88:19","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":6079,"nodeType":"StructuredDocumentation","src":"14914:339:19","text":" @dev Cancel a scheduled (delayed) operation. Returns the nonce that identifies the previously scheduled\n operation that is cancelled.\n Requirements:\n - the caller must be the proposer, a guardian of the targeted function, or a global admin\n Emits a {OperationCanceled} event."},"functionSelector":"d6bb62c6","id":6090,"implemented":false,"kind":"function","modifiers":[],"name":"cancel","nameLocation":"15267:6:19","nodeType":"FunctionDefinition","parameters":{"id":6086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6081,"mutability":"mutable","name":"caller","nameLocation":"15282:6:19","nodeType":"VariableDeclaration","scope":6090,"src":"15274:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6080,"name":"address","nodeType":"ElementaryTypeName","src":"15274:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6083,"mutability":"mutable","name":"target","nameLocation":"15298:6:19","nodeType":"VariableDeclaration","scope":6090,"src":"15290:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6082,"name":"address","nodeType":"ElementaryTypeName","src":"15290:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6085,"mutability":"mutable","name":"data","nameLocation":"15321:4:19","nodeType":"VariableDeclaration","scope":6090,"src":"15306:19:19","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":6084,"name":"bytes","nodeType":"ElementaryTypeName","src":"15306:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15273:53:19"},"returnParameters":{"id":6089,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6088,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6090,"src":"15345:6:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":6087,"name":"uint32","nodeType":"ElementaryTypeName","src":"15345:6:19","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"15344:8:19"},"scope":6119,"src":"15258:95:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6091,"nodeType":"StructuredDocumentation","src":"15359:435:19","text":" @dev Consume a scheduled operation targeting the caller. If such an operation exists, mark it as consumed\n (emit an {OperationExecuted} event and clean the state). Otherwise, throw an error.\n This is useful for contracts that want to enforce that calls targeting them were scheduled on the manager,\n with all the verifications that it implies.\n Emit a {OperationExecuted} event."},"functionSelector":"94c7d7ee","id":6098,"implemented":false,"kind":"function","modifiers":[],"name":"consumeScheduledOp","nameLocation":"15808:18:19","nodeType":"FunctionDefinition","parameters":{"id":6096,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6093,"mutability":"mutable","name":"caller","nameLocation":"15835:6:19","nodeType":"VariableDeclaration","scope":6098,"src":"15827:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6092,"name":"address","nodeType":"ElementaryTypeName","src":"15827:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6095,"mutability":"mutable","name":"data","nameLocation":"15858:4:19","nodeType":"VariableDeclaration","scope":6098,"src":"15843:19:19","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":6094,"name":"bytes","nodeType":"ElementaryTypeName","src":"15843:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15826:37:19"},"returnParameters":{"id":6097,"nodeType":"ParameterList","parameters":[],"src":"15872:0:19"},"scope":6119,"src":"15799:74:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6099,"nodeType":"StructuredDocumentation","src":"15879:64:19","text":" @dev Hashing function for delayed operations."},"functionSelector":"abd9bd2a","id":6110,"implemented":false,"kind":"function","modifiers":[],"name":"hashOperation","nameLocation":"15957:13:19","nodeType":"FunctionDefinition","parameters":{"id":6106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6101,"mutability":"mutable","name":"caller","nameLocation":"15979:6:19","nodeType":"VariableDeclaration","scope":6110,"src":"15971:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6100,"name":"address","nodeType":"ElementaryTypeName","src":"15971:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6103,"mutability":"mutable","name":"target","nameLocation":"15995:6:19","nodeType":"VariableDeclaration","scope":6110,"src":"15987:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6102,"name":"address","nodeType":"ElementaryTypeName","src":"15987:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6105,"mutability":"mutable","name":"data","nameLocation":"16018:4:19","nodeType":"VariableDeclaration","scope":6110,"src":"16003:19:19","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":6104,"name":"bytes","nodeType":"ElementaryTypeName","src":"16003:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15970:53:19"},"returnParameters":{"id":6109,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6108,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6110,"src":"16047:7:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6107,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16047:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"16046:9:19"},"scope":6119,"src":"15948:108:19","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6111,"nodeType":"StructuredDocumentation","src":"16062:169:19","text":" @dev Changes the authority of a target managed by this manager instance.\n Requirements:\n - the caller must be a global admin"},"functionSelector":"18ff183c","id":6118,"implemented":false,"kind":"function","modifiers":[],"name":"updateAuthority","nameLocation":"16245:15:19","nodeType":"FunctionDefinition","parameters":{"id":6116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6113,"mutability":"mutable","name":"target","nameLocation":"16269:6:19","nodeType":"VariableDeclaration","scope":6118,"src":"16261:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6112,"name":"address","nodeType":"ElementaryTypeName","src":"16261:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6115,"mutability":"mutable","name":"newAuthority","nameLocation":"16285:12:19","nodeType":"VariableDeclaration","scope":6118,"src":"16277:20:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6114,"name":"address","nodeType":"ElementaryTypeName","src":"16277:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"16260:38:19"},"returnParameters":{"id":6117,"nodeType":"ParameterList","parameters":[],"src":"16307:0:19"},"scope":6119,"src":"16236:72:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":6120,"src":"143:16167:19","usedErrors":[5799,5803,5807,5811,5815,5817,5823,5831,5835,5845,5849],"usedEvents":[5706,5713,5720,5727,5740,5747,5754,5761,5770,5777,5786,5795]}],"src":"117:16194:19"},"id":19},"@openzeppelin/contracts/interfaces/IERC1363.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1363.sol","exportedSymbols":{"IERC1363":[6201],"IERC165":[14272],"IERC20":[7977]},"id":6202,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6121,"literals":["solidity",">=","0.6",".2"],"nodeType":"PragmaDirective","src":"107:24:20"},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","file":"./IERC20.sol","id":6123,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6202,"sourceUnit":6231,"src":"133:36:20","symbolAliases":[{"foreign":{"id":6122,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"141:6:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","file":"./IERC165.sol","id":6125,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6202,"sourceUnit":6206,"src":"170:38:20","symbolAliases":[{"foreign":{"id":6124,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"178:7:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":6127,"name":"IERC20","nameLocations":["590:6:20"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"590:6:20"},"id":6128,"nodeType":"InheritanceSpecifier","src":"590:6:20"},{"baseName":{"id":6129,"name":"IERC165","nameLocations":["598:7:20"],"nodeType":"IdentifierPath","referencedDeclaration":14272,"src":"598:7:20"},"id":6130,"nodeType":"InheritanceSpecifier","src":"598:7:20"}],"canonicalName":"IERC1363","contractDependencies":[],"contractKind":"interface","documentation":{"id":6126,"nodeType":"StructuredDocumentation","src":"210:357:20","text":" @title IERC1363\n @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].\n Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract\n after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction."},"fullyImplemented":false,"id":6201,"linearizedBaseContracts":[6201,14272,7977],"name":"IERC1363","nameLocation":"578:8:20","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6131,"nodeType":"StructuredDocumentation","src":"1148:370:20","text":" @dev Moves a `value` amount of tokens from the caller's account to `to`\n and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n @param to The address which you want to transfer to.\n @param value The amount of tokens to be transferred.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"1296ee62","id":6140,"implemented":false,"kind":"function","modifiers":[],"name":"transferAndCall","nameLocation":"1532:15:20","nodeType":"FunctionDefinition","parameters":{"id":6136,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6133,"mutability":"mutable","name":"to","nameLocation":"1556:2:20","nodeType":"VariableDeclaration","scope":6140,"src":"1548:10:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6132,"name":"address","nodeType":"ElementaryTypeName","src":"1548:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6135,"mutability":"mutable","name":"value","nameLocation":"1568:5:20","nodeType":"VariableDeclaration","scope":6140,"src":"1560:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6134,"name":"uint256","nodeType":"ElementaryTypeName","src":"1560:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1547:27:20"},"returnParameters":{"id":6139,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6138,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6140,"src":"1593:4:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6137,"name":"bool","nodeType":"ElementaryTypeName","src":"1593:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1592:6:20"},"scope":6201,"src":"1523:76:20","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6141,"nodeType":"StructuredDocumentation","src":"1605:453:20","text":" @dev Moves a `value` amount of tokens from the caller's account to `to`\n and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n @param to The address which you want to transfer to.\n @param value The amount of tokens to be transferred.\n @param data Additional data with no specified format, sent in call to `to`.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"4000aea0","id":6152,"implemented":false,"kind":"function","modifiers":[],"name":"transferAndCall","nameLocation":"2072:15:20","nodeType":"FunctionDefinition","parameters":{"id":6148,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6143,"mutability":"mutable","name":"to","nameLocation":"2096:2:20","nodeType":"VariableDeclaration","scope":6152,"src":"2088:10:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6142,"name":"address","nodeType":"ElementaryTypeName","src":"2088:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6145,"mutability":"mutable","name":"value","nameLocation":"2108:5:20","nodeType":"VariableDeclaration","scope":6152,"src":"2100:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6144,"name":"uint256","nodeType":"ElementaryTypeName","src":"2100:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6147,"mutability":"mutable","name":"data","nameLocation":"2130:4:20","nodeType":"VariableDeclaration","scope":6152,"src":"2115:19:20","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":6146,"name":"bytes","nodeType":"ElementaryTypeName","src":"2115:5:20","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2087:48:20"},"returnParameters":{"id":6151,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6150,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6152,"src":"2154:4:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6149,"name":"bool","nodeType":"ElementaryTypeName","src":"2154:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2153:6:20"},"scope":6201,"src":"2063:97:20","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6153,"nodeType":"StructuredDocumentation","src":"2166:453:20","text":" @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism\n and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n @param from The address which you want to send tokens from.\n @param to The address which you want to transfer to.\n @param value The amount of tokens to be transferred.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"d8fbe994","id":6164,"implemented":false,"kind":"function","modifiers":[],"name":"transferFromAndCall","nameLocation":"2633:19:20","nodeType":"FunctionDefinition","parameters":{"id":6160,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6155,"mutability":"mutable","name":"from","nameLocation":"2661:4:20","nodeType":"VariableDeclaration","scope":6164,"src":"2653:12:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6154,"name":"address","nodeType":"ElementaryTypeName","src":"2653:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6157,"mutability":"mutable","name":"to","nameLocation":"2675:2:20","nodeType":"VariableDeclaration","scope":6164,"src":"2667:10:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6156,"name":"address","nodeType":"ElementaryTypeName","src":"2667:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6159,"mutability":"mutable","name":"value","nameLocation":"2687:5:20","nodeType":"VariableDeclaration","scope":6164,"src":"2679:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6158,"name":"uint256","nodeType":"ElementaryTypeName","src":"2679:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2652:41:20"},"returnParameters":{"id":6163,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6162,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6164,"src":"2712:4:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6161,"name":"bool","nodeType":"ElementaryTypeName","src":"2712:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2711:6:20"},"scope":6201,"src":"2624:94:20","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6165,"nodeType":"StructuredDocumentation","src":"2724:536:20","text":" @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism\n and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n @param from The address which you want to send tokens from.\n @param to The address which you want to transfer to.\n @param value The amount of tokens to be transferred.\n @param data Additional data with no specified format, sent in call to `to`.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"c1d34b89","id":6178,"implemented":false,"kind":"function","modifiers":[],"name":"transferFromAndCall","nameLocation":"3274:19:20","nodeType":"FunctionDefinition","parameters":{"id":6174,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6167,"mutability":"mutable","name":"from","nameLocation":"3302:4:20","nodeType":"VariableDeclaration","scope":6178,"src":"3294:12:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6166,"name":"address","nodeType":"ElementaryTypeName","src":"3294:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6169,"mutability":"mutable","name":"to","nameLocation":"3316:2:20","nodeType":"VariableDeclaration","scope":6178,"src":"3308:10:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6168,"name":"address","nodeType":"ElementaryTypeName","src":"3308:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6171,"mutability":"mutable","name":"value","nameLocation":"3328:5:20","nodeType":"VariableDeclaration","scope":6178,"src":"3320:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6170,"name":"uint256","nodeType":"ElementaryTypeName","src":"3320:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6173,"mutability":"mutable","name":"data","nameLocation":"3350:4:20","nodeType":"VariableDeclaration","scope":6178,"src":"3335:19:20","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":6172,"name":"bytes","nodeType":"ElementaryTypeName","src":"3335:5:20","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3293:62:20"},"returnParameters":{"id":6177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6176,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6178,"src":"3374:4:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6175,"name":"bool","nodeType":"ElementaryTypeName","src":"3374:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3373:6:20"},"scope":6201,"src":"3265:115:20","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6179,"nodeType":"StructuredDocumentation","src":"3386:390:20","text":" @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\n @param spender The address which will spend the funds.\n @param value The amount of tokens to be spent.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"3177029f","id":6188,"implemented":false,"kind":"function","modifiers":[],"name":"approveAndCall","nameLocation":"3790:14:20","nodeType":"FunctionDefinition","parameters":{"id":6184,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6181,"mutability":"mutable","name":"spender","nameLocation":"3813:7:20","nodeType":"VariableDeclaration","scope":6188,"src":"3805:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6180,"name":"address","nodeType":"ElementaryTypeName","src":"3805:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6183,"mutability":"mutable","name":"value","nameLocation":"3830:5:20","nodeType":"VariableDeclaration","scope":6188,"src":"3822:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6182,"name":"uint256","nodeType":"ElementaryTypeName","src":"3822:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3804:32:20"},"returnParameters":{"id":6187,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6186,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6188,"src":"3855:4:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6185,"name":"bool","nodeType":"ElementaryTypeName","src":"3855:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3854:6:20"},"scope":6201,"src":"3781:80:20","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6189,"nodeType":"StructuredDocumentation","src":"3867:478:20","text":" @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\n @param spender The address which will spend the funds.\n @param value The amount of tokens to be spent.\n @param data Additional data with no specified format, sent in call to `spender`.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"cae9ca51","id":6200,"implemented":false,"kind":"function","modifiers":[],"name":"approveAndCall","nameLocation":"4359:14:20","nodeType":"FunctionDefinition","parameters":{"id":6196,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6191,"mutability":"mutable","name":"spender","nameLocation":"4382:7:20","nodeType":"VariableDeclaration","scope":6200,"src":"4374:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6190,"name":"address","nodeType":"ElementaryTypeName","src":"4374:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6193,"mutability":"mutable","name":"value","nameLocation":"4399:5:20","nodeType":"VariableDeclaration","scope":6200,"src":"4391:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6192,"name":"uint256","nodeType":"ElementaryTypeName","src":"4391:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6195,"mutability":"mutable","name":"data","nameLocation":"4421:4:20","nodeType":"VariableDeclaration","scope":6200,"src":"4406:19:20","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":6194,"name":"bytes","nodeType":"ElementaryTypeName","src":"4406:5:20","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4373:53:20"},"returnParameters":{"id":6199,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6198,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6200,"src":"4445:4:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6197,"name":"bool","nodeType":"ElementaryTypeName","src":"4445:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4444:6:20"},"scope":6201,"src":"4350:101:20","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":6202,"src":"568:3885:20","usedErrors":[],"usedEvents":[7911,7920]}],"src":"107:4347:20"},"id":20},"@openzeppelin/contracts/interfaces/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","exportedSymbols":{"IERC165":[14272]},"id":6206,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6203,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"106:25:21"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../utils/introspection/IERC165.sol","id":6205,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6206,"sourceUnit":14273,"src":"133:59:21","symbolAliases":[{"foreign":{"id":6204,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"141:7:21","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"106:87:21"},"id":21},"@openzeppelin/contracts/interfaces/IERC1967.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1967.sol","exportedSymbols":{"IERC1967":[6226]},"id":6227,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6207,"literals":["solidity",">=","0.4",".11"],"nodeType":"PragmaDirective","src":"107:25:22"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1967","contractDependencies":[],"contractKind":"interface","documentation":{"id":6208,"nodeType":"StructuredDocumentation","src":"134:101:22","text":" @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC."},"fullyImplemented":true,"id":6226,"linearizedBaseContracts":[6226],"name":"IERC1967","nameLocation":"246:8:22","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":6209,"nodeType":"StructuredDocumentation","src":"261:68:22","text":" @dev Emitted when the implementation is upgraded."},"eventSelector":"bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b","id":6213,"name":"Upgraded","nameLocation":"340:8:22","nodeType":"EventDefinition","parameters":{"id":6212,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6211,"indexed":true,"mutability":"mutable","name":"implementation","nameLocation":"365:14:22","nodeType":"VariableDeclaration","scope":6213,"src":"349:30:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6210,"name":"address","nodeType":"ElementaryTypeName","src":"349:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"348:32:22"},"src":"334:47:22"},{"anonymous":false,"documentation":{"id":6214,"nodeType":"StructuredDocumentation","src":"387:67:22","text":" @dev Emitted when the admin account has changed."},"eventSelector":"7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f","id":6220,"name":"AdminChanged","nameLocation":"465:12:22","nodeType":"EventDefinition","parameters":{"id":6219,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6216,"indexed":false,"mutability":"mutable","name":"previousAdmin","nameLocation":"486:13:22","nodeType":"VariableDeclaration","scope":6220,"src":"478:21:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6215,"name":"address","nodeType":"ElementaryTypeName","src":"478:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6218,"indexed":false,"mutability":"mutable","name":"newAdmin","nameLocation":"509:8:22","nodeType":"VariableDeclaration","scope":6220,"src":"501:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6217,"name":"address","nodeType":"ElementaryTypeName","src":"501:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"477:41:22"},"src":"459:60:22"},{"anonymous":false,"documentation":{"id":6221,"nodeType":"StructuredDocumentation","src":"525:59:22","text":" @dev Emitted when the beacon is changed."},"eventSelector":"1cf3b03a6cf19fa2baba4df148e9dcabedea7f8a5c07840e207e5c089be95d3e","id":6225,"name":"BeaconUpgraded","nameLocation":"595:14:22","nodeType":"EventDefinition","parameters":{"id":6224,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6223,"indexed":true,"mutability":"mutable","name":"beacon","nameLocation":"626:6:22","nodeType":"VariableDeclaration","scope":6225,"src":"610:22:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6222,"name":"address","nodeType":"ElementaryTypeName","src":"610:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"609:24:22"},"src":"589:45:22"}],"scope":6227,"src":"236:400:22","usedErrors":[],"usedEvents":[6213,6220,6225]}],"src":"107:530:22"},"id":22},"@openzeppelin/contracts/interfaces/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","exportedSymbols":{"IERC20":[7977]},"id":6231,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6228,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"105:25:23"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../token/ERC20/IERC20.sol","id":6230,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6231,"sourceUnit":7978,"src":"132:49:23","symbolAliases":[{"foreign":{"id":6229,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"140:6:23","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"105:77:23"},"id":23},"@openzeppelin/contracts/interfaces/IERC4626.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","exportedSymbols":{"IERC20":[7977],"IERC20Metadata":[8863],"IERC4626":[6400]},"id":6401,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6232,"literals":["solidity",">=","0.6",".2"],"nodeType":"PragmaDirective","src":"107:24:24"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../token/ERC20/IERC20.sol","id":6234,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6401,"sourceUnit":7978,"src":"133:49:24","symbolAliases":[{"foreign":{"id":6233,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"141:6:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"../token/ERC20/extensions/IERC20Metadata.sol","id":6236,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6401,"sourceUnit":8864,"src":"183:76:24","symbolAliases":[{"foreign":{"id":6235,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"191:14:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":6238,"name":"IERC20","nameLocations":["421:6:24"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"421:6:24"},"id":6239,"nodeType":"InheritanceSpecifier","src":"421:6:24"},{"baseName":{"id":6240,"name":"IERC20Metadata","nameLocations":["429:14:24"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"429:14:24"},"id":6241,"nodeType":"InheritanceSpecifier","src":"429:14:24"}],"canonicalName":"IERC4626","contractDependencies":[],"contractKind":"interface","documentation":{"id":6237,"nodeType":"StructuredDocumentation","src":"261:137:24","text":" @dev Interface of the ERC-4626 \"Tokenized Vault Standard\", as defined in\n https://eips.ethereum.org/EIPS/eip-4626[ERC-4626]."},"fullyImplemented":false,"id":6400,"linearizedBaseContracts":[6400,8863,7977],"name":"IERC4626","nameLocation":"409:8:24","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"eventSelector":"dcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d7","id":6251,"name":"Deposit","nameLocation":"456:7:24","nodeType":"EventDefinition","parameters":{"id":6250,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6243,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"480:6:24","nodeType":"VariableDeclaration","scope":6251,"src":"464:22:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6242,"name":"address","nodeType":"ElementaryTypeName","src":"464:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6245,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"504:5:24","nodeType":"VariableDeclaration","scope":6251,"src":"488:21:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6244,"name":"address","nodeType":"ElementaryTypeName","src":"488:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6247,"indexed":false,"mutability":"mutable","name":"assets","nameLocation":"519:6:24","nodeType":"VariableDeclaration","scope":6251,"src":"511:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6246,"name":"uint256","nodeType":"ElementaryTypeName","src":"511:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6249,"indexed":false,"mutability":"mutable","name":"shares","nameLocation":"535:6:24","nodeType":"VariableDeclaration","scope":6251,"src":"527:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6248,"name":"uint256","nodeType":"ElementaryTypeName","src":"527:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"463:79:24"},"src":"450:93:24"},{"anonymous":false,"eventSelector":"fbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db","id":6263,"name":"Withdraw","nameLocation":"555:8:24","nodeType":"EventDefinition","parameters":{"id":6262,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6253,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"589:6:24","nodeType":"VariableDeclaration","scope":6263,"src":"573:22:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6252,"name":"address","nodeType":"ElementaryTypeName","src":"573:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6255,"indexed":true,"mutability":"mutable","name":"receiver","nameLocation":"621:8:24","nodeType":"VariableDeclaration","scope":6263,"src":"605:24:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6254,"name":"address","nodeType":"ElementaryTypeName","src":"605:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6257,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"655:5:24","nodeType":"VariableDeclaration","scope":6263,"src":"639:21:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6256,"name":"address","nodeType":"ElementaryTypeName","src":"639:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6259,"indexed":false,"mutability":"mutable","name":"assets","nameLocation":"678:6:24","nodeType":"VariableDeclaration","scope":6263,"src":"670:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6258,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6261,"indexed":false,"mutability":"mutable","name":"shares","nameLocation":"702:6:24","nodeType":"VariableDeclaration","scope":6263,"src":"694:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6260,"name":"uint256","nodeType":"ElementaryTypeName","src":"694:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"563:151:24"},"src":"549:166:24"},{"documentation":{"id":6264,"nodeType":"StructuredDocumentation","src":"721:207:24","text":" @dev Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing.\n - MUST be an ERC-20 token contract.\n - MUST NOT revert."},"functionSelector":"38d52e0f","id":6269,"implemented":false,"kind":"function","modifiers":[],"name":"asset","nameLocation":"942:5:24","nodeType":"FunctionDefinition","parameters":{"id":6265,"nodeType":"ParameterList","parameters":[],"src":"947:2:24"},"returnParameters":{"id":6268,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6267,"mutability":"mutable","name":"assetTokenAddress","nameLocation":"981:17:24","nodeType":"VariableDeclaration","scope":6269,"src":"973:25:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6266,"name":"address","nodeType":"ElementaryTypeName","src":"973:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"972:27:24"},"scope":6400,"src":"933:67:24","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6270,"nodeType":"StructuredDocumentation","src":"1006:286:24","text":" @dev Returns the total amount of the underlying asset that is “managed” by Vault.\n - SHOULD include any compounding that occurs from yield.\n - MUST be inclusive of any fees that are charged against assets in the Vault.\n - MUST NOT revert."},"functionSelector":"01e1d114","id":6275,"implemented":false,"kind":"function","modifiers":[],"name":"totalAssets","nameLocation":"1306:11:24","nodeType":"FunctionDefinition","parameters":{"id":6271,"nodeType":"ParameterList","parameters":[],"src":"1317:2:24"},"returnParameters":{"id":6274,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6273,"mutability":"mutable","name":"totalManagedAssets","nameLocation":"1351:18:24","nodeType":"VariableDeclaration","scope":6275,"src":"1343:26:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6272,"name":"uint256","nodeType":"ElementaryTypeName","src":"1343:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1342:28:24"},"scope":6400,"src":"1297:74:24","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6276,"nodeType":"StructuredDocumentation","src":"1377:720:24","text":" @dev Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal\n scenario where all the conditions are met.\n - MUST NOT be inclusive of any fees that are charged against assets in the Vault.\n - MUST NOT show any variations depending on the caller.\n - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange.\n - MUST NOT revert.\n NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the\n “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and\n from."},"functionSelector":"c6e6f592","id":6283,"implemented":false,"kind":"function","modifiers":[],"name":"convertToShares","nameLocation":"2111:15:24","nodeType":"FunctionDefinition","parameters":{"id":6279,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6278,"mutability":"mutable","name":"assets","nameLocation":"2135:6:24","nodeType":"VariableDeclaration","scope":6283,"src":"2127:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6277,"name":"uint256","nodeType":"ElementaryTypeName","src":"2127:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2126:16:24"},"returnParameters":{"id":6282,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6281,"mutability":"mutable","name":"shares","nameLocation":"2174:6:24","nodeType":"VariableDeclaration","scope":6283,"src":"2166:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6280,"name":"uint256","nodeType":"ElementaryTypeName","src":"2166:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2165:16:24"},"scope":6400,"src":"2102:80:24","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6284,"nodeType":"StructuredDocumentation","src":"2188:720:24","text":" @dev Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal\n scenario where all the conditions are met.\n - MUST NOT be inclusive of any fees that are charged against assets in the Vault.\n - MUST NOT show any variations depending on the caller.\n - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange.\n - MUST NOT revert.\n NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the\n “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and\n from."},"functionSelector":"07a2d13a","id":6291,"implemented":false,"kind":"function","modifiers":[],"name":"convertToAssets","nameLocation":"2922:15:24","nodeType":"FunctionDefinition","parameters":{"id":6287,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6286,"mutability":"mutable","name":"shares","nameLocation":"2946:6:24","nodeType":"VariableDeclaration","scope":6291,"src":"2938:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6285,"name":"uint256","nodeType":"ElementaryTypeName","src":"2938:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2937:16:24"},"returnParameters":{"id":6290,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6289,"mutability":"mutable","name":"assets","nameLocation":"2985:6:24","nodeType":"VariableDeclaration","scope":6291,"src":"2977:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6288,"name":"uint256","nodeType":"ElementaryTypeName","src":"2977:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2976:16:24"},"scope":6400,"src":"2913:80:24","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6292,"nodeType":"StructuredDocumentation","src":"2999:386:24","text":" @dev Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver,\n through a deposit call.\n - MUST return a limited value if receiver is subject to some deposit limit.\n - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited.\n - MUST NOT revert."},"functionSelector":"402d267d","id":6299,"implemented":false,"kind":"function","modifiers":[],"name":"maxDeposit","nameLocation":"3399:10:24","nodeType":"FunctionDefinition","parameters":{"id":6295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6294,"mutability":"mutable","name":"receiver","nameLocation":"3418:8:24","nodeType":"VariableDeclaration","scope":6299,"src":"3410:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6293,"name":"address","nodeType":"ElementaryTypeName","src":"3410:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3409:18:24"},"returnParameters":{"id":6298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6297,"mutability":"mutable","name":"maxAssets","nameLocation":"3459:9:24","nodeType":"VariableDeclaration","scope":6299,"src":"3451:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6296,"name":"uint256","nodeType":"ElementaryTypeName","src":"3451:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3450:19:24"},"scope":6400,"src":"3390:80:24","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6300,"nodeType":"StructuredDocumentation","src":"3476:1012:24","text":" @dev Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given\n current on-chain conditions.\n - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit\n   call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called\n   in the same transaction.\n - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the\n   deposit would be accepted, regardless if the user has enough tokens approved, etc.\n - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees.\n - MUST NOT revert.\n NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in\n share price or some other type of condition, meaning the depositor will lose assets by depositing."},"functionSelector":"ef8b30f7","id":6307,"implemented":false,"kind":"function","modifiers":[],"name":"previewDeposit","nameLocation":"4502:14:24","nodeType":"FunctionDefinition","parameters":{"id":6303,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6302,"mutability":"mutable","name":"assets","nameLocation":"4525:6:24","nodeType":"VariableDeclaration","scope":6307,"src":"4517:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6301,"name":"uint256","nodeType":"ElementaryTypeName","src":"4517:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4516:16:24"},"returnParameters":{"id":6306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6305,"mutability":"mutable","name":"shares","nameLocation":"4564:6:24","nodeType":"VariableDeclaration","scope":6307,"src":"4556:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6304,"name":"uint256","nodeType":"ElementaryTypeName","src":"4556:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4555:16:24"},"scope":6400,"src":"4493:79:24","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6308,"nodeType":"StructuredDocumentation","src":"4578:673:24","text":" @dev Deposit `assets` underlying tokens and send the corresponding number of vault shares (`shares`) to `receiver`.\n - MUST emit the Deposit event.\n - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n   deposit execution, and are accounted for during deposit.\n - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not\n   approving enough underlying tokens to the Vault contract, etc).\n NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token."},"functionSelector":"6e553f65","id":6317,"implemented":false,"kind":"function","modifiers":[],"name":"deposit","nameLocation":"5265:7:24","nodeType":"FunctionDefinition","parameters":{"id":6313,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6310,"mutability":"mutable","name":"assets","nameLocation":"5281:6:24","nodeType":"VariableDeclaration","scope":6317,"src":"5273:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6309,"name":"uint256","nodeType":"ElementaryTypeName","src":"5273:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6312,"mutability":"mutable","name":"receiver","nameLocation":"5297:8:24","nodeType":"VariableDeclaration","scope":6317,"src":"5289:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6311,"name":"address","nodeType":"ElementaryTypeName","src":"5289:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5272:34:24"},"returnParameters":{"id":6316,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6315,"mutability":"mutable","name":"shares","nameLocation":"5333:6:24","nodeType":"VariableDeclaration","scope":6317,"src":"5325:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6314,"name":"uint256","nodeType":"ElementaryTypeName","src":"5325:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5324:16:24"},"scope":6400,"src":"5256:85:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6318,"nodeType":"StructuredDocumentation","src":"5347:341:24","text":" @dev Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call.\n - MUST return a limited value if receiver is subject to some mint limit.\n - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted.\n - MUST NOT revert."},"functionSelector":"c63d75b6","id":6325,"implemented":false,"kind":"function","modifiers":[],"name":"maxMint","nameLocation":"5702:7:24","nodeType":"FunctionDefinition","parameters":{"id":6321,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6320,"mutability":"mutable","name":"receiver","nameLocation":"5718:8:24","nodeType":"VariableDeclaration","scope":6325,"src":"5710:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6319,"name":"address","nodeType":"ElementaryTypeName","src":"5710:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5709:18:24"},"returnParameters":{"id":6324,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6323,"mutability":"mutable","name":"maxShares","nameLocation":"5759:9:24","nodeType":"VariableDeclaration","scope":6325,"src":"5751:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6322,"name":"uint256","nodeType":"ElementaryTypeName","src":"5751:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5750:19:24"},"scope":6400,"src":"5693:77:24","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6326,"nodeType":"StructuredDocumentation","src":"5776:984:24","text":" @dev Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given\n current on-chain conditions.\n - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call\n   in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the\n   same transaction.\n - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint\n   would be accepted, regardless if the user has enough tokens approved, etc.\n - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees.\n - MUST NOT revert.\n NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in\n share price or some other type of condition, meaning the depositor will lose assets by minting."},"functionSelector":"b3d7f6b9","id":6333,"implemented":false,"kind":"function","modifiers":[],"name":"previewMint","nameLocation":"6774:11:24","nodeType":"FunctionDefinition","parameters":{"id":6329,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6328,"mutability":"mutable","name":"shares","nameLocation":"6794:6:24","nodeType":"VariableDeclaration","scope":6333,"src":"6786:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6327,"name":"uint256","nodeType":"ElementaryTypeName","src":"6786:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6785:16:24"},"returnParameters":{"id":6332,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6331,"mutability":"mutable","name":"assets","nameLocation":"6833:6:24","nodeType":"VariableDeclaration","scope":6333,"src":"6825:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6330,"name":"uint256","nodeType":"ElementaryTypeName","src":"6825:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6824:16:24"},"scope":6400,"src":"6765:76:24","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6334,"nodeType":"StructuredDocumentation","src":"6847:647:24","text":" @dev Mints exactly `shares` vault shares to `receiver` in exchange for `assets` underlying tokens.\n - MUST emit the Deposit event.\n - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint\n   execution, and are accounted for during mint.\n - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not\n   approving enough underlying tokens to the Vault contract, etc).\n NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token."},"functionSelector":"94bf804d","id":6343,"implemented":false,"kind":"function","modifiers":[],"name":"mint","nameLocation":"7508:4:24","nodeType":"FunctionDefinition","parameters":{"id":6339,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6336,"mutability":"mutable","name":"shares","nameLocation":"7521:6:24","nodeType":"VariableDeclaration","scope":6343,"src":"7513:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6335,"name":"uint256","nodeType":"ElementaryTypeName","src":"7513:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6338,"mutability":"mutable","name":"receiver","nameLocation":"7537:8:24","nodeType":"VariableDeclaration","scope":6343,"src":"7529:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6337,"name":"address","nodeType":"ElementaryTypeName","src":"7529:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7512:34:24"},"returnParameters":{"id":6342,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6341,"mutability":"mutable","name":"assets","nameLocation":"7573:6:24","nodeType":"VariableDeclaration","scope":6343,"src":"7565:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6340,"name":"uint256","nodeType":"ElementaryTypeName","src":"7565:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7564:16:24"},"scope":6400,"src":"7499:82:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6344,"nodeType":"StructuredDocumentation","src":"7587:293:24","text":" @dev Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the\n Vault, through a withdraw call.\n - MUST return a limited value if owner is subject to some withdrawal limit or timelock.\n - MUST NOT revert."},"functionSelector":"ce96cb77","id":6351,"implemented":false,"kind":"function","modifiers":[],"name":"maxWithdraw","nameLocation":"7894:11:24","nodeType":"FunctionDefinition","parameters":{"id":6347,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6346,"mutability":"mutable","name":"owner","nameLocation":"7914:5:24","nodeType":"VariableDeclaration","scope":6351,"src":"7906:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6345,"name":"address","nodeType":"ElementaryTypeName","src":"7906:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7905:15:24"},"returnParameters":{"id":6350,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6349,"mutability":"mutable","name":"maxAssets","nameLocation":"7952:9:24","nodeType":"VariableDeclaration","scope":6351,"src":"7944:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6348,"name":"uint256","nodeType":"ElementaryTypeName","src":"7944:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7943:19:24"},"scope":6400,"src":"7885:78:24","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6352,"nodeType":"StructuredDocumentation","src":"7969:1034:24","text":" @dev Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block,\n given current on-chain conditions.\n - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw\n   call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if\n   called\n   in the same transaction.\n - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though\n   the withdrawal would be accepted, regardless if the user has enough shares, etc.\n - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees.\n - MUST NOT revert.\n NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in\n share price or some other type of condition, meaning the depositor will lose assets by depositing."},"functionSelector":"0a28a477","id":6359,"implemented":false,"kind":"function","modifiers":[],"name":"previewWithdraw","nameLocation":"9017:15:24","nodeType":"FunctionDefinition","parameters":{"id":6355,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6354,"mutability":"mutable","name":"assets","nameLocation":"9041:6:24","nodeType":"VariableDeclaration","scope":6359,"src":"9033:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6353,"name":"uint256","nodeType":"ElementaryTypeName","src":"9033:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9032:16:24"},"returnParameters":{"id":6358,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6357,"mutability":"mutable","name":"shares","nameLocation":"9080:6:24","nodeType":"VariableDeclaration","scope":6359,"src":"9072:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6356,"name":"uint256","nodeType":"ElementaryTypeName","src":"9072:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9071:16:24"},"scope":6400,"src":"9008:80:24","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6360,"nodeType":"StructuredDocumentation","src":"9094:670:24","text":" @dev Burns shares from owner and sends exactly assets of underlying tokens to receiver.\n - MUST emit the Withdraw event.\n - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n   withdraw execution, and are accounted for during withdraw.\n - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner\n   not having enough shares, etc).\n Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed.\n Those methods should be performed separately."},"functionSelector":"b460af94","id":6371,"implemented":false,"kind":"function","modifiers":[],"name":"withdraw","nameLocation":"9778:8:24","nodeType":"FunctionDefinition","parameters":{"id":6367,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6362,"mutability":"mutable","name":"assets","nameLocation":"9795:6:24","nodeType":"VariableDeclaration","scope":6371,"src":"9787:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6361,"name":"uint256","nodeType":"ElementaryTypeName","src":"9787:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6364,"mutability":"mutable","name":"receiver","nameLocation":"9811:8:24","nodeType":"VariableDeclaration","scope":6371,"src":"9803:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6363,"name":"address","nodeType":"ElementaryTypeName","src":"9803:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6366,"mutability":"mutable","name":"owner","nameLocation":"9829:5:24","nodeType":"VariableDeclaration","scope":6371,"src":"9821:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6365,"name":"address","nodeType":"ElementaryTypeName","src":"9821:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9786:49:24"},"returnParameters":{"id":6370,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6369,"mutability":"mutable","name":"shares","nameLocation":"9862:6:24","nodeType":"VariableDeclaration","scope":6371,"src":"9854:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6368,"name":"uint256","nodeType":"ElementaryTypeName","src":"9854:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9853:16:24"},"scope":6400,"src":"9769:101:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6372,"nodeType":"StructuredDocumentation","src":"9876:381:24","text":" @dev Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault,\n through a redeem call.\n - MUST return a limited value if owner is subject to some withdrawal limit or timelock.\n - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock.\n - MUST NOT revert."},"functionSelector":"d905777e","id":6379,"implemented":false,"kind":"function","modifiers":[],"name":"maxRedeem","nameLocation":"10271:9:24","nodeType":"FunctionDefinition","parameters":{"id":6375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6374,"mutability":"mutable","name":"owner","nameLocation":"10289:5:24","nodeType":"VariableDeclaration","scope":6379,"src":"10281:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6373,"name":"address","nodeType":"ElementaryTypeName","src":"10281:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10280:15:24"},"returnParameters":{"id":6378,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6377,"mutability":"mutable","name":"maxShares","nameLocation":"10327:9:24","nodeType":"VariableDeclaration","scope":6379,"src":"10319:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6376,"name":"uint256","nodeType":"ElementaryTypeName","src":"10319:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10318:19:24"},"scope":6400,"src":"10262:76:24","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6380,"nodeType":"StructuredDocumentation","src":"10344:1009:24","text":" @dev Allows an on-chain or off-chain user to simulate the effects of their redemption at the current block,\n given current on-chain conditions.\n - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call\n   in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the\n   same transaction.\n - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the\n   redemption would be accepted, regardless if the user has enough shares, etc.\n - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees.\n - MUST NOT revert.\n NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in\n share price or some other type of condition, meaning the depositor will lose assets by redeeming."},"functionSelector":"4cdad506","id":6387,"implemented":false,"kind":"function","modifiers":[],"name":"previewRedeem","nameLocation":"11367:13:24","nodeType":"FunctionDefinition","parameters":{"id":6383,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6382,"mutability":"mutable","name":"shares","nameLocation":"11389:6:24","nodeType":"VariableDeclaration","scope":6387,"src":"11381:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6381,"name":"uint256","nodeType":"ElementaryTypeName","src":"11381:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11380:16:24"},"returnParameters":{"id":6386,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6385,"mutability":"mutable","name":"assets","nameLocation":"11428:6:24","nodeType":"VariableDeclaration","scope":6387,"src":"11420:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6384,"name":"uint256","nodeType":"ElementaryTypeName","src":"11420:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11419:16:24"},"scope":6400,"src":"11358:78:24","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6388,"nodeType":"StructuredDocumentation","src":"11442:661:24","text":" @dev Burns exactly shares from owner and sends assets of underlying tokens to receiver.\n - MUST emit the Withdraw event.\n - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n   redeem execution, and are accounted for during redeem.\n - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner\n   not having enough shares, etc).\n NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed.\n Those methods should be performed separately."},"functionSelector":"ba087652","id":6399,"implemented":false,"kind":"function","modifiers":[],"name":"redeem","nameLocation":"12117:6:24","nodeType":"FunctionDefinition","parameters":{"id":6395,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6390,"mutability":"mutable","name":"shares","nameLocation":"12132:6:24","nodeType":"VariableDeclaration","scope":6399,"src":"12124:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6389,"name":"uint256","nodeType":"ElementaryTypeName","src":"12124:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6392,"mutability":"mutable","name":"receiver","nameLocation":"12148:8:24","nodeType":"VariableDeclaration","scope":6399,"src":"12140:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6391,"name":"address","nodeType":"ElementaryTypeName","src":"12140:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6394,"mutability":"mutable","name":"owner","nameLocation":"12166:5:24","nodeType":"VariableDeclaration","scope":6399,"src":"12158:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6393,"name":"address","nodeType":"ElementaryTypeName","src":"12158:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"12123:49:24"},"returnParameters":{"id":6398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6397,"mutability":"mutable","name":"assets","nameLocation":"12199:6:24","nodeType":"VariableDeclaration","scope":6399,"src":"12191:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6396,"name":"uint256","nodeType":"ElementaryTypeName","src":"12191:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12190:16:24"},"scope":6400,"src":"12108:99:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":6401,"src":"399:11810:24","usedErrors":[],"usedEvents":[6251,6263,7911,7920]}],"src":"107:12103:24"},"id":24},"@openzeppelin/contracts/interfaces/IERC5267.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5267.sol","exportedSymbols":{"IERC5267":[6425]},"id":6426,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6402,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"107:25:25"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC5267","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":6425,"linearizedBaseContracts":[6425],"name":"IERC5267","nameLocation":"144:8:25","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":6403,"nodeType":"StructuredDocumentation","src":"159:84:25","text":" @dev MAY be emitted to signal that the domain could have changed."},"eventSelector":"0a6387c9ea3628b88a633bb4f3b151770f70085117a15f9bf3787cda53f13d31","id":6405,"name":"EIP712DomainChanged","nameLocation":"254:19:25","nodeType":"EventDefinition","parameters":{"id":6404,"nodeType":"ParameterList","parameters":[],"src":"273:2:25"},"src":"248:28:25"},{"documentation":{"id":6406,"nodeType":"StructuredDocumentation","src":"282:140:25","text":" @dev returns the fields and values that describe the domain separator used by this contract for EIP-712\n signature."},"functionSelector":"84b0196e","id":6424,"implemented":false,"kind":"function","modifiers":[],"name":"eip712Domain","nameLocation":"436:12:25","nodeType":"FunctionDefinition","parameters":{"id":6407,"nodeType":"ParameterList","parameters":[],"src":"448:2:25"},"returnParameters":{"id":6423,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6409,"mutability":"mutable","name":"fields","nameLocation":"518:6:25","nodeType":"VariableDeclaration","scope":6424,"src":"511:13:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":6408,"name":"bytes1","nodeType":"ElementaryTypeName","src":"511:6:25","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":6411,"mutability":"mutable","name":"name","nameLocation":"552:4:25","nodeType":"VariableDeclaration","scope":6424,"src":"538:18:25","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6410,"name":"string","nodeType":"ElementaryTypeName","src":"538:6:25","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":6413,"mutability":"mutable","name":"version","nameLocation":"584:7:25","nodeType":"VariableDeclaration","scope":6424,"src":"570:21:25","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6412,"name":"string","nodeType":"ElementaryTypeName","src":"570:6:25","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":6415,"mutability":"mutable","name":"chainId","nameLocation":"613:7:25","nodeType":"VariableDeclaration","scope":6424,"src":"605:15:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6414,"name":"uint256","nodeType":"ElementaryTypeName","src":"605:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6417,"mutability":"mutable","name":"verifyingContract","nameLocation":"642:17:25","nodeType":"VariableDeclaration","scope":6424,"src":"634:25:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6416,"name":"address","nodeType":"ElementaryTypeName","src":"634:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6419,"mutability":"mutable","name":"salt","nameLocation":"681:4:25","nodeType":"VariableDeclaration","scope":6424,"src":"673:12:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6418,"name":"bytes32","nodeType":"ElementaryTypeName","src":"673:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":6422,"mutability":"mutable","name":"extensions","nameLocation":"716:10:25","nodeType":"VariableDeclaration","scope":6424,"src":"699:27:25","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":6420,"name":"uint256","nodeType":"ElementaryTypeName","src":"699:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6421,"nodeType":"ArrayTypeName","src":"699:9:25","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"497:239:25"},"scope":6425,"src":"427:310:25","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":6426,"src":"134:605:25","usedErrors":[],"usedEvents":[6405]}],"src":"107:633:25"},"id":25},"@openzeppelin/contracts/interfaces/draft-IERC1822.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC1822.sol","exportedSymbols":{"IERC1822Proxiable":[6435]},"id":6436,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6427,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"113:25:26"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1822Proxiable","contractDependencies":[],"contractKind":"interface","documentation":{"id":6428,"nodeType":"StructuredDocumentation","src":"140:204:26","text":" @dev ERC-1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified\n proxy whose upgrades are fully controlled by the current implementation."},"fullyImplemented":false,"id":6435,"linearizedBaseContracts":[6435],"name":"IERC1822Proxiable","nameLocation":"355:17:26","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6429,"nodeType":"StructuredDocumentation","src":"379:438:26","text":" @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation\n address.\n IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n function revert if invoked through a proxy."},"functionSelector":"52d1902d","id":6434,"implemented":false,"kind":"function","modifiers":[],"name":"proxiableUUID","nameLocation":"831:13:26","nodeType":"FunctionDefinition","parameters":{"id":6430,"nodeType":"ParameterList","parameters":[],"src":"844:2:26"},"returnParameters":{"id":6433,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6432,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6434,"src":"870:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6431,"name":"bytes32","nodeType":"ElementaryTypeName","src":"870:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"869:9:26"},"scope":6435,"src":"822:57:26","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":6436,"src":"345:536:26","usedErrors":[],"usedEvents":[]}],"src":"113:769:26"},"id":26},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","exportedSymbols":{"IERC1155Errors":[6572],"IERC20Errors":[6477],"IERC721Errors":[6525]},"id":6573,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6437,"literals":["solidity",">=","0.8",".4"],"nodeType":"PragmaDirective","src":"113:24:27"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":6438,"nodeType":"StructuredDocumentation","src":"139:141:27","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":6477,"linearizedBaseContracts":[6477],"name":"IERC20Errors","nameLocation":"291:12:27","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6439,"nodeType":"StructuredDocumentation","src":"310:309:27","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":6447,"name":"ERC20InsufficientBalance","nameLocation":"630:24:27","nodeType":"ErrorDefinition","parameters":{"id":6446,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6441,"mutability":"mutable","name":"sender","nameLocation":"663:6:27","nodeType":"VariableDeclaration","scope":6447,"src":"655:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6440,"name":"address","nodeType":"ElementaryTypeName","src":"655:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6443,"mutability":"mutable","name":"balance","nameLocation":"679:7:27","nodeType":"VariableDeclaration","scope":6447,"src":"671:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6442,"name":"uint256","nodeType":"ElementaryTypeName","src":"671:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6445,"mutability":"mutable","name":"needed","nameLocation":"696:6:27","nodeType":"VariableDeclaration","scope":6447,"src":"688:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6444,"name":"uint256","nodeType":"ElementaryTypeName","src":"688:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"654:49:27"},"src":"624:80:27"},{"documentation":{"id":6448,"nodeType":"StructuredDocumentation","src":"710:152:27","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"96c6fd1e","id":6452,"name":"ERC20InvalidSender","nameLocation":"873:18:27","nodeType":"ErrorDefinition","parameters":{"id":6451,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6450,"mutability":"mutable","name":"sender","nameLocation":"900:6:27","nodeType":"VariableDeclaration","scope":6452,"src":"892:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6449,"name":"address","nodeType":"ElementaryTypeName","src":"892:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"891:16:27"},"src":"867:41:27"},{"documentation":{"id":6453,"nodeType":"StructuredDocumentation","src":"914:159:27","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":6457,"name":"ERC20InvalidReceiver","nameLocation":"1084:20:27","nodeType":"ErrorDefinition","parameters":{"id":6456,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6455,"mutability":"mutable","name":"receiver","nameLocation":"1113:8:27","nodeType":"VariableDeclaration","scope":6457,"src":"1105:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6454,"name":"address","nodeType":"ElementaryTypeName","src":"1105:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1104:18:27"},"src":"1078:45:27"},{"documentation":{"id":6458,"nodeType":"StructuredDocumentation","src":"1129:345:27","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":6466,"name":"ERC20InsufficientAllowance","nameLocation":"1485:26:27","nodeType":"ErrorDefinition","parameters":{"id":6465,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6460,"mutability":"mutable","name":"spender","nameLocation":"1520:7:27","nodeType":"VariableDeclaration","scope":6466,"src":"1512:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6459,"name":"address","nodeType":"ElementaryTypeName","src":"1512:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6462,"mutability":"mutable","name":"allowance","nameLocation":"1537:9:27","nodeType":"VariableDeclaration","scope":6466,"src":"1529:17:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6461,"name":"uint256","nodeType":"ElementaryTypeName","src":"1529:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6464,"mutability":"mutable","name":"needed","nameLocation":"1556:6:27","nodeType":"VariableDeclaration","scope":6466,"src":"1548:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6463,"name":"uint256","nodeType":"ElementaryTypeName","src":"1548:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1511:52:27"},"src":"1479:85:27"},{"documentation":{"id":6467,"nodeType":"StructuredDocumentation","src":"1570:174:27","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":6471,"name":"ERC20InvalidApprover","nameLocation":"1755:20:27","nodeType":"ErrorDefinition","parameters":{"id":6470,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6469,"mutability":"mutable","name":"approver","nameLocation":"1784:8:27","nodeType":"VariableDeclaration","scope":6471,"src":"1776:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6468,"name":"address","nodeType":"ElementaryTypeName","src":"1776:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1775:18:27"},"src":"1749:45:27"},{"documentation":{"id":6472,"nodeType":"StructuredDocumentation","src":"1800:195:27","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":6476,"name":"ERC20InvalidSpender","nameLocation":"2006:19:27","nodeType":"ErrorDefinition","parameters":{"id":6475,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6474,"mutability":"mutable","name":"spender","nameLocation":"2034:7:27","nodeType":"VariableDeclaration","scope":6476,"src":"2026:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6473,"name":"address","nodeType":"ElementaryTypeName","src":"2026:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2025:17:27"},"src":"2000:43:27"}],"scope":6573,"src":"281:1764:27","usedErrors":[6447,6452,6457,6466,6471,6476],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":6478,"nodeType":"StructuredDocumentation","src":"2047:143:27","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":6525,"linearizedBaseContracts":[6525],"name":"IERC721Errors","nameLocation":"2201:13:27","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6479,"nodeType":"StructuredDocumentation","src":"2221:220:27","text":" @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-721.\n Used in balance queries.\n @param owner Address of the current owner of a token."},"errorSelector":"89c62b64","id":6483,"name":"ERC721InvalidOwner","nameLocation":"2452:18:27","nodeType":"ErrorDefinition","parameters":{"id":6482,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6481,"mutability":"mutable","name":"owner","nameLocation":"2479:5:27","nodeType":"VariableDeclaration","scope":6483,"src":"2471:13:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6480,"name":"address","nodeType":"ElementaryTypeName","src":"2471:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2470:15:27"},"src":"2446:40:27"},{"documentation":{"id":6484,"nodeType":"StructuredDocumentation","src":"2492:132:27","text":" @dev Indicates a `tokenId` whose `owner` is the zero address.\n @param tokenId Identifier number of a token."},"errorSelector":"7e273289","id":6488,"name":"ERC721NonexistentToken","nameLocation":"2635:22:27","nodeType":"ErrorDefinition","parameters":{"id":6487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6486,"mutability":"mutable","name":"tokenId","nameLocation":"2666:7:27","nodeType":"VariableDeclaration","scope":6488,"src":"2658:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6485,"name":"uint256","nodeType":"ElementaryTypeName","src":"2658:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2657:17:27"},"src":"2629:46:27"},{"documentation":{"id":6489,"nodeType":"StructuredDocumentation","src":"2681:289:27","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":6497,"name":"ERC721IncorrectOwner","nameLocation":"2981:20:27","nodeType":"ErrorDefinition","parameters":{"id":6496,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6491,"mutability":"mutable","name":"sender","nameLocation":"3010:6:27","nodeType":"VariableDeclaration","scope":6497,"src":"3002:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6490,"name":"address","nodeType":"ElementaryTypeName","src":"3002:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6493,"mutability":"mutable","name":"tokenId","nameLocation":"3026:7:27","nodeType":"VariableDeclaration","scope":6497,"src":"3018:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6492,"name":"uint256","nodeType":"ElementaryTypeName","src":"3018:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6495,"mutability":"mutable","name":"owner","nameLocation":"3043:5:27","nodeType":"VariableDeclaration","scope":6497,"src":"3035:13:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6494,"name":"address","nodeType":"ElementaryTypeName","src":"3035:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3001:48:27"},"src":"2975:75:27"},{"documentation":{"id":6498,"nodeType":"StructuredDocumentation","src":"3056:152:27","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"73c6ac6e","id":6502,"name":"ERC721InvalidSender","nameLocation":"3219:19:27","nodeType":"ErrorDefinition","parameters":{"id":6501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6500,"mutability":"mutable","name":"sender","nameLocation":"3247:6:27","nodeType":"VariableDeclaration","scope":6502,"src":"3239:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6499,"name":"address","nodeType":"ElementaryTypeName","src":"3239:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3238:16:27"},"src":"3213:42:27"},{"documentation":{"id":6503,"nodeType":"StructuredDocumentation","src":"3261:159:27","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":6507,"name":"ERC721InvalidReceiver","nameLocation":"3431:21:27","nodeType":"ErrorDefinition","parameters":{"id":6506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6505,"mutability":"mutable","name":"receiver","nameLocation":"3461:8:27","nodeType":"VariableDeclaration","scope":6507,"src":"3453:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6504,"name":"address","nodeType":"ElementaryTypeName","src":"3453:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3452:18:27"},"src":"3425:46:27"},{"documentation":{"id":6508,"nodeType":"StructuredDocumentation","src":"3477:247:27","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":6514,"name":"ERC721InsufficientApproval","nameLocation":"3735:26:27","nodeType":"ErrorDefinition","parameters":{"id":6513,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6510,"mutability":"mutable","name":"operator","nameLocation":"3770:8:27","nodeType":"VariableDeclaration","scope":6514,"src":"3762:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6509,"name":"address","nodeType":"ElementaryTypeName","src":"3762:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6512,"mutability":"mutable","name":"tokenId","nameLocation":"3788:7:27","nodeType":"VariableDeclaration","scope":6514,"src":"3780:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6511,"name":"uint256","nodeType":"ElementaryTypeName","src":"3780:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3761:35:27"},"src":"3729:68:27"},{"documentation":{"id":6515,"nodeType":"StructuredDocumentation","src":"3803:174:27","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":6519,"name":"ERC721InvalidApprover","nameLocation":"3988:21:27","nodeType":"ErrorDefinition","parameters":{"id":6518,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6517,"mutability":"mutable","name":"approver","nameLocation":"4018:8:27","nodeType":"VariableDeclaration","scope":6519,"src":"4010:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6516,"name":"address","nodeType":"ElementaryTypeName","src":"4010:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4009:18:27"},"src":"3982:46:27"},{"documentation":{"id":6520,"nodeType":"StructuredDocumentation","src":"4034:197:27","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":6524,"name":"ERC721InvalidOperator","nameLocation":"4242:21:27","nodeType":"ErrorDefinition","parameters":{"id":6523,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6522,"mutability":"mutable","name":"operator","nameLocation":"4272:8:27","nodeType":"VariableDeclaration","scope":6524,"src":"4264:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6521,"name":"address","nodeType":"ElementaryTypeName","src":"4264:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4263:18:27"},"src":"4236:46:27"}],"scope":6573,"src":"2191:2093:27","usedErrors":[6483,6488,6497,6502,6507,6514,6519,6524],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1155Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":6526,"nodeType":"StructuredDocumentation","src":"4286:145:27","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":6572,"linearizedBaseContracts":[6572],"name":"IERC1155Errors","nameLocation":"4442:14:27","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6527,"nodeType":"StructuredDocumentation","src":"4463:361:27","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":6537,"name":"ERC1155InsufficientBalance","nameLocation":"4835:26:27","nodeType":"ErrorDefinition","parameters":{"id":6536,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6529,"mutability":"mutable","name":"sender","nameLocation":"4870:6:27","nodeType":"VariableDeclaration","scope":6537,"src":"4862:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6528,"name":"address","nodeType":"ElementaryTypeName","src":"4862:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6531,"mutability":"mutable","name":"balance","nameLocation":"4886:7:27","nodeType":"VariableDeclaration","scope":6537,"src":"4878:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6530,"name":"uint256","nodeType":"ElementaryTypeName","src":"4878:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6533,"mutability":"mutable","name":"needed","nameLocation":"4903:6:27","nodeType":"VariableDeclaration","scope":6537,"src":"4895:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6532,"name":"uint256","nodeType":"ElementaryTypeName","src":"4895:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6535,"mutability":"mutable","name":"tokenId","nameLocation":"4919:7:27","nodeType":"VariableDeclaration","scope":6537,"src":"4911:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6534,"name":"uint256","nodeType":"ElementaryTypeName","src":"4911:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4861:66:27"},"src":"4829:99:27"},{"documentation":{"id":6538,"nodeType":"StructuredDocumentation","src":"4934:152:27","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"01a83514","id":6542,"name":"ERC1155InvalidSender","nameLocation":"5097:20:27","nodeType":"ErrorDefinition","parameters":{"id":6541,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6540,"mutability":"mutable","name":"sender","nameLocation":"5126:6:27","nodeType":"VariableDeclaration","scope":6542,"src":"5118:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6539,"name":"address","nodeType":"ElementaryTypeName","src":"5118:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5117:16:27"},"src":"5091:43:27"},{"documentation":{"id":6543,"nodeType":"StructuredDocumentation","src":"5140:159:27","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":6547,"name":"ERC1155InvalidReceiver","nameLocation":"5310:22:27","nodeType":"ErrorDefinition","parameters":{"id":6546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6545,"mutability":"mutable","name":"receiver","nameLocation":"5341:8:27","nodeType":"VariableDeclaration","scope":6547,"src":"5333:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6544,"name":"address","nodeType":"ElementaryTypeName","src":"5333:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5332:18:27"},"src":"5304:47:27"},{"documentation":{"id":6548,"nodeType":"StructuredDocumentation","src":"5357:256:27","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":6554,"name":"ERC1155MissingApprovalForAll","nameLocation":"5624:28:27","nodeType":"ErrorDefinition","parameters":{"id":6553,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6550,"mutability":"mutable","name":"operator","nameLocation":"5661:8:27","nodeType":"VariableDeclaration","scope":6554,"src":"5653:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6549,"name":"address","nodeType":"ElementaryTypeName","src":"5653:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6552,"mutability":"mutable","name":"owner","nameLocation":"5679:5:27","nodeType":"VariableDeclaration","scope":6554,"src":"5671:13:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6551,"name":"address","nodeType":"ElementaryTypeName","src":"5671:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5652:33:27"},"src":"5618:68:27"},{"documentation":{"id":6555,"nodeType":"StructuredDocumentation","src":"5692:174:27","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":6559,"name":"ERC1155InvalidApprover","nameLocation":"5877:22:27","nodeType":"ErrorDefinition","parameters":{"id":6558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6557,"mutability":"mutable","name":"approver","nameLocation":"5908:8:27","nodeType":"VariableDeclaration","scope":6559,"src":"5900:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6556,"name":"address","nodeType":"ElementaryTypeName","src":"5900:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5899:18:27"},"src":"5871:47:27"},{"documentation":{"id":6560,"nodeType":"StructuredDocumentation","src":"5924:197:27","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":6564,"name":"ERC1155InvalidOperator","nameLocation":"6132:22:27","nodeType":"ErrorDefinition","parameters":{"id":6563,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6562,"mutability":"mutable","name":"operator","nameLocation":"6163:8:27","nodeType":"VariableDeclaration","scope":6564,"src":"6155:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6561,"name":"address","nodeType":"ElementaryTypeName","src":"6155:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6154:18:27"},"src":"6126:47:27"},{"documentation":{"id":6565,"nodeType":"StructuredDocumentation","src":"6179:280:27","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":6571,"name":"ERC1155InvalidArrayLength","nameLocation":"6470:25:27","nodeType":"ErrorDefinition","parameters":{"id":6570,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6567,"mutability":"mutable","name":"idsLength","nameLocation":"6504:9:27","nodeType":"VariableDeclaration","scope":6571,"src":"6496:17:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6566,"name":"uint256","nodeType":"ElementaryTypeName","src":"6496:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6569,"mutability":"mutable","name":"valuesLength","nameLocation":"6523:12:27","nodeType":"VariableDeclaration","scope":6571,"src":"6515:20:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6568,"name":"uint256","nodeType":"ElementaryTypeName","src":"6515:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6495:41:27"},"src":"6464:73:27"}],"scope":6573,"src":"4432:2107:27","usedErrors":[6537,6542,6547,6554,6559,6564,6571],"usedEvents":[]}],"src":"113:6427:27"},"id":27},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","exportedSymbols":{"ERC1967Proxy":[6610],"ERC1967Utils":[6904],"Proxy":[6940]},"id":6611,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6574,"literals":["solidity","^","0.8",".22"],"nodeType":"PragmaDirective","src":"114:24:28"},{"absolutePath":"@openzeppelin/contracts/proxy/Proxy.sol","file":"../Proxy.sol","id":6576,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6611,"sourceUnit":6941,"src":"140:35:28","symbolAliases":[{"foreign":{"id":6575,"name":"Proxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6940,"src":"148:5:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol","file":"./ERC1967Utils.sol","id":6578,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6611,"sourceUnit":6905,"src":"176:48:28","symbolAliases":[{"foreign":{"id":6577,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6904,"src":"184:12:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":6580,"name":"Proxy","nameLocations":["625:5:28"],"nodeType":"IdentifierPath","referencedDeclaration":6940,"src":"625:5:28"},"id":6581,"nodeType":"InheritanceSpecifier","src":"625:5:28"}],"canonicalName":"ERC1967Proxy","contractDependencies":[],"contractKind":"contract","documentation":{"id":6579,"nodeType":"StructuredDocumentation","src":"226:373:28","text":" @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an\n implementation address that can be changed. This address is stored in storage in the location specified by\n https://eips.ethereum.org/EIPS/eip-1967[ERC-1967], so that it doesn't conflict with the storage layout of the\n implementation behind the proxy."},"fullyImplemented":true,"id":6610,"linearizedBaseContracts":[6610,6940],"name":"ERC1967Proxy","nameLocation":"609:12:28","nodeType":"ContractDefinition","nodes":[{"body":{"id":6596,"nodeType":"Block","src":"1145:69:28","statements":[{"expression":{"arguments":[{"id":6592,"name":"implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6584,"src":"1185:14:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6593,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6586,"src":"1201:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":6589,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6904,"src":"1155:12:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$6904_$","typeString":"type(library ERC1967Utils)"}},"id":6591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1168:16:28","memberName":"upgradeToAndCall","nodeType":"MemberAccess","referencedDeclaration":6719,"src":"1155:29:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,bytes memory)"}},"id":6594,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1155:52:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6595,"nodeType":"ExpressionStatement","src":"1155:52:28"}]},"documentation":{"id":6582,"nodeType":"StructuredDocumentation","src":"637:439:28","text":" @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation`.\n If `_data` is nonempty, it's used as data in a delegate call to `implementation`. This will typically be an\n encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\n Requirements:\n - If `data` is empty, `msg.value` must be zero."},"id":6597,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":6587,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6584,"mutability":"mutable","name":"implementation","nameLocation":"1101:14:28","nodeType":"VariableDeclaration","scope":6597,"src":"1093:22:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6583,"name":"address","nodeType":"ElementaryTypeName","src":"1093:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6586,"mutability":"mutable","name":"_data","nameLocation":"1130:5:28","nodeType":"VariableDeclaration","scope":6597,"src":"1117:18:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6585,"name":"bytes","nodeType":"ElementaryTypeName","src":"1117:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1092:44:28"},"returnParameters":{"id":6588,"nodeType":"ParameterList","parameters":[],"src":"1145:0:28"},"scope":6610,"src":"1081:133:28","stateMutability":"payable","virtual":false,"visibility":"public"},{"baseFunctions":[6921],"body":{"id":6608,"nodeType":"Block","src":"1659:56:28","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":6604,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6904,"src":"1676:12:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$6904_$","typeString":"type(library ERC1967Utils)"}},"id":6605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1689:17:28","memberName":"getImplementation","nodeType":"MemberAccess","referencedDeclaration":6656,"src":"1676:30:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":6606,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1676:32:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":6603,"id":6607,"nodeType":"Return","src":"1669:39:28"}]},"documentation":{"id":6598,"nodeType":"StructuredDocumentation","src":"1220:358:28","text":" @dev Returns the current implementation address.\n TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using\n the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`"},"id":6609,"implemented":true,"kind":"function","modifiers":[],"name":"_implementation","nameLocation":"1592:15:28","nodeType":"FunctionDefinition","overrides":{"id":6600,"nodeType":"OverrideSpecifier","overrides":[],"src":"1632:8:28"},"parameters":{"id":6599,"nodeType":"ParameterList","parameters":[],"src":"1607:2:28"},"returnParameters":{"id":6603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6602,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6609,"src":"1650:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6601,"name":"address","nodeType":"ElementaryTypeName","src":"1650:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1649:9:28"},"scope":6610,"src":"1583:132:28","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":6611,"src":"600:1117:28","usedErrors":[6630,6643,9606,10740],"usedEvents":[6213]}],"src":"114:1604:28"},"id":28},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol","exportedSymbols":{"Address":[9984],"ERC1967Utils":[6904],"IBeacon":[6950],"IERC1967":[6226],"StorageSlot":[11758]},"id":6905,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6612,"literals":["solidity","^","0.8",".21"],"nodeType":"PragmaDirective","src":"114:24:29"},{"absolutePath":"@openzeppelin/contracts/proxy/beacon/IBeacon.sol","file":"../beacon/IBeacon.sol","id":6614,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6905,"sourceUnit":6951,"src":"140:46:29","symbolAliases":[{"foreign":{"id":6613,"name":"IBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6950,"src":"148:7:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1967.sol","file":"../../interfaces/IERC1967.sol","id":6616,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6905,"sourceUnit":6227,"src":"187:55:29","symbolAliases":[{"foreign":{"id":6615,"name":"IERC1967","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6226,"src":"195:8:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"../../utils/Address.sol","id":6618,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6905,"sourceUnit":9985,"src":"243:48:29","symbolAliases":[{"foreign":{"id":6617,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9984,"src":"251:7:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","file":"../../utils/StorageSlot.sol","id":6620,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6905,"sourceUnit":11759,"src":"292:56:29","symbolAliases":[{"foreign":{"id":6619,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11758,"src":"300:11:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"ERC1967Utils","contractDependencies":[],"contractKind":"library","documentation":{"id":6621,"nodeType":"StructuredDocumentation","src":"350:145:29","text":" @dev This library provides getters and event emitting update functions for\n https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots."},"fullyImplemented":true,"id":6904,"linearizedBaseContracts":[6904],"name":"ERC1967Utils","nameLocation":"504:12:29","nodeType":"ContractDefinition","nodes":[{"constant":true,"documentation":{"id":6622,"nodeType":"StructuredDocumentation","src":"523:170:29","text":" @dev Storage slot with the address of the current implementation.\n This is the keccak-256 hash of \"eip1967.proxy.implementation\" subtracted by 1."},"id":6625,"mutability":"constant","name":"IMPLEMENTATION_SLOT","nameLocation":"789:19:29","nodeType":"VariableDeclaration","scope":6904,"src":"763:114:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6623,"name":"bytes32","nodeType":"ElementaryTypeName","src":"763:7:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307833363038393461313362613161333231303636376338323834393264623938646361336532303736636333373335613932306133636135303564333832626263","id":6624,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"811:66:29","typeDescriptions":{"typeIdentifier":"t_rational_24440054405305269366569402256811496959409073762505157381672968839269610695612_by_1","typeString":"int_const 2444...(69 digits omitted)...5612"},"value":"0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc"},"visibility":"internal"},{"documentation":{"id":6626,"nodeType":"StructuredDocumentation","src":"884:69:29","text":" @dev The `implementation` of the proxy is invalid."},"errorSelector":"4c9c8ce3","id":6630,"name":"ERC1967InvalidImplementation","nameLocation":"964:28:29","nodeType":"ErrorDefinition","parameters":{"id":6629,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6628,"mutability":"mutable","name":"implementation","nameLocation":"1001:14:29","nodeType":"VariableDeclaration","scope":6630,"src":"993:22:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6627,"name":"address","nodeType":"ElementaryTypeName","src":"993:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"992:24:29"},"src":"958:59:29"},{"documentation":{"id":6631,"nodeType":"StructuredDocumentation","src":"1023:60:29","text":" @dev The `admin` of the proxy is invalid."},"errorSelector":"62e77ba2","id":6635,"name":"ERC1967InvalidAdmin","nameLocation":"1094:19:29","nodeType":"ErrorDefinition","parameters":{"id":6634,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6633,"mutability":"mutable","name":"admin","nameLocation":"1122:5:29","nodeType":"VariableDeclaration","scope":6635,"src":"1114:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6632,"name":"address","nodeType":"ElementaryTypeName","src":"1114:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1113:15:29"},"src":"1088:41:29"},{"documentation":{"id":6636,"nodeType":"StructuredDocumentation","src":"1135:61:29","text":" @dev The `beacon` of the proxy is invalid."},"errorSelector":"64ced0ec","id":6640,"name":"ERC1967InvalidBeacon","nameLocation":"1207:20:29","nodeType":"ErrorDefinition","parameters":{"id":6639,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6638,"mutability":"mutable","name":"beacon","nameLocation":"1236:6:29","nodeType":"VariableDeclaration","scope":6640,"src":"1228:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6637,"name":"address","nodeType":"ElementaryTypeName","src":"1228:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1227:16:29"},"src":"1201:43:29"},{"documentation":{"id":6641,"nodeType":"StructuredDocumentation","src":"1250:82:29","text":" @dev An upgrade function sees `msg.value > 0` that may be lost."},"errorSelector":"b398979f","id":6643,"name":"ERC1967NonPayable","nameLocation":"1343:17:29","nodeType":"ErrorDefinition","parameters":{"id":6642,"nodeType":"ParameterList","parameters":[],"src":"1360:2:29"},"src":"1337:26:29"},{"body":{"id":6655,"nodeType":"Block","src":"1502:77:29","statements":[{"expression":{"expression":{"arguments":[{"id":6651,"name":"IMPLEMENTATION_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6625,"src":"1546:19:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":6649,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11758,"src":"1519:11:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$11758_$","typeString":"type(library StorageSlot)"}},"id":6650,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1531:14:29","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":11669,"src":"1519:26:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$11640_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":6652,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1519:47:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$11640_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":6653,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1567:5:29","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":11639,"src":"1519:53:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":6648,"id":6654,"nodeType":"Return","src":"1512:60:29"}]},"documentation":{"id":6644,"nodeType":"StructuredDocumentation","src":"1369:67:29","text":" @dev Returns the current implementation address."},"id":6656,"implemented":true,"kind":"function","modifiers":[],"name":"getImplementation","nameLocation":"1450:17:29","nodeType":"FunctionDefinition","parameters":{"id":6645,"nodeType":"ParameterList","parameters":[],"src":"1467:2:29"},"returnParameters":{"id":6648,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6647,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6656,"src":"1493:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6646,"name":"address","nodeType":"ElementaryTypeName","src":"1493:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1492:9:29"},"scope":6904,"src":"1441:138:29","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":6682,"nodeType":"Block","src":"1734:218:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":6662,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6659,"src":"1748:17:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6663,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1766:4:29","memberName":"code","nodeType":"MemberAccess","src":"1748:22:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1771:6:29","memberName":"length","nodeType":"MemberAccess","src":"1748:29:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":6665,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1781:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1748:34:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6672,"nodeType":"IfStatement","src":"1744:119:29","trueBody":{"id":6671,"nodeType":"Block","src":"1784:79:29","statements":[{"errorCall":{"arguments":[{"id":6668,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6659,"src":"1834:17:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6667,"name":"ERC1967InvalidImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6630,"src":"1805:28:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":6669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1805:47:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6670,"nodeType":"RevertStatement","src":"1798:54:29"}]}},{"expression":{"id":6680,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":6676,"name":"IMPLEMENTATION_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6625,"src":"1899:19:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":6673,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11758,"src":"1872:11:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$11758_$","typeString":"type(library StorageSlot)"}},"id":6675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1884:14:29","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":11669,"src":"1872:26:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$11640_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":6677,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1872:47:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$11640_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":6678,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1920:5:29","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":11639,"src":"1872:53:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6679,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6659,"src":"1928:17:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1872:73:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6681,"nodeType":"ExpressionStatement","src":"1872:73:29"}]},"documentation":{"id":6657,"nodeType":"StructuredDocumentation","src":"1585:81:29","text":" @dev Stores a new address in the ERC-1967 implementation slot."},"id":6683,"implemented":true,"kind":"function","modifiers":[],"name":"_setImplementation","nameLocation":"1680:18:29","nodeType":"FunctionDefinition","parameters":{"id":6660,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6659,"mutability":"mutable","name":"newImplementation","nameLocation":"1707:17:29","nodeType":"VariableDeclaration","scope":6683,"src":"1699:25:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6658,"name":"address","nodeType":"ElementaryTypeName","src":"1699:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1698:27:29"},"returnParameters":{"id":6661,"nodeType":"ParameterList","parameters":[],"src":"1734:0:29"},"scope":6904,"src":"1671:281:29","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":6718,"nodeType":"Block","src":"2345:263:29","statements":[{"expression":{"arguments":[{"id":6692,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6686,"src":"2374:17:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6691,"name":"_setImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6683,"src":"2355:18:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":6693,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2355:37:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6694,"nodeType":"ExpressionStatement","src":"2355:37:29"},{"eventCall":{"arguments":[{"id":6698,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6686,"src":"2425:17:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":6695,"name":"IERC1967","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6226,"src":"2407:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1967_$6226_$","typeString":"type(contract IERC1967)"}},"id":6697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2416:8:29","memberName":"Upgraded","nodeType":"MemberAccess","referencedDeclaration":6213,"src":"2407:17:29","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":6699,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2407:36:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6700,"nodeType":"EmitStatement","src":"2402:41:29"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6701,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6688,"src":"2458:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2463:6:29","memberName":"length","nodeType":"MemberAccess","src":"2458:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":6703,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2472:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2458:15:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":6716,"nodeType":"Block","src":"2559:43:29","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":6713,"name":"_checkNonPayable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6903,"src":"2573:16:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":6714,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2573:18:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6715,"nodeType":"ExpressionStatement","src":"2573:18:29"}]},"id":6717,"nodeType":"IfStatement","src":"2454:148:29","trueBody":{"id":6712,"nodeType":"Block","src":"2475:78:29","statements":[{"expression":{"arguments":[{"id":6708,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6686,"src":"2518:17:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6709,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6688,"src":"2537:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":6705,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9984,"src":"2489:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$9984_$","typeString":"type(library Address)"}},"id":6707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2497:20:29","memberName":"functionDelegateCall","nodeType":"MemberAccess","referencedDeclaration":9894,"src":"2489:28:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":6710,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2489:53:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6711,"nodeType":"ExpressionStatement","src":"2489:53:29"}]}}]},"documentation":{"id":6684,"nodeType":"StructuredDocumentation","src":"1958:301:29","text":" @dev Performs implementation upgrade with additional setup call if data is nonempty.\n This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n to avoid stuck value in the contract.\n Emits an {IERC1967-Upgraded} event."},"id":6719,"implemented":true,"kind":"function","modifiers":[],"name":"upgradeToAndCall","nameLocation":"2273:16:29","nodeType":"FunctionDefinition","parameters":{"id":6689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6686,"mutability":"mutable","name":"newImplementation","nameLocation":"2298:17:29","nodeType":"VariableDeclaration","scope":6719,"src":"2290:25:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6685,"name":"address","nodeType":"ElementaryTypeName","src":"2290:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6688,"mutability":"mutable","name":"data","nameLocation":"2330:4:29","nodeType":"VariableDeclaration","scope":6719,"src":"2317:17:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6687,"name":"bytes","nodeType":"ElementaryTypeName","src":"2317:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2289:46:29"},"returnParameters":{"id":6690,"nodeType":"ParameterList","parameters":[],"src":"2345:0:29"},"scope":6904,"src":"2264:344:29","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"constant":true,"documentation":{"id":6720,"nodeType":"StructuredDocumentation","src":"2614:145:29","text":" @dev Storage slot with the admin of the contract.\n This is the keccak-256 hash of \"eip1967.proxy.admin\" subtracted by 1."},"id":6723,"mutability":"constant","name":"ADMIN_SLOT","nameLocation":"2855:10:29","nodeType":"VariableDeclaration","scope":6904,"src":"2829:105:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6721,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2829:7:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307862353331323736383461353638623331373361653133623966386136303136653234336536336236653865653131373864366137313738353062356436313033","id":6722,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2868:66:29","typeDescriptions":{"typeIdentifier":"t_rational_81955473079516046949633743016697847541294818689821282749996681496272635257091_by_1","typeString":"int_const 8195...(69 digits omitted)...7091"},"value":"0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103"},"visibility":"internal"},{"body":{"id":6735,"nodeType":"Block","src":"3339:68:29","statements":[{"expression":{"expression":{"arguments":[{"id":6731,"name":"ADMIN_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6723,"src":"3383:10:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":6729,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11758,"src":"3356:11:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$11758_$","typeString":"type(library StorageSlot)"}},"id":6730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3368:14:29","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":11669,"src":"3356:26:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$11640_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":6732,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3356:38:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$11640_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":6733,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3395:5:29","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":11639,"src":"3356:44:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":6728,"id":6734,"nodeType":"Return","src":"3349:51:29"}]},"documentation":{"id":6724,"nodeType":"StructuredDocumentation","src":"2941:341:29","text":" @dev Returns the current admin.\n TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using\n the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`"},"id":6736,"implemented":true,"kind":"function","modifiers":[],"name":"getAdmin","nameLocation":"3296:8:29","nodeType":"FunctionDefinition","parameters":{"id":6725,"nodeType":"ParameterList","parameters":[],"src":"3304:2:29"},"returnParameters":{"id":6728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6727,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6736,"src":"3330:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6726,"name":"address","nodeType":"ElementaryTypeName","src":"3330:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3329:9:29"},"scope":6904,"src":"3287:120:29","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":6766,"nodeType":"Block","src":"3535:172:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6747,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6742,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6739,"src":"3549:8:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6745,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3569:1:29","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":6744,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3561:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6743,"name":"address","nodeType":"ElementaryTypeName","src":"3561:7:29","typeDescriptions":{}}},"id":6746,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3561:10:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3549:22:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6756,"nodeType":"IfStatement","src":"3545:91:29","trueBody":{"id":6755,"nodeType":"Block","src":"3573:63:29","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":6751,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3622:1:29","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":6750,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3614:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6749,"name":"address","nodeType":"ElementaryTypeName","src":"3614:7:29","typeDescriptions":{}}},"id":6752,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3614:10:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6748,"name":"ERC1967InvalidAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6635,"src":"3594:19:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":6753,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3594:31:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6754,"nodeType":"RevertStatement","src":"3587:38:29"}]}},{"expression":{"id":6764,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":6760,"name":"ADMIN_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6723,"src":"3672:10:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":6757,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11758,"src":"3645:11:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$11758_$","typeString":"type(library StorageSlot)"}},"id":6759,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3657:14:29","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":11669,"src":"3645:26:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$11640_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":6761,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3645:38:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$11640_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":6762,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3684:5:29","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":11639,"src":"3645:44:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6763,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6739,"src":"3692:8:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3645:55:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6765,"nodeType":"ExpressionStatement","src":"3645:55:29"}]},"documentation":{"id":6737,"nodeType":"StructuredDocumentation","src":"3413:72:29","text":" @dev Stores a new address in the ERC-1967 admin slot."},"id":6767,"implemented":true,"kind":"function","modifiers":[],"name":"_setAdmin","nameLocation":"3499:9:29","nodeType":"FunctionDefinition","parameters":{"id":6740,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6739,"mutability":"mutable","name":"newAdmin","nameLocation":"3517:8:29","nodeType":"VariableDeclaration","scope":6767,"src":"3509:16:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6738,"name":"address","nodeType":"ElementaryTypeName","src":"3509:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3508:18:29"},"returnParameters":{"id":6741,"nodeType":"ParameterList","parameters":[],"src":"3535:0:29"},"scope":6904,"src":"3490:217:29","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":6785,"nodeType":"Block","src":"3875:94:29","statements":[{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":6776,"name":"getAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6736,"src":"3912:8:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":6777,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3912:10:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6778,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6770,"src":"3924:8:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":6773,"name":"IERC1967","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6226,"src":"3890:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1967_$6226_$","typeString":"type(contract IERC1967)"}},"id":6775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3899:12:29","memberName":"AdminChanged","nodeType":"MemberAccess","referencedDeclaration":6220,"src":"3890:21:29","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":6779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3890:43:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6780,"nodeType":"EmitStatement","src":"3885:48:29"},{"expression":{"arguments":[{"id":6782,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6770,"src":"3953:8:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6781,"name":"_setAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6767,"src":"3943:9:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":6783,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3943:19:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6784,"nodeType":"ExpressionStatement","src":"3943:19:29"}]},"documentation":{"id":6768,"nodeType":"StructuredDocumentation","src":"3713:109:29","text":" @dev Changes the admin of the proxy.\n Emits an {IERC1967-AdminChanged} event."},"id":6786,"implemented":true,"kind":"function","modifiers":[],"name":"changeAdmin","nameLocation":"3836:11:29","nodeType":"FunctionDefinition","parameters":{"id":6771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6770,"mutability":"mutable","name":"newAdmin","nameLocation":"3856:8:29","nodeType":"VariableDeclaration","scope":6786,"src":"3848:16:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6769,"name":"address","nodeType":"ElementaryTypeName","src":"3848:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3847:18:29"},"returnParameters":{"id":6772,"nodeType":"ParameterList","parameters":[],"src":"3875:0:29"},"scope":6904,"src":"3827:142:29","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"constant":true,"documentation":{"id":6787,"nodeType":"StructuredDocumentation","src":"3975:201:29","text":" @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.\n This is the keccak-256 hash of \"eip1967.proxy.beacon\" subtracted by 1."},"id":6790,"mutability":"constant","name":"BEACON_SLOT","nameLocation":"4272:11:29","nodeType":"VariableDeclaration","scope":6904,"src":"4246:106:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6788,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4246:7:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307861336630616437346535343233616562666438306433656634333436353738333335613961373261656165653539666636636233353832623335313333643530","id":6789,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4286:66:29","typeDescriptions":{"typeIdentifier":"t_rational_74152234768234802001998023604048924213078445070507226371336425913862612794704_by_1","typeString":"int_const 7415...(69 digits omitted)...4704"},"value":"0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50"},"visibility":"internal"},{"body":{"id":6802,"nodeType":"Block","src":"4468:69:29","statements":[{"expression":{"expression":{"arguments":[{"id":6798,"name":"BEACON_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6790,"src":"4512:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":6796,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11758,"src":"4485:11:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$11758_$","typeString":"type(library StorageSlot)"}},"id":6797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4497:14:29","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":11669,"src":"4485:26:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$11640_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":6799,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4485:39:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$11640_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":6800,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4525:5:29","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":11639,"src":"4485:45:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":6795,"id":6801,"nodeType":"Return","src":"4478:52:29"}]},"documentation":{"id":6791,"nodeType":"StructuredDocumentation","src":"4359:51:29","text":" @dev Returns the current beacon."},"id":6803,"implemented":true,"kind":"function","modifiers":[],"name":"getBeacon","nameLocation":"4424:9:29","nodeType":"FunctionDefinition","parameters":{"id":6792,"nodeType":"ParameterList","parameters":[],"src":"4433:2:29"},"returnParameters":{"id":6795,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6794,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6803,"src":"4459:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6793,"name":"address","nodeType":"ElementaryTypeName","src":"4459:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4458:9:29"},"scope":6904,"src":"4415:122:29","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":6848,"nodeType":"Block","src":"4667:390:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":6809,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6806,"src":"4681:9:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6810,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4691:4:29","memberName":"code","nodeType":"MemberAccess","src":"4681:14:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4696:6:29","memberName":"length","nodeType":"MemberAccess","src":"4681:21:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":6812,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4706:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4681:26:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6819,"nodeType":"IfStatement","src":"4677:95:29","trueBody":{"id":6818,"nodeType":"Block","src":"4709:63:29","statements":[{"errorCall":{"arguments":[{"id":6815,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6806,"src":"4751:9:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6814,"name":"ERC1967InvalidBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6640,"src":"4730:20:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":6816,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4730:31:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6817,"nodeType":"RevertStatement","src":"4723:38:29"}]}},{"expression":{"id":6827,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":6823,"name":"BEACON_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6790,"src":"4809:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":6820,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11758,"src":"4782:11:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$11758_$","typeString":"type(library StorageSlot)"}},"id":6822,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4794:14:29","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":11669,"src":"4782:26:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$11640_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":6824,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4782:39:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$11640_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":6825,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4822:5:29","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":11639,"src":"4782:45:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6826,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6806,"src":"4830:9:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4782:57:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6828,"nodeType":"ExpressionStatement","src":"4782:57:29"},{"assignments":[6830],"declarations":[{"constant":false,"id":6830,"mutability":"mutable","name":"beaconImplementation","nameLocation":"4858:20:29","nodeType":"VariableDeclaration","scope":6848,"src":"4850:28:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6829,"name":"address","nodeType":"ElementaryTypeName","src":"4850:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":6836,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":6832,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6806,"src":"4889:9:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6831,"name":"IBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6950,"src":"4881:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IBeacon_$6950_$","typeString":"type(contract IBeacon)"}},"id":6833,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4881:18:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IBeacon_$6950","typeString":"contract IBeacon"}},"id":6834,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4900:14:29","memberName":"implementation","nodeType":"MemberAccess","referencedDeclaration":6949,"src":"4881:33:29","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":6835,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4881:35:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4850:66:29"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6841,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":6837,"name":"beaconImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6830,"src":"4930:20:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6838,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4951:4:29","memberName":"code","nodeType":"MemberAccess","src":"4930:25:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6839,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4956:6:29","memberName":"length","nodeType":"MemberAccess","src":"4930:32:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":6840,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4966:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4930:37:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6847,"nodeType":"IfStatement","src":"4926:125:29","trueBody":{"id":6846,"nodeType":"Block","src":"4969:82:29","statements":[{"errorCall":{"arguments":[{"id":6843,"name":"beaconImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6830,"src":"5019:20:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6842,"name":"ERC1967InvalidImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6630,"src":"4990:28:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":6844,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4990:50:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6845,"nodeType":"RevertStatement","src":"4983:57:29"}]}}]},"documentation":{"id":6804,"nodeType":"StructuredDocumentation","src":"4543:72:29","text":" @dev Stores a new beacon in the ERC-1967 beacon slot."},"id":6849,"implemented":true,"kind":"function","modifiers":[],"name":"_setBeacon","nameLocation":"4629:10:29","nodeType":"FunctionDefinition","parameters":{"id":6807,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6806,"mutability":"mutable","name":"newBeacon","nameLocation":"4648:9:29","nodeType":"VariableDeclaration","scope":6849,"src":"4640:17:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6805,"name":"address","nodeType":"ElementaryTypeName","src":"4640:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4639:19:29"},"returnParameters":{"id":6808,"nodeType":"ParameterList","parameters":[],"src":"4667:0:29"},"scope":6904,"src":"4620:437:29","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":6888,"nodeType":"Block","src":"5661:263:29","statements":[{"expression":{"arguments":[{"id":6858,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6852,"src":"5682:9:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6857,"name":"_setBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6849,"src":"5671:10:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":6859,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5671:21:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6860,"nodeType":"ExpressionStatement","src":"5671:21:29"},{"eventCall":{"arguments":[{"id":6864,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6852,"src":"5731:9:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":6861,"name":"IERC1967","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6226,"src":"5707:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1967_$6226_$","typeString":"type(contract IERC1967)"}},"id":6863,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5716:14:29","memberName":"BeaconUpgraded","nodeType":"MemberAccess","referencedDeclaration":6225,"src":"5707:23:29","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":6865,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5707:34:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6866,"nodeType":"EmitStatement","src":"5702:39:29"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6867,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6854,"src":"5756:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6868,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5761:6:29","memberName":"length","nodeType":"MemberAccess","src":"5756:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":6869,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5770:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5756:15:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":6886,"nodeType":"Block","src":"5875:43:29","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":6883,"name":"_checkNonPayable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6903,"src":"5889:16:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":6884,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5889:18:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6885,"nodeType":"ExpressionStatement","src":"5889:18:29"}]},"id":6887,"nodeType":"IfStatement","src":"5752:166:29","trueBody":{"id":6882,"nodeType":"Block","src":"5773:96:29","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":6875,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6852,"src":"5824:9:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6874,"name":"IBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6950,"src":"5816:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IBeacon_$6950_$","typeString":"type(contract IBeacon)"}},"id":6876,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5816:18:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IBeacon_$6950","typeString":"contract IBeacon"}},"id":6877,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5835:14:29","memberName":"implementation","nodeType":"MemberAccess","referencedDeclaration":6949,"src":"5816:33:29","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":6878,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5816:35:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6879,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6854,"src":"5853:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":6871,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9984,"src":"5787:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$9984_$","typeString":"type(library Address)"}},"id":6873,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5795:20:29","memberName":"functionDelegateCall","nodeType":"MemberAccess","referencedDeclaration":9894,"src":"5787:28:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":6880,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5787:71:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6881,"nodeType":"ExpressionStatement","src":"5787:71:29"}]}}]},"documentation":{"id":6850,"nodeType":"StructuredDocumentation","src":"5063:514:29","text":" @dev Change the beacon and trigger a setup call if data is nonempty.\n This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n to avoid stuck value in the contract.\n Emits an {IERC1967-BeaconUpgraded} event.\n CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since\n it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for\n efficiency."},"id":6889,"implemented":true,"kind":"function","modifiers":[],"name":"upgradeBeaconToAndCall","nameLocation":"5591:22:29","nodeType":"FunctionDefinition","parameters":{"id":6855,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6852,"mutability":"mutable","name":"newBeacon","nameLocation":"5622:9:29","nodeType":"VariableDeclaration","scope":6889,"src":"5614:17:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6851,"name":"address","nodeType":"ElementaryTypeName","src":"5614:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6854,"mutability":"mutable","name":"data","nameLocation":"5646:4:29","nodeType":"VariableDeclaration","scope":6889,"src":"5633:17:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6853,"name":"bytes","nodeType":"ElementaryTypeName","src":"5633:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5613:38:29"},"returnParameters":{"id":6856,"nodeType":"ParameterList","parameters":[],"src":"5661:0:29"},"scope":6904,"src":"5582:342:29","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6902,"nodeType":"Block","src":"6149:86:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6896,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6893,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6163:3:29","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6167:5:29","memberName":"value","nodeType":"MemberAccess","src":"6163:9:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":6895,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6175:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6163:13:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6901,"nodeType":"IfStatement","src":"6159:70:29","trueBody":{"id":6900,"nodeType":"Block","src":"6178:51:29","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":6897,"name":"ERC1967NonPayable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6643,"src":"6199:17:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":6898,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6199:19:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6899,"nodeType":"RevertStatement","src":"6192:26:29"}]}}]},"documentation":{"id":6890,"nodeType":"StructuredDocumentation","src":"5930:178:29","text":" @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract\n if an upgrade doesn't perform an initialization call."},"id":6903,"implemented":true,"kind":"function","modifiers":[],"name":"_checkNonPayable","nameLocation":"6122:16:29","nodeType":"FunctionDefinition","parameters":{"id":6891,"nodeType":"ParameterList","parameters":[],"src":"6138:2:29"},"returnParameters":{"id":6892,"nodeType":"ParameterList","parameters":[],"src":"6149:0:29"},"scope":6904,"src":"6113:122:29","stateMutability":"nonpayable","virtual":false,"visibility":"private"}],"scope":6905,"src":"496:5741:29","usedErrors":[6630,6635,6640,6643],"usedEvents":[]}],"src":"114:6124:29"},"id":29},"@openzeppelin/contracts/proxy/Proxy.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/proxy/Proxy.sol","exportedSymbols":{"Proxy":[6940]},"id":6941,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6906,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:30"},{"abstract":true,"baseContracts":[],"canonicalName":"Proxy","contractDependencies":[],"contractKind":"contract","documentation":{"id":6907,"nodeType":"StructuredDocumentation","src":"125:598:30","text":" @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM\n instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to\n be specified by overriding the virtual {_implementation} function.\n Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a\n different contract through the {_delegate} function.\n The success and return data of the delegated call will be returned back to the caller of the proxy."},"fullyImplemented":false,"id":6940,"linearizedBaseContracts":[6940],"name":"Proxy","nameLocation":"742:5:30","nodeType":"ContractDefinition","nodes":[{"body":{"id":6914,"nodeType":"Block","src":"1009:862:30","statements":[{"AST":{"nativeSrc":"1028:837:30","nodeType":"YulBlock","src":"1028:837:30","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1281:4:30","nodeType":"YulLiteral","src":"1281:4:30","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1287:4:30","nodeType":"YulLiteral","src":"1287:4:30","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"1293:12:30","nodeType":"YulIdentifier","src":"1293:12:30"},"nativeSrc":"1293:14:30","nodeType":"YulFunctionCall","src":"1293:14:30"}],"functionName":{"name":"calldatacopy","nativeSrc":"1268:12:30","nodeType":"YulIdentifier","src":"1268:12:30"},"nativeSrc":"1268:40:30","nodeType":"YulFunctionCall","src":"1268:40:30"},"nativeSrc":"1268:40:30","nodeType":"YulExpressionStatement","src":"1268:40:30"},{"nativeSrc":"1435:83:30","nodeType":"YulVariableDeclaration","src":"1435:83:30","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"1462:3:30","nodeType":"YulIdentifier","src":"1462:3:30"},"nativeSrc":"1462:5:30","nodeType":"YulFunctionCall","src":"1462:5:30"},{"name":"implementation","nativeSrc":"1469:14:30","nodeType":"YulIdentifier","src":"1469:14:30"},{"kind":"number","nativeSrc":"1485:4:30","nodeType":"YulLiteral","src":"1485:4:30","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"1491:12:30","nodeType":"YulIdentifier","src":"1491:12:30"},"nativeSrc":"1491:14:30","nodeType":"YulFunctionCall","src":"1491:14:30"},{"kind":"number","nativeSrc":"1507:4:30","nodeType":"YulLiteral","src":"1507:4:30","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1513:4:30","nodeType":"YulLiteral","src":"1513:4:30","type":"","value":"0x00"}],"functionName":{"name":"delegatecall","nativeSrc":"1449:12:30","nodeType":"YulIdentifier","src":"1449:12:30"},"nativeSrc":"1449:69:30","nodeType":"YulFunctionCall","src":"1449:69:30"},"variables":[{"name":"result","nativeSrc":"1439:6:30","nodeType":"YulTypedName","src":"1439:6:30","type":""}]},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1586:4:30","nodeType":"YulLiteral","src":"1586:4:30","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1592:4:30","nodeType":"YulLiteral","src":"1592:4:30","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"1598:14:30","nodeType":"YulIdentifier","src":"1598:14:30"},"nativeSrc":"1598:16:30","nodeType":"YulFunctionCall","src":"1598:16:30"}],"functionName":{"name":"returndatacopy","nativeSrc":"1571:14:30","nodeType":"YulIdentifier","src":"1571:14:30"},"nativeSrc":"1571:44:30","nodeType":"YulFunctionCall","src":"1571:44:30"},"nativeSrc":"1571:44:30","nodeType":"YulExpressionStatement","src":"1571:44:30"},{"cases":[{"body":{"nativeSrc":"1710:62:30","nodeType":"YulBlock","src":"1710:62:30","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1735:4:30","nodeType":"YulLiteral","src":"1735:4:30","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"1741:14:30","nodeType":"YulIdentifier","src":"1741:14:30"},"nativeSrc":"1741:16:30","nodeType":"YulFunctionCall","src":"1741:16:30"}],"functionName":{"name":"revert","nativeSrc":"1728:6:30","nodeType":"YulIdentifier","src":"1728:6:30"},"nativeSrc":"1728:30:30","nodeType":"YulFunctionCall","src":"1728:30:30"},"nativeSrc":"1728:30:30","nodeType":"YulExpressionStatement","src":"1728:30:30"}]},"nativeSrc":"1703:69:30","nodeType":"YulCase","src":"1703:69:30","value":{"kind":"number","nativeSrc":"1708:1:30","nodeType":"YulLiteral","src":"1708:1:30","type":"","value":"0"}},{"body":{"nativeSrc":"1793:62:30","nodeType":"YulBlock","src":"1793:62:30","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1818:4:30","nodeType":"YulLiteral","src":"1818:4:30","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"1824:14:30","nodeType":"YulIdentifier","src":"1824:14:30"},"nativeSrc":"1824:16:30","nodeType":"YulFunctionCall","src":"1824:16:30"}],"functionName":{"name":"return","nativeSrc":"1811:6:30","nodeType":"YulIdentifier","src":"1811:6:30"},"nativeSrc":"1811:30:30","nodeType":"YulFunctionCall","src":"1811:30:30"},"nativeSrc":"1811:30:30","nodeType":"YulExpressionStatement","src":"1811:30:30"}]},"nativeSrc":"1785:70:30","nodeType":"YulCase","src":"1785:70:30","value":"default"}],"expression":{"name":"result","nativeSrc":"1636:6:30","nodeType":"YulIdentifier","src":"1636:6:30"},"nativeSrc":"1629:226:30","nodeType":"YulSwitch","src":"1629:226:30"}]},"evmVersion":"prague","externalReferences":[{"declaration":6910,"isOffset":false,"isSlot":false,"src":"1469:14:30","valueSize":1}],"id":6913,"nodeType":"InlineAssembly","src":"1019:846:30"}]},"documentation":{"id":6908,"nodeType":"StructuredDocumentation","src":"754:190:30","text":" @dev Delegates the current call to `implementation`.\n This function does not return to its internal call site, it will return directly to the external caller."},"id":6915,"implemented":true,"kind":"function","modifiers":[],"name":"_delegate","nameLocation":"958:9:30","nodeType":"FunctionDefinition","parameters":{"id":6911,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6910,"mutability":"mutable","name":"implementation","nameLocation":"976:14:30","nodeType":"VariableDeclaration","scope":6915,"src":"968:22:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6909,"name":"address","nodeType":"ElementaryTypeName","src":"968:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"967:24:30"},"returnParameters":{"id":6912,"nodeType":"ParameterList","parameters":[],"src":"1009:0:30"},"scope":6940,"src":"949:922:30","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"documentation":{"id":6916,"nodeType":"StructuredDocumentation","src":"1877:173:30","text":" @dev This is a virtual function that should be overridden so it returns the address to which the fallback\n function and {_fallback} should delegate."},"id":6921,"implemented":false,"kind":"function","modifiers":[],"name":"_implementation","nameLocation":"2064:15:30","nodeType":"FunctionDefinition","parameters":{"id":6917,"nodeType":"ParameterList","parameters":[],"src":"2079:2:30"},"returnParameters":{"id":6920,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6919,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6921,"src":"2113:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6918,"name":"address","nodeType":"ElementaryTypeName","src":"2113:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2112:9:30"},"scope":6940,"src":"2055:67:30","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":6930,"nodeType":"Block","src":"2388:45:30","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":6926,"name":"_implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6921,"src":"2408:15:30","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":6927,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2408:17:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6925,"name":"_delegate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6915,"src":"2398:9:30","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":6928,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2398:28:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6929,"nodeType":"ExpressionStatement","src":"2398:28:30"}]},"documentation":{"id":6922,"nodeType":"StructuredDocumentation","src":"2128:217:30","text":" @dev Delegates the current call to the address returned by `_implementation()`.\n This function does not return to its internal call site, it will return directly to the external caller."},"id":6931,"implemented":true,"kind":"function","modifiers":[],"name":"_fallback","nameLocation":"2359:9:30","nodeType":"FunctionDefinition","parameters":{"id":6923,"nodeType":"ParameterList","parameters":[],"src":"2368:2:30"},"returnParameters":{"id":6924,"nodeType":"ParameterList","parameters":[],"src":"2388:0:30"},"scope":6940,"src":"2350:83:30","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":6938,"nodeType":"Block","src":"2666:28:30","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":6935,"name":"_fallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6931,"src":"2676:9:30","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":6936,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2676:11:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6937,"nodeType":"ExpressionStatement","src":"2676:11:30"}]},"documentation":{"id":6932,"nodeType":"StructuredDocumentation","src":"2439:186:30","text":" @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other\n function in the contract matches the call data."},"id":6939,"implemented":true,"kind":"fallback","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":6933,"nodeType":"ParameterList","parameters":[],"src":"2638:2:30"},"returnParameters":{"id":6934,"nodeType":"ParameterList","parameters":[],"src":"2666:0:30"},"scope":6940,"src":"2630:64:30","stateMutability":"payable","virtual":true,"visibility":"external"}],"scope":6941,"src":"724:1972:30","usedErrors":[],"usedEvents":[]}],"src":"99:2598:30"},"id":30},"@openzeppelin/contracts/proxy/beacon/IBeacon.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/proxy/beacon/IBeacon.sol","exportedSymbols":{"IBeacon":[6950]},"id":6951,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6942,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"108:25:31"},{"abstract":false,"baseContracts":[],"canonicalName":"IBeacon","contractDependencies":[],"contractKind":"interface","documentation":{"id":6943,"nodeType":"StructuredDocumentation","src":"135:79:31","text":" @dev This is the interface that {BeaconProxy} expects of its beacon."},"fullyImplemented":false,"id":6950,"linearizedBaseContracts":[6950],"name":"IBeacon","nameLocation":"225:7:31","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6944,"nodeType":"StructuredDocumentation","src":"239:168:31","text":" @dev Must return an address that can be used as a delegate call target.\n {UpgradeableBeacon} will check that this address is a contract."},"functionSelector":"5c60da1b","id":6949,"implemented":false,"kind":"function","modifiers":[],"name":"implementation","nameLocation":"421:14:31","nodeType":"FunctionDefinition","parameters":{"id":6945,"nodeType":"ParameterList","parameters":[],"src":"435:2:31"},"returnParameters":{"id":6948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6947,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6949,"src":"461:7:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6946,"name":"address","nodeType":"ElementaryTypeName","src":"461:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"460:9:31"},"scope":6950,"src":"412:58:31","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":6951,"src":"215:257:31","usedErrors":[],"usedEvents":[]}],"src":"108:365:31"},"id":31},"@openzeppelin/contracts/proxy/utils/Initializable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","exportedSymbols":{"Initializable":[7218]},"id":7219,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6952,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"113:24:32"},{"abstract":true,"baseContracts":[],"canonicalName":"Initializable","contractDependencies":[],"contractKind":"contract","documentation":{"id":6953,"nodeType":"StructuredDocumentation","src":"139:2209:32","text":" @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n case an upgrade adds a module that needs to be initialized.\n For example:\n [.hljs-theme-light.nopadding]\n ```solidity\n contract MyToken is ERC20Upgradeable {\n     function initialize() initializer public {\n         __ERC20_init(\"MyToken\", \"MTK\");\n     }\n }\n contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n     function initializeV2() reinitializer(2) public {\n         __ERC20Permit_init(\"MyToken\");\n     }\n }\n ```\n TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n [CAUTION]\n ====\n Avoid leaving a contract uninitialized.\n An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n [.hljs-theme-light.nopadding]\n ```\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor() {\n     _disableInitializers();\n }\n ```\n ===="},"fullyImplemented":true,"id":7218,"linearizedBaseContracts":[7218],"name":"Initializable","nameLocation":"2367:13:32","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Initializable.InitializableStorage","documentation":{"id":6954,"nodeType":"StructuredDocumentation","src":"2387:293:32","text":" @dev Storage of the initializable contract.\n It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions\n when using with upgradeable contracts.\n @custom:storage-location erc7201:openzeppelin.storage.Initializable"},"id":6961,"members":[{"constant":false,"id":6957,"mutability":"mutable","name":"_initialized","nameLocation":"2820:12:32","nodeType":"VariableDeclaration","scope":6961,"src":"2813:19:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":6956,"name":"uint64","nodeType":"ElementaryTypeName","src":"2813:6:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":6960,"mutability":"mutable","name":"_initializing","nameLocation":"2955:13:32","nodeType":"VariableDeclaration","scope":6961,"src":"2950:18:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6959,"name":"bool","nodeType":"ElementaryTypeName","src":"2950:4:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"InitializableStorage","nameLocation":"2692:20:32","nodeType":"StructDefinition","scope":7218,"src":"2685:290:32","visibility":"public"},{"constant":true,"id":6964,"mutability":"constant","name":"INITIALIZABLE_STORAGE","nameLocation":"3123:21:32","nodeType":"VariableDeclaration","scope":7218,"src":"3098:115:32","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6962,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3098:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307866306335376531363834306466303430663135303838646332663831666533393163333932336265633733653233613936363265666339633232396336613030","id":6963,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3147:66:32","typeDescriptions":{"typeIdentifier":"t_rational_108904022758810753673719992590105913556127789646572562039383141376366747609600_by_1","typeString":"int_const 1089...(70 digits omitted)...9600"},"value":"0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00"},"visibility":"private"},{"documentation":{"id":6965,"nodeType":"StructuredDocumentation","src":"3220:60:32","text":" @dev The contract is already initialized."},"errorSelector":"f92ee8a9","id":6967,"name":"InvalidInitialization","nameLocation":"3291:21:32","nodeType":"ErrorDefinition","parameters":{"id":6966,"nodeType":"ParameterList","parameters":[],"src":"3312:2:32"},"src":"3285:30:32"},{"documentation":{"id":6968,"nodeType":"StructuredDocumentation","src":"3321:57:32","text":" @dev The contract is not initializing."},"errorSelector":"d7e6bcf8","id":6970,"name":"NotInitializing","nameLocation":"3389:15:32","nodeType":"ErrorDefinition","parameters":{"id":6969,"nodeType":"ParameterList","parameters":[],"src":"3404:2:32"},"src":"3383:24:32"},{"anonymous":false,"documentation":{"id":6971,"nodeType":"StructuredDocumentation","src":"3413:90:32","text":" @dev Triggered when the contract has been initialized or reinitialized."},"eventSelector":"c7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2","id":6975,"name":"Initialized","nameLocation":"3514:11:32","nodeType":"EventDefinition","parameters":{"id":6974,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6973,"indexed":false,"mutability":"mutable","name":"version","nameLocation":"3533:7:32","nodeType":"VariableDeclaration","scope":6975,"src":"3526:14:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":6972,"name":"uint64","nodeType":"ElementaryTypeName","src":"3526:6:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"3525:16:32"},"src":"3508:34:32"},{"body":{"id":7057,"nodeType":"Block","src":"4092:1079:32","statements":[{"assignments":[6980],"declarations":[{"constant":false,"id":6980,"mutability":"mutable","name":"$","nameLocation":"4187:1:32","nodeType":"VariableDeclaration","scope":7057,"src":"4158:30:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":6979,"nodeType":"UserDefinedTypeName","pathNode":{"id":6978,"name":"InitializableStorage","nameLocations":["4158:20:32"],"nodeType":"IdentifierPath","referencedDeclaration":6961,"src":"4158:20:32"},"referencedDeclaration":6961,"src":"4158:20:32","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"id":6983,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6981,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7217,"src":"4191:24:32","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$6961_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":6982,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4191:26:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"4158:59:32"},{"assignments":[6985],"declarations":[{"constant":false,"id":6985,"mutability":"mutable","name":"isTopLevelCall","nameLocation":"4284:14:32","nodeType":"VariableDeclaration","scope":7057,"src":"4279:19:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6984,"name":"bool","nodeType":"ElementaryTypeName","src":"4279:4:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":6989,"initialValue":{"id":6988,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4301:16:32","subExpression":{"expression":{"id":6986,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6980,"src":"4302:1:32","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":6987,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4304:13:32","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":6960,"src":"4302:15:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4279:38:32"},{"assignments":[6991],"declarations":[{"constant":false,"id":6991,"mutability":"mutable","name":"initialized","nameLocation":"4334:11:32","nodeType":"VariableDeclaration","scope":7057,"src":"4327:18:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":6990,"name":"uint64","nodeType":"ElementaryTypeName","src":"4327:6:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":6994,"initialValue":{"expression":{"id":6992,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6980,"src":"4348:1:32","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":6993,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4350:12:32","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":6957,"src":"4348:14:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"4327:35:32"},{"assignments":[6996],"declarations":[{"constant":false,"id":6996,"mutability":"mutable","name":"initialSetup","nameLocation":"4709:12:32","nodeType":"VariableDeclaration","scope":7057,"src":"4704:17:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6995,"name":"bool","nodeType":"ElementaryTypeName","src":"4704:4:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":7002,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":6999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6997,"name":"initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6991,"src":"4724:11:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":6998,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4739:1:32","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4724:16:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":7000,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6985,"src":"4744:14:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4724:34:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4704:54:32"},{"assignments":[7004],"declarations":[{"constant":false,"id":7004,"mutability":"mutable","name":"construction","nameLocation":"4773:12:32","nodeType":"VariableDeclaration","scope":7057,"src":"4768:17:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7003,"name":"bool","nodeType":"ElementaryTypeName","src":"4768:4:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":7017,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":7007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7005,"name":"initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6991,"src":"4788:11:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":7006,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4803:1:32","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4788:16:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7015,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"arguments":[{"id":7010,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4816:4:32","typeDescriptions":{"typeIdentifier":"t_contract$_Initializable_$7218","typeString":"contract Initializable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Initializable_$7218","typeString":"contract Initializable"}],"id":7009,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4808:7:32","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7008,"name":"address","nodeType":"ElementaryTypeName","src":"4808:7:32","typeDescriptions":{}}},"id":7011,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4808:13:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":7012,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4822:4:32","memberName":"code","nodeType":"MemberAccess","src":"4808:18:32","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4827:6:32","memberName":"length","nodeType":"MemberAccess","src":"4808:25:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":7014,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4837:1:32","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4808:30:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4788:50:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4768:70:32"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7022,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7019,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4853:13:32","subExpression":{"id":7018,"name":"initialSetup","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6996,"src":"4854:12:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":7021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4870:13:32","subExpression":{"id":7020,"name":"construction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7004,"src":"4871:12:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4853:30:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7027,"nodeType":"IfStatement","src":"4849:91:32","trueBody":{"id":7026,"nodeType":"Block","src":"4885:55:32","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":7023,"name":"InvalidInitialization","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6967,"src":"4906:21:32","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":7024,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4906:23:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7025,"nodeType":"RevertStatement","src":"4899:30:32"}]}},{"expression":{"id":7032,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7028,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6980,"src":"4949:1:32","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":7030,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4951:12:32","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":6957,"src":"4949:14:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"31","id":7031,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4966:1:32","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4949:18:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":7033,"nodeType":"ExpressionStatement","src":"4949:18:32"},{"condition":{"id":7034,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6985,"src":"4981:14:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7042,"nodeType":"IfStatement","src":"4977:67:32","trueBody":{"id":7041,"nodeType":"Block","src":"4997:47:32","statements":[{"expression":{"id":7039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7035,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6980,"src":"5011:1:32","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":7037,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5013:13:32","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":6960,"src":"5011:15:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":7038,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5029:4:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"5011:22:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7040,"nodeType":"ExpressionStatement","src":"5011:22:32"}]}},{"id":7043,"nodeType":"PlaceholderStatement","src":"5053:1:32"},{"condition":{"id":7044,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6985,"src":"5068:14:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7056,"nodeType":"IfStatement","src":"5064:101:32","trueBody":{"id":7055,"nodeType":"Block","src":"5084:81:32","statements":[{"expression":{"id":7049,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7045,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6980,"src":"5098:1:32","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":7047,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5100:13:32","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":6960,"src":"5098:15:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":7048,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5116:5:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"5098:23:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7050,"nodeType":"ExpressionStatement","src":"5098:23:32"},{"eventCall":{"arguments":[{"hexValue":"31","id":7052,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5152:1:32","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":7051,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6975,"src":"5140:11:32","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$returns$__$","typeString":"function (uint64)"}},"id":7053,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5140:14:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7054,"nodeType":"EmitStatement","src":"5135:19:32"}]}}]},"documentation":{"id":6976,"nodeType":"StructuredDocumentation","src":"3548:516:32","text":" @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n `onlyInitializing` functions can be used to initialize parent contracts.\n Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any\n number of times. This behavior in the constructor can be useful during testing and is not expected to be used in\n production.\n Emits an {Initialized} event."},"id":7058,"name":"initializer","nameLocation":"4078:11:32","nodeType":"ModifierDefinition","parameters":{"id":6977,"nodeType":"ParameterList","parameters":[],"src":"4089:2:32"},"src":"4069:1102:32","virtual":false,"visibility":"internal"},{"body":{"id":7104,"nodeType":"Block","src":"6289:392:32","statements":[{"assignments":[7065],"declarations":[{"constant":false,"id":7065,"mutability":"mutable","name":"$","nameLocation":"6384:1:32","nodeType":"VariableDeclaration","scope":7104,"src":"6355:30:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":7064,"nodeType":"UserDefinedTypeName","pathNode":{"id":7063,"name":"InitializableStorage","nameLocations":["6355:20:32"],"nodeType":"IdentifierPath","referencedDeclaration":6961,"src":"6355:20:32"},"referencedDeclaration":6961,"src":"6355:20:32","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"id":7068,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":7066,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7217,"src":"6388:24:32","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$6961_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":7067,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6388:26:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"6355:59:32"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7069,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7065,"src":"6429:1:32","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":7070,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6431:13:32","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":6960,"src":"6429:15:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":7074,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7071,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7065,"src":"6448:1:32","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":7072,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6450:12:32","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":6957,"src":"6448:14:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":7073,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7061,"src":"6466:7:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"6448:25:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6429:44:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7080,"nodeType":"IfStatement","src":"6425:105:32","trueBody":{"id":7079,"nodeType":"Block","src":"6475:55:32","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":7076,"name":"InvalidInitialization","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6967,"src":"6496:21:32","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":7077,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6496:23:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7078,"nodeType":"RevertStatement","src":"6489:30:32"}]}},{"expression":{"id":7085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7081,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7065,"src":"6539:1:32","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":7083,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6541:12:32","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":6957,"src":"6539:14:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7084,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7061,"src":"6556:7:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"6539:24:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":7086,"nodeType":"ExpressionStatement","src":"6539:24:32"},{"expression":{"id":7091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7087,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7065,"src":"6573:1:32","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":7089,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6575:13:32","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":6960,"src":"6573:15:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":7090,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6591:4:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6573:22:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7092,"nodeType":"ExpressionStatement","src":"6573:22:32"},{"id":7093,"nodeType":"PlaceholderStatement","src":"6605:1:32"},{"expression":{"id":7098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7094,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7065,"src":"6616:1:32","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":7096,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6618:13:32","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":6960,"src":"6616:15:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":7097,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6634:5:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"6616:23:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7099,"nodeType":"ExpressionStatement","src":"6616:23:32"},{"eventCall":{"arguments":[{"id":7101,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7061,"src":"6666:7:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":7100,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6975,"src":"6654:11:32","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$returns$__$","typeString":"function (uint64)"}},"id":7102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6654:20:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7103,"nodeType":"EmitStatement","src":"6649:25:32"}]},"documentation":{"id":7059,"nodeType":"StructuredDocumentation","src":"5177:1068:32","text":" @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n used to initialize parent contracts.\n A reinitializer may be used after the original initialization step. This is essential to configure modules that\n are added through upgrades and that require initialization.\n When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\n cannot be nested. If one is invoked in the context of another, execution will revert.\n Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n a contract, executing them in the right order is up to the developer or operator.\n WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.\n Emits an {Initialized} event."},"id":7105,"name":"reinitializer","nameLocation":"6259:13:32","nodeType":"ModifierDefinition","parameters":{"id":7062,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7061,"mutability":"mutable","name":"version","nameLocation":"6280:7:32","nodeType":"VariableDeclaration","scope":7105,"src":"6273:14:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7060,"name":"uint64","nodeType":"ElementaryTypeName","src":"6273:6:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6272:16:32"},"src":"6250:431:32","virtual":false,"visibility":"internal"},{"body":{"id":7112,"nodeType":"Block","src":"6919:48:32","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":7108,"name":"_checkInitializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7126,"src":"6929:18:32","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":7109,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6929:20:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7110,"nodeType":"ExpressionStatement","src":"6929:20:32"},{"id":7111,"nodeType":"PlaceholderStatement","src":"6959:1:32"}]},"documentation":{"id":7106,"nodeType":"StructuredDocumentation","src":"6687:199:32","text":" @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n {initializer} and {reinitializer} modifiers, directly or indirectly."},"id":7113,"name":"onlyInitializing","nameLocation":"6900:16:32","nodeType":"ModifierDefinition","parameters":{"id":7107,"nodeType":"ParameterList","parameters":[],"src":"6916:2:32"},"src":"6891:76:32","virtual":false,"visibility":"internal"},{"body":{"id":7125,"nodeType":"Block","src":"7134:89:32","statements":[{"condition":{"id":7119,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7148:18:32","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":7117,"name":"_isInitializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7194,"src":"7149:15:32","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":7118,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7149:17:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7124,"nodeType":"IfStatement","src":"7144:73:32","trueBody":{"id":7123,"nodeType":"Block","src":"7168:49:32","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":7120,"name":"NotInitializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6970,"src":"7189:15:32","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":7121,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7189:17:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7122,"nodeType":"RevertStatement","src":"7182:24:32"}]}}]},"documentation":{"id":7114,"nodeType":"StructuredDocumentation","src":"6973:104:32","text":" @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}."},"id":7126,"implemented":true,"kind":"function","modifiers":[],"name":"_checkInitializing","nameLocation":"7091:18:32","nodeType":"FunctionDefinition","parameters":{"id":7115,"nodeType":"ParameterList","parameters":[],"src":"7109:2:32"},"returnParameters":{"id":7116,"nodeType":"ParameterList","parameters":[],"src":"7134:0:32"},"scope":7218,"src":"7082:141:32","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":7171,"nodeType":"Block","src":"7758:373:32","statements":[{"assignments":[7132],"declarations":[{"constant":false,"id":7132,"mutability":"mutable","name":"$","nameLocation":"7853:1:32","nodeType":"VariableDeclaration","scope":7171,"src":"7824:30:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":7131,"nodeType":"UserDefinedTypeName","pathNode":{"id":7130,"name":"InitializableStorage","nameLocations":["7824:20:32"],"nodeType":"IdentifierPath","referencedDeclaration":6961,"src":"7824:20:32"},"referencedDeclaration":6961,"src":"7824:20:32","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"id":7135,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":7133,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7217,"src":"7857:24:32","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$6961_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":7134,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7857:26:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"7824:59:32"},{"condition":{"expression":{"id":7136,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7132,"src":"7898:1:32","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":7137,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7900:13:32","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":6960,"src":"7898:15:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7142,"nodeType":"IfStatement","src":"7894:76:32","trueBody":{"id":7141,"nodeType":"Block","src":"7915:55:32","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":7138,"name":"InvalidInitialization","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6967,"src":"7936:21:32","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":7139,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7936:23:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7140,"nodeType":"RevertStatement","src":"7929:30:32"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":7150,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7143,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7132,"src":"7983:1:32","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":7144,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7985:12:32","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":6957,"src":"7983:14:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":7147,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8006:6:32","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":7146,"name":"uint64","nodeType":"ElementaryTypeName","src":"8006:6:32","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":7145,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8001:4:32","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7148,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8001:12:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":7149,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8014:3:32","memberName":"max","nodeType":"MemberAccess","src":"8001:16:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"7983:34:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7170,"nodeType":"IfStatement","src":"7979:146:32","trueBody":{"id":7169,"nodeType":"Block","src":"8019:106:32","statements":[{"expression":{"id":7159,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7151,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7132,"src":"8033:1:32","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":7153,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8035:12:32","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":6957,"src":"8033:14:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"arguments":[{"id":7156,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8055:6:32","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":7155,"name":"uint64","nodeType":"ElementaryTypeName","src":"8055:6:32","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":7154,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8050:4:32","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7157,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8050:12:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":7158,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8063:3:32","memberName":"max","nodeType":"MemberAccess","src":"8050:16:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"8033:33:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":7160,"nodeType":"ExpressionStatement","src":"8033:33:32"},{"eventCall":{"arguments":[{"expression":{"arguments":[{"id":7164,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8102:6:32","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":7163,"name":"uint64","nodeType":"ElementaryTypeName","src":"8102:6:32","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":7162,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8097:4:32","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7165,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8097:12:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":7166,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8110:3:32","memberName":"max","nodeType":"MemberAccess","src":"8097:16:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":7161,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6975,"src":"8085:11:32","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$returns$__$","typeString":"function (uint64)"}},"id":7167,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8085:29:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7168,"nodeType":"EmitStatement","src":"8080:34:32"}]}}]},"documentation":{"id":7127,"nodeType":"StructuredDocumentation","src":"7229:475:32","text":" @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n through proxies.\n Emits an {Initialized} event the first time it is successfully executed."},"id":7172,"implemented":true,"kind":"function","modifiers":[],"name":"_disableInitializers","nameLocation":"7718:20:32","nodeType":"FunctionDefinition","parameters":{"id":7128,"nodeType":"ParameterList","parameters":[],"src":"7738:2:32"},"returnParameters":{"id":7129,"nodeType":"ParameterList","parameters":[],"src":"7758:0:32"},"scope":7218,"src":"7709:422:32","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":7182,"nodeType":"Block","src":"8306:63:32","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":7178,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7217,"src":"8323:24:32","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$6961_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":7179,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8323:26:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":7180,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8350:12:32","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":6957,"src":"8323:39:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":7177,"id":7181,"nodeType":"Return","src":"8316:46:32"}]},"documentation":{"id":7173,"nodeType":"StructuredDocumentation","src":"8137:99:32","text":" @dev Returns the highest version that has been initialized. See {reinitializer}."},"id":7183,"implemented":true,"kind":"function","modifiers":[],"name":"_getInitializedVersion","nameLocation":"8250:22:32","nodeType":"FunctionDefinition","parameters":{"id":7174,"nodeType":"ParameterList","parameters":[],"src":"8272:2:32"},"returnParameters":{"id":7177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7176,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7183,"src":"8298:6:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7175,"name":"uint64","nodeType":"ElementaryTypeName","src":"8298:6:32","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8297:8:32"},"scope":7218,"src":"8241:128:32","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":7193,"nodeType":"Block","src":"8541:64:32","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":7189,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7217,"src":"8558:24:32","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$6961_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":7190,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8558:26:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":7191,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8585:13:32","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":6960,"src":"8558:40:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":7188,"id":7192,"nodeType":"Return","src":"8551:47:32"}]},"documentation":{"id":7184,"nodeType":"StructuredDocumentation","src":"8375:105:32","text":" @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}."},"id":7194,"implemented":true,"kind":"function","modifiers":[],"name":"_isInitializing","nameLocation":"8494:15:32","nodeType":"FunctionDefinition","parameters":{"id":7185,"nodeType":"ParameterList","parameters":[],"src":"8509:2:32"},"returnParameters":{"id":7188,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7187,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7194,"src":"8535:4:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7186,"name":"bool","nodeType":"ElementaryTypeName","src":"8535:4:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8534:6:32"},"scope":7218,"src":"8485:120:32","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":7202,"nodeType":"Block","src":"8896:45:32","statements":[{"expression":{"id":7200,"name":"INITIALIZABLE_STORAGE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6964,"src":"8913:21:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":7199,"id":7201,"nodeType":"Return","src":"8906:28:32"}]},"documentation":{"id":7195,"nodeType":"StructuredDocumentation","src":"8611:203:32","text":" @dev Pointer to storage slot. Allows integrators to override it with a custom storage location.\n NOTE: Consider following the ERC-7201 formula to derive storage locations."},"id":7203,"implemented":true,"kind":"function","modifiers":[],"name":"_initializableStorageSlot","nameLocation":"8828:25:32","nodeType":"FunctionDefinition","parameters":{"id":7196,"nodeType":"ParameterList","parameters":[],"src":"8853:2:32"},"returnParameters":{"id":7199,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7198,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7203,"src":"8887:7:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7197,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8887:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8886:9:32"},"scope":7218,"src":"8819:122:32","stateMutability":"pure","virtual":true,"visibility":"internal"},{"body":{"id":7216,"nodeType":"Block","src":"9161:115:32","statements":[{"assignments":[7211],"declarations":[{"constant":false,"id":7211,"mutability":"mutable","name":"slot","nameLocation":"9179:4:32","nodeType":"VariableDeclaration","scope":7216,"src":"9171:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7210,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9171:7:32","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":7214,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":7212,"name":"_initializableStorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7203,"src":"9186:25:32","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_bytes32_$","typeString":"function () pure returns (bytes32)"}},"id":7213,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9186:27:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"9171:42:32"},{"AST":{"nativeSrc":"9232:38:32","nodeType":"YulBlock","src":"9232:38:32","statements":[{"nativeSrc":"9246:14:32","nodeType":"YulAssignment","src":"9246:14:32","value":{"name":"slot","nativeSrc":"9256:4:32","nodeType":"YulIdentifier","src":"9256:4:32"},"variableNames":[{"name":"$.slot","nativeSrc":"9246:6:32","nodeType":"YulIdentifier","src":"9246:6:32"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":7208,"isOffset":false,"isSlot":true,"src":"9246:6:32","suffix":"slot","valueSize":1},{"declaration":7211,"isOffset":false,"isSlot":false,"src":"9256:4:32","valueSize":1}],"id":7215,"nodeType":"InlineAssembly","src":"9223:47:32"}]},"documentation":{"id":7204,"nodeType":"StructuredDocumentation","src":"8947:67:32","text":" @dev Returns a pointer to the storage namespace."},"id":7217,"implemented":true,"kind":"function","modifiers":[],"name":"_getInitializableStorage","nameLocation":"9080:24:32","nodeType":"FunctionDefinition","parameters":{"id":7205,"nodeType":"ParameterList","parameters":[],"src":"9104:2:32"},"returnParameters":{"id":7209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7208,"mutability":"mutable","name":"$","nameLocation":"9158:1:32","nodeType":"VariableDeclaration","scope":7217,"src":"9129:30:32","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":7207,"nodeType":"UserDefinedTypeName","pathNode":{"id":7206,"name":"InitializableStorage","nameLocations":["9129:20:32"],"nodeType":"IdentifierPath","referencedDeclaration":6961,"src":"9129:20:32"},"referencedDeclaration":6961,"src":"9129:20:32","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$6961_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"src":"9128:32:32"},"scope":7218,"src":"9071:205:32","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":7219,"src":"2349:6929:32","usedErrors":[6967,6970],"usedEvents":[6975]}],"src":"113:9166:32"},"id":32},"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol","exportedSymbols":{"ERC1967Utils":[6904],"IERC1822Proxiable":[6435],"UUPSUpgradeable":[7384]},"id":7385,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7220,"literals":["solidity","^","0.8",".22"],"nodeType":"PragmaDirective","src":"115:24:33"},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC1822.sol","file":"../../interfaces/draft-IERC1822.sol","id":7222,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7385,"sourceUnit":6436,"src":"141:70:33","symbolAliases":[{"foreign":{"id":7221,"name":"IERC1822Proxiable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6435,"src":"149:17:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol","file":"../ERC1967/ERC1967Utils.sol","id":7224,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7385,"sourceUnit":6905,"src":"212:57:33","symbolAliases":[{"foreign":{"id":7223,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6904,"src":"220:12:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":7226,"name":"IERC1822Proxiable","nameLocations":["951:17:33"],"nodeType":"IdentifierPath","referencedDeclaration":6435,"src":"951:17:33"},"id":7227,"nodeType":"InheritanceSpecifier","src":"951:17:33"}],"canonicalName":"UUPSUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":7225,"nodeType":"StructuredDocumentation","src":"271:642:33","text":" @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an\n {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.\n A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is\n reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing\n `UUPSUpgradeable` with a custom implementation of upgrades.\n The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.\n @custom:stateless"},"fullyImplemented":false,"id":7384,"linearizedBaseContracts":[7384,6435],"name":"UUPSUpgradeable","nameLocation":"932:15:33","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":7228,"nodeType":"StructuredDocumentation","src":"975:61:33","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":7234,"mutability":"immutable","name":"__self","nameLocation":"1067:6:33","nodeType":"VariableDeclaration","scope":7384,"src":"1041:48:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7229,"name":"address","nodeType":"ElementaryTypeName","src":"1041:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"value":{"arguments":[{"id":7232,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1084:4:33","typeDescriptions":{"typeIdentifier":"t_contract$_UUPSUpgradeable_$7384","typeString":"contract UUPSUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_UUPSUpgradeable_$7384","typeString":"contract UUPSUpgradeable"}],"id":7231,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1076:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7230,"name":"address","nodeType":"ElementaryTypeName","src":"1076:7:33","typeDescriptions":{}}},"id":7233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1076:13:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"constant":true,"documentation":{"id":7235,"nodeType":"StructuredDocumentation","src":"1096:631:33","text":" @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)`\n and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called,\n while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string.\n If the getter returns `\"5.0.0\"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must\n be the empty byte string if no function should be called, making it impossible to invoke the `receive` function\n during an upgrade."},"functionSelector":"ad3cb1cc","id":7238,"mutability":"constant","name":"UPGRADE_INTERFACE_VERSION","nameLocation":"1755:25:33","nodeType":"VariableDeclaration","scope":7384,"src":"1732:58:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7236,"name":"string","nodeType":"ElementaryTypeName","src":"1732:6:33","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"value":{"hexValue":"352e302e30","id":7237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1783:7:33","typeDescriptions":{"typeIdentifier":"t_stringliteral_2ade050ecfcf8ae20ae1d10a23573f9d7e0bad85e74a2cf8338a65401e64558c","typeString":"literal_string \"5.0.0\""},"value":"5.0.0"},"visibility":"public"},{"documentation":{"id":7239,"nodeType":"StructuredDocumentation","src":"1797:65:33","text":" @dev The call is from an unauthorized context."},"errorSelector":"e07c8dba","id":7241,"name":"UUPSUnauthorizedCallContext","nameLocation":"1873:27:33","nodeType":"ErrorDefinition","parameters":{"id":7240,"nodeType":"ParameterList","parameters":[],"src":"1900:2:33"},"src":"1867:36:33"},{"documentation":{"id":7242,"nodeType":"StructuredDocumentation","src":"1909:68:33","text":" @dev The storage `slot` is unsupported as a UUID."},"errorSelector":"aa1d49a4","id":7246,"name":"UUPSUnsupportedProxiableUUID","nameLocation":"1988:28:33","nodeType":"ErrorDefinition","parameters":{"id":7245,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7244,"mutability":"mutable","name":"slot","nameLocation":"2025:4:33","nodeType":"VariableDeclaration","scope":7246,"src":"2017:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7243,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2017:7:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2016:14:33"},"src":"1982:49:33"},{"body":{"id":7253,"nodeType":"Block","src":"2558:41:33","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":7249,"name":"_checkProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7316,"src":"2568:11:33","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":7250,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2568:13:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7251,"nodeType":"ExpressionStatement","src":"2568:13:33"},{"id":7252,"nodeType":"PlaceholderStatement","src":"2591:1:33"}]},"documentation":{"id":7247,"nodeType":"StructuredDocumentation","src":"2037:495:33","text":" @dev Check that the execution is being performed through a delegatecall call and that the execution context is\n a proxy contract with an implementation (as defined in ERC-1967) pointing to self. This should only be the case\n for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a\n function through ERC-1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to\n fail."},"id":7254,"name":"onlyProxy","nameLocation":"2546:9:33","nodeType":"ModifierDefinition","parameters":{"id":7248,"nodeType":"ParameterList","parameters":[],"src":"2555:2:33"},"src":"2537:62:33","virtual":false,"visibility":"internal"},{"body":{"id":7261,"nodeType":"Block","src":"2829:48:33","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":7257,"name":"_checkNotDelegated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7332,"src":"2839:18:33","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":7258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2839:20:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7259,"nodeType":"ExpressionStatement","src":"2839:20:33"},{"id":7260,"nodeType":"PlaceholderStatement","src":"2869:1:33"}]},"documentation":{"id":7255,"nodeType":"StructuredDocumentation","src":"2605:195:33","text":" @dev Check that the execution is not being performed through a delegate call. This allows a function to be\n callable on the implementing contract but not through proxies."},"id":7262,"name":"notDelegated","nameLocation":"2814:12:33","nodeType":"ModifierDefinition","parameters":{"id":7256,"nodeType":"ParameterList","parameters":[],"src":"2826:2:33"},"src":"2805:72:33","virtual":false,"visibility":"internal"},{"baseFunctions":[6434],"body":{"id":7273,"nodeType":"Block","src":"3536:56:33","statements":[{"expression":{"expression":{"id":7270,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6904,"src":"3553:12:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$6904_$","typeString":"type(library ERC1967Utils)"}},"id":7271,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3566:19:33","memberName":"IMPLEMENTATION_SLOT","nodeType":"MemberAccess","referencedDeclaration":6625,"src":"3553:32:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":7269,"id":7272,"nodeType":"Return","src":"3546:39:33"}]},"documentation":{"id":7263,"nodeType":"StructuredDocumentation","src":"2883:578:33","text":" @dev Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the\n implementation. It is used to validate the implementation's compatibility when performing an upgrade.\n IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier."},"functionSelector":"52d1902d","id":7274,"implemented":true,"kind":"function","modifiers":[{"id":7266,"kind":"modifierInvocation","modifierName":{"id":7265,"name":"notDelegated","nameLocations":["3505:12:33"],"nodeType":"IdentifierPath","referencedDeclaration":7262,"src":"3505:12:33"},"nodeType":"ModifierInvocation","src":"3505:12:33"}],"name":"proxiableUUID","nameLocation":"3475:13:33","nodeType":"FunctionDefinition","parameters":{"id":7264,"nodeType":"ParameterList","parameters":[],"src":"3488:2:33"},"returnParameters":{"id":7269,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7268,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7274,"src":"3527:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7267,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3527:7:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3526:9:33"},"scope":7384,"src":"3466:126:33","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":7293,"nodeType":"Block","src":"4016:109:33","statements":[{"expression":{"arguments":[{"id":7285,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7277,"src":"4044:17:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7284,"name":"_authorizeUpgrade","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7338,"src":"4026:17:33","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":7286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4026:36:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7287,"nodeType":"ExpressionStatement","src":"4026:36:33"},{"expression":{"arguments":[{"id":7289,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7277,"src":"4094:17:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7290,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7279,"src":"4113:4:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7288,"name":"_upgradeToAndCallUUPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7383,"src":"4072:21:33","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,bytes memory)"}},"id":7291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4072:46:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7292,"nodeType":"ExpressionStatement","src":"4072:46:33"}]},"documentation":{"id":7275,"nodeType":"StructuredDocumentation","src":"3598:308:33","text":" @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call\n encoded in `data`.\n Calls {_authorizeUpgrade}.\n Emits an {Upgraded} event.\n @custom:oz-upgrades-unsafe-allow-reachable delegatecall"},"functionSelector":"4f1ef286","id":7294,"implemented":true,"kind":"function","modifiers":[{"id":7282,"kind":"modifierInvocation","modifierName":{"id":7281,"name":"onlyProxy","nameLocations":["4006:9:33"],"nodeType":"IdentifierPath","referencedDeclaration":7254,"src":"4006:9:33"},"nodeType":"ModifierInvocation","src":"4006:9:33"}],"name":"upgradeToAndCall","nameLocation":"3920:16:33","nodeType":"FunctionDefinition","parameters":{"id":7280,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7277,"mutability":"mutable","name":"newImplementation","nameLocation":"3945:17:33","nodeType":"VariableDeclaration","scope":7294,"src":"3937:25:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7276,"name":"address","nodeType":"ElementaryTypeName","src":"3937:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7279,"mutability":"mutable","name":"data","nameLocation":"3977:4:33","nodeType":"VariableDeclaration","scope":7294,"src":"3964:17:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7278,"name":"bytes","nodeType":"ElementaryTypeName","src":"3964:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3936:46:33"},"returnParameters":{"id":7283,"nodeType":"ParameterList","parameters":[],"src":"4016:0:33"},"scope":7384,"src":"3911:214:33","stateMutability":"payable","virtual":true,"visibility":"public"},{"body":{"id":7315,"nodeType":"Block","src":"4373:267:33","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7309,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7300,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4408:4:33","typeDescriptions":{"typeIdentifier":"t_contract$_UUPSUpgradeable_$7384","typeString":"contract UUPSUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_UUPSUpgradeable_$7384","typeString":"contract UUPSUpgradeable"}],"id":7299,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4400:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7298,"name":"address","nodeType":"ElementaryTypeName","src":"4400:7:33","typeDescriptions":{}}},"id":7301,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4400:13:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7302,"name":"__self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7234,"src":"4417:6:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4400:23:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7308,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":7304,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6904,"src":"4478:12:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$6904_$","typeString":"type(library ERC1967Utils)"}},"id":7305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4491:17:33","memberName":"getImplementation","nodeType":"MemberAccess","referencedDeclaration":6656,"src":"4478:30:33","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":7306,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4478:32:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7307,"name":"__self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7234,"src":"4514:6:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4478:42:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4400:120:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7314,"nodeType":"IfStatement","src":"4383:251:33","trueBody":{"id":7313,"nodeType":"Block","src":"4573:61:33","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":7310,"name":"UUPSUnauthorizedCallContext","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7241,"src":"4594:27:33","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":7311,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4594:29:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7312,"nodeType":"RevertStatement","src":"4587:36:33"}]}}]},"documentation":{"id":7295,"nodeType":"StructuredDocumentation","src":"4131:192:33","text":" @dev Reverts if the execution is not performed via delegatecall or the execution\n context is not of a proxy with an ERC-1967 compliant implementation pointing to self."},"id":7316,"implemented":true,"kind":"function","modifiers":[],"name":"_checkProxy","nameLocation":"4337:11:33","nodeType":"FunctionDefinition","parameters":{"id":7296,"nodeType":"ParameterList","parameters":[],"src":"4348:2:33"},"returnParameters":{"id":7297,"nodeType":"ParameterList","parameters":[],"src":"4373:0:33"},"scope":7384,"src":"4328:312:33","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":7331,"nodeType":"Block","src":"4809:161:33","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7322,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4831:4:33","typeDescriptions":{"typeIdentifier":"t_contract$_UUPSUpgradeable_$7384","typeString":"contract UUPSUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_UUPSUpgradeable_$7384","typeString":"contract UUPSUpgradeable"}],"id":7321,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4823:7:33","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7320,"name":"address","nodeType":"ElementaryTypeName","src":"4823:7:33","typeDescriptions":{}}},"id":7323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4823:13:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7324,"name":"__self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7234,"src":"4840:6:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4823:23:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7330,"nodeType":"IfStatement","src":"4819:145:33","trueBody":{"id":7329,"nodeType":"Block","src":"4848:116:33","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":7326,"name":"UUPSUnauthorizedCallContext","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7241,"src":"4924:27:33","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":7327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4924:29:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7328,"nodeType":"RevertStatement","src":"4917:36:33"}]}}]},"documentation":{"id":7317,"nodeType":"StructuredDocumentation","src":"4646:106:33","text":" @dev Reverts if the execution is performed via delegatecall.\n See {notDelegated}."},"id":7332,"implemented":true,"kind":"function","modifiers":[],"name":"_checkNotDelegated","nameLocation":"4766:18:33","nodeType":"FunctionDefinition","parameters":{"id":7318,"nodeType":"ParameterList","parameters":[],"src":"4784:2:33"},"returnParameters":{"id":7319,"nodeType":"ParameterList","parameters":[],"src":"4809:0:33"},"scope":7384,"src":"4757:213:33","stateMutability":"view","virtual":true,"visibility":"internal"},{"documentation":{"id":7333,"nodeType":"StructuredDocumentation","src":"4976:372:33","text":" @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by\n {upgradeToAndCall}.\n Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.\n ```solidity\n function _authorizeUpgrade(address) internal onlyOwner {}\n ```"},"id":7338,"implemented":false,"kind":"function","modifiers":[],"name":"_authorizeUpgrade","nameLocation":"5362:17:33","nodeType":"FunctionDefinition","parameters":{"id":7336,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7335,"mutability":"mutable","name":"newImplementation","nameLocation":"5388:17:33","nodeType":"VariableDeclaration","scope":7338,"src":"5380:25:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7334,"name":"address","nodeType":"ElementaryTypeName","src":"5380:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5379:27:33"},"returnParameters":{"id":7337,"nodeType":"ParameterList","parameters":[],"src":"5423:0:33"},"scope":7384,"src":"5353:71:33","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":7382,"nodeType":"Block","src":"5867:453:33","statements":[{"clauses":[{"block":{"id":7371,"nodeType":"Block","src":"5957:212:33","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":7357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7354,"name":"slot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7352,"src":"5975:4:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":7355,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6904,"src":"5983:12:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$6904_$","typeString":"type(library ERC1967Utils)"}},"id":7356,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5996:19:33","memberName":"IMPLEMENTATION_SLOT","nodeType":"MemberAccess","referencedDeclaration":6625,"src":"5983:32:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"5975:40:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7363,"nodeType":"IfStatement","src":"5971:120:33","trueBody":{"id":7362,"nodeType":"Block","src":"6017:74:33","statements":[{"errorCall":{"arguments":[{"id":7359,"name":"slot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7352,"src":"6071:4:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":7358,"name":"UUPSUnsupportedProxiableUUID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7246,"src":"6042:28:33","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":7360,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6042:34:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7361,"nodeType":"RevertStatement","src":"6035:41:33"}]}},{"expression":{"arguments":[{"id":7367,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7341,"src":"6134:17:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7368,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7343,"src":"6153:4:33","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":7364,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6904,"src":"6104:12:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$6904_$","typeString":"type(library ERC1967Utils)"}},"id":7366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6117:16:33","memberName":"upgradeToAndCall","nodeType":"MemberAccess","referencedDeclaration":6719,"src":"6104:29:33","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,bytes memory)"}},"id":7369,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6104:54:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7370,"nodeType":"ExpressionStatement","src":"6104:54:33"}]},"errorName":"","id":7372,"nodeType":"TryCatchClause","parameters":{"id":7353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7352,"mutability":"mutable","name":"slot","nameLocation":"5951:4:33","nodeType":"VariableDeclaration","scope":7372,"src":"5943:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7351,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5943:7:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5942:14:33"},"src":"5934:235:33"},{"block":{"id":7379,"nodeType":"Block","src":"6176:138:33","statements":[{"errorCall":{"arguments":[{"id":7376,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7341,"src":"6285:17:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":7373,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6904,"src":"6243:12:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$6904_$","typeString":"type(library ERC1967Utils)"}},"id":7375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6256:28:33","memberName":"ERC1967InvalidImplementation","nodeType":"MemberAccess","referencedDeclaration":6630,"src":"6243:41:33","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":7377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6243:60:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7378,"nodeType":"RevertStatement","src":"6236:67:33"}]},"errorName":"","id":7380,"nodeType":"TryCatchClause","src":"6170:144:33"}],"externalCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":7347,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7341,"src":"5899:17:33","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7346,"name":"IERC1822Proxiable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6435,"src":"5881:17:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1822Proxiable_$6435_$","typeString":"type(contract IERC1822Proxiable)"}},"id":7348,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5881:36:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC1822Proxiable_$6435","typeString":"contract IERC1822Proxiable"}},"id":7349,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5918:13:33","memberName":"proxiableUUID","nodeType":"MemberAccess","referencedDeclaration":6434,"src":"5881:50:33","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_bytes32_$","typeString":"function () view external returns (bytes32)"}},"id":7350,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5881:52:33","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":7381,"nodeType":"TryStatement","src":"5877:437:33"}]},"documentation":{"id":7339,"nodeType":"StructuredDocumentation","src":"5430:347:33","text":" @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call.\n As a security check, {proxiableUUID} is invoked in the new implementation, and the return value\n is expected to be the implementation slot in ERC-1967.\n Emits an {IERC1967-Upgraded} event."},"id":7383,"implemented":true,"kind":"function","modifiers":[],"name":"_upgradeToAndCallUUPS","nameLocation":"5791:21:33","nodeType":"FunctionDefinition","parameters":{"id":7344,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7341,"mutability":"mutable","name":"newImplementation","nameLocation":"5821:17:33","nodeType":"VariableDeclaration","scope":7383,"src":"5813:25:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7340,"name":"address","nodeType":"ElementaryTypeName","src":"5813:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7343,"mutability":"mutable","name":"data","nameLocation":"5853:4:33","nodeType":"VariableDeclaration","scope":7383,"src":"5840:17:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7342,"name":"bytes","nodeType":"ElementaryTypeName","src":"5840:5:33","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5812:46:33"},"returnParameters":{"id":7345,"nodeType":"ParameterList","parameters":[],"src":"5867:0:33"},"scope":7384,"src":"5782:538:33","stateMutability":"nonpayable","virtual":false,"visibility":"private"}],"scope":7385,"src":"914:5408:33","usedErrors":[6630,6643,7241,7246,9606,10740],"usedEvents":[6213]}],"src":"115:6208:33"},"id":33},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","exportedSymbols":{"Context":[10727],"ERC20":[7899],"IERC20":[7977],"IERC20Errors":[6477],"IERC20Metadata":[8863]},"id":7900,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7386,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"105:24:34"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"./IERC20.sol","id":7388,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7900,"sourceUnit":7978,"src":"131:36:34","symbolAliases":[{"foreign":{"id":7387,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"139:6:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"./extensions/IERC20Metadata.sol","id":7390,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7900,"sourceUnit":8864,"src":"168:63:34","symbolAliases":[{"foreign":{"id":7389,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"176:14:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":7392,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7900,"sourceUnit":10728,"src":"232:48:34","symbolAliases":[{"foreign":{"id":7391,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10727,"src":"240:7:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"../../interfaces/draft-IERC6093.sol","id":7394,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7900,"sourceUnit":6573,"src":"281:65:34","symbolAliases":[{"foreign":{"id":7393,"name":"IERC20Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6477,"src":"289:12:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":7396,"name":"Context","nameLocations":["1133:7:34"],"nodeType":"IdentifierPath","referencedDeclaration":10727,"src":"1133:7:34"},"id":7397,"nodeType":"InheritanceSpecifier","src":"1133:7:34"},{"baseName":{"id":7398,"name":"IERC20","nameLocations":["1142:6:34"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"1142:6:34"},"id":7399,"nodeType":"InheritanceSpecifier","src":"1142:6:34"},{"baseName":{"id":7400,"name":"IERC20Metadata","nameLocations":["1150:14:34"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"1150:14:34"},"id":7401,"nodeType":"InheritanceSpecifier","src":"1150:14:34"},{"baseName":{"id":7402,"name":"IERC20Errors","nameLocations":["1166:12:34"],"nodeType":"IdentifierPath","referencedDeclaration":6477,"src":"1166:12:34"},"id":7403,"nodeType":"InheritanceSpecifier","src":"1166:12:34"}],"canonicalName":"ERC20","contractDependencies":[],"contractKind":"contract","documentation":{"id":7395,"nodeType":"StructuredDocumentation","src":"348:757:34","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":7899,"linearizedBaseContracts":[7899,6477,8863,7977,10727],"name":"ERC20","nameLocation":"1124:5:34","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":7407,"mutability":"mutable","name":"_balances","nameLocation":"1229:9:34","nodeType":"VariableDeclaration","scope":7899,"src":"1185:53:34","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":7406,"keyName":"account","keyNameLocation":"1201:7:34","keyType":{"id":7404,"name":"address","nodeType":"ElementaryTypeName","src":"1193:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1185:35:34","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":7405,"name":"uint256","nodeType":"ElementaryTypeName","src":"1212:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":7413,"mutability":"mutable","name":"_allowances","nameLocation":"1317:11:34","nodeType":"VariableDeclaration","scope":7899,"src":"1245:83:34","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":7412,"keyName":"account","keyNameLocation":"1261:7:34","keyType":{"id":7408,"name":"address","nodeType":"ElementaryTypeName","src":"1253:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1245:63:34","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":7411,"keyName":"spender","keyNameLocation":"1288:7:34","keyType":{"id":7409,"name":"address","nodeType":"ElementaryTypeName","src":"1280:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1272:35:34","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":7410,"name":"uint256","nodeType":"ElementaryTypeName","src":"1299:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"id":7415,"mutability":"mutable","name":"_totalSupply","nameLocation":"1351:12:34","nodeType":"VariableDeclaration","scope":7899,"src":"1335:28:34","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7414,"name":"uint256","nodeType":"ElementaryTypeName","src":"1335:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":7417,"mutability":"mutable","name":"_name","nameLocation":"1385:5:34","nodeType":"VariableDeclaration","scope":7899,"src":"1370:20:34","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":7416,"name":"string","nodeType":"ElementaryTypeName","src":"1370:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":7419,"mutability":"mutable","name":"_symbol","nameLocation":"1411:7:34","nodeType":"VariableDeclaration","scope":7899,"src":"1396:22:34","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":7418,"name":"string","nodeType":"ElementaryTypeName","src":"1396:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":7435,"nodeType":"Block","src":"1638:57:34","statements":[{"expression":{"id":7429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7427,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7417,"src":"1648:5:34","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7428,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7422,"src":"1656:5:34","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1648:13:34","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":7430,"nodeType":"ExpressionStatement","src":"1648:13:34"},{"expression":{"id":7433,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7431,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7419,"src":"1671:7:34","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7432,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7424,"src":"1681:7:34","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1671:17:34","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":7434,"nodeType":"ExpressionStatement","src":"1671:17:34"}]},"documentation":{"id":7420,"nodeType":"StructuredDocumentation","src":"1425:152:34","text":" @dev Sets the values for {name} and {symbol}.\n Both values are immutable: they can only be set once during construction."},"id":7436,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":7425,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7422,"mutability":"mutable","name":"name_","nameLocation":"1608:5:34","nodeType":"VariableDeclaration","scope":7436,"src":"1594:19:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7421,"name":"string","nodeType":"ElementaryTypeName","src":"1594:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7424,"mutability":"mutable","name":"symbol_","nameLocation":"1629:7:34","nodeType":"VariableDeclaration","scope":7436,"src":"1615:21:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7423,"name":"string","nodeType":"ElementaryTypeName","src":"1615:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1593:44:34"},"returnParameters":{"id":7426,"nodeType":"ParameterList","parameters":[],"src":"1638:0:34"},"scope":7899,"src":"1582:113:34","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[8850],"body":{"id":7444,"nodeType":"Block","src":"1820:29:34","statements":[{"expression":{"id":7442,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7417,"src":"1837:5:34","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":7441,"id":7443,"nodeType":"Return","src":"1830:12:34"}]},"documentation":{"id":7437,"nodeType":"StructuredDocumentation","src":"1701:54:34","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":7445,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"1769:4:34","nodeType":"FunctionDefinition","parameters":{"id":7438,"nodeType":"ParameterList","parameters":[],"src":"1773:2:34"},"returnParameters":{"id":7441,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7440,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7445,"src":"1805:13:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7439,"name":"string","nodeType":"ElementaryTypeName","src":"1805:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1804:15:34"},"scope":7899,"src":"1760:89:34","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[8856],"body":{"id":7453,"nodeType":"Block","src":"2024:31:34","statements":[{"expression":{"id":7451,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7419,"src":"2041:7:34","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":7450,"id":7452,"nodeType":"Return","src":"2034:14:34"}]},"documentation":{"id":7446,"nodeType":"StructuredDocumentation","src":"1855:102:34","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":7454,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"1971:6:34","nodeType":"FunctionDefinition","parameters":{"id":7447,"nodeType":"ParameterList","parameters":[],"src":"1977:2:34"},"returnParameters":{"id":7450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7449,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7454,"src":"2009:13:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7448,"name":"string","nodeType":"ElementaryTypeName","src":"2009:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2008:15:34"},"scope":7899,"src":"1962:93:34","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[8862],"body":{"id":7462,"nodeType":"Block","src":"2744:26:34","statements":[{"expression":{"hexValue":"3138","id":7460,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2761:2:34","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":7459,"id":7461,"nodeType":"Return","src":"2754:9:34"}]},"documentation":{"id":7455,"nodeType":"StructuredDocumentation","src":"2061:622:34","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":7463,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"2697:8:34","nodeType":"FunctionDefinition","parameters":{"id":7456,"nodeType":"ParameterList","parameters":[],"src":"2705:2:34"},"returnParameters":{"id":7459,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7458,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7463,"src":"2737:5:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":7457,"name":"uint8","nodeType":"ElementaryTypeName","src":"2737:5:34","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2736:7:34"},"scope":7899,"src":"2688:82:34","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[7926],"body":{"id":7471,"nodeType":"Block","src":"2864:36:34","statements":[{"expression":{"id":7469,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7415,"src":"2881:12:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7468,"id":7470,"nodeType":"Return","src":"2874:19:34"}]},"documentation":{"id":7464,"nodeType":"StructuredDocumentation","src":"2776:22:34","text":"@inheritdoc IERC20"},"functionSelector":"18160ddd","id":7472,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"2812:11:34","nodeType":"FunctionDefinition","parameters":{"id":7465,"nodeType":"ParameterList","parameters":[],"src":"2823:2:34"},"returnParameters":{"id":7468,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7467,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7472,"src":"2855:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7466,"name":"uint256","nodeType":"ElementaryTypeName","src":"2855:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2854:9:34"},"scope":7899,"src":"2803:97:34","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[7934],"body":{"id":7484,"nodeType":"Block","src":"3007:42:34","statements":[{"expression":{"baseExpression":{"id":7480,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7407,"src":"3024:9:34","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":7482,"indexExpression":{"id":7481,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7475,"src":"3034:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3024:18:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7479,"id":7483,"nodeType":"Return","src":"3017:25:34"}]},"documentation":{"id":7473,"nodeType":"StructuredDocumentation","src":"2906:22:34","text":"@inheritdoc IERC20"},"functionSelector":"70a08231","id":7485,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"2942:9:34","nodeType":"FunctionDefinition","parameters":{"id":7476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7475,"mutability":"mutable","name":"account","nameLocation":"2960:7:34","nodeType":"VariableDeclaration","scope":7485,"src":"2952:15:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7474,"name":"address","nodeType":"ElementaryTypeName","src":"2952:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2951:17:34"},"returnParameters":{"id":7479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7478,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7485,"src":"2998:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7477,"name":"uint256","nodeType":"ElementaryTypeName","src":"2998:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2997:9:34"},"scope":7899,"src":"2933:116:34","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[7944],"body":{"id":7508,"nodeType":"Block","src":"3319:103:34","statements":[{"assignments":[7496],"declarations":[{"constant":false,"id":7496,"mutability":"mutable","name":"owner","nameLocation":"3337:5:34","nodeType":"VariableDeclaration","scope":7508,"src":"3329:13:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7495,"name":"address","nodeType":"ElementaryTypeName","src":"3329:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":7499,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":7497,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10709,"src":"3345:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":7498,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3345:12:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3329:28:34"},{"expression":{"arguments":[{"id":7501,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7496,"src":"3377:5:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7502,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7488,"src":"3384:2:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7503,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7490,"src":"3388:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7500,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7629,"src":"3367:9:34","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":7504,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3367:27:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7505,"nodeType":"ExpressionStatement","src":"3367:27:34"},{"expression":{"hexValue":"74727565","id":7506,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3411:4:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":7494,"id":7507,"nodeType":"Return","src":"3404:11:34"}]},"documentation":{"id":7486,"nodeType":"StructuredDocumentation","src":"3055:184:34","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":7509,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"3253:8:34","nodeType":"FunctionDefinition","parameters":{"id":7491,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7488,"mutability":"mutable","name":"to","nameLocation":"3270:2:34","nodeType":"VariableDeclaration","scope":7509,"src":"3262:10:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7487,"name":"address","nodeType":"ElementaryTypeName","src":"3262:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7490,"mutability":"mutable","name":"value","nameLocation":"3282:5:34","nodeType":"VariableDeclaration","scope":7509,"src":"3274:13:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7489,"name":"uint256","nodeType":"ElementaryTypeName","src":"3274:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3261:27:34"},"returnParameters":{"id":7494,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7493,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7509,"src":"3313:4:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7492,"name":"bool","nodeType":"ElementaryTypeName","src":"3313:4:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3312:6:34"},"scope":7899,"src":"3244:178:34","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[7954],"body":{"id":7525,"nodeType":"Block","src":"3544:51:34","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":7519,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7413,"src":"3561:11:34","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":7521,"indexExpression":{"id":7520,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7512,"src":"3573:5:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3561:18:34","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":7523,"indexExpression":{"id":7522,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7514,"src":"3580:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3561:27:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7518,"id":7524,"nodeType":"Return","src":"3554:34:34"}]},"documentation":{"id":7510,"nodeType":"StructuredDocumentation","src":"3428:22:34","text":"@inheritdoc IERC20"},"functionSelector":"dd62ed3e","id":7526,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"3464:9:34","nodeType":"FunctionDefinition","parameters":{"id":7515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7512,"mutability":"mutable","name":"owner","nameLocation":"3482:5:34","nodeType":"VariableDeclaration","scope":7526,"src":"3474:13:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7511,"name":"address","nodeType":"ElementaryTypeName","src":"3474:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7514,"mutability":"mutable","name":"spender","nameLocation":"3497:7:34","nodeType":"VariableDeclaration","scope":7526,"src":"3489:15:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7513,"name":"address","nodeType":"ElementaryTypeName","src":"3489:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3473:32:34"},"returnParameters":{"id":7518,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7517,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7526,"src":"3535:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7516,"name":"uint256","nodeType":"ElementaryTypeName","src":"3535:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3534:9:34"},"scope":7899,"src":"3455:140:34","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[7964],"body":{"id":7549,"nodeType":"Block","src":"3981:107:34","statements":[{"assignments":[7537],"declarations":[{"constant":false,"id":7537,"mutability":"mutable","name":"owner","nameLocation":"3999:5:34","nodeType":"VariableDeclaration","scope":7549,"src":"3991:13:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7536,"name":"address","nodeType":"ElementaryTypeName","src":"3991:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":7540,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":7538,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10709,"src":"4007:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":7539,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4007:12:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3991:28:34"},{"expression":{"arguments":[{"id":7542,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7537,"src":"4038:5:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7543,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7529,"src":"4045:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7544,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7531,"src":"4054:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7541,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[7790,7850],"referencedDeclaration":7790,"src":"4029:8:34","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":7545,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4029:31:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7546,"nodeType":"ExpressionStatement","src":"4029:31:34"},{"expression":{"hexValue":"74727565","id":7547,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4077:4:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":7535,"id":7548,"nodeType":"Return","src":"4070:11:34"}]},"documentation":{"id":7527,"nodeType":"StructuredDocumentation","src":"3601:296:34","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":7550,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"3911:7:34","nodeType":"FunctionDefinition","parameters":{"id":7532,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7529,"mutability":"mutable","name":"spender","nameLocation":"3927:7:34","nodeType":"VariableDeclaration","scope":7550,"src":"3919:15:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7528,"name":"address","nodeType":"ElementaryTypeName","src":"3919:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7531,"mutability":"mutable","name":"value","nameLocation":"3944:5:34","nodeType":"VariableDeclaration","scope":7550,"src":"3936:13:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7530,"name":"uint256","nodeType":"ElementaryTypeName","src":"3936:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3918:32:34"},"returnParameters":{"id":7535,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7534,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7550,"src":"3975:4:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7533,"name":"bool","nodeType":"ElementaryTypeName","src":"3975:4:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3974:6:34"},"scope":7899,"src":"3902:186:34","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[7976],"body":{"id":7581,"nodeType":"Block","src":"4773:151:34","statements":[{"assignments":[7563],"declarations":[{"constant":false,"id":7563,"mutability":"mutable","name":"spender","nameLocation":"4791:7:34","nodeType":"VariableDeclaration","scope":7581,"src":"4783:15:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7562,"name":"address","nodeType":"ElementaryTypeName","src":"4783:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":7566,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":7564,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10709,"src":"4801:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":7565,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4801:12:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4783:30:34"},{"expression":{"arguments":[{"id":7568,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7553,"src":"4839:4:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7569,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7563,"src":"4845:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7570,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7557,"src":"4854:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7567,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7898,"src":"4823:15:34","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":7571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4823:37:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7572,"nodeType":"ExpressionStatement","src":"4823:37:34"},{"expression":{"arguments":[{"id":7574,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7553,"src":"4880:4:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7575,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7555,"src":"4886:2:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7576,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7557,"src":"4890:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7573,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7629,"src":"4870:9:34","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":7577,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4870:26:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7578,"nodeType":"ExpressionStatement","src":"4870:26:34"},{"expression":{"hexValue":"74727565","id":7579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4913:4:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":7561,"id":7580,"nodeType":"Return","src":"4906:11:34"}]},"documentation":{"id":7551,"nodeType":"StructuredDocumentation","src":"4094:581:34","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":7582,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"4689:12:34","nodeType":"FunctionDefinition","parameters":{"id":7558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7553,"mutability":"mutable","name":"from","nameLocation":"4710:4:34","nodeType":"VariableDeclaration","scope":7582,"src":"4702:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7552,"name":"address","nodeType":"ElementaryTypeName","src":"4702:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7555,"mutability":"mutable","name":"to","nameLocation":"4724:2:34","nodeType":"VariableDeclaration","scope":7582,"src":"4716:10:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7554,"name":"address","nodeType":"ElementaryTypeName","src":"4716:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7557,"mutability":"mutable","name":"value","nameLocation":"4736:5:34","nodeType":"VariableDeclaration","scope":7582,"src":"4728:13:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7556,"name":"uint256","nodeType":"ElementaryTypeName","src":"4728:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4701:41:34"},"returnParameters":{"id":7561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7560,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7582,"src":"4767:4:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7559,"name":"bool","nodeType":"ElementaryTypeName","src":"4767:4:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4766:6:34"},"scope":7899,"src":"4680:244:34","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":7628,"nodeType":"Block","src":"5366:231:34","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7592,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7585,"src":"5380:4:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":7595,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5396: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":7594,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5388:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7593,"name":"address","nodeType":"ElementaryTypeName","src":"5388:7:34","typeDescriptions":{}}},"id":7596,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5388:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5380:18:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7606,"nodeType":"IfStatement","src":"5376:86:34","trueBody":{"id":7605,"nodeType":"Block","src":"5400:62:34","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":7601,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5448: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":7600,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5440:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7599,"name":"address","nodeType":"ElementaryTypeName","src":"5440:7:34","typeDescriptions":{}}},"id":7602,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5440:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7598,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6452,"src":"5421:18:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":7603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5421:30:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7604,"nodeType":"RevertStatement","src":"5414:37:34"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7607,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7587,"src":"5475:2:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":7610,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5489: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":7609,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5481:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7608,"name":"address","nodeType":"ElementaryTypeName","src":"5481:7:34","typeDescriptions":{}}},"id":7611,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5481:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5475:16:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7621,"nodeType":"IfStatement","src":"5471:86:34","trueBody":{"id":7620,"nodeType":"Block","src":"5493:64:34","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":7616,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5543: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":7615,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5535:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7614,"name":"address","nodeType":"ElementaryTypeName","src":"5535:7:34","typeDescriptions":{}}},"id":7617,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5535:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7613,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6457,"src":"5514:20:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":7618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5514:32:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7619,"nodeType":"RevertStatement","src":"5507:39:34"}]}},{"expression":{"arguments":[{"id":7623,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7585,"src":"5574:4:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7624,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7587,"src":"5580:2:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7625,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7589,"src":"5584:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7622,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7706,"src":"5566:7:34","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":7626,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5566:24:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7627,"nodeType":"ExpressionStatement","src":"5566:24:34"}]},"documentation":{"id":7583,"nodeType":"StructuredDocumentation","src":"4930:362:34","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":7629,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"5306:9:34","nodeType":"FunctionDefinition","parameters":{"id":7590,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7585,"mutability":"mutable","name":"from","nameLocation":"5324:4:34","nodeType":"VariableDeclaration","scope":7629,"src":"5316:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7584,"name":"address","nodeType":"ElementaryTypeName","src":"5316:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7587,"mutability":"mutable","name":"to","nameLocation":"5338:2:34","nodeType":"VariableDeclaration","scope":7629,"src":"5330:10:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7586,"name":"address","nodeType":"ElementaryTypeName","src":"5330:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7589,"mutability":"mutable","name":"value","nameLocation":"5350:5:34","nodeType":"VariableDeclaration","scope":7629,"src":"5342:13:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7588,"name":"uint256","nodeType":"ElementaryTypeName","src":"5342:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5315:41:34"},"returnParameters":{"id":7591,"nodeType":"ParameterList","parameters":[],"src":"5366:0:34"},"scope":7899,"src":"5297:300:34","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":7705,"nodeType":"Block","src":"5987:1032:34","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7644,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7639,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7632,"src":"6001:4:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":7642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6017: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":7641,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6009:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7640,"name":"address","nodeType":"ElementaryTypeName","src":"6009:7:34","typeDescriptions":{}}},"id":7643,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6009:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6001:18:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7676,"nodeType":"Block","src":"6175:362:34","statements":[{"assignments":[7651],"declarations":[{"constant":false,"id":7651,"mutability":"mutable","name":"fromBalance","nameLocation":"6197:11:34","nodeType":"VariableDeclaration","scope":7676,"src":"6189:19:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7650,"name":"uint256","nodeType":"ElementaryTypeName","src":"6189:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7655,"initialValue":{"baseExpression":{"id":7652,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7407,"src":"6211:9:34","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":7654,"indexExpression":{"id":7653,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7632,"src":"6221:4:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6211:15:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6189:37:34"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7658,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7656,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7651,"src":"6244:11:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":7657,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7636,"src":"6258:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6244:19:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7666,"nodeType":"IfStatement","src":"6240:115:34","trueBody":{"id":7665,"nodeType":"Block","src":"6265:90:34","statements":[{"errorCall":{"arguments":[{"id":7660,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7632,"src":"6315:4:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7661,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7651,"src":"6321:11:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7662,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7636,"src":"6334:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7659,"name":"ERC20InsufficientBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6447,"src":"6290:24:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":7663,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6290:50:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7664,"nodeType":"RevertStatement","src":"6283:57:34"}]}},{"id":7675,"nodeType":"UncheckedBlock","src":"6368:159:34","statements":[{"expression":{"id":7673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":7667,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7407,"src":"6475:9:34","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":7669,"indexExpression":{"id":7668,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7632,"src":"6485:4:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6475:15:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7672,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7670,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7651,"src":"6493:11:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":7671,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7636,"src":"6507:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6493:19:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6475:37:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7674,"nodeType":"ExpressionStatement","src":"6475:37:34"}]}]},"id":7677,"nodeType":"IfStatement","src":"5997:540:34","trueBody":{"id":7649,"nodeType":"Block","src":"6021:148:34","statements":[{"expression":{"id":7647,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7645,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7415,"src":"6137:12:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":7646,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7636,"src":"6153:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6137:21:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7648,"nodeType":"ExpressionStatement","src":"6137:21:34"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7678,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7634,"src":"6551:2:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":7681,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6565: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":7680,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6557:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7679,"name":"address","nodeType":"ElementaryTypeName","src":"6557:7:34","typeDescriptions":{}}},"id":7682,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6557:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6551:16:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7697,"nodeType":"Block","src":"6766:206:34","statements":[{"id":7696,"nodeType":"UncheckedBlock","src":"6780:182:34","statements":[{"expression":{"id":7694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":7690,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7407,"src":"6925:9:34","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":7692,"indexExpression":{"id":7691,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7634,"src":"6935:2:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6925:13:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":7693,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7636,"src":"6942:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6925:22:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7695,"nodeType":"ExpressionStatement","src":"6925:22:34"}]}]},"id":7698,"nodeType":"IfStatement","src":"6547:425:34","trueBody":{"id":7689,"nodeType":"Block","src":"6569:191:34","statements":[{"id":7688,"nodeType":"UncheckedBlock","src":"6583:167:34","statements":[{"expression":{"id":7686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7684,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7415,"src":"6714:12:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":7685,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7636,"src":"6730:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6714:21:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7687,"nodeType":"ExpressionStatement","src":"6714:21:34"}]}]}},{"eventCall":{"arguments":[{"id":7700,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7632,"src":"6996:4:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7701,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7634,"src":"7002:2:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7702,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7636,"src":"7006:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7699,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7911,"src":"6987:8:34","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":7703,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6987:25:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7704,"nodeType":"EmitStatement","src":"6982:30:34"}]},"documentation":{"id":7630,"nodeType":"StructuredDocumentation","src":"5603:304:34","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":7706,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"5921:7:34","nodeType":"FunctionDefinition","parameters":{"id":7637,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7632,"mutability":"mutable","name":"from","nameLocation":"5937:4:34","nodeType":"VariableDeclaration","scope":7706,"src":"5929:12:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7631,"name":"address","nodeType":"ElementaryTypeName","src":"5929:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7634,"mutability":"mutable","name":"to","nameLocation":"5951:2:34","nodeType":"VariableDeclaration","scope":7706,"src":"5943:10:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7633,"name":"address","nodeType":"ElementaryTypeName","src":"5943:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7636,"mutability":"mutable","name":"value","nameLocation":"5963:5:34","nodeType":"VariableDeclaration","scope":7706,"src":"5955:13:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7635,"name":"uint256","nodeType":"ElementaryTypeName","src":"5955:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5928:41:34"},"returnParameters":{"id":7638,"nodeType":"ParameterList","parameters":[],"src":"5987:0:34"},"scope":7899,"src":"5912:1107:34","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":7738,"nodeType":"Block","src":"7418:152:34","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7714,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7709,"src":"7432:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":7717,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7451: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":7716,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7443:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7715,"name":"address","nodeType":"ElementaryTypeName","src":"7443:7:34","typeDescriptions":{}}},"id":7718,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7443:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7432:21:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7728,"nodeType":"IfStatement","src":"7428:91:34","trueBody":{"id":7727,"nodeType":"Block","src":"7455:64:34","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":7723,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7505: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":7722,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7497:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7721,"name":"address","nodeType":"ElementaryTypeName","src":"7497:7:34","typeDescriptions":{}}},"id":7724,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7497:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7720,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6457,"src":"7476:20:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":7725,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7476:32:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7726,"nodeType":"RevertStatement","src":"7469:39:34"}]}},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":7732,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7544: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":7731,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7536:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7730,"name":"address","nodeType":"ElementaryTypeName","src":"7536:7:34","typeDescriptions":{}}},"id":7733,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7536:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7734,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7709,"src":"7548:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7735,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7711,"src":"7557:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7729,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7706,"src":"7528:7:34","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":7736,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7528:35:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7737,"nodeType":"ExpressionStatement","src":"7528:35:34"}]},"documentation":{"id":7707,"nodeType":"StructuredDocumentation","src":"7025:332:34","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":7739,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"7371:5:34","nodeType":"FunctionDefinition","parameters":{"id":7712,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7709,"mutability":"mutable","name":"account","nameLocation":"7385:7:34","nodeType":"VariableDeclaration","scope":7739,"src":"7377:15:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7708,"name":"address","nodeType":"ElementaryTypeName","src":"7377:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7711,"mutability":"mutable","name":"value","nameLocation":"7402:5:34","nodeType":"VariableDeclaration","scope":7739,"src":"7394:13:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7710,"name":"uint256","nodeType":"ElementaryTypeName","src":"7394:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7376:32:34"},"returnParameters":{"id":7713,"nodeType":"ParameterList","parameters":[],"src":"7418:0:34"},"scope":7899,"src":"7362:208:34","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":7771,"nodeType":"Block","src":"7944:150:34","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7747,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7742,"src":"7958:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":7750,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7977: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":7749,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7969:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7748,"name":"address","nodeType":"ElementaryTypeName","src":"7969:7:34","typeDescriptions":{}}},"id":7751,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7969:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7958:21:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7761,"nodeType":"IfStatement","src":"7954:89:34","trueBody":{"id":7760,"nodeType":"Block","src":"7981:62:34","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":7756,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8029: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":7755,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8021:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7754,"name":"address","nodeType":"ElementaryTypeName","src":"8021:7:34","typeDescriptions":{}}},"id":7757,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8021:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7753,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6452,"src":"8002:18:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":7758,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8002:30:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7759,"nodeType":"RevertStatement","src":"7995:37:34"}]}},{"expression":{"arguments":[{"id":7763,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7742,"src":"8060:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":7766,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8077: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":7765,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8069:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7764,"name":"address","nodeType":"ElementaryTypeName","src":"8069:7:34","typeDescriptions":{}}},"id":7767,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8069:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7768,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7744,"src":"8081:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7762,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7706,"src":"8052:7:34","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":7769,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8052:35:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7770,"nodeType":"ExpressionStatement","src":"8052:35:34"}]},"documentation":{"id":7740,"nodeType":"StructuredDocumentation","src":"7576:307:34","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":7772,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"7897:5:34","nodeType":"FunctionDefinition","parameters":{"id":7745,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7742,"mutability":"mutable","name":"account","nameLocation":"7911:7:34","nodeType":"VariableDeclaration","scope":7772,"src":"7903:15:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7741,"name":"address","nodeType":"ElementaryTypeName","src":"7903:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7744,"mutability":"mutable","name":"value","nameLocation":"7928:5:34","nodeType":"VariableDeclaration","scope":7772,"src":"7920:13:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7743,"name":"uint256","nodeType":"ElementaryTypeName","src":"7920:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7902:32:34"},"returnParameters":{"id":7746,"nodeType":"ParameterList","parameters":[],"src":"7944:0:34"},"scope":7899,"src":"7888:206:34","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":7789,"nodeType":"Block","src":"8704:54:34","statements":[{"expression":{"arguments":[{"id":7783,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7775,"src":"8723:5:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7784,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7777,"src":"8730:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7785,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7779,"src":"8739:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":7786,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8746:4:34","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":7782,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[7790,7850],"referencedDeclaration":7850,"src":"8714:8:34","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":7787,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8714:37:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7788,"nodeType":"ExpressionStatement","src":"8714:37:34"}]},"documentation":{"id":7773,"nodeType":"StructuredDocumentation","src":"8100:525:34","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":7790,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"8639:8:34","nodeType":"FunctionDefinition","parameters":{"id":7780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7775,"mutability":"mutable","name":"owner","nameLocation":"8656:5:34","nodeType":"VariableDeclaration","scope":7790,"src":"8648:13:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7774,"name":"address","nodeType":"ElementaryTypeName","src":"8648:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7777,"mutability":"mutable","name":"spender","nameLocation":"8671:7:34","nodeType":"VariableDeclaration","scope":7790,"src":"8663:15:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7776,"name":"address","nodeType":"ElementaryTypeName","src":"8663:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7779,"mutability":"mutable","name":"value","nameLocation":"8688:5:34","nodeType":"VariableDeclaration","scope":7790,"src":"8680:13:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7778,"name":"uint256","nodeType":"ElementaryTypeName","src":"8680:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8647:47:34"},"returnParameters":{"id":7781,"nodeType":"ParameterList","parameters":[],"src":"8704:0:34"},"scope":7899,"src":"8630:128:34","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":7849,"nodeType":"Block","src":"9705:334:34","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7802,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7793,"src":"9719:5:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":7805,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9736: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":7804,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9728:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7803,"name":"address","nodeType":"ElementaryTypeName","src":"9728:7:34","typeDescriptions":{}}},"id":7806,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9728:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9719:19:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7816,"nodeType":"IfStatement","src":"9715:89:34","trueBody":{"id":7815,"nodeType":"Block","src":"9740:64:34","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":7811,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9790: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":7810,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9782:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7809,"name":"address","nodeType":"ElementaryTypeName","src":"9782:7:34","typeDescriptions":{}}},"id":7812,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9782:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7808,"name":"ERC20InvalidApprover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6471,"src":"9761:20:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":7813,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9761:32:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7814,"nodeType":"RevertStatement","src":"9754:39:34"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7822,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7817,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7795,"src":"9817:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":7820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9836: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":7819,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9828:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7818,"name":"address","nodeType":"ElementaryTypeName","src":"9828:7:34","typeDescriptions":{}}},"id":7821,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9828:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9817:21:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7831,"nodeType":"IfStatement","src":"9813:90:34","trueBody":{"id":7830,"nodeType":"Block","src":"9840:63:34","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":7826,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9889: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":7825,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9881:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7824,"name":"address","nodeType":"ElementaryTypeName","src":"9881:7:34","typeDescriptions":{}}},"id":7827,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9881:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7823,"name":"ERC20InvalidSpender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6476,"src":"9861:19:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":7828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9861:31:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7829,"nodeType":"RevertStatement","src":"9854:38:34"}]}},{"expression":{"id":7838,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":7832,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7413,"src":"9912:11:34","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":7835,"indexExpression":{"id":7833,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7793,"src":"9924:5:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9912:18:34","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":7836,"indexExpression":{"id":7834,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7795,"src":"9931:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9912:27:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7837,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7797,"src":"9942:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9912:35:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7839,"nodeType":"ExpressionStatement","src":"9912:35:34"},{"condition":{"id":7840,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7799,"src":"9961:9:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7848,"nodeType":"IfStatement","src":"9957:76:34","trueBody":{"id":7847,"nodeType":"Block","src":"9972:61:34","statements":[{"eventCall":{"arguments":[{"id":7842,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7793,"src":"10000:5:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7843,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7795,"src":"10007:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7844,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7797,"src":"10016:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7841,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7920,"src":"9991:8:34","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":7845,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9991:31:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7846,"nodeType":"EmitStatement","src":"9986:36:34"}]}}]},"documentation":{"id":7791,"nodeType":"StructuredDocumentation","src":"8764:838:34","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 sets 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":7850,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"9616:8:34","nodeType":"FunctionDefinition","parameters":{"id":7800,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7793,"mutability":"mutable","name":"owner","nameLocation":"9633:5:34","nodeType":"VariableDeclaration","scope":7850,"src":"9625:13:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7792,"name":"address","nodeType":"ElementaryTypeName","src":"9625:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7795,"mutability":"mutable","name":"spender","nameLocation":"9648:7:34","nodeType":"VariableDeclaration","scope":7850,"src":"9640:15:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7794,"name":"address","nodeType":"ElementaryTypeName","src":"9640:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7797,"mutability":"mutable","name":"value","nameLocation":"9665:5:34","nodeType":"VariableDeclaration","scope":7850,"src":"9657:13:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7796,"name":"uint256","nodeType":"ElementaryTypeName","src":"9657:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7799,"mutability":"mutable","name":"emitEvent","nameLocation":"9677:9:34","nodeType":"VariableDeclaration","scope":7850,"src":"9672:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7798,"name":"bool","nodeType":"ElementaryTypeName","src":"9672:4:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9624:63:34"},"returnParameters":{"id":7801,"nodeType":"ParameterList","parameters":[],"src":"9705:0:34"},"scope":7899,"src":"9607:432:34","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":7897,"nodeType":"Block","src":"10410:387:34","statements":[{"assignments":[7861],"declarations":[{"constant":false,"id":7861,"mutability":"mutable","name":"currentAllowance","nameLocation":"10428:16:34","nodeType":"VariableDeclaration","scope":7897,"src":"10420:24:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7860,"name":"uint256","nodeType":"ElementaryTypeName","src":"10420:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7866,"initialValue":{"arguments":[{"id":7863,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7853,"src":"10457:5:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7864,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7855,"src":"10464:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":7862,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7526,"src":"10447:9:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":7865,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10447:25:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10420:52:34"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7873,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7867,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7861,"src":"10486:16:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":7870,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10510:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":7869,"name":"uint256","nodeType":"ElementaryTypeName","src":"10510:7:34","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":7868,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10505:4:34","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7871,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10505:13:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":7872,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10519:3:34","memberName":"max","nodeType":"MemberAccess","src":"10505:17:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10486:36:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7896,"nodeType":"IfStatement","src":"10482:309:34","trueBody":{"id":7895,"nodeType":"Block","src":"10524:267:34","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7874,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7861,"src":"10542:16:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":7875,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7857,"src":"10561:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10542:24:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7884,"nodeType":"IfStatement","src":"10538:130:34","trueBody":{"id":7883,"nodeType":"Block","src":"10568:100:34","statements":[{"errorCall":{"arguments":[{"id":7878,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7855,"src":"10620:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7879,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7861,"src":"10629:16:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7880,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7857,"src":"10647:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7877,"name":"ERC20InsufficientAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6466,"src":"10593:26:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":7881,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10593:60:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7882,"nodeType":"RevertStatement","src":"10586:67:34"}]}},{"id":7894,"nodeType":"UncheckedBlock","src":"10681:100:34","statements":[{"expression":{"arguments":[{"id":7886,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7853,"src":"10718:5:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7887,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7855,"src":"10725:7:34","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7888,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7861,"src":"10734:16:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":7889,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7857,"src":"10753:5:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10734:24:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":7891,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10760:5:34","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":7885,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[7790,7850],"referencedDeclaration":7850,"src":"10709:8:34","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":7892,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10709:57:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7893,"nodeType":"ExpressionStatement","src":"10709:57:34"}]}]}}]},"documentation":{"id":7851,"nodeType":"StructuredDocumentation","src":"10045:271:34","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":7898,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"10330:15:34","nodeType":"FunctionDefinition","parameters":{"id":7858,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7853,"mutability":"mutable","name":"owner","nameLocation":"10354:5:34","nodeType":"VariableDeclaration","scope":7898,"src":"10346:13:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7852,"name":"address","nodeType":"ElementaryTypeName","src":"10346:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7855,"mutability":"mutable","name":"spender","nameLocation":"10369:7:34","nodeType":"VariableDeclaration","scope":7898,"src":"10361:15:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7854,"name":"address","nodeType":"ElementaryTypeName","src":"10361:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7857,"mutability":"mutable","name":"value","nameLocation":"10386:5:34","nodeType":"VariableDeclaration","scope":7898,"src":"10378:13:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7856,"name":"uint256","nodeType":"ElementaryTypeName","src":"10378:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10345:47:34"},"returnParameters":{"id":7859,"nodeType":"ParameterList","parameters":[],"src":"10410:0:34"},"scope":7899,"src":"10321:476:34","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":7900,"src":"1106:9693:34","usedErrors":[6447,6452,6457,6466,6471,6476],"usedEvents":[7911,7920]}],"src":"105:10695:34"},"id":34},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[7977]},"id":7978,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7901,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"106:25:35"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":7902,"nodeType":"StructuredDocumentation","src":"133:71:35","text":" @dev Interface of the ERC-20 standard as defined in the ERC."},"fullyImplemented":false,"id":7977,"linearizedBaseContracts":[7977],"name":"IERC20","nameLocation":"215:6:35","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":7903,"nodeType":"StructuredDocumentation","src":"228:158:35","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":7911,"name":"Transfer","nameLocation":"397:8:35","nodeType":"EventDefinition","parameters":{"id":7910,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7905,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"422:4:35","nodeType":"VariableDeclaration","scope":7911,"src":"406:20:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7904,"name":"address","nodeType":"ElementaryTypeName","src":"406:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7907,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"444:2:35","nodeType":"VariableDeclaration","scope":7911,"src":"428:18:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7906,"name":"address","nodeType":"ElementaryTypeName","src":"428:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7909,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"456:5:35","nodeType":"VariableDeclaration","scope":7911,"src":"448:13:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7908,"name":"uint256","nodeType":"ElementaryTypeName","src":"448:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"405:57:35"},"src":"391:72:35"},{"anonymous":false,"documentation":{"id":7912,"nodeType":"StructuredDocumentation","src":"469:148:35","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":7920,"name":"Approval","nameLocation":"628:8:35","nodeType":"EventDefinition","parameters":{"id":7919,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7914,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"653:5:35","nodeType":"VariableDeclaration","scope":7920,"src":"637:21:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7913,"name":"address","nodeType":"ElementaryTypeName","src":"637:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7916,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"676:7:35","nodeType":"VariableDeclaration","scope":7920,"src":"660:23:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7915,"name":"address","nodeType":"ElementaryTypeName","src":"660:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7918,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"693:5:35","nodeType":"VariableDeclaration","scope":7920,"src":"685:13:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7917,"name":"uint256","nodeType":"ElementaryTypeName","src":"685:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"636:63:35"},"src":"622:78:35"},{"documentation":{"id":7921,"nodeType":"StructuredDocumentation","src":"706:65:35","text":" @dev Returns the value of tokens in existence."},"functionSelector":"18160ddd","id":7926,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"785:11:35","nodeType":"FunctionDefinition","parameters":{"id":7922,"nodeType":"ParameterList","parameters":[],"src":"796:2:35"},"returnParameters":{"id":7925,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7924,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7926,"src":"822:7:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7923,"name":"uint256","nodeType":"ElementaryTypeName","src":"822:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"821:9:35"},"scope":7977,"src":"776:55:35","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":7927,"nodeType":"StructuredDocumentation","src":"837:71:35","text":" @dev Returns the value of tokens owned by `account`."},"functionSelector":"70a08231","id":7934,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"922:9:35","nodeType":"FunctionDefinition","parameters":{"id":7930,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7929,"mutability":"mutable","name":"account","nameLocation":"940:7:35","nodeType":"VariableDeclaration","scope":7934,"src":"932:15:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7928,"name":"address","nodeType":"ElementaryTypeName","src":"932:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"931:17:35"},"returnParameters":{"id":7933,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7932,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7934,"src":"972:7:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7931,"name":"uint256","nodeType":"ElementaryTypeName","src":"972:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"971:9:35"},"scope":7977,"src":"913:68:35","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":7935,"nodeType":"StructuredDocumentation","src":"987:213:35","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":7944,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1214:8:35","nodeType":"FunctionDefinition","parameters":{"id":7940,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7937,"mutability":"mutable","name":"to","nameLocation":"1231:2:35","nodeType":"VariableDeclaration","scope":7944,"src":"1223:10:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7936,"name":"address","nodeType":"ElementaryTypeName","src":"1223:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7939,"mutability":"mutable","name":"value","nameLocation":"1243:5:35","nodeType":"VariableDeclaration","scope":7944,"src":"1235:13:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7938,"name":"uint256","nodeType":"ElementaryTypeName","src":"1235:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1222:27:35"},"returnParameters":{"id":7943,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7942,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7944,"src":"1268:4:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7941,"name":"bool","nodeType":"ElementaryTypeName","src":"1268:4:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1267:6:35"},"scope":7977,"src":"1205:69:35","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":7945,"nodeType":"StructuredDocumentation","src":"1280:264:35","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":7954,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1558:9:35","nodeType":"FunctionDefinition","parameters":{"id":7950,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7947,"mutability":"mutable","name":"owner","nameLocation":"1576:5:35","nodeType":"VariableDeclaration","scope":7954,"src":"1568:13:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7946,"name":"address","nodeType":"ElementaryTypeName","src":"1568:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7949,"mutability":"mutable","name":"spender","nameLocation":"1591:7:35","nodeType":"VariableDeclaration","scope":7954,"src":"1583:15:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7948,"name":"address","nodeType":"ElementaryTypeName","src":"1583:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1567:32:35"},"returnParameters":{"id":7953,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7952,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7954,"src":"1623:7:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7951,"name":"uint256","nodeType":"ElementaryTypeName","src":"1623:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1622:9:35"},"scope":7977,"src":"1549:83:35","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":7955,"nodeType":"StructuredDocumentation","src":"1638:667:35","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":7964,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2319:7:35","nodeType":"FunctionDefinition","parameters":{"id":7960,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7957,"mutability":"mutable","name":"spender","nameLocation":"2335:7:35","nodeType":"VariableDeclaration","scope":7964,"src":"2327:15:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7956,"name":"address","nodeType":"ElementaryTypeName","src":"2327:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7959,"mutability":"mutable","name":"value","nameLocation":"2352:5:35","nodeType":"VariableDeclaration","scope":7964,"src":"2344:13:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7958,"name":"uint256","nodeType":"ElementaryTypeName","src":"2344:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2326:32:35"},"returnParameters":{"id":7963,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7962,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7964,"src":"2377:4:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7961,"name":"bool","nodeType":"ElementaryTypeName","src":"2377:4:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2376:6:35"},"scope":7977,"src":"2310:73:35","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":7965,"nodeType":"StructuredDocumentation","src":"2389:297:35","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":7976,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2700:12:35","nodeType":"FunctionDefinition","parameters":{"id":7972,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7967,"mutability":"mutable","name":"from","nameLocation":"2721:4:35","nodeType":"VariableDeclaration","scope":7976,"src":"2713:12:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7966,"name":"address","nodeType":"ElementaryTypeName","src":"2713:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7969,"mutability":"mutable","name":"to","nameLocation":"2735:2:35","nodeType":"VariableDeclaration","scope":7976,"src":"2727:10:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7968,"name":"address","nodeType":"ElementaryTypeName","src":"2727:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7971,"mutability":"mutable","name":"value","nameLocation":"2747:5:35","nodeType":"VariableDeclaration","scope":7976,"src":"2739:13:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7970,"name":"uint256","nodeType":"ElementaryTypeName","src":"2739:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2712:41:35"},"returnParameters":{"id":7975,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7974,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7976,"src":"2772:4:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7973,"name":"bool","nodeType":"ElementaryTypeName","src":"2772:4:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2771:6:35"},"scope":7977,"src":"2691:87:35","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":7978,"src":"205:2575:35","usedErrors":[],"usedEvents":[7911,7920]}],"src":"106:2675:35"},"id":35},"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol","exportedSymbols":{"ECDSA":[13697],"EIP712":[13924],"ERC20":[7899],"ERC20Permit":[8131],"IERC20Permit":[8899],"Nonces":[11365]},"id":8132,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7979,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"122:24:36"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","file":"./IERC20Permit.sol","id":7981,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8132,"sourceUnit":8900,"src":"148:48:36","symbolAliases":[{"foreign":{"id":7980,"name":"IERC20Permit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8899,"src":"156:12:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"../ERC20.sol","id":7983,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8132,"sourceUnit":7900,"src":"197:35:36","symbolAliases":[{"foreign":{"id":7982,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7899,"src":"205:5:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"../../../utils/cryptography/ECDSA.sol","id":7985,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8132,"sourceUnit":13698,"src":"233:60:36","symbolAliases":[{"foreign":{"id":7984,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13697,"src":"241:5:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/EIP712.sol","file":"../../../utils/cryptography/EIP712.sol","id":7987,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8132,"sourceUnit":13925,"src":"294:62:36","symbolAliases":[{"foreign":{"id":7986,"name":"EIP712","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13924,"src":"302:6:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Nonces.sol","file":"../../../utils/Nonces.sol","id":7989,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8132,"sourceUnit":11366,"src":"357:49:36","symbolAliases":[{"foreign":{"id":7988,"name":"Nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11365,"src":"365:6:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":7991,"name":"ERC20","nameLocations":["931:5:36"],"nodeType":"IdentifierPath","referencedDeclaration":7899,"src":"931:5:36"},"id":7992,"nodeType":"InheritanceSpecifier","src":"931:5:36"},{"baseName":{"id":7993,"name":"IERC20Permit","nameLocations":["938:12:36"],"nodeType":"IdentifierPath","referencedDeclaration":8899,"src":"938:12:36"},"id":7994,"nodeType":"InheritanceSpecifier","src":"938:12:36"},{"baseName":{"id":7995,"name":"EIP712","nameLocations":["952:6:36"],"nodeType":"IdentifierPath","referencedDeclaration":13924,"src":"952:6:36"},"id":7996,"nodeType":"InheritanceSpecifier","src":"952:6:36"},{"baseName":{"id":7997,"name":"Nonces","nameLocations":["960:6:36"],"nodeType":"IdentifierPath","referencedDeclaration":11365,"src":"960:6:36"},"id":7998,"nodeType":"InheritanceSpecifier","src":"960:6:36"}],"canonicalName":"ERC20Permit","contractDependencies":[],"contractKind":"contract","documentation":{"id":7990,"nodeType":"StructuredDocumentation","src":"408:489:36","text":" @dev Implementation of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by\n presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't\n need to send a transaction, and thus is not required to hold Ether at all."},"fullyImplemented":true,"id":8131,"linearizedBaseContracts":[8131,11365,13924,6425,8899,7899,6477,8863,7977,10727],"name":"ERC20Permit","nameLocation":"916:11:36","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":8003,"mutability":"constant","name":"PERMIT_TYPEHASH","nameLocation":"998:15:36","nodeType":"VariableDeclaration","scope":8131,"src":"973:146:36","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7999,"name":"bytes32","nodeType":"ElementaryTypeName","src":"973:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"5065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e6529","id":8001,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1034:84:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9","typeString":"literal_string \"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\""},"value":"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9","typeString":"literal_string \"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\""}],"id":8000,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1024:9:36","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8002,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1024:95:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"documentation":{"id":8004,"nodeType":"StructuredDocumentation","src":"1126:52:36","text":" @dev Permit deadline has expired."},"errorSelector":"62791302","id":8008,"name":"ERC2612ExpiredSignature","nameLocation":"1189:23:36","nodeType":"ErrorDefinition","parameters":{"id":8007,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8006,"mutability":"mutable","name":"deadline","nameLocation":"1221:8:36","nodeType":"VariableDeclaration","scope":8008,"src":"1213:16:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8005,"name":"uint256","nodeType":"ElementaryTypeName","src":"1213:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1212:18:36"},"src":"1183:48:36"},{"documentation":{"id":8009,"nodeType":"StructuredDocumentation","src":"1237:45:36","text":" @dev Mismatched signature."},"errorSelector":"4b800e46","id":8015,"name":"ERC2612InvalidSigner","nameLocation":"1293:20:36","nodeType":"ErrorDefinition","parameters":{"id":8014,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8011,"mutability":"mutable","name":"signer","nameLocation":"1322:6:36","nodeType":"VariableDeclaration","scope":8015,"src":"1314:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8010,"name":"address","nodeType":"ElementaryTypeName","src":"1314:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8013,"mutability":"mutable","name":"owner","nameLocation":"1338:5:36","nodeType":"VariableDeclaration","scope":8015,"src":"1330:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8012,"name":"address","nodeType":"ElementaryTypeName","src":"1330:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1313:31:36"},"src":"1287:58:36"},{"body":{"id":8025,"nodeType":"Block","src":"1627:2:36","statements":[]},"documentation":{"id":8016,"nodeType":"StructuredDocumentation","src":"1351:221:36","text":" @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\"1\"`.\n It's a good idea to use the same `name` that is defined as the ERC-20 token name."},"id":8026,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":8021,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8018,"src":"1616:4:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"31","id":8022,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1622:3:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6","typeString":"literal_string \"1\""},"value":"1"}],"id":8023,"kind":"baseConstructorSpecifier","modifierName":{"id":8020,"name":"EIP712","nameLocations":["1609:6:36"],"nodeType":"IdentifierPath","referencedDeclaration":13924,"src":"1609:6:36"},"nodeType":"ModifierInvocation","src":"1609:17:36"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":8019,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8018,"mutability":"mutable","name":"name","nameLocation":"1603:4:36","nodeType":"VariableDeclaration","scope":8026,"src":"1589:18:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8017,"name":"string","nodeType":"ElementaryTypeName","src":"1589:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1588:20:36"},"returnParameters":{"id":8024,"nodeType":"ParameterList","parameters":[],"src":"1627:0:36"},"scope":8131,"src":"1577:52:36","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[8884],"body":{"id":8102,"nodeType":"Block","src":"1857:483:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8044,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"1871:5:36","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1877:9:36","memberName":"timestamp","nodeType":"MemberAccess","src":"1871:15:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":8046,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8035,"src":"1889:8:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1871:26:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8053,"nodeType":"IfStatement","src":"1867:97:36","trueBody":{"id":8052,"nodeType":"Block","src":"1899:65:36","statements":[{"errorCall":{"arguments":[{"id":8049,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8035,"src":"1944:8:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8048,"name":"ERC2612ExpiredSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8008,"src":"1920:23:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":8050,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1920:33:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8051,"nodeType":"RevertStatement","src":"1913:40:36"}]}},{"assignments":[8055],"declarations":[{"constant":false,"id":8055,"mutability":"mutable","name":"structHash","nameLocation":"1982:10:36","nodeType":"VariableDeclaration","scope":8102,"src":"1974:18:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8054,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1974:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8069,"initialValue":{"arguments":[{"arguments":[{"id":8059,"name":"PERMIT_TYPEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8003,"src":"2016:15:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8060,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8029,"src":"2033:5:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8061,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8031,"src":"2040:7:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8062,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8033,"src":"2049:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":8064,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8029,"src":"2066:5:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8063,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11339,"src":"2056:9:36","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":8065,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2056:16:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8066,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8035,"src":"2074:8:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":8057,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2005:3:36","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":8058,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2009:6:36","memberName":"encode","nodeType":"MemberAccess","src":"2005:10:36","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":8067,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2005:78:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":8056,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1995:9:36","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8068,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1995:89:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"1974:110:36"},{"assignments":[8071],"declarations":[{"constant":false,"id":8071,"mutability":"mutable","name":"hash","nameLocation":"2103:4:36","nodeType":"VariableDeclaration","scope":8102,"src":"2095:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8070,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2095:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8075,"initialValue":{"arguments":[{"id":8073,"name":"structHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8055,"src":"2127:10:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8072,"name":"_hashTypedDataV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13857,"src":"2110:16:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":8074,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2110:28:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2095:43:36"},{"assignments":[8077],"declarations":[{"constant":false,"id":8077,"mutability":"mutable","name":"signer","nameLocation":"2157:6:36","nodeType":"VariableDeclaration","scope":8102,"src":"2149:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8076,"name":"address","nodeType":"ElementaryTypeName","src":"2149:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":8085,"initialValue":{"arguments":[{"id":8080,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8071,"src":"2180:4:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8081,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8037,"src":"2186:1:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":8082,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8039,"src":"2189:1:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8083,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8041,"src":"2192:1:36","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":8078,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13697,"src":"2166:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$13697_$","typeString":"type(library ECDSA)"}},"id":8079,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2172:7:36","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":13619,"src":"2166:13:36","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":8084,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2166:28:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2149:45:36"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8088,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8086,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8077,"src":"2208:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":8087,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8029,"src":"2218:5:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2208:15:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8095,"nodeType":"IfStatement","src":"2204:88:36","trueBody":{"id":8094,"nodeType":"Block","src":"2225:67:36","statements":[{"errorCall":{"arguments":[{"id":8090,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8077,"src":"2267:6:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8091,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8029,"src":"2275:5:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":8089,"name":"ERC2612InvalidSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8015,"src":"2246:20:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$returns$_t_error_$","typeString":"function (address,address) pure returns (error)"}},"id":8092,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2246:35:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8093,"nodeType":"RevertStatement","src":"2239:42:36"}]}},{"expression":{"arguments":[{"id":8097,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8029,"src":"2311:5:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8098,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8031,"src":"2318:7:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8099,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8033,"src":"2327:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8096,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[7790,7850],"referencedDeclaration":7790,"src":"2302:8:36","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":8100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2302:31:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8101,"nodeType":"ExpressionStatement","src":"2302:31:36"}]},"documentation":{"id":8027,"nodeType":"StructuredDocumentation","src":"1635:28:36","text":"@inheritdoc IERC20Permit"},"functionSelector":"d505accf","id":8103,"implemented":true,"kind":"function","modifiers":[],"name":"permit","nameLocation":"1677:6:36","nodeType":"FunctionDefinition","parameters":{"id":8042,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8029,"mutability":"mutable","name":"owner","nameLocation":"1701:5:36","nodeType":"VariableDeclaration","scope":8103,"src":"1693:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8028,"name":"address","nodeType":"ElementaryTypeName","src":"1693:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8031,"mutability":"mutable","name":"spender","nameLocation":"1724:7:36","nodeType":"VariableDeclaration","scope":8103,"src":"1716:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8030,"name":"address","nodeType":"ElementaryTypeName","src":"1716:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8033,"mutability":"mutable","name":"value","nameLocation":"1749:5:36","nodeType":"VariableDeclaration","scope":8103,"src":"1741:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8032,"name":"uint256","nodeType":"ElementaryTypeName","src":"1741:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8035,"mutability":"mutable","name":"deadline","nameLocation":"1772:8:36","nodeType":"VariableDeclaration","scope":8103,"src":"1764:16:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8034,"name":"uint256","nodeType":"ElementaryTypeName","src":"1764:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8037,"mutability":"mutable","name":"v","nameLocation":"1796:1:36","nodeType":"VariableDeclaration","scope":8103,"src":"1790:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8036,"name":"uint8","nodeType":"ElementaryTypeName","src":"1790:5:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":8039,"mutability":"mutable","name":"r","nameLocation":"1815:1:36","nodeType":"VariableDeclaration","scope":8103,"src":"1807:9:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8038,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1807:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8041,"mutability":"mutable","name":"s","nameLocation":"1834:1:36","nodeType":"VariableDeclaration","scope":8103,"src":"1826:9:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8040,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1826:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1683:158:36"},"returnParameters":{"id":8043,"nodeType":"ParameterList","parameters":[],"src":"1857:0:36"},"scope":8131,"src":"1668:672:36","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[8892,11324],"body":{"id":8119,"nodeType":"Block","src":"2479:43:36","statements":[{"expression":{"arguments":[{"id":8116,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8106,"src":"2509:5:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":8114,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2496:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC20Permit_$8131_$","typeString":"type(contract super ERC20Permit)"}},"id":8115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2502:6:36","memberName":"nonces","nodeType":"MemberAccess","referencedDeclaration":11324,"src":"2496:12:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":8117,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2496:19:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8113,"id":8118,"nodeType":"Return","src":"2489:26:36"}]},"documentation":{"id":8104,"nodeType":"StructuredDocumentation","src":"2346:28:36","text":"@inheritdoc IERC20Permit"},"functionSelector":"7ecebe00","id":8120,"implemented":true,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"2388:6:36","nodeType":"FunctionDefinition","overrides":{"id":8110,"nodeType":"OverrideSpecifier","overrides":[{"id":8108,"name":"IERC20Permit","nameLocations":["2439:12:36"],"nodeType":"IdentifierPath","referencedDeclaration":8899,"src":"2439:12:36"},{"id":8109,"name":"Nonces","nameLocations":["2453:6:36"],"nodeType":"IdentifierPath","referencedDeclaration":11365,"src":"2453:6:36"}],"src":"2430:30:36"},"parameters":{"id":8107,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8106,"mutability":"mutable","name":"owner","nameLocation":"2403:5:36","nodeType":"VariableDeclaration","scope":8120,"src":"2395:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8105,"name":"address","nodeType":"ElementaryTypeName","src":"2395:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2394:15:36"},"returnParameters":{"id":8113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8112,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8120,"src":"2470:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8111,"name":"uint256","nodeType":"ElementaryTypeName","src":"2470:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2469:9:36"},"scope":8131,"src":"2379:143:36","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[8898],"body":{"id":8129,"nodeType":"Block","src":"2674:44:36","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8126,"name":"_domainSeparatorV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13820,"src":"2691:18:36","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":8127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2691:20:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":8125,"id":8128,"nodeType":"Return","src":"2684:27:36"}]},"documentation":{"id":8121,"nodeType":"StructuredDocumentation","src":"2528:28:36","text":"@inheritdoc IERC20Permit"},"functionSelector":"3644e515","id":8130,"implemented":true,"kind":"function","modifiers":[],"name":"DOMAIN_SEPARATOR","nameLocation":"2623:16:36","nodeType":"FunctionDefinition","parameters":{"id":8122,"nodeType":"ParameterList","parameters":[],"src":"2639:2:36"},"returnParameters":{"id":8125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8124,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8130,"src":"2665:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8123,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2665:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2664:9:36"},"scope":8131,"src":"2614:104:36","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":8132,"src":"898:1822:36","usedErrors":[6447,6452,6457,6466,6471,6476,8008,8015,11307,11431,11433,13249,13254,13259],"usedEvents":[6405,7911,7920]}],"src":"122:2599:36"},"id":36},"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol","exportedSymbols":{"ERC20":[7899],"ERC4626":[8837],"IERC20":[7977],"IERC20Metadata":[8863],"IERC4626":[6400],"LowLevelCall":[10908],"Math":[15914],"Memory":[11210],"SafeERC20":[9354]},"id":8838,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":8133,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"118:24:37"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"../ERC20.sol","id":8137,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8838,"sourceUnit":7900,"src":"144:59:37","symbolAliases":[{"foreign":{"id":8134,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"152:6:37","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":8135,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"160:14:37","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":8136,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7899,"src":"176:5:37","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"../utils/SafeERC20.sol","id":8139,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8838,"sourceUnit":9355,"src":"204:49:37","symbolAliases":[{"foreign":{"id":8138,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9354,"src":"212:9:37","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","file":"../../../interfaces/IERC4626.sol","id":8141,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8838,"sourceUnit":6401,"src":"254:58:37","symbolAliases":[{"foreign":{"id":8140,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6400,"src":"262:8:37","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/LowLevelCall.sol","file":"../../../utils/LowLevelCall.sol","id":8143,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8838,"sourceUnit":10909,"src":"313:61:37","symbolAliases":[{"foreign":{"id":8142,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"321:12:37","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Memory.sol","file":"../../../utils/Memory.sol","id":8145,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8838,"sourceUnit":11211,"src":"375:49:37","symbolAliases":[{"foreign":{"id":8144,"name":"Memory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11210,"src":"383:6:37","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"../../../utils/math/Math.sol","id":8147,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8838,"sourceUnit":15915,"src":"425:50:37","symbolAliases":[{"foreign":{"id":8146,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"433:4:37","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":8149,"name":"ERC20","nameLocations":["4547:5:37"],"nodeType":"IdentifierPath","referencedDeclaration":7899,"src":"4547:5:37"},"id":8150,"nodeType":"InheritanceSpecifier","src":"4547:5:37"},{"baseName":{"id":8151,"name":"IERC4626","nameLocations":["4554:8:37"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"4554:8:37"},"id":8152,"nodeType":"InheritanceSpecifier","src":"4554:8:37"}],"canonicalName":"ERC4626","contractDependencies":[],"contractKind":"contract","documentation":{"id":8148,"nodeType":"StructuredDocumentation","src":"477:4040:37","text":" @dev Implementation of the ERC-4626 \"Tokenized Vault Standard\" as defined in\n https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].\n This extension allows the minting and burning of \"shares\" (represented using the ERC-20 inheritance) in exchange for\n underlying \"assets\" through standardized {deposit}, {mint}, {redeem} and {burn} workflows. This contract extends\n the ERC-20 standard. Any additional extensions included along it would affect the \"shares\" token represented by this\n contract and not the \"assets\" token which is an independent contract.\n [CAUTION]\n ====\n In empty (or nearly empty) ERC-4626 vaults, deposits are at high risk of being stolen through frontrunning\n with a \"donation\" to the vault that inflates the price of a share. This is variously known as a donation or inflation\n attack and is essentially a problem of slippage. Vault deployers can protect against this attack by making an initial\n deposit of a non-trivial amount of the asset, such that price manipulation becomes infeasible. Withdrawals may\n similarly be affected by slippage. Users can protect against this attack as well as unexpected slippage in general by\n verifying the amount received is as expected, using a wrapper that performs these checks such as\n https://github.com/fei-protocol/ERC4626#erc4626router-and-base[ERC4626Router].\n Since v4.9, this implementation introduces configurable virtual assets and shares to help developers mitigate that risk.\n The `_decimalsOffset()` corresponds to an offset in the decimal representation between the underlying asset's decimals\n and the vault decimals. This offset also determines the rate of virtual shares to virtual assets in the vault, which\n itself determines the initial exchange rate. While not fully preventing the attack, analysis shows that the default\n offset (0) makes it non-profitable even if an attacker is able to capture value from multiple user deposits, as a result\n of the value being captured by the virtual shares (out of the attacker's donation) matching the attacker's expected gains.\n With a larger offset, the attack becomes orders of magnitude more expensive than it is profitable. More details about the\n underlying math can be found xref:ROOT:erc4626.adoc#inflation-attack[here].\n The drawback of this approach is that the virtual shares do capture (a very small) part of the value being accrued\n to the vault. Also, if the vault experiences losses, the users try to exit the vault, the virtual shares and assets\n will cause the first user to exit to experience reduced losses in detriment to the last users that will experience\n bigger losses. Developers willing to revert back to the pre-v4.9 behavior just need to override the\n `_convertToShares` and `_convertToAssets` functions.\n To learn more, check out our xref:ROOT:erc4626.adoc[ERC-4626 guide].\n ====\n [NOTE]\n ====\n When overriding this contract, some elements must be considered:\n * When overriding the behavior of the deposit or withdraw mechanisms, it is recommended to override the internal\n functions. Overriding {_deposit} automatically affects both {deposit} and {mint}. Similarly, overriding {_withdraw}\n automatically affects both {withdraw} and {redeem}. Overall it is not recommended to override the public facing\n functions since that could lead to inconsistent behaviors between the {deposit} and {mint} or between {withdraw} and\n {redeem}, which is documented to have lead to loss of funds.\n * Overrides to the deposit or withdraw mechanism must be reflected in the preview functions as well.\n * {maxWithdraw} depends on {maxRedeem}. Therefore, overriding {maxRedeem} only is enough. On the other hand,\n overriding {maxWithdraw} only would have no effect on {maxRedeem}, and could create an inconsistency between the two\n functions.\n * If {previewRedeem} is overridden to revert, {maxWithdraw} must be overridden as necessary to ensure it\n always return successfully.\n ===="},"fullyImplemented":true,"id":8837,"linearizedBaseContracts":[8837,6400,7899,6477,8863,7977,10727],"name":"ERC4626","nameLocation":"4536:7:37","nodeType":"ContractDefinition","nodes":[{"global":false,"id":8155,"libraryName":{"id":8153,"name":"Math","nameLocations":["4575:4:37"],"nodeType":"IdentifierPath","referencedDeclaration":15914,"src":"4575:4:37"},"nodeType":"UsingForDirective","src":"4569:23:37","typeName":{"id":8154,"name":"uint256","nodeType":"ElementaryTypeName","src":"4584:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"constant":false,"id":8158,"mutability":"immutable","name":"_asset","nameLocation":"4623:6:37","nodeType":"VariableDeclaration","scope":8837,"src":"4598:31:37","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},"typeName":{"id":8157,"nodeType":"UserDefinedTypeName","pathNode":{"id":8156,"name":"IERC20","nameLocations":["4598:6:37"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"4598:6:37"},"referencedDeclaration":7977,"src":"4598:6:37","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"visibility":"private"},{"constant":false,"id":8160,"mutability":"immutable","name":"_underlyingDecimals","nameLocation":"4659:19:37","nodeType":"VariableDeclaration","scope":8837,"src":"4635:43:37","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8159,"name":"uint8","nodeType":"ElementaryTypeName","src":"4635:5:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"private"},{"documentation":{"id":8161,"nodeType":"StructuredDocumentation","src":"4685:92:37","text":" @dev Attempted to deposit more assets than the max amount for `receiver`."},"errorSelector":"79012fb2","id":8169,"name":"ERC4626ExceededMaxDeposit","nameLocation":"4788:25:37","nodeType":"ErrorDefinition","parameters":{"id":8168,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8163,"mutability":"mutable","name":"receiver","nameLocation":"4822:8:37","nodeType":"VariableDeclaration","scope":8169,"src":"4814:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8162,"name":"address","nodeType":"ElementaryTypeName","src":"4814:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8165,"mutability":"mutable","name":"assets","nameLocation":"4840:6:37","nodeType":"VariableDeclaration","scope":8169,"src":"4832:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8164,"name":"uint256","nodeType":"ElementaryTypeName","src":"4832:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8167,"mutability":"mutable","name":"max","nameLocation":"4856:3:37","nodeType":"VariableDeclaration","scope":8169,"src":"4848:11:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8166,"name":"uint256","nodeType":"ElementaryTypeName","src":"4848:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4813:47:37"},"src":"4782:79:37"},{"documentation":{"id":8170,"nodeType":"StructuredDocumentation","src":"4867:89:37","text":" @dev Attempted to mint more shares than the max amount for `receiver`."},"errorSelector":"284ff667","id":8178,"name":"ERC4626ExceededMaxMint","nameLocation":"4967:22:37","nodeType":"ErrorDefinition","parameters":{"id":8177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8172,"mutability":"mutable","name":"receiver","nameLocation":"4998:8:37","nodeType":"VariableDeclaration","scope":8178,"src":"4990:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8171,"name":"address","nodeType":"ElementaryTypeName","src":"4990:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8174,"mutability":"mutable","name":"shares","nameLocation":"5016:6:37","nodeType":"VariableDeclaration","scope":8178,"src":"5008:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8173,"name":"uint256","nodeType":"ElementaryTypeName","src":"5008:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8176,"mutability":"mutable","name":"max","nameLocation":"5032:3:37","nodeType":"VariableDeclaration","scope":8178,"src":"5024:11:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8175,"name":"uint256","nodeType":"ElementaryTypeName","src":"5024:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4989:47:37"},"src":"4961:76:37"},{"documentation":{"id":8179,"nodeType":"StructuredDocumentation","src":"5043:93:37","text":" @dev Attempted to withdraw more assets than the max amount for `receiver`."},"errorSelector":"fe9cceec","id":8187,"name":"ERC4626ExceededMaxWithdraw","nameLocation":"5147:26:37","nodeType":"ErrorDefinition","parameters":{"id":8186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8181,"mutability":"mutable","name":"owner","nameLocation":"5182:5:37","nodeType":"VariableDeclaration","scope":8187,"src":"5174:13:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8180,"name":"address","nodeType":"ElementaryTypeName","src":"5174:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8183,"mutability":"mutable","name":"assets","nameLocation":"5197:6:37","nodeType":"VariableDeclaration","scope":8187,"src":"5189:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8182,"name":"uint256","nodeType":"ElementaryTypeName","src":"5189:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8185,"mutability":"mutable","name":"max","nameLocation":"5213:3:37","nodeType":"VariableDeclaration","scope":8187,"src":"5205:11:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8184,"name":"uint256","nodeType":"ElementaryTypeName","src":"5205:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5173:44:37"},"src":"5141:77:37"},{"documentation":{"id":8188,"nodeType":"StructuredDocumentation","src":"5224:91:37","text":" @dev Attempted to redeem more shares than the max amount for `receiver`."},"errorSelector":"b94abeec","id":8196,"name":"ERC4626ExceededMaxRedeem","nameLocation":"5326:24:37","nodeType":"ErrorDefinition","parameters":{"id":8195,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8190,"mutability":"mutable","name":"owner","nameLocation":"5359:5:37","nodeType":"VariableDeclaration","scope":8196,"src":"5351:13:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8189,"name":"address","nodeType":"ElementaryTypeName","src":"5351:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8192,"mutability":"mutable","name":"shares","nameLocation":"5374:6:37","nodeType":"VariableDeclaration","scope":8196,"src":"5366:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8191,"name":"uint256","nodeType":"ElementaryTypeName","src":"5366:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8194,"mutability":"mutable","name":"max","nameLocation":"5390:3:37","nodeType":"VariableDeclaration","scope":8196,"src":"5382:11:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8193,"name":"uint256","nodeType":"ElementaryTypeName","src":"5382:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5350:44:37"},"src":"5320:75:37"},{"body":{"id":8222,"nodeType":"Block","src":"5554:168:37","statements":[{"assignments":[8204,8206],"declarations":[{"constant":false,"id":8204,"mutability":"mutable","name":"success","nameLocation":"5570:7:37","nodeType":"VariableDeclaration","scope":8222,"src":"5565:12:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8203,"name":"bool","nodeType":"ElementaryTypeName","src":"5565:4:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8206,"mutability":"mutable","name":"assetDecimals","nameLocation":"5585:13:37","nodeType":"VariableDeclaration","scope":8222,"src":"5579:19:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8205,"name":"uint8","nodeType":"ElementaryTypeName","src":"5579:5:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":8210,"initialValue":{"arguments":[{"id":8208,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8200,"src":"5623:6:37","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}],"id":8207,"name":"_tryGetAssetDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8301,"src":"5602:20:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_contract$_IERC20_$7977_$returns$_t_bool_$_t_uint8_$","typeString":"function (contract IERC20) view returns (bool,uint8)"}},"id":8209,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5602:28:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint8_$","typeString":"tuple(bool,uint8)"}},"nodeType":"VariableDeclarationStatement","src":"5564:66:37"},{"expression":{"id":8216,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8211,"name":"_underlyingDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8160,"src":"5640:19:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"condition":{"id":8212,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8204,"src":"5662:7:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"3138","id":8214,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5688:2:37","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"id":8215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"5662:28:37","trueExpression":{"id":8213,"name":"assetDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8206,"src":"5672:13:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"5640:50:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":8217,"nodeType":"ExpressionStatement","src":"5640:50:37"},{"expression":{"id":8220,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8218,"name":"_asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8158,"src":"5700:6:37","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8219,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8200,"src":"5709:6:37","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"src":"5700:15:37","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"id":8221,"nodeType":"ExpressionStatement","src":"5700:15:37"}]},"documentation":{"id":8197,"nodeType":"StructuredDocumentation","src":"5401:121:37","text":" @dev Set the underlying asset contract. This must be an ERC20-compatible contract (ERC-20 or ERC-777)."},"id":8223,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":8201,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8200,"mutability":"mutable","name":"asset_","nameLocation":"5546:6:37","nodeType":"VariableDeclaration","scope":8223,"src":"5539:13:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},"typeName":{"id":8199,"nodeType":"UserDefinedTypeName","pathNode":{"id":8198,"name":"IERC20","nameLocations":["5539:6:37"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"5539:6:37"},"referencedDeclaration":7977,"src":"5539:6:37","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"visibility":"internal"}],"src":"5538:15:37"},"returnParameters":{"id":8202,"nodeType":"ParameterList","parameters":[],"src":"5554:0:37"},"scope":8837,"src":"5527:195:37","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":8300,"nodeType":"Block","src":"5962:510:37","statements":[{"assignments":[8238],"declarations":[{"constant":false,"id":8238,"mutability":"mutable","name":"ptr","nameLocation":"5987:3:37","nodeType":"VariableDeclaration","scope":8300,"src":"5972:18:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"},"typeName":{"id":8237,"nodeType":"UserDefinedTypeName","pathNode":{"id":8236,"name":"Memory.Pointer","nameLocations":["5972:6:37","5979:7:37"],"nodeType":"IdentifierPath","referencedDeclaration":10917,"src":"5972:14:37"},"referencedDeclaration":10917,"src":"5972:14:37","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},"visibility":"internal"}],"id":8242,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8239,"name":"Memory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11210,"src":"5993:6:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Memory_$11210_$","typeString":"type(library Memory)"}},"id":8240,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6000:20:37","memberName":"getFreeMemoryPointer","nodeType":"MemberAccess","referencedDeclaration":10926,"src":"5993:27:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_userDefinedValueType$_Pointer_$10917_$","typeString":"function () pure returns (Memory.Pointer)"}},"id":8241,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5993:29:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},"nodeType":"VariableDeclarationStatement","src":"5972:50:37"},{"assignments":[8244,8246,null],"declarations":[{"constant":false,"id":8244,"mutability":"mutable","name":"success","nameLocation":"6038:7:37","nodeType":"VariableDeclaration","scope":8300,"src":"6033:12:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8243,"name":"bool","nodeType":"ElementaryTypeName","src":"6033:4:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8246,"mutability":"mutable","name":"returnedDecimals","nameLocation":"6055:16:37","nodeType":"VariableDeclaration","scope":8300,"src":"6047:24:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8245,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6047:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},null],"id":8260,"initialValue":{"arguments":[{"arguments":[{"id":8251,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8227,"src":"6135:6:37","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}],"id":8250,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6127:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8249,"name":"address","nodeType":"ElementaryTypeName","src":"6127:7:37","typeDescriptions":{}}},"id":8252,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6127:15:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"expression":{"id":8255,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"6171:14:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$8863_$","typeString":"type(contract IERC20Metadata)"}},"id":8256,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6186:8:37","memberName":"decimals","nodeType":"MemberAccess","referencedDeclaration":8862,"src":"6171:23:37","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$__$returns$_t_uint8_$","typeString":"function IERC20Metadata.decimals() view returns (uint8)"}},{"components":[],"id":8257,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6196:2:37","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_declaration_view$__$returns$_t_uint8_$","typeString":"function IERC20Metadata.decimals() view returns (uint8)"},{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}],"expression":{"id":8253,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"6156:3:37","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":8254,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6160:10:37","memberName":"encodeCall","nodeType":"MemberAccess","src":"6156:14:37","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":8258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6156:43:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":8247,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"6077:12:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":8248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6090:23:37","memberName":"staticcallReturn64Bytes","nodeType":"MemberAccess","referencedDeclaration":10850,"src":"6077:36:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes32_$_t_bytes32_$","typeString":"function (address,bytes memory) view returns (bool,bytes32,bytes32)"}},"id":8259,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6077:132:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes32_$_t_bytes32_$","typeString":"tuple(bool,bytes32,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"6032:177:37"},{"expression":{"arguments":[{"id":8264,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8238,"src":"6247:3:37","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}],"expression":{"id":8261,"name":"Memory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11210,"src":"6219:6:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Memory_$11210_$","typeString":"type(library Memory)"}},"id":8263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6226:20:37","memberName":"setFreeMemoryPointer","nodeType":"MemberAccess","referencedDeclaration":10935,"src":"6219:27:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Pointer_$10917_$returns$__$","typeString":"function (Memory.Pointer) pure"}},"id":8265,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6219:32:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8266,"nodeType":"ExpressionStatement","src":"6219:32:37"},{"expression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8267,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8244,"src":"6282:7:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8272,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8268,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"6293:12:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":8269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6306:14:37","memberName":"returnDataSize","nodeType":"MemberAccess","referencedDeclaration":10886,"src":"6293:27:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":8270,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6293:29:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3332","id":8271,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6326:2:37","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"6293:35:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6282:46:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8283,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8276,"name":"returnedDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8246,"src":"6340:16:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8275,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6332:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":8274,"name":"uint256","nodeType":"ElementaryTypeName","src":"6332:7:37","typeDescriptions":{}}},"id":8277,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6332:25:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":8280,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6366:5:37","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":8279,"name":"uint8","nodeType":"ElementaryTypeName","src":"6366:5:37","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":8278,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6361:4:37","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":8281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6361:11:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":8282,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6373:3:37","memberName":"max","nodeType":"MemberAccess","src":"6361:15:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6332:44:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6282:94:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":8285,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6281:96:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"hexValue":"66616c7365","id":8295,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6456:5:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":8296,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6463:1:37","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8297,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6455:10:37","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"id":8298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"6281:184:37","trueExpression":{"components":[{"hexValue":"74727565","id":8286,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6397:4:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"arguments":[{"arguments":[{"id":8291,"name":"returnedDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8246,"src":"6417:16:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8290,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6409:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":8289,"name":"uint256","nodeType":"ElementaryTypeName","src":"6409:7:37","typeDescriptions":{}}},"id":8292,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6409:25:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8288,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6403:5:37","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":8287,"name":"uint8","nodeType":"ElementaryTypeName","src":"6403:5:37","typeDescriptions":{}}},"id":8293,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6403:32:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":8294,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6396:40:37","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint8_$","typeString":"tuple(bool,uint8)"}},"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint8_$","typeString":"tuple(bool,uint8)"}},"functionReturnParameters":8233,"id":8299,"nodeType":"Return","src":"6262:203:37"}]},"documentation":{"id":8224,"nodeType":"StructuredDocumentation","src":"5728:132:37","text":" @dev Attempts to fetch the asset decimals. A return value of false indicates that the attempt failed in some way."},"id":8301,"implemented":true,"kind":"function","modifiers":[],"name":"_tryGetAssetDecimals","nameLocation":"5874:20:37","nodeType":"FunctionDefinition","parameters":{"id":8228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8227,"mutability":"mutable","name":"asset_","nameLocation":"5902:6:37","nodeType":"VariableDeclaration","scope":8301,"src":"5895:13:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},"typeName":{"id":8226,"nodeType":"UserDefinedTypeName","pathNode":{"id":8225,"name":"IERC20","nameLocations":["5895:6:37"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"5895:6:37"},"referencedDeclaration":7977,"src":"5895:6:37","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"visibility":"internal"}],"src":"5894:15:37"},"returnParameters":{"id":8233,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8230,"mutability":"mutable","name":"ok","nameLocation":"5937:2:37","nodeType":"VariableDeclaration","scope":8301,"src":"5932:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8229,"name":"bool","nodeType":"ElementaryTypeName","src":"5932:4:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8232,"mutability":"mutable","name":"assetDecimals","nameLocation":"5947:13:37","nodeType":"VariableDeclaration","scope":8301,"src":"5941:19:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8231,"name":"uint8","nodeType":"ElementaryTypeName","src":"5941:5:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"5931:30:37"},"scope":8837,"src":"5865:607:37","stateMutability":"view","virtual":false,"visibility":"private"},{"baseFunctions":[7463,8862],"body":{"id":8315,"nodeType":"Block","src":"6965:63:37","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8310,"name":"_underlyingDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8160,"src":"6982:19:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":8311,"name":"_decimalsOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8836,"src":"7004:15:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint8_$","typeString":"function () view returns (uint8)"}},"id":8312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7004:17:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6982:39:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":8309,"id":8314,"nodeType":"Return","src":"6975:46:37"}]},"documentation":{"id":8302,"nodeType":"StructuredDocumentation","src":"6478:394:37","text":" @dev Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This\n \"original\" value is cached during construction of the vault contract. If this read operation fails (e.g., the\n asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals.\n See {IERC20Metadata-decimals}."},"functionSelector":"313ce567","id":8316,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"6886:8:37","nodeType":"FunctionDefinition","overrides":{"id":8306,"nodeType":"OverrideSpecifier","overrides":[{"id":8304,"name":"IERC20Metadata","nameLocations":["6926:14:37"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"6926:14:37"},{"id":8305,"name":"ERC20","nameLocations":["6942:5:37"],"nodeType":"IdentifierPath","referencedDeclaration":7899,"src":"6942:5:37"}],"src":"6917:31:37"},"parameters":{"id":8303,"nodeType":"ParameterList","parameters":[],"src":"6894:2:37"},"returnParameters":{"id":8309,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8308,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8316,"src":"6958:5:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8307,"name":"uint8","nodeType":"ElementaryTypeName","src":"6958:5:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"6957:7:37"},"scope":8837,"src":"6877:151:37","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6269],"body":{"id":8327,"nodeType":"Block","src":"7118:39:37","statements":[{"expression":{"arguments":[{"id":8324,"name":"_asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8158,"src":"7143:6:37","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}],"id":8323,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7135:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8322,"name":"address","nodeType":"ElementaryTypeName","src":"7135:7:37","typeDescriptions":{}}},"id":8325,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7135:15:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":8321,"id":8326,"nodeType":"Return","src":"7128:22:37"}]},"documentation":{"id":8317,"nodeType":"StructuredDocumentation","src":"7034:24:37","text":"@inheritdoc IERC4626"},"functionSelector":"38d52e0f","id":8328,"implemented":true,"kind":"function","modifiers":[],"name":"asset","nameLocation":"7072:5:37","nodeType":"FunctionDefinition","parameters":{"id":8318,"nodeType":"ParameterList","parameters":[],"src":"7077:2:37"},"returnParameters":{"id":8321,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8320,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8328,"src":"7109:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8319,"name":"address","nodeType":"ElementaryTypeName","src":"7109:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7108:9:37"},"scope":8837,"src":"7063:94:37","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6275],"body":{"id":8345,"nodeType":"Block","src":"7253:64:37","statements":[{"expression":{"arguments":[{"arguments":[{"id":8341,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7304:4:37","typeDescriptions":{"typeIdentifier":"t_contract$_ERC4626_$8837","typeString":"contract ERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC4626_$8837","typeString":"contract ERC4626"}],"id":8340,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7296:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8339,"name":"address","nodeType":"ElementaryTypeName","src":"7296:7:37","typeDescriptions":{}}},"id":8342,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7296:13:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":8335,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8328,"src":"7277:5:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8336,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7277:7:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8334,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"7270:6:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$7977_$","typeString":"type(contract IERC20)"}},"id":8337,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7270:15:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"id":8338,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7286:9:37","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":7934,"src":"7270:25:37","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":8343,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7270:40:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8333,"id":8344,"nodeType":"Return","src":"7263:47:37"}]},"documentation":{"id":8329,"nodeType":"StructuredDocumentation","src":"7163:24:37","text":"@inheritdoc IERC4626"},"functionSelector":"01e1d114","id":8346,"implemented":true,"kind":"function","modifiers":[],"name":"totalAssets","nameLocation":"7201:11:37","nodeType":"FunctionDefinition","parameters":{"id":8330,"nodeType":"ParameterList","parameters":[],"src":"7212:2:37"},"returnParameters":{"id":8333,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8332,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8346,"src":"7244:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8331,"name":"uint256","nodeType":"ElementaryTypeName","src":"7244:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7243:9:37"},"scope":8837,"src":"7192:125:37","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6283],"body":{"id":8361,"nodeType":"Block","src":"7431:69:37","statements":[{"expression":{"arguments":[{"id":8355,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8349,"src":"7465:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":8356,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"7473:4:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":8357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7478:8:37","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":14284,"src":"7473:13:37","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$14284_$","typeString":"type(enum Math.Rounding)"}},"id":8358,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7487:5:37","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":14280,"src":"7473:19:37","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}],"id":8354,"name":"_convertToShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8710,"src":"7448:16:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$14284_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":8359,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7448:45:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8353,"id":8360,"nodeType":"Return","src":"7441:52:37"}]},"documentation":{"id":8347,"nodeType":"StructuredDocumentation","src":"7323:24:37","text":"@inheritdoc IERC4626"},"functionSelector":"c6e6f592","id":8362,"implemented":true,"kind":"function","modifiers":[],"name":"convertToShares","nameLocation":"7361:15:37","nodeType":"FunctionDefinition","parameters":{"id":8350,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8349,"mutability":"mutable","name":"assets","nameLocation":"7385:6:37","nodeType":"VariableDeclaration","scope":8362,"src":"7377:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8348,"name":"uint256","nodeType":"ElementaryTypeName","src":"7377:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7376:16:37"},"returnParameters":{"id":8353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8352,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8362,"src":"7422:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8351,"name":"uint256","nodeType":"ElementaryTypeName","src":"7422:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7421:9:37"},"scope":8837,"src":"7352:148:37","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6291],"body":{"id":8377,"nodeType":"Block","src":"7614:69:37","statements":[{"expression":{"arguments":[{"id":8371,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8365,"src":"7648:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":8372,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"7656:4:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":8373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7661:8:37","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":14284,"src":"7656:13:37","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$14284_$","typeString":"type(enum Math.Rounding)"}},"id":8374,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7670:5:37","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":14280,"src":"7656:19:37","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}],"id":8370,"name":"_convertToAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8738,"src":"7631:16:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$14284_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":8375,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7631:45:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8369,"id":8376,"nodeType":"Return","src":"7624:52:37"}]},"documentation":{"id":8363,"nodeType":"StructuredDocumentation","src":"7506:24:37","text":"@inheritdoc IERC4626"},"functionSelector":"07a2d13a","id":8378,"implemented":true,"kind":"function","modifiers":[],"name":"convertToAssets","nameLocation":"7544:15:37","nodeType":"FunctionDefinition","parameters":{"id":8366,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8365,"mutability":"mutable","name":"shares","nameLocation":"7568:6:37","nodeType":"VariableDeclaration","scope":8378,"src":"7560:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8364,"name":"uint256","nodeType":"ElementaryTypeName","src":"7560:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7559:16:37"},"returnParameters":{"id":8369,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8368,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8378,"src":"7605:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8367,"name":"uint256","nodeType":"ElementaryTypeName","src":"7605:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7604:9:37"},"scope":8837,"src":"7535:148:37","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6299],"body":{"id":8392,"nodeType":"Block","src":"7785:41:37","statements":[{"expression":{"expression":{"arguments":[{"id":8388,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7807:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":8387,"name":"uint256","nodeType":"ElementaryTypeName","src":"7807:7:37","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":8386,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7802:4:37","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":8389,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7802:13:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":8390,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7816:3:37","memberName":"max","nodeType":"MemberAccess","src":"7802:17:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8385,"id":8391,"nodeType":"Return","src":"7795:24:37"}]},"documentation":{"id":8379,"nodeType":"StructuredDocumentation","src":"7689:24:37","text":"@inheritdoc IERC4626"},"functionSelector":"402d267d","id":8393,"implemented":true,"kind":"function","modifiers":[],"name":"maxDeposit","nameLocation":"7727:10:37","nodeType":"FunctionDefinition","parameters":{"id":8382,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8381,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8393,"src":"7738:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8380,"name":"address","nodeType":"ElementaryTypeName","src":"7738:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7737:9:37"},"returnParameters":{"id":8385,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8384,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8393,"src":"7776:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8383,"name":"uint256","nodeType":"ElementaryTypeName","src":"7776:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7775:9:37"},"scope":8837,"src":"7718:108:37","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6325],"body":{"id":8407,"nodeType":"Block","src":"7925:41:37","statements":[{"expression":{"expression":{"arguments":[{"id":8403,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7947:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":8402,"name":"uint256","nodeType":"ElementaryTypeName","src":"7947:7:37","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":8401,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7942:4:37","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":8404,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7942:13:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":8405,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7956:3:37","memberName":"max","nodeType":"MemberAccess","src":"7942:17:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8400,"id":8406,"nodeType":"Return","src":"7935:24:37"}]},"documentation":{"id":8394,"nodeType":"StructuredDocumentation","src":"7832:24:37","text":"@inheritdoc IERC4626"},"functionSelector":"c63d75b6","id":8408,"implemented":true,"kind":"function","modifiers":[],"name":"maxMint","nameLocation":"7870:7:37","nodeType":"FunctionDefinition","parameters":{"id":8397,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8396,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8408,"src":"7878:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8395,"name":"address","nodeType":"ElementaryTypeName","src":"7878:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7877:9:37"},"returnParameters":{"id":8400,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8399,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8408,"src":"7916:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8398,"name":"uint256","nodeType":"ElementaryTypeName","src":"7916:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7915:9:37"},"scope":8837,"src":"7861:105:37","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6351],"body":{"id":8422,"nodeType":"Block","src":"8075:55:37","statements":[{"expression":{"arguments":[{"arguments":[{"id":8418,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8411,"src":"8116:5:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8417,"name":"maxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8436,"src":"8106:9:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":8419,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8106:16:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8416,"name":"previewRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8500,"src":"8092:13:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":8420,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8092:31:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8415,"id":8421,"nodeType":"Return","src":"8085:38:37"}]},"documentation":{"id":8409,"nodeType":"StructuredDocumentation","src":"7972:24:37","text":"@inheritdoc IERC4626"},"functionSelector":"ce96cb77","id":8423,"implemented":true,"kind":"function","modifiers":[],"name":"maxWithdraw","nameLocation":"8010:11:37","nodeType":"FunctionDefinition","parameters":{"id":8412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8411,"mutability":"mutable","name":"owner","nameLocation":"8030:5:37","nodeType":"VariableDeclaration","scope":8423,"src":"8022:13:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8410,"name":"address","nodeType":"ElementaryTypeName","src":"8022:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8021:15:37"},"returnParameters":{"id":8415,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8414,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8423,"src":"8066:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8413,"name":"uint256","nodeType":"ElementaryTypeName","src":"8066:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8065:9:37"},"scope":8837,"src":"8001:129:37","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6379],"body":{"id":8435,"nodeType":"Block","src":"8237:40:37","statements":[{"expression":{"arguments":[{"id":8432,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8426,"src":"8264:5:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8431,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7485,"src":"8254:9:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":8433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8254:16:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8430,"id":8434,"nodeType":"Return","src":"8247:23:37"}]},"documentation":{"id":8424,"nodeType":"StructuredDocumentation","src":"8136:24:37","text":"@inheritdoc IERC4626"},"functionSelector":"d905777e","id":8436,"implemented":true,"kind":"function","modifiers":[],"name":"maxRedeem","nameLocation":"8174:9:37","nodeType":"FunctionDefinition","parameters":{"id":8427,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8426,"mutability":"mutable","name":"owner","nameLocation":"8192:5:37","nodeType":"VariableDeclaration","scope":8436,"src":"8184:13:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8425,"name":"address","nodeType":"ElementaryTypeName","src":"8184:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8183:15:37"},"returnParameters":{"id":8430,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8429,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8436,"src":"8228:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8428,"name":"uint256","nodeType":"ElementaryTypeName","src":"8228:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8227:9:37"},"scope":8837,"src":"8165:112:37","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6307],"body":{"id":8451,"nodeType":"Block","src":"8390:69:37","statements":[{"expression":{"arguments":[{"id":8445,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8439,"src":"8424:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":8446,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"8432:4:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":8447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8437:8:37","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":14284,"src":"8432:13:37","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$14284_$","typeString":"type(enum Math.Rounding)"}},"id":8448,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8446:5:37","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":14280,"src":"8432:19:37","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}],"id":8444,"name":"_convertToShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8710,"src":"8407:16:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$14284_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":8449,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8407:45:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8443,"id":8450,"nodeType":"Return","src":"8400:52:37"}]},"documentation":{"id":8437,"nodeType":"StructuredDocumentation","src":"8283:24:37","text":"@inheritdoc IERC4626"},"functionSelector":"ef8b30f7","id":8452,"implemented":true,"kind":"function","modifiers":[],"name":"previewDeposit","nameLocation":"8321:14:37","nodeType":"FunctionDefinition","parameters":{"id":8440,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8439,"mutability":"mutable","name":"assets","nameLocation":"8344:6:37","nodeType":"VariableDeclaration","scope":8452,"src":"8336:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8438,"name":"uint256","nodeType":"ElementaryTypeName","src":"8336:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8335:16:37"},"returnParameters":{"id":8443,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8442,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8452,"src":"8381:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8441,"name":"uint256","nodeType":"ElementaryTypeName","src":"8381:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8380:9:37"},"scope":8837,"src":"8312:147:37","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6333],"body":{"id":8467,"nodeType":"Block","src":"8569:68:37","statements":[{"expression":{"arguments":[{"id":8461,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8455,"src":"8603:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":8462,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"8611:4:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":8463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8616:8:37","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":14284,"src":"8611:13:37","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$14284_$","typeString":"type(enum Math.Rounding)"}},"id":8464,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8625:4:37","memberName":"Ceil","nodeType":"MemberAccess","referencedDeclaration":14281,"src":"8611:18:37","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}],"id":8460,"name":"_convertToAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8738,"src":"8586:16:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$14284_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":8465,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8586:44:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8459,"id":8466,"nodeType":"Return","src":"8579:51:37"}]},"documentation":{"id":8453,"nodeType":"StructuredDocumentation","src":"8465:24:37","text":"@inheritdoc IERC4626"},"functionSelector":"b3d7f6b9","id":8468,"implemented":true,"kind":"function","modifiers":[],"name":"previewMint","nameLocation":"8503:11:37","nodeType":"FunctionDefinition","parameters":{"id":8456,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8455,"mutability":"mutable","name":"shares","nameLocation":"8523:6:37","nodeType":"VariableDeclaration","scope":8468,"src":"8515:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8454,"name":"uint256","nodeType":"ElementaryTypeName","src":"8515:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8514:16:37"},"returnParameters":{"id":8459,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8458,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8468,"src":"8560:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8457,"name":"uint256","nodeType":"ElementaryTypeName","src":"8560:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8559:9:37"},"scope":8837,"src":"8494:143:37","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6359],"body":{"id":8483,"nodeType":"Block","src":"8751:68:37","statements":[{"expression":{"arguments":[{"id":8477,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8471,"src":"8785:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":8478,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"8793:4:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":8479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8798:8:37","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":14284,"src":"8793:13:37","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$14284_$","typeString":"type(enum Math.Rounding)"}},"id":8480,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8807:4:37","memberName":"Ceil","nodeType":"MemberAccess","referencedDeclaration":14281,"src":"8793:18:37","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}],"id":8476,"name":"_convertToShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8710,"src":"8768:16:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$14284_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":8481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8768:44:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8475,"id":8482,"nodeType":"Return","src":"8761:51:37"}]},"documentation":{"id":8469,"nodeType":"StructuredDocumentation","src":"8643:24:37","text":"@inheritdoc IERC4626"},"functionSelector":"0a28a477","id":8484,"implemented":true,"kind":"function","modifiers":[],"name":"previewWithdraw","nameLocation":"8681:15:37","nodeType":"FunctionDefinition","parameters":{"id":8472,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8471,"mutability":"mutable","name":"assets","nameLocation":"8705:6:37","nodeType":"VariableDeclaration","scope":8484,"src":"8697:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8470,"name":"uint256","nodeType":"ElementaryTypeName","src":"8697:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8696:16:37"},"returnParameters":{"id":8475,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8474,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8484,"src":"8742:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8473,"name":"uint256","nodeType":"ElementaryTypeName","src":"8742:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8741:9:37"},"scope":8837,"src":"8672:147:37","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6387],"body":{"id":8499,"nodeType":"Block","src":"8931:69:37","statements":[{"expression":{"arguments":[{"id":8493,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8487,"src":"8965:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":8494,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"8973:4:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":8495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8978:8:37","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":14284,"src":"8973:13:37","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$14284_$","typeString":"type(enum Math.Rounding)"}},"id":8496,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8987:5:37","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":14280,"src":"8973:19:37","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}],"id":8492,"name":"_convertToAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8738,"src":"8948:16:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$14284_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":8497,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8948:45:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8491,"id":8498,"nodeType":"Return","src":"8941:52:37"}]},"documentation":{"id":8485,"nodeType":"StructuredDocumentation","src":"8825:24:37","text":"@inheritdoc IERC4626"},"functionSelector":"4cdad506","id":8500,"implemented":true,"kind":"function","modifiers":[],"name":"previewRedeem","nameLocation":"8863:13:37","nodeType":"FunctionDefinition","parameters":{"id":8488,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8487,"mutability":"mutable","name":"shares","nameLocation":"8885:6:37","nodeType":"VariableDeclaration","scope":8500,"src":"8877:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8486,"name":"uint256","nodeType":"ElementaryTypeName","src":"8877:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8876:16:37"},"returnParameters":{"id":8491,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8490,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8500,"src":"8922:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8489,"name":"uint256","nodeType":"ElementaryTypeName","src":"8922:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8921:9:37"},"scope":8837,"src":"8854:146:37","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6317],"body":{"id":8543,"nodeType":"Block","src":"9119:308:37","statements":[{"assignments":[8511],"declarations":[{"constant":false,"id":8511,"mutability":"mutable","name":"maxAssets","nameLocation":"9137:9:37","nodeType":"VariableDeclaration","scope":8543,"src":"9129:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8510,"name":"uint256","nodeType":"ElementaryTypeName","src":"9129:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8515,"initialValue":{"arguments":[{"id":8513,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8505,"src":"9160:8:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8512,"name":"maxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8393,"src":"9149:10:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":8514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9149:20:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9129:40:37"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8516,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8503,"src":"9183:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":8517,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8511,"src":"9192:9:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9183:18:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8526,"nodeType":"IfStatement","src":"9179:110:37","trueBody":{"id":8525,"nodeType":"Block","src":"9203:86:37","statements":[{"errorCall":{"arguments":[{"id":8520,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8505,"src":"9250:8:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8521,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8503,"src":"9260:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8522,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8511,"src":"9268:9:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8519,"name":"ERC4626ExceededMaxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8169,"src":"9224:25:37","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":8523,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9224:54:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8524,"nodeType":"RevertStatement","src":"9217:61:37"}]}},{"assignments":[8528],"declarations":[{"constant":false,"id":8528,"mutability":"mutable","name":"shares","nameLocation":"9307:6:37","nodeType":"VariableDeclaration","scope":8543,"src":"9299:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8527,"name":"uint256","nodeType":"ElementaryTypeName","src":"9299:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8532,"initialValue":{"arguments":[{"id":8530,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8503,"src":"9331:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8529,"name":"previewDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8452,"src":"9316:14:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":8531,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9316:22:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9299:39:37"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":8534,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10709,"src":"9357:10:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8535,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9357:12:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8536,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8505,"src":"9371:8:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8537,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8503,"src":"9381:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8538,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8528,"src":"9389:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8533,"name":"_deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8778,"src":"9348:8:37","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":8539,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9348:48:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8540,"nodeType":"ExpressionStatement","src":"9348:48:37"},{"expression":{"id":8541,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8528,"src":"9414:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8509,"id":8542,"nodeType":"Return","src":"9407:13:37"}]},"documentation":{"id":8501,"nodeType":"StructuredDocumentation","src":"9006:24:37","text":"@inheritdoc IERC4626"},"functionSelector":"6e553f65","id":8544,"implemented":true,"kind":"function","modifiers":[],"name":"deposit","nameLocation":"9044:7:37","nodeType":"FunctionDefinition","parameters":{"id":8506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8503,"mutability":"mutable","name":"assets","nameLocation":"9060:6:37","nodeType":"VariableDeclaration","scope":8544,"src":"9052:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8502,"name":"uint256","nodeType":"ElementaryTypeName","src":"9052:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8505,"mutability":"mutable","name":"receiver","nameLocation":"9076:8:37","nodeType":"VariableDeclaration","scope":8544,"src":"9068:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8504,"name":"address","nodeType":"ElementaryTypeName","src":"9068:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9051:34:37"},"returnParameters":{"id":8509,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8508,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8544,"src":"9110:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8507,"name":"uint256","nodeType":"ElementaryTypeName","src":"9110:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9109:9:37"},"scope":8837,"src":"9035:392:37","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[6343],"body":{"id":8587,"nodeType":"Block","src":"9543:299:37","statements":[{"assignments":[8555],"declarations":[{"constant":false,"id":8555,"mutability":"mutable","name":"maxShares","nameLocation":"9561:9:37","nodeType":"VariableDeclaration","scope":8587,"src":"9553:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8554,"name":"uint256","nodeType":"ElementaryTypeName","src":"9553:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8559,"initialValue":{"arguments":[{"id":8557,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8549,"src":"9581:8:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8556,"name":"maxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8408,"src":"9573:7:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":8558,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9573:17:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9553:37:37"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8562,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8560,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8547,"src":"9604:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":8561,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8555,"src":"9613:9:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9604:18:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8570,"nodeType":"IfStatement","src":"9600:107:37","trueBody":{"id":8569,"nodeType":"Block","src":"9624:83:37","statements":[{"errorCall":{"arguments":[{"id":8564,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8549,"src":"9668:8:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8565,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8547,"src":"9678:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8566,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8555,"src":"9686:9:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8563,"name":"ERC4626ExceededMaxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8178,"src":"9645:22:37","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":8567,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9645:51:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8568,"nodeType":"RevertStatement","src":"9638:58:37"}]}},{"assignments":[8572],"declarations":[{"constant":false,"id":8572,"mutability":"mutable","name":"assets","nameLocation":"9725:6:37","nodeType":"VariableDeclaration","scope":8587,"src":"9717:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8571,"name":"uint256","nodeType":"ElementaryTypeName","src":"9717:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8576,"initialValue":{"arguments":[{"id":8574,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8547,"src":"9746:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8573,"name":"previewMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8468,"src":"9734:11:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":8575,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9734:19:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9717:36:37"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":8578,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10709,"src":"9772:10:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8579,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9772:12:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8580,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8549,"src":"9786:8:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8581,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8572,"src":"9796:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8582,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8547,"src":"9804:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8577,"name":"_deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8778,"src":"9763:8:37","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":8583,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9763:48:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8584,"nodeType":"ExpressionStatement","src":"9763:48:37"},{"expression":{"id":8585,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8572,"src":"9829:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8553,"id":8586,"nodeType":"Return","src":"9822:13:37"}]},"documentation":{"id":8545,"nodeType":"StructuredDocumentation","src":"9433:24:37","text":"@inheritdoc IERC4626"},"functionSelector":"94bf804d","id":8588,"implemented":true,"kind":"function","modifiers":[],"name":"mint","nameLocation":"9471:4:37","nodeType":"FunctionDefinition","parameters":{"id":8550,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8547,"mutability":"mutable","name":"shares","nameLocation":"9484:6:37","nodeType":"VariableDeclaration","scope":8588,"src":"9476:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8546,"name":"uint256","nodeType":"ElementaryTypeName","src":"9476:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8549,"mutability":"mutable","name":"receiver","nameLocation":"9500:8:37","nodeType":"VariableDeclaration","scope":8588,"src":"9492:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8548,"name":"address","nodeType":"ElementaryTypeName","src":"9492:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9475:34:37"},"returnParameters":{"id":8553,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8552,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8588,"src":"9534:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8551,"name":"uint256","nodeType":"ElementaryTypeName","src":"9534:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9533:9:37"},"scope":8837,"src":"9462:380:37","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[6371],"body":{"id":8634,"nodeType":"Block","src":"9977:313:37","statements":[{"assignments":[8601],"declarations":[{"constant":false,"id":8601,"mutability":"mutable","name":"maxAssets","nameLocation":"9995:9:37","nodeType":"VariableDeclaration","scope":8634,"src":"9987:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8600,"name":"uint256","nodeType":"ElementaryTypeName","src":"9987:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8605,"initialValue":{"arguments":[{"id":8603,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8595,"src":"10019:5:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8602,"name":"maxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8423,"src":"10007:11:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":8604,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10007:18:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9987:38:37"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8608,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8606,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8591,"src":"10039:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":8607,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8601,"src":"10048:9:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10039:18:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8616,"nodeType":"IfStatement","src":"10035:108:37","trueBody":{"id":8615,"nodeType":"Block","src":"10059:84:37","statements":[{"errorCall":{"arguments":[{"id":8610,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8595,"src":"10107:5:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8611,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8591,"src":"10114:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8612,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8601,"src":"10122:9:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8609,"name":"ERC4626ExceededMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8187,"src":"10080:26:37","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":8613,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10080:52:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8614,"nodeType":"RevertStatement","src":"10073:59:37"}]}},{"assignments":[8618],"declarations":[{"constant":false,"id":8618,"mutability":"mutable","name":"shares","nameLocation":"10161:6:37","nodeType":"VariableDeclaration","scope":8634,"src":"10153:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8617,"name":"uint256","nodeType":"ElementaryTypeName","src":"10153:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8622,"initialValue":{"arguments":[{"id":8620,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8591,"src":"10186:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8619,"name":"previewWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8484,"src":"10170:15:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":8621,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10170:23:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10153:40:37"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":8624,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10709,"src":"10213:10:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8625,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10213:12:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8626,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8593,"src":"10227:8:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8627,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8595,"src":"10237:5:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8628,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8591,"src":"10244:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8629,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8618,"src":"10252:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8623,"name":"_withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8828,"src":"10203:9:37","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":8630,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10203:56:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8631,"nodeType":"ExpressionStatement","src":"10203:56:37"},{"expression":{"id":8632,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8618,"src":"10277:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8599,"id":8633,"nodeType":"Return","src":"10270:13:37"}]},"documentation":{"id":8589,"nodeType":"StructuredDocumentation","src":"9848:24:37","text":"@inheritdoc IERC4626"},"functionSelector":"b460af94","id":8635,"implemented":true,"kind":"function","modifiers":[],"name":"withdraw","nameLocation":"9886:8:37","nodeType":"FunctionDefinition","parameters":{"id":8596,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8591,"mutability":"mutable","name":"assets","nameLocation":"9903:6:37","nodeType":"VariableDeclaration","scope":8635,"src":"9895:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8590,"name":"uint256","nodeType":"ElementaryTypeName","src":"9895:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8593,"mutability":"mutable","name":"receiver","nameLocation":"9919:8:37","nodeType":"VariableDeclaration","scope":8635,"src":"9911:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8592,"name":"address","nodeType":"ElementaryTypeName","src":"9911:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8595,"mutability":"mutable","name":"owner","nameLocation":"9937:5:37","nodeType":"VariableDeclaration","scope":8635,"src":"9929:13:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8594,"name":"address","nodeType":"ElementaryTypeName","src":"9929:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9894:49:37"},"returnParameters":{"id":8599,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8598,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8635,"src":"9968:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8597,"name":"uint256","nodeType":"ElementaryTypeName","src":"9968:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9967:9:37"},"scope":8837,"src":"9877:413:37","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[6399],"body":{"id":8681,"nodeType":"Block","src":"10423:307:37","statements":[{"assignments":[8648],"declarations":[{"constant":false,"id":8648,"mutability":"mutable","name":"maxShares","nameLocation":"10441:9:37","nodeType":"VariableDeclaration","scope":8681,"src":"10433:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8647,"name":"uint256","nodeType":"ElementaryTypeName","src":"10433:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8652,"initialValue":{"arguments":[{"id":8650,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8642,"src":"10463:5:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8649,"name":"maxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8436,"src":"10453:9:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":8651,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10453:16:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10433:36:37"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8653,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8638,"src":"10483:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":8654,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8648,"src":"10492:9:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10483:18:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8663,"nodeType":"IfStatement","src":"10479:106:37","trueBody":{"id":8662,"nodeType":"Block","src":"10503:82:37","statements":[{"errorCall":{"arguments":[{"id":8657,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8642,"src":"10549:5:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8658,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8638,"src":"10556:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8659,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8648,"src":"10564:9:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8656,"name":"ERC4626ExceededMaxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8196,"src":"10524:24:37","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":8660,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10524:50:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8661,"nodeType":"RevertStatement","src":"10517:57:37"}]}},{"assignments":[8665],"declarations":[{"constant":false,"id":8665,"mutability":"mutable","name":"assets","nameLocation":"10603:6:37","nodeType":"VariableDeclaration","scope":8681,"src":"10595:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8664,"name":"uint256","nodeType":"ElementaryTypeName","src":"10595:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8669,"initialValue":{"arguments":[{"id":8667,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8638,"src":"10626:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8666,"name":"previewRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8500,"src":"10612:13:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":8668,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10612:21:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10595:38:37"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":8671,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10709,"src":"10653:10:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8672,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10653:12:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8673,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8640,"src":"10667:8:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8674,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8642,"src":"10677:5:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8675,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8665,"src":"10684:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8676,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8638,"src":"10692:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8670,"name":"_withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8828,"src":"10643:9:37","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":8677,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10643:56:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8678,"nodeType":"ExpressionStatement","src":"10643:56:37"},{"expression":{"id":8679,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8665,"src":"10717:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8646,"id":8680,"nodeType":"Return","src":"10710:13:37"}]},"documentation":{"id":8636,"nodeType":"StructuredDocumentation","src":"10296:24:37","text":"@inheritdoc IERC4626"},"functionSelector":"ba087652","id":8682,"implemented":true,"kind":"function","modifiers":[],"name":"redeem","nameLocation":"10334:6:37","nodeType":"FunctionDefinition","parameters":{"id":8643,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8638,"mutability":"mutable","name":"shares","nameLocation":"10349:6:37","nodeType":"VariableDeclaration","scope":8682,"src":"10341:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8637,"name":"uint256","nodeType":"ElementaryTypeName","src":"10341:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8640,"mutability":"mutable","name":"receiver","nameLocation":"10365:8:37","nodeType":"VariableDeclaration","scope":8682,"src":"10357:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8639,"name":"address","nodeType":"ElementaryTypeName","src":"10357:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8642,"mutability":"mutable","name":"owner","nameLocation":"10383:5:37","nodeType":"VariableDeclaration","scope":8682,"src":"10375:13:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8641,"name":"address","nodeType":"ElementaryTypeName","src":"10375:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10340:49:37"},"returnParameters":{"id":8646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8645,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8682,"src":"10414:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8644,"name":"uint256","nodeType":"ElementaryTypeName","src":"10414:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10413:9:37"},"scope":8837,"src":"10325:405:37","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":8709,"nodeType":"Block","src":"10960:107:37","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":8695,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7472,"src":"10991:11:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":8696,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10991:13:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8700,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":8697,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11007:2:37","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":8698,"name":"_decimalsOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8836,"src":"11013:15:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint8_$","typeString":"function () view returns (uint8)"}},"id":8699,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11013:17:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11007:23:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10991:39:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8705,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":8702,"name":"totalAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8346,"src":"11032:11:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":8703,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11032:13:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":8704,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11048:1:37","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11032:17:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8706,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8688,"src":"11051:8:37","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}],"expression":{"id":8693,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8685,"src":"10977:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10984:6:37","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14836,"src":"10977:13:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$_t_enum$_Rounding_$14284_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256,enum Math.Rounding) pure returns (uint256)"}},"id":8707,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10977:83:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8692,"id":8708,"nodeType":"Return","src":"10970:90:37"}]},"documentation":{"id":8683,"nodeType":"StructuredDocumentation","src":"10736:113:37","text":" @dev Internal conversion function (from assets to shares) with support for rounding direction."},"id":8710,"implemented":true,"kind":"function","modifiers":[],"name":"_convertToShares","nameLocation":"10863:16:37","nodeType":"FunctionDefinition","parameters":{"id":8689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8685,"mutability":"mutable","name":"assets","nameLocation":"10888:6:37","nodeType":"VariableDeclaration","scope":8710,"src":"10880:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8684,"name":"uint256","nodeType":"ElementaryTypeName","src":"10880:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8688,"mutability":"mutable","name":"rounding","nameLocation":"10910:8:37","nodeType":"VariableDeclaration","scope":8710,"src":"10896:22:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"},"typeName":{"id":8687,"nodeType":"UserDefinedTypeName","pathNode":{"id":8686,"name":"Math.Rounding","nameLocations":["10896:4:37","10901:8:37"],"nodeType":"IdentifierPath","referencedDeclaration":14284,"src":"10896:13:37"},"referencedDeclaration":14284,"src":"10896:13:37","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"10879:40:37"},"returnParameters":{"id":8692,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8691,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8710,"src":"10951:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8690,"name":"uint256","nodeType":"ElementaryTypeName","src":"10951:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10950:9:37"},"scope":8837,"src":"10854:213:37","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":8737,"nodeType":"Block","src":"11297:107:37","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8726,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":8723,"name":"totalAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8346,"src":"11328:11:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":8724,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11328:13:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":8725,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11344:1:37","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11328:17:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8733,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":8727,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7472,"src":"11347:11:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":8728,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11347:13:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":8729,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11363:2:37","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":8730,"name":"_decimalsOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8836,"src":"11369:15:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint8_$","typeString":"function () view returns (uint8)"}},"id":8731,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11369:17:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11363:23:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11347:39:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8734,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8716,"src":"11388:8:37","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}],"expression":{"id":8721,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8713,"src":"11314:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11321:6:37","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14836,"src":"11314:13:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$_t_enum$_Rounding_$14284_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256,enum Math.Rounding) pure returns (uint256)"}},"id":8735,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11314:83:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8720,"id":8736,"nodeType":"Return","src":"11307:90:37"}]},"documentation":{"id":8711,"nodeType":"StructuredDocumentation","src":"11073:113:37","text":" @dev Internal conversion function (from shares to assets) with support for rounding direction."},"id":8738,"implemented":true,"kind":"function","modifiers":[],"name":"_convertToAssets","nameLocation":"11200:16:37","nodeType":"FunctionDefinition","parameters":{"id":8717,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8713,"mutability":"mutable","name":"shares","nameLocation":"11225:6:37","nodeType":"VariableDeclaration","scope":8738,"src":"11217:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8712,"name":"uint256","nodeType":"ElementaryTypeName","src":"11217:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8716,"mutability":"mutable","name":"rounding","nameLocation":"11247:8:37","nodeType":"VariableDeclaration","scope":8738,"src":"11233:22:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"},"typeName":{"id":8715,"nodeType":"UserDefinedTypeName","pathNode":{"id":8714,"name":"Math.Rounding","nameLocations":["11233:4:37","11238:8:37"],"nodeType":"IdentifierPath","referencedDeclaration":14284,"src":"11233:13:37"},"referencedDeclaration":14284,"src":"11233:13:37","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"11216:40:37"},"returnParameters":{"id":8720,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8719,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8738,"src":"11288:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8718,"name":"uint256","nodeType":"ElementaryTypeName","src":"11288:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11287:9:37"},"scope":8837,"src":"11191:213:37","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":8777,"nodeType":"Block","src":"11569:740:37","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":8754,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8328,"src":"12172:5:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12172:7:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8753,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"12165:6:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$7977_$","typeString":"type(contract IERC20)"}},"id":8756,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12165:15:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},{"id":8757,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8741,"src":"12182:6:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":8760,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"12198:4:37","typeDescriptions":{"typeIdentifier":"t_contract$_ERC4626_$8837","typeString":"contract ERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC4626_$8837","typeString":"contract ERC4626"}],"id":8759,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12190:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8758,"name":"address","nodeType":"ElementaryTypeName","src":"12190:7:37","typeDescriptions":{}}},"id":8761,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12190:13:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8762,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8745,"src":"12205:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":8750,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9354,"src":"12138:9:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeERC20_$9354_$","typeString":"type(library SafeERC20)"}},"id":8752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12148:16:37","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":8979,"src":"12138:26:37","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":8763,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12138:74:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8764,"nodeType":"ExpressionStatement","src":"12138:74:37"},{"expression":{"arguments":[{"id":8766,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8743,"src":"12228:8:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8767,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8747,"src":"12238:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8765,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7739,"src":"12222:5:37","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":8768,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12222:23:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8769,"nodeType":"ExpressionStatement","src":"12222:23:37"},{"eventCall":{"arguments":[{"id":8771,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8741,"src":"12269:6:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8772,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8743,"src":"12277:8:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8773,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8745,"src":"12287:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8774,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8747,"src":"12295:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8770,"name":"Deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6251,"src":"12261:7:37","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":8775,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12261:41:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8776,"nodeType":"EmitStatement","src":"12256:46:37"}]},"documentation":{"id":8739,"nodeType":"StructuredDocumentation","src":"11410:53:37","text":" @dev Deposit/mint common workflow."},"id":8778,"implemented":true,"kind":"function","modifiers":[],"name":"_deposit","nameLocation":"11477:8:37","nodeType":"FunctionDefinition","parameters":{"id":8748,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8741,"mutability":"mutable","name":"caller","nameLocation":"11494:6:37","nodeType":"VariableDeclaration","scope":8778,"src":"11486:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8740,"name":"address","nodeType":"ElementaryTypeName","src":"11486:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8743,"mutability":"mutable","name":"receiver","nameLocation":"11510:8:37","nodeType":"VariableDeclaration","scope":8778,"src":"11502:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8742,"name":"address","nodeType":"ElementaryTypeName","src":"11502:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8745,"mutability":"mutable","name":"assets","nameLocation":"11528:6:37","nodeType":"VariableDeclaration","scope":8778,"src":"11520:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8744,"name":"uint256","nodeType":"ElementaryTypeName","src":"11520:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8747,"mutability":"mutable","name":"shares","nameLocation":"11544:6:37","nodeType":"VariableDeclaration","scope":8778,"src":"11536:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8746,"name":"uint256","nodeType":"ElementaryTypeName","src":"11536:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11485:66:37"},"returnParameters":{"id":8749,"nodeType":"ParameterList","parameters":[],"src":"11569:0:37"},"scope":8837,"src":"11468:841:37","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":8827,"nodeType":"Block","src":"12539:762:37","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8792,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8781,"src":"12553:6:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":8793,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8785,"src":"12563:5:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12553:15:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8802,"nodeType":"IfStatement","src":"12549:84:37","trueBody":{"id":8801,"nodeType":"Block","src":"12570:63:37","statements":[{"expression":{"arguments":[{"id":8796,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8785,"src":"12600:5:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8797,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8781,"src":"12607:6:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8798,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8789,"src":"12615:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8795,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7898,"src":"12584:15:37","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":8799,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12584:38:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8800,"nodeType":"ExpressionStatement","src":"12584:38:37"}]}},{"expression":{"arguments":[{"id":8804,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8785,"src":"13148:5:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8805,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8789,"src":"13155:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8803,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7772,"src":"13142:5:37","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":8806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13142:20:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8807,"nodeType":"ExpressionStatement","src":"13142:20:37"},{"expression":{"arguments":[{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":8812,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8328,"src":"13202:5:37","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8813,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13202:7:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8811,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"13195:6:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$7977_$","typeString":"type(contract IERC20)"}},"id":8814,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13195:15:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},{"id":8815,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8783,"src":"13212:8:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8816,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8787,"src":"13222:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":8808,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9354,"src":"13172:9:37","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeERC20_$9354_$","typeString":"type(library SafeERC20)"}},"id":8810,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13182:12:37","memberName":"safeTransfer","nodeType":"MemberAccess","referencedDeclaration":8948,"src":"13172:22:37","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":8817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13172:57:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8818,"nodeType":"ExpressionStatement","src":"13172:57:37"},{"eventCall":{"arguments":[{"id":8820,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8781,"src":"13254:6:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8821,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8783,"src":"13262:8:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8822,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8785,"src":"13272:5:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8823,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8787,"src":"13279:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8824,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8789,"src":"13287:6:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8819,"name":"Withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6263,"src":"13245:8:37","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":8825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13245:49:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8826,"nodeType":"EmitStatement","src":"13240:54:37"}]},"documentation":{"id":8779,"nodeType":"StructuredDocumentation","src":"12315:56:37","text":" @dev Withdraw/redeem common workflow."},"id":8828,"implemented":true,"kind":"function","modifiers":[],"name":"_withdraw","nameLocation":"12385:9:37","nodeType":"FunctionDefinition","parameters":{"id":8790,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8781,"mutability":"mutable","name":"caller","nameLocation":"12412:6:37","nodeType":"VariableDeclaration","scope":8828,"src":"12404:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8780,"name":"address","nodeType":"ElementaryTypeName","src":"12404:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8783,"mutability":"mutable","name":"receiver","nameLocation":"12436:8:37","nodeType":"VariableDeclaration","scope":8828,"src":"12428:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8782,"name":"address","nodeType":"ElementaryTypeName","src":"12428:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8785,"mutability":"mutable","name":"owner","nameLocation":"12462:5:37","nodeType":"VariableDeclaration","scope":8828,"src":"12454:13:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8784,"name":"address","nodeType":"ElementaryTypeName","src":"12454:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8787,"mutability":"mutable","name":"assets","nameLocation":"12485:6:37","nodeType":"VariableDeclaration","scope":8828,"src":"12477:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8786,"name":"uint256","nodeType":"ElementaryTypeName","src":"12477:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8789,"mutability":"mutable","name":"shares","nameLocation":"12509:6:37","nodeType":"VariableDeclaration","scope":8828,"src":"12501:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8788,"name":"uint256","nodeType":"ElementaryTypeName","src":"12501:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12394:127:37"},"returnParameters":{"id":8791,"nodeType":"ParameterList","parameters":[],"src":"12539:0:37"},"scope":8837,"src":"12376:925:37","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":8835,"nodeType":"Block","src":"13372:25:37","statements":[{"expression":{"hexValue":"30","id":8833,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13389:1:37","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":8832,"id":8834,"nodeType":"Return","src":"13382:8:37"}]},"id":8836,"implemented":true,"kind":"function","modifiers":[],"name":"_decimalsOffset","nameLocation":"13316:15:37","nodeType":"FunctionDefinition","parameters":{"id":8829,"nodeType":"ParameterList","parameters":[],"src":"13331:2:37"},"returnParameters":{"id":8832,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8831,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8836,"src":"13365:5:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8830,"name":"uint8","nodeType":"ElementaryTypeName","src":"13365:5:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"13364:7:37"},"scope":8837,"src":"13307:90:37","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":8838,"src":"4518:8881:37","usedErrors":[6447,6452,6457,6466,6471,6476,8169,8178,8187,8196,8911],"usedEvents":[6251,6263,7911,7920]}],"src":"118:13282:37"},"id":37},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","exportedSymbols":{"IERC20":[7977],"IERC20Metadata":[8863]},"id":8864,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":8839,"literals":["solidity",">=","0.6",".2"],"nodeType":"PragmaDirective","src":"125:24:38"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":8841,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8864,"sourceUnit":7978,"src":"151:37:38","symbolAliases":[{"foreign":{"id":8840,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"159:6:38","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":8843,"name":"IERC20","nameLocations":["306:6:38"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"306:6:38"},"id":8844,"nodeType":"InheritanceSpecifier","src":"306:6:38"}],"canonicalName":"IERC20Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":8842,"nodeType":"StructuredDocumentation","src":"190:87:38","text":" @dev Interface for the optional metadata functions from the ERC-20 standard."},"fullyImplemented":false,"id":8863,"linearizedBaseContracts":[8863,7977],"name":"IERC20Metadata","nameLocation":"288:14:38","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":8845,"nodeType":"StructuredDocumentation","src":"319:54:38","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":8850,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"387:4:38","nodeType":"FunctionDefinition","parameters":{"id":8846,"nodeType":"ParameterList","parameters":[],"src":"391:2:38"},"returnParameters":{"id":8849,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8848,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8850,"src":"417:13:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8847,"name":"string","nodeType":"ElementaryTypeName","src":"417:6:38","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"416:15:38"},"scope":8863,"src":"378:54:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":8851,"nodeType":"StructuredDocumentation","src":"438:56:38","text":" @dev Returns the symbol of the token."},"functionSelector":"95d89b41","id":8856,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"508:6:38","nodeType":"FunctionDefinition","parameters":{"id":8852,"nodeType":"ParameterList","parameters":[],"src":"514:2:38"},"returnParameters":{"id":8855,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8854,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8856,"src":"540:13:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8853,"name":"string","nodeType":"ElementaryTypeName","src":"540:6:38","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"539:15:38"},"scope":8863,"src":"499:56:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":8857,"nodeType":"StructuredDocumentation","src":"561:65:38","text":" @dev Returns the decimals places of the token."},"functionSelector":"313ce567","id":8862,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"640:8:38","nodeType":"FunctionDefinition","parameters":{"id":8858,"nodeType":"ParameterList","parameters":[],"src":"648:2:38"},"returnParameters":{"id":8861,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8860,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8862,"src":"674:5:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8859,"name":"uint8","nodeType":"ElementaryTypeName","src":"674:5:38","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"673:7:38"},"scope":8863,"src":"631:50:38","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":8864,"src":"278:405:38","usedErrors":[],"usedEvents":[7911,7920]}],"src":"125:559:38"},"id":38},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","exportedSymbols":{"IERC20Permit":[8899]},"id":8900,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":8865,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"123:25:39"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Permit","contractDependencies":[],"contractKind":"interface","documentation":{"id":8866,"nodeType":"StructuredDocumentation","src":"150:1965:39","text":" @dev Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by\n presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n need to send a transaction, and thus is not required to hold Ether at all.\n ==== Security Considerations\n There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\n expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\n considered as an intention to spend the allowance in any specific way. The second is that because permits have\n built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\n take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\n generally recommended is:\n ```solidity\n function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\n     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\n     doThing(..., value);\n }\n function doThing(..., uint256 value) public {\n     token.safeTransferFrom(msg.sender, address(this), value);\n     ...\n }\n ```\n Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\n `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\n {SafeERC20-safeTransferFrom}).\n Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\n contracts should have entry points that don't rely on permit."},"fullyImplemented":false,"id":8899,"linearizedBaseContracts":[8899],"name":"IERC20Permit","nameLocation":"2126:12:39","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":8867,"nodeType":"StructuredDocumentation","src":"2145:852:39","text":" @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n given ``owner``'s signed approval.\n IMPORTANT: The same issues {IERC20-approve} has related to transaction\n ordering also applies here.\n Emits an {Approval} event.\n Requirements:\n - `spender` cannot be the zero address.\n - `deadline` must be a timestamp in the future.\n - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n over the EIP712-formatted function arguments.\n - the signature must use ``owner``'s current nonce (see {nonces}).\n For more information on the signature format, see the\n https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n section].\n CAUTION: See Security Considerations above."},"functionSelector":"d505accf","id":8884,"implemented":false,"kind":"function","modifiers":[],"name":"permit","nameLocation":"3011:6:39","nodeType":"FunctionDefinition","parameters":{"id":8882,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8869,"mutability":"mutable","name":"owner","nameLocation":"3035:5:39","nodeType":"VariableDeclaration","scope":8884,"src":"3027:13:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8868,"name":"address","nodeType":"ElementaryTypeName","src":"3027:7:39","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8871,"mutability":"mutable","name":"spender","nameLocation":"3058:7:39","nodeType":"VariableDeclaration","scope":8884,"src":"3050:15:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8870,"name":"address","nodeType":"ElementaryTypeName","src":"3050:7:39","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8873,"mutability":"mutable","name":"value","nameLocation":"3083:5:39","nodeType":"VariableDeclaration","scope":8884,"src":"3075:13:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8872,"name":"uint256","nodeType":"ElementaryTypeName","src":"3075:7:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8875,"mutability":"mutable","name":"deadline","nameLocation":"3106:8:39","nodeType":"VariableDeclaration","scope":8884,"src":"3098:16:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8874,"name":"uint256","nodeType":"ElementaryTypeName","src":"3098:7:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8877,"mutability":"mutable","name":"v","nameLocation":"3130:1:39","nodeType":"VariableDeclaration","scope":8884,"src":"3124:7:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8876,"name":"uint8","nodeType":"ElementaryTypeName","src":"3124:5:39","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":8879,"mutability":"mutable","name":"r","nameLocation":"3149:1:39","nodeType":"VariableDeclaration","scope":8884,"src":"3141:9:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8878,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3141:7:39","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8881,"mutability":"mutable","name":"s","nameLocation":"3168:1:39","nodeType":"VariableDeclaration","scope":8884,"src":"3160:9:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8880,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3160:7:39","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3017:158:39"},"returnParameters":{"id":8883,"nodeType":"ParameterList","parameters":[],"src":"3184:0:39"},"scope":8899,"src":"3002:183:39","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":8885,"nodeType":"StructuredDocumentation","src":"3191:294:39","text":" @dev Returns the current nonce for `owner`. This value must be\n included whenever a signature is generated for {permit}.\n Every successful call to {permit} increases ``owner``'s nonce by one. This\n prevents a signature from being used multiple times."},"functionSelector":"7ecebe00","id":8892,"implemented":false,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"3499:6:39","nodeType":"FunctionDefinition","parameters":{"id":8888,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8887,"mutability":"mutable","name":"owner","nameLocation":"3514:5:39","nodeType":"VariableDeclaration","scope":8892,"src":"3506:13:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8886,"name":"address","nodeType":"ElementaryTypeName","src":"3506:7:39","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3505:15:39"},"returnParameters":{"id":8891,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8890,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8892,"src":"3544:7:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8889,"name":"uint256","nodeType":"ElementaryTypeName","src":"3544:7:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3543:9:39"},"scope":8899,"src":"3490:63:39","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":8893,"nodeType":"StructuredDocumentation","src":"3559:128:39","text":" @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}."},"functionSelector":"3644e515","id":8898,"implemented":false,"kind":"function","modifiers":[],"name":"DOMAIN_SEPARATOR","nameLocation":"3754:16:39","nodeType":"FunctionDefinition","parameters":{"id":8894,"nodeType":"ParameterList","parameters":[],"src":"3770:2:39"},"returnParameters":{"id":8897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8896,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8898,"src":"3796:7:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8895,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3796:7:39","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3795:9:39"},"scope":8899,"src":"3745:60:39","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":8900,"src":"2116:1691:39","usedErrors":[],"usedEvents":[]}],"src":"123:3685:39"},"id":39},"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","exportedSymbols":{"IERC1363":[6201],"IERC20":[7977],"SafeERC20":[9354]},"id":9355,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":8901,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"115:24:40"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":8903,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9355,"sourceUnit":7978,"src":"141:37:40","symbolAliases":[{"foreign":{"id":8902,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"149:6:40","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1363.sol","file":"../../../interfaces/IERC1363.sol","id":8905,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9355,"sourceUnit":6202,"src":"179:58:40","symbolAliases":[{"foreign":{"id":8904,"name":"IERC1363","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6201,"src":"187:8:40","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"SafeERC20","contractDependencies":[],"contractKind":"library","documentation":{"id":8906,"nodeType":"StructuredDocumentation","src":"239:458:40","text":" @title SafeERC20\n @dev Wrappers around ERC-20 operations that throw on failure (when the token\n contract returns false). Tokens that return no value (and instead revert or\n throw on failure) are also supported, non-reverting calls are assumed to be\n successful.\n To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\n which allows you to call the safe operations as `token.safeTransfer(...)`, etc."},"fullyImplemented":true,"id":9354,"linearizedBaseContracts":[9354],"name":"SafeERC20","nameLocation":"706:9:40","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":8907,"nodeType":"StructuredDocumentation","src":"722:65:40","text":" @dev An operation with an ERC-20 token failed."},"errorSelector":"5274afe7","id":8911,"name":"SafeERC20FailedOperation","nameLocation":"798:24:40","nodeType":"ErrorDefinition","parameters":{"id":8910,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8909,"mutability":"mutable","name":"token","nameLocation":"831:5:40","nodeType":"VariableDeclaration","scope":8911,"src":"823:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8908,"name":"address","nodeType":"ElementaryTypeName","src":"823:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"822:15:40"},"src":"792:46:40"},{"documentation":{"id":8912,"nodeType":"StructuredDocumentation","src":"844:71:40","text":" @dev Indicates a failed `decreaseAllowance` request."},"errorSelector":"e570110f","id":8920,"name":"SafeERC20FailedDecreaseAllowance","nameLocation":"926:32:40","nodeType":"ErrorDefinition","parameters":{"id":8919,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8914,"mutability":"mutable","name":"spender","nameLocation":"967:7:40","nodeType":"VariableDeclaration","scope":8920,"src":"959:15:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8913,"name":"address","nodeType":"ElementaryTypeName","src":"959:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8916,"mutability":"mutable","name":"currentAllowance","nameLocation":"984:16:40","nodeType":"VariableDeclaration","scope":8920,"src":"976:24:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8915,"name":"uint256","nodeType":"ElementaryTypeName","src":"976:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8918,"mutability":"mutable","name":"requestedDecrease","nameLocation":"1010:17:40","nodeType":"VariableDeclaration","scope":8920,"src":"1002:25:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8917,"name":"uint256","nodeType":"ElementaryTypeName","src":"1002:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"958:70:40"},"src":"920:109:40"},{"body":{"id":8947,"nodeType":"Block","src":"1291:132:40","statements":[{"condition":{"id":8937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1305:38:40","subExpression":{"arguments":[{"id":8932,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8924,"src":"1320:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},{"id":8933,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8926,"src":"1327:2:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8934,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8928,"src":"1331:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":8935,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1338:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":8931,"name":"_safeTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9305,"src":"1306:13:40","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_uint256_$_t_bool_$returns$_t_bool_$","typeString":"function (contract IERC20,address,uint256,bool) returns (bool)"}},"id":8936,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1306:37:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8946,"nodeType":"IfStatement","src":"1301:116:40","trueBody":{"id":8945,"nodeType":"Block","src":"1345:72:40","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":8941,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8924,"src":"1399:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}],"id":8940,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1391:7:40","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8939,"name":"address","nodeType":"ElementaryTypeName","src":"1391:7:40","typeDescriptions":{}}},"id":8942,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1391:14:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8938,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8911,"src":"1366:24:40","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":8943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1366:40:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8944,"nodeType":"RevertStatement","src":"1359:47:40"}]}}]},"documentation":{"id":8921,"nodeType":"StructuredDocumentation","src":"1035:179:40","text":" @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\n non-reverting calls are assumed to be successful."},"id":8948,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransfer","nameLocation":"1228:12:40","nodeType":"FunctionDefinition","parameters":{"id":8929,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8924,"mutability":"mutable","name":"token","nameLocation":"1248:5:40","nodeType":"VariableDeclaration","scope":8948,"src":"1241:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},"typeName":{"id":8923,"nodeType":"UserDefinedTypeName","pathNode":{"id":8922,"name":"IERC20","nameLocations":["1241:6:40"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"1241:6:40"},"referencedDeclaration":7977,"src":"1241:6:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":8926,"mutability":"mutable","name":"to","nameLocation":"1263:2:40","nodeType":"VariableDeclaration","scope":8948,"src":"1255:10:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8925,"name":"address","nodeType":"ElementaryTypeName","src":"1255:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8928,"mutability":"mutable","name":"value","nameLocation":"1275:5:40","nodeType":"VariableDeclaration","scope":8948,"src":"1267:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8927,"name":"uint256","nodeType":"ElementaryTypeName","src":"1267:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1240:41:40"},"returnParameters":{"id":8930,"nodeType":"ParameterList","parameters":[],"src":"1291:0:40"},"scope":9354,"src":"1219:204:40","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":8978,"nodeType":"Block","src":"1752:142:40","statements":[{"condition":{"id":8968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1766:48:40","subExpression":{"arguments":[{"id":8962,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8952,"src":"1785:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},{"id":8963,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8954,"src":"1792:4:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8964,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8956,"src":"1798:2:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8965,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8958,"src":"1802:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":8966,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1809:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":8961,"name":"_safeTransferFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9330,"src":"1767:17:40","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$_t_bool_$","typeString":"function (contract IERC20,address,address,uint256,bool) returns (bool)"}},"id":8967,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1767:47:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8977,"nodeType":"IfStatement","src":"1762:126:40","trueBody":{"id":8976,"nodeType":"Block","src":"1816:72:40","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":8972,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8952,"src":"1870:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}],"id":8971,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1862:7:40","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8970,"name":"address","nodeType":"ElementaryTypeName","src":"1862:7:40","typeDescriptions":{}}},"id":8973,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1862:14:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8969,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8911,"src":"1837:24:40","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":8974,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1837:40:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8975,"nodeType":"RevertStatement","src":"1830:47:40"}]}}]},"documentation":{"id":8949,"nodeType":"StructuredDocumentation","src":"1429:228:40","text":" @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\n calling contract. If `token` returns no value, non-reverting calls are assumed to be successful."},"id":8979,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"1671:16:40","nodeType":"FunctionDefinition","parameters":{"id":8959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8952,"mutability":"mutable","name":"token","nameLocation":"1695:5:40","nodeType":"VariableDeclaration","scope":8979,"src":"1688:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},"typeName":{"id":8951,"nodeType":"UserDefinedTypeName","pathNode":{"id":8950,"name":"IERC20","nameLocations":["1688:6:40"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"1688:6:40"},"referencedDeclaration":7977,"src":"1688:6:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":8954,"mutability":"mutable","name":"from","nameLocation":"1710:4:40","nodeType":"VariableDeclaration","scope":8979,"src":"1702:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8953,"name":"address","nodeType":"ElementaryTypeName","src":"1702:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8956,"mutability":"mutable","name":"to","nameLocation":"1724:2:40","nodeType":"VariableDeclaration","scope":8979,"src":"1716:10:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8955,"name":"address","nodeType":"ElementaryTypeName","src":"1716:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8958,"mutability":"mutable","name":"value","nameLocation":"1736:5:40","nodeType":"VariableDeclaration","scope":8979,"src":"1728:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8957,"name":"uint256","nodeType":"ElementaryTypeName","src":"1728:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1687:55:40"},"returnParameters":{"id":8960,"nodeType":"ParameterList","parameters":[],"src":"1752:0:40"},"scope":9354,"src":"1662:232:40","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":8999,"nodeType":"Block","src":"2121:62:40","statements":[{"expression":{"arguments":[{"id":8993,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8983,"src":"2152:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},{"id":8994,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8985,"src":"2159:2:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8995,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8987,"src":"2163:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":8996,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2170:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":8992,"name":"_safeTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9305,"src":"2138:13:40","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_uint256_$_t_bool_$returns$_t_bool_$","typeString":"function (contract IERC20,address,uint256,bool) returns (bool)"}},"id":8997,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2138:38:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":8991,"id":8998,"nodeType":"Return","src":"2131:45:40"}]},"documentation":{"id":8980,"nodeType":"StructuredDocumentation","src":"1900:126:40","text":" @dev Variant of {safeTransfer} that returns a bool instead of reverting if the operation is not successful."},"id":9000,"implemented":true,"kind":"function","modifiers":[],"name":"trySafeTransfer","nameLocation":"2040:15:40","nodeType":"FunctionDefinition","parameters":{"id":8988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8983,"mutability":"mutable","name":"token","nameLocation":"2063:5:40","nodeType":"VariableDeclaration","scope":9000,"src":"2056:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},"typeName":{"id":8982,"nodeType":"UserDefinedTypeName","pathNode":{"id":8981,"name":"IERC20","nameLocations":["2056:6:40"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"2056:6:40"},"referencedDeclaration":7977,"src":"2056:6:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":8985,"mutability":"mutable","name":"to","nameLocation":"2078:2:40","nodeType":"VariableDeclaration","scope":9000,"src":"2070:10:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8984,"name":"address","nodeType":"ElementaryTypeName","src":"2070:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8987,"mutability":"mutable","name":"value","nameLocation":"2090:5:40","nodeType":"VariableDeclaration","scope":9000,"src":"2082:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8986,"name":"uint256","nodeType":"ElementaryTypeName","src":"2082:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2055:41:40"},"returnParameters":{"id":8991,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8990,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9000,"src":"2115:4:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8989,"name":"bool","nodeType":"ElementaryTypeName","src":"2115:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2114:6:40"},"scope":9354,"src":"2031:152:40","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9023,"nodeType":"Block","src":"2432:72:40","statements":[{"expression":{"arguments":[{"id":9016,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9004,"src":"2467:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},{"id":9017,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9006,"src":"2474:4:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9018,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9008,"src":"2480:2:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9019,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9010,"src":"2484:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":9020,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2491:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":9015,"name":"_safeTransferFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9330,"src":"2449:17:40","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$_t_bool_$","typeString":"function (contract IERC20,address,address,uint256,bool) returns (bool)"}},"id":9021,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2449:48:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":9014,"id":9022,"nodeType":"Return","src":"2442:55:40"}]},"documentation":{"id":9001,"nodeType":"StructuredDocumentation","src":"2189:130:40","text":" @dev Variant of {safeTransferFrom} that returns a bool instead of reverting if the operation is not successful."},"id":9024,"implemented":true,"kind":"function","modifiers":[],"name":"trySafeTransferFrom","nameLocation":"2333:19:40","nodeType":"FunctionDefinition","parameters":{"id":9011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9004,"mutability":"mutable","name":"token","nameLocation":"2360:5:40","nodeType":"VariableDeclaration","scope":9024,"src":"2353:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},"typeName":{"id":9003,"nodeType":"UserDefinedTypeName","pathNode":{"id":9002,"name":"IERC20","nameLocations":["2353:6:40"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"2353:6:40"},"referencedDeclaration":7977,"src":"2353:6:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":9006,"mutability":"mutable","name":"from","nameLocation":"2375:4:40","nodeType":"VariableDeclaration","scope":9024,"src":"2367:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9005,"name":"address","nodeType":"ElementaryTypeName","src":"2367:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9008,"mutability":"mutable","name":"to","nameLocation":"2389:2:40","nodeType":"VariableDeclaration","scope":9024,"src":"2381:10:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9007,"name":"address","nodeType":"ElementaryTypeName","src":"2381:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9010,"mutability":"mutable","name":"value","nameLocation":"2401:5:40","nodeType":"VariableDeclaration","scope":9024,"src":"2393:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9009,"name":"uint256","nodeType":"ElementaryTypeName","src":"2393:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2352:55:40"},"returnParameters":{"id":9014,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9013,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9024,"src":"2426:4:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9012,"name":"bool","nodeType":"ElementaryTypeName","src":"2426:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2425:6:40"},"scope":9354,"src":"2324:180:40","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9054,"nodeType":"Block","src":"3246:139:40","statements":[{"assignments":[9036],"declarations":[{"constant":false,"id":9036,"mutability":"mutable","name":"oldAllowance","nameLocation":"3264:12:40","nodeType":"VariableDeclaration","scope":9054,"src":"3256:20:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9035,"name":"uint256","nodeType":"ElementaryTypeName","src":"3256:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9045,"initialValue":{"arguments":[{"arguments":[{"id":9041,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3303:4:40","typeDescriptions":{"typeIdentifier":"t_contract$_SafeERC20_$9354","typeString":"library SafeERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_SafeERC20_$9354","typeString":"library SafeERC20"}],"id":9040,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3295:7:40","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9039,"name":"address","nodeType":"ElementaryTypeName","src":"3295:7:40","typeDescriptions":{}}},"id":9042,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3295:13:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9043,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9030,"src":"3310:7:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":9037,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9028,"src":"3279:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"id":9038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3285:9:40","memberName":"allowance","nodeType":"MemberAccess","referencedDeclaration":7954,"src":"3279:15:40","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view external returns (uint256)"}},"id":9044,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3279:39:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3256:62:40"},{"expression":{"arguments":[{"id":9047,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9028,"src":"3341:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},{"id":9048,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9030,"src":"3348:7:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9051,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9049,"name":"oldAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9036,"src":"3357:12:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":9050,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9032,"src":"3372:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3357:20:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9046,"name":"forceApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9149,"src":"3328:12:40","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":9052,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3328:50:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9053,"nodeType":"ExpressionStatement","src":"3328:50:40"}]},"documentation":{"id":9025,"nodeType":"StructuredDocumentation","src":"2510:645:40","text":" @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n non-reverting calls are assumed to be successful.\n IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the \"client\"\n smart contract uses ERC-7674 to set temporary allowances, then the \"client\" smart contract should avoid using\n this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract\n that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior."},"id":9055,"implemented":true,"kind":"function","modifiers":[],"name":"safeIncreaseAllowance","nameLocation":"3169:21:40","nodeType":"FunctionDefinition","parameters":{"id":9033,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9028,"mutability":"mutable","name":"token","nameLocation":"3198:5:40","nodeType":"VariableDeclaration","scope":9055,"src":"3191:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},"typeName":{"id":9027,"nodeType":"UserDefinedTypeName","pathNode":{"id":9026,"name":"IERC20","nameLocations":["3191:6:40"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"3191:6:40"},"referencedDeclaration":7977,"src":"3191:6:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":9030,"mutability":"mutable","name":"spender","nameLocation":"3213:7:40","nodeType":"VariableDeclaration","scope":9055,"src":"3205:15:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9029,"name":"address","nodeType":"ElementaryTypeName","src":"3205:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9032,"mutability":"mutable","name":"value","nameLocation":"3230:5:40","nodeType":"VariableDeclaration","scope":9055,"src":"3222:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9031,"name":"uint256","nodeType":"ElementaryTypeName","src":"3222:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3190:46:40"},"returnParameters":{"id":9034,"nodeType":"ParameterList","parameters":[],"src":"3246:0:40"},"scope":9354,"src":"3160:225:40","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9097,"nodeType":"Block","src":"4151:370:40","statements":[{"id":9096,"nodeType":"UncheckedBlock","src":"4161:354:40","statements":[{"assignments":[9067],"declarations":[{"constant":false,"id":9067,"mutability":"mutable","name":"currentAllowance","nameLocation":"4193:16:40","nodeType":"VariableDeclaration","scope":9096,"src":"4185:24:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9066,"name":"uint256","nodeType":"ElementaryTypeName","src":"4185:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9076,"initialValue":{"arguments":[{"arguments":[{"id":9072,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4236:4:40","typeDescriptions":{"typeIdentifier":"t_contract$_SafeERC20_$9354","typeString":"library SafeERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_SafeERC20_$9354","typeString":"library SafeERC20"}],"id":9071,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4228:7:40","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9070,"name":"address","nodeType":"ElementaryTypeName","src":"4228:7:40","typeDescriptions":{}}},"id":9073,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4228:13:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9074,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9061,"src":"4243:7:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":9068,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9059,"src":"4212:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"id":9069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4218:9:40","memberName":"allowance","nodeType":"MemberAccess","referencedDeclaration":7954,"src":"4212:15:40","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view external returns (uint256)"}},"id":9075,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4212:39:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"4185:66:40"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9079,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9077,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9067,"src":"4269:16:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":9078,"name":"requestedDecrease","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9063,"src":"4288:17:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4269:36:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9087,"nodeType":"IfStatement","src":"4265:160:40","trueBody":{"id":9086,"nodeType":"Block","src":"4307:118:40","statements":[{"errorCall":{"arguments":[{"id":9081,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9061,"src":"4365:7:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9082,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9067,"src":"4374:16:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9083,"name":"requestedDecrease","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9063,"src":"4392:17:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9080,"name":"SafeERC20FailedDecreaseAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8920,"src":"4332:32:40","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":9084,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4332:78:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9085,"nodeType":"RevertStatement","src":"4325:85:40"}]}},{"expression":{"arguments":[{"id":9089,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9059,"src":"4451:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},{"id":9090,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9061,"src":"4458:7:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9091,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9067,"src":"4467:16:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":9092,"name":"requestedDecrease","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9063,"src":"4486:17:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4467:36:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9088,"name":"forceApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9149,"src":"4438:12:40","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":9094,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4438:66:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9095,"nodeType":"ExpressionStatement","src":"4438:66:40"}]}]},"documentation":{"id":9056,"nodeType":"StructuredDocumentation","src":"3391:657:40","text":" @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no\n value, non-reverting calls are assumed to be successful.\n IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the \"client\"\n smart contract uses ERC-7674 to set temporary allowances, then the \"client\" smart contract should avoid using\n this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract\n that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior."},"id":9098,"implemented":true,"kind":"function","modifiers":[],"name":"safeDecreaseAllowance","nameLocation":"4062:21:40","nodeType":"FunctionDefinition","parameters":{"id":9064,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9059,"mutability":"mutable","name":"token","nameLocation":"4091:5:40","nodeType":"VariableDeclaration","scope":9098,"src":"4084:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},"typeName":{"id":9058,"nodeType":"UserDefinedTypeName","pathNode":{"id":9057,"name":"IERC20","nameLocations":["4084:6:40"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"4084:6:40"},"referencedDeclaration":7977,"src":"4084:6:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":9061,"mutability":"mutable","name":"spender","nameLocation":"4106:7:40","nodeType":"VariableDeclaration","scope":9098,"src":"4098:15:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9060,"name":"address","nodeType":"ElementaryTypeName","src":"4098:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9063,"mutability":"mutable","name":"requestedDecrease","nameLocation":"4123:17:40","nodeType":"VariableDeclaration","scope":9098,"src":"4115:25:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9062,"name":"uint256","nodeType":"ElementaryTypeName","src":"4115:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4083:58:40"},"returnParameters":{"id":9065,"nodeType":"ParameterList","parameters":[],"src":"4151:0:40"},"scope":9354,"src":"4053:468:40","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9148,"nodeType":"Block","src":"5175:290:40","statements":[{"condition":{"id":9115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5189:43:40","subExpression":{"arguments":[{"id":9110,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9102,"src":"5203:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},{"id":9111,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9104,"src":"5210:7:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9112,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9106,"src":"5219:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":9113,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5226:5:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":9109,"name":"_safeApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9353,"src":"5190:12:40","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_uint256_$_t_bool_$returns$_t_bool_$","typeString":"function (contract IERC20,address,uint256,bool) returns (bool)"}},"id":9114,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5190:42:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9147,"nodeType":"IfStatement","src":"5185:274:40","trueBody":{"id":9146,"nodeType":"Block","src":"5234:225:40","statements":[{"condition":{"id":9122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5252:38:40","subExpression":{"arguments":[{"id":9117,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9102,"src":"5266:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},{"id":9118,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9104,"src":"5273:7:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":9119,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5282:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"74727565","id":9120,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5285:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":9116,"name":"_safeApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9353,"src":"5253:12:40","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_uint256_$_t_bool_$returns$_t_bool_$","typeString":"function (contract IERC20,address,uint256,bool) returns (bool)"}},"id":9121,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5253:37:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9130,"nodeType":"IfStatement","src":"5248:91:40","trueBody":{"errorCall":{"arguments":[{"arguments":[{"id":9126,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9102,"src":"5332:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}],"id":9125,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5324:7:40","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9124,"name":"address","nodeType":"ElementaryTypeName","src":"5324:7:40","typeDescriptions":{}}},"id":9127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5324:14:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9123,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8911,"src":"5299:24:40","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":9128,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5299:40:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9129,"nodeType":"RevertStatement","src":"5292:47:40"}},{"condition":{"id":9137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5357:42:40","subExpression":{"arguments":[{"id":9132,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9102,"src":"5371:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},{"id":9133,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9104,"src":"5378:7:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9134,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9106,"src":"5387:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":9135,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5394:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":9131,"name":"_safeApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9353,"src":"5358:12:40","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_uint256_$_t_bool_$returns$_t_bool_$","typeString":"function (contract IERC20,address,uint256,bool) returns (bool)"}},"id":9136,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5358:41:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9145,"nodeType":"IfStatement","src":"5353:95:40","trueBody":{"errorCall":{"arguments":[{"arguments":[{"id":9141,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9102,"src":"5441:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}],"id":9140,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5433:7:40","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9139,"name":"address","nodeType":"ElementaryTypeName","src":"5433:7:40","typeDescriptions":{}}},"id":9142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5433:14:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9138,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8911,"src":"5408:24:40","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":9143,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5408:40:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9144,"nodeType":"RevertStatement","src":"5401:47:40"}}]}}]},"documentation":{"id":9099,"nodeType":"StructuredDocumentation","src":"4527:566:40","text":" @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\n non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\n to be set to zero before setting it to a non-zero value, such as USDT.\n NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function\n only sets the \"standard\" allowance. Any temporary allowance will remain active, in addition to the value being\n set here."},"id":9149,"implemented":true,"kind":"function","modifiers":[],"name":"forceApprove","nameLocation":"5107:12:40","nodeType":"FunctionDefinition","parameters":{"id":9107,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9102,"mutability":"mutable","name":"token","nameLocation":"5127:5:40","nodeType":"VariableDeclaration","scope":9149,"src":"5120:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},"typeName":{"id":9101,"nodeType":"UserDefinedTypeName","pathNode":{"id":9100,"name":"IERC20","nameLocations":["5120:6:40"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"5120:6:40"},"referencedDeclaration":7977,"src":"5120:6:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":9104,"mutability":"mutable","name":"spender","nameLocation":"5142:7:40","nodeType":"VariableDeclaration","scope":9149,"src":"5134:15:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9103,"name":"address","nodeType":"ElementaryTypeName","src":"5134:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9106,"mutability":"mutable","name":"value","nameLocation":"5159:5:40","nodeType":"VariableDeclaration","scope":9149,"src":"5151:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9105,"name":"uint256","nodeType":"ElementaryTypeName","src":"5151:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5119:46:40"},"returnParameters":{"id":9108,"nodeType":"ParameterList","parameters":[],"src":"5175:0:40"},"scope":9354,"src":"5098:367:40","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9191,"nodeType":"Block","src":"5914:219:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9166,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":9162,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9155,"src":"5928:2:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5931:4:40","memberName":"code","nodeType":"MemberAccess","src":"5928:7:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5936:6:40","memberName":"length","nodeType":"MemberAccess","src":"5928:14:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9165,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5946:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5928:19:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":9180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6014:39:40","subExpression":{"arguments":[{"id":9176,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9155,"src":"6037:2:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9177,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9157,"src":"6041:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9178,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9159,"src":"6048:4:40","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"}],"expression":{"id":9174,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9153,"src":"6015:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"}},"id":9175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6021:15:40","memberName":"transferAndCall","nodeType":"MemberAccess","referencedDeclaration":6152,"src":"6015:21:40","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory) external returns (bool)"}},"id":9179,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6015:38:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9189,"nodeType":"IfStatement","src":"6010:117:40","trueBody":{"id":9188,"nodeType":"Block","src":"6055:72:40","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":9184,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9153,"src":"6109:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"}],"id":9183,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6101:7:40","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9182,"name":"address","nodeType":"ElementaryTypeName","src":"6101:7:40","typeDescriptions":{}}},"id":9185,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6101:14:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9181,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8911,"src":"6076:24:40","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":9186,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6076:40:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9187,"nodeType":"RevertStatement","src":"6069:47:40"}]}},"id":9190,"nodeType":"IfStatement","src":"5924:203:40","trueBody":{"id":9173,"nodeType":"Block","src":"5949:55:40","statements":[{"expression":{"arguments":[{"id":9168,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9153,"src":"5976:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"}},{"id":9169,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9155,"src":"5983:2:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9170,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9157,"src":"5987:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9167,"name":"safeTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8948,"src":"5963:12:40","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":9171,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5963:30:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9172,"nodeType":"ExpressionStatement","src":"5963:30:40"}]}}]},"documentation":{"id":9150,"nodeType":"StructuredDocumentation","src":"5471:335:40","text":" @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no\n code. This can be used to implement an {ERC721}-like safe transfer that relies on {ERC1363} checks when\n targeting contracts.\n Reverts if the returned value is other than `true`."},"id":9192,"implemented":true,"kind":"function","modifiers":[],"name":"transferAndCallRelaxed","nameLocation":"5820:22:40","nodeType":"FunctionDefinition","parameters":{"id":9160,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9153,"mutability":"mutable","name":"token","nameLocation":"5852:5:40","nodeType":"VariableDeclaration","scope":9192,"src":"5843:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"},"typeName":{"id":9152,"nodeType":"UserDefinedTypeName","pathNode":{"id":9151,"name":"IERC1363","nameLocations":["5843:8:40"],"nodeType":"IdentifierPath","referencedDeclaration":6201,"src":"5843:8:40"},"referencedDeclaration":6201,"src":"5843:8:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"}},"visibility":"internal"},{"constant":false,"id":9155,"mutability":"mutable","name":"to","nameLocation":"5867:2:40","nodeType":"VariableDeclaration","scope":9192,"src":"5859:10:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9154,"name":"address","nodeType":"ElementaryTypeName","src":"5859:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9157,"mutability":"mutable","name":"value","nameLocation":"5879:5:40","nodeType":"VariableDeclaration","scope":9192,"src":"5871:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9156,"name":"uint256","nodeType":"ElementaryTypeName","src":"5871:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9159,"mutability":"mutable","name":"data","nameLocation":"5899:4:40","nodeType":"VariableDeclaration","scope":9192,"src":"5886:17:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9158,"name":"bytes","nodeType":"ElementaryTypeName","src":"5886:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5842:62:40"},"returnParameters":{"id":9161,"nodeType":"ParameterList","parameters":[],"src":"5914:0:40"},"scope":9354,"src":"5811:322:40","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9238,"nodeType":"Block","src":"6654:239:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9211,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":9207,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9200,"src":"6668:2:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6671:4:40","memberName":"code","nodeType":"MemberAccess","src":"6668:7:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9209,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6676:6:40","memberName":"length","nodeType":"MemberAccess","src":"6668:14:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9210,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6686:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6668:19:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":9227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6764:49:40","subExpression":{"arguments":[{"id":9222,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9198,"src":"6791:4:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9223,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9200,"src":"6797:2:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9224,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9202,"src":"6801:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9225,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9204,"src":"6808:4:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9220,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9196,"src":"6765:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"}},"id":9221,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6771:19:40","memberName":"transferFromAndCall","nodeType":"MemberAccess","referencedDeclaration":6178,"src":"6765:25:40","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,address,uint256,bytes memory) external returns (bool)"}},"id":9226,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6765:48:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9236,"nodeType":"IfStatement","src":"6760:127:40","trueBody":{"id":9235,"nodeType":"Block","src":"6815:72:40","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":9231,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9196,"src":"6869:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"}],"id":9230,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6861:7:40","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9229,"name":"address","nodeType":"ElementaryTypeName","src":"6861:7:40","typeDescriptions":{}}},"id":9232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6861:14:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9228,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8911,"src":"6836:24:40","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":9233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6836:40:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9234,"nodeType":"RevertStatement","src":"6829:47:40"}]}},"id":9237,"nodeType":"IfStatement","src":"6664:223:40","trueBody":{"id":9219,"nodeType":"Block","src":"6689:65:40","statements":[{"expression":{"arguments":[{"id":9213,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9196,"src":"6720:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"}},{"id":9214,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9198,"src":"6727:4:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9215,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9200,"src":"6733:2:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9216,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9202,"src":"6737:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9212,"name":"safeTransferFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8979,"src":"6703:16:40","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":9217,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6703:40:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9218,"nodeType":"ExpressionStatement","src":"6703:40:40"}]}}]},"documentation":{"id":9193,"nodeType":"StructuredDocumentation","src":"6139:343:40","text":" @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target\n has no code. This can be used to implement an {ERC721}-like safe transfer that relies on {ERC1363} checks when\n targeting contracts.\n Reverts if the returned value is other than `true`."},"id":9239,"implemented":true,"kind":"function","modifiers":[],"name":"transferFromAndCallRelaxed","nameLocation":"6496:26:40","nodeType":"FunctionDefinition","parameters":{"id":9205,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9196,"mutability":"mutable","name":"token","nameLocation":"6541:5:40","nodeType":"VariableDeclaration","scope":9239,"src":"6532:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"},"typeName":{"id":9195,"nodeType":"UserDefinedTypeName","pathNode":{"id":9194,"name":"IERC1363","nameLocations":["6532:8:40"],"nodeType":"IdentifierPath","referencedDeclaration":6201,"src":"6532:8:40"},"referencedDeclaration":6201,"src":"6532:8:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"}},"visibility":"internal"},{"constant":false,"id":9198,"mutability":"mutable","name":"from","nameLocation":"6564:4:40","nodeType":"VariableDeclaration","scope":9239,"src":"6556:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9197,"name":"address","nodeType":"ElementaryTypeName","src":"6556:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9200,"mutability":"mutable","name":"to","nameLocation":"6586:2:40","nodeType":"VariableDeclaration","scope":9239,"src":"6578:10:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9199,"name":"address","nodeType":"ElementaryTypeName","src":"6578:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9202,"mutability":"mutable","name":"value","nameLocation":"6606:5:40","nodeType":"VariableDeclaration","scope":9239,"src":"6598:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9201,"name":"uint256","nodeType":"ElementaryTypeName","src":"6598:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9204,"mutability":"mutable","name":"data","nameLocation":"6634:4:40","nodeType":"VariableDeclaration","scope":9239,"src":"6621:17:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9203,"name":"bytes","nodeType":"ElementaryTypeName","src":"6621:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6522:122:40"},"returnParameters":{"id":9206,"nodeType":"ParameterList","parameters":[],"src":"6654:0:40"},"scope":9354,"src":"6487:406:40","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9281,"nodeType":"Block","src":"7661:218:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9256,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":9252,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9245,"src":"7675:2:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9253,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7678:4:40","memberName":"code","nodeType":"MemberAccess","src":"7675:7:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9254,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7683:6:40","memberName":"length","nodeType":"MemberAccess","src":"7675:14:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9255,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7693:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7675:19:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":9270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7761:38:40","subExpression":{"arguments":[{"id":9266,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9245,"src":"7783:2:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9267,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9247,"src":"7787:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9268,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9249,"src":"7794:4:40","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"}],"expression":{"id":9264,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9243,"src":"7762:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"}},"id":9265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7768:14:40","memberName":"approveAndCall","nodeType":"MemberAccess","referencedDeclaration":6200,"src":"7762:20:40","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory) external returns (bool)"}},"id":9269,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7762:37:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9279,"nodeType":"IfStatement","src":"7757:116:40","trueBody":{"id":9278,"nodeType":"Block","src":"7801:72:40","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":9274,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9243,"src":"7855:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"}],"id":9273,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7847:7:40","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9272,"name":"address","nodeType":"ElementaryTypeName","src":"7847:7:40","typeDescriptions":{}}},"id":9275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7847:14:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9271,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8911,"src":"7822:24:40","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":9276,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7822:40:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9277,"nodeType":"RevertStatement","src":"7815:47:40"}]}},"id":9280,"nodeType":"IfStatement","src":"7671:202:40","trueBody":{"id":9263,"nodeType":"Block","src":"7696:55:40","statements":[{"expression":{"arguments":[{"id":9258,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9243,"src":"7723:5:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"}},{"id":9259,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9245,"src":"7730:2:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9260,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9247,"src":"7734:5:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9257,"name":"forceApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9149,"src":"7710:12:40","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":9261,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7710:30:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9262,"nodeType":"ExpressionStatement","src":"7710:30:40"}]}}]},"documentation":{"id":9240,"nodeType":"StructuredDocumentation","src":"6899:655:40","text":" @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no\n code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when\n targeting contracts.\n NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.\n Oppositely, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}\n once without retrying, and relies on the returned value to be true.\n Reverts if the returned value is other than `true`."},"id":9282,"implemented":true,"kind":"function","modifiers":[],"name":"approveAndCallRelaxed","nameLocation":"7568:21:40","nodeType":"FunctionDefinition","parameters":{"id":9250,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9243,"mutability":"mutable","name":"token","nameLocation":"7599:5:40","nodeType":"VariableDeclaration","scope":9282,"src":"7590:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"},"typeName":{"id":9242,"nodeType":"UserDefinedTypeName","pathNode":{"id":9241,"name":"IERC1363","nameLocations":["7590:8:40"],"nodeType":"IdentifierPath","referencedDeclaration":6201,"src":"7590:8:40"},"referencedDeclaration":6201,"src":"7590:8:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$6201","typeString":"contract IERC1363"}},"visibility":"internal"},{"constant":false,"id":9245,"mutability":"mutable","name":"to","nameLocation":"7614:2:40","nodeType":"VariableDeclaration","scope":9282,"src":"7606:10:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9244,"name":"address","nodeType":"ElementaryTypeName","src":"7606:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9247,"mutability":"mutable","name":"value","nameLocation":"7626:5:40","nodeType":"VariableDeclaration","scope":9282,"src":"7618:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9246,"name":"uint256","nodeType":"ElementaryTypeName","src":"7618:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9249,"mutability":"mutable","name":"data","nameLocation":"7646:4:40","nodeType":"VariableDeclaration","scope":9282,"src":"7633:17:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9248,"name":"bytes","nodeType":"ElementaryTypeName","src":"7633:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7589:62:40"},"returnParameters":{"id":9251,"nodeType":"ParameterList","parameters":[],"src":"7661:0:40"},"scope":9354,"src":"7559:320:40","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9304,"nodeType":"Block","src":"8481:1136:40","statements":[{"assignments":[9298],"declarations":[{"constant":false,"id":9298,"mutability":"mutable","name":"selector","nameLocation":"8498:8:40","nodeType":"VariableDeclaration","scope":9304,"src":"8491:15:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9297,"name":"bytes4","nodeType":"ElementaryTypeName","src":"8491:6:40","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":9302,"initialValue":{"expression":{"expression":{"id":9299,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"8509:6:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$7977_$","typeString":"type(contract IERC20)"}},"id":9300,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8516:8:40","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":7944,"src":"8509:15:40","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function IERC20.transfer(address,uint256) returns (bool)"}},"id":9301,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8525:8:40","memberName":"selector","nodeType":"MemberAccess","src":"8509:24:40","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"8491:42:40"},{"AST":{"nativeSrc":"8569:1042:40","nodeType":"YulBlock","src":"8569:1042:40","statements":[{"nativeSrc":"8583:22:40","nodeType":"YulVariableDeclaration","src":"8583:22:40","value":{"arguments":[{"kind":"number","nativeSrc":"8600:4:40","nodeType":"YulLiteral","src":"8600:4:40","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"8594:5:40","nodeType":"YulIdentifier","src":"8594:5:40"},"nativeSrc":"8594:11:40","nodeType":"YulFunctionCall","src":"8594:11:40"},"variables":[{"name":"fmp","nativeSrc":"8587:3:40","nodeType":"YulTypedName","src":"8587:3:40","type":""}]},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8625:4:40","nodeType":"YulLiteral","src":"8625:4:40","type":"","value":"0x00"},{"name":"selector","nativeSrc":"8631:8:40","nodeType":"YulIdentifier","src":"8631:8:40"}],"functionName":{"name":"mstore","nativeSrc":"8618:6:40","nodeType":"YulIdentifier","src":"8618:6:40"},"nativeSrc":"8618:22:40","nodeType":"YulFunctionCall","src":"8618:22:40"},"nativeSrc":"8618:22:40","nodeType":"YulExpressionStatement","src":"8618:22:40"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8660:4:40","nodeType":"YulLiteral","src":"8660:4:40","type":"","value":"0x04"},{"arguments":[{"name":"to","nativeSrc":"8670:2:40","nodeType":"YulIdentifier","src":"8670:2:40"},{"arguments":[{"kind":"number","nativeSrc":"8678:2:40","nodeType":"YulLiteral","src":"8678:2:40","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"8686:1:40","nodeType":"YulLiteral","src":"8686:1:40","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"8682:3:40","nodeType":"YulIdentifier","src":"8682:3:40"},"nativeSrc":"8682:6:40","nodeType":"YulFunctionCall","src":"8682:6:40"}],"functionName":{"name":"shr","nativeSrc":"8674:3:40","nodeType":"YulIdentifier","src":"8674:3:40"},"nativeSrc":"8674:15:40","nodeType":"YulFunctionCall","src":"8674:15:40"}],"functionName":{"name":"and","nativeSrc":"8666:3:40","nodeType":"YulIdentifier","src":"8666:3:40"},"nativeSrc":"8666:24:40","nodeType":"YulFunctionCall","src":"8666:24:40"}],"functionName":{"name":"mstore","nativeSrc":"8653:6:40","nodeType":"YulIdentifier","src":"8653:6:40"},"nativeSrc":"8653:38:40","nodeType":"YulFunctionCall","src":"8653:38:40"},"nativeSrc":"8653:38:40","nodeType":"YulExpressionStatement","src":"8653:38:40"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8711:4:40","nodeType":"YulLiteral","src":"8711:4:40","type":"","value":"0x24"},{"name":"value","nativeSrc":"8717:5:40","nodeType":"YulIdentifier","src":"8717:5:40"}],"functionName":{"name":"mstore","nativeSrc":"8704:6:40","nodeType":"YulIdentifier","src":"8704:6:40"},"nativeSrc":"8704:19:40","nodeType":"YulFunctionCall","src":"8704:19:40"},"nativeSrc":"8704:19:40","nodeType":"YulExpressionStatement","src":"8704:19:40"},{"nativeSrc":"8736:56:40","nodeType":"YulAssignment","src":"8736:56:40","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"8752:3:40","nodeType":"YulIdentifier","src":"8752:3:40"},"nativeSrc":"8752:5:40","nodeType":"YulFunctionCall","src":"8752:5:40"},{"name":"token","nativeSrc":"8759:5:40","nodeType":"YulIdentifier","src":"8759:5:40"},{"kind":"number","nativeSrc":"8766:1:40","nodeType":"YulLiteral","src":"8766:1:40","type":"","value":"0"},{"kind":"number","nativeSrc":"8769:4:40","nodeType":"YulLiteral","src":"8769:4:40","type":"","value":"0x00"},{"kind":"number","nativeSrc":"8775:4:40","nodeType":"YulLiteral","src":"8775:4:40","type":"","value":"0x44"},{"kind":"number","nativeSrc":"8781:4:40","nodeType":"YulLiteral","src":"8781:4:40","type":"","value":"0x00"},{"kind":"number","nativeSrc":"8787:4:40","nodeType":"YulLiteral","src":"8787:4:40","type":"","value":"0x20"}],"functionName":{"name":"call","nativeSrc":"8747:4:40","nodeType":"YulIdentifier","src":"8747:4:40"},"nativeSrc":"8747:45:40","nodeType":"YulFunctionCall","src":"8747:45:40"},"variableNames":[{"name":"success","nativeSrc":"8736:7:40","nodeType":"YulIdentifier","src":"8736:7:40"}]},{"body":{"nativeSrc":"9009:562:40","nodeType":"YulBlock","src":"9009:562:40","statements":[{"body":{"nativeSrc":"9144:133:40","nodeType":"YulBlock","src":"9144:133:40","statements":[{"expression":{"arguments":[{"name":"fmp","nativeSrc":"9181:3:40","nodeType":"YulIdentifier","src":"9181:3:40"},{"kind":"number","nativeSrc":"9186:4:40","nodeType":"YulLiteral","src":"9186:4:40","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"9192:14:40","nodeType":"YulIdentifier","src":"9192:14:40"},"nativeSrc":"9192:16:40","nodeType":"YulFunctionCall","src":"9192:16:40"}],"functionName":{"name":"returndatacopy","nativeSrc":"9166:14:40","nodeType":"YulIdentifier","src":"9166:14:40"},"nativeSrc":"9166:43:40","nodeType":"YulFunctionCall","src":"9166:43:40"},"nativeSrc":"9166:43:40","nodeType":"YulExpressionStatement","src":"9166:43:40"},{"expression":{"arguments":[{"name":"fmp","nativeSrc":"9237:3:40","nodeType":"YulIdentifier","src":"9237:3:40"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"9242:14:40","nodeType":"YulIdentifier","src":"9242:14:40"},"nativeSrc":"9242:16:40","nodeType":"YulFunctionCall","src":"9242:16:40"}],"functionName":{"name":"revert","nativeSrc":"9230:6:40","nodeType":"YulIdentifier","src":"9230:6:40"},"nativeSrc":"9230:29:40","nodeType":"YulFunctionCall","src":"9230:29:40"},"nativeSrc":"9230:29:40","nodeType":"YulExpressionStatement","src":"9230:29:40"}]},"condition":{"arguments":[{"arguments":[{"name":"success","nativeSrc":"9126:7:40","nodeType":"YulIdentifier","src":"9126:7:40"}],"functionName":{"name":"iszero","nativeSrc":"9119:6:40","nodeType":"YulIdentifier","src":"9119:6:40"},"nativeSrc":"9119:15:40","nodeType":"YulFunctionCall","src":"9119:15:40"},{"name":"bubble","nativeSrc":"9136:6:40","nodeType":"YulIdentifier","src":"9136:6:40"}],"functionName":{"name":"and","nativeSrc":"9115:3:40","nodeType":"YulIdentifier","src":"9115:3:40"},"nativeSrc":"9115:28:40","nodeType":"YulFunctionCall","src":"9115:28:40"},"nativeSrc":"9112:165:40","nodeType":"YulIf","src":"9112:165:40"},{"nativeSrc":"9476:81:40","nodeType":"YulAssignment","src":"9476:81:40","value":{"arguments":[{"name":"success","nativeSrc":"9491:7:40","nodeType":"YulIdentifier","src":"9491:7:40"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"9511:14:40","nodeType":"YulIdentifier","src":"9511:14:40"},"nativeSrc":"9511:16:40","nodeType":"YulFunctionCall","src":"9511:16:40"}],"functionName":{"name":"iszero","nativeSrc":"9504:6:40","nodeType":"YulIdentifier","src":"9504:6:40"},"nativeSrc":"9504:24:40","nodeType":"YulFunctionCall","src":"9504:24:40"},{"arguments":[{"arguments":[{"name":"token","nativeSrc":"9545:5:40","nodeType":"YulIdentifier","src":"9545:5:40"}],"functionName":{"name":"extcodesize","nativeSrc":"9533:11:40","nodeType":"YulIdentifier","src":"9533:11:40"},"nativeSrc":"9533:18:40","nodeType":"YulFunctionCall","src":"9533:18:40"},{"kind":"number","nativeSrc":"9553:1:40","nodeType":"YulLiteral","src":"9553:1:40","type":"","value":"0"}],"functionName":{"name":"gt","nativeSrc":"9530:2:40","nodeType":"YulIdentifier","src":"9530:2:40"},"nativeSrc":"9530:25:40","nodeType":"YulFunctionCall","src":"9530:25:40"}],"functionName":{"name":"and","nativeSrc":"9500:3:40","nodeType":"YulIdentifier","src":"9500:3:40"},"nativeSrc":"9500:56:40","nodeType":"YulFunctionCall","src":"9500:56:40"}],"functionName":{"name":"and","nativeSrc":"9487:3:40","nodeType":"YulIdentifier","src":"9487:3:40"},"nativeSrc":"9487:70:40","nodeType":"YulFunctionCall","src":"9487:70:40"},"variableNames":[{"name":"success","nativeSrc":"9476:7:40","nodeType":"YulIdentifier","src":"9476:7:40"}]}]},"condition":{"arguments":[{"arguments":[{"name":"success","nativeSrc":"8979:7:40","nodeType":"YulIdentifier","src":"8979:7:40"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"8997:4:40","nodeType":"YulLiteral","src":"8997:4:40","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"8991:5:40","nodeType":"YulIdentifier","src":"8991:5:40"},"nativeSrc":"8991:11:40","nodeType":"YulFunctionCall","src":"8991:11:40"},{"kind":"number","nativeSrc":"9004:1:40","nodeType":"YulLiteral","src":"9004:1:40","type":"","value":"1"}],"functionName":{"name":"eq","nativeSrc":"8988:2:40","nodeType":"YulIdentifier","src":"8988:2:40"},"nativeSrc":"8988:18:40","nodeType":"YulFunctionCall","src":"8988:18:40"}],"functionName":{"name":"and","nativeSrc":"8975:3:40","nodeType":"YulIdentifier","src":"8975:3:40"},"nativeSrc":"8975:32:40","nodeType":"YulFunctionCall","src":"8975:32:40"}],"functionName":{"name":"iszero","nativeSrc":"8968:6:40","nodeType":"YulIdentifier","src":"8968:6:40"},"nativeSrc":"8968:40:40","nodeType":"YulFunctionCall","src":"8968:40:40"},"nativeSrc":"8965:606:40","nodeType":"YulIf","src":"8965:606:40"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9591:4:40","nodeType":"YulLiteral","src":"9591:4:40","type":"","value":"0x40"},{"name":"fmp","nativeSrc":"9597:3:40","nodeType":"YulIdentifier","src":"9597:3:40"}],"functionName":{"name":"mstore","nativeSrc":"9584:6:40","nodeType":"YulIdentifier","src":"9584:6:40"},"nativeSrc":"9584:17:40","nodeType":"YulFunctionCall","src":"9584:17:40"},"nativeSrc":"9584:17:40","nodeType":"YulExpressionStatement","src":"9584:17:40"}]},"evmVersion":"prague","externalReferences":[{"declaration":9292,"isOffset":false,"isSlot":false,"src":"9136:6:40","valueSize":1},{"declaration":9298,"isOffset":false,"isSlot":false,"src":"8631:8:40","valueSize":1},{"declaration":9295,"isOffset":false,"isSlot":false,"src":"8736:7:40","valueSize":1},{"declaration":9295,"isOffset":false,"isSlot":false,"src":"8979:7:40","valueSize":1},{"declaration":9295,"isOffset":false,"isSlot":false,"src":"9126:7:40","valueSize":1},{"declaration":9295,"isOffset":false,"isSlot":false,"src":"9476:7:40","valueSize":1},{"declaration":9295,"isOffset":false,"isSlot":false,"src":"9491:7:40","valueSize":1},{"declaration":9288,"isOffset":false,"isSlot":false,"src":"8670:2:40","valueSize":1},{"declaration":9286,"isOffset":false,"isSlot":false,"src":"8759:5:40","valueSize":1},{"declaration":9286,"isOffset":false,"isSlot":false,"src":"9545:5:40","valueSize":1},{"declaration":9290,"isOffset":false,"isSlot":false,"src":"8717:5:40","valueSize":1}],"flags":["memory-safe"],"id":9303,"nodeType":"InlineAssembly","src":"8544:1067:40"}]},"documentation":{"id":9283,"nodeType":"StructuredDocumentation","src":"7885:483:40","text":" @dev Imitates a Solidity `token.transfer(to, value)` call, relaxing the requirement on the return value: the\n return value is optional (but if data is returned, it must not be false).\n @param token The token targeted by the call.\n @param to The recipient of the tokens\n @param value The amount of token to transfer\n @param bubble Behavior switch if the transfer call reverts: bubble the revert reason or return a false boolean."},"id":9305,"implemented":true,"kind":"function","modifiers":[],"name":"_safeTransfer","nameLocation":"8382:13:40","nodeType":"FunctionDefinition","parameters":{"id":9293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9286,"mutability":"mutable","name":"token","nameLocation":"8403:5:40","nodeType":"VariableDeclaration","scope":9305,"src":"8396:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},"typeName":{"id":9285,"nodeType":"UserDefinedTypeName","pathNode":{"id":9284,"name":"IERC20","nameLocations":["8396:6:40"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"8396:6:40"},"referencedDeclaration":7977,"src":"8396:6:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":9288,"mutability":"mutable","name":"to","nameLocation":"8418:2:40","nodeType":"VariableDeclaration","scope":9305,"src":"8410:10:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9287,"name":"address","nodeType":"ElementaryTypeName","src":"8410:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9290,"mutability":"mutable","name":"value","nameLocation":"8430:5:40","nodeType":"VariableDeclaration","scope":9305,"src":"8422:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9289,"name":"uint256","nodeType":"ElementaryTypeName","src":"8422:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9292,"mutability":"mutable","name":"bubble","nameLocation":"8442:6:40","nodeType":"VariableDeclaration","scope":9305,"src":"8437:11:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9291,"name":"bool","nodeType":"ElementaryTypeName","src":"8437:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8395:54:40"},"returnParameters":{"id":9296,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9295,"mutability":"mutable","name":"success","nameLocation":"8472:7:40","nodeType":"VariableDeclaration","scope":9305,"src":"8467:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9294,"name":"bool","nodeType":"ElementaryTypeName","src":"8467:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8466:14:40"},"scope":9354,"src":"8373:1244:40","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":9329,"nodeType":"Block","src":"10337:1221:40","statements":[{"assignments":[9323],"declarations":[{"constant":false,"id":9323,"mutability":"mutable","name":"selector","nameLocation":"10354:8:40","nodeType":"VariableDeclaration","scope":9329,"src":"10347:15:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9322,"name":"bytes4","nodeType":"ElementaryTypeName","src":"10347:6:40","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":9327,"initialValue":{"expression":{"expression":{"id":9324,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"10365:6:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$7977_$","typeString":"type(contract IERC20)"}},"id":9325,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10372:12:40","memberName":"transferFrom","nodeType":"MemberAccess","referencedDeclaration":7976,"src":"10365:19:40","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function IERC20.transferFrom(address,address,uint256) returns (bool)"}},"id":9326,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10385:8:40","memberName":"selector","nodeType":"MemberAccess","src":"10365:28:40","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"10347:46:40"},{"AST":{"nativeSrc":"10429:1123:40","nodeType":"YulBlock","src":"10429:1123:40","statements":[{"nativeSrc":"10443:22:40","nodeType":"YulVariableDeclaration","src":"10443:22:40","value":{"arguments":[{"kind":"number","nativeSrc":"10460:4:40","nodeType":"YulLiteral","src":"10460:4:40","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"10454:5:40","nodeType":"YulIdentifier","src":"10454:5:40"},"nativeSrc":"10454:11:40","nodeType":"YulFunctionCall","src":"10454:11:40"},"variables":[{"name":"fmp","nativeSrc":"10447:3:40","nodeType":"YulTypedName","src":"10447:3:40","type":""}]},{"expression":{"arguments":[{"kind":"number","nativeSrc":"10485:4:40","nodeType":"YulLiteral","src":"10485:4:40","type":"","value":"0x00"},{"name":"selector","nativeSrc":"10491:8:40","nodeType":"YulIdentifier","src":"10491:8:40"}],"functionName":{"name":"mstore","nativeSrc":"10478:6:40","nodeType":"YulIdentifier","src":"10478:6:40"},"nativeSrc":"10478:22:40","nodeType":"YulFunctionCall","src":"10478:22:40"},"nativeSrc":"10478:22:40","nodeType":"YulExpressionStatement","src":"10478:22:40"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"10520:4:40","nodeType":"YulLiteral","src":"10520:4:40","type":"","value":"0x04"},{"arguments":[{"name":"from","nativeSrc":"10530:4:40","nodeType":"YulIdentifier","src":"10530:4:40"},{"arguments":[{"kind":"number","nativeSrc":"10540:2:40","nodeType":"YulLiteral","src":"10540:2:40","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"10548:1:40","nodeType":"YulLiteral","src":"10548:1:40","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10544:3:40","nodeType":"YulIdentifier","src":"10544:3:40"},"nativeSrc":"10544:6:40","nodeType":"YulFunctionCall","src":"10544:6:40"}],"functionName":{"name":"shr","nativeSrc":"10536:3:40","nodeType":"YulIdentifier","src":"10536:3:40"},"nativeSrc":"10536:15:40","nodeType":"YulFunctionCall","src":"10536:15:40"}],"functionName":{"name":"and","nativeSrc":"10526:3:40","nodeType":"YulIdentifier","src":"10526:3:40"},"nativeSrc":"10526:26:40","nodeType":"YulFunctionCall","src":"10526:26:40"}],"functionName":{"name":"mstore","nativeSrc":"10513:6:40","nodeType":"YulIdentifier","src":"10513:6:40"},"nativeSrc":"10513:40:40","nodeType":"YulFunctionCall","src":"10513:40:40"},"nativeSrc":"10513:40:40","nodeType":"YulExpressionStatement","src":"10513:40:40"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"10573:4:40","nodeType":"YulLiteral","src":"10573:4:40","type":"","value":"0x24"},{"arguments":[{"name":"to","nativeSrc":"10583:2:40","nodeType":"YulIdentifier","src":"10583:2:40"},{"arguments":[{"kind":"number","nativeSrc":"10591:2:40","nodeType":"YulLiteral","src":"10591:2:40","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"10599:1:40","nodeType":"YulLiteral","src":"10599:1:40","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10595:3:40","nodeType":"YulIdentifier","src":"10595:3:40"},"nativeSrc":"10595:6:40","nodeType":"YulFunctionCall","src":"10595:6:40"}],"functionName":{"name":"shr","nativeSrc":"10587:3:40","nodeType":"YulIdentifier","src":"10587:3:40"},"nativeSrc":"10587:15:40","nodeType":"YulFunctionCall","src":"10587:15:40"}],"functionName":{"name":"and","nativeSrc":"10579:3:40","nodeType":"YulIdentifier","src":"10579:3:40"},"nativeSrc":"10579:24:40","nodeType":"YulFunctionCall","src":"10579:24:40"}],"functionName":{"name":"mstore","nativeSrc":"10566:6:40","nodeType":"YulIdentifier","src":"10566:6:40"},"nativeSrc":"10566:38:40","nodeType":"YulFunctionCall","src":"10566:38:40"},"nativeSrc":"10566:38:40","nodeType":"YulExpressionStatement","src":"10566:38:40"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"10624:4:40","nodeType":"YulLiteral","src":"10624:4:40","type":"","value":"0x44"},{"name":"value","nativeSrc":"10630:5:40","nodeType":"YulIdentifier","src":"10630:5:40"}],"functionName":{"name":"mstore","nativeSrc":"10617:6:40","nodeType":"YulIdentifier","src":"10617:6:40"},"nativeSrc":"10617:19:40","nodeType":"YulFunctionCall","src":"10617:19:40"},"nativeSrc":"10617:19:40","nodeType":"YulExpressionStatement","src":"10617:19:40"},{"nativeSrc":"10649:56:40","nodeType":"YulAssignment","src":"10649:56:40","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"10665:3:40","nodeType":"YulIdentifier","src":"10665:3:40"},"nativeSrc":"10665:5:40","nodeType":"YulFunctionCall","src":"10665:5:40"},{"name":"token","nativeSrc":"10672:5:40","nodeType":"YulIdentifier","src":"10672:5:40"},{"kind":"number","nativeSrc":"10679:1:40","nodeType":"YulLiteral","src":"10679:1:40","type":"","value":"0"},{"kind":"number","nativeSrc":"10682:4:40","nodeType":"YulLiteral","src":"10682:4:40","type":"","value":"0x00"},{"kind":"number","nativeSrc":"10688:4:40","nodeType":"YulLiteral","src":"10688:4:40","type":"","value":"0x64"},{"kind":"number","nativeSrc":"10694:4:40","nodeType":"YulLiteral","src":"10694:4:40","type":"","value":"0x00"},{"kind":"number","nativeSrc":"10700:4:40","nodeType":"YulLiteral","src":"10700:4:40","type":"","value":"0x20"}],"functionName":{"name":"call","nativeSrc":"10660:4:40","nodeType":"YulIdentifier","src":"10660:4:40"},"nativeSrc":"10660:45:40","nodeType":"YulFunctionCall","src":"10660:45:40"},"variableNames":[{"name":"success","nativeSrc":"10649:7:40","nodeType":"YulIdentifier","src":"10649:7:40"}]},{"body":{"nativeSrc":"10922:562:40","nodeType":"YulBlock","src":"10922:562:40","statements":[{"body":{"nativeSrc":"11057:133:40","nodeType":"YulBlock","src":"11057:133:40","statements":[{"expression":{"arguments":[{"name":"fmp","nativeSrc":"11094:3:40","nodeType":"YulIdentifier","src":"11094:3:40"},{"kind":"number","nativeSrc":"11099:4:40","nodeType":"YulLiteral","src":"11099:4:40","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"11105:14:40","nodeType":"YulIdentifier","src":"11105:14:40"},"nativeSrc":"11105:16:40","nodeType":"YulFunctionCall","src":"11105:16:40"}],"functionName":{"name":"returndatacopy","nativeSrc":"11079:14:40","nodeType":"YulIdentifier","src":"11079:14:40"},"nativeSrc":"11079:43:40","nodeType":"YulFunctionCall","src":"11079:43:40"},"nativeSrc":"11079:43:40","nodeType":"YulExpressionStatement","src":"11079:43:40"},{"expression":{"arguments":[{"name":"fmp","nativeSrc":"11150:3:40","nodeType":"YulIdentifier","src":"11150:3:40"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"11155:14:40","nodeType":"YulIdentifier","src":"11155:14:40"},"nativeSrc":"11155:16:40","nodeType":"YulFunctionCall","src":"11155:16:40"}],"functionName":{"name":"revert","nativeSrc":"11143:6:40","nodeType":"YulIdentifier","src":"11143:6:40"},"nativeSrc":"11143:29:40","nodeType":"YulFunctionCall","src":"11143:29:40"},"nativeSrc":"11143:29:40","nodeType":"YulExpressionStatement","src":"11143:29:40"}]},"condition":{"arguments":[{"arguments":[{"name":"success","nativeSrc":"11039:7:40","nodeType":"YulIdentifier","src":"11039:7:40"}],"functionName":{"name":"iszero","nativeSrc":"11032:6:40","nodeType":"YulIdentifier","src":"11032:6:40"},"nativeSrc":"11032:15:40","nodeType":"YulFunctionCall","src":"11032:15:40"},{"name":"bubble","nativeSrc":"11049:6:40","nodeType":"YulIdentifier","src":"11049:6:40"}],"functionName":{"name":"and","nativeSrc":"11028:3:40","nodeType":"YulIdentifier","src":"11028:3:40"},"nativeSrc":"11028:28:40","nodeType":"YulFunctionCall","src":"11028:28:40"},"nativeSrc":"11025:165:40","nodeType":"YulIf","src":"11025:165:40"},{"nativeSrc":"11389:81:40","nodeType":"YulAssignment","src":"11389:81:40","value":{"arguments":[{"name":"success","nativeSrc":"11404:7:40","nodeType":"YulIdentifier","src":"11404:7:40"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"11424:14:40","nodeType":"YulIdentifier","src":"11424:14:40"},"nativeSrc":"11424:16:40","nodeType":"YulFunctionCall","src":"11424:16:40"}],"functionName":{"name":"iszero","nativeSrc":"11417:6:40","nodeType":"YulIdentifier","src":"11417:6:40"},"nativeSrc":"11417:24:40","nodeType":"YulFunctionCall","src":"11417:24:40"},{"arguments":[{"arguments":[{"name":"token","nativeSrc":"11458:5:40","nodeType":"YulIdentifier","src":"11458:5:40"}],"functionName":{"name":"extcodesize","nativeSrc":"11446:11:40","nodeType":"YulIdentifier","src":"11446:11:40"},"nativeSrc":"11446:18:40","nodeType":"YulFunctionCall","src":"11446:18:40"},{"kind":"number","nativeSrc":"11466:1:40","nodeType":"YulLiteral","src":"11466:1:40","type":"","value":"0"}],"functionName":{"name":"gt","nativeSrc":"11443:2:40","nodeType":"YulIdentifier","src":"11443:2:40"},"nativeSrc":"11443:25:40","nodeType":"YulFunctionCall","src":"11443:25:40"}],"functionName":{"name":"and","nativeSrc":"11413:3:40","nodeType":"YulIdentifier","src":"11413:3:40"},"nativeSrc":"11413:56:40","nodeType":"YulFunctionCall","src":"11413:56:40"}],"functionName":{"name":"and","nativeSrc":"11400:3:40","nodeType":"YulIdentifier","src":"11400:3:40"},"nativeSrc":"11400:70:40","nodeType":"YulFunctionCall","src":"11400:70:40"},"variableNames":[{"name":"success","nativeSrc":"11389:7:40","nodeType":"YulIdentifier","src":"11389:7:40"}]}]},"condition":{"arguments":[{"arguments":[{"name":"success","nativeSrc":"10892:7:40","nodeType":"YulIdentifier","src":"10892:7:40"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"10910:4:40","nodeType":"YulLiteral","src":"10910:4:40","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"10904:5:40","nodeType":"YulIdentifier","src":"10904:5:40"},"nativeSrc":"10904:11:40","nodeType":"YulFunctionCall","src":"10904:11:40"},{"kind":"number","nativeSrc":"10917:1:40","nodeType":"YulLiteral","src":"10917:1:40","type":"","value":"1"}],"functionName":{"name":"eq","nativeSrc":"10901:2:40","nodeType":"YulIdentifier","src":"10901:2:40"},"nativeSrc":"10901:18:40","nodeType":"YulFunctionCall","src":"10901:18:40"}],"functionName":{"name":"and","nativeSrc":"10888:3:40","nodeType":"YulIdentifier","src":"10888:3:40"},"nativeSrc":"10888:32:40","nodeType":"YulFunctionCall","src":"10888:32:40"}],"functionName":{"name":"iszero","nativeSrc":"10881:6:40","nodeType":"YulIdentifier","src":"10881:6:40"},"nativeSrc":"10881:40:40","nodeType":"YulFunctionCall","src":"10881:40:40"},"nativeSrc":"10878:606:40","nodeType":"YulIf","src":"10878:606:40"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11504:4:40","nodeType":"YulLiteral","src":"11504:4:40","type":"","value":"0x40"},{"name":"fmp","nativeSrc":"11510:3:40","nodeType":"YulIdentifier","src":"11510:3:40"}],"functionName":{"name":"mstore","nativeSrc":"11497:6:40","nodeType":"YulIdentifier","src":"11497:6:40"},"nativeSrc":"11497:17:40","nodeType":"YulFunctionCall","src":"11497:17:40"},"nativeSrc":"11497:17:40","nodeType":"YulExpressionStatement","src":"11497:17:40"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11534:4:40","nodeType":"YulLiteral","src":"11534:4:40","type":"","value":"0x60"},{"kind":"number","nativeSrc":"11540:1:40","nodeType":"YulLiteral","src":"11540:1:40","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"11527:6:40","nodeType":"YulIdentifier","src":"11527:6:40"},"nativeSrc":"11527:15:40","nodeType":"YulFunctionCall","src":"11527:15:40"},"nativeSrc":"11527:15:40","nodeType":"YulExpressionStatement","src":"11527:15:40"}]},"evmVersion":"prague","externalReferences":[{"declaration":9317,"isOffset":false,"isSlot":false,"src":"11049:6:40","valueSize":1},{"declaration":9311,"isOffset":false,"isSlot":false,"src":"10530:4:40","valueSize":1},{"declaration":9323,"isOffset":false,"isSlot":false,"src":"10491:8:40","valueSize":1},{"declaration":9320,"isOffset":false,"isSlot":false,"src":"10649:7:40","valueSize":1},{"declaration":9320,"isOffset":false,"isSlot":false,"src":"10892:7:40","valueSize":1},{"declaration":9320,"isOffset":false,"isSlot":false,"src":"11039:7:40","valueSize":1},{"declaration":9320,"isOffset":false,"isSlot":false,"src":"11389:7:40","valueSize":1},{"declaration":9320,"isOffset":false,"isSlot":false,"src":"11404:7:40","valueSize":1},{"declaration":9313,"isOffset":false,"isSlot":false,"src":"10583:2:40","valueSize":1},{"declaration":9309,"isOffset":false,"isSlot":false,"src":"10672:5:40","valueSize":1},{"declaration":9309,"isOffset":false,"isSlot":false,"src":"11458:5:40","valueSize":1},{"declaration":9315,"isOffset":false,"isSlot":false,"src":"10630:5:40","valueSize":1}],"flags":["memory-safe"],"id":9328,"nodeType":"InlineAssembly","src":"10404:1148:40"}]},"documentation":{"id":9306,"nodeType":"StructuredDocumentation","src":"9623:537:40","text":" @dev Imitates a Solidity `token.transferFrom(from, to, value)` call, relaxing the requirement on the return\n value: the return value is optional (but if data is returned, it must not be false).\n @param token The token targeted by the call.\n @param from The sender of the tokens\n @param to The recipient of the tokens\n @param value The amount of token to transfer\n @param bubble Behavior switch if the transfer call reverts: bubble the revert reason or return a false boolean."},"id":9330,"implemented":true,"kind":"function","modifiers":[],"name":"_safeTransferFrom","nameLocation":"10174:17:40","nodeType":"FunctionDefinition","parameters":{"id":9318,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9309,"mutability":"mutable","name":"token","nameLocation":"10208:5:40","nodeType":"VariableDeclaration","scope":9330,"src":"10201:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},"typeName":{"id":9308,"nodeType":"UserDefinedTypeName","pathNode":{"id":9307,"name":"IERC20","nameLocations":["10201:6:40"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"10201:6:40"},"referencedDeclaration":7977,"src":"10201:6:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":9311,"mutability":"mutable","name":"from","nameLocation":"10231:4:40","nodeType":"VariableDeclaration","scope":9330,"src":"10223:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9310,"name":"address","nodeType":"ElementaryTypeName","src":"10223:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9313,"mutability":"mutable","name":"to","nameLocation":"10253:2:40","nodeType":"VariableDeclaration","scope":9330,"src":"10245:10:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9312,"name":"address","nodeType":"ElementaryTypeName","src":"10245:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9315,"mutability":"mutable","name":"value","nameLocation":"10273:5:40","nodeType":"VariableDeclaration","scope":9330,"src":"10265:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9314,"name":"uint256","nodeType":"ElementaryTypeName","src":"10265:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9317,"mutability":"mutable","name":"bubble","nameLocation":"10293:6:40","nodeType":"VariableDeclaration","scope":9330,"src":"10288:11:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9316,"name":"bool","nodeType":"ElementaryTypeName","src":"10288:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10191:114:40"},"returnParameters":{"id":9321,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9320,"mutability":"mutable","name":"success","nameLocation":"10328:7:40","nodeType":"VariableDeclaration","scope":9330,"src":"10323:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9319,"name":"bool","nodeType":"ElementaryTypeName","src":"10323:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10322:14:40"},"scope":9354,"src":"10165:1393:40","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":9352,"nodeType":"Block","src":"12171:1140:40","statements":[{"assignments":[9346],"declarations":[{"constant":false,"id":9346,"mutability":"mutable","name":"selector","nameLocation":"12188:8:40","nodeType":"VariableDeclaration","scope":9352,"src":"12181:15:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9345,"name":"bytes4","nodeType":"ElementaryTypeName","src":"12181:6:40","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":9350,"initialValue":{"expression":{"expression":{"id":9347,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"12199:6:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$7977_$","typeString":"type(contract IERC20)"}},"id":9348,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12206:7:40","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":7964,"src":"12199:14:40","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function IERC20.approve(address,uint256) returns (bool)"}},"id":9349,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12214:8:40","memberName":"selector","nodeType":"MemberAccess","src":"12199:23:40","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"12181:41:40"},{"AST":{"nativeSrc":"12258:1047:40","nodeType":"YulBlock","src":"12258:1047:40","statements":[{"nativeSrc":"12272:22:40","nodeType":"YulVariableDeclaration","src":"12272:22:40","value":{"arguments":[{"kind":"number","nativeSrc":"12289:4:40","nodeType":"YulLiteral","src":"12289:4:40","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"12283:5:40","nodeType":"YulIdentifier","src":"12283:5:40"},"nativeSrc":"12283:11:40","nodeType":"YulFunctionCall","src":"12283:11:40"},"variables":[{"name":"fmp","nativeSrc":"12276:3:40","nodeType":"YulTypedName","src":"12276:3:40","type":""}]},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12314:4:40","nodeType":"YulLiteral","src":"12314:4:40","type":"","value":"0x00"},{"name":"selector","nativeSrc":"12320:8:40","nodeType":"YulIdentifier","src":"12320:8:40"}],"functionName":{"name":"mstore","nativeSrc":"12307:6:40","nodeType":"YulIdentifier","src":"12307:6:40"},"nativeSrc":"12307:22:40","nodeType":"YulFunctionCall","src":"12307:22:40"},"nativeSrc":"12307:22:40","nodeType":"YulExpressionStatement","src":"12307:22:40"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12349:4:40","nodeType":"YulLiteral","src":"12349:4:40","type":"","value":"0x04"},{"arguments":[{"name":"spender","nativeSrc":"12359:7:40","nodeType":"YulIdentifier","src":"12359:7:40"},{"arguments":[{"kind":"number","nativeSrc":"12372:2:40","nodeType":"YulLiteral","src":"12372:2:40","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"12380:1:40","nodeType":"YulLiteral","src":"12380:1:40","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"12376:3:40","nodeType":"YulIdentifier","src":"12376:3:40"},"nativeSrc":"12376:6:40","nodeType":"YulFunctionCall","src":"12376:6:40"}],"functionName":{"name":"shr","nativeSrc":"12368:3:40","nodeType":"YulIdentifier","src":"12368:3:40"},"nativeSrc":"12368:15:40","nodeType":"YulFunctionCall","src":"12368:15:40"}],"functionName":{"name":"and","nativeSrc":"12355:3:40","nodeType":"YulIdentifier","src":"12355:3:40"},"nativeSrc":"12355:29:40","nodeType":"YulFunctionCall","src":"12355:29:40"}],"functionName":{"name":"mstore","nativeSrc":"12342:6:40","nodeType":"YulIdentifier","src":"12342:6:40"},"nativeSrc":"12342:43:40","nodeType":"YulFunctionCall","src":"12342:43:40"},"nativeSrc":"12342:43:40","nodeType":"YulExpressionStatement","src":"12342:43:40"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12405:4:40","nodeType":"YulLiteral","src":"12405:4:40","type":"","value":"0x24"},{"name":"value","nativeSrc":"12411:5:40","nodeType":"YulIdentifier","src":"12411:5:40"}],"functionName":{"name":"mstore","nativeSrc":"12398:6:40","nodeType":"YulIdentifier","src":"12398:6:40"},"nativeSrc":"12398:19:40","nodeType":"YulFunctionCall","src":"12398:19:40"},"nativeSrc":"12398:19:40","nodeType":"YulExpressionStatement","src":"12398:19:40"},{"nativeSrc":"12430:56:40","nodeType":"YulAssignment","src":"12430:56:40","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"12446:3:40","nodeType":"YulIdentifier","src":"12446:3:40"},"nativeSrc":"12446:5:40","nodeType":"YulFunctionCall","src":"12446:5:40"},{"name":"token","nativeSrc":"12453:5:40","nodeType":"YulIdentifier","src":"12453:5:40"},{"kind":"number","nativeSrc":"12460:1:40","nodeType":"YulLiteral","src":"12460:1:40","type":"","value":"0"},{"kind":"number","nativeSrc":"12463:4:40","nodeType":"YulLiteral","src":"12463:4:40","type":"","value":"0x00"},{"kind":"number","nativeSrc":"12469:4:40","nodeType":"YulLiteral","src":"12469:4:40","type":"","value":"0x44"},{"kind":"number","nativeSrc":"12475:4:40","nodeType":"YulLiteral","src":"12475:4:40","type":"","value":"0x00"},{"kind":"number","nativeSrc":"12481:4:40","nodeType":"YulLiteral","src":"12481:4:40","type":"","value":"0x20"}],"functionName":{"name":"call","nativeSrc":"12441:4:40","nodeType":"YulIdentifier","src":"12441:4:40"},"nativeSrc":"12441:45:40","nodeType":"YulFunctionCall","src":"12441:45:40"},"variableNames":[{"name":"success","nativeSrc":"12430:7:40","nodeType":"YulIdentifier","src":"12430:7:40"}]},{"body":{"nativeSrc":"12703:562:40","nodeType":"YulBlock","src":"12703:562:40","statements":[{"body":{"nativeSrc":"12838:133:40","nodeType":"YulBlock","src":"12838:133:40","statements":[{"expression":{"arguments":[{"name":"fmp","nativeSrc":"12875:3:40","nodeType":"YulIdentifier","src":"12875:3:40"},{"kind":"number","nativeSrc":"12880:4:40","nodeType":"YulLiteral","src":"12880:4:40","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"12886:14:40","nodeType":"YulIdentifier","src":"12886:14:40"},"nativeSrc":"12886:16:40","nodeType":"YulFunctionCall","src":"12886:16:40"}],"functionName":{"name":"returndatacopy","nativeSrc":"12860:14:40","nodeType":"YulIdentifier","src":"12860:14:40"},"nativeSrc":"12860:43:40","nodeType":"YulFunctionCall","src":"12860:43:40"},"nativeSrc":"12860:43:40","nodeType":"YulExpressionStatement","src":"12860:43:40"},{"expression":{"arguments":[{"name":"fmp","nativeSrc":"12931:3:40","nodeType":"YulIdentifier","src":"12931:3:40"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"12936:14:40","nodeType":"YulIdentifier","src":"12936:14:40"},"nativeSrc":"12936:16:40","nodeType":"YulFunctionCall","src":"12936:16:40"}],"functionName":{"name":"revert","nativeSrc":"12924:6:40","nodeType":"YulIdentifier","src":"12924:6:40"},"nativeSrc":"12924:29:40","nodeType":"YulFunctionCall","src":"12924:29:40"},"nativeSrc":"12924:29:40","nodeType":"YulExpressionStatement","src":"12924:29:40"}]},"condition":{"arguments":[{"arguments":[{"name":"success","nativeSrc":"12820:7:40","nodeType":"YulIdentifier","src":"12820:7:40"}],"functionName":{"name":"iszero","nativeSrc":"12813:6:40","nodeType":"YulIdentifier","src":"12813:6:40"},"nativeSrc":"12813:15:40","nodeType":"YulFunctionCall","src":"12813:15:40"},{"name":"bubble","nativeSrc":"12830:6:40","nodeType":"YulIdentifier","src":"12830:6:40"}],"functionName":{"name":"and","nativeSrc":"12809:3:40","nodeType":"YulIdentifier","src":"12809:3:40"},"nativeSrc":"12809:28:40","nodeType":"YulFunctionCall","src":"12809:28:40"},"nativeSrc":"12806:165:40","nodeType":"YulIf","src":"12806:165:40"},{"nativeSrc":"13170:81:40","nodeType":"YulAssignment","src":"13170:81:40","value":{"arguments":[{"name":"success","nativeSrc":"13185:7:40","nodeType":"YulIdentifier","src":"13185:7:40"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"13205:14:40","nodeType":"YulIdentifier","src":"13205:14:40"},"nativeSrc":"13205:16:40","nodeType":"YulFunctionCall","src":"13205:16:40"}],"functionName":{"name":"iszero","nativeSrc":"13198:6:40","nodeType":"YulIdentifier","src":"13198:6:40"},"nativeSrc":"13198:24:40","nodeType":"YulFunctionCall","src":"13198:24:40"},{"arguments":[{"arguments":[{"name":"token","nativeSrc":"13239:5:40","nodeType":"YulIdentifier","src":"13239:5:40"}],"functionName":{"name":"extcodesize","nativeSrc":"13227:11:40","nodeType":"YulIdentifier","src":"13227:11:40"},"nativeSrc":"13227:18:40","nodeType":"YulFunctionCall","src":"13227:18:40"},{"kind":"number","nativeSrc":"13247:1:40","nodeType":"YulLiteral","src":"13247:1:40","type":"","value":"0"}],"functionName":{"name":"gt","nativeSrc":"13224:2:40","nodeType":"YulIdentifier","src":"13224:2:40"},"nativeSrc":"13224:25:40","nodeType":"YulFunctionCall","src":"13224:25:40"}],"functionName":{"name":"and","nativeSrc":"13194:3:40","nodeType":"YulIdentifier","src":"13194:3:40"},"nativeSrc":"13194:56:40","nodeType":"YulFunctionCall","src":"13194:56:40"}],"functionName":{"name":"and","nativeSrc":"13181:3:40","nodeType":"YulIdentifier","src":"13181:3:40"},"nativeSrc":"13181:70:40","nodeType":"YulFunctionCall","src":"13181:70:40"},"variableNames":[{"name":"success","nativeSrc":"13170:7:40","nodeType":"YulIdentifier","src":"13170:7:40"}]}]},"condition":{"arguments":[{"arguments":[{"name":"success","nativeSrc":"12673:7:40","nodeType":"YulIdentifier","src":"12673:7:40"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12691:4:40","nodeType":"YulLiteral","src":"12691:4:40","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"12685:5:40","nodeType":"YulIdentifier","src":"12685:5:40"},"nativeSrc":"12685:11:40","nodeType":"YulFunctionCall","src":"12685:11:40"},{"kind":"number","nativeSrc":"12698:1:40","nodeType":"YulLiteral","src":"12698:1:40","type":"","value":"1"}],"functionName":{"name":"eq","nativeSrc":"12682:2:40","nodeType":"YulIdentifier","src":"12682:2:40"},"nativeSrc":"12682:18:40","nodeType":"YulFunctionCall","src":"12682:18:40"}],"functionName":{"name":"and","nativeSrc":"12669:3:40","nodeType":"YulIdentifier","src":"12669:3:40"},"nativeSrc":"12669:32:40","nodeType":"YulFunctionCall","src":"12669:32:40"}],"functionName":{"name":"iszero","nativeSrc":"12662:6:40","nodeType":"YulIdentifier","src":"12662:6:40"},"nativeSrc":"12662:40:40","nodeType":"YulFunctionCall","src":"12662:40:40"},"nativeSrc":"12659:606:40","nodeType":"YulIf","src":"12659:606:40"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"13285:4:40","nodeType":"YulLiteral","src":"13285:4:40","type":"","value":"0x40"},{"name":"fmp","nativeSrc":"13291:3:40","nodeType":"YulIdentifier","src":"13291:3:40"}],"functionName":{"name":"mstore","nativeSrc":"13278:6:40","nodeType":"YulIdentifier","src":"13278:6:40"},"nativeSrc":"13278:17:40","nodeType":"YulFunctionCall","src":"13278:17:40"},"nativeSrc":"13278:17:40","nodeType":"YulExpressionStatement","src":"13278:17:40"}]},"evmVersion":"prague","externalReferences":[{"declaration":9340,"isOffset":false,"isSlot":false,"src":"12830:6:40","valueSize":1},{"declaration":9346,"isOffset":false,"isSlot":false,"src":"12320:8:40","valueSize":1},{"declaration":9336,"isOffset":false,"isSlot":false,"src":"12359:7:40","valueSize":1},{"declaration":9343,"isOffset":false,"isSlot":false,"src":"12430:7:40","valueSize":1},{"declaration":9343,"isOffset":false,"isSlot":false,"src":"12673:7:40","valueSize":1},{"declaration":9343,"isOffset":false,"isSlot":false,"src":"12820:7:40","valueSize":1},{"declaration":9343,"isOffset":false,"isSlot":false,"src":"13170:7:40","valueSize":1},{"declaration":9343,"isOffset":false,"isSlot":false,"src":"13185:7:40","valueSize":1},{"declaration":9334,"isOffset":false,"isSlot":false,"src":"12453:5:40","valueSize":1},{"declaration":9334,"isOffset":false,"isSlot":false,"src":"13239:5:40","valueSize":1},{"declaration":9338,"isOffset":false,"isSlot":false,"src":"12411:5:40","valueSize":1}],"flags":["memory-safe"],"id":9351,"nodeType":"InlineAssembly","src":"12233:1072:40"}]},"documentation":{"id":9331,"nodeType":"StructuredDocumentation","src":"11564:490:40","text":" @dev Imitates a Solidity `token.approve(spender, value)` call, relaxing the requirement on the return value:\n the return value is optional (but if data is returned, it must not be false).\n @param token The token targeted by the call.\n @param spender The spender of the tokens\n @param value The amount of token to transfer\n @param bubble Behavior switch if the transfer call reverts: bubble the revert reason or return a false boolean."},"id":9353,"implemented":true,"kind":"function","modifiers":[],"name":"_safeApprove","nameLocation":"12068:12:40","nodeType":"FunctionDefinition","parameters":{"id":9341,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9334,"mutability":"mutable","name":"token","nameLocation":"12088:5:40","nodeType":"VariableDeclaration","scope":9353,"src":"12081:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"},"typeName":{"id":9333,"nodeType":"UserDefinedTypeName","pathNode":{"id":9332,"name":"IERC20","nameLocations":["12081:6:40"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"12081:6:40"},"referencedDeclaration":7977,"src":"12081:6:40","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":9336,"mutability":"mutable","name":"spender","nameLocation":"12103:7:40","nodeType":"VariableDeclaration","scope":9353,"src":"12095:15:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9335,"name":"address","nodeType":"ElementaryTypeName","src":"12095:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9338,"mutability":"mutable","name":"value","nameLocation":"12120:5:40","nodeType":"VariableDeclaration","scope":9353,"src":"12112:13:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9337,"name":"uint256","nodeType":"ElementaryTypeName","src":"12112:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9340,"mutability":"mutable","name":"bubble","nameLocation":"12132:6:40","nodeType":"VariableDeclaration","scope":9353,"src":"12127:11:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9339,"name":"bool","nodeType":"ElementaryTypeName","src":"12127:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12080:59:40"},"returnParameters":{"id":9344,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9343,"mutability":"mutable","name":"success","nameLocation":"12162:7:40","nodeType":"VariableDeclaration","scope":9353,"src":"12157:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9342,"name":"bool","nodeType":"ElementaryTypeName","src":"12157:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12156:14:40"},"scope":9354,"src":"12059:1252:40","stateMutability":"nonpayable","virtual":false,"visibility":"private"}],"scope":9355,"src":"698:12615:40","usedErrors":[8911,8920],"usedEvents":[]}],"src":"115:13199:40"},"id":40},"@openzeppelin/contracts/token/ERC721/IERC721.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","exportedSymbols":{"IERC165":[14272],"IERC721":[9471]},"id":9472,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9356,"literals":["solidity",">=","0.6",".2"],"nodeType":"PragmaDirective","src":"108:24:41"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../../utils/introspection/IERC165.sol","id":9358,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9472,"sourceUnit":14273,"src":"134:62:41","symbolAliases":[{"foreign":{"id":9357,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"142:7:41","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":9360,"name":"IERC165","nameLocations":["288:7:41"],"nodeType":"IdentifierPath","referencedDeclaration":14272,"src":"288:7:41"},"id":9361,"nodeType":"InheritanceSpecifier","src":"288:7:41"}],"canonicalName":"IERC721","contractDependencies":[],"contractKind":"interface","documentation":{"id":9359,"nodeType":"StructuredDocumentation","src":"198:68:41","text":" @dev Required interface of an ERC-721 compliant contract."},"fullyImplemented":false,"id":9471,"linearizedBaseContracts":[9471,14272],"name":"IERC721","nameLocation":"277:7:41","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":9362,"nodeType":"StructuredDocumentation","src":"302:88:41","text":" @dev Emitted when `tokenId` token is transferred from `from` to `to`."},"eventSelector":"ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","id":9370,"name":"Transfer","nameLocation":"401:8:41","nodeType":"EventDefinition","parameters":{"id":9369,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9364,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"426:4:41","nodeType":"VariableDeclaration","scope":9370,"src":"410:20:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9363,"name":"address","nodeType":"ElementaryTypeName","src":"410:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9366,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"448:2:41","nodeType":"VariableDeclaration","scope":9370,"src":"432:18:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9365,"name":"address","nodeType":"ElementaryTypeName","src":"432:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9368,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"468:7:41","nodeType":"VariableDeclaration","scope":9370,"src":"452:23:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9367,"name":"uint256","nodeType":"ElementaryTypeName","src":"452:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"409:67:41"},"src":"395:82:41"},{"anonymous":false,"documentation":{"id":9371,"nodeType":"StructuredDocumentation","src":"483:94:41","text":" @dev Emitted when `owner` enables `approved` to manage the `tokenId` token."},"eventSelector":"8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925","id":9379,"name":"Approval","nameLocation":"588:8:41","nodeType":"EventDefinition","parameters":{"id":9378,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9373,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"613:5:41","nodeType":"VariableDeclaration","scope":9379,"src":"597:21:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9372,"name":"address","nodeType":"ElementaryTypeName","src":"597:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9375,"indexed":true,"mutability":"mutable","name":"approved","nameLocation":"636:8:41","nodeType":"VariableDeclaration","scope":9379,"src":"620:24:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9374,"name":"address","nodeType":"ElementaryTypeName","src":"620:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9377,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"662:7:41","nodeType":"VariableDeclaration","scope":9379,"src":"646:23:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9376,"name":"uint256","nodeType":"ElementaryTypeName","src":"646:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"596:74:41"},"src":"582:89:41"},{"anonymous":false,"documentation":{"id":9380,"nodeType":"StructuredDocumentation","src":"677:117:41","text":" @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets."},"eventSelector":"17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31","id":9388,"name":"ApprovalForAll","nameLocation":"805:14:41","nodeType":"EventDefinition","parameters":{"id":9387,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9382,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"836:5:41","nodeType":"VariableDeclaration","scope":9388,"src":"820:21:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9381,"name":"address","nodeType":"ElementaryTypeName","src":"820:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9384,"indexed":true,"mutability":"mutable","name":"operator","nameLocation":"859:8:41","nodeType":"VariableDeclaration","scope":9388,"src":"843:24:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9383,"name":"address","nodeType":"ElementaryTypeName","src":"843:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9386,"indexed":false,"mutability":"mutable","name":"approved","nameLocation":"874:8:41","nodeType":"VariableDeclaration","scope":9388,"src":"869:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9385,"name":"bool","nodeType":"ElementaryTypeName","src":"869:4:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"819:64:41"},"src":"799:85:41"},{"documentation":{"id":9389,"nodeType":"StructuredDocumentation","src":"890:76:41","text":" @dev Returns the number of tokens in ``owner``'s account."},"functionSelector":"70a08231","id":9396,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"980:9:41","nodeType":"FunctionDefinition","parameters":{"id":9392,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9391,"mutability":"mutable","name":"owner","nameLocation":"998:5:41","nodeType":"VariableDeclaration","scope":9396,"src":"990:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9390,"name":"address","nodeType":"ElementaryTypeName","src":"990:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"989:15:41"},"returnParameters":{"id":9395,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9394,"mutability":"mutable","name":"balance","nameLocation":"1036:7:41","nodeType":"VariableDeclaration","scope":9396,"src":"1028:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9393,"name":"uint256","nodeType":"ElementaryTypeName","src":"1028:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1027:17:41"},"scope":9471,"src":"971:74:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9397,"nodeType":"StructuredDocumentation","src":"1051:131:41","text":" @dev Returns the owner of the `tokenId` token.\n Requirements:\n - `tokenId` must exist."},"functionSelector":"6352211e","id":9404,"implemented":false,"kind":"function","modifiers":[],"name":"ownerOf","nameLocation":"1196:7:41","nodeType":"FunctionDefinition","parameters":{"id":9400,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9399,"mutability":"mutable","name":"tokenId","nameLocation":"1212:7:41","nodeType":"VariableDeclaration","scope":9404,"src":"1204:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9398,"name":"uint256","nodeType":"ElementaryTypeName","src":"1204:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1203:17:41"},"returnParameters":{"id":9403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9402,"mutability":"mutable","name":"owner","nameLocation":"1252:5:41","nodeType":"VariableDeclaration","scope":9404,"src":"1244:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9401,"name":"address","nodeType":"ElementaryTypeName","src":"1244:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1243:15:41"},"scope":9471,"src":"1187:72:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9405,"nodeType":"StructuredDocumentation","src":"1265:565:41","text":" @dev Safely transfers `tokenId` token from `from` to `to`.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must exist and be owned by `from`.\n - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon\n   a safe transfer.\n Emits a {Transfer} event."},"functionSelector":"b88d4fde","id":9416,"implemented":false,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"1844:16:41","nodeType":"FunctionDefinition","parameters":{"id":9414,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9407,"mutability":"mutable","name":"from","nameLocation":"1869:4:41","nodeType":"VariableDeclaration","scope":9416,"src":"1861:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9406,"name":"address","nodeType":"ElementaryTypeName","src":"1861:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9409,"mutability":"mutable","name":"to","nameLocation":"1883:2:41","nodeType":"VariableDeclaration","scope":9416,"src":"1875:10:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9408,"name":"address","nodeType":"ElementaryTypeName","src":"1875:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9411,"mutability":"mutable","name":"tokenId","nameLocation":"1895:7:41","nodeType":"VariableDeclaration","scope":9416,"src":"1887:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9410,"name":"uint256","nodeType":"ElementaryTypeName","src":"1887:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9413,"mutability":"mutable","name":"data","nameLocation":"1919:4:41","nodeType":"VariableDeclaration","scope":9416,"src":"1904:19:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9412,"name":"bytes","nodeType":"ElementaryTypeName","src":"1904:5:41","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1860:64:41"},"returnParameters":{"id":9415,"nodeType":"ParameterList","parameters":[],"src":"1933:0:41"},"scope":9471,"src":"1835:99:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9417,"nodeType":"StructuredDocumentation","src":"1940:706:41","text":" @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n are aware of the ERC-721 protocol to prevent tokens from being forever locked.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must exist and be owned by `from`.\n - If the caller is not `from`, it must have been allowed to move this token by either {approve} or\n   {setApprovalForAll}.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon\n   a safe transfer.\n Emits a {Transfer} event."},"functionSelector":"42842e0e","id":9426,"implemented":false,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"2660:16:41","nodeType":"FunctionDefinition","parameters":{"id":9424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9419,"mutability":"mutable","name":"from","nameLocation":"2685:4:41","nodeType":"VariableDeclaration","scope":9426,"src":"2677:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9418,"name":"address","nodeType":"ElementaryTypeName","src":"2677:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9421,"mutability":"mutable","name":"to","nameLocation":"2699:2:41","nodeType":"VariableDeclaration","scope":9426,"src":"2691:10:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9420,"name":"address","nodeType":"ElementaryTypeName","src":"2691:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9423,"mutability":"mutable","name":"tokenId","nameLocation":"2711:7:41","nodeType":"VariableDeclaration","scope":9426,"src":"2703:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9422,"name":"uint256","nodeType":"ElementaryTypeName","src":"2703:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2676:43:41"},"returnParameters":{"id":9425,"nodeType":"ParameterList","parameters":[],"src":"2728:0:41"},"scope":9471,"src":"2651:78:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9427,"nodeType":"StructuredDocumentation","src":"2735:733:41","text":" @dev Transfers `tokenId` token from `from` to `to`.\n WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721\n or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must\n understand this adds an external call which potentially creates a reentrancy vulnerability.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must be owned by `from`.\n - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n Emits a {Transfer} event."},"functionSelector":"23b872dd","id":9436,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"3482:12:41","nodeType":"FunctionDefinition","parameters":{"id":9434,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9429,"mutability":"mutable","name":"from","nameLocation":"3503:4:41","nodeType":"VariableDeclaration","scope":9436,"src":"3495:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9428,"name":"address","nodeType":"ElementaryTypeName","src":"3495:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9431,"mutability":"mutable","name":"to","nameLocation":"3517:2:41","nodeType":"VariableDeclaration","scope":9436,"src":"3509:10:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9430,"name":"address","nodeType":"ElementaryTypeName","src":"3509:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9433,"mutability":"mutable","name":"tokenId","nameLocation":"3529:7:41","nodeType":"VariableDeclaration","scope":9436,"src":"3521:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9432,"name":"uint256","nodeType":"ElementaryTypeName","src":"3521:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3494:43:41"},"returnParameters":{"id":9435,"nodeType":"ParameterList","parameters":[],"src":"3546:0:41"},"scope":9471,"src":"3473:74:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9437,"nodeType":"StructuredDocumentation","src":"3553:452:41","text":" @dev Gives permission to `to` to transfer `tokenId` token to another account.\n The approval is cleared when the token is transferred.\n Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n Requirements:\n - The caller must own the token or be an approved operator.\n - `tokenId` must exist.\n Emits an {Approval} event."},"functionSelector":"095ea7b3","id":9444,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"4019:7:41","nodeType":"FunctionDefinition","parameters":{"id":9442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9439,"mutability":"mutable","name":"to","nameLocation":"4035:2:41","nodeType":"VariableDeclaration","scope":9444,"src":"4027:10:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9438,"name":"address","nodeType":"ElementaryTypeName","src":"4027:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9441,"mutability":"mutable","name":"tokenId","nameLocation":"4047:7:41","nodeType":"VariableDeclaration","scope":9444,"src":"4039:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9440,"name":"uint256","nodeType":"ElementaryTypeName","src":"4039:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4026:29:41"},"returnParameters":{"id":9443,"nodeType":"ParameterList","parameters":[],"src":"4064:0:41"},"scope":9471,"src":"4010:55:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9445,"nodeType":"StructuredDocumentation","src":"4071:315:41","text":" @dev Approve or remove `operator` as an operator for the caller.\n Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n Requirements:\n - The `operator` cannot be the address zero.\n Emits an {ApprovalForAll} event."},"functionSelector":"a22cb465","id":9452,"implemented":false,"kind":"function","modifiers":[],"name":"setApprovalForAll","nameLocation":"4400:17:41","nodeType":"FunctionDefinition","parameters":{"id":9450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9447,"mutability":"mutable","name":"operator","nameLocation":"4426:8:41","nodeType":"VariableDeclaration","scope":9452,"src":"4418:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9446,"name":"address","nodeType":"ElementaryTypeName","src":"4418:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9449,"mutability":"mutable","name":"approved","nameLocation":"4441:8:41","nodeType":"VariableDeclaration","scope":9452,"src":"4436:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9448,"name":"bool","nodeType":"ElementaryTypeName","src":"4436:4:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4417:33:41"},"returnParameters":{"id":9451,"nodeType":"ParameterList","parameters":[],"src":"4459:0:41"},"scope":9471,"src":"4391:69:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9453,"nodeType":"StructuredDocumentation","src":"4466:139:41","text":" @dev Returns the account approved for `tokenId` token.\n Requirements:\n - `tokenId` must exist."},"functionSelector":"081812fc","id":9460,"implemented":false,"kind":"function","modifiers":[],"name":"getApproved","nameLocation":"4619:11:41","nodeType":"FunctionDefinition","parameters":{"id":9456,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9455,"mutability":"mutable","name":"tokenId","nameLocation":"4639:7:41","nodeType":"VariableDeclaration","scope":9460,"src":"4631:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9454,"name":"uint256","nodeType":"ElementaryTypeName","src":"4631:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4630:17:41"},"returnParameters":{"id":9459,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9458,"mutability":"mutable","name":"operator","nameLocation":"4679:8:41","nodeType":"VariableDeclaration","scope":9460,"src":"4671:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9457,"name":"address","nodeType":"ElementaryTypeName","src":"4671:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4670:18:41"},"scope":9471,"src":"4610:79:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9461,"nodeType":"StructuredDocumentation","src":"4695:138:41","text":" @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n See {setApprovalForAll}"},"functionSelector":"e985e9c5","id":9470,"implemented":false,"kind":"function","modifiers":[],"name":"isApprovedForAll","nameLocation":"4847:16:41","nodeType":"FunctionDefinition","parameters":{"id":9466,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9463,"mutability":"mutable","name":"owner","nameLocation":"4872:5:41","nodeType":"VariableDeclaration","scope":9470,"src":"4864:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9462,"name":"address","nodeType":"ElementaryTypeName","src":"4864:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9465,"mutability":"mutable","name":"operator","nameLocation":"4887:8:41","nodeType":"VariableDeclaration","scope":9470,"src":"4879:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9464,"name":"address","nodeType":"ElementaryTypeName","src":"4879:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4863:33:41"},"returnParameters":{"id":9469,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9468,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9470,"src":"4920:4:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9467,"name":"bool","nodeType":"ElementaryTypeName","src":"4920:4:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4919:6:41"},"scope":9471,"src":"4838:88:41","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":9472,"src":"267:4661:41","usedErrors":[],"usedEvents":[9370,9379,9388]}],"src":"108:4821:41"},"id":41},"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","exportedSymbols":{"IERC721Receiver":[9489]},"id":9490,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9473,"literals":["solidity",">=","0.5",".0"],"nodeType":"PragmaDirective","src":"116:24:42"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Receiver","contractDependencies":[],"contractKind":"interface","documentation":{"id":9474,"nodeType":"StructuredDocumentation","src":"142:154:42","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":9489,"linearizedBaseContracts":[9489],"name":"IERC721Receiver","nameLocation":"307:15:42","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":9475,"nodeType":"StructuredDocumentation","src":"329:500:42","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":9488,"implemented":false,"kind":"function","modifiers":[],"name":"onERC721Received","nameLocation":"843:16:42","nodeType":"FunctionDefinition","parameters":{"id":9484,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9477,"mutability":"mutable","name":"operator","nameLocation":"877:8:42","nodeType":"VariableDeclaration","scope":9488,"src":"869:16:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9476,"name":"address","nodeType":"ElementaryTypeName","src":"869:7:42","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9479,"mutability":"mutable","name":"from","nameLocation":"903:4:42","nodeType":"VariableDeclaration","scope":9488,"src":"895:12:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9478,"name":"address","nodeType":"ElementaryTypeName","src":"895:7:42","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9481,"mutability":"mutable","name":"tokenId","nameLocation":"925:7:42","nodeType":"VariableDeclaration","scope":9488,"src":"917:15:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9480,"name":"uint256","nodeType":"ElementaryTypeName","src":"917:7:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9483,"mutability":"mutable","name":"data","nameLocation":"957:4:42","nodeType":"VariableDeclaration","scope":9488,"src":"942:19:42","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9482,"name":"bytes","nodeType":"ElementaryTypeName","src":"942:5:42","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"859:108:42"},"returnParameters":{"id":9487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9486,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9488,"src":"986:6:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9485,"name":"bytes4","nodeType":"ElementaryTypeName","src":"986:6:42","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"985:8:42"},"scope":9489,"src":"834:160:42","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":9490,"src":"297:699:42","usedErrors":[],"usedEvents":[]}],"src":"116:881:42"},"id":42},"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol","exportedSymbols":{"IERC721":[9471],"IERC721Metadata":[9517]},"id":9518,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9491,"literals":["solidity",">=","0.6",".2"],"nodeType":"PragmaDirective","src":"127:24:43"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","file":"../IERC721.sol","id":9493,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9518,"sourceUnit":9472,"src":"153:39:43","symbolAliases":[{"foreign":{"id":9492,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9471,"src":"161:7:43","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":9495,"name":"IERC721","nameLocations":["357:7:43"],"nodeType":"IdentifierPath","referencedDeclaration":9471,"src":"357:7:43"},"id":9496,"nodeType":"InheritanceSpecifier","src":"357:7:43"}],"canonicalName":"IERC721Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":9494,"nodeType":"StructuredDocumentation","src":"194:133:43","text":" @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n @dev See https://eips.ethereum.org/EIPS/eip-721"},"fullyImplemented":false,"id":9517,"linearizedBaseContracts":[9517,9471,14272],"name":"IERC721Metadata","nameLocation":"338:15:43","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":9497,"nodeType":"StructuredDocumentation","src":"371:58:43","text":" @dev Returns the token collection name."},"functionSelector":"06fdde03","id":9502,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"443:4:43","nodeType":"FunctionDefinition","parameters":{"id":9498,"nodeType":"ParameterList","parameters":[],"src":"447:2:43"},"returnParameters":{"id":9501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9500,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9502,"src":"473:13:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9499,"name":"string","nodeType":"ElementaryTypeName","src":"473:6:43","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"472:15:43"},"scope":9517,"src":"434:54:43","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9503,"nodeType":"StructuredDocumentation","src":"494:60:43","text":" @dev Returns the token collection symbol."},"functionSelector":"95d89b41","id":9508,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"568:6:43","nodeType":"FunctionDefinition","parameters":{"id":9504,"nodeType":"ParameterList","parameters":[],"src":"574:2:43"},"returnParameters":{"id":9507,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9506,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9508,"src":"600:13:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9505,"name":"string","nodeType":"ElementaryTypeName","src":"600:6:43","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"599:15:43"},"scope":9517,"src":"559:56:43","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9509,"nodeType":"StructuredDocumentation","src":"621:90:43","text":" @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token."},"functionSelector":"c87b56dd","id":9516,"implemented":false,"kind":"function","modifiers":[],"name":"tokenURI","nameLocation":"725:8:43","nodeType":"FunctionDefinition","parameters":{"id":9512,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9511,"mutability":"mutable","name":"tokenId","nameLocation":"742:7:43","nodeType":"VariableDeclaration","scope":9516,"src":"734:15:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9510,"name":"uint256","nodeType":"ElementaryTypeName","src":"734:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"733:17:43"},"returnParameters":{"id":9515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9514,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9516,"src":"774:13:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9513,"name":"string","nodeType":"ElementaryTypeName","src":"774:6:43","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"773:15:43"},"scope":9517,"src":"716:73:43","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":9518,"src":"328:463:43","usedErrors":[],"usedEvents":[9370,9379,9388]}],"src":"127:665:43"},"id":43},"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol","exportedSymbols":{"ERC721Utils":[9594],"IERC721Errors":[6525],"IERC721Receiver":[9489]},"id":9595,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9519,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"118:24:44"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"../IERC721Receiver.sol","id":9521,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9595,"sourceUnit":9490,"src":"144:55:44","symbolAliases":[{"foreign":{"id":9520,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9489,"src":"152:15:44","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"../../../interfaces/draft-IERC6093.sol","id":9523,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9595,"sourceUnit":6573,"src":"200:69:44","symbolAliases":[{"foreign":{"id":9522,"name":"IERC721Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6525,"src":"208:13:44","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"ERC721Utils","contractDependencies":[],"contractKind":"library","documentation":{"id":9524,"nodeType":"StructuredDocumentation","src":"271:160:44","text":" @dev Library that provides common ERC-721 utility functions.\n See https://eips.ethereum.org/EIPS/eip-721[ERC-721].\n _Available since v5.1._"},"fullyImplemented":true,"id":9594,"linearizedBaseContracts":[9594],"name":"ERC721Utils","nameLocation":"440:11:44","nodeType":"ContractDefinition","nodes":[{"body":{"id":9592,"nodeType":"Block","src":"1160:760:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":9538,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9531,"src":"1174:2:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1177:4:44","memberName":"code","nodeType":"MemberAccess","src":"1174:7:44","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1182:6:44","memberName":"length","nodeType":"MemberAccess","src":"1174:14:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9541,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1191:1:44","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1174:18:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9591,"nodeType":"IfStatement","src":"1170:744:44","trueBody":{"id":9590,"nodeType":"Block","src":"1194:720:44","statements":[{"clauses":[{"block":{"id":9568,"nodeType":"Block","src":"1304:214:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":9559,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9555,"name":"retval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9553,"src":"1326:6:44","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"expression":{"id":9556,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9489,"src":"1336:15:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Receiver_$9489_$","typeString":"type(contract IERC721Receiver)"}},"id":9557,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1352:16:44","memberName":"onERC721Received","nodeType":"MemberAccess","referencedDeclaration":9488,"src":"1336:32:44","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function IERC721Receiver.onERC721Received(address,address,uint256,bytes calldata) returns (bytes4)"}},"id":9558,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1369:8:44","memberName":"selector","nodeType":"MemberAccess","src":"1336:41:44","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1326:51:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9567,"nodeType":"IfStatement","src":"1322:182:44","trueBody":{"id":9566,"nodeType":"Block","src":"1379:125:44","statements":[{"errorCall":{"arguments":[{"id":9563,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9531,"src":"1482:2:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":9560,"name":"IERC721Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6525,"src":"1446:13:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Errors_$6525_$","typeString":"type(contract IERC721Errors)"}},"id":9562,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1460:21:44","memberName":"ERC721InvalidReceiver","nodeType":"MemberAccess","referencedDeclaration":6507,"src":"1446:35:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":9564,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1446:39:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9565,"nodeType":"RevertStatement","src":"1439:46:44"}]}}]},"errorName":"","id":9569,"nodeType":"TryCatchClause","parameters":{"id":9554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9553,"mutability":"mutable","name":"retval","nameLocation":"1296:6:44","nodeType":"VariableDeclaration","scope":9569,"src":"1289:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9552,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1289:6:44","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1288:15:44"},"src":"1280:238:44"},{"block":{"id":9587,"nodeType":"Block","src":"1547:357:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9573,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9571,"src":"1569:6:44","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1576:6:44","memberName":"length","nodeType":"MemberAccess","src":"1569:13:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9575,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1586:1:44","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1569:18:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":9585,"nodeType":"Block","src":"1737:153:44","statements":[{"AST":{"nativeSrc":"1784:88:44","nodeType":"YulBlock","src":"1784:88:44","statements":[{"expression":{"arguments":[{"arguments":[{"name":"reason","nativeSrc":"1821:6:44","nodeType":"YulIdentifier","src":"1821:6:44"},{"kind":"number","nativeSrc":"1829:4:44","nodeType":"YulLiteral","src":"1829:4:44","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1817:3:44","nodeType":"YulIdentifier","src":"1817:3:44"},"nativeSrc":"1817:17:44","nodeType":"YulFunctionCall","src":"1817:17:44"},{"arguments":[{"name":"reason","nativeSrc":"1842:6:44","nodeType":"YulIdentifier","src":"1842:6:44"}],"functionName":{"name":"mload","nativeSrc":"1836:5:44","nodeType":"YulIdentifier","src":"1836:5:44"},"nativeSrc":"1836:13:44","nodeType":"YulFunctionCall","src":"1836:13:44"}],"functionName":{"name":"revert","nativeSrc":"1810:6:44","nodeType":"YulIdentifier","src":"1810:6:44"},"nativeSrc":"1810:40:44","nodeType":"YulFunctionCall","src":"1810:40:44"},"nativeSrc":"1810:40:44","nodeType":"YulExpressionStatement","src":"1810:40:44"}]},"evmVersion":"prague","externalReferences":[{"declaration":9571,"isOffset":false,"isSlot":false,"src":"1821:6:44","valueSize":1},{"declaration":9571,"isOffset":false,"isSlot":false,"src":"1842:6:44","valueSize":1}],"flags":["memory-safe"],"id":9584,"nodeType":"InlineAssembly","src":"1759:113:44"}]},"id":9586,"nodeType":"IfStatement","src":"1565:325:44","trueBody":{"id":9583,"nodeType":"Block","src":"1589:142:44","statements":[{"errorCall":{"arguments":[{"id":9580,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9531,"src":"1709:2:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":9577,"name":"IERC721Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6525,"src":"1673:13:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Errors_$6525_$","typeString":"type(contract IERC721Errors)"}},"id":9579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1687:21:44","memberName":"ERC721InvalidReceiver","nodeType":"MemberAccess","referencedDeclaration":6507,"src":"1673:35:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":9581,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1673:39:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9582,"nodeType":"RevertStatement","src":"1666:46:44"}]}}]},"errorName":"","id":9588,"nodeType":"TryCatchClause","parameters":{"id":9572,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9571,"mutability":"mutable","name":"reason","nameLocation":"1539:6:44","nodeType":"VariableDeclaration","scope":9588,"src":"1526:19:44","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9570,"name":"bytes","nodeType":"ElementaryTypeName","src":"1526:5:44","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1525:21:44"},"src":"1519:385:44"}],"externalCall":{"arguments":[{"id":9547,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9527,"src":"1249:8:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9548,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9529,"src":"1259:4:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9549,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9533,"src":"1265:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9550,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9535,"src":"1274:4:44","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"arguments":[{"id":9544,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9531,"src":"1228:2:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9543,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9489,"src":"1212:15:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Receiver_$9489_$","typeString":"type(contract IERC721Receiver)"}},"id":9545,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1212:19:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC721Receiver_$9489","typeString":"contract IERC721Receiver"}},"id":9546,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1232:16:44","memberName":"onERC721Received","nodeType":"MemberAccess","referencedDeclaration":9488,"src":"1212:36:44","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":9551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1212:67:44","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":9589,"nodeType":"TryStatement","src":"1208:696:44"}]}}]},"documentation":{"id":9525,"nodeType":"StructuredDocumentation","src":"458:531:44","text":" @dev Performs an acceptance check for the provided `operator` by calling {IERC721Receiver-onERC721Received}\n on the `to` address. The `operator` is generally the address that initiated the token transfer (i.e. `msg.sender`).\n The acceptance call is not executed and treated as a no-op if the target address doesn't contain code (i.e. an EOA).\n Otherwise, the recipient must implement {IERC721Receiver-onERC721Received} and return the acceptance magic value to accept\n the transfer."},"id":9593,"implemented":true,"kind":"function","modifiers":[],"name":"checkOnERC721Received","nameLocation":"1003:21:44","nodeType":"FunctionDefinition","parameters":{"id":9536,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9527,"mutability":"mutable","name":"operator","nameLocation":"1042:8:44","nodeType":"VariableDeclaration","scope":9593,"src":"1034:16:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9526,"name":"address","nodeType":"ElementaryTypeName","src":"1034:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9529,"mutability":"mutable","name":"from","nameLocation":"1068:4:44","nodeType":"VariableDeclaration","scope":9593,"src":"1060:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9528,"name":"address","nodeType":"ElementaryTypeName","src":"1060:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9531,"mutability":"mutable","name":"to","nameLocation":"1090:2:44","nodeType":"VariableDeclaration","scope":9593,"src":"1082:10:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9530,"name":"address","nodeType":"ElementaryTypeName","src":"1082:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9533,"mutability":"mutable","name":"tokenId","nameLocation":"1110:7:44","nodeType":"VariableDeclaration","scope":9593,"src":"1102:15:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9532,"name":"uint256","nodeType":"ElementaryTypeName","src":"1102:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9535,"mutability":"mutable","name":"data","nameLocation":"1140:4:44","nodeType":"VariableDeclaration","scope":9593,"src":"1127:17:44","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9534,"name":"bytes","nodeType":"ElementaryTypeName","src":"1127:5:44","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1024:126:44"},"returnParameters":{"id":9537,"nodeType":"ParameterList","parameters":[],"src":"1160:0:44"},"scope":9594,"src":"994:926:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":9595,"src":"432:1490:44","usedErrors":[],"usedEvents":[]}],"src":"118:1805:44"},"id":44},"@openzeppelin/contracts/utils/Address.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","exportedSymbols":{"Address":[9984],"Errors":[10749],"LowLevelCall":[10908]},"id":9985,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9596,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:45"},{"absolutePath":"@openzeppelin/contracts/utils/Errors.sol","file":"./Errors.sol","id":9598,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9985,"sourceUnit":10750,"src":"127:36:45","symbolAliases":[{"foreign":{"id":9597,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10749,"src":"135:6:45","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/LowLevelCall.sol","file":"./LowLevelCall.sol","id":9600,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9985,"sourceUnit":10909,"src":"164:48:45","symbolAliases":[{"foreign":{"id":9599,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"172:12:45","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Address","contractDependencies":[],"contractKind":"library","documentation":{"id":9601,"nodeType":"StructuredDocumentation","src":"214:67:45","text":" @dev Collection of functions related to the address type"},"fullyImplemented":true,"id":9984,"linearizedBaseContracts":[9984],"name":"Address","nameLocation":"290:7:45","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":9602,"nodeType":"StructuredDocumentation","src":"304:75:45","text":" @dev There's no code at `target` (it is not a contract)."},"errorSelector":"9996b315","id":9606,"name":"AddressEmptyCode","nameLocation":"390:16:45","nodeType":"ErrorDefinition","parameters":{"id":9605,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9604,"mutability":"mutable","name":"target","nameLocation":"415:6:45","nodeType":"VariableDeclaration","scope":9606,"src":"407:14:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9603,"name":"address","nodeType":"ElementaryTypeName","src":"407:7:45","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"406:16:45"},"src":"384:39:45"},{"body":{"id":9661,"nodeType":"Block","src":"1410:435:45","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9620,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":9616,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1432:4:45","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$9984","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$9984","typeString":"library Address"}],"id":9615,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1424:7:45","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9614,"name":"address","nodeType":"ElementaryTypeName","src":"1424:7:45","typeDescriptions":{}}},"id":9617,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1424:13:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1438:7:45","memberName":"balance","nodeType":"MemberAccess","src":"1424:21:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":9619,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9611,"src":"1448:6:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1424:30:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9633,"nodeType":"IfStatement","src":"1420:125:45","trueBody":{"id":9632,"nodeType":"Block","src":"1456:89:45","statements":[{"errorCall":{"arguments":[{"expression":{"arguments":[{"id":9626,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1512:4:45","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$9984","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$9984","typeString":"library Address"}],"id":9625,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1504:7:45","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9624,"name":"address","nodeType":"ElementaryTypeName","src":"1504:7:45","typeDescriptions":{}}},"id":9627,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1504:13:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9628,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1518:7:45","memberName":"balance","nodeType":"MemberAccess","src":"1504:21:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9629,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9611,"src":"1527:6:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9621,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10749,"src":"1477:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$10749_$","typeString":"type(library Errors)"}},"id":9623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1484:19:45","memberName":"InsufficientBalance","nodeType":"MemberAccess","referencedDeclaration":10737,"src":"1477:26:45","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":9630,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1477:57:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9631,"nodeType":"RevertStatement","src":"1470:64:45"}]}},{"condition":{"arguments":[{"id":9636,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9609,"src":"1584:9:45","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},{"id":9637,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9611,"src":"1595:6:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"","id":9638,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1603:2:45","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"id":9634,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"1558:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1571:12:45","memberName":"callNoReturn","nodeType":"MemberAccess","referencedDeclaration":10783,"src":"1558:25:45","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory) returns (bool)"}},"id":9639,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1558:48:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9646,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9642,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"1695:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9643,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1708:14:45","memberName":"returnDataSize","nodeType":"MemberAccess","referencedDeclaration":10886,"src":"1695:27:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":9644,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1695:29:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9645,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1727:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1695:33:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":9658,"nodeType":"Block","src":"1788:51:45","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9653,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10749,"src":"1809:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$10749_$","typeString":"type(library Errors)"}},"id":9655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1816:10:45","memberName":"FailedCall","nodeType":"MemberAccess","referencedDeclaration":10740,"src":"1809:17:45","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9656,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1809:19:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9657,"nodeType":"RevertStatement","src":"1802:26:45"}]},"id":9659,"nodeType":"IfStatement","src":"1691:148:45","trueBody":{"id":9652,"nodeType":"Block","src":"1730:52:45","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9647,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"1744:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1757:12:45","memberName":"bubbleRevert","nodeType":"MemberAccess","referencedDeclaration":10900,"src":"1744:25:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$__$","typeString":"function () pure"}},"id":9650,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1744:27:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9651,"nodeType":"ExpressionStatement","src":"1744:27:45"}]}},"id":9660,"nodeType":"IfStatement","src":"1554:285:45","trueBody":{"id":9641,"nodeType":"Block","src":"1608:77:45","statements":[{"functionReturnParameters":9613,"id":9640,"nodeType":"Return","src":"1668:7:45"}]}}]},"documentation":{"id":9607,"nodeType":"StructuredDocumentation","src":"429:905:45","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":9662,"implemented":true,"kind":"function","modifiers":[],"name":"sendValue","nameLocation":"1348:9:45","nodeType":"FunctionDefinition","parameters":{"id":9612,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9609,"mutability":"mutable","name":"recipient","nameLocation":"1374:9:45","nodeType":"VariableDeclaration","scope":9662,"src":"1358:25:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":9608,"name":"address","nodeType":"ElementaryTypeName","src":"1358:15:45","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":9611,"mutability":"mutable","name":"amount","nameLocation":"1393:6:45","nodeType":"VariableDeclaration","scope":9662,"src":"1385:14:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9610,"name":"uint256","nodeType":"ElementaryTypeName","src":"1385:7:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1357:43:45"},"returnParameters":{"id":9613,"nodeType":"ParameterList","parameters":[],"src":"1410:0:45"},"scope":9984,"src":"1339:506:45","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9678,"nodeType":"Block","src":"2779:62:45","statements":[{"expression":{"arguments":[{"id":9673,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9665,"src":"2818:6:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9674,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9667,"src":"2826:4:45","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":9675,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2832:1:45","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":9672,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9766,"src":"2796:21:45","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":9676,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2796:38:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":9671,"id":9677,"nodeType":"Return","src":"2789:45:45"}]},"documentation":{"id":9663,"nodeType":"StructuredDocumentation","src":"1851:834:45","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":9679,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"2699:12:45","nodeType":"FunctionDefinition","parameters":{"id":9668,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9665,"mutability":"mutable","name":"target","nameLocation":"2720:6:45","nodeType":"VariableDeclaration","scope":9679,"src":"2712:14:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9664,"name":"address","nodeType":"ElementaryTypeName","src":"2712:7:45","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9667,"mutability":"mutable","name":"data","nameLocation":"2741:4:45","nodeType":"VariableDeclaration","scope":9679,"src":"2728:17:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9666,"name":"bytes","nodeType":"ElementaryTypeName","src":"2728:5:45","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2711:35:45"},"returnParameters":{"id":9671,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9670,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9679,"src":"2765:12:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9669,"name":"bytes","nodeType":"ElementaryTypeName","src":"2765:5:45","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2764:14:45"},"scope":9984,"src":"2690:151:45","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9765,"nodeType":"Block","src":"3278:583:45","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":9693,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3300:4:45","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$9984","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$9984","typeString":"library Address"}],"id":9692,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3292:7:45","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9691,"name":"address","nodeType":"ElementaryTypeName","src":"3292:7:45","typeDescriptions":{}}},"id":9694,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3292:13:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3306:7:45","memberName":"balance","nodeType":"MemberAccess","src":"3292:21:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":9696,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9686,"src":"3316:5:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3292:29:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9710,"nodeType":"IfStatement","src":"3288:123:45","trueBody":{"id":9709,"nodeType":"Block","src":"3323:88:45","statements":[{"errorCall":{"arguments":[{"expression":{"arguments":[{"id":9703,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3379:4:45","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$9984","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$9984","typeString":"library Address"}],"id":9702,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3371:7:45","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9701,"name":"address","nodeType":"ElementaryTypeName","src":"3371:7:45","typeDescriptions":{}}},"id":9704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3371:13:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9705,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3385:7:45","memberName":"balance","nodeType":"MemberAccess","src":"3371:21:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9706,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9686,"src":"3394:5:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9698,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10749,"src":"3344:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$10749_$","typeString":"type(library Errors)"}},"id":9700,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3351:19:45","memberName":"InsufficientBalance","nodeType":"MemberAccess","referencedDeclaration":10737,"src":"3344:26:45","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":9707,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3344:56:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9708,"nodeType":"RevertStatement","src":"3337:63:45"}]}},{"assignments":[9712],"declarations":[{"constant":false,"id":9712,"mutability":"mutable","name":"success","nameLocation":"3425:7:45","nodeType":"VariableDeclaration","scope":9765,"src":"3420:12:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9711,"name":"bool","nodeType":"ElementaryTypeName","src":"3420:4:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":9719,"initialValue":{"arguments":[{"id":9715,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9682,"src":"3461:6:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9716,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9686,"src":"3469:5:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9717,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"3476:4:45","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"}],"expression":{"id":9713,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"3435:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9714,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3448:12:45","memberName":"callNoReturn","nodeType":"MemberAccess","referencedDeclaration":10783,"src":"3435:25:45","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory) returns (bool)"}},"id":9718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3435:46:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"3420:61:45"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9733,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9720,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9712,"src":"3495:7:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9721,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"3507:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3520:14:45","memberName":"returnDataSize","nodeType":"MemberAccess","referencedDeclaration":10886,"src":"3507:27:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":9723,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3507:29:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9724,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3539:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3507:33:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":9726,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9682,"src":"3544:6:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3551:4:45","memberName":"code","nodeType":"MemberAccess","src":"3544:11:45","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9728,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3556:6:45","memberName":"length","nodeType":"MemberAccess","src":"3544:18:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9729,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3565:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3544:22:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3507:59:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":9732,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3506:61:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3495:72:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":9739,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9712,"src":"3636:7:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9745,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"3711:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3724:14:45","memberName":"returnDataSize","nodeType":"MemberAccess","referencedDeclaration":10886,"src":"3711:27:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":9747,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3711:29:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9748,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3743:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3711:33:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":9761,"nodeType":"Block","src":"3804:51:45","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9756,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10749,"src":"3825:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$10749_$","typeString":"type(library Errors)"}},"id":9758,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3832:10:45","memberName":"FailedCall","nodeType":"MemberAccess","referencedDeclaration":10740,"src":"3825:17:45","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9759,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3825:19:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9760,"nodeType":"RevertStatement","src":"3818:26:45"}]},"id":9762,"nodeType":"IfStatement","src":"3707:148:45","trueBody":{"id":9755,"nodeType":"Block","src":"3746:52:45","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9750,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"3760:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3773:12:45","memberName":"bubbleRevert","nodeType":"MemberAccess","referencedDeclaration":10900,"src":"3760:25:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$__$","typeString":"function () pure"}},"id":9753,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3760:27:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9754,"nodeType":"ExpressionStatement","src":"3760:27:45"}]}},"id":9763,"nodeType":"IfStatement","src":"3632:223:45","trueBody":{"id":9744,"nodeType":"Block","src":"3645:56:45","statements":[{"errorCall":{"arguments":[{"id":9741,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9682,"src":"3683:6:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9740,"name":"AddressEmptyCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9606,"src":"3666:16:45","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":9742,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3666:24:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9743,"nodeType":"RevertStatement","src":"3659:31:45"}]}},"id":9764,"nodeType":"IfStatement","src":"3491:364:45","trueBody":{"id":9738,"nodeType":"Block","src":"3569:57:45","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9734,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"3590:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3603:10:45","memberName":"returnData","nodeType":"MemberAccess","referencedDeclaration":10894,"src":"3590:23:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9736,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3590:25:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":9690,"id":9737,"nodeType":"Return","src":"3583:32:45"}]}}]},"documentation":{"id":9680,"nodeType":"StructuredDocumentation","src":"2847:313:45","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":9766,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"3174:21:45","nodeType":"FunctionDefinition","parameters":{"id":9687,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9682,"mutability":"mutable","name":"target","nameLocation":"3204:6:45","nodeType":"VariableDeclaration","scope":9766,"src":"3196:14:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9681,"name":"address","nodeType":"ElementaryTypeName","src":"3196:7:45","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9684,"mutability":"mutable","name":"data","nameLocation":"3225:4:45","nodeType":"VariableDeclaration","scope":9766,"src":"3212:17:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9683,"name":"bytes","nodeType":"ElementaryTypeName","src":"3212:5:45","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":9686,"mutability":"mutable","name":"value","nameLocation":"3239:5:45","nodeType":"VariableDeclaration","scope":9766,"src":"3231:13:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9685,"name":"uint256","nodeType":"ElementaryTypeName","src":"3231:7:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3195:50:45"},"returnParameters":{"id":9690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9689,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9766,"src":"3264:12:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9688,"name":"bytes","nodeType":"ElementaryTypeName","src":"3264:5:45","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3263:14:45"},"scope":9984,"src":"3165:696:45","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9829,"nodeType":"Block","src":"4100:450:45","statements":[{"assignments":[9777],"declarations":[{"constant":false,"id":9777,"mutability":"mutable","name":"success","nameLocation":"4115:7:45","nodeType":"VariableDeclaration","scope":9829,"src":"4110:12:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9776,"name":"bool","nodeType":"ElementaryTypeName","src":"4110:4:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":9783,"initialValue":{"arguments":[{"id":9780,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9769,"src":"4157:6:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9781,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9771,"src":"4165:4:45","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9778,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"4125:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4138:18:45","memberName":"staticcallNoReturn","nodeType":"MemberAccess","referencedDeclaration":10834,"src":"4125:31:45","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,bytes memory) view returns (bool)"}},"id":9782,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4125:45:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4110:60:45"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9784,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9777,"src":"4184:7:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9785,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"4196:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4209:14:45","memberName":"returnDataSize","nodeType":"MemberAccess","referencedDeclaration":10886,"src":"4196:27:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":9787,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4196:29:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9788,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4228:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4196:33:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":9790,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9769,"src":"4233:6:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9791,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4240:4:45","memberName":"code","nodeType":"MemberAccess","src":"4233:11:45","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9792,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4245:6:45","memberName":"length","nodeType":"MemberAccess","src":"4233:18:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9793,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4254:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4233:22:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4196:59:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":9796,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4195:61:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4184:72:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":9803,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9777,"src":"4325:7:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9809,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"4400:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9810,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4413:14:45","memberName":"returnDataSize","nodeType":"MemberAccess","referencedDeclaration":10886,"src":"4400:27:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":9811,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4400:29:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9812,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4432:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4400:33:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":9825,"nodeType":"Block","src":"4493:51:45","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9820,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10749,"src":"4514:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$10749_$","typeString":"type(library Errors)"}},"id":9822,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4521:10:45","memberName":"FailedCall","nodeType":"MemberAccess","referencedDeclaration":10740,"src":"4514:17:45","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4514:19:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9824,"nodeType":"RevertStatement","src":"4507:26:45"}]},"id":9826,"nodeType":"IfStatement","src":"4396:148:45","trueBody":{"id":9819,"nodeType":"Block","src":"4435:52:45","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9814,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"4449:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9816,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4462:12:45","memberName":"bubbleRevert","nodeType":"MemberAccess","referencedDeclaration":10900,"src":"4449:25:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$__$","typeString":"function () pure"}},"id":9817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4449:27:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9818,"nodeType":"ExpressionStatement","src":"4449:27:45"}]}},"id":9827,"nodeType":"IfStatement","src":"4321:223:45","trueBody":{"id":9808,"nodeType":"Block","src":"4334:56:45","statements":[{"errorCall":{"arguments":[{"id":9805,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9769,"src":"4372:6:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9804,"name":"AddressEmptyCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9606,"src":"4355:16:45","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":9806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4355:24:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9807,"nodeType":"RevertStatement","src":"4348:31:45"}]}},"id":9828,"nodeType":"IfStatement","src":"4180:364:45","trueBody":{"id":9802,"nodeType":"Block","src":"4258:57:45","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9798,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"4279:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9799,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4292:10:45","memberName":"returnData","nodeType":"MemberAccess","referencedDeclaration":10894,"src":"4279:23:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9800,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4279:25:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":9775,"id":9801,"nodeType":"Return","src":"4272:32:45"}]}}]},"documentation":{"id":9767,"nodeType":"StructuredDocumentation","src":"3867:128:45","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call."},"id":9830,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"4009:18:45","nodeType":"FunctionDefinition","parameters":{"id":9772,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9769,"mutability":"mutable","name":"target","nameLocation":"4036:6:45","nodeType":"VariableDeclaration","scope":9830,"src":"4028:14:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9768,"name":"address","nodeType":"ElementaryTypeName","src":"4028:7:45","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9771,"mutability":"mutable","name":"data","nameLocation":"4057:4:45","nodeType":"VariableDeclaration","scope":9830,"src":"4044:17:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9770,"name":"bytes","nodeType":"ElementaryTypeName","src":"4044:5:45","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4027:35:45"},"returnParameters":{"id":9775,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9774,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9830,"src":"4086:12:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9773,"name":"bytes","nodeType":"ElementaryTypeName","src":"4086:5:45","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4085:14:45"},"scope":9984,"src":"4000:550:45","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9893,"nodeType":"Block","src":"4788:452:45","statements":[{"assignments":[9841],"declarations":[{"constant":false,"id":9841,"mutability":"mutable","name":"success","nameLocation":"4803:7:45","nodeType":"VariableDeclaration","scope":9893,"src":"4798:12:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9840,"name":"bool","nodeType":"ElementaryTypeName","src":"4798:4:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":9847,"initialValue":{"arguments":[{"id":9844,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9833,"src":"4847:6:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9845,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9835,"src":"4855:4:45","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9842,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"4813:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9843,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4826:20:45","memberName":"delegatecallNoReturn","nodeType":"MemberAccess","referencedDeclaration":10862,"src":"4813:33:45","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,bytes memory) returns (bool)"}},"id":9846,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4813:47:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4798:62:45"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9848,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9841,"src":"4874:7:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9849,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"4886:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9850,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4899:14:45","memberName":"returnDataSize","nodeType":"MemberAccess","referencedDeclaration":10886,"src":"4886:27:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":9851,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4886:29:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9852,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4918:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4886:33:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9858,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":9854,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9833,"src":"4923:6:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4930:4:45","memberName":"code","nodeType":"MemberAccess","src":"4923:11:45","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4935:6:45","memberName":"length","nodeType":"MemberAccess","src":"4923:18:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9857,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4944:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4923:22:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4886:59:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":9860,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4885:61:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4874:72:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":9867,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9841,"src":"5015:7:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9877,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9873,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"5090:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5103:14:45","memberName":"returnDataSize","nodeType":"MemberAccess","referencedDeclaration":10886,"src":"5090:27:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":9875,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5090:29:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9876,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5122:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5090:33:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":9889,"nodeType":"Block","src":"5183:51:45","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9884,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10749,"src":"5204:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$10749_$","typeString":"type(library Errors)"}},"id":9886,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5211:10:45","memberName":"FailedCall","nodeType":"MemberAccess","referencedDeclaration":10740,"src":"5204:17:45","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9887,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5204:19:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9888,"nodeType":"RevertStatement","src":"5197:26:45"}]},"id":9890,"nodeType":"IfStatement","src":"5086:148:45","trueBody":{"id":9883,"nodeType":"Block","src":"5125:52:45","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9878,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"5139:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9880,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5152:12:45","memberName":"bubbleRevert","nodeType":"MemberAccess","referencedDeclaration":10900,"src":"5139:25:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$__$","typeString":"function () pure"}},"id":9881,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5139:27:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9882,"nodeType":"ExpressionStatement","src":"5139:27:45"}]}},"id":9891,"nodeType":"IfStatement","src":"5011:223:45","trueBody":{"id":9872,"nodeType":"Block","src":"5024:56:45","statements":[{"errorCall":{"arguments":[{"id":9869,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9833,"src":"5062:6:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9868,"name":"AddressEmptyCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9606,"src":"5045:16:45","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":9870,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5045:24:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9871,"nodeType":"RevertStatement","src":"5038:31:45"}]}},"id":9892,"nodeType":"IfStatement","src":"4870:364:45","trueBody":{"id":9866,"nodeType":"Block","src":"4948:57:45","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9862,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"4969:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9863,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4982:10:45","memberName":"returnData","nodeType":"MemberAccess","referencedDeclaration":10894,"src":"4969:23:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4969:25:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":9839,"id":9865,"nodeType":"Return","src":"4962:32:45"}]}}]},"documentation":{"id":9831,"nodeType":"StructuredDocumentation","src":"4556:130:45","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call."},"id":9894,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"4700:20:45","nodeType":"FunctionDefinition","parameters":{"id":9836,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9833,"mutability":"mutable","name":"target","nameLocation":"4729:6:45","nodeType":"VariableDeclaration","scope":9894,"src":"4721:14:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9832,"name":"address","nodeType":"ElementaryTypeName","src":"4721:7:45","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9835,"mutability":"mutable","name":"data","nameLocation":"4750:4:45","nodeType":"VariableDeclaration","scope":9894,"src":"4737:17:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9834,"name":"bytes","nodeType":"ElementaryTypeName","src":"4737:5:45","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4720:35:45"},"returnParameters":{"id":9839,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9838,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9894,"src":"4774:12:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9837,"name":"bytes","nodeType":"ElementaryTypeName","src":"4774:5:45","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4773:14:45"},"scope":9984,"src":"4691:549:45","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9948,"nodeType":"Block","src":"5760:513:45","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9906,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9899,"src":"5936:7:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9916,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9910,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9907,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9901,"src":"5948:10:45","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9908,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5959:6:45","memberName":"length","nodeType":"MemberAccess","src":"5948:17:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9909,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5968:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5948:21:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":9911,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9897,"src":"5973:6:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9912,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5980:4:45","memberName":"code","nodeType":"MemberAccess","src":"5973:11:45","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9913,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5985:6:45","memberName":"length","nodeType":"MemberAccess","src":"5973:18:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9914,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5994:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5973:22:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5948:47:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":9917,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5947:49:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5936:60:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":9922,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9899,"src":"6050:7:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9931,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9928,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9901,"src":"6125:10:45","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9929,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6136:6:45","memberName":"length","nodeType":"MemberAccess","src":"6125:17:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9930,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6145:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6125:21:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":9944,"nodeType":"Block","src":"6216:51:45","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9939,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10749,"src":"6237:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$10749_$","typeString":"type(library Errors)"}},"id":9941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6244:10:45","memberName":"FailedCall","nodeType":"MemberAccess","referencedDeclaration":10740,"src":"6237:17:45","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9942,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6237:19:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9943,"nodeType":"RevertStatement","src":"6230:26:45"}]},"id":9945,"nodeType":"IfStatement","src":"6121:146:45","trueBody":{"id":9938,"nodeType":"Block","src":"6148:62:45","statements":[{"expression":{"arguments":[{"id":9935,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9901,"src":"6188:10:45","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9932,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"6162:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6175:12:45","memberName":"bubbleRevert","nodeType":"MemberAccess","referencedDeclaration":10907,"src":"6162:25:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":9936,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6162:37:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9937,"nodeType":"ExpressionStatement","src":"6162:37:45"}]}},"id":9946,"nodeType":"IfStatement","src":"6046:221:45","trueBody":{"id":9927,"nodeType":"Block","src":"6059:56:45","statements":[{"errorCall":{"arguments":[{"id":9924,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9897,"src":"6097:6:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9923,"name":"AddressEmptyCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9606,"src":"6080:16:45","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":9925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6080:24:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9926,"nodeType":"RevertStatement","src":"6073:31:45"}]}},"id":9947,"nodeType":"IfStatement","src":"5932:335:45","trueBody":{"id":9921,"nodeType":"Block","src":"5998:42:45","statements":[{"expression":{"id":9919,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9901,"src":"6019:10:45","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":9905,"id":9920,"nodeType":"Return","src":"6012:17:45"}]}}]},"documentation":{"id":9895,"nodeType":"StructuredDocumentation","src":"5246:351:45","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.\n NOTE: This function is DEPRECATED and may be removed in the next major release."},"id":9949,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResultFromTarget","nameLocation":"5611:26:45","nodeType":"FunctionDefinition","parameters":{"id":9902,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9897,"mutability":"mutable","name":"target","nameLocation":"5655:6:45","nodeType":"VariableDeclaration","scope":9949,"src":"5647:14:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9896,"name":"address","nodeType":"ElementaryTypeName","src":"5647:7:45","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9899,"mutability":"mutable","name":"success","nameLocation":"5676:7:45","nodeType":"VariableDeclaration","scope":9949,"src":"5671:12:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9898,"name":"bool","nodeType":"ElementaryTypeName","src":"5671:4:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9901,"mutability":"mutable","name":"returndata","nameLocation":"5706:10:45","nodeType":"VariableDeclaration","scope":9949,"src":"5693:23:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9900,"name":"bytes","nodeType":"ElementaryTypeName","src":"5693:5:45","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5637:85:45"},"returnParameters":{"id":9905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9904,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9949,"src":"5746:12:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9903,"name":"bytes","nodeType":"ElementaryTypeName","src":"5746:5:45","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5745:14:45"},"scope":9984,"src":"5602:671:45","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9982,"nodeType":"Block","src":"6577:223:45","statements":[{"condition":{"id":9959,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9952,"src":"6591:7:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9966,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9963,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9954,"src":"6652:10:45","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6663:6:45","memberName":"length","nodeType":"MemberAccess","src":"6652:17:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9965,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6672:1:45","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6652:21:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":9979,"nodeType":"Block","src":"6743:51:45","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9974,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10749,"src":"6764:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$10749_$","typeString":"type(library Errors)"}},"id":9976,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6771:10:45","memberName":"FailedCall","nodeType":"MemberAccess","referencedDeclaration":10740,"src":"6764:17:45","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9977,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6764:19:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9978,"nodeType":"RevertStatement","src":"6757:26:45"}]},"id":9980,"nodeType":"IfStatement","src":"6648:146:45","trueBody":{"id":9973,"nodeType":"Block","src":"6675:62:45","statements":[{"expression":{"arguments":[{"id":9970,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9954,"src":"6715:10:45","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9967,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"6689:12:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$10908_$","typeString":"type(library LowLevelCall)"}},"id":9969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6702:12:45","memberName":"bubbleRevert","nodeType":"MemberAccess","referencedDeclaration":10907,"src":"6689:25:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":9971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6689:37:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9972,"nodeType":"ExpressionStatement","src":"6689:37:45"}]}},"id":9981,"nodeType":"IfStatement","src":"6587:207:45","trueBody":{"id":9962,"nodeType":"Block","src":"6600:42:45","statements":[{"expression":{"id":9960,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9954,"src":"6621:10:45","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":9958,"id":9961,"nodeType":"Return","src":"6614:17:45"}]}}]},"documentation":{"id":9950,"nodeType":"StructuredDocumentation","src":"6279:191:45","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":9983,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResult","nameLocation":"6484:16:45","nodeType":"FunctionDefinition","parameters":{"id":9955,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9952,"mutability":"mutable","name":"success","nameLocation":"6506:7:45","nodeType":"VariableDeclaration","scope":9983,"src":"6501:12:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9951,"name":"bool","nodeType":"ElementaryTypeName","src":"6501:4:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9954,"mutability":"mutable","name":"returndata","nameLocation":"6528:10:45","nodeType":"VariableDeclaration","scope":9983,"src":"6515:23:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9953,"name":"bytes","nodeType":"ElementaryTypeName","src":"6515:5:45","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6500:39:45"},"returnParameters":{"id":9958,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9957,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9983,"src":"6563:12:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9956,"name":"bytes","nodeType":"ElementaryTypeName","src":"6563:5:45","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6562:14:45"},"scope":9984,"src":"6475:325:45","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":9985,"src":"282:6520:45","usedErrors":[9606],"usedEvents":[]}],"src":"101:6702:45"},"id":45},"@openzeppelin/contracts/utils/Bytes.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Bytes.sol","exportedSymbols":{"Bytes":[10697],"Math":[15914]},"id":10698,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9986,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"99:24:46"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"./math/Math.sol","id":9988,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10698,"sourceUnit":15915,"src":"125:37:46","symbolAliases":[{"foreign":{"id":9987,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"133:4:46","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Bytes","contractDependencies":[],"contractKind":"library","documentation":{"id":9989,"nodeType":"StructuredDocumentation","src":"164:33:46","text":" @dev Bytes operations."},"fullyImplemented":true,"id":10697,"linearizedBaseContracts":[10697],"name":"Bytes","nameLocation":"206:5:46","nodeType":"ContractDefinition","nodes":[{"body":{"id":10005,"nodeType":"Block","src":"687:45:46","statements":[{"expression":{"arguments":[{"id":10000,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9992,"src":"712:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10001,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9994,"src":"720:1:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},{"hexValue":"30","id":10002,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"723: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_bytes1","typeString":"bytes1"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":9999,"name":"indexOf","nodeType":"Identifier","overloadedDeclarations":[10006,10055],"referencedDeclaration":10055,"src":"704:7:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_bytes1_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bytes memory,bytes1,uint256) pure returns (uint256)"}},"id":10003,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"704:21:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9998,"id":10004,"nodeType":"Return","src":"697:28:46"}]},"documentation":{"id":9990,"nodeType":"StructuredDocumentation","src":"218:384:46","text":" @dev Forward search for `s` in `buffer`\n * If `s` is present in the buffer, returns the index of the first instance\n * If `s` is not present in the buffer, returns type(uint256).max\n NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf[Javascript's `Array.indexOf`]"},"id":10006,"implemented":true,"kind":"function","modifiers":[],"name":"indexOf","nameLocation":"616:7:46","nodeType":"FunctionDefinition","parameters":{"id":9995,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9992,"mutability":"mutable","name":"buffer","nameLocation":"637:6:46","nodeType":"VariableDeclaration","scope":10006,"src":"624:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9991,"name":"bytes","nodeType":"ElementaryTypeName","src":"624:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":9994,"mutability":"mutable","name":"s","nameLocation":"652:1:46","nodeType":"VariableDeclaration","scope":10006,"src":"645:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":9993,"name":"bytes1","nodeType":"ElementaryTypeName","src":"645:6:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"623:31:46"},"returnParameters":{"id":9998,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9997,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10006,"src":"678:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9996,"name":"uint256","nodeType":"ElementaryTypeName","src":"678:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"677:9:46"},"scope":10697,"src":"607:125:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10054,"nodeType":"Block","src":"1286:246:46","statements":[{"assignments":[10019],"declarations":[{"constant":false,"id":10019,"mutability":"mutable","name":"length","nameLocation":"1304:6:46","nodeType":"VariableDeclaration","scope":10054,"src":"1296:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10018,"name":"uint256","nodeType":"ElementaryTypeName","src":"1296:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10022,"initialValue":{"expression":{"id":10020,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10009,"src":"1313:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1320:6:46","memberName":"length","nodeType":"MemberAccess","src":"1313:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1296:30:46"},{"body":{"id":10046,"nodeType":"Block","src":"1375:117:46","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":10041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":10036,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10009,"src":"1423:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10037,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10024,"src":"1431:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10035,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10696,"src":"1400:22:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":10038,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1400:33:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":10034,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1393:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":10033,"name":"bytes1","nodeType":"ElementaryTypeName","src":"1393:6:46","typeDescriptions":{}}},"id":10039,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1393:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":10040,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10011,"src":"1438:1:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"1393:46:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10045,"nodeType":"IfStatement","src":"1389:93:46","trueBody":{"id":10044,"nodeType":"Block","src":"1441:41:46","statements":[{"expression":{"id":10042,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10024,"src":"1466:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10017,"id":10043,"nodeType":"Return","src":"1459:8:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10027,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10024,"src":"1358:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":10028,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10019,"src":"1362:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1358:10:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10047,"initializationExpression":{"assignments":[10024],"declarations":[{"constant":false,"id":10024,"mutability":"mutable","name":"i","nameLocation":"1349:1:46","nodeType":"VariableDeclaration","scope":10047,"src":"1341:9:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10023,"name":"uint256","nodeType":"ElementaryTypeName","src":"1341:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10026,"initialValue":{"id":10025,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10013,"src":"1353:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1341:15:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":10031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"1370:3:46","subExpression":{"id":10030,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10024,"src":"1372:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10032,"nodeType":"ExpressionStatement","src":"1370:3:46"},"nodeType":"ForStatement","src":"1336:156:46"},{"expression":{"expression":{"arguments":[{"id":10050,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1513:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":10049,"name":"uint256","nodeType":"ElementaryTypeName","src":"1513:7:46","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":10048,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1508:4:46","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10051,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1508:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":10052,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1522:3:46","memberName":"max","nodeType":"MemberAccess","src":"1508:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10017,"id":10053,"nodeType":"Return","src":"1501:24:46"}]},"documentation":{"id":10007,"nodeType":"StructuredDocumentation","src":"738:450:46","text":" @dev Forward search for `s` in `buffer` starting at position `pos`\n * If `s` is present in the buffer (at or after `pos`), returns the index of the next instance\n * If `s` is not present in the buffer (at or after `pos`), returns type(uint256).max\n NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf[Javascript's `Array.indexOf`]"},"id":10055,"implemented":true,"kind":"function","modifiers":[],"name":"indexOf","nameLocation":"1202:7:46","nodeType":"FunctionDefinition","parameters":{"id":10014,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10009,"mutability":"mutable","name":"buffer","nameLocation":"1223:6:46","nodeType":"VariableDeclaration","scope":10055,"src":"1210:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10008,"name":"bytes","nodeType":"ElementaryTypeName","src":"1210:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10011,"mutability":"mutable","name":"s","nameLocation":"1238:1:46","nodeType":"VariableDeclaration","scope":10055,"src":"1231:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":10010,"name":"bytes1","nodeType":"ElementaryTypeName","src":"1231:6:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":10013,"mutability":"mutable","name":"pos","nameLocation":"1249:3:46","nodeType":"VariableDeclaration","scope":10055,"src":"1241:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10012,"name":"uint256","nodeType":"ElementaryTypeName","src":"1241:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1209:44:46"},"returnParameters":{"id":10017,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10016,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10055,"src":"1277:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10015,"name":"uint256","nodeType":"ElementaryTypeName","src":"1277:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1276:9:46"},"scope":10697,"src":"1193:339:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10075,"nodeType":"Block","src":"2019:65:46","statements":[{"expression":{"arguments":[{"id":10066,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10058,"src":"2048:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10067,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10060,"src":"2056:1:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},{"expression":{"arguments":[{"id":10070,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2064:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":10069,"name":"uint256","nodeType":"ElementaryTypeName","src":"2064:7:46","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":10068,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2059:4:46","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10071,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2059:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":10072,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2073:3:46","memberName":"max","nodeType":"MemberAccess","src":"2059:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes1","typeString":"bytes1"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10065,"name":"lastIndexOf","nodeType":"Identifier","overloadedDeclarations":[10076,10138],"referencedDeclaration":10138,"src":"2036:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_bytes1_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bytes memory,bytes1,uint256) pure returns (uint256)"}},"id":10073,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2036:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10064,"id":10074,"nodeType":"Return","src":"2029:48:46"}]},"documentation":{"id":10056,"nodeType":"StructuredDocumentation","src":"1538:392:46","text":" @dev Backward search for `s` in `buffer`\n * If `s` is present in the buffer, returns the index of the last instance\n * If `s` is not present in the buffer, returns type(uint256).max\n NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf[Javascript's `Array.lastIndexOf`]"},"id":10076,"implemented":true,"kind":"function","modifiers":[],"name":"lastIndexOf","nameLocation":"1944:11:46","nodeType":"FunctionDefinition","parameters":{"id":10061,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10058,"mutability":"mutable","name":"buffer","nameLocation":"1969:6:46","nodeType":"VariableDeclaration","scope":10076,"src":"1956:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10057,"name":"bytes","nodeType":"ElementaryTypeName","src":"1956:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10060,"mutability":"mutable","name":"s","nameLocation":"1984:1:46","nodeType":"VariableDeclaration","scope":10076,"src":"1977:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":10059,"name":"bytes1","nodeType":"ElementaryTypeName","src":"1977:6:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"1955:31:46"},"returnParameters":{"id":10064,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10063,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10076,"src":"2010:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10062,"name":"uint256","nodeType":"ElementaryTypeName","src":"2010:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2009:9:46"},"scope":10697,"src":"1935:149:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10137,"nodeType":"Block","src":"2657:348:46","statements":[{"id":10136,"nodeType":"UncheckedBlock","src":"2667:332:46","statements":[{"assignments":[10089],"declarations":[{"constant":false,"id":10089,"mutability":"mutable","name":"length","nameLocation":"2699:6:46","nodeType":"VariableDeclaration","scope":10136,"src":"2691:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10088,"name":"uint256","nodeType":"ElementaryTypeName","src":"2691:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10092,"initialValue":{"expression":{"id":10090,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10079,"src":"2708:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2715:6:46","memberName":"length","nodeType":"MemberAccess","src":"2708:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2691:30:46"},{"body":{"id":10128,"nodeType":"Block","src":"2810:141:46","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":10121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":10114,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10079,"src":"2862:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10117,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10115,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10094,"src":"2870:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10116,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2874:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2870:5:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10113,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10696,"src":"2839:22:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":10118,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2839:37:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":10112,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2832:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":10111,"name":"bytes1","nodeType":"ElementaryTypeName","src":"2832:6:46","typeDescriptions":{}}},"id":10119,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2832:45:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":10120,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10081,"src":"2881:1:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"2832:50:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10127,"nodeType":"IfStatement","src":"2828:109:46","trueBody":{"id":10126,"nodeType":"Block","src":"2884:53:46","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10122,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10094,"src":"2913:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10123,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2917:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2913:5:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10087,"id":10125,"nodeType":"Return","src":"2906:12:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10107,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10105,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10094,"src":"2798:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":10106,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2802:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2798:5:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10129,"initializationExpression":{"assignments":[10094],"declarations":[{"constant":false,"id":10094,"mutability":"mutable","name":"i","nameLocation":"2748:1:46","nodeType":"VariableDeclaration","scope":10129,"src":"2740:9:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10093,"name":"uint256","nodeType":"ElementaryTypeName","src":"2740:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10104,"initialValue":{"arguments":[{"arguments":[{"id":10099,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10083,"src":"2780:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"31","id":10100,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2785:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"expression":{"id":10097,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"2761:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":10098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2766:13:46","memberName":"saturatingAdd","nodeType":"MemberAccess","referencedDeclaration":14484,"src":"2761:18:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":10101,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2761:26:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10102,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10089,"src":"2789:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":10095,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"2752:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":10096,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2757:3:46","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":14599,"src":"2752:8:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":10103,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2752:44:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2740:56:46"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":10109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"2805:3:46","subExpression":{"id":10108,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10094,"src":"2807:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10110,"nodeType":"ExpressionStatement","src":"2805:3:46"},"nodeType":"ForStatement","src":"2735:216:46"},{"expression":{"expression":{"arguments":[{"id":10132,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2976:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":10131,"name":"uint256","nodeType":"ElementaryTypeName","src":"2976:7:46","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":10130,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2971:4:46","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10133,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2971:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":10134,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2985:3:46","memberName":"max","nodeType":"MemberAccess","src":"2971:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10087,"id":10135,"nodeType":"Return","src":"2964:24:46"}]}]},"documentation":{"id":10077,"nodeType":"StructuredDocumentation","src":"2090:465:46","text":" @dev Backward search for `s` in `buffer` starting at position `pos`\n * If `s` is present in the buffer (at or before `pos`), returns the index of the previous instance\n * If `s` is not present in the buffer (at or before `pos`), returns type(uint256).max\n NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf[Javascript's `Array.lastIndexOf`]"},"id":10138,"implemented":true,"kind":"function","modifiers":[],"name":"lastIndexOf","nameLocation":"2569:11:46","nodeType":"FunctionDefinition","parameters":{"id":10084,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10079,"mutability":"mutable","name":"buffer","nameLocation":"2594:6:46","nodeType":"VariableDeclaration","scope":10138,"src":"2581:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10078,"name":"bytes","nodeType":"ElementaryTypeName","src":"2581:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10081,"mutability":"mutable","name":"s","nameLocation":"2609:1:46","nodeType":"VariableDeclaration","scope":10138,"src":"2602:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":10080,"name":"bytes1","nodeType":"ElementaryTypeName","src":"2602:6:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":10083,"mutability":"mutable","name":"pos","nameLocation":"2620:3:46","nodeType":"VariableDeclaration","scope":10138,"src":"2612:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10082,"name":"uint256","nodeType":"ElementaryTypeName","src":"2612:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2580:44:46"},"returnParameters":{"id":10087,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10086,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10138,"src":"2648:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10085,"name":"uint256","nodeType":"ElementaryTypeName","src":"2648:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2647:9:46"},"scope":10697,"src":"2560:445:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10155,"nodeType":"Block","src":"3416:59:46","statements":[{"expression":{"arguments":[{"id":10149,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10141,"src":"3439:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10150,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10143,"src":"3447:5:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":10151,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10141,"src":"3454:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3461:6:46","memberName":"length","nodeType":"MemberAccess","src":"3454:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10148,"name":"slice","nodeType":"Identifier","overloadedDeclarations":[10156,10198],"referencedDeclaration":10198,"src":"3433:5:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (bytes memory,uint256,uint256) pure returns (bytes memory)"}},"id":10153,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3433:35:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":10147,"id":10154,"nodeType":"Return","src":"3426:42:46"}]},"documentation":{"id":10139,"nodeType":"StructuredDocumentation","src":"3011:312:46","text":" @dev Copies the content of `buffer`, from `start` (included) to the end of `buffer` into a new bytes object in\n memory.\n NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice[Javascript's `Array.slice`]"},"id":10156,"implemented":true,"kind":"function","modifiers":[],"name":"slice","nameLocation":"3337:5:46","nodeType":"FunctionDefinition","parameters":{"id":10144,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10141,"mutability":"mutable","name":"buffer","nameLocation":"3356:6:46","nodeType":"VariableDeclaration","scope":10156,"src":"3343:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10140,"name":"bytes","nodeType":"ElementaryTypeName","src":"3343:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10143,"mutability":"mutable","name":"start","nameLocation":"3372:5:46","nodeType":"VariableDeclaration","scope":10156,"src":"3364:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10142,"name":"uint256","nodeType":"ElementaryTypeName","src":"3364:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3342:36:46"},"returnParameters":{"id":10147,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10146,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10156,"src":"3402:12:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10145,"name":"bytes","nodeType":"ElementaryTypeName","src":"3402:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3401:14:46"},"scope":10697,"src":"3328:147:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10197,"nodeType":"Block","src":"3959:347:46","statements":[{"expression":{"id":10175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10168,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10163,"src":"3989:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":10171,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10163,"src":"4004:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":10172,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10159,"src":"4009:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4016:6:46","memberName":"length","nodeType":"MemberAccess","src":"4009:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":10169,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"3995:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":10170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4000:3:46","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":14599,"src":"3995:8:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":10174,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3995:28:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3989:34:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10176,"nodeType":"ExpressionStatement","src":"3989:34:46"},{"expression":{"id":10183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10177,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10161,"src":"4033:5:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":10180,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10161,"src":"4050:5:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10181,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10163,"src":"4057:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":10178,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"4041:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":10179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4046:3:46","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":14599,"src":"4041:8:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":10182,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4041:20:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4033:28:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10184,"nodeType":"ExpressionStatement","src":"4033:28:46"},{"assignments":[10186],"declarations":[{"constant":false,"id":10186,"mutability":"mutable","name":"result","nameLocation":"4114:6:46","nodeType":"VariableDeclaration","scope":10197,"src":"4101:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10185,"name":"bytes","nodeType":"ElementaryTypeName","src":"4101:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10193,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10189,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10163,"src":"4133:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":10190,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10161,"src":"4139:5:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4133:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10188,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"4123:9:46","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":10187,"name":"bytes","nodeType":"ElementaryTypeName","src":"4127:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":10192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4123:22:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"4101:44:46"},{"AST":{"nativeSrc":"4180:96:46","nodeType":"YulBlock","src":"4180:96:46","statements":[{"expression":{"arguments":[{"arguments":[{"name":"result","nativeSrc":"4204:6:46","nodeType":"YulIdentifier","src":"4204:6:46"},{"kind":"number","nativeSrc":"4212:4:46","nodeType":"YulLiteral","src":"4212:4:46","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4200:3:46","nodeType":"YulIdentifier","src":"4200:3:46"},"nativeSrc":"4200:17:46","nodeType":"YulFunctionCall","src":"4200:17:46"},{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"4227:6:46","nodeType":"YulIdentifier","src":"4227:6:46"},{"kind":"number","nativeSrc":"4235:4:46","nodeType":"YulLiteral","src":"4235:4:46","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4223:3:46","nodeType":"YulIdentifier","src":"4223:3:46"},"nativeSrc":"4223:17:46","nodeType":"YulFunctionCall","src":"4223:17:46"},{"name":"start","nativeSrc":"4242:5:46","nodeType":"YulIdentifier","src":"4242:5:46"}],"functionName":{"name":"add","nativeSrc":"4219:3:46","nodeType":"YulIdentifier","src":"4219:3:46"},"nativeSrc":"4219:29:46","nodeType":"YulFunctionCall","src":"4219:29:46"},{"arguments":[{"name":"end","nativeSrc":"4254:3:46","nodeType":"YulIdentifier","src":"4254:3:46"},{"name":"start","nativeSrc":"4259:5:46","nodeType":"YulIdentifier","src":"4259:5:46"}],"functionName":{"name":"sub","nativeSrc":"4250:3:46","nodeType":"YulIdentifier","src":"4250:3:46"},"nativeSrc":"4250:15:46","nodeType":"YulFunctionCall","src":"4250:15:46"}],"functionName":{"name":"mcopy","nativeSrc":"4194:5:46","nodeType":"YulIdentifier","src":"4194:5:46"},"nativeSrc":"4194:72:46","nodeType":"YulFunctionCall","src":"4194:72:46"},"nativeSrc":"4194:72:46","nodeType":"YulExpressionStatement","src":"4194:72:46"}]},"evmVersion":"prague","externalReferences":[{"declaration":10159,"isOffset":false,"isSlot":false,"src":"4227:6:46","valueSize":1},{"declaration":10163,"isOffset":false,"isSlot":false,"src":"4254:3:46","valueSize":1},{"declaration":10186,"isOffset":false,"isSlot":false,"src":"4204:6:46","valueSize":1},{"declaration":10161,"isOffset":false,"isSlot":false,"src":"4242:5:46","valueSize":1},{"declaration":10161,"isOffset":false,"isSlot":false,"src":"4259:5:46","valueSize":1}],"flags":["memory-safe"],"id":10194,"nodeType":"InlineAssembly","src":"4155:121:46"},{"expression":{"id":10195,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10186,"src":"4293:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":10167,"id":10196,"nodeType":"Return","src":"4286:13:46"}]},"documentation":{"id":10157,"nodeType":"StructuredDocumentation","src":"3481:372:46","text":" @dev Copies the content of `buffer`, from `start` (included) to `end` (excluded) into a new bytes object in\n memory. The `end` argument is truncated to the length of the `buffer`.\n NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice[Javascript's `Array.slice`]"},"id":10198,"implemented":true,"kind":"function","modifiers":[],"name":"slice","nameLocation":"3867:5:46","nodeType":"FunctionDefinition","parameters":{"id":10164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10159,"mutability":"mutable","name":"buffer","nameLocation":"3886:6:46","nodeType":"VariableDeclaration","scope":10198,"src":"3873:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10158,"name":"bytes","nodeType":"ElementaryTypeName","src":"3873:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10161,"mutability":"mutable","name":"start","nameLocation":"3902:5:46","nodeType":"VariableDeclaration","scope":10198,"src":"3894:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10160,"name":"uint256","nodeType":"ElementaryTypeName","src":"3894:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10163,"mutability":"mutable","name":"end","nameLocation":"3917:3:46","nodeType":"VariableDeclaration","scope":10198,"src":"3909:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10162,"name":"uint256","nodeType":"ElementaryTypeName","src":"3909:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3872:49:46"},"returnParameters":{"id":10167,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10166,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10198,"src":"3945:12:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10165,"name":"bytes","nodeType":"ElementaryTypeName","src":"3945:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3944:14:46"},"scope":10697,"src":"3858:448:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10215,"nodeType":"Block","src":"4837:60:46","statements":[{"expression":{"arguments":[{"id":10209,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10201,"src":"4861:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10210,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10203,"src":"4869:5:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":10211,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10201,"src":"4876:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4883:6:46","memberName":"length","nodeType":"MemberAccess","src":"4876:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10208,"name":"splice","nodeType":"Identifier","overloadedDeclarations":[10216,10249],"referencedDeclaration":10249,"src":"4854:6:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (bytes memory,uint256,uint256) pure returns (bytes memory)"}},"id":10213,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4854:36:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":10207,"id":10214,"nodeType":"Return","src":"4847:43:46"}]},"documentation":{"id":10199,"nodeType":"StructuredDocumentation","src":"4312:431:46","text":" @dev Moves the content of `buffer`, from `start` (included) to the end of `buffer` to the start of that buffer.\n NOTE: This function modifies the provided buffer in place. If you need to preserve the original buffer, use {slice} instead\n NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice[Javascript's `Array.splice`]"},"id":10216,"implemented":true,"kind":"function","modifiers":[],"name":"splice","nameLocation":"4757:6:46","nodeType":"FunctionDefinition","parameters":{"id":10204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10201,"mutability":"mutable","name":"buffer","nameLocation":"4777:6:46","nodeType":"VariableDeclaration","scope":10216,"src":"4764:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10200,"name":"bytes","nodeType":"ElementaryTypeName","src":"4764:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10203,"mutability":"mutable","name":"start","nameLocation":"4793:5:46","nodeType":"VariableDeclaration","scope":10216,"src":"4785:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10202,"name":"uint256","nodeType":"ElementaryTypeName","src":"4785:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4763:36:46"},"returnParameters":{"id":10207,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10206,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10216,"src":"4823:12:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10205,"name":"bytes","nodeType":"ElementaryTypeName","src":"4823:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4822:14:46"},"scope":10697,"src":"4748:149:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10248,"nodeType":"Block","src":"5506:337:46","statements":[{"expression":{"id":10235,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10228,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10223,"src":"5536:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":10231,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10223,"src":"5551:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":10232,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10219,"src":"5556:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10233,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5563:6:46","memberName":"length","nodeType":"MemberAccess","src":"5556:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":10229,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"5542:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":10230,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5547:3:46","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":14599,"src":"5542:8:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":10234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5542:28:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5536:34:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10236,"nodeType":"ExpressionStatement","src":"5536:34:46"},{"expression":{"id":10243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10237,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10221,"src":"5580:5:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":10240,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10221,"src":"5597:5:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10241,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10223,"src":"5604:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":10238,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"5588:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":10239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5593:3:46","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":14599,"src":"5588:8:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":10242,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5588:20:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5580:28:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10244,"nodeType":"ExpressionStatement","src":"5580:28:46"},{"AST":{"nativeSrc":"5673:140:46","nodeType":"YulBlock","src":"5673:140:46","statements":[{"expression":{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"5697:6:46","nodeType":"YulIdentifier","src":"5697:6:46"},{"kind":"number","nativeSrc":"5705:4:46","nodeType":"YulLiteral","src":"5705:4:46","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5693:3:46","nodeType":"YulIdentifier","src":"5693:3:46"},"nativeSrc":"5693:17:46","nodeType":"YulFunctionCall","src":"5693:17:46"},{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"5720:6:46","nodeType":"YulIdentifier","src":"5720:6:46"},{"kind":"number","nativeSrc":"5728:4:46","nodeType":"YulLiteral","src":"5728:4:46","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5716:3:46","nodeType":"YulIdentifier","src":"5716:3:46"},"nativeSrc":"5716:17:46","nodeType":"YulFunctionCall","src":"5716:17:46"},{"name":"start","nativeSrc":"5735:5:46","nodeType":"YulIdentifier","src":"5735:5:46"}],"functionName":{"name":"add","nativeSrc":"5712:3:46","nodeType":"YulIdentifier","src":"5712:3:46"},"nativeSrc":"5712:29:46","nodeType":"YulFunctionCall","src":"5712:29:46"},{"arguments":[{"name":"end","nativeSrc":"5747:3:46","nodeType":"YulIdentifier","src":"5747:3:46"},{"name":"start","nativeSrc":"5752:5:46","nodeType":"YulIdentifier","src":"5752:5:46"}],"functionName":{"name":"sub","nativeSrc":"5743:3:46","nodeType":"YulIdentifier","src":"5743:3:46"},"nativeSrc":"5743:15:46","nodeType":"YulFunctionCall","src":"5743:15:46"}],"functionName":{"name":"mcopy","nativeSrc":"5687:5:46","nodeType":"YulIdentifier","src":"5687:5:46"},"nativeSrc":"5687:72:46","nodeType":"YulFunctionCall","src":"5687:72:46"},"nativeSrc":"5687:72:46","nodeType":"YulExpressionStatement","src":"5687:72:46"},{"expression":{"arguments":[{"name":"buffer","nativeSrc":"5779:6:46","nodeType":"YulIdentifier","src":"5779:6:46"},{"arguments":[{"name":"end","nativeSrc":"5791:3:46","nodeType":"YulIdentifier","src":"5791:3:46"},{"name":"start","nativeSrc":"5796:5:46","nodeType":"YulIdentifier","src":"5796:5:46"}],"functionName":{"name":"sub","nativeSrc":"5787:3:46","nodeType":"YulIdentifier","src":"5787:3:46"},"nativeSrc":"5787:15:46","nodeType":"YulFunctionCall","src":"5787:15:46"}],"functionName":{"name":"mstore","nativeSrc":"5772:6:46","nodeType":"YulIdentifier","src":"5772:6:46"},"nativeSrc":"5772:31:46","nodeType":"YulFunctionCall","src":"5772:31:46"},"nativeSrc":"5772:31:46","nodeType":"YulExpressionStatement","src":"5772:31:46"}]},"evmVersion":"prague","externalReferences":[{"declaration":10219,"isOffset":false,"isSlot":false,"src":"5697:6:46","valueSize":1},{"declaration":10219,"isOffset":false,"isSlot":false,"src":"5720:6:46","valueSize":1},{"declaration":10219,"isOffset":false,"isSlot":false,"src":"5779:6:46","valueSize":1},{"declaration":10223,"isOffset":false,"isSlot":false,"src":"5747:3:46","valueSize":1},{"declaration":10223,"isOffset":false,"isSlot":false,"src":"5791:3:46","valueSize":1},{"declaration":10221,"isOffset":false,"isSlot":false,"src":"5735:5:46","valueSize":1},{"declaration":10221,"isOffset":false,"isSlot":false,"src":"5752:5:46","valueSize":1},{"declaration":10221,"isOffset":false,"isSlot":false,"src":"5796:5:46","valueSize":1}],"flags":["memory-safe"],"id":10245,"nodeType":"InlineAssembly","src":"5648:165:46"},{"expression":{"id":10246,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10219,"src":"5830:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":10227,"id":10247,"nodeType":"Return","src":"5823:13:46"}]},"documentation":{"id":10217,"nodeType":"StructuredDocumentation","src":"4903:496:46","text":" @dev Moves the content of `buffer`, from `start` (included) to end (excluded) to the start of that buffer. The\n `end` argument is truncated to the length of the `buffer`.\n NOTE: This function modifies the provided buffer in place. If you need to preserve the original buffer, use {slice} instead\n NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice[Javascript's `Array.splice`]"},"id":10249,"implemented":true,"kind":"function","modifiers":[],"name":"splice","nameLocation":"5413:6:46","nodeType":"FunctionDefinition","parameters":{"id":10224,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10219,"mutability":"mutable","name":"buffer","nameLocation":"5433:6:46","nodeType":"VariableDeclaration","scope":10249,"src":"5420:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10218,"name":"bytes","nodeType":"ElementaryTypeName","src":"5420:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10221,"mutability":"mutable","name":"start","nameLocation":"5449:5:46","nodeType":"VariableDeclaration","scope":10249,"src":"5441:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10220,"name":"uint256","nodeType":"ElementaryTypeName","src":"5441:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10223,"mutability":"mutable","name":"end","nameLocation":"5464:3:46","nodeType":"VariableDeclaration","scope":10249,"src":"5456:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10222,"name":"uint256","nodeType":"ElementaryTypeName","src":"5456:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5419:49:46"},"returnParameters":{"id":10227,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10226,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10249,"src":"5492:12:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10225,"name":"bytes","nodeType":"ElementaryTypeName","src":"5492:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5491:14:46"},"scope":10697,"src":"5404:439:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10321,"nodeType":"Block","src":"6380:563:46","statements":[{"assignments":[10259],"declarations":[{"constant":false,"id":10259,"mutability":"mutable","name":"length","nameLocation":"6398:6:46","nodeType":"VariableDeclaration","scope":10321,"src":"6390:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10258,"name":"uint256","nodeType":"ElementaryTypeName","src":"6390:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10261,"initialValue":{"hexValue":"30","id":10260,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6407:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6390:18:46"},{"body":{"id":10280,"nodeType":"Block","src":"6463:52:46","statements":[{"expression":{"id":10278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10273,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10259,"src":"6477:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"expression":{"baseExpression":{"id":10274,"name":"buffers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10253,"src":"6487:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":10276,"indexExpression":{"id":10275,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10263,"src":"6495:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6487:10:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6498:6:46","memberName":"length","nodeType":"MemberAccess","src":"6487:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6477:27:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10279,"nodeType":"ExpressionStatement","src":"6477:27:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10266,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10263,"src":"6438:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":10267,"name":"buffers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10253,"src":"6442:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":10268,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6450:6:46","memberName":"length","nodeType":"MemberAccess","src":"6442:14:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6438:18:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10281,"initializationExpression":{"assignments":[10263],"declarations":[{"constant":false,"id":10263,"mutability":"mutable","name":"i","nameLocation":"6431:1:46","nodeType":"VariableDeclaration","scope":10281,"src":"6423:9:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10262,"name":"uint256","nodeType":"ElementaryTypeName","src":"6423:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10265,"initialValue":{"hexValue":"30","id":10264,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6435:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6423:13:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":10271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6458:3:46","subExpression":{"id":10270,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10263,"src":"6460:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10272,"nodeType":"ExpressionStatement","src":"6458:3:46"},"nodeType":"ForStatement","src":"6418:97:46"},{"assignments":[10283],"declarations":[{"constant":false,"id":10283,"mutability":"mutable","name":"result","nameLocation":"6538:6:46","nodeType":"VariableDeclaration","scope":10321,"src":"6525:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10282,"name":"bytes","nodeType":"ElementaryTypeName","src":"6525:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10288,"initialValue":{"arguments":[{"id":10286,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10259,"src":"6557:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10285,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"6547:9:46","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":10284,"name":"bytes","nodeType":"ElementaryTypeName","src":"6551:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":10287,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6547:17:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"6525:39:46"},{"assignments":[10290],"declarations":[{"constant":false,"id":10290,"mutability":"mutable","name":"offset","nameLocation":"6583:6:46","nodeType":"VariableDeclaration","scope":10321,"src":"6575:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10289,"name":"uint256","nodeType":"ElementaryTypeName","src":"6575:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10292,"initialValue":{"hexValue":"30783230","id":10291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6592:4:46","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"nodeType":"VariableDeclarationStatement","src":"6575:21:46"},{"body":{"id":10317,"nodeType":"Block","src":"6651:262:46","statements":[{"assignments":[10305],"declarations":[{"constant":false,"id":10305,"mutability":"mutable","name":"input","nameLocation":"6678:5:46","nodeType":"VariableDeclaration","scope":10317,"src":"6665:18:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10304,"name":"bytes","nodeType":"ElementaryTypeName","src":"6665:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10309,"initialValue":{"baseExpression":{"id":10306,"name":"buffers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10253,"src":"6686:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":10308,"indexExpression":{"id":10307,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10294,"src":"6694:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6686:10:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"6665:31:46"},{"AST":{"nativeSrc":"6735:90:46","nodeType":"YulBlock","src":"6735:90:46","statements":[{"expression":{"arguments":[{"arguments":[{"name":"result","nativeSrc":"6763:6:46","nodeType":"YulIdentifier","src":"6763:6:46"},{"name":"offset","nativeSrc":"6771:6:46","nodeType":"YulIdentifier","src":"6771:6:46"}],"functionName":{"name":"add","nativeSrc":"6759:3:46","nodeType":"YulIdentifier","src":"6759:3:46"},"nativeSrc":"6759:19:46","nodeType":"YulFunctionCall","src":"6759:19:46"},{"arguments":[{"name":"input","nativeSrc":"6784:5:46","nodeType":"YulIdentifier","src":"6784:5:46"},{"kind":"number","nativeSrc":"6791:4:46","nodeType":"YulLiteral","src":"6791:4:46","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6780:3:46","nodeType":"YulIdentifier","src":"6780:3:46"},"nativeSrc":"6780:16:46","nodeType":"YulFunctionCall","src":"6780:16:46"},{"arguments":[{"name":"input","nativeSrc":"6804:5:46","nodeType":"YulIdentifier","src":"6804:5:46"}],"functionName":{"name":"mload","nativeSrc":"6798:5:46","nodeType":"YulIdentifier","src":"6798:5:46"},"nativeSrc":"6798:12:46","nodeType":"YulFunctionCall","src":"6798:12:46"}],"functionName":{"name":"mcopy","nativeSrc":"6753:5:46","nodeType":"YulIdentifier","src":"6753:5:46"},"nativeSrc":"6753:58:46","nodeType":"YulFunctionCall","src":"6753:58:46"},"nativeSrc":"6753:58:46","nodeType":"YulExpressionStatement","src":"6753:58:46"}]},"evmVersion":"prague","externalReferences":[{"declaration":10305,"isOffset":false,"isSlot":false,"src":"6784:5:46","valueSize":1},{"declaration":10305,"isOffset":false,"isSlot":false,"src":"6804:5:46","valueSize":1},{"declaration":10290,"isOffset":false,"isSlot":false,"src":"6771:6:46","valueSize":1},{"declaration":10283,"isOffset":false,"isSlot":false,"src":"6763:6:46","valueSize":1}],"flags":["memory-safe"],"id":10310,"nodeType":"InlineAssembly","src":"6710:115:46"},{"id":10316,"nodeType":"UncheckedBlock","src":"6838:65:46","statements":[{"expression":{"id":10314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10311,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10290,"src":"6866:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"expression":{"id":10312,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10305,"src":"6876:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6882:6:46","memberName":"length","nodeType":"MemberAccess","src":"6876:12:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6866:22:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10315,"nodeType":"ExpressionStatement","src":"6866:22:46"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10297,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10294,"src":"6626:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":10298,"name":"buffers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10253,"src":"6630:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":10299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6638:6:46","memberName":"length","nodeType":"MemberAccess","src":"6630:14:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6626:18:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10318,"initializationExpression":{"assignments":[10294],"declarations":[{"constant":false,"id":10294,"mutability":"mutable","name":"i","nameLocation":"6619:1:46","nodeType":"VariableDeclaration","scope":10318,"src":"6611:9:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10293,"name":"uint256","nodeType":"ElementaryTypeName","src":"6611:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10296,"initialValue":{"hexValue":"30","id":10295,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6623:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6611:13:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":10302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6646:3:46","subExpression":{"id":10301,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10294,"src":"6648:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10303,"nodeType":"ExpressionStatement","src":"6646:3:46"},"nodeType":"ForStatement","src":"6606:307:46"},{"expression":{"id":10319,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10283,"src":"6930:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":10257,"id":10320,"nodeType":"Return","src":"6923:13:46"}]},"documentation":{"id":10250,"nodeType":"StructuredDocumentation","src":"5849:449:46","text":" @dev Concatenate an array of bytes into a single bytes object.\n For fixed bytes types, we recommend using the solidity built-in `bytes.concat` or (equivalent)\n `abi.encodePacked`.\n NOTE: this could be done in assembly with a single loop that expands starting at the FMP, but that would be\n significantly less readable. It might be worth benchmarking the savings of the full-assembly approach."},"id":10322,"implemented":true,"kind":"function","modifiers":[],"name":"concat","nameLocation":"6312:6:46","nodeType":"FunctionDefinition","parameters":{"id":10254,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10253,"mutability":"mutable","name":"buffers","nameLocation":"6334:7:46","nodeType":"VariableDeclaration","scope":10322,"src":"6319:22:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":10251,"name":"bytes","nodeType":"ElementaryTypeName","src":"6319:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":10252,"nodeType":"ArrayTypeName","src":"6319:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"6318:24:46"},"returnParameters":{"id":10257,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10256,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10322,"src":"6366:12:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10255,"name":"bytes","nodeType":"ElementaryTypeName","src":"6366:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6365:14:46"},"scope":10697,"src":"6303:640:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10346,"nodeType":"Block","src":"7101:76:46","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":10332,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10325,"src":"7118:1:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7120:6:46","memberName":"length","nodeType":"MemberAccess","src":"7118:8:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":10334,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10327,"src":"7130:1:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7132:6:46","memberName":"length","nodeType":"MemberAccess","src":"7130:8:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7118:20:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10338,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10325,"src":"7152:1:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":10337,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"7142:9:46","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":10339,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7142:12:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":10341,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10327,"src":"7168:1:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":10340,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"7158:9:46","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":10342,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7158:12:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"7142:28:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7118:52:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":10331,"id":10345,"nodeType":"Return","src":"7111:59:46"}]},"documentation":{"id":10323,"nodeType":"StructuredDocumentation","src":"6949:71:46","text":" @dev Returns true if the two byte buffers are equal."},"id":10347,"implemented":true,"kind":"function","modifiers":[],"name":"equal","nameLocation":"7034:5:46","nodeType":"FunctionDefinition","parameters":{"id":10328,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10325,"mutability":"mutable","name":"a","nameLocation":"7053:1:46","nodeType":"VariableDeclaration","scope":10347,"src":"7040:14:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10324,"name":"bytes","nodeType":"ElementaryTypeName","src":"7040:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10327,"mutability":"mutable","name":"b","nameLocation":"7069:1:46","nodeType":"VariableDeclaration","scope":10347,"src":"7056:14:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10326,"name":"bytes","nodeType":"ElementaryTypeName","src":"7056:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7039:32:46"},"returnParameters":{"id":10331,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10330,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10347,"src":"7095:4:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10329,"name":"bool","nodeType":"ElementaryTypeName","src":"7095:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7094:6:46"},"scope":10697,"src":"7025:152:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10437,"nodeType":"Block","src":"7481:1024:46","statements":[{"expression":{"id":10371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10355,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10350,"src":"7491:5:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10356,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10350,"src":"7527:5:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"38","id":10357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7536:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"7527:10:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10359,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7526:12:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830304646303046463030464630304646303046463030464630304646303046463030464630304646303046463030464630304646303046463030464630304646","id":10360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7541:66:46","typeDescriptions":{"typeIdentifier":"t_rational_450552876409790643671482431940419874915447411150352389258589821042463539455_by_1","typeString":"int_const 4505...(67 digits omitted)...9455"},"value":"0x00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF"},"src":"7526:81:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10362,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7525:83:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10363,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10350,"src":"7625:5:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830304646303046463030464630304646303046463030464630304646303046463030464630304646303046463030464630304646303046463030464630304646","id":10364,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7633:66:46","typeDescriptions":{"typeIdentifier":"t_rational_450552876409790643671482431940419874915447411150352389258589821042463539455_by_1","typeString":"int_const 4505...(67 digits omitted)...9455"},"value":"0x00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF"},"src":"7625:74:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10366,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7624:76:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":10367,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7704:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"7624:81:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10369,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7623:83:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"7525:181:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"7491:215:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":10372,"nodeType":"ExpressionStatement","src":"7491:215:46"},{"expression":{"id":10389,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10373,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10350,"src":"7716:5:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10374,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10350,"src":"7764:5:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3136","id":10375,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7773:2:46","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"7764:11:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10377,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7763:13:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830303030464646463030303046464646303030304646464630303030464646463030303046464646303030304646464630303030464646463030303046464646","id":10378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7779:66:46","typeDescriptions":{"typeIdentifier":"t_rational_1766820105243087041267848467410591083712559083657179364930612997358944255_by_1","typeString":"int_const 1766...(65 digits omitted)...4255"},"value":"0x0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF"},"src":"7763:82:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10380,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7762:84:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10383,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10381,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10350,"src":"7863:5:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830303030464646463030303046464646303030304646464630303030464646463030303046464646303030304646464630303030464646463030303046464646","id":10382,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7871:66:46","typeDescriptions":{"typeIdentifier":"t_rational_1766820105243087041267848467410591083712559083657179364930612997358944255_by_1","typeString":"int_const 1766...(65 digits omitted)...4255"},"value":"0x0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF"},"src":"7863:74:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10384,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7862:76:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":10385,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7942:2:46","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"7862:82:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10387,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7861:84:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"7762:183:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"7716:229:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":10390,"nodeType":"ExpressionStatement","src":"7716:229:46"},{"expression":{"id":10407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10391,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10350,"src":"7955:5:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10397,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10392,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10350,"src":"8003:5:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":10393,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8012:2:46","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"8003:11:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10395,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8002:13:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830303030303030304646464646464646303030303030303046464646464646463030303030303030464646464646464630303030303030304646464646464646","id":10396,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8018:66:46","typeDescriptions":{"typeIdentifier":"t_rational_26959946660873538060741835960174461801791452538186943042387869433855_by_1","typeString":"int_const 2695...(60 digits omitted)...3855"},"value":"0x00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF"},"src":"8002:82:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10398,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8001:84:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10401,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10399,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10350,"src":"8102:5:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830303030303030304646464646464646303030303030303046464646464646463030303030303030464646464646464630303030303030304646464646464646","id":10400,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8110:66:46","typeDescriptions":{"typeIdentifier":"t_rational_26959946660873538060741835960174461801791452538186943042387869433855_by_1","typeString":"int_const 2695...(60 digits omitted)...3855"},"value":"0x00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF"},"src":"8102:74:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10402,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8101:76:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":10403,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8181:2:46","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"8101:82:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10405,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8100:84:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"8001:183:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"7955:229:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":10408,"nodeType":"ExpressionStatement","src":"7955:229:46"},{"expression":{"id":10425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10409,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10350,"src":"8194:5:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10424,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10412,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10410,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10350,"src":"8242:5:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":10411,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8251:2:46","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"8242:11:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10413,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8241:13:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830303030303030303030303030303030464646464646464646464646464646463030303030303030303030303030303046464646464646464646464646464646","id":10414,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8257:66:46","typeDescriptions":{"typeIdentifier":"t_rational_6277101735386680763495507056286727952657427581105975853055_by_1","typeString":"int_const 6277...(50 digits omitted)...3055"},"value":"0x0000000000000000FFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF"},"src":"8241:82:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10416,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8240:84:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10417,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10350,"src":"8341:5:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830303030303030303030303030303030464646464646464646464646464646463030303030303030303030303030303046464646464646464646464646464646","id":10418,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8349:66:46","typeDescriptions":{"typeIdentifier":"t_rational_6277101735386680763495507056286727952657427581105975853055_by_1","typeString":"int_const 6277...(50 digits omitted)...3055"},"value":"0x0000000000000000FFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF"},"src":"8341:74:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10420,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8340:76:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":10421,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8420:2:46","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"8340:82:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10423,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8339:84:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"8240:183:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"8194:229:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":10426,"nodeType":"ExpressionStatement","src":"8194:229:46"},{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10427,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10350,"src":"8441:5:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"313238","id":10428,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8450:3:46","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"8441:12:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10430,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8440:14:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10433,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10431,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10350,"src":"8458:5:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":10432,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8467:3:46","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"8458:12:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":10434,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8457:14:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"8440:31:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":10354,"id":10436,"nodeType":"Return","src":"8433:38:46"}]},"documentation":{"id":10348,"nodeType":"StructuredDocumentation","src":"7183:222:46","text":" @dev Reverses the byte order of a bytes32 value, converting between little-endian and big-endian.\n Inspired by https://graphics.stanford.edu/~seander/bithacks.html#ReverseParallel[Reverse Parallel]"},"id":10438,"implemented":true,"kind":"function","modifiers":[],"name":"reverseBytes32","nameLocation":"7419:14:46","nodeType":"FunctionDefinition","parameters":{"id":10351,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10350,"mutability":"mutable","name":"value","nameLocation":"7442:5:46","nodeType":"VariableDeclaration","scope":10438,"src":"7434:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10349,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7434:7:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7433:15:46"},"returnParameters":{"id":10354,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10353,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10438,"src":"7472:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10352,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7472:7:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7471:9:46"},"scope":10697,"src":"7410:1095:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10510,"nodeType":"Block","src":"8654:590:46","statements":[{"expression":{"id":10462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10446,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10441,"src":"8664:5:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10461,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10447,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10441,"src":"8700:5:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30784646303046463030464630304646303046463030464630304646303046463030","id":10448,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8708:34:46","typeDescriptions":{"typeIdentifier":"t_rational_338958311018522360492699998064329424640_by_1","typeString":"int_const 3389...(31 digits omitted)...4640"},"value":"0xFF00FF00FF00FF00FF00FF00FF00FF00"},"src":"8700:42:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":10450,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8699:44:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"38","id":10451,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8747:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"8699:49:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":10453,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8698:51:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10456,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10454,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10441,"src":"8766:5:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783030464630304646303046463030464630304646303046463030464630304646","id":10455,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8774:34:46","typeDescriptions":{"typeIdentifier":"t_rational_1324055902416102970674609367438786815_by_1","typeString":"int_const 1324...(29 digits omitted)...6815"},"value":"0x00FF00FF00FF00FF00FF00FF00FF00FF"},"src":"8766:42:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":10457,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8765:44:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":10458,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8813:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"8765:49:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":10460,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8764:51:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"src":"8698:117:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"src":"8664:151:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":10463,"nodeType":"ExpressionStatement","src":"8664:151:46"},{"expression":{"id":10480,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10464,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10441,"src":"8825:5:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10465,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10441,"src":"8873:5:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30784646464630303030464646463030303046464646303030304646464630303030","id":10466,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8881:34:46","typeDescriptions":{"typeIdentifier":"t_rational_340277174703306882242637262502835978240_by_1","typeString":"int_const 3402...(31 digits omitted)...8240"},"value":"0xFFFF0000FFFF0000FFFF0000FFFF0000"},"src":"8873:42:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":10468,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8872:44:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3136","id":10469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8920:2:46","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"8872:50:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":10471,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8871:52:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10477,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10472,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10441,"src":"8940:5:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783030303046464646303030304646464630303030464646463030303046464646","id":10473,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8948:34:46","typeDescriptions":{"typeIdentifier":"t_rational_5192217631581220737344928932233215_by_1","typeString":"int_const 5192...(26 digits omitted)...3215"},"value":"0x0000FFFF0000FFFF0000FFFF0000FFFF"},"src":"8940:42:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":10475,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8939:44:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":10476,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8987:2:46","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"8939:50:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":10478,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8938:52:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"src":"8871:119:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"src":"8825:165:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":10481,"nodeType":"ExpressionStatement","src":"8825:165:46"},{"expression":{"id":10498,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10482,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10441,"src":"9000:5:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10497,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10488,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10483,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10441,"src":"9048:5:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30784646464646464646303030303030303046464646464646463030303030303030","id":10484,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9056:34:46","typeDescriptions":{"typeIdentifier":"t_rational_340282366841710300967557013907638845440_by_1","typeString":"int_const 3402...(31 digits omitted)...5440"},"value":"0xFFFFFFFF00000000FFFFFFFF00000000"},"src":"9048:42:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":10486,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9047:44:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":10487,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9095:2:46","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"9047:50:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":10489,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9046:52:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10490,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10441,"src":"9115:5:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783030303030303030464646464646464630303030303030304646464646464646","id":10491,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9123:34:46","typeDescriptions":{"typeIdentifier":"t_rational_79228162495817593524129366015_by_1","typeString":"int_const 79228162495817593524129366015"},"value":"0x00000000FFFFFFFF00000000FFFFFFFF"},"src":"9115:42:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":10493,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9114:44:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":10494,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9162:2:46","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"9114:50:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":10496,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9113:52:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"src":"9046:119:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"src":"9000:165:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":10499,"nodeType":"ExpressionStatement","src":"9000:165:46"},{"expression":{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10508,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10502,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10500,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10441,"src":"9183:5:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":10501,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9192:2:46","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"9183:11:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":10503,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9182:13:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":10506,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10504,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10441,"src":"9199:5:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":10505,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9208:2:46","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"9199:11:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":10507,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9198:13:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"src":"9182:29:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"functionReturnParameters":10445,"id":10509,"nodeType":"Return","src":"9175:36:46"}]},"documentation":{"id":10439,"nodeType":"StructuredDocumentation","src":"8511:67:46","text":"@dev Same as {reverseBytes32} but optimized for 128-bit values."},"id":10511,"implemented":true,"kind":"function","modifiers":[],"name":"reverseBytes16","nameLocation":"8592:14:46","nodeType":"FunctionDefinition","parameters":{"id":10442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10441,"mutability":"mutable","name":"value","nameLocation":"8615:5:46","nodeType":"VariableDeclaration","scope":10511,"src":"8607:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":10440,"name":"bytes16","nodeType":"ElementaryTypeName","src":"8607:7:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"8606:15:46"},"returnParameters":{"id":10445,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10444,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10511,"src":"8645:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":10443,"name":"bytes16","nodeType":"ElementaryTypeName","src":"8645:7:46","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"8644:9:46"},"scope":10697,"src":"8583:661:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10565,"nodeType":"Block","src":"9389:303:46","statements":[{"expression":{"id":10535,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10519,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10514,"src":"9399:5:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":10534,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":10525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":10522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10520,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10514,"src":"9409:5:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307846463030464630304646303046463030","id":10521,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9417:18:46","typeDescriptions":{"typeIdentifier":"t_rational_18374966859414961920_by_1","typeString":"int_const 18374966859414961920"},"value":"0xFF00FF00FF00FF00"},"src":"9409:26:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":10523,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9408:28:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"38","id":10524,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9440:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"9408:33:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":10526,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9407:35:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":10532,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":10529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10527,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10514,"src":"9447:5:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830304646303046463030464630304646","id":10528,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9455:18:46","typeDescriptions":{"typeIdentifier":"t_rational_71777214294589695_by_1","typeString":"int_const 71777214294589695"},"value":"0x00FF00FF00FF00FF"},"src":"9447:26:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":10530,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9446:28:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":10531,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9478:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"9446:33:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":10533,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9445:35:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"src":"9407:73:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"src":"9399:81:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"id":10536,"nodeType":"ExpressionStatement","src":"9399:81:46"},{"expression":{"id":10553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10537,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10514,"src":"9504:5:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":10552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":10543,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":10540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10538,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10514,"src":"9514:5:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307846464646303030304646464630303030","id":10539,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9522:18:46","typeDescriptions":{"typeIdentifier":"t_rational_18446462603027742720_by_1","typeString":"int_const 18446462603027742720"},"value":"0xFFFF0000FFFF0000"},"src":"9514:26:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":10541,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9513:28:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3136","id":10542,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9545:2:46","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"9513:34:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":10544,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9512:36:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":10550,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":10547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10545,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10514,"src":"9553:5:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830303030464646463030303046464646","id":10546,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9561:18:46","typeDescriptions":{"typeIdentifier":"t_rational_281470681808895_by_1","typeString":"int_const 281470681808895"},"value":"0x0000FFFF0000FFFF"},"src":"9553:26:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":10548,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9552:28:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":10549,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9584:2:46","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"9552:34:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":10551,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9551:36:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"src":"9512:75:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"src":"9504:83:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"id":10554,"nodeType":"ExpressionStatement","src":"9504:83:46"},{"expression":{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":10563,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":10557,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10555,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10514,"src":"9631:5:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":10556,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9640:2:46","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"9631:11:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":10558,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9630:13:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":10561,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10559,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10514,"src":"9647:5:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":10560,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9656:2:46","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"9647:11:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":10562,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9646:13:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"src":"9630:29:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"functionReturnParameters":10518,"id":10564,"nodeType":"Return","src":"9623:36:46"}]},"documentation":{"id":10512,"nodeType":"StructuredDocumentation","src":"9250:66:46","text":"@dev Same as {reverseBytes32} but optimized for 64-bit values."},"id":10566,"implemented":true,"kind":"function","modifiers":[],"name":"reverseBytes8","nameLocation":"9330:13:46","nodeType":"FunctionDefinition","parameters":{"id":10515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10514,"mutability":"mutable","name":"value","nameLocation":"9351:5:46","nodeType":"VariableDeclaration","scope":10566,"src":"9344:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":10513,"name":"bytes8","nodeType":"ElementaryTypeName","src":"9344:6:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"9343:14:46"},"returnParameters":{"id":10518,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10517,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10566,"src":"9381:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":10516,"name":"bytes8","nodeType":"ElementaryTypeName","src":"9381:6:46","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"9380:8:46"},"scope":10697,"src":"9321:371:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10602,"nodeType":"Block","src":"9837:168:46","statements":[{"expression":{"id":10590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10574,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10569,"src":"9847:5:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":10589,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":10580,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":10577,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10575,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10569,"src":"9857:5:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30784646303046463030","id":10576,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9865:10:46","typeDescriptions":{"typeIdentifier":"t_rational_4278255360_by_1","typeString":"int_const 4278255360"},"value":"0xFF00FF00"},"src":"9857:18:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"id":10578,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9856:20:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"38","id":10579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9880:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"9856:25:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"id":10581,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9855:27:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":10587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":10584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10582,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10569,"src":"9887:5:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783030464630304646","id":10583,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9895:10:46","typeDescriptions":{"typeIdentifier":"t_rational_16711935_by_1","typeString":"int_const 16711935"},"value":"0x00FF00FF"},"src":"9887:18:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"id":10585,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9886:20:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":10586,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9910:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"9886:25:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"id":10588,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9885:27:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"9855:57:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"9847:65:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":10591,"nodeType":"ExpressionStatement","src":"9847:65:46"},{"expression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":10600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":10594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10592,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10569,"src":"9944:5:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3136","id":10593,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9953:2:46","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"9944:11:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"id":10595,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9943:13:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":10598,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10596,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10569,"src":"9960:5:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":10597,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9969:2:46","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"9960:11:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"id":10599,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9959:13:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"9943:29:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":10573,"id":10601,"nodeType":"Return","src":"9936:36:46"}]},"documentation":{"id":10567,"nodeType":"StructuredDocumentation","src":"9698:66:46","text":"@dev Same as {reverseBytes32} but optimized for 32-bit values."},"id":10603,"implemented":true,"kind":"function","modifiers":[],"name":"reverseBytes4","nameLocation":"9778:13:46","nodeType":"FunctionDefinition","parameters":{"id":10570,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10569,"mutability":"mutable","name":"value","nameLocation":"9799:5:46","nodeType":"VariableDeclaration","scope":10603,"src":"9792:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":10568,"name":"bytes4","nodeType":"ElementaryTypeName","src":"9792:6:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"9791:14:46"},"returnParameters":{"id":10573,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10572,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10603,"src":"9829:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":10571,"name":"bytes4","nodeType":"ElementaryTypeName","src":"9829:6:46","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"9828:8:46"},"scope":10697,"src":"9769:236:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10621,"nodeType":"Block","src":"10150:51:46","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":10619,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":10613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10611,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10606,"src":"10168:5:46","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"38","id":10612,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10177:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"10168:10:46","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}}],"id":10614,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10167:12:46","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":10617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10615,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10606,"src":"10183:5:46","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":10616,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10192:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"10183:10:46","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}}],"id":10618,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10182:12:46","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"10167:27:46","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"functionReturnParameters":10610,"id":10620,"nodeType":"Return","src":"10160:34:46"}]},"documentation":{"id":10604,"nodeType":"StructuredDocumentation","src":"10011:66:46","text":"@dev Same as {reverseBytes32} but optimized for 16-bit values."},"id":10622,"implemented":true,"kind":"function","modifiers":[],"name":"reverseBytes2","nameLocation":"10091:13:46","nodeType":"FunctionDefinition","parameters":{"id":10607,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10606,"mutability":"mutable","name":"value","nameLocation":"10112:5:46","nodeType":"VariableDeclaration","scope":10622,"src":"10105:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":10605,"name":"bytes2","nodeType":"ElementaryTypeName","src":"10105:6:46","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"10104:14:46"},"returnParameters":{"id":10610,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10609,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10622,"src":"10142:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":10608,"name":"bytes2","nodeType":"ElementaryTypeName","src":"10142:6:46","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"10141:8:46"},"scope":10697,"src":"10082:119:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10683,"nodeType":"Block","src":"10418:313:46","statements":[{"body":{"id":10676,"nodeType":"Block","src":"10478:213:46","statements":[{"assignments":[10643],"declarations":[{"constant":false,"id":10643,"mutability":"mutable","name":"chunk","nameLocation":"10500:5:46","nodeType":"VariableDeclaration","scope":10676,"src":"10492:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10642,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10492:7:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":10648,"initialValue":{"arguments":[{"id":10645,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10625,"src":"10531:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10646,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10631,"src":"10539:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10644,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10696,"src":"10508:22:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":10647,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10508:33:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"10492:49:46"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10654,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10649,"name":"chunk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10643,"src":"10559:5:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":10652,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10576: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":10651,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10568:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":10650,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10568:7:46","typeDescriptions":{}}},"id":10653,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10568:10:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"10559:19:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10675,"nodeType":"IfStatement","src":"10555:126:46","trueBody":{"id":10674,"nodeType":"Block","src":"10580:101:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"38","id":10657,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10614:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":10658,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10631,"src":"10618:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10614:5:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"arguments":[{"id":10664,"name":"chunk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10643,"src":"10639:5:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":10663,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10631:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":10662,"name":"uint256","nodeType":"ElementaryTypeName","src":"10631:7:46","typeDescriptions":{}}},"id":10665,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10631:14:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":10660,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"10622:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":10661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10627:3:46","memberName":"clz","nodeType":"MemberAccess","referencedDeclaration":15913,"src":"10622:8:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":10666,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10622:24:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10614:32:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"38","id":10668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10648:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":10669,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10625,"src":"10652:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10659:6:46","memberName":"length","nodeType":"MemberAccess","src":"10652:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10648:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":10655,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"10605:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":10656,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10610:3:46","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":14599,"src":"10605:8:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":10672,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10605:61:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10629,"id":10673,"nodeType":"Return","src":"10598:68:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10634,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10631,"src":"10448:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":10635,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10625,"src":"10452:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10636,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10459:6:46","memberName":"length","nodeType":"MemberAccess","src":"10452:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10448:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10677,"initializationExpression":{"assignments":[10631],"declarations":[{"constant":false,"id":10631,"mutability":"mutable","name":"i","nameLocation":"10441:1:46","nodeType":"VariableDeclaration","scope":10677,"src":"10433:9:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10630,"name":"uint256","nodeType":"ElementaryTypeName","src":"10433:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10633,"initialValue":{"hexValue":"30","id":10632,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10445:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"10433:13:46"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":10640,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10638,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10631,"src":"10467:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"30783230","id":10639,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10472:4:46","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"src":"10467:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10641,"nodeType":"ExpressionStatement","src":"10467:9:46"},"nodeType":"ForStatement","src":"10428:263:46"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"38","id":10678,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10707:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":10679,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10625,"src":"10711:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10680,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10718:6:46","memberName":"length","nodeType":"MemberAccess","src":"10711:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10707:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10629,"id":10682,"nodeType":"Return","src":"10700:24:46"}]},"documentation":{"id":10623,"nodeType":"StructuredDocumentation","src":"10207:140:46","text":" @dev Counts the number of leading zero bits a bytes array. Returns `8 * buffer.length`\n if the buffer is all zeros."},"id":10684,"implemented":true,"kind":"function","modifiers":[],"name":"clz","nameLocation":"10361:3:46","nodeType":"FunctionDefinition","parameters":{"id":10626,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10625,"mutability":"mutable","name":"buffer","nameLocation":"10378:6:46","nodeType":"VariableDeclaration","scope":10684,"src":"10365:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10624,"name":"bytes","nodeType":"ElementaryTypeName","src":"10365:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"10364:21:46"},"returnParameters":{"id":10629,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10628,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10684,"src":"10409:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10627,"name":"uint256","nodeType":"ElementaryTypeName","src":"10409:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10408:9:46"},"scope":10697,"src":"10352:379:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10695,"nodeType":"Block","src":"11116:225:46","statements":[{"AST":{"nativeSrc":"11265:70:46","nodeType":"YulBlock","src":"11265:70:46","statements":[{"nativeSrc":"11279:46:46","nodeType":"YulAssignment","src":"11279:46:46","value":{"arguments":[{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"11302:6:46","nodeType":"YulIdentifier","src":"11302:6:46"},{"kind":"number","nativeSrc":"11310:4:46","nodeType":"YulLiteral","src":"11310:4:46","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"11298:3:46","nodeType":"YulIdentifier","src":"11298:3:46"},"nativeSrc":"11298:17:46","nodeType":"YulFunctionCall","src":"11298:17:46"},{"name":"offset","nativeSrc":"11317:6:46","nodeType":"YulIdentifier","src":"11317:6:46"}],"functionName":{"name":"add","nativeSrc":"11294:3:46","nodeType":"YulIdentifier","src":"11294:3:46"},"nativeSrc":"11294:30:46","nodeType":"YulFunctionCall","src":"11294:30:46"}],"functionName":{"name":"mload","nativeSrc":"11288:5:46","nodeType":"YulIdentifier","src":"11288:5:46"},"nativeSrc":"11288:37:46","nodeType":"YulFunctionCall","src":"11288:37:46"},"variableNames":[{"name":"value","nativeSrc":"11279:5:46","nodeType":"YulIdentifier","src":"11279:5:46"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":10687,"isOffset":false,"isSlot":false,"src":"11302:6:46","valueSize":1},{"declaration":10689,"isOffset":false,"isSlot":false,"src":"11317:6:46","valueSize":1},{"declaration":10692,"isOffset":false,"isSlot":false,"src":"11279:5:46","valueSize":1}],"flags":["memory-safe"],"id":10694,"nodeType":"InlineAssembly","src":"11240:95:46"}]},"documentation":{"id":10685,"nodeType":"StructuredDocumentation","src":"10737:268:46","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":10696,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeReadBytesOffset","nameLocation":"11019:22:46","nodeType":"FunctionDefinition","parameters":{"id":10690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10687,"mutability":"mutable","name":"buffer","nameLocation":"11055:6:46","nodeType":"VariableDeclaration","scope":10696,"src":"11042:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10686,"name":"bytes","nodeType":"ElementaryTypeName","src":"11042:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10689,"mutability":"mutable","name":"offset","nameLocation":"11071:6:46","nodeType":"VariableDeclaration","scope":10696,"src":"11063:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10688,"name":"uint256","nodeType":"ElementaryTypeName","src":"11063:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11041:37:46"},"returnParameters":{"id":10693,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10692,"mutability":"mutable","name":"value","nameLocation":"11109:5:46","nodeType":"VariableDeclaration","scope":10696,"src":"11101:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10691,"name":"bytes32","nodeType":"ElementaryTypeName","src":"11101:7:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"11100:15:46"},"scope":10697,"src":"11010:331:46","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":10698,"src":"198:11145:46","usedErrors":[],"usedEvents":[]}],"src":"99:11245:46"},"id":46},"@openzeppelin/contracts/utils/Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","exportedSymbols":{"Context":[10727]},"id":10728,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10699,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:47"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":10700,"nodeType":"StructuredDocumentation","src":"127:496:47","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":10727,"linearizedBaseContracts":[10727],"name":"Context","nameLocation":"642:7:47","nodeType":"ContractDefinition","nodes":[{"body":{"id":10708,"nodeType":"Block","src":"718:34:47","statements":[{"expression":{"expression":{"id":10705,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"735:3:47","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":10706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"739:6:47","memberName":"sender","nodeType":"MemberAccess","src":"735:10:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":10704,"id":10707,"nodeType":"Return","src":"728:17:47"}]},"id":10709,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"665:10:47","nodeType":"FunctionDefinition","parameters":{"id":10701,"nodeType":"ParameterList","parameters":[],"src":"675:2:47"},"returnParameters":{"id":10704,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10703,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10709,"src":"709:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10702,"name":"address","nodeType":"ElementaryTypeName","src":"709:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"708:9:47"},"scope":10727,"src":"656:96:47","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":10717,"nodeType":"Block","src":"825:32:47","statements":[{"expression":{"expression":{"id":10714,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"842:3:47","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":10715,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"846:4:47","memberName":"data","nodeType":"MemberAccess","src":"842:8:47","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":10713,"id":10716,"nodeType":"Return","src":"835:15:47"}]},"id":10718,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"767:8:47","nodeType":"FunctionDefinition","parameters":{"id":10710,"nodeType":"ParameterList","parameters":[],"src":"775:2:47"},"returnParameters":{"id":10713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10712,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10718,"src":"809:14:47","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":10711,"name":"bytes","nodeType":"ElementaryTypeName","src":"809:5:47","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"808:16:47"},"scope":10727,"src":"758:99:47","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":10725,"nodeType":"Block","src":"935:25:47","statements":[{"expression":{"hexValue":"30","id":10723,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"952:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":10722,"id":10724,"nodeType":"Return","src":"945:8:47"}]},"id":10726,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"872:20:47","nodeType":"FunctionDefinition","parameters":{"id":10719,"nodeType":"ParameterList","parameters":[],"src":"892:2:47"},"returnParameters":{"id":10722,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10721,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10726,"src":"926:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10720,"name":"uint256","nodeType":"ElementaryTypeName","src":"926:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"925:9:47"},"scope":10727,"src":"863:97:47","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":10728,"src":"624:338:47","usedErrors":[],"usedEvents":[]}],"src":"101:862:47"},"id":47},"@openzeppelin/contracts/utils/Errors.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Errors.sol","exportedSymbols":{"Errors":[10749]},"id":10750,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10729,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"100:24:48"},{"abstract":false,"baseContracts":[],"canonicalName":"Errors","contractDependencies":[],"contractKind":"library","documentation":{"id":10730,"nodeType":"StructuredDocumentation","src":"126:284:48","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":10749,"linearizedBaseContracts":[10749],"name":"Errors","nameLocation":"419:6:48","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":10731,"nodeType":"StructuredDocumentation","src":"432:94:48","text":" @dev The ETH balance of the account is not enough to perform the operation."},"errorSelector":"cf479181","id":10737,"name":"InsufficientBalance","nameLocation":"537:19:48","nodeType":"ErrorDefinition","parameters":{"id":10736,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10733,"mutability":"mutable","name":"balance","nameLocation":"565:7:48","nodeType":"VariableDeclaration","scope":10737,"src":"557:15:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10732,"name":"uint256","nodeType":"ElementaryTypeName","src":"557:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10735,"mutability":"mutable","name":"needed","nameLocation":"582:6:48","nodeType":"VariableDeclaration","scope":10737,"src":"574:14:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10734,"name":"uint256","nodeType":"ElementaryTypeName","src":"574:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"556:33:48"},"src":"531:59:48"},{"documentation":{"id":10738,"nodeType":"StructuredDocumentation","src":"596:89:48","text":" @dev A call to an address target failed. The target may have reverted."},"errorSelector":"d6bda275","id":10740,"name":"FailedCall","nameLocation":"696:10:48","nodeType":"ErrorDefinition","parameters":{"id":10739,"nodeType":"ParameterList","parameters":[],"src":"706:2:48"},"src":"690:19:48"},{"documentation":{"id":10741,"nodeType":"StructuredDocumentation","src":"715:46:48","text":" @dev The deployment failed."},"errorSelector":"b06ebf3d","id":10743,"name":"FailedDeployment","nameLocation":"772:16:48","nodeType":"ErrorDefinition","parameters":{"id":10742,"nodeType":"ParameterList","parameters":[],"src":"788:2:48"},"src":"766:25:48"},{"documentation":{"id":10744,"nodeType":"StructuredDocumentation","src":"797:58:48","text":" @dev A necessary precompile is missing."},"errorSelector":"42b01bce","id":10748,"name":"MissingPrecompile","nameLocation":"866:17:48","nodeType":"ErrorDefinition","parameters":{"id":10747,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10746,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10748,"src":"884:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10745,"name":"address","nodeType":"ElementaryTypeName","src":"884:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"883:9:48"},"src":"860:33:48"}],"scope":10750,"src":"411:484:48","usedErrors":[10737,10740,10743,10748],"usedEvents":[]}],"src":"100:796:48"},"id":48},"@openzeppelin/contracts/utils/LowLevelCall.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/LowLevelCall.sol","exportedSymbols":{"LowLevelCall":[10908]},"id":10909,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10751,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:49"},{"abstract":false,"baseContracts":[],"canonicalName":"LowLevelCall","contractDependencies":[],"contractKind":"library","documentation":{"id":10752,"nodeType":"StructuredDocumentation","src":"132:288:49","text":" @dev Library of low level call functions that implement different calling strategies to deal with the return data.\n WARNING: Using this library requires an advanced understanding of Solidity and how the EVM works. It is recommended\n to use the {Address} library instead."},"fullyImplemented":true,"id":10908,"linearizedBaseContracts":[10908],"name":"LowLevelCall","nameLocation":"429:12:49","nodeType":"ContractDefinition","nodes":[{"body":{"id":10768,"nodeType":"Block","src":"639:53:49","statements":[{"expression":{"arguments":[{"id":10763,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10755,"src":"669:6:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":10764,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"677:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":10765,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10757,"src":"680:4:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":10762,"name":"callNoReturn","nodeType":"Identifier","overloadedDeclarations":[10769,10783],"referencedDeclaration":10783,"src":"656:12:49","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory) returns (bool)"}},"id":10766,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"656:29:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":10761,"id":10767,"nodeType":"Return","src":"649:36:49"}]},"documentation":{"id":10753,"nodeType":"StructuredDocumentation","src":"448:97:49","text":"@dev Performs a Solidity function call using a low level `call` and ignoring the return data."},"id":10769,"implemented":true,"kind":"function","modifiers":[],"name":"callNoReturn","nameLocation":"559:12:49","nodeType":"FunctionDefinition","parameters":{"id":10758,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10755,"mutability":"mutable","name":"target","nameLocation":"580:6:49","nodeType":"VariableDeclaration","scope":10769,"src":"572:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10754,"name":"address","nodeType":"ElementaryTypeName","src":"572:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10757,"mutability":"mutable","name":"data","nameLocation":"601:4:49","nodeType":"VariableDeclaration","scope":10769,"src":"588:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10756,"name":"bytes","nodeType":"ElementaryTypeName","src":"588:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"571:35:49"},"returnParameters":{"id":10761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10760,"mutability":"mutable","name":"success","nameLocation":"630:7:49","nodeType":"VariableDeclaration","scope":10769,"src":"625:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10759,"name":"bool","nodeType":"ElementaryTypeName","src":"625:4:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"624:14:49"},"scope":10908,"src":"550:142:49","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":10782,"nodeType":"Block","src":"895:144:49","statements":[{"AST":{"nativeSrc":"930:103:49","nodeType":"YulBlock","src":"930:103:49","statements":[{"nativeSrc":"944:79:49","nodeType":"YulAssignment","src":"944:79:49","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"960:3:49","nodeType":"YulIdentifier","src":"960:3:49"},"nativeSrc":"960:5:49","nodeType":"YulFunctionCall","src":"960:5:49"},{"name":"target","nativeSrc":"967:6:49","nodeType":"YulIdentifier","src":"967:6:49"},{"name":"value","nativeSrc":"975:5:49","nodeType":"YulIdentifier","src":"975:5:49"},{"arguments":[{"name":"data","nativeSrc":"986:4:49","nodeType":"YulIdentifier","src":"986:4:49"},{"kind":"number","nativeSrc":"992:4:49","nodeType":"YulLiteral","src":"992:4:49","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"982:3:49","nodeType":"YulIdentifier","src":"982:3:49"},"nativeSrc":"982:15:49","nodeType":"YulFunctionCall","src":"982:15:49"},{"arguments":[{"name":"data","nativeSrc":"1005:4:49","nodeType":"YulIdentifier","src":"1005:4:49"}],"functionName":{"name":"mload","nativeSrc":"999:5:49","nodeType":"YulIdentifier","src":"999:5:49"},"nativeSrc":"999:11:49","nodeType":"YulFunctionCall","src":"999:11:49"},{"kind":"number","nativeSrc":"1012:4:49","nodeType":"YulLiteral","src":"1012:4:49","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1018:4:49","nodeType":"YulLiteral","src":"1018:4:49","type":"","value":"0x00"}],"functionName":{"name":"call","nativeSrc":"955:4:49","nodeType":"YulIdentifier","src":"955:4:49"},"nativeSrc":"955:68:49","nodeType":"YulFunctionCall","src":"955:68:49"},"variableNames":[{"name":"success","nativeSrc":"944:7:49","nodeType":"YulIdentifier","src":"944:7:49"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":10776,"isOffset":false,"isSlot":false,"src":"1005:4:49","valueSize":1},{"declaration":10776,"isOffset":false,"isSlot":false,"src":"986:4:49","valueSize":1},{"declaration":10779,"isOffset":false,"isSlot":false,"src":"944:7:49","valueSize":1},{"declaration":10772,"isOffset":false,"isSlot":false,"src":"967:6:49","valueSize":1},{"declaration":10774,"isOffset":false,"isSlot":false,"src":"975:5:49","valueSize":1}],"flags":["memory-safe"],"id":10781,"nodeType":"InlineAssembly","src":"905:128:49"}]},"documentation":{"id":10770,"nodeType":"StructuredDocumentation","src":"698:88:49","text":"@dev Same as {callNoReturn}, but allows to specify the value to be sent in the call."},"id":10783,"implemented":true,"kind":"function","modifiers":[],"name":"callNoReturn","nameLocation":"800:12:49","nodeType":"FunctionDefinition","parameters":{"id":10777,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10772,"mutability":"mutable","name":"target","nameLocation":"821:6:49","nodeType":"VariableDeclaration","scope":10783,"src":"813:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10771,"name":"address","nodeType":"ElementaryTypeName","src":"813:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10774,"mutability":"mutable","name":"value","nameLocation":"837:5:49","nodeType":"VariableDeclaration","scope":10783,"src":"829:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10773,"name":"uint256","nodeType":"ElementaryTypeName","src":"829:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10776,"mutability":"mutable","name":"data","nameLocation":"857:4:49","nodeType":"VariableDeclaration","scope":10783,"src":"844:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10775,"name":"bytes","nodeType":"ElementaryTypeName","src":"844:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"812:50:49"},"returnParameters":{"id":10780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10779,"mutability":"mutable","name":"success","nameLocation":"886:7:49","nodeType":"VariableDeclaration","scope":10783,"src":"881:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10778,"name":"bool","nodeType":"ElementaryTypeName","src":"881:4:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"880:14:49"},"scope":10908,"src":"791:248:49","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":10803,"nodeType":"Block","src":"1583:58:49","statements":[{"expression":{"arguments":[{"id":10798,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10786,"src":"1618:6:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":10799,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1626:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":10800,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10788,"src":"1629:4:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":10797,"name":"callReturn64Bytes","nodeType":"Identifier","overloadedDeclarations":[10804,10822],"referencedDeclaration":10822,"src":"1600:17:49","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes32_$_t_bytes32_$","typeString":"function (address,uint256,bytes memory) returns (bool,bytes32,bytes32)"}},"id":10801,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1600:34:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes32_$_t_bytes32_$","typeString":"tuple(bool,bytes32,bytes32)"}},"functionReturnParameters":10796,"id":10802,"nodeType":"Return","src":"1593:41:49"}]},"documentation":{"id":10784,"nodeType":"StructuredDocumentation","src":"1045:383:49","text":"@dev Performs a Solidity function call using a low level `call` and returns the first 64 bytes of the result\n in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n and this function doesn't zero it out."},"id":10804,"implemented":true,"kind":"function","modifiers":[],"name":"callReturn64Bytes","nameLocation":"1442:17:49","nodeType":"FunctionDefinition","parameters":{"id":10789,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10786,"mutability":"mutable","name":"target","nameLocation":"1477:6:49","nodeType":"VariableDeclaration","scope":10804,"src":"1469:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10785,"name":"address","nodeType":"ElementaryTypeName","src":"1469:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10788,"mutability":"mutable","name":"data","nameLocation":"1506:4:49","nodeType":"VariableDeclaration","scope":10804,"src":"1493:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10787,"name":"bytes","nodeType":"ElementaryTypeName","src":"1493:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1459:57:49"},"returnParameters":{"id":10796,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10791,"mutability":"mutable","name":"success","nameLocation":"1540:7:49","nodeType":"VariableDeclaration","scope":10804,"src":"1535:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10790,"name":"bool","nodeType":"ElementaryTypeName","src":"1535:4:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":10793,"mutability":"mutable","name":"result1","nameLocation":"1557:7:49","nodeType":"VariableDeclaration","scope":10804,"src":"1549:15:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10792,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1549:7:49","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":10795,"mutability":"mutable","name":"result2","nameLocation":"1574:7:49","nodeType":"VariableDeclaration","scope":10804,"src":"1566:15:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10794,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1566:7:49","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1534:48:49"},"scope":10908,"src":"1433:208:49","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":10821,"nodeType":"Block","src":"1922:214:49","statements":[{"AST":{"nativeSrc":"1957:173:49","nodeType":"YulBlock","src":"1957:173:49","statements":[{"nativeSrc":"1971:79:49","nodeType":"YulAssignment","src":"1971:79:49","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"1987:3:49","nodeType":"YulIdentifier","src":"1987:3:49"},"nativeSrc":"1987:5:49","nodeType":"YulFunctionCall","src":"1987:5:49"},{"name":"target","nativeSrc":"1994:6:49","nodeType":"YulIdentifier","src":"1994:6:49"},{"name":"value","nativeSrc":"2002:5:49","nodeType":"YulIdentifier","src":"2002:5:49"},{"arguments":[{"name":"data","nativeSrc":"2013:4:49","nodeType":"YulIdentifier","src":"2013:4:49"},{"kind":"number","nativeSrc":"2019:4:49","nodeType":"YulLiteral","src":"2019:4:49","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2009:3:49","nodeType":"YulIdentifier","src":"2009:3:49"},"nativeSrc":"2009:15:49","nodeType":"YulFunctionCall","src":"2009:15:49"},{"arguments":[{"name":"data","nativeSrc":"2032:4:49","nodeType":"YulIdentifier","src":"2032:4:49"}],"functionName":{"name":"mload","nativeSrc":"2026:5:49","nodeType":"YulIdentifier","src":"2026:5:49"},"nativeSrc":"2026:11:49","nodeType":"YulFunctionCall","src":"2026:11:49"},{"kind":"number","nativeSrc":"2039:4:49","nodeType":"YulLiteral","src":"2039:4:49","type":"","value":"0x00"},{"kind":"number","nativeSrc":"2045:4:49","nodeType":"YulLiteral","src":"2045:4:49","type":"","value":"0x40"}],"functionName":{"name":"call","nativeSrc":"1982:4:49","nodeType":"YulIdentifier","src":"1982:4:49"},"nativeSrc":"1982:68:49","nodeType":"YulFunctionCall","src":"1982:68:49"},"variableNames":[{"name":"success","nativeSrc":"1971:7:49","nodeType":"YulIdentifier","src":"1971:7:49"}]},{"nativeSrc":"2063:22:49","nodeType":"YulAssignment","src":"2063:22:49","value":{"arguments":[{"kind":"number","nativeSrc":"2080:4:49","nodeType":"YulLiteral","src":"2080:4:49","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"2074:5:49","nodeType":"YulIdentifier","src":"2074:5:49"},"nativeSrc":"2074:11:49","nodeType":"YulFunctionCall","src":"2074:11:49"},"variableNames":[{"name":"result1","nativeSrc":"2063:7:49","nodeType":"YulIdentifier","src":"2063:7:49"}]},{"nativeSrc":"2098:22:49","nodeType":"YulAssignment","src":"2098:22:49","value":{"arguments":[{"kind":"number","nativeSrc":"2115:4:49","nodeType":"YulLiteral","src":"2115:4:49","type":"","value":"0x20"}],"functionName":{"name":"mload","nativeSrc":"2109:5:49","nodeType":"YulIdentifier","src":"2109:5:49"},"nativeSrc":"2109:11:49","nodeType":"YulFunctionCall","src":"2109:11:49"},"variableNames":[{"name":"result2","nativeSrc":"2098:7:49","nodeType":"YulIdentifier","src":"2098:7:49"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":10811,"isOffset":false,"isSlot":false,"src":"2013:4:49","valueSize":1},{"declaration":10811,"isOffset":false,"isSlot":false,"src":"2032:4:49","valueSize":1},{"declaration":10816,"isOffset":false,"isSlot":false,"src":"2063:7:49","valueSize":1},{"declaration":10818,"isOffset":false,"isSlot":false,"src":"2098:7:49","valueSize":1},{"declaration":10814,"isOffset":false,"isSlot":false,"src":"1971:7:49","valueSize":1},{"declaration":10807,"isOffset":false,"isSlot":false,"src":"1994:6:49","valueSize":1},{"declaration":10809,"isOffset":false,"isSlot":false,"src":"2002:5:49","valueSize":1}],"flags":["memory-safe"],"id":10820,"nodeType":"InlineAssembly","src":"1932:198:49"}]},"documentation":{"id":10805,"nodeType":"StructuredDocumentation","src":"1647:97:49","text":"@dev Same as {callReturnBytes32Pair}, but allows to specify the value to be sent in the call."},"id":10822,"implemented":true,"kind":"function","modifiers":[],"name":"callReturn64Bytes","nameLocation":"1758:17:49","nodeType":"FunctionDefinition","parameters":{"id":10812,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10807,"mutability":"mutable","name":"target","nameLocation":"1793:6:49","nodeType":"VariableDeclaration","scope":10822,"src":"1785:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10806,"name":"address","nodeType":"ElementaryTypeName","src":"1785:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10809,"mutability":"mutable","name":"value","nameLocation":"1817:5:49","nodeType":"VariableDeclaration","scope":10822,"src":"1809:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10808,"name":"uint256","nodeType":"ElementaryTypeName","src":"1809:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10811,"mutability":"mutable","name":"data","nameLocation":"1845:4:49","nodeType":"VariableDeclaration","scope":10822,"src":"1832:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10810,"name":"bytes","nodeType":"ElementaryTypeName","src":"1832:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1775:80:49"},"returnParameters":{"id":10819,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10814,"mutability":"mutable","name":"success","nameLocation":"1879:7:49","nodeType":"VariableDeclaration","scope":10822,"src":"1874:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10813,"name":"bool","nodeType":"ElementaryTypeName","src":"1874:4:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":10816,"mutability":"mutable","name":"result1","nameLocation":"1896:7:49","nodeType":"VariableDeclaration","scope":10822,"src":"1888:15:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10815,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1888:7:49","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":10818,"mutability":"mutable","name":"result2","nameLocation":"1913:7:49","nodeType":"VariableDeclaration","scope":10822,"src":"1905:15:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10817,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1905:7:49","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1873:48:49"},"scope":10908,"src":"1749:387:49","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":10833,"nodeType":"Block","src":"2350:143:49","statements":[{"AST":{"nativeSrc":"2385:102:49","nodeType":"YulBlock","src":"2385:102:49","statements":[{"nativeSrc":"2399:78:49","nodeType":"YulAssignment","src":"2399:78:49","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"2421:3:49","nodeType":"YulIdentifier","src":"2421:3:49"},"nativeSrc":"2421:5:49","nodeType":"YulFunctionCall","src":"2421:5:49"},{"name":"target","nativeSrc":"2428:6:49","nodeType":"YulIdentifier","src":"2428:6:49"},{"arguments":[{"name":"data","nativeSrc":"2440:4:49","nodeType":"YulIdentifier","src":"2440:4:49"},{"kind":"number","nativeSrc":"2446:4:49","nodeType":"YulLiteral","src":"2446:4:49","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2436:3:49","nodeType":"YulIdentifier","src":"2436:3:49"},"nativeSrc":"2436:15:49","nodeType":"YulFunctionCall","src":"2436:15:49"},{"arguments":[{"name":"data","nativeSrc":"2459:4:49","nodeType":"YulIdentifier","src":"2459:4:49"}],"functionName":{"name":"mload","nativeSrc":"2453:5:49","nodeType":"YulIdentifier","src":"2453:5:49"},"nativeSrc":"2453:11:49","nodeType":"YulFunctionCall","src":"2453:11:49"},{"kind":"number","nativeSrc":"2466:4:49","nodeType":"YulLiteral","src":"2466:4:49","type":"","value":"0x00"},{"kind":"number","nativeSrc":"2472:4:49","nodeType":"YulLiteral","src":"2472:4:49","type":"","value":"0x00"}],"functionName":{"name":"staticcall","nativeSrc":"2410:10:49","nodeType":"YulIdentifier","src":"2410:10:49"},"nativeSrc":"2410:67:49","nodeType":"YulFunctionCall","src":"2410:67:49"},"variableNames":[{"name":"success","nativeSrc":"2399:7:49","nodeType":"YulIdentifier","src":"2399:7:49"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":10827,"isOffset":false,"isSlot":false,"src":"2440:4:49","valueSize":1},{"declaration":10827,"isOffset":false,"isSlot":false,"src":"2459:4:49","valueSize":1},{"declaration":10830,"isOffset":false,"isSlot":false,"src":"2399:7:49","valueSize":1},{"declaration":10825,"isOffset":false,"isSlot":false,"src":"2428:6:49","valueSize":1}],"flags":["memory-safe"],"id":10832,"nodeType":"InlineAssembly","src":"2360:127:49"}]},"documentation":{"id":10823,"nodeType":"StructuredDocumentation","src":"2142:103:49","text":"@dev Performs a Solidity function call using a low level `staticcall` and ignoring the return data."},"id":10834,"implemented":true,"kind":"function","modifiers":[],"name":"staticcallNoReturn","nameLocation":"2259:18:49","nodeType":"FunctionDefinition","parameters":{"id":10828,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10825,"mutability":"mutable","name":"target","nameLocation":"2286:6:49","nodeType":"VariableDeclaration","scope":10834,"src":"2278:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10824,"name":"address","nodeType":"ElementaryTypeName","src":"2278:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10827,"mutability":"mutable","name":"data","nameLocation":"2307:4:49","nodeType":"VariableDeclaration","scope":10834,"src":"2294:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10826,"name":"bytes","nodeType":"ElementaryTypeName","src":"2294:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2277:35:49"},"returnParameters":{"id":10831,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10830,"mutability":"mutable","name":"success","nameLocation":"2341:7:49","nodeType":"VariableDeclaration","scope":10834,"src":"2336:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10829,"name":"bool","nodeType":"ElementaryTypeName","src":"2336:4:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2335:14:49"},"scope":10908,"src":"2250:243:49","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":10849,"nodeType":"Block","src":"3054:213:49","statements":[{"AST":{"nativeSrc":"3089:172:49","nodeType":"YulBlock","src":"3089:172:49","statements":[{"nativeSrc":"3103:78:49","nodeType":"YulAssignment","src":"3103:78:49","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"3125:3:49","nodeType":"YulIdentifier","src":"3125:3:49"},"nativeSrc":"3125:5:49","nodeType":"YulFunctionCall","src":"3125:5:49"},{"name":"target","nativeSrc":"3132:6:49","nodeType":"YulIdentifier","src":"3132:6:49"},{"arguments":[{"name":"data","nativeSrc":"3144:4:49","nodeType":"YulIdentifier","src":"3144:4:49"},{"kind":"number","nativeSrc":"3150:4:49","nodeType":"YulLiteral","src":"3150:4:49","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3140:3:49","nodeType":"YulIdentifier","src":"3140:3:49"},"nativeSrc":"3140:15:49","nodeType":"YulFunctionCall","src":"3140:15:49"},{"arguments":[{"name":"data","nativeSrc":"3163:4:49","nodeType":"YulIdentifier","src":"3163:4:49"}],"functionName":{"name":"mload","nativeSrc":"3157:5:49","nodeType":"YulIdentifier","src":"3157:5:49"},"nativeSrc":"3157:11:49","nodeType":"YulFunctionCall","src":"3157:11:49"},{"kind":"number","nativeSrc":"3170:4:49","nodeType":"YulLiteral","src":"3170:4:49","type":"","value":"0x00"},{"kind":"number","nativeSrc":"3176:4:49","nodeType":"YulLiteral","src":"3176:4:49","type":"","value":"0x40"}],"functionName":{"name":"staticcall","nativeSrc":"3114:10:49","nodeType":"YulIdentifier","src":"3114:10:49"},"nativeSrc":"3114:67:49","nodeType":"YulFunctionCall","src":"3114:67:49"},"variableNames":[{"name":"success","nativeSrc":"3103:7:49","nodeType":"YulIdentifier","src":"3103:7:49"}]},{"nativeSrc":"3194:22:49","nodeType":"YulAssignment","src":"3194:22:49","value":{"arguments":[{"kind":"number","nativeSrc":"3211:4:49","nodeType":"YulLiteral","src":"3211:4:49","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"3205:5:49","nodeType":"YulIdentifier","src":"3205:5:49"},"nativeSrc":"3205:11:49","nodeType":"YulFunctionCall","src":"3205:11:49"},"variableNames":[{"name":"result1","nativeSrc":"3194:7:49","nodeType":"YulIdentifier","src":"3194:7:49"}]},{"nativeSrc":"3229:22:49","nodeType":"YulAssignment","src":"3229:22:49","value":{"arguments":[{"kind":"number","nativeSrc":"3246:4:49","nodeType":"YulLiteral","src":"3246:4:49","type":"","value":"0x20"}],"functionName":{"name":"mload","nativeSrc":"3240:5:49","nodeType":"YulIdentifier","src":"3240:5:49"},"nativeSrc":"3240:11:49","nodeType":"YulFunctionCall","src":"3240:11:49"},"variableNames":[{"name":"result2","nativeSrc":"3229:7:49","nodeType":"YulIdentifier","src":"3229:7:49"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":10839,"isOffset":false,"isSlot":false,"src":"3144:4:49","valueSize":1},{"declaration":10839,"isOffset":false,"isSlot":false,"src":"3163:4:49","valueSize":1},{"declaration":10844,"isOffset":false,"isSlot":false,"src":"3194:7:49","valueSize":1},{"declaration":10846,"isOffset":false,"isSlot":false,"src":"3229:7:49","valueSize":1},{"declaration":10842,"isOffset":false,"isSlot":false,"src":"3103:7:49","valueSize":1},{"declaration":10837,"isOffset":false,"isSlot":false,"src":"3132:6:49","valueSize":1}],"flags":["memory-safe"],"id":10848,"nodeType":"InlineAssembly","src":"3064:197:49"}]},"documentation":{"id":10835,"nodeType":"StructuredDocumentation","src":"2499:389:49","text":"@dev Performs a Solidity function call using a low level `staticcall` and returns the first 64 bytes of the result\n in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n and this function doesn't zero it out."},"id":10850,"implemented":true,"kind":"function","modifiers":[],"name":"staticcallReturn64Bytes","nameLocation":"2902:23:49","nodeType":"FunctionDefinition","parameters":{"id":10840,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10837,"mutability":"mutable","name":"target","nameLocation":"2943:6:49","nodeType":"VariableDeclaration","scope":10850,"src":"2935:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10836,"name":"address","nodeType":"ElementaryTypeName","src":"2935:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10839,"mutability":"mutable","name":"data","nameLocation":"2972:4:49","nodeType":"VariableDeclaration","scope":10850,"src":"2959:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10838,"name":"bytes","nodeType":"ElementaryTypeName","src":"2959:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2925:57:49"},"returnParameters":{"id":10847,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10842,"mutability":"mutable","name":"success","nameLocation":"3011:7:49","nodeType":"VariableDeclaration","scope":10850,"src":"3006:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10841,"name":"bool","nodeType":"ElementaryTypeName","src":"3006:4:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":10844,"mutability":"mutable","name":"result1","nameLocation":"3028:7:49","nodeType":"VariableDeclaration","scope":10850,"src":"3020:15:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10843,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3020:7:49","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":10846,"mutability":"mutable","name":"result2","nameLocation":"3045:7:49","nodeType":"VariableDeclaration","scope":10850,"src":"3037:15:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10845,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3037:7:49","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3005:48:49"},"scope":10908,"src":"2893:374:49","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":10861,"nodeType":"Block","src":"3480:145:49","statements":[{"AST":{"nativeSrc":"3515:104:49","nodeType":"YulBlock","src":"3515:104:49","statements":[{"nativeSrc":"3529:80:49","nodeType":"YulAssignment","src":"3529:80:49","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"3553:3:49","nodeType":"YulIdentifier","src":"3553:3:49"},"nativeSrc":"3553:5:49","nodeType":"YulFunctionCall","src":"3553:5:49"},{"name":"target","nativeSrc":"3560:6:49","nodeType":"YulIdentifier","src":"3560:6:49"},{"arguments":[{"name":"data","nativeSrc":"3572:4:49","nodeType":"YulIdentifier","src":"3572:4:49"},{"kind":"number","nativeSrc":"3578:4:49","nodeType":"YulLiteral","src":"3578:4:49","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3568:3:49","nodeType":"YulIdentifier","src":"3568:3:49"},"nativeSrc":"3568:15:49","nodeType":"YulFunctionCall","src":"3568:15:49"},{"arguments":[{"name":"data","nativeSrc":"3591:4:49","nodeType":"YulIdentifier","src":"3591:4:49"}],"functionName":{"name":"mload","nativeSrc":"3585:5:49","nodeType":"YulIdentifier","src":"3585:5:49"},"nativeSrc":"3585:11:49","nodeType":"YulFunctionCall","src":"3585:11:49"},{"kind":"number","nativeSrc":"3598:4:49","nodeType":"YulLiteral","src":"3598:4:49","type":"","value":"0x00"},{"kind":"number","nativeSrc":"3604:4:49","nodeType":"YulLiteral","src":"3604:4:49","type":"","value":"0x00"}],"functionName":{"name":"delegatecall","nativeSrc":"3540:12:49","nodeType":"YulIdentifier","src":"3540:12:49"},"nativeSrc":"3540:69:49","nodeType":"YulFunctionCall","src":"3540:69:49"},"variableNames":[{"name":"success","nativeSrc":"3529:7:49","nodeType":"YulIdentifier","src":"3529:7:49"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":10855,"isOffset":false,"isSlot":false,"src":"3572:4:49","valueSize":1},{"declaration":10855,"isOffset":false,"isSlot":false,"src":"3591:4:49","valueSize":1},{"declaration":10858,"isOffset":false,"isSlot":false,"src":"3529:7:49","valueSize":1},{"declaration":10853,"isOffset":false,"isSlot":false,"src":"3560:6:49","valueSize":1}],"flags":["memory-safe"],"id":10860,"nodeType":"InlineAssembly","src":"3490:129:49"}]},"documentation":{"id":10851,"nodeType":"StructuredDocumentation","src":"3273:105:49","text":"@dev Performs a Solidity function call using a low level `delegatecall` and ignoring the return data."},"id":10862,"implemented":true,"kind":"function","modifiers":[],"name":"delegatecallNoReturn","nameLocation":"3392:20:49","nodeType":"FunctionDefinition","parameters":{"id":10856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10853,"mutability":"mutable","name":"target","nameLocation":"3421:6:49","nodeType":"VariableDeclaration","scope":10862,"src":"3413:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10852,"name":"address","nodeType":"ElementaryTypeName","src":"3413:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10855,"mutability":"mutable","name":"data","nameLocation":"3442:4:49","nodeType":"VariableDeclaration","scope":10862,"src":"3429:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10854,"name":"bytes","nodeType":"ElementaryTypeName","src":"3429:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3412:35:49"},"returnParameters":{"id":10859,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10858,"mutability":"mutable","name":"success","nameLocation":"3471:7:49","nodeType":"VariableDeclaration","scope":10862,"src":"3466:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10857,"name":"bool","nodeType":"ElementaryTypeName","src":"3466:4:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3465:14:49"},"scope":10908,"src":"3383:242:49","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":10877,"nodeType":"Block","src":"4185:215:49","statements":[{"AST":{"nativeSrc":"4220:174:49","nodeType":"YulBlock","src":"4220:174:49","statements":[{"nativeSrc":"4234:80:49","nodeType":"YulAssignment","src":"4234:80:49","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"4258:3:49","nodeType":"YulIdentifier","src":"4258:3:49"},"nativeSrc":"4258:5:49","nodeType":"YulFunctionCall","src":"4258:5:49"},{"name":"target","nativeSrc":"4265:6:49","nodeType":"YulIdentifier","src":"4265:6:49"},{"arguments":[{"name":"data","nativeSrc":"4277:4:49","nodeType":"YulIdentifier","src":"4277:4:49"},{"kind":"number","nativeSrc":"4283:4:49","nodeType":"YulLiteral","src":"4283:4:49","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4273:3:49","nodeType":"YulIdentifier","src":"4273:3:49"},"nativeSrc":"4273:15:49","nodeType":"YulFunctionCall","src":"4273:15:49"},{"arguments":[{"name":"data","nativeSrc":"4296:4:49","nodeType":"YulIdentifier","src":"4296:4:49"}],"functionName":{"name":"mload","nativeSrc":"4290:5:49","nodeType":"YulIdentifier","src":"4290:5:49"},"nativeSrc":"4290:11:49","nodeType":"YulFunctionCall","src":"4290:11:49"},{"kind":"number","nativeSrc":"4303:4:49","nodeType":"YulLiteral","src":"4303:4:49","type":"","value":"0x00"},{"kind":"number","nativeSrc":"4309:4:49","nodeType":"YulLiteral","src":"4309:4:49","type":"","value":"0x40"}],"functionName":{"name":"delegatecall","nativeSrc":"4245:12:49","nodeType":"YulIdentifier","src":"4245:12:49"},"nativeSrc":"4245:69:49","nodeType":"YulFunctionCall","src":"4245:69:49"},"variableNames":[{"name":"success","nativeSrc":"4234:7:49","nodeType":"YulIdentifier","src":"4234:7:49"}]},{"nativeSrc":"4327:22:49","nodeType":"YulAssignment","src":"4327:22:49","value":{"arguments":[{"kind":"number","nativeSrc":"4344:4:49","nodeType":"YulLiteral","src":"4344:4:49","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"4338:5:49","nodeType":"YulIdentifier","src":"4338:5:49"},"nativeSrc":"4338:11:49","nodeType":"YulFunctionCall","src":"4338:11:49"},"variableNames":[{"name":"result1","nativeSrc":"4327:7:49","nodeType":"YulIdentifier","src":"4327:7:49"}]},{"nativeSrc":"4362:22:49","nodeType":"YulAssignment","src":"4362:22:49","value":{"arguments":[{"kind":"number","nativeSrc":"4379:4:49","nodeType":"YulLiteral","src":"4379:4:49","type":"","value":"0x20"}],"functionName":{"name":"mload","nativeSrc":"4373:5:49","nodeType":"YulIdentifier","src":"4373:5:49"},"nativeSrc":"4373:11:49","nodeType":"YulFunctionCall","src":"4373:11:49"},"variableNames":[{"name":"result2","nativeSrc":"4362:7:49","nodeType":"YulIdentifier","src":"4362:7:49"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":10867,"isOffset":false,"isSlot":false,"src":"4277:4:49","valueSize":1},{"declaration":10867,"isOffset":false,"isSlot":false,"src":"4296:4:49","valueSize":1},{"declaration":10872,"isOffset":false,"isSlot":false,"src":"4327:7:49","valueSize":1},{"declaration":10874,"isOffset":false,"isSlot":false,"src":"4362:7:49","valueSize":1},{"declaration":10870,"isOffset":false,"isSlot":false,"src":"4234:7:49","valueSize":1},{"declaration":10865,"isOffset":false,"isSlot":false,"src":"4265:6:49","valueSize":1}],"flags":["memory-safe"],"id":10876,"nodeType":"InlineAssembly","src":"4195:199:49"}]},"documentation":{"id":10863,"nodeType":"StructuredDocumentation","src":"3631:391:49","text":"@dev Performs a Solidity function call using a low level `delegatecall` and returns the first 64 bytes of the result\n in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n and this function doesn't zero it out."},"id":10878,"implemented":true,"kind":"function","modifiers":[],"name":"delegatecallReturn64Bytes","nameLocation":"4036:25:49","nodeType":"FunctionDefinition","parameters":{"id":10868,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10865,"mutability":"mutable","name":"target","nameLocation":"4079:6:49","nodeType":"VariableDeclaration","scope":10878,"src":"4071:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10864,"name":"address","nodeType":"ElementaryTypeName","src":"4071:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10867,"mutability":"mutable","name":"data","nameLocation":"4108:4:49","nodeType":"VariableDeclaration","scope":10878,"src":"4095:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10866,"name":"bytes","nodeType":"ElementaryTypeName","src":"4095:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4061:57:49"},"returnParameters":{"id":10875,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10870,"mutability":"mutable","name":"success","nameLocation":"4142:7:49","nodeType":"VariableDeclaration","scope":10878,"src":"4137:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10869,"name":"bool","nodeType":"ElementaryTypeName","src":"4137:4:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":10872,"mutability":"mutable","name":"result1","nameLocation":"4159:7:49","nodeType":"VariableDeclaration","scope":10878,"src":"4151:15:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10871,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4151:7:49","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":10874,"mutability":"mutable","name":"result2","nameLocation":"4176:7:49","nodeType":"VariableDeclaration","scope":10878,"src":"4168:15:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10873,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4168:7:49","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4136:48:49"},"scope":10908,"src":"4027:373:49","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":10885,"nodeType":"Block","src":"4526:89:49","statements":[{"AST":{"nativeSrc":"4561:48:49","nodeType":"YulBlock","src":"4561:48:49","statements":[{"nativeSrc":"4575:24:49","nodeType":"YulAssignment","src":"4575:24:49","value":{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"4583:14:49","nodeType":"YulIdentifier","src":"4583:14:49"},"nativeSrc":"4583:16:49","nodeType":"YulFunctionCall","src":"4583:16:49"},"variableNames":[{"name":"size","nativeSrc":"4575:4:49","nodeType":"YulIdentifier","src":"4575:4:49"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":10882,"isOffset":false,"isSlot":false,"src":"4575:4:49","valueSize":1}],"flags":["memory-safe"],"id":10884,"nodeType":"InlineAssembly","src":"4536:73:49"}]},"documentation":{"id":10879,"nodeType":"StructuredDocumentation","src":"4406:52:49","text":"@dev Returns the size of the return data buffer."},"id":10886,"implemented":true,"kind":"function","modifiers":[],"name":"returnDataSize","nameLocation":"4472:14:49","nodeType":"FunctionDefinition","parameters":{"id":10880,"nodeType":"ParameterList","parameters":[],"src":"4486:2:49"},"returnParameters":{"id":10883,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10882,"mutability":"mutable","name":"size","nameLocation":"4520:4:49","nodeType":"VariableDeclaration","scope":10886,"src":"4512:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10881,"name":"uint256","nodeType":"ElementaryTypeName","src":"4512:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4511:14:49"},"scope":10908,"src":"4463:152:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10893,"nodeType":"Block","src":"4764:268:49","statements":[{"AST":{"nativeSrc":"4799:227:49","nodeType":"YulBlock","src":"4799:227:49","statements":[{"nativeSrc":"4813:21:49","nodeType":"YulAssignment","src":"4813:21:49","value":{"arguments":[{"kind":"number","nativeSrc":"4829:4:49","nodeType":"YulLiteral","src":"4829:4:49","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"4823:5:49","nodeType":"YulIdentifier","src":"4823:5:49"},"nativeSrc":"4823:11:49","nodeType":"YulFunctionCall","src":"4823:11:49"},"variableNames":[{"name":"result","nativeSrc":"4813:6:49","nodeType":"YulIdentifier","src":"4813:6:49"}]},{"expression":{"arguments":[{"name":"result","nativeSrc":"4854:6:49","nodeType":"YulIdentifier","src":"4854:6:49"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"4862:14:49","nodeType":"YulIdentifier","src":"4862:14:49"},"nativeSrc":"4862:16:49","nodeType":"YulFunctionCall","src":"4862:16:49"}],"functionName":{"name":"mstore","nativeSrc":"4847:6:49","nodeType":"YulIdentifier","src":"4847:6:49"},"nativeSrc":"4847:32:49","nodeType":"YulFunctionCall","src":"4847:32:49"},"nativeSrc":"4847:32:49","nodeType":"YulExpressionStatement","src":"4847:32:49"},{"expression":{"arguments":[{"arguments":[{"name":"result","nativeSrc":"4911:6:49","nodeType":"YulIdentifier","src":"4911:6:49"},{"kind":"number","nativeSrc":"4919:4:49","nodeType":"YulLiteral","src":"4919:4:49","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4907:3:49","nodeType":"YulIdentifier","src":"4907:3:49"},"nativeSrc":"4907:17:49","nodeType":"YulFunctionCall","src":"4907:17:49"},{"kind":"number","nativeSrc":"4926:4:49","nodeType":"YulLiteral","src":"4926:4:49","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"4932:14:49","nodeType":"YulIdentifier","src":"4932:14:49"},"nativeSrc":"4932:16:49","nodeType":"YulFunctionCall","src":"4932:16:49"}],"functionName":{"name":"returndatacopy","nativeSrc":"4892:14:49","nodeType":"YulIdentifier","src":"4892:14:49"},"nativeSrc":"4892:57:49","nodeType":"YulFunctionCall","src":"4892:57:49"},"nativeSrc":"4892:57:49","nodeType":"YulExpressionStatement","src":"4892:57:49"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4969:4:49","nodeType":"YulLiteral","src":"4969:4:49","type":"","value":"0x40"},{"arguments":[{"name":"result","nativeSrc":"4979:6:49","nodeType":"YulIdentifier","src":"4979:6:49"},{"arguments":[{"kind":"number","nativeSrc":"4991:4:49","nodeType":"YulLiteral","src":"4991:4:49","type":"","value":"0x20"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"4997:14:49","nodeType":"YulIdentifier","src":"4997:14:49"},"nativeSrc":"4997:16:49","nodeType":"YulFunctionCall","src":"4997:16:49"}],"functionName":{"name":"add","nativeSrc":"4987:3:49","nodeType":"YulIdentifier","src":"4987:3:49"},"nativeSrc":"4987:27:49","nodeType":"YulFunctionCall","src":"4987:27:49"}],"functionName":{"name":"add","nativeSrc":"4975:3:49","nodeType":"YulIdentifier","src":"4975:3:49"},"nativeSrc":"4975:40:49","nodeType":"YulFunctionCall","src":"4975:40:49"}],"functionName":{"name":"mstore","nativeSrc":"4962:6:49","nodeType":"YulIdentifier","src":"4962:6:49"},"nativeSrc":"4962:54:49","nodeType":"YulFunctionCall","src":"4962:54:49"},"nativeSrc":"4962:54:49","nodeType":"YulExpressionStatement","src":"4962:54:49"}]},"evmVersion":"prague","externalReferences":[{"declaration":10890,"isOffset":false,"isSlot":false,"src":"4813:6:49","valueSize":1},{"declaration":10890,"isOffset":false,"isSlot":false,"src":"4854:6:49","valueSize":1},{"declaration":10890,"isOffset":false,"isSlot":false,"src":"4911:6:49","valueSize":1},{"declaration":10890,"isOffset":false,"isSlot":false,"src":"4979:6:49","valueSize":1}],"flags":["memory-safe"],"id":10892,"nodeType":"InlineAssembly","src":"4774:252:49"}]},"documentation":{"id":10887,"nodeType":"StructuredDocumentation","src":"4621:72:49","text":"@dev Returns a buffer containing the return data from the last call."},"id":10894,"implemented":true,"kind":"function","modifiers":[],"name":"returnData","nameLocation":"4707:10:49","nodeType":"FunctionDefinition","parameters":{"id":10888,"nodeType":"ParameterList","parameters":[],"src":"4717:2:49"},"returnParameters":{"id":10891,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10890,"mutability":"mutable","name":"result","nameLocation":"4756:6:49","nodeType":"VariableDeclaration","scope":10894,"src":"4743:19:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10889,"name":"bytes","nodeType":"ElementaryTypeName","src":"4743:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4742:21:49"},"scope":10908,"src":"4698:334:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10899,"nodeType":"Block","src":"5137:185:49","statements":[{"AST":{"nativeSrc":"5172:144:49","nodeType":"YulBlock","src":"5172:144:49","statements":[{"nativeSrc":"5186:22:49","nodeType":"YulVariableDeclaration","src":"5186:22:49","value":{"arguments":[{"kind":"number","nativeSrc":"5203:4:49","nodeType":"YulLiteral","src":"5203:4:49","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"5197:5:49","nodeType":"YulIdentifier","src":"5197:5:49"},"nativeSrc":"5197:11:49","nodeType":"YulFunctionCall","src":"5197:11:49"},"variables":[{"name":"fmp","nativeSrc":"5190:3:49","nodeType":"YulTypedName","src":"5190:3:49","type":""}]},{"expression":{"arguments":[{"name":"fmp","nativeSrc":"5236:3:49","nodeType":"YulIdentifier","src":"5236:3:49"},{"kind":"number","nativeSrc":"5241:4:49","nodeType":"YulLiteral","src":"5241:4:49","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"5247:14:49","nodeType":"YulIdentifier","src":"5247:14:49"},"nativeSrc":"5247:16:49","nodeType":"YulFunctionCall","src":"5247:16:49"}],"functionName":{"name":"returndatacopy","nativeSrc":"5221:14:49","nodeType":"YulIdentifier","src":"5221:14:49"},"nativeSrc":"5221:43:49","nodeType":"YulFunctionCall","src":"5221:43:49"},"nativeSrc":"5221:43:49","nodeType":"YulExpressionStatement","src":"5221:43:49"},{"expression":{"arguments":[{"name":"fmp","nativeSrc":"5284:3:49","nodeType":"YulIdentifier","src":"5284:3:49"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"5289:14:49","nodeType":"YulIdentifier","src":"5289:14:49"},"nativeSrc":"5289:16:49","nodeType":"YulFunctionCall","src":"5289:16:49"}],"functionName":{"name":"revert","nativeSrc":"5277:6:49","nodeType":"YulIdentifier","src":"5277:6:49"},"nativeSrc":"5277:29:49","nodeType":"YulFunctionCall","src":"5277:29:49"},"nativeSrc":"5277:29:49","nodeType":"YulExpressionStatement","src":"5277:29:49"}]},"evmVersion":"prague","externalReferences":[],"flags":["memory-safe"],"id":10898,"nodeType":"InlineAssembly","src":"5147:169:49"}]},"documentation":{"id":10895,"nodeType":"StructuredDocumentation","src":"5038:56:49","text":"@dev Revert with the return data from the last call."},"id":10900,"implemented":true,"kind":"function","modifiers":[],"name":"bubbleRevert","nameLocation":"5108:12:49","nodeType":"FunctionDefinition","parameters":{"id":10896,"nodeType":"ParameterList","parameters":[],"src":"5120:2:49"},"returnParameters":{"id":10897,"nodeType":"ParameterList","parameters":[],"src":"5137:0:49"},"scope":10908,"src":"5099:223:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10906,"nodeType":"Block","src":"5389:113:49","statements":[{"AST":{"nativeSrc":"5424:72:49","nodeType":"YulBlock","src":"5424:72:49","statements":[{"expression":{"arguments":[{"arguments":[{"name":"returndata","nativeSrc":"5449:10:49","nodeType":"YulIdentifier","src":"5449:10:49"},{"kind":"number","nativeSrc":"5461:4:49","nodeType":"YulLiteral","src":"5461:4:49","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5445:3:49","nodeType":"YulIdentifier","src":"5445:3:49"},"nativeSrc":"5445:21:49","nodeType":"YulFunctionCall","src":"5445:21:49"},{"arguments":[{"name":"returndata","nativeSrc":"5474:10:49","nodeType":"YulIdentifier","src":"5474:10:49"}],"functionName":{"name":"mload","nativeSrc":"5468:5:49","nodeType":"YulIdentifier","src":"5468:5:49"},"nativeSrc":"5468:17:49","nodeType":"YulFunctionCall","src":"5468:17:49"}],"functionName":{"name":"revert","nativeSrc":"5438:6:49","nodeType":"YulIdentifier","src":"5438:6:49"},"nativeSrc":"5438:48:49","nodeType":"YulFunctionCall","src":"5438:48:49"},"nativeSrc":"5438:48:49","nodeType":"YulExpressionStatement","src":"5438:48:49"}]},"evmVersion":"prague","externalReferences":[{"declaration":10902,"isOffset":false,"isSlot":false,"src":"5449:10:49","valueSize":1},{"declaration":10902,"isOffset":false,"isSlot":false,"src":"5474:10:49","valueSize":1}],"flags":["memory-safe"],"id":10905,"nodeType":"InlineAssembly","src":"5399:97:49"}]},"id":10907,"implemented":true,"kind":"function","modifiers":[],"name":"bubbleRevert","nameLocation":"5337:12:49","nodeType":"FunctionDefinition","parameters":{"id":10903,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10902,"mutability":"mutable","name":"returndata","nameLocation":"5363:10:49","nodeType":"VariableDeclaration","scope":10907,"src":"5350:23:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10901,"name":"bytes","nodeType":"ElementaryTypeName","src":"5350:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5349:25:49"},"returnParameters":{"id":10904,"nodeType":"ParameterList","parameters":[],"src":"5389:0:49"},"scope":10908,"src":"5328:174:49","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":10909,"src":"421:5083:49","usedErrors":[],"usedEvents":[]}],"src":"106:5399:49"},"id":49},"@openzeppelin/contracts/utils/Memory.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Memory.sol","exportedSymbols":{"Math":[15914],"Memory":[11210],"Panic":[11417]},"id":11211,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10910,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"100:24:50"},{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","file":"./Panic.sol","id":10912,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11211,"sourceUnit":11418,"src":"126:34:50","symbolAliases":[{"foreign":{"id":10911,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"134:5:50","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"./math/Math.sol","id":10914,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11211,"sourceUnit":15915,"src":"161:37:50","symbolAliases":[{"foreign":{"id":10913,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"169:4:50","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Memory","contractDependencies":[],"contractKind":"library","documentation":{"id":10915,"nodeType":"StructuredDocumentation","src":"200:579:50","text":" @dev Utilities to manipulate memory.\n Memory is a contiguous and dynamic byte array in which Solidity stores non-primitive types.\n This library provides functions to manipulate pointers to this dynamic array and work with slices of it.\n Slices provide a view into a portion of memory without copying data, enabling efficient substring operations.\n WARNING: When manipulating memory pointers or slices, make sure to follow the Solidity documentation\n guidelines for https://docs.soliditylang.org/en/v0.8.20/assembly.html#memory-safety[Memory Safety]."},"fullyImplemented":true,"id":11210,"linearizedBaseContracts":[11210],"name":"Memory","nameLocation":"788:6:50","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Memory.Pointer","id":10917,"name":"Pointer","nameLocation":"806:7:50","nodeType":"UserDefinedValueTypeDefinition","src":"801:24:50","underlyingType":{"id":10916,"name":"bytes32","nodeType":"ElementaryTypeName","src":"817:7:50","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},{"body":{"id":10925,"nodeType":"Block","src":"963:83:50","statements":[{"AST":{"nativeSrc":"998:42:50","nodeType":"YulBlock","src":"998:42:50","statements":[{"nativeSrc":"1012:18:50","nodeType":"YulAssignment","src":"1012:18:50","value":{"arguments":[{"kind":"number","nativeSrc":"1025:4:50","nodeType":"YulLiteral","src":"1025:4:50","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"1019:5:50","nodeType":"YulIdentifier","src":"1019:5:50"},"nativeSrc":"1019:11:50","nodeType":"YulFunctionCall","src":"1019:11:50"},"variableNames":[{"name":"ptr","nativeSrc":"1012:3:50","nodeType":"YulIdentifier","src":"1012:3:50"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":10922,"isOffset":false,"isSlot":false,"src":"1012:3:50","valueSize":1}],"flags":["memory-safe"],"id":10924,"nodeType":"InlineAssembly","src":"973:67:50"}]},"documentation":{"id":10918,"nodeType":"StructuredDocumentation","src":"831:59:50","text":"@dev Returns a `Pointer` to the current free `Pointer`."},"id":10926,"implemented":true,"kind":"function","modifiers":[],"name":"getFreeMemoryPointer","nameLocation":"904:20:50","nodeType":"FunctionDefinition","parameters":{"id":10919,"nodeType":"ParameterList","parameters":[],"src":"924:2:50"},"returnParameters":{"id":10923,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10922,"mutability":"mutable","name":"ptr","nameLocation":"958:3:50","nodeType":"VariableDeclaration","scope":10926,"src":"950:11:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"},"typeName":{"id":10921,"nodeType":"UserDefinedTypeName","pathNode":{"id":10920,"name":"Pointer","nameLocations":["950:7:50"],"nodeType":"IdentifierPath","referencedDeclaration":10917,"src":"950:7:50"},"referencedDeclaration":10917,"src":"950:7:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},"visibility":"internal"}],"src":"949:13:50"},"scope":11210,"src":"895:151:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10934,"nodeType":"Block","src":"1255:82:50","statements":[{"AST":{"nativeSrc":"1290:41:50","nodeType":"YulBlock","src":"1290:41:50","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1311:4:50","nodeType":"YulLiteral","src":"1311:4:50","type":"","value":"0x40"},{"name":"ptr","nativeSrc":"1317:3:50","nodeType":"YulIdentifier","src":"1317:3:50"}],"functionName":{"name":"mstore","nativeSrc":"1304:6:50","nodeType":"YulIdentifier","src":"1304:6:50"},"nativeSrc":"1304:17:50","nodeType":"YulFunctionCall","src":"1304:17:50"},"nativeSrc":"1304:17:50","nodeType":"YulExpressionStatement","src":"1304:17:50"}]},"evmVersion":"prague","externalReferences":[{"declaration":10930,"isOffset":false,"isSlot":false,"src":"1317:3:50","valueSize":1}],"flags":["memory-safe"],"id":10933,"nodeType":"InlineAssembly","src":"1265:66:50"}]},"documentation":{"id":10927,"nodeType":"StructuredDocumentation","src":"1052:141:50","text":" @dev Sets the free `Pointer` to a specific value.\n WARNING: Everything after the pointer may be overwritten.*"},"id":10935,"implemented":true,"kind":"function","modifiers":[],"name":"setFreeMemoryPointer","nameLocation":"1207:20:50","nodeType":"FunctionDefinition","parameters":{"id":10931,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10930,"mutability":"mutable","name":"ptr","nameLocation":"1236:3:50","nodeType":"VariableDeclaration","scope":10935,"src":"1228:11:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"},"typeName":{"id":10929,"nodeType":"UserDefinedTypeName","pathNode":{"id":10928,"name":"Pointer","nameLocations":["1228:7:50"],"nodeType":"IdentifierPath","referencedDeclaration":10917,"src":"1228:7:50"},"referencedDeclaration":10917,"src":"1228:7:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},"visibility":"internal"}],"src":"1227:13:50"},"returnParameters":{"id":10932,"nodeType":"ParameterList","parameters":[],"src":"1255:0:50"},"scope":11210,"src":"1198:139:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10949,"nodeType":"Block","src":"1504:43:50","statements":[{"expression":{"arguments":[{"id":10946,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10939,"src":"1536:3:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}],"expression":{"id":10944,"name":"Pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10917,"src":"1521:7:50","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Pointer_$10917_$","typeString":"type(Memory.Pointer)"}},"id":10945,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1529:6:50","memberName":"unwrap","nodeType":"MemberAccess","src":"1521:14:50","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Pointer_$10917_$returns$_t_bytes32_$","typeString":"function (Memory.Pointer) pure returns (bytes32)"}},"id":10947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1521:19:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":10943,"id":10948,"nodeType":"Return","src":"1514:26:50"}]},"documentation":{"id":10936,"nodeType":"StructuredDocumentation","src":"1343:92:50","text":"@dev `Pointer` to `bytes32`. Expects a pointer to a properly ABI-encoded `bytes` object."},"id":10950,"implemented":true,"kind":"function","modifiers":[],"name":"asBytes32","nameLocation":"1449:9:50","nodeType":"FunctionDefinition","parameters":{"id":10940,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10939,"mutability":"mutable","name":"ptr","nameLocation":"1467:3:50","nodeType":"VariableDeclaration","scope":10950,"src":"1459:11:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"},"typeName":{"id":10938,"nodeType":"UserDefinedTypeName","pathNode":{"id":10937,"name":"Pointer","nameLocations":["1459:7:50"],"nodeType":"IdentifierPath","referencedDeclaration":10917,"src":"1459:7:50"},"referencedDeclaration":10917,"src":"1459:7:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},"visibility":"internal"}],"src":"1458:13:50"},"returnParameters":{"id":10943,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10942,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10950,"src":"1495:7:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10941,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1495:7:50","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1494:9:50"},"scope":11210,"src":"1440:107:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10964,"nodeType":"Block","src":"1716:43:50","statements":[{"expression":{"arguments":[{"id":10961,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10953,"src":"1746:5:50","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":10959,"name":"Pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10917,"src":"1733:7:50","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Pointer_$10917_$","typeString":"type(Memory.Pointer)"}},"id":10960,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1741:4:50","memberName":"wrap","nodeType":"MemberAccess","src":"1733:12:50","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes32_$returns$_t_userDefinedValueType$_Pointer_$10917_$","typeString":"function (bytes32) pure returns (Memory.Pointer)"}},"id":10962,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1733:19:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},"functionReturnParameters":10958,"id":10963,"nodeType":"Return","src":"1726:26:50"}]},"documentation":{"id":10951,"nodeType":"StructuredDocumentation","src":"1553:92:50","text":"@dev `bytes32` to `Pointer`. Expects a pointer to a properly ABI-encoded `bytes` object."},"id":10965,"implemented":true,"kind":"function","modifiers":[],"name":"asPointer","nameLocation":"1659:9:50","nodeType":"FunctionDefinition","parameters":{"id":10954,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10953,"mutability":"mutable","name":"value","nameLocation":"1677:5:50","nodeType":"VariableDeclaration","scope":10965,"src":"1669:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10952,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1669:7:50","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1668:15:50"},"returnParameters":{"id":10958,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10957,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10965,"src":"1707:7:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"},"typeName":{"id":10956,"nodeType":"UserDefinedTypeName","pathNode":{"id":10955,"name":"Pointer","nameLocations":["1707:7:50"],"nodeType":"IdentifierPath","referencedDeclaration":10917,"src":"1707:7:50"},"referencedDeclaration":10917,"src":"1707:7:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},"visibility":"internal"}],"src":"1706:9:50"},"scope":11210,"src":"1650:109:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10993,"nodeType":"Block","src":"1898:84:50","statements":[{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10989,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":10985,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10969,"src":"1959:3:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}],"expression":{"id":10983,"name":"Pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10917,"src":"1944:7:50","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Pointer_$10917_$","typeString":"type(Memory.Pointer)"}},"id":10984,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1952:6:50","memberName":"unwrap","nodeType":"MemberAccess","src":"1944:14:50","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Pointer_$10917_$returns$_t_bytes32_$","typeString":"function (Memory.Pointer) pure returns (bytes32)"}},"id":10986,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1944:19:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":10982,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1936:7:50","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":10981,"name":"uint256","nodeType":"ElementaryTypeName","src":"1936:7:50","typeDescriptions":{}}},"id":10987,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1936:28:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":10988,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10971,"src":"1967:6:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1936:37:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10980,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1928:7:50","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":10979,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1928:7:50","typeDescriptions":{}}},"id":10990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1928:46:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":10977,"name":"Pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10917,"src":"1915:7:50","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Pointer_$10917_$","typeString":"type(Memory.Pointer)"}},"id":10978,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1923:4:50","memberName":"wrap","nodeType":"MemberAccess","src":"1915:12:50","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes32_$returns$_t_userDefinedValueType$_Pointer_$10917_$","typeString":"function (bytes32) pure returns (Memory.Pointer)"}},"id":10991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1915:60:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},"functionReturnParameters":10976,"id":10992,"nodeType":"Return","src":"1908:67:50"}]},"documentation":{"id":10966,"nodeType":"StructuredDocumentation","src":"1765:50:50","text":"@dev Move a pointer forward by a given offset."},"id":10994,"implemented":true,"kind":"function","modifiers":[],"name":"forward","nameLocation":"1829:7:50","nodeType":"FunctionDefinition","parameters":{"id":10972,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10969,"mutability":"mutable","name":"ptr","nameLocation":"1845:3:50","nodeType":"VariableDeclaration","scope":10994,"src":"1837:11:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"},"typeName":{"id":10968,"nodeType":"UserDefinedTypeName","pathNode":{"id":10967,"name":"Pointer","nameLocations":["1837:7:50"],"nodeType":"IdentifierPath","referencedDeclaration":10917,"src":"1837:7:50"},"referencedDeclaration":10917,"src":"1837:7:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},"visibility":"internal"},{"constant":false,"id":10971,"mutability":"mutable","name":"offset","nameLocation":"1858:6:50","nodeType":"VariableDeclaration","scope":10994,"src":"1850:14:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10970,"name":"uint256","nodeType":"ElementaryTypeName","src":"1850:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1836:29:50"},"returnParameters":{"id":10976,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10975,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10994,"src":"1889:7:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"},"typeName":{"id":10974,"nodeType":"UserDefinedTypeName","pathNode":{"id":10973,"name":"Pointer","nameLocations":["1889:7:50"],"nodeType":"IdentifierPath","referencedDeclaration":10917,"src":"1889:7:50"},"referencedDeclaration":10917,"src":"1889:7:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},"visibility":"internal"}],"src":"1888:9:50"},"scope":11210,"src":"1820:162:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11016,"nodeType":"Block","src":"2114:68:50","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":11014,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11008,"name":"ptr1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10998,"src":"2146:4:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}],"expression":{"id":11006,"name":"Pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10917,"src":"2131:7:50","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Pointer_$10917_$","typeString":"type(Memory.Pointer)"}},"id":11007,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2139:6:50","memberName":"unwrap","nodeType":"MemberAccess","src":"2131:14:50","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Pointer_$10917_$returns$_t_bytes32_$","typeString":"function (Memory.Pointer) pure returns (bytes32)"}},"id":11009,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2131:20:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":11012,"name":"ptr2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11001,"src":"2170:4:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}],"expression":{"id":11010,"name":"Pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10917,"src":"2155:7:50","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Pointer_$10917_$","typeString":"type(Memory.Pointer)"}},"id":11011,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2163:6:50","memberName":"unwrap","nodeType":"MemberAccess","src":"2155:14:50","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Pointer_$10917_$returns$_t_bytes32_$","typeString":"function (Memory.Pointer) pure returns (bytes32)"}},"id":11013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2155:20:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2131:44:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":11005,"id":11015,"nodeType":"Return","src":"2124:51:50"}]},"documentation":{"id":10995,"nodeType":"StructuredDocumentation","src":"1988:49:50","text":"@dev Equality comparator for memory pointers."},"id":11017,"implemented":true,"kind":"function","modifiers":[],"name":"equal","nameLocation":"2051:5:50","nodeType":"FunctionDefinition","parameters":{"id":11002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10998,"mutability":"mutable","name":"ptr1","nameLocation":"2065:4:50","nodeType":"VariableDeclaration","scope":11017,"src":"2057:12:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"},"typeName":{"id":10997,"nodeType":"UserDefinedTypeName","pathNode":{"id":10996,"name":"Pointer","nameLocations":["2057:7:50"],"nodeType":"IdentifierPath","referencedDeclaration":10917,"src":"2057:7:50"},"referencedDeclaration":10917,"src":"2057:7:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},"visibility":"internal"},{"constant":false,"id":11001,"mutability":"mutable","name":"ptr2","nameLocation":"2079:4:50","nodeType":"VariableDeclaration","scope":11017,"src":"2071:12:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"},"typeName":{"id":11000,"nodeType":"UserDefinedTypeName","pathNode":{"id":10999,"name":"Pointer","nameLocations":["2071:7:50"],"nodeType":"IdentifierPath","referencedDeclaration":10917,"src":"2071:7:50"},"referencedDeclaration":10917,"src":"2071:7:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},"visibility":"internal"}],"src":"2056:28:50"},"returnParameters":{"id":11005,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11004,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11017,"src":"2108:4:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11003,"name":"bool","nodeType":"ElementaryTypeName","src":"2108:4:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2107:6:50"},"scope":11210,"src":"2042:140:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"canonicalName":"Memory.Slice","id":11019,"name":"Slice","nameLocation":"2193:5:50","nodeType":"UserDefinedValueTypeDefinition","src":"2188:22:50","underlyingType":{"id":11018,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2202:7:50","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},{"body":{"id":11029,"nodeType":"Block","src":"2357:117:50","statements":[{"AST":{"nativeSrc":"2392:76:50","nodeType":"YulBlock","src":"2392:76:50","statements":[{"nativeSrc":"2406:52:50","nodeType":"YulAssignment","src":"2406:52:50","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2423:3:50","nodeType":"YulLiteral","src":"2423:3:50","type":"","value":"128"},{"arguments":[{"name":"self","nativeSrc":"2434:4:50","nodeType":"YulIdentifier","src":"2434:4:50"}],"functionName":{"name":"mload","nativeSrc":"2428:5:50","nodeType":"YulIdentifier","src":"2428:5:50"},"nativeSrc":"2428:11:50","nodeType":"YulFunctionCall","src":"2428:11:50"}],"functionName":{"name":"shl","nativeSrc":"2419:3:50","nodeType":"YulIdentifier","src":"2419:3:50"},"nativeSrc":"2419:21:50","nodeType":"YulFunctionCall","src":"2419:21:50"},{"arguments":[{"name":"self","nativeSrc":"2446:4:50","nodeType":"YulIdentifier","src":"2446:4:50"},{"kind":"number","nativeSrc":"2452:4:50","nodeType":"YulLiteral","src":"2452:4:50","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2442:3:50","nodeType":"YulIdentifier","src":"2442:3:50"},"nativeSrc":"2442:15:50","nodeType":"YulFunctionCall","src":"2442:15:50"}],"functionName":{"name":"or","nativeSrc":"2416:2:50","nodeType":"YulIdentifier","src":"2416:2:50"},"nativeSrc":"2416:42:50","nodeType":"YulFunctionCall","src":"2416:42:50"},"variableNames":[{"name":"result","nativeSrc":"2406:6:50","nodeType":"YulIdentifier","src":"2406:6:50"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":11026,"isOffset":false,"isSlot":false,"src":"2406:6:50","valueSize":1},{"declaration":11022,"isOffset":false,"isSlot":false,"src":"2434:4:50","valueSize":1},{"declaration":11022,"isOffset":false,"isSlot":false,"src":"2446:4:50","valueSize":1}],"flags":["memory-safe"],"id":11028,"nodeType":"InlineAssembly","src":"2367:101:50"}]},"documentation":{"id":11020,"nodeType":"StructuredDocumentation","src":"2216:63:50","text":"@dev Get a slice representation of a bytes object in memory"},"id":11030,"implemented":true,"kind":"function","modifiers":[],"name":"asSlice","nameLocation":"2293:7:50","nodeType":"FunctionDefinition","parameters":{"id":11023,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11022,"mutability":"mutable","name":"self","nameLocation":"2314:4:50","nodeType":"VariableDeclaration","scope":11030,"src":"2301:17:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11021,"name":"bytes","nodeType":"ElementaryTypeName","src":"2301:5:50","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2300:19:50"},"returnParameters":{"id":11027,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11026,"mutability":"mutable","name":"result","nameLocation":"2349:6:50","nodeType":"VariableDeclaration","scope":11030,"src":"2343:12:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"},"typeName":{"id":11025,"nodeType":"UserDefinedTypeName","pathNode":{"id":11024,"name":"Slice","nameLocations":["2343:5:50"],"nodeType":"IdentifierPath","referencedDeclaration":11019,"src":"2343:5:50"},"referencedDeclaration":11019,"src":"2343:5:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}},"visibility":"internal"}],"src":"2342:14:50"},"scope":11210,"src":"2284:190:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11040,"nodeType":"Block","src":"2639:89:50","statements":[{"AST":{"nativeSrc":"2674:48:50","nodeType":"YulBlock","src":"2674:48:50","statements":[{"nativeSrc":"2688:24:50","nodeType":"YulAssignment","src":"2688:24:50","value":{"arguments":[{"kind":"number","nativeSrc":"2702:3:50","nodeType":"YulLiteral","src":"2702:3:50","type":"","value":"128"},{"name":"self","nativeSrc":"2707:4:50","nodeType":"YulIdentifier","src":"2707:4:50"}],"functionName":{"name":"shr","nativeSrc":"2698:3:50","nodeType":"YulIdentifier","src":"2698:3:50"},"nativeSrc":"2698:14:50","nodeType":"YulFunctionCall","src":"2698:14:50"},"variableNames":[{"name":"result","nativeSrc":"2688:6:50","nodeType":"YulIdentifier","src":"2688:6:50"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":11037,"isOffset":false,"isSlot":false,"src":"2688:6:50","valueSize":1},{"declaration":11034,"isOffset":false,"isSlot":false,"src":"2707:4:50","valueSize":1}],"flags":["memory-safe"],"id":11039,"nodeType":"InlineAssembly","src":"2649:73:50"}]},"documentation":{"id":11031,"nodeType":"StructuredDocumentation","src":"2480:87:50","text":"@dev Returns the length of a given slice (equiv to self.length for calldata slices)"},"id":11041,"implemented":true,"kind":"function","modifiers":[],"name":"length","nameLocation":"2581:6:50","nodeType":"FunctionDefinition","parameters":{"id":11035,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11034,"mutability":"mutable","name":"self","nameLocation":"2594:4:50","nodeType":"VariableDeclaration","scope":11041,"src":"2588:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"},"typeName":{"id":11033,"nodeType":"UserDefinedTypeName","pathNode":{"id":11032,"name":"Slice","nameLocations":["2588:5:50"],"nodeType":"IdentifierPath","referencedDeclaration":11019,"src":"2588:5:50"},"referencedDeclaration":11019,"src":"2588:5:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}},"visibility":"internal"}],"src":"2587:12:50"},"returnParameters":{"id":11038,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11037,"mutability":"mutable","name":"result","nameLocation":"2631:6:50","nodeType":"VariableDeclaration","scope":11041,"src":"2623:14:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11036,"name":"uint256","nodeType":"ElementaryTypeName","src":"2623:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2622:16:50"},"scope":11210,"src":"2572:156:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11080,"nodeType":"Block","src":"2891:163:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11053,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11047,"src":"2905:6:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"id":11055,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11045,"src":"2921:4:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}],"id":11054,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11041,"src":"2914:6:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Slice_$11019_$returns$_t_uint256_$","typeString":"function (Memory.Slice) pure returns (uint256)"}},"id":11056,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2914:12:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2905:21:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11065,"nodeType":"IfStatement","src":"2901:65:50","trueBody":{"expression":{"arguments":[{"expression":{"id":11061,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"2940:5:50","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$11417_$","typeString":"type(library Panic)"}},"id":11062,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2946:19:50","memberName":"ARRAY_OUT_OF_BOUNDS","nodeType":"MemberAccess","referencedDeclaration":11400,"src":"2940:25:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":11058,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"2928:5:50","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$11417_$","typeString":"type(library Panic)"}},"id":11060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2934:5:50","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":11416,"src":"2928:11:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":11063,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2928:38:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11064,"nodeType":"ExpressionStatement","src":"2928:38:50"}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11068,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11045,"src":"2999:4:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}],"id":11067,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11041,"src":"2992:6:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Slice_$11019_$returns$_t_uint256_$","typeString":"function (Memory.Slice) pure returns (uint256)"}},"id":11069,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2992:12:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":11070,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11047,"src":"3007:6:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2992:21:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"arguments":[{"id":11074,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11045,"src":"3032:4:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}],"id":11073,"name":"_pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11209,"src":"3023:8:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Slice_$11019_$returns$_t_userDefinedValueType$_Pointer_$10917_$","typeString":"function (Memory.Slice) pure returns (Memory.Pointer)"}},"id":11075,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3023:14:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},{"id":11076,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11047,"src":"3039:6:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11072,"name":"forward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10994,"src":"3015:7:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Pointer_$10917_$_t_uint256_$returns$_t_userDefinedValueType$_Pointer_$10917_$","typeString":"function (Memory.Pointer,uint256) pure returns (Memory.Pointer)"}},"id":11077,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3015:31:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}],"id":11066,"name":"_asSlice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11197,"src":"2983:8:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_userDefinedValueType$_Pointer_$10917_$returns$_t_userDefinedValueType$_Slice_$11019_$","typeString":"function (uint256,Memory.Pointer) pure returns (Memory.Slice)"}},"id":11078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2983:64:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}},"functionReturnParameters":11052,"id":11079,"nodeType":"Return","src":"2976:71:50"}]},"documentation":{"id":11042,"nodeType":"StructuredDocumentation","src":"2734:79:50","text":"@dev Offset a memory slice (equivalent to self[start:] for calldata slices)"},"id":11081,"implemented":true,"kind":"function","modifiers":[],"name":"slice","nameLocation":"2827:5:50","nodeType":"FunctionDefinition","parameters":{"id":11048,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11045,"mutability":"mutable","name":"self","nameLocation":"2839:4:50","nodeType":"VariableDeclaration","scope":11081,"src":"2833:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"},"typeName":{"id":11044,"nodeType":"UserDefinedTypeName","pathNode":{"id":11043,"name":"Slice","nameLocations":["2833:5:50"],"nodeType":"IdentifierPath","referencedDeclaration":11019,"src":"2833:5:50"},"referencedDeclaration":11019,"src":"2833:5:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}},"visibility":"internal"},{"constant":false,"id":11047,"mutability":"mutable","name":"offset","nameLocation":"2853:6:50","nodeType":"VariableDeclaration","scope":11081,"src":"2845:14:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11046,"name":"uint256","nodeType":"ElementaryTypeName","src":"2845:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2832:28:50"},"returnParameters":{"id":11052,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11051,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11081,"src":"2884:5:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"},"typeName":{"id":11050,"nodeType":"UserDefinedTypeName","pathNode":{"id":11049,"name":"Slice","nameLocations":["2884:5:50"],"nodeType":"IdentifierPath","referencedDeclaration":11019,"src":"2884:5:50"},"referencedDeclaration":11019,"src":"2884:5:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}},"visibility":"internal"}],"src":"2883:7:50"},"scope":11210,"src":"2818:236:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11120,"nodeType":"Block","src":"3243:151:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11101,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11097,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11095,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11087,"src":"3257:6:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":11096,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11089,"src":"3266:3:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3257:12:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"id":11099,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11085,"src":"3279:4:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}],"id":11098,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11041,"src":"3272:6:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Slice_$11019_$returns$_t_uint256_$","typeString":"function (Memory.Slice) pure returns (uint256)"}},"id":11100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3272:12:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3257:27:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11109,"nodeType":"IfStatement","src":"3253:71:50","trueBody":{"expression":{"arguments":[{"expression":{"id":11105,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"3298:5:50","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$11417_$","typeString":"type(library Panic)"}},"id":11106,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3304:19:50","memberName":"ARRAY_OUT_OF_BOUNDS","nodeType":"MemberAccess","referencedDeclaration":11400,"src":"3298:25:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":11102,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"3286:5:50","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$11417_$","typeString":"type(library Panic)"}},"id":11104,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3292:5:50","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":11416,"src":"3286:11:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":11107,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3286:38:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11108,"nodeType":"ExpressionStatement","src":"3286:38:50"}},{"expression":{"arguments":[{"id":11111,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11089,"src":"3350:3:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"arguments":[{"id":11114,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11085,"src":"3372:4:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}],"id":11113,"name":"_pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11209,"src":"3363:8:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Slice_$11019_$returns$_t_userDefinedValueType$_Pointer_$10917_$","typeString":"function (Memory.Slice) pure returns (Memory.Pointer)"}},"id":11115,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3363:14:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},{"id":11116,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11087,"src":"3379:6:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11112,"name":"forward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10994,"src":"3355:7:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Pointer_$10917_$_t_uint256_$returns$_t_userDefinedValueType$_Pointer_$10917_$","typeString":"function (Memory.Pointer,uint256) pure returns (Memory.Pointer)"}},"id":11117,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3355:31:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}],"id":11110,"name":"_asSlice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11197,"src":"3341:8:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_userDefinedValueType$_Pointer_$10917_$returns$_t_userDefinedValueType$_Slice_$11019_$","typeString":"function (uint256,Memory.Pointer) pure returns (Memory.Slice)"}},"id":11118,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3341:46:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}},"functionReturnParameters":11094,"id":11119,"nodeType":"Return","src":"3334:53:50"}]},"documentation":{"id":11082,"nodeType":"StructuredDocumentation","src":"3060:92:50","text":"@dev Offset and cut a Slice (equivalent to self[start:start+length] for calldata slices)"},"id":11121,"implemented":true,"kind":"function","modifiers":[],"name":"slice","nameLocation":"3166:5:50","nodeType":"FunctionDefinition","parameters":{"id":11090,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11085,"mutability":"mutable","name":"self","nameLocation":"3178:4:50","nodeType":"VariableDeclaration","scope":11121,"src":"3172:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"},"typeName":{"id":11084,"nodeType":"UserDefinedTypeName","pathNode":{"id":11083,"name":"Slice","nameLocations":["3172:5:50"],"nodeType":"IdentifierPath","referencedDeclaration":11019,"src":"3172:5:50"},"referencedDeclaration":11019,"src":"3172:5:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}},"visibility":"internal"},{"constant":false,"id":11087,"mutability":"mutable","name":"offset","nameLocation":"3192:6:50","nodeType":"VariableDeclaration","scope":11121,"src":"3184:14:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11086,"name":"uint256","nodeType":"ElementaryTypeName","src":"3184:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11089,"mutability":"mutable","name":"len","nameLocation":"3208:3:50","nodeType":"VariableDeclaration","scope":11121,"src":"3200:11:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11088,"name":"uint256","nodeType":"ElementaryTypeName","src":"3200:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3171:41:50"},"returnParameters":{"id":11094,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11093,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11121,"src":"3236:5:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"},"typeName":{"id":11092,"nodeType":"UserDefinedTypeName","pathNode":{"id":11091,"name":"Slice","nameLocations":["3236:5:50"],"nodeType":"IdentifierPath","referencedDeclaration":11019,"src":"3236:5:50"},"referencedDeclaration":11019,"src":"3236:5:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}},"visibility":"internal"}],"src":"3235:7:50"},"scope":11210,"src":"3157:237:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11156,"nodeType":"Block","src":"3708:324:50","statements":[{"assignments":[11133],"declarations":[{"constant":false,"id":11133,"mutability":"mutable","name":"outOfBoundBytes","nameLocation":"3726:15:50","nodeType":"VariableDeclaration","scope":11156,"src":"3718:23:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11132,"name":"uint256","nodeType":"ElementaryTypeName","src":"3718:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11143,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"30783230","id":11136,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3763:4:50","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":11137,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11127,"src":"3770:6:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3763:13:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":11140,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11125,"src":"3785:4:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}],"id":11139,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11041,"src":"3778:6:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Slice_$11019_$returns$_t_uint256_$","typeString":"function (Memory.Slice) pure returns (uint256)"}},"id":11141,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3778:12:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":11134,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"3744:4:50","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":11135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3749:13:50","memberName":"saturatingSub","nodeType":"MemberAccess","referencedDeclaration":14504,"src":"3744:18:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":11142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3744:47:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3718:73:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11144,"name":"outOfBoundBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11133,"src":"3805:15:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30783166","id":11145,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3823:4:50","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"0x1f"},"src":"3805:22:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11154,"nodeType":"IfStatement","src":"3801:66:50","trueBody":{"expression":{"arguments":[{"expression":{"id":11150,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"3841:5:50","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$11417_$","typeString":"type(library Panic)"}},"id":11151,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3847:19:50","memberName":"ARRAY_OUT_OF_BOUNDS","nodeType":"MemberAccess","referencedDeclaration":11400,"src":"3841:25:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":11147,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"3829:5:50","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$11417_$","typeString":"type(library Panic)"}},"id":11149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3835:5:50","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":11416,"src":"3829:11:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":11152,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3829:38:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11153,"nodeType":"ExpressionStatement","src":"3829:38:50"}},{"AST":{"nativeSrc":"3903:123:50","nodeType":"YulBlock","src":"3903:123:50","statements":[{"nativeSrc":"3917:99:50","nodeType":"YulAssignment","src":"3917:99:50","value":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"self","nativeSrc":"3944:4:50","nodeType":"YulIdentifier","src":"3944:4:50"},{"arguments":[{"kind":"number","nativeSrc":"3954:3:50","nodeType":"YulLiteral","src":"3954:3:50","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"3963:1:50","nodeType":"YulLiteral","src":"3963:1:50","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3959:3:50","nodeType":"YulIdentifier","src":"3959:3:50"},"nativeSrc":"3959:6:50","nodeType":"YulFunctionCall","src":"3959:6:50"}],"functionName":{"name":"shr","nativeSrc":"3950:3:50","nodeType":"YulIdentifier","src":"3950:3:50"},"nativeSrc":"3950:16:50","nodeType":"YulFunctionCall","src":"3950:16:50"}],"functionName":{"name":"and","nativeSrc":"3940:3:50","nodeType":"YulIdentifier","src":"3940:3:50"},"nativeSrc":"3940:27:50","nodeType":"YulFunctionCall","src":"3940:27:50"},{"name":"offset","nativeSrc":"3969:6:50","nodeType":"YulIdentifier","src":"3969:6:50"}],"functionName":{"name":"add","nativeSrc":"3936:3:50","nodeType":"YulIdentifier","src":"3936:3:50"},"nativeSrc":"3936:40:50","nodeType":"YulFunctionCall","src":"3936:40:50"}],"functionName":{"name":"mload","nativeSrc":"3930:5:50","nodeType":"YulIdentifier","src":"3930:5:50"},"nativeSrc":"3930:47:50","nodeType":"YulFunctionCall","src":"3930:47:50"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3987:1:50","nodeType":"YulLiteral","src":"3987:1:50","type":"","value":"8"},{"name":"outOfBoundBytes","nativeSrc":"3990:15:50","nodeType":"YulIdentifier","src":"3990:15:50"}],"functionName":{"name":"mul","nativeSrc":"3983:3:50","nodeType":"YulIdentifier","src":"3983:3:50"},"nativeSrc":"3983:23:50","nodeType":"YulFunctionCall","src":"3983:23:50"},{"arguments":[{"kind":"number","nativeSrc":"4012:1:50","nodeType":"YulLiteral","src":"4012:1:50","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"4008:3:50","nodeType":"YulIdentifier","src":"4008:3:50"},"nativeSrc":"4008:6:50","nodeType":"YulFunctionCall","src":"4008:6:50"}],"functionName":{"name":"shl","nativeSrc":"3979:3:50","nodeType":"YulIdentifier","src":"3979:3:50"},"nativeSrc":"3979:36:50","nodeType":"YulFunctionCall","src":"3979:36:50"}],"functionName":{"name":"and","nativeSrc":"3926:3:50","nodeType":"YulIdentifier","src":"3926:3:50"},"nativeSrc":"3926:90:50","nodeType":"YulFunctionCall","src":"3926:90:50"},"variableNames":[{"name":"value","nativeSrc":"3917:5:50","nodeType":"YulIdentifier","src":"3917:5:50"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":11127,"isOffset":false,"isSlot":false,"src":"3969:6:50","valueSize":1},{"declaration":11133,"isOffset":false,"isSlot":false,"src":"3990:15:50","valueSize":1},{"declaration":11125,"isOffset":false,"isSlot":false,"src":"3944:4:50","valueSize":1},{"declaration":11130,"isOffset":false,"isSlot":false,"src":"3917:5:50","valueSize":1}],"flags":["memory-safe"],"id":11155,"nodeType":"InlineAssembly","src":"3878:148:50"}]},"documentation":{"id":11122,"nodeType":"StructuredDocumentation","src":"3400:223:50","text":" @dev Read a bytes32 buffer from a given Slice at a specific offset\n NOTE: If offset > length(slice) - 0x20, part of the return value will be out of bound of the slice. These bytes are zeroed."},"id":11157,"implemented":true,"kind":"function","modifiers":[],"name":"load","nameLocation":"3637:4:50","nodeType":"FunctionDefinition","parameters":{"id":11128,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11125,"mutability":"mutable","name":"self","nameLocation":"3648:4:50","nodeType":"VariableDeclaration","scope":11157,"src":"3642:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"},"typeName":{"id":11124,"nodeType":"UserDefinedTypeName","pathNode":{"id":11123,"name":"Slice","nameLocations":["3642:5:50"],"nodeType":"IdentifierPath","referencedDeclaration":11019,"src":"3642:5:50"},"referencedDeclaration":11019,"src":"3642:5:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}},"visibility":"internal"},{"constant":false,"id":11127,"mutability":"mutable","name":"offset","nameLocation":"3662:6:50","nodeType":"VariableDeclaration","scope":11157,"src":"3654:14:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11126,"name":"uint256","nodeType":"ElementaryTypeName","src":"3654:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3641:28:50"},"returnParameters":{"id":11131,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11130,"mutability":"mutable","name":"value","nameLocation":"3701:5:50","nodeType":"VariableDeclaration","scope":11157,"src":"3693:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11129,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3693:7:50","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3692:15:50"},"scope":11210,"src":"3628:404:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11182,"nodeType":"Block","src":"4188:300:50","statements":[{"assignments":[11167],"declarations":[{"constant":false,"id":11167,"mutability":"mutable","name":"len","nameLocation":"4206:3:50","nodeType":"VariableDeclaration","scope":11182,"src":"4198:11:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11166,"name":"uint256","nodeType":"ElementaryTypeName","src":"4198:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11171,"initialValue":{"arguments":[{"id":11169,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11161,"src":"4219:4:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}],"id":11168,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11041,"src":"4212:6:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Slice_$11019_$returns$_t_uint256_$","typeString":"function (Memory.Slice) pure returns (uint256)"}},"id":11170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4212:12:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"4198:26:50"},{"assignments":[11176],"declarations":[{"constant":false,"id":11176,"mutability":"mutable","name":"ptr","nameLocation":"4249:3:50","nodeType":"VariableDeclaration","scope":11182,"src":"4234:18:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"},"typeName":{"id":11175,"nodeType":"UserDefinedTypeName","pathNode":{"id":11174,"name":"Memory.Pointer","nameLocations":["4234:6:50","4241:7:50"],"nodeType":"IdentifierPath","referencedDeclaration":10917,"src":"4234:14:50"},"referencedDeclaration":10917,"src":"4234:14:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},"visibility":"internal"}],"id":11180,"initialValue":{"arguments":[{"id":11178,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11161,"src":"4264:4:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}],"id":11177,"name":"_pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11209,"src":"4255:8:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Slice_$11019_$returns$_t_userDefinedValueType$_Pointer_$10917_$","typeString":"function (Memory.Slice) pure returns (Memory.Pointer)"}},"id":11179,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4255:14:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},"nodeType":"VariableDeclarationStatement","src":"4234:35:50"},{"AST":{"nativeSrc":"4304:178:50","nodeType":"YulBlock","src":"4304:178:50","statements":[{"nativeSrc":"4318:21:50","nodeType":"YulAssignment","src":"4318:21:50","value":{"arguments":[{"kind":"number","nativeSrc":"4334:4:50","nodeType":"YulLiteral","src":"4334:4:50","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"4328:5:50","nodeType":"YulIdentifier","src":"4328:5:50"},"nativeSrc":"4328:11:50","nodeType":"YulFunctionCall","src":"4328:11:50"},"variableNames":[{"name":"result","nativeSrc":"4318:6:50","nodeType":"YulIdentifier","src":"4318:6:50"}]},{"expression":{"arguments":[{"name":"result","nativeSrc":"4359:6:50","nodeType":"YulIdentifier","src":"4359:6:50"},{"name":"len","nativeSrc":"4367:3:50","nodeType":"YulIdentifier","src":"4367:3:50"}],"functionName":{"name":"mstore","nativeSrc":"4352:6:50","nodeType":"YulIdentifier","src":"4352:6:50"},"nativeSrc":"4352:19:50","nodeType":"YulFunctionCall","src":"4352:19:50"},"nativeSrc":"4352:19:50","nodeType":"YulExpressionStatement","src":"4352:19:50"},{"expression":{"arguments":[{"arguments":[{"name":"result","nativeSrc":"4394:6:50","nodeType":"YulIdentifier","src":"4394:6:50"},{"kind":"number","nativeSrc":"4402:4:50","nodeType":"YulLiteral","src":"4402:4:50","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4390:3:50","nodeType":"YulIdentifier","src":"4390:3:50"},"nativeSrc":"4390:17:50","nodeType":"YulFunctionCall","src":"4390:17:50"},{"name":"ptr","nativeSrc":"4409:3:50","nodeType":"YulIdentifier","src":"4409:3:50"},{"name":"len","nativeSrc":"4414:3:50","nodeType":"YulIdentifier","src":"4414:3:50"}],"functionName":{"name":"mcopy","nativeSrc":"4384:5:50","nodeType":"YulIdentifier","src":"4384:5:50"},"nativeSrc":"4384:34:50","nodeType":"YulFunctionCall","src":"4384:34:50"},"nativeSrc":"4384:34:50","nodeType":"YulExpressionStatement","src":"4384:34:50"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4438:4:50","nodeType":"YulLiteral","src":"4438:4:50","type":"","value":"0x40"},{"arguments":[{"arguments":[{"name":"result","nativeSrc":"4452:6:50","nodeType":"YulIdentifier","src":"4452:6:50"},{"name":"len","nativeSrc":"4460:3:50","nodeType":"YulIdentifier","src":"4460:3:50"}],"functionName":{"name":"add","nativeSrc":"4448:3:50","nodeType":"YulIdentifier","src":"4448:3:50"},"nativeSrc":"4448:16:50","nodeType":"YulFunctionCall","src":"4448:16:50"},{"kind":"number","nativeSrc":"4466:4:50","nodeType":"YulLiteral","src":"4466:4:50","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4444:3:50","nodeType":"YulIdentifier","src":"4444:3:50"},"nativeSrc":"4444:27:50","nodeType":"YulFunctionCall","src":"4444:27:50"}],"functionName":{"name":"mstore","nativeSrc":"4431:6:50","nodeType":"YulIdentifier","src":"4431:6:50"},"nativeSrc":"4431:41:50","nodeType":"YulFunctionCall","src":"4431:41:50"},"nativeSrc":"4431:41:50","nodeType":"YulExpressionStatement","src":"4431:41:50"}]},"evmVersion":"prague","externalReferences":[{"declaration":11167,"isOffset":false,"isSlot":false,"src":"4367:3:50","valueSize":1},{"declaration":11167,"isOffset":false,"isSlot":false,"src":"4414:3:50","valueSize":1},{"declaration":11167,"isOffset":false,"isSlot":false,"src":"4460:3:50","valueSize":1},{"declaration":11176,"isOffset":false,"isSlot":false,"src":"4409:3:50","valueSize":1},{"declaration":11164,"isOffset":false,"isSlot":false,"src":"4318:6:50","valueSize":1},{"declaration":11164,"isOffset":false,"isSlot":false,"src":"4359:6:50","valueSize":1},{"declaration":11164,"isOffset":false,"isSlot":false,"src":"4394:6:50","valueSize":1},{"declaration":11164,"isOffset":false,"isSlot":false,"src":"4452:6:50","valueSize":1}],"flags":["memory-safe"],"id":11181,"nodeType":"InlineAssembly","src":"4279:203:50"}]},"documentation":{"id":11158,"nodeType":"StructuredDocumentation","src":"4038:72:50","text":"@dev Extract the data corresponding to a Slice (allocate new memory)"},"id":11183,"implemented":true,"kind":"function","modifiers":[],"name":"toBytes","nameLocation":"4124:7:50","nodeType":"FunctionDefinition","parameters":{"id":11162,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11161,"mutability":"mutable","name":"self","nameLocation":"4138:4:50","nodeType":"VariableDeclaration","scope":11183,"src":"4132:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"},"typeName":{"id":11160,"nodeType":"UserDefinedTypeName","pathNode":{"id":11159,"name":"Slice","nameLocations":["4132:5:50"],"nodeType":"IdentifierPath","referencedDeclaration":11019,"src":"4132:5:50"},"referencedDeclaration":11019,"src":"4132:5:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}},"visibility":"internal"}],"src":"4131:12:50"},"returnParameters":{"id":11165,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11164,"mutability":"mutable","name":"result","nameLocation":"4180:6:50","nodeType":"VariableDeclaration","scope":11183,"src":"4167:19:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11163,"name":"bytes","nodeType":"ElementaryTypeName","src":"4167:5:50","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4166:21:50"},"scope":11210,"src":"4115:373:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11196,"nodeType":"Block","src":"5031:97:50","statements":[{"AST":{"nativeSrc":"5066:56:50","nodeType":"YulBlock","src":"5066:56:50","statements":[{"nativeSrc":"5080:32:50","nodeType":"YulAssignment","src":"5080:32:50","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5097:3:50","nodeType":"YulLiteral","src":"5097:3:50","type":"","value":"128"},{"name":"len","nativeSrc":"5102:3:50","nodeType":"YulIdentifier","src":"5102:3:50"}],"functionName":{"name":"shl","nativeSrc":"5093:3:50","nodeType":"YulIdentifier","src":"5093:3:50"},"nativeSrc":"5093:13:50","nodeType":"YulFunctionCall","src":"5093:13:50"},{"name":"ptr","nativeSrc":"5108:3:50","nodeType":"YulIdentifier","src":"5108:3:50"}],"functionName":{"name":"or","nativeSrc":"5090:2:50","nodeType":"YulIdentifier","src":"5090:2:50"},"nativeSrc":"5090:22:50","nodeType":"YulFunctionCall","src":"5090:22:50"},"variableNames":[{"name":"result","nativeSrc":"5080:6:50","nodeType":"YulIdentifier","src":"5080:6:50"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":11186,"isOffset":false,"isSlot":false,"src":"5102:3:50","valueSize":1},{"declaration":11189,"isOffset":false,"isSlot":false,"src":"5108:3:50","valueSize":1},{"declaration":11193,"isOffset":false,"isSlot":false,"src":"5080:6:50","valueSize":1}],"flags":["memory-safe"],"id":11195,"nodeType":"InlineAssembly","src":"5041:81:50"}]},"documentation":{"id":11184,"nodeType":"StructuredDocumentation","src":"4494:445:50","text":" @dev Private helper: create a slice from raw values (length and pointer)\n NOTE: this function MUST NOT be called with `len` or `ptr` that exceed `2**128-1`. This should never be\n the case of slices produced by `asSlice(bytes)`, and function that reduce the scope of slices\n (`slice(Slice,uint256)` and `slice(Slice,uint256, uint256)`) should not cause this issue if the parent slice is\n correct."},"id":11197,"implemented":true,"kind":"function","modifiers":[],"name":"_asSlice","nameLocation":"4953:8:50","nodeType":"FunctionDefinition","parameters":{"id":11190,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11186,"mutability":"mutable","name":"len","nameLocation":"4970:3:50","nodeType":"VariableDeclaration","scope":11197,"src":"4962:11:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11185,"name":"uint256","nodeType":"ElementaryTypeName","src":"4962:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11189,"mutability":"mutable","name":"ptr","nameLocation":"4990:3:50","nodeType":"VariableDeclaration","scope":11197,"src":"4975:18:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"},"typeName":{"id":11188,"nodeType":"UserDefinedTypeName","pathNode":{"id":11187,"name":"Memory.Pointer","nameLocations":["4975:6:50","4982:7:50"],"nodeType":"IdentifierPath","referencedDeclaration":10917,"src":"4975:14:50"},"referencedDeclaration":10917,"src":"4975:14:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},"visibility":"internal"}],"src":"4961:33:50"},"returnParameters":{"id":11194,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11193,"mutability":"mutable","name":"result","nameLocation":"5023:6:50","nodeType":"VariableDeclaration","scope":11197,"src":"5017:12:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"},"typeName":{"id":11192,"nodeType":"UserDefinedTypeName","pathNode":{"id":11191,"name":"Slice","nameLocations":["5017:5:50"],"nodeType":"IdentifierPath","referencedDeclaration":11019,"src":"5017:5:50"},"referencedDeclaration":11019,"src":"5017:5:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}},"visibility":"internal"}],"src":"5016:14:50"},"scope":11210,"src":"4944:184:50","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":11208,"nodeType":"Block","src":"5310:102:50","statements":[{"AST":{"nativeSrc":"5345:61:50","nodeType":"YulBlock","src":"5345:61:50","statements":[{"nativeSrc":"5359:37:50","nodeType":"YulAssignment","src":"5359:37:50","value":{"arguments":[{"name":"self","nativeSrc":"5373:4:50","nodeType":"YulIdentifier","src":"5373:4:50"},{"arguments":[{"kind":"number","nativeSrc":"5383:3:50","nodeType":"YulLiteral","src":"5383:3:50","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"5392:1:50","nodeType":"YulLiteral","src":"5392:1:50","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5388:3:50","nodeType":"YulIdentifier","src":"5388:3:50"},"nativeSrc":"5388:6:50","nodeType":"YulFunctionCall","src":"5388:6:50"}],"functionName":{"name":"shr","nativeSrc":"5379:3:50","nodeType":"YulIdentifier","src":"5379:3:50"},"nativeSrc":"5379:16:50","nodeType":"YulFunctionCall","src":"5379:16:50"}],"functionName":{"name":"and","nativeSrc":"5369:3:50","nodeType":"YulIdentifier","src":"5369:3:50"},"nativeSrc":"5369:27:50","nodeType":"YulFunctionCall","src":"5369:27:50"},"variableNames":[{"name":"result","nativeSrc":"5359:6:50","nodeType":"YulIdentifier","src":"5359:6:50"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":11205,"isOffset":false,"isSlot":false,"src":"5359:6:50","valueSize":1},{"declaration":11201,"isOffset":false,"isSlot":false,"src":"5373:4:50","valueSize":1}],"flags":["memory-safe"],"id":11207,"nodeType":"InlineAssembly","src":"5320:86:50"}]},"documentation":{"id":11198,"nodeType":"StructuredDocumentation","src":"5134:96:50","text":"@dev Returns the memory location of a given slice (equiv to self.offset for calldata slices)"},"id":11209,"implemented":true,"kind":"function","modifiers":[],"name":"_pointer","nameLocation":"5244:8:50","nodeType":"FunctionDefinition","parameters":{"id":11202,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11201,"mutability":"mutable","name":"self","nameLocation":"5259:4:50","nodeType":"VariableDeclaration","scope":11209,"src":"5253:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"},"typeName":{"id":11200,"nodeType":"UserDefinedTypeName","pathNode":{"id":11199,"name":"Slice","nameLocations":["5253:5:50"],"nodeType":"IdentifierPath","referencedDeclaration":11019,"src":"5253:5:50"},"referencedDeclaration":11019,"src":"5253:5:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$11019","typeString":"Memory.Slice"}},"visibility":"internal"}],"src":"5252:12:50"},"returnParameters":{"id":11206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11205,"mutability":"mutable","name":"result","nameLocation":"5302:6:50","nodeType":"VariableDeclaration","scope":11209,"src":"5287:21:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"},"typeName":{"id":11204,"nodeType":"UserDefinedTypeName","pathNode":{"id":11203,"name":"Memory.Pointer","nameLocations":["5287:6:50","5294:7:50"],"nodeType":"IdentifierPath","referencedDeclaration":10917,"src":"5287:14:50"},"referencedDeclaration":10917,"src":"5287:14:50","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$10917","typeString":"Memory.Pointer"}},"visibility":"internal"}],"src":"5286:23:50"},"scope":11210,"src":"5235:177:50","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":11211,"src":"780:4634:50","usedErrors":[],"usedEvents":[]}],"src":"100:5315:50"},"id":50},"@openzeppelin/contracts/utils/Multicall.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Multicall.sol","exportedSymbols":{"Address":[9984],"Context":[10727],"Multicall":[11297]},"id":11298,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":11212,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"103:24:51"},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"./Address.sol","id":11214,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11298,"sourceUnit":9985,"src":"129:38:51","symbolAliases":[{"foreign":{"id":11213,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9984,"src":"137:7:51","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"./Context.sol","id":11216,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11298,"sourceUnit":10728,"src":"168:38:51","symbolAliases":[{"foreign":{"id":11215,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10727,"src":"176:7:51","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":11218,"name":"Context","nameLocations":["1053:7:51"],"nodeType":"IdentifierPath","referencedDeclaration":10727,"src":"1053:7:51"},"id":11219,"nodeType":"InheritanceSpecifier","src":"1053:7:51"}],"canonicalName":"Multicall","contractDependencies":[],"contractKind":"contract","documentation":{"id":11217,"nodeType":"StructuredDocumentation","src":"208:813:51","text":" @dev Provides a function to batch together multiple calls in a single external call.\n Consider any assumption about calldata validation performed by the sender may be violated if it's not especially\n careful about sending transactions invoking {multicall}. For example, a relay address that filters function\n selectors won't filter calls nested within a {multicall} operation.\n NOTE: Since 5.0.1 and 4.9.4, this contract identifies non-canonical contexts (i.e. `msg.sender` is not {Context-_msgSender}).\n If a non-canonical context is identified, the following self `delegatecall` appends the last bytes of `msg.data`\n to the subcall. This makes it safe to use with {ERC2771Context}. Contexts that don't affect the resolution of\n {Context-_msgSender} are not propagated to subcalls."},"fullyImplemented":true,"id":11297,"linearizedBaseContracts":[11297,10727],"name":"Multicall","nameLocation":"1040:9:51","nodeType":"ContractDefinition","nodes":[{"body":{"id":11295,"nodeType":"Block","src":"1314:392:51","statements":[{"assignments":[11230],"declarations":[{"constant":false,"id":11230,"mutability":"mutable","name":"context","nameLocation":"1337:7:51","nodeType":"VariableDeclaration","scope":11295,"src":"1324:20:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11229,"name":"bytes","nodeType":"ElementaryTypeName","src":"1324:5:51","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":11250,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":11235,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11231,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1347:3:51","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":11232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1351:6:51","memberName":"sender","nodeType":"MemberAccess","src":"1347:10:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":11233,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10709,"src":"1361:10:51","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":11234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1361:12:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1347:26:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"baseExpression":{"expression":{"id":11240,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1415:3:51","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":11241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1419:4:51","memberName":"data","nodeType":"MemberAccess","src":"1415:8:51","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":11248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"1415:51:51","startExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":11242,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1424:3:51","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":11243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1428:4:51","memberName":"data","nodeType":"MemberAccess","src":"1424:8:51","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":11244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1433:6:51","memberName":"length","nodeType":"MemberAccess","src":"1424:15:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":11245,"name":"_contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10726,"src":"1442:20:51","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":11246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1442:22:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1424:40:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},"id":11249,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1347:119:51","trueExpression":{"arguments":[{"hexValue":"30","id":11238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1398:1:51","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":11237,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1388:9:51","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":11236,"name":"bytes","nodeType":"ElementaryTypeName","src":"1392:5:51","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":11239,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1388:12:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"1324:142:51"},{"expression":{"id":11258,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11251,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11227,"src":"1477:7:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":11255,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11223,"src":"1499:4:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":11256,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1504:6:51","memberName":"length","nodeType":"MemberAccess","src":"1499:11:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11254,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1487:11:51","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":11252,"name":"bytes","nodeType":"ElementaryTypeName","src":"1491:5:51","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":11253,"nodeType":"ArrayTypeName","src":"1491:7:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}}},"id":11257,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1487:24:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"src":"1477:34:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":11259,"nodeType":"ExpressionStatement","src":"1477:34:51"},{"body":{"id":11291,"nodeType":"Block","src":"1563:113:51","statements":[{"expression":{"id":11289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11271,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11227,"src":"1577:7:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":11273,"indexExpression":{"id":11272,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11261,"src":"1585:1:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1577:10:51","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":11278,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1627:4:51","typeDescriptions":{"typeIdentifier":"t_contract$_Multicall_$11297","typeString":"contract Multicall"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Multicall_$11297","typeString":"contract Multicall"}],"id":11277,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1619:7:51","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11276,"name":"address","nodeType":"ElementaryTypeName","src":"1619:7:51","typeDescriptions":{}}},"id":11279,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1619:13:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"baseExpression":{"id":11283,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11223,"src":"1647:4:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":11285,"indexExpression":{"id":11284,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11261,"src":"1652:1:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1647:7:51","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":11286,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11230,"src":"1656:7:51","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":11281,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1634:5:51","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":11280,"name":"bytes","nodeType":"ElementaryTypeName","src":"1634:5:51","typeDescriptions":{}}},"id":11282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1640:6:51","memberName":"concat","nodeType":"MemberAccess","src":"1634:12:51","typeDescriptions":{"typeIdentifier":"t_function_bytesconcat_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":11287,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1634:30:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":11274,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9984,"src":"1590:7:51","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$9984_$","typeString":"type(library Address)"}},"id":11275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1598:20:51","memberName":"functionDelegateCall","nodeType":"MemberAccess","referencedDeclaration":9894,"src":"1590:28:51","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":11288,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1590:75:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"1577:88:51","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11290,"nodeType":"ExpressionStatement","src":"1577:88:51"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11264,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11261,"src":"1541:1:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11265,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11223,"src":"1545:4:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":11266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1550:6:51","memberName":"length","nodeType":"MemberAccess","src":"1545:11:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1541:15:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11292,"initializationExpression":{"assignments":[11261],"declarations":[{"constant":false,"id":11261,"mutability":"mutable","name":"i","nameLocation":"1534:1:51","nodeType":"VariableDeclaration","scope":11292,"src":"1526:9:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11260,"name":"uint256","nodeType":"ElementaryTypeName","src":"1526:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11263,"initialValue":{"hexValue":"30","id":11262,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1538:1:51","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"1526:13:51"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1558:3:51","subExpression":{"id":11268,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11261,"src":"1558:1:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11270,"nodeType":"ExpressionStatement","src":"1558:3:51"},"nodeType":"ForStatement","src":"1521:155:51"},{"expression":{"id":11293,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11227,"src":"1692:7:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"functionReturnParameters":11228,"id":11294,"nodeType":"Return","src":"1685:14:51"}]},"documentation":{"id":11220,"nodeType":"StructuredDocumentation","src":"1067:152:51","text":" @dev Receives and executes a batch of function calls on this contract.\n @custom:oz-upgrades-unsafe-allow-reachable delegatecall"},"functionSelector":"ac9650d8","id":11296,"implemented":true,"kind":"function","modifiers":[],"name":"multicall","nameLocation":"1233:9:51","nodeType":"FunctionDefinition","parameters":{"id":11224,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11223,"mutability":"mutable","name":"data","nameLocation":"1260:4:51","nodeType":"VariableDeclaration","scope":11296,"src":"1243:21:51","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":11221,"name":"bytes","nodeType":"ElementaryTypeName","src":"1243:5:51","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":11222,"nodeType":"ArrayTypeName","src":"1243:7:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"1242:23:51"},"returnParameters":{"id":11228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11227,"mutability":"mutable","name":"results","nameLocation":"1305:7:51","nodeType":"VariableDeclaration","scope":11296,"src":"1290:22:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":11225,"name":"bytes","nodeType":"ElementaryTypeName","src":"1290:5:51","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":11226,"nodeType":"ArrayTypeName","src":"1290:7:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"1289:24:51"},"scope":11297,"src":"1224:482:51","stateMutability":"nonpayable","virtual":true,"visibility":"public"}],"scope":11298,"src":"1022:686:51","usedErrors":[9606,10740],"usedEvents":[]}],"src":"103:1606:51"},"id":51},"@openzeppelin/contracts/utils/Nonces.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Nonces.sol","exportedSymbols":{"Nonces":[11365]},"id":11366,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":11299,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:52"},{"abstract":true,"baseContracts":[],"canonicalName":"Nonces","contractDependencies":[],"contractKind":"contract","documentation":{"id":11300,"nodeType":"StructuredDocumentation","src":"125:83:52","text":" @dev Provides tracking nonces for addresses. Nonces will only increment."},"fullyImplemented":true,"id":11365,"linearizedBaseContracts":[11365],"name":"Nonces","nameLocation":"227:6:52","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":11301,"nodeType":"StructuredDocumentation","src":"240:90:52","text":" @dev The nonce used for an `account` is not the expected current nonce."},"errorSelector":"752d88c0","id":11307,"name":"InvalidAccountNonce","nameLocation":"341:19:52","nodeType":"ErrorDefinition","parameters":{"id":11306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11303,"mutability":"mutable","name":"account","nameLocation":"369:7:52","nodeType":"VariableDeclaration","scope":11307,"src":"361:15:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11302,"name":"address","nodeType":"ElementaryTypeName","src":"361:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11305,"mutability":"mutable","name":"currentNonce","nameLocation":"386:12:52","nodeType":"VariableDeclaration","scope":11307,"src":"378:20:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11304,"name":"uint256","nodeType":"ElementaryTypeName","src":"378:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"360:39:52"},"src":"335:65:52"},{"constant":false,"id":11311,"mutability":"mutable","name":"_nonces","nameLocation":"450:7:52","nodeType":"VariableDeclaration","scope":11365,"src":"406:51:52","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":11310,"keyName":"account","keyNameLocation":"422:7:52","keyType":{"id":11308,"name":"address","nodeType":"ElementaryTypeName","src":"414:7:52","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"406:35:52","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":11309,"name":"uint256","nodeType":"ElementaryTypeName","src":"433:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"body":{"id":11323,"nodeType":"Block","src":"607:38:52","statements":[{"expression":{"baseExpression":{"id":11319,"name":"_nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11311,"src":"624:7:52","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":11321,"indexExpression":{"id":11320,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11314,"src":"632:5:52","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"624:14:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11318,"id":11322,"nodeType":"Return","src":"617:21:52"}]},"documentation":{"id":11312,"nodeType":"StructuredDocumentation","src":"464:69:52","text":" @dev Returns the next unused nonce for an address."},"functionSelector":"7ecebe00","id":11324,"implemented":true,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"547:6:52","nodeType":"FunctionDefinition","parameters":{"id":11315,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11314,"mutability":"mutable","name":"owner","nameLocation":"562:5:52","nodeType":"VariableDeclaration","scope":11324,"src":"554:13:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11313,"name":"address","nodeType":"ElementaryTypeName","src":"554:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"553:15:52"},"returnParameters":{"id":11318,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11317,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11324,"src":"598:7:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11316,"name":"uint256","nodeType":"ElementaryTypeName","src":"598:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"597:9:52"},"scope":11365,"src":"538:107:52","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":11338,"nodeType":"Block","src":"828:326:52","statements":[{"id":11337,"nodeType":"UncheckedBlock","src":"1031:117:52","statements":[{"expression":{"id":11335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1121:16:52","subExpression":{"baseExpression":{"id":11332,"name":"_nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11311,"src":"1121:7:52","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":11334,"indexExpression":{"id":11333,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11327,"src":"1129:5:52","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1121:14:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11331,"id":11336,"nodeType":"Return","src":"1114:23:52"}]}]},"documentation":{"id":11325,"nodeType":"StructuredDocumentation","src":"651:103:52","text":" @dev Consumes a nonce.\n Returns the current value and increments nonce."},"id":11339,"implemented":true,"kind":"function","modifiers":[],"name":"_useNonce","nameLocation":"768:9:52","nodeType":"FunctionDefinition","parameters":{"id":11328,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11327,"mutability":"mutable","name":"owner","nameLocation":"786:5:52","nodeType":"VariableDeclaration","scope":11339,"src":"778:13:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11326,"name":"address","nodeType":"ElementaryTypeName","src":"778:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"777:15:52"},"returnParameters":{"id":11331,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11330,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11339,"src":"819:7:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11329,"name":"uint256","nodeType":"ElementaryTypeName","src":"819:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"818:9:52"},"scope":11365,"src":"759:395:52","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":11363,"nodeType":"Block","src":"1338:149:52","statements":[{"assignments":[11348],"declarations":[{"constant":false,"id":11348,"mutability":"mutable","name":"current","nameLocation":"1356:7:52","nodeType":"VariableDeclaration","scope":11363,"src":"1348:15:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11347,"name":"uint256","nodeType":"ElementaryTypeName","src":"1348:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11352,"initialValue":{"arguments":[{"id":11350,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11342,"src":"1376:5:52","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":11349,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11339,"src":"1366:9:52","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":11351,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1366:16:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1348:34:52"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11353,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11344,"src":"1396:5:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11354,"name":"current","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11348,"src":"1405:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1396:16:52","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11362,"nodeType":"IfStatement","src":"1392:89:52","trueBody":{"id":11361,"nodeType":"Block","src":"1414:67:52","statements":[{"errorCall":{"arguments":[{"id":11357,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11342,"src":"1455:5:52","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11358,"name":"current","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11348,"src":"1462:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11356,"name":"InvalidAccountNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11307,"src":"1435:19:52","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256) pure returns (error)"}},"id":11359,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1435:35:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11360,"nodeType":"RevertStatement","src":"1428:42:52"}]}}]},"documentation":{"id":11340,"nodeType":"StructuredDocumentation","src":"1160:100:52","text":" @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`."},"id":11364,"implemented":true,"kind":"function","modifiers":[],"name":"_useCheckedNonce","nameLocation":"1274:16:52","nodeType":"FunctionDefinition","parameters":{"id":11345,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11342,"mutability":"mutable","name":"owner","nameLocation":"1299:5:52","nodeType":"VariableDeclaration","scope":11364,"src":"1291:13:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11341,"name":"address","nodeType":"ElementaryTypeName","src":"1291:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11344,"mutability":"mutable","name":"nonce","nameLocation":"1314:5:52","nodeType":"VariableDeclaration","scope":11364,"src":"1306:13:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11343,"name":"uint256","nodeType":"ElementaryTypeName","src":"1306:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1290:30:52"},"returnParameters":{"id":11346,"nodeType":"ParameterList","parameters":[],"src":"1338:0:52"},"scope":11365,"src":"1265:222:52","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":11366,"src":"209:1280:52","usedErrors":[11307],"usedEvents":[]}],"src":"99:1391:52"},"id":52},"@openzeppelin/contracts/utils/Panic.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","exportedSymbols":{"Panic":[11417]},"id":11418,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":11367,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:53"},{"abstract":false,"baseContracts":[],"canonicalName":"Panic","contractDependencies":[],"contractKind":"library","documentation":{"id":11368,"nodeType":"StructuredDocumentation","src":"125:489:53","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":11417,"linearizedBaseContracts":[11417],"name":"Panic","nameLocation":"665:5:53","nodeType":"ContractDefinition","nodes":[{"constant":true,"documentation":{"id":11369,"nodeType":"StructuredDocumentation","src":"677:36:53","text":"@dev generic / unspecified error"},"id":11372,"mutability":"constant","name":"GENERIC","nameLocation":"744:7:53","nodeType":"VariableDeclaration","scope":11417,"src":"718:40:53","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11370,"name":"uint256","nodeType":"ElementaryTypeName","src":"718:7:53","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783030","id":11371,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"754:4:53","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0x00"},"visibility":"internal"},{"constant":true,"documentation":{"id":11373,"nodeType":"StructuredDocumentation","src":"764:37:53","text":"@dev used by the assert() builtin"},"id":11376,"mutability":"constant","name":"ASSERT","nameLocation":"832:6:53","nodeType":"VariableDeclaration","scope":11417,"src":"806:39:53","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11374,"name":"uint256","nodeType":"ElementaryTypeName","src":"806:7:53","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783031","id":11375,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"841:4:53","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"0x01"},"visibility":"internal"},{"constant":true,"documentation":{"id":11377,"nodeType":"StructuredDocumentation","src":"851:41:53","text":"@dev arithmetic underflow or overflow"},"id":11380,"mutability":"constant","name":"UNDER_OVERFLOW","nameLocation":"923:14:53","nodeType":"VariableDeclaration","scope":11417,"src":"897:47:53","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11378,"name":"uint256","nodeType":"ElementaryTypeName","src":"897:7:53","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783131","id":11379,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"940:4:53","typeDescriptions":{"typeIdentifier":"t_rational_17_by_1","typeString":"int_const 17"},"value":"0x11"},"visibility":"internal"},{"constant":true,"documentation":{"id":11381,"nodeType":"StructuredDocumentation","src":"950:35:53","text":"@dev division or modulo by zero"},"id":11384,"mutability":"constant","name":"DIVISION_BY_ZERO","nameLocation":"1016:16:53","nodeType":"VariableDeclaration","scope":11417,"src":"990:49:53","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11382,"name":"uint256","nodeType":"ElementaryTypeName","src":"990:7:53","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783132","id":11383,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1035:4:53","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"0x12"},"visibility":"internal"},{"constant":true,"documentation":{"id":11385,"nodeType":"StructuredDocumentation","src":"1045:30:53","text":"@dev enum conversion error"},"id":11388,"mutability":"constant","name":"ENUM_CONVERSION_ERROR","nameLocation":"1106:21:53","nodeType":"VariableDeclaration","scope":11417,"src":"1080:54:53","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11386,"name":"uint256","nodeType":"ElementaryTypeName","src":"1080:7:53","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783231","id":11387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1130:4:53","typeDescriptions":{"typeIdentifier":"t_rational_33_by_1","typeString":"int_const 33"},"value":"0x21"},"visibility":"internal"},{"constant":true,"documentation":{"id":11389,"nodeType":"StructuredDocumentation","src":"1140:36:53","text":"@dev invalid encoding in storage"},"id":11392,"mutability":"constant","name":"STORAGE_ENCODING_ERROR","nameLocation":"1207:22:53","nodeType":"VariableDeclaration","scope":11417,"src":"1181:55:53","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11390,"name":"uint256","nodeType":"ElementaryTypeName","src":"1181:7:53","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783232","id":11391,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1232:4:53","typeDescriptions":{"typeIdentifier":"t_rational_34_by_1","typeString":"int_const 34"},"value":"0x22"},"visibility":"internal"},{"constant":true,"documentation":{"id":11393,"nodeType":"StructuredDocumentation","src":"1242:24:53","text":"@dev empty array pop"},"id":11396,"mutability":"constant","name":"EMPTY_ARRAY_POP","nameLocation":"1297:15:53","nodeType":"VariableDeclaration","scope":11417,"src":"1271:48:53","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11394,"name":"uint256","nodeType":"ElementaryTypeName","src":"1271:7:53","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783331","id":11395,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1315:4:53","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"0x31"},"visibility":"internal"},{"constant":true,"documentation":{"id":11397,"nodeType":"StructuredDocumentation","src":"1325:35:53","text":"@dev array out of bounds access"},"id":11400,"mutability":"constant","name":"ARRAY_OUT_OF_BOUNDS","nameLocation":"1391:19:53","nodeType":"VariableDeclaration","scope":11417,"src":"1365:52:53","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11398,"name":"uint256","nodeType":"ElementaryTypeName","src":"1365:7:53","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783332","id":11399,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1413:4:53","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"0x32"},"visibility":"internal"},{"constant":true,"documentation":{"id":11401,"nodeType":"StructuredDocumentation","src":"1423:65:53","text":"@dev resource error (too large allocation or too large array)"},"id":11404,"mutability":"constant","name":"RESOURCE_ERROR","nameLocation":"1519:14:53","nodeType":"VariableDeclaration","scope":11417,"src":"1493:47:53","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11402,"name":"uint256","nodeType":"ElementaryTypeName","src":"1493:7:53","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783431","id":11403,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1536:4:53","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"0x41"},"visibility":"internal"},{"constant":true,"documentation":{"id":11405,"nodeType":"StructuredDocumentation","src":"1546:42:53","text":"@dev calling invalid internal function"},"id":11408,"mutability":"constant","name":"INVALID_INTERNAL_FUNCTION","nameLocation":"1619:25:53","nodeType":"VariableDeclaration","scope":11417,"src":"1593:58:53","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11406,"name":"uint256","nodeType":"ElementaryTypeName","src":"1593:7:53","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783531","id":11407,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1647:4:53","typeDescriptions":{"typeIdentifier":"t_rational_81_by_1","typeString":"int_const 81"},"value":"0x51"},"visibility":"internal"},{"body":{"id":11415,"nodeType":"Block","src":"1819:151:53","statements":[{"AST":{"nativeSrc":"1854:110:53","nodeType":"YulBlock","src":"1854:110:53","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1875:4:53","nodeType":"YulLiteral","src":"1875:4:53","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1881:10:53","nodeType":"YulLiteral","src":"1881:10:53","type":"","value":"0x4e487b71"}],"functionName":{"name":"mstore","nativeSrc":"1868:6:53","nodeType":"YulIdentifier","src":"1868:6:53"},"nativeSrc":"1868:24:53","nodeType":"YulFunctionCall","src":"1868:24:53"},"nativeSrc":"1868:24:53","nodeType":"YulExpressionStatement","src":"1868:24:53"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1912:4:53","nodeType":"YulLiteral","src":"1912:4:53","type":"","value":"0x20"},{"name":"code","nativeSrc":"1918:4:53","nodeType":"YulIdentifier","src":"1918:4:53"}],"functionName":{"name":"mstore","nativeSrc":"1905:6:53","nodeType":"YulIdentifier","src":"1905:6:53"},"nativeSrc":"1905:18:53","nodeType":"YulFunctionCall","src":"1905:18:53"},"nativeSrc":"1905:18:53","nodeType":"YulExpressionStatement","src":"1905:18:53"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1943:4:53","nodeType":"YulLiteral","src":"1943:4:53","type":"","value":"0x1c"},{"kind":"number","nativeSrc":"1949:4:53","nodeType":"YulLiteral","src":"1949:4:53","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1936:6:53","nodeType":"YulIdentifier","src":"1936:6:53"},"nativeSrc":"1936:18:53","nodeType":"YulFunctionCall","src":"1936:18:53"},"nativeSrc":"1936:18:53","nodeType":"YulExpressionStatement","src":"1936:18:53"}]},"evmVersion":"prague","externalReferences":[{"declaration":11411,"isOffset":false,"isSlot":false,"src":"1918:4:53","valueSize":1}],"flags":["memory-safe"],"id":11414,"nodeType":"InlineAssembly","src":"1829:135:53"}]},"documentation":{"id":11409,"nodeType":"StructuredDocumentation","src":"1658:113:53","text":"@dev Reverts with a panic code. Recommended to use with\n the internal constants with predefined codes."},"id":11416,"implemented":true,"kind":"function","modifiers":[],"name":"panic","nameLocation":"1785:5:53","nodeType":"FunctionDefinition","parameters":{"id":11412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11411,"mutability":"mutable","name":"code","nameLocation":"1799:4:53","nodeType":"VariableDeclaration","scope":11416,"src":"1791:12:53","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11410,"name":"uint256","nodeType":"ElementaryTypeName","src":"1791:7:53","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1790:14:53"},"returnParameters":{"id":11413,"nodeType":"ParameterList","parameters":[],"src":"1819:0:53"},"scope":11417,"src":"1776:194:53","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":11418,"src":"657:1315:53","usedErrors":[],"usedEvents":[]}],"src":"99:1874:53"},"id":53},"@openzeppelin/contracts/utils/ShortStrings.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/ShortStrings.sol","exportedSymbols":{"ShortString":[11423],"ShortStrings":[11634],"StorageSlot":[11758]},"id":11635,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":11419,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:54"},{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","file":"./StorageSlot.sol","id":11421,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11635,"sourceUnit":11759,"src":"132:46:54","symbolAliases":[{"foreign":{"id":11420,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11758,"src":"140:11:54","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"canonicalName":"ShortString","id":11423,"name":"ShortString","nameLocation":"353:11:54","nodeType":"UserDefinedValueTypeDefinition","src":"348:28:54","underlyingType":{"id":11422,"name":"bytes32","nodeType":"ElementaryTypeName","src":"368:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},{"abstract":false,"baseContracts":[],"canonicalName":"ShortStrings","contractDependencies":[],"contractKind":"library","documentation":{"id":11424,"nodeType":"StructuredDocumentation","src":"378:876:54","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":11634,"linearizedBaseContracts":[11634],"name":"ShortStrings","nameLocation":"1263:12:54","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":11427,"mutability":"constant","name":"FALLBACK_SENTINEL","nameLocation":"1370:17:54","nodeType":"VariableDeclaration","scope":11634,"src":"1345:111:54","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11425,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1345:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307830303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030304646","id":11426,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1390:66:54","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0x00000000000000000000000000000000000000000000000000000000000000FF"},"visibility":"private"},{"errorSelector":"305a27a9","id":11431,"name":"StringTooLong","nameLocation":"1469:13:54","nodeType":"ErrorDefinition","parameters":{"id":11430,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11429,"mutability":"mutable","name":"str","nameLocation":"1490:3:54","nodeType":"VariableDeclaration","scope":11431,"src":"1483:10:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":11428,"name":"string","nodeType":"ElementaryTypeName","src":"1483:6:54","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1482:12:54"},"src":"1463:32:54"},{"errorSelector":"b3512b0c","id":11433,"name":"InvalidShortString","nameLocation":"1506:18:54","nodeType":"ErrorDefinition","parameters":{"id":11432,"nodeType":"ParameterList","parameters":[],"src":"1524:2:54"},"src":"1500:27:54"},{"body":{"id":11476,"nodeType":"Block","src":"1786:210:54","statements":[{"assignments":[11443],"declarations":[{"constant":false,"id":11443,"mutability":"mutable","name":"bstr","nameLocation":"1809:4:54","nodeType":"VariableDeclaration","scope":11476,"src":"1796:17:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11442,"name":"bytes","nodeType":"ElementaryTypeName","src":"1796:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":11448,"initialValue":{"arguments":[{"id":11446,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11436,"src":"1822:3:54","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":11445,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1816:5:54","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":11444,"name":"bytes","nodeType":"ElementaryTypeName","src":"1816:5:54","typeDescriptions":{}}},"id":11447,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1816:10:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"1796:30:54"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11449,"name":"bstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11443,"src":"1840:4:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1845:6:54","memberName":"length","nodeType":"MemberAccess","src":"1840:11:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30783166","id":11451,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1854:4:54","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"0x1f"},"src":"1840:18:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11458,"nodeType":"IfStatement","src":"1836:74:54","trueBody":{"id":11457,"nodeType":"Block","src":"1860:50:54","statements":[{"errorCall":{"arguments":[{"id":11454,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11436,"src":"1895:3:54","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":11453,"name":"StringTooLong","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11431,"src":"1881:13:54","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (string memory) pure returns (error)"}},"id":11455,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1881:18:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11456,"nodeType":"RevertStatement","src":"1874:25:54"}]}},{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":11467,"name":"bstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11443,"src":"1967:4:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11466,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1959:7:54","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":11465,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1959:7:54","typeDescriptions":{}}},"id":11468,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1959:13:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":11464,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1951:7:54","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11463,"name":"uint256","nodeType":"ElementaryTypeName","src":"1951:7:54","typeDescriptions":{}}},"id":11469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1951:22:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"expression":{"id":11470,"name":"bstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11443,"src":"1976:4:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1981:6:54","memberName":"length","nodeType":"MemberAccess","src":"1976:11:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1951:36:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11462,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1943:7:54","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":11461,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1943:7:54","typeDescriptions":{}}},"id":11473,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1943:45:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":11459,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11423,"src":"1926:11:54","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$11423_$","typeString":"type(ShortString)"}},"id":11460,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1938:4:54","memberName":"wrap","nodeType":"MemberAccess","src":"1926:16:54","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes32_$returns$_t_userDefinedValueType$_ShortString_$11423_$","typeString":"function (bytes32) pure returns (ShortString)"}},"id":11474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1926:63:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"functionReturnParameters":11441,"id":11475,"nodeType":"Return","src":"1919:70:54"}]},"documentation":{"id":11434,"nodeType":"StructuredDocumentation","src":"1533:170:54","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":11477,"implemented":true,"kind":"function","modifiers":[],"name":"toShortString","nameLocation":"1717:13:54","nodeType":"FunctionDefinition","parameters":{"id":11437,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11436,"mutability":"mutable","name":"str","nameLocation":"1745:3:54","nodeType":"VariableDeclaration","scope":11477,"src":"1731:17:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":11435,"name":"string","nodeType":"ElementaryTypeName","src":"1731:6:54","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1730:19:54"},"returnParameters":{"id":11441,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11440,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11477,"src":"1773:11:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"},"typeName":{"id":11439,"nodeType":"UserDefinedTypeName","pathNode":{"id":11438,"name":"ShortString","nameLocations":["1773:11:54"],"nodeType":"IdentifierPath","referencedDeclaration":11423,"src":"1773:11:54"},"referencedDeclaration":11423,"src":"1773:11:54","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"visibility":"internal"}],"src":"1772:13:54"},"scope":11634,"src":"1708:288:54","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11502,"nodeType":"Block","src":"2154:306:54","statements":[{"assignments":[11487],"declarations":[{"constant":false,"id":11487,"mutability":"mutable","name":"len","nameLocation":"2172:3:54","nodeType":"VariableDeclaration","scope":11502,"src":"2164:11:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11486,"name":"uint256","nodeType":"ElementaryTypeName","src":"2164:7:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11491,"initialValue":{"arguments":[{"id":11489,"name":"sstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11481,"src":"2189:4:54","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}],"id":11488,"name":"byteLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11535,"src":"2178:10:54","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$11423_$returns$_t_uint256_$","typeString":"function (ShortString) pure returns (uint256)"}},"id":11490,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2178:16:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2164:30:54"},{"assignments":[11493],"declarations":[{"constant":false,"id":11493,"mutability":"mutable","name":"str","nameLocation":"2296:3:54","nodeType":"VariableDeclaration","scope":11502,"src":"2282:17:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":11492,"name":"string","nodeType":"ElementaryTypeName","src":"2282:6:54","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":11498,"initialValue":{"arguments":[{"hexValue":"30783230","id":11496,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2313:4:54","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"}],"id":11495,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"2302:10:54","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"},"typeName":{"id":11494,"name":"string","nodeType":"ElementaryTypeName","src":"2306:6:54","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"id":11497,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2302:16:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"2282:36:54"},{"AST":{"nativeSrc":"2353:81:54","nodeType":"YulBlock","src":"2353:81:54","statements":[{"expression":{"arguments":[{"name":"str","nativeSrc":"2374:3:54","nodeType":"YulIdentifier","src":"2374:3:54"},{"name":"len","nativeSrc":"2379:3:54","nodeType":"YulIdentifier","src":"2379:3:54"}],"functionName":{"name":"mstore","nativeSrc":"2367:6:54","nodeType":"YulIdentifier","src":"2367:6:54"},"nativeSrc":"2367:16:54","nodeType":"YulFunctionCall","src":"2367:16:54"},"nativeSrc":"2367:16:54","nodeType":"YulExpressionStatement","src":"2367:16:54"},{"expression":{"arguments":[{"arguments":[{"name":"str","nativeSrc":"2407:3:54","nodeType":"YulIdentifier","src":"2407:3:54"},{"kind":"number","nativeSrc":"2412:4:54","nodeType":"YulLiteral","src":"2412:4:54","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2403:3:54","nodeType":"YulIdentifier","src":"2403:3:54"},"nativeSrc":"2403:14:54","nodeType":"YulFunctionCall","src":"2403:14:54"},{"name":"sstr","nativeSrc":"2419:4:54","nodeType":"YulIdentifier","src":"2419:4:54"}],"functionName":{"name":"mstore","nativeSrc":"2396:6:54","nodeType":"YulIdentifier","src":"2396:6:54"},"nativeSrc":"2396:28:54","nodeType":"YulFunctionCall","src":"2396:28:54"},"nativeSrc":"2396:28:54","nodeType":"YulExpressionStatement","src":"2396:28:54"}]},"evmVersion":"prague","externalReferences":[{"declaration":11487,"isOffset":false,"isSlot":false,"src":"2379:3:54","valueSize":1},{"declaration":11481,"isOffset":false,"isSlot":false,"src":"2419:4:54","valueSize":1},{"declaration":11493,"isOffset":false,"isSlot":false,"src":"2374:3:54","valueSize":1},{"declaration":11493,"isOffset":false,"isSlot":false,"src":"2407:3:54","valueSize":1}],"flags":["memory-safe"],"id":11499,"nodeType":"InlineAssembly","src":"2328:106:54"},{"expression":{"id":11500,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11493,"src":"2450:3:54","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":11485,"id":11501,"nodeType":"Return","src":"2443:10:54"}]},"documentation":{"id":11478,"nodeType":"StructuredDocumentation","src":"2002:73:54","text":" @dev Decode a `ShortString` back to a \"normal\" string."},"id":11503,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"2089:8:54","nodeType":"FunctionDefinition","parameters":{"id":11482,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11481,"mutability":"mutable","name":"sstr","nameLocation":"2110:4:54","nodeType":"VariableDeclaration","scope":11503,"src":"2098:16:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"},"typeName":{"id":11480,"nodeType":"UserDefinedTypeName","pathNode":{"id":11479,"name":"ShortString","nameLocations":["2098:11:54"],"nodeType":"IdentifierPath","referencedDeclaration":11423,"src":"2098:11:54"},"referencedDeclaration":11423,"src":"2098:11:54","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"visibility":"internal"}],"src":"2097:18:54"},"returnParameters":{"id":11485,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11484,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11503,"src":"2139:13:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":11483,"name":"string","nodeType":"ElementaryTypeName","src":"2139:6:54","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2138:15:54"},"scope":11634,"src":"2080:380:54","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11534,"nodeType":"Block","src":"2602:177:54","statements":[{"assignments":[11513],"declarations":[{"constant":false,"id":11513,"mutability":"mutable","name":"result","nameLocation":"2620:6:54","nodeType":"VariableDeclaration","scope":11534,"src":"2612:14:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11512,"name":"uint256","nodeType":"ElementaryTypeName","src":"2612:7:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11523,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":11518,"name":"sstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11507,"src":"2656:4:54","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}],"expression":{"id":11516,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11423,"src":"2637:11:54","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$11423_$","typeString":"type(ShortString)"}},"id":11517,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2649:6:54","memberName":"unwrap","nodeType":"MemberAccess","src":"2637:18:54","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_ShortString_$11423_$returns$_t_bytes32_$","typeString":"function (ShortString) pure returns (bytes32)"}},"id":11519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2637:24:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":11515,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2629:7:54","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11514,"name":"uint256","nodeType":"ElementaryTypeName","src":"2629:7:54","typeDescriptions":{}}},"id":11520,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2629:33:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30784646","id":11521,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2665:4:54","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0xFF"},"src":"2629:40:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2612:57:54"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11524,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11513,"src":"2683:6:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30783166","id":11525,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2692:4:54","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"0x1f"},"src":"2683:13:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11531,"nodeType":"IfStatement","src":"2679:71:54","trueBody":{"id":11530,"nodeType":"Block","src":"2698:52:54","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":11527,"name":"InvalidShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11433,"src":"2719:18:54","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":11528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2719:20:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11529,"nodeType":"RevertStatement","src":"2712:27:54"}]}},{"expression":{"id":11532,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11513,"src":"2766:6:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11511,"id":11533,"nodeType":"Return","src":"2759:13:54"}]},"documentation":{"id":11504,"nodeType":"StructuredDocumentation","src":"2466:61:54","text":" @dev Return the length of a `ShortString`."},"id":11535,"implemented":true,"kind":"function","modifiers":[],"name":"byteLength","nameLocation":"2541:10:54","nodeType":"FunctionDefinition","parameters":{"id":11508,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11507,"mutability":"mutable","name":"sstr","nameLocation":"2564:4:54","nodeType":"VariableDeclaration","scope":11535,"src":"2552:16:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"},"typeName":{"id":11506,"nodeType":"UserDefinedTypeName","pathNode":{"id":11505,"name":"ShortString","nameLocations":["2552:11:54"],"nodeType":"IdentifierPath","referencedDeclaration":11423,"src":"2552:11:54"},"referencedDeclaration":11423,"src":"2552:11:54","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"visibility":"internal"}],"src":"2551:18:54"},"returnParameters":{"id":11511,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11510,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11535,"src":"2593:7:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11509,"name":"uint256","nodeType":"ElementaryTypeName","src":"2593:7:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2592:9:54"},"scope":11634,"src":"2532:247:54","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11574,"nodeType":"Block","src":"3002:233:54","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":11548,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11538,"src":"3022:5:54","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":11547,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3016:5:54","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":11546,"name":"bytes","nodeType":"ElementaryTypeName","src":"3016:5:54","typeDescriptions":{}}},"id":11549,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3016:12:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11550,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3029:6:54","memberName":"length","nodeType":"MemberAccess","src":"3016:19:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30783230","id":11551,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3038:4:54","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"src":"3016:26:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":11572,"nodeType":"Block","src":"3102:127:54","statements":[{"expression":{"id":11565,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":11561,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11540,"src":"3142:5:54","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}],"expression":{"id":11558,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11758,"src":"3116:11:54","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$11758_$","typeString":"type(library StorageSlot)"}},"id":11560,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3128:13:54","memberName":"getStringSlot","nodeType":"MemberAccess","referencedDeclaration":11735,"src":"3116:25:54","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_storage_ptr_$returns$_t_struct$_StringSlot_$11655_storage_ptr_$","typeString":"function (string storage pointer) pure returns (struct StorageSlot.StringSlot storage pointer)"}},"id":11562,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3116:32:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$11655_storage_ptr","typeString":"struct StorageSlot.StringSlot storage pointer"}},"id":11563,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3149:5:54","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":11654,"src":"3116:38:54","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":11564,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11538,"src":"3157:5:54","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"3116:46:54","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":11566,"nodeType":"ExpressionStatement","src":"3116:46:54"},{"expression":{"arguments":[{"id":11569,"name":"FALLBACK_SENTINEL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11427,"src":"3200:17:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":11567,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11423,"src":"3183:11:54","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$11423_$","typeString":"type(ShortString)"}},"id":11568,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3195:4:54","memberName":"wrap","nodeType":"MemberAccess","src":"3183:16:54","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes32_$returns$_t_userDefinedValueType$_ShortString_$11423_$","typeString":"function (bytes32) pure returns (ShortString)"}},"id":11570,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3183:35:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"functionReturnParameters":11545,"id":11571,"nodeType":"Return","src":"3176:42:54"}]},"id":11573,"nodeType":"IfStatement","src":"3012:217:54","trueBody":{"id":11557,"nodeType":"Block","src":"3044:52:54","statements":[{"expression":{"arguments":[{"id":11554,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11538,"src":"3079:5:54","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":11553,"name":"toShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11477,"src":"3065:13:54","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$returns$_t_userDefinedValueType$_ShortString_$11423_$","typeString":"function (string memory) pure returns (ShortString)"}},"id":11555,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3065:20:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"functionReturnParameters":11545,"id":11556,"nodeType":"Return","src":"3058:27:54"}]}}]},"documentation":{"id":11536,"nodeType":"StructuredDocumentation","src":"2785:103:54","text":" @dev Encode a string into a `ShortString`, or write it to storage if it is too long."},"id":11575,"implemented":true,"kind":"function","modifiers":[],"name":"toShortStringWithFallback","nameLocation":"2902:25:54","nodeType":"FunctionDefinition","parameters":{"id":11541,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11538,"mutability":"mutable","name":"value","nameLocation":"2942:5:54","nodeType":"VariableDeclaration","scope":11575,"src":"2928:19:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":11537,"name":"string","nodeType":"ElementaryTypeName","src":"2928:6:54","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":11540,"mutability":"mutable","name":"store","nameLocation":"2964:5:54","nodeType":"VariableDeclaration","scope":11575,"src":"2949:20:54","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":11539,"name":"string","nodeType":"ElementaryTypeName","src":"2949:6:54","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2927:43:54"},"returnParameters":{"id":11545,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11544,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11575,"src":"2989:11:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"},"typeName":{"id":11543,"nodeType":"UserDefinedTypeName","pathNode":{"id":11542,"name":"ShortString","nameLocations":["2989:11:54"],"nodeType":"IdentifierPath","referencedDeclaration":11423,"src":"2989:11:54"},"referencedDeclaration":11423,"src":"2989:11:54","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"visibility":"internal"}],"src":"2988:13:54"},"scope":11634,"src":"2893:342:54","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":11601,"nodeType":"Block","src":"3485:158:54","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":11591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11588,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11579,"src":"3518:5:54","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}],"expression":{"id":11586,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11423,"src":"3499:11:54","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$11423_$","typeString":"type(ShortString)"}},"id":11587,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3511:6:54","memberName":"unwrap","nodeType":"MemberAccess","src":"3499:18:54","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_ShortString_$11423_$returns$_t_bytes32_$","typeString":"function (ShortString) pure returns (bytes32)"}},"id":11589,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3499:25:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11590,"name":"FALLBACK_SENTINEL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11427,"src":"3528:17:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3499:46:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":11599,"nodeType":"Block","src":"3600:37:54","statements":[{"expression":{"id":11597,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11581,"src":"3621:5:54","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}},"functionReturnParameters":11585,"id":11598,"nodeType":"Return","src":"3614:12:54"}]},"id":11600,"nodeType":"IfStatement","src":"3495:142:54","trueBody":{"id":11596,"nodeType":"Block","src":"3547:47:54","statements":[{"expression":{"arguments":[{"id":11593,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11579,"src":"3577:5:54","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}],"id":11592,"name":"toString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11503,"src":"3568:8:54","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$11423_$returns$_t_string_memory_ptr_$","typeString":"function (ShortString) pure returns (string memory)"}},"id":11594,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3568:15:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":11585,"id":11595,"nodeType":"Return","src":"3561:22:54"}]}}]},"documentation":{"id":11576,"nodeType":"StructuredDocumentation","src":"3241:130:54","text":" @dev Decode a string that was encoded to `ShortString` or written to storage using {toShortStringWithFallback}."},"id":11602,"implemented":true,"kind":"function","modifiers":[],"name":"toStringWithFallback","nameLocation":"3385:20:54","nodeType":"FunctionDefinition","parameters":{"id":11582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11579,"mutability":"mutable","name":"value","nameLocation":"3418:5:54","nodeType":"VariableDeclaration","scope":11602,"src":"3406:17:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"},"typeName":{"id":11578,"nodeType":"UserDefinedTypeName","pathNode":{"id":11577,"name":"ShortString","nameLocations":["3406:11:54"],"nodeType":"IdentifierPath","referencedDeclaration":11423,"src":"3406:11:54"},"referencedDeclaration":11423,"src":"3406:11:54","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"visibility":"internal"},{"constant":false,"id":11581,"mutability":"mutable","name":"store","nameLocation":"3440:5:54","nodeType":"VariableDeclaration","scope":11602,"src":"3425:20:54","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":11580,"name":"string","nodeType":"ElementaryTypeName","src":"3425:6:54","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3405:41:54"},"returnParameters":{"id":11585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11584,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11602,"src":"3470:13:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":11583,"name":"string","nodeType":"ElementaryTypeName","src":"3470:6:54","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3469:15:54"},"scope":11634,"src":"3376:267:54","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11632,"nodeType":"Block","src":"4133:174:54","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":11618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11615,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11606,"src":"4166:5:54","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}],"expression":{"id":11613,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11423,"src":"4147:11:54","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$11423_$","typeString":"type(ShortString)"}},"id":11614,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4159:6:54","memberName":"unwrap","nodeType":"MemberAccess","src":"4147:18:54","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_ShortString_$11423_$returns$_t_bytes32_$","typeString":"function (ShortString) pure returns (bytes32)"}},"id":11616,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4147:25:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11617,"name":"FALLBACK_SENTINEL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11427,"src":"4176:17:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4147:46:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":11630,"nodeType":"Block","src":"4250:51:54","statements":[{"expression":{"expression":{"arguments":[{"id":11626,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11608,"src":"4277:5:54","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}],"id":11625,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4271:5:54","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":11624,"name":"bytes","nodeType":"ElementaryTypeName","src":"4271:5:54","typeDescriptions":{}}},"id":11627,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4271:12:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes storage pointer"}},"id":11628,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4284:6:54","memberName":"length","nodeType":"MemberAccess","src":"4271:19:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11612,"id":11629,"nodeType":"Return","src":"4264:26:54"}]},"id":11631,"nodeType":"IfStatement","src":"4143:158:54","trueBody":{"id":11623,"nodeType":"Block","src":"4195:49:54","statements":[{"expression":{"arguments":[{"id":11620,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11606,"src":"4227:5:54","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}],"id":11619,"name":"byteLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11535,"src":"4216:10:54","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$11423_$returns$_t_uint256_$","typeString":"function (ShortString) pure returns (uint256)"}},"id":11621,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4216:17:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11612,"id":11622,"nodeType":"Return","src":"4209:24:54"}]}}]},"documentation":{"id":11603,"nodeType":"StructuredDocumentation","src":"3649:374:54","text":" @dev Return the length of a string that was encoded to `ShortString` or written to storage using\n {toShortStringWithFallback}.\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":11633,"implemented":true,"kind":"function","modifiers":[],"name":"byteLengthWithFallback","nameLocation":"4037:22:54","nodeType":"FunctionDefinition","parameters":{"id":11609,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11606,"mutability":"mutable","name":"value","nameLocation":"4072:5:54","nodeType":"VariableDeclaration","scope":11633,"src":"4060:17:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"},"typeName":{"id":11605,"nodeType":"UserDefinedTypeName","pathNode":{"id":11604,"name":"ShortString","nameLocations":["4060:11:54"],"nodeType":"IdentifierPath","referencedDeclaration":11423,"src":"4060:11:54"},"referencedDeclaration":11423,"src":"4060:11:54","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"visibility":"internal"},{"constant":false,"id":11608,"mutability":"mutable","name":"store","nameLocation":"4094:5:54","nodeType":"VariableDeclaration","scope":11633,"src":"4079:20:54","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":11607,"name":"string","nodeType":"ElementaryTypeName","src":"4079:6:54","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4059:41:54"},"returnParameters":{"id":11612,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11611,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11633,"src":"4124:7:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11610,"name":"uint256","nodeType":"ElementaryTypeName","src":"4124:7:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4123:9:54"},"scope":11634,"src":"4028:279:54","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":11635,"src":"1255:3054:54","usedErrors":[11431,11433],"usedEvents":[]}],"src":"106:4204:54"},"id":54},"@openzeppelin/contracts/utils/StorageSlot.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","exportedSymbols":{"StorageSlot":[11758]},"id":11759,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":11636,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"193:24:55"},{"abstract":false,"baseContracts":[],"canonicalName":"StorageSlot","contractDependencies":[],"contractKind":"library","documentation":{"id":11637,"nodeType":"StructuredDocumentation","src":"219:1187:55","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":11758,"linearizedBaseContracts":[11758],"name":"StorageSlot","nameLocation":"1415:11:55","nodeType":"ContractDefinition","nodes":[{"canonicalName":"StorageSlot.AddressSlot","id":11640,"members":[{"constant":false,"id":11639,"mutability":"mutable","name":"value","nameLocation":"1470:5:55","nodeType":"VariableDeclaration","scope":11640,"src":"1462:13:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11638,"name":"address","nodeType":"ElementaryTypeName","src":"1462:7:55","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"AddressSlot","nameLocation":"1440:11:55","nodeType":"StructDefinition","scope":11758,"src":"1433:49:55","visibility":"public"},{"canonicalName":"StorageSlot.BooleanSlot","id":11643,"members":[{"constant":false,"id":11642,"mutability":"mutable","name":"value","nameLocation":"1522:5:55","nodeType":"VariableDeclaration","scope":11643,"src":"1517:10:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11641,"name":"bool","nodeType":"ElementaryTypeName","src":"1517:4:55","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"BooleanSlot","nameLocation":"1495:11:55","nodeType":"StructDefinition","scope":11758,"src":"1488:46:55","visibility":"public"},{"canonicalName":"StorageSlot.Bytes32Slot","id":11646,"members":[{"constant":false,"id":11645,"mutability":"mutable","name":"value","nameLocation":"1577:5:55","nodeType":"VariableDeclaration","scope":11646,"src":"1569:13:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11644,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1569:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"name":"Bytes32Slot","nameLocation":"1547:11:55","nodeType":"StructDefinition","scope":11758,"src":"1540:49:55","visibility":"public"},{"canonicalName":"StorageSlot.Uint256Slot","id":11649,"members":[{"constant":false,"id":11648,"mutability":"mutable","name":"value","nameLocation":"1632:5:55","nodeType":"VariableDeclaration","scope":11649,"src":"1624:13:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11647,"name":"uint256","nodeType":"ElementaryTypeName","src":"1624:7:55","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Uint256Slot","nameLocation":"1602:11:55","nodeType":"StructDefinition","scope":11758,"src":"1595:49:55","visibility":"public"},{"canonicalName":"StorageSlot.Int256Slot","id":11652,"members":[{"constant":false,"id":11651,"mutability":"mutable","name":"value","nameLocation":"1685:5:55","nodeType":"VariableDeclaration","scope":11652,"src":"1678:12:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11650,"name":"int256","nodeType":"ElementaryTypeName","src":"1678:6:55","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"name":"Int256Slot","nameLocation":"1657:10:55","nodeType":"StructDefinition","scope":11758,"src":"1650:47:55","visibility":"public"},{"canonicalName":"StorageSlot.StringSlot","id":11655,"members":[{"constant":false,"id":11654,"mutability":"mutable","name":"value","nameLocation":"1738:5:55","nodeType":"VariableDeclaration","scope":11655,"src":"1731:12:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":11653,"name":"string","nodeType":"ElementaryTypeName","src":"1731:6:55","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"name":"StringSlot","nameLocation":"1710:10:55","nodeType":"StructDefinition","scope":11758,"src":"1703:47:55","visibility":"public"},{"canonicalName":"StorageSlot.BytesSlot","id":11658,"members":[{"constant":false,"id":11657,"mutability":"mutable","name":"value","nameLocation":"1789:5:55","nodeType":"VariableDeclaration","scope":11658,"src":"1783:11:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":11656,"name":"bytes","nodeType":"ElementaryTypeName","src":"1783:5:55","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"BytesSlot","nameLocation":"1763:9:55","nodeType":"StructDefinition","scope":11758,"src":"1756:45:55","visibility":"public"},{"body":{"id":11668,"nodeType":"Block","src":"1983:79:55","statements":[{"AST":{"nativeSrc":"2018:38:55","nodeType":"YulBlock","src":"2018:38:55","statements":[{"nativeSrc":"2032:14:55","nodeType":"YulAssignment","src":"2032:14:55","value":{"name":"slot","nativeSrc":"2042:4:55","nodeType":"YulIdentifier","src":"2042:4:55"},"variableNames":[{"name":"r.slot","nativeSrc":"2032:6:55","nodeType":"YulIdentifier","src":"2032:6:55"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":11665,"isOffset":false,"isSlot":true,"src":"2032:6:55","suffix":"slot","valueSize":1},{"declaration":11661,"isOffset":false,"isSlot":false,"src":"2042:4:55","valueSize":1}],"flags":["memory-safe"],"id":11667,"nodeType":"InlineAssembly","src":"1993:63:55"}]},"documentation":{"id":11659,"nodeType":"StructuredDocumentation","src":"1807:87:55","text":" @dev Returns an `AddressSlot` with member `value` located at `slot`."},"id":11669,"implemented":true,"kind":"function","modifiers":[],"name":"getAddressSlot","nameLocation":"1908:14:55","nodeType":"FunctionDefinition","parameters":{"id":11662,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11661,"mutability":"mutable","name":"slot","nameLocation":"1931:4:55","nodeType":"VariableDeclaration","scope":11669,"src":"1923:12:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11660,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1923:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1922:14:55"},"returnParameters":{"id":11666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11665,"mutability":"mutable","name":"r","nameLocation":"1980:1:55","nodeType":"VariableDeclaration","scope":11669,"src":"1960:21:55","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$11640_storage_ptr","typeString":"struct StorageSlot.AddressSlot"},"typeName":{"id":11664,"nodeType":"UserDefinedTypeName","pathNode":{"id":11663,"name":"AddressSlot","nameLocations":["1960:11:55"],"nodeType":"IdentifierPath","referencedDeclaration":11640,"src":"1960:11:55"},"referencedDeclaration":11640,"src":"1960:11:55","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$11640_storage_ptr","typeString":"struct StorageSlot.AddressSlot"}},"visibility":"internal"}],"src":"1959:23:55"},"scope":11758,"src":"1899:163:55","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11679,"nodeType":"Block","src":"2243:79:55","statements":[{"AST":{"nativeSrc":"2278:38:55","nodeType":"YulBlock","src":"2278:38:55","statements":[{"nativeSrc":"2292:14:55","nodeType":"YulAssignment","src":"2292:14:55","value":{"name":"slot","nativeSrc":"2302:4:55","nodeType":"YulIdentifier","src":"2302:4:55"},"variableNames":[{"name":"r.slot","nativeSrc":"2292:6:55","nodeType":"YulIdentifier","src":"2292:6:55"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":11676,"isOffset":false,"isSlot":true,"src":"2292:6:55","suffix":"slot","valueSize":1},{"declaration":11672,"isOffset":false,"isSlot":false,"src":"2302:4:55","valueSize":1}],"flags":["memory-safe"],"id":11678,"nodeType":"InlineAssembly","src":"2253:63:55"}]},"documentation":{"id":11670,"nodeType":"StructuredDocumentation","src":"2068:86:55","text":" @dev Returns a `BooleanSlot` with member `value` located at `slot`."},"id":11680,"implemented":true,"kind":"function","modifiers":[],"name":"getBooleanSlot","nameLocation":"2168:14:55","nodeType":"FunctionDefinition","parameters":{"id":11673,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11672,"mutability":"mutable","name":"slot","nameLocation":"2191:4:55","nodeType":"VariableDeclaration","scope":11680,"src":"2183:12:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11671,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2183:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2182:14:55"},"returnParameters":{"id":11677,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11676,"mutability":"mutable","name":"r","nameLocation":"2240:1:55","nodeType":"VariableDeclaration","scope":11680,"src":"2220:21:55","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$11643_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"},"typeName":{"id":11675,"nodeType":"UserDefinedTypeName","pathNode":{"id":11674,"name":"BooleanSlot","nameLocations":["2220:11:55"],"nodeType":"IdentifierPath","referencedDeclaration":11643,"src":"2220:11:55"},"referencedDeclaration":11643,"src":"2220:11:55","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$11643_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"}},"visibility":"internal"}],"src":"2219:23:55"},"scope":11758,"src":"2159:163:55","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11690,"nodeType":"Block","src":"2503:79:55","statements":[{"AST":{"nativeSrc":"2538:38:55","nodeType":"YulBlock","src":"2538:38:55","statements":[{"nativeSrc":"2552:14:55","nodeType":"YulAssignment","src":"2552:14:55","value":{"name":"slot","nativeSrc":"2562:4:55","nodeType":"YulIdentifier","src":"2562:4:55"},"variableNames":[{"name":"r.slot","nativeSrc":"2552:6:55","nodeType":"YulIdentifier","src":"2552:6:55"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":11687,"isOffset":false,"isSlot":true,"src":"2552:6:55","suffix":"slot","valueSize":1},{"declaration":11683,"isOffset":false,"isSlot":false,"src":"2562:4:55","valueSize":1}],"flags":["memory-safe"],"id":11689,"nodeType":"InlineAssembly","src":"2513:63:55"}]},"documentation":{"id":11681,"nodeType":"StructuredDocumentation","src":"2328:86:55","text":" @dev Returns a `Bytes32Slot` with member `value` located at `slot`."},"id":11691,"implemented":true,"kind":"function","modifiers":[],"name":"getBytes32Slot","nameLocation":"2428:14:55","nodeType":"FunctionDefinition","parameters":{"id":11684,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11683,"mutability":"mutable","name":"slot","nameLocation":"2451:4:55","nodeType":"VariableDeclaration","scope":11691,"src":"2443:12:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11682,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2443:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2442:14:55"},"returnParameters":{"id":11688,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11687,"mutability":"mutable","name":"r","nameLocation":"2500:1:55","nodeType":"VariableDeclaration","scope":11691,"src":"2480:21:55","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$11646_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"},"typeName":{"id":11686,"nodeType":"UserDefinedTypeName","pathNode":{"id":11685,"name":"Bytes32Slot","nameLocations":["2480:11:55"],"nodeType":"IdentifierPath","referencedDeclaration":11646,"src":"2480:11:55"},"referencedDeclaration":11646,"src":"2480:11:55","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$11646_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"}},"visibility":"internal"}],"src":"2479:23:55"},"scope":11758,"src":"2419:163:55","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11701,"nodeType":"Block","src":"2763:79:55","statements":[{"AST":{"nativeSrc":"2798:38:55","nodeType":"YulBlock","src":"2798:38:55","statements":[{"nativeSrc":"2812:14:55","nodeType":"YulAssignment","src":"2812:14:55","value":{"name":"slot","nativeSrc":"2822:4:55","nodeType":"YulIdentifier","src":"2822:4:55"},"variableNames":[{"name":"r.slot","nativeSrc":"2812:6:55","nodeType":"YulIdentifier","src":"2812:6:55"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":11698,"isOffset":false,"isSlot":true,"src":"2812:6:55","suffix":"slot","valueSize":1},{"declaration":11694,"isOffset":false,"isSlot":false,"src":"2822:4:55","valueSize":1}],"flags":["memory-safe"],"id":11700,"nodeType":"InlineAssembly","src":"2773:63:55"}]},"documentation":{"id":11692,"nodeType":"StructuredDocumentation","src":"2588:86:55","text":" @dev Returns a `Uint256Slot` with member `value` located at `slot`."},"id":11702,"implemented":true,"kind":"function","modifiers":[],"name":"getUint256Slot","nameLocation":"2688:14:55","nodeType":"FunctionDefinition","parameters":{"id":11695,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11694,"mutability":"mutable","name":"slot","nameLocation":"2711:4:55","nodeType":"VariableDeclaration","scope":11702,"src":"2703:12:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11693,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2703:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2702:14:55"},"returnParameters":{"id":11699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11698,"mutability":"mutable","name":"r","nameLocation":"2760:1:55","nodeType":"VariableDeclaration","scope":11702,"src":"2740:21:55","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$11649_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"},"typeName":{"id":11697,"nodeType":"UserDefinedTypeName","pathNode":{"id":11696,"name":"Uint256Slot","nameLocations":["2740:11:55"],"nodeType":"IdentifierPath","referencedDeclaration":11649,"src":"2740:11:55"},"referencedDeclaration":11649,"src":"2740:11:55","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$11649_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"}},"visibility":"internal"}],"src":"2739:23:55"},"scope":11758,"src":"2679:163:55","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11712,"nodeType":"Block","src":"3020:79:55","statements":[{"AST":{"nativeSrc":"3055:38:55","nodeType":"YulBlock","src":"3055:38:55","statements":[{"nativeSrc":"3069:14:55","nodeType":"YulAssignment","src":"3069:14:55","value":{"name":"slot","nativeSrc":"3079:4:55","nodeType":"YulIdentifier","src":"3079:4:55"},"variableNames":[{"name":"r.slot","nativeSrc":"3069:6:55","nodeType":"YulIdentifier","src":"3069:6:55"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":11709,"isOffset":false,"isSlot":true,"src":"3069:6:55","suffix":"slot","valueSize":1},{"declaration":11705,"isOffset":false,"isSlot":false,"src":"3079:4:55","valueSize":1}],"flags":["memory-safe"],"id":11711,"nodeType":"InlineAssembly","src":"3030:63:55"}]},"documentation":{"id":11703,"nodeType":"StructuredDocumentation","src":"2848:85:55","text":" @dev Returns a `Int256Slot` with member `value` located at `slot`."},"id":11713,"implemented":true,"kind":"function","modifiers":[],"name":"getInt256Slot","nameLocation":"2947:13:55","nodeType":"FunctionDefinition","parameters":{"id":11706,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11705,"mutability":"mutable","name":"slot","nameLocation":"2969:4:55","nodeType":"VariableDeclaration","scope":11713,"src":"2961:12:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11704,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2961:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2960:14:55"},"returnParameters":{"id":11710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11709,"mutability":"mutable","name":"r","nameLocation":"3017:1:55","nodeType":"VariableDeclaration","scope":11713,"src":"2998:20:55","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Int256Slot_$11652_storage_ptr","typeString":"struct StorageSlot.Int256Slot"},"typeName":{"id":11708,"nodeType":"UserDefinedTypeName","pathNode":{"id":11707,"name":"Int256Slot","nameLocations":["2998:10:55"],"nodeType":"IdentifierPath","referencedDeclaration":11652,"src":"2998:10:55"},"referencedDeclaration":11652,"src":"2998:10:55","typeDescriptions":{"typeIdentifier":"t_struct$_Int256Slot_$11652_storage_ptr","typeString":"struct StorageSlot.Int256Slot"}},"visibility":"internal"}],"src":"2997:22:55"},"scope":11758,"src":"2938:161:55","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11723,"nodeType":"Block","src":"3277:79:55","statements":[{"AST":{"nativeSrc":"3312:38:55","nodeType":"YulBlock","src":"3312:38:55","statements":[{"nativeSrc":"3326:14:55","nodeType":"YulAssignment","src":"3326:14:55","value":{"name":"slot","nativeSrc":"3336:4:55","nodeType":"YulIdentifier","src":"3336:4:55"},"variableNames":[{"name":"r.slot","nativeSrc":"3326:6:55","nodeType":"YulIdentifier","src":"3326:6:55"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":11720,"isOffset":false,"isSlot":true,"src":"3326:6:55","suffix":"slot","valueSize":1},{"declaration":11716,"isOffset":false,"isSlot":false,"src":"3336:4:55","valueSize":1}],"flags":["memory-safe"],"id":11722,"nodeType":"InlineAssembly","src":"3287:63:55"}]},"documentation":{"id":11714,"nodeType":"StructuredDocumentation","src":"3105:85:55","text":" @dev Returns a `StringSlot` with member `value` located at `slot`."},"id":11724,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3204:13:55","nodeType":"FunctionDefinition","parameters":{"id":11717,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11716,"mutability":"mutable","name":"slot","nameLocation":"3226:4:55","nodeType":"VariableDeclaration","scope":11724,"src":"3218:12:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11715,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3218:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3217:14:55"},"returnParameters":{"id":11721,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11720,"mutability":"mutable","name":"r","nameLocation":"3274:1:55","nodeType":"VariableDeclaration","scope":11724,"src":"3255:20:55","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$11655_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":11719,"nodeType":"UserDefinedTypeName","pathNode":{"id":11718,"name":"StringSlot","nameLocations":["3255:10:55"],"nodeType":"IdentifierPath","referencedDeclaration":11655,"src":"3255:10:55"},"referencedDeclaration":11655,"src":"3255:10:55","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$11655_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3254:22:55"},"scope":11758,"src":"3195:161:55","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11734,"nodeType":"Block","src":"3558:85:55","statements":[{"AST":{"nativeSrc":"3593:44:55","nodeType":"YulBlock","src":"3593:44:55","statements":[{"nativeSrc":"3607:20:55","nodeType":"YulAssignment","src":"3607:20:55","value":{"name":"store.slot","nativeSrc":"3617:10:55","nodeType":"YulIdentifier","src":"3617:10:55"},"variableNames":[{"name":"r.slot","nativeSrc":"3607:6:55","nodeType":"YulIdentifier","src":"3607:6:55"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":11731,"isOffset":false,"isSlot":true,"src":"3607:6:55","suffix":"slot","valueSize":1},{"declaration":11727,"isOffset":false,"isSlot":true,"src":"3617:10:55","suffix":"slot","valueSize":1}],"flags":["memory-safe"],"id":11733,"nodeType":"InlineAssembly","src":"3568:69:55"}]},"documentation":{"id":11725,"nodeType":"StructuredDocumentation","src":"3362:101:55","text":" @dev Returns an `StringSlot` representation of the string storage pointer `store`."},"id":11735,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3477:13:55","nodeType":"FunctionDefinition","parameters":{"id":11728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11727,"mutability":"mutable","name":"store","nameLocation":"3506:5:55","nodeType":"VariableDeclaration","scope":11735,"src":"3491:20:55","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":11726,"name":"string","nodeType":"ElementaryTypeName","src":"3491:6:55","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3490:22:55"},"returnParameters":{"id":11732,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11731,"mutability":"mutable","name":"r","nameLocation":"3555:1:55","nodeType":"VariableDeclaration","scope":11735,"src":"3536:20:55","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$11655_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":11730,"nodeType":"UserDefinedTypeName","pathNode":{"id":11729,"name":"StringSlot","nameLocations":["3536:10:55"],"nodeType":"IdentifierPath","referencedDeclaration":11655,"src":"3536:10:55"},"referencedDeclaration":11655,"src":"3536:10:55","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$11655_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3535:22:55"},"scope":11758,"src":"3468:175:55","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11745,"nodeType":"Block","src":"3818:79:55","statements":[{"AST":{"nativeSrc":"3853:38:55","nodeType":"YulBlock","src":"3853:38:55","statements":[{"nativeSrc":"3867:14:55","nodeType":"YulAssignment","src":"3867:14:55","value":{"name":"slot","nativeSrc":"3877:4:55","nodeType":"YulIdentifier","src":"3877:4:55"},"variableNames":[{"name":"r.slot","nativeSrc":"3867:6:55","nodeType":"YulIdentifier","src":"3867:6:55"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":11742,"isOffset":false,"isSlot":true,"src":"3867:6:55","suffix":"slot","valueSize":1},{"declaration":11738,"isOffset":false,"isSlot":false,"src":"3877:4:55","valueSize":1}],"flags":["memory-safe"],"id":11744,"nodeType":"InlineAssembly","src":"3828:63:55"}]},"documentation":{"id":11736,"nodeType":"StructuredDocumentation","src":"3649:84:55","text":" @dev Returns a `BytesSlot` with member `value` located at `slot`."},"id":11746,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"3747:12:55","nodeType":"FunctionDefinition","parameters":{"id":11739,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11738,"mutability":"mutable","name":"slot","nameLocation":"3768:4:55","nodeType":"VariableDeclaration","scope":11746,"src":"3760:12:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11737,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3760:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3759:14:55"},"returnParameters":{"id":11743,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11742,"mutability":"mutable","name":"r","nameLocation":"3815:1:55","nodeType":"VariableDeclaration","scope":11746,"src":"3797:19:55","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$11658_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":11741,"nodeType":"UserDefinedTypeName","pathNode":{"id":11740,"name":"BytesSlot","nameLocations":["3797:9:55"],"nodeType":"IdentifierPath","referencedDeclaration":11658,"src":"3797:9:55"},"referencedDeclaration":11658,"src":"3797:9:55","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$11658_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"3796:21:55"},"scope":11758,"src":"3738:159:55","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11756,"nodeType":"Block","src":"4094:85:55","statements":[{"AST":{"nativeSrc":"4129:44:55","nodeType":"YulBlock","src":"4129:44:55","statements":[{"nativeSrc":"4143:20:55","nodeType":"YulAssignment","src":"4143:20:55","value":{"name":"store.slot","nativeSrc":"4153:10:55","nodeType":"YulIdentifier","src":"4153:10:55"},"variableNames":[{"name":"r.slot","nativeSrc":"4143:6:55","nodeType":"YulIdentifier","src":"4143:6:55"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":11753,"isOffset":false,"isSlot":true,"src":"4143:6:55","suffix":"slot","valueSize":1},{"declaration":11749,"isOffset":false,"isSlot":true,"src":"4153:10:55","suffix":"slot","valueSize":1}],"flags":["memory-safe"],"id":11755,"nodeType":"InlineAssembly","src":"4104:69:55"}]},"documentation":{"id":11747,"nodeType":"StructuredDocumentation","src":"3903:99:55","text":" @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`."},"id":11757,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"4016:12:55","nodeType":"FunctionDefinition","parameters":{"id":11750,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11749,"mutability":"mutable","name":"store","nameLocation":"4043:5:55","nodeType":"VariableDeclaration","scope":11757,"src":"4029:19:55","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":11748,"name":"bytes","nodeType":"ElementaryTypeName","src":"4029:5:55","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4028:21:55"},"returnParameters":{"id":11754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11753,"mutability":"mutable","name":"r","nameLocation":"4091:1:55","nodeType":"VariableDeclaration","scope":11757,"src":"4073:19:55","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$11658_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":11752,"nodeType":"UserDefinedTypeName","pathNode":{"id":11751,"name":"BytesSlot","nameLocations":["4073:9:55"],"nodeType":"IdentifierPath","referencedDeclaration":11658,"src":"4073:9:55"},"referencedDeclaration":11658,"src":"4073:9:55","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$11658_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"4072:21:55"},"scope":11758,"src":"4007:172:55","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":11759,"src":"1407:2774:55","usedErrors":[],"usedEvents":[]}],"src":"193:3989:55"},"id":55},"@openzeppelin/contracts/utils/Strings.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","exportedSymbols":{"Bytes":[10697],"Math":[15914],"SafeCast":[17679],"SignedMath":[17823],"Strings":[13238]},"id":13239,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":11760,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"101:24:56"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"./math/Math.sol","id":11762,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":13239,"sourceUnit":15915,"src":"127:37:56","symbolAliases":[{"foreign":{"id":11761,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"135:4:56","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./math/SafeCast.sol","id":11764,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":13239,"sourceUnit":17680,"src":"165:45:56","symbolAliases":[{"foreign":{"id":11763,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"173:8:56","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","file":"./math/SignedMath.sol","id":11766,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":13239,"sourceUnit":17824,"src":"211:49:56","symbolAliases":[{"foreign":{"id":11765,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17823,"src":"219:10:56","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Bytes.sol","file":"./Bytes.sol","id":11768,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":13239,"sourceUnit":10698,"src":"261:34:56","symbolAliases":[{"foreign":{"id":11767,"name":"Bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10697,"src":"269:5:56","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Strings","contractDependencies":[],"contractKind":"library","documentation":{"id":11769,"nodeType":"StructuredDocumentation","src":"297:34:56","text":" @dev String operations."},"fullyImplemented":true,"id":13238,"linearizedBaseContracts":[13238],"name":"Strings","nameLocation":"340:7:56","nodeType":"ContractDefinition","nodes":[{"global":false,"id":11771,"libraryName":{"id":11770,"name":"SafeCast","nameLocations":["360:8:56"],"nodeType":"IdentifierPath","referencedDeclaration":17679,"src":"360:8:56"},"nodeType":"UsingForDirective","src":"354:21:56"},{"constant":true,"id":11774,"mutability":"constant","name":"HEX_DIGITS","nameLocation":"406:10:56","nodeType":"VariableDeclaration","scope":13238,"src":"381:56:56","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":11772,"name":"bytes16","nodeType":"ElementaryTypeName","src":"381:7:56","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"value":{"hexValue":"30313233343536373839616263646566","id":11773,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"419:18:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_cb29997ed99ead0db59ce4d12b7d3723198c827273e5796737c926d78019c39f","typeString":"literal_string \"0123456789abcdef\""},"value":"0123456789abcdef"},"visibility":"private"},{"constant":true,"id":11777,"mutability":"constant","name":"ADDRESS_LENGTH","nameLocation":"466:14:56","nodeType":"VariableDeclaration","scope":13238,"src":"443:42:56","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11775,"name":"uint8","nodeType":"ElementaryTypeName","src":"443:5:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"3230","id":11776,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"483:2:56","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"visibility":"private"},{"constant":true,"id":11813,"mutability":"constant","name":"SPECIAL_CHARS_LOOKUP","nameLocation":"516:20:56","nodeType":"VariableDeclaration","scope":13238,"src":"491:302:56","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11778,"name":"uint256","nodeType":"ElementaryTypeName","src":"491:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_rational_4951760157141521116776380160_by_1","typeString":"int_const 4951760157141521116776380160"},"id":11812,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_17179883264_by_1","typeString":"int_const 17179883264"},"id":11807,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_14080_by_1","typeString":"int_const 14080"},"id":11802,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_5888_by_1","typeString":"int_const 5888"},"id":11797,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_1792_by_1","typeString":"int_const 1792"},"id":11792,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_768_by_1","typeString":"int_const 768"},"id":11787,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":11781,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":11779,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"548:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783038","id":11780,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"553:4:56","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"0x08"},"src":"548:9:56","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":11782,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"547:11:56","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_512_by_1","typeString":"int_const 512"},"id":11785,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":11783,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"587:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783039","id":11784,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"592:4:56","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"0x09"},"src":"587:9:56","typeDescriptions":{"typeIdentifier":"t_rational_512_by_1","typeString":"int_const 512"}}],"id":11786,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"586:11:56","typeDescriptions":{"typeIdentifier":"t_rational_512_by_1","typeString":"int_const 512"}},"src":"547:50:56","typeDescriptions":{"typeIdentifier":"t_rational_768_by_1","typeString":"int_const 768"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_1024_by_1","typeString":"int_const 1024"},"id":11790,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":11788,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"620:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783061","id":11789,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"625:4:56","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"0x0a"},"src":"620:9:56","typeDescriptions":{"typeIdentifier":"t_rational_1024_by_1","typeString":"int_const 1024"}}],"id":11791,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"619:11:56","typeDescriptions":{"typeIdentifier":"t_rational_1024_by_1","typeString":"int_const 1024"}},"src":"547:83:56","typeDescriptions":{"typeIdentifier":"t_rational_1792_by_1","typeString":"int_const 1792"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4096_by_1","typeString":"int_const 4096"},"id":11795,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":11793,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"657:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783063","id":11794,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"662:4:56","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"0x0c"},"src":"657:9:56","typeDescriptions":{"typeIdentifier":"t_rational_4096_by_1","typeString":"int_const 4096"}}],"id":11796,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"656:11:56","typeDescriptions":{"typeIdentifier":"t_rational_4096_by_1","typeString":"int_const 4096"}},"src":"547:120:56","typeDescriptions":{"typeIdentifier":"t_rational_5888_by_1","typeString":"int_const 5888"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_8192_by_1","typeString":"int_const 8192"},"id":11800,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":11798,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"696:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783064","id":11799,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"701:4:56","typeDescriptions":{"typeIdentifier":"t_rational_13_by_1","typeString":"int_const 13"},"value":"0x0d"},"src":"696:9:56","typeDescriptions":{"typeIdentifier":"t_rational_8192_by_1","typeString":"int_const 8192"}}],"id":11801,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"695:11:56","typeDescriptions":{"typeIdentifier":"t_rational_8192_by_1","typeString":"int_const 8192"}},"src":"547:159:56","typeDescriptions":{"typeIdentifier":"t_rational_14080_by_1","typeString":"int_const 14080"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_17179869184_by_1","typeString":"int_const 17179869184"},"id":11805,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":11803,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"741:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783232","id":11804,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"746:4:56","typeDescriptions":{"typeIdentifier":"t_rational_34_by_1","typeString":"int_const 34"},"value":"0x22"},"src":"741:9:56","typeDescriptions":{"typeIdentifier":"t_rational_17179869184_by_1","typeString":"int_const 17179869184"}}],"id":11806,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"740:11:56","typeDescriptions":{"typeIdentifier":"t_rational_17179869184_by_1","typeString":"int_const 17179869184"}},"src":"547:204:56","typeDescriptions":{"typeIdentifier":"t_rational_17179883264_by_1","typeString":"int_const 17179883264"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4951760157141521099596496896_by_1","typeString":"int_const 4951760157141521099596496896"},"id":11810,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":11808,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"783:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783563","id":11809,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"788:4:56","typeDescriptions":{"typeIdentifier":"t_rational_92_by_1","typeString":"int_const 92"},"value":"0x5c"},"src":"783:9:56","typeDescriptions":{"typeIdentifier":"t_rational_4951760157141521099596496896_by_1","typeString":"int_const 4951760157141521099596496896"}}],"id":11811,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"782:11:56","typeDescriptions":{"typeIdentifier":"t_rational_4951760157141521099596496896_by_1","typeString":"int_const 4951760157141521099596496896"}},"src":"547:246:56","typeDescriptions":{"typeIdentifier":"t_rational_4951760157141521116776380160_by_1","typeString":"int_const 4951760157141521116776380160"}},"visibility":"private"},{"documentation":{"id":11814,"nodeType":"StructuredDocumentation","src":"813:81:56","text":" @dev The `value` string doesn't fit in the specified `length`."},"errorSelector":"e22e27eb","id":11820,"name":"StringsInsufficientHexLength","nameLocation":"905:28:56","nodeType":"ErrorDefinition","parameters":{"id":11819,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11816,"mutability":"mutable","name":"value","nameLocation":"942:5:56","nodeType":"VariableDeclaration","scope":11820,"src":"934:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11815,"name":"uint256","nodeType":"ElementaryTypeName","src":"934:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11818,"mutability":"mutable","name":"length","nameLocation":"957:6:56","nodeType":"VariableDeclaration","scope":11820,"src":"949:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11817,"name":"uint256","nodeType":"ElementaryTypeName","src":"949:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"933:31:56"},"src":"899:66:56"},{"documentation":{"id":11821,"nodeType":"StructuredDocumentation","src":"971:108:56","text":" @dev The string being parsed contains characters that are not in scope of the given base."},"errorSelector":"94e2737e","id":11823,"name":"StringsInvalidChar","nameLocation":"1090:18:56","nodeType":"ErrorDefinition","parameters":{"id":11822,"nodeType":"ParameterList","parameters":[],"src":"1108:2:56"},"src":"1084:27:56"},{"documentation":{"id":11824,"nodeType":"StructuredDocumentation","src":"1117:84:56","text":" @dev The string being parsed is not a properly formatted address."},"errorSelector":"1d15ae44","id":11826,"name":"StringsInvalidAddressFormat","nameLocation":"1212:27:56","nodeType":"ErrorDefinition","parameters":{"id":11825,"nodeType":"ParameterList","parameters":[],"src":"1239:2:56"},"src":"1206:36:56"},{"body":{"id":11873,"nodeType":"Block","src":"1414:563:56","statements":[{"id":11872,"nodeType":"UncheckedBlock","src":"1424:547:56","statements":[{"assignments":[11835],"declarations":[{"constant":false,"id":11835,"mutability":"mutable","name":"length","nameLocation":"1456:6:56","nodeType":"VariableDeclaration","scope":11872,"src":"1448:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11834,"name":"uint256","nodeType":"ElementaryTypeName","src":"1448:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11842,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11841,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11838,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11829,"src":"1476:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":11836,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"1465:4:56","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":11837,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1470:5:56","memberName":"log10","nodeType":"MemberAccess","referencedDeclaration":15725,"src":"1465:10:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":11839,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1465:17:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":11840,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1485:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1465:21:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1448:38:56"},{"assignments":[11844],"declarations":[{"constant":false,"id":11844,"mutability":"mutable","name":"buffer","nameLocation":"1514:6:56","nodeType":"VariableDeclaration","scope":11872,"src":"1500:20:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":11843,"name":"string","nodeType":"ElementaryTypeName","src":"1500:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":11849,"initialValue":{"arguments":[{"id":11847,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11835,"src":"1534:6:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11846,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1523:10:56","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"},"typeName":{"id":11845,"name":"string","nodeType":"ElementaryTypeName","src":"1527:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"id":11848,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1523:18:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"1500:41:56"},{"assignments":[11851],"declarations":[{"constant":false,"id":11851,"mutability":"mutable","name":"ptr","nameLocation":"1563:3:56","nodeType":"VariableDeclaration","scope":11872,"src":"1555:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11850,"name":"uint256","nodeType":"ElementaryTypeName","src":"1555:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11852,"nodeType":"VariableDeclarationStatement","src":"1555:11:56"},{"AST":{"nativeSrc":"1605:69:56","nodeType":"YulBlock","src":"1605:69:56","statements":[{"nativeSrc":"1623:37:56","nodeType":"YulAssignment","src":"1623:37:56","value":{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"1638:6:56","nodeType":"YulIdentifier","src":"1638:6:56"},{"kind":"number","nativeSrc":"1646:4:56","nodeType":"YulLiteral","src":"1646:4:56","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1634:3:56","nodeType":"YulIdentifier","src":"1634:3:56"},"nativeSrc":"1634:17:56","nodeType":"YulFunctionCall","src":"1634:17:56"},{"name":"length","nativeSrc":"1653:6:56","nodeType":"YulIdentifier","src":"1653:6:56"}],"functionName":{"name":"add","nativeSrc":"1630:3:56","nodeType":"YulIdentifier","src":"1630:3:56"},"nativeSrc":"1630:30:56","nodeType":"YulFunctionCall","src":"1630:30:56"},"variableNames":[{"name":"ptr","nativeSrc":"1623:3:56","nodeType":"YulIdentifier","src":"1623:3:56"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":11844,"isOffset":false,"isSlot":false,"src":"1638:6:56","valueSize":1},{"declaration":11835,"isOffset":false,"isSlot":false,"src":"1653:6:56","valueSize":1},{"declaration":11851,"isOffset":false,"isSlot":false,"src":"1623:3:56","valueSize":1}],"flags":["memory-safe"],"id":11853,"nodeType":"InlineAssembly","src":"1580:94:56"},{"body":{"id":11868,"nodeType":"Block","src":"1700:234:56","statements":[{"expression":{"id":11856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":false,"src":"1718:5:56","subExpression":{"id":11855,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11851,"src":"1718:3:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11857,"nodeType":"ExpressionStatement","src":"1718:5:56"},{"AST":{"nativeSrc":"1766:86:56","nodeType":"YulBlock","src":"1766:86:56","statements":[{"expression":{"arguments":[{"name":"ptr","nativeSrc":"1796:3:56","nodeType":"YulIdentifier","src":"1796:3:56"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1810:5:56","nodeType":"YulIdentifier","src":"1810:5:56"},{"kind":"number","nativeSrc":"1817:2:56","nodeType":"YulLiteral","src":"1817:2:56","type":"","value":"10"}],"functionName":{"name":"mod","nativeSrc":"1806:3:56","nodeType":"YulIdentifier","src":"1806:3:56"},"nativeSrc":"1806:14:56","nodeType":"YulFunctionCall","src":"1806:14:56"},{"name":"HEX_DIGITS","nativeSrc":"1822:10:56","nodeType":"YulIdentifier","src":"1822:10:56"}],"functionName":{"name":"byte","nativeSrc":"1801:4:56","nodeType":"YulIdentifier","src":"1801:4:56"},"nativeSrc":"1801:32:56","nodeType":"YulFunctionCall","src":"1801:32:56"}],"functionName":{"name":"mstore8","nativeSrc":"1788:7:56","nodeType":"YulIdentifier","src":"1788:7:56"},"nativeSrc":"1788:46:56","nodeType":"YulFunctionCall","src":"1788:46:56"},"nativeSrc":"1788:46:56","nodeType":"YulExpressionStatement","src":"1788:46:56"}]},"evmVersion":"prague","externalReferences":[{"declaration":11774,"isOffset":false,"isSlot":false,"src":"1822:10:56","valueSize":1},{"declaration":11851,"isOffset":false,"isSlot":false,"src":"1796:3:56","valueSize":1},{"declaration":11829,"isOffset":false,"isSlot":false,"src":"1810:5:56","valueSize":1}],"flags":["memory-safe"],"id":11858,"nodeType":"InlineAssembly","src":"1741:111:56"},{"expression":{"id":11861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11859,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11829,"src":"1869:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"hexValue":"3130","id":11860,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1878:2:56","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"1869:11:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11862,"nodeType":"ExpressionStatement","src":"1869:11:56"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11863,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11829,"src":"1902:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":11864,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1911:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1902:10:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11867,"nodeType":"IfStatement","src":"1898:21:56","trueBody":{"id":11866,"nodeType":"Break","src":"1914:5:56"}}]},"condition":{"hexValue":"74727565","id":11854,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1694:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"id":11869,"nodeType":"WhileStatement","src":"1687:247:56"},{"expression":{"id":11870,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11844,"src":"1954:6:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":11833,"id":11871,"nodeType":"Return","src":"1947:13:56"}]}]},"documentation":{"id":11827,"nodeType":"StructuredDocumentation","src":"1248:90:56","text":" @dev Converts a `uint256` to its ASCII `string` decimal representation."},"id":11874,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"1352:8:56","nodeType":"FunctionDefinition","parameters":{"id":11830,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11829,"mutability":"mutable","name":"value","nameLocation":"1369:5:56","nodeType":"VariableDeclaration","scope":11874,"src":"1361:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11828,"name":"uint256","nodeType":"ElementaryTypeName","src":"1361:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1360:15:56"},"returnParameters":{"id":11833,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11832,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11874,"src":"1399:13:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":11831,"name":"string","nodeType":"ElementaryTypeName","src":"1399:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1398:15:56"},"scope":13238,"src":"1343:634:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11899,"nodeType":"Block","src":"2153:92:56","statements":[{"expression":{"arguments":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11885,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11877,"src":"2184:5:56","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":11886,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2192:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2184:9:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"","id":11889,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2202:2:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"id":11890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2184:20:56","trueExpression":{"hexValue":"2d","id":11888,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2196:3:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[{"arguments":[{"id":11894,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11877,"src":"2230:5:56","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":11892,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17823,"src":"2215:10:56","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SignedMath_$17823_$","typeString":"type(library SignedMath)"}},"id":11893,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2226:3:56","memberName":"abs","nodeType":"MemberAccess","referencedDeclaration":17822,"src":"2215:14:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_int256_$returns$_t_uint256_$","typeString":"function (int256) pure returns (uint256)"}},"id":11895,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2215:21:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11891,"name":"toString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11874,"src":"2206:8:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":11896,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2206:31:56","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":11883,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2170:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":11882,"name":"string","nodeType":"ElementaryTypeName","src":"2170:6:56","typeDescriptions":{}}},"id":11884,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2177:6:56","memberName":"concat","nodeType":"MemberAccess","src":"2170:13:56","typeDescriptions":{"typeIdentifier":"t_function_stringconcat_pure$__$returns$_t_string_memory_ptr_$","typeString":"function () pure returns (string memory)"}},"id":11897,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2170:68:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":11881,"id":11898,"nodeType":"Return","src":"2163:75:56"}]},"documentation":{"id":11875,"nodeType":"StructuredDocumentation","src":"1983:89:56","text":" @dev Converts a `int256` to its ASCII `string` decimal representation."},"id":11900,"implemented":true,"kind":"function","modifiers":[],"name":"toStringSigned","nameLocation":"2086:14:56","nodeType":"FunctionDefinition","parameters":{"id":11878,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11877,"mutability":"mutable","name":"value","nameLocation":"2108:5:56","nodeType":"VariableDeclaration","scope":11900,"src":"2101:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11876,"name":"int256","nodeType":"ElementaryTypeName","src":"2101:6:56","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"2100:14:56"},"returnParameters":{"id":11881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11880,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11900,"src":"2138:13:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":11879,"name":"string","nodeType":"ElementaryTypeName","src":"2138:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2137:15:56"},"scope":13238,"src":"2077:168:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11919,"nodeType":"Block","src":"2424:100:56","statements":[{"id":11918,"nodeType":"UncheckedBlock","src":"2434:84:56","statements":[{"expression":{"arguments":[{"id":11909,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11903,"src":"2477:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11912,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11903,"src":"2496:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":11910,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"2484:4:56","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":11911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2489:6:56","memberName":"log256","nodeType":"MemberAccess","referencedDeclaration":15836,"src":"2484:11:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":11913,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2484:18:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":11914,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2505:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2484:22:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11908,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[11920,12003,12023,12177],"referencedDeclaration":12003,"src":"2465:11:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":11916,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2465:42:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":11907,"id":11917,"nodeType":"Return","src":"2458:49:56"}]}]},"documentation":{"id":11901,"nodeType":"StructuredDocumentation","src":"2251:94:56","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation."},"id":11920,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2359:11:56","nodeType":"FunctionDefinition","parameters":{"id":11904,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11903,"mutability":"mutable","name":"value","nameLocation":"2379:5:56","nodeType":"VariableDeclaration","scope":11920,"src":"2371:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11902,"name":"uint256","nodeType":"ElementaryTypeName","src":"2371:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2370:15:56"},"returnParameters":{"id":11907,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11906,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11920,"src":"2409:13:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":11905,"name":"string","nodeType":"ElementaryTypeName","src":"2409:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2408:15:56"},"scope":13238,"src":"2350:174:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12002,"nodeType":"Block","src":"2737:435:56","statements":[{"assignments":[11931],"declarations":[{"constant":false,"id":11931,"mutability":"mutable","name":"localValue","nameLocation":"2755:10:56","nodeType":"VariableDeclaration","scope":12002,"src":"2747:18:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11930,"name":"uint256","nodeType":"ElementaryTypeName","src":"2747:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11933,"initialValue":{"id":11932,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11923,"src":"2768:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2747:26:56"},{"assignments":[11935],"declarations":[{"constant":false,"id":11935,"mutability":"mutable","name":"buffer","nameLocation":"2796:6:56","nodeType":"VariableDeclaration","scope":12002,"src":"2783:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11934,"name":"bytes","nodeType":"ElementaryTypeName","src":"2783:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":11944,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11940,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":11938,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2815:1:56","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":11939,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11925,"src":"2819:6:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2815:10:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":11941,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2828:1:56","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"2815:14:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11937,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"2805:9:56","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":11936,"name":"bytes","nodeType":"ElementaryTypeName","src":"2809:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":11943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2805:25:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"2783:47:56"},{"expression":{"id":11949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11945,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11935,"src":"2840:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11947,"indexExpression":{"hexValue":"30","id":11946,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2847:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2840:9:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":11948,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2852:3:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"},"src":"2840:15:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":11950,"nodeType":"ExpressionStatement","src":"2840:15:56"},{"expression":{"id":11955,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11951,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11935,"src":"2865:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11953,"indexExpression":{"hexValue":"31","id":11952,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2872:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2865:9:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"78","id":11954,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2877:3:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_7521d1cadbcfa91eec65aa16715b94ffc1c9654ba57ea2ef1a2127bca1127a83","typeString":"literal_string \"x\""},"value":"x"},"src":"2865:15:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":11956,"nodeType":"ExpressionStatement","src":"2865:15:56"},{"body":{"id":11985,"nodeType":"Block","src":"2935:95:56","statements":[{"expression":{"id":11979,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11971,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11935,"src":"2949:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11973,"indexExpression":{"id":11972,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11958,"src":"2956:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2949:9:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":11974,"name":"HEX_DIGITS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11774,"src":"2961:10:56","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":11978,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11975,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11931,"src":"2972:10:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":11976,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2985:3:56","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"2972:16:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2961:28:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"2949:40:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":11980,"nodeType":"ExpressionStatement","src":"2949:40:56"},{"expression":{"id":11983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11981,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11931,"src":"3003:10:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":11982,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3018:1:56","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"3003:16:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11984,"nodeType":"ExpressionStatement","src":"3003:16:56"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11965,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11958,"src":"2923:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":11966,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2927:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2923:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11986,"initializationExpression":{"assignments":[11958],"declarations":[{"constant":false,"id":11958,"mutability":"mutable","name":"i","nameLocation":"2903:1:56","nodeType":"VariableDeclaration","scope":11986,"src":"2895:9:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11957,"name":"uint256","nodeType":"ElementaryTypeName","src":"2895:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11964,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11963,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":11959,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2907:1:56","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":11960,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11925,"src":"2911:6:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2907:10:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":11962,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2920:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2907:14:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2895:26:56"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":11969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"2930:3:56","subExpression":{"id":11968,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11958,"src":"2932:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11970,"nodeType":"ExpressionStatement","src":"2930:3:56"},"nodeType":"ForStatement","src":"2890:140:56"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11989,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11987,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11931,"src":"3043:10:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":11988,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3057:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3043:15:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11996,"nodeType":"IfStatement","src":"3039:96:56","trueBody":{"id":11995,"nodeType":"Block","src":"3060:75:56","statements":[{"errorCall":{"arguments":[{"id":11991,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11923,"src":"3110:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11992,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11925,"src":"3117:6:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11990,"name":"StringsInsufficientHexLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11820,"src":"3081:28:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":11993,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3081:43:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11994,"nodeType":"RevertStatement","src":"3074:50:56"}]}},{"expression":{"arguments":[{"id":11999,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11935,"src":"3158:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11998,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3151:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":11997,"name":"string","nodeType":"ElementaryTypeName","src":"3151:6:56","typeDescriptions":{}}},"id":12000,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3151:14:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":11929,"id":12001,"nodeType":"Return","src":"3144:21:56"}]},"documentation":{"id":11921,"nodeType":"StructuredDocumentation","src":"2530:112:56","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length."},"id":12003,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2656:11:56","nodeType":"FunctionDefinition","parameters":{"id":11926,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11923,"mutability":"mutable","name":"value","nameLocation":"2676:5:56","nodeType":"VariableDeclaration","scope":12003,"src":"2668:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11922,"name":"uint256","nodeType":"ElementaryTypeName","src":"2668:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11925,"mutability":"mutable","name":"length","nameLocation":"2691:6:56","nodeType":"VariableDeclaration","scope":12003,"src":"2683:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11924,"name":"uint256","nodeType":"ElementaryTypeName","src":"2683:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2667:31:56"},"returnParameters":{"id":11929,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11928,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12003,"src":"2722:13:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":11927,"name":"string","nodeType":"ElementaryTypeName","src":"2722:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2721:15:56"},"scope":13238,"src":"2647:525:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12022,"nodeType":"Block","src":"3404:75:56","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":12016,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12006,"src":"3449:4:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":12015,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3441:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":12014,"name":"uint160","nodeType":"ElementaryTypeName","src":"3441:7:56","typeDescriptions":{}}},"id":12017,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3441:13:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":12013,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3433:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":12012,"name":"uint256","nodeType":"ElementaryTypeName","src":"3433:7:56","typeDescriptions":{}}},"id":12018,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3433:22:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12019,"name":"ADDRESS_LENGTH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11777,"src":"3457:14:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":12011,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[11920,12003,12023,12177],"referencedDeclaration":12003,"src":"3421:11:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":12020,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3421:51:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":12010,"id":12021,"nodeType":"Return","src":"3414:58:56"}]},"documentation":{"id":12004,"nodeType":"StructuredDocumentation","src":"3178:148:56","text":" @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal\n representation."},"id":12023,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"3340:11:56","nodeType":"FunctionDefinition","parameters":{"id":12007,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12006,"mutability":"mutable","name":"addr","nameLocation":"3360:4:56","nodeType":"VariableDeclaration","scope":12023,"src":"3352:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12005,"name":"address","nodeType":"ElementaryTypeName","src":"3352:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3351:14:56"},"returnParameters":{"id":12010,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12009,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12023,"src":"3389:13:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12008,"name":"string","nodeType":"ElementaryTypeName","src":"3389:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3388:15:56"},"scope":13238,"src":"3331:148:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12087,"nodeType":"Block","src":"3736:642:56","statements":[{"assignments":[12032],"declarations":[{"constant":false,"id":12032,"mutability":"mutable","name":"buffer","nameLocation":"3759:6:56","nodeType":"VariableDeclaration","scope":12087,"src":"3746:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12031,"name":"bytes","nodeType":"ElementaryTypeName","src":"3746:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":12039,"initialValue":{"arguments":[{"arguments":[{"id":12036,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12026,"src":"3786:4:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":12035,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[11920,12003,12023,12177],"referencedDeclaration":12023,"src":"3774:11:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$returns$_t_string_memory_ptr_$","typeString":"function (address) pure returns (string memory)"}},"id":12037,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3774:17:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12034,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3768:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12033,"name":"bytes","nodeType":"ElementaryTypeName","src":"3768:5:56","typeDescriptions":{}}},"id":12038,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3768:24:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3746:46:56"},{"assignments":[12041],"declarations":[{"constant":false,"id":12041,"mutability":"mutable","name":"hashValue","nameLocation":"3885:9:56","nodeType":"VariableDeclaration","scope":12087,"src":"3877:17:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12040,"name":"uint256","nodeType":"ElementaryTypeName","src":"3877:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12042,"nodeType":"VariableDeclarationStatement","src":"3877:17:56"},{"AST":{"nativeSrc":"3929:78:56","nodeType":"YulBlock","src":"3929:78:56","statements":[{"nativeSrc":"3943:54:56","nodeType":"YulAssignment","src":"3943:54:56","value":{"arguments":[{"kind":"number","nativeSrc":"3960:2:56","nodeType":"YulLiteral","src":"3960:2:56","type":"","value":"96"},{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"3978:6:56","nodeType":"YulIdentifier","src":"3978:6:56"},{"kind":"number","nativeSrc":"3986:4:56","nodeType":"YulLiteral","src":"3986:4:56","type":"","value":"0x22"}],"functionName":{"name":"add","nativeSrc":"3974:3:56","nodeType":"YulIdentifier","src":"3974:3:56"},"nativeSrc":"3974:17:56","nodeType":"YulFunctionCall","src":"3974:17:56"},{"kind":"number","nativeSrc":"3993:2:56","nodeType":"YulLiteral","src":"3993:2:56","type":"","value":"40"}],"functionName":{"name":"keccak256","nativeSrc":"3964:9:56","nodeType":"YulIdentifier","src":"3964:9:56"},"nativeSrc":"3964:32:56","nodeType":"YulFunctionCall","src":"3964:32:56"}],"functionName":{"name":"shr","nativeSrc":"3956:3:56","nodeType":"YulIdentifier","src":"3956:3:56"},"nativeSrc":"3956:41:56","nodeType":"YulFunctionCall","src":"3956:41:56"},"variableNames":[{"name":"hashValue","nativeSrc":"3943:9:56","nodeType":"YulIdentifier","src":"3943:9:56"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":12032,"isOffset":false,"isSlot":false,"src":"3978:6:56","valueSize":1},{"declaration":12041,"isOffset":false,"isSlot":false,"src":"3943:9:56","valueSize":1}],"flags":["memory-safe"],"id":12043,"nodeType":"InlineAssembly","src":"3904:103:56"},{"body":{"id":12080,"nodeType":"Block","src":"4050:291:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12067,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12056,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12054,"name":"hashValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12041,"src":"4156:9:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":12055,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4168:3:56","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"4156:15:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"37","id":12057,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4174:1:56","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"4156:19:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":12066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":12061,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12032,"src":"4185:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12063,"indexExpression":{"id":12062,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12045,"src":"4192:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4185:9:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":12060,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4179:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":12059,"name":"uint8","nodeType":"ElementaryTypeName","src":"4179:5:56","typeDescriptions":{}}},"id":12064,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4179:16:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3936","id":12065,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4198:2:56","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"4179:21:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4156:44:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12075,"nodeType":"IfStatement","src":"4152:150:56","trueBody":{"id":12074,"nodeType":"Block","src":"4202:100:56","statements":[{"expression":{"id":12072,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12068,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12032,"src":"4270:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12070,"indexExpression":{"id":12069,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12045,"src":"4277:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4270:9:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"^=","rightHandSide":{"hexValue":"30783230","id":12071,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4283:4:56","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"src":"4270:17:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":12073,"nodeType":"ExpressionStatement","src":"4270:17:56"}]}},{"expression":{"id":12078,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12076,"name":"hashValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12041,"src":"4315:9:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":12077,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4329:1:56","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"4315:15:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12079,"nodeType":"ExpressionStatement","src":"4315:15:56"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12050,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12048,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12045,"src":"4038:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":12049,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4042:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4038:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12081,"initializationExpression":{"assignments":[12045],"declarations":[{"constant":false,"id":12045,"mutability":"mutable","name":"i","nameLocation":"4030:1:56","nodeType":"VariableDeclaration","scope":12081,"src":"4022:9:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12044,"name":"uint256","nodeType":"ElementaryTypeName","src":"4022:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12047,"initialValue":{"hexValue":"3431","id":12046,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4034:2:56","typeDescriptions":{"typeIdentifier":"t_rational_41_by_1","typeString":"int_const 41"},"value":"41"},"nodeType":"VariableDeclarationStatement","src":"4022:14:56"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":12052,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"4045:3:56","subExpression":{"id":12051,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12045,"src":"4047:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12053,"nodeType":"ExpressionStatement","src":"4045:3:56"},"nodeType":"ForStatement","src":"4017:324:56"},{"expression":{"arguments":[{"id":12084,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12032,"src":"4364:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":12083,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4357:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":12082,"name":"string","nodeType":"ElementaryTypeName","src":"4357:6:56","typeDescriptions":{}}},"id":12085,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4357:14:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":12030,"id":12086,"nodeType":"Return","src":"4350:21:56"}]},"documentation":{"id":12024,"nodeType":"StructuredDocumentation","src":"3485:165:56","text":" @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal\n representation, according to EIP-55."},"id":12088,"implemented":true,"kind":"function","modifiers":[],"name":"toChecksumHexString","nameLocation":"3664:19:56","nodeType":"FunctionDefinition","parameters":{"id":12027,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12026,"mutability":"mutable","name":"addr","nameLocation":"3692:4:56","nodeType":"VariableDeclaration","scope":12088,"src":"3684:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12025,"name":"address","nodeType":"ElementaryTypeName","src":"3684:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3683:14:56"},"returnParameters":{"id":12030,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12029,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12088,"src":"3721:13:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12028,"name":"string","nodeType":"ElementaryTypeName","src":"3721:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3720:15:56"},"scope":13238,"src":"3655:723:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12176,"nodeType":"Block","src":"4567:424:56","statements":[{"id":12175,"nodeType":"UncheckedBlock","src":"4577:408:56","statements":[{"assignments":[12097],"declarations":[{"constant":false,"id":12097,"mutability":"mutable","name":"buffer","nameLocation":"4614:6:56","nodeType":"VariableDeclaration","scope":12175,"src":"4601:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12096,"name":"bytes","nodeType":"ElementaryTypeName","src":"4601:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":12107,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":12100,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4633:1:56","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":12101,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12091,"src":"4637:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12102,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4643:6:56","memberName":"length","nodeType":"MemberAccess","src":"4637:12:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4633:16:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":12104,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4652:1:56","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"4633:20:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12099,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"4623:9:56","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":12098,"name":"bytes","nodeType":"ElementaryTypeName","src":"4627:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":12106,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4623:31:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"4601:53:56"},{"expression":{"id":12112,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12108,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12097,"src":"4668:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12110,"indexExpression":{"hexValue":"30","id":12109,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4675:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4668:9:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":12111,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4680:3:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"},"src":"4668:15:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":12113,"nodeType":"ExpressionStatement","src":"4668:15:56"},{"expression":{"id":12118,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12114,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12097,"src":"4697:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12116,"indexExpression":{"hexValue":"31","id":12115,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4704:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4697:9:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"78","id":12117,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4709:3:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_7521d1cadbcfa91eec65aa16715b94ffc1c9654ba57ea2ef1a2127bca1127a83","typeString":"literal_string \"x\""},"value":"x"},"src":"4697:15:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":12119,"nodeType":"ExpressionStatement","src":"4697:15:56"},{"body":{"id":12168,"nodeType":"Block","src":"4769:171:56","statements":[{"assignments":[12132],"declarations":[{"constant":false,"id":12132,"mutability":"mutable","name":"v","nameLocation":"4793:1:56","nodeType":"VariableDeclaration","scope":12168,"src":"4787:7:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":12131,"name":"uint8","nodeType":"ElementaryTypeName","src":"4787:5:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":12139,"initialValue":{"arguments":[{"baseExpression":{"id":12135,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12091,"src":"4803:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12137,"indexExpression":{"id":12136,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12121,"src":"4809:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4803:8:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":12134,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4797:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":12133,"name":"uint8","nodeType":"ElementaryTypeName","src":"4797:5:56","typeDescriptions":{}}},"id":12138,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4797:15:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"4787:25:56"},{"expression":{"id":12152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12140,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12097,"src":"4830:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12146,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12145,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":12141,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4837:1:56","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":12142,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12121,"src":"4841:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4837:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":12144,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4845:1:56","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"4837:9:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4830:17:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":12147,"name":"HEX_DIGITS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11774,"src":"4850:10:56","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":12151,"indexExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":12150,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12148,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12132,"src":"4861:1:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"34","id":12149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4866:1:56","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"4861:6:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4850:18:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"4830:38:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":12153,"nodeType":"ExpressionStatement","src":"4830:38:56"},{"expression":{"id":12166,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12154,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12097,"src":"4886:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12160,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12159,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12157,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":12155,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4893:1:56","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":12156,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12121,"src":"4897:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4893:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"33","id":12158,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4901:1:56","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"4893:9:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4886:17:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":12161,"name":"HEX_DIGITS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11774,"src":"4906:10:56","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":12165,"indexExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":12164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12162,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12132,"src":"4917:1:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":12163,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4921:3:56","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"4917:7:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4906:19:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"4886:39:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":12167,"nodeType":"ExpressionStatement","src":"4886:39:56"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12127,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12124,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12121,"src":"4746:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":12125,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12091,"src":"4750:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4756:6:56","memberName":"length","nodeType":"MemberAccess","src":"4750:12:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4746:16:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12169,"initializationExpression":{"assignments":[12121],"declarations":[{"constant":false,"id":12121,"mutability":"mutable","name":"i","nameLocation":"4739:1:56","nodeType":"VariableDeclaration","scope":12169,"src":"4731:9:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12120,"name":"uint256","nodeType":"ElementaryTypeName","src":"4731:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12123,"initialValue":{"hexValue":"30","id":12122,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4743:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"4731:13:56"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":12129,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"4764:3:56","subExpression":{"id":12128,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12121,"src":"4766:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12130,"nodeType":"ExpressionStatement","src":"4764:3:56"},"nodeType":"ForStatement","src":"4726:214:56"},{"expression":{"arguments":[{"id":12172,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12097,"src":"4967:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":12171,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4960:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":12170,"name":"string","nodeType":"ElementaryTypeName","src":"4960:6:56","typeDescriptions":{}}},"id":12173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4960:14:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":12095,"id":12174,"nodeType":"Return","src":"4953:21:56"}]}]},"documentation":{"id":12089,"nodeType":"StructuredDocumentation","src":"4384:99:56","text":" @dev Converts a `bytes` buffer to its ASCII `string` hexadecimal representation."},"id":12177,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"4497:11:56","nodeType":"FunctionDefinition","parameters":{"id":12092,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12091,"mutability":"mutable","name":"input","nameLocation":"4522:5:56","nodeType":"VariableDeclaration","scope":12177,"src":"4509:18:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12090,"name":"bytes","nodeType":"ElementaryTypeName","src":"4509:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4508:20:56"},"returnParameters":{"id":12095,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12094,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12177,"src":"4552:13:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12093,"name":"string","nodeType":"ElementaryTypeName","src":"4552:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4551:15:56"},"scope":13238,"src":"4488:503:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12199,"nodeType":"Block","src":"5146:55:56","statements":[{"expression":{"arguments":[{"arguments":[{"id":12191,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12180,"src":"5181:1:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12190,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5175:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12189,"name":"bytes","nodeType":"ElementaryTypeName","src":"5175:5:56","typeDescriptions":{}}},"id":12192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5175:8:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"arguments":[{"id":12195,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12182,"src":"5191:1:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12194,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5185:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12193,"name":"bytes","nodeType":"ElementaryTypeName","src":"5185:5:56","typeDescriptions":{}}},"id":12196,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5185:8:56","tryCall":false,"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"}],"expression":{"id":12187,"name":"Bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10697,"src":"5163:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Bytes_$10697_$","typeString":"type(library Bytes)"}},"id":12188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5169:5:56","memberName":"equal","nodeType":"MemberAccess","referencedDeclaration":10347,"src":"5163:11:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (bytes memory,bytes memory) pure returns (bool)"}},"id":12197,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5163:31:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":12186,"id":12198,"nodeType":"Return","src":"5156:38:56"}]},"documentation":{"id":12178,"nodeType":"StructuredDocumentation","src":"4997:66:56","text":" @dev Returns true if the two strings are equal."},"id":12200,"implemented":true,"kind":"function","modifiers":[],"name":"equal","nameLocation":"5077:5:56","nodeType":"FunctionDefinition","parameters":{"id":12183,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12180,"mutability":"mutable","name":"a","nameLocation":"5097:1:56","nodeType":"VariableDeclaration","scope":12200,"src":"5083:15:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12179,"name":"string","nodeType":"ElementaryTypeName","src":"5083:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":12182,"mutability":"mutable","name":"b","nameLocation":"5114:1:56","nodeType":"VariableDeclaration","scope":12200,"src":"5100:15:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12181,"name":"string","nodeType":"ElementaryTypeName","src":"5100:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5082:34:56"},"returnParameters":{"id":12186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12185,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12200,"src":"5140:4:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12184,"name":"bool","nodeType":"ElementaryTypeName","src":"5140:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5139:6:56"},"scope":13238,"src":"5068:133:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12218,"nodeType":"Block","src":"5498:64:56","statements":[{"expression":{"arguments":[{"id":12209,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12203,"src":"5525:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":12210,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5532:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":12213,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12203,"src":"5541:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12212,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5535:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12211,"name":"bytes","nodeType":"ElementaryTypeName","src":"5535:5:56","typeDescriptions":{}}},"id":12214,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5535:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5548:6:56","memberName":"length","nodeType":"MemberAccess","src":"5535:19:56","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":12208,"name":"parseUint","nodeType":"Identifier","overloadedDeclarations":[12219,12250],"referencedDeclaration":12250,"src":"5515:9:56","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":12216,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5515:40:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":12207,"id":12217,"nodeType":"Return","src":"5508:47:56"}]},"documentation":{"id":12201,"nodeType":"StructuredDocumentation","src":"5207:214:56","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":12219,"implemented":true,"kind":"function","modifiers":[],"name":"parseUint","nameLocation":"5435:9:56","nodeType":"FunctionDefinition","parameters":{"id":12204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12203,"mutability":"mutable","name":"input","nameLocation":"5459:5:56","nodeType":"VariableDeclaration","scope":12219,"src":"5445:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12202,"name":"string","nodeType":"ElementaryTypeName","src":"5445:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5444:21:56"},"returnParameters":{"id":12207,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12206,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12219,"src":"5489:7:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12205,"name":"uint256","nodeType":"ElementaryTypeName","src":"5489:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5488:9:56"},"scope":13238,"src":"5426:136:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12249,"nodeType":"Block","src":"5967:153:56","statements":[{"assignments":[12232,12234],"declarations":[{"constant":false,"id":12232,"mutability":"mutable","name":"success","nameLocation":"5983:7:56","nodeType":"VariableDeclaration","scope":12249,"src":"5978:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12231,"name":"bool","nodeType":"ElementaryTypeName","src":"5978:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12234,"mutability":"mutable","name":"value","nameLocation":"6000:5:56","nodeType":"VariableDeclaration","scope":12249,"src":"5992:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12233,"name":"uint256","nodeType":"ElementaryTypeName","src":"5992:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12240,"initialValue":{"arguments":[{"id":12236,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12222,"src":"6022:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":12237,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12224,"src":"6029:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12238,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12226,"src":"6036:3:56","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":12235,"name":"tryParseUint","nodeType":"Identifier","overloadedDeclarations":[12271,12308],"referencedDeclaration":12308,"src":"6009:12:56","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":12239,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6009:31:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"5977:63:56"},{"condition":{"id":12242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6054:8:56","subExpression":{"id":12241,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12232,"src":"6055:7:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12246,"nodeType":"IfStatement","src":"6050:41:56","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":12243,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11823,"src":"6071:18:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":12244,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6071:20:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":12245,"nodeType":"RevertStatement","src":"6064:27:56"}},{"expression":{"id":12247,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12234,"src":"6108:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":12230,"id":12248,"nodeType":"Return","src":"6101:12:56"}]},"documentation":{"id":12220,"nodeType":"StructuredDocumentation","src":"5568:294:56","text":" @dev Variant of {parseUint-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 into an `uint256` type"},"id":12250,"implemented":true,"kind":"function","modifiers":[],"name":"parseUint","nameLocation":"5876:9:56","nodeType":"FunctionDefinition","parameters":{"id":12227,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12222,"mutability":"mutable","name":"input","nameLocation":"5900:5:56","nodeType":"VariableDeclaration","scope":12250,"src":"5886:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12221,"name":"string","nodeType":"ElementaryTypeName","src":"5886:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":12224,"mutability":"mutable","name":"begin","nameLocation":"5915:5:56","nodeType":"VariableDeclaration","scope":12250,"src":"5907:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12223,"name":"uint256","nodeType":"ElementaryTypeName","src":"5907:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12226,"mutability":"mutable","name":"end","nameLocation":"5930:3:56","nodeType":"VariableDeclaration","scope":12250,"src":"5922:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12225,"name":"uint256","nodeType":"ElementaryTypeName","src":"5922:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5885:49:56"},"returnParameters":{"id":12230,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12229,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12250,"src":"5958:7:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12228,"name":"uint256","nodeType":"ElementaryTypeName","src":"5958:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5957:9:56"},"scope":13238,"src":"5867:253:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12270,"nodeType":"Block","src":"6441:83:56","statements":[{"expression":{"arguments":[{"id":12261,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12253,"src":"6487:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":12262,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6494:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":12265,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12253,"src":"6503:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12264,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6497:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12263,"name":"bytes","nodeType":"ElementaryTypeName","src":"6497:5:56","typeDescriptions":{}}},"id":12266,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6497:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6510:6:56","memberName":"length","nodeType":"MemberAccess","src":"6497:19:56","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":12260,"name":"_tryParseUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12378,"src":"6458:28:56","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":12268,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6458:59:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":12259,"id":12269,"nodeType":"Return","src":"6451:66:56"}]},"documentation":{"id":12251,"nodeType":"StructuredDocumentation","src":"6126:215:56","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":12271,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseUint","nameLocation":"6355:12:56","nodeType":"FunctionDefinition","parameters":{"id":12254,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12253,"mutability":"mutable","name":"input","nameLocation":"6382:5:56","nodeType":"VariableDeclaration","scope":12271,"src":"6368:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12252,"name":"string","nodeType":"ElementaryTypeName","src":"6368:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6367:21:56"},"returnParameters":{"id":12259,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12256,"mutability":"mutable","name":"success","nameLocation":"6417:7:56","nodeType":"VariableDeclaration","scope":12271,"src":"6412:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12255,"name":"bool","nodeType":"ElementaryTypeName","src":"6412:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12258,"mutability":"mutable","name":"value","nameLocation":"6434:5:56","nodeType":"VariableDeclaration","scope":12271,"src":"6426:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12257,"name":"uint256","nodeType":"ElementaryTypeName","src":"6426:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6411:29:56"},"scope":13238,"src":"6346:178:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12307,"nodeType":"Block","src":"6926:144:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12285,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12278,"src":"6940:3:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":12288,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12274,"src":"6952:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12287,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6946:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12286,"name":"bytes","nodeType":"ElementaryTypeName","src":"6946:5:56","typeDescriptions":{}}},"id":12289,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6946:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6959:6:56","memberName":"length","nodeType":"MemberAccess","src":"6946:19:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6940:25:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12292,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12276,"src":"6969:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":12293,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12278,"src":"6977:3:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6969:11:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6940:40:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12300,"nodeType":"IfStatement","src":"6936:63:56","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":12296,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6990:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":12297,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6997:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":12298,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6989:10:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":12284,"id":12299,"nodeType":"Return","src":"6982:17:56"}},{"expression":{"arguments":[{"id":12302,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12274,"src":"7045:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":12303,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12276,"src":"7052:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12304,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12278,"src":"7059:3:56","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":12301,"name":"_tryParseUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12378,"src":"7016:28:56","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":12305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7016:47:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":12284,"id":12306,"nodeType":"Return","src":"7009:54:56"}]},"documentation":{"id":12272,"nodeType":"StructuredDocumentation","src":"6530:238:56","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":12308,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseUint","nameLocation":"6782:12:56","nodeType":"FunctionDefinition","parameters":{"id":12279,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12274,"mutability":"mutable","name":"input","nameLocation":"6818:5:56","nodeType":"VariableDeclaration","scope":12308,"src":"6804:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12273,"name":"string","nodeType":"ElementaryTypeName","src":"6804:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":12276,"mutability":"mutable","name":"begin","nameLocation":"6841:5:56","nodeType":"VariableDeclaration","scope":12308,"src":"6833:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12275,"name":"uint256","nodeType":"ElementaryTypeName","src":"6833:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12278,"mutability":"mutable","name":"end","nameLocation":"6864:3:56","nodeType":"VariableDeclaration","scope":12308,"src":"6856:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12277,"name":"uint256","nodeType":"ElementaryTypeName","src":"6856:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6794:79:56"},"returnParameters":{"id":12284,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12281,"mutability":"mutable","name":"success","nameLocation":"6902:7:56","nodeType":"VariableDeclaration","scope":12308,"src":"6897:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12280,"name":"bool","nodeType":"ElementaryTypeName","src":"6897:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12283,"mutability":"mutable","name":"value","nameLocation":"6919:5:56","nodeType":"VariableDeclaration","scope":12308,"src":"6911:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12282,"name":"uint256","nodeType":"ElementaryTypeName","src":"6911:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6896:29:56"},"scope":13238,"src":"6773:297:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12377,"nodeType":"Block","src":"7473:347:56","statements":[{"assignments":[12323],"declarations":[{"constant":false,"id":12323,"mutability":"mutable","name":"buffer","nameLocation":"7496:6:56","nodeType":"VariableDeclaration","scope":12377,"src":"7483:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12322,"name":"bytes","nodeType":"ElementaryTypeName","src":"7483:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":12328,"initialValue":{"arguments":[{"id":12326,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12311,"src":"7511:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12325,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7505:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12324,"name":"bytes","nodeType":"ElementaryTypeName","src":"7505:5:56","typeDescriptions":{}}},"id":12327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7505:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"7483:34:56"},{"assignments":[12330],"declarations":[{"constant":false,"id":12330,"mutability":"mutable","name":"result","nameLocation":"7536:6:56","nodeType":"VariableDeclaration","scope":12377,"src":"7528:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12329,"name":"uint256","nodeType":"ElementaryTypeName","src":"7528:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12332,"initialValue":{"hexValue":"30","id":12331,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7545:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"7528:18:56"},{"body":{"id":12371,"nodeType":"Block","src":"7594:189:56","statements":[{"assignments":[12344],"declarations":[{"constant":false,"id":12344,"mutability":"mutable","name":"chr","nameLocation":"7614:3:56","nodeType":"VariableDeclaration","scope":12371,"src":"7608:9:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":12343,"name":"uint8","nodeType":"ElementaryTypeName","src":"7608:5:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":12354,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":12349,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12323,"src":"7663:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":12350,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12334,"src":"7671:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12348,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13237,"src":"7640:22:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":12351,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7640:33:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":12347,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7633:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":12346,"name":"bytes1","nodeType":"ElementaryTypeName","src":"7633:6:56","typeDescriptions":{}}},"id":12352,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7633:41:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":12345,"name":"_tryParseChr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13058,"src":"7620:12:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes1_$returns$_t_uint8_$","typeString":"function (bytes1) pure returns (uint8)"}},"id":12353,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7620:55:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"7608:67:56"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":12357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12355,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12344,"src":"7693:3:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"39","id":12356,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7699:1:56","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"src":"7693:7:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12362,"nodeType":"IfStatement","src":"7689:30:56","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":12358,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7710:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":12359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7717:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":12360,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"7709:10:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":12321,"id":12361,"nodeType":"Return","src":"7702:17:56"}},{"expression":{"id":12365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12363,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12330,"src":"7733:6:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"hexValue":"3130","id":12364,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7743:2:56","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"7733:12:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12366,"nodeType":"ExpressionStatement","src":"7733:12:56"},{"expression":{"id":12369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12367,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12330,"src":"7759:6:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":12368,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12344,"src":"7769:3:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"7759:13:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12370,"nodeType":"ExpressionStatement","src":"7759:13:56"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12337,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12334,"src":"7580:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":12338,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12315,"src":"7584:3:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7580:7:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12372,"initializationExpression":{"assignments":[12334],"declarations":[{"constant":false,"id":12334,"mutability":"mutable","name":"i","nameLocation":"7569:1:56","nodeType":"VariableDeclaration","scope":12372,"src":"7561:9:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12333,"name":"uint256","nodeType":"ElementaryTypeName","src":"7561:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12336,"initialValue":{"id":12335,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12313,"src":"7573:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7561:17:56"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":12341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"7589:3:56","subExpression":{"id":12340,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12334,"src":"7591:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12342,"nodeType":"ExpressionStatement","src":"7589:3:56"},"nodeType":"ForStatement","src":"7556:227:56"},{"expression":{"components":[{"hexValue":"74727565","id":12373,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7800:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":12374,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12330,"src":"7806:6:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12375,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7799:14:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":12321,"id":12376,"nodeType":"Return","src":"7792:21:56"}]},"documentation":{"id":12309,"nodeType":"StructuredDocumentation","src":"7076:224:56","text":" @dev Implementation of {tryParseUint-string-uint256-uint256} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":12378,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseUintUncheckedBounds","nameLocation":"7314:28:56","nodeType":"FunctionDefinition","parameters":{"id":12316,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12311,"mutability":"mutable","name":"input","nameLocation":"7366:5:56","nodeType":"VariableDeclaration","scope":12378,"src":"7352:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12310,"name":"string","nodeType":"ElementaryTypeName","src":"7352:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":12313,"mutability":"mutable","name":"begin","nameLocation":"7389:5:56","nodeType":"VariableDeclaration","scope":12378,"src":"7381:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12312,"name":"uint256","nodeType":"ElementaryTypeName","src":"7381:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12315,"mutability":"mutable","name":"end","nameLocation":"7412:3:56","nodeType":"VariableDeclaration","scope":12378,"src":"7404:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12314,"name":"uint256","nodeType":"ElementaryTypeName","src":"7404:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7342:79:56"},"returnParameters":{"id":12321,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12318,"mutability":"mutable","name":"success","nameLocation":"7449:7:56","nodeType":"VariableDeclaration","scope":12378,"src":"7444:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12317,"name":"bool","nodeType":"ElementaryTypeName","src":"7444:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12320,"mutability":"mutable","name":"value","nameLocation":"7466:5:56","nodeType":"VariableDeclaration","scope":12378,"src":"7458:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12319,"name":"uint256","nodeType":"ElementaryTypeName","src":"7458:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7443:29:56"},"scope":13238,"src":"7305:515:56","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":12396,"nodeType":"Block","src":"8117:63:56","statements":[{"expression":{"arguments":[{"id":12387,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12381,"src":"8143:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":12388,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8150:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":12391,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12381,"src":"8159:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12390,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8153:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12389,"name":"bytes","nodeType":"ElementaryTypeName","src":"8153:5:56","typeDescriptions":{}}},"id":12392,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8153:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8166:6:56","memberName":"length","nodeType":"MemberAccess","src":"8153:19:56","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":12386,"name":"parseInt","nodeType":"Identifier","overloadedDeclarations":[12397,12428],"referencedDeclaration":12428,"src":"8134:8:56","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":12394,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8134:39:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":12385,"id":12395,"nodeType":"Return","src":"8127:46:56"}]},"documentation":{"id":12379,"nodeType":"StructuredDocumentation","src":"7826:216:56","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":12397,"implemented":true,"kind":"function","modifiers":[],"name":"parseInt","nameLocation":"8056:8:56","nodeType":"FunctionDefinition","parameters":{"id":12382,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12381,"mutability":"mutable","name":"input","nameLocation":"8079:5:56","nodeType":"VariableDeclaration","scope":12397,"src":"8065:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12380,"name":"string","nodeType":"ElementaryTypeName","src":"8065:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8064:21:56"},"returnParameters":{"id":12385,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12384,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12397,"src":"8109:6:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12383,"name":"int256","nodeType":"ElementaryTypeName","src":"8109:6:56","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"8108:8:56"},"scope":13238,"src":"8047:133:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12427,"nodeType":"Block","src":"8585:151:56","statements":[{"assignments":[12410,12412],"declarations":[{"constant":false,"id":12410,"mutability":"mutable","name":"success","nameLocation":"8601:7:56","nodeType":"VariableDeclaration","scope":12427,"src":"8596:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12409,"name":"bool","nodeType":"ElementaryTypeName","src":"8596:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12412,"mutability":"mutable","name":"value","nameLocation":"8617:5:56","nodeType":"VariableDeclaration","scope":12427,"src":"8610:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12411,"name":"int256","nodeType":"ElementaryTypeName","src":"8610:6:56","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":12418,"initialValue":{"arguments":[{"id":12414,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12400,"src":"8638:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":12415,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12402,"src":"8645:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12416,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12404,"src":"8652:3:56","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":12413,"name":"tryParseInt","nodeType":"Identifier","overloadedDeclarations":[12449,12491],"referencedDeclaration":12491,"src":"8626:11:56","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":12417,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8626:30:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"nodeType":"VariableDeclarationStatement","src":"8595:61:56"},{"condition":{"id":12420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"8670:8:56","subExpression":{"id":12419,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12410,"src":"8671:7:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12424,"nodeType":"IfStatement","src":"8666:41:56","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":12421,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11823,"src":"8687:18:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":12422,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8687:20:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":12423,"nodeType":"RevertStatement","src":"8680:27:56"}},{"expression":{"id":12425,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12412,"src":"8724:5:56","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":12408,"id":12426,"nodeType":"Return","src":"8717:12:56"}]},"documentation":{"id":12398,"nodeType":"StructuredDocumentation","src":"8186:296:56","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":12428,"implemented":true,"kind":"function","modifiers":[],"name":"parseInt","nameLocation":"8496:8:56","nodeType":"FunctionDefinition","parameters":{"id":12405,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12400,"mutability":"mutable","name":"input","nameLocation":"8519:5:56","nodeType":"VariableDeclaration","scope":12428,"src":"8505:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12399,"name":"string","nodeType":"ElementaryTypeName","src":"8505:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":12402,"mutability":"mutable","name":"begin","nameLocation":"8534:5:56","nodeType":"VariableDeclaration","scope":12428,"src":"8526:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12401,"name":"uint256","nodeType":"ElementaryTypeName","src":"8526:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12404,"mutability":"mutable","name":"end","nameLocation":"8549:3:56","nodeType":"VariableDeclaration","scope":12428,"src":"8541:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12403,"name":"uint256","nodeType":"ElementaryTypeName","src":"8541:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8504:49:56"},"returnParameters":{"id":12408,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12407,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12428,"src":"8577:6:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12406,"name":"int256","nodeType":"ElementaryTypeName","src":"8577:6:56","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"8576:8:56"},"scope":13238,"src":"8487:249:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12448,"nodeType":"Block","src":"9127:82:56","statements":[{"expression":{"arguments":[{"id":12439,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12431,"src":"9172:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":12440,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9179:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":12443,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12431,"src":"9188:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12442,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9182:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12441,"name":"bytes","nodeType":"ElementaryTypeName","src":"9182:5:56","typeDescriptions":{}}},"id":12444,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9182:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9195:6:56","memberName":"length","nodeType":"MemberAccess","src":"9182:19:56","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":12438,"name":"_tryParseIntUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12612,"src":"9144:27:56","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":12446,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9144:58:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":12437,"id":12447,"nodeType":"Return","src":"9137:65:56"}]},"documentation":{"id":12429,"nodeType":"StructuredDocumentation","src":"8742:287:56","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":12449,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseInt","nameLocation":"9043:11:56","nodeType":"FunctionDefinition","parameters":{"id":12432,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12431,"mutability":"mutable","name":"input","nameLocation":"9069:5:56","nodeType":"VariableDeclaration","scope":12449,"src":"9055:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12430,"name":"string","nodeType":"ElementaryTypeName","src":"9055:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"9054:21:56"},"returnParameters":{"id":12437,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12434,"mutability":"mutable","name":"success","nameLocation":"9104:7:56","nodeType":"VariableDeclaration","scope":12449,"src":"9099:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12433,"name":"bool","nodeType":"ElementaryTypeName","src":"9099:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12436,"mutability":"mutable","name":"value","nameLocation":"9120:5:56","nodeType":"VariableDeclaration","scope":12449,"src":"9113:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12435,"name":"int256","nodeType":"ElementaryTypeName","src":"9113:6:56","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9098:28:56"},"scope":13238,"src":"9034:175:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"constant":true,"id":12454,"mutability":"constant","name":"ABS_MIN_INT256","nameLocation":"9240:14:56","nodeType":"VariableDeclaration","scope":13238,"src":"9215:50:56","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12450,"name":"uint256","nodeType":"ElementaryTypeName","src":"9215:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1","typeString":"int_const 5789...(69 digits omitted)...9968"},"id":12453,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":12451,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9257:1:56","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"323535","id":12452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9262:3:56","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"9257:8:56","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1","typeString":"int_const 5789...(69 digits omitted)...9968"}},"visibility":"private"},{"body":{"id":12490,"nodeType":"Block","src":"9731:143:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12468,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12461,"src":"9745:3:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":12471,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12457,"src":"9757:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12470,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9751:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12469,"name":"bytes","nodeType":"ElementaryTypeName","src":"9751:5:56","typeDescriptions":{}}},"id":12472,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9751:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9764:6:56","memberName":"length","nodeType":"MemberAccess","src":"9751:19:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9745:25:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12477,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12475,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12459,"src":"9774:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":12476,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12461,"src":"9782:3:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9774:11:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9745:40:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12483,"nodeType":"IfStatement","src":"9741:63:56","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":12479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9795:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":12480,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9802:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":12481,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"9794:10:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":12467,"id":12482,"nodeType":"Return","src":"9787:17:56"}},{"expression":{"arguments":[{"id":12485,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12457,"src":"9849:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":12486,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12459,"src":"9856:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12487,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12461,"src":"9863:3:56","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":12484,"name":"_tryParseIntUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12612,"src":"9821:27:56","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":12488,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9821:46:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":12467,"id":12489,"nodeType":"Return","src":"9814:53:56"}]},"documentation":{"id":12455,"nodeType":"StructuredDocumentation","src":"9272:303:56","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":12491,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseInt","nameLocation":"9589:11:56","nodeType":"FunctionDefinition","parameters":{"id":12462,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12457,"mutability":"mutable","name":"input","nameLocation":"9624:5:56","nodeType":"VariableDeclaration","scope":12491,"src":"9610:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12456,"name":"string","nodeType":"ElementaryTypeName","src":"9610:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":12459,"mutability":"mutable","name":"begin","nameLocation":"9647:5:56","nodeType":"VariableDeclaration","scope":12491,"src":"9639:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12458,"name":"uint256","nodeType":"ElementaryTypeName","src":"9639:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12461,"mutability":"mutable","name":"end","nameLocation":"9670:3:56","nodeType":"VariableDeclaration","scope":12491,"src":"9662:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12460,"name":"uint256","nodeType":"ElementaryTypeName","src":"9662:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9600:79:56"},"returnParameters":{"id":12467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12464,"mutability":"mutable","name":"success","nameLocation":"9708:7:56","nodeType":"VariableDeclaration","scope":12491,"src":"9703:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12463,"name":"bool","nodeType":"ElementaryTypeName","src":"9703:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12466,"mutability":"mutable","name":"value","nameLocation":"9724:5:56","nodeType":"VariableDeclaration","scope":12491,"src":"9717:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12465,"name":"int256","nodeType":"ElementaryTypeName","src":"9717:6:56","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9702:28:56"},"scope":13238,"src":"9580:294:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12611,"nodeType":"Block","src":"10274:812:56","statements":[{"assignments":[12506],"declarations":[{"constant":false,"id":12506,"mutability":"mutable","name":"buffer","nameLocation":"10297:6:56","nodeType":"VariableDeclaration","scope":12611,"src":"10284:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12505,"name":"bytes","nodeType":"ElementaryTypeName","src":"10284:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":12511,"initialValue":{"arguments":[{"id":12509,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12494,"src":"10312:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12508,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10306:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12507,"name":"bytes","nodeType":"ElementaryTypeName","src":"10306:5:56","typeDescriptions":{}}},"id":12510,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10306:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"10284:34:56"},{"assignments":[12513],"declarations":[{"constant":false,"id":12513,"mutability":"mutable","name":"sign","nameLocation":"10382:4:56","nodeType":"VariableDeclaration","scope":12611,"src":"10375:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":12512,"name":"bytes1","nodeType":"ElementaryTypeName","src":"10375:6:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":12529,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12516,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12514,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12496,"src":"10389:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":12515,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12498,"src":"10398:3:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10389:12:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"arguments":[{"id":12524,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12506,"src":"10446:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":12525,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12496,"src":"10454:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12523,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13237,"src":"10423:22:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":12526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10423:37:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":12522,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10416:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":12521,"name":"bytes1","nodeType":"ElementaryTypeName","src":"10416:6:56","typeDescriptions":{}}},"id":12527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10416:45:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":12528,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"10389:72:56","trueExpression":{"arguments":[{"hexValue":"30","id":12519,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10411:1:56","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":12518,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10404:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":12517,"name":"bytes1","nodeType":"ElementaryTypeName","src":"10404:6:56","typeDescriptions":{}}},"id":12520,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10404:9:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"10375:86:56"},{"assignments":[12531],"declarations":[{"constant":false,"id":12531,"mutability":"mutable","name":"positiveSign","nameLocation":"10547:12:56","nodeType":"VariableDeclaration","scope":12611,"src":"10542:17:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12530,"name":"bool","nodeType":"ElementaryTypeName","src":"10542:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":12538,"initialValue":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":12537,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12532,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12513,"src":"10562:4:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"2b","id":12535,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10577:3:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_728b8dbbe730d9acd55e30e768e6a28a04bea0c61b88108287c2c87d79c98bb8","typeString":"literal_string \"+\""},"value":"+"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_728b8dbbe730d9acd55e30e768e6a28a04bea0c61b88108287c2c87d79c98bb8","typeString":"literal_string \"+\""}],"id":12534,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10570:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":12533,"name":"bytes1","nodeType":"ElementaryTypeName","src":"10570:6:56","typeDescriptions":{}}},"id":12536,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10570:11:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"10562:19:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"10542:39:56"},{"assignments":[12540],"declarations":[{"constant":false,"id":12540,"mutability":"mutable","name":"negativeSign","nameLocation":"10596:12:56","nodeType":"VariableDeclaration","scope":12611,"src":"10591:17:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12539,"name":"bool","nodeType":"ElementaryTypeName","src":"10591:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":12547,"initialValue":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":12546,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12541,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12513,"src":"10611:4:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"2d","id":12544,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10626:3:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""}],"id":12543,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10619:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":12542,"name":"bytes1","nodeType":"ElementaryTypeName","src":"10619:6:56","typeDescriptions":{}}},"id":12545,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10619:11:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"10611:19:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"10591:39:56"},{"assignments":[12549],"declarations":[{"constant":false,"id":12549,"mutability":"mutable","name":"offset","nameLocation":"10648:6:56","nodeType":"VariableDeclaration","scope":12611,"src":"10640:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12548,"name":"uint256","nodeType":"ElementaryTypeName","src":"10640:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12556,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12550,"name":"positiveSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12531,"src":"10658:12:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":12551,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12540,"src":"10674:12:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10658:28:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":12553,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10657:30:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12554,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10688:6:56","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"10657:37:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":12555,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10657:39:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10640:56:56"},{"assignments":[12558,12560],"declarations":[{"constant":false,"id":12558,"mutability":"mutable","name":"absSuccess","nameLocation":"10713:10:56","nodeType":"VariableDeclaration","scope":12611,"src":"10708:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12557,"name":"bool","nodeType":"ElementaryTypeName","src":"10708:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12560,"mutability":"mutable","name":"absValue","nameLocation":"10733:8:56","nodeType":"VariableDeclaration","scope":12611,"src":"10725:16:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12559,"name":"uint256","nodeType":"ElementaryTypeName","src":"10725:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12568,"initialValue":{"arguments":[{"id":12562,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12494,"src":"10758:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12565,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12563,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12496,"src":"10765:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":12564,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12549,"src":"10773:6:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10765:14:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12566,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12498,"src":"10781:3:56","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":12561,"name":"tryParseUint","nodeType":"Identifier","overloadedDeclarations":[12271,12308],"referencedDeclaration":12308,"src":"10745:12:56","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":12567,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10745:40:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"10707:78:56"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12573,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12569,"name":"absSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12558,"src":"10800:10:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12572,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12570,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12560,"src":"10814:8:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":12571,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12454,"src":"10825:14:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10814:25:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10800:39:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12595,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12589,"name":"absSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12558,"src":"10942:10:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":12590,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12540,"src":"10956:12:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10942:26:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12592,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12560,"src":"10972:8:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":12593,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12454,"src":"10984:14:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10972:26:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10942:56:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"components":[{"hexValue":"66616c7365","id":12605,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"11070:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":12606,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11077:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":12607,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"11069:10:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":12504,"id":12608,"nodeType":"Return","src":"11062:17:56"},"id":12609,"nodeType":"IfStatement","src":"10938:141:56","trueBody":{"id":12604,"nodeType":"Block","src":"11000:56:56","statements":[{"expression":{"components":[{"hexValue":"74727565","id":12596,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"11022:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"arguments":[{"id":12599,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11033:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12598,"name":"int256","nodeType":"ElementaryTypeName","src":"11033:6:56","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":12597,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11028:4:56","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":12600,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11028:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_int256","typeString":"type(int256)"}},"id":12601,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11041:3:56","memberName":"min","nodeType":"MemberAccess","src":"11028:16:56","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12602,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"11021:24:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":12504,"id":12603,"nodeType":"Return","src":"11014:31:56"}]}},"id":12610,"nodeType":"IfStatement","src":"10796:283:56","trueBody":{"id":12588,"nodeType":"Block","src":"10841:91:56","statements":[{"expression":{"components":[{"hexValue":"74727565","id":12574,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10863:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"condition":{"id":12575,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12540,"src":"10869:12:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":12583,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12560,"src":"10911:8:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12582,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10904:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12581,"name":"int256","nodeType":"ElementaryTypeName","src":"10904:6:56","typeDescriptions":{}}},"id":12584,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10904:16:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":12585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"10869:51:56","trueExpression":{"id":12580,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"10884:17:56","subExpression":{"arguments":[{"id":12578,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12560,"src":"10892:8:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12577,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10885:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12576,"name":"int256","nodeType":"ElementaryTypeName","src":"10885:6:56","typeDescriptions":{}}},"id":12579,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10885:16:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":12586,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10862:59:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":12504,"id":12587,"nodeType":"Return","src":"10855:66:56"}]}}]},"documentation":{"id":12492,"nodeType":"StructuredDocumentation","src":"9880:223:56","text":" @dev Implementation of {tryParseInt-string-uint256-uint256} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":12612,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseIntUncheckedBounds","nameLocation":"10117:27:56","nodeType":"FunctionDefinition","parameters":{"id":12499,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12494,"mutability":"mutable","name":"input","nameLocation":"10168:5:56","nodeType":"VariableDeclaration","scope":12612,"src":"10154:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12493,"name":"string","nodeType":"ElementaryTypeName","src":"10154:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":12496,"mutability":"mutable","name":"begin","nameLocation":"10191:5:56","nodeType":"VariableDeclaration","scope":12612,"src":"10183:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12495,"name":"uint256","nodeType":"ElementaryTypeName","src":"10183:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12498,"mutability":"mutable","name":"end","nameLocation":"10214:3:56","nodeType":"VariableDeclaration","scope":12612,"src":"10206:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12497,"name":"uint256","nodeType":"ElementaryTypeName","src":"10206:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10144:79:56"},"returnParameters":{"id":12504,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12501,"mutability":"mutable","name":"success","nameLocation":"10251:7:56","nodeType":"VariableDeclaration","scope":12612,"src":"10246:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12500,"name":"bool","nodeType":"ElementaryTypeName","src":"10246:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12503,"mutability":"mutable","name":"value","nameLocation":"10267:5:56","nodeType":"VariableDeclaration","scope":12612,"src":"10260:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12502,"name":"int256","nodeType":"ElementaryTypeName","src":"10260:6:56","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"10245:28:56"},"scope":13238,"src":"10108:978:56","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":12630,"nodeType":"Block","src":"11431:67:56","statements":[{"expression":{"arguments":[{"id":12621,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12615,"src":"11461:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":12622,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11468:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":12625,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12615,"src":"11477:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12624,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11471:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12623,"name":"bytes","nodeType":"ElementaryTypeName","src":"11471:5:56","typeDescriptions":{}}},"id":12626,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11471:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11484:6:56","memberName":"length","nodeType":"MemberAccess","src":"11471:19:56","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":12620,"name":"parseHexUint","nodeType":"Identifier","overloadedDeclarations":[12631,12662],"referencedDeclaration":12662,"src":"11448:12:56","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":12628,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11448:43:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":12619,"id":12629,"nodeType":"Return","src":"11441:50:56"}]},"documentation":{"id":12613,"nodeType":"StructuredDocumentation","src":"11092:259:56","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":12631,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexUint","nameLocation":"11365:12:56","nodeType":"FunctionDefinition","parameters":{"id":12616,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12615,"mutability":"mutable","name":"input","nameLocation":"11392:5:56","nodeType":"VariableDeclaration","scope":12631,"src":"11378:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12614,"name":"string","nodeType":"ElementaryTypeName","src":"11378:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"11377:21:56"},"returnParameters":{"id":12619,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12618,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12631,"src":"11422:7:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12617,"name":"uint256","nodeType":"ElementaryTypeName","src":"11422:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11421:9:56"},"scope":13238,"src":"11356:142:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12661,"nodeType":"Block","src":"11919:156:56","statements":[{"assignments":[12644,12646],"declarations":[{"constant":false,"id":12644,"mutability":"mutable","name":"success","nameLocation":"11935:7:56","nodeType":"VariableDeclaration","scope":12661,"src":"11930:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12643,"name":"bool","nodeType":"ElementaryTypeName","src":"11930:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12646,"mutability":"mutable","name":"value","nameLocation":"11952:5:56","nodeType":"VariableDeclaration","scope":12661,"src":"11944:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12645,"name":"uint256","nodeType":"ElementaryTypeName","src":"11944:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12652,"initialValue":{"arguments":[{"id":12648,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12634,"src":"11977:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":12649,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12636,"src":"11984:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12650,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12638,"src":"11991:3:56","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":12647,"name":"tryParseHexUint","nodeType":"Identifier","overloadedDeclarations":[12683,12720],"referencedDeclaration":12720,"src":"11961:15:56","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":12651,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11961:34:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"11929:66:56"},{"condition":{"id":12654,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"12009:8:56","subExpression":{"id":12653,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12644,"src":"12010:7:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12658,"nodeType":"IfStatement","src":"12005:41:56","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":12655,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11823,"src":"12026:18:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":12656,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12026:20:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":12657,"nodeType":"RevertStatement","src":"12019:27:56"}},{"expression":{"id":12659,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12646,"src":"12063:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":12642,"id":12660,"nodeType":"Return","src":"12056:12:56"}]},"documentation":{"id":12632,"nodeType":"StructuredDocumentation","src":"11504:307:56","text":" @dev Variant of {parseHexUint-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 `(0x)?[0-9a-fA-F]*`\n - The result must fit in an `uint256` type."},"id":12662,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexUint","nameLocation":"11825:12:56","nodeType":"FunctionDefinition","parameters":{"id":12639,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12634,"mutability":"mutable","name":"input","nameLocation":"11852:5:56","nodeType":"VariableDeclaration","scope":12662,"src":"11838:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12633,"name":"string","nodeType":"ElementaryTypeName","src":"11838:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":12636,"mutability":"mutable","name":"begin","nameLocation":"11867:5:56","nodeType":"VariableDeclaration","scope":12662,"src":"11859:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12635,"name":"uint256","nodeType":"ElementaryTypeName","src":"11859:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12638,"mutability":"mutable","name":"end","nameLocation":"11882:3:56","nodeType":"VariableDeclaration","scope":12662,"src":"11874:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12637,"name":"uint256","nodeType":"ElementaryTypeName","src":"11874:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11837:49:56"},"returnParameters":{"id":12642,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12641,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12662,"src":"11910:7:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12640,"name":"uint256","nodeType":"ElementaryTypeName","src":"11910:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11909:9:56"},"scope":13238,"src":"11816:259:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12682,"nodeType":"Block","src":"12402:86:56","statements":[{"expression":{"arguments":[{"id":12673,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12665,"src":"12451:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":12674,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12458:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":12677,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12665,"src":"12467:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12676,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12461:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12675,"name":"bytes","nodeType":"ElementaryTypeName","src":"12461:5:56","typeDescriptions":{}}},"id":12678,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12461:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12474:6:56","memberName":"length","nodeType":"MemberAccess","src":"12461:19:56","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":12672,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12823,"src":"12419:31:56","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":12680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12419:62:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":12671,"id":12681,"nodeType":"Return","src":"12412:69:56"}]},"documentation":{"id":12663,"nodeType":"StructuredDocumentation","src":"12081:218:56","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":12683,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseHexUint","nameLocation":"12313:15:56","nodeType":"FunctionDefinition","parameters":{"id":12666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12665,"mutability":"mutable","name":"input","nameLocation":"12343:5:56","nodeType":"VariableDeclaration","scope":12683,"src":"12329:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12664,"name":"string","nodeType":"ElementaryTypeName","src":"12329:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"12328:21:56"},"returnParameters":{"id":12671,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12668,"mutability":"mutable","name":"success","nameLocation":"12378:7:56","nodeType":"VariableDeclaration","scope":12683,"src":"12373:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12667,"name":"bool","nodeType":"ElementaryTypeName","src":"12373:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12670,"mutability":"mutable","name":"value","nameLocation":"12395:5:56","nodeType":"VariableDeclaration","scope":12683,"src":"12387:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12669,"name":"uint256","nodeType":"ElementaryTypeName","src":"12387:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12372:29:56"},"scope":13238,"src":"12304:184:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12719,"nodeType":"Block","src":"12896:147:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12697,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12690,"src":"12910:3:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":12700,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12686,"src":"12922:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12699,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12916:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12698,"name":"bytes","nodeType":"ElementaryTypeName","src":"12916:5:56","typeDescriptions":{}}},"id":12701,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12916:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12929:6:56","memberName":"length","nodeType":"MemberAccess","src":"12916:19:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12910:25:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12704,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12688,"src":"12939:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":12705,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12690,"src":"12947:3:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12939:11:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12910:40:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12712,"nodeType":"IfStatement","src":"12906:63:56","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":12708,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"12960:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":12709,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12967:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":12710,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"12959:10:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":12696,"id":12711,"nodeType":"Return","src":"12952:17:56"}},{"expression":{"arguments":[{"id":12714,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12686,"src":"13018:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":12715,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12688,"src":"13025:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12716,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12690,"src":"13032:3:56","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":12713,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12823,"src":"12986:31:56","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":12717,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12986:50:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":12696,"id":12718,"nodeType":"Return","src":"12979:57:56"}]},"documentation":{"id":12684,"nodeType":"StructuredDocumentation","src":"12494:241:56","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":12720,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseHexUint","nameLocation":"12749:15:56","nodeType":"FunctionDefinition","parameters":{"id":12691,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12686,"mutability":"mutable","name":"input","nameLocation":"12788:5:56","nodeType":"VariableDeclaration","scope":12720,"src":"12774:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12685,"name":"string","nodeType":"ElementaryTypeName","src":"12774:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":12688,"mutability":"mutable","name":"begin","nameLocation":"12811:5:56","nodeType":"VariableDeclaration","scope":12720,"src":"12803:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12687,"name":"uint256","nodeType":"ElementaryTypeName","src":"12803:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12690,"mutability":"mutable","name":"end","nameLocation":"12834:3:56","nodeType":"VariableDeclaration","scope":12720,"src":"12826:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12689,"name":"uint256","nodeType":"ElementaryTypeName","src":"12826:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12764:79:56"},"returnParameters":{"id":12696,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12693,"mutability":"mutable","name":"success","nameLocation":"12872:7:56","nodeType":"VariableDeclaration","scope":12720,"src":"12867:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12692,"name":"bool","nodeType":"ElementaryTypeName","src":"12867:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12695,"mutability":"mutable","name":"value","nameLocation":"12889:5:56","nodeType":"VariableDeclaration","scope":12720,"src":"12881:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12694,"name":"uint256","nodeType":"ElementaryTypeName","src":"12881:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12866:29:56"},"scope":13238,"src":"12740:303:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12822,"nodeType":"Block","src":"13452:881:56","statements":[{"assignments":[12735],"declarations":[{"constant":false,"id":12735,"mutability":"mutable","name":"buffer","nameLocation":"13475:6:56","nodeType":"VariableDeclaration","scope":12822,"src":"13462:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12734,"name":"bytes","nodeType":"ElementaryTypeName","src":"13462:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":12740,"initialValue":{"arguments":[{"id":12738,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12723,"src":"13490:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12737,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13484:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12736,"name":"bytes","nodeType":"ElementaryTypeName","src":"13484:5:56","typeDescriptions":{}}},"id":12739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13484:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"13462:34:56"},{"assignments":[12742],"declarations":[{"constant":false,"id":12742,"mutability":"mutable","name":"hasPrefix","nameLocation":"13549:9:56","nodeType":"VariableDeclaration","scope":12822,"src":"13544:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12741,"name":"bool","nodeType":"ElementaryTypeName","src":"13544:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":12762,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12747,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12743,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12727,"src":"13562:3:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12744,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12725,"src":"13568:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":12745,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13576:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"13568:9:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13562:15:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":12748,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13561:17:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":12760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":12752,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12735,"src":"13612:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":12753,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12725,"src":"13620:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12751,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13237,"src":"13589:22:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":12754,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13589:37:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":12750,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13582:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":12749,"name":"bytes2","nodeType":"ElementaryTypeName","src":"13582:6:56","typeDescriptions":{}}},"id":12755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13582:45:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"3078","id":12758,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13638:4:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""},"value":"0x"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""}],"id":12757,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13631:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":12756,"name":"bytes2","nodeType":"ElementaryTypeName","src":"13631:6:56","typeDescriptions":{}}},"id":12759,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13631:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"13582:61:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"13561:82:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"13544:99:56"},{"assignments":[12764],"declarations":[{"constant":false,"id":12764,"mutability":"mutable","name":"offset","nameLocation":"13732:6:56","nodeType":"VariableDeclaration","scope":12822,"src":"13724:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12763,"name":"uint256","nodeType":"ElementaryTypeName","src":"13724:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12770,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12769,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12765,"name":"hasPrefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12742,"src":"13741:9:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12766,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13751:6:56","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"13741:16:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":12767,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13741:18:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":12768,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13762:1:56","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"13741:22:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13724:39:56"},{"assignments":[12772],"declarations":[{"constant":false,"id":12772,"mutability":"mutable","name":"result","nameLocation":"13782:6:56","nodeType":"VariableDeclaration","scope":12822,"src":"13774:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12771,"name":"uint256","nodeType":"ElementaryTypeName","src":"13774:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12774,"initialValue":{"hexValue":"30","id":12773,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13791:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"13774:18:56"},{"body":{"id":12816,"nodeType":"Block","src":"13849:447:56","statements":[{"assignments":[12788],"declarations":[{"constant":false,"id":12788,"mutability":"mutable","name":"chr","nameLocation":"13869:3:56","nodeType":"VariableDeclaration","scope":12816,"src":"13863:9:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":12787,"name":"uint8","nodeType":"ElementaryTypeName","src":"13863:5:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":12798,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":12793,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12735,"src":"13918:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":12794,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12776,"src":"13926:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12792,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13237,"src":"13895:22:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":12795,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13895:33:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":12791,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13888:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":12790,"name":"bytes1","nodeType":"ElementaryTypeName","src":"13888:6:56","typeDescriptions":{}}},"id":12796,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13888:41:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":12789,"name":"_tryParseChr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13058,"src":"13875:12:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes1_$returns$_t_uint8_$","typeString":"function (bytes1) pure returns (uint8)"}},"id":12797,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13875:55:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"13863:67:56"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":12801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12799,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12788,"src":"13948:3:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3135","id":12800,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13954:2:56","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"15"},"src":"13948:8:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12806,"nodeType":"IfStatement","src":"13944:31:56","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":12802,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13966:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":12803,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13973:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":12804,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"13965:10:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":12733,"id":12805,"nodeType":"Return","src":"13958:17:56"}},{"expression":{"id":12809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12807,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12772,"src":"13989:6:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"hexValue":"3136","id":12808,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13999:2:56","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"13989:12:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12810,"nodeType":"ExpressionStatement","src":"13989:12:56"},{"id":12815,"nodeType":"UncheckedBlock","src":"14015:271:56","statements":[{"expression":{"id":12813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12811,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12772,"src":"14258:6:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":12812,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12788,"src":"14268:3:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"14258:13:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12814,"nodeType":"ExpressionStatement","src":"14258:13:56"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12781,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12776,"src":"13835:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":12782,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12727,"src":"13839:3:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13835:7:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12817,"initializationExpression":{"assignments":[12776],"declarations":[{"constant":false,"id":12776,"mutability":"mutable","name":"i","nameLocation":"13815:1:56","nodeType":"VariableDeclaration","scope":12817,"src":"13807:9:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12775,"name":"uint256","nodeType":"ElementaryTypeName","src":"13807:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12780,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12777,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12725,"src":"13819:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":12778,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12764,"src":"13827:6:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13819:14:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13807:26:56"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":12785,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"13844:3:56","subExpression":{"id":12784,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12776,"src":"13846:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12786,"nodeType":"ExpressionStatement","src":"13844:3:56"},"nodeType":"ForStatement","src":"13802:494:56"},{"expression":{"components":[{"hexValue":"74727565","id":12818,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"14313:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":12819,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12772,"src":"14319:6:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12820,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"14312:14:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":12733,"id":12821,"nodeType":"Return","src":"14305:21:56"}]},"documentation":{"id":12721,"nodeType":"StructuredDocumentation","src":"13049:227:56","text":" @dev Implementation of {tryParseHexUint-string-uint256-uint256} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":12823,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseHexUintUncheckedBounds","nameLocation":"13290:31:56","nodeType":"FunctionDefinition","parameters":{"id":12728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12723,"mutability":"mutable","name":"input","nameLocation":"13345:5:56","nodeType":"VariableDeclaration","scope":12823,"src":"13331:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12722,"name":"string","nodeType":"ElementaryTypeName","src":"13331:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":12725,"mutability":"mutable","name":"begin","nameLocation":"13368:5:56","nodeType":"VariableDeclaration","scope":12823,"src":"13360:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12724,"name":"uint256","nodeType":"ElementaryTypeName","src":"13360:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12727,"mutability":"mutable","name":"end","nameLocation":"13391:3:56","nodeType":"VariableDeclaration","scope":12823,"src":"13383:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12726,"name":"uint256","nodeType":"ElementaryTypeName","src":"13383:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13321:79:56"},"returnParameters":{"id":12733,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12730,"mutability":"mutable","name":"success","nameLocation":"13428:7:56","nodeType":"VariableDeclaration","scope":12823,"src":"13423:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12729,"name":"bool","nodeType":"ElementaryTypeName","src":"13423:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12732,"mutability":"mutable","name":"value","nameLocation":"13445:5:56","nodeType":"VariableDeclaration","scope":12823,"src":"13437:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12731,"name":"uint256","nodeType":"ElementaryTypeName","src":"13437:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13422:29:56"},"scope":13238,"src":"13281:1052:56","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":12841,"nodeType":"Block","src":"14631:67:56","statements":[{"expression":{"arguments":[{"id":12832,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12826,"src":"14661:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":12833,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14668:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":12836,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12826,"src":"14677:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12835,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14671:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12834,"name":"bytes","nodeType":"ElementaryTypeName","src":"14671:5:56","typeDescriptions":{}}},"id":12837,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14671:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12838,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14684:6:56","memberName":"length","nodeType":"MemberAccess","src":"14671:19:56","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":12831,"name":"parseAddress","nodeType":"Identifier","overloadedDeclarations":[12842,12873],"referencedDeclaration":12873,"src":"14648:12:56","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":12839,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14648:43:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":12830,"id":12840,"nodeType":"Return","src":"14641:50:56"}]},"documentation":{"id":12824,"nodeType":"StructuredDocumentation","src":"14339:212:56","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":12842,"implemented":true,"kind":"function","modifiers":[],"name":"parseAddress","nameLocation":"14565:12:56","nodeType":"FunctionDefinition","parameters":{"id":12827,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12826,"mutability":"mutable","name":"input","nameLocation":"14592:5:56","nodeType":"VariableDeclaration","scope":12842,"src":"14578:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12825,"name":"string","nodeType":"ElementaryTypeName","src":"14578:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"14577:21:56"},"returnParameters":{"id":12830,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12829,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12842,"src":"14622:7:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12828,"name":"address","nodeType":"ElementaryTypeName","src":"14622:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14621:9:56"},"scope":13238,"src":"14556:142:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12872,"nodeType":"Block","src":"15071:165:56","statements":[{"assignments":[12855,12857],"declarations":[{"constant":false,"id":12855,"mutability":"mutable","name":"success","nameLocation":"15087:7:56","nodeType":"VariableDeclaration","scope":12872,"src":"15082:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12854,"name":"bool","nodeType":"ElementaryTypeName","src":"15082:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12857,"mutability":"mutable","name":"value","nameLocation":"15104:5:56","nodeType":"VariableDeclaration","scope":12872,"src":"15096:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12856,"name":"address","nodeType":"ElementaryTypeName","src":"15096:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":12863,"initialValue":{"arguments":[{"id":12859,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12845,"src":"15129:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":12860,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12847,"src":"15136:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12861,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12849,"src":"15143:3:56","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":12858,"name":"tryParseAddress","nodeType":"Identifier","overloadedDeclarations":[12894,12998],"referencedDeclaration":12998,"src":"15113:15:56","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":12862,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15113:34:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"nodeType":"VariableDeclarationStatement","src":"15081:66:56"},{"condition":{"id":12865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"15161:8:56","subExpression":{"id":12864,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12855,"src":"15162:7:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12869,"nodeType":"IfStatement","src":"15157:50:56","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":12866,"name":"StringsInvalidAddressFormat","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11826,"src":"15178:27:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":12867,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15178:29:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":12868,"nodeType":"RevertStatement","src":"15171:36:56"}},{"expression":{"id":12870,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12857,"src":"15224:5:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":12853,"id":12871,"nodeType":"Return","src":"15217:12:56"}]},"documentation":{"id":12843,"nodeType":"StructuredDocumentation","src":"14704:259:56","text":" @dev Variant of {parseAddress-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 `(0x)?[0-9a-fA-F]{40}`"},"id":12873,"implemented":true,"kind":"function","modifiers":[],"name":"parseAddress","nameLocation":"14977:12:56","nodeType":"FunctionDefinition","parameters":{"id":12850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12845,"mutability":"mutable","name":"input","nameLocation":"15004:5:56","nodeType":"VariableDeclaration","scope":12873,"src":"14990:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12844,"name":"string","nodeType":"ElementaryTypeName","src":"14990:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":12847,"mutability":"mutable","name":"begin","nameLocation":"15019:5:56","nodeType":"VariableDeclaration","scope":12873,"src":"15011:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12846,"name":"uint256","nodeType":"ElementaryTypeName","src":"15011:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12849,"mutability":"mutable","name":"end","nameLocation":"15034:3:56","nodeType":"VariableDeclaration","scope":12873,"src":"15026:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12848,"name":"uint256","nodeType":"ElementaryTypeName","src":"15026:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14989:49:56"},"returnParameters":{"id":12853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12852,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12873,"src":"15062:7:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12851,"name":"address","nodeType":"ElementaryTypeName","src":"15062:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15061:9:56"},"scope":13238,"src":"14968:268:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12893,"nodeType":"Block","src":"15543:70:56","statements":[{"expression":{"arguments":[{"id":12884,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12876,"src":"15576:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":12885,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15583:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":12888,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12876,"src":"15592:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12887,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15586:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12886,"name":"bytes","nodeType":"ElementaryTypeName","src":"15586:5:56","typeDescriptions":{}}},"id":12889,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15586:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15599:6:56","memberName":"length","nodeType":"MemberAccess","src":"15586:19:56","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":12883,"name":"tryParseAddress","nodeType":"Identifier","overloadedDeclarations":[12894,12998],"referencedDeclaration":12998,"src":"15560:15:56","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":12891,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15560:46:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":12882,"id":12892,"nodeType":"Return","src":"15553:53:56"}]},"documentation":{"id":12874,"nodeType":"StructuredDocumentation","src":"15242:198:56","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-string} requirements."},"id":12894,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseAddress","nameLocation":"15454:15:56","nodeType":"FunctionDefinition","parameters":{"id":12877,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12876,"mutability":"mutable","name":"input","nameLocation":"15484:5:56","nodeType":"VariableDeclaration","scope":12894,"src":"15470:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12875,"name":"string","nodeType":"ElementaryTypeName","src":"15470:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"15469:21:56"},"returnParameters":{"id":12882,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12879,"mutability":"mutable","name":"success","nameLocation":"15519:7:56","nodeType":"VariableDeclaration","scope":12894,"src":"15514:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12878,"name":"bool","nodeType":"ElementaryTypeName","src":"15514:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12881,"mutability":"mutable","name":"value","nameLocation":"15536:5:56","nodeType":"VariableDeclaration","scope":12894,"src":"15528:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12880,"name":"address","nodeType":"ElementaryTypeName","src":"15528:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15513:29:56"},"scope":13238,"src":"15445:168:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12997,"nodeType":"Block","src":"16006:733:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12908,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12901,"src":"16020:3:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":12911,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12897,"src":"16032:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12910,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16026:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12909,"name":"bytes","nodeType":"ElementaryTypeName","src":"16026:5:56","typeDescriptions":{}}},"id":12912,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16026:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12913,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16039:6:56","memberName":"length","nodeType":"MemberAccess","src":"16026:19:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16020:25:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12915,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12899,"src":"16049:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":12916,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12901,"src":"16057:3:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16049:11:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16020:40:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12926,"nodeType":"IfStatement","src":"16016:72:56","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":12919,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"16070:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":12922,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16085:1:56","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":12921,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16077:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12920,"name":"address","nodeType":"ElementaryTypeName","src":"16077:7:56","typeDescriptions":{}}},"id":12923,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16077:10:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":12924,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"16069:19:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":12907,"id":12925,"nodeType":"Return","src":"16062:26:56"}},{"assignments":[12928],"declarations":[{"constant":false,"id":12928,"mutability":"mutable","name":"hasPrefix","nameLocation":"16104:9:56","nodeType":"VariableDeclaration","scope":12997,"src":"16099:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12927,"name":"bool","nodeType":"ElementaryTypeName","src":"16099:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":12951,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12929,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12901,"src":"16117:3:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12932,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12930,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12899,"src":"16123:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":12931,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16131:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"16123:9:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16117:15:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":12934,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"16116:17:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":12949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"arguments":[{"id":12940,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12897,"src":"16173:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":12939,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16167:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12938,"name":"bytes","nodeType":"ElementaryTypeName","src":"16167:5:56","typeDescriptions":{}}},"id":12941,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16167:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":12942,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12899,"src":"16181:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12937,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13237,"src":"16144:22:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":12943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16144:43:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":12936,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16137:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":12935,"name":"bytes2","nodeType":"ElementaryTypeName","src":"16137:6:56","typeDescriptions":{}}},"id":12944,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16137:51:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"3078","id":12947,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16199:4:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""},"value":"0x"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""}],"id":12946,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16192:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":12945,"name":"bytes2","nodeType":"ElementaryTypeName","src":"16192:6:56","typeDescriptions":{}}},"id":12948,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16192:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"16137:67:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16116:88:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"16099:105:56"},{"assignments":[12953],"declarations":[{"constant":false,"id":12953,"mutability":"mutable","name":"expectedLength","nameLocation":"16293:14:56","nodeType":"VariableDeclaration","scope":12997,"src":"16285:22:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12952,"name":"uint256","nodeType":"ElementaryTypeName","src":"16285:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12961,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12960,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3430","id":12954,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16310:2:56","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12955,"name":"hasPrefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12928,"src":"16315:9:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12956,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16325:6:56","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"16315:16:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":12957,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16315:18:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":12958,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16336:1:56","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"16315:22:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16310:27:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16285:52:56"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12966,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12962,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12901,"src":"16402:3:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12963,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12899,"src":"16408:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16402:11:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":12965,"name":"expectedLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12953,"src":"16417:14:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16402:29:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":12995,"nodeType":"Block","src":"16682:51:56","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":12988,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"16704:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":12991,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16719:1:56","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":12990,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16711:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12989,"name":"address","nodeType":"ElementaryTypeName","src":"16711:7:56","typeDescriptions":{}}},"id":12992,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16711:10:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":12993,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"16703:19:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":12907,"id":12994,"nodeType":"Return","src":"16696:26:56"}]},"id":12996,"nodeType":"IfStatement","src":"16398:335:56","trueBody":{"id":12987,"nodeType":"Block","src":"16433:243:56","statements":[{"assignments":[12968,12970],"declarations":[{"constant":false,"id":12968,"mutability":"mutable","name":"s","nameLocation":"16554:1:56","nodeType":"VariableDeclaration","scope":12987,"src":"16549:6:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12967,"name":"bool","nodeType":"ElementaryTypeName","src":"16549:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12970,"mutability":"mutable","name":"v","nameLocation":"16565:1:56","nodeType":"VariableDeclaration","scope":12987,"src":"16557:9:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12969,"name":"uint256","nodeType":"ElementaryTypeName","src":"16557:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12976,"initialValue":{"arguments":[{"id":12972,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12897,"src":"16602:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":12973,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12899,"src":"16609:5:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12974,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12901,"src":"16616:3:56","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":12971,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12823,"src":"16570:31:56","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":12975,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16570:50:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"16548:72:56"},{"expression":{"components":[{"id":12977,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12968,"src":"16642:1:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"arguments":[{"id":12982,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12970,"src":"16661:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12981,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16653:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":12980,"name":"uint160","nodeType":"ElementaryTypeName","src":"16653:7:56","typeDescriptions":{}}},"id":12983,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16653:10:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":12979,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16645:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12978,"name":"address","nodeType":"ElementaryTypeName","src":"16645:7:56","typeDescriptions":{}}},"id":12984,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16645:19:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":12985,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"16641:24:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":12907,"id":12986,"nodeType":"Return","src":"16634:31:56"}]}}]},"documentation":{"id":12895,"nodeType":"StructuredDocumentation","src":"15619:226:56","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-string-uint256-uint256} requirements."},"id":12998,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseAddress","nameLocation":"15859:15:56","nodeType":"FunctionDefinition","parameters":{"id":12902,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12897,"mutability":"mutable","name":"input","nameLocation":"15898:5:56","nodeType":"VariableDeclaration","scope":12998,"src":"15884:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":12896,"name":"string","nodeType":"ElementaryTypeName","src":"15884:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":12899,"mutability":"mutable","name":"begin","nameLocation":"15921:5:56","nodeType":"VariableDeclaration","scope":12998,"src":"15913:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12898,"name":"uint256","nodeType":"ElementaryTypeName","src":"15913:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12901,"mutability":"mutable","name":"end","nameLocation":"15944:3:56","nodeType":"VariableDeclaration","scope":12998,"src":"15936:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12900,"name":"uint256","nodeType":"ElementaryTypeName","src":"15936:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15874:79:56"},"returnParameters":{"id":12907,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12904,"mutability":"mutable","name":"success","nameLocation":"15982:7:56","nodeType":"VariableDeclaration","scope":12998,"src":"15977:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12903,"name":"bool","nodeType":"ElementaryTypeName","src":"15977:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12906,"mutability":"mutable","name":"value","nameLocation":"15999:5:56","nodeType":"VariableDeclaration","scope":12998,"src":"15991:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12905,"name":"address","nodeType":"ElementaryTypeName","src":"15991:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15976:29:56"},"scope":13238,"src":"15850:889:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13057,"nodeType":"Block","src":"16808:461:56","statements":[{"assignments":[13006],"declarations":[{"constant":false,"id":13006,"mutability":"mutable","name":"value","nameLocation":"16824:5:56","nodeType":"VariableDeclaration","scope":13057,"src":"16818:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13005,"name":"uint8","nodeType":"ElementaryTypeName","src":"16818:5:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":13011,"initialValue":{"arguments":[{"id":13009,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13000,"src":"16838:3:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":13008,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16832:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":13007,"name":"uint8","nodeType":"ElementaryTypeName","src":"16832:5:56","typeDescriptions":{}}},"id":13010,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16832:10:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"16818:24:56"},{"id":13054,"nodeType":"UncheckedBlock","src":"17002:238:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":13018,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13014,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13012,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13006,"src":"17030:5:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3437","id":13013,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17038:2:56","typeDescriptions":{"typeIdentifier":"t_rational_47_by_1","typeString":"int_const 47"},"value":"47"},"src":"17030:10:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13015,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13006,"src":"17044:5:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3538","id":13016,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17052:2:56","typeDescriptions":{"typeIdentifier":"t_rational_58_by_1","typeString":"int_const 58"},"value":"58"},"src":"17044:10:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17030:24:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":13029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13025,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13023,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13006,"src":"17090:5:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3936","id":13024,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17098:2:56","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"17090:10:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13028,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13026,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13006,"src":"17104:5:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"313033","id":13027,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17112:3:56","typeDescriptions":{"typeIdentifier":"t_rational_103_by_1","typeString":"int_const 103"},"value":"103"},"src":"17104:11:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17090:25:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":13040,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13034,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13006,"src":"17151:5:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3634","id":13035,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17159:2:56","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"17151:10:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13037,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13006,"src":"17165:5:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3731","id":13038,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17173:2:56","typeDescriptions":{"typeIdentifier":"t_rational_71_by_1","typeString":"int_const 71"},"value":"71"},"src":"17165:10:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17151:24:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"expression":{"arguments":[{"id":13047,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17219:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":13046,"name":"uint8","nodeType":"ElementaryTypeName","src":"17219:5:56","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":13045,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17214:4:56","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":13048,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17214:11:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":13049,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17226:3:56","memberName":"max","nodeType":"MemberAccess","src":"17214:15:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":13004,"id":13050,"nodeType":"Return","src":"17207:22:56"},"id":13051,"nodeType":"IfStatement","src":"17147:82:56","trueBody":{"expression":{"id":13043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13041,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13006,"src":"17177:5:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3535","id":13042,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17186:2:56","typeDescriptions":{"typeIdentifier":"t_rational_55_by_1","typeString":"int_const 55"},"value":"55"},"src":"17177:11:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":13044,"nodeType":"ExpressionStatement","src":"17177:11:56"}},"id":13052,"nodeType":"IfStatement","src":"17086:143:56","trueBody":{"expression":{"id":13032,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13030,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13006,"src":"17117:5:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3837","id":13031,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17126:2:56","typeDescriptions":{"typeIdentifier":"t_rational_87_by_1","typeString":"int_const 87"},"value":"87"},"src":"17117:11:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":13033,"nodeType":"ExpressionStatement","src":"17117:11:56"}},"id":13053,"nodeType":"IfStatement","src":"17026:203:56","trueBody":{"expression":{"id":13021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13019,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13006,"src":"17056:5:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3438","id":13020,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17065:2:56","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"17056:11:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":13022,"nodeType":"ExpressionStatement","src":"17056:11:56"}}]},{"expression":{"id":13055,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13006,"src":"17257:5:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":13004,"id":13056,"nodeType":"Return","src":"17250:12:56"}]},"id":13058,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseChr","nameLocation":"16754:12:56","nodeType":"FunctionDefinition","parameters":{"id":13001,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13000,"mutability":"mutable","name":"chr","nameLocation":"16774:3:56","nodeType":"VariableDeclaration","scope":13058,"src":"16767:10:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":12999,"name":"bytes1","nodeType":"ElementaryTypeName","src":"16767:6:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"16766:12:56"},"returnParameters":{"id":13004,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13003,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13058,"src":"16801:5:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13002,"name":"uint8","nodeType":"ElementaryTypeName","src":"16801:5:56","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"16800:7:56"},"scope":13238,"src":"16745:524:56","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":13224,"nodeType":"Block","src":"17935:1335:56","statements":[{"assignments":[13067],"declarations":[{"constant":false,"id":13067,"mutability":"mutable","name":"buffer","nameLocation":"17958:6:56","nodeType":"VariableDeclaration","scope":13224,"src":"17945:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":13066,"name":"bytes","nodeType":"ElementaryTypeName","src":"17945:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":13072,"initialValue":{"arguments":[{"id":13070,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13061,"src":"17973:5:56","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":13069,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17967:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":13068,"name":"bytes","nodeType":"ElementaryTypeName","src":"17967:5:56","typeDescriptions":{}}},"id":13071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17967:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"17945:34:56"},{"assignments":[13074],"declarations":[{"constant":false,"id":13074,"mutability":"mutable","name":"output","nameLocation":"18002:6:56","nodeType":"VariableDeclaration","scope":13224,"src":"17989:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":13073,"name":"bytes","nodeType":"ElementaryTypeName","src":"17989:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":13082,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":13077,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18021:1:56","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":13078,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13067,"src":"18025:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":13079,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18032:6:56","memberName":"length","nodeType":"MemberAccess","src":"18025:13:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18021:17:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13076,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"18011:9:56","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":13075,"name":"bytes","nodeType":"ElementaryTypeName","src":"18015:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":13081,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18011:28:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"17989:50:56"},{"assignments":[13084],"declarations":[{"constant":false,"id":13084,"mutability":"mutable","name":"outputLength","nameLocation":"18080:12:56","nodeType":"VariableDeclaration","scope":13224,"src":"18072:20:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13083,"name":"uint256","nodeType":"ElementaryTypeName","src":"18072:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13086,"initialValue":{"hexValue":"30","id":13085,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18095:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"18072:24:56"},{"body":{"id":13216,"nodeType":"Block","src":"18151:854:56","statements":[{"assignments":[13099],"declarations":[{"constant":false,"id":13099,"mutability":"mutable","name":"char","nameLocation":"18172:4:56","nodeType":"VariableDeclaration","scope":13216,"src":"18165:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13098,"name":"bytes1","nodeType":"ElementaryTypeName","src":"18165:6:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":13107,"initialValue":{"arguments":[{"arguments":[{"id":13103,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13067,"src":"18209:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":13104,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13088,"src":"18217:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13102,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13237,"src":"18186:22:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":13105,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18186:33:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":13101,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18179:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":13100,"name":"bytes1","nodeType":"ElementaryTypeName","src":"18179:6:56","typeDescriptions":{}}},"id":13106,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18179:41:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"18165:55:56"},{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13119,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13116,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13108,"name":"SPECIAL_CHARS_LOOKUP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11813,"src":"18240:20:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":13109,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18264:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"arguments":[{"id":13112,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13099,"src":"18275:4:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":13111,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18269:5:56","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":13110,"name":"uint8","nodeType":"ElementaryTypeName","src":"18269:5:56","typeDescriptions":{}}},"id":13113,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18269:11:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"18264:16:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":13115,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"18263:18:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18240:41:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":13117,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"18239:43:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":13118,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18286:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18239:48:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":13120,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"18238:50:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13214,"nodeType":"Block","src":"18933:62:56","statements":[{"expression":{"id":13212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":13207,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13074,"src":"18951:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":13210,"indexExpression":{"id":13209,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18958:14:56","subExpression":{"id":13208,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13084,"src":"18958:12:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18951:22:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13211,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13099,"src":"18976:4:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"18951:29:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":13213,"nodeType":"ExpressionStatement","src":"18951:29:56"}]},"id":13215,"nodeType":"IfStatement","src":"18234:761:56","trueBody":{"id":13206,"nodeType":"Block","src":"18290:637:56","statements":[{"expression":{"id":13126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":13121,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13074,"src":"18308:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":13124,"indexExpression":{"id":13123,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18315:14:56","subExpression":{"id":13122,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13084,"src":"18315:12:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18308:22:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"5c","id":13125,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18333:4:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""},"value":"\\"},"src":"18308:29:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":13127,"nodeType":"ExpressionStatement","src":"18308:29:56"},{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":13130,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13128,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13099,"src":"18359:4:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783038","id":13129,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18367:4:56","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"0x08"},"src":"18359:12:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":13140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13138,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13099,"src":"18428:4:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783039","id":13139,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18436:4:56","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"0x09"},"src":"18428:12:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":13150,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13148,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13099,"src":"18497:4:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783061","id":13149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18505:4:56","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"0x0a"},"src":"18497:12:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":13160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13158,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13099,"src":"18566:4:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783063","id":13159,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18574:4:56","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"0x0c"},"src":"18566:12:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":13170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13168,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13099,"src":"18635:4:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783064","id":13169,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18643:4:56","typeDescriptions":{"typeIdentifier":"t_rational_13_by_1","typeString":"int_const 13"},"value":"0x0d"},"src":"18635:12:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":13180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13178,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13099,"src":"18704:4:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783563","id":13179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18712:4:56","typeDescriptions":{"typeIdentifier":"t_rational_92_by_1","typeString":"int_const 92"},"value":"0x5c"},"src":"18704:12:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":13190,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13188,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13099,"src":"18774:4:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783232","id":13189,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18782:4:56","typeDescriptions":{"typeIdentifier":"t_rational_34_by_1","typeString":"int_const 34"},"value":"0x22"},"src":"18774:12:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13199,"nodeType":"IfStatement","src":"18770:143:56","trueBody":{"id":13198,"nodeType":"Block","src":"18788:125:56","statements":[{"expression":{"id":13196,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":13191,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13074,"src":"18866:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":13194,"indexExpression":{"id":13193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18873:14:56","subExpression":{"id":13192,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13084,"src":"18873:12:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18866:22:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"22","id":13195,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18891:3:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_6e9f33448a4153023cdaf3eb759f1afdc24aba433a3e18b683f8c04a6eaa69f0","typeString":"literal_string \"\"\""},"value":"\""},"src":"18866:28:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":13197,"nodeType":"ExpressionStatement","src":"18866:28:56"}]}},"id":13200,"nodeType":"IfStatement","src":"18700:213:56","trueBody":{"expression":{"id":13186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":13181,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13074,"src":"18718:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":13184,"indexExpression":{"id":13183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18725:14:56","subExpression":{"id":13182,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13084,"src":"18725:12:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18718:22:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"5c","id":13185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18743:4:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""},"value":"\\"},"src":"18718:29:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":13187,"nodeType":"ExpressionStatement","src":"18718:29:56"}},"id":13201,"nodeType":"IfStatement","src":"18631:282:56","trueBody":{"expression":{"id":13176,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":13171,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13074,"src":"18649:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":13174,"indexExpression":{"id":13173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18656:14:56","subExpression":{"id":13172,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13084,"src":"18656:12:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18649:22:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"72","id":13175,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18674:3:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_414f72a4d550cad29f17d9d99a4af64b3776ec5538cd440cef0f03fef2e9e010","typeString":"literal_string \"r\""},"value":"r"},"src":"18649:28:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":13177,"nodeType":"ExpressionStatement","src":"18649:28:56"}},"id":13202,"nodeType":"IfStatement","src":"18562:351:56","trueBody":{"expression":{"id":13166,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":13161,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13074,"src":"18580:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":13164,"indexExpression":{"id":13163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18587:14:56","subExpression":{"id":13162,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13084,"src":"18587:12:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18580:22:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66","id":13165,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18605:3:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_d1e8aeb79500496ef3dc2e57ba746a8315d048b7a664a2bf948db4fa91960483","typeString":"literal_string \"f\""},"value":"f"},"src":"18580:28:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":13167,"nodeType":"ExpressionStatement","src":"18580:28:56"}},"id":13203,"nodeType":"IfStatement","src":"18493:420:56","trueBody":{"expression":{"id":13156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":13151,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13074,"src":"18511:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":13154,"indexExpression":{"id":13153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18518:14:56","subExpression":{"id":13152,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13084,"src":"18518:12:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18511:22:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"6e","id":13155,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18536:3:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_4b4ecedb4964a40fe416b16c7bd8b46092040ec42ef0aa69e59f09872f105cf3","typeString":"literal_string \"n\""},"value":"n"},"src":"18511:28:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":13157,"nodeType":"ExpressionStatement","src":"18511:28:56"}},"id":13204,"nodeType":"IfStatement","src":"18424:489:56","trueBody":{"expression":{"id":13146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":13141,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13074,"src":"18442:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":13144,"indexExpression":{"id":13143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18449:14:56","subExpression":{"id":13142,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13084,"src":"18449:12:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18442:22:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74","id":13145,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18467:3:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_cac1bb71f0a97c8ac94ca9546b43178a9ad254c7b757ac07433aa6df35cd8089","typeString":"literal_string \"t\""},"value":"t"},"src":"18442:28:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":13147,"nodeType":"ExpressionStatement","src":"18442:28:56"}},"id":13205,"nodeType":"IfStatement","src":"18355:558:56","trueBody":{"expression":{"id":13136,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":13131,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13074,"src":"18373:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":13134,"indexExpression":{"id":13133,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18380:14:56","subExpression":{"id":13132,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13084,"src":"18380:12:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18373:22:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"62","id":13135,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18398:3:56","typeDescriptions":{"typeIdentifier":"t_stringliteral_b5553de315e0edf504d9150af82dafa5c4667fa618ed0a6f19c69b41166c5510","typeString":"literal_string \"b\""},"value":"b"},"src":"18373:28:56","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":13137,"nodeType":"ExpressionStatement","src":"18373:28:56"}}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13091,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13088,"src":"18127:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":13092,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13067,"src":"18131:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":13093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18138:6:56","memberName":"length","nodeType":"MemberAccess","src":"18131:13:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18127:17:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13217,"initializationExpression":{"assignments":[13088],"declarations":[{"constant":false,"id":13088,"mutability":"mutable","name":"i","nameLocation":"18120:1:56","nodeType":"VariableDeclaration","scope":13217,"src":"18112:9:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13087,"name":"uint256","nodeType":"ElementaryTypeName","src":"18112:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13090,"initialValue":{"hexValue":"30","id":13089,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18124:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"18112:13:56"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":13096,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"18146:3:56","subExpression":{"id":13095,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13088,"src":"18148:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13097,"nodeType":"ExpressionStatement","src":"18146:3:56"},"nodeType":"ForStatement","src":"18107:898:56"},{"AST":{"nativeSrc":"19103:129:56","nodeType":"YulBlock","src":"19103:129:56","statements":[{"expression":{"arguments":[{"name":"output","nativeSrc":"19124:6:56","nodeType":"YulIdentifier","src":"19124:6:56"},{"name":"outputLength","nativeSrc":"19132:12:56","nodeType":"YulIdentifier","src":"19132:12:56"}],"functionName":{"name":"mstore","nativeSrc":"19117:6:56","nodeType":"YulIdentifier","src":"19117:6:56"},"nativeSrc":"19117:28:56","nodeType":"YulFunctionCall","src":"19117:28:56"},"nativeSrc":"19117:28:56","nodeType":"YulExpressionStatement","src":"19117:28:56"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"19165:4:56","nodeType":"YulLiteral","src":"19165:4:56","type":"","value":"0x40"},{"arguments":[{"name":"output","nativeSrc":"19175:6:56","nodeType":"YulIdentifier","src":"19175:6:56"},{"arguments":[{"kind":"number","nativeSrc":"19187:1:56","nodeType":"YulLiteral","src":"19187:1:56","type":"","value":"5"},{"arguments":[{"kind":"number","nativeSrc":"19194:1:56","nodeType":"YulLiteral","src":"19194:1:56","type":"","value":"5"},{"arguments":[{"name":"outputLength","nativeSrc":"19201:12:56","nodeType":"YulIdentifier","src":"19201:12:56"},{"kind":"number","nativeSrc":"19215:2:56","nodeType":"YulLiteral","src":"19215:2:56","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"19197:3:56","nodeType":"YulIdentifier","src":"19197:3:56"},"nativeSrc":"19197:21:56","nodeType":"YulFunctionCall","src":"19197:21:56"}],"functionName":{"name":"shr","nativeSrc":"19190:3:56","nodeType":"YulIdentifier","src":"19190:3:56"},"nativeSrc":"19190:29:56","nodeType":"YulFunctionCall","src":"19190:29:56"}],"functionName":{"name":"shl","nativeSrc":"19183:3:56","nodeType":"YulIdentifier","src":"19183:3:56"},"nativeSrc":"19183:37:56","nodeType":"YulFunctionCall","src":"19183:37:56"}],"functionName":{"name":"add","nativeSrc":"19171:3:56","nodeType":"YulIdentifier","src":"19171:3:56"},"nativeSrc":"19171:50:56","nodeType":"YulFunctionCall","src":"19171:50:56"}],"functionName":{"name":"mstore","nativeSrc":"19158:6:56","nodeType":"YulIdentifier","src":"19158:6:56"},"nativeSrc":"19158:64:56","nodeType":"YulFunctionCall","src":"19158:64:56"},"nativeSrc":"19158:64:56","nodeType":"YulExpressionStatement","src":"19158:64:56"}]},"evmVersion":"prague","externalReferences":[{"declaration":13074,"isOffset":false,"isSlot":false,"src":"19124:6:56","valueSize":1},{"declaration":13074,"isOffset":false,"isSlot":false,"src":"19175:6:56","valueSize":1},{"declaration":13084,"isOffset":false,"isSlot":false,"src":"19132:12:56","valueSize":1},{"declaration":13084,"isOffset":false,"isSlot":false,"src":"19201:12:56","valueSize":1}],"flags":["memory-safe"],"id":13218,"nodeType":"InlineAssembly","src":"19078:154:56"},{"expression":{"arguments":[{"id":13221,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13074,"src":"19256:6:56","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":13220,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19249:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":13219,"name":"string","nodeType":"ElementaryTypeName","src":"19249:6:56","typeDescriptions":{}}},"id":13222,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19249:14:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":13065,"id":13223,"nodeType":"Return","src":"19242:21:56"}]},"documentation":{"id":13059,"nodeType":"StructuredDocumentation","src":"17275:576:56","text":" @dev Escape special characters in JSON strings. This can be useful to prevent JSON injection in NFT metadata.\n WARNING: This function should only be used in double quoted JSON strings. Single quotes are not escaped.\n NOTE: This function escapes all unicode characters, and not just the ones in ranges defined in section 2.5 of\n RFC-4627 (U+0000 to U+001F, U+0022 and U+005C). ECMAScript's `JSON.parse` does recover escaped unicode\n characters that are not in this range, but other tooling may provide different results."},"id":13225,"implemented":true,"kind":"function","modifiers":[],"name":"escapeJSON","nameLocation":"17865:10:56","nodeType":"FunctionDefinition","parameters":{"id":13062,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13061,"mutability":"mutable","name":"input","nameLocation":"17890:5:56","nodeType":"VariableDeclaration","scope":13225,"src":"17876:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":13060,"name":"string","nodeType":"ElementaryTypeName","src":"17876:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"17875:21:56"},"returnParameters":{"id":13065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13064,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13225,"src":"17920:13:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":13063,"name":"string","nodeType":"ElementaryTypeName","src":"17920:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"17919:15:56"},"scope":13238,"src":"17856:1414:56","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13236,"nodeType":"Block","src":"19655:225:56","statements":[{"AST":{"nativeSrc":"19804:70:56","nodeType":"YulBlock","src":"19804:70:56","statements":[{"nativeSrc":"19818:46:56","nodeType":"YulAssignment","src":"19818:46:56","value":{"arguments":[{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"19841:6:56","nodeType":"YulIdentifier","src":"19841:6:56"},{"kind":"number","nativeSrc":"19849:4:56","nodeType":"YulLiteral","src":"19849:4:56","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"19837:3:56","nodeType":"YulIdentifier","src":"19837:3:56"},"nativeSrc":"19837:17:56","nodeType":"YulFunctionCall","src":"19837:17:56"},{"name":"offset","nativeSrc":"19856:6:56","nodeType":"YulIdentifier","src":"19856:6:56"}],"functionName":{"name":"add","nativeSrc":"19833:3:56","nodeType":"YulIdentifier","src":"19833:3:56"},"nativeSrc":"19833:30:56","nodeType":"YulFunctionCall","src":"19833:30:56"}],"functionName":{"name":"mload","nativeSrc":"19827:5:56","nodeType":"YulIdentifier","src":"19827:5:56"},"nativeSrc":"19827:37:56","nodeType":"YulFunctionCall","src":"19827:37:56"},"variableNames":[{"name":"value","nativeSrc":"19818:5:56","nodeType":"YulIdentifier","src":"19818:5:56"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":13228,"isOffset":false,"isSlot":false,"src":"19841:6:56","valueSize":1},{"declaration":13230,"isOffset":false,"isSlot":false,"src":"19856:6:56","valueSize":1},{"declaration":13233,"isOffset":false,"isSlot":false,"src":"19818:5:56","valueSize":1}],"flags":["memory-safe"],"id":13235,"nodeType":"InlineAssembly","src":"19779:95:56"}]},"documentation":{"id":13226,"nodeType":"StructuredDocumentation","src":"19276:268:56","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":13237,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeReadBytesOffset","nameLocation":"19558:22:56","nodeType":"FunctionDefinition","parameters":{"id":13231,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13228,"mutability":"mutable","name":"buffer","nameLocation":"19594:6:56","nodeType":"VariableDeclaration","scope":13237,"src":"19581:19:56","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":13227,"name":"bytes","nodeType":"ElementaryTypeName","src":"19581:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":13230,"mutability":"mutable","name":"offset","nameLocation":"19610:6:56","nodeType":"VariableDeclaration","scope":13237,"src":"19602:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13229,"name":"uint256","nodeType":"ElementaryTypeName","src":"19602:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19580:37:56"},"returnParameters":{"id":13234,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13233,"mutability":"mutable","name":"value","nameLocation":"19648:5:56","nodeType":"VariableDeclaration","scope":13237,"src":"19640:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13232,"name":"bytes32","nodeType":"ElementaryTypeName","src":"19640:7:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"19639:15:56"},"scope":13238,"src":"19549:331:56","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":13239,"src":"332:19550:56","usedErrors":[11820,11823,11826],"usedEvents":[]}],"src":"101:19782:56"},"id":56},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","exportedSymbols":{"ECDSA":[13697]},"id":13698,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":13240,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"112:24:57"},{"abstract":false,"baseContracts":[],"canonicalName":"ECDSA","contractDependencies":[],"contractKind":"library","documentation":{"id":13241,"nodeType":"StructuredDocumentation","src":"138:205:57","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":13697,"linearizedBaseContracts":[13697],"name":"ECDSA","nameLocation":"352:5:57","nodeType":"ContractDefinition","nodes":[{"canonicalName":"ECDSA.RecoverError","id":13246,"members":[{"id":13242,"name":"NoError","nameLocation":"392:7:57","nodeType":"EnumValue","src":"392:7:57"},{"id":13243,"name":"InvalidSignature","nameLocation":"409:16:57","nodeType":"EnumValue","src":"409:16:57"},{"id":13244,"name":"InvalidSignatureLength","nameLocation":"435:22:57","nodeType":"EnumValue","src":"435:22:57"},{"id":13245,"name":"InvalidSignatureS","nameLocation":"467:17:57","nodeType":"EnumValue","src":"467:17:57"}],"name":"RecoverError","nameLocation":"369:12:57","nodeType":"EnumDefinition","src":"364:126:57"},{"documentation":{"id":13247,"nodeType":"StructuredDocumentation","src":"496:63:57","text":" @dev The signature derives the `address(0)`."},"errorSelector":"f645eedf","id":13249,"name":"ECDSAInvalidSignature","nameLocation":"570:21:57","nodeType":"ErrorDefinition","parameters":{"id":13248,"nodeType":"ParameterList","parameters":[],"src":"591:2:57"},"src":"564:30:57"},{"documentation":{"id":13250,"nodeType":"StructuredDocumentation","src":"600:60:57","text":" @dev The signature has an invalid length."},"errorSelector":"fce698f7","id":13254,"name":"ECDSAInvalidSignatureLength","nameLocation":"671:27:57","nodeType":"ErrorDefinition","parameters":{"id":13253,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13252,"mutability":"mutable","name":"length","nameLocation":"707:6:57","nodeType":"VariableDeclaration","scope":13254,"src":"699:14:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13251,"name":"uint256","nodeType":"ElementaryTypeName","src":"699:7:57","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"698:16:57"},"src":"665:50:57"},{"documentation":{"id":13255,"nodeType":"StructuredDocumentation","src":"721:85:57","text":" @dev The signature has an S value that is in the upper half order."},"errorSelector":"d78bce0c","id":13259,"name":"ECDSAInvalidSignatureS","nameLocation":"817:22:57","nodeType":"ErrorDefinition","parameters":{"id":13258,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13257,"mutability":"mutable","name":"s","nameLocation":"848:1:57","nodeType":"VariableDeclaration","scope":13259,"src":"840:9:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13256,"name":"bytes32","nodeType":"ElementaryTypeName","src":"840:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"839:11:57"},"src":"811:40:57"},{"body":{"id":13311,"nodeType":"Block","src":"2589:622:57","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":13274,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13264,"src":"2603:9:57","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":13275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2613:6:57","memberName":"length","nodeType":"MemberAccess","src":"2603:16:57","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3635","id":13276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2623:2:57","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"65"},"src":"2603:22:57","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13309,"nodeType":"Block","src":"3097:108:57","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":13298,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3127:1:57","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":13297,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3119:7:57","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13296,"name":"address","nodeType":"ElementaryTypeName","src":"3119:7:57","typeDescriptions":{}}},"id":13299,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3119:10:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":13300,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13246,"src":"3131:12:57","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$13246_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":13301,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3144:22:57","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":13244,"src":"3131:35:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"expression":{"id":13304,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13264,"src":"3176:9:57","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":13305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3186:6:57","memberName":"length","nodeType":"MemberAccess","src":"3176:16:57","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13303,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3168:7:57","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":13302,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3168:7:57","typeDescriptions":{}}},"id":13306,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3168:25:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":13307,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3118:76:57","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":13273,"id":13308,"nodeType":"Return","src":"3111:83:57"}]},"id":13310,"nodeType":"IfStatement","src":"2599:606:57","trueBody":{"id":13295,"nodeType":"Block","src":"2627:464:57","statements":[{"assignments":[13279],"declarations":[{"constant":false,"id":13279,"mutability":"mutable","name":"r","nameLocation":"2649:1:57","nodeType":"VariableDeclaration","scope":13295,"src":"2641:9:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13278,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2641:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":13280,"nodeType":"VariableDeclarationStatement","src":"2641:9:57"},{"assignments":[13282],"declarations":[{"constant":false,"id":13282,"mutability":"mutable","name":"s","nameLocation":"2672:1:57","nodeType":"VariableDeclaration","scope":13295,"src":"2664:9:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13281,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2664:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":13283,"nodeType":"VariableDeclarationStatement","src":"2664:9:57"},{"assignments":[13285],"declarations":[{"constant":false,"id":13285,"mutability":"mutable","name":"v","nameLocation":"2693:1:57","nodeType":"VariableDeclaration","scope":13295,"src":"2687:7:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13284,"name":"uint8","nodeType":"ElementaryTypeName","src":"2687:5:57","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":13286,"nodeType":"VariableDeclarationStatement","src":"2687:7:57"},{"AST":{"nativeSrc":"2864:171:57","nodeType":"YulBlock","src":"2864:171:57","statements":[{"nativeSrc":"2882:32:57","nodeType":"YulAssignment","src":"2882:32:57","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"2897:9:57","nodeType":"YulIdentifier","src":"2897:9:57"},{"kind":"number","nativeSrc":"2908:4:57","nodeType":"YulLiteral","src":"2908:4:57","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2893:3:57","nodeType":"YulIdentifier","src":"2893:3:57"},"nativeSrc":"2893:20:57","nodeType":"YulFunctionCall","src":"2893:20:57"}],"functionName":{"name":"mload","nativeSrc":"2887:5:57","nodeType":"YulIdentifier","src":"2887:5:57"},"nativeSrc":"2887:27:57","nodeType":"YulFunctionCall","src":"2887:27:57"},"variableNames":[{"name":"r","nativeSrc":"2882:1:57","nodeType":"YulIdentifier","src":"2882:1:57"}]},{"nativeSrc":"2931:32:57","nodeType":"YulAssignment","src":"2931:32:57","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"2946:9:57","nodeType":"YulIdentifier","src":"2946:9:57"},{"kind":"number","nativeSrc":"2957:4:57","nodeType":"YulLiteral","src":"2957:4:57","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"2942:3:57","nodeType":"YulIdentifier","src":"2942:3:57"},"nativeSrc":"2942:20:57","nodeType":"YulFunctionCall","src":"2942:20:57"}],"functionName":{"name":"mload","nativeSrc":"2936:5:57","nodeType":"YulIdentifier","src":"2936:5:57"},"nativeSrc":"2936:27:57","nodeType":"YulFunctionCall","src":"2936:27:57"},"variableNames":[{"name":"s","nativeSrc":"2931:1:57","nodeType":"YulIdentifier","src":"2931:1:57"}]},{"nativeSrc":"2980:41:57","nodeType":"YulAssignment","src":"2980:41:57","value":{"arguments":[{"kind":"number","nativeSrc":"2990:1:57","nodeType":"YulLiteral","src":"2990:1:57","type":"","value":"0"},{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"3003:9:57","nodeType":"YulIdentifier","src":"3003:9:57"},{"kind":"number","nativeSrc":"3014:4:57","nodeType":"YulLiteral","src":"3014:4:57","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"2999:3:57","nodeType":"YulIdentifier","src":"2999:3:57"},"nativeSrc":"2999:20:57","nodeType":"YulFunctionCall","src":"2999:20:57"}],"functionName":{"name":"mload","nativeSrc":"2993:5:57","nodeType":"YulIdentifier","src":"2993:5:57"},"nativeSrc":"2993:27:57","nodeType":"YulFunctionCall","src":"2993:27:57"}],"functionName":{"name":"byte","nativeSrc":"2985:4:57","nodeType":"YulIdentifier","src":"2985:4:57"},"nativeSrc":"2985:36:57","nodeType":"YulFunctionCall","src":"2985:36:57"},"variableNames":[{"name":"v","nativeSrc":"2980:1:57","nodeType":"YulIdentifier","src":"2980:1:57"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":13279,"isOffset":false,"isSlot":false,"src":"2882:1:57","valueSize":1},{"declaration":13282,"isOffset":false,"isSlot":false,"src":"2931:1:57","valueSize":1},{"declaration":13264,"isOffset":false,"isSlot":false,"src":"2897:9:57","valueSize":1},{"declaration":13264,"isOffset":false,"isSlot":false,"src":"2946:9:57","valueSize":1},{"declaration":13264,"isOffset":false,"isSlot":false,"src":"3003:9:57","valueSize":1},{"declaration":13285,"isOffset":false,"isSlot":false,"src":"2980:1:57","valueSize":1}],"flags":["memory-safe"],"id":13287,"nodeType":"InlineAssembly","src":"2839:196:57"},{"expression":{"arguments":[{"id":13289,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13262,"src":"3066:4:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13290,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13285,"src":"3072:1:57","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":13291,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13279,"src":"3075:1:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13292,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13282,"src":"3078:1:57","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":13288,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[13312,13475,13583],"referencedDeclaration":13583,"src":"3055:10:57","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":13293,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3055:25:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":13273,"id":13294,"nodeType":"Return","src":"3048:32:57"}]}}]},"documentation":{"id":13260,"nodeType":"StructuredDocumentation","src":"857:1571:57","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 NOTE: This function only supports 65-byte signatures. ERC-2098 short signatures are rejected. This restriction\n is DEPRECATED and will be removed in v6.0. Developers SHOULD NOT use signatures as unique identifiers; use hash\n invalidation or nonces for replay protection.\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":13312,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"2442:10:57","nodeType":"FunctionDefinition","parameters":{"id":13265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13262,"mutability":"mutable","name":"hash","nameLocation":"2470:4:57","nodeType":"VariableDeclaration","scope":13312,"src":"2462:12:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13261,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2462:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":13264,"mutability":"mutable","name":"signature","nameLocation":"2497:9:57","nodeType":"VariableDeclaration","scope":13312,"src":"2484:22:57","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":13263,"name":"bytes","nodeType":"ElementaryTypeName","src":"2484:5:57","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2452:60:57"},"returnParameters":{"id":13273,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13267,"mutability":"mutable","name":"recovered","nameLocation":"2544:9:57","nodeType":"VariableDeclaration","scope":13312,"src":"2536:17:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13266,"name":"address","nodeType":"ElementaryTypeName","src":"2536:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":13270,"mutability":"mutable","name":"err","nameLocation":"2568:3:57","nodeType":"VariableDeclaration","scope":13312,"src":"2555:16:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":13269,"nodeType":"UserDefinedTypeName","pathNode":{"id":13268,"name":"RecoverError","nameLocations":["2555:12:57"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"2555:12:57"},"referencedDeclaration":13246,"src":"2555:12:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":13272,"mutability":"mutable","name":"errArg","nameLocation":"2581:6:57","nodeType":"VariableDeclaration","scope":13312,"src":"2573:14:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13271,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2573:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2535:53:57"},"scope":13697,"src":"2433:778:57","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13364,"nodeType":"Block","src":"3470:716:57","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13330,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":13327,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13317,"src":"3484:9:57","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":13328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3494:6:57","memberName":"length","nodeType":"MemberAccess","src":"3484:16:57","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3635","id":13329,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3504:2:57","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"65"},"src":"3484:22:57","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13362,"nodeType":"Block","src":"4072:108:57","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":13351,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4102:1:57","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":13350,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4094:7:57","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13349,"name":"address","nodeType":"ElementaryTypeName","src":"4094:7:57","typeDescriptions":{}}},"id":13352,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4094:10:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":13353,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13246,"src":"4106:12:57","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$13246_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":13354,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4119:22:57","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":13244,"src":"4106:35:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"expression":{"id":13357,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13317,"src":"4151:9:57","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":13358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4161:6:57","memberName":"length","nodeType":"MemberAccess","src":"4151:16:57","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13356,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4143:7:57","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":13355,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4143:7:57","typeDescriptions":{}}},"id":13359,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4143:25:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":13360,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4093:76:57","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":13326,"id":13361,"nodeType":"Return","src":"4086:83:57"}]},"id":13363,"nodeType":"IfStatement","src":"3480:700:57","trueBody":{"id":13348,"nodeType":"Block","src":"3508:558:57","statements":[{"assignments":[13332],"declarations":[{"constant":false,"id":13332,"mutability":"mutable","name":"r","nameLocation":"3530:1:57","nodeType":"VariableDeclaration","scope":13348,"src":"3522:9:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13331,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3522:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":13333,"nodeType":"VariableDeclarationStatement","src":"3522:9:57"},{"assignments":[13335],"declarations":[{"constant":false,"id":13335,"mutability":"mutable","name":"s","nameLocation":"3553:1:57","nodeType":"VariableDeclaration","scope":13348,"src":"3545:9:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13334,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3545:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":13336,"nodeType":"VariableDeclarationStatement","src":"3545:9:57"},{"assignments":[13338],"declarations":[{"constant":false,"id":13338,"mutability":"mutable","name":"v","nameLocation":"3574:1:57","nodeType":"VariableDeclaration","scope":13348,"src":"3568:7:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13337,"name":"uint8","nodeType":"ElementaryTypeName","src":"3568:5:57","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":13339,"nodeType":"VariableDeclarationStatement","src":"3568:7:57"},{"AST":{"nativeSrc":"3808:202:57","nodeType":"YulBlock","src":"3808:202:57","statements":[{"nativeSrc":"3826:35:57","nodeType":"YulAssignment","src":"3826:35:57","value":{"arguments":[{"name":"signature.offset","nativeSrc":"3844:16:57","nodeType":"YulIdentifier","src":"3844:16:57"}],"functionName":{"name":"calldataload","nativeSrc":"3831:12:57","nodeType":"YulIdentifier","src":"3831:12:57"},"nativeSrc":"3831:30:57","nodeType":"YulFunctionCall","src":"3831:30:57"},"variableNames":[{"name":"r","nativeSrc":"3826:1:57","nodeType":"YulIdentifier","src":"3826:1:57"}]},{"nativeSrc":"3878:46:57","nodeType":"YulAssignment","src":"3878:46:57","value":{"arguments":[{"arguments":[{"name":"signature.offset","nativeSrc":"3900:16:57","nodeType":"YulIdentifier","src":"3900:16:57"},{"kind":"number","nativeSrc":"3918:4:57","nodeType":"YulLiteral","src":"3918:4:57","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3896:3:57","nodeType":"YulIdentifier","src":"3896:3:57"},"nativeSrc":"3896:27:57","nodeType":"YulFunctionCall","src":"3896:27:57"}],"functionName":{"name":"calldataload","nativeSrc":"3883:12:57","nodeType":"YulIdentifier","src":"3883:12:57"},"nativeSrc":"3883:41:57","nodeType":"YulFunctionCall","src":"3883:41:57"},"variableNames":[{"name":"s","nativeSrc":"3878:1:57","nodeType":"YulIdentifier","src":"3878:1:57"}]},{"nativeSrc":"3941:55:57","nodeType":"YulAssignment","src":"3941:55:57","value":{"arguments":[{"kind":"number","nativeSrc":"3951:1:57","nodeType":"YulLiteral","src":"3951:1:57","type":"","value":"0"},{"arguments":[{"arguments":[{"name":"signature.offset","nativeSrc":"3971:16:57","nodeType":"YulIdentifier","src":"3971:16:57"},{"kind":"number","nativeSrc":"3989:4:57","nodeType":"YulLiteral","src":"3989:4:57","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"3967:3:57","nodeType":"YulIdentifier","src":"3967:3:57"},"nativeSrc":"3967:27:57","nodeType":"YulFunctionCall","src":"3967:27:57"}],"functionName":{"name":"calldataload","nativeSrc":"3954:12:57","nodeType":"YulIdentifier","src":"3954:12:57"},"nativeSrc":"3954:41:57","nodeType":"YulFunctionCall","src":"3954:41:57"}],"functionName":{"name":"byte","nativeSrc":"3946:4:57","nodeType":"YulIdentifier","src":"3946:4:57"},"nativeSrc":"3946:50:57","nodeType":"YulFunctionCall","src":"3946:50:57"},"variableNames":[{"name":"v","nativeSrc":"3941:1:57","nodeType":"YulIdentifier","src":"3941:1:57"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":13332,"isOffset":false,"isSlot":false,"src":"3826:1:57","valueSize":1},{"declaration":13335,"isOffset":false,"isSlot":false,"src":"3878:1:57","valueSize":1},{"declaration":13317,"isOffset":true,"isSlot":false,"src":"3844:16:57","suffix":"offset","valueSize":1},{"declaration":13317,"isOffset":true,"isSlot":false,"src":"3900:16:57","suffix":"offset","valueSize":1},{"declaration":13317,"isOffset":true,"isSlot":false,"src":"3971:16:57","suffix":"offset","valueSize":1},{"declaration":13338,"isOffset":false,"isSlot":false,"src":"3941:1:57","valueSize":1}],"flags":["memory-safe"],"id":13340,"nodeType":"InlineAssembly","src":"3783:227:57"},{"expression":{"arguments":[{"id":13342,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13315,"src":"4041:4:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13343,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13338,"src":"4047:1:57","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":13344,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13332,"src":"4050:1:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13345,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13335,"src":"4053:1:57","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":13341,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[13312,13475,13583],"referencedDeclaration":13583,"src":"4030:10:57","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":13346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4030:25:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":13326,"id":13347,"nodeType":"Return","src":"4023:32:57"}]}}]},"documentation":{"id":13313,"nodeType":"StructuredDocumentation","src":"3217:82:57","text":" @dev Variant of {tryRecover} that takes a signature in calldata"},"id":13365,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecoverCalldata","nameLocation":"3313:18:57","nodeType":"FunctionDefinition","parameters":{"id":13318,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13315,"mutability":"mutable","name":"hash","nameLocation":"3349:4:57","nodeType":"VariableDeclaration","scope":13365,"src":"3341:12:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13314,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3341:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":13317,"mutability":"mutable","name":"signature","nameLocation":"3378:9:57","nodeType":"VariableDeclaration","scope":13365,"src":"3363:24:57","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":13316,"name":"bytes","nodeType":"ElementaryTypeName","src":"3363:5:57","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3331:62:57"},"returnParameters":{"id":13326,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13320,"mutability":"mutable","name":"recovered","nameLocation":"3425:9:57","nodeType":"VariableDeclaration","scope":13365,"src":"3417:17:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13319,"name":"address","nodeType":"ElementaryTypeName","src":"3417:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":13323,"mutability":"mutable","name":"err","nameLocation":"3449:3:57","nodeType":"VariableDeclaration","scope":13365,"src":"3436:16:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":13322,"nodeType":"UserDefinedTypeName","pathNode":{"id":13321,"name":"RecoverError","nameLocations":["3436:12:57"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"3436:12:57"},"referencedDeclaration":13246,"src":"3436:12:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":13325,"mutability":"mutable","name":"errArg","nameLocation":"3462:6:57","nodeType":"VariableDeclaration","scope":13365,"src":"3454:14:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13324,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3454:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3416:53:57"},"scope":13697,"src":"3304:882:57","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13394,"nodeType":"Block","src":"5377:168:57","statements":[{"assignments":[13376,13379,13381],"declarations":[{"constant":false,"id":13376,"mutability":"mutable","name":"recovered","nameLocation":"5396:9:57","nodeType":"VariableDeclaration","scope":13394,"src":"5388:17:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13375,"name":"address","nodeType":"ElementaryTypeName","src":"5388:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":13379,"mutability":"mutable","name":"error","nameLocation":"5420:5:57","nodeType":"VariableDeclaration","scope":13394,"src":"5407:18:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":13378,"nodeType":"UserDefinedTypeName","pathNode":{"id":13377,"name":"RecoverError","nameLocations":["5407:12:57"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"5407:12:57"},"referencedDeclaration":13246,"src":"5407:12:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":13381,"mutability":"mutable","name":"errorArg","nameLocation":"5435:8:57","nodeType":"VariableDeclaration","scope":13394,"src":"5427:16:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13380,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5427:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":13386,"initialValue":{"arguments":[{"id":13383,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13368,"src":"5458:4:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13384,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13370,"src":"5464:9:57","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":13382,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[13312,13475,13583],"referencedDeclaration":13312,"src":"5447:10:57","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"function (bytes32,bytes memory) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":13385,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5447:27:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"5387:87:57"},{"expression":{"arguments":[{"id":13388,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13379,"src":"5496:5:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},{"id":13389,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13381,"src":"5503:8:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":13387,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13696,"src":"5484:11:57","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$13246_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":13390,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5484:28:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13391,"nodeType":"ExpressionStatement","src":"5484:28:57"},{"expression":{"id":13392,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13376,"src":"5529:9:57","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":13374,"id":13393,"nodeType":"Return","src":"5522:16:57"}]},"documentation":{"id":13366,"nodeType":"StructuredDocumentation","src":"4192:1093:57","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 NOTE: This function only supports 65-byte signatures. ERC-2098 short signatures are rejected. This restriction\n is DEPRECATED and will be removed in v6.0. Developers SHOULD NOT use signatures as unique identifiers; use hash\n invalidation or nonces for replay protection.\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":13395,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"5299:7:57","nodeType":"FunctionDefinition","parameters":{"id":13371,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13368,"mutability":"mutable","name":"hash","nameLocation":"5315:4:57","nodeType":"VariableDeclaration","scope":13395,"src":"5307:12:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13367,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5307:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":13370,"mutability":"mutable","name":"signature","nameLocation":"5334:9:57","nodeType":"VariableDeclaration","scope":13395,"src":"5321:22:57","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":13369,"name":"bytes","nodeType":"ElementaryTypeName","src":"5321:5:57","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5306:38:57"},"returnParameters":{"id":13374,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13373,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13395,"src":"5368:7:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13372,"name":"address","nodeType":"ElementaryTypeName","src":"5368:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5367:9:57"},"scope":13697,"src":"5290:255:57","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13424,"nodeType":"Block","src":"5732:176:57","statements":[{"assignments":[13406,13409,13411],"declarations":[{"constant":false,"id":13406,"mutability":"mutable","name":"recovered","nameLocation":"5751:9:57","nodeType":"VariableDeclaration","scope":13424,"src":"5743:17:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13405,"name":"address","nodeType":"ElementaryTypeName","src":"5743:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":13409,"mutability":"mutable","name":"error","nameLocation":"5775:5:57","nodeType":"VariableDeclaration","scope":13424,"src":"5762:18:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":13408,"nodeType":"UserDefinedTypeName","pathNode":{"id":13407,"name":"RecoverError","nameLocations":["5762:12:57"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"5762:12:57"},"referencedDeclaration":13246,"src":"5762:12:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":13411,"mutability":"mutable","name":"errorArg","nameLocation":"5790:8:57","nodeType":"VariableDeclaration","scope":13424,"src":"5782:16:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13410,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5782:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":13416,"initialValue":{"arguments":[{"id":13413,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13398,"src":"5821:4:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13414,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13400,"src":"5827:9:57","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":13412,"name":"tryRecoverCalldata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13365,"src":"5802:18:57","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_calldata_ptr_$returns$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"function (bytes32,bytes calldata) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":13415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5802:35:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"5742:95:57"},{"expression":{"arguments":[{"id":13418,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13409,"src":"5859:5:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},{"id":13419,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13411,"src":"5866:8:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":13417,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13696,"src":"5847:11:57","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$13246_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":13420,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5847:28:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13421,"nodeType":"ExpressionStatement","src":"5847:28:57"},{"expression":{"id":13422,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13406,"src":"5892:9:57","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":13404,"id":13423,"nodeType":"Return","src":"5885:16:57"}]},"documentation":{"id":13396,"nodeType":"StructuredDocumentation","src":"5551:79:57","text":" @dev Variant of {recover} that takes a signature in calldata"},"id":13425,"implemented":true,"kind":"function","modifiers":[],"name":"recoverCalldata","nameLocation":"5644:15:57","nodeType":"FunctionDefinition","parameters":{"id":13401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13398,"mutability":"mutable","name":"hash","nameLocation":"5668:4:57","nodeType":"VariableDeclaration","scope":13425,"src":"5660:12:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13397,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5660:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":13400,"mutability":"mutable","name":"signature","nameLocation":"5689:9:57","nodeType":"VariableDeclaration","scope":13425,"src":"5674:24:57","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":13399,"name":"bytes","nodeType":"ElementaryTypeName","src":"5674:5:57","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5659:40:57"},"returnParameters":{"id":13404,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13403,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13425,"src":"5723:7:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13402,"name":"address","nodeType":"ElementaryTypeName","src":"5723:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5722:9:57"},"scope":13697,"src":"5635:273:57","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13474,"nodeType":"Block","src":"6287:342:57","statements":[{"id":13473,"nodeType":"UncheckedBlock","src":"6297:326:57","statements":[{"assignments":[13443],"declarations":[{"constant":false,"id":13443,"mutability":"mutable","name":"s","nameLocation":"6329:1:57","nodeType":"VariableDeclaration","scope":13473,"src":"6321:9:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13442,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6321:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":13450,"initialValue":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":13449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13444,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13432,"src":"6333:2:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"arguments":[{"hexValue":"307837666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666","id":13447,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6346:66:57","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":13446,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6338:7:57","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":13445,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6338:7:57","typeDescriptions":{}}},"id":13448,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6338:75:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"6333:80:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"6321:92:57"},{"assignments":[13452],"declarations":[{"constant":false,"id":13452,"mutability":"mutable","name":"v","nameLocation":"6530:1:57","nodeType":"VariableDeclaration","scope":13473,"src":"6524:7:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13451,"name":"uint8","nodeType":"ElementaryTypeName","src":"6524:5:57","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":13465,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13457,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13432,"src":"6549:2:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":13456,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6541:7:57","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":13455,"name":"uint256","nodeType":"ElementaryTypeName","src":"6541:7:57","typeDescriptions":{}}},"id":13458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6541:11:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":13459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6556:3:57","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"6541:18:57","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":13461,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6540:20:57","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3237","id":13462,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6563:2:57","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"6540:25:57","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13454,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6534:5:57","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":13453,"name":"uint8","nodeType":"ElementaryTypeName","src":"6534:5:57","typeDescriptions":{}}},"id":13464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6534:32:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"6524:42:57"},{"expression":{"arguments":[{"id":13467,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13428,"src":"6598:4:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13468,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13452,"src":"6604:1:57","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":13469,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13430,"src":"6607:1:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13470,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13443,"src":"6610:1:57","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":13466,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[13312,13475,13583],"referencedDeclaration":13583,"src":"6587:10:57","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":13471,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6587:25:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":13441,"id":13472,"nodeType":"Return","src":"6580:32:57"}]}]},"documentation":{"id":13426,"nodeType":"StructuredDocumentation","src":"5914:205:57","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":13475,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"6133:10:57","nodeType":"FunctionDefinition","parameters":{"id":13433,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13428,"mutability":"mutable","name":"hash","nameLocation":"6161:4:57","nodeType":"VariableDeclaration","scope":13475,"src":"6153:12:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13427,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6153:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":13430,"mutability":"mutable","name":"r","nameLocation":"6183:1:57","nodeType":"VariableDeclaration","scope":13475,"src":"6175:9:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13429,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6175:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":13432,"mutability":"mutable","name":"vs","nameLocation":"6202:2:57","nodeType":"VariableDeclaration","scope":13475,"src":"6194:10:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13431,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6194:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6143:67:57"},"returnParameters":{"id":13441,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13435,"mutability":"mutable","name":"recovered","nameLocation":"6242:9:57","nodeType":"VariableDeclaration","scope":13475,"src":"6234:17:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13434,"name":"address","nodeType":"ElementaryTypeName","src":"6234:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":13438,"mutability":"mutable","name":"err","nameLocation":"6266:3:57","nodeType":"VariableDeclaration","scope":13475,"src":"6253:16:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":13437,"nodeType":"UserDefinedTypeName","pathNode":{"id":13436,"name":"RecoverError","nameLocations":["6253:12:57"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"6253:12:57"},"referencedDeclaration":13246,"src":"6253:12:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":13440,"mutability":"mutable","name":"errArg","nameLocation":"6279:6:57","nodeType":"VariableDeclaration","scope":13475,"src":"6271:14:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13439,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6271:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6233:53:57"},"scope":13697,"src":"6124:505:57","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13507,"nodeType":"Block","src":"6842:164:57","statements":[{"assignments":[13488,13491,13493],"declarations":[{"constant":false,"id":13488,"mutability":"mutable","name":"recovered","nameLocation":"6861:9:57","nodeType":"VariableDeclaration","scope":13507,"src":"6853:17:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13487,"name":"address","nodeType":"ElementaryTypeName","src":"6853:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":13491,"mutability":"mutable","name":"error","nameLocation":"6885:5:57","nodeType":"VariableDeclaration","scope":13507,"src":"6872:18:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":13490,"nodeType":"UserDefinedTypeName","pathNode":{"id":13489,"name":"RecoverError","nameLocations":["6872:12:57"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"6872:12:57"},"referencedDeclaration":13246,"src":"6872:12:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":13493,"mutability":"mutable","name":"errorArg","nameLocation":"6900:8:57","nodeType":"VariableDeclaration","scope":13507,"src":"6892:16:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13492,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6892:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":13499,"initialValue":{"arguments":[{"id":13495,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13478,"src":"6923:4:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13496,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13480,"src":"6929:1:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13497,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13482,"src":"6932:2:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":13494,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[13312,13475,13583],"referencedDeclaration":13475,"src":"6912:10:57","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"function (bytes32,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":13498,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6912:23:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"6852:83:57"},{"expression":{"arguments":[{"id":13501,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13491,"src":"6957:5:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},{"id":13502,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13493,"src":"6964:8:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":13500,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13696,"src":"6945:11:57","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$13246_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":13503,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6945:28:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13504,"nodeType":"ExpressionStatement","src":"6945:28:57"},{"expression":{"id":13505,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13488,"src":"6990:9:57","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":13486,"id":13506,"nodeType":"Return","src":"6983:16:57"}]},"documentation":{"id":13476,"nodeType":"StructuredDocumentation","src":"6635:116:57","text":" @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately."},"id":13508,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"6765:7:57","nodeType":"FunctionDefinition","parameters":{"id":13483,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13478,"mutability":"mutable","name":"hash","nameLocation":"6781:4:57","nodeType":"VariableDeclaration","scope":13508,"src":"6773:12:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13477,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6773:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":13480,"mutability":"mutable","name":"r","nameLocation":"6795:1:57","nodeType":"VariableDeclaration","scope":13508,"src":"6787:9:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13479,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6787:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":13482,"mutability":"mutable","name":"vs","nameLocation":"6806:2:57","nodeType":"VariableDeclaration","scope":13508,"src":"6798:10:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13481,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6798:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6772:37:57"},"returnParameters":{"id":13486,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13485,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13508,"src":"6833:7:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13484,"name":"address","nodeType":"ElementaryTypeName","src":"6833:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6832:9:57"},"scope":13697,"src":"6756:250:57","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13582,"nodeType":"Block","src":"7321:1372:57","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13532,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13529,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13517,"src":"8217:1:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":13528,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8209:7:57","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":13527,"name":"uint256","nodeType":"ElementaryTypeName","src":"8209:7:57","typeDescriptions":{}}},"id":13530,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8209:10:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307837464646464646464646464646464646464646464646464646464646464646463544353736453733353741343530314444464539324634363638314232304130","id":13531,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8222:66:57","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926418782139537452191302581570759080747168_by_1","typeString":"int_const 5789...(69 digits omitted)...7168"},"value":"0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0"},"src":"8209:79:57","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13543,"nodeType":"IfStatement","src":"8205:164:57","trueBody":{"id":13542,"nodeType":"Block","src":"8290:79:57","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":13535,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8320:1:57","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":13534,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8312:7:57","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13533,"name":"address","nodeType":"ElementaryTypeName","src":"8312:7:57","typeDescriptions":{}}},"id":13536,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8312:10:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":13537,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13246,"src":"8324:12:57","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$13246_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":13538,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8337:17:57","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"8324:30:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},{"id":13539,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13517,"src":"8356:1:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":13540,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8311:47:57","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":13526,"id":13541,"nodeType":"Return","src":"8304:54:57"}]}},{"assignments":[13545],"declarations":[{"constant":false,"id":13545,"mutability":"mutable","name":"signer","nameLocation":"8471:6:57","nodeType":"VariableDeclaration","scope":13582,"src":"8463:14:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13544,"name":"address","nodeType":"ElementaryTypeName","src":"8463:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":13552,"initialValue":{"arguments":[{"id":13547,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13511,"src":"8490:4:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13548,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13513,"src":"8496:1:57","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":13549,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13515,"src":"8499:1:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13550,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13517,"src":"8502:1:57","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":13546,"name":"ecrecover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-6,"src":"8480:9:57","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":13551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8480:24:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"8463:41:57"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":13558,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13553,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13545,"src":"8518:6:57","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":13556,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8536:1:57","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":13555,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8528:7:57","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13554,"name":"address","nodeType":"ElementaryTypeName","src":"8528:7:57","typeDescriptions":{}}},"id":13557,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8528:10:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8518:20:57","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13572,"nodeType":"IfStatement","src":"8514:113:57","trueBody":{"id":13571,"nodeType":"Block","src":"8540:87:57","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":13561,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8570:1:57","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":13560,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8562:7:57","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13559,"name":"address","nodeType":"ElementaryTypeName","src":"8562:7:57","typeDescriptions":{}}},"id":13562,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8562:10:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":13563,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13246,"src":"8574:12:57","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$13246_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":13564,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8587:16:57","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":13243,"src":"8574:29:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"hexValue":"30","id":13567,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8613:1:57","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":13566,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8605:7:57","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":13565,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8605:7:57","typeDescriptions":{}}},"id":13568,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8605:10:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":13569,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"8561:55:57","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":13526,"id":13570,"nodeType":"Return","src":"8554:62:57"}]}},{"expression":{"components":[{"id":13573,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13545,"src":"8645:6:57","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":13574,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13246,"src":"8653:12:57","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$13246_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":13575,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8666:7:57","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":13242,"src":"8653:20:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"hexValue":"30","id":13578,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8683:1:57","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":13577,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8675:7:57","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":13576,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8675:7:57","typeDescriptions":{}}},"id":13579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8675:10:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":13580,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8644:42:57","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":13526,"id":13581,"nodeType":"Return","src":"8637:49:57"}]},"documentation":{"id":13509,"nodeType":"StructuredDocumentation","src":"7012:125:57","text":" @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n `r` and `s` signature fields separately."},"id":13583,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"7151:10:57","nodeType":"FunctionDefinition","parameters":{"id":13518,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13511,"mutability":"mutable","name":"hash","nameLocation":"7179:4:57","nodeType":"VariableDeclaration","scope":13583,"src":"7171:12:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13510,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7171:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":13513,"mutability":"mutable","name":"v","nameLocation":"7199:1:57","nodeType":"VariableDeclaration","scope":13583,"src":"7193:7:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13512,"name":"uint8","nodeType":"ElementaryTypeName","src":"7193:5:57","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":13515,"mutability":"mutable","name":"r","nameLocation":"7218:1:57","nodeType":"VariableDeclaration","scope":13583,"src":"7210:9:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13514,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7210:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":13517,"mutability":"mutable","name":"s","nameLocation":"7237:1:57","nodeType":"VariableDeclaration","scope":13583,"src":"7229:9:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13516,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7229:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7161:83:57"},"returnParameters":{"id":13526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13520,"mutability":"mutable","name":"recovered","nameLocation":"7276:9:57","nodeType":"VariableDeclaration","scope":13583,"src":"7268:17:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13519,"name":"address","nodeType":"ElementaryTypeName","src":"7268:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":13523,"mutability":"mutable","name":"err","nameLocation":"7300:3:57","nodeType":"VariableDeclaration","scope":13583,"src":"7287:16:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":13522,"nodeType":"UserDefinedTypeName","pathNode":{"id":13521,"name":"RecoverError","nameLocations":["7287:12:57"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"7287:12:57"},"referencedDeclaration":13246,"src":"7287:12:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":13525,"mutability":"mutable","name":"errArg","nameLocation":"7313:6:57","nodeType":"VariableDeclaration","scope":13583,"src":"7305:14:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13524,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7305:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7267:53:57"},"scope":13697,"src":"7142:1551:57","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13618,"nodeType":"Block","src":"8920:166:57","statements":[{"assignments":[13598,13601,13603],"declarations":[{"constant":false,"id":13598,"mutability":"mutable","name":"recovered","nameLocation":"8939:9:57","nodeType":"VariableDeclaration","scope":13618,"src":"8931:17:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13597,"name":"address","nodeType":"ElementaryTypeName","src":"8931:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":13601,"mutability":"mutable","name":"error","nameLocation":"8963:5:57","nodeType":"VariableDeclaration","scope":13618,"src":"8950:18:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":13600,"nodeType":"UserDefinedTypeName","pathNode":{"id":13599,"name":"RecoverError","nameLocations":["8950:12:57"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"8950:12:57"},"referencedDeclaration":13246,"src":"8950:12:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":13603,"mutability":"mutable","name":"errorArg","nameLocation":"8978:8:57","nodeType":"VariableDeclaration","scope":13618,"src":"8970:16:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13602,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8970:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":13610,"initialValue":{"arguments":[{"id":13605,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13586,"src":"9001:4:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13606,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13588,"src":"9007:1:57","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":13607,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13590,"src":"9010:1:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13608,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13592,"src":"9013:1:57","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":13604,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[13312,13475,13583],"referencedDeclaration":13583,"src":"8990:10:57","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":13609,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8990:25:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$13246_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"8930:85:57"},{"expression":{"arguments":[{"id":13612,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13601,"src":"9037:5:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},{"id":13613,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"9044:8:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":13611,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13696,"src":"9025:11:57","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$13246_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":13614,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9025:28:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13615,"nodeType":"ExpressionStatement","src":"9025:28:57"},{"expression":{"id":13616,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13598,"src":"9070:9:57","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":13596,"id":13617,"nodeType":"Return","src":"9063:16:57"}]},"documentation":{"id":13584,"nodeType":"StructuredDocumentation","src":"8699:122:57","text":" @dev Overload of {ECDSA-recover} that receives the `v`,\n `r` and `s` signature fields separately."},"id":13619,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"8835:7:57","nodeType":"FunctionDefinition","parameters":{"id":13593,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13586,"mutability":"mutable","name":"hash","nameLocation":"8851:4:57","nodeType":"VariableDeclaration","scope":13619,"src":"8843:12:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13585,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8843:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":13588,"mutability":"mutable","name":"v","nameLocation":"8863:1:57","nodeType":"VariableDeclaration","scope":13619,"src":"8857:7:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13587,"name":"uint8","nodeType":"ElementaryTypeName","src":"8857:5:57","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":13590,"mutability":"mutable","name":"r","nameLocation":"8874:1:57","nodeType":"VariableDeclaration","scope":13619,"src":"8866:9:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13589,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8866:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":13592,"mutability":"mutable","name":"s","nameLocation":"8885:1:57","nodeType":"VariableDeclaration","scope":13619,"src":"8877:9:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13591,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8877:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8842:45:57"},"returnParameters":{"id":13596,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13595,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13619,"src":"8911:7:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13594,"name":"address","nodeType":"ElementaryTypeName","src":"8911:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8910:9:57"},"scope":13697,"src":"8826:260:57","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13632,"nodeType":"Block","src":"9672:793:57","statements":[{"AST":{"nativeSrc":"9707:752:57","nodeType":"YulBlock","src":"9707:752:57","statements":[{"cases":[{"body":{"nativeSrc":"9860:171:57","nodeType":"YulBlock","src":"9860:171:57","statements":[{"nativeSrc":"9878:32:57","nodeType":"YulAssignment","src":"9878:32:57","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"9893:9:57","nodeType":"YulIdentifier","src":"9893:9:57"},{"kind":"number","nativeSrc":"9904:4:57","nodeType":"YulLiteral","src":"9904:4:57","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"9889:3:57","nodeType":"YulIdentifier","src":"9889:3:57"},"nativeSrc":"9889:20:57","nodeType":"YulFunctionCall","src":"9889:20:57"}],"functionName":{"name":"mload","nativeSrc":"9883:5:57","nodeType":"YulIdentifier","src":"9883:5:57"},"nativeSrc":"9883:27:57","nodeType":"YulFunctionCall","src":"9883:27:57"},"variableNames":[{"name":"r","nativeSrc":"9878:1:57","nodeType":"YulIdentifier","src":"9878:1:57"}]},{"nativeSrc":"9927:32:57","nodeType":"YulAssignment","src":"9927:32:57","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"9942:9:57","nodeType":"YulIdentifier","src":"9942:9:57"},{"kind":"number","nativeSrc":"9953:4:57","nodeType":"YulLiteral","src":"9953:4:57","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"9938:3:57","nodeType":"YulIdentifier","src":"9938:3:57"},"nativeSrc":"9938:20:57","nodeType":"YulFunctionCall","src":"9938:20:57"}],"functionName":{"name":"mload","nativeSrc":"9932:5:57","nodeType":"YulIdentifier","src":"9932:5:57"},"nativeSrc":"9932:27:57","nodeType":"YulFunctionCall","src":"9932:27:57"},"variableNames":[{"name":"s","nativeSrc":"9927:1:57","nodeType":"YulIdentifier","src":"9927:1:57"}]},{"nativeSrc":"9976:41:57","nodeType":"YulAssignment","src":"9976:41:57","value":{"arguments":[{"kind":"number","nativeSrc":"9986:1:57","nodeType":"YulLiteral","src":"9986:1:57","type":"","value":"0"},{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"9999:9:57","nodeType":"YulIdentifier","src":"9999:9:57"},{"kind":"number","nativeSrc":"10010:4:57","nodeType":"YulLiteral","src":"10010:4:57","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"9995:3:57","nodeType":"YulIdentifier","src":"9995:3:57"},"nativeSrc":"9995:20:57","nodeType":"YulFunctionCall","src":"9995:20:57"}],"functionName":{"name":"mload","nativeSrc":"9989:5:57","nodeType":"YulIdentifier","src":"9989:5:57"},"nativeSrc":"9989:27:57","nodeType":"YulFunctionCall","src":"9989:27:57"}],"functionName":{"name":"byte","nativeSrc":"9981:4:57","nodeType":"YulIdentifier","src":"9981:4:57"},"nativeSrc":"9981:36:57","nodeType":"YulFunctionCall","src":"9981:36:57"},"variableNames":[{"name":"v","nativeSrc":"9976:1:57","nodeType":"YulIdentifier","src":"9976:1:57"}]}]},"nativeSrc":"9852:179:57","nodeType":"YulCase","src":"9852:179:57","value":{"kind":"number","nativeSrc":"9857:2:57","nodeType":"YulLiteral","src":"9857:2:57","type":"","value":"65"}},{"body":{"nativeSrc":"10138:206:57","nodeType":"YulBlock","src":"10138:206:57","statements":[{"nativeSrc":"10156:37:57","nodeType":"YulVariableDeclaration","src":"10156:37:57","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"10176:9:57","nodeType":"YulIdentifier","src":"10176:9:57"},{"kind":"number","nativeSrc":"10187:4:57","nodeType":"YulLiteral","src":"10187:4:57","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"10172:3:57","nodeType":"YulIdentifier","src":"10172:3:57"},"nativeSrc":"10172:20:57","nodeType":"YulFunctionCall","src":"10172:20:57"}],"functionName":{"name":"mload","nativeSrc":"10166:5:57","nodeType":"YulIdentifier","src":"10166:5:57"},"nativeSrc":"10166:27:57","nodeType":"YulFunctionCall","src":"10166:27:57"},"variables":[{"name":"vs","nativeSrc":"10160:2:57","nodeType":"YulTypedName","src":"10160:2:57","type":""}]},{"nativeSrc":"10210:32:57","nodeType":"YulAssignment","src":"10210:32:57","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"10225:9:57","nodeType":"YulIdentifier","src":"10225:9:57"},{"kind":"number","nativeSrc":"10236:4:57","nodeType":"YulLiteral","src":"10236:4:57","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"10221:3:57","nodeType":"YulIdentifier","src":"10221:3:57"},"nativeSrc":"10221:20:57","nodeType":"YulFunctionCall","src":"10221:20:57"}],"functionName":{"name":"mload","nativeSrc":"10215:5:57","nodeType":"YulIdentifier","src":"10215:5:57"},"nativeSrc":"10215:27:57","nodeType":"YulFunctionCall","src":"10215:27:57"},"variableNames":[{"name":"r","nativeSrc":"10210:1:57","nodeType":"YulIdentifier","src":"10210:1:57"}]},{"nativeSrc":"10259:28:57","nodeType":"YulAssignment","src":"10259:28:57","value":{"arguments":[{"name":"vs","nativeSrc":"10268:2:57","nodeType":"YulIdentifier","src":"10268:2:57"},{"arguments":[{"kind":"number","nativeSrc":"10276:1:57","nodeType":"YulLiteral","src":"10276:1:57","type":"","value":"1"},{"arguments":[{"kind":"number","nativeSrc":"10283:1:57","nodeType":"YulLiteral","src":"10283:1:57","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10279:3:57","nodeType":"YulIdentifier","src":"10279:3:57"},"nativeSrc":"10279:6:57","nodeType":"YulFunctionCall","src":"10279:6:57"}],"functionName":{"name":"shr","nativeSrc":"10272:3:57","nodeType":"YulIdentifier","src":"10272:3:57"},"nativeSrc":"10272:14:57","nodeType":"YulFunctionCall","src":"10272:14:57"}],"functionName":{"name":"and","nativeSrc":"10264:3:57","nodeType":"YulIdentifier","src":"10264:3:57"},"nativeSrc":"10264:23:57","nodeType":"YulFunctionCall","src":"10264:23:57"},"variableNames":[{"name":"s","nativeSrc":"10259:1:57","nodeType":"YulIdentifier","src":"10259:1:57"}]},{"nativeSrc":"10304:26:57","nodeType":"YulAssignment","src":"10304:26:57","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"10317:3:57","nodeType":"YulLiteral","src":"10317:3:57","type":"","value":"255"},{"name":"vs","nativeSrc":"10322:2:57","nodeType":"YulIdentifier","src":"10322:2:57"}],"functionName":{"name":"shr","nativeSrc":"10313:3:57","nodeType":"YulIdentifier","src":"10313:3:57"},"nativeSrc":"10313:12:57","nodeType":"YulFunctionCall","src":"10313:12:57"},{"kind":"number","nativeSrc":"10327:2:57","nodeType":"YulLiteral","src":"10327:2:57","type":"","value":"27"}],"functionName":{"name":"add","nativeSrc":"10309:3:57","nodeType":"YulIdentifier","src":"10309:3:57"},"nativeSrc":"10309:21:57","nodeType":"YulFunctionCall","src":"10309:21:57"},"variableNames":[{"name":"v","nativeSrc":"10304:1:57","nodeType":"YulIdentifier","src":"10304:1:57"}]}]},"nativeSrc":"10130:214:57","nodeType":"YulCase","src":"10130:214:57","value":{"kind":"number","nativeSrc":"10135:2:57","nodeType":"YulLiteral","src":"10135:2:57","type":"","value":"64"}},{"body":{"nativeSrc":"10365:84:57","nodeType":"YulBlock","src":"10365:84:57","statements":[{"nativeSrc":"10383:6:57","nodeType":"YulAssignment","src":"10383:6:57","value":{"kind":"number","nativeSrc":"10388:1:57","nodeType":"YulLiteral","src":"10388:1:57","type":"","value":"0"},"variableNames":[{"name":"r","nativeSrc":"10383:1:57","nodeType":"YulIdentifier","src":"10383:1:57"}]},{"nativeSrc":"10406:6:57","nodeType":"YulAssignment","src":"10406:6:57","value":{"kind":"number","nativeSrc":"10411:1:57","nodeType":"YulLiteral","src":"10411:1:57","type":"","value":"0"},"variableNames":[{"name":"s","nativeSrc":"10406:1:57","nodeType":"YulIdentifier","src":"10406:1:57"}]},{"nativeSrc":"10429:6:57","nodeType":"YulAssignment","src":"10429:6:57","value":{"kind":"number","nativeSrc":"10434:1:57","nodeType":"YulLiteral","src":"10434:1:57","type":"","value":"0"},"variableNames":[{"name":"v","nativeSrc":"10429:1:57","nodeType":"YulIdentifier","src":"10429:1:57"}]}]},"nativeSrc":"10357:92:57","nodeType":"YulCase","src":"10357:92:57","value":"default"}],"expression":{"arguments":[{"name":"signature","nativeSrc":"9776:9:57","nodeType":"YulIdentifier","src":"9776:9:57"}],"functionName":{"name":"mload","nativeSrc":"9770:5:57","nodeType":"YulIdentifier","src":"9770:5:57"},"nativeSrc":"9770:16:57","nodeType":"YulFunctionCall","src":"9770:16:57"},"nativeSrc":"9763:686:57","nodeType":"YulSwitch","src":"9763:686:57"}]},"evmVersion":"prague","externalReferences":[{"declaration":13627,"isOffset":false,"isSlot":false,"src":"10210:1:57","valueSize":1},{"declaration":13627,"isOffset":false,"isSlot":false,"src":"10383:1:57","valueSize":1},{"declaration":13627,"isOffset":false,"isSlot":false,"src":"9878:1:57","valueSize":1},{"declaration":13629,"isOffset":false,"isSlot":false,"src":"10259:1:57","valueSize":1},{"declaration":13629,"isOffset":false,"isSlot":false,"src":"10406:1:57","valueSize":1},{"declaration":13629,"isOffset":false,"isSlot":false,"src":"9927:1:57","valueSize":1},{"declaration":13622,"isOffset":false,"isSlot":false,"src":"10176:9:57","valueSize":1},{"declaration":13622,"isOffset":false,"isSlot":false,"src":"10225:9:57","valueSize":1},{"declaration":13622,"isOffset":false,"isSlot":false,"src":"9776:9:57","valueSize":1},{"declaration":13622,"isOffset":false,"isSlot":false,"src":"9893:9:57","valueSize":1},{"declaration":13622,"isOffset":false,"isSlot":false,"src":"9942:9:57","valueSize":1},{"declaration":13622,"isOffset":false,"isSlot":false,"src":"9999:9:57","valueSize":1},{"declaration":13625,"isOffset":false,"isSlot":false,"src":"10304:1:57","valueSize":1},{"declaration":13625,"isOffset":false,"isSlot":false,"src":"10429:1:57","valueSize":1},{"declaration":13625,"isOffset":false,"isSlot":false,"src":"9976:1:57","valueSize":1}],"flags":["memory-safe"],"id":13631,"nodeType":"InlineAssembly","src":"9682:777:57"}]},"documentation":{"id":13620,"nodeType":"StructuredDocumentation","src":"9092:482:57","text":" @dev Parse a signature into its `v`, `r` and `s` components. Supports 65-byte and 64-byte (ERC-2098)\n formats. Returns (0,0,0) for invalid signatures.\n For 64-byte signatures, `v` is automatically normalized to 27 or 28.\n For 65-byte signatures, `v` is returned as-is and MUST already be 27 or 28 for use with ecrecover.\n Consider validating the result before use, or use {tryRecover}/{recover} which perform full validation."},"id":13633,"implemented":true,"kind":"function","modifiers":[],"name":"parse","nameLocation":"9588:5:57","nodeType":"FunctionDefinition","parameters":{"id":13623,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13622,"mutability":"mutable","name":"signature","nameLocation":"9607:9:57","nodeType":"VariableDeclaration","scope":13633,"src":"9594:22:57","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":13621,"name":"bytes","nodeType":"ElementaryTypeName","src":"9594:5:57","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"9593:24:57"},"returnParameters":{"id":13630,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13625,"mutability":"mutable","name":"v","nameLocation":"9647:1:57","nodeType":"VariableDeclaration","scope":13633,"src":"9641:7:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13624,"name":"uint8","nodeType":"ElementaryTypeName","src":"9641:5:57","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":13627,"mutability":"mutable","name":"r","nameLocation":"9658:1:57","nodeType":"VariableDeclaration","scope":13633,"src":"9650:9:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13626,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9650:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":13629,"mutability":"mutable","name":"s","nameLocation":"9669:1:57","nodeType":"VariableDeclaration","scope":13633,"src":"9661:9:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13628,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9661:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"9640:31:57"},"scope":13697,"src":"9579:886:57","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13646,"nodeType":"Block","src":"10656:841:57","statements":[{"AST":{"nativeSrc":"10691:800:57","nodeType":"YulBlock","src":"10691:800:57","statements":[{"cases":[{"body":{"nativeSrc":"10844:202:57","nodeType":"YulBlock","src":"10844:202:57","statements":[{"nativeSrc":"10862:35:57","nodeType":"YulAssignment","src":"10862:35:57","value":{"arguments":[{"name":"signature.offset","nativeSrc":"10880:16:57","nodeType":"YulIdentifier","src":"10880:16:57"}],"functionName":{"name":"calldataload","nativeSrc":"10867:12:57","nodeType":"YulIdentifier","src":"10867:12:57"},"nativeSrc":"10867:30:57","nodeType":"YulFunctionCall","src":"10867:30:57"},"variableNames":[{"name":"r","nativeSrc":"10862:1:57","nodeType":"YulIdentifier","src":"10862:1:57"}]},{"nativeSrc":"10914:46:57","nodeType":"YulAssignment","src":"10914:46:57","value":{"arguments":[{"arguments":[{"name":"signature.offset","nativeSrc":"10936:16:57","nodeType":"YulIdentifier","src":"10936:16:57"},{"kind":"number","nativeSrc":"10954:4:57","nodeType":"YulLiteral","src":"10954:4:57","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"10932:3:57","nodeType":"YulIdentifier","src":"10932:3:57"},"nativeSrc":"10932:27:57","nodeType":"YulFunctionCall","src":"10932:27:57"}],"functionName":{"name":"calldataload","nativeSrc":"10919:12:57","nodeType":"YulIdentifier","src":"10919:12:57"},"nativeSrc":"10919:41:57","nodeType":"YulFunctionCall","src":"10919:41:57"},"variableNames":[{"name":"s","nativeSrc":"10914:1:57","nodeType":"YulIdentifier","src":"10914:1:57"}]},{"nativeSrc":"10977:55:57","nodeType":"YulAssignment","src":"10977:55:57","value":{"arguments":[{"kind":"number","nativeSrc":"10987:1:57","nodeType":"YulLiteral","src":"10987:1:57","type":"","value":"0"},{"arguments":[{"arguments":[{"name":"signature.offset","nativeSrc":"11007:16:57","nodeType":"YulIdentifier","src":"11007:16:57"},{"kind":"number","nativeSrc":"11025:4:57","nodeType":"YulLiteral","src":"11025:4:57","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"11003:3:57","nodeType":"YulIdentifier","src":"11003:3:57"},"nativeSrc":"11003:27:57","nodeType":"YulFunctionCall","src":"11003:27:57"}],"functionName":{"name":"calldataload","nativeSrc":"10990:12:57","nodeType":"YulIdentifier","src":"10990:12:57"},"nativeSrc":"10990:41:57","nodeType":"YulFunctionCall","src":"10990:41:57"}],"functionName":{"name":"byte","nativeSrc":"10982:4:57","nodeType":"YulIdentifier","src":"10982:4:57"},"nativeSrc":"10982:50:57","nodeType":"YulFunctionCall","src":"10982:50:57"},"variableNames":[{"name":"v","nativeSrc":"10977:1:57","nodeType":"YulIdentifier","src":"10977:1:57"}]}]},"nativeSrc":"10836:210:57","nodeType":"YulCase","src":"10836:210:57","value":{"kind":"number","nativeSrc":"10841:2:57","nodeType":"YulLiteral","src":"10841:2:57","type":"","value":"65"}},{"body":{"nativeSrc":"11153:223:57","nodeType":"YulBlock","src":"11153:223:57","statements":[{"nativeSrc":"11171:51:57","nodeType":"YulVariableDeclaration","src":"11171:51:57","value":{"arguments":[{"arguments":[{"name":"signature.offset","nativeSrc":"11198:16:57","nodeType":"YulIdentifier","src":"11198:16:57"},{"kind":"number","nativeSrc":"11216:4:57","nodeType":"YulLiteral","src":"11216:4:57","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"11194:3:57","nodeType":"YulIdentifier","src":"11194:3:57"},"nativeSrc":"11194:27:57","nodeType":"YulFunctionCall","src":"11194:27:57"}],"functionName":{"name":"calldataload","nativeSrc":"11181:12:57","nodeType":"YulIdentifier","src":"11181:12:57"},"nativeSrc":"11181:41:57","nodeType":"YulFunctionCall","src":"11181:41:57"},"variables":[{"name":"vs","nativeSrc":"11175:2:57","nodeType":"YulTypedName","src":"11175:2:57","type":""}]},{"nativeSrc":"11239:35:57","nodeType":"YulAssignment","src":"11239:35:57","value":{"arguments":[{"name":"signature.offset","nativeSrc":"11257:16:57","nodeType":"YulIdentifier","src":"11257:16:57"}],"functionName":{"name":"calldataload","nativeSrc":"11244:12:57","nodeType":"YulIdentifier","src":"11244:12:57"},"nativeSrc":"11244:30:57","nodeType":"YulFunctionCall","src":"11244:30:57"},"variableNames":[{"name":"r","nativeSrc":"11239:1:57","nodeType":"YulIdentifier","src":"11239:1:57"}]},{"nativeSrc":"11291:28:57","nodeType":"YulAssignment","src":"11291:28:57","value":{"arguments":[{"name":"vs","nativeSrc":"11300:2:57","nodeType":"YulIdentifier","src":"11300:2:57"},{"arguments":[{"kind":"number","nativeSrc":"11308:1:57","nodeType":"YulLiteral","src":"11308:1:57","type":"","value":"1"},{"arguments":[{"kind":"number","nativeSrc":"11315:1:57","nodeType":"YulLiteral","src":"11315:1:57","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"11311:3:57","nodeType":"YulIdentifier","src":"11311:3:57"},"nativeSrc":"11311:6:57","nodeType":"YulFunctionCall","src":"11311:6:57"}],"functionName":{"name":"shr","nativeSrc":"11304:3:57","nodeType":"YulIdentifier","src":"11304:3:57"},"nativeSrc":"11304:14:57","nodeType":"YulFunctionCall","src":"11304:14:57"}],"functionName":{"name":"and","nativeSrc":"11296:3:57","nodeType":"YulIdentifier","src":"11296:3:57"},"nativeSrc":"11296:23:57","nodeType":"YulFunctionCall","src":"11296:23:57"},"variableNames":[{"name":"s","nativeSrc":"11291:1:57","nodeType":"YulIdentifier","src":"11291:1:57"}]},{"nativeSrc":"11336:26:57","nodeType":"YulAssignment","src":"11336:26:57","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11349:3:57","nodeType":"YulLiteral","src":"11349:3:57","type":"","value":"255"},{"name":"vs","nativeSrc":"11354:2:57","nodeType":"YulIdentifier","src":"11354:2:57"}],"functionName":{"name":"shr","nativeSrc":"11345:3:57","nodeType":"YulIdentifier","src":"11345:3:57"},"nativeSrc":"11345:12:57","nodeType":"YulFunctionCall","src":"11345:12:57"},{"kind":"number","nativeSrc":"11359:2:57","nodeType":"YulLiteral","src":"11359:2:57","type":"","value":"27"}],"functionName":{"name":"add","nativeSrc":"11341:3:57","nodeType":"YulIdentifier","src":"11341:3:57"},"nativeSrc":"11341:21:57","nodeType":"YulFunctionCall","src":"11341:21:57"},"variableNames":[{"name":"v","nativeSrc":"11336:1:57","nodeType":"YulIdentifier","src":"11336:1:57"}]}]},"nativeSrc":"11145:231:57","nodeType":"YulCase","src":"11145:231:57","value":{"kind":"number","nativeSrc":"11150:2:57","nodeType":"YulLiteral","src":"11150:2:57","type":"","value":"64"}},{"body":{"nativeSrc":"11397:84:57","nodeType":"YulBlock","src":"11397:84:57","statements":[{"nativeSrc":"11415:6:57","nodeType":"YulAssignment","src":"11415:6:57","value":{"kind":"number","nativeSrc":"11420:1:57","nodeType":"YulLiteral","src":"11420:1:57","type":"","value":"0"},"variableNames":[{"name":"r","nativeSrc":"11415:1:57","nodeType":"YulIdentifier","src":"11415:1:57"}]},{"nativeSrc":"11438:6:57","nodeType":"YulAssignment","src":"11438:6:57","value":{"kind":"number","nativeSrc":"11443:1:57","nodeType":"YulLiteral","src":"11443:1:57","type":"","value":"0"},"variableNames":[{"name":"s","nativeSrc":"11438:1:57","nodeType":"YulIdentifier","src":"11438:1:57"}]},{"nativeSrc":"11461:6:57","nodeType":"YulAssignment","src":"11461:6:57","value":{"kind":"number","nativeSrc":"11466:1:57","nodeType":"YulLiteral","src":"11466:1:57","type":"","value":"0"},"variableNames":[{"name":"v","nativeSrc":"11461:1:57","nodeType":"YulIdentifier","src":"11461:1:57"}]}]},"nativeSrc":"11389:92:57","nodeType":"YulCase","src":"11389:92:57","value":"default"}],"expression":{"name":"signature.length","nativeSrc":"10754:16:57","nodeType":"YulIdentifier","src":"10754:16:57"},"nativeSrc":"10747:734:57","nodeType":"YulSwitch","src":"10747:734:57"}]},"evmVersion":"prague","externalReferences":[{"declaration":13641,"isOffset":false,"isSlot":false,"src":"10862:1:57","valueSize":1},{"declaration":13641,"isOffset":false,"isSlot":false,"src":"11239:1:57","valueSize":1},{"declaration":13641,"isOffset":false,"isSlot":false,"src":"11415:1:57","valueSize":1},{"declaration":13643,"isOffset":false,"isSlot":false,"src":"10914:1:57","valueSize":1},{"declaration":13643,"isOffset":false,"isSlot":false,"src":"11291:1:57","valueSize":1},{"declaration":13643,"isOffset":false,"isSlot":false,"src":"11438:1:57","valueSize":1},{"declaration":13636,"isOffset":false,"isSlot":false,"src":"10754:16:57","suffix":"length","valueSize":1},{"declaration":13636,"isOffset":true,"isSlot":false,"src":"10880:16:57","suffix":"offset","valueSize":1},{"declaration":13636,"isOffset":true,"isSlot":false,"src":"10936:16:57","suffix":"offset","valueSize":1},{"declaration":13636,"isOffset":true,"isSlot":false,"src":"11007:16:57","suffix":"offset","valueSize":1},{"declaration":13636,"isOffset":true,"isSlot":false,"src":"11198:16:57","suffix":"offset","valueSize":1},{"declaration":13636,"isOffset":true,"isSlot":false,"src":"11257:16:57","suffix":"offset","valueSize":1},{"declaration":13639,"isOffset":false,"isSlot":false,"src":"10977:1:57","valueSize":1},{"declaration":13639,"isOffset":false,"isSlot":false,"src":"11336:1:57","valueSize":1},{"declaration":13639,"isOffset":false,"isSlot":false,"src":"11461:1:57","valueSize":1}],"flags":["memory-safe"],"id":13645,"nodeType":"InlineAssembly","src":"10666:825:57"}]},"documentation":{"id":13634,"nodeType":"StructuredDocumentation","src":"10471:77:57","text":" @dev Variant of {parse} that takes a signature in calldata"},"id":13647,"implemented":true,"kind":"function","modifiers":[],"name":"parseCalldata","nameLocation":"10562:13:57","nodeType":"FunctionDefinition","parameters":{"id":13637,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13636,"mutability":"mutable","name":"signature","nameLocation":"10591:9:57","nodeType":"VariableDeclaration","scope":13647,"src":"10576:24:57","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":13635,"name":"bytes","nodeType":"ElementaryTypeName","src":"10576:5:57","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"10575:26:57"},"returnParameters":{"id":13644,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13639,"mutability":"mutable","name":"v","nameLocation":"10631:1:57","nodeType":"VariableDeclaration","scope":13647,"src":"10625:7:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13638,"name":"uint8","nodeType":"ElementaryTypeName","src":"10625:5:57","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":13641,"mutability":"mutable","name":"r","nameLocation":"10642:1:57","nodeType":"VariableDeclaration","scope":13647,"src":"10634:9:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13640,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10634:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":13643,"mutability":"mutable","name":"s","nameLocation":"10653:1:57","nodeType":"VariableDeclaration","scope":13647,"src":"10645:9:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13642,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10645:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"10624:31:57"},"scope":13697,"src":"10553:944:57","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13695,"nodeType":"Block","src":"11702:460:57","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"},"id":13659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13656,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13651,"src":"11716:5:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":13657,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13246,"src":"11725:12:57","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$13246_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":13658,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11738:7:57","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":13242,"src":"11725:20:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},"src":"11716:29:57","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"},"id":13665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13662,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13651,"src":"11812:5:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":13663,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13246,"src":"11821:12:57","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$13246_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":13664,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11834:16:57","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":13243,"src":"11821:29:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},"src":"11812:38:57","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"},"id":13673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13670,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13651,"src":"11917:5:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":13671,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13246,"src":"11926:12:57","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$13246_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":13672,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11939:22:57","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":13244,"src":"11926:35:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},"src":"11917:44:57","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"},"id":13685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13682,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13651,"src":"12051:5:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":13683,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13246,"src":"12060:12:57","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$13246_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":13684,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12073:17:57","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":13245,"src":"12060:30:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},"src":"12051:39:57","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13691,"nodeType":"IfStatement","src":"12047:109:57","trueBody":{"id":13690,"nodeType":"Block","src":"12092:64:57","statements":[{"errorCall":{"arguments":[{"id":13687,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13653,"src":"12136:8:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":13686,"name":"ECDSAInvalidSignatureS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13259,"src":"12113:22:57","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":13688,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12113:32:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13689,"nodeType":"RevertStatement","src":"12106:39:57"}]}},"id":13692,"nodeType":"IfStatement","src":"11913:243:57","trueBody":{"id":13681,"nodeType":"Block","src":"11963:78:57","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":13677,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13653,"src":"12020:8:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":13676,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12012:7:57","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":13675,"name":"uint256","nodeType":"ElementaryTypeName","src":"12012:7:57","typeDescriptions":{}}},"id":13678,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12012:17:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13674,"name":"ECDSAInvalidSignatureLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13254,"src":"11984:27:57","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":13679,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11984:46:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13680,"nodeType":"RevertStatement","src":"11977:53:57"}]}},"id":13693,"nodeType":"IfStatement","src":"11808:348:57","trueBody":{"id":13669,"nodeType":"Block","src":"11852:55:57","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13666,"name":"ECDSAInvalidSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13249,"src":"11873:21:57","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13667,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11873:23:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13668,"nodeType":"RevertStatement","src":"11866:30:57"}]}},"id":13694,"nodeType":"IfStatement","src":"11712:444:57","trueBody":{"id":13661,"nodeType":"Block","src":"11747:55:57","statements":[{"functionReturnParameters":13655,"id":13660,"nodeType":"Return","src":"11761:7:57"}]}}]},"documentation":{"id":13648,"nodeType":"StructuredDocumentation","src":"11503:122:57","text":" @dev Optionally reverts with the corresponding custom error according to the `error` argument provided."},"id":13696,"implemented":true,"kind":"function","modifiers":[],"name":"_throwError","nameLocation":"11639:11:57","nodeType":"FunctionDefinition","parameters":{"id":13654,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13651,"mutability":"mutable","name":"error","nameLocation":"11664:5:57","nodeType":"VariableDeclaration","scope":13696,"src":"11651:18:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":13650,"nodeType":"UserDefinedTypeName","pathNode":{"id":13649,"name":"RecoverError","nameLocations":["11651:12:57"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"11651:12:57"},"referencedDeclaration":13246,"src":"11651:12:57","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$13246","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":13653,"mutability":"mutable","name":"errorArg","nameLocation":"11679:8:57","nodeType":"VariableDeclaration","scope":13696,"src":"11671:16:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13652,"name":"bytes32","nodeType":"ElementaryTypeName","src":"11671:7:57","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"11650:38:57"},"returnParameters":{"id":13655,"nodeType":"ParameterList","parameters":[],"src":"11702:0:57"},"scope":13697,"src":"11630:532:57","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":13698,"src":"344:11820:57","usedErrors":[13249,13254,13259],"usedEvents":[]}],"src":"112:12053:57"},"id":57},"@openzeppelin/contracts/utils/cryptography/EIP712.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/EIP712.sol","exportedSymbols":{"EIP712":[13924],"IERC5267":[6425],"MessageHashUtils":[14050],"ShortString":[11423],"ShortStrings":[11634]},"id":13925,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":13699,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"113:24:58"},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","file":"./MessageHashUtils.sol","id":13701,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":13925,"sourceUnit":14051,"src":"139:56:58","symbolAliases":[{"foreign":{"id":13700,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14050,"src":"147:16:58","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/ShortStrings.sol","file":"../ShortStrings.sol","id":13704,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":13925,"sourceUnit":11635,"src":"196:62:58","symbolAliases":[{"foreign":{"id":13702,"name":"ShortStrings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11634,"src":"204:12:58","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":13703,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11423,"src":"218:11:58","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5267.sol","file":"../../interfaces/IERC5267.sol","id":13706,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":13925,"sourceUnit":6426,"src":"259:55:58","symbolAliases":[{"foreign":{"id":13705,"name":"IERC5267","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6425,"src":"267:8:58","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":13708,"name":"IERC5267","nameLocations":["1988:8:58"],"nodeType":"IdentifierPath","referencedDeclaration":6425,"src":"1988:8:58"},"id":13709,"nodeType":"InheritanceSpecifier","src":"1988:8:58"}],"canonicalName":"EIP712","contractDependencies":[],"contractKind":"contract","documentation":{"id":13707,"nodeType":"StructuredDocumentation","src":"316:1643:58","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":13924,"linearizedBaseContracts":[13924,6425],"name":"EIP712","nameLocation":"1978:6:58","nodeType":"ContractDefinition","nodes":[{"global":false,"id":13711,"libraryName":{"id":13710,"name":"ShortStrings","nameLocations":["2009:12:58"],"nodeType":"IdentifierPath","referencedDeclaration":11634,"src":"2009:12:58"},"nodeType":"UsingForDirective","src":"2003:25:58"},{"constant":true,"id":13716,"mutability":"constant","name":"TYPE_HASH","nameLocation":"2059:9:58","nodeType":"VariableDeclaration","scope":13924,"src":"2034:140:58","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13712,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2034:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429","id":13714,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2089:84:58","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":13713,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2079:9:58","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":13715,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2079:95:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":13718,"mutability":"immutable","name":"_cachedDomainSeparator","nameLocation":"2399:22:58","nodeType":"VariableDeclaration","scope":13924,"src":"2373:48:58","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13717,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2373:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":13720,"mutability":"immutable","name":"_cachedChainId","nameLocation":"2453:14:58","nodeType":"VariableDeclaration","scope":13924,"src":"2427:40:58","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13719,"name":"uint256","nodeType":"ElementaryTypeName","src":"2427:7:58","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":13722,"mutability":"immutable","name":"_cachedThis","nameLocation":"2499:11:58","nodeType":"VariableDeclaration","scope":13924,"src":"2473:37:58","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13721,"name":"address","nodeType":"ElementaryTypeName","src":"2473:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"constant":false,"id":13724,"mutability":"immutable","name":"_hashedName","nameLocation":"2543:11:58","nodeType":"VariableDeclaration","scope":13924,"src":"2517:37:58","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13723,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2517:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":13726,"mutability":"immutable","name":"_hashedVersion","nameLocation":"2586:14:58","nodeType":"VariableDeclaration","scope":13924,"src":"2560:40:58","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13725,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2560:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":13729,"mutability":"immutable","name":"_name","nameLocation":"2637:5:58","nodeType":"VariableDeclaration","scope":13924,"src":"2607:35:58","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"},"typeName":{"id":13728,"nodeType":"UserDefinedTypeName","pathNode":{"id":13727,"name":"ShortString","nameLocations":["2607:11:58"],"nodeType":"IdentifierPath","referencedDeclaration":11423,"src":"2607:11:58"},"referencedDeclaration":11423,"src":"2607:11:58","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"visibility":"private"},{"constant":false,"id":13732,"mutability":"immutable","name":"_version","nameLocation":"2678:8:58","nodeType":"VariableDeclaration","scope":13924,"src":"2648:38:58","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"},"typeName":{"id":13731,"nodeType":"UserDefinedTypeName","pathNode":{"id":13730,"name":"ShortString","nameLocations":["2648:11:58"],"nodeType":"IdentifierPath","referencedDeclaration":11423,"src":"2648:11:58"},"referencedDeclaration":11423,"src":"2648:11:58","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"visibility":"private"},{"constant":false,"id":13734,"mutability":"mutable","name":"_nameFallback","nameLocation":"2757:13:58","nodeType":"VariableDeclaration","scope":13924,"src":"2742:28:58","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":13733,"name":"string","nodeType":"ElementaryTypeName","src":"2742:6:58","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":13736,"mutability":"mutable","name":"_versionFallback","nameLocation":"2841:16:58","nodeType":"VariableDeclaration","scope":13924,"src":"2826:31:58","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":13735,"name":"string","nodeType":"ElementaryTypeName","src":"2826:6:58","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":13793,"nodeType":"Block","src":"3483:376:58","statements":[{"expression":{"id":13749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13744,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13729,"src":"3493:5:58","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":13747,"name":"_nameFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13734,"src":"3532:13:58","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":13745,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13739,"src":"3501:4:58","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":13746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3506:25:58","memberName":"toShortStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":11575,"src":"3501:30:58","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_storage_ptr_$returns$_t_userDefinedValueType$_ShortString_$11423_$attached_to$_t_string_memory_ptr_$","typeString":"function (string memory,string storage pointer) returns (ShortString)"}},"id":13748,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3501:45:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"src":"3493:53:58","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"id":13750,"nodeType":"ExpressionStatement","src":"3493:53:58"},{"expression":{"id":13756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13751,"name":"_version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13732,"src":"3556:8:58","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":13754,"name":"_versionFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13736,"src":"3601:16:58","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":13752,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13741,"src":"3567:7:58","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":13753,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3575:25:58","memberName":"toShortStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":11575,"src":"3567:33:58","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_storage_ptr_$returns$_t_userDefinedValueType$_ShortString_$11423_$attached_to$_t_string_memory_ptr_$","typeString":"function (string memory,string storage pointer) returns (ShortString)"}},"id":13755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3567:51:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"src":"3556:62:58","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"id":13757,"nodeType":"ExpressionStatement","src":"3556:62:58"},{"expression":{"id":13765,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13758,"name":"_hashedName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13724,"src":"3628:11:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":13762,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13739,"src":"3658:4:58","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":13761,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3652:5:58","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":13760,"name":"bytes","nodeType":"ElementaryTypeName","src":"3652:5:58","typeDescriptions":{}}},"id":13763,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3652:11:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":13759,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"3642:9:58","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":13764,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3642:22:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3628:36:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":13766,"nodeType":"ExpressionStatement","src":"3628:36:58"},{"expression":{"id":13774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13767,"name":"_hashedVersion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13726,"src":"3674:14:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":13771,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13741,"src":"3707:7:58","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":13770,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3701:5:58","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":13769,"name":"bytes","nodeType":"ElementaryTypeName","src":"3701:5:58","typeDescriptions":{}}},"id":13772,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3701:14:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":13768,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"3691:9:58","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":13773,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3691:25:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3674:42:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":13775,"nodeType":"ExpressionStatement","src":"3674:42:58"},{"expression":{"id":13779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13776,"name":"_cachedChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13720,"src":"3727:14:58","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":13777,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"3744:5:58","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":13778,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3750:7:58","memberName":"chainid","nodeType":"MemberAccess","src":"3744:13:58","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3727:30:58","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13780,"nodeType":"ExpressionStatement","src":"3727:30:58"},{"expression":{"id":13784,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13781,"name":"_cachedDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13718,"src":"3767:22:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":13782,"name":"_buildDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13841,"src":"3792:21:58","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":13783,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3792:23:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3767:48:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":13785,"nodeType":"ExpressionStatement","src":"3767:48:58"},{"expression":{"id":13791,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13786,"name":"_cachedThis","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13722,"src":"3825:11:58","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":13789,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3847:4:58","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$13924","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$13924","typeString":"contract EIP712"}],"id":13788,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3839:7:58","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13787,"name":"address","nodeType":"ElementaryTypeName","src":"3839:7:58","typeDescriptions":{}}},"id":13790,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3839:13:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3825:27:58","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":13792,"nodeType":"ExpressionStatement","src":"3825:27:58"}]},"documentation":{"id":13737,"nodeType":"StructuredDocumentation","src":"2864:559:58","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":13794,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":13742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13739,"mutability":"mutable","name":"name","nameLocation":"3454:4:58","nodeType":"VariableDeclaration","scope":13794,"src":"3440:18:58","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":13738,"name":"string","nodeType":"ElementaryTypeName","src":"3440:6:58","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":13741,"mutability":"mutable","name":"version","nameLocation":"3474:7:58","nodeType":"VariableDeclaration","scope":13794,"src":"3460:21:58","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":13740,"name":"string","nodeType":"ElementaryTypeName","src":"3460:6:58","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3439:43:58"},"returnParameters":{"id":13743,"nodeType":"ParameterList","parameters":[],"src":"3483:0:58"},"scope":13924,"src":"3428:431:58","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":13819,"nodeType":"Block","src":"4007:200:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":13810,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":13805,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13802,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4029:4:58","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$13924","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$13924","typeString":"contract EIP712"}],"id":13801,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4021:7:58","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13800,"name":"address","nodeType":"ElementaryTypeName","src":"4021:7:58","typeDescriptions":{}}},"id":13803,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4021:13:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":13804,"name":"_cachedThis","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13722,"src":"4038:11:58","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4021:28:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":13806,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"4053:5:58","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":13807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4059:7:58","memberName":"chainid","nodeType":"MemberAccess","src":"4053:13:58","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":13808,"name":"_cachedChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13720,"src":"4070:14:58","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4053:31:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4021:63:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13817,"nodeType":"Block","src":"4146:55:58","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":13814,"name":"_buildDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13841,"src":"4167:21:58","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":13815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4167:23:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":13799,"id":13816,"nodeType":"Return","src":"4160:30:58"}]},"id":13818,"nodeType":"IfStatement","src":"4017:184:58","trueBody":{"id":13813,"nodeType":"Block","src":"4086:54:58","statements":[{"expression":{"id":13811,"name":"_cachedDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13718,"src":"4107:22:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":13799,"id":13812,"nodeType":"Return","src":"4100:29:58"}]}}]},"documentation":{"id":13795,"nodeType":"StructuredDocumentation","src":"3865:75:58","text":" @dev Returns the domain separator for the current chain."},"id":13820,"implemented":true,"kind":"function","modifiers":[],"name":"_domainSeparatorV4","nameLocation":"3954:18:58","nodeType":"FunctionDefinition","parameters":{"id":13796,"nodeType":"ParameterList","parameters":[],"src":"3972:2:58"},"returnParameters":{"id":13799,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13798,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13820,"src":"3998:7:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13797,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3998:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3997:9:58"},"scope":13924,"src":"3945:262:58","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13840,"nodeType":"Block","src":"4277:115:58","statements":[{"expression":{"arguments":[{"arguments":[{"id":13828,"name":"TYPE_HASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13716,"src":"4315:9:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13829,"name":"_hashedName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13724,"src":"4326:11:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13830,"name":"_hashedVersion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13726,"src":"4339:14:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":13831,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"4355:5:58","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":13832,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4361:7:58","memberName":"chainid","nodeType":"MemberAccess","src":"4355:13:58","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":13835,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4378:4:58","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$13924","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$13924","typeString":"contract EIP712"}],"id":13834,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4370:7:58","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13833,"name":"address","nodeType":"ElementaryTypeName","src":"4370:7:58","typeDescriptions":{}}},"id":13836,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4370:13:58","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":13826,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4304:3:58","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":13827,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4308:6:58","memberName":"encode","nodeType":"MemberAccess","src":"4304:10:58","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":13837,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4304:80:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":13825,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4294:9:58","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":13838,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4294:91:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":13824,"id":13839,"nodeType":"Return","src":"4287:98:58"}]},"id":13841,"implemented":true,"kind":"function","modifiers":[],"name":"_buildDomainSeparator","nameLocation":"4222:21:58","nodeType":"FunctionDefinition","parameters":{"id":13821,"nodeType":"ParameterList","parameters":[],"src":"4243:2:58"},"returnParameters":{"id":13824,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13823,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13841,"src":"4268:7:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13822,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4268:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4267:9:58"},"scope":13924,"src":"4213:179:58","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":13856,"nodeType":"Block","src":"5103:90:58","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":13851,"name":"_domainSeparatorV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13820,"src":"5153:18:58","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":13852,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5153:20:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13853,"name":"structHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13844,"src":"5175:10:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":13849,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14050,"src":"5120:16:58","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_MessageHashUtils_$14050_$","typeString":"type(library MessageHashUtils)"}},"id":13850,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5137:15:58","memberName":"toTypedDataHash","nodeType":"MemberAccess","referencedDeclaration":14049,"src":"5120:32:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32,bytes32) pure returns (bytes32)"}},"id":13854,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5120:66:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":13848,"id":13855,"nodeType":"Return","src":"5113:73:58"}]},"documentation":{"id":13842,"nodeType":"StructuredDocumentation","src":"4398:614:58","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":13857,"implemented":true,"kind":"function","modifiers":[],"name":"_hashTypedDataV4","nameLocation":"5026:16:58","nodeType":"FunctionDefinition","parameters":{"id":13845,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13844,"mutability":"mutable","name":"structHash","nameLocation":"5051:10:58","nodeType":"VariableDeclaration","scope":13857,"src":"5043:18:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13843,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5043:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5042:20:58"},"returnParameters":{"id":13848,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13847,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13857,"src":"5094:7:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13846,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5094:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5093:9:58"},"scope":13924,"src":"5017:176:58","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[6424],"body":{"id":13898,"nodeType":"Block","src":"5556:229:58","statements":[{"expression":{"components":[{"hexValue":"0f","id":13876,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"5587:7:58","typeDescriptions":{"typeIdentifier":"t_stringliteral_3d725c5ee53025f027da36bea8d3af3b6a3e9d2d1542d47c162631de48e66c1c","typeString":"literal_string hex\"0f\""},"value":"\u000f"},{"arguments":[],"expression":{"argumentTypes":[],"id":13877,"name":"_EIP712Name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13911,"src":"5617:11:58","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":13878,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5617:13:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[],"expression":{"argumentTypes":[],"id":13879,"name":"_EIP712Version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13923,"src":"5644:14:58","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":13880,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5644:16:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":13881,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5674:5:58","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":13882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5680:7:58","memberName":"chainid","nodeType":"MemberAccess","src":"5674:13:58","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":13885,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5709:4:58","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$13924","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$13924","typeString":"contract EIP712"}],"id":13884,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5701:7:58","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13883,"name":"address","nodeType":"ElementaryTypeName","src":"5701:7:58","typeDescriptions":{}}},"id":13886,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5701:13:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":13889,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5736:1:58","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":13888,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5728:7:58","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":13887,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5728:7:58","typeDescriptions":{}}},"id":13890,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5728:10:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"hexValue":"30","id":13894,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5766:1:58","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":13893,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"5752:13:58","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":13891,"name":"uint256","nodeType":"ElementaryTypeName","src":"5756:7:58","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13892,"nodeType":"ArrayTypeName","src":"5756:9:58","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":13895,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5752:16:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}}],"id":13896,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5573:205:58","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":13875,"id":13897,"nodeType":"Return","src":"5566:212:58"}]},"documentation":{"id":13858,"nodeType":"StructuredDocumentation","src":"5199:24:58","text":"@inheritdoc IERC5267"},"functionSelector":"84b0196e","id":13899,"implemented":true,"kind":"function","modifiers":[],"name":"eip712Domain","nameLocation":"5237:12:58","nodeType":"FunctionDefinition","parameters":{"id":13859,"nodeType":"ParameterList","parameters":[],"src":"5249:2:58"},"returnParameters":{"id":13875,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13861,"mutability":"mutable","name":"fields","nameLocation":"5333:6:58","nodeType":"VariableDeclaration","scope":13899,"src":"5326:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13860,"name":"bytes1","nodeType":"ElementaryTypeName","src":"5326:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":13863,"mutability":"mutable","name":"name","nameLocation":"5367:4:58","nodeType":"VariableDeclaration","scope":13899,"src":"5353:18:58","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":13862,"name":"string","nodeType":"ElementaryTypeName","src":"5353:6:58","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":13865,"mutability":"mutable","name":"version","nameLocation":"5399:7:58","nodeType":"VariableDeclaration","scope":13899,"src":"5385:21:58","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":13864,"name":"string","nodeType":"ElementaryTypeName","src":"5385:6:58","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":13867,"mutability":"mutable","name":"chainId","nameLocation":"5428:7:58","nodeType":"VariableDeclaration","scope":13899,"src":"5420:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13866,"name":"uint256","nodeType":"ElementaryTypeName","src":"5420:7:58","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13869,"mutability":"mutable","name":"verifyingContract","nameLocation":"5457:17:58","nodeType":"VariableDeclaration","scope":13899,"src":"5449:25:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13868,"name":"address","nodeType":"ElementaryTypeName","src":"5449:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":13871,"mutability":"mutable","name":"salt","nameLocation":"5496:4:58","nodeType":"VariableDeclaration","scope":13899,"src":"5488:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13870,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5488:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":13874,"mutability":"mutable","name":"extensions","nameLocation":"5531:10:58","nodeType":"VariableDeclaration","scope":13899,"src":"5514:27:58","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":13872,"name":"uint256","nodeType":"ElementaryTypeName","src":"5514:7:58","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13873,"nodeType":"ArrayTypeName","src":"5514:9:58","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"5312:239:58"},"scope":13924,"src":"5228:557:58","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":13910,"nodeType":"Block","src":"6166:65:58","statements":[{"expression":{"arguments":[{"id":13907,"name":"_nameFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13734,"src":"6210:13:58","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":13905,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13729,"src":"6183:5:58","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"id":13906,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6189:20:58","memberName":"toStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":11602,"src":"6183:26:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$11423_$_t_string_storage_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_userDefinedValueType$_ShortString_$11423_$","typeString":"function (ShortString,string storage pointer) pure returns (string memory)"}},"id":13908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6183:41:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":13904,"id":13909,"nodeType":"Return","src":"6176:48:58"}]},"documentation":{"id":13900,"nodeType":"StructuredDocumentation","src":"5791:256:58","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":13911,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712Name","nameLocation":"6114:11:58","nodeType":"FunctionDefinition","parameters":{"id":13901,"nodeType":"ParameterList","parameters":[],"src":"6125:2:58"},"returnParameters":{"id":13904,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13903,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13911,"src":"6151:13:58","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":13902,"name":"string","nodeType":"ElementaryTypeName","src":"6151:6:58","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6150:15:58"},"scope":13924,"src":"6105:126:58","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13922,"nodeType":"Block","src":"6621:71:58","statements":[{"expression":{"arguments":[{"id":13919,"name":"_versionFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13736,"src":"6668:16:58","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":13917,"name":"_version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13732,"src":"6638:8:58","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$11423","typeString":"ShortString"}},"id":13918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6647:20:58","memberName":"toStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":11602,"src":"6638:29:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$11423_$_t_string_storage_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_userDefinedValueType$_ShortString_$11423_$","typeString":"function (ShortString,string storage pointer) pure returns (string memory)"}},"id":13920,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6638:47:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":13916,"id":13921,"nodeType":"Return","src":"6631:54:58"}]},"documentation":{"id":13912,"nodeType":"StructuredDocumentation","src":"6237:262:58","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":13923,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712Version","nameLocation":"6566:14:58","nodeType":"FunctionDefinition","parameters":{"id":13913,"nodeType":"ParameterList","parameters":[],"src":"6580:2:58"},"returnParameters":{"id":13916,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13915,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13923,"src":"6606:13:58","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":13914,"name":"string","nodeType":"ElementaryTypeName","src":"6606:6:58","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6605:15:58"},"scope":13924,"src":"6557:135:58","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":13925,"src":"1960:4734:58","usedErrors":[11431,11433],"usedEvents":[6405]}],"src":"113:6582:58"},"id":58},"@openzeppelin/contracts/utils/cryptography/Hashes.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/Hashes.sol","exportedSymbols":{"Hashes":[13964]},"id":13965,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":13926,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"113:24:59"},{"abstract":false,"baseContracts":[],"canonicalName":"Hashes","contractDependencies":[],"contractKind":"library","documentation":{"id":13927,"nodeType":"StructuredDocumentation","src":"139:81:59","text":" @dev Library of standard hash functions.\n _Available since v5.1._"},"fullyImplemented":true,"id":13964,"linearizedBaseContracts":[13964],"name":"Hashes","nameLocation":"229:6:59","nodeType":"ContractDefinition","nodes":[{"body":{"id":13950,"nodeType":"Block","src":"588:83:59","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":13939,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13937,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13930,"src":"605:1:59","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13938,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13932,"src":"609:1:59","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"605:5:59","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":13945,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13932,"src":"659:1:59","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13946,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13930,"src":"662:1:59","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":13944,"name":"efficientKeccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13963,"src":"640:18:59","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32,bytes32) pure returns (bytes32)"}},"id":13947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"640:24:59","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":13948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"605:59:59","trueExpression":{"arguments":[{"id":13941,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13930,"src":"632:1:59","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":13942,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13932,"src":"635:1:59","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":13940,"name":"efficientKeccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13963,"src":"613:18:59","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32,bytes32) pure returns (bytes32)"}},"id":13943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"613:24:59","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":13936,"id":13949,"nodeType":"Return","src":"598:66:59"}]},"documentation":{"id":13928,"nodeType":"StructuredDocumentation","src":"242:257:59","text":" @dev Commutative Keccak256 hash of a sorted pair of bytes32. Frequently used when working with merkle proofs.\n NOTE: Equivalent to the `standardNodeHash` in our https://github.com/OpenZeppelin/merkle-tree[JavaScript library]."},"id":13951,"implemented":true,"kind":"function","modifiers":[],"name":"commutativeKeccak256","nameLocation":"513:20:59","nodeType":"FunctionDefinition","parameters":{"id":13933,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13930,"mutability":"mutable","name":"a","nameLocation":"542:1:59","nodeType":"VariableDeclaration","scope":13951,"src":"534:9:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13929,"name":"bytes32","nodeType":"ElementaryTypeName","src":"534:7:59","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":13932,"mutability":"mutable","name":"b","nameLocation":"553:1:59","nodeType":"VariableDeclaration","scope":13951,"src":"545:9:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13931,"name":"bytes32","nodeType":"ElementaryTypeName","src":"545:7:59","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"533:22:59"},"returnParameters":{"id":13936,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13935,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13951,"src":"579:7:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13934,"name":"bytes32","nodeType":"ElementaryTypeName","src":"579:7:59","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"578:9:59"},"scope":13964,"src":"504:167:59","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13962,"nodeType":"Block","src":"879:151:59","statements":[{"AST":{"nativeSrc":"914:110:59","nodeType":"YulBlock","src":"914:110:59","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"935:4:59","nodeType":"YulLiteral","src":"935:4:59","type":"","value":"0x00"},{"name":"a","nativeSrc":"941:1:59","nodeType":"YulIdentifier","src":"941:1:59"}],"functionName":{"name":"mstore","nativeSrc":"928:6:59","nodeType":"YulIdentifier","src":"928:6:59"},"nativeSrc":"928:15:59","nodeType":"YulFunctionCall","src":"928:15:59"},"nativeSrc":"928:15:59","nodeType":"YulExpressionStatement","src":"928:15:59"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"963:4:59","nodeType":"YulLiteral","src":"963:4:59","type":"","value":"0x20"},{"name":"b","nativeSrc":"969:1:59","nodeType":"YulIdentifier","src":"969:1:59"}],"functionName":{"name":"mstore","nativeSrc":"956:6:59","nodeType":"YulIdentifier","src":"956:6:59"},"nativeSrc":"956:15:59","nodeType":"YulFunctionCall","src":"956:15:59"},"nativeSrc":"956:15:59","nodeType":"YulExpressionStatement","src":"956:15:59"},{"nativeSrc":"984:30:59","nodeType":"YulAssignment","src":"984:30:59","value":{"arguments":[{"kind":"number","nativeSrc":"1003:4:59","nodeType":"YulLiteral","src":"1003:4:59","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1009:4:59","nodeType":"YulLiteral","src":"1009:4:59","type":"","value":"0x40"}],"functionName":{"name":"keccak256","nativeSrc":"993:9:59","nodeType":"YulIdentifier","src":"993:9:59"},"nativeSrc":"993:21:59","nodeType":"YulFunctionCall","src":"993:21:59"},"variableNames":[{"name":"value","nativeSrc":"984:5:59","nodeType":"YulIdentifier","src":"984:5:59"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":13954,"isOffset":false,"isSlot":false,"src":"941:1:59","valueSize":1},{"declaration":13956,"isOffset":false,"isSlot":false,"src":"969:1:59","valueSize":1},{"declaration":13959,"isOffset":false,"isSlot":false,"src":"984:5:59","valueSize":1}],"flags":["memory-safe"],"id":13961,"nodeType":"InlineAssembly","src":"889:135:59"}]},"documentation":{"id":13952,"nodeType":"StructuredDocumentation","src":"677:109:59","text":" @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory."},"id":13963,"implemented":true,"kind":"function","modifiers":[],"name":"efficientKeccak256","nameLocation":"800:18:59","nodeType":"FunctionDefinition","parameters":{"id":13957,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13954,"mutability":"mutable","name":"a","nameLocation":"827:1:59","nodeType":"VariableDeclaration","scope":13963,"src":"819:9:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13953,"name":"bytes32","nodeType":"ElementaryTypeName","src":"819:7:59","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":13956,"mutability":"mutable","name":"b","nameLocation":"838:1:59","nodeType":"VariableDeclaration","scope":13963,"src":"830:9:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13955,"name":"bytes32","nodeType":"ElementaryTypeName","src":"830:7:59","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"818:22:59"},"returnParameters":{"id":13960,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13959,"mutability":"mutable","name":"value","nameLocation":"872:5:59","nodeType":"VariableDeclaration","scope":13963,"src":"864:13:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13958,"name":"bytes32","nodeType":"ElementaryTypeName","src":"864:7:59","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"863:15:59"},"scope":13964,"src":"791:239:59","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":13965,"src":"221:811:59","usedErrors":[],"usedEvents":[]}],"src":"113:920:59"},"id":59},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","exportedSymbols":{"MessageHashUtils":[14050],"Strings":[13238]},"id":14051,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":13966,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"123:24:60"},{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","file":"../Strings.sol","id":13968,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14051,"sourceUnit":13239,"src":"149:39:60","symbolAliases":[{"foreign":{"id":13967,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13238,"src":"157:7:60","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"MessageHashUtils","contractDependencies":[],"contractKind":"library","documentation":{"id":13969,"nodeType":"StructuredDocumentation","src":"190:330:60","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":14050,"linearizedBaseContracts":[14050],"name":"MessageHashUtils","nameLocation":"529:16:60","nodeType":"ContractDefinition","nodes":[{"body":{"id":13978,"nodeType":"Block","src":"1339:341:60","statements":[{"AST":{"nativeSrc":"1374:300:60","nodeType":"YulBlock","src":"1374:300:60","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1395:4:60","nodeType":"YulLiteral","src":"1395:4:60","type":"","value":"0x00"},{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a3332","kind":"string","nativeSrc":"1401:34:60","nodeType":"YulLiteral","src":"1401:34:60","type":"","value":"\u0019Ethereum Signed Message:\n32"}],"functionName":{"name":"mstore","nativeSrc":"1388:6:60","nodeType":"YulIdentifier","src":"1388:6:60"},"nativeSrc":"1388:48:60","nodeType":"YulFunctionCall","src":"1388:48:60"},"nativeSrc":"1388:48:60","nodeType":"YulExpressionStatement","src":"1388:48:60"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1497:4:60","nodeType":"YulLiteral","src":"1497:4:60","type":"","value":"0x1c"},{"name":"messageHash","nativeSrc":"1503:11:60","nodeType":"YulIdentifier","src":"1503:11:60"}],"functionName":{"name":"mstore","nativeSrc":"1490:6:60","nodeType":"YulIdentifier","src":"1490:6:60"},"nativeSrc":"1490:25:60","nodeType":"YulFunctionCall","src":"1490:25:60"},"nativeSrc":"1490:25:60","nodeType":"YulExpressionStatement","src":"1490:25:60"},{"nativeSrc":"1569:31:60","nodeType":"YulAssignment","src":"1569:31:60","value":{"arguments":[{"kind":"number","nativeSrc":"1589:4:60","nodeType":"YulLiteral","src":"1589:4:60","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1595:4:60","nodeType":"YulLiteral","src":"1595:4:60","type":"","value":"0x3c"}],"functionName":{"name":"keccak256","nativeSrc":"1579:9:60","nodeType":"YulIdentifier","src":"1579:9:60"},"nativeSrc":"1579:21:60","nodeType":"YulFunctionCall","src":"1579:21:60"},"variableNames":[{"name":"digest","nativeSrc":"1569:6:60","nodeType":"YulIdentifier","src":"1569:6:60"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":13975,"isOffset":false,"isSlot":false,"src":"1569:6:60","valueSize":1},{"declaration":13972,"isOffset":false,"isSlot":false,"src":"1503:11:60","valueSize":1}],"flags":["memory-safe"],"id":13977,"nodeType":"InlineAssembly","src":"1349:325:60"}]},"documentation":{"id":13970,"nodeType":"StructuredDocumentation","src":"552:690:60","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://ethereum.org/en/developers/docs/apis/json-rpc/#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":13979,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"1256:22:60","nodeType":"FunctionDefinition","parameters":{"id":13973,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13972,"mutability":"mutable","name":"messageHash","nameLocation":"1287:11:60","nodeType":"VariableDeclaration","scope":13979,"src":"1279:19:60","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13971,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1279:7:60","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1278:21:60"},"returnParameters":{"id":13976,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13975,"mutability":"mutable","name":"digest","nameLocation":"1331:6:60","nodeType":"VariableDeclaration","scope":13979,"src":"1323:14:60","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13974,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1323:7:60","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1322:16:60"},"scope":14050,"src":"1247:433:60","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14004,"nodeType":"Block","src":"2257:143:60","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a","id":13991,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2309:32:60","typeDescriptions":{"typeIdentifier":"t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4","typeString":"literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""},"value":"\u0019Ethereum Signed Message:\n"},{"arguments":[{"arguments":[{"expression":{"id":13996,"name":"message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13982,"src":"2366:7:60","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":13997,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2374:6:60","memberName":"length","nodeType":"MemberAccess","src":"2366:14:60","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13994,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13238,"src":"2349:7:60","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Strings_$13238_$","typeString":"type(library Strings)"}},"id":13995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2357:8:60","memberName":"toString","nodeType":"MemberAccess","referencedDeclaration":11874,"src":"2349:16:60","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":13998,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2349:32:60","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":13993,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2343:5:60","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":13992,"name":"bytes","nodeType":"ElementaryTypeName","src":"2343:5:60","typeDescriptions":{}}},"id":13999,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2343:39:60","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":14000,"name":"message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13982,"src":"2384:7:60","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":13989,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2296:5:60","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":13988,"name":"bytes","nodeType":"ElementaryTypeName","src":"2296:5:60","typeDescriptions":{}}},"id":13990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2302:6:60","memberName":"concat","nodeType":"MemberAccess","src":"2296:12:60","typeDescriptions":{"typeIdentifier":"t_function_bytesconcat_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":14001,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2296:96:60","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":13987,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2286:9:60","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":14002,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2286:107:60","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":13986,"id":14003,"nodeType":"Return","src":"2267:126:60"}]},"documentation":{"id":13980,"nodeType":"StructuredDocumentation","src":"1686:480:60","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://ethereum.org/en/developers/docs/apis/json-rpc/#eth_sign[`eth_sign`] JSON-RPC method.\n See {ECDSA-recover}."},"id":14005,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"2180:22:60","nodeType":"FunctionDefinition","parameters":{"id":13983,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13982,"mutability":"mutable","name":"message","nameLocation":"2216:7:60","nodeType":"VariableDeclaration","scope":14005,"src":"2203:20:60","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":13981,"name":"bytes","nodeType":"ElementaryTypeName","src":"2203:5:60","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2202:22:60"},"returnParameters":{"id":13986,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13985,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14005,"src":"2248:7:60","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13984,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2248:7:60","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2247:9:60"},"scope":14050,"src":"2171:229:60","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14024,"nodeType":"Block","src":"2854:80:60","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"1900","id":14018,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"2898:10:60","typeDescriptions":{"typeIdentifier":"t_stringliteral_73fd5d154550a4a103564cb191928cd38898034de1b952dc21b290898b4b697a","typeString":"literal_string hex\"1900\""},"value":"\u0019\u0000"},{"id":14019,"name":"validator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14008,"src":"2910:9:60","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":14020,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14010,"src":"2921:4:60","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":14016,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2881:3:60","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":14017,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2885:12:60","memberName":"encodePacked","nodeType":"MemberAccess","src":"2881:16:60","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":14021,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2881:45:60","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":14015,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2871:9:60","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":14022,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2871:56:60","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":14014,"id":14023,"nodeType":"Return","src":"2864:63:60"}]},"documentation":{"id":14006,"nodeType":"StructuredDocumentation","src":"2406:332:60","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":14025,"implemented":true,"kind":"function","modifiers":[],"name":"toDataWithIntendedValidatorHash","nameLocation":"2752:31:60","nodeType":"FunctionDefinition","parameters":{"id":14011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14008,"mutability":"mutable","name":"validator","nameLocation":"2792:9:60","nodeType":"VariableDeclaration","scope":14025,"src":"2784:17:60","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14007,"name":"address","nodeType":"ElementaryTypeName","src":"2784:7:60","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14010,"mutability":"mutable","name":"data","nameLocation":"2816:4:60","nodeType":"VariableDeclaration","scope":14025,"src":"2803:17:60","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":14009,"name":"bytes","nodeType":"ElementaryTypeName","src":"2803:5:60","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2783:38:60"},"returnParameters":{"id":14014,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14013,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14025,"src":"2845:7:60","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14012,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2845:7:60","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2844:9:60"},"scope":14050,"src":"2743:191:60","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14036,"nodeType":"Block","src":"3216:216:60","statements":[{"AST":{"nativeSrc":"3251:175:60","nodeType":"YulBlock","src":"3251:175:60","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3272:4:60","nodeType":"YulLiteral","src":"3272:4:60","type":"","value":"0x00"},{"hexValue":"1900","kind":"string","nativeSrc":"3278:10:60","nodeType":"YulLiteral","src":"3278:10:60","type":"","value":"\u0019\u0000"}],"functionName":{"name":"mstore","nativeSrc":"3265:6:60","nodeType":"YulIdentifier","src":"3265:6:60"},"nativeSrc":"3265:24:60","nodeType":"YulFunctionCall","src":"3265:24:60"},"nativeSrc":"3265:24:60","nodeType":"YulExpressionStatement","src":"3265:24:60"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3309:4:60","nodeType":"YulLiteral","src":"3309:4:60","type":"","value":"0x02"},{"arguments":[{"kind":"number","nativeSrc":"3319:2:60","nodeType":"YulLiteral","src":"3319:2:60","type":"","value":"96"},{"name":"validator","nativeSrc":"3323:9:60","nodeType":"YulIdentifier","src":"3323:9:60"}],"functionName":{"name":"shl","nativeSrc":"3315:3:60","nodeType":"YulIdentifier","src":"3315:3:60"},"nativeSrc":"3315:18:60","nodeType":"YulFunctionCall","src":"3315:18:60"}],"functionName":{"name":"mstore","nativeSrc":"3302:6:60","nodeType":"YulIdentifier","src":"3302:6:60"},"nativeSrc":"3302:32:60","nodeType":"YulFunctionCall","src":"3302:32:60"},"nativeSrc":"3302:32:60","nodeType":"YulExpressionStatement","src":"3302:32:60"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3354:4:60","nodeType":"YulLiteral","src":"3354:4:60","type":"","value":"0x16"},{"name":"messageHash","nativeSrc":"3360:11:60","nodeType":"YulIdentifier","src":"3360:11:60"}],"functionName":{"name":"mstore","nativeSrc":"3347:6:60","nodeType":"YulIdentifier","src":"3347:6:60"},"nativeSrc":"3347:25:60","nodeType":"YulFunctionCall","src":"3347:25:60"},"nativeSrc":"3347:25:60","nodeType":"YulExpressionStatement","src":"3347:25:60"},{"nativeSrc":"3385:31:60","nodeType":"YulAssignment","src":"3385:31:60","value":{"arguments":[{"kind":"number","nativeSrc":"3405:4:60","nodeType":"YulLiteral","src":"3405:4:60","type":"","value":"0x00"},{"kind":"number","nativeSrc":"3411:4:60","nodeType":"YulLiteral","src":"3411:4:60","type":"","value":"0x36"}],"functionName":{"name":"keccak256","nativeSrc":"3395:9:60","nodeType":"YulIdentifier","src":"3395:9:60"},"nativeSrc":"3395:21:60","nodeType":"YulFunctionCall","src":"3395:21:60"},"variableNames":[{"name":"digest","nativeSrc":"3385:6:60","nodeType":"YulIdentifier","src":"3385:6:60"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":14033,"isOffset":false,"isSlot":false,"src":"3385:6:60","valueSize":1},{"declaration":14030,"isOffset":false,"isSlot":false,"src":"3360:11:60","valueSize":1},{"declaration":14028,"isOffset":false,"isSlot":false,"src":"3323:9:60","valueSize":1}],"flags":["memory-safe"],"id":14035,"nodeType":"InlineAssembly","src":"3226:200:60"}]},"documentation":{"id":14026,"nodeType":"StructuredDocumentation","src":"2940:129:60","text":" @dev Variant of {toDataWithIntendedValidatorHash-address-bytes} optimized for cases where `data` is a bytes32."},"id":14037,"implemented":true,"kind":"function","modifiers":[],"name":"toDataWithIntendedValidatorHash","nameLocation":"3083:31:60","nodeType":"FunctionDefinition","parameters":{"id":14031,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14028,"mutability":"mutable","name":"validator","nameLocation":"3132:9:60","nodeType":"VariableDeclaration","scope":14037,"src":"3124:17:60","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14027,"name":"address","nodeType":"ElementaryTypeName","src":"3124:7:60","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14030,"mutability":"mutable","name":"messageHash","nameLocation":"3159:11:60","nodeType":"VariableDeclaration","scope":14037,"src":"3151:19:60","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14029,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3151:7:60","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3114:62:60"},"returnParameters":{"id":14034,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14033,"mutability":"mutable","name":"digest","nameLocation":"3208:6:60","nodeType":"VariableDeclaration","scope":14037,"src":"3200:14:60","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14032,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3200:7:60","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3199:16:60"},"scope":14050,"src":"3074:358:60","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14048,"nodeType":"Block","src":"3983:265:60","statements":[{"AST":{"nativeSrc":"4018:224:60","nodeType":"YulBlock","src":"4018:224:60","statements":[{"nativeSrc":"4032:22:60","nodeType":"YulVariableDeclaration","src":"4032:22:60","value":{"arguments":[{"kind":"number","nativeSrc":"4049:4:60","nodeType":"YulLiteral","src":"4049:4:60","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"4043:5:60","nodeType":"YulIdentifier","src":"4043:5:60"},"nativeSrc":"4043:11:60","nodeType":"YulFunctionCall","src":"4043:11:60"},"variables":[{"name":"ptr","nativeSrc":"4036:3:60","nodeType":"YulTypedName","src":"4036:3:60","type":""}]},{"expression":{"arguments":[{"name":"ptr","nativeSrc":"4074:3:60","nodeType":"YulIdentifier","src":"4074:3:60"},{"hexValue":"1901","kind":"string","nativeSrc":"4079:10:60","nodeType":"YulLiteral","src":"4079:10:60","type":"","value":"\u0019\u0001"}],"functionName":{"name":"mstore","nativeSrc":"4067:6:60","nodeType":"YulIdentifier","src":"4067:6:60"},"nativeSrc":"4067:23:60","nodeType":"YulFunctionCall","src":"4067:23:60"},"nativeSrc":"4067:23:60","nodeType":"YulExpressionStatement","src":"4067:23:60"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"4114:3:60","nodeType":"YulIdentifier","src":"4114:3:60"},{"kind":"number","nativeSrc":"4119:4:60","nodeType":"YulLiteral","src":"4119:4:60","type":"","value":"0x02"}],"functionName":{"name":"add","nativeSrc":"4110:3:60","nodeType":"YulIdentifier","src":"4110:3:60"},"nativeSrc":"4110:14:60","nodeType":"YulFunctionCall","src":"4110:14:60"},{"name":"domainSeparator","nativeSrc":"4126:15:60","nodeType":"YulIdentifier","src":"4126:15:60"}],"functionName":{"name":"mstore","nativeSrc":"4103:6:60","nodeType":"YulIdentifier","src":"4103:6:60"},"nativeSrc":"4103:39:60","nodeType":"YulFunctionCall","src":"4103:39:60"},"nativeSrc":"4103:39:60","nodeType":"YulExpressionStatement","src":"4103:39:60"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"4166:3:60","nodeType":"YulIdentifier","src":"4166:3:60"},{"kind":"number","nativeSrc":"4171:4:60","nodeType":"YulLiteral","src":"4171:4:60","type":"","value":"0x22"}],"functionName":{"name":"add","nativeSrc":"4162:3:60","nodeType":"YulIdentifier","src":"4162:3:60"},"nativeSrc":"4162:14:60","nodeType":"YulFunctionCall","src":"4162:14:60"},{"name":"structHash","nativeSrc":"4178:10:60","nodeType":"YulIdentifier","src":"4178:10:60"}],"functionName":{"name":"mstore","nativeSrc":"4155:6:60","nodeType":"YulIdentifier","src":"4155:6:60"},"nativeSrc":"4155:34:60","nodeType":"YulFunctionCall","src":"4155:34:60"},"nativeSrc":"4155:34:60","nodeType":"YulExpressionStatement","src":"4155:34:60"},{"nativeSrc":"4202:30:60","nodeType":"YulAssignment","src":"4202:30:60","value":{"arguments":[{"name":"ptr","nativeSrc":"4222:3:60","nodeType":"YulIdentifier","src":"4222:3:60"},{"kind":"number","nativeSrc":"4227:4:60","nodeType":"YulLiteral","src":"4227:4:60","type":"","value":"0x42"}],"functionName":{"name":"keccak256","nativeSrc":"4212:9:60","nodeType":"YulIdentifier","src":"4212:9:60"},"nativeSrc":"4212:20:60","nodeType":"YulFunctionCall","src":"4212:20:60"},"variableNames":[{"name":"digest","nativeSrc":"4202:6:60","nodeType":"YulIdentifier","src":"4202:6:60"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":14045,"isOffset":false,"isSlot":false,"src":"4202:6:60","valueSize":1},{"declaration":14040,"isOffset":false,"isSlot":false,"src":"4126:15:60","valueSize":1},{"declaration":14042,"isOffset":false,"isSlot":false,"src":"4178:10:60","valueSize":1}],"flags":["memory-safe"],"id":14047,"nodeType":"InlineAssembly","src":"3993:249:60"}]},"documentation":{"id":14038,"nodeType":"StructuredDocumentation","src":"3438:431:60","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":14049,"implemented":true,"kind":"function","modifiers":[],"name":"toTypedDataHash","nameLocation":"3883:15:60","nodeType":"FunctionDefinition","parameters":{"id":14043,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14040,"mutability":"mutable","name":"domainSeparator","nameLocation":"3907:15:60","nodeType":"VariableDeclaration","scope":14049,"src":"3899:23:60","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14039,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3899:7:60","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":14042,"mutability":"mutable","name":"structHash","nameLocation":"3932:10:60","nodeType":"VariableDeclaration","scope":14049,"src":"3924:18:60","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14041,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3924:7:60","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3898:45:60"},"returnParameters":{"id":14046,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14045,"mutability":"mutable","name":"digest","nameLocation":"3975:6:60","nodeType":"VariableDeclaration","scope":14049,"src":"3967:14:60","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14044,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3967:7:60","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3966:16:60"},"scope":14050,"src":"3874:374:60","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":14051,"src":"521:3729:60","usedErrors":[],"usedEvents":[]}],"src":"123:4128:60"},"id":60},"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol","exportedSymbols":{"ERC165Checker":[14260],"IERC165":[14272]},"id":14261,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":14052,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"121:24:61"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"./IERC165.sol","id":14054,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14261,"sourceUnit":14273,"src":"147:38:61","symbolAliases":[{"foreign":{"id":14053,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"155:7:61","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"ERC165Checker","contractDependencies":[],"contractKind":"library","documentation":{"id":14055,"nodeType":"StructuredDocumentation","src":"187:277:61","text":" @dev Library used to query support of an interface declared via {IERC165}.\n Note that these functions return the actual result of the query: they do not\n `revert` if an interface is not supported. It is up to the caller to decide\n what to do in these cases."},"fullyImplemented":true,"id":14260,"linearizedBaseContracts":[14260],"name":"ERC165Checker","nameLocation":"473:13:61","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":14058,"mutability":"constant","name":"INTERFACE_ID_INVALID","nameLocation":"591:20:61","nodeType":"VariableDeclaration","scope":14260,"src":"567:57:61","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14056,"name":"bytes4","nodeType":"ElementaryTypeName","src":"567:6:61","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"hexValue":"30786666666666666666","id":14057,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"614:10:61","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"value":"0xffffffff"},"visibility":"private"},{"body":{"id":14092,"nodeType":"Block","src":"789:458:61","statements":[{"condition":{"arguments":[{"id":14067,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14061,"src":"1009:7:61","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"arguments":[{"id":14069,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"1023:7:61","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$14272_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$14272_$","typeString":"type(contract IERC165)"}],"id":14068,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1018:4:61","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":14070,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1018:13:61","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$14272","typeString":"type(contract IERC165)"}},"id":14071,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1032:11:61","memberName":"interfaceId","nodeType":"MemberAccess","src":"1018:25:61","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":14066,"name":"supportsERC165InterfaceUnchecked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14239,"src":"976:32:61","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":14072,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"976:68:61","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14090,"nodeType":"Block","src":"1204:37:61","statements":[{"expression":{"hexValue":"66616c7365","id":14088,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1225:5:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":14065,"id":14089,"nodeType":"Return","src":"1218:12:61"}]},"id":14091,"nodeType":"IfStatement","src":"972:269:61","trueBody":{"id":14087,"nodeType":"Block","src":"1046:152:61","statements":[{"assignments":[14074,14076],"declarations":[{"constant":false,"id":14074,"mutability":"mutable","name":"success","nameLocation":"1066:7:61","nodeType":"VariableDeclaration","scope":14087,"src":"1061:12:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14073,"name":"bool","nodeType":"ElementaryTypeName","src":"1061:4:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":14076,"mutability":"mutable","name":"supported","nameLocation":"1080:9:61","nodeType":"VariableDeclaration","scope":14087,"src":"1075:14:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14075,"name":"bool","nodeType":"ElementaryTypeName","src":"1075:4:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":14081,"initialValue":{"arguments":[{"id":14078,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14061,"src":"1115:7:61","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":14079,"name":"INTERFACE_ID_INVALID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14058,"src":"1124:20:61","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":14077,"name":"_trySupportsInterface","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14259,"src":"1093:21:61","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$_t_bool_$","typeString":"function (address,bytes4) view returns (bool,bool)"}},"id":14080,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1093:52:61","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bool_$","typeString":"tuple(bool,bool)"}},"nodeType":"VariableDeclarationStatement","src":"1060:85:61"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14082,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14074,"src":"1166:7:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":14084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1177:10:61","subExpression":{"id":14083,"name":"supported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14076,"src":"1178:9:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1166:21:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14065,"id":14086,"nodeType":"Return","src":"1159:28:61"}]}}]},"documentation":{"id":14059,"nodeType":"StructuredDocumentation","src":"631:83:61","text":" @dev Returns true if `account` supports the {IERC165} interface."},"id":14093,"implemented":true,"kind":"function","modifiers":[],"name":"supportsERC165","nameLocation":"728:14:61","nodeType":"FunctionDefinition","parameters":{"id":14062,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14061,"mutability":"mutable","name":"account","nameLocation":"751:7:61","nodeType":"VariableDeclaration","scope":14093,"src":"743:15:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14060,"name":"address","nodeType":"ElementaryTypeName","src":"743:7:61","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"742:17:61"},"returnParameters":{"id":14065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14064,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14093,"src":"783:4:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14063,"name":"bool","nodeType":"ElementaryTypeName","src":"783:4:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"782:6:61"},"scope":14260,"src":"719:528:61","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14112,"nodeType":"Block","src":"1558:190:61","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14104,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14096,"src":"1675:7:61","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":14103,"name":"supportsERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14093,"src":"1660:14:61","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":14105,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1660:23:61","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"arguments":[{"id":14107,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14096,"src":"1720:7:61","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":14108,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14098,"src":"1729:11:61","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":14106,"name":"supportsERC165InterfaceUnchecked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14239,"src":"1687:32:61","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":14109,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1687:54:61","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1660:81:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14102,"id":14111,"nodeType":"Return","src":"1653:88:61"}]},"documentation":{"id":14094,"nodeType":"StructuredDocumentation","src":"1253:207:61","text":" @dev Returns true if `account` supports the interface defined by\n `interfaceId`. Support for {IERC165} itself is queried automatically.\n See {IERC165-supportsInterface}."},"id":14113,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"1474:17:61","nodeType":"FunctionDefinition","parameters":{"id":14099,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14096,"mutability":"mutable","name":"account","nameLocation":"1500:7:61","nodeType":"VariableDeclaration","scope":14113,"src":"1492:15:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14095,"name":"address","nodeType":"ElementaryTypeName","src":"1492:7:61","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14098,"mutability":"mutable","name":"interfaceId","nameLocation":"1516:11:61","nodeType":"VariableDeclaration","scope":14113,"src":"1509:18:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14097,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1509:6:61","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1491:37:61"},"returnParameters":{"id":14102,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14101,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14113,"src":"1552:4:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14100,"name":"bool","nodeType":"ElementaryTypeName","src":"1552:4:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1551:6:61"},"scope":14260,"src":"1465:283:61","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14168,"nodeType":"Block","src":"2234:561:61","statements":[{"assignments":[14129],"declarations":[{"constant":false,"id":14129,"mutability":"mutable","name":"interfaceIdsSupported","nameLocation":"2357:21:61","nodeType":"VariableDeclaration","scope":14168,"src":"2343:35:61","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bool_$dyn_memory_ptr","typeString":"bool[]"},"typeName":{"baseType":{"id":14127,"name":"bool","nodeType":"ElementaryTypeName","src":"2343:4:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14128,"nodeType":"ArrayTypeName","src":"2343:6:61","typeDescriptions":{"typeIdentifier":"t_array$_t_bool_$dyn_storage_ptr","typeString":"bool[]"}},"visibility":"internal"}],"id":14136,"initialValue":{"arguments":[{"expression":{"id":14133,"name":"interfaceIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14119,"src":"2392:12:61","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":14134,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2405:6:61","memberName":"length","nodeType":"MemberAccess","src":"2392:19:61","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14132,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"2381:10:61","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_bool_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (bool[] memory)"},"typeName":{"baseType":{"id":14130,"name":"bool","nodeType":"ElementaryTypeName","src":"2385:4:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14131,"nodeType":"ArrayTypeName","src":"2385:6:61","typeDescriptions":{"typeIdentifier":"t_array$_t_bool_$dyn_storage_ptr","typeString":"bool[]"}}},"id":14135,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2381:31:61","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bool_$dyn_memory_ptr","typeString":"bool[] memory"}},"nodeType":"VariableDeclarationStatement","src":"2343:69:61"},{"condition":{"arguments":[{"id":14138,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14116,"src":"2485:7:61","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":14137,"name":"supportsERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14093,"src":"2470:14:61","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":14139,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2470:23:61","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14165,"nodeType":"IfStatement","src":"2466:284:61","trueBody":{"id":14164,"nodeType":"Block","src":"2495:255:61","statements":[{"body":{"id":14162,"nodeType":"Block","src":"2622:118:61","statements":[{"expression":{"id":14160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":14151,"name":"interfaceIdsSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14129,"src":"2640:21:61","typeDescriptions":{"typeIdentifier":"t_array$_t_bool_$dyn_memory_ptr","typeString":"bool[] memory"}},"id":14153,"indexExpression":{"id":14152,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14141,"src":"2662:1:61","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2640:24:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":14155,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14116,"src":"2700:7:61","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":14156,"name":"interfaceIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14119,"src":"2709:12:61","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":14158,"indexExpression":{"id":14157,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14141,"src":"2722:1:61","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2709:15:61","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":14154,"name":"supportsERC165InterfaceUnchecked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14239,"src":"2667:32:61","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":14159,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2667:58:61","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2640:85:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14161,"nodeType":"ExpressionStatement","src":"2640:85:61"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14144,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14141,"src":"2592:1:61","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":14145,"name":"interfaceIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14119,"src":"2596:12:61","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":14146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2609:6:61","memberName":"length","nodeType":"MemberAccess","src":"2596:19:61","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2592:23:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14163,"initializationExpression":{"assignments":[14141],"declarations":[{"constant":false,"id":14141,"mutability":"mutable","name":"i","nameLocation":"2585:1:61","nodeType":"VariableDeclaration","scope":14163,"src":"2577:9:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14140,"name":"uint256","nodeType":"ElementaryTypeName","src":"2577:7:61","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14143,"initialValue":{"hexValue":"30","id":14142,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2589:1:61","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"2577:13:61"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":14149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"2617:3:61","subExpression":{"id":14148,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14141,"src":"2617:1:61","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14150,"nodeType":"ExpressionStatement","src":"2617:3:61"},"nodeType":"ForStatement","src":"2572:168:61"}]}},{"expression":{"id":14166,"name":"interfaceIdsSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14129,"src":"2767:21:61","typeDescriptions":{"typeIdentifier":"t_array$_t_bool_$dyn_memory_ptr","typeString":"bool[] memory"}},"functionReturnParameters":14124,"id":14167,"nodeType":"Return","src":"2760:28:61"}]},"documentation":{"id":14114,"nodeType":"StructuredDocumentation","src":"1754:336:61","text":" @dev Returns a boolean array where each value corresponds to the\n interfaces passed in and whether they're supported or not. This allows\n you to batch check interfaces for a contract where your expectation\n is that some interfaces may not be supported.\n See {IERC165-supportsInterface}."},"id":14169,"implemented":true,"kind":"function","modifiers":[],"name":"getSupportedInterfaces","nameLocation":"2104:22:61","nodeType":"FunctionDefinition","parameters":{"id":14120,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14116,"mutability":"mutable","name":"account","nameLocation":"2144:7:61","nodeType":"VariableDeclaration","scope":14169,"src":"2136:15:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14115,"name":"address","nodeType":"ElementaryTypeName","src":"2136:7:61","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14119,"mutability":"mutable","name":"interfaceIds","nameLocation":"2177:12:61","nodeType":"VariableDeclaration","scope":14169,"src":"2161:28:61","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":14117,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2161:6:61","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":14118,"nodeType":"ArrayTypeName","src":"2161:8:61","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"src":"2126:69:61"},"returnParameters":{"id":14124,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14123,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14169,"src":"2219:13:61","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bool_$dyn_memory_ptr","typeString":"bool[]"},"typeName":{"baseType":{"id":14121,"name":"bool","nodeType":"ElementaryTypeName","src":"2219:4:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14122,"nodeType":"ArrayTypeName","src":"2219:6:61","typeDescriptions":{"typeIdentifier":"t_array$_t_bool_$dyn_storage_ptr","typeString":"bool[]"}},"visibility":"internal"}],"src":"2218:15:61"},"scope":14260,"src":"2095:700:61","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14214,"nodeType":"Block","src":"3237:437:61","statements":[{"condition":{"id":14183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3294:24:61","subExpression":{"arguments":[{"id":14181,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14172,"src":"3310:7:61","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":14180,"name":"supportsERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14093,"src":"3295:14:61","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":14182,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3295:23:61","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14187,"nodeType":"IfStatement","src":"3290:67:61","trueBody":{"id":14186,"nodeType":"Block","src":"3320:37:61","statements":[{"expression":{"hexValue":"66616c7365","id":14184,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3341:5:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":14179,"id":14185,"nodeType":"Return","src":"3334:12:61"}]}},{"body":{"id":14210,"nodeType":"Block","src":"3476:134:61","statements":[{"condition":{"id":14205,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3494:59:61","subExpression":{"arguments":[{"id":14200,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14172,"src":"3528:7:61","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":14201,"name":"interfaceIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14175,"src":"3537:12:61","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":14203,"indexExpression":{"id":14202,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14189,"src":"3550:1:61","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3537:15:61","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":14199,"name":"supportsERC165InterfaceUnchecked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14239,"src":"3495:32:61","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":14204,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3495:58:61","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14209,"nodeType":"IfStatement","src":"3490:110:61","trueBody":{"id":14208,"nodeType":"Block","src":"3555:45:61","statements":[{"expression":{"hexValue":"66616c7365","id":14206,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3580:5:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":14179,"id":14207,"nodeType":"Return","src":"3573:12:61"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14195,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14192,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14189,"src":"3446:1:61","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":14193,"name":"interfaceIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14175,"src":"3450:12:61","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":14194,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3463:6:61","memberName":"length","nodeType":"MemberAccess","src":"3450:19:61","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3446:23:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14211,"initializationExpression":{"assignments":[14189],"declarations":[{"constant":false,"id":14189,"mutability":"mutable","name":"i","nameLocation":"3439:1:61","nodeType":"VariableDeclaration","scope":14211,"src":"3431:9:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14188,"name":"uint256","nodeType":"ElementaryTypeName","src":"3431:7:61","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14191,"initialValue":{"hexValue":"30","id":14190,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3443:1:61","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"3431:13:61"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":14197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"3471:3:61","subExpression":{"id":14196,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14189,"src":"3471:1:61","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14198,"nodeType":"ExpressionStatement","src":"3471:3:61"},"nodeType":"ForStatement","src":"3426:184:61"},{"expression":{"hexValue":"74727565","id":14212,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3663:4:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":14179,"id":14213,"nodeType":"Return","src":"3656:11:61"}]},"documentation":{"id":14170,"nodeType":"StructuredDocumentation","src":"2801:324:61","text":" @dev Returns true if `account` supports all the interfaces defined in\n `interfaceIds`. Support for {IERC165} itself is queried automatically.\n Batch-querying can lead to gas savings by skipping repeated checks for\n {IERC165} support.\n See {IERC165-supportsInterface}."},"id":14215,"implemented":true,"kind":"function","modifiers":[],"name":"supportsAllInterfaces","nameLocation":"3139:21:61","nodeType":"FunctionDefinition","parameters":{"id":14176,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14172,"mutability":"mutable","name":"account","nameLocation":"3169:7:61","nodeType":"VariableDeclaration","scope":14215,"src":"3161:15:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14171,"name":"address","nodeType":"ElementaryTypeName","src":"3161:7:61","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14175,"mutability":"mutable","name":"interfaceIds","nameLocation":"3194:12:61","nodeType":"VariableDeclaration","scope":14215,"src":"3178:28:61","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":14173,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3178:6:61","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":14174,"nodeType":"ArrayTypeName","src":"3178:8:61","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"src":"3160:47:61"},"returnParameters":{"id":14179,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14178,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14215,"src":"3231:4:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14177,"name":"bool","nodeType":"ElementaryTypeName","src":"3231:4:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3230:6:61"},"scope":14260,"src":"3130:544:61","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14238,"nodeType":"Block","src":"4612:130:61","statements":[{"assignments":[14226,14228],"declarations":[{"constant":false,"id":14226,"mutability":"mutable","name":"success","nameLocation":"4628:7:61","nodeType":"VariableDeclaration","scope":14238,"src":"4623:12:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14225,"name":"bool","nodeType":"ElementaryTypeName","src":"4623:4:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":14228,"mutability":"mutable","name":"supported","nameLocation":"4642:9:61","nodeType":"VariableDeclaration","scope":14238,"src":"4637:14:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14227,"name":"bool","nodeType":"ElementaryTypeName","src":"4637:4:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":14233,"initialValue":{"arguments":[{"id":14230,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14218,"src":"4677:7:61","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":14231,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14220,"src":"4686:11:61","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":14229,"name":"_trySupportsInterface","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14259,"src":"4655:21:61","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$_t_bool_$","typeString":"function (address,bytes4) view returns (bool,bool)"}},"id":14232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4655:43:61","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bool_$","typeString":"tuple(bool,bool)"}},"nodeType":"VariableDeclarationStatement","src":"4622:76:61"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14234,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14226,"src":"4715:7:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":14235,"name":"supported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14228,"src":"4726:9:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4715:20:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14224,"id":14237,"nodeType":"Return","src":"4708:27:61"}]},"documentation":{"id":14216,"nodeType":"StructuredDocumentation","src":"3680:819:61","text":" @notice Query if a contract implements an interface, does not check ERC-165 support\n @param account The address of the contract to query for support of an interface\n @param interfaceId The interface identifier, as specified in ERC-165\n @return true if the contract at account indicates support of the interface with\n identifier interfaceId, false otherwise\n @dev Assumes that account contains a contract that supports ERC-165, otherwise\n the behavior of this method is undefined. This precondition can be checked\n with {supportsERC165}.\n Some precompiled contracts will falsely indicate support for a given interface, so caution\n should be exercised when using this function.\n Interface identification is specified in ERC-165."},"id":14239,"implemented":true,"kind":"function","modifiers":[],"name":"supportsERC165InterfaceUnchecked","nameLocation":"4513:32:61","nodeType":"FunctionDefinition","parameters":{"id":14221,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14218,"mutability":"mutable","name":"account","nameLocation":"4554:7:61","nodeType":"VariableDeclaration","scope":14239,"src":"4546:15:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14217,"name":"address","nodeType":"ElementaryTypeName","src":"4546:7:61","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14220,"mutability":"mutable","name":"interfaceId","nameLocation":"4570:11:61","nodeType":"VariableDeclaration","scope":14239,"src":"4563:18:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14219,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4563:6:61","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"4545:37:61"},"returnParameters":{"id":14224,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14223,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14239,"src":"4606:4:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14222,"name":"bool","nodeType":"ElementaryTypeName","src":"4606:4:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4605:6:61"},"scope":14260,"src":"4504:238:61","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14258,"nodeType":"Block","src":"5359:486:61","statements":[{"assignments":[14252],"declarations":[{"constant":false,"id":14252,"mutability":"mutable","name":"selector","nameLocation":"5376:8:61","nodeType":"VariableDeclaration","scope":14258,"src":"5369:15:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14251,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5369:6:61","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":14256,"initialValue":{"expression":{"expression":{"id":14253,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"5387:7:61","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$14272_$","typeString":"type(contract IERC165)"}},"id":14254,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5395:17:61","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":14271,"src":"5387:25:61","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$_t_bytes4_$returns$_t_bool_$","typeString":"function IERC165.supportsInterface(bytes4) view returns (bool)"}},"id":14255,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5413:8:61","memberName":"selector","nodeType":"MemberAccess","src":"5387:34:61","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"5369:52:61"},{"AST":{"nativeSrc":"5457:382:61","nodeType":"YulBlock","src":"5457:382:61","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5478:4:61","nodeType":"YulLiteral","src":"5478:4:61","type":"","value":"0x00"},{"name":"selector","nativeSrc":"5484:8:61","nodeType":"YulIdentifier","src":"5484:8:61"}],"functionName":{"name":"mstore","nativeSrc":"5471:6:61","nodeType":"YulIdentifier","src":"5471:6:61"},"nativeSrc":"5471:22:61","nodeType":"YulFunctionCall","src":"5471:22:61"},"nativeSrc":"5471:22:61","nodeType":"YulExpressionStatement","src":"5471:22:61"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5513:4:61","nodeType":"YulLiteral","src":"5513:4:61","type":"","value":"0x04"},{"name":"interfaceId","nativeSrc":"5519:11:61","nodeType":"YulIdentifier","src":"5519:11:61"}],"functionName":{"name":"mstore","nativeSrc":"5506:6:61","nodeType":"YulIdentifier","src":"5506:6:61"},"nativeSrc":"5506:25:61","nodeType":"YulFunctionCall","src":"5506:25:61"},"nativeSrc":"5506:25:61","nodeType":"YulExpressionStatement","src":"5506:25:61"},{"nativeSrc":"5544:61:61","nodeType":"YulAssignment","src":"5544:61:61","value":{"arguments":[{"kind":"number","nativeSrc":"5566:5:61","nodeType":"YulLiteral","src":"5566:5:61","type":"","value":"30000"},{"name":"account","nativeSrc":"5573:7:61","nodeType":"YulIdentifier","src":"5573:7:61"},{"kind":"number","nativeSrc":"5582:4:61","nodeType":"YulLiteral","src":"5582:4:61","type":"","value":"0x00"},{"kind":"number","nativeSrc":"5588:4:61","nodeType":"YulLiteral","src":"5588:4:61","type":"","value":"0x24"},{"kind":"number","nativeSrc":"5594:4:61","nodeType":"YulLiteral","src":"5594:4:61","type":"","value":"0x00"},{"kind":"number","nativeSrc":"5600:4:61","nodeType":"YulLiteral","src":"5600:4:61","type":"","value":"0x20"}],"functionName":{"name":"staticcall","nativeSrc":"5555:10:61","nodeType":"YulIdentifier","src":"5555:10:61"},"nativeSrc":"5555:50:61","nodeType":"YulFunctionCall","src":"5555:50:61"},"variableNames":[{"name":"success","nativeSrc":"5544:7:61","nodeType":"YulIdentifier","src":"5544:7:61"}]},{"nativeSrc":"5618:211:61","nodeType":"YulAssignment","src":"5618:211:61","value":{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"5655:14:61","nodeType":"YulIdentifier","src":"5655:14:61"},"nativeSrc":"5655:16:61","nodeType":"YulFunctionCall","src":"5655:16:61"},{"kind":"number","nativeSrc":"5673:4:61","nodeType":"YulLiteral","src":"5673:4:61","type":"","value":"0x1F"}],"functionName":{"name":"gt","nativeSrc":"5652:2:61","nodeType":"YulIdentifier","src":"5652:2:61"},"nativeSrc":"5652:26:61","nodeType":"YulFunctionCall","src":"5652:26:61"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5759:4:61","nodeType":"YulLiteral","src":"5759:4:61","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"5753:5:61","nodeType":"YulIdentifier","src":"5753:5:61"},"nativeSrc":"5753:11:61","nodeType":"YulFunctionCall","src":"5753:11:61"}],"functionName":{"name":"iszero","nativeSrc":"5746:6:61","nodeType":"YulIdentifier","src":"5746:6:61"},"nativeSrc":"5746:19:61","nodeType":"YulFunctionCall","src":"5746:19:61"}],"functionName":{"name":"iszero","nativeSrc":"5739:6:61","nodeType":"YulIdentifier","src":"5739:6:61"},"nativeSrc":"5739:27:61","nodeType":"YulFunctionCall","src":"5739:27:61"}],"functionName":{"name":"and","nativeSrc":"5631:3:61","nodeType":"YulIdentifier","src":"5631:3:61"},"nativeSrc":"5631:198:61","nodeType":"YulFunctionCall","src":"5631:198:61"},"variableNames":[{"name":"supported","nativeSrc":"5618:9:61","nodeType":"YulIdentifier","src":"5618:9:61"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":14242,"isOffset":false,"isSlot":false,"src":"5573:7:61","valueSize":1},{"declaration":14244,"isOffset":false,"isSlot":false,"src":"5519:11:61","valueSize":1},{"declaration":14252,"isOffset":false,"isSlot":false,"src":"5484:8:61","valueSize":1},{"declaration":14247,"isOffset":false,"isSlot":false,"src":"5544:7:61","valueSize":1},{"declaration":14249,"isOffset":false,"isSlot":false,"src":"5618:9:61","valueSize":1}],"flags":["memory-safe"],"id":14257,"nodeType":"InlineAssembly","src":"5432:407:61"}]},"documentation":{"id":14240,"nodeType":"StructuredDocumentation","src":"4748:464:61","text":" @dev Attempts to call `supportsInterface` on a contract and returns both the call\n success status and the interface support result.\n This function performs a low-level static call to the contract's `supportsInterface`\n function. It returns:\n * `success`: true if the call didn't revert, false if it did\n * `supported`: true if the call succeeded AND returned data indicating the interface is supported"},"id":14259,"implemented":true,"kind":"function","modifiers":[],"name":"_trySupportsInterface","nameLocation":"5226:21:61","nodeType":"FunctionDefinition","parameters":{"id":14245,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14242,"mutability":"mutable","name":"account","nameLocation":"5265:7:61","nodeType":"VariableDeclaration","scope":14259,"src":"5257:15:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14241,"name":"address","nodeType":"ElementaryTypeName","src":"5257:7:61","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14244,"mutability":"mutable","name":"interfaceId","nameLocation":"5289:11:61","nodeType":"VariableDeclaration","scope":14259,"src":"5282:18:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14243,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5282:6:61","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"5247:59:61"},"returnParameters":{"id":14250,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14247,"mutability":"mutable","name":"success","nameLocation":"5334:7:61","nodeType":"VariableDeclaration","scope":14259,"src":"5329:12:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14246,"name":"bool","nodeType":"ElementaryTypeName","src":"5329:4:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":14249,"mutability":"mutable","name":"supported","nameLocation":"5348:9:61","nodeType":"VariableDeclaration","scope":14259,"src":"5343:14:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14248,"name":"bool","nodeType":"ElementaryTypeName","src":"5343:4:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5328:30:61"},"scope":14260,"src":"5217:628:61","stateMutability":"view","virtual":false,"visibility":"private"}],"scope":14261,"src":"465:5382:61","usedErrors":[],"usedEvents":[]}],"src":"121:5727:61"},"id":61},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","exportedSymbols":{"IERC165":[14272]},"id":14273,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":14262,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"115:25:62"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC165","contractDependencies":[],"contractKind":"interface","documentation":{"id":14263,"nodeType":"StructuredDocumentation","src":"142:280:62","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":14272,"linearizedBaseContracts":[14272],"name":"IERC165","nameLocation":"433:7:62","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":14264,"nodeType":"StructuredDocumentation","src":"447:340:62","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":14271,"implemented":false,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"801:17:62","nodeType":"FunctionDefinition","parameters":{"id":14267,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14266,"mutability":"mutable","name":"interfaceId","nameLocation":"826:11:62","nodeType":"VariableDeclaration","scope":14271,"src":"819:18:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14265,"name":"bytes4","nodeType":"ElementaryTypeName","src":"819:6:62","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"818:20:62"},"returnParameters":{"id":14270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14269,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14271,"src":"862:4:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14268,"name":"bool","nodeType":"ElementaryTypeName","src":"862:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"861:6:62"},"scope":14272,"src":"792:76:62","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":14273,"src":"423:447:62","usedErrors":[],"usedEvents":[]}],"src":"115:756:62"},"id":62},"@openzeppelin/contracts/utils/math/Math.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","exportedSymbols":{"Math":[15914],"Panic":[11417],"SafeCast":[17679]},"id":15915,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":14274,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"103:24:63"},{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","file":"../Panic.sol","id":14276,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15915,"sourceUnit":11418,"src":"129:35:63","symbolAliases":[{"foreign":{"id":14275,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"137:5:63","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./SafeCast.sol","id":14278,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15915,"sourceUnit":17680,"src":"165:40:63","symbolAliases":[{"foreign":{"id":14277,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"173:8:63","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Math","contractDependencies":[],"contractKind":"library","documentation":{"id":14279,"nodeType":"StructuredDocumentation","src":"207:73:63","text":" @dev Standard math utilities missing in the Solidity language."},"fullyImplemented":true,"id":15914,"linearizedBaseContracts":[15914],"name":"Math","nameLocation":"289:4:63","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Math.Rounding","id":14284,"members":[{"id":14280,"name":"Floor","nameLocation":"324:5:63","nodeType":"EnumValue","src":"324:5:63"},{"id":14281,"name":"Ceil","nameLocation":"367:4:63","nodeType":"EnumValue","src":"367:4:63"},{"id":14282,"name":"Trunc","nameLocation":"409:5:63","nodeType":"EnumValue","src":"409:5:63"},{"id":14283,"name":"Expand","nameLocation":"439:6:63","nodeType":"EnumValue","src":"439:6:63"}],"name":"Rounding","nameLocation":"305:8:63","nodeType":"EnumDefinition","src":"300:169:63"},{"body":{"id":14297,"nodeType":"Block","src":"731:112:63","statements":[{"AST":{"nativeSrc":"766:71:63","nodeType":"YulBlock","src":"766:71:63","statements":[{"nativeSrc":"780:16:63","nodeType":"YulAssignment","src":"780:16:63","value":{"arguments":[{"name":"a","nativeSrc":"791:1:63","nodeType":"YulIdentifier","src":"791:1:63"},{"name":"b","nativeSrc":"794:1:63","nodeType":"YulIdentifier","src":"794:1:63"}],"functionName":{"name":"add","nativeSrc":"787:3:63","nodeType":"YulIdentifier","src":"787:3:63"},"nativeSrc":"787:9:63","nodeType":"YulFunctionCall","src":"787:9:63"},"variableNames":[{"name":"low","nativeSrc":"780:3:63","nodeType":"YulIdentifier","src":"780:3:63"}]},{"nativeSrc":"809:18:63","nodeType":"YulAssignment","src":"809:18:63","value":{"arguments":[{"name":"low","nativeSrc":"820:3:63","nodeType":"YulIdentifier","src":"820:3:63"},{"name":"a","nativeSrc":"825:1:63","nodeType":"YulIdentifier","src":"825:1:63"}],"functionName":{"name":"lt","nativeSrc":"817:2:63","nodeType":"YulIdentifier","src":"817:2:63"},"nativeSrc":"817:10:63","nodeType":"YulFunctionCall","src":"817:10:63"},"variableNames":[{"name":"high","nativeSrc":"809:4:63","nodeType":"YulIdentifier","src":"809:4:63"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":14287,"isOffset":false,"isSlot":false,"src":"791:1:63","valueSize":1},{"declaration":14287,"isOffset":false,"isSlot":false,"src":"825:1:63","valueSize":1},{"declaration":14289,"isOffset":false,"isSlot":false,"src":"794:1:63","valueSize":1},{"declaration":14292,"isOffset":false,"isSlot":false,"src":"809:4:63","valueSize":1},{"declaration":14294,"isOffset":false,"isSlot":false,"src":"780:3:63","valueSize":1},{"declaration":14294,"isOffset":false,"isSlot":false,"src":"820:3:63","valueSize":1}],"flags":["memory-safe"],"id":14296,"nodeType":"InlineAssembly","src":"741:96:63"}]},"documentation":{"id":14285,"nodeType":"StructuredDocumentation","src":"475:163:63","text":" @dev Return the 512-bit addition of two uint256.\n The result is stored in two 256 variables such that sum = high * 2²⁵⁶ + low."},"id":14298,"implemented":true,"kind":"function","modifiers":[],"name":"add512","nameLocation":"652:6:63","nodeType":"FunctionDefinition","parameters":{"id":14290,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14287,"mutability":"mutable","name":"a","nameLocation":"667:1:63","nodeType":"VariableDeclaration","scope":14298,"src":"659:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14286,"name":"uint256","nodeType":"ElementaryTypeName","src":"659:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14289,"mutability":"mutable","name":"b","nameLocation":"678:1:63","nodeType":"VariableDeclaration","scope":14298,"src":"670:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14288,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"658:22:63"},"returnParameters":{"id":14295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14292,"mutability":"mutable","name":"high","nameLocation":"712:4:63","nodeType":"VariableDeclaration","scope":14298,"src":"704:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14291,"name":"uint256","nodeType":"ElementaryTypeName","src":"704:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14294,"mutability":"mutable","name":"low","nameLocation":"726:3:63","nodeType":"VariableDeclaration","scope":14298,"src":"718:11:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14293,"name":"uint256","nodeType":"ElementaryTypeName","src":"718:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"703:27:63"},"scope":15914,"src":"643:200:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14311,"nodeType":"Block","src":"1115:462:63","statements":[{"AST":{"nativeSrc":"1437:134:63","nodeType":"YulBlock","src":"1437:134:63","statements":[{"nativeSrc":"1451:30:63","nodeType":"YulVariableDeclaration","src":"1451:30:63","value":{"arguments":[{"name":"a","nativeSrc":"1468:1:63","nodeType":"YulIdentifier","src":"1468:1:63"},{"name":"b","nativeSrc":"1471:1:63","nodeType":"YulIdentifier","src":"1471:1:63"},{"arguments":[{"kind":"number","nativeSrc":"1478:1:63","nodeType":"YulLiteral","src":"1478:1:63","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"1474:3:63","nodeType":"YulIdentifier","src":"1474:3:63"},"nativeSrc":"1474:6:63","nodeType":"YulFunctionCall","src":"1474:6:63"}],"functionName":{"name":"mulmod","nativeSrc":"1461:6:63","nodeType":"YulIdentifier","src":"1461:6:63"},"nativeSrc":"1461:20:63","nodeType":"YulFunctionCall","src":"1461:20:63"},"variables":[{"name":"mm","nativeSrc":"1455:2:63","nodeType":"YulTypedName","src":"1455:2:63","type":""}]},{"nativeSrc":"1494:16:63","nodeType":"YulAssignment","src":"1494:16:63","value":{"arguments":[{"name":"a","nativeSrc":"1505:1:63","nodeType":"YulIdentifier","src":"1505:1:63"},{"name":"b","nativeSrc":"1508:1:63","nodeType":"YulIdentifier","src":"1508:1:63"}],"functionName":{"name":"mul","nativeSrc":"1501:3:63","nodeType":"YulIdentifier","src":"1501:3:63"},"nativeSrc":"1501:9:63","nodeType":"YulFunctionCall","src":"1501:9:63"},"variableNames":[{"name":"low","nativeSrc":"1494:3:63","nodeType":"YulIdentifier","src":"1494:3:63"}]},{"nativeSrc":"1523:38:63","nodeType":"YulAssignment","src":"1523:38:63","value":{"arguments":[{"arguments":[{"name":"mm","nativeSrc":"1539:2:63","nodeType":"YulIdentifier","src":"1539:2:63"},{"name":"low","nativeSrc":"1543:3:63","nodeType":"YulIdentifier","src":"1543:3:63"}],"functionName":{"name":"sub","nativeSrc":"1535:3:63","nodeType":"YulIdentifier","src":"1535:3:63"},"nativeSrc":"1535:12:63","nodeType":"YulFunctionCall","src":"1535:12:63"},{"arguments":[{"name":"mm","nativeSrc":"1552:2:63","nodeType":"YulIdentifier","src":"1552:2:63"},{"name":"low","nativeSrc":"1556:3:63","nodeType":"YulIdentifier","src":"1556:3:63"}],"functionName":{"name":"lt","nativeSrc":"1549:2:63","nodeType":"YulIdentifier","src":"1549:2:63"},"nativeSrc":"1549:11:63","nodeType":"YulFunctionCall","src":"1549:11:63"}],"functionName":{"name":"sub","nativeSrc":"1531:3:63","nodeType":"YulIdentifier","src":"1531:3:63"},"nativeSrc":"1531:30:63","nodeType":"YulFunctionCall","src":"1531:30:63"},"variableNames":[{"name":"high","nativeSrc":"1523:4:63","nodeType":"YulIdentifier","src":"1523:4:63"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":14301,"isOffset":false,"isSlot":false,"src":"1468:1:63","valueSize":1},{"declaration":14301,"isOffset":false,"isSlot":false,"src":"1505:1:63","valueSize":1},{"declaration":14303,"isOffset":false,"isSlot":false,"src":"1471:1:63","valueSize":1},{"declaration":14303,"isOffset":false,"isSlot":false,"src":"1508:1:63","valueSize":1},{"declaration":14306,"isOffset":false,"isSlot":false,"src":"1523:4:63","valueSize":1},{"declaration":14308,"isOffset":false,"isSlot":false,"src":"1494:3:63","valueSize":1},{"declaration":14308,"isOffset":false,"isSlot":false,"src":"1543:3:63","valueSize":1},{"declaration":14308,"isOffset":false,"isSlot":false,"src":"1556:3:63","valueSize":1}],"flags":["memory-safe"],"id":14310,"nodeType":"InlineAssembly","src":"1412:159:63"}]},"documentation":{"id":14299,"nodeType":"StructuredDocumentation","src":"849:173:63","text":" @dev Return the 512-bit multiplication of two uint256.\n The result is stored in two 256 variables such that product = high * 2²⁵⁶ + low."},"id":14312,"implemented":true,"kind":"function","modifiers":[],"name":"mul512","nameLocation":"1036:6:63","nodeType":"FunctionDefinition","parameters":{"id":14304,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14301,"mutability":"mutable","name":"a","nameLocation":"1051:1:63","nodeType":"VariableDeclaration","scope":14312,"src":"1043:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14300,"name":"uint256","nodeType":"ElementaryTypeName","src":"1043:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14303,"mutability":"mutable","name":"b","nameLocation":"1062:1:63","nodeType":"VariableDeclaration","scope":14312,"src":"1054:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14302,"name":"uint256","nodeType":"ElementaryTypeName","src":"1054:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1042:22:63"},"returnParameters":{"id":14309,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14306,"mutability":"mutable","name":"high","nameLocation":"1096:4:63","nodeType":"VariableDeclaration","scope":14312,"src":"1088:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14305,"name":"uint256","nodeType":"ElementaryTypeName","src":"1088:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14308,"mutability":"mutable","name":"low","nameLocation":"1110:3:63","nodeType":"VariableDeclaration","scope":14312,"src":"1102:11:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14307,"name":"uint256","nodeType":"ElementaryTypeName","src":"1102:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1087:27:63"},"scope":15914,"src":"1027:550:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14346,"nodeType":"Block","src":"1784:149:63","statements":[{"id":14345,"nodeType":"UncheckedBlock","src":"1794:133:63","statements":[{"assignments":[14325],"declarations":[{"constant":false,"id":14325,"mutability":"mutable","name":"c","nameLocation":"1826:1:63","nodeType":"VariableDeclaration","scope":14345,"src":"1818:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14324,"name":"uint256","nodeType":"ElementaryTypeName","src":"1818:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14329,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14326,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14315,"src":"1830:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":14327,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14317,"src":"1834:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1830:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1818:17:63"},{"expression":{"id":14334,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14330,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14320,"src":"1849:7:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14331,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14325,"src":"1859:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":14332,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14315,"src":"1864:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1859:6:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1849:16:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14335,"nodeType":"ExpressionStatement","src":"1849:16:63"},{"expression":{"id":14343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14336,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14322,"src":"1879:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14342,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14337,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14325,"src":"1888:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":14340,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14320,"src":"1908:7:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":14338,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"1892:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":14339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1901:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"1892:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":14341,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1892:24:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1888:28:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1879:37:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14344,"nodeType":"ExpressionStatement","src":"1879:37:63"}]}]},"documentation":{"id":14313,"nodeType":"StructuredDocumentation","src":"1583:105:63","text":" @dev Returns the addition of two unsigned integers, with a success flag (no overflow)."},"id":14347,"implemented":true,"kind":"function","modifiers":[],"name":"tryAdd","nameLocation":"1702:6:63","nodeType":"FunctionDefinition","parameters":{"id":14318,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14315,"mutability":"mutable","name":"a","nameLocation":"1717:1:63","nodeType":"VariableDeclaration","scope":14347,"src":"1709:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14314,"name":"uint256","nodeType":"ElementaryTypeName","src":"1709:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14317,"mutability":"mutable","name":"b","nameLocation":"1728:1:63","nodeType":"VariableDeclaration","scope":14347,"src":"1720:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14316,"name":"uint256","nodeType":"ElementaryTypeName","src":"1720:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1708:22:63"},"returnParameters":{"id":14323,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14320,"mutability":"mutable","name":"success","nameLocation":"1759:7:63","nodeType":"VariableDeclaration","scope":14347,"src":"1754:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14319,"name":"bool","nodeType":"ElementaryTypeName","src":"1754:4:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":14322,"mutability":"mutable","name":"result","nameLocation":"1776:6:63","nodeType":"VariableDeclaration","scope":14347,"src":"1768:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14321,"name":"uint256","nodeType":"ElementaryTypeName","src":"1768:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1753:30:63"},"scope":15914,"src":"1693:240:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14381,"nodeType":"Block","src":"2143:149:63","statements":[{"id":14380,"nodeType":"UncheckedBlock","src":"2153:133:63","statements":[{"assignments":[14360],"declarations":[{"constant":false,"id":14360,"mutability":"mutable","name":"c","nameLocation":"2185:1:63","nodeType":"VariableDeclaration","scope":14380,"src":"2177:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14359,"name":"uint256","nodeType":"ElementaryTypeName","src":"2177:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14364,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14361,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14350,"src":"2189:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":14362,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14352,"src":"2193:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2189:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2177:17:63"},{"expression":{"id":14369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14365,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14355,"src":"2208:7:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14366,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14360,"src":"2218:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":14367,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14350,"src":"2223:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2218:6:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2208:16:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14370,"nodeType":"ExpressionStatement","src":"2208:16:63"},{"expression":{"id":14378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14371,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14357,"src":"2238:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14372,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14360,"src":"2247:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":14375,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14355,"src":"2267:7:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":14373,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"2251:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":14374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2260:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"2251:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":14376,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2251:24:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2247:28:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2238:37:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14379,"nodeType":"ExpressionStatement","src":"2238:37:63"}]}]},"documentation":{"id":14348,"nodeType":"StructuredDocumentation","src":"1939:108:63","text":" @dev Returns the subtraction of two unsigned integers, with a success flag (no overflow)."},"id":14382,"implemented":true,"kind":"function","modifiers":[],"name":"trySub","nameLocation":"2061:6:63","nodeType":"FunctionDefinition","parameters":{"id":14353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14350,"mutability":"mutable","name":"a","nameLocation":"2076:1:63","nodeType":"VariableDeclaration","scope":14382,"src":"2068:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14349,"name":"uint256","nodeType":"ElementaryTypeName","src":"2068:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14352,"mutability":"mutable","name":"b","nameLocation":"2087:1:63","nodeType":"VariableDeclaration","scope":14382,"src":"2079:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14351,"name":"uint256","nodeType":"ElementaryTypeName","src":"2079:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2067:22:63"},"returnParameters":{"id":14358,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14355,"mutability":"mutable","name":"success","nameLocation":"2118:7:63","nodeType":"VariableDeclaration","scope":14382,"src":"2113:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14354,"name":"bool","nodeType":"ElementaryTypeName","src":"2113:4:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":14357,"mutability":"mutable","name":"result","nameLocation":"2135:6:63","nodeType":"VariableDeclaration","scope":14382,"src":"2127:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14356,"name":"uint256","nodeType":"ElementaryTypeName","src":"2127:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2112:30:63"},"scope":15914,"src":"2052:240:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14411,"nodeType":"Block","src":"2505:391:63","statements":[{"id":14410,"nodeType":"UncheckedBlock","src":"2515:375:63","statements":[{"assignments":[14395],"declarations":[{"constant":false,"id":14395,"mutability":"mutable","name":"c","nameLocation":"2547:1:63","nodeType":"VariableDeclaration","scope":14410,"src":"2539:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14394,"name":"uint256","nodeType":"ElementaryTypeName","src":"2539:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14399,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14396,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14385,"src":"2551:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":14397,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14387,"src":"2555:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2551:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2539:17:63"},{"AST":{"nativeSrc":"2595:188:63","nodeType":"YulBlock","src":"2595:188:63","statements":[{"nativeSrc":"2727:42:63","nodeType":"YulAssignment","src":"2727:42:63","value":{"arguments":[{"arguments":[{"arguments":[{"name":"c","nativeSrc":"2748:1:63","nodeType":"YulIdentifier","src":"2748:1:63"},{"name":"a","nativeSrc":"2751:1:63","nodeType":"YulIdentifier","src":"2751:1:63"}],"functionName":{"name":"div","nativeSrc":"2744:3:63","nodeType":"YulIdentifier","src":"2744:3:63"},"nativeSrc":"2744:9:63","nodeType":"YulFunctionCall","src":"2744:9:63"},{"name":"b","nativeSrc":"2755:1:63","nodeType":"YulIdentifier","src":"2755:1:63"}],"functionName":{"name":"eq","nativeSrc":"2741:2:63","nodeType":"YulIdentifier","src":"2741:2:63"},"nativeSrc":"2741:16:63","nodeType":"YulFunctionCall","src":"2741:16:63"},{"arguments":[{"name":"a","nativeSrc":"2766:1:63","nodeType":"YulIdentifier","src":"2766:1:63"}],"functionName":{"name":"iszero","nativeSrc":"2759:6:63","nodeType":"YulIdentifier","src":"2759:6:63"},"nativeSrc":"2759:9:63","nodeType":"YulFunctionCall","src":"2759:9:63"}],"functionName":{"name":"or","nativeSrc":"2738:2:63","nodeType":"YulIdentifier","src":"2738:2:63"},"nativeSrc":"2738:31:63","nodeType":"YulFunctionCall","src":"2738:31:63"},"variableNames":[{"name":"success","nativeSrc":"2727:7:63","nodeType":"YulIdentifier","src":"2727:7:63"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":14385,"isOffset":false,"isSlot":false,"src":"2751:1:63","valueSize":1},{"declaration":14385,"isOffset":false,"isSlot":false,"src":"2766:1:63","valueSize":1},{"declaration":14387,"isOffset":false,"isSlot":false,"src":"2755:1:63","valueSize":1},{"declaration":14395,"isOffset":false,"isSlot":false,"src":"2748:1:63","valueSize":1},{"declaration":14390,"isOffset":false,"isSlot":false,"src":"2727:7:63","valueSize":1}],"flags":["memory-safe"],"id":14400,"nodeType":"InlineAssembly","src":"2570:213:63"},{"expression":{"id":14408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14401,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14392,"src":"2842:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14402,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14395,"src":"2851:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":14405,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14390,"src":"2871:7:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":14403,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"2855:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":14404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2864:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"2855:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":14406,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2855:24:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2851:28:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2842:37:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14409,"nodeType":"ExpressionStatement","src":"2842:37:63"}]}]},"documentation":{"id":14383,"nodeType":"StructuredDocumentation","src":"2298:111:63","text":" @dev Returns the multiplication of two unsigned integers, with a success flag (no overflow)."},"id":14412,"implemented":true,"kind":"function","modifiers":[],"name":"tryMul","nameLocation":"2423:6:63","nodeType":"FunctionDefinition","parameters":{"id":14388,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14385,"mutability":"mutable","name":"a","nameLocation":"2438:1:63","nodeType":"VariableDeclaration","scope":14412,"src":"2430:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14384,"name":"uint256","nodeType":"ElementaryTypeName","src":"2430:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14387,"mutability":"mutable","name":"b","nameLocation":"2449:1:63","nodeType":"VariableDeclaration","scope":14412,"src":"2441:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14386,"name":"uint256","nodeType":"ElementaryTypeName","src":"2441:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2429:22:63"},"returnParameters":{"id":14393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14390,"mutability":"mutable","name":"success","nameLocation":"2480:7:63","nodeType":"VariableDeclaration","scope":14412,"src":"2475:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14389,"name":"bool","nodeType":"ElementaryTypeName","src":"2475:4:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":14392,"mutability":"mutable","name":"result","nameLocation":"2497:6:63","nodeType":"VariableDeclaration","scope":14412,"src":"2489:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14391,"name":"uint256","nodeType":"ElementaryTypeName","src":"2489:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2474:30:63"},"scope":15914,"src":"2414:482:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14432,"nodeType":"Block","src":"3111:231:63","statements":[{"id":14431,"nodeType":"UncheckedBlock","src":"3121:215:63","statements":[{"expression":{"id":14428,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14424,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14420,"src":"3145:7:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14427,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14425,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14417,"src":"3155:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":14426,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3159:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3155:5:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3145:15:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14429,"nodeType":"ExpressionStatement","src":"3145:15:63"},{"AST":{"nativeSrc":"3199:127:63","nodeType":"YulBlock","src":"3199:127:63","statements":[{"nativeSrc":"3293:19:63","nodeType":"YulAssignment","src":"3293:19:63","value":{"arguments":[{"name":"a","nativeSrc":"3307:1:63","nodeType":"YulIdentifier","src":"3307:1:63"},{"name":"b","nativeSrc":"3310:1:63","nodeType":"YulIdentifier","src":"3310:1:63"}],"functionName":{"name":"div","nativeSrc":"3303:3:63","nodeType":"YulIdentifier","src":"3303:3:63"},"nativeSrc":"3303:9:63","nodeType":"YulFunctionCall","src":"3303:9:63"},"variableNames":[{"name":"result","nativeSrc":"3293:6:63","nodeType":"YulIdentifier","src":"3293:6:63"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":14415,"isOffset":false,"isSlot":false,"src":"3307:1:63","valueSize":1},{"declaration":14417,"isOffset":false,"isSlot":false,"src":"3310:1:63","valueSize":1},{"declaration":14422,"isOffset":false,"isSlot":false,"src":"3293:6:63","valueSize":1}],"flags":["memory-safe"],"id":14430,"nodeType":"InlineAssembly","src":"3174:152:63"}]}]},"documentation":{"id":14413,"nodeType":"StructuredDocumentation","src":"2902:113:63","text":" @dev Returns the division of two unsigned integers, with a success flag (no division by zero)."},"id":14433,"implemented":true,"kind":"function","modifiers":[],"name":"tryDiv","nameLocation":"3029:6:63","nodeType":"FunctionDefinition","parameters":{"id":14418,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14415,"mutability":"mutable","name":"a","nameLocation":"3044:1:63","nodeType":"VariableDeclaration","scope":14433,"src":"3036:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14414,"name":"uint256","nodeType":"ElementaryTypeName","src":"3036:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14417,"mutability":"mutable","name":"b","nameLocation":"3055:1:63","nodeType":"VariableDeclaration","scope":14433,"src":"3047:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14416,"name":"uint256","nodeType":"ElementaryTypeName","src":"3047:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3035:22:63"},"returnParameters":{"id":14423,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14420,"mutability":"mutable","name":"success","nameLocation":"3086:7:63","nodeType":"VariableDeclaration","scope":14433,"src":"3081:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14419,"name":"bool","nodeType":"ElementaryTypeName","src":"3081:4:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":14422,"mutability":"mutable","name":"result","nameLocation":"3103:6:63","nodeType":"VariableDeclaration","scope":14433,"src":"3095:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14421,"name":"uint256","nodeType":"ElementaryTypeName","src":"3095:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3080:30:63"},"scope":15914,"src":"3020:322:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14453,"nodeType":"Block","src":"3567:231:63","statements":[{"id":14452,"nodeType":"UncheckedBlock","src":"3577:215:63","statements":[{"expression":{"id":14449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14445,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14441,"src":"3601:7:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14446,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14438,"src":"3611:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":14447,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3615:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3611:5:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3601:15:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14450,"nodeType":"ExpressionStatement","src":"3601:15:63"},{"AST":{"nativeSrc":"3655:127:63","nodeType":"YulBlock","src":"3655:127:63","statements":[{"nativeSrc":"3749:19:63","nodeType":"YulAssignment","src":"3749:19:63","value":{"arguments":[{"name":"a","nativeSrc":"3763:1:63","nodeType":"YulIdentifier","src":"3763:1:63"},{"name":"b","nativeSrc":"3766:1:63","nodeType":"YulIdentifier","src":"3766:1:63"}],"functionName":{"name":"mod","nativeSrc":"3759:3:63","nodeType":"YulIdentifier","src":"3759:3:63"},"nativeSrc":"3759:9:63","nodeType":"YulFunctionCall","src":"3759:9:63"},"variableNames":[{"name":"result","nativeSrc":"3749:6:63","nodeType":"YulIdentifier","src":"3749:6:63"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":14436,"isOffset":false,"isSlot":false,"src":"3763:1:63","valueSize":1},{"declaration":14438,"isOffset":false,"isSlot":false,"src":"3766:1:63","valueSize":1},{"declaration":14443,"isOffset":false,"isSlot":false,"src":"3749:6:63","valueSize":1}],"flags":["memory-safe"],"id":14451,"nodeType":"InlineAssembly","src":"3630:152:63"}]}]},"documentation":{"id":14434,"nodeType":"StructuredDocumentation","src":"3348:123:63","text":" @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero)."},"id":14454,"implemented":true,"kind":"function","modifiers":[],"name":"tryMod","nameLocation":"3485:6:63","nodeType":"FunctionDefinition","parameters":{"id":14439,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14436,"mutability":"mutable","name":"a","nameLocation":"3500:1:63","nodeType":"VariableDeclaration","scope":14454,"src":"3492:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14435,"name":"uint256","nodeType":"ElementaryTypeName","src":"3492:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14438,"mutability":"mutable","name":"b","nameLocation":"3511:1:63","nodeType":"VariableDeclaration","scope":14454,"src":"3503:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14437,"name":"uint256","nodeType":"ElementaryTypeName","src":"3503:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3491:22:63"},"returnParameters":{"id":14444,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14441,"mutability":"mutable","name":"success","nameLocation":"3542:7:63","nodeType":"VariableDeclaration","scope":14454,"src":"3537:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14440,"name":"bool","nodeType":"ElementaryTypeName","src":"3537:4:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":14443,"mutability":"mutable","name":"result","nameLocation":"3559:6:63","nodeType":"VariableDeclaration","scope":14454,"src":"3551:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14442,"name":"uint256","nodeType":"ElementaryTypeName","src":"3551:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3536:30:63"},"scope":15914,"src":"3476:322:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14483,"nodeType":"Block","src":"3989:122:63","statements":[{"assignments":[14465,14467],"declarations":[{"constant":false,"id":14465,"mutability":"mutable","name":"success","nameLocation":"4005:7:63","nodeType":"VariableDeclaration","scope":14483,"src":"4000:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14464,"name":"bool","nodeType":"ElementaryTypeName","src":"4000:4:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":14467,"mutability":"mutable","name":"result","nameLocation":"4022:6:63","nodeType":"VariableDeclaration","scope":14483,"src":"4014:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14466,"name":"uint256","nodeType":"ElementaryTypeName","src":"4014:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14472,"initialValue":{"arguments":[{"id":14469,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14457,"src":"4039:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14470,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14459,"src":"4042:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14468,"name":"tryAdd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14347,"src":"4032:6:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (bool,uint256)"}},"id":14471,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4032:12:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"3999:45:63"},{"expression":{"arguments":[{"id":14474,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14465,"src":"4069:7:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":14475,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14467,"src":"4078:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"arguments":[{"id":14478,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4091:7:63","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":14477,"name":"uint256","nodeType":"ElementaryTypeName","src":"4091:7:63","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":14476,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4086:4:63","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":14479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4086:13:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":14480,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4100:3:63","memberName":"max","nodeType":"MemberAccess","src":"4086:17:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14473,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14561,"src":"4061:7:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":14481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4061:43:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14463,"id":14482,"nodeType":"Return","src":"4054:50:63"}]},"documentation":{"id":14455,"nodeType":"StructuredDocumentation","src":"3804:103:63","text":" @dev Unsigned saturating addition, bounds to `2²⁵⁶ - 1` instead of overflowing."},"id":14484,"implemented":true,"kind":"function","modifiers":[],"name":"saturatingAdd","nameLocation":"3921:13:63","nodeType":"FunctionDefinition","parameters":{"id":14460,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14457,"mutability":"mutable","name":"a","nameLocation":"3943:1:63","nodeType":"VariableDeclaration","scope":14484,"src":"3935:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14456,"name":"uint256","nodeType":"ElementaryTypeName","src":"3935:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14459,"mutability":"mutable","name":"b","nameLocation":"3954:1:63","nodeType":"VariableDeclaration","scope":14484,"src":"3946:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14458,"name":"uint256","nodeType":"ElementaryTypeName","src":"3946:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3934:22:63"},"returnParameters":{"id":14463,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14462,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14484,"src":"3980:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14461,"name":"uint256","nodeType":"ElementaryTypeName","src":"3980:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3979:9:63"},"scope":15914,"src":"3912:199:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14503,"nodeType":"Block","src":"4294:73:63","statements":[{"assignments":[null,14495],"declarations":[null,{"constant":false,"id":14495,"mutability":"mutable","name":"result","nameLocation":"4315:6:63","nodeType":"VariableDeclaration","scope":14503,"src":"4307:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14494,"name":"uint256","nodeType":"ElementaryTypeName","src":"4307:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14500,"initialValue":{"arguments":[{"id":14497,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14487,"src":"4332:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14498,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14489,"src":"4335:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14496,"name":"trySub","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14382,"src":"4325:6:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (bool,uint256)"}},"id":14499,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4325:12:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"4304:33:63"},{"expression":{"id":14501,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14495,"src":"4354:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14493,"id":14502,"nodeType":"Return","src":"4347:13:63"}]},"documentation":{"id":14485,"nodeType":"StructuredDocumentation","src":"4117:95:63","text":" @dev Unsigned saturating subtraction, bounds to zero instead of overflowing."},"id":14504,"implemented":true,"kind":"function","modifiers":[],"name":"saturatingSub","nameLocation":"4226:13:63","nodeType":"FunctionDefinition","parameters":{"id":14490,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14487,"mutability":"mutable","name":"a","nameLocation":"4248:1:63","nodeType":"VariableDeclaration","scope":14504,"src":"4240:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14486,"name":"uint256","nodeType":"ElementaryTypeName","src":"4240:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14489,"mutability":"mutable","name":"b","nameLocation":"4259:1:63","nodeType":"VariableDeclaration","scope":14504,"src":"4251:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14488,"name":"uint256","nodeType":"ElementaryTypeName","src":"4251:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4239:22:63"},"returnParameters":{"id":14493,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14492,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14504,"src":"4285:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14491,"name":"uint256","nodeType":"ElementaryTypeName","src":"4285:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4284:9:63"},"scope":15914,"src":"4217:150:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14533,"nodeType":"Block","src":"4564:122:63","statements":[{"assignments":[14515,14517],"declarations":[{"constant":false,"id":14515,"mutability":"mutable","name":"success","nameLocation":"4580:7:63","nodeType":"VariableDeclaration","scope":14533,"src":"4575:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14514,"name":"bool","nodeType":"ElementaryTypeName","src":"4575:4:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":14517,"mutability":"mutable","name":"result","nameLocation":"4597:6:63","nodeType":"VariableDeclaration","scope":14533,"src":"4589:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14516,"name":"uint256","nodeType":"ElementaryTypeName","src":"4589:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14522,"initialValue":{"arguments":[{"id":14519,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14507,"src":"4614:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14520,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14509,"src":"4617:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14518,"name":"tryMul","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14412,"src":"4607:6:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (bool,uint256)"}},"id":14521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4607:12:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"4574:45:63"},{"expression":{"arguments":[{"id":14524,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14515,"src":"4644:7:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":14525,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14517,"src":"4653:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"arguments":[{"id":14528,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4666:7:63","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":14527,"name":"uint256","nodeType":"ElementaryTypeName","src":"4666:7:63","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":14526,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4661:4:63","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":14529,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4661:13:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":14530,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4675:3:63","memberName":"max","nodeType":"MemberAccess","src":"4661:17:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14523,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14561,"src":"4636:7:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":14531,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4636:43:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14513,"id":14532,"nodeType":"Return","src":"4629:50:63"}]},"documentation":{"id":14505,"nodeType":"StructuredDocumentation","src":"4373:109:63","text":" @dev Unsigned saturating multiplication, bounds to `2²⁵⁶ - 1` instead of overflowing."},"id":14534,"implemented":true,"kind":"function","modifiers":[],"name":"saturatingMul","nameLocation":"4496:13:63","nodeType":"FunctionDefinition","parameters":{"id":14510,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14507,"mutability":"mutable","name":"a","nameLocation":"4518:1:63","nodeType":"VariableDeclaration","scope":14534,"src":"4510:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14506,"name":"uint256","nodeType":"ElementaryTypeName","src":"4510:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14509,"mutability":"mutable","name":"b","nameLocation":"4529:1:63","nodeType":"VariableDeclaration","scope":14534,"src":"4521:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14508,"name":"uint256","nodeType":"ElementaryTypeName","src":"4521:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4509:22:63"},"returnParameters":{"id":14513,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14512,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14534,"src":"4555:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14511,"name":"uint256","nodeType":"ElementaryTypeName","src":"4555:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4554:9:63"},"scope":15914,"src":"4487:199:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14560,"nodeType":"Block","src":"5174:207:63","statements":[{"id":14559,"nodeType":"UncheckedBlock","src":"5184:191:63","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14557,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14546,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14541,"src":"5322:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14555,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14547,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14539,"src":"5328:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":14548,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14541,"src":"5332:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5328:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":14550,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5327:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":14553,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14537,"src":"5353:9:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":14551,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"5337:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":14552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5346:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"5337:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":14554,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5337:26:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5327:36:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":14556,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5326:38:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5322:42:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14545,"id":14558,"nodeType":"Return","src":"5315:49:63"}]}]},"documentation":{"id":14535,"nodeType":"StructuredDocumentation","src":"4692:390:63","text":" @dev Branchless ternary evaluation for `condition ? a : b`. 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. `condition ? a : b`) to only compute\n one branch when needed, making this function more expensive."},"id":14561,"implemented":true,"kind":"function","modifiers":[],"name":"ternary","nameLocation":"5096:7:63","nodeType":"FunctionDefinition","parameters":{"id":14542,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14537,"mutability":"mutable","name":"condition","nameLocation":"5109:9:63","nodeType":"VariableDeclaration","scope":14561,"src":"5104:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14536,"name":"bool","nodeType":"ElementaryTypeName","src":"5104:4:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":14539,"mutability":"mutable","name":"a","nameLocation":"5128:1:63","nodeType":"VariableDeclaration","scope":14561,"src":"5120:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14538,"name":"uint256","nodeType":"ElementaryTypeName","src":"5120:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14541,"mutability":"mutable","name":"b","nameLocation":"5139:1:63","nodeType":"VariableDeclaration","scope":14561,"src":"5131:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14540,"name":"uint256","nodeType":"ElementaryTypeName","src":"5131:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5103:38:63"},"returnParameters":{"id":14545,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14544,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14561,"src":"5165:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14543,"name":"uint256","nodeType":"ElementaryTypeName","src":"5165:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5164:9:63"},"scope":15914,"src":"5087:294:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14579,"nodeType":"Block","src":"5518:44:63","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14572,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14564,"src":"5543:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":14573,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14566,"src":"5547:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5543:5:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":14575,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14564,"src":"5550:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14576,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14566,"src":"5553:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14571,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14561,"src":"5535:7:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":14577,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5535:20:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14570,"id":14578,"nodeType":"Return","src":"5528:27:63"}]},"documentation":{"id":14562,"nodeType":"StructuredDocumentation","src":"5387:59:63","text":" @dev Returns the largest of two numbers."},"id":14580,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"5460:3:63","nodeType":"FunctionDefinition","parameters":{"id":14567,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14564,"mutability":"mutable","name":"a","nameLocation":"5472:1:63","nodeType":"VariableDeclaration","scope":14580,"src":"5464:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14563,"name":"uint256","nodeType":"ElementaryTypeName","src":"5464:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14566,"mutability":"mutable","name":"b","nameLocation":"5483:1:63","nodeType":"VariableDeclaration","scope":14580,"src":"5475:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14565,"name":"uint256","nodeType":"ElementaryTypeName","src":"5475:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5463:22:63"},"returnParameters":{"id":14570,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14569,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14580,"src":"5509:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14568,"name":"uint256","nodeType":"ElementaryTypeName","src":"5509:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5508:9:63"},"scope":15914,"src":"5451:111:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14598,"nodeType":"Block","src":"5700:44:63","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14593,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14591,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14583,"src":"5725:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":14592,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14585,"src":"5729:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5725:5:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":14594,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14583,"src":"5732:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14595,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14585,"src":"5735:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14590,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14561,"src":"5717:7:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":14596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5717:20:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14589,"id":14597,"nodeType":"Return","src":"5710:27:63"}]},"documentation":{"id":14581,"nodeType":"StructuredDocumentation","src":"5568:60:63","text":" @dev Returns the smallest of two numbers."},"id":14599,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"5642:3:63","nodeType":"FunctionDefinition","parameters":{"id":14586,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14583,"mutability":"mutable","name":"a","nameLocation":"5654:1:63","nodeType":"VariableDeclaration","scope":14599,"src":"5646:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14582,"name":"uint256","nodeType":"ElementaryTypeName","src":"5646:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14585,"mutability":"mutable","name":"b","nameLocation":"5665:1:63","nodeType":"VariableDeclaration","scope":14599,"src":"5657:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14584,"name":"uint256","nodeType":"ElementaryTypeName","src":"5657:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5645:22:63"},"returnParameters":{"id":14589,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14588,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14599,"src":"5691:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14587,"name":"uint256","nodeType":"ElementaryTypeName","src":"5691:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5690:9:63"},"scope":15914,"src":"5633:111:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14621,"nodeType":"Block","src":"5928:82:63","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14619,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14611,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14609,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14602,"src":"5983:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":14610,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14604,"src":"5987:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5983:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":14612,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5982:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14615,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14613,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14602,"src":"5993:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":14614,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14604,"src":"5997:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5993:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":14616,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5992:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":14617,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6002:1:63","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"5992:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5982:21:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14608,"id":14620,"nodeType":"Return","src":"5975:28:63"}]},"documentation":{"id":14600,"nodeType":"StructuredDocumentation","src":"5750:102:63","text":" @dev Returns the average of two numbers. The result is rounded towards\n zero."},"id":14622,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"5866:7:63","nodeType":"FunctionDefinition","parameters":{"id":14605,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14602,"mutability":"mutable","name":"a","nameLocation":"5882:1:63","nodeType":"VariableDeclaration","scope":14622,"src":"5874:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14601,"name":"uint256","nodeType":"ElementaryTypeName","src":"5874:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14604,"mutability":"mutable","name":"b","nameLocation":"5893:1:63","nodeType":"VariableDeclaration","scope":14622,"src":"5885:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14603,"name":"uint256","nodeType":"ElementaryTypeName","src":"5885:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5873:22:63"},"returnParameters":{"id":14608,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14607,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14622,"src":"5919:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14606,"name":"uint256","nodeType":"ElementaryTypeName","src":"5919:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5918:9:63"},"scope":15914,"src":"5857:153:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14662,"nodeType":"Block","src":"6302:633:63","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14634,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14632,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14627,"src":"6316:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":14633,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6321:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6316:6:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14643,"nodeType":"IfStatement","src":"6312:150:63","trueBody":{"id":14642,"nodeType":"Block","src":"6324:138:63","statements":[{"expression":{"arguments":[{"expression":{"id":14638,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"6428:5:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$11417_$","typeString":"type(library Panic)"}},"id":14639,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6434:16:63","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":11384,"src":"6428:22:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14635,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"6416:5:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$11417_$","typeString":"type(library Panic)"}},"id":14637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6422:5:63","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":11416,"src":"6416:11:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14640,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6416:35:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14641,"nodeType":"ExpressionStatement","src":"6416:35:63"}]}},{"id":14661,"nodeType":"UncheckedBlock","src":"6845:84:63","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14648,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14646,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14625,"src":"6892:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":14647,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6896:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6892:5:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":14644,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"6876:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":14645,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6885:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"6876:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":14649,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6876:22:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14657,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14650,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14625,"src":"6903:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14651,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6907:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6903:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":14653,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6902:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":14654,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14627,"src":"6912:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6902:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14656,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6916:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6902:15:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":14658,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6901:17:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6876:42:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14631,"id":14660,"nodeType":"Return","src":"6869:49:63"}]}]},"documentation":{"id":14623,"nodeType":"StructuredDocumentation","src":"6016:210:63","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":14663,"implemented":true,"kind":"function","modifiers":[],"name":"ceilDiv","nameLocation":"6240:7:63","nodeType":"FunctionDefinition","parameters":{"id":14628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14625,"mutability":"mutable","name":"a","nameLocation":"6256:1:63","nodeType":"VariableDeclaration","scope":14663,"src":"6248:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14624,"name":"uint256","nodeType":"ElementaryTypeName","src":"6248:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14627,"mutability":"mutable","name":"b","nameLocation":"6267:1:63","nodeType":"VariableDeclaration","scope":14663,"src":"6259:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14626,"name":"uint256","nodeType":"ElementaryTypeName","src":"6259:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6247:22:63"},"returnParameters":{"id":14631,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14630,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14663,"src":"6293:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14629,"name":"uint256","nodeType":"ElementaryTypeName","src":"6293:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6292:9:63"},"scope":15914,"src":"6231:704:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14798,"nodeType":"Block","src":"7356:3585:63","statements":[{"id":14797,"nodeType":"UncheckedBlock","src":"7366:3569:63","statements":[{"assignments":[14676,14678],"declarations":[{"constant":false,"id":14676,"mutability":"mutable","name":"high","nameLocation":"7399:4:63","nodeType":"VariableDeclaration","scope":14797,"src":"7391:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14675,"name":"uint256","nodeType":"ElementaryTypeName","src":"7391:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14678,"mutability":"mutable","name":"low","nameLocation":"7413:3:63","nodeType":"VariableDeclaration","scope":14797,"src":"7405:11:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14677,"name":"uint256","nodeType":"ElementaryTypeName","src":"7405:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14683,"initialValue":{"arguments":[{"id":14680,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14666,"src":"7427:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14681,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14668,"src":"7430:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14679,"name":"mul512","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14312,"src":"7420:6:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256,uint256)"}},"id":14682,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7420:12:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"7390:42:63"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14684,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14676,"src":"7514:4:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":14685,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7522:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7514:9:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14692,"nodeType":"IfStatement","src":"7510:365:63","trueBody":{"id":14691,"nodeType":"Block","src":"7525:350:63","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14687,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14678,"src":"7843:3:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":14688,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14670,"src":"7849:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7843:17:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14674,"id":14690,"nodeType":"Return","src":"7836:24:63"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14693,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14670,"src":"7985:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":14694,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14676,"src":"8000:4:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7985:19:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14711,"nodeType":"IfStatement","src":"7981:142:63","trueBody":{"id":14710,"nodeType":"Block","src":"8006:117:63","statements":[{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14700,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14670,"src":"8044:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":14701,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8059:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8044:16:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"expression":{"id":14703,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"8062:5:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$11417_$","typeString":"type(library Panic)"}},"id":14704,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8068:16:63","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":11384,"src":"8062:22:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":14705,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"8086:5:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$11417_$","typeString":"type(library Panic)"}},"id":14706,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8092:14:63","memberName":"UNDER_OVERFLOW","nodeType":"MemberAccess","referencedDeclaration":11380,"src":"8086:20:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14699,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14561,"src":"8036:7:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":14707,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8036:71:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14696,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"8024:5:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$11417_$","typeString":"type(library Panic)"}},"id":14698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8030:5:63","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":11416,"src":"8024:11:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14708,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8024:84:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14709,"nodeType":"ExpressionStatement","src":"8024:84:63"}]}},{"assignments":[14713],"declarations":[{"constant":false,"id":14713,"mutability":"mutable","name":"remainder","nameLocation":"8383:9:63","nodeType":"VariableDeclaration","scope":14797,"src":"8375:17:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14712,"name":"uint256","nodeType":"ElementaryTypeName","src":"8375:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14714,"nodeType":"VariableDeclarationStatement","src":"8375:17:63"},{"AST":{"nativeSrc":"8431:283:63","nodeType":"YulBlock","src":"8431:283:63","statements":[{"nativeSrc":"8500:38:63","nodeType":"YulAssignment","src":"8500:38:63","value":{"arguments":[{"name":"x","nativeSrc":"8520:1:63","nodeType":"YulIdentifier","src":"8520:1:63"},{"name":"y","nativeSrc":"8523:1:63","nodeType":"YulIdentifier","src":"8523:1:63"},{"name":"denominator","nativeSrc":"8526:11:63","nodeType":"YulIdentifier","src":"8526:11:63"}],"functionName":{"name":"mulmod","nativeSrc":"8513:6:63","nodeType":"YulIdentifier","src":"8513:6:63"},"nativeSrc":"8513:25:63","nodeType":"YulFunctionCall","src":"8513:25:63"},"variableNames":[{"name":"remainder","nativeSrc":"8500:9:63","nodeType":"YulIdentifier","src":"8500:9:63"}]},{"nativeSrc":"8620:37:63","nodeType":"YulAssignment","src":"8620:37:63","value":{"arguments":[{"name":"high","nativeSrc":"8632:4:63","nodeType":"YulIdentifier","src":"8632:4:63"},{"arguments":[{"name":"remainder","nativeSrc":"8641:9:63","nodeType":"YulIdentifier","src":"8641:9:63"},{"name":"low","nativeSrc":"8652:3:63","nodeType":"YulIdentifier","src":"8652:3:63"}],"functionName":{"name":"gt","nativeSrc":"8638:2:63","nodeType":"YulIdentifier","src":"8638:2:63"},"nativeSrc":"8638:18:63","nodeType":"YulFunctionCall","src":"8638:18:63"}],"functionName":{"name":"sub","nativeSrc":"8628:3:63","nodeType":"YulIdentifier","src":"8628:3:63"},"nativeSrc":"8628:29:63","nodeType":"YulFunctionCall","src":"8628:29:63"},"variableNames":[{"name":"high","nativeSrc":"8620:4:63","nodeType":"YulIdentifier","src":"8620:4:63"}]},{"nativeSrc":"8674:26:63","nodeType":"YulAssignment","src":"8674:26:63","value":{"arguments":[{"name":"low","nativeSrc":"8685:3:63","nodeType":"YulIdentifier","src":"8685:3:63"},{"name":"remainder","nativeSrc":"8690:9:63","nodeType":"YulIdentifier","src":"8690:9:63"}],"functionName":{"name":"sub","nativeSrc":"8681:3:63","nodeType":"YulIdentifier","src":"8681:3:63"},"nativeSrc":"8681:19:63","nodeType":"YulFunctionCall","src":"8681:19:63"},"variableNames":[{"name":"low","nativeSrc":"8674:3:63","nodeType":"YulIdentifier","src":"8674:3:63"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":14670,"isOffset":false,"isSlot":false,"src":"8526:11:63","valueSize":1},{"declaration":14676,"isOffset":false,"isSlot":false,"src":"8620:4:63","valueSize":1},{"declaration":14676,"isOffset":false,"isSlot":false,"src":"8632:4:63","valueSize":1},{"declaration":14678,"isOffset":false,"isSlot":false,"src":"8652:3:63","valueSize":1},{"declaration":14678,"isOffset":false,"isSlot":false,"src":"8674:3:63","valueSize":1},{"declaration":14678,"isOffset":false,"isSlot":false,"src":"8685:3:63","valueSize":1},{"declaration":14713,"isOffset":false,"isSlot":false,"src":"8500:9:63","valueSize":1},{"declaration":14713,"isOffset":false,"isSlot":false,"src":"8641:9:63","valueSize":1},{"declaration":14713,"isOffset":false,"isSlot":false,"src":"8690:9:63","valueSize":1},{"declaration":14666,"isOffset":false,"isSlot":false,"src":"8520:1:63","valueSize":1},{"declaration":14668,"isOffset":false,"isSlot":false,"src":"8523:1:63","valueSize":1}],"flags":["memory-safe"],"id":14715,"nodeType":"InlineAssembly","src":"8406:308:63"},{"assignments":[14717],"declarations":[{"constant":false,"id":14717,"mutability":"mutable","name":"twos","nameLocation":"8926:4:63","nodeType":"VariableDeclaration","scope":14797,"src":"8918:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14716,"name":"uint256","nodeType":"ElementaryTypeName","src":"8918:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14724,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14718,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14670,"src":"8933:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14721,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"30","id":14719,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8948:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":14720,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14670,"src":"8952:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8948:15:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":14722,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8947:17:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8933:31:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8918:46:63"},{"AST":{"nativeSrc":"9003:359:63","nodeType":"YulBlock","src":"9003:359:63","statements":[{"nativeSrc":"9068:37:63","nodeType":"YulAssignment","src":"9068:37:63","value":{"arguments":[{"name":"denominator","nativeSrc":"9087:11:63","nodeType":"YulIdentifier","src":"9087:11:63"},{"name":"twos","nativeSrc":"9100:4:63","nodeType":"YulIdentifier","src":"9100:4:63"}],"functionName":{"name":"div","nativeSrc":"9083:3:63","nodeType":"YulIdentifier","src":"9083:3:63"},"nativeSrc":"9083:22:63","nodeType":"YulFunctionCall","src":"9083:22:63"},"variableNames":[{"name":"denominator","nativeSrc":"9068:11:63","nodeType":"YulIdentifier","src":"9068:11:63"}]},{"nativeSrc":"9169:21:63","nodeType":"YulAssignment","src":"9169:21:63","value":{"arguments":[{"name":"low","nativeSrc":"9180:3:63","nodeType":"YulIdentifier","src":"9180:3:63"},{"name":"twos","nativeSrc":"9185:4:63","nodeType":"YulIdentifier","src":"9185:4:63"}],"functionName":{"name":"div","nativeSrc":"9176:3:63","nodeType":"YulIdentifier","src":"9176:3:63"},"nativeSrc":"9176:14:63","nodeType":"YulFunctionCall","src":"9176:14:63"},"variableNames":[{"name":"low","nativeSrc":"9169:3:63","nodeType":"YulIdentifier","src":"9169:3:63"}]},{"nativeSrc":"9309:39:63","nodeType":"YulAssignment","src":"9309:39:63","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9329:1:63","nodeType":"YulLiteral","src":"9329:1:63","type":"","value":"0"},{"name":"twos","nativeSrc":"9332:4:63","nodeType":"YulIdentifier","src":"9332:4:63"}],"functionName":{"name":"sub","nativeSrc":"9325:3:63","nodeType":"YulIdentifier","src":"9325:3:63"},"nativeSrc":"9325:12:63","nodeType":"YulFunctionCall","src":"9325:12:63"},{"name":"twos","nativeSrc":"9339:4:63","nodeType":"YulIdentifier","src":"9339:4:63"}],"functionName":{"name":"div","nativeSrc":"9321:3:63","nodeType":"YulIdentifier","src":"9321:3:63"},"nativeSrc":"9321:23:63","nodeType":"YulFunctionCall","src":"9321:23:63"},{"kind":"number","nativeSrc":"9346:1:63","nodeType":"YulLiteral","src":"9346:1:63","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"9317:3:63","nodeType":"YulIdentifier","src":"9317:3:63"},"nativeSrc":"9317:31:63","nodeType":"YulFunctionCall","src":"9317:31:63"},"variableNames":[{"name":"twos","nativeSrc":"9309:4:63","nodeType":"YulIdentifier","src":"9309:4:63"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":14670,"isOffset":false,"isSlot":false,"src":"9068:11:63","valueSize":1},{"declaration":14670,"isOffset":false,"isSlot":false,"src":"9087:11:63","valueSize":1},{"declaration":14678,"isOffset":false,"isSlot":false,"src":"9169:3:63","valueSize":1},{"declaration":14678,"isOffset":false,"isSlot":false,"src":"9180:3:63","valueSize":1},{"declaration":14717,"isOffset":false,"isSlot":false,"src":"9100:4:63","valueSize":1},{"declaration":14717,"isOffset":false,"isSlot":false,"src":"9185:4:63","valueSize":1},{"declaration":14717,"isOffset":false,"isSlot":false,"src":"9309:4:63","valueSize":1},{"declaration":14717,"isOffset":false,"isSlot":false,"src":"9332:4:63","valueSize":1},{"declaration":14717,"isOffset":false,"isSlot":false,"src":"9339:4:63","valueSize":1}],"flags":["memory-safe"],"id":14725,"nodeType":"InlineAssembly","src":"8978:384:63"},{"expression":{"id":14730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14726,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14678,"src":"9425:3:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14729,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14727,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14676,"src":"9432:4:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":14728,"name":"twos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14717,"src":"9439:4:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9432:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9425:18:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14731,"nodeType":"ExpressionStatement","src":"9425:18:63"},{"assignments":[14733],"declarations":[{"constant":false,"id":14733,"mutability":"mutable","name":"inverse","nameLocation":"9786:7:63","nodeType":"VariableDeclaration","scope":14797,"src":"9778:15:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14732,"name":"uint256","nodeType":"ElementaryTypeName","src":"9778:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14740,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14739,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14736,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":14734,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9797:1:63","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":14735,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14670,"src":"9801:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9797:15:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":14737,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9796:17:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"hexValue":"32","id":14738,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9816:1:63","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"9796:21:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9778:39:63"},{"expression":{"id":14747,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14741,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14733,"src":"10034:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":14742,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10045:1:63","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14743,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14670,"src":"10049:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":14744,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14733,"src":"10063:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10049:21:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10045:25:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10034:36:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14748,"nodeType":"ExpressionStatement","src":"10034:36:63"},{"expression":{"id":14755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14749,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14733,"src":"10104:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14754,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":14750,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10115:1:63","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14753,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14751,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14670,"src":"10119:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":14752,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14733,"src":"10133:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10119:21:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10115:25:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10104:36:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14756,"nodeType":"ExpressionStatement","src":"10104:36:63"},{"expression":{"id":14763,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14757,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14733,"src":"10176:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":14758,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10187:1:63","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14759,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14670,"src":"10191:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":14760,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14733,"src":"10205:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10191:21:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10187:25:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10176:36:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14764,"nodeType":"ExpressionStatement","src":"10176:36:63"},{"expression":{"id":14771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14765,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14733,"src":"10247:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":14766,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10258:1:63","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14769,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14767,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14670,"src":"10262:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":14768,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14733,"src":"10276:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10262:21:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10258:25:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10247:36:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14772,"nodeType":"ExpressionStatement","src":"10247:36:63"},{"expression":{"id":14779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14773,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14733,"src":"10320:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14778,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":14774,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10331:1:63","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14777,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14775,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14670,"src":"10335:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":14776,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14733,"src":"10349:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10335:21:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10331:25:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10320:36:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14780,"nodeType":"ExpressionStatement","src":"10320:36:63"},{"expression":{"id":14787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14781,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14733,"src":"10394:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":14782,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10405:1:63","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14785,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14783,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14670,"src":"10409:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":14784,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14733,"src":"10423:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10409:21:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10405:25:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10394:36:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14788,"nodeType":"ExpressionStatement","src":"10394:36:63"},{"expression":{"id":14793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14789,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14673,"src":"10875:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14792,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14790,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14678,"src":"10884:3:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":14791,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14733,"src":"10890:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10884:13:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10875:22:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14794,"nodeType":"ExpressionStatement","src":"10875:22:63"},{"expression":{"id":14795,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14673,"src":"10918:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14674,"id":14796,"nodeType":"Return","src":"10911:13:63"}]}]},"documentation":{"id":14664,"nodeType":"StructuredDocumentation","src":"6941:312:63","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":14799,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"7267:6:63","nodeType":"FunctionDefinition","parameters":{"id":14671,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14666,"mutability":"mutable","name":"x","nameLocation":"7282:1:63","nodeType":"VariableDeclaration","scope":14799,"src":"7274:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14665,"name":"uint256","nodeType":"ElementaryTypeName","src":"7274:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14668,"mutability":"mutable","name":"y","nameLocation":"7293:1:63","nodeType":"VariableDeclaration","scope":14799,"src":"7285:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14667,"name":"uint256","nodeType":"ElementaryTypeName","src":"7285:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14670,"mutability":"mutable","name":"denominator","nameLocation":"7304:11:63","nodeType":"VariableDeclaration","scope":14799,"src":"7296:19:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14669,"name":"uint256","nodeType":"ElementaryTypeName","src":"7296:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7273:43:63"},"returnParameters":{"id":14674,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14673,"mutability":"mutable","name":"result","nameLocation":"7348:6:63","nodeType":"VariableDeclaration","scope":14799,"src":"7340:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14672,"name":"uint256","nodeType":"ElementaryTypeName","src":"7340:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7339:16:63"},"scope":15914,"src":"7258:3683:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14835,"nodeType":"Block","src":"11180:128:63","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14815,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14802,"src":"11204:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14816,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14804,"src":"11207:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14817,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14806,"src":"11210:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14814,"name":"mulDiv","nodeType":"Identifier","overloadedDeclarations":[14799,14836],"referencedDeclaration":14799,"src":"11197:6:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":14818,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11197:25:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14822,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14809,"src":"11258:8:63","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}],"id":14821,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15892,"src":"11241:16:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$14284_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":14823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11241:26:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14830,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14825,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14802,"src":"11278:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14826,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14804,"src":"11281:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14827,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14806,"src":"11284:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14824,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"11271:6:63","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":14828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11271:25:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":14829,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11299:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11271:29:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"11241:59:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":14819,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"11225:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":14820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11234:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"11225:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":14832,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11225:76:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11197:104:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14813,"id":14834,"nodeType":"Return","src":"11190:111:63"}]},"documentation":{"id":14800,"nodeType":"StructuredDocumentation","src":"10947:118:63","text":" @dev Calculates x * y / denominator with full precision, following the selected rounding direction."},"id":14836,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"11079:6:63","nodeType":"FunctionDefinition","parameters":{"id":14810,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14802,"mutability":"mutable","name":"x","nameLocation":"11094:1:63","nodeType":"VariableDeclaration","scope":14836,"src":"11086:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14801,"name":"uint256","nodeType":"ElementaryTypeName","src":"11086:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14804,"mutability":"mutable","name":"y","nameLocation":"11105:1:63","nodeType":"VariableDeclaration","scope":14836,"src":"11097:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14803,"name":"uint256","nodeType":"ElementaryTypeName","src":"11097:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14806,"mutability":"mutable","name":"denominator","nameLocation":"11116:11:63","nodeType":"VariableDeclaration","scope":14836,"src":"11108:19:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14805,"name":"uint256","nodeType":"ElementaryTypeName","src":"11108:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14809,"mutability":"mutable","name":"rounding","nameLocation":"11138:8:63","nodeType":"VariableDeclaration","scope":14836,"src":"11129:17:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"},"typeName":{"id":14808,"nodeType":"UserDefinedTypeName","pathNode":{"id":14807,"name":"Rounding","nameLocations":["11129:8:63"],"nodeType":"IdentifierPath","referencedDeclaration":14284,"src":"11129:8:63"},"referencedDeclaration":14284,"src":"11129:8:63","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"11085:62:63"},"returnParameters":{"id":14813,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14812,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14836,"src":"11171:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14811,"name":"uint256","nodeType":"ElementaryTypeName","src":"11171:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11170:9:63"},"scope":15914,"src":"11070:238:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14885,"nodeType":"Block","src":"11516:245:63","statements":[{"id":14884,"nodeType":"UncheckedBlock","src":"11526:229:63","statements":[{"assignments":[14849,14851],"declarations":[{"constant":false,"id":14849,"mutability":"mutable","name":"high","nameLocation":"11559:4:63","nodeType":"VariableDeclaration","scope":14884,"src":"11551:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14848,"name":"uint256","nodeType":"ElementaryTypeName","src":"11551:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14851,"mutability":"mutable","name":"low","nameLocation":"11573:3:63","nodeType":"VariableDeclaration","scope":14884,"src":"11565:11:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14850,"name":"uint256","nodeType":"ElementaryTypeName","src":"11565:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14856,"initialValue":{"arguments":[{"id":14853,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14839,"src":"11587:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14854,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14841,"src":"11590:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14852,"name":"mul512","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14312,"src":"11580:6:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256,uint256)"}},"id":14855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11580:12:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"11550:42:63"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14857,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14849,"src":"11610:4:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":14858,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11618:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":14859,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14843,"src":"11623:1:63","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11618:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11610:14:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14870,"nodeType":"IfStatement","src":"11606:86:63","trueBody":{"id":14869,"nodeType":"Block","src":"11626:66:63","statements":[{"expression":{"arguments":[{"expression":{"id":14865,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"11656:5:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$11417_$","typeString":"type(library Panic)"}},"id":14866,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11662:14:63","memberName":"UNDER_OVERFLOW","nodeType":"MemberAccess","referencedDeclaration":11380,"src":"11656:20:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14862,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"11644:5:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$11417_$","typeString":"type(library Panic)"}},"id":14864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11650:5:63","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":11416,"src":"11644:11:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14867,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11644:33:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14868,"nodeType":"ExpressionStatement","src":"11644:33:63"}]}},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14871,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14849,"src":"11713:4:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint16","typeString":"uint16"},"id":14874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"323536","id":14872,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11722:3:63","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"value":"256"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":14873,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14843,"src":"11728:1:63","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11722:7:63","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"id":14875,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11721:9:63","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"11713:17:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":14877,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11712:19:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14880,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14878,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14851,"src":"11735:3:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":14879,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14843,"src":"11742:1:63","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11735:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":14881,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11734:10:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11712:32:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14847,"id":14883,"nodeType":"Return","src":"11705:39:63"}]}]},"documentation":{"id":14837,"nodeType":"StructuredDocumentation","src":"11314:111:63","text":" @dev Calculates floor(x * y >> n) with full precision. Throws if result overflows a uint256."},"id":14886,"implemented":true,"kind":"function","modifiers":[],"name":"mulShr","nameLocation":"11439:6:63","nodeType":"FunctionDefinition","parameters":{"id":14844,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14839,"mutability":"mutable","name":"x","nameLocation":"11454:1:63","nodeType":"VariableDeclaration","scope":14886,"src":"11446:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14838,"name":"uint256","nodeType":"ElementaryTypeName","src":"11446:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14841,"mutability":"mutable","name":"y","nameLocation":"11465:1:63","nodeType":"VariableDeclaration","scope":14886,"src":"11457:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14840,"name":"uint256","nodeType":"ElementaryTypeName","src":"11457:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14843,"mutability":"mutable","name":"n","nameLocation":"11474:1:63","nodeType":"VariableDeclaration","scope":14886,"src":"11468:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14842,"name":"uint8","nodeType":"ElementaryTypeName","src":"11468:5:63","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"11445:31:63"},"returnParameters":{"id":14847,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14846,"mutability":"mutable","name":"result","nameLocation":"11508:6:63","nodeType":"VariableDeclaration","scope":14886,"src":"11500:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14845,"name":"uint256","nodeType":"ElementaryTypeName","src":"11500:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11499:16:63"},"scope":15914,"src":"11430:331:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14924,"nodeType":"Block","src":"11979:113:63","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14922,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14902,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14889,"src":"12003:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14903,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14891,"src":"12006:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14904,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14893,"src":"12009:1:63","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14901,"name":"mulShr","nodeType":"Identifier","overloadedDeclarations":[14886,14925],"referencedDeclaration":14886,"src":"11996:6:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint8_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint8) pure returns (uint256)"}},"id":14905,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11996:15:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14909,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14896,"src":"12047:8:63","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}],"id":14908,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15892,"src":"12030:16:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$14284_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":14910,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12030:26:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14919,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14912,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14889,"src":"12067:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14913,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14891,"src":"12070:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14916,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":14914,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12073:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":14915,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14893,"src":"12078:1:63","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"12073:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14911,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"12060:6:63","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":14917,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12060:20:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":14918,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12083:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12060:24:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12030:54:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":14906,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"12014:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":14907,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12023:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"12014:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":14921,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12014:71:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11996:89:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14900,"id":14923,"nodeType":"Return","src":"11989:96:63"}]},"documentation":{"id":14887,"nodeType":"StructuredDocumentation","src":"11767:109:63","text":" @dev Calculates x * y >> n with full precision, following the selected rounding direction."},"id":14925,"implemented":true,"kind":"function","modifiers":[],"name":"mulShr","nameLocation":"11890:6:63","nodeType":"FunctionDefinition","parameters":{"id":14897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14889,"mutability":"mutable","name":"x","nameLocation":"11905:1:63","nodeType":"VariableDeclaration","scope":14925,"src":"11897:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14888,"name":"uint256","nodeType":"ElementaryTypeName","src":"11897:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14891,"mutability":"mutable","name":"y","nameLocation":"11916:1:63","nodeType":"VariableDeclaration","scope":14925,"src":"11908:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14890,"name":"uint256","nodeType":"ElementaryTypeName","src":"11908:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14893,"mutability":"mutable","name":"n","nameLocation":"11925:1:63","nodeType":"VariableDeclaration","scope":14925,"src":"11919:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14892,"name":"uint8","nodeType":"ElementaryTypeName","src":"11919:5:63","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":14896,"mutability":"mutable","name":"rounding","nameLocation":"11937:8:63","nodeType":"VariableDeclaration","scope":14925,"src":"11928:17:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"},"typeName":{"id":14895,"nodeType":"UserDefinedTypeName","pathNode":{"id":14894,"name":"Rounding","nameLocations":["11928:8:63"],"nodeType":"IdentifierPath","referencedDeclaration":14284,"src":"11928:8:63"},"referencedDeclaration":14284,"src":"11928:8:63","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"11896:50:63"},"returnParameters":{"id":14900,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14899,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14925,"src":"11970:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14898,"name":"uint256","nodeType":"ElementaryTypeName","src":"11970:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11969:9:63"},"scope":15914,"src":"11881:211:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15021,"nodeType":"Block","src":"12726:1849:63","statements":[{"id":15020,"nodeType":"UncheckedBlock","src":"12736:1833:63","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14935,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14930,"src":"12764:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":14936,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12769:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12764:6:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14940,"nodeType":"IfStatement","src":"12760:20:63","trueBody":{"expression":{"hexValue":"30","id":14938,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12779:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":14934,"id":14939,"nodeType":"Return","src":"12772:8:63"}},{"assignments":[14942],"declarations":[{"constant":false,"id":14942,"mutability":"mutable","name":"remainder","nameLocation":"13259:9:63","nodeType":"VariableDeclaration","scope":15020,"src":"13251:17:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14941,"name":"uint256","nodeType":"ElementaryTypeName","src":"13251:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14946,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14945,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14943,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14928,"src":"13271:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"id":14944,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14930,"src":"13275:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13271:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13251:25:63"},{"assignments":[14948],"declarations":[{"constant":false,"id":14948,"mutability":"mutable","name":"gcd","nameLocation":"13298:3:63","nodeType":"VariableDeclaration","scope":15020,"src":"13290:11:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14947,"name":"uint256","nodeType":"ElementaryTypeName","src":"13290:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14950,"initialValue":{"id":14949,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14930,"src":"13304:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13290:15:63"},{"assignments":[14952],"declarations":[{"constant":false,"id":14952,"mutability":"mutable","name":"x","nameLocation":"13448:1:63","nodeType":"VariableDeclaration","scope":15020,"src":"13441:8:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":14951,"name":"int256","nodeType":"ElementaryTypeName","src":"13441:6:63","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":14954,"initialValue":{"hexValue":"30","id":14953,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13452:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"13441:12:63"},{"assignments":[14956],"declarations":[{"constant":false,"id":14956,"mutability":"mutable","name":"y","nameLocation":"13474:1:63","nodeType":"VariableDeclaration","scope":15020,"src":"13467:8:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":14955,"name":"int256","nodeType":"ElementaryTypeName","src":"13467:6:63","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":14958,"initialValue":{"hexValue":"31","id":14957,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13478:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"13467:12:63"},{"body":{"id":14995,"nodeType":"Block","src":"13517:882:63","statements":[{"assignments":[14963],"declarations":[{"constant":false,"id":14963,"mutability":"mutable","name":"quotient","nameLocation":"13543:8:63","nodeType":"VariableDeclaration","scope":14995,"src":"13535:16:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14962,"name":"uint256","nodeType":"ElementaryTypeName","src":"13535:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14967,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14966,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14964,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14948,"src":"13554:3:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":14965,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14942,"src":"13560:9:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13554:15:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13535:34:63"},{"expression":{"id":14978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":14968,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14948,"src":"13589:3:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14969,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14942,"src":"13594:9:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":14970,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"13588:16:63","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":14971,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14942,"src":"13694:9:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14976,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14972,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14948,"src":"13939:3:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14973,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14942,"src":"13945:9:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":14974,"name":"quotient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14963,"src":"13957:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13945:20:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13939:26:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":14977,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13607:376:63","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"src":"13588:395:63","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14979,"nodeType":"ExpressionStatement","src":"13588:395:63"},{"expression":{"id":14993,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":14980,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14952,"src":"14003:1:63","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":14981,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14956,"src":"14006:1:63","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":14982,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"14002:6:63","typeDescriptions":{"typeIdentifier":"t_tuple$_t_int256_$_t_int256_$","typeString":"tuple(int256,int256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":14983,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14956,"src":"14088:1:63","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":14991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14984,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14952,"src":"14342:1:63","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":14990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14985,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14956,"src":"14346:1:63","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":14988,"name":"quotient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14963,"src":"14357:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14987,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14350:6:63","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":14986,"name":"int256","nodeType":"ElementaryTypeName","src":"14350:6:63","typeDescriptions":{}}},"id":14989,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14350:16:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"14346:20:63","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"14342:24:63","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":14992,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"14011:373:63","typeDescriptions":{"typeIdentifier":"t_tuple$_t_int256_$_t_int256_$","typeString":"tuple(int256,int256)"}},"src":"14002:382:63","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14994,"nodeType":"ExpressionStatement","src":"14002:382:63"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14959,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14942,"src":"13501:9:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":14960,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13514:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13501:14:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14996,"nodeType":"WhileStatement","src":"13494:905:63"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14997,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14948,"src":"14417:3:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"31","id":14998,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14424:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"14417:8:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15002,"nodeType":"IfStatement","src":"14413:22:63","trueBody":{"expression":{"hexValue":"30","id":15000,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14434:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":14934,"id":15001,"nodeType":"Return","src":"14427:8:63"}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":15006,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15004,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14952,"src":"14486:1:63","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":15005,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14490:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14486:5:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15007,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14930,"src":"14493:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":15011,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"14505:2:63","subExpression":{"id":15010,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14952,"src":"14506:1:63","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":15009,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14497:7:63","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15008,"name":"uint256","nodeType":"ElementaryTypeName","src":"14497:7:63","typeDescriptions":{}}},"id":15012,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14497:11:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14493:15:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":15016,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14952,"src":"14518:1:63","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":15015,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14510:7:63","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15014,"name":"uint256","nodeType":"ElementaryTypeName","src":"14510:7:63","typeDescriptions":{}}},"id":15017,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14510:10:63","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":15003,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14561,"src":"14478:7:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":15018,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14478:43:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14934,"id":15019,"nodeType":"Return","src":"14471:50:63"}]}]},"documentation":{"id":14926,"nodeType":"StructuredDocumentation","src":"12098:553:63","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":15022,"implemented":true,"kind":"function","modifiers":[],"name":"invMod","nameLocation":"12665:6:63","nodeType":"FunctionDefinition","parameters":{"id":14931,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14928,"mutability":"mutable","name":"a","nameLocation":"12680:1:63","nodeType":"VariableDeclaration","scope":15022,"src":"12672:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14927,"name":"uint256","nodeType":"ElementaryTypeName","src":"12672:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14930,"mutability":"mutable","name":"n","nameLocation":"12691:1:63","nodeType":"VariableDeclaration","scope":15022,"src":"12683:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14929,"name":"uint256","nodeType":"ElementaryTypeName","src":"12683:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12671:22:63"},"returnParameters":{"id":14934,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14933,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15022,"src":"12717:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14932,"name":"uint256","nodeType":"ElementaryTypeName","src":"12717:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12716:9:63"},"scope":15914,"src":"12656:1919:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15042,"nodeType":"Block","src":"15175:82:63","statements":[{"id":15041,"nodeType":"UncheckedBlock","src":"15185:66:63","statements":[{"expression":{"arguments":[{"id":15034,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15025,"src":"15228:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15035,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15027,"src":"15231:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"32","id":15036,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15235:1:63","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"15231:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15038,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15027,"src":"15238:1:63","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":15032,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"15216:4:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":15033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15221:6:63","memberName":"modExp","nodeType":"MemberAccess","referencedDeclaration":15079,"src":"15216:11:63","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) view returns (uint256)"}},"id":15039,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15216:24:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15031,"id":15040,"nodeType":"Return","src":"15209:31:63"}]}]},"documentation":{"id":15023,"nodeType":"StructuredDocumentation","src":"14581:514:63","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":15043,"implemented":true,"kind":"function","modifiers":[],"name":"invModPrime","nameLocation":"15109:11:63","nodeType":"FunctionDefinition","parameters":{"id":15028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15025,"mutability":"mutable","name":"a","nameLocation":"15129:1:63","nodeType":"VariableDeclaration","scope":15043,"src":"15121:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15024,"name":"uint256","nodeType":"ElementaryTypeName","src":"15121:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15027,"mutability":"mutable","name":"p","nameLocation":"15140:1:63","nodeType":"VariableDeclaration","scope":15043,"src":"15132:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15026,"name":"uint256","nodeType":"ElementaryTypeName","src":"15132:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15120:22:63"},"returnParameters":{"id":15031,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15030,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15043,"src":"15166:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15029,"name":"uint256","nodeType":"ElementaryTypeName","src":"15166:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15165:9:63"},"scope":15914,"src":"15100:157:63","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":15078,"nodeType":"Block","src":"16027:174:63","statements":[{"assignments":[15056,15058],"declarations":[{"constant":false,"id":15056,"mutability":"mutable","name":"success","nameLocation":"16043:7:63","nodeType":"VariableDeclaration","scope":15078,"src":"16038:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15055,"name":"bool","nodeType":"ElementaryTypeName","src":"16038:4:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":15058,"mutability":"mutable","name":"result","nameLocation":"16060:6:63","nodeType":"VariableDeclaration","scope":15078,"src":"16052:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15057,"name":"uint256","nodeType":"ElementaryTypeName","src":"16052:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15064,"initialValue":{"arguments":[{"id":15060,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15046,"src":"16080:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15061,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15048,"src":"16083:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15062,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15050,"src":"16086:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15059,"name":"tryModExp","nodeType":"Identifier","overloadedDeclarations":[15103,15185],"referencedDeclaration":15103,"src":"16070:9:63","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":15063,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16070:18:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"16037:51:63"},{"condition":{"id":15066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"16102:8:63","subExpression":{"id":15065,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15056,"src":"16103:7:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15075,"nodeType":"IfStatement","src":"16098:74:63","trueBody":{"id":15074,"nodeType":"Block","src":"16112:60:63","statements":[{"expression":{"arguments":[{"expression":{"id":15070,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"16138:5:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$11417_$","typeString":"type(library Panic)"}},"id":15071,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16144:16:63","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":11384,"src":"16138:22:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15067,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"16126:5:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$11417_$","typeString":"type(library Panic)"}},"id":15069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16132:5:63","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":11416,"src":"16126:11:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":15072,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16126:35:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15073,"nodeType":"ExpressionStatement","src":"16126:35:63"}]}},{"expression":{"id":15076,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15058,"src":"16188:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15054,"id":15077,"nodeType":"Return","src":"16181:13:63"}]},"documentation":{"id":15044,"nodeType":"StructuredDocumentation","src":"15263:678:63","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":15079,"implemented":true,"kind":"function","modifiers":[],"name":"modExp","nameLocation":"15955:6:63","nodeType":"FunctionDefinition","parameters":{"id":15051,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15046,"mutability":"mutable","name":"b","nameLocation":"15970:1:63","nodeType":"VariableDeclaration","scope":15079,"src":"15962:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15045,"name":"uint256","nodeType":"ElementaryTypeName","src":"15962:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15048,"mutability":"mutable","name":"e","nameLocation":"15981:1:63","nodeType":"VariableDeclaration","scope":15079,"src":"15973:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15047,"name":"uint256","nodeType":"ElementaryTypeName","src":"15973:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15050,"mutability":"mutable","name":"m","nameLocation":"15992:1:63","nodeType":"VariableDeclaration","scope":15079,"src":"15984:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15049,"name":"uint256","nodeType":"ElementaryTypeName","src":"15984:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15961:33:63"},"returnParameters":{"id":15054,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15053,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15079,"src":"16018:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15052,"name":"uint256","nodeType":"ElementaryTypeName","src":"16018:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16017:9:63"},"scope":15914,"src":"15946:255:63","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":15102,"nodeType":"Block","src":"17055:1493:63","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15093,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15086,"src":"17069:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":15094,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17074:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17069:6:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15100,"nodeType":"IfStatement","src":"17065:29:63","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":15096,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17085:5:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":15097,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17092:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":15098,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"17084:10:63","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":15092,"id":15099,"nodeType":"Return","src":"17077:17:63"}},{"AST":{"nativeSrc":"17129:1413:63","nodeType":"YulBlock","src":"17129:1413:63","statements":[{"nativeSrc":"17143:22:63","nodeType":"YulVariableDeclaration","src":"17143:22:63","value":{"arguments":[{"kind":"number","nativeSrc":"17160:4:63","nodeType":"YulLiteral","src":"17160:4:63","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"17154:5:63","nodeType":"YulIdentifier","src":"17154:5:63"},"nativeSrc":"17154:11:63","nodeType":"YulFunctionCall","src":"17154:11:63"},"variables":[{"name":"ptr","nativeSrc":"17147:3:63","nodeType":"YulTypedName","src":"17147:3:63","type":""}]},{"expression":{"arguments":[{"name":"ptr","nativeSrc":"18073:3:63","nodeType":"YulIdentifier","src":"18073:3:63"},{"kind":"number","nativeSrc":"18078:4:63","nodeType":"YulLiteral","src":"18078:4:63","type":"","value":"0x20"}],"functionName":{"name":"mstore","nativeSrc":"18066:6:63","nodeType":"YulIdentifier","src":"18066:6:63"},"nativeSrc":"18066:17:63","nodeType":"YulFunctionCall","src":"18066:17:63"},"nativeSrc":"18066:17:63","nodeType":"YulExpressionStatement","src":"18066:17:63"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"18107:3:63","nodeType":"YulIdentifier","src":"18107:3:63"},{"kind":"number","nativeSrc":"18112:4:63","nodeType":"YulLiteral","src":"18112:4:63","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"18103:3:63","nodeType":"YulIdentifier","src":"18103:3:63"},"nativeSrc":"18103:14:63","nodeType":"YulFunctionCall","src":"18103:14:63"},{"kind":"number","nativeSrc":"18119:4:63","nodeType":"YulLiteral","src":"18119:4:63","type":"","value":"0x20"}],"functionName":{"name":"mstore","nativeSrc":"18096:6:63","nodeType":"YulIdentifier","src":"18096:6:63"},"nativeSrc":"18096:28:63","nodeType":"YulFunctionCall","src":"18096:28:63"},"nativeSrc":"18096:28:63","nodeType":"YulExpressionStatement","src":"18096:28:63"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"18148:3:63","nodeType":"YulIdentifier","src":"18148:3:63"},{"kind":"number","nativeSrc":"18153:4:63","nodeType":"YulLiteral","src":"18153:4:63","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"18144:3:63","nodeType":"YulIdentifier","src":"18144:3:63"},"nativeSrc":"18144:14:63","nodeType":"YulFunctionCall","src":"18144:14:63"},{"kind":"number","nativeSrc":"18160:4:63","nodeType":"YulLiteral","src":"18160:4:63","type":"","value":"0x20"}],"functionName":{"name":"mstore","nativeSrc":"18137:6:63","nodeType":"YulIdentifier","src":"18137:6:63"},"nativeSrc":"18137:28:63","nodeType":"YulFunctionCall","src":"18137:28:63"},"nativeSrc":"18137:28:63","nodeType":"YulExpressionStatement","src":"18137:28:63"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"18189:3:63","nodeType":"YulIdentifier","src":"18189:3:63"},{"kind":"number","nativeSrc":"18194:4:63","nodeType":"YulLiteral","src":"18194:4:63","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"18185:3:63","nodeType":"YulIdentifier","src":"18185:3:63"},"nativeSrc":"18185:14:63","nodeType":"YulFunctionCall","src":"18185:14:63"},{"name":"b","nativeSrc":"18201:1:63","nodeType":"YulIdentifier","src":"18201:1:63"}],"functionName":{"name":"mstore","nativeSrc":"18178:6:63","nodeType":"YulIdentifier","src":"18178:6:63"},"nativeSrc":"18178:25:63","nodeType":"YulFunctionCall","src":"18178:25:63"},"nativeSrc":"18178:25:63","nodeType":"YulExpressionStatement","src":"18178:25:63"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"18227:3:63","nodeType":"YulIdentifier","src":"18227:3:63"},{"kind":"number","nativeSrc":"18232:4:63","nodeType":"YulLiteral","src":"18232:4:63","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"18223:3:63","nodeType":"YulIdentifier","src":"18223:3:63"},"nativeSrc":"18223:14:63","nodeType":"YulFunctionCall","src":"18223:14:63"},{"name":"e","nativeSrc":"18239:1:63","nodeType":"YulIdentifier","src":"18239:1:63"}],"functionName":{"name":"mstore","nativeSrc":"18216:6:63","nodeType":"YulIdentifier","src":"18216:6:63"},"nativeSrc":"18216:25:63","nodeType":"YulFunctionCall","src":"18216:25:63"},"nativeSrc":"18216:25:63","nodeType":"YulExpressionStatement","src":"18216:25:63"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"18265:3:63","nodeType":"YulIdentifier","src":"18265:3:63"},{"kind":"number","nativeSrc":"18270:4:63","nodeType":"YulLiteral","src":"18270:4:63","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"18261:3:63","nodeType":"YulIdentifier","src":"18261:3:63"},"nativeSrc":"18261:14:63","nodeType":"YulFunctionCall","src":"18261:14:63"},{"name":"m","nativeSrc":"18277:1:63","nodeType":"YulIdentifier","src":"18277:1:63"}],"functionName":{"name":"mstore","nativeSrc":"18254:6:63","nodeType":"YulIdentifier","src":"18254:6:63"},"nativeSrc":"18254:25:63","nodeType":"YulFunctionCall","src":"18254:25:63"},"nativeSrc":"18254:25:63","nodeType":"YulExpressionStatement","src":"18254:25:63"},{"nativeSrc":"18441:57:63","nodeType":"YulAssignment","src":"18441:57:63","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"18463:3:63","nodeType":"YulIdentifier","src":"18463:3:63"},"nativeSrc":"18463:5:63","nodeType":"YulFunctionCall","src":"18463:5:63"},{"kind":"number","nativeSrc":"18470:4:63","nodeType":"YulLiteral","src":"18470:4:63","type":"","value":"0x05"},{"name":"ptr","nativeSrc":"18476:3:63","nodeType":"YulIdentifier","src":"18476:3:63"},{"kind":"number","nativeSrc":"18481:4:63","nodeType":"YulLiteral","src":"18481:4:63","type":"","value":"0xc0"},{"kind":"number","nativeSrc":"18487:4:63","nodeType":"YulLiteral","src":"18487:4:63","type":"","value":"0x00"},{"kind":"number","nativeSrc":"18493:4:63","nodeType":"YulLiteral","src":"18493:4:63","type":"","value":"0x20"}],"functionName":{"name":"staticcall","nativeSrc":"18452:10:63","nodeType":"YulIdentifier","src":"18452:10:63"},"nativeSrc":"18452:46:63","nodeType":"YulFunctionCall","src":"18452:46:63"},"variableNames":[{"name":"success","nativeSrc":"18441:7:63","nodeType":"YulIdentifier","src":"18441:7:63"}]},{"nativeSrc":"18511:21:63","nodeType":"YulAssignment","src":"18511:21:63","value":{"arguments":[{"kind":"number","nativeSrc":"18527:4:63","nodeType":"YulLiteral","src":"18527:4:63","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"18521:5:63","nodeType":"YulIdentifier","src":"18521:5:63"},"nativeSrc":"18521:11:63","nodeType":"YulFunctionCall","src":"18521:11:63"},"variableNames":[{"name":"result","nativeSrc":"18511:6:63","nodeType":"YulIdentifier","src":"18511:6:63"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":15082,"isOffset":false,"isSlot":false,"src":"18201:1:63","valueSize":1},{"declaration":15084,"isOffset":false,"isSlot":false,"src":"18239:1:63","valueSize":1},{"declaration":15086,"isOffset":false,"isSlot":false,"src":"18277:1:63","valueSize":1},{"declaration":15091,"isOffset":false,"isSlot":false,"src":"18511:6:63","valueSize":1},{"declaration":15089,"isOffset":false,"isSlot":false,"src":"18441:7:63","valueSize":1}],"flags":["memory-safe"],"id":15101,"nodeType":"InlineAssembly","src":"17104:1438:63"}]},"documentation":{"id":15080,"nodeType":"StructuredDocumentation","src":"16207:738:63","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":15103,"implemented":true,"kind":"function","modifiers":[],"name":"tryModExp","nameLocation":"16959:9:63","nodeType":"FunctionDefinition","parameters":{"id":15087,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15082,"mutability":"mutable","name":"b","nameLocation":"16977:1:63","nodeType":"VariableDeclaration","scope":15103,"src":"16969:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15081,"name":"uint256","nodeType":"ElementaryTypeName","src":"16969:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15084,"mutability":"mutable","name":"e","nameLocation":"16988:1:63","nodeType":"VariableDeclaration","scope":15103,"src":"16980:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15083,"name":"uint256","nodeType":"ElementaryTypeName","src":"16980:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15086,"mutability":"mutable","name":"m","nameLocation":"16999:1:63","nodeType":"VariableDeclaration","scope":15103,"src":"16991:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15085,"name":"uint256","nodeType":"ElementaryTypeName","src":"16991:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16968:33:63"},"returnParameters":{"id":15092,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15089,"mutability":"mutable","name":"success","nameLocation":"17030:7:63","nodeType":"VariableDeclaration","scope":15103,"src":"17025:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15088,"name":"bool","nodeType":"ElementaryTypeName","src":"17025:4:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":15091,"mutability":"mutable","name":"result","nameLocation":"17047:6:63","nodeType":"VariableDeclaration","scope":15103,"src":"17039:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15090,"name":"uint256","nodeType":"ElementaryTypeName","src":"17039:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17024:30:63"},"scope":15914,"src":"16950:1598:63","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":15138,"nodeType":"Block","src":"18745:179:63","statements":[{"assignments":[15116,15118],"declarations":[{"constant":false,"id":15116,"mutability":"mutable","name":"success","nameLocation":"18761:7:63","nodeType":"VariableDeclaration","scope":15138,"src":"18756:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15115,"name":"bool","nodeType":"ElementaryTypeName","src":"18756:4:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":15118,"mutability":"mutable","name":"result","nameLocation":"18783:6:63","nodeType":"VariableDeclaration","scope":15138,"src":"18770:19:63","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15117,"name":"bytes","nodeType":"ElementaryTypeName","src":"18770:5:63","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":15124,"initialValue":{"arguments":[{"id":15120,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15106,"src":"18803:1:63","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":15121,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15108,"src":"18806:1:63","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":15122,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15110,"src":"18809:1:63","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":15119,"name":"tryModExp","nodeType":"Identifier","overloadedDeclarations":[15103,15185],"referencedDeclaration":15185,"src":"18793:9:63","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":15123,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18793:18:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"18755:56:63"},{"condition":{"id":15126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"18825:8:63","subExpression":{"id":15125,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15116,"src":"18826:7:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15135,"nodeType":"IfStatement","src":"18821:74:63","trueBody":{"id":15134,"nodeType":"Block","src":"18835:60:63","statements":[{"expression":{"arguments":[{"expression":{"id":15130,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"18861:5:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$11417_$","typeString":"type(library Panic)"}},"id":15131,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18867:16:63","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":11384,"src":"18861:22:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15127,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11417,"src":"18849:5:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$11417_$","typeString":"type(library Panic)"}},"id":15129,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18855:5:63","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":11416,"src":"18849:11:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":15132,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18849:35:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15133,"nodeType":"ExpressionStatement","src":"18849:35:63"}]}},{"expression":{"id":15136,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15118,"src":"18911:6:63","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":15114,"id":15137,"nodeType":"Return","src":"18904:13:63"}]},"documentation":{"id":15104,"nodeType":"StructuredDocumentation","src":"18554:85:63","text":" @dev Variant of {modExp} that supports inputs of arbitrary length."},"id":15139,"implemented":true,"kind":"function","modifiers":[],"name":"modExp","nameLocation":"18653:6:63","nodeType":"FunctionDefinition","parameters":{"id":15111,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15106,"mutability":"mutable","name":"b","nameLocation":"18673:1:63","nodeType":"VariableDeclaration","scope":15139,"src":"18660:14:63","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15105,"name":"bytes","nodeType":"ElementaryTypeName","src":"18660:5:63","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":15108,"mutability":"mutable","name":"e","nameLocation":"18689:1:63","nodeType":"VariableDeclaration","scope":15139,"src":"18676:14:63","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15107,"name":"bytes","nodeType":"ElementaryTypeName","src":"18676:5:63","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":15110,"mutability":"mutable","name":"m","nameLocation":"18705:1:63","nodeType":"VariableDeclaration","scope":15139,"src":"18692:14:63","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15109,"name":"bytes","nodeType":"ElementaryTypeName","src":"18692:5:63","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"18659:48:63"},"returnParameters":{"id":15114,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15113,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15139,"src":"18731:12:63","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15112,"name":"bytes","nodeType":"ElementaryTypeName","src":"18731:5:63","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"18730:14:63"},"scope":15914,"src":"18644:280:63","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":15184,"nodeType":"Block","src":"19178:771:63","statements":[{"condition":{"arguments":[{"id":15154,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15146,"src":"19203:1:63","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":15153,"name":"_zeroBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15218,"src":"19192:10:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (bytes memory) pure returns (bool)"}},"id":15155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19192:13:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15163,"nodeType":"IfStatement","src":"19188:47:63","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":15156,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"19215:5:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":15159,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19232:1:63","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":15158,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"19222:9:63","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":15157,"name":"bytes","nodeType":"ElementaryTypeName","src":"19226:5:63","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":15160,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19222:12:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":15161,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19214:21:63","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"functionReturnParameters":15152,"id":15162,"nodeType":"Return","src":"19207:28:63"}},{"assignments":[15165],"declarations":[{"constant":false,"id":15165,"mutability":"mutable","name":"mLen","nameLocation":"19254:4:63","nodeType":"VariableDeclaration","scope":15184,"src":"19246:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15164,"name":"uint256","nodeType":"ElementaryTypeName","src":"19246:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15168,"initialValue":{"expression":{"id":15166,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15146,"src":"19261:1:63","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19263:6:63","memberName":"length","nodeType":"MemberAccess","src":"19261:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"19246:23:63"},{"expression":{"id":15181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15169,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15151,"src":"19351:6:63","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":15172,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15142,"src":"19377:1:63","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19379:6:63","memberName":"length","nodeType":"MemberAccess","src":"19377:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":15174,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15144,"src":"19387:1:63","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19389:6:63","memberName":"length","nodeType":"MemberAccess","src":"19387:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15176,"name":"mLen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15165,"src":"19397:4:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15177,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15142,"src":"19403:1:63","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":15178,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15144,"src":"19406:1:63","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":15179,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15146,"src":"19409:1:63","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":15170,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"19360:3:63","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15171,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19364:12:63","memberName":"encodePacked","nodeType":"MemberAccess","src":"19360:16:63","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":15180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19360:51:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"19351:60:63","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15182,"nodeType":"ExpressionStatement","src":"19351:60:63"},{"AST":{"nativeSrc":"19447:496:63","nodeType":"YulBlock","src":"19447:496:63","statements":[{"nativeSrc":"19461:32:63","nodeType":"YulVariableDeclaration","src":"19461:32:63","value":{"arguments":[{"name":"result","nativeSrc":"19480:6:63","nodeType":"YulIdentifier","src":"19480:6:63"},{"kind":"number","nativeSrc":"19488:4:63","nodeType":"YulLiteral","src":"19488:4:63","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"19476:3:63","nodeType":"YulIdentifier","src":"19476:3:63"},"nativeSrc":"19476:17:63","nodeType":"YulFunctionCall","src":"19476:17:63"},"variables":[{"name":"dataPtr","nativeSrc":"19465:7:63","nodeType":"YulTypedName","src":"19465:7:63","type":""}]},{"nativeSrc":"19583:73:63","nodeType":"YulAssignment","src":"19583:73:63","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"19605:3:63","nodeType":"YulIdentifier","src":"19605:3:63"},"nativeSrc":"19605:5:63","nodeType":"YulFunctionCall","src":"19605:5:63"},{"kind":"number","nativeSrc":"19612:4:63","nodeType":"YulLiteral","src":"19612:4:63","type":"","value":"0x05"},{"name":"dataPtr","nativeSrc":"19618:7:63","nodeType":"YulIdentifier","src":"19618:7:63"},{"arguments":[{"name":"result","nativeSrc":"19633:6:63","nodeType":"YulIdentifier","src":"19633:6:63"}],"functionName":{"name":"mload","nativeSrc":"19627:5:63","nodeType":"YulIdentifier","src":"19627:5:63"},"nativeSrc":"19627:13:63","nodeType":"YulFunctionCall","src":"19627:13:63"},{"name":"dataPtr","nativeSrc":"19642:7:63","nodeType":"YulIdentifier","src":"19642:7:63"},{"name":"mLen","nativeSrc":"19651:4:63","nodeType":"YulIdentifier","src":"19651:4:63"}],"functionName":{"name":"staticcall","nativeSrc":"19594:10:63","nodeType":"YulIdentifier","src":"19594:10:63"},"nativeSrc":"19594:62:63","nodeType":"YulFunctionCall","src":"19594:62:63"},"variableNames":[{"name":"success","nativeSrc":"19583:7:63","nodeType":"YulIdentifier","src":"19583:7:63"}]},{"expression":{"arguments":[{"name":"result","nativeSrc":"19812:6:63","nodeType":"YulIdentifier","src":"19812:6:63"},{"name":"mLen","nativeSrc":"19820:4:63","nodeType":"YulIdentifier","src":"19820:4:63"}],"functionName":{"name":"mstore","nativeSrc":"19805:6:63","nodeType":"YulIdentifier","src":"19805:6:63"},"nativeSrc":"19805:20:63","nodeType":"YulFunctionCall","src":"19805:20:63"},"nativeSrc":"19805:20:63","nodeType":"YulExpressionStatement","src":"19805:20:63"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"19908:4:63","nodeType":"YulLiteral","src":"19908:4:63","type":"","value":"0x40"},{"arguments":[{"name":"dataPtr","nativeSrc":"19918:7:63","nodeType":"YulIdentifier","src":"19918:7:63"},{"name":"mLen","nativeSrc":"19927:4:63","nodeType":"YulIdentifier","src":"19927:4:63"}],"functionName":{"name":"add","nativeSrc":"19914:3:63","nodeType":"YulIdentifier","src":"19914:3:63"},"nativeSrc":"19914:18:63","nodeType":"YulFunctionCall","src":"19914:18:63"}],"functionName":{"name":"mstore","nativeSrc":"19901:6:63","nodeType":"YulIdentifier","src":"19901:6:63"},"nativeSrc":"19901:32:63","nodeType":"YulFunctionCall","src":"19901:32:63"},"nativeSrc":"19901:32:63","nodeType":"YulExpressionStatement","src":"19901:32:63"}]},"evmVersion":"prague","externalReferences":[{"declaration":15165,"isOffset":false,"isSlot":false,"src":"19651:4:63","valueSize":1},{"declaration":15165,"isOffset":false,"isSlot":false,"src":"19820:4:63","valueSize":1},{"declaration":15165,"isOffset":false,"isSlot":false,"src":"19927:4:63","valueSize":1},{"declaration":15151,"isOffset":false,"isSlot":false,"src":"19480:6:63","valueSize":1},{"declaration":15151,"isOffset":false,"isSlot":false,"src":"19633:6:63","valueSize":1},{"declaration":15151,"isOffset":false,"isSlot":false,"src":"19812:6:63","valueSize":1},{"declaration":15149,"isOffset":false,"isSlot":false,"src":"19583:7:63","valueSize":1}],"flags":["memory-safe"],"id":15183,"nodeType":"InlineAssembly","src":"19422:521:63"}]},"documentation":{"id":15140,"nodeType":"StructuredDocumentation","src":"18930:88:63","text":" @dev Variant of {tryModExp} that supports inputs of arbitrary length."},"id":15185,"implemented":true,"kind":"function","modifiers":[],"name":"tryModExp","nameLocation":"19032:9:63","nodeType":"FunctionDefinition","parameters":{"id":15147,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15142,"mutability":"mutable","name":"b","nameLocation":"19064:1:63","nodeType":"VariableDeclaration","scope":15185,"src":"19051:14:63","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15141,"name":"bytes","nodeType":"ElementaryTypeName","src":"19051:5:63","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":15144,"mutability":"mutable","name":"e","nameLocation":"19088:1:63","nodeType":"VariableDeclaration","scope":15185,"src":"19075:14:63","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15143,"name":"bytes","nodeType":"ElementaryTypeName","src":"19075:5:63","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":15146,"mutability":"mutable","name":"m","nameLocation":"19112:1:63","nodeType":"VariableDeclaration","scope":15185,"src":"19099:14:63","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15145,"name":"bytes","nodeType":"ElementaryTypeName","src":"19099:5:63","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"19041:78:63"},"returnParameters":{"id":15152,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15149,"mutability":"mutable","name":"success","nameLocation":"19148:7:63","nodeType":"VariableDeclaration","scope":15185,"src":"19143:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15148,"name":"bool","nodeType":"ElementaryTypeName","src":"19143:4:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":15151,"mutability":"mutable","name":"result","nameLocation":"19170:6:63","nodeType":"VariableDeclaration","scope":15185,"src":"19157:19:63","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15150,"name":"bytes","nodeType":"ElementaryTypeName","src":"19157:5:63","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"19142:35:63"},"scope":15914,"src":"19023:926:63","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":15217,"nodeType":"Block","src":"20104:176:63","statements":[{"body":{"id":15213,"nodeType":"Block","src":"20161:92:63","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":15208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":15204,"name":"byteArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15188,"src":"20179:9:63","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15206,"indexExpression":{"id":15205,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15194,"src":"20189:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20179:12:63","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":15207,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20195:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20179:17:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15212,"nodeType":"IfStatement","src":"20175:68:63","trueBody":{"id":15211,"nodeType":"Block","src":"20198:45:63","statements":[{"expression":{"hexValue":"66616c7365","id":15209,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"20223:5:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":15192,"id":15210,"nodeType":"Return","src":"20216:12:63"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15200,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15197,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15194,"src":"20134:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":15198,"name":"byteArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15188,"src":"20138:9:63","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20148:6:63","memberName":"length","nodeType":"MemberAccess","src":"20138:16:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20134:20:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15214,"initializationExpression":{"assignments":[15194],"declarations":[{"constant":false,"id":15194,"mutability":"mutable","name":"i","nameLocation":"20127:1:63","nodeType":"VariableDeclaration","scope":15214,"src":"20119:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15193,"name":"uint256","nodeType":"ElementaryTypeName","src":"20119:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15196,"initialValue":{"hexValue":"30","id":15195,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20131:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"20119:13:63"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":15202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"20156:3:63","subExpression":{"id":15201,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15194,"src":"20158:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15203,"nodeType":"ExpressionStatement","src":"20156:3:63"},"nodeType":"ForStatement","src":"20114:139:63"},{"expression":{"hexValue":"74727565","id":15215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"20269:4:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":15192,"id":15216,"nodeType":"Return","src":"20262:11:63"}]},"documentation":{"id":15186,"nodeType":"StructuredDocumentation","src":"19955:72:63","text":" @dev Returns whether the provided byte array is zero."},"id":15218,"implemented":true,"kind":"function","modifiers":[],"name":"_zeroBytes","nameLocation":"20041:10:63","nodeType":"FunctionDefinition","parameters":{"id":15189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15188,"mutability":"mutable","name":"byteArray","nameLocation":"20065:9:63","nodeType":"VariableDeclaration","scope":15218,"src":"20052:22:63","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15187,"name":"bytes","nodeType":"ElementaryTypeName","src":"20052:5:63","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"20051:24:63"},"returnParameters":{"id":15192,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15191,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15218,"src":"20098:4:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15190,"name":"bool","nodeType":"ElementaryTypeName","src":"20098:4:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"20097:6:63"},"scope":15914,"src":"20032:248:63","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":15436,"nodeType":"Block","src":"20640:5124:63","statements":[{"id":15435,"nodeType":"UncheckedBlock","src":"20650:5108:63","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15228,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15226,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15221,"src":"20744:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"31","id":15227,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20749:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"20744:6:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15232,"nodeType":"IfStatement","src":"20740:53:63","trueBody":{"id":15231,"nodeType":"Block","src":"20752:41:63","statements":[{"expression":{"id":15229,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15221,"src":"20777:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15225,"id":15230,"nodeType":"Return","src":"20770:8:63"}]}},{"assignments":[15234],"declarations":[{"constant":false,"id":15234,"mutability":"mutable","name":"aa","nameLocation":"21728:2:63","nodeType":"VariableDeclaration","scope":15435,"src":"21720:10:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15233,"name":"uint256","nodeType":"ElementaryTypeName","src":"21720:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15236,"initialValue":{"id":15235,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15221,"src":"21733:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"21720:14:63"},{"assignments":[15238],"declarations":[{"constant":false,"id":15238,"mutability":"mutable","name":"xn","nameLocation":"21756:2:63","nodeType":"VariableDeclaration","scope":15435,"src":"21748:10:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15237,"name":"uint256","nodeType":"ElementaryTypeName","src":"21748:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15240,"initialValue":{"hexValue":"31","id":15239,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21761:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"21748:14:63"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15246,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15241,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15234,"src":"21781:2:63","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":15244,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":15242,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21788:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":15243,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21793:3:63","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"21788:8:63","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}}],"id":15245,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"21787:10:63","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}},"src":"21781:16:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15256,"nodeType":"IfStatement","src":"21777:92:63","trueBody":{"id":15255,"nodeType":"Block","src":"21799:70:63","statements":[{"expression":{"id":15249,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15247,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15234,"src":"21817:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"313238","id":15248,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21824:3:63","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"21817:10:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15250,"nodeType":"ExpressionStatement","src":"21817:10:63"},{"expression":{"id":15253,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15251,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"21845:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3634","id":15252,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21852:2:63","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"21845:9:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15254,"nodeType":"ExpressionStatement","src":"21845:9:63"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15262,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15257,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15234,"src":"21886:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"},"id":15260,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":15258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21893:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":15259,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21898:2:63","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"21893:7:63","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}}],"id":15261,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"21892:9:63","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}},"src":"21886:15:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15272,"nodeType":"IfStatement","src":"21882:90:63","trueBody":{"id":15271,"nodeType":"Block","src":"21903:69:63","statements":[{"expression":{"id":15265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15263,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15234,"src":"21921:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3634","id":15264,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21928:2:63","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"21921:9:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15266,"nodeType":"ExpressionStatement","src":"21921:9:63"},{"expression":{"id":15269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15267,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"21948:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3332","id":15268,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21955:2:63","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"21948:9:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15270,"nodeType":"ExpressionStatement","src":"21948:9:63"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15273,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15234,"src":"21989:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"},"id":15276,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":15274,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21996:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":15275,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22001:2:63","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"21996:7:63","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}}],"id":15277,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"21995:9:63","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}},"src":"21989:15:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15288,"nodeType":"IfStatement","src":"21985:90:63","trueBody":{"id":15287,"nodeType":"Block","src":"22006:69:63","statements":[{"expression":{"id":15281,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15279,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15234,"src":"22024:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3332","id":15280,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22031:2:63","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"22024:9:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15282,"nodeType":"ExpressionStatement","src":"22024:9:63"},{"expression":{"id":15285,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15283,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"22051:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3136","id":15284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22058:2:63","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"22051:9:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15286,"nodeType":"ExpressionStatement","src":"22051:9:63"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15289,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15234,"src":"22092:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"},"id":15292,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":15290,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22099:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":15291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22104:2:63","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"22099:7:63","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}}],"id":15293,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22098:9:63","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}},"src":"22092:15:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15304,"nodeType":"IfStatement","src":"22088:89:63","trueBody":{"id":15303,"nodeType":"Block","src":"22109:68:63","statements":[{"expression":{"id":15297,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15295,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15234,"src":"22127:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3136","id":15296,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22134:2:63","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"22127:9:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15298,"nodeType":"ExpressionStatement","src":"22127:9:63"},{"expression":{"id":15301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15299,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"22154:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"38","id":15300,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22161:1:63","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"22154:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15302,"nodeType":"ExpressionStatement","src":"22154:8:63"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15305,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15234,"src":"22194:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":15308,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":15306,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22201:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":15307,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22206:1:63","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"22201:6:63","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":15309,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22200:8:63","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"src":"22194:14:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15320,"nodeType":"IfStatement","src":"22190:87:63","trueBody":{"id":15319,"nodeType":"Block","src":"22210:67:63","statements":[{"expression":{"id":15313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15311,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15234,"src":"22228:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"38","id":15312,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22235:1:63","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"22228:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15314,"nodeType":"ExpressionStatement","src":"22228:8:63"},{"expression":{"id":15317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15315,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"22254:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"34","id":15316,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22261:1:63","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"22254:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15318,"nodeType":"ExpressionStatement","src":"22254:8:63"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15326,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15321,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15234,"src":"22294:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"id":15324,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":15322,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22301:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":15323,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22306:1:63","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"22301:6:63","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}}],"id":15325,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22300:8:63","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}},"src":"22294:14:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15336,"nodeType":"IfStatement","src":"22290:87:63","trueBody":{"id":15335,"nodeType":"Block","src":"22310:67:63","statements":[{"expression":{"id":15329,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15327,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15234,"src":"22328:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":15328,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22335:1:63","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"22328:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15330,"nodeType":"ExpressionStatement","src":"22328:8:63"},{"expression":{"id":15333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15331,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"22354:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"32","id":15332,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22361:1:63","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"22354:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15334,"nodeType":"ExpressionStatement","src":"22354:8:63"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15342,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15337,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15234,"src":"22394:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"id":15340,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":15338,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22401:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"32","id":15339,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22406:1:63","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"22401:6:63","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}}],"id":15341,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22400:8:63","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}},"src":"22394:14:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15348,"nodeType":"IfStatement","src":"22390:61:63","trueBody":{"id":15347,"nodeType":"Block","src":"22410:41:63","statements":[{"expression":{"id":15345,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15343,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"22428:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"31","id":15344,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22435:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22428:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15346,"nodeType":"ExpressionStatement","src":"22428:8:63"}]}},{"expression":{"id":15356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15349,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"22871:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":15350,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22877:1:63","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":15351,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"22881:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22877:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15353,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22876:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":15354,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22888:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22876:13:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22871:18:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15357,"nodeType":"ExpressionStatement","src":"22871:18:63"},{"expression":{"id":15367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15358,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"24776:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15359,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"24782:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15360,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15221,"src":"24787:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":15361,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"24791:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24787:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24782:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15364,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"24781:13:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":15365,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24798:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24781:18:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24776:23:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15368,"nodeType":"ExpressionStatement","src":"24776:23:63"},{"expression":{"id":15378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15369,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"24885:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15370,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"24891:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15371,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15221,"src":"24896:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":15372,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"24900:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24896:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24891:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15375,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"24890:13:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":15376,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24907:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24890:18:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24885:23:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15379,"nodeType":"ExpressionStatement","src":"24885:23:63"},{"expression":{"id":15389,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15380,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"24996:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15381,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"25002:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15382,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15221,"src":"25007:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":15383,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"25011:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25007:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25002:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15386,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"25001:13:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":15387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25018:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"25001:18:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24996:23:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15390,"nodeType":"ExpressionStatement","src":"24996:23:63"},{"expression":{"id":15400,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15391,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"25105:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15396,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15392,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"25111:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15395,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15393,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15221,"src":"25116:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":15394,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"25120:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25116:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25111:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15397,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"25110:13:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":15398,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25127:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"25110:18:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25105:23:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15401,"nodeType":"ExpressionStatement","src":"25105:23:63"},{"expression":{"id":15411,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15402,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"25215:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15403,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"25221:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15404,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15221,"src":"25226:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":15405,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"25230:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25226:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25221:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15408,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"25220:13:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":15409,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25237:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"25220:18:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25215:23:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15412,"nodeType":"ExpressionStatement","src":"25215:23:63"},{"expression":{"id":15422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15413,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"25325:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15421,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15418,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15414,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"25331:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15415,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15221,"src":"25336:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":15416,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"25340:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25336:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25331:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15419,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"25330:13:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":15420,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25347:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"25330:18:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25325:23:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15423,"nodeType":"ExpressionStatement","src":"25325:23:63"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15433,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15424,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"25714:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15427,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"25735:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15430,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15428,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15221,"src":"25740:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":15429,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15238,"src":"25744:2:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25740:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25735:11:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":15425,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"25719:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":15426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25728:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"25719:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":15432,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25719:28:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25714:33:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15225,"id":15434,"nodeType":"Return","src":"25707:40:63"}]}]},"documentation":{"id":15219,"nodeType":"StructuredDocumentation","src":"20286:292:63","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":15437,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"20592:4:63","nodeType":"FunctionDefinition","parameters":{"id":15222,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15221,"mutability":"mutable","name":"a","nameLocation":"20605:1:63","nodeType":"VariableDeclaration","scope":15437,"src":"20597:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15220,"name":"uint256","nodeType":"ElementaryTypeName","src":"20597:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20596:11:63"},"returnParameters":{"id":15225,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15224,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15437,"src":"20631:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15223,"name":"uint256","nodeType":"ElementaryTypeName","src":"20631:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20630:9:63"},"scope":15914,"src":"20583:5181:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15470,"nodeType":"Block","src":"25937:171:63","statements":[{"id":15469,"nodeType":"UncheckedBlock","src":"25947:155:63","statements":[{"assignments":[15449],"declarations":[{"constant":false,"id":15449,"mutability":"mutable","name":"result","nameLocation":"25979:6:63","nodeType":"VariableDeclaration","scope":15469,"src":"25971:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15448,"name":"uint256","nodeType":"ElementaryTypeName","src":"25971:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15453,"initialValue":{"arguments":[{"id":15451,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15440,"src":"25993:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15450,"name":"sqrt","nodeType":"Identifier","overloadedDeclarations":[15437,15471],"referencedDeclaration":15437,"src":"25988:4:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":15452,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25988:7:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"25971:24:63"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15454,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15449,"src":"26016:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":15458,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15443,"src":"26058:8:63","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}],"id":15457,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15892,"src":"26041:16:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$14284_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":15459,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26041:26:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15460,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15449,"src":"26071:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":15461,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15449,"src":"26080:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26071:15:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":15463,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15440,"src":"26089:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26071:19:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26041:49:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":15455,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"26025:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":15456,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26034:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"26025:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":15466,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26025:66:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26016:75:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15447,"id":15468,"nodeType":"Return","src":"26009:82:63"}]}]},"documentation":{"id":15438,"nodeType":"StructuredDocumentation","src":"25770:86:63","text":" @dev Calculates sqrt(a), following the selected rounding direction."},"id":15471,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"25870:4:63","nodeType":"FunctionDefinition","parameters":{"id":15444,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15440,"mutability":"mutable","name":"a","nameLocation":"25883:1:63","nodeType":"VariableDeclaration","scope":15471,"src":"25875:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15439,"name":"uint256","nodeType":"ElementaryTypeName","src":"25875:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15443,"mutability":"mutable","name":"rounding","nameLocation":"25895:8:63","nodeType":"VariableDeclaration","scope":15471,"src":"25886:17:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"},"typeName":{"id":15442,"nodeType":"UserDefinedTypeName","pathNode":{"id":15441,"name":"Rounding","nameLocations":["25886:8:63"],"nodeType":"IdentifierPath","referencedDeclaration":14284,"src":"25886:8:63"},"referencedDeclaration":14284,"src":"25886:8:63","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"25874:30:63"},"returnParameters":{"id":15447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15446,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15471,"src":"25928:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15445,"name":"uint256","nodeType":"ElementaryTypeName","src":"25928:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25927:9:63"},"scope":15914,"src":"25861:247:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15561,"nodeType":"Block","src":"26297:2334:63","statements":[{"expression":{"id":15488,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15479,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15477,"src":"26379:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15487,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15482,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15474,"src":"26399:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666666666666666666666666666666666666666666666666666666666666666","id":15483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26403:34:63","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"},"value":"0xffffffffffffffffffffffffffffffff"},"src":"26399:38:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":15480,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"26383:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":15481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26392:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"26383:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":15485,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26383:55:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"37","id":15486,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26442:1:63","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"26383:60:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26379:64:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15489,"nodeType":"ExpressionStatement","src":"26379:64:63"},{"expression":{"id":15502,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15490,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15477,"src":"26519:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15498,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15493,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15474,"src":"26541:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":15494,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15477,"src":"26546:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26541:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15496,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26540:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866666666666666666666666666666666","id":15497,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26551:18:63","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"},"value":"0xffffffffffffffff"},"src":"26540:29:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":15491,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"26524:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":15492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26533:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"26524:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":15499,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26524:46:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"36","id":15500,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26574:1:63","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"26524:51:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26519:56:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15503,"nodeType":"ExpressionStatement","src":"26519:56:63"},{"expression":{"id":15516,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15504,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15477,"src":"26650:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15509,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15507,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15474,"src":"26672:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":15508,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15477,"src":"26677:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26672:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15510,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26671:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666666666666666","id":15511,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26682:10:63","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"value":"0xffffffff"},"src":"26671:21:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":15505,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"26655:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":15506,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26664:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"26655:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":15513,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26655:38:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"35","id":15514,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26697:1:63","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"26655:43:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26650:48:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15517,"nodeType":"ExpressionStatement","src":"26650:48:63"},{"expression":{"id":15530,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15518,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15477,"src":"26773:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15523,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15521,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15474,"src":"26795:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":15522,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15477,"src":"26800:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26795:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15524,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26794:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866666666","id":15525,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26805:6:63","typeDescriptions":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"},"value":"0xffff"},"src":"26794:17:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":15519,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"26778:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":15520,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26787:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"26778:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":15527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26778:34:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":15528,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26816:1:63","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"26778:39:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26773:44:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15531,"nodeType":"ExpressionStatement","src":"26773:44:63"},{"expression":{"id":15544,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15532,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15477,"src":"26890:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15543,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15537,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15535,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15474,"src":"26912:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":15536,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15477,"src":"26917:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26912:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15538,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26911:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666","id":15539,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26922:4:63","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0xff"},"src":"26911:15:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":15533,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"26895:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":15534,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26904:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"26895:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":15541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26895:32:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"33","id":15542,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26931:1:63","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"26895:37:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26890:42:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15545,"nodeType":"ExpressionStatement","src":"26890:42:63"},{"expression":{"id":15558,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15546,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15477,"src":"27004:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15557,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15554,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15549,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15474,"src":"27026:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":15550,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15477,"src":"27031:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27026:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15552,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"27025:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866","id":15553,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27036:3:63","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"27025:14:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":15547,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"27009:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":15548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27018:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"27009:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":15555,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27009:31:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"32","id":15556,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27044:1:63","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"27009:36:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27004:41:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15559,"nodeType":"ExpressionStatement","src":"27004:41:63"},{"AST":{"nativeSrc":"28506:119:63","nodeType":"YulBlock","src":"28506:119:63","statements":[{"nativeSrc":"28520:95:63","nodeType":"YulAssignment","src":"28520:95:63","value":{"arguments":[{"name":"r","nativeSrc":"28528:1:63","nodeType":"YulIdentifier","src":"28528:1:63"},{"arguments":[{"arguments":[{"name":"r","nativeSrc":"28540:1:63","nodeType":"YulIdentifier","src":"28540:1:63"},{"name":"x","nativeSrc":"28543:1:63","nodeType":"YulIdentifier","src":"28543:1:63"}],"functionName":{"name":"shr","nativeSrc":"28536:3:63","nodeType":"YulIdentifier","src":"28536:3:63"},"nativeSrc":"28536:9:63","nodeType":"YulFunctionCall","src":"28536:9:63"},{"kind":"number","nativeSrc":"28547:66:63","nodeType":"YulLiteral","src":"28547:66:63","type":"","value":"0x0000010102020202030303030303030300000000000000000000000000000000"}],"functionName":{"name":"byte","nativeSrc":"28531:4:63","nodeType":"YulIdentifier","src":"28531:4:63"},"nativeSrc":"28531:83:63","nodeType":"YulFunctionCall","src":"28531:83:63"}],"functionName":{"name":"or","nativeSrc":"28525:2:63","nodeType":"YulIdentifier","src":"28525:2:63"},"nativeSrc":"28525:90:63","nodeType":"YulFunctionCall","src":"28525:90:63"},"variableNames":[{"name":"r","nativeSrc":"28520:1:63","nodeType":"YulIdentifier","src":"28520:1:63"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":15477,"isOffset":false,"isSlot":false,"src":"28520:1:63","valueSize":1},{"declaration":15477,"isOffset":false,"isSlot":false,"src":"28528:1:63","valueSize":1},{"declaration":15477,"isOffset":false,"isSlot":false,"src":"28540:1:63","valueSize":1},{"declaration":15474,"isOffset":false,"isSlot":false,"src":"28543:1:63","valueSize":1}],"flags":["memory-safe"],"id":15560,"nodeType":"InlineAssembly","src":"28481:144:63"}]},"documentation":{"id":15472,"nodeType":"StructuredDocumentation","src":"26114:119:63","text":" @dev Return the log in base 2 of a positive value rounded towards zero.\n Returns 0 if given 0."},"id":15562,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"26247:4:63","nodeType":"FunctionDefinition","parameters":{"id":15475,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15474,"mutability":"mutable","name":"x","nameLocation":"26260:1:63","nodeType":"VariableDeclaration","scope":15562,"src":"26252:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15473,"name":"uint256","nodeType":"ElementaryTypeName","src":"26252:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26251:11:63"},"returnParameters":{"id":15478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15477,"mutability":"mutable","name":"r","nameLocation":"26294:1:63","nodeType":"VariableDeclaration","scope":15562,"src":"26286:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15476,"name":"uint256","nodeType":"ElementaryTypeName","src":"26286:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26285:11:63"},"scope":15914,"src":"26238:2393:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15595,"nodeType":"Block","src":"28864:175:63","statements":[{"id":15594,"nodeType":"UncheckedBlock","src":"28874:159:63","statements":[{"assignments":[15574],"declarations":[{"constant":false,"id":15574,"mutability":"mutable","name":"result","nameLocation":"28906:6:63","nodeType":"VariableDeclaration","scope":15594,"src":"28898:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15573,"name":"uint256","nodeType":"ElementaryTypeName","src":"28898:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15578,"initialValue":{"arguments":[{"id":15576,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15565,"src":"28920:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15575,"name":"log2","nodeType":"Identifier","overloadedDeclarations":[15562,15596],"referencedDeclaration":15562,"src":"28915:4:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":15577,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28915:11:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28898:28:63"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15579,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15574,"src":"28947:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":15583,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15568,"src":"28989:8:63","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}],"id":15582,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15892,"src":"28972:16:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$14284_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":15584,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28972:26:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15589,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":15585,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29002:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":15586,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15574,"src":"29007:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29002:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":15588,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15565,"src":"29016:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29002:19:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"28972:49:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":15580,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"28956:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":15581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28965:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"28956:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":15591,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28956:66:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28947:75:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15572,"id":15593,"nodeType":"Return","src":"28940:82:63"}]}]},"documentation":{"id":15563,"nodeType":"StructuredDocumentation","src":"28637:142:63","text":" @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":15596,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"28793:4:63","nodeType":"FunctionDefinition","parameters":{"id":15569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15565,"mutability":"mutable","name":"value","nameLocation":"28806:5:63","nodeType":"VariableDeclaration","scope":15596,"src":"28798:13:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15564,"name":"uint256","nodeType":"ElementaryTypeName","src":"28798:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15568,"mutability":"mutable","name":"rounding","nameLocation":"28822:8:63","nodeType":"VariableDeclaration","scope":15596,"src":"28813:17:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"},"typeName":{"id":15567,"nodeType":"UserDefinedTypeName","pathNode":{"id":15566,"name":"Rounding","nameLocations":["28813:8:63"],"nodeType":"IdentifierPath","referencedDeclaration":14284,"src":"28813:8:63"},"referencedDeclaration":14284,"src":"28813:8:63","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"28797:34:63"},"returnParameters":{"id":15572,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15571,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15596,"src":"28855:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15570,"name":"uint256","nodeType":"ElementaryTypeName","src":"28855:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"28854:9:63"},"scope":15914,"src":"28784:255:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15724,"nodeType":"Block","src":"29232:854:63","statements":[{"assignments":[15605],"declarations":[{"constant":false,"id":15605,"mutability":"mutable","name":"result","nameLocation":"29250:6:63","nodeType":"VariableDeclaration","scope":15724,"src":"29242:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15604,"name":"uint256","nodeType":"ElementaryTypeName","src":"29242:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15607,"initialValue":{"hexValue":"30","id":15606,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29259:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"29242:18:63"},{"id":15721,"nodeType":"UncheckedBlock","src":"29270:787:63","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15608,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15599,"src":"29298:5:63","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":15611,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":15609,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29307:2:63","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":15610,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29313:2:63","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"29307:8:63","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"29298:17:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15624,"nodeType":"IfStatement","src":"29294:103:63","trueBody":{"id":15623,"nodeType":"Block","src":"29317:80:63","statements":[{"expression":{"id":15617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15613,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15599,"src":"29335:5:63","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":15616,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":15614,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29344:2:63","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":15615,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29350:2:63","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"29344:8:63","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"29335:17:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15618,"nodeType":"ExpressionStatement","src":"29335:17:63"},{"expression":{"id":15621,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15619,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15605,"src":"29370:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3634","id":15620,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29380:2:63","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"29370:12:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15622,"nodeType":"ExpressionStatement","src":"29370:12:63"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15625,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15599,"src":"29414:5:63","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":15628,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":15626,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29423:2:63","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":15627,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29429:2:63","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"29423:8:63","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"29414:17:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15641,"nodeType":"IfStatement","src":"29410:103:63","trueBody":{"id":15640,"nodeType":"Block","src":"29433:80:63","statements":[{"expression":{"id":15634,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15630,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15599,"src":"29451:5:63","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":15633,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":15631,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29460:2:63","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":15632,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29466:2:63","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"29460:8:63","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"29451:17:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15635,"nodeType":"ExpressionStatement","src":"29451:17:63"},{"expression":{"id":15638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15636,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15605,"src":"29486:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":15637,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29496:2:63","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"29486:12:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15639,"nodeType":"ExpressionStatement","src":"29486:12:63"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15646,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15642,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15599,"src":"29530:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":15645,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":15643,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29539:2:63","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":15644,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29545:2:63","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"29539:8:63","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"29530:17:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15658,"nodeType":"IfStatement","src":"29526:103:63","trueBody":{"id":15657,"nodeType":"Block","src":"29549:80:63","statements":[{"expression":{"id":15651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15647,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15599,"src":"29567:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":15650,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":15648,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29576:2:63","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":15649,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29582:2:63","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"29576:8:63","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"29567:17:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15652,"nodeType":"ExpressionStatement","src":"29567:17:63"},{"expression":{"id":15655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15653,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15605,"src":"29602:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3136","id":15654,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29612:2:63","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"29602:12:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15656,"nodeType":"ExpressionStatement","src":"29602:12:63"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15663,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15659,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15599,"src":"29646:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":15662,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":15660,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29655:2:63","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":15661,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29661:1:63","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"29655:7:63","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"29646:16:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15675,"nodeType":"IfStatement","src":"29642:100:63","trueBody":{"id":15674,"nodeType":"Block","src":"29664:78:63","statements":[{"expression":{"id":15668,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15664,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15599,"src":"29682:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":15667,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":15665,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29691:2:63","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":15666,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29697:1:63","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"29691:7:63","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"29682:16:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15669,"nodeType":"ExpressionStatement","src":"29682:16:63"},{"expression":{"id":15672,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15670,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15605,"src":"29716:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"38","id":15671,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29726:1:63","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"29716:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15673,"nodeType":"ExpressionStatement","src":"29716:11:63"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15680,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15676,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15599,"src":"29759:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":15679,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":15677,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29768:2:63","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":15678,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29774:1:63","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"29768:7:63","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"29759:16:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15692,"nodeType":"IfStatement","src":"29755:100:63","trueBody":{"id":15691,"nodeType":"Block","src":"29777:78:63","statements":[{"expression":{"id":15685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15681,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15599,"src":"29795:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":15684,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":15682,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29804:2:63","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":15683,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29810:1:63","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"29804:7:63","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"29795:16:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15686,"nodeType":"ExpressionStatement","src":"29795:16:63"},{"expression":{"id":15689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15687,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15605,"src":"29829:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"34","id":15688,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29839:1:63","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"29829:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15690,"nodeType":"ExpressionStatement","src":"29829:11:63"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15693,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15599,"src":"29872:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":15696,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":15694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29881:2:63","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":15695,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29887:1:63","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"29881:7:63","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"29872:16:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15709,"nodeType":"IfStatement","src":"29868:100:63","trueBody":{"id":15708,"nodeType":"Block","src":"29890:78:63","statements":[{"expression":{"id":15702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15698,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15599,"src":"29908:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":15701,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":15699,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29917:2:63","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":15700,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29923:1:63","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"29917:7:63","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"29908:16:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15703,"nodeType":"ExpressionStatement","src":"29908:16:63"},{"expression":{"id":15706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15704,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15605,"src":"29942:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"32","id":15705,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29952:1:63","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"29942:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15707,"nodeType":"ExpressionStatement","src":"29942:11:63"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15714,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15710,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15599,"src":"29985:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"id":15713,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":15711,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29994:2:63","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"31","id":15712,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30000:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"29994:7:63","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"}},"src":"29985:16:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15720,"nodeType":"IfStatement","src":"29981:66:63","trueBody":{"id":15719,"nodeType":"Block","src":"30003:44:63","statements":[{"expression":{"id":15717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15715,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15605,"src":"30021:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":15716,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30031:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"30021:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15718,"nodeType":"ExpressionStatement","src":"30021:11:63"}]}}]},{"expression":{"id":15722,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15605,"src":"30073:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15603,"id":15723,"nodeType":"Return","src":"30066:13:63"}]},"documentation":{"id":15597,"nodeType":"StructuredDocumentation","src":"29045:120:63","text":" @dev Return the log in base 10 of a positive value rounded towards zero.\n Returns 0 if given 0."},"id":15725,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"29179:5:63","nodeType":"FunctionDefinition","parameters":{"id":15600,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15599,"mutability":"mutable","name":"value","nameLocation":"29193:5:63","nodeType":"VariableDeclaration","scope":15725,"src":"29185:13:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15598,"name":"uint256","nodeType":"ElementaryTypeName","src":"29185:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"29184:15:63"},"returnParameters":{"id":15603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15602,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15725,"src":"29223:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15601,"name":"uint256","nodeType":"ElementaryTypeName","src":"29223:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"29222:9:63"},"scope":15914,"src":"29170:916:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15758,"nodeType":"Block","src":"30321:177:63","statements":[{"id":15757,"nodeType":"UncheckedBlock","src":"30331:161:63","statements":[{"assignments":[15737],"declarations":[{"constant":false,"id":15737,"mutability":"mutable","name":"result","nameLocation":"30363:6:63","nodeType":"VariableDeclaration","scope":15757,"src":"30355:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15736,"name":"uint256","nodeType":"ElementaryTypeName","src":"30355:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15741,"initialValue":{"arguments":[{"id":15739,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15728,"src":"30378:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15738,"name":"log10","nodeType":"Identifier","overloadedDeclarations":[15725,15759],"referencedDeclaration":15725,"src":"30372:5:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":15740,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30372:12:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"30355:29:63"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15742,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15737,"src":"30405:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15753,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":15746,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15731,"src":"30447:8:63","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}],"id":15745,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15892,"src":"30430:16:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$14284_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":15747,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30430:26:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15750,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":15748,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30460:2:63","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"id":15749,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15737,"src":"30466:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30460:12:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":15751,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15728,"src":"30475:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30460:20:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"30430:50:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":15743,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"30414:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":15744,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30423:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"30414:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":15754,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30414:67:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30405:76:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15735,"id":15756,"nodeType":"Return","src":"30398:83:63"}]}]},"documentation":{"id":15726,"nodeType":"StructuredDocumentation","src":"30092:143:63","text":" @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":15759,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"30249:5:63","nodeType":"FunctionDefinition","parameters":{"id":15732,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15728,"mutability":"mutable","name":"value","nameLocation":"30263:5:63","nodeType":"VariableDeclaration","scope":15759,"src":"30255:13:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15727,"name":"uint256","nodeType":"ElementaryTypeName","src":"30255:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15731,"mutability":"mutable","name":"rounding","nameLocation":"30279:8:63","nodeType":"VariableDeclaration","scope":15759,"src":"30270:17:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"},"typeName":{"id":15730,"nodeType":"UserDefinedTypeName","pathNode":{"id":15729,"name":"Rounding","nameLocations":["30270:8:63"],"nodeType":"IdentifierPath","referencedDeclaration":14284,"src":"30270:8:63"},"referencedDeclaration":14284,"src":"30270:8:63","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"30254:34:63"},"returnParameters":{"id":15735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15734,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15759,"src":"30312:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15733,"name":"uint256","nodeType":"ElementaryTypeName","src":"30312:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30311:9:63"},"scope":15914,"src":"30240:258:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15835,"nodeType":"Block","src":"30816:675:63","statements":[{"expression":{"id":15776,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15767,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15765,"src":"30898:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15772,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15770,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15762,"src":"30918:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666666666666666666666666666666666666666666666666666666666666666","id":15771,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30922:34:63","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"},"value":"0xffffffffffffffffffffffffffffffff"},"src":"30918:38:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":15768,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"30902:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":15769,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30911:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"30902:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":15773,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30902:55:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"37","id":15774,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30961:1:63","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"30902:60:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30898:64:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15777,"nodeType":"ExpressionStatement","src":"30898:64:63"},{"expression":{"id":15790,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15778,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15765,"src":"31038:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15781,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15762,"src":"31060:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":15782,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15765,"src":"31065:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31060:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15784,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31059:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866666666666666666666666666666666","id":15785,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31070:18:63","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"},"value":"0xffffffffffffffff"},"src":"31059:29:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":15779,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"31043:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":15780,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31052:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"31043:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":15787,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31043:46:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"36","id":15788,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31093:1:63","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"31043:51:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31038:56:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15791,"nodeType":"ExpressionStatement","src":"31038:56:63"},{"expression":{"id":15804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15792,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15765,"src":"31169:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15795,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15762,"src":"31191:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":15796,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15765,"src":"31196:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31191:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15798,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31190:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666666666666666","id":15799,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31201:10:63","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"value":"0xffffffff"},"src":"31190:21:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":15793,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"31174:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":15794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31183:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"31174:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":15801,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31174:38:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"35","id":15802,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31216:1:63","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"31174:43:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31169:48:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15805,"nodeType":"ExpressionStatement","src":"31169:48:63"},{"expression":{"id":15818,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15806,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15765,"src":"31292:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15814,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15809,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15762,"src":"31314:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":15810,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15765,"src":"31319:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31314:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15812,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31313:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866666666","id":15813,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31324:6:63","typeDescriptions":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"},"value":"0xffff"},"src":"31313:17:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":15807,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"31297:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":15808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31306:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"31297:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":15815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31297:34:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":15816,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31335:1:63","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"31297:39:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31292:44:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15819,"nodeType":"ExpressionStatement","src":"31292:44:63"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15822,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15820,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15765,"src":"31442:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"33","id":15821,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31447:1:63","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"31442:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15823,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31441:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15826,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15762,"src":"31469:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":15827,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15765,"src":"31474:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31469:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15829,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31468:8:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666","id":15830,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31479:4:63","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0xff"},"src":"31468:15:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":15824,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"31452:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":15825,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31461:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"31452:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":15832,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31452:32:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31441:43:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15766,"id":15834,"nodeType":"Return","src":"31434:50:63"}]},"documentation":{"id":15760,"nodeType":"StructuredDocumentation","src":"30504:246:63","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":15836,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"30764:6:63","nodeType":"FunctionDefinition","parameters":{"id":15763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15762,"mutability":"mutable","name":"x","nameLocation":"30779:1:63","nodeType":"VariableDeclaration","scope":15836,"src":"30771:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15761,"name":"uint256","nodeType":"ElementaryTypeName","src":"30771:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30770:11:63"},"returnParameters":{"id":15766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15765,"mutability":"mutable","name":"r","nameLocation":"30813:1:63","nodeType":"VariableDeclaration","scope":15836,"src":"30805:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15764,"name":"uint256","nodeType":"ElementaryTypeName","src":"30805:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30804:11:63"},"scope":15914,"src":"30755:736:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15872,"nodeType":"Block","src":"31728:184:63","statements":[{"id":15871,"nodeType":"UncheckedBlock","src":"31738:168:63","statements":[{"assignments":[15848],"declarations":[{"constant":false,"id":15848,"mutability":"mutable","name":"result","nameLocation":"31770:6:63","nodeType":"VariableDeclaration","scope":15871,"src":"31762:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15847,"name":"uint256","nodeType":"ElementaryTypeName","src":"31762:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15852,"initialValue":{"arguments":[{"id":15850,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15839,"src":"31786:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15849,"name":"log256","nodeType":"Identifier","overloadedDeclarations":[15836,15873],"referencedDeclaration":15836,"src":"31779:6:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":15851,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31779:13:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"31762:30:63"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15853,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15848,"src":"31813:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15867,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":15857,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15842,"src":"31855:8:63","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}],"id":15856,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15892,"src":"31838:16:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$14284_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":15858,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31838:26:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15866,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":15859,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31868:1:63","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":15862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15860,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15848,"src":"31874:6:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"33","id":15861,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31884:1:63","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"31874:11:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15863,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31873:13:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31868:18:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":15865,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15839,"src":"31889:5:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31868:26:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"31838:56:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":15854,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"31822:8:63","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":15855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31831:6:63","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"31822:15:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":15868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31822:73:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31813:82:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15846,"id":15870,"nodeType":"Return","src":"31806:89:63"}]}]},"documentation":{"id":15837,"nodeType":"StructuredDocumentation","src":"31497:144:63","text":" @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":15873,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"31655:6:63","nodeType":"FunctionDefinition","parameters":{"id":15843,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15839,"mutability":"mutable","name":"value","nameLocation":"31670:5:63","nodeType":"VariableDeclaration","scope":15873,"src":"31662:13:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15838,"name":"uint256","nodeType":"ElementaryTypeName","src":"31662:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15842,"mutability":"mutable","name":"rounding","nameLocation":"31686:8:63","nodeType":"VariableDeclaration","scope":15873,"src":"31677:17:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"},"typeName":{"id":15841,"nodeType":"UserDefinedTypeName","pathNode":{"id":15840,"name":"Rounding","nameLocations":["31677:8:63"],"nodeType":"IdentifierPath","referencedDeclaration":14284,"src":"31677:8:63"},"referencedDeclaration":14284,"src":"31677:8:63","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"31661:34:63"},"returnParameters":{"id":15846,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15845,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15873,"src":"31719:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15844,"name":"uint256","nodeType":"ElementaryTypeName","src":"31719:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31718:9:63"},"scope":15914,"src":"31646:266:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15891,"nodeType":"Block","src":"32110:48:63","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15889,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":15884,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15877,"src":"32133:8:63","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}],"id":15883,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32127:5:63","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":15882,"name":"uint8","nodeType":"ElementaryTypeName","src":"32127:5:63","typeDescriptions":{}}},"id":15885,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32127:15:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"32","id":15886,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32145:1:63","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"32127:19:63","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":15888,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32150:1:63","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"32127:24:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":15881,"id":15890,"nodeType":"Return","src":"32120:31:63"}]},"documentation":{"id":15874,"nodeType":"StructuredDocumentation","src":"31918:113:63","text":" @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers."},"id":15892,"implemented":true,"kind":"function","modifiers":[],"name":"unsignedRoundsUp","nameLocation":"32045:16:63","nodeType":"FunctionDefinition","parameters":{"id":15878,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15877,"mutability":"mutable","name":"rounding","nameLocation":"32071:8:63","nodeType":"VariableDeclaration","scope":15892,"src":"32062:17:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"},"typeName":{"id":15876,"nodeType":"UserDefinedTypeName","pathNode":{"id":15875,"name":"Rounding","nameLocations":["32062:8:63"],"nodeType":"IdentifierPath","referencedDeclaration":14284,"src":"32062:8:63"},"referencedDeclaration":14284,"src":"32062:8:63","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$14284","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"32061:19:63"},"returnParameters":{"id":15881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15880,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15892,"src":"32104:4:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15879,"name":"bool","nodeType":"ElementaryTypeName","src":"32104:4:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"32103:6:63"},"scope":15914,"src":"32036:122:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15912,"nodeType":"Block","src":"32301:59:63","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15901,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15895,"src":"32326:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":15902,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32331:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"32326:6:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"323536","id":15904,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32334:3:63","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"value":"256"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15909,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"323535","id":15905,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32339:3:63","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":15907,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15895,"src":"32350:1:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15906,"name":"log2","nodeType":"Identifier","overloadedDeclarations":[15562,15596],"referencedDeclaration":15562,"src":"32345:4:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":15908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32345:7:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32339:13:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15900,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14561,"src":"32318:7:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":15910,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32318:35:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15899,"id":15911,"nodeType":"Return","src":"32311:42:63"}]},"documentation":{"id":15893,"nodeType":"StructuredDocumentation","src":"32164:76:63","text":" @dev Counts the number of leading zero bits in a uint256."},"id":15913,"implemented":true,"kind":"function","modifiers":[],"name":"clz","nameLocation":"32254:3:63","nodeType":"FunctionDefinition","parameters":{"id":15896,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15895,"mutability":"mutable","name":"x","nameLocation":"32266:1:63","nodeType":"VariableDeclaration","scope":15913,"src":"32258:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15894,"name":"uint256","nodeType":"ElementaryTypeName","src":"32258:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"32257:11:63"},"returnParameters":{"id":15899,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15898,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15913,"src":"32292:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15897,"name":"uint256","nodeType":"ElementaryTypeName","src":"32292:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"32291:9:63"},"scope":15914,"src":"32245:115:63","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":15915,"src":"281:32081:63","usedErrors":[],"usedEvents":[]}],"src":"103:32260:63"},"id":63},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","exportedSymbols":{"SafeCast":[17679]},"id":17680,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":15916,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"192:24:64"},{"abstract":false,"baseContracts":[],"canonicalName":"SafeCast","contractDependencies":[],"contractKind":"library","documentation":{"id":15917,"nodeType":"StructuredDocumentation","src":"218:550:64","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":17679,"linearizedBaseContracts":[17679],"name":"SafeCast","nameLocation":"777:8:64","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":15918,"nodeType":"StructuredDocumentation","src":"792:68:64","text":" @dev Value doesn't fit in an uint of `bits` size."},"errorSelector":"6dfcc650","id":15924,"name":"SafeCastOverflowedUintDowncast","nameLocation":"871:30:64","nodeType":"ErrorDefinition","parameters":{"id":15923,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15920,"mutability":"mutable","name":"bits","nameLocation":"908:4:64","nodeType":"VariableDeclaration","scope":15924,"src":"902:10:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15919,"name":"uint8","nodeType":"ElementaryTypeName","src":"902:5:64","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":15922,"mutability":"mutable","name":"value","nameLocation":"922:5:64","nodeType":"VariableDeclaration","scope":15924,"src":"914:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15921,"name":"uint256","nodeType":"ElementaryTypeName","src":"914:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"901:27:64"},"src":"865:64:64"},{"documentation":{"id":15925,"nodeType":"StructuredDocumentation","src":"935:75:64","text":" @dev An int value doesn't fit in an uint of `bits` size."},"errorSelector":"a8ce4432","id":15929,"name":"SafeCastOverflowedIntToUint","nameLocation":"1021:27:64","nodeType":"ErrorDefinition","parameters":{"id":15928,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15927,"mutability":"mutable","name":"value","nameLocation":"1056:5:64","nodeType":"VariableDeclaration","scope":15929,"src":"1049:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":15926,"name":"int256","nodeType":"ElementaryTypeName","src":"1049:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1048:14:64"},"src":"1015:48:64"},{"documentation":{"id":15930,"nodeType":"StructuredDocumentation","src":"1069:67:64","text":" @dev Value doesn't fit in an int of `bits` size."},"errorSelector":"327269a7","id":15936,"name":"SafeCastOverflowedIntDowncast","nameLocation":"1147:29:64","nodeType":"ErrorDefinition","parameters":{"id":15935,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15932,"mutability":"mutable","name":"bits","nameLocation":"1183:4:64","nodeType":"VariableDeclaration","scope":15936,"src":"1177:10:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15931,"name":"uint8","nodeType":"ElementaryTypeName","src":"1177:5:64","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":15934,"mutability":"mutable","name":"value","nameLocation":"1196:5:64","nodeType":"VariableDeclaration","scope":15936,"src":"1189:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":15933,"name":"int256","nodeType":"ElementaryTypeName","src":"1189:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1176:26:64"},"src":"1141:62:64"},{"documentation":{"id":15937,"nodeType":"StructuredDocumentation","src":"1209:75:64","text":" @dev An uint value doesn't fit in an int of `bits` size."},"errorSelector":"24775e06","id":15941,"name":"SafeCastOverflowedUintToInt","nameLocation":"1295:27:64","nodeType":"ErrorDefinition","parameters":{"id":15940,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15939,"mutability":"mutable","name":"value","nameLocation":"1331:5:64","nodeType":"VariableDeclaration","scope":15941,"src":"1323:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15938,"name":"uint256","nodeType":"ElementaryTypeName","src":"1323:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1322:15:64"},"src":"1289:49:64"},{"body":{"id":15968,"nodeType":"Block","src":"1695:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15955,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15949,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15944,"src":"1709:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":15952,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1722:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":15951,"name":"uint248","nodeType":"ElementaryTypeName","src":"1722:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"}],"id":15950,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1717:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":15953,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1717:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint248","typeString":"type(uint248)"}},"id":15954,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1731:3:64","memberName":"max","nodeType":"MemberAccess","src":"1717:17:64","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"src":"1709:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15962,"nodeType":"IfStatement","src":"1705:105:64","trueBody":{"id":15961,"nodeType":"Block","src":"1736:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"323438","id":15957,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1788:3:64","typeDescriptions":{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},"value":"248"},{"id":15958,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15944,"src":"1793:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15956,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"1757:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":15959,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1757:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15960,"nodeType":"RevertStatement","src":"1750:49:64"}]}},{"expression":{"arguments":[{"id":15965,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15944,"src":"1834:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15964,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1826:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":15963,"name":"uint248","nodeType":"ElementaryTypeName","src":"1826:7:64","typeDescriptions":{}}},"id":15966,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1826:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"functionReturnParameters":15948,"id":15967,"nodeType":"Return","src":"1819:21:64"}]},"documentation":{"id":15942,"nodeType":"StructuredDocumentation","src":"1344:280:64","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":15969,"implemented":true,"kind":"function","modifiers":[],"name":"toUint248","nameLocation":"1638:9:64","nodeType":"FunctionDefinition","parameters":{"id":15945,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15944,"mutability":"mutable","name":"value","nameLocation":"1656:5:64","nodeType":"VariableDeclaration","scope":15969,"src":"1648:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15943,"name":"uint256","nodeType":"ElementaryTypeName","src":"1648:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1647:15:64"},"returnParameters":{"id":15948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15947,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15969,"src":"1686:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"},"typeName":{"id":15946,"name":"uint248","nodeType":"ElementaryTypeName","src":"1686:7:64","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"visibility":"internal"}],"src":"1685:9:64"},"scope":17679,"src":"1629:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15996,"nodeType":"Block","src":"2204:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15977,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15972,"src":"2218:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":15980,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2231:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":15979,"name":"uint240","nodeType":"ElementaryTypeName","src":"2231:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"}],"id":15978,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2226:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":15981,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2226:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint240","typeString":"type(uint240)"}},"id":15982,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2240:3:64","memberName":"max","nodeType":"MemberAccess","src":"2226:17:64","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"src":"2218:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15990,"nodeType":"IfStatement","src":"2214:105:64","trueBody":{"id":15989,"nodeType":"Block","src":"2245:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"323430","id":15985,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2297:3:64","typeDescriptions":{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},"value":"240"},{"id":15986,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15972,"src":"2302:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15984,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"2266:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":15987,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2266:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15988,"nodeType":"RevertStatement","src":"2259:49:64"}]}},{"expression":{"arguments":[{"id":15993,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15972,"src":"2343:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15992,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2335:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":15991,"name":"uint240","nodeType":"ElementaryTypeName","src":"2335:7:64","typeDescriptions":{}}},"id":15994,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2335:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"functionReturnParameters":15976,"id":15995,"nodeType":"Return","src":"2328:21:64"}]},"documentation":{"id":15970,"nodeType":"StructuredDocumentation","src":"1853:280:64","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":15997,"implemented":true,"kind":"function","modifiers":[],"name":"toUint240","nameLocation":"2147:9:64","nodeType":"FunctionDefinition","parameters":{"id":15973,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15972,"mutability":"mutable","name":"value","nameLocation":"2165:5:64","nodeType":"VariableDeclaration","scope":15997,"src":"2157:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15971,"name":"uint256","nodeType":"ElementaryTypeName","src":"2157:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2156:15:64"},"returnParameters":{"id":15976,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15975,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15997,"src":"2195:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"},"typeName":{"id":15974,"name":"uint240","nodeType":"ElementaryTypeName","src":"2195:7:64","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"visibility":"internal"}],"src":"2194:9:64"},"scope":17679,"src":"2138:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16024,"nodeType":"Block","src":"2713:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16011,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16005,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16000,"src":"2727:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16008,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2740:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":16007,"name":"uint232","nodeType":"ElementaryTypeName","src":"2740:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"}],"id":16006,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2735:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16009,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2735:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint232","typeString":"type(uint232)"}},"id":16010,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2749:3:64","memberName":"max","nodeType":"MemberAccess","src":"2735:17:64","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"src":"2727:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16018,"nodeType":"IfStatement","src":"2723:105:64","trueBody":{"id":16017,"nodeType":"Block","src":"2754:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"323332","id":16013,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2806:3:64","typeDescriptions":{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},"value":"232"},{"id":16014,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16000,"src":"2811:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16012,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"2775:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16015,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2775:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16016,"nodeType":"RevertStatement","src":"2768:49:64"}]}},{"expression":{"arguments":[{"id":16021,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16000,"src":"2852:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16020,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2844:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":16019,"name":"uint232","nodeType":"ElementaryTypeName","src":"2844:7:64","typeDescriptions":{}}},"id":16022,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2844:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"functionReturnParameters":16004,"id":16023,"nodeType":"Return","src":"2837:21:64"}]},"documentation":{"id":15998,"nodeType":"StructuredDocumentation","src":"2362:280:64","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":16025,"implemented":true,"kind":"function","modifiers":[],"name":"toUint232","nameLocation":"2656:9:64","nodeType":"FunctionDefinition","parameters":{"id":16001,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16000,"mutability":"mutable","name":"value","nameLocation":"2674:5:64","nodeType":"VariableDeclaration","scope":16025,"src":"2666:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15999,"name":"uint256","nodeType":"ElementaryTypeName","src":"2666:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2665:15:64"},"returnParameters":{"id":16004,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16003,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16025,"src":"2704:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"},"typeName":{"id":16002,"name":"uint232","nodeType":"ElementaryTypeName","src":"2704:7:64","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"visibility":"internal"}],"src":"2703:9:64"},"scope":17679,"src":"2647:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16052,"nodeType":"Block","src":"3222:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16033,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16028,"src":"3236:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16036,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3249:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":16035,"name":"uint224","nodeType":"ElementaryTypeName","src":"3249:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"}],"id":16034,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3244:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16037,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3244:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint224","typeString":"type(uint224)"}},"id":16038,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3258:3:64","memberName":"max","nodeType":"MemberAccess","src":"3244:17:64","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"src":"3236:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16046,"nodeType":"IfStatement","src":"3232:105:64","trueBody":{"id":16045,"nodeType":"Block","src":"3263:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"323234","id":16041,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3315:3:64","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},{"id":16042,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16028,"src":"3320:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16040,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"3284:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16043,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3284:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16044,"nodeType":"RevertStatement","src":"3277:49:64"}]}},{"expression":{"arguments":[{"id":16049,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16028,"src":"3361:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16048,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3353:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":16047,"name":"uint224","nodeType":"ElementaryTypeName","src":"3353:7:64","typeDescriptions":{}}},"id":16050,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3353:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":16032,"id":16051,"nodeType":"Return","src":"3346:21:64"}]},"documentation":{"id":16026,"nodeType":"StructuredDocumentation","src":"2871:280:64","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":16053,"implemented":true,"kind":"function","modifiers":[],"name":"toUint224","nameLocation":"3165:9:64","nodeType":"FunctionDefinition","parameters":{"id":16029,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16028,"mutability":"mutable","name":"value","nameLocation":"3183:5:64","nodeType":"VariableDeclaration","scope":16053,"src":"3175:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16027,"name":"uint256","nodeType":"ElementaryTypeName","src":"3175:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3174:15:64"},"returnParameters":{"id":16032,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16031,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16053,"src":"3213:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":16030,"name":"uint224","nodeType":"ElementaryTypeName","src":"3213:7:64","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"3212:9:64"},"scope":17679,"src":"3156:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16080,"nodeType":"Block","src":"3731:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16067,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16061,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16056,"src":"3745:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16064,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3758:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":16063,"name":"uint216","nodeType":"ElementaryTypeName","src":"3758:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"}],"id":16062,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3753:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16065,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3753:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint216","typeString":"type(uint216)"}},"id":16066,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3767:3:64","memberName":"max","nodeType":"MemberAccess","src":"3753:17:64","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"src":"3745:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16074,"nodeType":"IfStatement","src":"3741:105:64","trueBody":{"id":16073,"nodeType":"Block","src":"3772:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"323136","id":16069,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3824:3:64","typeDescriptions":{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},"value":"216"},{"id":16070,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16056,"src":"3829:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16068,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"3793:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3793:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16072,"nodeType":"RevertStatement","src":"3786:49:64"}]}},{"expression":{"arguments":[{"id":16077,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16056,"src":"3870:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16076,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3862:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":16075,"name":"uint216","nodeType":"ElementaryTypeName","src":"3862:7:64","typeDescriptions":{}}},"id":16078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3862:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"functionReturnParameters":16060,"id":16079,"nodeType":"Return","src":"3855:21:64"}]},"documentation":{"id":16054,"nodeType":"StructuredDocumentation","src":"3380:280:64","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":16081,"implemented":true,"kind":"function","modifiers":[],"name":"toUint216","nameLocation":"3674:9:64","nodeType":"FunctionDefinition","parameters":{"id":16057,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16056,"mutability":"mutable","name":"value","nameLocation":"3692:5:64","nodeType":"VariableDeclaration","scope":16081,"src":"3684:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16055,"name":"uint256","nodeType":"ElementaryTypeName","src":"3684:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3683:15:64"},"returnParameters":{"id":16060,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16059,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16081,"src":"3722:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":16058,"name":"uint216","nodeType":"ElementaryTypeName","src":"3722:7:64","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"3721:9:64"},"scope":17679,"src":"3665:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16108,"nodeType":"Block","src":"4240:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16089,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16084,"src":"4254:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16092,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4267:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":16091,"name":"uint208","nodeType":"ElementaryTypeName","src":"4267:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"}],"id":16090,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4262:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16093,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4262:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint208","typeString":"type(uint208)"}},"id":16094,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4276:3:64","memberName":"max","nodeType":"MemberAccess","src":"4262:17:64","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"4254:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16102,"nodeType":"IfStatement","src":"4250:105:64","trueBody":{"id":16101,"nodeType":"Block","src":"4281:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"323038","id":16097,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4333:3:64","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"value":"208"},{"id":16098,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16084,"src":"4338:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16096,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"4302:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16099,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4302:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16100,"nodeType":"RevertStatement","src":"4295:49:64"}]}},{"expression":{"arguments":[{"id":16105,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16084,"src":"4379:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16104,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4371:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":16103,"name":"uint208","nodeType":"ElementaryTypeName","src":"4371:7:64","typeDescriptions":{}}},"id":16106,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4371:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":16088,"id":16107,"nodeType":"Return","src":"4364:21:64"}]},"documentation":{"id":16082,"nodeType":"StructuredDocumentation","src":"3889:280:64","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":16109,"implemented":true,"kind":"function","modifiers":[],"name":"toUint208","nameLocation":"4183:9:64","nodeType":"FunctionDefinition","parameters":{"id":16085,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16084,"mutability":"mutable","name":"value","nameLocation":"4201:5:64","nodeType":"VariableDeclaration","scope":16109,"src":"4193:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16083,"name":"uint256","nodeType":"ElementaryTypeName","src":"4193:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4192:15:64"},"returnParameters":{"id":16088,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16087,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16109,"src":"4231:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":16086,"name":"uint208","nodeType":"ElementaryTypeName","src":"4231:7:64","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"4230:9:64"},"scope":17679,"src":"4174:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16136,"nodeType":"Block","src":"4749:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16123,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16117,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16112,"src":"4763:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16120,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4776:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":16119,"name":"uint200","nodeType":"ElementaryTypeName","src":"4776:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"}],"id":16118,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4771:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16121,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4771:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint200","typeString":"type(uint200)"}},"id":16122,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4785:3:64","memberName":"max","nodeType":"MemberAccess","src":"4771:17:64","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"src":"4763:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16130,"nodeType":"IfStatement","src":"4759:105:64","trueBody":{"id":16129,"nodeType":"Block","src":"4790:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"323030","id":16125,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4842:3:64","typeDescriptions":{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},"value":"200"},{"id":16126,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16112,"src":"4847:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16124,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"4811:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4811:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16128,"nodeType":"RevertStatement","src":"4804:49:64"}]}},{"expression":{"arguments":[{"id":16133,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16112,"src":"4888:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16132,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4880:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":16131,"name":"uint200","nodeType":"ElementaryTypeName","src":"4880:7:64","typeDescriptions":{}}},"id":16134,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4880:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"functionReturnParameters":16116,"id":16135,"nodeType":"Return","src":"4873:21:64"}]},"documentation":{"id":16110,"nodeType":"StructuredDocumentation","src":"4398:280:64","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":16137,"implemented":true,"kind":"function","modifiers":[],"name":"toUint200","nameLocation":"4692:9:64","nodeType":"FunctionDefinition","parameters":{"id":16113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16112,"mutability":"mutable","name":"value","nameLocation":"4710:5:64","nodeType":"VariableDeclaration","scope":16137,"src":"4702:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16111,"name":"uint256","nodeType":"ElementaryTypeName","src":"4702:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4701:15:64"},"returnParameters":{"id":16116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16115,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16137,"src":"4740:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"},"typeName":{"id":16114,"name":"uint200","nodeType":"ElementaryTypeName","src":"4740:7:64","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"visibility":"internal"}],"src":"4739:9:64"},"scope":17679,"src":"4683:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16164,"nodeType":"Block","src":"5258:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16145,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16140,"src":"5272:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16148,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5285:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":16147,"name":"uint192","nodeType":"ElementaryTypeName","src":"5285:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"}],"id":16146,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5280:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5280:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint192","typeString":"type(uint192)"}},"id":16150,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5294:3:64","memberName":"max","nodeType":"MemberAccess","src":"5280:17:64","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"src":"5272:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16158,"nodeType":"IfStatement","src":"5268:105:64","trueBody":{"id":16157,"nodeType":"Block","src":"5299:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313932","id":16153,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5351:3:64","typeDescriptions":{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},"value":"192"},{"id":16154,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16140,"src":"5356:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16152,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"5320:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5320:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16156,"nodeType":"RevertStatement","src":"5313:49:64"}]}},{"expression":{"arguments":[{"id":16161,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16140,"src":"5397:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16160,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5389:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":16159,"name":"uint192","nodeType":"ElementaryTypeName","src":"5389:7:64","typeDescriptions":{}}},"id":16162,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5389:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"functionReturnParameters":16144,"id":16163,"nodeType":"Return","src":"5382:21:64"}]},"documentation":{"id":16138,"nodeType":"StructuredDocumentation","src":"4907:280:64","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":16165,"implemented":true,"kind":"function","modifiers":[],"name":"toUint192","nameLocation":"5201:9:64","nodeType":"FunctionDefinition","parameters":{"id":16141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16140,"mutability":"mutable","name":"value","nameLocation":"5219:5:64","nodeType":"VariableDeclaration","scope":16165,"src":"5211:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16139,"name":"uint256","nodeType":"ElementaryTypeName","src":"5211:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5210:15:64"},"returnParameters":{"id":16144,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16143,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16165,"src":"5249:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":16142,"name":"uint192","nodeType":"ElementaryTypeName","src":"5249:7:64","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"5248:9:64"},"scope":17679,"src":"5192:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16192,"nodeType":"Block","src":"5767:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16173,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16168,"src":"5781:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16176,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5794:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":16175,"name":"uint184","nodeType":"ElementaryTypeName","src":"5794:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"}],"id":16174,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5789:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16177,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5789:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint184","typeString":"type(uint184)"}},"id":16178,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5803:3:64","memberName":"max","nodeType":"MemberAccess","src":"5789:17:64","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"src":"5781:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16186,"nodeType":"IfStatement","src":"5777:105:64","trueBody":{"id":16185,"nodeType":"Block","src":"5808:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313834","id":16181,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5860:3:64","typeDescriptions":{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},"value":"184"},{"id":16182,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16168,"src":"5865:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16180,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"5829:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5829:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16184,"nodeType":"RevertStatement","src":"5822:49:64"}]}},{"expression":{"arguments":[{"id":16189,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16168,"src":"5906:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16188,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5898:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":16187,"name":"uint184","nodeType":"ElementaryTypeName","src":"5898:7:64","typeDescriptions":{}}},"id":16190,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5898:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"functionReturnParameters":16172,"id":16191,"nodeType":"Return","src":"5891:21:64"}]},"documentation":{"id":16166,"nodeType":"StructuredDocumentation","src":"5416:280:64","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":16193,"implemented":true,"kind":"function","modifiers":[],"name":"toUint184","nameLocation":"5710:9:64","nodeType":"FunctionDefinition","parameters":{"id":16169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16168,"mutability":"mutable","name":"value","nameLocation":"5728:5:64","nodeType":"VariableDeclaration","scope":16193,"src":"5720:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16167,"name":"uint256","nodeType":"ElementaryTypeName","src":"5720:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5719:15:64"},"returnParameters":{"id":16172,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16171,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16193,"src":"5758:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"},"typeName":{"id":16170,"name":"uint184","nodeType":"ElementaryTypeName","src":"5758:7:64","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"visibility":"internal"}],"src":"5757:9:64"},"scope":17679,"src":"5701:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16220,"nodeType":"Block","src":"6276:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16201,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16196,"src":"6290:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16204,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6303:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":16203,"name":"uint176","nodeType":"ElementaryTypeName","src":"6303:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"}],"id":16202,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6298:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6298:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint176","typeString":"type(uint176)"}},"id":16206,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6312:3:64","memberName":"max","nodeType":"MemberAccess","src":"6298:17:64","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"src":"6290:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16214,"nodeType":"IfStatement","src":"6286:105:64","trueBody":{"id":16213,"nodeType":"Block","src":"6317:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313736","id":16209,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6369:3:64","typeDescriptions":{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},"value":"176"},{"id":16210,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16196,"src":"6374:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16208,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"6338:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6338:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16212,"nodeType":"RevertStatement","src":"6331:49:64"}]}},{"expression":{"arguments":[{"id":16217,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16196,"src":"6415:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16216,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6407:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":16215,"name":"uint176","nodeType":"ElementaryTypeName","src":"6407:7:64","typeDescriptions":{}}},"id":16218,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6407:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"functionReturnParameters":16200,"id":16219,"nodeType":"Return","src":"6400:21:64"}]},"documentation":{"id":16194,"nodeType":"StructuredDocumentation","src":"5925:280:64","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":16221,"implemented":true,"kind":"function","modifiers":[],"name":"toUint176","nameLocation":"6219:9:64","nodeType":"FunctionDefinition","parameters":{"id":16197,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16196,"mutability":"mutable","name":"value","nameLocation":"6237:5:64","nodeType":"VariableDeclaration","scope":16221,"src":"6229:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16195,"name":"uint256","nodeType":"ElementaryTypeName","src":"6229:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6228:15:64"},"returnParameters":{"id":16200,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16199,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16221,"src":"6267:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"},"typeName":{"id":16198,"name":"uint176","nodeType":"ElementaryTypeName","src":"6267:7:64","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"visibility":"internal"}],"src":"6266:9:64"},"scope":17679,"src":"6210:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16248,"nodeType":"Block","src":"6785:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16235,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16229,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16224,"src":"6799:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16232,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6812:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":16231,"name":"uint168","nodeType":"ElementaryTypeName","src":"6812:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"}],"id":16230,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6807:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6807:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint168","typeString":"type(uint168)"}},"id":16234,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6821:3:64","memberName":"max","nodeType":"MemberAccess","src":"6807:17:64","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"src":"6799:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16242,"nodeType":"IfStatement","src":"6795:105:64","trueBody":{"id":16241,"nodeType":"Block","src":"6826:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313638","id":16237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6878:3:64","typeDescriptions":{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},"value":"168"},{"id":16238,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16224,"src":"6883:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16236,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"6847:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16239,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6847:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16240,"nodeType":"RevertStatement","src":"6840:49:64"}]}},{"expression":{"arguments":[{"id":16245,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16224,"src":"6924:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16244,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6916:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":16243,"name":"uint168","nodeType":"ElementaryTypeName","src":"6916:7:64","typeDescriptions":{}}},"id":16246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6916:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"functionReturnParameters":16228,"id":16247,"nodeType":"Return","src":"6909:21:64"}]},"documentation":{"id":16222,"nodeType":"StructuredDocumentation","src":"6434:280:64","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":16249,"implemented":true,"kind":"function","modifiers":[],"name":"toUint168","nameLocation":"6728:9:64","nodeType":"FunctionDefinition","parameters":{"id":16225,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16224,"mutability":"mutable","name":"value","nameLocation":"6746:5:64","nodeType":"VariableDeclaration","scope":16249,"src":"6738:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16223,"name":"uint256","nodeType":"ElementaryTypeName","src":"6738:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6737:15:64"},"returnParameters":{"id":16228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16227,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16249,"src":"6776:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"},"typeName":{"id":16226,"name":"uint168","nodeType":"ElementaryTypeName","src":"6776:7:64","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"visibility":"internal"}],"src":"6775:9:64"},"scope":17679,"src":"6719:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16276,"nodeType":"Block","src":"7294:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16257,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16252,"src":"7308:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16260,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7321:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":16259,"name":"uint160","nodeType":"ElementaryTypeName","src":"7321:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"}],"id":16258,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7316:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16261,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7316:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint160","typeString":"type(uint160)"}},"id":16262,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7330:3:64","memberName":"max","nodeType":"MemberAccess","src":"7316:17:64","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"src":"7308:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16270,"nodeType":"IfStatement","src":"7304:105:64","trueBody":{"id":16269,"nodeType":"Block","src":"7335:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313630","id":16265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7387:3:64","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},{"id":16266,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16252,"src":"7392:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16264,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"7356:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16267,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7356:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16268,"nodeType":"RevertStatement","src":"7349:49:64"}]}},{"expression":{"arguments":[{"id":16273,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16252,"src":"7433:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16272,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7425:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":16271,"name":"uint160","nodeType":"ElementaryTypeName","src":"7425:7:64","typeDescriptions":{}}},"id":16274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7425:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":16256,"id":16275,"nodeType":"Return","src":"7418:21:64"}]},"documentation":{"id":16250,"nodeType":"StructuredDocumentation","src":"6943:280:64","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":16277,"implemented":true,"kind":"function","modifiers":[],"name":"toUint160","nameLocation":"7237:9:64","nodeType":"FunctionDefinition","parameters":{"id":16253,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16252,"mutability":"mutable","name":"value","nameLocation":"7255:5:64","nodeType":"VariableDeclaration","scope":16277,"src":"7247:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16251,"name":"uint256","nodeType":"ElementaryTypeName","src":"7247:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7246:15:64"},"returnParameters":{"id":16256,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16255,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16277,"src":"7285:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":16254,"name":"uint160","nodeType":"ElementaryTypeName","src":"7285:7:64","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"7284:9:64"},"scope":17679,"src":"7228:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16304,"nodeType":"Block","src":"7803:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16285,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16280,"src":"7817:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16288,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7830:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":16287,"name":"uint152","nodeType":"ElementaryTypeName","src":"7830:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"}],"id":16286,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7825:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16289,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7825:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint152","typeString":"type(uint152)"}},"id":16290,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7839:3:64","memberName":"max","nodeType":"MemberAccess","src":"7825:17:64","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"src":"7817:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16298,"nodeType":"IfStatement","src":"7813:105:64","trueBody":{"id":16297,"nodeType":"Block","src":"7844:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313532","id":16293,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7896:3:64","typeDescriptions":{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},"value":"152"},{"id":16294,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16280,"src":"7901:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16292,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"7865:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16295,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7865:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16296,"nodeType":"RevertStatement","src":"7858:49:64"}]}},{"expression":{"arguments":[{"id":16301,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16280,"src":"7942:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16300,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7934:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":16299,"name":"uint152","nodeType":"ElementaryTypeName","src":"7934:7:64","typeDescriptions":{}}},"id":16302,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7934:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"functionReturnParameters":16284,"id":16303,"nodeType":"Return","src":"7927:21:64"}]},"documentation":{"id":16278,"nodeType":"StructuredDocumentation","src":"7452:280:64","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":16305,"implemented":true,"kind":"function","modifiers":[],"name":"toUint152","nameLocation":"7746:9:64","nodeType":"FunctionDefinition","parameters":{"id":16281,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16280,"mutability":"mutable","name":"value","nameLocation":"7764:5:64","nodeType":"VariableDeclaration","scope":16305,"src":"7756:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16279,"name":"uint256","nodeType":"ElementaryTypeName","src":"7756:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7755:15:64"},"returnParameters":{"id":16284,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16283,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16305,"src":"7794:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"},"typeName":{"id":16282,"name":"uint152","nodeType":"ElementaryTypeName","src":"7794:7:64","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"visibility":"internal"}],"src":"7793:9:64"},"scope":17679,"src":"7737:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16332,"nodeType":"Block","src":"8312:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16313,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16308,"src":"8326:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16316,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8339:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":16315,"name":"uint144","nodeType":"ElementaryTypeName","src":"8339:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"}],"id":16314,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8334:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8334:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint144","typeString":"type(uint144)"}},"id":16318,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8348:3:64","memberName":"max","nodeType":"MemberAccess","src":"8334:17:64","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"src":"8326:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16326,"nodeType":"IfStatement","src":"8322:105:64","trueBody":{"id":16325,"nodeType":"Block","src":"8353:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313434","id":16321,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8405:3:64","typeDescriptions":{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},"value":"144"},{"id":16322,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16308,"src":"8410:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16320,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"8374:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8374:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16324,"nodeType":"RevertStatement","src":"8367:49:64"}]}},{"expression":{"arguments":[{"id":16329,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16308,"src":"8451:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16328,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8443:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":16327,"name":"uint144","nodeType":"ElementaryTypeName","src":"8443:7:64","typeDescriptions":{}}},"id":16330,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8443:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"functionReturnParameters":16312,"id":16331,"nodeType":"Return","src":"8436:21:64"}]},"documentation":{"id":16306,"nodeType":"StructuredDocumentation","src":"7961:280:64","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":16333,"implemented":true,"kind":"function","modifiers":[],"name":"toUint144","nameLocation":"8255:9:64","nodeType":"FunctionDefinition","parameters":{"id":16309,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16308,"mutability":"mutable","name":"value","nameLocation":"8273:5:64","nodeType":"VariableDeclaration","scope":16333,"src":"8265:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16307,"name":"uint256","nodeType":"ElementaryTypeName","src":"8265:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8264:15:64"},"returnParameters":{"id":16312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16311,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16333,"src":"8303:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"},"typeName":{"id":16310,"name":"uint144","nodeType":"ElementaryTypeName","src":"8303:7:64","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"visibility":"internal"}],"src":"8302:9:64"},"scope":17679,"src":"8246:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16360,"nodeType":"Block","src":"8821:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16341,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16336,"src":"8835:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16344,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8848:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":16343,"name":"uint136","nodeType":"ElementaryTypeName","src":"8848:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"}],"id":16342,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8843:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16345,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8843:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint136","typeString":"type(uint136)"}},"id":16346,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8857:3:64","memberName":"max","nodeType":"MemberAccess","src":"8843:17:64","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"src":"8835:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16354,"nodeType":"IfStatement","src":"8831:105:64","trueBody":{"id":16353,"nodeType":"Block","src":"8862:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313336","id":16349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8914:3:64","typeDescriptions":{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},"value":"136"},{"id":16350,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16336,"src":"8919:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16348,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"8883:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16351,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8883:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16352,"nodeType":"RevertStatement","src":"8876:49:64"}]}},{"expression":{"arguments":[{"id":16357,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16336,"src":"8960:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16356,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8952:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":16355,"name":"uint136","nodeType":"ElementaryTypeName","src":"8952:7:64","typeDescriptions":{}}},"id":16358,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8952:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"functionReturnParameters":16340,"id":16359,"nodeType":"Return","src":"8945:21:64"}]},"documentation":{"id":16334,"nodeType":"StructuredDocumentation","src":"8470:280:64","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":16361,"implemented":true,"kind":"function","modifiers":[],"name":"toUint136","nameLocation":"8764:9:64","nodeType":"FunctionDefinition","parameters":{"id":16337,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16336,"mutability":"mutable","name":"value","nameLocation":"8782:5:64","nodeType":"VariableDeclaration","scope":16361,"src":"8774:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16335,"name":"uint256","nodeType":"ElementaryTypeName","src":"8774:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8773:15:64"},"returnParameters":{"id":16340,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16339,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16361,"src":"8812:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"},"typeName":{"id":16338,"name":"uint136","nodeType":"ElementaryTypeName","src":"8812:7:64","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"visibility":"internal"}],"src":"8811:9:64"},"scope":17679,"src":"8755:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16388,"nodeType":"Block","src":"9330:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16369,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16364,"src":"9344:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16372,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9357:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":16371,"name":"uint128","nodeType":"ElementaryTypeName","src":"9357:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"}],"id":16370,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9352:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16373,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9352:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint128","typeString":"type(uint128)"}},"id":16374,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9366:3:64","memberName":"max","nodeType":"MemberAccess","src":"9352:17:64","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"9344:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16382,"nodeType":"IfStatement","src":"9340:105:64","trueBody":{"id":16381,"nodeType":"Block","src":"9371:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313238","id":16377,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9423:3:64","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},{"id":16378,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16364,"src":"9428:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16376,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"9392:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16379,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9392:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16380,"nodeType":"RevertStatement","src":"9385:49:64"}]}},{"expression":{"arguments":[{"id":16385,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16364,"src":"9469:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16384,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9461:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":16383,"name":"uint128","nodeType":"ElementaryTypeName","src":"9461:7:64","typeDescriptions":{}}},"id":16386,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9461:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":16368,"id":16387,"nodeType":"Return","src":"9454:21:64"}]},"documentation":{"id":16362,"nodeType":"StructuredDocumentation","src":"8979:280:64","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":16389,"implemented":true,"kind":"function","modifiers":[],"name":"toUint128","nameLocation":"9273:9:64","nodeType":"FunctionDefinition","parameters":{"id":16365,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16364,"mutability":"mutable","name":"value","nameLocation":"9291:5:64","nodeType":"VariableDeclaration","scope":16389,"src":"9283:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16363,"name":"uint256","nodeType":"ElementaryTypeName","src":"9283:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9282:15:64"},"returnParameters":{"id":16368,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16367,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16389,"src":"9321:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":16366,"name":"uint128","nodeType":"ElementaryTypeName","src":"9321:7:64","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"9320:9:64"},"scope":17679,"src":"9264:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16416,"nodeType":"Block","src":"9839:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16397,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16392,"src":"9853:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16400,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9866:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":16399,"name":"uint120","nodeType":"ElementaryTypeName","src":"9866:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"}],"id":16398,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9861:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16401,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9861:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint120","typeString":"type(uint120)"}},"id":16402,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9875:3:64","memberName":"max","nodeType":"MemberAccess","src":"9861:17:64","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"src":"9853:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16410,"nodeType":"IfStatement","src":"9849:105:64","trueBody":{"id":16409,"nodeType":"Block","src":"9880:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313230","id":16405,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9932:3:64","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},{"id":16406,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16392,"src":"9937:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16404,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"9901:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16407,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9901:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16408,"nodeType":"RevertStatement","src":"9894:49:64"}]}},{"expression":{"arguments":[{"id":16413,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16392,"src":"9978:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16412,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9970:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":16411,"name":"uint120","nodeType":"ElementaryTypeName","src":"9970:7:64","typeDescriptions":{}}},"id":16414,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9970:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"functionReturnParameters":16396,"id":16415,"nodeType":"Return","src":"9963:21:64"}]},"documentation":{"id":16390,"nodeType":"StructuredDocumentation","src":"9488:280:64","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":16417,"implemented":true,"kind":"function","modifiers":[],"name":"toUint120","nameLocation":"9782:9:64","nodeType":"FunctionDefinition","parameters":{"id":16393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16392,"mutability":"mutable","name":"value","nameLocation":"9800:5:64","nodeType":"VariableDeclaration","scope":16417,"src":"9792:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16391,"name":"uint256","nodeType":"ElementaryTypeName","src":"9792:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9791:15:64"},"returnParameters":{"id":16396,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16395,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16417,"src":"9830:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"},"typeName":{"id":16394,"name":"uint120","nodeType":"ElementaryTypeName","src":"9830:7:64","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"visibility":"internal"}],"src":"9829:9:64"},"scope":17679,"src":"9773:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16444,"nodeType":"Block","src":"10348:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16425,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16420,"src":"10362:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16428,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10375:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":16427,"name":"uint112","nodeType":"ElementaryTypeName","src":"10375:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"}],"id":16426,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10370:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16429,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10370:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint112","typeString":"type(uint112)"}},"id":16430,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10384:3:64","memberName":"max","nodeType":"MemberAccess","src":"10370:17:64","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"10362:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16438,"nodeType":"IfStatement","src":"10358:105:64","trueBody":{"id":16437,"nodeType":"Block","src":"10389:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313132","id":16433,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10441:3:64","typeDescriptions":{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},"value":"112"},{"id":16434,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16420,"src":"10446:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16432,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"10410:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16435,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10410:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16436,"nodeType":"RevertStatement","src":"10403:49:64"}]}},{"expression":{"arguments":[{"id":16441,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16420,"src":"10487:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16440,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10479:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":16439,"name":"uint112","nodeType":"ElementaryTypeName","src":"10479:7:64","typeDescriptions":{}}},"id":16442,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10479:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"functionReturnParameters":16424,"id":16443,"nodeType":"Return","src":"10472:21:64"}]},"documentation":{"id":16418,"nodeType":"StructuredDocumentation","src":"9997:280:64","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":16445,"implemented":true,"kind":"function","modifiers":[],"name":"toUint112","nameLocation":"10291:9:64","nodeType":"FunctionDefinition","parameters":{"id":16421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16420,"mutability":"mutable","name":"value","nameLocation":"10309:5:64","nodeType":"VariableDeclaration","scope":16445,"src":"10301:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16419,"name":"uint256","nodeType":"ElementaryTypeName","src":"10301:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10300:15:64"},"returnParameters":{"id":16424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16423,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16445,"src":"10339:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":16422,"name":"uint112","nodeType":"ElementaryTypeName","src":"10339:7:64","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"}],"src":"10338:9:64"},"scope":17679,"src":"10282:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16472,"nodeType":"Block","src":"10857:152:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16453,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16448,"src":"10871:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16456,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10884:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":16455,"name":"uint104","nodeType":"ElementaryTypeName","src":"10884:7:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"}],"id":16454,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10879:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16457,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10879:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint104","typeString":"type(uint104)"}},"id":16458,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10893:3:64","memberName":"max","nodeType":"MemberAccess","src":"10879:17:64","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"src":"10871:25:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16466,"nodeType":"IfStatement","src":"10867:105:64","trueBody":{"id":16465,"nodeType":"Block","src":"10898:74:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313034","id":16461,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10950:3:64","typeDescriptions":{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},"value":"104"},{"id":16462,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16448,"src":"10955:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16460,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"10919:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16463,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10919:42:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16464,"nodeType":"RevertStatement","src":"10912:49:64"}]}},{"expression":{"arguments":[{"id":16469,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16448,"src":"10996:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16468,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10988:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":16467,"name":"uint104","nodeType":"ElementaryTypeName","src":"10988:7:64","typeDescriptions":{}}},"id":16470,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10988:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"functionReturnParameters":16452,"id":16471,"nodeType":"Return","src":"10981:21:64"}]},"documentation":{"id":16446,"nodeType":"StructuredDocumentation","src":"10506:280:64","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":16473,"implemented":true,"kind":"function","modifiers":[],"name":"toUint104","nameLocation":"10800:9:64","nodeType":"FunctionDefinition","parameters":{"id":16449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16448,"mutability":"mutable","name":"value","nameLocation":"10818:5:64","nodeType":"VariableDeclaration","scope":16473,"src":"10810:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16447,"name":"uint256","nodeType":"ElementaryTypeName","src":"10810:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10809:15:64"},"returnParameters":{"id":16452,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16451,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16473,"src":"10848:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"},"typeName":{"id":16450,"name":"uint104","nodeType":"ElementaryTypeName","src":"10848:7:64","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"visibility":"internal"}],"src":"10847:9:64"},"scope":17679,"src":"10791:218:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16500,"nodeType":"Block","src":"11360:149:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16487,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16481,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16476,"src":"11374:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16484,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11387:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":16483,"name":"uint96","nodeType":"ElementaryTypeName","src":"11387:6:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"}],"id":16482,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11382:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16485,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11382:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint96","typeString":"type(uint96)"}},"id":16486,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11395:3:64","memberName":"max","nodeType":"MemberAccess","src":"11382:16:64","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"11374:24:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16494,"nodeType":"IfStatement","src":"11370:103:64","trueBody":{"id":16493,"nodeType":"Block","src":"11400:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3936","id":16489,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11452:2:64","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},{"id":16490,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16476,"src":"11456:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16488,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"11421:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16491,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11421:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16492,"nodeType":"RevertStatement","src":"11414:48:64"}]}},{"expression":{"arguments":[{"id":16497,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16476,"src":"11496:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16496,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11489:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":16495,"name":"uint96","nodeType":"ElementaryTypeName","src":"11489:6:64","typeDescriptions":{}}},"id":16498,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11489:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"functionReturnParameters":16480,"id":16499,"nodeType":"Return","src":"11482:20:64"}]},"documentation":{"id":16474,"nodeType":"StructuredDocumentation","src":"11015:276:64","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":16501,"implemented":true,"kind":"function","modifiers":[],"name":"toUint96","nameLocation":"11305:8:64","nodeType":"FunctionDefinition","parameters":{"id":16477,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16476,"mutability":"mutable","name":"value","nameLocation":"11322:5:64","nodeType":"VariableDeclaration","scope":16501,"src":"11314:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16475,"name":"uint256","nodeType":"ElementaryTypeName","src":"11314:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11313:15:64"},"returnParameters":{"id":16480,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16479,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16501,"src":"11352:6:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":16478,"name":"uint96","nodeType":"ElementaryTypeName","src":"11352:6:64","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"11351:8:64"},"scope":17679,"src":"11296:213:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16528,"nodeType":"Block","src":"11860:149:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16509,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16504,"src":"11874:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16512,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11887:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":16511,"name":"uint88","nodeType":"ElementaryTypeName","src":"11887:6:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"}],"id":16510,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11882:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16513,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11882:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint88","typeString":"type(uint88)"}},"id":16514,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11895:3:64","memberName":"max","nodeType":"MemberAccess","src":"11882:16:64","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"src":"11874:24:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16522,"nodeType":"IfStatement","src":"11870:103:64","trueBody":{"id":16521,"nodeType":"Block","src":"11900:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3838","id":16517,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11952:2:64","typeDescriptions":{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},"value":"88"},{"id":16518,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16504,"src":"11956:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16516,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"11921:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11921:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16520,"nodeType":"RevertStatement","src":"11914:48:64"}]}},{"expression":{"arguments":[{"id":16525,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16504,"src":"11996:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16524,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11989:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":16523,"name":"uint88","nodeType":"ElementaryTypeName","src":"11989:6:64","typeDescriptions":{}}},"id":16526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11989:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"functionReturnParameters":16508,"id":16527,"nodeType":"Return","src":"11982:20:64"}]},"documentation":{"id":16502,"nodeType":"StructuredDocumentation","src":"11515:276:64","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":16529,"implemented":true,"kind":"function","modifiers":[],"name":"toUint88","nameLocation":"11805:8:64","nodeType":"FunctionDefinition","parameters":{"id":16505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16504,"mutability":"mutable","name":"value","nameLocation":"11822:5:64","nodeType":"VariableDeclaration","scope":16529,"src":"11814:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16503,"name":"uint256","nodeType":"ElementaryTypeName","src":"11814:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11813:15:64"},"returnParameters":{"id":16508,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16507,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16529,"src":"11852:6:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"},"typeName":{"id":16506,"name":"uint88","nodeType":"ElementaryTypeName","src":"11852:6:64","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"visibility":"internal"}],"src":"11851:8:64"},"scope":17679,"src":"11796:213:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16556,"nodeType":"Block","src":"12360:149:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16543,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16537,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16532,"src":"12374:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16540,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12387:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":16539,"name":"uint80","nodeType":"ElementaryTypeName","src":"12387:6:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"}],"id":16538,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"12382:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16541,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12382:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint80","typeString":"type(uint80)"}},"id":16542,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12395:3:64","memberName":"max","nodeType":"MemberAccess","src":"12382:16:64","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"src":"12374:24:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16550,"nodeType":"IfStatement","src":"12370:103:64","trueBody":{"id":16549,"nodeType":"Block","src":"12400:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3830","id":16545,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12452:2:64","typeDescriptions":{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},"value":"80"},{"id":16546,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16532,"src":"12456:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16544,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"12421:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16547,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12421:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16548,"nodeType":"RevertStatement","src":"12414:48:64"}]}},{"expression":{"arguments":[{"id":16553,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16532,"src":"12496:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16552,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12489:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":16551,"name":"uint80","nodeType":"ElementaryTypeName","src":"12489:6:64","typeDescriptions":{}}},"id":16554,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12489:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"functionReturnParameters":16536,"id":16555,"nodeType":"Return","src":"12482:20:64"}]},"documentation":{"id":16530,"nodeType":"StructuredDocumentation","src":"12015:276:64","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":16557,"implemented":true,"kind":"function","modifiers":[],"name":"toUint80","nameLocation":"12305:8:64","nodeType":"FunctionDefinition","parameters":{"id":16533,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16532,"mutability":"mutable","name":"value","nameLocation":"12322:5:64","nodeType":"VariableDeclaration","scope":16557,"src":"12314:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16531,"name":"uint256","nodeType":"ElementaryTypeName","src":"12314:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12313:15:64"},"returnParameters":{"id":16536,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16535,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16557,"src":"12352:6:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"},"typeName":{"id":16534,"name":"uint80","nodeType":"ElementaryTypeName","src":"12352:6:64","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"visibility":"internal"}],"src":"12351:8:64"},"scope":17679,"src":"12296:213:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16584,"nodeType":"Block","src":"12860:149:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16571,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16565,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16560,"src":"12874:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16568,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12887:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":16567,"name":"uint72","nodeType":"ElementaryTypeName","src":"12887:6:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"}],"id":16566,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"12882:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16569,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12882:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint72","typeString":"type(uint72)"}},"id":16570,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12895:3:64","memberName":"max","nodeType":"MemberAccess","src":"12882:16:64","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"src":"12874:24:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16578,"nodeType":"IfStatement","src":"12870:103:64","trueBody":{"id":16577,"nodeType":"Block","src":"12900:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3732","id":16573,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12952:2:64","typeDescriptions":{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},"value":"72"},{"id":16574,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16560,"src":"12956:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16572,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"12921:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16575,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12921:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16576,"nodeType":"RevertStatement","src":"12914:48:64"}]}},{"expression":{"arguments":[{"id":16581,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16560,"src":"12996:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16580,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12989:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":16579,"name":"uint72","nodeType":"ElementaryTypeName","src":"12989:6:64","typeDescriptions":{}}},"id":16582,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12989:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"functionReturnParameters":16564,"id":16583,"nodeType":"Return","src":"12982:20:64"}]},"documentation":{"id":16558,"nodeType":"StructuredDocumentation","src":"12515:276:64","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":16585,"implemented":true,"kind":"function","modifiers":[],"name":"toUint72","nameLocation":"12805:8:64","nodeType":"FunctionDefinition","parameters":{"id":16561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16560,"mutability":"mutable","name":"value","nameLocation":"12822:5:64","nodeType":"VariableDeclaration","scope":16585,"src":"12814:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16559,"name":"uint256","nodeType":"ElementaryTypeName","src":"12814:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12813:15:64"},"returnParameters":{"id":16564,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16563,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16585,"src":"12852:6:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"},"typeName":{"id":16562,"name":"uint72","nodeType":"ElementaryTypeName","src":"12852:6:64","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"visibility":"internal"}],"src":"12851:8:64"},"scope":17679,"src":"12796:213:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16612,"nodeType":"Block","src":"13360:149:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16593,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16588,"src":"13374:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16596,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13387:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":16595,"name":"uint64","nodeType":"ElementaryTypeName","src":"13387:6:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":16594,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"13382:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16597,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13382:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":16598,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13395:3:64","memberName":"max","nodeType":"MemberAccess","src":"13382:16:64","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13374:24:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16606,"nodeType":"IfStatement","src":"13370:103:64","trueBody":{"id":16605,"nodeType":"Block","src":"13400:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3634","id":16601,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13452:2:64","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},{"id":16602,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16588,"src":"13456:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16600,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"13421:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13421:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16604,"nodeType":"RevertStatement","src":"13414:48:64"}]}},{"expression":{"arguments":[{"id":16609,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16588,"src":"13496:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16608,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13489:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":16607,"name":"uint64","nodeType":"ElementaryTypeName","src":"13489:6:64","typeDescriptions":{}}},"id":16610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13489:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":16592,"id":16611,"nodeType":"Return","src":"13482:20:64"}]},"documentation":{"id":16586,"nodeType":"StructuredDocumentation","src":"13015:276:64","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":16613,"implemented":true,"kind":"function","modifiers":[],"name":"toUint64","nameLocation":"13305:8:64","nodeType":"FunctionDefinition","parameters":{"id":16589,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16588,"mutability":"mutable","name":"value","nameLocation":"13322:5:64","nodeType":"VariableDeclaration","scope":16613,"src":"13314:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16587,"name":"uint256","nodeType":"ElementaryTypeName","src":"13314:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13313:15:64"},"returnParameters":{"id":16592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16591,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16613,"src":"13352:6:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":16590,"name":"uint64","nodeType":"ElementaryTypeName","src":"13352:6:64","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"13351:8:64"},"scope":17679,"src":"13296:213:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16640,"nodeType":"Block","src":"13860:149:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16621,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16616,"src":"13874:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16624,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13887:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":16623,"name":"uint56","nodeType":"ElementaryTypeName","src":"13887:6:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"}],"id":16622,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"13882:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16625,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13882:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint56","typeString":"type(uint56)"}},"id":16626,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13895:3:64","memberName":"max","nodeType":"MemberAccess","src":"13882:16:64","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"src":"13874:24:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16634,"nodeType":"IfStatement","src":"13870:103:64","trueBody":{"id":16633,"nodeType":"Block","src":"13900:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3536","id":16629,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13952:2:64","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},{"id":16630,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16616,"src":"13956:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16628,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"13921:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16631,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13921:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16632,"nodeType":"RevertStatement","src":"13914:48:64"}]}},{"expression":{"arguments":[{"id":16637,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16616,"src":"13996:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16636,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13989:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":16635,"name":"uint56","nodeType":"ElementaryTypeName","src":"13989:6:64","typeDescriptions":{}}},"id":16638,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13989:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"functionReturnParameters":16620,"id":16639,"nodeType":"Return","src":"13982:20:64"}]},"documentation":{"id":16614,"nodeType":"StructuredDocumentation","src":"13515:276:64","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":16641,"implemented":true,"kind":"function","modifiers":[],"name":"toUint56","nameLocation":"13805:8:64","nodeType":"FunctionDefinition","parameters":{"id":16617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16616,"mutability":"mutable","name":"value","nameLocation":"13822:5:64","nodeType":"VariableDeclaration","scope":16641,"src":"13814:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16615,"name":"uint256","nodeType":"ElementaryTypeName","src":"13814:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13813:15:64"},"returnParameters":{"id":16620,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16619,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16641,"src":"13852:6:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"},"typeName":{"id":16618,"name":"uint56","nodeType":"ElementaryTypeName","src":"13852:6:64","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"visibility":"internal"}],"src":"13851:8:64"},"scope":17679,"src":"13796:213:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16668,"nodeType":"Block","src":"14360:149:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16649,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16644,"src":"14374:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16652,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14387:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":16651,"name":"uint48","nodeType":"ElementaryTypeName","src":"14387:6:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"}],"id":16650,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14382:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16653,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14382:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint48","typeString":"type(uint48)"}},"id":16654,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14395:3:64","memberName":"max","nodeType":"MemberAccess","src":"14382:16:64","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"14374:24:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16662,"nodeType":"IfStatement","src":"14370:103:64","trueBody":{"id":16661,"nodeType":"Block","src":"14400:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3438","id":16657,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14452:2:64","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},{"id":16658,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16644,"src":"14456:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16656,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"14421:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14421:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16660,"nodeType":"RevertStatement","src":"14414:48:64"}]}},{"expression":{"arguments":[{"id":16665,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16644,"src":"14496:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16664,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14489:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":16663,"name":"uint48","nodeType":"ElementaryTypeName","src":"14489:6:64","typeDescriptions":{}}},"id":16666,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14489:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":16648,"id":16667,"nodeType":"Return","src":"14482:20:64"}]},"documentation":{"id":16642,"nodeType":"StructuredDocumentation","src":"14015:276:64","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":16669,"implemented":true,"kind":"function","modifiers":[],"name":"toUint48","nameLocation":"14305:8:64","nodeType":"FunctionDefinition","parameters":{"id":16645,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16644,"mutability":"mutable","name":"value","nameLocation":"14322:5:64","nodeType":"VariableDeclaration","scope":16669,"src":"14314:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16643,"name":"uint256","nodeType":"ElementaryTypeName","src":"14314:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14313:15:64"},"returnParameters":{"id":16648,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16647,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16669,"src":"14352:6:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":16646,"name":"uint48","nodeType":"ElementaryTypeName","src":"14352:6:64","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"14351:8:64"},"scope":17679,"src":"14296:213:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16696,"nodeType":"Block","src":"14860:149:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16677,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16672,"src":"14874:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16680,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14887:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":16679,"name":"uint40","nodeType":"ElementaryTypeName","src":"14887:6:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"}],"id":16678,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14882:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16681,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14882:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint40","typeString":"type(uint40)"}},"id":16682,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14895:3:64","memberName":"max","nodeType":"MemberAccess","src":"14882:16:64","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"14874:24:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16690,"nodeType":"IfStatement","src":"14870:103:64","trueBody":{"id":16689,"nodeType":"Block","src":"14900:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3430","id":16685,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14952:2:64","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},{"id":16686,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16672,"src":"14956:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16684,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"14921:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14921:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16688,"nodeType":"RevertStatement","src":"14914:48:64"}]}},{"expression":{"arguments":[{"id":16693,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16672,"src":"14996:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16692,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14989:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":16691,"name":"uint40","nodeType":"ElementaryTypeName","src":"14989:6:64","typeDescriptions":{}}},"id":16694,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14989:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"functionReturnParameters":16676,"id":16695,"nodeType":"Return","src":"14982:20:64"}]},"documentation":{"id":16670,"nodeType":"StructuredDocumentation","src":"14515:276:64","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":16697,"implemented":true,"kind":"function","modifiers":[],"name":"toUint40","nameLocation":"14805:8:64","nodeType":"FunctionDefinition","parameters":{"id":16673,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16672,"mutability":"mutable","name":"value","nameLocation":"14822:5:64","nodeType":"VariableDeclaration","scope":16697,"src":"14814:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16671,"name":"uint256","nodeType":"ElementaryTypeName","src":"14814:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14813:15:64"},"returnParameters":{"id":16676,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16675,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16697,"src":"14852:6:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":16674,"name":"uint40","nodeType":"ElementaryTypeName","src":"14852:6:64","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"14851:8:64"},"scope":17679,"src":"14796:213:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16724,"nodeType":"Block","src":"15360:149:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16705,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16700,"src":"15374:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16708,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15387:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":16707,"name":"uint32","nodeType":"ElementaryTypeName","src":"15387:6:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"}],"id":16706,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"15382:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16709,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15382:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint32","typeString":"type(uint32)"}},"id":16710,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15395:3:64","memberName":"max","nodeType":"MemberAccess","src":"15382:16:64","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"15374:24:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16718,"nodeType":"IfStatement","src":"15370:103:64","trueBody":{"id":16717,"nodeType":"Block","src":"15400:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3332","id":16713,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15452:2:64","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},{"id":16714,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16700,"src":"15456:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16712,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"15421:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15421:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16716,"nodeType":"RevertStatement","src":"15414:48:64"}]}},{"expression":{"arguments":[{"id":16721,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16700,"src":"15496:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16720,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15489:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":16719,"name":"uint32","nodeType":"ElementaryTypeName","src":"15489:6:64","typeDescriptions":{}}},"id":16722,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15489:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":16704,"id":16723,"nodeType":"Return","src":"15482:20:64"}]},"documentation":{"id":16698,"nodeType":"StructuredDocumentation","src":"15015:276:64","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":16725,"implemented":true,"kind":"function","modifiers":[],"name":"toUint32","nameLocation":"15305:8:64","nodeType":"FunctionDefinition","parameters":{"id":16701,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16700,"mutability":"mutable","name":"value","nameLocation":"15322:5:64","nodeType":"VariableDeclaration","scope":16725,"src":"15314:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16699,"name":"uint256","nodeType":"ElementaryTypeName","src":"15314:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15313:15:64"},"returnParameters":{"id":16704,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16703,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16725,"src":"15352:6:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":16702,"name":"uint32","nodeType":"ElementaryTypeName","src":"15352:6:64","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"15351:8:64"},"scope":17679,"src":"15296:213:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16752,"nodeType":"Block","src":"15860:149:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16739,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16733,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16728,"src":"15874:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16736,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15887:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":16735,"name":"uint24","nodeType":"ElementaryTypeName","src":"15887:6:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"}],"id":16734,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"15882:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16737,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15882:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint24","typeString":"type(uint24)"}},"id":16738,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15895:3:64","memberName":"max","nodeType":"MemberAccess","src":"15882:16:64","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"src":"15874:24:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16746,"nodeType":"IfStatement","src":"15870:103:64","trueBody":{"id":16745,"nodeType":"Block","src":"15900:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3234","id":16741,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15952:2:64","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},{"id":16742,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16728,"src":"15956:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16740,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"15921:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16743,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15921:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16744,"nodeType":"RevertStatement","src":"15914:48:64"}]}},{"expression":{"arguments":[{"id":16749,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16728,"src":"15996:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16748,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15989:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":16747,"name":"uint24","nodeType":"ElementaryTypeName","src":"15989:6:64","typeDescriptions":{}}},"id":16750,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15989:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"functionReturnParameters":16732,"id":16751,"nodeType":"Return","src":"15982:20:64"}]},"documentation":{"id":16726,"nodeType":"StructuredDocumentation","src":"15515:276:64","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":16753,"implemented":true,"kind":"function","modifiers":[],"name":"toUint24","nameLocation":"15805:8:64","nodeType":"FunctionDefinition","parameters":{"id":16729,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16728,"mutability":"mutable","name":"value","nameLocation":"15822:5:64","nodeType":"VariableDeclaration","scope":16753,"src":"15814:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16727,"name":"uint256","nodeType":"ElementaryTypeName","src":"15814:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15813:15:64"},"returnParameters":{"id":16732,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16731,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16753,"src":"15852:6:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":16730,"name":"uint24","nodeType":"ElementaryTypeName","src":"15852:6:64","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"src":"15851:8:64"},"scope":17679,"src":"15796:213:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16780,"nodeType":"Block","src":"16360:149:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16761,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16756,"src":"16374:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16764,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16387:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":16763,"name":"uint16","nodeType":"ElementaryTypeName","src":"16387:6:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"}],"id":16762,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16382:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16765,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16382:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint16","typeString":"type(uint16)"}},"id":16766,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16395:3:64","memberName":"max","nodeType":"MemberAccess","src":"16382:16:64","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"16374:24:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16774,"nodeType":"IfStatement","src":"16370:103:64","trueBody":{"id":16773,"nodeType":"Block","src":"16400:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3136","id":16769,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16452:2:64","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},{"id":16770,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16756,"src":"16456:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16768,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"16421:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16771,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16421:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16772,"nodeType":"RevertStatement","src":"16414:48:64"}]}},{"expression":{"arguments":[{"id":16777,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16756,"src":"16496:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16776,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16489:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":16775,"name":"uint16","nodeType":"ElementaryTypeName","src":"16489:6:64","typeDescriptions":{}}},"id":16778,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16489:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"functionReturnParameters":16760,"id":16779,"nodeType":"Return","src":"16482:20:64"}]},"documentation":{"id":16754,"nodeType":"StructuredDocumentation","src":"16015:276:64","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":16781,"implemented":true,"kind":"function","modifiers":[],"name":"toUint16","nameLocation":"16305:8:64","nodeType":"FunctionDefinition","parameters":{"id":16757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16756,"mutability":"mutable","name":"value","nameLocation":"16322:5:64","nodeType":"VariableDeclaration","scope":16781,"src":"16314:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16755,"name":"uint256","nodeType":"ElementaryTypeName","src":"16314:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16313:15:64"},"returnParameters":{"id":16760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16759,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16781,"src":"16352:6:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":16758,"name":"uint16","nodeType":"ElementaryTypeName","src":"16352:6:64","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"16351:8:64"},"scope":17679,"src":"16296:213:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16808,"nodeType":"Block","src":"16854:146:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16789,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16784,"src":"16868:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16792,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16881:5:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16791,"name":"uint8","nodeType":"ElementaryTypeName","src":"16881:5:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":16790,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16876:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16793,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16876:11:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":16794,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16888:3:64","memberName":"max","nodeType":"MemberAccess","src":"16876:15:64","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"16868:23:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16802,"nodeType":"IfStatement","src":"16864:101:64","trueBody":{"id":16801,"nodeType":"Block","src":"16893:72:64","statements":[{"errorCall":{"arguments":[{"hexValue":"38","id":16797,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16945:1:64","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"id":16798,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16784,"src":"16948:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16796,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15924,"src":"16914:30:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":16799,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16914:40:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16800,"nodeType":"RevertStatement","src":"16907:47:64"}]}},{"expression":{"arguments":[{"id":16805,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16784,"src":"16987:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16804,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16981:5:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16803,"name":"uint8","nodeType":"ElementaryTypeName","src":"16981:5:64","typeDescriptions":{}}},"id":16806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16981:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":16788,"id":16807,"nodeType":"Return","src":"16974:19:64"}]},"documentation":{"id":16782,"nodeType":"StructuredDocumentation","src":"16515:272:64","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":16809,"implemented":true,"kind":"function","modifiers":[],"name":"toUint8","nameLocation":"16801:7:64","nodeType":"FunctionDefinition","parameters":{"id":16785,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16784,"mutability":"mutable","name":"value","nameLocation":"16817:5:64","nodeType":"VariableDeclaration","scope":16809,"src":"16809:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16783,"name":"uint256","nodeType":"ElementaryTypeName","src":"16809:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16808:15:64"},"returnParameters":{"id":16788,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16787,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16809,"src":"16847:5:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16786,"name":"uint8","nodeType":"ElementaryTypeName","src":"16847:5:64","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"16846:7:64"},"scope":17679,"src":"16792:208:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16831,"nodeType":"Block","src":"17236:128:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":16819,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16817,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16812,"src":"17250:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":16818,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17258:1:64","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17250:9:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16825,"nodeType":"IfStatement","src":"17246:81:64","trueBody":{"id":16824,"nodeType":"Block","src":"17261:66:64","statements":[{"errorCall":{"arguments":[{"id":16821,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16812,"src":"17310:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":16820,"name":"SafeCastOverflowedIntToUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15929,"src":"17282:27:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_int256_$returns$_t_error_$","typeString":"function (int256) pure returns (error)"}},"id":16822,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17282:34:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16823,"nodeType":"RevertStatement","src":"17275:41:64"}]}},{"expression":{"arguments":[{"id":16828,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16812,"src":"17351:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":16827,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17343:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":16826,"name":"uint256","nodeType":"ElementaryTypeName","src":"17343:7:64","typeDescriptions":{}}},"id":16829,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17343:14:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":16816,"id":16830,"nodeType":"Return","src":"17336:21:64"}]},"documentation":{"id":16810,"nodeType":"StructuredDocumentation","src":"17006:160:64","text":" @dev Converts a signed int256 into an unsigned uint256.\n Requirements:\n - input must be greater than or equal to 0."},"id":16832,"implemented":true,"kind":"function","modifiers":[],"name":"toUint256","nameLocation":"17180:9:64","nodeType":"FunctionDefinition","parameters":{"id":16813,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16812,"mutability":"mutable","name":"value","nameLocation":"17197:5:64","nodeType":"VariableDeclaration","scope":16832,"src":"17190:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":16811,"name":"int256","nodeType":"ElementaryTypeName","src":"17190:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"17189:14:64"},"returnParameters":{"id":16816,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16815,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16832,"src":"17227:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16814,"name":"uint256","nodeType":"ElementaryTypeName","src":"17227:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17226:9:64"},"scope":17679,"src":"17171:193:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16857,"nodeType":"Block","src":"17761:150:64","statements":[{"expression":{"id":16845,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16840,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16838,"src":"17771:10:64","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":16843,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16835,"src":"17791:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":16842,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17784:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int248_$","typeString":"type(int248)"},"typeName":{"id":16841,"name":"int248","nodeType":"ElementaryTypeName","src":"17784:6:64","typeDescriptions":{}}},"id":16844,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17784:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"src":"17771:26:64","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"id":16846,"nodeType":"ExpressionStatement","src":"17771:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":16849,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16847,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16838,"src":"17811:10:64","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":16848,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16835,"src":"17825:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"17811:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16856,"nodeType":"IfStatement","src":"17807:98:64","trueBody":{"id":16855,"nodeType":"Block","src":"17832:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"323438","id":16851,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17883:3:64","typeDescriptions":{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},"value":"248"},{"id":16852,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16835,"src":"17888:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":16850,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"17853:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":16853,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17853:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16854,"nodeType":"RevertStatement","src":"17846:48:64"}]}}]},"documentation":{"id":16833,"nodeType":"StructuredDocumentation","src":"17370:312:64","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":16858,"implemented":true,"kind":"function","modifiers":[],"name":"toInt248","nameLocation":"17696:8:64","nodeType":"FunctionDefinition","parameters":{"id":16836,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16835,"mutability":"mutable","name":"value","nameLocation":"17712:5:64","nodeType":"VariableDeclaration","scope":16858,"src":"17705:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":16834,"name":"int256","nodeType":"ElementaryTypeName","src":"17705:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"17704:14:64"},"returnParameters":{"id":16839,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16838,"mutability":"mutable","name":"downcasted","nameLocation":"17749:10:64","nodeType":"VariableDeclaration","scope":16858,"src":"17742:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"},"typeName":{"id":16837,"name":"int248","nodeType":"ElementaryTypeName","src":"17742:6:64","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"visibility":"internal"}],"src":"17741:19:64"},"scope":17679,"src":"17687:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16883,"nodeType":"Block","src":"18308:150:64","statements":[{"expression":{"id":16871,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16866,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16864,"src":"18318:10:64","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":16869,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16861,"src":"18338:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":16868,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18331:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int240_$","typeString":"type(int240)"},"typeName":{"id":16867,"name":"int240","nodeType":"ElementaryTypeName","src":"18331:6:64","typeDescriptions":{}}},"id":16870,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18331:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"src":"18318:26:64","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"id":16872,"nodeType":"ExpressionStatement","src":"18318:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":16875,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16873,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16864,"src":"18358:10:64","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":16874,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16861,"src":"18372:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"18358:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16882,"nodeType":"IfStatement","src":"18354:98:64","trueBody":{"id":16881,"nodeType":"Block","src":"18379:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"323430","id":16877,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18430:3:64","typeDescriptions":{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},"value":"240"},{"id":16878,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16861,"src":"18435:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":16876,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"18400:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":16879,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18400:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16880,"nodeType":"RevertStatement","src":"18393:48:64"}]}}]},"documentation":{"id":16859,"nodeType":"StructuredDocumentation","src":"17917:312:64","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":16884,"implemented":true,"kind":"function","modifiers":[],"name":"toInt240","nameLocation":"18243:8:64","nodeType":"FunctionDefinition","parameters":{"id":16862,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16861,"mutability":"mutable","name":"value","nameLocation":"18259:5:64","nodeType":"VariableDeclaration","scope":16884,"src":"18252:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":16860,"name":"int256","nodeType":"ElementaryTypeName","src":"18252:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18251:14:64"},"returnParameters":{"id":16865,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16864,"mutability":"mutable","name":"downcasted","nameLocation":"18296:10:64","nodeType":"VariableDeclaration","scope":16884,"src":"18289:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"},"typeName":{"id":16863,"name":"int240","nodeType":"ElementaryTypeName","src":"18289:6:64","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"visibility":"internal"}],"src":"18288:19:64"},"scope":17679,"src":"18234:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16909,"nodeType":"Block","src":"18855:150:64","statements":[{"expression":{"id":16897,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16892,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16890,"src":"18865:10:64","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":16895,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16887,"src":"18885:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":16894,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18878:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int232_$","typeString":"type(int232)"},"typeName":{"id":16893,"name":"int232","nodeType":"ElementaryTypeName","src":"18878:6:64","typeDescriptions":{}}},"id":16896,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18878:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"src":"18865:26:64","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"id":16898,"nodeType":"ExpressionStatement","src":"18865:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":16901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16899,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16890,"src":"18905:10:64","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":16900,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16887,"src":"18919:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"18905:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16908,"nodeType":"IfStatement","src":"18901:98:64","trueBody":{"id":16907,"nodeType":"Block","src":"18926:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"323332","id":16903,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18977:3:64","typeDescriptions":{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},"value":"232"},{"id":16904,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16887,"src":"18982:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":16902,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"18947:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":16905,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18947:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16906,"nodeType":"RevertStatement","src":"18940:48:64"}]}}]},"documentation":{"id":16885,"nodeType":"StructuredDocumentation","src":"18464:312:64","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":16910,"implemented":true,"kind":"function","modifiers":[],"name":"toInt232","nameLocation":"18790:8:64","nodeType":"FunctionDefinition","parameters":{"id":16888,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16887,"mutability":"mutable","name":"value","nameLocation":"18806:5:64","nodeType":"VariableDeclaration","scope":16910,"src":"18799:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":16886,"name":"int256","nodeType":"ElementaryTypeName","src":"18799:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18798:14:64"},"returnParameters":{"id":16891,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16890,"mutability":"mutable","name":"downcasted","nameLocation":"18843:10:64","nodeType":"VariableDeclaration","scope":16910,"src":"18836:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"},"typeName":{"id":16889,"name":"int232","nodeType":"ElementaryTypeName","src":"18836:6:64","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"visibility":"internal"}],"src":"18835:19:64"},"scope":17679,"src":"18781:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16935,"nodeType":"Block","src":"19402:150:64","statements":[{"expression":{"id":16923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16918,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16916,"src":"19412:10:64","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":16921,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16913,"src":"19432:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":16920,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19425:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int224_$","typeString":"type(int224)"},"typeName":{"id":16919,"name":"int224","nodeType":"ElementaryTypeName","src":"19425:6:64","typeDescriptions":{}}},"id":16922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19425:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"src":"19412:26:64","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"id":16924,"nodeType":"ExpressionStatement","src":"19412:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":16927,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16925,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16916,"src":"19452:10:64","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":16926,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16913,"src":"19466:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19452:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16934,"nodeType":"IfStatement","src":"19448:98:64","trueBody":{"id":16933,"nodeType":"Block","src":"19473:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"323234","id":16929,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19524:3:64","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},{"id":16930,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16913,"src":"19529:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":16928,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"19494:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":16931,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19494:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16932,"nodeType":"RevertStatement","src":"19487:48:64"}]}}]},"documentation":{"id":16911,"nodeType":"StructuredDocumentation","src":"19011:312:64","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":16936,"implemented":true,"kind":"function","modifiers":[],"name":"toInt224","nameLocation":"19337:8:64","nodeType":"FunctionDefinition","parameters":{"id":16914,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16913,"mutability":"mutable","name":"value","nameLocation":"19353:5:64","nodeType":"VariableDeclaration","scope":16936,"src":"19346:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":16912,"name":"int256","nodeType":"ElementaryTypeName","src":"19346:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19345:14:64"},"returnParameters":{"id":16917,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16916,"mutability":"mutable","name":"downcasted","nameLocation":"19390:10:64","nodeType":"VariableDeclaration","scope":16936,"src":"19383:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"},"typeName":{"id":16915,"name":"int224","nodeType":"ElementaryTypeName","src":"19383:6:64","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"visibility":"internal"}],"src":"19382:19:64"},"scope":17679,"src":"19328:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16961,"nodeType":"Block","src":"19949:150:64","statements":[{"expression":{"id":16949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16944,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16942,"src":"19959:10:64","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":16947,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16939,"src":"19979:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":16946,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19972:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int216_$","typeString":"type(int216)"},"typeName":{"id":16945,"name":"int216","nodeType":"ElementaryTypeName","src":"19972:6:64","typeDescriptions":{}}},"id":16948,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19972:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"src":"19959:26:64","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"id":16950,"nodeType":"ExpressionStatement","src":"19959:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":16953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16951,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16942,"src":"19999:10:64","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":16952,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16939,"src":"20013:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19999:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16960,"nodeType":"IfStatement","src":"19995:98:64","trueBody":{"id":16959,"nodeType":"Block","src":"20020:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"323136","id":16955,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20071:3:64","typeDescriptions":{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},"value":"216"},{"id":16956,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16939,"src":"20076:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":16954,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"20041:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":16957,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20041:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16958,"nodeType":"RevertStatement","src":"20034:48:64"}]}}]},"documentation":{"id":16937,"nodeType":"StructuredDocumentation","src":"19558:312:64","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":16962,"implemented":true,"kind":"function","modifiers":[],"name":"toInt216","nameLocation":"19884:8:64","nodeType":"FunctionDefinition","parameters":{"id":16940,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16939,"mutability":"mutable","name":"value","nameLocation":"19900:5:64","nodeType":"VariableDeclaration","scope":16962,"src":"19893:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":16938,"name":"int256","nodeType":"ElementaryTypeName","src":"19893:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19892:14:64"},"returnParameters":{"id":16943,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16942,"mutability":"mutable","name":"downcasted","nameLocation":"19937:10:64","nodeType":"VariableDeclaration","scope":16962,"src":"19930:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"},"typeName":{"id":16941,"name":"int216","nodeType":"ElementaryTypeName","src":"19930:6:64","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"visibility":"internal"}],"src":"19929:19:64"},"scope":17679,"src":"19875:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16987,"nodeType":"Block","src":"20496:150:64","statements":[{"expression":{"id":16975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16970,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16968,"src":"20506:10:64","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":16973,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16965,"src":"20526:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":16972,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"20519:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int208_$","typeString":"type(int208)"},"typeName":{"id":16971,"name":"int208","nodeType":"ElementaryTypeName","src":"20519:6:64","typeDescriptions":{}}},"id":16974,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20519:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"src":"20506:26:64","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"id":16976,"nodeType":"ExpressionStatement","src":"20506:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":16979,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16977,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16968,"src":"20546:10:64","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":16978,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16965,"src":"20560:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"20546:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16986,"nodeType":"IfStatement","src":"20542:98:64","trueBody":{"id":16985,"nodeType":"Block","src":"20567:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"323038","id":16981,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20618:3:64","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"value":"208"},{"id":16982,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16965,"src":"20623:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":16980,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"20588:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":16983,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20588:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16984,"nodeType":"RevertStatement","src":"20581:48:64"}]}}]},"documentation":{"id":16963,"nodeType":"StructuredDocumentation","src":"20105:312:64","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":16988,"implemented":true,"kind":"function","modifiers":[],"name":"toInt208","nameLocation":"20431:8:64","nodeType":"FunctionDefinition","parameters":{"id":16966,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16965,"mutability":"mutable","name":"value","nameLocation":"20447:5:64","nodeType":"VariableDeclaration","scope":16988,"src":"20440:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":16964,"name":"int256","nodeType":"ElementaryTypeName","src":"20440:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"20439:14:64"},"returnParameters":{"id":16969,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16968,"mutability":"mutable","name":"downcasted","nameLocation":"20484:10:64","nodeType":"VariableDeclaration","scope":16988,"src":"20477:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"},"typeName":{"id":16967,"name":"int208","nodeType":"ElementaryTypeName","src":"20477:6:64","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"visibility":"internal"}],"src":"20476:19:64"},"scope":17679,"src":"20422:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17013,"nodeType":"Block","src":"21043:150:64","statements":[{"expression":{"id":17001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16996,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16994,"src":"21053:10:64","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":16999,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16991,"src":"21073:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":16998,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21066:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int200_$","typeString":"type(int200)"},"typeName":{"id":16997,"name":"int200","nodeType":"ElementaryTypeName","src":"21066:6:64","typeDescriptions":{}}},"id":17000,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21066:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"src":"21053:26:64","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"id":17002,"nodeType":"ExpressionStatement","src":"21053:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17003,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16994,"src":"21093:10:64","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17004,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16991,"src":"21107:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21093:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17012,"nodeType":"IfStatement","src":"21089:98:64","trueBody":{"id":17011,"nodeType":"Block","src":"21114:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"323030","id":17007,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21165:3:64","typeDescriptions":{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},"value":"200"},{"id":17008,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16991,"src":"21170:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17006,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"21135:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17009,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21135:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17010,"nodeType":"RevertStatement","src":"21128:48:64"}]}}]},"documentation":{"id":16989,"nodeType":"StructuredDocumentation","src":"20652:312:64","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":17014,"implemented":true,"kind":"function","modifiers":[],"name":"toInt200","nameLocation":"20978:8:64","nodeType":"FunctionDefinition","parameters":{"id":16992,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16991,"mutability":"mutable","name":"value","nameLocation":"20994:5:64","nodeType":"VariableDeclaration","scope":17014,"src":"20987:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":16990,"name":"int256","nodeType":"ElementaryTypeName","src":"20987:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"20986:14:64"},"returnParameters":{"id":16995,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16994,"mutability":"mutable","name":"downcasted","nameLocation":"21031:10:64","nodeType":"VariableDeclaration","scope":17014,"src":"21024:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"},"typeName":{"id":16993,"name":"int200","nodeType":"ElementaryTypeName","src":"21024:6:64","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"visibility":"internal"}],"src":"21023:19:64"},"scope":17679,"src":"20969:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17039,"nodeType":"Block","src":"21590:150:64","statements":[{"expression":{"id":17027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17022,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17020,"src":"21600:10:64","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17025,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17017,"src":"21620:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17024,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21613:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int192_$","typeString":"type(int192)"},"typeName":{"id":17023,"name":"int192","nodeType":"ElementaryTypeName","src":"21613:6:64","typeDescriptions":{}}},"id":17026,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21613:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"src":"21600:26:64","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"id":17028,"nodeType":"ExpressionStatement","src":"21600:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17029,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17020,"src":"21640:10:64","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17030,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17017,"src":"21654:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21640:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17038,"nodeType":"IfStatement","src":"21636:98:64","trueBody":{"id":17037,"nodeType":"Block","src":"21661:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313932","id":17033,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21712:3:64","typeDescriptions":{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},"value":"192"},{"id":17034,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17017,"src":"21717:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17032,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"21682:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17035,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21682:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17036,"nodeType":"RevertStatement","src":"21675:48:64"}]}}]},"documentation":{"id":17015,"nodeType":"StructuredDocumentation","src":"21199:312:64","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":17040,"implemented":true,"kind":"function","modifiers":[],"name":"toInt192","nameLocation":"21525:8:64","nodeType":"FunctionDefinition","parameters":{"id":17018,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17017,"mutability":"mutable","name":"value","nameLocation":"21541:5:64","nodeType":"VariableDeclaration","scope":17040,"src":"21534:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17016,"name":"int256","nodeType":"ElementaryTypeName","src":"21534:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"21533:14:64"},"returnParameters":{"id":17021,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17020,"mutability":"mutable","name":"downcasted","nameLocation":"21578:10:64","nodeType":"VariableDeclaration","scope":17040,"src":"21571:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"},"typeName":{"id":17019,"name":"int192","nodeType":"ElementaryTypeName","src":"21571:6:64","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"visibility":"internal"}],"src":"21570:19:64"},"scope":17679,"src":"21516:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17065,"nodeType":"Block","src":"22137:150:64","statements":[{"expression":{"id":17053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17048,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17046,"src":"22147:10:64","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17051,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17043,"src":"22167:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17050,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22160:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int184_$","typeString":"type(int184)"},"typeName":{"id":17049,"name":"int184","nodeType":"ElementaryTypeName","src":"22160:6:64","typeDescriptions":{}}},"id":17052,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22160:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"src":"22147:26:64","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"id":17054,"nodeType":"ExpressionStatement","src":"22147:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17055,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17046,"src":"22187:10:64","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17056,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17043,"src":"22201:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22187:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17064,"nodeType":"IfStatement","src":"22183:98:64","trueBody":{"id":17063,"nodeType":"Block","src":"22208:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313834","id":17059,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22259:3:64","typeDescriptions":{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},"value":"184"},{"id":17060,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17043,"src":"22264:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17058,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"22229:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17061,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22229:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17062,"nodeType":"RevertStatement","src":"22222:48:64"}]}}]},"documentation":{"id":17041,"nodeType":"StructuredDocumentation","src":"21746:312:64","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":17066,"implemented":true,"kind":"function","modifiers":[],"name":"toInt184","nameLocation":"22072:8:64","nodeType":"FunctionDefinition","parameters":{"id":17044,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17043,"mutability":"mutable","name":"value","nameLocation":"22088:5:64","nodeType":"VariableDeclaration","scope":17066,"src":"22081:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17042,"name":"int256","nodeType":"ElementaryTypeName","src":"22081:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"22080:14:64"},"returnParameters":{"id":17047,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17046,"mutability":"mutable","name":"downcasted","nameLocation":"22125:10:64","nodeType":"VariableDeclaration","scope":17066,"src":"22118:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"},"typeName":{"id":17045,"name":"int184","nodeType":"ElementaryTypeName","src":"22118:6:64","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"visibility":"internal"}],"src":"22117:19:64"},"scope":17679,"src":"22063:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17091,"nodeType":"Block","src":"22684:150:64","statements":[{"expression":{"id":17079,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17074,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17072,"src":"22694:10:64","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17077,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17069,"src":"22714:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17076,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22707:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int176_$","typeString":"type(int176)"},"typeName":{"id":17075,"name":"int176","nodeType":"ElementaryTypeName","src":"22707:6:64","typeDescriptions":{}}},"id":17078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22707:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"src":"22694:26:64","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"id":17080,"nodeType":"ExpressionStatement","src":"22694:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17081,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17072,"src":"22734:10:64","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17082,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17069,"src":"22748:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22734:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17090,"nodeType":"IfStatement","src":"22730:98:64","trueBody":{"id":17089,"nodeType":"Block","src":"22755:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313736","id":17085,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22806:3:64","typeDescriptions":{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},"value":"176"},{"id":17086,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17069,"src":"22811:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17084,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"22776:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17087,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22776:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17088,"nodeType":"RevertStatement","src":"22769:48:64"}]}}]},"documentation":{"id":17067,"nodeType":"StructuredDocumentation","src":"22293:312:64","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":17092,"implemented":true,"kind":"function","modifiers":[],"name":"toInt176","nameLocation":"22619:8:64","nodeType":"FunctionDefinition","parameters":{"id":17070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17069,"mutability":"mutable","name":"value","nameLocation":"22635:5:64","nodeType":"VariableDeclaration","scope":17092,"src":"22628:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17068,"name":"int256","nodeType":"ElementaryTypeName","src":"22628:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"22627:14:64"},"returnParameters":{"id":17073,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17072,"mutability":"mutable","name":"downcasted","nameLocation":"22672:10:64","nodeType":"VariableDeclaration","scope":17092,"src":"22665:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"},"typeName":{"id":17071,"name":"int176","nodeType":"ElementaryTypeName","src":"22665:6:64","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"visibility":"internal"}],"src":"22664:19:64"},"scope":17679,"src":"22610:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17117,"nodeType":"Block","src":"23231:150:64","statements":[{"expression":{"id":17105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17100,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17098,"src":"23241:10:64","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17103,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17095,"src":"23261:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17102,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23254:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int168_$","typeString":"type(int168)"},"typeName":{"id":17101,"name":"int168","nodeType":"ElementaryTypeName","src":"23254:6:64","typeDescriptions":{}}},"id":17104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23254:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"src":"23241:26:64","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"id":17106,"nodeType":"ExpressionStatement","src":"23241:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17107,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17098,"src":"23281:10:64","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17108,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17095,"src":"23295:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23281:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17116,"nodeType":"IfStatement","src":"23277:98:64","trueBody":{"id":17115,"nodeType":"Block","src":"23302:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313638","id":17111,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23353:3:64","typeDescriptions":{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},"value":"168"},{"id":17112,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17095,"src":"23358:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17110,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"23323:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17113,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23323:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17114,"nodeType":"RevertStatement","src":"23316:48:64"}]}}]},"documentation":{"id":17093,"nodeType":"StructuredDocumentation","src":"22840:312:64","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":17118,"implemented":true,"kind":"function","modifiers":[],"name":"toInt168","nameLocation":"23166:8:64","nodeType":"FunctionDefinition","parameters":{"id":17096,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17095,"mutability":"mutable","name":"value","nameLocation":"23182:5:64","nodeType":"VariableDeclaration","scope":17118,"src":"23175:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17094,"name":"int256","nodeType":"ElementaryTypeName","src":"23175:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23174:14:64"},"returnParameters":{"id":17099,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17098,"mutability":"mutable","name":"downcasted","nameLocation":"23219:10:64","nodeType":"VariableDeclaration","scope":17118,"src":"23212:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"},"typeName":{"id":17097,"name":"int168","nodeType":"ElementaryTypeName","src":"23212:6:64","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"visibility":"internal"}],"src":"23211:19:64"},"scope":17679,"src":"23157:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17143,"nodeType":"Block","src":"23778:150:64","statements":[{"expression":{"id":17131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17126,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17124,"src":"23788:10:64","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17129,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17121,"src":"23808:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17128,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23801:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int160_$","typeString":"type(int160)"},"typeName":{"id":17127,"name":"int160","nodeType":"ElementaryTypeName","src":"23801:6:64","typeDescriptions":{}}},"id":17130,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23801:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"src":"23788:26:64","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"id":17132,"nodeType":"ExpressionStatement","src":"23788:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17133,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17124,"src":"23828:10:64","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17134,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17121,"src":"23842:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23828:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17142,"nodeType":"IfStatement","src":"23824:98:64","trueBody":{"id":17141,"nodeType":"Block","src":"23849:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313630","id":17137,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23900:3:64","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},{"id":17138,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17121,"src":"23905:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17136,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"23870:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17139,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23870:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17140,"nodeType":"RevertStatement","src":"23863:48:64"}]}}]},"documentation":{"id":17119,"nodeType":"StructuredDocumentation","src":"23387:312:64","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":17144,"implemented":true,"kind":"function","modifiers":[],"name":"toInt160","nameLocation":"23713:8:64","nodeType":"FunctionDefinition","parameters":{"id":17122,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17121,"mutability":"mutable","name":"value","nameLocation":"23729:5:64","nodeType":"VariableDeclaration","scope":17144,"src":"23722:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17120,"name":"int256","nodeType":"ElementaryTypeName","src":"23722:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23721:14:64"},"returnParameters":{"id":17125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17124,"mutability":"mutable","name":"downcasted","nameLocation":"23766:10:64","nodeType":"VariableDeclaration","scope":17144,"src":"23759:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"},"typeName":{"id":17123,"name":"int160","nodeType":"ElementaryTypeName","src":"23759:6:64","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"visibility":"internal"}],"src":"23758:19:64"},"scope":17679,"src":"23704:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17169,"nodeType":"Block","src":"24325:150:64","statements":[{"expression":{"id":17157,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17152,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17150,"src":"24335:10:64","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17155,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17147,"src":"24355:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17154,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24348:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int152_$","typeString":"type(int152)"},"typeName":{"id":17153,"name":"int152","nodeType":"ElementaryTypeName","src":"24348:6:64","typeDescriptions":{}}},"id":17156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24348:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"src":"24335:26:64","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"id":17158,"nodeType":"ExpressionStatement","src":"24335:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17159,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17150,"src":"24375:10:64","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17160,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17147,"src":"24389:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24375:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17168,"nodeType":"IfStatement","src":"24371:98:64","trueBody":{"id":17167,"nodeType":"Block","src":"24396:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313532","id":17163,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24447:3:64","typeDescriptions":{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},"value":"152"},{"id":17164,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17147,"src":"24452:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17162,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"24417:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17165,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24417:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17166,"nodeType":"RevertStatement","src":"24410:48:64"}]}}]},"documentation":{"id":17145,"nodeType":"StructuredDocumentation","src":"23934:312:64","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":17170,"implemented":true,"kind":"function","modifiers":[],"name":"toInt152","nameLocation":"24260:8:64","nodeType":"FunctionDefinition","parameters":{"id":17148,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17147,"mutability":"mutable","name":"value","nameLocation":"24276:5:64","nodeType":"VariableDeclaration","scope":17170,"src":"24269:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17146,"name":"int256","nodeType":"ElementaryTypeName","src":"24269:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"24268:14:64"},"returnParameters":{"id":17151,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17150,"mutability":"mutable","name":"downcasted","nameLocation":"24313:10:64","nodeType":"VariableDeclaration","scope":17170,"src":"24306:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"},"typeName":{"id":17149,"name":"int152","nodeType":"ElementaryTypeName","src":"24306:6:64","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"visibility":"internal"}],"src":"24305:19:64"},"scope":17679,"src":"24251:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17195,"nodeType":"Block","src":"24872:150:64","statements":[{"expression":{"id":17183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17178,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17176,"src":"24882:10:64","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17181,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17173,"src":"24902:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17180,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24895:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int144_$","typeString":"type(int144)"},"typeName":{"id":17179,"name":"int144","nodeType":"ElementaryTypeName","src":"24895:6:64","typeDescriptions":{}}},"id":17182,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24895:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"src":"24882:26:64","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"id":17184,"nodeType":"ExpressionStatement","src":"24882:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17185,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17176,"src":"24922:10:64","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17186,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17173,"src":"24936:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24922:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17194,"nodeType":"IfStatement","src":"24918:98:64","trueBody":{"id":17193,"nodeType":"Block","src":"24943:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313434","id":17189,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24994:3:64","typeDescriptions":{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},"value":"144"},{"id":17190,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17173,"src":"24999:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17188,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"24964:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17191,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24964:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17192,"nodeType":"RevertStatement","src":"24957:48:64"}]}}]},"documentation":{"id":17171,"nodeType":"StructuredDocumentation","src":"24481:312:64","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":17196,"implemented":true,"kind":"function","modifiers":[],"name":"toInt144","nameLocation":"24807:8:64","nodeType":"FunctionDefinition","parameters":{"id":17174,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17173,"mutability":"mutable","name":"value","nameLocation":"24823:5:64","nodeType":"VariableDeclaration","scope":17196,"src":"24816:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17172,"name":"int256","nodeType":"ElementaryTypeName","src":"24816:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"24815:14:64"},"returnParameters":{"id":17177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17176,"mutability":"mutable","name":"downcasted","nameLocation":"24860:10:64","nodeType":"VariableDeclaration","scope":17196,"src":"24853:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"},"typeName":{"id":17175,"name":"int144","nodeType":"ElementaryTypeName","src":"24853:6:64","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"visibility":"internal"}],"src":"24852:19:64"},"scope":17679,"src":"24798:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17221,"nodeType":"Block","src":"25419:150:64","statements":[{"expression":{"id":17209,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17204,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17202,"src":"25429:10:64","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17207,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17199,"src":"25449:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17206,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25442:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int136_$","typeString":"type(int136)"},"typeName":{"id":17205,"name":"int136","nodeType":"ElementaryTypeName","src":"25442:6:64","typeDescriptions":{}}},"id":17208,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25442:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"src":"25429:26:64","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"id":17210,"nodeType":"ExpressionStatement","src":"25429:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17211,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17202,"src":"25469:10:64","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17212,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17199,"src":"25483:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"25469:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17220,"nodeType":"IfStatement","src":"25465:98:64","trueBody":{"id":17219,"nodeType":"Block","src":"25490:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313336","id":17215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25541:3:64","typeDescriptions":{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},"value":"136"},{"id":17216,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17199,"src":"25546:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17214,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"25511:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17217,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25511:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17218,"nodeType":"RevertStatement","src":"25504:48:64"}]}}]},"documentation":{"id":17197,"nodeType":"StructuredDocumentation","src":"25028:312:64","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":17222,"implemented":true,"kind":"function","modifiers":[],"name":"toInt136","nameLocation":"25354:8:64","nodeType":"FunctionDefinition","parameters":{"id":17200,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17199,"mutability":"mutable","name":"value","nameLocation":"25370:5:64","nodeType":"VariableDeclaration","scope":17222,"src":"25363:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17198,"name":"int256","nodeType":"ElementaryTypeName","src":"25363:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"25362:14:64"},"returnParameters":{"id":17203,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17202,"mutability":"mutable","name":"downcasted","nameLocation":"25407:10:64","nodeType":"VariableDeclaration","scope":17222,"src":"25400:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"},"typeName":{"id":17201,"name":"int136","nodeType":"ElementaryTypeName","src":"25400:6:64","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"visibility":"internal"}],"src":"25399:19:64"},"scope":17679,"src":"25345:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17247,"nodeType":"Block","src":"25966:150:64","statements":[{"expression":{"id":17235,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17230,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17228,"src":"25976:10:64","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17233,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17225,"src":"25996:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17232,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25989:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int128_$","typeString":"type(int128)"},"typeName":{"id":17231,"name":"int128","nodeType":"ElementaryTypeName","src":"25989:6:64","typeDescriptions":{}}},"id":17234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25989:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"src":"25976:26:64","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"id":17236,"nodeType":"ExpressionStatement","src":"25976:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17237,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17228,"src":"26016:10:64","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17238,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17225,"src":"26030:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26016:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17246,"nodeType":"IfStatement","src":"26012:98:64","trueBody":{"id":17245,"nodeType":"Block","src":"26037:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313238","id":17241,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26088:3:64","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},{"id":17242,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17225,"src":"26093:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17240,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"26058:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17243,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26058:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17244,"nodeType":"RevertStatement","src":"26051:48:64"}]}}]},"documentation":{"id":17223,"nodeType":"StructuredDocumentation","src":"25575:312:64","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":17248,"implemented":true,"kind":"function","modifiers":[],"name":"toInt128","nameLocation":"25901:8:64","nodeType":"FunctionDefinition","parameters":{"id":17226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17225,"mutability":"mutable","name":"value","nameLocation":"25917:5:64","nodeType":"VariableDeclaration","scope":17248,"src":"25910:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17224,"name":"int256","nodeType":"ElementaryTypeName","src":"25910:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"25909:14:64"},"returnParameters":{"id":17229,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17228,"mutability":"mutable","name":"downcasted","nameLocation":"25954:10:64","nodeType":"VariableDeclaration","scope":17248,"src":"25947:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"},"typeName":{"id":17227,"name":"int128","nodeType":"ElementaryTypeName","src":"25947:6:64","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"visibility":"internal"}],"src":"25946:19:64"},"scope":17679,"src":"25892:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17273,"nodeType":"Block","src":"26513:150:64","statements":[{"expression":{"id":17261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17256,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17254,"src":"26523:10:64","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17259,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17251,"src":"26543:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17258,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26536:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int120_$","typeString":"type(int120)"},"typeName":{"id":17257,"name":"int120","nodeType":"ElementaryTypeName","src":"26536:6:64","typeDescriptions":{}}},"id":17260,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26536:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"src":"26523:26:64","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"id":17262,"nodeType":"ExpressionStatement","src":"26523:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17263,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17254,"src":"26563:10:64","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17264,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17251,"src":"26577:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26563:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17272,"nodeType":"IfStatement","src":"26559:98:64","trueBody":{"id":17271,"nodeType":"Block","src":"26584:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313230","id":17267,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26635:3:64","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},{"id":17268,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17251,"src":"26640:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17266,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"26605:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17269,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26605:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17270,"nodeType":"RevertStatement","src":"26598:48:64"}]}}]},"documentation":{"id":17249,"nodeType":"StructuredDocumentation","src":"26122:312:64","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":17274,"implemented":true,"kind":"function","modifiers":[],"name":"toInt120","nameLocation":"26448:8:64","nodeType":"FunctionDefinition","parameters":{"id":17252,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17251,"mutability":"mutable","name":"value","nameLocation":"26464:5:64","nodeType":"VariableDeclaration","scope":17274,"src":"26457:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17250,"name":"int256","nodeType":"ElementaryTypeName","src":"26457:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"26456:14:64"},"returnParameters":{"id":17255,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17254,"mutability":"mutable","name":"downcasted","nameLocation":"26501:10:64","nodeType":"VariableDeclaration","scope":17274,"src":"26494:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"},"typeName":{"id":17253,"name":"int120","nodeType":"ElementaryTypeName","src":"26494:6:64","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"visibility":"internal"}],"src":"26493:19:64"},"scope":17679,"src":"26439:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17299,"nodeType":"Block","src":"27060:150:64","statements":[{"expression":{"id":17287,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17282,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17280,"src":"27070:10:64","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17285,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17277,"src":"27090:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17284,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27083:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int112_$","typeString":"type(int112)"},"typeName":{"id":17283,"name":"int112","nodeType":"ElementaryTypeName","src":"27083:6:64","typeDescriptions":{}}},"id":17286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27083:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"src":"27070:26:64","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"id":17288,"nodeType":"ExpressionStatement","src":"27070:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17289,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17280,"src":"27110:10:64","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17290,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17277,"src":"27124:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27110:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17298,"nodeType":"IfStatement","src":"27106:98:64","trueBody":{"id":17297,"nodeType":"Block","src":"27131:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313132","id":17293,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27182:3:64","typeDescriptions":{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},"value":"112"},{"id":17294,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17277,"src":"27187:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17292,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"27152:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17295,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27152:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17296,"nodeType":"RevertStatement","src":"27145:48:64"}]}}]},"documentation":{"id":17275,"nodeType":"StructuredDocumentation","src":"26669:312:64","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":17300,"implemented":true,"kind":"function","modifiers":[],"name":"toInt112","nameLocation":"26995:8:64","nodeType":"FunctionDefinition","parameters":{"id":17278,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17277,"mutability":"mutable","name":"value","nameLocation":"27011:5:64","nodeType":"VariableDeclaration","scope":17300,"src":"27004:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17276,"name":"int256","nodeType":"ElementaryTypeName","src":"27004:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"27003:14:64"},"returnParameters":{"id":17281,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17280,"mutability":"mutable","name":"downcasted","nameLocation":"27048:10:64","nodeType":"VariableDeclaration","scope":17300,"src":"27041:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"},"typeName":{"id":17279,"name":"int112","nodeType":"ElementaryTypeName","src":"27041:6:64","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"visibility":"internal"}],"src":"27040:19:64"},"scope":17679,"src":"26986:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17325,"nodeType":"Block","src":"27607:150:64","statements":[{"expression":{"id":17313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17308,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17306,"src":"27617:10:64","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17311,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17303,"src":"27637:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17310,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27630:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int104_$","typeString":"type(int104)"},"typeName":{"id":17309,"name":"int104","nodeType":"ElementaryTypeName","src":"27630:6:64","typeDescriptions":{}}},"id":17312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27630:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"src":"27617:26:64","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"id":17314,"nodeType":"ExpressionStatement","src":"27617:26:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17315,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17306,"src":"27657:10:64","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17316,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17303,"src":"27671:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27657:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17324,"nodeType":"IfStatement","src":"27653:98:64","trueBody":{"id":17323,"nodeType":"Block","src":"27678:73:64","statements":[{"errorCall":{"arguments":[{"hexValue":"313034","id":17319,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27729:3:64","typeDescriptions":{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},"value":"104"},{"id":17320,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17303,"src":"27734:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17318,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"27699:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27699:41:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17322,"nodeType":"RevertStatement","src":"27692:48:64"}]}}]},"documentation":{"id":17301,"nodeType":"StructuredDocumentation","src":"27216:312:64","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":17326,"implemented":true,"kind":"function","modifiers":[],"name":"toInt104","nameLocation":"27542:8:64","nodeType":"FunctionDefinition","parameters":{"id":17304,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17303,"mutability":"mutable","name":"value","nameLocation":"27558:5:64","nodeType":"VariableDeclaration","scope":17326,"src":"27551:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17302,"name":"int256","nodeType":"ElementaryTypeName","src":"27551:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"27550:14:64"},"returnParameters":{"id":17307,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17306,"mutability":"mutable","name":"downcasted","nameLocation":"27595:10:64","nodeType":"VariableDeclaration","scope":17326,"src":"27588:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"},"typeName":{"id":17305,"name":"int104","nodeType":"ElementaryTypeName","src":"27588:6:64","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"visibility":"internal"}],"src":"27587:19:64"},"scope":17679,"src":"27533:224:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17351,"nodeType":"Block","src":"28147:148:64","statements":[{"expression":{"id":17339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17334,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17332,"src":"28157:10:64","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17337,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17329,"src":"28176:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17336,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28170:5:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int96_$","typeString":"type(int96)"},"typeName":{"id":17335,"name":"int96","nodeType":"ElementaryTypeName","src":"28170:5:64","typeDescriptions":{}}},"id":17338,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28170:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"src":"28157:25:64","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"id":17340,"nodeType":"ExpressionStatement","src":"28157:25:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17341,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17332,"src":"28196:10:64","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17342,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17329,"src":"28210:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28196:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17350,"nodeType":"IfStatement","src":"28192:97:64","trueBody":{"id":17349,"nodeType":"Block","src":"28217:72:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3936","id":17345,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28268:2:64","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},{"id":17346,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17329,"src":"28272:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17344,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"28238:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17347,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28238:40:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17348,"nodeType":"RevertStatement","src":"28231:47:64"}]}}]},"documentation":{"id":17327,"nodeType":"StructuredDocumentation","src":"27763:307:64","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":17352,"implemented":true,"kind":"function","modifiers":[],"name":"toInt96","nameLocation":"28084:7:64","nodeType":"FunctionDefinition","parameters":{"id":17330,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17329,"mutability":"mutable","name":"value","nameLocation":"28099:5:64","nodeType":"VariableDeclaration","scope":17352,"src":"28092:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17328,"name":"int256","nodeType":"ElementaryTypeName","src":"28092:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"28091:14:64"},"returnParameters":{"id":17333,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17332,"mutability":"mutable","name":"downcasted","nameLocation":"28135:10:64","nodeType":"VariableDeclaration","scope":17352,"src":"28129:16:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"},"typeName":{"id":17331,"name":"int96","nodeType":"ElementaryTypeName","src":"28129:5:64","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"visibility":"internal"}],"src":"28128:18:64"},"scope":17679,"src":"28075:220:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17377,"nodeType":"Block","src":"28685:148:64","statements":[{"expression":{"id":17365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17360,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17358,"src":"28695:10:64","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17363,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17355,"src":"28714:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17362,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28708:5:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int88_$","typeString":"type(int88)"},"typeName":{"id":17361,"name":"int88","nodeType":"ElementaryTypeName","src":"28708:5:64","typeDescriptions":{}}},"id":17364,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28708:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"src":"28695:25:64","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"id":17366,"nodeType":"ExpressionStatement","src":"28695:25:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17367,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17358,"src":"28734:10:64","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17368,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17355,"src":"28748:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28734:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17376,"nodeType":"IfStatement","src":"28730:97:64","trueBody":{"id":17375,"nodeType":"Block","src":"28755:72:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3838","id":17371,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28806:2:64","typeDescriptions":{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},"value":"88"},{"id":17372,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17355,"src":"28810:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17370,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"28776:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17373,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28776:40:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17374,"nodeType":"RevertStatement","src":"28769:47:64"}]}}]},"documentation":{"id":17353,"nodeType":"StructuredDocumentation","src":"28301:307:64","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":17378,"implemented":true,"kind":"function","modifiers":[],"name":"toInt88","nameLocation":"28622:7:64","nodeType":"FunctionDefinition","parameters":{"id":17356,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17355,"mutability":"mutable","name":"value","nameLocation":"28637:5:64","nodeType":"VariableDeclaration","scope":17378,"src":"28630:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17354,"name":"int256","nodeType":"ElementaryTypeName","src":"28630:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"28629:14:64"},"returnParameters":{"id":17359,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17358,"mutability":"mutable","name":"downcasted","nameLocation":"28673:10:64","nodeType":"VariableDeclaration","scope":17378,"src":"28667:16:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"},"typeName":{"id":17357,"name":"int88","nodeType":"ElementaryTypeName","src":"28667:5:64","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"visibility":"internal"}],"src":"28666:18:64"},"scope":17679,"src":"28613:220:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17403,"nodeType":"Block","src":"29223:148:64","statements":[{"expression":{"id":17391,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17386,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17384,"src":"29233:10:64","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17389,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17381,"src":"29252:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17388,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29246:5:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int80_$","typeString":"type(int80)"},"typeName":{"id":17387,"name":"int80","nodeType":"ElementaryTypeName","src":"29246:5:64","typeDescriptions":{}}},"id":17390,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29246:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"src":"29233:25:64","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"id":17392,"nodeType":"ExpressionStatement","src":"29233:25:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17395,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17393,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17384,"src":"29272:10:64","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17394,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17381,"src":"29286:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"29272:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17402,"nodeType":"IfStatement","src":"29268:97:64","trueBody":{"id":17401,"nodeType":"Block","src":"29293:72:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3830","id":17397,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29344:2:64","typeDescriptions":{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},"value":"80"},{"id":17398,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17381,"src":"29348:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17396,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"29314:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17399,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29314:40:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17400,"nodeType":"RevertStatement","src":"29307:47:64"}]}}]},"documentation":{"id":17379,"nodeType":"StructuredDocumentation","src":"28839:307:64","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":17404,"implemented":true,"kind":"function","modifiers":[],"name":"toInt80","nameLocation":"29160:7:64","nodeType":"FunctionDefinition","parameters":{"id":17382,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17381,"mutability":"mutable","name":"value","nameLocation":"29175:5:64","nodeType":"VariableDeclaration","scope":17404,"src":"29168:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17380,"name":"int256","nodeType":"ElementaryTypeName","src":"29168:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"29167:14:64"},"returnParameters":{"id":17385,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17384,"mutability":"mutable","name":"downcasted","nameLocation":"29211:10:64","nodeType":"VariableDeclaration","scope":17404,"src":"29205:16:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"},"typeName":{"id":17383,"name":"int80","nodeType":"ElementaryTypeName","src":"29205:5:64","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"visibility":"internal"}],"src":"29204:18:64"},"scope":17679,"src":"29151:220:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17429,"nodeType":"Block","src":"29761:148:64","statements":[{"expression":{"id":17417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17412,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17410,"src":"29771:10:64","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17415,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17407,"src":"29790:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17414,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29784:5:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int72_$","typeString":"type(int72)"},"typeName":{"id":17413,"name":"int72","nodeType":"ElementaryTypeName","src":"29784:5:64","typeDescriptions":{}}},"id":17416,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29784:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"src":"29771:25:64","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"id":17418,"nodeType":"ExpressionStatement","src":"29771:25:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17421,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17419,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17410,"src":"29810:10:64","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17420,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17407,"src":"29824:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"29810:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17428,"nodeType":"IfStatement","src":"29806:97:64","trueBody":{"id":17427,"nodeType":"Block","src":"29831:72:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3732","id":17423,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29882:2:64","typeDescriptions":{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},"value":"72"},{"id":17424,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17407,"src":"29886:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17422,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"29852:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17425,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29852:40:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17426,"nodeType":"RevertStatement","src":"29845:47:64"}]}}]},"documentation":{"id":17405,"nodeType":"StructuredDocumentation","src":"29377:307:64","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":17430,"implemented":true,"kind":"function","modifiers":[],"name":"toInt72","nameLocation":"29698:7:64","nodeType":"FunctionDefinition","parameters":{"id":17408,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17407,"mutability":"mutable","name":"value","nameLocation":"29713:5:64","nodeType":"VariableDeclaration","scope":17430,"src":"29706:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17406,"name":"int256","nodeType":"ElementaryTypeName","src":"29706:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"29705:14:64"},"returnParameters":{"id":17411,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17410,"mutability":"mutable","name":"downcasted","nameLocation":"29749:10:64","nodeType":"VariableDeclaration","scope":17430,"src":"29743:16:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"},"typeName":{"id":17409,"name":"int72","nodeType":"ElementaryTypeName","src":"29743:5:64","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"visibility":"internal"}],"src":"29742:18:64"},"scope":17679,"src":"29689:220:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17455,"nodeType":"Block","src":"30299:148:64","statements":[{"expression":{"id":17443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17438,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17436,"src":"30309:10:64","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17441,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17433,"src":"30328:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17440,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30322:5:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int64_$","typeString":"type(int64)"},"typeName":{"id":17439,"name":"int64","nodeType":"ElementaryTypeName","src":"30322:5:64","typeDescriptions":{}}},"id":17442,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30322:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"src":"30309:25:64","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"id":17444,"nodeType":"ExpressionStatement","src":"30309:25:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17445,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17436,"src":"30348:10:64","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17446,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17433,"src":"30362:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"30348:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17454,"nodeType":"IfStatement","src":"30344:97:64","trueBody":{"id":17453,"nodeType":"Block","src":"30369:72:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3634","id":17449,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30420:2:64","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},{"id":17450,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17433,"src":"30424:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17448,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"30390:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17451,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30390:40:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17452,"nodeType":"RevertStatement","src":"30383:47:64"}]}}]},"documentation":{"id":17431,"nodeType":"StructuredDocumentation","src":"29915:307:64","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":17456,"implemented":true,"kind":"function","modifiers":[],"name":"toInt64","nameLocation":"30236:7:64","nodeType":"FunctionDefinition","parameters":{"id":17434,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17433,"mutability":"mutable","name":"value","nameLocation":"30251:5:64","nodeType":"VariableDeclaration","scope":17456,"src":"30244:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17432,"name":"int256","nodeType":"ElementaryTypeName","src":"30244:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30243:14:64"},"returnParameters":{"id":17437,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17436,"mutability":"mutable","name":"downcasted","nameLocation":"30287:10:64","nodeType":"VariableDeclaration","scope":17456,"src":"30281:16:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"},"typeName":{"id":17435,"name":"int64","nodeType":"ElementaryTypeName","src":"30281:5:64","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"visibility":"internal"}],"src":"30280:18:64"},"scope":17679,"src":"30227:220:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17481,"nodeType":"Block","src":"30837:148:64","statements":[{"expression":{"id":17469,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17464,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17462,"src":"30847:10:64","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17467,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17459,"src":"30866:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17466,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30860:5:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int56_$","typeString":"type(int56)"},"typeName":{"id":17465,"name":"int56","nodeType":"ElementaryTypeName","src":"30860:5:64","typeDescriptions":{}}},"id":17468,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30860:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"src":"30847:25:64","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"id":17470,"nodeType":"ExpressionStatement","src":"30847:25:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17471,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17462,"src":"30886:10:64","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17472,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17459,"src":"30900:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"30886:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17480,"nodeType":"IfStatement","src":"30882:97:64","trueBody":{"id":17479,"nodeType":"Block","src":"30907:72:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3536","id":17475,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30958:2:64","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},{"id":17476,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17459,"src":"30962:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17474,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"30928:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17477,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30928:40:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17478,"nodeType":"RevertStatement","src":"30921:47:64"}]}}]},"documentation":{"id":17457,"nodeType":"StructuredDocumentation","src":"30453:307:64","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":17482,"implemented":true,"kind":"function","modifiers":[],"name":"toInt56","nameLocation":"30774:7:64","nodeType":"FunctionDefinition","parameters":{"id":17460,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17459,"mutability":"mutable","name":"value","nameLocation":"30789:5:64","nodeType":"VariableDeclaration","scope":17482,"src":"30782:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17458,"name":"int256","nodeType":"ElementaryTypeName","src":"30782:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30781:14:64"},"returnParameters":{"id":17463,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17462,"mutability":"mutable","name":"downcasted","nameLocation":"30825:10:64","nodeType":"VariableDeclaration","scope":17482,"src":"30819:16:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"},"typeName":{"id":17461,"name":"int56","nodeType":"ElementaryTypeName","src":"30819:5:64","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"visibility":"internal"}],"src":"30818:18:64"},"scope":17679,"src":"30765:220:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17507,"nodeType":"Block","src":"31375:148:64","statements":[{"expression":{"id":17495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17490,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17488,"src":"31385:10:64","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17493,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17485,"src":"31404:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17492,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31398:5:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int48_$","typeString":"type(int48)"},"typeName":{"id":17491,"name":"int48","nodeType":"ElementaryTypeName","src":"31398:5:64","typeDescriptions":{}}},"id":17494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31398:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"src":"31385:25:64","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"id":17496,"nodeType":"ExpressionStatement","src":"31385:25:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17497,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17488,"src":"31424:10:64","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17498,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17485,"src":"31438:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"31424:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17506,"nodeType":"IfStatement","src":"31420:97:64","trueBody":{"id":17505,"nodeType":"Block","src":"31445:72:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3438","id":17501,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31496:2:64","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},{"id":17502,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17485,"src":"31500:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17500,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"31466:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17503,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31466:40:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17504,"nodeType":"RevertStatement","src":"31459:47:64"}]}}]},"documentation":{"id":17483,"nodeType":"StructuredDocumentation","src":"30991:307:64","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":17508,"implemented":true,"kind":"function","modifiers":[],"name":"toInt48","nameLocation":"31312:7:64","nodeType":"FunctionDefinition","parameters":{"id":17486,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17485,"mutability":"mutable","name":"value","nameLocation":"31327:5:64","nodeType":"VariableDeclaration","scope":17508,"src":"31320:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17484,"name":"int256","nodeType":"ElementaryTypeName","src":"31320:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"31319:14:64"},"returnParameters":{"id":17489,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17488,"mutability":"mutable","name":"downcasted","nameLocation":"31363:10:64","nodeType":"VariableDeclaration","scope":17508,"src":"31357:16:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"},"typeName":{"id":17487,"name":"int48","nodeType":"ElementaryTypeName","src":"31357:5:64","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"visibility":"internal"}],"src":"31356:18:64"},"scope":17679,"src":"31303:220:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17533,"nodeType":"Block","src":"31913:148:64","statements":[{"expression":{"id":17521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17516,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17514,"src":"31923:10:64","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17519,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17511,"src":"31942:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17518,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31936:5:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int40_$","typeString":"type(int40)"},"typeName":{"id":17517,"name":"int40","nodeType":"ElementaryTypeName","src":"31936:5:64","typeDescriptions":{}}},"id":17520,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31936:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"src":"31923:25:64","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"id":17522,"nodeType":"ExpressionStatement","src":"31923:25:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17523,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17514,"src":"31962:10:64","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17524,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17511,"src":"31976:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"31962:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17532,"nodeType":"IfStatement","src":"31958:97:64","trueBody":{"id":17531,"nodeType":"Block","src":"31983:72:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3430","id":17527,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32034:2:64","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},{"id":17528,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17511,"src":"32038:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17526,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"32004:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17529,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32004:40:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17530,"nodeType":"RevertStatement","src":"31997:47:64"}]}}]},"documentation":{"id":17509,"nodeType":"StructuredDocumentation","src":"31529:307:64","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":17534,"implemented":true,"kind":"function","modifiers":[],"name":"toInt40","nameLocation":"31850:7:64","nodeType":"FunctionDefinition","parameters":{"id":17512,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17511,"mutability":"mutable","name":"value","nameLocation":"31865:5:64","nodeType":"VariableDeclaration","scope":17534,"src":"31858:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17510,"name":"int256","nodeType":"ElementaryTypeName","src":"31858:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"31857:14:64"},"returnParameters":{"id":17515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17514,"mutability":"mutable","name":"downcasted","nameLocation":"31901:10:64","nodeType":"VariableDeclaration","scope":17534,"src":"31895:16:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"},"typeName":{"id":17513,"name":"int40","nodeType":"ElementaryTypeName","src":"31895:5:64","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"visibility":"internal"}],"src":"31894:18:64"},"scope":17679,"src":"31841:220:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17559,"nodeType":"Block","src":"32451:148:64","statements":[{"expression":{"id":17547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17542,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17540,"src":"32461:10:64","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17545,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17537,"src":"32480:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17544,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32474:5:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int32_$","typeString":"type(int32)"},"typeName":{"id":17543,"name":"int32","nodeType":"ElementaryTypeName","src":"32474:5:64","typeDescriptions":{}}},"id":17546,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32474:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"src":"32461:25:64","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":17548,"nodeType":"ExpressionStatement","src":"32461:25:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17549,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17540,"src":"32500:10:64","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17550,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17537,"src":"32514:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"32500:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17558,"nodeType":"IfStatement","src":"32496:97:64","trueBody":{"id":17557,"nodeType":"Block","src":"32521:72:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3332","id":17553,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32572:2:64","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},{"id":17554,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17537,"src":"32576:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17552,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"32542:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17555,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32542:40:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17556,"nodeType":"RevertStatement","src":"32535:47:64"}]}}]},"documentation":{"id":17535,"nodeType":"StructuredDocumentation","src":"32067:307:64","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":17560,"implemented":true,"kind":"function","modifiers":[],"name":"toInt32","nameLocation":"32388:7:64","nodeType":"FunctionDefinition","parameters":{"id":17538,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17537,"mutability":"mutable","name":"value","nameLocation":"32403:5:64","nodeType":"VariableDeclaration","scope":17560,"src":"32396:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17536,"name":"int256","nodeType":"ElementaryTypeName","src":"32396:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"32395:14:64"},"returnParameters":{"id":17541,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17540,"mutability":"mutable","name":"downcasted","nameLocation":"32439:10:64","nodeType":"VariableDeclaration","scope":17560,"src":"32433:16:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":17539,"name":"int32","nodeType":"ElementaryTypeName","src":"32433:5:64","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"src":"32432:18:64"},"scope":17679,"src":"32379:220:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17585,"nodeType":"Block","src":"32989:148:64","statements":[{"expression":{"id":17573,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17568,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17566,"src":"32999:10:64","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17571,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17563,"src":"33018:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17570,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33012:5:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int24_$","typeString":"type(int24)"},"typeName":{"id":17569,"name":"int24","nodeType":"ElementaryTypeName","src":"33012:5:64","typeDescriptions":{}}},"id":17572,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33012:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"src":"32999:25:64","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"id":17574,"nodeType":"ExpressionStatement","src":"32999:25:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17577,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17575,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17566,"src":"33038:10:64","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17576,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17563,"src":"33052:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"33038:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17584,"nodeType":"IfStatement","src":"33034:97:64","trueBody":{"id":17583,"nodeType":"Block","src":"33059:72:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3234","id":17579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33110:2:64","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},{"id":17580,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17563,"src":"33114:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17578,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"33080:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17581,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33080:40:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17582,"nodeType":"RevertStatement","src":"33073:47:64"}]}}]},"documentation":{"id":17561,"nodeType":"StructuredDocumentation","src":"32605:307:64","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":17586,"implemented":true,"kind":"function","modifiers":[],"name":"toInt24","nameLocation":"32926:7:64","nodeType":"FunctionDefinition","parameters":{"id":17564,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17563,"mutability":"mutable","name":"value","nameLocation":"32941:5:64","nodeType":"VariableDeclaration","scope":17586,"src":"32934:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17562,"name":"int256","nodeType":"ElementaryTypeName","src":"32934:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"32933:14:64"},"returnParameters":{"id":17567,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17566,"mutability":"mutable","name":"downcasted","nameLocation":"32977:10:64","nodeType":"VariableDeclaration","scope":17586,"src":"32971:16:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":17565,"name":"int24","nodeType":"ElementaryTypeName","src":"32971:5:64","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"}],"src":"32970:18:64"},"scope":17679,"src":"32917:220:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17611,"nodeType":"Block","src":"33527:148:64","statements":[{"expression":{"id":17599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17594,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17592,"src":"33537:10:64","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17597,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17589,"src":"33556:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17596,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33550:5:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int16_$","typeString":"type(int16)"},"typeName":{"id":17595,"name":"int16","nodeType":"ElementaryTypeName","src":"33550:5:64","typeDescriptions":{}}},"id":17598,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33550:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"src":"33537:25:64","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"id":17600,"nodeType":"ExpressionStatement","src":"33537:25:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17603,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17601,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17592,"src":"33576:10:64","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17602,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17589,"src":"33590:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"33576:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17610,"nodeType":"IfStatement","src":"33572:97:64","trueBody":{"id":17609,"nodeType":"Block","src":"33597:72:64","statements":[{"errorCall":{"arguments":[{"hexValue":"3136","id":17605,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33648:2:64","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},{"id":17606,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17589,"src":"33652:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17604,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"33618:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17607,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33618:40:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17608,"nodeType":"RevertStatement","src":"33611:47:64"}]}}]},"documentation":{"id":17587,"nodeType":"StructuredDocumentation","src":"33143:307:64","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":17612,"implemented":true,"kind":"function","modifiers":[],"name":"toInt16","nameLocation":"33464:7:64","nodeType":"FunctionDefinition","parameters":{"id":17590,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17589,"mutability":"mutable","name":"value","nameLocation":"33479:5:64","nodeType":"VariableDeclaration","scope":17612,"src":"33472:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17588,"name":"int256","nodeType":"ElementaryTypeName","src":"33472:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"33471:14:64"},"returnParameters":{"id":17593,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17592,"mutability":"mutable","name":"downcasted","nameLocation":"33515:10:64","nodeType":"VariableDeclaration","scope":17612,"src":"33509:16:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"},"typeName":{"id":17591,"name":"int16","nodeType":"ElementaryTypeName","src":"33509:5:64","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"visibility":"internal"}],"src":"33508:18:64"},"scope":17679,"src":"33455:220:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17637,"nodeType":"Block","src":"34058:146:64","statements":[{"expression":{"id":17625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17620,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17618,"src":"34068:10:64","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17623,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17615,"src":"34086:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17622,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34081:4:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int8_$","typeString":"type(int8)"},"typeName":{"id":17621,"name":"int8","nodeType":"ElementaryTypeName","src":"34081:4:64","typeDescriptions":{}}},"id":17624,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34081:11:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"src":"34068:24:64","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"id":17626,"nodeType":"ExpressionStatement","src":"34068:24:64"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17627,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17618,"src":"34106:10:64","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17628,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17615,"src":"34120:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"34106:19:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17636,"nodeType":"IfStatement","src":"34102:96:64","trueBody":{"id":17635,"nodeType":"Block","src":"34127:71:64","statements":[{"errorCall":{"arguments":[{"hexValue":"38","id":17631,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"34178:1:64","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"id":17632,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17615,"src":"34181:5:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17630,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15936,"src":"34148:29:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":17633,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34148:39:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17634,"nodeType":"RevertStatement","src":"34141:46:64"}]}}]},"documentation":{"id":17613,"nodeType":"StructuredDocumentation","src":"33681:302:64","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":17638,"implemented":true,"kind":"function","modifiers":[],"name":"toInt8","nameLocation":"33997:6:64","nodeType":"FunctionDefinition","parameters":{"id":17616,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17615,"mutability":"mutable","name":"value","nameLocation":"34011:5:64","nodeType":"VariableDeclaration","scope":17638,"src":"34004:12:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17614,"name":"int256","nodeType":"ElementaryTypeName","src":"34004:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"34003:14:64"},"returnParameters":{"id":17619,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17618,"mutability":"mutable","name":"downcasted","nameLocation":"34046:10:64","nodeType":"VariableDeclaration","scope":17638,"src":"34041:15:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"},"typeName":{"id":17617,"name":"int8","nodeType":"ElementaryTypeName","src":"34041:4:64","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"visibility":"internal"}],"src":"34040:17:64"},"scope":17679,"src":"33988:216:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17667,"nodeType":"Block","src":"34444:250:64","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17646,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17641,"src":"34557:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"expression":{"arguments":[{"id":17651,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34578:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17650,"name":"int256","nodeType":"ElementaryTypeName","src":"34578:6:64","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":17649,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"34573:4:64","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":17652,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34573:12:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_int256","typeString":"type(int256)"}},"id":17653,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"34586:3:64","memberName":"max","nodeType":"MemberAccess","src":"34573:16:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17648,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34565:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":17647,"name":"uint256","nodeType":"ElementaryTypeName","src":"34565:7:64","typeDescriptions":{}}},"id":17654,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34565:25:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"34557:33:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17661,"nodeType":"IfStatement","src":"34553:105:64","trueBody":{"id":17660,"nodeType":"Block","src":"34592:66:64","statements":[{"errorCall":{"arguments":[{"id":17657,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17641,"src":"34641:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17656,"name":"SafeCastOverflowedUintToInt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15941,"src":"34613:27:64","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":17658,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34613:34:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17659,"nodeType":"RevertStatement","src":"34606:41:64"}]}},{"expression":{"arguments":[{"id":17664,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17641,"src":"34681:5:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17663,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34674:6:64","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17662,"name":"int256","nodeType":"ElementaryTypeName","src":"34674:6:64","typeDescriptions":{}}},"id":17665,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34674:13:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":17645,"id":17666,"nodeType":"Return","src":"34667:20:64"}]},"documentation":{"id":17639,"nodeType":"StructuredDocumentation","src":"34210:165:64","text":" @dev Converts an unsigned uint256 into a signed int256.\n Requirements:\n - input must be less than or equal to maxInt256."},"id":17668,"implemented":true,"kind":"function","modifiers":[],"name":"toInt256","nameLocation":"34389:8:64","nodeType":"FunctionDefinition","parameters":{"id":17642,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17641,"mutability":"mutable","name":"value","nameLocation":"34406:5:64","nodeType":"VariableDeclaration","scope":17668,"src":"34398:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17640,"name":"uint256","nodeType":"ElementaryTypeName","src":"34398:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34397:15:64"},"returnParameters":{"id":17645,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17644,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17668,"src":"34436:6:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17643,"name":"int256","nodeType":"ElementaryTypeName","src":"34436:6:64","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"34435:8:64"},"scope":17679,"src":"34380:314:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17677,"nodeType":"Block","src":"34853:87:64","statements":[{"AST":{"nativeSrc":"34888:46:64","nodeType":"YulBlock","src":"34888:46:64","statements":[{"nativeSrc":"34902:22:64","nodeType":"YulAssignment","src":"34902:22:64","value":{"arguments":[{"arguments":[{"name":"b","nativeSrc":"34921:1:64","nodeType":"YulIdentifier","src":"34921:1:64"}],"functionName":{"name":"iszero","nativeSrc":"34914:6:64","nodeType":"YulIdentifier","src":"34914:6:64"},"nativeSrc":"34914:9:64","nodeType":"YulFunctionCall","src":"34914:9:64"}],"functionName":{"name":"iszero","nativeSrc":"34907:6:64","nodeType":"YulIdentifier","src":"34907:6:64"},"nativeSrc":"34907:17:64","nodeType":"YulFunctionCall","src":"34907:17:64"},"variableNames":[{"name":"u","nativeSrc":"34902:1:64","nodeType":"YulIdentifier","src":"34902:1:64"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":17671,"isOffset":false,"isSlot":false,"src":"34921:1:64","valueSize":1},{"declaration":17674,"isOffset":false,"isSlot":false,"src":"34902:1:64","valueSize":1}],"flags":["memory-safe"],"id":17676,"nodeType":"InlineAssembly","src":"34863:71:64"}]},"documentation":{"id":17669,"nodeType":"StructuredDocumentation","src":"34700:90:64","text":" @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump."},"id":17678,"implemented":true,"kind":"function","modifiers":[],"name":"toUint","nameLocation":"34804:6:64","nodeType":"FunctionDefinition","parameters":{"id":17672,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17671,"mutability":"mutable","name":"b","nameLocation":"34816:1:64","nodeType":"VariableDeclaration","scope":17678,"src":"34811:6:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17670,"name":"bool","nodeType":"ElementaryTypeName","src":"34811:4:64","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"34810:8:64"},"returnParameters":{"id":17675,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17674,"mutability":"mutable","name":"u","nameLocation":"34850:1:64","nodeType":"VariableDeclaration","scope":17678,"src":"34842:9:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17673,"name":"uint256","nodeType":"ElementaryTypeName","src":"34842:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34841:11:64"},"scope":17679,"src":"34795:145:64","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":17680,"src":"769:34173:64","usedErrors":[15924,15929,15936,15941],"usedEvents":[]}],"src":"192:34751:64"},"id":64},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","exportedSymbols":{"SafeCast":[17679],"SignedMath":[17823]},"id":17824,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":17681,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:65"},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./SafeCast.sol","id":17683,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":17824,"sourceUnit":17680,"src":"135:40:65","symbolAliases":[{"foreign":{"id":17682,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"143:8:65","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"SignedMath","contractDependencies":[],"contractKind":"library","documentation":{"id":17684,"nodeType":"StructuredDocumentation","src":"177:80:65","text":" @dev Standard signed math utilities missing in the Solidity language."},"fullyImplemented":true,"id":17823,"linearizedBaseContracts":[17823],"name":"SignedMath","nameLocation":"266:10:65","nodeType":"ContractDefinition","nodes":[{"body":{"id":17713,"nodeType":"Block","src":"746:215:65","statements":[{"id":17712,"nodeType":"UncheckedBlock","src":"756:199:65","statements":[{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17710,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17696,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17691,"src":"894:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17708,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17697,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17689,"src":"900:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":17698,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17691,"src":"904:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"900:5:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17700,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"899:7:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"arguments":[{"id":17705,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17687,"src":"932:9:65","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":17703,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"916:8:65","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":17704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"925:6:65","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"916:15:65","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":17706,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"916:26:65","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17702,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"909:6:65","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17701,"name":"int256","nodeType":"ElementaryTypeName","src":"909:6:65","typeDescriptions":{}}},"id":17707,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"909:34:65","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"899:44:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17709,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"898:46:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"894:50:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":17695,"id":17711,"nodeType":"Return","src":"887:57:65"}]}]},"documentation":{"id":17685,"nodeType":"StructuredDocumentation","src":"283:374:65","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":17714,"implemented":true,"kind":"function","modifiers":[],"name":"ternary","nameLocation":"671:7:65","nodeType":"FunctionDefinition","parameters":{"id":17692,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17687,"mutability":"mutable","name":"condition","nameLocation":"684:9:65","nodeType":"VariableDeclaration","scope":17714,"src":"679:14:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17686,"name":"bool","nodeType":"ElementaryTypeName","src":"679:4:65","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":17689,"mutability":"mutable","name":"a","nameLocation":"702:1:65","nodeType":"VariableDeclaration","scope":17714,"src":"695:8:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17688,"name":"int256","nodeType":"ElementaryTypeName","src":"695:6:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":17691,"mutability":"mutable","name":"b","nameLocation":"712:1:65","nodeType":"VariableDeclaration","scope":17714,"src":"705:8:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17690,"name":"int256","nodeType":"ElementaryTypeName","src":"705:6:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"678:36:65"},"returnParameters":{"id":17695,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17694,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17714,"src":"738:6:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17693,"name":"int256","nodeType":"ElementaryTypeName","src":"738:6:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"737:8:65"},"scope":17823,"src":"662:299:65","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17732,"nodeType":"Block","src":"1102:44:65","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17725,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17717,"src":"1127:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":17726,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17719,"src":"1131:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1127:5:65","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":17728,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17717,"src":"1134:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":17729,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17719,"src":"1137:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17724,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17714,"src":"1119:7:65","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (bool,int256,int256) pure returns (int256)"}},"id":17730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1119:20:65","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":17723,"id":17731,"nodeType":"Return","src":"1112:27:65"}]},"documentation":{"id":17715,"nodeType":"StructuredDocumentation","src":"967:66:65","text":" @dev Returns the largest of two signed numbers."},"id":17733,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"1047:3:65","nodeType":"FunctionDefinition","parameters":{"id":17720,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17717,"mutability":"mutable","name":"a","nameLocation":"1058:1:65","nodeType":"VariableDeclaration","scope":17733,"src":"1051:8:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17716,"name":"int256","nodeType":"ElementaryTypeName","src":"1051:6:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":17719,"mutability":"mutable","name":"b","nameLocation":"1068:1:65","nodeType":"VariableDeclaration","scope":17733,"src":"1061:8:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17718,"name":"int256","nodeType":"ElementaryTypeName","src":"1061:6:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1050:20:65"},"returnParameters":{"id":17723,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17722,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17733,"src":"1094:6:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17721,"name":"int256","nodeType":"ElementaryTypeName","src":"1094:6:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1093:8:65"},"scope":17823,"src":"1038:108:65","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17751,"nodeType":"Block","src":"1288:44:65","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17744,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17736,"src":"1313:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":17745,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17738,"src":"1317:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1313:5:65","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":17747,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17736,"src":"1320:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":17748,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17738,"src":"1323:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17743,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17714,"src":"1305:7:65","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (bool,int256,int256) pure returns (int256)"}},"id":17749,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1305:20:65","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":17742,"id":17750,"nodeType":"Return","src":"1298:27:65"}]},"documentation":{"id":17734,"nodeType":"StructuredDocumentation","src":"1152:67:65","text":" @dev Returns the smallest of two signed numbers."},"id":17752,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"1233:3:65","nodeType":"FunctionDefinition","parameters":{"id":17739,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17736,"mutability":"mutable","name":"a","nameLocation":"1244:1:65","nodeType":"VariableDeclaration","scope":17752,"src":"1237:8:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17735,"name":"int256","nodeType":"ElementaryTypeName","src":"1237:6:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":17738,"mutability":"mutable","name":"b","nameLocation":"1254:1:65","nodeType":"VariableDeclaration","scope":17752,"src":"1247:8:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17737,"name":"int256","nodeType":"ElementaryTypeName","src":"1247:6:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1236:20:65"},"returnParameters":{"id":17742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17741,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17752,"src":"1280:6:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17740,"name":"int256","nodeType":"ElementaryTypeName","src":"1280:6:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1279:8:65"},"scope":17823,"src":"1224:108:65","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17795,"nodeType":"Block","src":"1537:162:65","statements":[{"assignments":[17763],"declarations":[{"constant":false,"id":17763,"mutability":"mutable","name":"x","nameLocation":"1606:1:65","nodeType":"VariableDeclaration","scope":17795,"src":"1599:8:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17762,"name":"int256","nodeType":"ElementaryTypeName","src":"1599:6:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":17776,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17766,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17764,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17755,"src":"1611:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":17765,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17757,"src":"1615:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1611:5:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17767,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1610:7:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17773,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17768,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17755,"src":"1622:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":17769,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17757,"src":"1626:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1622:5:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17771,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1621:7:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":17772,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1632:1:65","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1621:12:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17774,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1620:14:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1610:24:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"1599:35:65"},{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17777,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17763,"src":"1651:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17791,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17785,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":17782,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17763,"src":"1671:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17781,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1663:7:65","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":17780,"name":"uint256","nodeType":"ElementaryTypeName","src":"1663:7:65","typeDescriptions":{}}},"id":17783,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1663:10:65","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":17784,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1677:3:65","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"1663:17:65","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17779,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1656:6:65","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17778,"name":"int256","nodeType":"ElementaryTypeName","src":"1656:6:65","typeDescriptions":{}}},"id":17786,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1656:25:65","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17787,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17755,"src":"1685:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":17788,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17757,"src":"1689:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1685:5:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17790,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1684:7:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1656:35:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17792,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1655:37:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1651:41:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":17761,"id":17794,"nodeType":"Return","src":"1644:48:65"}]},"documentation":{"id":17753,"nodeType":"StructuredDocumentation","src":"1338:126:65","text":" @dev Returns the average of two signed numbers without overflow.\n The result is rounded towards zero."},"id":17796,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"1478:7:65","nodeType":"FunctionDefinition","parameters":{"id":17758,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17755,"mutability":"mutable","name":"a","nameLocation":"1493:1:65","nodeType":"VariableDeclaration","scope":17796,"src":"1486:8:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17754,"name":"int256","nodeType":"ElementaryTypeName","src":"1486:6:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":17757,"mutability":"mutable","name":"b","nameLocation":"1503:1:65","nodeType":"VariableDeclaration","scope":17796,"src":"1496:8:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17756,"name":"int256","nodeType":"ElementaryTypeName","src":"1496:6:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1485:20:65"},"returnParameters":{"id":17761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17760,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17796,"src":"1529:6:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17759,"name":"int256","nodeType":"ElementaryTypeName","src":"1529:6:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1528:8:65"},"scope":17823,"src":"1469:230:65","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17821,"nodeType":"Block","src":"1843:767:65","statements":[{"id":17820,"nodeType":"UncheckedBlock","src":"1853:751:65","statements":[{"assignments":[17805],"declarations":[{"constant":false,"id":17805,"mutability":"mutable","name":"mask","nameLocation":"2424:4:65","nodeType":"VariableDeclaration","scope":17820,"src":"2417:11:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17804,"name":"int256","nodeType":"ElementaryTypeName","src":"2417:6:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":17809,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17806,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17799,"src":"2431:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":17807,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2436:3:65","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"2431:8:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"2417:22:65"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17814,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17812,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17799,"src":"2576:1:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":17813,"name":"mask","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17805,"src":"2580:4:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"2576:8:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17815,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2575:10:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":17816,"name":"mask","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17805,"src":"2588:4:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"2575:17:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17811,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2567:7:65","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":17810,"name":"uint256","nodeType":"ElementaryTypeName","src":"2567:7:65","typeDescriptions":{}}},"id":17818,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2567:26:65","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17803,"id":17819,"nodeType":"Return","src":"2560:33:65"}]}]},"documentation":{"id":17797,"nodeType":"StructuredDocumentation","src":"1705:78:65","text":" @dev Returns the absolute unsigned value of a signed value."},"id":17822,"implemented":true,"kind":"function","modifiers":[],"name":"abs","nameLocation":"1797:3:65","nodeType":"FunctionDefinition","parameters":{"id":17800,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17799,"mutability":"mutable","name":"n","nameLocation":"1808:1:65","nodeType":"VariableDeclaration","scope":17822,"src":"1801:8:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17798,"name":"int256","nodeType":"ElementaryTypeName","src":"1801:6:65","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1800:10:65"},"returnParameters":{"id":17803,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17802,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17822,"src":"1834:7:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17801,"name":"uint256","nodeType":"ElementaryTypeName","src":"1834:7:65","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1833:9:65"},"scope":17823,"src":"1788:822:65","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":17824,"src":"258:2354:65","usedErrors":[],"usedEvents":[]}],"src":"109:2504:65"},"id":65},"@openzeppelin/contracts/utils/types/Time.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","exportedSymbols":{"Math":[15914],"SafeCast":[17679],"Time":[18097]},"id":18098,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":17825,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"104:24:66"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"../math/Math.sol","id":17827,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18098,"sourceUnit":15915,"src":"130:38:66","symbolAliases":[{"foreign":{"id":17826,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"138:4:66","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../math/SafeCast.sol","id":17829,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18098,"sourceUnit":17680,"src":"169:46:66","symbolAliases":[{"foreign":{"id":17828,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"177:8:66","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Time","contractDependencies":[],"contractKind":"library","documentation":{"id":17830,"nodeType":"StructuredDocumentation","src":"217:422:66","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":18097,"linearizedBaseContracts":[18097],"name":"Time","nameLocation":"648:4:66","nodeType":"ContractDefinition","nodes":[{"global":false,"id":17832,"libraryName":{"id":17831,"name":"Time","nameLocations":["665:4:66"],"nodeType":"IdentifierPath","referencedDeclaration":18097,"src":"665:4:66"},"nodeType":"UsingForDirective","src":"659:17:66"},{"body":{"id":17844,"nodeType":"Block","src":"802:58:66","statements":[{"expression":{"arguments":[{"expression":{"id":17840,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"837:5:66","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":17841,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"843:9:66","memberName":"timestamp","nodeType":"MemberAccess","src":"837:15:66","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":17838,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"819:8:66","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":17839,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"828:8:66","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":16669,"src":"819:17:66","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":17842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"819:34:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":17837,"id":17843,"nodeType":"Return","src":"812:41:66"}]},"documentation":{"id":17833,"nodeType":"StructuredDocumentation","src":"682:63:66","text":" @dev Get the block timestamp as a Timepoint."},"id":17845,"implemented":true,"kind":"function","modifiers":[],"name":"timestamp","nameLocation":"759:9:66","nodeType":"FunctionDefinition","parameters":{"id":17834,"nodeType":"ParameterList","parameters":[],"src":"768:2:66"},"returnParameters":{"id":17837,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17836,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17845,"src":"794:6:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":17835,"name":"uint48","nodeType":"ElementaryTypeName","src":"794:6:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"793:8:66"},"scope":18097,"src":"750:110:66","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":17857,"nodeType":"Block","src":"985:55:66","statements":[{"expression":{"arguments":[{"expression":{"id":17853,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"1020:5:66","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":17854,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1026:6:66","memberName":"number","nodeType":"MemberAccess","src":"1020:12:66","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":17851,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"1002:8:66","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":17852,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1011:8:66","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":16669,"src":"1002:17:66","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":17855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1002:31:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":17850,"id":17856,"nodeType":"Return","src":"995:38:66"}]},"documentation":{"id":17846,"nodeType":"StructuredDocumentation","src":"866:60:66","text":" @dev Get the block number as a Timepoint."},"id":17858,"implemented":true,"kind":"function","modifiers":[],"name":"blockNumber","nameLocation":"940:11:66","nodeType":"FunctionDefinition","parameters":{"id":17847,"nodeType":"ParameterList","parameters":[],"src":"951:2:66"},"returnParameters":{"id":17850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17849,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17858,"src":"977:6:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":17848,"name":"uint48","nodeType":"ElementaryTypeName","src":"977:6:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"976:8:66"},"scope":18097,"src":"931:109:66","stateMutability":"view","virtual":false,"visibility":"internal"},{"canonicalName":"Time.Delay","id":17860,"name":"Delay","nameLocation":"2376:5:66","nodeType":"UserDefinedValueTypeDefinition","src":"2371:22:66","underlyingType":{"id":17859,"name":"uint112","nodeType":"ElementaryTypeName","src":"2385:7:66","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}},{"body":{"id":17874,"nodeType":"Block","src":"2571:44:66","statements":[{"expression":{"arguments":[{"id":17871,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17863,"src":"2599:8:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":17869,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17860,"src":"2588:5:66","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$17860_$","typeString":"type(Time.Delay)"}},"id":17870,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2594:4:66","memberName":"wrap","nodeType":"MemberAccess","src":"2588:10:66","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint112_$returns$_t_userDefinedValueType$_Delay_$17860_$","typeString":"function (uint112) pure returns (Time.Delay)"}},"id":17872,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2588:20:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"functionReturnParameters":17868,"id":17873,"nodeType":"Return","src":"2581:27:66"}]},"documentation":{"id":17861,"nodeType":"StructuredDocumentation","src":"2399:103:66","text":" @dev Wrap a duration into a Delay to add the one-step \"update in the future\" feature"},"id":17875,"implemented":true,"kind":"function","modifiers":[],"name":"toDelay","nameLocation":"2516:7:66","nodeType":"FunctionDefinition","parameters":{"id":17864,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17863,"mutability":"mutable","name":"duration","nameLocation":"2531:8:66","nodeType":"VariableDeclaration","scope":17875,"src":"2524:15:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":17862,"name":"uint32","nodeType":"ElementaryTypeName","src":"2524:6:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2523:17:66"},"returnParameters":{"id":17868,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17867,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17875,"src":"2564:5:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"},"typeName":{"id":17866,"nodeType":"UserDefinedTypeName","pathNode":{"id":17865,"name":"Delay","nameLocations":["2564:5:66"],"nodeType":"IdentifierPath","referencedDeclaration":17860,"src":"2564:5:66"},"referencedDeclaration":17860,"src":"2564:5:66","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"2563:7:66"},"scope":18097,"src":"2507:108:66","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17912,"nodeType":"Block","src":"3015:159:66","statements":[{"expression":{"id":17897,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":17890,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17884,"src":"3026:11:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":17891,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17886,"src":"3039:10:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":17892,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17888,"src":"3051:6:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":17893,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"3025:33:66","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":17894,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17879,"src":"3061:4:66","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"id":17895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3066:6:66","memberName":"unpack","nodeType":"MemberAccess","referencedDeclaration":18058,"src":"3061:11:66","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$17860_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$17860_$","typeString":"function (Time.Delay) pure returns (uint32,uint32,uint48)"}},"id":17896,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3061:13:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"src":"3025:49:66","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17898,"nodeType":"ExpressionStatement","src":"3025:49:66"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":17901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17899,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17888,"src":"3091:6:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":17900,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17881,"src":"3101:9:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"3091:19:66","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"id":17906,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17884,"src":"3135:11:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":17907,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17886,"src":"3148:10:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":17908,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17888,"src":"3160:6:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":17909,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3134:33:66","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"id":17910,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3091:76:66","trueExpression":{"components":[{"id":17902,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17886,"src":"3114:10:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":17903,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3126:1:66","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":17904,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3129:1:66","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":17905,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3113:18:66","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":17889,"id":17911,"nodeType":"Return","src":"3084:83:66"}]},"documentation":{"id":17876,"nodeType":"StructuredDocumentation","src":"2621:241:66","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":17913,"implemented":true,"kind":"function","modifiers":[],"name":"_getFullAt","nameLocation":"2876:10:66","nodeType":"FunctionDefinition","parameters":{"id":17882,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17879,"mutability":"mutable","name":"self","nameLocation":"2902:4:66","nodeType":"VariableDeclaration","scope":17913,"src":"2896:10:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"},"typeName":{"id":17878,"nodeType":"UserDefinedTypeName","pathNode":{"id":17877,"name":"Delay","nameLocations":["2896:5:66"],"nodeType":"IdentifierPath","referencedDeclaration":17860,"src":"2896:5:66"},"referencedDeclaration":17860,"src":"2896:5:66","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":17881,"mutability":"mutable","name":"timepoint","nameLocation":"2923:9:66","nodeType":"VariableDeclaration","scope":17913,"src":"2916:16:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":17880,"name":"uint48","nodeType":"ElementaryTypeName","src":"2916:6:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2886:52:66"},"returnParameters":{"id":17889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17884,"mutability":"mutable","name":"valueBefore","nameLocation":"2968:11:66","nodeType":"VariableDeclaration","scope":17913,"src":"2961:18:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":17883,"name":"uint32","nodeType":"ElementaryTypeName","src":"2961:6:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":17886,"mutability":"mutable","name":"valueAfter","nameLocation":"2988:10:66","nodeType":"VariableDeclaration","scope":17913,"src":"2981:17:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":17885,"name":"uint32","nodeType":"ElementaryTypeName","src":"2981:6:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":17888,"mutability":"mutable","name":"effect","nameLocation":"3007:6:66","nodeType":"VariableDeclaration","scope":17913,"src":"3000:13:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":17887,"name":"uint48","nodeType":"ElementaryTypeName","src":"3000:6:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2960:54:66"},"scope":18097,"src":"2867:307:66","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":17932,"nodeType":"Block","src":"3498:53:66","statements":[{"expression":{"arguments":[{"id":17927,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17917,"src":"3526:4:66","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},{"arguments":[],"expression":{"argumentTypes":[],"id":17928,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17845,"src":"3532:9:66","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":17929,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3532:11:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":17926,"name":"_getFullAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17913,"src":"3515:10:66","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$17860_$_t_uint48_$returns$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"function (Time.Delay,uint48) pure returns (uint32,uint32,uint48)"}},"id":17930,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3515:29:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":17925,"id":17931,"nodeType":"Return","src":"3508:36:66"}]},"documentation":{"id":17914,"nodeType":"StructuredDocumentation","src":"3180:207:66","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":17933,"implemented":true,"kind":"function","modifiers":[],"name":"getFull","nameLocation":"3401:7:66","nodeType":"FunctionDefinition","parameters":{"id":17918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17917,"mutability":"mutable","name":"self","nameLocation":"3415:4:66","nodeType":"VariableDeclaration","scope":17933,"src":"3409:10:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"},"typeName":{"id":17916,"nodeType":"UserDefinedTypeName","pathNode":{"id":17915,"name":"Delay","nameLocations":["3409:5:66"],"nodeType":"IdentifierPath","referencedDeclaration":17860,"src":"3409:5:66"},"referencedDeclaration":17860,"src":"3409:5:66","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"3408:12:66"},"returnParameters":{"id":17925,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17920,"mutability":"mutable","name":"valueBefore","nameLocation":"3451:11:66","nodeType":"VariableDeclaration","scope":17933,"src":"3444:18:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":17919,"name":"uint32","nodeType":"ElementaryTypeName","src":"3444:6:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":17922,"mutability":"mutable","name":"valueAfter","nameLocation":"3471:10:66","nodeType":"VariableDeclaration","scope":17933,"src":"3464:17:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":17921,"name":"uint32","nodeType":"ElementaryTypeName","src":"3464:6:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":17924,"mutability":"mutable","name":"effect","nameLocation":"3490:6:66","nodeType":"VariableDeclaration","scope":17933,"src":"3483:13:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":17923,"name":"uint48","nodeType":"ElementaryTypeName","src":"3483:6:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"3443:54:66"},"scope":18097,"src":"3392:159:66","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":17950,"nodeType":"Block","src":"3664:74:66","statements":[{"assignments":[17943,null,null],"declarations":[{"constant":false,"id":17943,"mutability":"mutable","name":"delay","nameLocation":"3682:5:66","nodeType":"VariableDeclaration","scope":17950,"src":"3675:12:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":17942,"name":"uint32","nodeType":"ElementaryTypeName","src":"3675:6:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},null,null],"id":17947,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":17944,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17937,"src":"3695:4:66","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"id":17945,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3700:7:66","memberName":"getFull","nodeType":"MemberAccess","referencedDeclaration":17933,"src":"3695:12:66","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$17860_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$17860_$","typeString":"function (Time.Delay) view returns (uint32,uint32,uint48)"}},"id":17946,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3695:14:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"VariableDeclarationStatement","src":"3674:35:66"},{"expression":{"id":17948,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17943,"src":"3726:5:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":17941,"id":17949,"nodeType":"Return","src":"3719:12:66"}]},"documentation":{"id":17934,"nodeType":"StructuredDocumentation","src":"3557:46:66","text":" @dev Get the current value."},"id":17951,"implemented":true,"kind":"function","modifiers":[],"name":"get","nameLocation":"3617:3:66","nodeType":"FunctionDefinition","parameters":{"id":17938,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17937,"mutability":"mutable","name":"self","nameLocation":"3627:4:66","nodeType":"VariableDeclaration","scope":17951,"src":"3621:10:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"},"typeName":{"id":17936,"nodeType":"UserDefinedTypeName","pathNode":{"id":17935,"name":"Delay","nameLocations":["3621:5:66"],"nodeType":"IdentifierPath","referencedDeclaration":17860,"src":"3621:5:66"},"referencedDeclaration":17860,"src":"3621:5:66","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"3620:12:66"},"returnParameters":{"id":17941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17940,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17951,"src":"3656:6:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":17939,"name":"uint32","nodeType":"ElementaryTypeName","src":"3656:6:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"3655:8:66"},"scope":18097,"src":"3608:130:66","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":18006,"nodeType":"Block","src":"4188:234:66","statements":[{"assignments":[17968],"declarations":[{"constant":false,"id":17968,"mutability":"mutable","name":"value","nameLocation":"4205:5:66","nodeType":"VariableDeclaration","scope":18006,"src":"4198:12:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":17967,"name":"uint32","nodeType":"ElementaryTypeName","src":"4198:6:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":17972,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":17969,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17955,"src":"4213:4:66","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"id":17970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4218:3:66","memberName":"get","nodeType":"MemberAccess","referencedDeclaration":17951,"src":"4213:8:66","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$17860_$returns$_t_uint32_$attached_to$_t_userDefinedValueType$_Delay_$17860_$","typeString":"function (Time.Delay) view returns (uint32)"}},"id":17971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4213:10:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"4198:25:66"},{"assignments":[17974],"declarations":[{"constant":false,"id":17974,"mutability":"mutable","name":"setback","nameLocation":"4240:7:66","nodeType":"VariableDeclaration","scope":18006,"src":"4233:14:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":17973,"name":"uint32","nodeType":"ElementaryTypeName","src":"4233:6:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":17990,"initialValue":{"arguments":[{"arguments":[{"id":17979,"name":"minSetback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17959,"src":"4266:10:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":17982,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17980,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17968,"src":"4278:5:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":17981,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17957,"src":"4286:8:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4278:16:66","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":17986,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4316:1:66","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":17987,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4278:39:66","trueExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":17985,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17983,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17968,"src":"4297:5:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":17984,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17957,"src":"4305:8:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4297:16:66","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":17977,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"4257:4:66","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":17978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4262:3:66","memberName":"max","nodeType":"MemberAccess","referencedDeclaration":14580,"src":"4257:8:66","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":17988,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4257:61:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17976,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4250:6:66","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":17975,"name":"uint32","nodeType":"ElementaryTypeName","src":"4250:6:66","typeDescriptions":{}}},"id":17989,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4250:69:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"4233:86:66"},{"expression":{"id":17996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17991,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17965,"src":"4329:6:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":17995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":17992,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17845,"src":"4338:9:66","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":17993,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4338:11:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":17994,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17974,"src":"4352:7:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4338:21:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"4329:30:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":17997,"nodeType":"ExpressionStatement","src":"4329:30:66"},{"expression":{"components":[{"arguments":[{"id":17999,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17968,"src":"4382:5:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":18000,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17957,"src":"4389:8:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":18001,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17965,"src":"4399:6:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":17998,"name":"pack","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18096,"src":"4377:4:66","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint48_$returns$_t_userDefinedValueType$_Delay_$17860_$","typeString":"function (uint32,uint32,uint48) pure returns (Time.Delay)"}},"id":18002,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4377:29:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},{"id":18003,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17965,"src":"4408:6:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":18004,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4376:39:66","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$17860_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"functionReturnParameters":17966,"id":18005,"nodeType":"Return","src":"4369:46:66"}]},"documentation":{"id":17952,"nodeType":"StructuredDocumentation","src":"3744:283:66","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":18007,"implemented":true,"kind":"function","modifiers":[],"name":"withUpdate","nameLocation":"4041:10:66","nodeType":"FunctionDefinition","parameters":{"id":17960,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17955,"mutability":"mutable","name":"self","nameLocation":"4067:4:66","nodeType":"VariableDeclaration","scope":18007,"src":"4061:10:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"},"typeName":{"id":17954,"nodeType":"UserDefinedTypeName","pathNode":{"id":17953,"name":"Delay","nameLocations":["4061:5:66"],"nodeType":"IdentifierPath","referencedDeclaration":17860,"src":"4061:5:66"},"referencedDeclaration":17860,"src":"4061:5:66","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":17957,"mutability":"mutable","name":"newValue","nameLocation":"4088:8:66","nodeType":"VariableDeclaration","scope":18007,"src":"4081:15:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":17956,"name":"uint32","nodeType":"ElementaryTypeName","src":"4081:6:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":17959,"mutability":"mutable","name":"minSetback","nameLocation":"4113:10:66","nodeType":"VariableDeclaration","scope":18007,"src":"4106:17:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":17958,"name":"uint32","nodeType":"ElementaryTypeName","src":"4106:6:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"4051:78:66"},"returnParameters":{"id":17966,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17963,"mutability":"mutable","name":"updatedDelay","nameLocation":"4159:12:66","nodeType":"VariableDeclaration","scope":18007,"src":"4153:18:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"},"typeName":{"id":17962,"nodeType":"UserDefinedTypeName","pathNode":{"id":17961,"name":"Delay","nameLocations":["4153:5:66"],"nodeType":"IdentifierPath","referencedDeclaration":17860,"src":"4153:5:66"},"referencedDeclaration":17860,"src":"4153:5:66","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":17965,"mutability":"mutable","name":"effect","nameLocation":"4180:6:66","nodeType":"VariableDeclaration","scope":18007,"src":"4173:13:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":17964,"name":"uint48","nodeType":"ElementaryTypeName","src":"4173:6:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4152:35:66"},"scope":18097,"src":"4032:390:66","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":18057,"nodeType":"Block","src":"4655:212:66","statements":[{"assignments":[18021],"declarations":[{"constant":false,"id":18021,"mutability":"mutable","name":"raw","nameLocation":"4673:3:66","nodeType":"VariableDeclaration","scope":18057,"src":"4665:11:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":18020,"name":"uint112","nodeType":"ElementaryTypeName","src":"4665:7:66","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"}],"id":18026,"initialValue":{"arguments":[{"id":18024,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18011,"src":"4692:4:66","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}],"expression":{"id":18022,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17860,"src":"4679:5:66","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$17860_$","typeString":"type(Time.Delay)"}},"id":18023,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4685:6:66","memberName":"unwrap","nodeType":"MemberAccess","src":"4679:12:66","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Delay_$17860_$returns$_t_uint112_$","typeString":"function (Time.Delay) pure returns (uint112)"}},"id":18025,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4679:18:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"VariableDeclarationStatement","src":"4665:32:66"},{"expression":{"id":18032,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18027,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18016,"src":"4708:10:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":18030,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18021,"src":"4728:3:66","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":18029,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4721:6:66","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":18028,"name":"uint32","nodeType":"ElementaryTypeName","src":"4721:6:66","typeDescriptions":{}}},"id":18031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4721:11:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4708:24:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":18033,"nodeType":"ExpressionStatement","src":"4708:24:66"},{"expression":{"id":18041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18034,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18014,"src":"4742:11:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":18039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18037,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18021,"src":"4763:3:66","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":18038,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4770:2:66","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"4763:9:66","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":18036,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4756:6:66","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":18035,"name":"uint32","nodeType":"ElementaryTypeName","src":"4756:6:66","typeDescriptions":{}}},"id":18040,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4756:17:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4742:31:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":18042,"nodeType":"ExpressionStatement","src":"4742:31:66"},{"expression":{"id":18050,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18043,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18018,"src":"4783:6:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":18048,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18046,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18021,"src":"4799:3:66","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":18047,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4806:2:66","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"4799:9:66","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":18045,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4792:6:66","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":18044,"name":"uint48","nodeType":"ElementaryTypeName","src":"4792:6:66","typeDescriptions":{}}},"id":18049,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4792:17:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"4783:26:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":18051,"nodeType":"ExpressionStatement","src":"4783:26:66"},{"expression":{"components":[{"id":18052,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18014,"src":"4828:11:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":18053,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18016,"src":"4841:10:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":18054,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18018,"src":"4853:6:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":18055,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4827:33:66","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":18019,"id":18056,"nodeType":"Return","src":"4820:40:66"}]},"documentation":{"id":18008,"nodeType":"StructuredDocumentation","src":"4428:117:66","text":" @dev Split a delay into its components: valueBefore, valueAfter and effect (transition timepoint)."},"id":18058,"implemented":true,"kind":"function","modifiers":[],"name":"unpack","nameLocation":"4559:6:66","nodeType":"FunctionDefinition","parameters":{"id":18012,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18011,"mutability":"mutable","name":"self","nameLocation":"4572:4:66","nodeType":"VariableDeclaration","scope":18058,"src":"4566:10:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"},"typeName":{"id":18010,"nodeType":"UserDefinedTypeName","pathNode":{"id":18009,"name":"Delay","nameLocations":["4566:5:66"],"nodeType":"IdentifierPath","referencedDeclaration":17860,"src":"4566:5:66"},"referencedDeclaration":17860,"src":"4566:5:66","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"4565:12:66"},"returnParameters":{"id":18019,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18014,"mutability":"mutable","name":"valueBefore","nameLocation":"4608:11:66","nodeType":"VariableDeclaration","scope":18058,"src":"4601:18:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":18013,"name":"uint32","nodeType":"ElementaryTypeName","src":"4601:6:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":18016,"mutability":"mutable","name":"valueAfter","nameLocation":"4628:10:66","nodeType":"VariableDeclaration","scope":18058,"src":"4621:17:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":18015,"name":"uint32","nodeType":"ElementaryTypeName","src":"4621:6:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":18018,"mutability":"mutable","name":"effect","nameLocation":"4647:6:66","nodeType":"VariableDeclaration","scope":18058,"src":"4640:13:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":18017,"name":"uint48","nodeType":"ElementaryTypeName","src":"4640:6:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4600:54:66"},"scope":18097,"src":"4550:317:66","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18095,"nodeType":"Block","src":"5040:112:66","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":18092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":18087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":18078,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":18075,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18065,"src":"5077:6:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":18074,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5069:7:66","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":18073,"name":"uint112","nodeType":"ElementaryTypeName","src":"5069:7:66","typeDescriptions":{}}},"id":18076,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5069:15:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":18077,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5088:2:66","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"5069:21:66","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"id":18079,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5068:23:66","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":18085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":18082,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18061,"src":"5103:11:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":18081,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5095:7:66","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":18080,"name":"uint112","nodeType":"ElementaryTypeName","src":"5095:7:66","typeDescriptions":{}}},"id":18083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5095:20:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":18084,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5119:2:66","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"5095:26:66","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"id":18086,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5094:28:66","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"5068:54:66","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"id":18090,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18063,"src":"5133:10:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":18089,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5125:7:66","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":18088,"name":"uint112","nodeType":"ElementaryTypeName","src":"5125:7:66","typeDescriptions":{}}},"id":18091,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5125:19:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"5068:76:66","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"expression":{"id":18071,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17860,"src":"5057:5:66","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$17860_$","typeString":"type(Time.Delay)"}},"id":18072,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5063:4:66","memberName":"wrap","nodeType":"MemberAccess","src":"5057:10:66","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint112_$returns$_t_userDefinedValueType$_Delay_$17860_$","typeString":"function (uint112) pure returns (Time.Delay)"}},"id":18093,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5057:88:66","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"functionReturnParameters":18070,"id":18094,"nodeType":"Return","src":"5050:95:66"}]},"documentation":{"id":18059,"nodeType":"StructuredDocumentation","src":"4873:64:66","text":" @dev pack the components into a Delay object."},"id":18096,"implemented":true,"kind":"function","modifiers":[],"name":"pack","nameLocation":"4951:4:66","nodeType":"FunctionDefinition","parameters":{"id":18066,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18061,"mutability":"mutable","name":"valueBefore","nameLocation":"4963:11:66","nodeType":"VariableDeclaration","scope":18096,"src":"4956:18:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":18060,"name":"uint32","nodeType":"ElementaryTypeName","src":"4956:6:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":18063,"mutability":"mutable","name":"valueAfter","nameLocation":"4983:10:66","nodeType":"VariableDeclaration","scope":18096,"src":"4976:17:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":18062,"name":"uint32","nodeType":"ElementaryTypeName","src":"4976:6:66","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":18065,"mutability":"mutable","name":"effect","nameLocation":"5002:6:66","nodeType":"VariableDeclaration","scope":18096,"src":"4995:13:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":18064,"name":"uint48","nodeType":"ElementaryTypeName","src":"4995:6:66","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4955:54:66"},"returnParameters":{"id":18070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18069,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18096,"src":"5033:5:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"},"typeName":{"id":18068,"nodeType":"UserDefinedTypeName","pathNode":{"id":18067,"name":"Delay","nameLocations":["5033:5:66"],"nodeType":"IdentifierPath","referencedDeclaration":17860,"src":"5033:5:66"},"referencedDeclaration":17860,"src":"5033:5:66","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$17860","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"5032:7:66"},"scope":18097,"src":"4942:210:66","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":18098,"src":"640:4514:66","usedErrors":[],"usedEvents":[]}],"src":"104:5051:66"},"id":66},"contracts/Cooler.sol":{"ast":{"absolutePath":"contracts/Cooler.sol","exportedSymbols":{"Cooler":[18833],"ERC721Upgradeable":[2864],"ETKLib":[19809],"ICooler":[28695],"IERC165":[14272],"IERC20":[7977],"IERC20Permit":[8899],"IEToken":[28869],"IPolicyPool":[29171],"Math":[15914],"PolicyPool":[25449],"PolicyPoolComponent":[25609],"SafeCast":[17679],"SafeERC20":[9354]},"id":18834,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":18099,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:67"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":18101,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18834,"sourceUnit":14273,"src":"65:80:67","symbolAliases":[{"foreign":{"id":18100,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"73:7:67","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","file":"@openzeppelin/contracts/interfaces/IERC20.sol","id":18103,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18834,"sourceUnit":6231,"src":"146:69:67","symbolAliases":[{"foreign":{"id":18102,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"154:6:67","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","id":18105,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18834,"sourceUnit":8900,"src":"216:93:67","symbolAliases":[{"foreign":{"id":18104,"name":"IERC20Permit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8899,"src":"224:12:67","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol","file":"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol","id":18107,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18834,"sourceUnit":2865,"src":"310:105:67","symbolAliases":[{"foreign":{"id":18106,"name":"ERC721Upgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2864,"src":"318:17:67","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":18109,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18834,"sourceUnit":9355,"src":"416:82:67","symbolAliases":[{"foreign":{"id":18108,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9354,"src":"424:9:67","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"@openzeppelin/contracts/utils/math/SafeCast.sol","id":18111,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18834,"sourceUnit":17680,"src":"499:73:67","symbolAliases":[{"foreign":{"id":18110,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"507:8:67","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"@openzeppelin/contracts/utils/math/Math.sol","id":18113,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18834,"sourceUnit":15915,"src":"573:65:67","symbolAliases":[{"foreign":{"id":18112,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"581:4:67","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/PolicyPoolComponent.sol","file":"./PolicyPoolComponent.sol","id":18115,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18834,"sourceUnit":25610,"src":"639:62:67","symbolAliases":[{"foreign":{"id":18114,"name":"PolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25609,"src":"647:19:67","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/ICooler.sol","file":"./interfaces/ICooler.sol","id":18117,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18834,"sourceUnit":28696,"src":"702:49:67","symbolAliases":[{"foreign":{"id":18116,"name":"ICooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28695,"src":"710:7:67","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IEToken.sol","file":"./interfaces/IEToken.sol","id":18119,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18834,"sourceUnit":28870,"src":"752:49:67","symbolAliases":[{"foreign":{"id":18118,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28869,"src":"760:7:67","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyPool.sol","file":"./interfaces/IPolicyPool.sol","id":18121,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18834,"sourceUnit":29172,"src":"802:57:67","symbolAliases":[{"foreign":{"id":18120,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"810:11:67","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/PolicyPool.sol","file":"./PolicyPool.sol","id":18123,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18834,"sourceUnit":25450,"src":"860:44:67","symbolAliases":[{"foreign":{"id":18122,"name":"PolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25449,"src":"868:10:67","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/ETKLib.sol","file":"./ETKLib.sol","id":18125,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18834,"sourceUnit":19810,"src":"905:36:67","symbolAliases":[{"foreign":{"id":18124,"name":"ETKLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19809,"src":"913:6:67","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":18127,"name":"ICooler","nameLocations":["1759:7:67"],"nodeType":"IdentifierPath","referencedDeclaration":28695,"src":"1759:7:67"},"id":18128,"nodeType":"InheritanceSpecifier","src":"1759:7:67"},{"baseName":{"id":18129,"name":"PolicyPoolComponent","nameLocations":["1768:19:67"],"nodeType":"IdentifierPath","referencedDeclaration":25609,"src":"1768:19:67"},"id":18130,"nodeType":"InheritanceSpecifier","src":"1768:19:67"},{"baseName":{"id":18131,"name":"ERC721Upgradeable","nameLocations":["1789:17:67"],"nodeType":"IdentifierPath","referencedDeclaration":2864,"src":"1789:17:67"},"id":18132,"nodeType":"InheritanceSpecifier","src":"1789:17:67"}],"canonicalName":"Cooler","contractDependencies":[],"contractKind":"contract","documentation":{"id":18126,"nodeType":"StructuredDocumentation","src":"943:796:67","text":" @title Cooler contract\n @notice This contract handles the cooldown required before withdrawal of eTokens\n @dev For each withdrawal position it mints an NFT. The owner of the NFT is who receives the funds when the\n withdrawal is executed. The value of the eTokens at the execution time can be higher or lower than the value\n of the eTokens when the withdrawal was scheduled, due to earnings and losses during the cooldown period. If the\n resulting amount is lower, the LP (owner of the NFT) will receive less. If the value is higher than the value at\n the schedule period, the LP will receive ONLY the value at the schedule time, and the difference will be\n distributed to the remaining LPs of the token.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":18833,"linearizedBaseContracts":[18833,2864,6525,9517,9471,3668,25609,29188,14272,2910,7384,6435,7218,28695],"name":"Cooler","nameLocation":"1749:6:67","nodeType":"ContractDefinition","nodes":[{"global":false,"id":18136,"libraryName":{"id":18133,"name":"SafeERC20","nameLocations":["1817:9:67"],"nodeType":"IdentifierPath","referencedDeclaration":9354,"src":"1817:9:67"},"nodeType":"UsingForDirective","src":"1811:27:67","typeName":{"id":18135,"nodeType":"UserDefinedTypeName","pathNode":{"id":18134,"name":"IERC20","nameLocations":["1831:6:67"],"nodeType":"IdentifierPath","referencedDeclaration":7977,"src":"1831:6:67"},"referencedDeclaration":7977,"src":"1831:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}}},{"global":false,"id":18139,"libraryName":{"id":18137,"name":"SafeCast","nameLocations":["1847:8:67"],"nodeType":"IdentifierPath","referencedDeclaration":17679,"src":"1847:8:67"},"nodeType":"UsingForDirective","src":"1841:27:67","typeName":{"id":18138,"name":"uint256","nodeType":"ElementaryTypeName","src":"1860:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"global":false,"id":18142,"libraryName":{"id":18140,"name":"Math","nameLocations":["1877:4:67"],"nodeType":"IdentifierPath","referencedDeclaration":15914,"src":"1877:4:67"},"nodeType":"UsingForDirective","src":"1871:23:67","typeName":{"id":18141,"name":"uint256","nodeType":"ElementaryTypeName","src":"1886:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"canonicalName":"Cooler.WithdrawalRequest","documentation":{"id":18143,"nodeType":"StructuredDocumentation","src":"1898:204:67","text":" @notice Struct to store info about the withdrawal request\n @dev There's one of this for each request (each NFT). It contains the request amount and the request time\n and expiration."},"id":18156,"members":[{"constant":false,"id":18146,"mutability":"mutable","name":"scaleAtRequest","nameLocation":"2149:14:67","nodeType":"VariableDeclaration","scope":18156,"src":"2136:27:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":18145,"nodeType":"UserDefinedTypeName","pathNode":{"id":18144,"name":"ETKLib.Scale","nameLocations":["2136:6:67","2143:5:67"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"2136:12:67"},"referencedDeclaration":18847,"src":"2136:12:67","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":18149,"mutability":"mutable","name":"etk","nameLocation":"2236:3:67","nodeType":"VariableDeclaration","scope":18156,"src":"2228:11:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":18148,"nodeType":"UserDefinedTypeName","pathNode":{"id":18147,"name":"IEToken","nameLocations":["2228:7:67"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"2228:7:67"},"referencedDeclaration":28869,"src":"2228:7:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":18151,"mutability":"mutable","name":"requestedAmount","nameLocation":"2293:15:67","nodeType":"VariableDeclaration","scope":18156,"src":"2285:23:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":18150,"name":"uint128","nodeType":"ElementaryTypeName","src":"2285:7:67","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":18153,"mutability":"mutable","name":"requestedAt","nameLocation":"2352:11:67","nodeType":"VariableDeclaration","scope":18156,"src":"2345:18:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":18152,"name":"uint40","nodeType":"ElementaryTypeName","src":"2345:6:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":18155,"mutability":"mutable","name":"expiration","nameLocation":"2423:10:67","nodeType":"VariableDeclaration","scope":18156,"src":"2416:17:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":18154,"name":"uint40","nodeType":"ElementaryTypeName","src":"2416:6:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"name":"WithdrawalRequest","nameLocation":"2112:17:67","nodeType":"StructDefinition","scope":18833,"src":"2105:382:67","visibility":"public"},{"constant":false,"documentation":{"id":18157,"nodeType":"StructuredDocumentation","src":"2491:51:67","text":"@notice Mapping with the WithdrawalRequest info"},"id":18162,"mutability":"mutable","name":"_withdrawalRequests","nameLocation":"2592:19:67","nodeType":"VariableDeclaration","scope":18833,"src":"2545:66:67","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_WithdrawalRequest_$18156_storage_$","typeString":"mapping(uint256 => struct Cooler.WithdrawalRequest)"},"typeName":{"id":18161,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":18158,"name":"uint256","nodeType":"ElementaryTypeName","src":"2553:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2545:37:67","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_WithdrawalRequest_$18156_storage_$","typeString":"mapping(uint256 => struct Cooler.WithdrawalRequest)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":18160,"nodeType":"UserDefinedTypeName","pathNode":{"id":18159,"name":"WithdrawalRequest","nameLocations":["2564:17:67"],"nodeType":"IdentifierPath","referencedDeclaration":18156,"src":"2564:17:67"},"referencedDeclaration":18156,"src":"2564:17:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest"}}},"visibility":"internal"},{"constant":false,"documentation":{"id":18163,"nodeType":"StructuredDocumentation","src":"2616:73:67","text":"@notice Mapping with the cooldown period (in seconds) for each eToken"},"id":18168,"mutability":"mutable","name":"_cooldownPeriods","nameLocation":"2728:16:67","nodeType":"VariableDeclaration","scope":18833,"src":"2692:52:67","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IEToken_$28869_$_t_uint40_$","typeString":"mapping(contract IEToken => uint40)"},"typeName":{"id":18167,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":18165,"nodeType":"UserDefinedTypeName","pathNode":{"id":18164,"name":"IEToken","nameLocations":["2700:7:67"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"2700:7:67"},"referencedDeclaration":28869,"src":"2700:7:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"nodeType":"Mapping","src":"2692:26:67","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IEToken_$28869_$_t_uint40_$","typeString":"mapping(contract IEToken => uint40)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":18166,"name":"uint40","nodeType":"ElementaryTypeName","src":"2711:6:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}},"visibility":"internal"},{"constant":false,"documentation":{"id":18169,"nodeType":"StructuredDocumentation","src":"2749:79:67","text":"@notice Mapping with the aggregate amount of pending withdrawals per eToken"},"id":18174,"mutability":"mutable","name":"_pendingWithdrawals","nameLocation":"2868:19:67","nodeType":"VariableDeclaration","scope":18833,"src":"2831:56:67","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IEToken_$28869_$_t_uint256_$","typeString":"mapping(contract IEToken => uint256)"},"typeName":{"id":18173,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":18171,"nodeType":"UserDefinedTypeName","pathNode":{"id":18170,"name":"IEToken","nameLocations":["2839:7:67"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"2839:7:67"},"referencedDeclaration":28869,"src":"2839:7:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"nodeType":"Mapping","src":"2831:27:67","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IEToken_$28869_$_t_uint256_$","typeString":"mapping(contract IEToken => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":18172,"name":"uint256","nodeType":"ElementaryTypeName","src":"2850:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"documentation":{"id":18175,"nodeType":"StructuredDocumentation","src":"2892:57:67","text":"@notice It used for the withdrawal NFTs, starts at 1."},"id":18177,"mutability":"mutable","name":"_nextTokenId","nameLocation":"2969:12:67","nodeType":"VariableDeclaration","scope":18833,"src":"2952:29:67","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18176,"name":"uint256","nodeType":"ElementaryTypeName","src":"2952:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"anonymous":false,"documentation":{"id":18178,"nodeType":"StructuredDocumentation","src":"2986:318:67","text":" @notice Event emitted when the cooldown period is changed\n @param eToken The EToken contract address for which the cooldown period was modified\n @param oldCooldownPeriod The previous cooldown period value (in seconds)\n @param newCooldownPeriod The new cooldown period value (in seconds)"},"eventSelector":"08dfa5493c453115ee7c83f7c1ecb7bf389adaaeade84190f2a6dca91ccaabbd","id":18187,"name":"CooldownPeriodChanged","nameLocation":"3313:21:67","nodeType":"EventDefinition","parameters":{"id":18186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18181,"indexed":true,"mutability":"mutable","name":"eToken","nameLocation":"3351:6:67","nodeType":"VariableDeclaration","scope":18187,"src":"3335:22:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":18180,"nodeType":"UserDefinedTypeName","pathNode":{"id":18179,"name":"IEToken","nameLocations":["3335:7:67"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"3335:7:67"},"referencedDeclaration":28869,"src":"3335:7:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":18183,"indexed":false,"mutability":"mutable","name":"oldCooldownPeriod","nameLocation":"3366:17:67","nodeType":"VariableDeclaration","scope":18187,"src":"3359:24:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":18182,"name":"uint40","nodeType":"ElementaryTypeName","src":"3359:6:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":18185,"indexed":false,"mutability":"mutable","name":"newCooldownPeriod","nameLocation":"3392:17:67","nodeType":"VariableDeclaration","scope":18187,"src":"3385:24:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":18184,"name":"uint40","nodeType":"ElementaryTypeName","src":"3385:6:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"3334:76:67"},"src":"3307:104:67"},{"anonymous":false,"documentation":{"id":18188,"nodeType":"StructuredDocumentation","src":"3415:541:67","text":" @notice Event emitted when a withdrawal is requested\n @param eToken The EToken contract from which the withdrawal is being requested\n @param tokenId The NFT id of the withdrawal position created\n @param owner The owner initiating the withdrawal request\n @param when The timestamp when the withdrawal can be executed\n @param scaleAtRequest The token scale (see {EToken.getCurrentScale(true)}) at the time of the withdrawal request\n @param amount The amount of eTokens being requested for withdrawal"},"eventSelector":"eb35eeca4c5d42d89fa3326185659928510d45c4e520668ad306241d7e288315","id":18204,"name":"WithdrawalRequested","nameLocation":"3965:19:67","nodeType":"EventDefinition","parameters":{"id":18203,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18191,"indexed":true,"mutability":"mutable","name":"eToken","nameLocation":"4006:6:67","nodeType":"VariableDeclaration","scope":18204,"src":"3990:22:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":18190,"nodeType":"UserDefinedTypeName","pathNode":{"id":18189,"name":"IEToken","nameLocations":["3990:7:67"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"3990:7:67"},"referencedDeclaration":28869,"src":"3990:7:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":18193,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"4034:7:67","nodeType":"VariableDeclaration","scope":18204,"src":"4018:23:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18192,"name":"uint256","nodeType":"ElementaryTypeName","src":"4018:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18195,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"4063:5:67","nodeType":"VariableDeclaration","scope":18204,"src":"4047:21:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18194,"name":"address","nodeType":"ElementaryTypeName","src":"4047:7:67","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18197,"indexed":false,"mutability":"mutable","name":"when","nameLocation":"4081:4:67","nodeType":"VariableDeclaration","scope":18204,"src":"4074:11:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":18196,"name":"uint40","nodeType":"ElementaryTypeName","src":"4074:6:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":18200,"indexed":false,"mutability":"mutable","name":"scaleAtRequest","nameLocation":"4104:14:67","nodeType":"VariableDeclaration","scope":18204,"src":"4091:27:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":18199,"nodeType":"UserDefinedTypeName","pathNode":{"id":18198,"name":"ETKLib.Scale","nameLocations":["4091:6:67","4098:5:67"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"4091:12:67"},"referencedDeclaration":18847,"src":"4091:12:67","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":18202,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"4132:6:67","nodeType":"VariableDeclaration","scope":18204,"src":"4124:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18201,"name":"uint256","nodeType":"ElementaryTypeName","src":"4124:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3984:158:67"},"src":"3959:184:67"},{"anonymous":false,"documentation":{"id":18205,"nodeType":"StructuredDocumentation","src":"4147:456:67","text":" @notice Event emitted when a withdrawal is executed\n @param eToken The EToken contract from which the withdrawal was processed\n @param tokenId The unique identifier of the token position that was withdrawn\n @param receiver The address that received the withdrawn funds\n @param amountRequested The original amount of eTokens requested for withdrawal\n @param amountWithdrawn The actual amount withdrawn to the receiver"},"eventSelector":"5c7b80d3b1a3296ffcd888e34c2c2eccd66bb3edb1d128e65a384a38115cb582","id":18218,"name":"WithdrawalExecuted","nameLocation":"4612:18:67","nodeType":"EventDefinition","parameters":{"id":18217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18208,"indexed":true,"mutability":"mutable","name":"eToken","nameLocation":"4652:6:67","nodeType":"VariableDeclaration","scope":18218,"src":"4636:22:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":18207,"nodeType":"UserDefinedTypeName","pathNode":{"id":18206,"name":"IEToken","nameLocations":["4636:7:67"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"4636:7:67"},"referencedDeclaration":28869,"src":"4636:7:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":18210,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"4680:7:67","nodeType":"VariableDeclaration","scope":18218,"src":"4664:23:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18209,"name":"uint256","nodeType":"ElementaryTypeName","src":"4664:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18212,"indexed":true,"mutability":"mutable","name":"receiver","nameLocation":"4709:8:67","nodeType":"VariableDeclaration","scope":18218,"src":"4693:24:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18211,"name":"address","nodeType":"ElementaryTypeName","src":"4693:7:67","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18214,"indexed":false,"mutability":"mutable","name":"amountRequested","nameLocation":"4731:15:67","nodeType":"VariableDeclaration","scope":18218,"src":"4723:23:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18213,"name":"uint256","nodeType":"ElementaryTypeName","src":"4723:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18216,"indexed":false,"mutability":"mutable","name":"amountWithdrawn","nameLocation":"4760:15:67","nodeType":"VariableDeclaration","scope":18218,"src":"4752:23:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18215,"name":"uint256","nodeType":"ElementaryTypeName","src":"4752:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4630:149:67"},"src":"4606:174:67"},{"documentation":{"id":18219,"nodeType":"StructuredDocumentation","src":"4784:109:67","text":" @notice Error produced when requesting a withdrawal earlier than the minimum withdrawal period"},"errorSelector":"80be8b59","id":18225,"name":"WithdrawalRequestEarlierThanMin","nameLocation":"4902:31:67","nodeType":"ErrorDefinition","parameters":{"id":18224,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18221,"mutability":"mutable","name":"minRequestTime","nameLocation":"4941:14:67","nodeType":"VariableDeclaration","scope":18225,"src":"4934:21:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":18220,"name":"uint40","nodeType":"ElementaryTypeName","src":"4934:6:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":18223,"mutability":"mutable","name":"timeRequested","nameLocation":"4964:13:67","nodeType":"VariableDeclaration","scope":18225,"src":"4957:20:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":18222,"name":"uint40","nodeType":"ElementaryTypeName","src":"4957:6:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"4933:45:67"},"src":"4896:83:67"},{"documentation":{"id":18226,"nodeType":"StructuredDocumentation","src":"4983:123:67","text":" @notice Error produced when requesting a withdrawal from an eToken that doesn't have address(this) as cooler"},"errorSelector":"f1b1ee5d","id":18231,"name":"InvalidEToken","nameLocation":"5115:13:67","nodeType":"ErrorDefinition","parameters":{"id":18230,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18229,"mutability":"mutable","name":"eToken","nameLocation":"5137:6:67","nodeType":"VariableDeclaration","scope":18231,"src":"5129:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":18228,"nodeType":"UserDefinedTypeName","pathNode":{"id":18227,"name":"IEToken","nameLocations":["5129:7:67"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"5129:7:67"},"referencedDeclaration":28869,"src":"5129:7:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"5128:16:67"},"src":"5109:36:67"},{"documentation":{"id":18232,"nodeType":"StructuredDocumentation","src":"5149:112:67","text":" @notice Error produced when trying to execute a withdrawal of an non-existent or already used NFT"},"errorSelector":"8fe4792e","id":18236,"name":"InvalidWithdrawalRequest","nameLocation":"5270:24:67","nodeType":"ErrorDefinition","parameters":{"id":18235,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18234,"mutability":"mutable","name":"tokenId","nameLocation":"5303:7:67","nodeType":"VariableDeclaration","scope":18236,"src":"5295:15:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18233,"name":"uint256","nodeType":"ElementaryTypeName","src":"5295:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5294:17:67"},"src":"5264:48:67"},{"documentation":{"id":18237,"nodeType":"StructuredDocumentation","src":"5316:112:67","text":" @notice Error produced when trying to execute a withdrawal ahead of time (WithdrawalRequest.when)"},"errorSelector":"8d36487c","id":18243,"name":"WithdrawalNotReady","nameLocation":"5437:18:67","nodeType":"ErrorDefinition","parameters":{"id":18242,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18239,"mutability":"mutable","name":"tokenId","nameLocation":"5464:7:67","nodeType":"VariableDeclaration","scope":18243,"src":"5456:15:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18238,"name":"uint256","nodeType":"ElementaryTypeName","src":"5456:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18241,"mutability":"mutable","name":"expiration","nameLocation":"5480:10:67","nodeType":"VariableDeclaration","scope":18243,"src":"5473:17:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":18240,"name":"uint40","nodeType":"ElementaryTypeName","src":"5473:6:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"5455:36:67"},"src":"5431:61:67"},{"documentation":{"id":18244,"nodeType":"StructuredDocumentation","src":"5496:91:67","text":" @notice Error produced when trying to schedule a withdrawal with zero amount"},"errorSelector":"90633d31","id":18246,"name":"CannotDoZeroWithdrawals","nameLocation":"5596:23:67","nodeType":"ErrorDefinition","parameters":{"id":18245,"nodeType":"ParameterList","parameters":[],"src":"5619:2:67"},"src":"5590:32:67"},{"body":{"id":18256,"nodeType":"Block","src":"5794:2:67","statements":[]},"documentation":{"id":18247,"nodeType":"StructuredDocumentation","src":"5626:48:67","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":18257,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":18253,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18250,"src":"5781:11:67","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}}],"id":18254,"kind":"baseConstructorSpecifier","modifierName":{"id":18252,"name":"PolicyPoolComponent","nameLocations":["5761:19:67"],"nodeType":"IdentifierPath","referencedDeclaration":25609,"src":"5761:19:67"},"nodeType":"ModifierInvocation","src":"5761:32:67"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":18251,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18250,"mutability":"mutable","name":"policyPool_","nameLocation":"5748:11:67","nodeType":"VariableDeclaration","scope":18257,"src":"5736:23:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"typeName":{"id":18249,"nodeType":"UserDefinedTypeName","pathNode":{"id":18248,"name":"IPolicyPool","nameLocations":["5736:11:67"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"5736:11:67"},"referencedDeclaration":29171,"src":"5736:11:67","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"5735:25:67"},"returnParameters":{"id":18255,"nodeType":"ParameterList","parameters":[],"src":"5794:0:67"},"scope":18833,"src":"5724:72:67","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":18272,"nodeType":"Block","src":"6081:40:67","statements":[{"expression":{"arguments":[{"id":18268,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18260,"src":"6101:5:67","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":18269,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18262,"src":"6108:7:67","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"}],"id":18267,"name":"__Cooler_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18291,"src":"6087:13:67","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":18270,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6087:29:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18271,"nodeType":"ExpressionStatement","src":"6087:29:67"}]},"documentation":{"id":18258,"nodeType":"StructuredDocumentation","src":"5800:187:67","text":" @notice Initializes the Cooler contract\n @param name_ ERC721 name attribute of the NFT collection\n @param symbol_ ERC721 symbol attribute of the NFT collection"},"functionSelector":"4cd88b76","id":18273,"implemented":true,"kind":"function","modifiers":[{"id":18265,"kind":"modifierInvocation","modifierName":{"id":18264,"name":"initializer","nameLocations":["6069:11:67"],"nodeType":"IdentifierPath","referencedDeclaration":7058,"src":"6069:11:67"},"nodeType":"ModifierInvocation","src":"6069:11:67"}],"name":"initialize","nameLocation":"5999:10:67","nodeType":"FunctionDefinition","parameters":{"id":18263,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18260,"mutability":"mutable","name":"name_","nameLocation":"6024:5:67","nodeType":"VariableDeclaration","scope":18273,"src":"6010:19:67","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":18259,"name":"string","nodeType":"ElementaryTypeName","src":"6010:6:67","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":18262,"mutability":"mutable","name":"symbol_","nameLocation":"6045:7:67","nodeType":"VariableDeclaration","scope":18273,"src":"6031:21:67","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":18261,"name":"string","nodeType":"ElementaryTypeName","src":"6031:6:67","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6009:44:67"},"returnParameters":{"id":18266,"nodeType":"ParameterList","parameters":[],"src":"6081:0:67"},"scope":18833,"src":"5990:131:67","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":18290,"nodeType":"Block","src":"6269:74:67","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":18282,"name":"__PolicyPoolComponent_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25530,"src":"6275:26:67","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":18283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6275:28:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18284,"nodeType":"ExpressionStatement","src":"6275:28:67"},{"expression":{"arguments":[{"id":18286,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18275,"src":"6323:5:67","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":18287,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18277,"src":"6330:7:67","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"}],"id":18285,"name":"__ERC721_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1871,"src":"6309:13:67","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":18288,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6309:29:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18289,"nodeType":"ExpressionStatement","src":"6309:29:67"}]},"id":18291,"implemented":true,"kind":"function","modifiers":[{"id":18280,"kind":"modifierInvocation","modifierName":{"id":18279,"name":"onlyInitializing","nameLocations":["6252:16:67"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"6252:16:67"},"nodeType":"ModifierInvocation","src":"6252:16:67"}],"name":"__Cooler_init","nameLocation":"6185:13:67","nodeType":"FunctionDefinition","parameters":{"id":18278,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18275,"mutability":"mutable","name":"name_","nameLocation":"6213:5:67","nodeType":"VariableDeclaration","scope":18291,"src":"6199:19:67","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":18274,"name":"string","nodeType":"ElementaryTypeName","src":"6199:6:67","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":18277,"mutability":"mutable","name":"symbol_","nameLocation":"6234:7:67","nodeType":"VariableDeclaration","scope":18291,"src":"6220:21:67","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":18276,"name":"string","nodeType":"ElementaryTypeName","src":"6220:6:67","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6198:44:67"},"returnParameters":{"id":18281,"nodeType":"ParameterList","parameters":[],"src":"6269:0:67"},"scope":18833,"src":"6176:167:67","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[1930,25582],"body":{"id":18319,"nodeType":"Block","src":"6512:182:67","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":18304,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18294,"src":"6567:11:67","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":18302,"name":"ERC721Upgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2864,"src":"6531:17:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC721Upgradeable_$2864_$","typeString":"type(contract ERC721Upgradeable)"}},"id":18303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6549:17:67","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":1930,"src":"6531:35:67","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":18305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6531:48:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":18308,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18294,"src":"6627:11:67","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":18306,"name":"PolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25609,"src":"6589:19:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_PolicyPoolComponent_$25609_$","typeString":"type(contract PolicyPoolComponent)"}},"id":18307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6609:17:67","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":25582,"src":"6589:37:67","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":18309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6589:50:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6531:108:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":18316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18311,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18294,"src":"6649:11:67","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":18313,"name":"ICooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28695,"src":"6669:7:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ICooler_$28695_$","typeString":"type(contract ICooler)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_ICooler_$28695_$","typeString":"type(contract ICooler)"}],"id":18312,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6664:4:67","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":18314,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6664:13:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_ICooler_$28695","typeString":"type(contract ICooler)"}},"id":18315,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6678:11:67","memberName":"interfaceId","nodeType":"MemberAccess","src":"6664:25:67","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"6649:40:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6531:158:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":18301,"id":18318,"nodeType":"Return","src":"6518:171:67"}]},"documentation":{"id":18292,"nodeType":"StructuredDocumentation","src":"6347:23:67","text":"@inheritdoc IERC165"},"functionSelector":"01ffc9a7","id":18320,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"6382:17:67","nodeType":"FunctionDefinition","overrides":{"id":18298,"nodeType":"OverrideSpecifier","overrides":[{"id":18296,"name":"ERC721Upgradeable","nameLocations":["6457:17:67"],"nodeType":"IdentifierPath","referencedDeclaration":2864,"src":"6457:17:67"},{"id":18297,"name":"PolicyPoolComponent","nameLocations":["6476:19:67"],"nodeType":"IdentifierPath","referencedDeclaration":25609,"src":"6476:19:67"}],"src":"6448:48:67"},"parameters":{"id":18295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18294,"mutability":"mutable","name":"interfaceId","nameLocation":"6412:11:67","nodeType":"VariableDeclaration","scope":18320,"src":"6405:18:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":18293,"name":"bytes4","nodeType":"ElementaryTypeName","src":"6405:6:67","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"6399:28:67"},"returnParameters":{"id":18301,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18300,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18320,"src":"6506:4:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18299,"name":"bool","nodeType":"ElementaryTypeName","src":"6506:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6505:6:67"},"scope":18833,"src":"6373:321:67","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[28681],"body":{"id":18334,"nodeType":"Block","src":"6809:45:67","statements":[{"expression":{"baseExpression":{"id":18330,"name":"_pendingWithdrawals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18174,"src":"6822:19:67","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IEToken_$28869_$_t_uint256_$","typeString":"mapping(contract IEToken => uint256)"}},"id":18332,"indexExpression":{"id":18331,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18324,"src":"6842:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6822:27:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18329,"id":18333,"nodeType":"Return","src":"6815:34:67"}]},"documentation":{"id":18321,"nodeType":"StructuredDocumentation","src":"6698:23:67","text":"@inheritdoc ICooler"},"functionSelector":"f3f43703","id":18335,"implemented":true,"kind":"function","modifiers":[],"name":"pendingWithdrawals","nameLocation":"6733:18:67","nodeType":"FunctionDefinition","overrides":{"id":18326,"nodeType":"OverrideSpecifier","overrides":[],"src":"6782:8:67"},"parameters":{"id":18325,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18324,"mutability":"mutable","name":"eToken","nameLocation":"6760:6:67","nodeType":"VariableDeclaration","scope":18335,"src":"6752:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":18323,"nodeType":"UserDefinedTypeName","pathNode":{"id":18322,"name":"IEToken","nameLocations":["6752:7:67"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"6752:7:67"},"referencedDeclaration":28869,"src":"6752:7:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"6751:16:67"},"returnParameters":{"id":18329,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18328,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18335,"src":"6800:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18327,"name":"uint256","nodeType":"ElementaryTypeName","src":"6800:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6799:9:67"},"scope":18833,"src":"6724:130:67","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[28694],"body":{"id":18353,"nodeType":"Block","src":"7021:42:67","statements":[{"expression":{"baseExpression":{"id":18349,"name":"_cooldownPeriods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18168,"src":"7034:16:67","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IEToken_$28869_$_t_uint40_$","typeString":"mapping(contract IEToken => uint40)"}},"id":18351,"indexExpression":{"id":18350,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18339,"src":"7051:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7034:24:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"functionReturnParameters":18348,"id":18352,"nodeType":"Return","src":"7027:31:67"}]},"documentation":{"id":18336,"nodeType":"StructuredDocumentation","src":"6858:23:67","text":"@inheritdoc ICooler"},"functionSelector":"5ce095ee","id":18354,"implemented":true,"kind":"function","modifiers":[],"name":"cooldownPeriod","nameLocation":"6893:14:67","nodeType":"FunctionDefinition","overrides":{"id":18345,"nodeType":"OverrideSpecifier","overrides":[],"src":"6995:8:67"},"parameters":{"id":18344,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18339,"mutability":"mutable","name":"eToken","nameLocation":"6921:6:67","nodeType":"VariableDeclaration","scope":18354,"src":"6913:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":18338,"nodeType":"UserDefinedTypeName","pathNode":{"id":18337,"name":"IEToken","nameLocations":["6913:7:67"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"6913:7:67"},"referencedDeclaration":28869,"src":"6913:7:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":18341,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18354,"src":"6933:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18340,"name":"address","nodeType":"ElementaryTypeName","src":"6933:7:67","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18343,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18354,"src":"6958:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18342,"name":"uint256","nodeType":"ElementaryTypeName","src":"6958:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6907:75:67"},"returnParameters":{"id":18348,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18347,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18354,"src":"7013:6:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":18346,"name":"uint40","nodeType":"ElementaryTypeName","src":"7013:6:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"7012:8:67"},"scope":18833,"src":"6884:179:67","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":18377,"nodeType":"Block","src":"7470:140:67","statements":[{"eventCall":{"arguments":[{"id":18364,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18358,"src":"7503:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},{"baseExpression":{"id":18365,"name":"_cooldownPeriods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18168,"src":"7511:16:67","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IEToken_$28869_$_t_uint40_$","typeString":"mapping(contract IEToken => uint40)"}},"id":18367,"indexExpression":{"id":18366,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18358,"src":"7528:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7511:24:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":18368,"name":"newCooldownPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18360,"src":"7537:17:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"}],"id":18363,"name":"CooldownPeriodChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18187,"src":"7481:21:67","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IEToken_$28869_$_t_uint40_$_t_uint40_$returns$__$","typeString":"function (contract IEToken,uint40,uint40)"}},"id":18369,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7481:74:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18370,"nodeType":"EmitStatement","src":"7476:79:67"},{"expression":{"id":18375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":18371,"name":"_cooldownPeriods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18168,"src":"7561:16:67","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IEToken_$28869_$_t_uint40_$","typeString":"mapping(contract IEToken => uint40)"}},"id":18373,"indexExpression":{"id":18372,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18358,"src":"7578:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7561:24:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":18374,"name":"newCooldownPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18360,"src":"7588:17:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"7561:44:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"id":18376,"nodeType":"ExpressionStatement","src":"7561:44:67"}]},"documentation":{"id":18355,"nodeType":"StructuredDocumentation","src":"7067:322:67","text":" @notice Sets the cooldown period for a specific EToken\n @param eToken The EToken contract address to configure the cooldown period for\n @param newCooldownPeriod The new cooldown period duration in seconds\n @custom:emits CooldownPeriodChanged event with the old and new cooldown periods"},"functionSelector":"f630ffe7","id":18378,"implemented":true,"kind":"function","modifiers":[],"name":"setCooldownPeriod","nameLocation":"7401:17:67","nodeType":"FunctionDefinition","parameters":{"id":18361,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18358,"mutability":"mutable","name":"eToken","nameLocation":"7427:6:67","nodeType":"VariableDeclaration","scope":18378,"src":"7419:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":18357,"nodeType":"UserDefinedTypeName","pathNode":{"id":18356,"name":"IEToken","nameLocations":["7419:7:67"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"7419:7:67"},"referencedDeclaration":28869,"src":"7419:7:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":18360,"mutability":"mutable","name":"newCooldownPeriod","nameLocation":"7442:17:67","nodeType":"VariableDeclaration","scope":18378,"src":"7435:24:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":18359,"name":"uint40","nodeType":"ElementaryTypeName","src":"7435:6:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"7418:42:67"},"returnParameters":{"id":18362,"nodeType":"ParameterList","parameters":[],"src":"7470:0:67"},"scope":18833,"src":"7392:218:67","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":18429,"nodeType":"Block","src":"8641:438:67","statements":[{"clauses":[{"block":{"id":18418,"nodeType":"Block","src":"8793:2:67","statements":[]},"errorName":"","id":18419,"nodeType":"TryCatchClause","src":"8793:2:67"},{"block":{"id":18420,"nodeType":"Block","src":"8802:2:67","statements":[]},"errorName":"","id":18421,"nodeType":"TryCatchClause","src":"8796:8:67"}],"externalCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":18406,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"8737:10:67","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":18407,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8737:12:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":18410,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"8759:4:67","typeDescriptions":{"typeIdentifier":"t_contract$_Cooler_$18833","typeString":"contract Cooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Cooler_$18833","typeString":"contract Cooler"}],"id":18409,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8751:7:67","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18408,"name":"address","nodeType":"ElementaryTypeName","src":"8751:7:67","typeDescriptions":{}}},"id":18411,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8751:13:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18412,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18386,"src":"8766:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18413,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18388,"src":"8774:8:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18414,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18390,"src":"8784:1:67","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":18415,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18392,"src":"8787:1:67","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":18416,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18394,"src":"8790:1:67","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"arguments":[{"arguments":[{"id":18402,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18382,"src":"8721:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":18401,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8713:7:67","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18400,"name":"address","nodeType":"ElementaryTypeName","src":"8713:7:67","typeDescriptions":{}}},"id":18403,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8713:15:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":18399,"name":"IERC20Permit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8899,"src":"8700:12:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Permit_$8899_$","typeString":"type(contract IERC20Permit)"}},"id":18404,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8700:29:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Permit_$8899","typeString":"contract IERC20Permit"}},"id":18405,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8730:6:67","memberName":"permit","nodeType":"MemberAccess","referencedDeclaration":8884,"src":"8700:36:67","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (address,address,uint256,uint256,uint8,bytes32,bytes32) external"}},"id":18417,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8700:92:67","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18422,"nodeType":"TryStatement","src":"8696:108:67"},{"expression":{"arguments":[{"id":18424,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18382,"src":"9053:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},{"id":18425,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18384,"src":"9061:4:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":18426,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18386,"src":"9067:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18423,"name":"_scheduleWithdrawal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18624,"src":"9033:19:67","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IEToken_$28869_$_t_uint40_$_t_uint256_$returns$_t_uint256_$","typeString":"function (contract IEToken,uint40,uint256) returns (uint256)"}},"id":18427,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9033:41:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18398,"id":18428,"nodeType":"Return","src":"9026:48:67"}]},"documentation":{"id":18379,"nodeType":"StructuredDocumentation","src":"7614:825:67","text":" @notice Schedules a withdrawal using EIP-2612 permit for gasless approval\n @dev This function allows users to schedule withdrawals without prior ERC20 approvals\n by using EIP-2612 permit signatures for gasless transactions\n @custom:emits WithdrawalRequested\n @param eToken The EToken contract from which to withdraw\n @param when The timestamp when the withdrawal should be executable (when =0 uses the minimum cooldown period)\n @param amount The amount of eTokens to withdraw\n @param deadline The expiration timestamp for the permit signature\n @param v The recovery byte of the signature\n @param r The R component of the signature\n @param s The S component of the signature\n @return tokenId The NFT ID of the token representing the withdrawal position"},"functionSelector":"d3b59bf4","id":18430,"implemented":true,"kind":"function","modifiers":[],"name":"scheduleWithdrawalWithPermit","nameLocation":"8451:28:67","nodeType":"FunctionDefinition","parameters":{"id":18395,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18382,"mutability":"mutable","name":"eToken","nameLocation":"8493:6:67","nodeType":"VariableDeclaration","scope":18430,"src":"8485:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":18381,"nodeType":"UserDefinedTypeName","pathNode":{"id":18380,"name":"IEToken","nameLocations":["8485:7:67"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"8485:7:67"},"referencedDeclaration":28869,"src":"8485:7:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":18384,"mutability":"mutable","name":"when","nameLocation":"8512:4:67","nodeType":"VariableDeclaration","scope":18430,"src":"8505:11:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":18383,"name":"uint40","nodeType":"ElementaryTypeName","src":"8505:6:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":18386,"mutability":"mutable","name":"amount","nameLocation":"8530:6:67","nodeType":"VariableDeclaration","scope":18430,"src":"8522:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18385,"name":"uint256","nodeType":"ElementaryTypeName","src":"8522:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18388,"mutability":"mutable","name":"deadline","nameLocation":"8550:8:67","nodeType":"VariableDeclaration","scope":18430,"src":"8542:16:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18387,"name":"uint256","nodeType":"ElementaryTypeName","src":"8542:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18390,"mutability":"mutable","name":"v","nameLocation":"8570:1:67","nodeType":"VariableDeclaration","scope":18430,"src":"8564:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18389,"name":"uint8","nodeType":"ElementaryTypeName","src":"8564:5:67","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":18392,"mutability":"mutable","name":"r","nameLocation":"8585:1:67","nodeType":"VariableDeclaration","scope":18430,"src":"8577:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":18391,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8577:7:67","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":18394,"mutability":"mutable","name":"s","nameLocation":"8600:1:67","nodeType":"VariableDeclaration","scope":18430,"src":"8592:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":18393,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8592:7:67","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8479:126:67"},"returnParameters":{"id":18398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18397,"mutability":"mutable","name":"tokenId","nameLocation":"8632:7:67","nodeType":"VariableDeclaration","scope":18430,"src":"8624:15:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18396,"name":"uint256","nodeType":"ElementaryTypeName","src":"8624:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8623:17:67"},"scope":18833,"src":"8442:637:67","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":18449,"nodeType":"Block","src":"9600:59:67","statements":[{"expression":{"arguments":[{"id":18444,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18434,"src":"9633:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},{"id":18445,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18436,"src":"9641:4:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":18446,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18438,"src":"9647:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18443,"name":"_scheduleWithdrawal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18624,"src":"9613:19:67","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IEToken_$28869_$_t_uint40_$_t_uint256_$returns$_t_uint256_$","typeString":"function (contract IEToken,uint40,uint256) returns (uint256)"}},"id":18447,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9613:41:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18442,"id":18448,"nodeType":"Return","src":"9606:48:67"}]},"documentation":{"id":18431,"nodeType":"StructuredDocumentation","src":"9083:406:67","text":" @notice Schedules a withdrawal\n @custom:emits WithdrawalRequested\n @param eToken The EToken contract from which to withdraw\n @param when The timestamp when the withdrawal should be executable (when =0 uses the minimum cooldown period)\n @param amount The amount of eTokens to withdraw\n @return tokenId The NFT ID of the token representing the withdrawal position"},"functionSelector":"a0358077","id":18450,"implemented":true,"kind":"function","modifiers":[],"name":"scheduleWithdrawal","nameLocation":"9501:18:67","nodeType":"FunctionDefinition","parameters":{"id":18439,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18434,"mutability":"mutable","name":"eToken","nameLocation":"9528:6:67","nodeType":"VariableDeclaration","scope":18450,"src":"9520:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":18433,"nodeType":"UserDefinedTypeName","pathNode":{"id":18432,"name":"IEToken","nameLocations":["9520:7:67"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"9520:7:67"},"referencedDeclaration":28869,"src":"9520:7:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":18436,"mutability":"mutable","name":"when","nameLocation":"9543:4:67","nodeType":"VariableDeclaration","scope":18450,"src":"9536:11:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":18435,"name":"uint40","nodeType":"ElementaryTypeName","src":"9536:6:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":18438,"mutability":"mutable","name":"amount","nameLocation":"9557:6:67","nodeType":"VariableDeclaration","scope":18450,"src":"9549:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18437,"name":"uint256","nodeType":"ElementaryTypeName","src":"9549:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9519:45:67"},"returnParameters":{"id":18442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18441,"mutability":"mutable","name":"tokenId","nameLocation":"9591:7:67","nodeType":"VariableDeclaration","scope":18450,"src":"9583:15:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18440,"name":"uint256","nodeType":"ElementaryTypeName","src":"9583:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9582:17:67"},"scope":18833,"src":"9492:167:67","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":18623,"nodeType":"Block","src":"9772:1214:67","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":18463,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18453,"src":"9786:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":18464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9793:6:67","memberName":"cooler","nodeType":"MemberAccess","referencedDeclaration":28868,"src":"9786:13:67","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":18465,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9786:15:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":18468,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"9813:4:67","typeDescriptions":{"typeIdentifier":"t_contract$_Cooler_$18833","typeString":"contract Cooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Cooler_$18833","typeString":"contract Cooler"}],"id":18467,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9805:7:67","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18466,"name":"address","nodeType":"ElementaryTypeName","src":"9805:7:67","typeDescriptions":{}}},"id":18469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9805:13:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9786:32:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":18472,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18453,"src":"9834:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":18471,"name":"InvalidEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18231,"src":"9820:13:67","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_contract$_IEToken_$28869_$returns$_t_error_$","typeString":"function (contract IEToken) pure returns (error)"}},"id":18473,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9820:21:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":18462,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"9778:7:67","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":18474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9778:64:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18475,"nodeType":"ExpressionStatement","src":"9778:64:67"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18476,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18457,"src":"9852:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":18479,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9867:7:67","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":18478,"name":"uint256","nodeType":"ElementaryTypeName","src":"9867:7:67","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":18477,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9862:4:67","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":18480,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9862:13:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":18481,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9876:3:67","memberName":"max","nodeType":"MemberAccess","src":"9862:17:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9852:27:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18496,"nodeType":"IfStatement","src":"9848:89:67","trueBody":{"expression":{"id":18494,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18483,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18457,"src":"9881:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":18491,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"9924:10:67","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":18492,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9924:12:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"arguments":[{"id":18487,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18453,"src":"9905:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":18486,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9897:7:67","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18485,"name":"address","nodeType":"ElementaryTypeName","src":"9897:7:67","typeDescriptions":{}}},"id":18488,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9897:15:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":18484,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"9890:6:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$7977_$","typeString":"type(contract IERC20)"}},"id":18489,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9890:23:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"id":18490,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9914:9:67","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":7934,"src":"9890:33:67","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":18493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9890:47:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9881:56:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18495,"nodeType":"ExpressionStatement","src":"9881:56:67"}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18500,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18498,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18457,"src":"9951:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":18499,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9960:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9951:10:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":18501,"name":"CannotDoZeroWithdrawals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18246,"src":"9963:23:67","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":18502,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9963:25:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":18497,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"9943:7:67","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":18503,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9943:46:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18504,"nodeType":"ExpressionStatement","src":"9943:46:67"},{"assignments":[18506],"declarations":[{"constant":false,"id":18506,"mutability":"mutable","name":"minCooldownWhen","nameLocation":"10046:15:67","nodeType":"VariableDeclaration","scope":18623,"src":"10039:22:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":18505,"name":"uint40","nodeType":"ElementaryTypeName","src":"10039:6:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"id":18519,"initialValue":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":18518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":18509,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"10071:5:67","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":18510,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10077:9:67","memberName":"timestamp","nodeType":"MemberAccess","src":"10071:15:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18508,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10064:6:67","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":18507,"name":"uint40","nodeType":"ElementaryTypeName","src":"10064:6:67","typeDescriptions":{}}},"id":18511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10064:23:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"id":18513,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18453,"src":"10105:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},{"arguments":[],"expression":{"argumentTypes":[],"id":18514,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"10113:10:67","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":18515,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10113:12:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18516,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18457,"src":"10127:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18512,"name":"cooldownPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18354,"src":"10090:14:67","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_contract$_IEToken_$28869_$_t_address_$_t_uint256_$returns$_t_uint40_$","typeString":"function (contract IEToken,address,uint256) view returns (uint40)"}},"id":18517,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10090:44:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"10064:70:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"VariableDeclarationStatement","src":"10039:95:67"},{"condition":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":18522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18520,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18455,"src":"10144:4:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":18521,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10152:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10144:9:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":18530,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18528,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18455,"src":"10202:4:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":18529,"name":"minCooldownWhen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18506,"src":"10209:15:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"10202:22:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18537,"nodeType":"IfStatement","src":"10198:104:67","trueBody":{"id":18536,"nodeType":"Block","src":"10226:76:67","statements":[{"errorCall":{"arguments":[{"id":18532,"name":"minCooldownWhen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18506,"src":"10273:15:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":18533,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18455,"src":"10290:4:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"}],"id":18531,"name":"WithdrawalRequestEarlierThanMin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18225,"src":"10241:31:67","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint40_$_t_uint40_$returns$_t_error_$","typeString":"function (uint40,uint40) pure returns (error)"}},"id":18534,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10241:54:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18535,"nodeType":"RevertStatement","src":"10234:61:67"}]}},"id":18538,"nodeType":"IfStatement","src":"10140:162:67","trueBody":{"id":18527,"nodeType":"Block","src":"10155:37:67","statements":[{"expression":{"id":18525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18523,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18455,"src":"10163:4:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":18524,"name":"minCooldownWhen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18506,"src":"10170:15:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"10163:22:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"id":18526,"nodeType":"ExpressionStatement","src":"10163:22:67"}]}},{"expression":{"id":18542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18539,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18460,"src":"10339:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":18541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"10349:14:67","subExpression":{"id":18540,"name":"_nextTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18177,"src":"10351:12:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10339:24:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18543,"nodeType":"ExpressionStatement","src":"10339:24:67"},{"assignments":[18548],"declarations":[{"constant":false,"id":18548,"mutability":"mutable","name":"scaleAtRequest","nameLocation":"10382:14:67","nodeType":"VariableDeclaration","scope":18623,"src":"10369:27:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":18547,"nodeType":"UserDefinedTypeName","pathNode":{"id":18546,"name":"ETKLib.Scale","nameLocations":["10369:6:67","10376:5:67"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"10369:12:67"},"referencedDeclaration":18847,"src":"10369:12:67","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"id":18560,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"74727565","id":18556,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10447:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":18554,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18453,"src":"10424:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":18555,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10431:15:67","memberName":"getCurrentScale","nodeType":"MemberAccess","referencedDeclaration":28856,"src":"10424:22:67","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) view external returns (uint256)"}},"id":18557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10424:28:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18553,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10417:6:67","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":18552,"name":"uint96","nodeType":"ElementaryTypeName","src":"10417:6:67","typeDescriptions":{}}},"id":18558,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10417:36:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"}],"expression":{"expression":{"id":18549,"name":"ETKLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19809,"src":"10399:6:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ETKLib_$19809_$","typeString":"type(library ETKLib)"}},"id":18550,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10406:5:67","memberName":"Scale","nodeType":"MemberAccess","referencedDeclaration":18847,"src":"10399:12:67","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Scale_$18847_$","typeString":"type(ETKLib.Scale)"}},"id":18551,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10412:4:67","memberName":"wrap","nodeType":"MemberAccess","src":"10399:17:67","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint96_$returns$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (uint96) pure returns (ETKLib.Scale)"}},"id":18559,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10399:55:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"nodeType":"VariableDeclarationStatement","src":"10369:85:67"},{"expression":{"id":18577,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":18561,"name":"_withdrawalRequests","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18162,"src":"10460:19:67","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_WithdrawalRequest_$18156_storage_$","typeString":"mapping(uint256 => struct Cooler.WithdrawalRequest storage ref)"}},"id":18563,"indexExpression":{"id":18562,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18460,"src":"10480:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10460:28:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage","typeString":"struct Cooler.WithdrawalRequest storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":18565,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18453,"src":"10522:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},{"id":18566,"name":"scaleAtRequest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18548,"src":"10552:14:67","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},{"arguments":[{"expression":{"id":18569,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"10594:5:67","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":18570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10600:9:67","memberName":"timestamp","nodeType":"MemberAccess","src":"10594:15:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18568,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10587:6:67","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":18567,"name":"uint40","nodeType":"ElementaryTypeName","src":"10587:6:67","typeDescriptions":{}}},"id":18571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10587:23:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":18572,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18455,"src":"10630:4:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":18573,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18457,"src":"10659:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10666:9:67","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":16389,"src":"10659:16:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":18575,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10659:18:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":18564,"name":"WithdrawalRequest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18156,"src":"10491:17:67","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_WithdrawalRequest_$18156_storage_ptr_$","typeString":"type(struct Cooler.WithdrawalRequest storage pointer)"}},"id":18576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["10517:3:67","10536:14:67","10574:11:67","10618:10:67","10642:15:67"],"names":["etk","scaleAtRequest","requestedAt","expiration","requestedAmount"],"nodeType":"FunctionCall","src":"10491:193:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_memory_ptr","typeString":"struct Cooler.WithdrawalRequest memory"}},"src":"10460:224:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage","typeString":"struct Cooler.WithdrawalRequest storage ref"}},"id":18578,"nodeType":"ExpressionStatement","src":"10460:224:67"},{"expression":{"id":18583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":18579,"name":"_pendingWithdrawals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18174,"src":"10690:19:67","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IEToken_$28869_$_t_uint256_$","typeString":"mapping(contract IEToken => uint256)"}},"id":18581,"indexExpression":{"id":18580,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18453,"src":"10710:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10690:27:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":18582,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18457,"src":"10721:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10690:37:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18584,"nodeType":"ExpressionStatement","src":"10690:37:67"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":18592,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"10774:10:67","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":18593,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10774:12:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":18596,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"10796:4:67","typeDescriptions":{"typeIdentifier":"t_contract$_Cooler_$18833","typeString":"contract Cooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Cooler_$18833","typeString":"contract Cooler"}],"id":18595,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10788:7:67","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18594,"name":"address","nodeType":"ElementaryTypeName","src":"10788:7:67","typeDescriptions":{}}},"id":18597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10788:13:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18598,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18457,"src":"10803:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[{"id":18588,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18453,"src":"10748:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":18587,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10740:7:67","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18586,"name":"address","nodeType":"ElementaryTypeName","src":"10740:7:67","typeDescriptions":{}}},"id":18589,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10740:15:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":18585,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"10733:6:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$7977_$","typeString":"type(contract IERC20)"}},"id":18590,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10733:23:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"id":18591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10757:16:67","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":8979,"src":"10733:40:67","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$7977_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":18599,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10733:77:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18600,"nodeType":"ExpressionStatement","src":"10733:77:67"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":18602,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"10826:10:67","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":18603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10826:12:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18604,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18460,"src":"10840:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"baseExpression":{"id":18607,"name":"_withdrawalRequests","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18162,"src":"10860:19:67","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_WithdrawalRequest_$18156_storage_$","typeString":"mapping(uint256 => struct Cooler.WithdrawalRequest storage ref)"}},"id":18609,"indexExpression":{"id":18608,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18460,"src":"10880:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10860:28:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage","typeString":"struct Cooler.WithdrawalRequest storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage","typeString":"struct Cooler.WithdrawalRequest storage ref"}],"expression":{"id":18605,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"10849:3:67","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":18606,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10853:6:67","memberName":"encode","nodeType":"MemberAccess","src":"10849:10:67","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":18610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10849:40:67","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":18601,"name":"_safeMint","nodeType":"Identifier","overloadedDeclarations":[2526,2556],"referencedDeclaration":2556,"src":"10816:9:67","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,uint256,bytes memory)"}},"id":18611,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10816:74:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18612,"nodeType":"ExpressionStatement","src":"10816:74:67"},{"eventCall":{"arguments":[{"id":18614,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18453,"src":"10921:6:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},{"id":18615,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18460,"src":"10929:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":18616,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"10938:10:67","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":18617,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10938:12:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18618,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18455,"src":"10952:4:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":18619,"name":"scaleAtRequest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18548,"src":"10958:14:67","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},{"id":18620,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18457,"src":"10974:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18613,"name":"WithdrawalRequested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18204,"src":"10901:19:67","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IEToken_$28869_$_t_uint256_$_t_address_$_t_uint40_$_t_userDefinedValueType$_Scale_$18847_$_t_uint256_$returns$__$","typeString":"function (contract IEToken,uint256,address,uint40,ETKLib.Scale,uint256)"}},"id":18621,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10901:80:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18622,"nodeType":"EmitStatement","src":"10896:85:67"}]},"id":18624,"implemented":true,"kind":"function","modifiers":[],"name":"_scheduleWithdrawal","nameLocation":"9672:19:67","nodeType":"FunctionDefinition","parameters":{"id":18458,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18453,"mutability":"mutable","name":"eToken","nameLocation":"9700:6:67","nodeType":"VariableDeclaration","scope":18624,"src":"9692:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":18452,"nodeType":"UserDefinedTypeName","pathNode":{"id":18451,"name":"IEToken","nameLocations":["9692:7:67"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"9692:7:67"},"referencedDeclaration":28869,"src":"9692:7:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":18455,"mutability":"mutable","name":"when","nameLocation":"9715:4:67","nodeType":"VariableDeclaration","scope":18624,"src":"9708:11:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":18454,"name":"uint40","nodeType":"ElementaryTypeName","src":"9708:6:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":18457,"mutability":"mutable","name":"amount","nameLocation":"9729:6:67","nodeType":"VariableDeclaration","scope":18624,"src":"9721:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18456,"name":"uint256","nodeType":"ElementaryTypeName","src":"9721:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9691:45:67"},"returnParameters":{"id":18461,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18460,"mutability":"mutable","name":"tokenId","nameLocation":"9763:7:67","nodeType":"VariableDeclaration","scope":18624,"src":"9755:15:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18459,"name":"uint256","nodeType":"ElementaryTypeName","src":"9755:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9754:17:67"},"scope":18833,"src":"9663:1323:67","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":18757,"nodeType":"Block","src":"11707:1251:67","statements":[{"assignments":[18632],"declarations":[{"constant":false,"id":18632,"mutability":"mutable","name":"request","nameLocation":"11739:7:67","nodeType":"VariableDeclaration","scope":18757,"src":"11713:33:67","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest"},"typeName":{"id":18631,"nodeType":"UserDefinedTypeName","pathNode":{"id":18630,"name":"WithdrawalRequest","nameLocations":["11713:17:67"],"nodeType":"IdentifierPath","referencedDeclaration":18156,"src":"11713:17:67"},"referencedDeclaration":18156,"src":"11713:17:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest"}},"visibility":"internal"}],"id":18636,"initialValue":{"baseExpression":{"id":18633,"name":"_withdrawalRequests","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18162,"src":"11749:19:67","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_WithdrawalRequest_$18156_storage_$","typeString":"mapping(uint256 => struct Cooler.WithdrawalRequest storage ref)"}},"id":18635,"indexExpression":{"id":18634,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18627,"src":"11769:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11749:28:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage","typeString":"struct Cooler.WithdrawalRequest storage ref"}},"nodeType":"VariableDeclarationStatement","src":"11713:64:67"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":18641,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18638,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18632,"src":"11791:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}},"id":18639,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11799:11:67","memberName":"requestedAt","nodeType":"MemberAccess","referencedDeclaration":18153,"src":"11791:19:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":18640,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11814:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11791:24:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":18643,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18627,"src":"11842:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18642,"name":"InvalidWithdrawalRequest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18236,"src":"11817:24:67","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":18644,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11817:33:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":18637,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"11783:7:67","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":18645,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11783:68:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18646,"nodeType":"ExpressionStatement","src":"11783:68:67"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18648,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"11865:5:67","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":18649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11871:9:67","memberName":"timestamp","nodeType":"MemberAccess","src":"11865:15:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":18650,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18632,"src":"11884:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}},"id":18651,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11892:10:67","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":18155,"src":"11884:18:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"11865:37:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":18654,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18627,"src":"11923:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":18655,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18632,"src":"11932:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}},"id":18656,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11940:10:67","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":18155,"src":"11932:18:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint40","typeString":"uint40"}],"id":18653,"name":"WithdrawalNotReady","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18243,"src":"11904:18:67","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint40_$returns$_t_error_$","typeString":"function (uint256,uint40) pure returns (error)"}},"id":18657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11904:47:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":18647,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"11857:7:67","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":18658,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11857:95:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18659,"nodeType":"ExpressionStatement","src":"11857:95:67"},{"assignments":[18661],"declarations":[{"constant":false,"id":18661,"mutability":"mutable","name":"receiver","nameLocation":"11967:8:67","nodeType":"VariableDeclaration","scope":18757,"src":"11959:16:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18660,"name":"address","nodeType":"ElementaryTypeName","src":"11959:7:67","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":18665,"initialValue":{"arguments":[{"id":18663,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18627,"src":"11986:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18662,"name":"ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1978,"src":"11978:7:67","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":18664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11978:16:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"11959:35:67"},{"assignments":[18667],"declarations":[{"constant":false,"id":18667,"mutability":"mutable","name":"amountAtExecution","nameLocation":"12008:17:67","nodeType":"VariableDeclaration","scope":18757,"src":"12000:25:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18666,"name":"uint256","nodeType":"ElementaryTypeName","src":"12000:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18671,"initialValue":{"arguments":[{"id":18669,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18632,"src":"12049:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}],"id":18668,"name":"_computeCurrentValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18786,"src":"12028:20:67","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_WithdrawalRequest_$18156_storage_ptr_$returns$_t_uint256_$","typeString":"function (struct Cooler.WithdrawalRequest storage pointer) view returns (uint256)"}},"id":18670,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12028:29:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12000:57:67"},{"assignments":[18673],"declarations":[{"constant":false,"id":18673,"mutability":"mutable","name":"amountWithdraw","nameLocation":"12071:14:67","nodeType":"VariableDeclaration","scope":18757,"src":"12063:22:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18672,"name":"uint256","nodeType":"ElementaryTypeName","src":"12063:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18680,"initialValue":{"arguments":[{"id":18676,"name":"amountAtExecution","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18667,"src":"12097:17:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":18677,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18632,"src":"12116:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}},"id":18678,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12124:15:67","memberName":"requestedAmount","nodeType":"MemberAccess","referencedDeclaration":18151,"src":"12116:23:67","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"expression":{"id":18674,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"12088:4:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":18675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12093:3:67","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":14599,"src":"12088:8:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":18679,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12088:52:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12063:77:67"},{"expression":{"id":18685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":18681,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18632,"src":"12202:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}},"id":18683,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12210:11:67","memberName":"requestedAt","nodeType":"MemberAccess","referencedDeclaration":18153,"src":"12202:19:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":18684,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12224:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12202:23:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"id":18686,"nodeType":"ExpressionStatement","src":"12202:23:67"},{"expression":{"arguments":[{"id":18688,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18627,"src":"12259:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18687,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2589,"src":"12253:5:67","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":18689,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12253:14:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18690,"nodeType":"ExpressionStatement","src":"12253:14:67"},{"expression":{"id":18697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":18691,"name":"_pendingWithdrawals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18174,"src":"12273:19:67","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IEToken_$28869_$_t_uint256_$","typeString":"mapping(contract IEToken => uint256)"}},"id":18694,"indexExpression":{"expression":{"id":18692,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18632,"src":"12293:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}},"id":18693,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12301:3:67","memberName":"etk","nodeType":"MemberAccess","referencedDeclaration":18149,"src":"12293:11:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"12273:32:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"expression":{"id":18695,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18632,"src":"12309:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}},"id":18696,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12317:15:67","memberName":"requestedAmount","nodeType":"MemberAccess","referencedDeclaration":18151,"src":"12309:23:67","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"12273:59:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18698,"nodeType":"ExpressionStatement","src":"12273:59:67"},{"expression":{"arguments":[{"expression":{"id":18706,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18632,"src":"12381:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}},"id":18707,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12389:3:67","memberName":"etk","nodeType":"MemberAccess","referencedDeclaration":18149,"src":"12381:11:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},{"id":18708,"name":"amountWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18673,"src":"12394:14:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18709,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18661,"src":"12410:8:67","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":18712,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"12428:4:67","typeDescriptions":{"typeIdentifier":"t_contract$_Cooler_$18833","typeString":"contract Cooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Cooler_$18833","typeString":"contract Cooler"}],"id":18711,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12420:7:67","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18710,"name":"address","nodeType":"ElementaryTypeName","src":"12420:7:67","typeDescriptions":{}}},"id":18713,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12420:13:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"arguments":[{"id":18702,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25474,"src":"12358:11:67","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}],"id":18701,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12350:7:67","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18700,"name":"address","nodeType":"ElementaryTypeName","src":"12350:7:67","typeDescriptions":{}}},"id":18703,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12350:20:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":18699,"name":"PolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25449,"src":"12339:10:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_PolicyPool_$25449_$","typeString":"type(contract PolicyPool)"}},"id":18704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12339:32:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_PolicyPool_$25449","typeString":"contract PolicyPool"}},"id":18705,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12372:8:67","memberName":"withdraw","nodeType":"MemberAccess","referencedDeclaration":24052,"src":"12339:41:67","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_contract$_IEToken_$28869_$_t_uint256_$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (contract IEToken,uint256,address,address) external returns (uint256)"}},"id":18714,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12339:95:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18715,"nodeType":"ExpressionStatement","src":"12339:95:67"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18716,"name":"amountAtExecution","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18667,"src":"12444:17:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":18717,"name":"amountWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18673,"src":"12464:14:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12444:34:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18746,"nodeType":"IfStatement","src":"12440:412:67","trueBody":{"id":18745,"nodeType":"Block","src":"12480:372:67","statements":[{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18728,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18726,"name":"amountAtExecution","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18667,"src":"12747:17:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":18727,"name":"amountWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18673,"src":"12767:14:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12747:34:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"arguments":[{"id":18739,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"12830:4:67","typeDescriptions":{"typeIdentifier":"t_contract$_Cooler_$18833","typeString":"contract Cooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Cooler_$18833","typeString":"contract Cooler"}],"id":18738,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12822:7:67","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18737,"name":"address","nodeType":"ElementaryTypeName","src":"12822:7:67","typeDescriptions":{}}},"id":18740,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12822:13:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"arguments":[{"expression":{"id":18732,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18632,"src":"12798:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}},"id":18733,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12806:3:67","memberName":"etk","nodeType":"MemberAccess","referencedDeclaration":18149,"src":"12798:11:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":18731,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12790:7:67","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18730,"name":"address","nodeType":"ElementaryTypeName","src":"12790:7:67","typeDescriptions":{}}},"id":18734,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12790:20:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":18729,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"12783:6:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$7977_$","typeString":"type(contract IERC20)"}},"id":18735,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12783:28:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$7977","typeString":"contract IERC20"}},"id":18736,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12812:9:67","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":7934,"src":"12783:38:67","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":18741,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12783:53:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":18724,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"12738:4:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":18725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12743:3:67","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":14599,"src":"12738:8:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":18742,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12738:99:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":18719,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18632,"src":"12704:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}},"id":18722,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12712:3:67","memberName":"etk","nodeType":"MemberAccess","referencedDeclaration":18149,"src":"12704:11:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":18723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12716:12:67","memberName":"redistribute","nodeType":"MemberAccess","referencedDeclaration":28862,"src":"12704:24:67","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256) external"}},"id":18743,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12704:141:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18744,"nodeType":"ExpressionStatement","src":"12704:141:67"}]}},{"eventCall":{"arguments":[{"expression":{"id":18748,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18632,"src":"12881:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}},"id":18749,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12889:3:67","memberName":"etk","nodeType":"MemberAccess","referencedDeclaration":18149,"src":"12881:11:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},{"id":18750,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18627,"src":"12894:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18751,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18661,"src":"12903:8:67","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":18752,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18632,"src":"12913:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}},"id":18753,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12921:15:67","memberName":"requestedAmount","nodeType":"MemberAccess","referencedDeclaration":18151,"src":"12913:23:67","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"id":18754,"name":"amountWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18673,"src":"12938:14:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18747,"name":"WithdrawalExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18218,"src":"12862:18:67","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IEToken_$28869_$_t_uint256_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (contract IEToken,uint256,address,uint256,uint256)"}},"id":18755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12862:91:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18756,"nodeType":"EmitStatement","src":"12857:96:67"}]},"documentation":{"id":18625,"nodeType":"StructuredDocumentation","src":"10990:661:67","text":" @notice Executes a previously scheduled withdrawal after the cooldown period has elapsed\n @dev This function processes a withdrawal request that has completed its cooldown period,\n transferring the underlying tokens to the token owner and cleaning up the withdrawal state.\n @param tokenId The ID of the token representing the withdrawal position to execute\n @custom:pre The withdrawal request must exist (`request.requestedAt != 0`)\n @custom:pre The cooldown period must have elapsed (`block.timestamp >= request.expiration`)\n @custom:emits WithdrawalExecuted with the requested and actual withdrawn amounts"},"functionSelector":"24f13a76","id":18758,"implemented":true,"kind":"function","modifiers":[],"name":"executeWithdrawal","nameLocation":"11663:17:67","nodeType":"FunctionDefinition","parameters":{"id":18628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18627,"mutability":"mutable","name":"tokenId","nameLocation":"11689:7:67","nodeType":"VariableDeclaration","scope":18758,"src":"11681:15:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18626,"name":"uint256","nodeType":"ElementaryTypeName","src":"11681:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11680:17:67"},"returnParameters":{"id":18629,"nodeType":"ParameterList","parameters":[],"src":"11707:0:67"},"scope":18833,"src":"11654:1304:67","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":18785,"nodeType":"Block","src":"13059:187:67","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"74727565","id":18775,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13155:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"expression":{"id":18772,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18761,"src":"13127:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}},"id":18773,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13135:3:67","memberName":"etk","nodeType":"MemberAccess","referencedDeclaration":18149,"src":"13127:11:67","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":18774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13139:15:67","memberName":"getCurrentScale","nodeType":"MemberAccess","referencedDeclaration":28856,"src":"13127:27:67","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) view external returns (uint256)"}},"id":18776,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13127:33:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"expression":{"id":18780,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18761,"src":"13210:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}},"id":18781,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13218:14:67","memberName":"scaleAtRequest","nodeType":"MemberAccess","referencedDeclaration":18146,"src":"13210:22:67","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}],"expression":{"expression":{"id":18777,"name":"ETKLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19809,"src":"13190:6:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ETKLib_$19809_$","typeString":"type(library ETKLib)"}},"id":18778,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13197:5:67","memberName":"Scale","nodeType":"MemberAccess","referencedDeclaration":18847,"src":"13190:12:67","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Scale_$18847_$","typeString":"type(ETKLib.Scale)"}},"id":18779,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13203:6:67","memberName":"unwrap","nodeType":"MemberAccess","src":"13190:19:67","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Scale_$18847_$returns$_t_uint96_$","typeString":"function (ETKLib.Scale) pure returns (uint96)"}},"id":18782,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13190:43:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint96","typeString":"uint96"}],"expression":{"arguments":[{"expression":{"id":18768,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18761,"src":"13086:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}},"id":18769,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13094:15:67","memberName":"requestedAmount","nodeType":"MemberAccess","referencedDeclaration":18151,"src":"13086:23:67","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":18767,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13078:7:67","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":18766,"name":"uint256","nodeType":"ElementaryTypeName","src":"13078:7:67","typeDescriptions":{}}},"id":18770,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13078:32:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13111:6:67","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14799,"src":"13078:39:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":18783,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13078:163:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18765,"id":18784,"nodeType":"Return","src":"13065:176:67"}]},"id":18786,"implemented":true,"kind":"function","modifiers":[],"name":"_computeCurrentValue","nameLocation":"12971:20:67","nodeType":"FunctionDefinition","parameters":{"id":18762,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18761,"mutability":"mutable","name":"request","nameLocation":"13018:7:67","nodeType":"VariableDeclaration","scope":18786,"src":"12992:33:67","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest"},"typeName":{"id":18760,"nodeType":"UserDefinedTypeName","pathNode":{"id":18759,"name":"WithdrawalRequest","nameLocations":["12992:17:67"],"nodeType":"IdentifierPath","referencedDeclaration":18156,"src":"12992:17:67"},"referencedDeclaration":18156,"src":"12992:17:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest"}},"visibility":"internal"}],"src":"12991:35:67"},"returnParameters":{"id":18765,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18764,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18786,"src":"13050:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18763,"name":"uint256","nodeType":"ElementaryTypeName","src":"13050:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13049:9:67"},"scope":18833,"src":"12962:284:67","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":18817,"nodeType":"Block","src":"13568:196:67","statements":[{"assignments":[18796],"declarations":[{"constant":false,"id":18796,"mutability":"mutable","name":"request","nameLocation":"13600:7:67","nodeType":"VariableDeclaration","scope":18817,"src":"13574:33:67","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest"},"typeName":{"id":18795,"nodeType":"UserDefinedTypeName","pathNode":{"id":18794,"name":"WithdrawalRequest","nameLocations":["13574:17:67"],"nodeType":"IdentifierPath","referencedDeclaration":18156,"src":"13574:17:67"},"referencedDeclaration":18156,"src":"13574:17:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest"}},"visibility":"internal"}],"id":18800,"initialValue":{"baseExpression":{"id":18797,"name":"_withdrawalRequests","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18162,"src":"13610:19:67","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_WithdrawalRequest_$18156_storage_$","typeString":"mapping(uint256 => struct Cooler.WithdrawalRequest storage ref)"}},"id":18799,"indexExpression":{"id":18798,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18789,"src":"13630:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13610:28:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage","typeString":"struct Cooler.WithdrawalRequest storage ref"}},"nodeType":"VariableDeclarationStatement","src":"13574:64:67"},{"condition":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":18804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18801,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18796,"src":"13648:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}},"id":18802,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13656:11:67","memberName":"requestedAt","nodeType":"MemberAccess","referencedDeclaration":18153,"src":"13648:19:67","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":18803,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13671:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13648:24:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18807,"nodeType":"IfStatement","src":"13644:38:67","trueBody":{"expression":{"hexValue":"30","id":18805,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13681:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":18793,"id":18806,"nodeType":"Return","src":"13674:8:67"}},{"expression":{"arguments":[{"arguments":[{"id":18811,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18796,"src":"13725:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}],"id":18810,"name":"_computeCurrentValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18786,"src":"13704:20:67","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_WithdrawalRequest_$18156_storage_ptr_$returns$_t_uint256_$","typeString":"function (struct Cooler.WithdrawalRequest storage pointer) view returns (uint256)"}},"id":18812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13704:29:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":18813,"name":"request","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18796,"src":"13735:7:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest storage pointer"}},"id":18814,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13743:15:67","memberName":"requestedAmount","nodeType":"MemberAccess","referencedDeclaration":18151,"src":"13735:23:67","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"expression":{"id":18808,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"13695:4:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":18809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13700:3:67","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":14599,"src":"13695:8:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":18815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13695:64:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18793,"id":18816,"nodeType":"Return","src":"13688:71:67"}]},"documentation":{"id":18787,"nodeType":"StructuredDocumentation","src":"13250:241:67","text":" @notice Returns the current withdrawable value for a given withdrawal position\n @param tokenId The ID of the token representing the withdrawal position\n @return The current withdrawable amount in underlying tokens"},"functionSelector":"3fcad964","id":18818,"implemented":true,"kind":"function","modifiers":[],"name":"getCurrentValue","nameLocation":"13503:15:67","nodeType":"FunctionDefinition","parameters":{"id":18790,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18789,"mutability":"mutable","name":"tokenId","nameLocation":"13527:7:67","nodeType":"VariableDeclaration","scope":18818,"src":"13519:15:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18788,"name":"uint256","nodeType":"ElementaryTypeName","src":"13519:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13518:17:67"},"returnParameters":{"id":18793,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18792,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18818,"src":"13559:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18791,"name":"uint256","nodeType":"ElementaryTypeName","src":"13559:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13558:9:67"},"scope":18833,"src":"13494:270:67","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":18831,"nodeType":"Block","src":"14089:46:67","statements":[{"expression":{"baseExpression":{"id":18827,"name":"_withdrawalRequests","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18162,"src":"14102:19:67","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_WithdrawalRequest_$18156_storage_$","typeString":"mapping(uint256 => struct Cooler.WithdrawalRequest storage ref)"}},"id":18829,"indexExpression":{"id":18828,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18821,"src":"14122:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14102:28:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage","typeString":"struct Cooler.WithdrawalRequest storage ref"}},"functionReturnParameters":18826,"id":18830,"nodeType":"Return","src":"14095:35:67"}]},"documentation":{"id":18819,"nodeType":"StructuredDocumentation","src":"13768:218:67","text":" @notice Returns the information of a pending withdrawal request\n @param tokenId The ID of the token representing the withdrawal position\n @return The information about the withdrawal request"},"functionSelector":"99a904b5","id":18832,"implemented":true,"kind":"function","modifiers":[],"name":"getWithdrawalRequestInfo","nameLocation":"13998:24:67","nodeType":"FunctionDefinition","parameters":{"id":18822,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18821,"mutability":"mutable","name":"tokenId","nameLocation":"14031:7:67","nodeType":"VariableDeclaration","scope":18832,"src":"14023:15:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18820,"name":"uint256","nodeType":"ElementaryTypeName","src":"14023:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14022:17:67"},"returnParameters":{"id":18826,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18825,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18832,"src":"14063:24:67","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_memory_ptr","typeString":"struct Cooler.WithdrawalRequest"},"typeName":{"id":18824,"nodeType":"UserDefinedTypeName","pathNode":{"id":18823,"name":"WithdrawalRequest","nameLocations":["14063:17:67"],"nodeType":"IdentifierPath","referencedDeclaration":18156,"src":"14063:17:67"},"referencedDeclaration":18156,"src":"14063:17:67","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawalRequest_$18156_storage_ptr","typeString":"struct Cooler.WithdrawalRequest"}},"visibility":"internal"}],"src":"14062:26:67"},"scope":18833,"src":"13989:146:67","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":18834,"src":"1740:12397:67","usedErrors":[6483,6488,6497,6502,6507,6514,6519,6524,6630,6643,6967,6970,7241,7246,8911,9606,10740,15924,18225,18231,18236,18243,18246,25476,25478,25480],"usedEvents":[6213,6975,9370,9379,9388,18187,18204,18218]}],"src":"39:14099:67"},"id":67},"contracts/ETKLib.sol":{"ast":{"absolutePath":"contracts/ETKLib.sol","exportedSymbols":{"ETKLib":[19809],"SafeCast":[17679]},"id":19810,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":18835,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"40:24:68"},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"@openzeppelin/contracts/utils/math/SafeCast.sol","id":18837,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":19810,"sourceUnit":17680,"src":"66:73:68","symbolAliases":[{"foreign":{"id":18836,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"74:8:68","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"ETKLib","contractDependencies":[],"contractKind":"library","documentation":{"id":18838,"nodeType":"StructuredDocumentation","src":"141:171:68","text":" @title ETKLib\n @notice Library with different datatypes and utils used by the eToken contract\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":19809,"linearizedBaseContracts":[19809],"name":"ETKLib","nameLocation":"321:6:68","nodeType":"ContractDefinition","nodes":[{"global":false,"id":18841,"libraryName":{"id":18839,"name":"SafeCast","nameLocations":["338:8:68"],"nodeType":"IdentifierPath","referencedDeclaration":17679,"src":"338:8:68"},"nodeType":"UsingForDirective","src":"332:27:68","typeName":{"id":18840,"name":"uint256","nodeType":"ElementaryTypeName","src":"351:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"global":false,"id":18845,"libraryName":{"id":18842,"name":"ETKLib","nameLocations":["368:6:68"],"nodeType":"IdentifierPath","referencedDeclaration":19809,"src":"368:6:68"},"nodeType":"UsingForDirective","src":"362:23:68","typeName":{"id":18844,"nodeType":"UserDefinedTypeName","pathNode":{"id":18843,"name":"Scale","nameLocations":["379:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"379:5:68"},"referencedDeclaration":18847,"src":"379:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}}},{"canonicalName":"ETKLib.Scale","id":18847,"name":"Scale","nameLocation":"394:5:68","nodeType":"UserDefinedValueTypeDefinition","src":"389:21:68","underlyingType":{"id":18846,"name":"uint96","nodeType":"ElementaryTypeName","src":"403:6:68","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}},{"constant":true,"id":18850,"mutability":"constant","name":"SECONDS_PER_YEAR","nameLocation":"439:16:68","nodeType":"VariableDeclaration","scope":19809,"src":"414:52:68","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18848,"name":"uint256","nodeType":"ElementaryTypeName","src":"414:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"333635","id":18849,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"458:8:68","subdenomination":"days","typeDescriptions":{"typeIdentifier":"t_rational_31536000_by_1","typeString":"int_const 31536000"},"value":"365"},"visibility":"private"},{"constant":true,"id":18857,"mutability":"constant","name":"SCALE_INITIAL","nameLocation":"493:13:68","nodeType":"VariableDeclaration","scope":19809,"src":"470:55:68","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":18852,"nodeType":"UserDefinedTypeName","pathNode":{"id":18851,"name":"Scale","nameLocations":["470:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"470:5:68"},"referencedDeclaration":18847,"src":"470:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"value":{"arguments":[{"hexValue":"31653134","id":18855,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"520:4:68","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000_by_1","typeString":"int_const 100000000000000"},"value":"1e14"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_100000000000000_by_1","typeString":"int_const 100000000000000"}],"expression":{"id":18853,"name":"Scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18847,"src":"509:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Scale_$18847_$","typeString":"type(ETKLib.Scale)"}},"id":18854,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"515:4:68","memberName":"wrap","nodeType":"MemberAccess","src":"509:10:68","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint96_$returns$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (uint96) pure returns (ETKLib.Scale)"}},"id":18856,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"509:16:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"private"},{"constant":true,"id":18860,"mutability":"constant","name":"MIN_SCALE","nameLocation":"554:9:68","nodeType":"VariableDeclaration","scope":19809,"src":"529:40:68","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18858,"name":"uint256","nodeType":"ElementaryTypeName","src":"529:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"316536","id":18859,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"566:3:68","typeDescriptions":{"typeIdentifier":"t_rational_1000000_by_1","typeString":"int_const 1000000"},"value":"1e6"},"visibility":"private"},{"constant":true,"id":18863,"mutability":"constant","name":"WAD","nameLocation":"653:3:68","nodeType":"VariableDeclaration","scope":19809,"src":"627:36:68","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18861,"name":"uint256","nodeType":"ElementaryTypeName","src":"627:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31653138","id":18862,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"659:4:68","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"visibility":"internal"},{"constant":true,"id":18866,"mutability":"constant","name":"SWAD","nameLocation":"692:4:68","nodeType":"VariableDeclaration","scope":19809,"src":"667:36:68","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":18864,"name":"int256","nodeType":"ElementaryTypeName","src":"667:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"value":{"hexValue":"31653138","id":18865,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"699:4:68","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"visibility":"internal"},{"canonicalName":"ETKLib.ScaledAmount","id":18874,"members":[{"constant":false,"id":18868,"mutability":"mutable","name":"amount","nameLocation":"792:6:68","nodeType":"VariableDeclaration","scope":18874,"src":"784:14:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":18867,"name":"uint128","nodeType":"ElementaryTypeName","src":"784:7:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":18871,"mutability":"mutable","name":"scale","nameLocation":"875:5:68","nodeType":"VariableDeclaration","scope":18874,"src":"869:11:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":18870,"nodeType":"UserDefinedTypeName","pathNode":{"id":18869,"name":"Scale","nameLocations":["869:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"869:5:68"},"referencedDeclaration":18847,"src":"869:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":18873,"mutability":"mutable","name":"lastUpdate","nameLocation":"985:10:68","nodeType":"VariableDeclaration","scope":18874,"src":"978:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":18872,"name":"uint32","nodeType":"ElementaryTypeName","src":"978:6:68","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"name":"ScaledAmount","nameLocation":"765:12:68","nodeType":"StructDefinition","scope":19809,"src":"758:359:68","visibility":"public"},{"canonicalName":"ETKLib.Scr","id":18879,"members":[{"constant":false,"id":18876,"mutability":"mutable","name":"scr","nameLocation":"1146:3:68","nodeType":"VariableDeclaration","scope":18879,"src":"1138:11:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":18875,"name":"uint128","nodeType":"ElementaryTypeName","src":"1138:7:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":18878,"mutability":"mutable","name":"interestRate","nameLocation":"1244:12:68","nodeType":"VariableDeclaration","scope":18879,"src":"1236:20:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":18877,"name":"uint128","nodeType":"ElementaryTypeName","src":"1236:7:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"name":"Scr","nameLocation":"1128:3:68","nodeType":"StructDefinition","scope":19809,"src":"1121:207:68","visibility":"public"},{"errorSelector":"6c53fb2b","id":18883,"name":"ScaleTooSmall","nameLocation":"1338:13:68","nodeType":"ErrorDefinition","parameters":{"id":18882,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18881,"mutability":"mutable","name":"rejectedScale","nameLocation":"1360:13:68","nodeType":"VariableDeclaration","scope":18883,"src":"1352:21:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18880,"name":"uint256","nodeType":"ElementaryTypeName","src":"1352:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1351:23:68"},"src":"1332:43:68"},{"body":{"id":18903,"nodeType":"Block","src":"1638:53:68","statements":[{"id":18902,"nodeType":"UncheckedBlock","src":"1644:43:68","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18897,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18895,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18886,"src":"1670:1:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":18896,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18888,"src":"1674:1:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1670:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18898,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1669:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":18899,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18890,"src":"1679:1:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1669:11:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18894,"id":18901,"nodeType":"Return","src":"1662:18:68"}]}]},"documentation":{"id":18884,"nodeType":"StructuredDocumentation","src":"1427:126:68","text":" @notice unchecked version of Math.mulDiv that returns the result of a * b / c.\n Assumes a * b < 2**256"},"id":18904,"implemented":true,"kind":"function","modifiers":[],"name":"_mulDiv","nameLocation":"1565:7:68","nodeType":"FunctionDefinition","parameters":{"id":18891,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18886,"mutability":"mutable","name":"a","nameLocation":"1581:1:68","nodeType":"VariableDeclaration","scope":18904,"src":"1573:9:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18885,"name":"uint256","nodeType":"ElementaryTypeName","src":"1573:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18888,"mutability":"mutable","name":"b","nameLocation":"1592:1:68","nodeType":"VariableDeclaration","scope":18904,"src":"1584:9:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18887,"name":"uint256","nodeType":"ElementaryTypeName","src":"1584:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18890,"mutability":"mutable","name":"c","nameLocation":"1603:1:68","nodeType":"VariableDeclaration","scope":18904,"src":"1595:9:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18889,"name":"uint256","nodeType":"ElementaryTypeName","src":"1595:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1572:33:68"},"returnParameters":{"id":18894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18893,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18904,"src":"1629:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18892,"name":"uint256","nodeType":"ElementaryTypeName","src":"1629:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1628:9:68"},"scope":19809,"src":"1556:135:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18924,"nodeType":"Block","src":"1919:53:68","statements":[{"id":18923,"nodeType":"UncheckedBlock","src":"1925:43:68","statements":[{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":18921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":18918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18916,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18907,"src":"1951:1:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":18917,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18909,"src":"1955:1:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1951:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":18919,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1950:7:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":18920,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18911,"src":"1960:1:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1950:11:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":18915,"id":18922,"nodeType":"Return","src":"1943:18:68"}]}]},"documentation":{"id":18905,"nodeType":"StructuredDocumentation","src":"1695:143:68","text":" @notice unchecked version of Math.mulDiv that returns the result of a * b / c. (signed version)\n Assumes a * b < 2**256"},"id":18925,"implemented":true,"kind":"function","modifiers":[],"name":"_mulDiv","nameLocation":"1850:7:68","nodeType":"FunctionDefinition","parameters":{"id":18912,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18907,"mutability":"mutable","name":"a","nameLocation":"1865:1:68","nodeType":"VariableDeclaration","scope":18925,"src":"1858:8:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":18906,"name":"int256","nodeType":"ElementaryTypeName","src":"1858:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":18909,"mutability":"mutable","name":"b","nameLocation":"1875:1:68","nodeType":"VariableDeclaration","scope":18925,"src":"1868:8:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":18908,"name":"int256","nodeType":"ElementaryTypeName","src":"1868:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":18911,"mutability":"mutable","name":"c","nameLocation":"1885:1:68","nodeType":"VariableDeclaration","scope":18925,"src":"1878:8:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":18910,"name":"int256","nodeType":"ElementaryTypeName","src":"1878:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1857:30:68"},"returnParameters":{"id":18915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18914,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18925,"src":"1911:6:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":18913,"name":"int256","nodeType":"ElementaryTypeName","src":"1911:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1910:8:68"},"scope":19809,"src":"1841:131:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18956,"nodeType":"Block","src":"2237:92:68","statements":[{"id":18955,"nodeType":"UncheckedBlock","src":"2243:82:68","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18939,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18937,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18928,"src":"2269:1:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":18938,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18930,"src":"2273:1:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2269:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18940,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2268:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":18941,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18932,"src":"2278:1:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2268:11:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18951,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":18946,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18928,"src":"2305:1:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18947,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18930,"src":"2308:1:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18948,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18932,"src":"2311:1:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18945,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"2298:6:68","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":18949,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2298:15:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":18950,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2316:1:68","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2298:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":18943,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"2282:8:68","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$17679_$","typeString":"type(library SafeCast)"}},"id":18944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2291:6:68","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":17678,"src":"2282:15:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":18952,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2282:36:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2268:50:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18936,"id":18954,"nodeType":"Return","src":"2261:57:68"}]}]},"documentation":{"id":18926,"nodeType":"StructuredDocumentation","src":"1976:172:68","text":" @notice unchecked version of Math.mulDiv that returns the result of a * b / c, rounding up when there is non-zero remainder.\n Assumes a * b < 2**256"},"id":18957,"implemented":true,"kind":"function","modifiers":[],"name":"_mulDivCeil","nameLocation":"2160:11:68","nodeType":"FunctionDefinition","parameters":{"id":18933,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18928,"mutability":"mutable","name":"a","nameLocation":"2180:1:68","nodeType":"VariableDeclaration","scope":18957,"src":"2172:9:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18927,"name":"uint256","nodeType":"ElementaryTypeName","src":"2172:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18930,"mutability":"mutable","name":"b","nameLocation":"2191:1:68","nodeType":"VariableDeclaration","scope":18957,"src":"2183:9:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18929,"name":"uint256","nodeType":"ElementaryTypeName","src":"2183:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18932,"mutability":"mutable","name":"c","nameLocation":"2202:1:68","nodeType":"VariableDeclaration","scope":18957,"src":"2194:9:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18931,"name":"uint256","nodeType":"ElementaryTypeName","src":"2194:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2171:33:68"},"returnParameters":{"id":18936,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18935,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18957,"src":"2228:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18934,"name":"uint256","nodeType":"ElementaryTypeName","src":"2228:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2227:9:68"},"scope":19809,"src":"2151:178:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18976,"nodeType":"Block","src":"2806:63:68","statements":[{"expression":{"arguments":[{"id":18969,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18963,"src":"2827:12:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":18970,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18961,"src":"2841:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":18971,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2847:9:68","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":19148,"src":"2841:15:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":18972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2841:17:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18973,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18863,"src":"2860:3:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18968,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[18904,18925],"referencedDeclaration":18904,"src":"2819:7:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":18974,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2819:45:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18967,"id":18975,"nodeType":"Return","src":"2812:52:68"}]},"documentation":{"id":18958,"nodeType":"StructuredDocumentation","src":"2368:349:68","text":" @notice Converts a \"scaled amount\" (raw value, without applying earnings) to the current value after\n      after applying the scale.\n @param scaledAmount The `scaled amount` as the ones stored in `$._balances`\n @param scale        The scale to apply.\n @return The current amount, that results of `scaledAmount * scale`"},"id":18977,"implemented":true,"kind":"function","modifiers":[],"name":"toCurrent","nameLocation":"2729:9:68","nodeType":"FunctionDefinition","parameters":{"id":18964,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18961,"mutability":"mutable","name":"scale","nameLocation":"2745:5:68","nodeType":"VariableDeclaration","scope":18977,"src":"2739:11:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":18960,"nodeType":"UserDefinedTypeName","pathNode":{"id":18959,"name":"Scale","nameLocations":["2739:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"2739:5:68"},"referencedDeclaration":18847,"src":"2739:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":18963,"mutability":"mutable","name":"scaledAmount","nameLocation":"2760:12:68","nodeType":"VariableDeclaration","scope":18977,"src":"2752:20:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18962,"name":"uint256","nodeType":"ElementaryTypeName","src":"2752:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2738:35:68"},"returnParameters":{"id":18967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18966,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18977,"src":"2797:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18965,"name":"uint256","nodeType":"ElementaryTypeName","src":"2797:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2796:9:68"},"scope":19809,"src":"2720:149:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18996,"nodeType":"Block","src":"3336:67:68","statements":[{"expression":{"arguments":[{"id":18989,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18983,"src":"3361:12:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":18990,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18981,"src":"3375:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":18991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3381:9:68","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":19148,"src":"3375:15:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":18992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3375:17:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18993,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18863,"src":"3394:3:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18988,"name":"_mulDivCeil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18957,"src":"3349:11:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":18994,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3349:49:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18987,"id":18995,"nodeType":"Return","src":"3342:56:68"}]},"documentation":{"id":18978,"nodeType":"StructuredDocumentation","src":"2873:370:68","text":" @notice Converts a \"scaled amount\" (raw value, without applying earnings) to the current value after\n      after applying the scale, rounding to the ceil\n @param scaledAmount The `scaled amount` as the ones stored in `$._balances`\n @param scale        The scale to apply.\n @return The current amount, that results of `scaledAmount * scale`"},"id":18997,"implemented":true,"kind":"function","modifiers":[],"name":"toCurrentCeil","nameLocation":"3255:13:68","nodeType":"FunctionDefinition","parameters":{"id":18984,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18981,"mutability":"mutable","name":"scale","nameLocation":"3275:5:68","nodeType":"VariableDeclaration","scope":18997,"src":"3269:11:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":18980,"nodeType":"UserDefinedTypeName","pathNode":{"id":18979,"name":"Scale","nameLocations":["3269:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"3269:5:68"},"referencedDeclaration":18847,"src":"3269:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":18983,"mutability":"mutable","name":"scaledAmount","nameLocation":"3290:12:68","nodeType":"VariableDeclaration","scope":18997,"src":"3282:20:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18982,"name":"uint256","nodeType":"ElementaryTypeName","src":"3282:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3268:35:68"},"returnParameters":{"id":18987,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18986,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18997,"src":"3327:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18985,"name":"uint256","nodeType":"ElementaryTypeName","src":"3327:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3326:9:68"},"scope":19809,"src":"3246:157:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19016,"nodeType":"Block","src":"3908:64:68","statements":[{"expression":{"arguments":[{"id":19009,"name":"currentAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19003,"src":"3929:13:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19010,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18863,"src":"3944:3:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19011,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19001,"src":"3949:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":19012,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3955:9:68","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":19148,"src":"3949:15:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":19013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3949:17:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19008,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[18904,18925],"referencedDeclaration":18904,"src":"3921:7:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":19014,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3921:46:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":19007,"id":19015,"nodeType":"Return","src":"3914:53:68"}]},"documentation":{"id":18998,"nodeType":"StructuredDocumentation","src":"3407:412:68","text":" @notice Converts a \"current amount\" (user-facing value, after applying earnings/scale) into a scaled amount (raw value).\n @dev Un-applies the scale (in WAD): `scaled = currentAmount * WAD / scale`.\n @param scale The scale (WAD) to un-apply.\n @param currentAmount The current amount as obtained from balanceOf() or totalSupply().\n @return scaledAmount The scaled amount (raw value)."},"id":19017,"implemented":true,"kind":"function","modifiers":[],"name":"toScaled","nameLocation":"3831:8:68","nodeType":"FunctionDefinition","parameters":{"id":19004,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19001,"mutability":"mutable","name":"scale","nameLocation":"3846:5:68","nodeType":"VariableDeclaration","scope":19017,"src":"3840:11:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":19000,"nodeType":"UserDefinedTypeName","pathNode":{"id":18999,"name":"Scale","nameLocations":["3840:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"3840:5:68"},"referencedDeclaration":18847,"src":"3840:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":19003,"mutability":"mutable","name":"currentAmount","nameLocation":"3861:13:68","nodeType":"VariableDeclaration","scope":19017,"src":"3853:21:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19002,"name":"uint256","nodeType":"ElementaryTypeName","src":"3853:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3839:36:68"},"returnParameters":{"id":19007,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19006,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19017,"src":"3899:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19005,"name":"uint256","nodeType":"ElementaryTypeName","src":"3899:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3898:9:68"},"scope":19809,"src":"3822:150:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19036,"nodeType":"Block","src":"4425:68:68","statements":[{"expression":{"arguments":[{"id":19029,"name":"currentAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19023,"src":"4450:13:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19030,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18863,"src":"4465:3:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19031,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19021,"src":"4470:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":19032,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4476:9:68","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":19148,"src":"4470:15:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":19033,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4470:17:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19028,"name":"_mulDivCeil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18957,"src":"4438:11:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":19034,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4438:50:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":19027,"id":19035,"nodeType":"Return","src":"4431:57:68"}]},"documentation":{"id":19018,"nodeType":"StructuredDocumentation","src":"3976:356:68","text":" @notice Same as {toScaled}, but rounds up when there is a non-zero remainder.\n @dev `scaled = ceil(currentAmount * WAD / scale)`.\n @param scale The scale (WAD) to un-apply.\n @param currentAmount The current amount as obtained from balanceOf() or totalSupply().\n @return scaledAmount The scaled amount (raw value), rounded up."},"id":19037,"implemented":true,"kind":"function","modifiers":[],"name":"toScaledCeil","nameLocation":"4344:12:68","nodeType":"FunctionDefinition","parameters":{"id":19024,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19021,"mutability":"mutable","name":"scale","nameLocation":"4363:5:68","nodeType":"VariableDeclaration","scope":19037,"src":"4357:11:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":19020,"nodeType":"UserDefinedTypeName","pathNode":{"id":19019,"name":"Scale","nameLocations":["4357:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"4357:5:68"},"referencedDeclaration":18847,"src":"4357:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":19023,"mutability":"mutable","name":"currentAmount","nameLocation":"4378:13:68","nodeType":"VariableDeclaration","scope":19037,"src":"4370:21:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19022,"name":"uint256","nodeType":"ElementaryTypeName","src":"4370:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4356:36:68"},"returnParameters":{"id":19027,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19026,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19037,"src":"4416:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19025,"name":"uint256","nodeType":"ElementaryTypeName","src":"4416:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4415:9:68"},"scope":19809,"src":"4335:158:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19064,"nodeType":"Block","src":"4785:86:68","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19052,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19041,"src":"4817:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":19053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4823:9:68","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":19148,"src":"4817:15:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":19054,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4817:17:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19055,"name":"factor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19043,"src":"4836:6:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":19056,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18863,"src":"4845:3:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4836:12:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19058,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18863,"src":"4850:3:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19051,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[18904,18925],"referencedDeclaration":18904,"src":"4809:7:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":19059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4809:45:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4855:8:68","memberName":"toUint96","nodeType":"MemberAccess","referencedDeclaration":16501,"src":"4809:54:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint96)"}},"id":19061,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4809:56:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"}],"expression":{"id":19049,"name":"Scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18847,"src":"4798:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Scale_$18847_$","typeString":"type(ETKLib.Scale)"}},"id":19050,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4804:4:68","memberName":"wrap","nodeType":"MemberAccess","src":"4798:10:68","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint96_$returns$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (uint96) pure returns (ETKLib.Scale)"}},"id":19062,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4798:68:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"functionReturnParameters":19048,"id":19063,"nodeType":"Return","src":"4791:75:68"}]},"documentation":{"id":19038,"nodeType":"StructuredDocumentation","src":"4497:203:68","text":" @notice Returns a `newScale = scale * (1 + factor)`\n @param scale The base scale.\n @param factor The multiplicative increment, in WAD.\n @return newScale The updated scale."},"id":19065,"implemented":true,"kind":"function","modifiers":[],"name":"grow","nameLocation":"4712:4:68","nodeType":"FunctionDefinition","parameters":{"id":19044,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19041,"mutability":"mutable","name":"scale","nameLocation":"4723:5:68","nodeType":"VariableDeclaration","scope":19065,"src":"4717:11:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":19040,"nodeType":"UserDefinedTypeName","pathNode":{"id":19039,"name":"Scale","nameLocations":["4717:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"4717:5:68"},"referencedDeclaration":18847,"src":"4717:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":19043,"mutability":"mutable","name":"factor","nameLocation":"4738:6:68","nodeType":"VariableDeclaration","scope":19065,"src":"4730:14:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19042,"name":"uint256","nodeType":"ElementaryTypeName","src":"4730:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4716:29:68"},"returnParameters":{"id":19048,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19047,"mutability":"mutable","name":"newScale","nameLocation":"4775:8:68","nodeType":"VariableDeclaration","scope":19065,"src":"4769:14:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":19046,"nodeType":"UserDefinedTypeName","pathNode":{"id":19045,"name":"Scale","nameLocations":["4769:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"4769:5:68"},"referencedDeclaration":18847,"src":"4769:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"src":"4768:16:68"},"scope":19809,"src":"4703:168:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19089,"nodeType":"Block","src":"5167:69:68","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19079,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19069,"src":"5192:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":19080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5198:9:68","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":19148,"src":"5192:15:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":19081,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5192:17:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":19082,"name":"factor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19071,"src":"5212:6:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5192:26:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":19084,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5191:28:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5220:8:68","memberName":"toUint96","nodeType":"MemberAccess","referencedDeclaration":16501,"src":"5191:37:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint96)"}},"id":19086,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5191:39:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"}],"expression":{"id":19077,"name":"Scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18847,"src":"5180:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Scale_$18847_$","typeString":"type(ETKLib.Scale)"}},"id":19078,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5186:4:68","memberName":"wrap","nodeType":"MemberAccess","src":"5180:10:68","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint96_$returns$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (uint96) pure returns (ETKLib.Scale)"}},"id":19087,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5180:51:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"functionReturnParameters":19076,"id":19088,"nodeType":"Return","src":"5173:58:68"}]},"documentation":{"id":19066,"nodeType":"StructuredDocumentation","src":"4875:208:68","text":" @notice Returns a `newScale = scale + factor`.\n @param scale The base scale.\n @param factor The additive increment (same units as `scale`).\n @return newScale The updated scale."},"id":19090,"implemented":true,"kind":"function","modifiers":[],"name":"add","nameLocation":"5095:3:68","nodeType":"FunctionDefinition","parameters":{"id":19072,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19069,"mutability":"mutable","name":"scale","nameLocation":"5105:5:68","nodeType":"VariableDeclaration","scope":19090,"src":"5099:11:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":19068,"nodeType":"UserDefinedTypeName","pathNode":{"id":19067,"name":"Scale","nameLocations":["5099:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"5099:5:68"},"referencedDeclaration":18847,"src":"5099:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":19071,"mutability":"mutable","name":"factor","nameLocation":"5120:6:68","nodeType":"VariableDeclaration","scope":19090,"src":"5112:14:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19070,"name":"uint256","nodeType":"ElementaryTypeName","src":"5112:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5098:29:68"},"returnParameters":{"id":19076,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19075,"mutability":"mutable","name":"newScale","nameLocation":"5157:8:68","nodeType":"VariableDeclaration","scope":19090,"src":"5151:14:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":19074,"nodeType":"UserDefinedTypeName","pathNode":{"id":19073,"name":"Scale","nameLocations":["5151:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"5151:5:68"},"referencedDeclaration":18847,"src":"5151:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"src":"5150:16:68"},"scope":19809,"src":"5086:150:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19132,"nodeType":"Block","src":"5642:190:68","statements":[{"assignments":[19103],"declarations":[{"constant":false,"id":19103,"mutability":"mutable","name":"newScaleInt","nameLocation":"5656:11:68","nodeType":"VariableDeclaration","scope":19132,"src":"5648:19:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19102,"name":"uint256","nodeType":"ElementaryTypeName","src":"5648:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19115,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":19113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19108,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19094,"src":"5685:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":19109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5691:9:68","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":19148,"src":"5685:15:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":19110,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5685:17:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19107,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5678:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":19106,"name":"int256","nodeType":"ElementaryTypeName","src":"5678:6:68","typeDescriptions":{}}},"id":19111,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5678:25:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":19112,"name":"factor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19096,"src":"5706:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"5678:34:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":19105,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5670:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":19104,"name":"uint256","nodeType":"ElementaryTypeName","src":"5670:7:68","typeDescriptions":{}}},"id":19114,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5670:43:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5648:65:68"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19119,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19117,"name":"newScaleInt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19103,"src":"5727:11:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":19118,"name":"MIN_SCALE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18860,"src":"5742:9:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5727:24:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":19121,"name":"newScaleInt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19103,"src":"5767:11:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19120,"name":"ScaleTooSmall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18883,"src":"5753:13:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19122,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5753:26:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":19116,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"5719:7:68","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":19123,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5719:61:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":19124,"nodeType":"ExpressionStatement","src":"5719:61:68"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19127,"name":"newScaleInt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19103,"src":"5804:11:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5816:8:68","memberName":"toUint96","nodeType":"MemberAccess","referencedDeclaration":16501,"src":"5804:20:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint96)"}},"id":19129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5804:22:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"}],"expression":{"id":19125,"name":"Scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18847,"src":"5793:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Scale_$18847_$","typeString":"type(ETKLib.Scale)"}},"id":19126,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5799:4:68","memberName":"wrap","nodeType":"MemberAccess","src":"5793:10:68","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint96_$returns$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (uint96) pure returns (ETKLib.Scale)"}},"id":19130,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5793:34:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"functionReturnParameters":19101,"id":19131,"nodeType":"Return","src":"5786:41:68"}]},"documentation":{"id":19091,"nodeType":"StructuredDocumentation","src":"5240:319:68","text":" @notice Returns a `newScale = scale + factor`, allowing it to increase or decrease.\n         Reverts if the resulting scale would be below `MIN_SCALE`.\n @param scale The base scale.\n @param factor The signed additive increment (same units as `scale`).\n @return newScale The updated scale."},"id":19133,"implemented":true,"kind":"function","modifiers":[],"name":"add","nameLocation":"5571:3:68","nodeType":"FunctionDefinition","parameters":{"id":19097,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19094,"mutability":"mutable","name":"scale","nameLocation":"5581:5:68","nodeType":"VariableDeclaration","scope":19133,"src":"5575:11:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":19093,"nodeType":"UserDefinedTypeName","pathNode":{"id":19092,"name":"Scale","nameLocations":["5575:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"5575:5:68"},"referencedDeclaration":18847,"src":"5575:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":19096,"mutability":"mutable","name":"factor","nameLocation":"5595:6:68","nodeType":"VariableDeclaration","scope":19133,"src":"5588:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":19095,"name":"int256","nodeType":"ElementaryTypeName","src":"5588:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"5574:28:68"},"returnParameters":{"id":19101,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19100,"mutability":"mutable","name":"newScale","nameLocation":"5632:8:68","nodeType":"VariableDeclaration","scope":19133,"src":"5626:14:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":19099,"nodeType":"UserDefinedTypeName","pathNode":{"id":19098,"name":"Scale","nameLocations":["5626:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"5626:5:68"},"referencedDeclaration":18847,"src":"5626:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"src":"5625:16:68"},"scope":19809,"src":"5562:270:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19147,"nodeType":"Block","src":"5955:37:68","statements":[{"expression":{"arguments":[{"id":19144,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19137,"src":"5981:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}],"expression":{"id":19142,"name":"Scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18847,"src":"5968:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Scale_$18847_$","typeString":"type(ETKLib.Scale)"}},"id":19143,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5974:6:68","memberName":"unwrap","nodeType":"MemberAccess","src":"5968:12:68","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Scale_$18847_$returns$_t_uint96_$","typeString":"function (ETKLib.Scale) pure returns (uint96)"}},"id":19145,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5968:19:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"functionReturnParameters":19141,"id":19146,"nodeType":"Return","src":"5961:26:68"}]},"documentation":{"id":19134,"nodeType":"StructuredDocumentation","src":"5836:52:68","text":" @notice Unwraps {Scale} into uint256."},"id":19148,"implemented":true,"kind":"function","modifiers":[],"name":"toUint256","nameLocation":"5900:9:68","nodeType":"FunctionDefinition","parameters":{"id":19138,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19137,"mutability":"mutable","name":"scale","nameLocation":"5916:5:68","nodeType":"VariableDeclaration","scope":19148,"src":"5910:11:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":19136,"nodeType":"UserDefinedTypeName","pathNode":{"id":19135,"name":"Scale","nameLocations":["5910:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"5910:5:68"},"referencedDeclaration":18847,"src":"5910:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"src":"5909:13:68"},"returnParameters":{"id":19141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19140,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19148,"src":"5946:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19139,"name":"uint256","nodeType":"ElementaryTypeName","src":"5946:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5945:9:68"},"scope":19809,"src":"5891:101:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19195,"nodeType":"Block","src":"6281:257:68","statements":[{"assignments":[19161],"declarations":[{"constant":false,"id":19161,"mutability":"mutable","name":"now_","nameLocation":"6294:4:68","nodeType":"VariableDeclaration","scope":19195,"src":"6287:11:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":19160,"name":"uint32","nodeType":"ElementaryTypeName","src":"6287:6:68","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":19167,"initialValue":{"arguments":[{"expression":{"id":19164,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"6308:5:68","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":19165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6314:9:68","memberName":"timestamp","nodeType":"MemberAccess","src":"6308:15:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19163,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6301:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":19162,"name":"uint32","nodeType":"ElementaryTypeName","src":"6301:6:68","typeDescriptions":{}}},"id":19166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6301:23:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"6287:37:68"},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":19171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19168,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19152,"src":"6334:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19169,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6347:10:68","memberName":"lastUpdate","nodeType":"MemberAccess","referencedDeclaration":18873,"src":"6334:23:68","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19170,"name":"now_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19161,"src":"6360:4:68","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"6334:30:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19193,"nodeType":"Block","src":"6494:40:68","statements":[{"expression":{"expression":{"id":19190,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19152,"src":"6509:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19191,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6522:5:68","memberName":"scale","nodeType":"MemberAccess","referencedDeclaration":18871,"src":"6509:18:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"functionReturnParameters":19159,"id":19192,"nodeType":"Return","src":"6502:25:68"}]},"id":19194,"nodeType":"IfStatement","src":"6330:204:68","trueBody":{"id":19189,"nodeType":"Block","src":"6366:122:68","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19175,"name":"interestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19154,"src":"6406:12:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":19181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19178,"name":"now_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19161,"src":"6429:4:68","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":19179,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19152,"src":"6436:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19180,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6449:10:68","memberName":"lastUpdate","nodeType":"MemberAccess","referencedDeclaration":18873,"src":"6436:23:68","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"6429:30:68","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":19177,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6421:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":19176,"name":"uint256","nodeType":"ElementaryTypeName","src":"6421:7:68","typeDescriptions":{}}},"id":19182,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6421:39:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6406:54:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":19184,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6405:56:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":19185,"name":"SECONDS_PER_YEAR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18850,"src":"6464:16:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6405:75:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":19172,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19152,"src":"6381:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19173,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6394:5:68","memberName":"scale","nodeType":"MemberAccess","referencedDeclaration":18871,"src":"6381:18:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":19174,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6400:4:68","memberName":"grow","nodeType":"MemberAccess","referencedDeclaration":19065,"src":"6381:23:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$_t_uint256_$returns$_t_userDefinedValueType$_Scale_$18847_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale,uint256) pure returns (ETKLib.Scale)"}},"id":19187,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6381:100:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"functionReturnParameters":19159,"id":19188,"nodeType":"Return","src":"6374:107:68"}]}}]},"documentation":{"id":19149,"nodeType":"StructuredDocumentation","src":"6038:131:68","text":" @notice Computes the scale of the scaledAmount projecting the last recorded value to the future asumming linear rate"},"id":19196,"implemented":true,"kind":"function","modifiers":[],"name":"projectScale","nameLocation":"6181:12:68","nodeType":"FunctionDefinition","parameters":{"id":19155,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19152,"mutability":"mutable","name":"scaledAmount","nameLocation":"6215:12:68","nodeType":"VariableDeclaration","scope":19196,"src":"6194:33:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19151,"nodeType":"UserDefinedTypeName","pathNode":{"id":19150,"name":"ScaledAmount","nameLocations":["6194:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"6194:12:68"},"referencedDeclaration":18874,"src":"6194:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":19154,"mutability":"mutable","name":"interestRate","nameLocation":"6237:12:68","nodeType":"VariableDeclaration","scope":19196,"src":"6229:20:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19153,"name":"uint256","nodeType":"ElementaryTypeName","src":"6229:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6193:57:68"},"returnParameters":{"id":19159,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19158,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19196,"src":"6274:5:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":19157,"nodeType":"UserDefinedTypeName","pathNode":{"id":19156,"name":"Scale","nameLocations":["6274:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"6274:5:68"},"referencedDeclaration":18847,"src":"6274:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"src":"6273:7:68"},"scope":19809,"src":"6172:366:68","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":19240,"nodeType":"Block","src":"6784:215:68","statements":[{"assignments":[19210],"declarations":[{"constant":false,"id":19210,"mutability":"mutable","name":"scrEarnings","nameLocation":"6798:11:68","nodeType":"VariableDeclaration","scope":19240,"src":"6790:19:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19209,"name":"uint256","nodeType":"ElementaryTypeName","src":"6790:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19216,"initialValue":{"arguments":[{"id":19212,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19203,"src":"6821:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},{"expression":{"id":19213,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19200,"src":"6826:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19214,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6839:10:68","memberName":"lastUpdate","nodeType":"MemberAccess","referencedDeclaration":18873,"src":"6826:23:68","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":19211,"name":"earnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19762,"src":"6812:8:68","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$18879_storage_ptr_$_t_uint32_$returns$_t_uint256_$","typeString":"function (struct ETKLib.Scr storage pointer,uint32) view returns (uint256)"}},"id":19215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6812:38:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6790:60:68"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19219,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19217,"name":"scrEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19210,"src":"6860:11:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":19218,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6875:1:68","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6860:16:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19223,"nodeType":"IfStatement","src":"6856:47:68","trueBody":{"expression":{"expression":{"id":19220,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19200,"src":"6885:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19221,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6898:5:68","memberName":"scale","nodeType":"MemberAccess","referencedDeclaration":18871,"src":"6885:18:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"functionReturnParameters":19208,"id":19222,"nodeType":"Return","src":"6878:25:68"}},{"expression":{"id":19238,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19224,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19207,"src":"6909:3:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":19229,"name":"scrEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19210,"src":"6946:11:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19230,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18863,"src":"6959:3:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"expression":{"id":19233,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19200,"src":"6972:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19234,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6985:6:68","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":18868,"src":"6972:19:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":19232,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6964:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":19231,"name":"uint256","nodeType":"ElementaryTypeName","src":"6964:7:68","typeDescriptions":{}}},"id":19235,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6964:28:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19228,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[18904,18925],"referencedDeclaration":18904,"src":"6938:7:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":19236,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6938:55:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":19225,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19200,"src":"6915:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19226,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6928:5:68","memberName":"scale","nodeType":"MemberAccess","referencedDeclaration":18871,"src":"6915:18:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":19227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6934:3:68","memberName":"add","nodeType":"MemberAccess","referencedDeclaration":19090,"src":"6915:22:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$_t_uint256_$returns$_t_userDefinedValueType$_Scale_$18847_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale,uint256) pure returns (ETKLib.Scale)"}},"id":19237,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6915:79:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"src":"6909:85:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":19239,"nodeType":"ExpressionStatement","src":"6909:85:68"}]},"documentation":{"id":19197,"nodeType":"StructuredDocumentation","src":"6542:131:68","text":" @notice Computes the scale of the scaledAmount projecting the last recorded value to the future asumming linear rate"},"id":19241,"implemented":true,"kind":"function","modifiers":[],"name":"projectScale","nameLocation":"6685:12:68","nodeType":"FunctionDefinition","parameters":{"id":19204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19200,"mutability":"mutable","name":"scaledAmount","nameLocation":"6719:12:68","nodeType":"VariableDeclaration","scope":19241,"src":"6698:33:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19199,"nodeType":"UserDefinedTypeName","pathNode":{"id":19198,"name":"ScaledAmount","nameLocations":["6698:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"6698:12:68"},"referencedDeclaration":18874,"src":"6698:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":19203,"mutability":"mutable","name":"scr","nameLocation":"6745:3:68","nodeType":"VariableDeclaration","scope":19241,"src":"6733:15:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":19202,"nodeType":"UserDefinedTypeName","pathNode":{"id":19201,"name":"Scr","nameLocations":["6733:3:68"],"nodeType":"IdentifierPath","referencedDeclaration":18879,"src":"6733:3:68"},"referencedDeclaration":18879,"src":"6733:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"}],"src":"6697:52:68"},"returnParameters":{"id":19208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19207,"mutability":"mutable","name":"ret","nameLocation":"6779:3:68","nodeType":"VariableDeclaration","scope":19241,"src":"6773:9:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":19206,"nodeType":"UserDefinedTypeName","pathNode":{"id":19205,"name":"Scale","nameLocations":["6773:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"6773:5:68"},"referencedDeclaration":18847,"src":"6773:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"src":"6772:11:68"},"scope":19809,"src":"6676:323:68","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":19269,"nodeType":"Block","src":"7061:129:68","statements":[{"expression":{"id":19251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":19247,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19244,"src":"7067:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19249,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7080:5:68","memberName":"scale","nodeType":"MemberAccess","referencedDeclaration":18871,"src":"7067:18:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":19250,"name":"SCALE_INITIAL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18857,"src":"7088:13:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"src":"7067:34:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":19252,"nodeType":"ExpressionStatement","src":"7067:34:68"},{"expression":{"id":19257,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":19253,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19244,"src":"7107:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19255,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7120:6:68","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":18868,"src":"7107:19:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":19256,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7129:1:68","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7107:23:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":19258,"nodeType":"ExpressionStatement","src":"7107:23:68"},{"expression":{"id":19267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":19259,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19244,"src":"7136:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19261,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7149:10:68","memberName":"lastUpdate","nodeType":"MemberAccess","referencedDeclaration":18873,"src":"7136:23:68","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":19264,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"7169:5:68","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":19265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7175:9:68","memberName":"timestamp","nodeType":"MemberAccess","src":"7169:15:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19263,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7162:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":19262,"name":"uint32","nodeType":"ElementaryTypeName","src":"7162:6:68","typeDescriptions":{}}},"id":19266,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7162:23:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"7136:49:68","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":19268,"nodeType":"ExpressionStatement","src":"7136:49:68"}]},"id":19270,"implemented":true,"kind":"function","modifiers":[],"name":"init","nameLocation":"7012:4:68","nodeType":"FunctionDefinition","parameters":{"id":19245,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19244,"mutability":"mutable","name":"scaledAmount","nameLocation":"7038:12:68","nodeType":"VariableDeclaration","scope":19270,"src":"7017:33:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19243,"nodeType":"UserDefinedTypeName","pathNode":{"id":19242,"name":"ScaledAmount","nameLocations":["7017:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"7017:12:68"},"referencedDeclaration":18874,"src":"7017:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"}],"src":"7016:35:68"},"returnParameters":{"id":19246,"nodeType":"ParameterList","parameters":[],"src":"7061:0:68"},"scope":19809,"src":"7003:187:68","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":19315,"nodeType":"Block","src":"7781:250:68","statements":[{"expression":{"id":19292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19287,"name":"scaledAdd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19285,"src":"7787:9:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":19290,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19276,"src":"7814:6:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":19288,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19279,"src":"7799:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":19289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7805:8:68","memberName":"toScaled","nodeType":"MemberAccess","referencedDeclaration":19017,"src":"7799:14:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$_t_uint256_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale,uint256) pure returns (uint256)"}},"id":19291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7799:22:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7787:34:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19293,"nodeType":"ExpressionStatement","src":"7787:34:68"},{"expression":{"components":[{"arguments":[{"id":19295,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19279,"src":"7872:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":19298,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19274,"src":"7904:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19299,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7917:6:68","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":18868,"src":"7904:19:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":19297,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7896:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":19296,"name":"uint256","nodeType":"ElementaryTypeName","src":"7896:7:68","typeDescriptions":{}}},"id":19300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7896:28:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":19301,"name":"scaledAdd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19285,"src":"7927:9:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7896:40:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":19303,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7895:42:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19304,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7938:9:68","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":16389,"src":"7895:52:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":19305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7895:54:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[{"expression":{"id":19308,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"7978:5:68","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":19309,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7984:9:68","memberName":"timestamp","nodeType":"MemberAccess","src":"7978:15:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19307,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7971:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":19306,"name":"uint32","nodeType":"ElementaryTypeName","src":"7971:6:68","typeDescriptions":{}}},"id":19310,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7971:23:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":19294,"name":"ScaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18874,"src":"7842:12:68","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"type(struct ETKLib.ScaledAmount storage pointer)"}},"id":19311,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["7865:5:68","7887:6:68","7959:10:68"],"names":["scale","amount","lastUpdate"],"nodeType":"FunctionCall","src":"7842:161:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_memory_ptr","typeString":"struct ETKLib.ScaledAmount memory"}},{"id":19312,"name":"scaledAdd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19285,"src":"8011:9:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":19313,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7834:192:68","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"functionReturnParameters":19286,"id":19314,"nodeType":"Return","src":"7827:199:68"}]},"documentation":{"id":19271,"nodeType":"StructuredDocumentation","src":"7194:411:68","text":" @notice Internal helper to add `amount` (current units) to a {ScaledAmount} using a given `scale`.\n @return newScaledAmount Updated in-memory struct (caller is expected to store it).\n @return scaledAdd Amount converted to scaled units (rounded down).\n @custom:pre `uint256(scale) != 0`\n @custom:pre `uint256(scaledAmount.amount) + scale.toScaled(amount)` fits in uint128"},"id":19316,"implemented":true,"kind":"function","modifiers":[],"name":"_add","nameLocation":"7617:4:68","nodeType":"FunctionDefinition","parameters":{"id":19280,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19274,"mutability":"mutable","name":"scaledAmount","nameLocation":"7648:12:68","nodeType":"VariableDeclaration","scope":19316,"src":"7627:33:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19273,"nodeType":"UserDefinedTypeName","pathNode":{"id":19272,"name":"ScaledAmount","nameLocations":["7627:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"7627:12:68"},"referencedDeclaration":18874,"src":"7627:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":19276,"mutability":"mutable","name":"amount","nameLocation":"7674:6:68","nodeType":"VariableDeclaration","scope":19316,"src":"7666:14:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19275,"name":"uint256","nodeType":"ElementaryTypeName","src":"7666:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":19279,"mutability":"mutable","name":"scale","nameLocation":"7692:5:68","nodeType":"VariableDeclaration","scope":19316,"src":"7686:11:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":19278,"nodeType":"UserDefinedTypeName","pathNode":{"id":19277,"name":"Scale","nameLocations":["7686:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"7686:5:68"},"referencedDeclaration":18847,"src":"7686:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"src":"7621:80:68"},"returnParameters":{"id":19286,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19283,"mutability":"mutable","name":"newScaledAmount","nameLocation":"7745:15:68","nodeType":"VariableDeclaration","scope":19316,"src":"7725:35:68","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_memory_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19282,"nodeType":"UserDefinedTypeName","pathNode":{"id":19281,"name":"ScaledAmount","nameLocations":["7725:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"7725:12:68"},"referencedDeclaration":18874,"src":"7725:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":19285,"mutability":"mutable","name":"scaledAdd","nameLocation":"7770:9:68","nodeType":"VariableDeclaration","scope":19316,"src":"7762:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19284,"name":"uint256","nodeType":"ElementaryTypeName","src":"7762:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7724:56:68"},"scope":19809,"src":"7608:423:68","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":19377,"nodeType":"Block","src":"9050:387:68","statements":[{"expression":{"id":19338,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19333,"name":"scaledSub","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19331,"src":"9056:9:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":19336,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19322,"src":"9087:6:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":19334,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19325,"src":"9068:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":19335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9074:12:68","memberName":"toScaledCeil","nodeType":"MemberAccess","referencedDeclaration":19037,"src":"9068:18:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$_t_uint256_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale,uint256) pure returns (uint256)"}},"id":19337,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9068:26:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9056:38:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19339,"nodeType":"ExpressionStatement","src":"9056:38:68"},{"assignments":[19341],"declarations":[{"constant":false,"id":19341,"mutability":"mutable","name":"oldAmount","nameLocation":"9108:9:68","nodeType":"VariableDeclaration","scope":19377,"src":"9100:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19340,"name":"uint256","nodeType":"ElementaryTypeName","src":"9100:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19347,"initialValue":{"arguments":[{"expression":{"id":19344,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19320,"src":"9128:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19345,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9141:6:68","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":18868,"src":"9128:19:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":19343,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9120:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":19342,"name":"uint256","nodeType":"ElementaryTypeName","src":"9120:7:68","typeDescriptions":{}}},"id":19346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9120:28:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9100:48:68"},{"assignments":[19349],"declarations":[{"constant":false,"id":19349,"mutability":"mutable","name":"newAmount","nameLocation":"9162:9:68","nodeType":"VariableDeclaration","scope":19377,"src":"9154:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19348,"name":"uint256","nodeType":"ElementaryTypeName","src":"9154:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19353,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19350,"name":"oldAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19341,"src":"9174:9:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":19351,"name":"scaledSub","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19331,"src":"9186:9:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9174:21:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9154:41:68"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19354,"name":"newAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19349,"src":"9205:9:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":19355,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9218:1:68","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9205:14:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19362,"nodeType":"IfStatement","src":"9201:92:68","trueBody":{"id":19361,"nodeType":"Block","src":"9221:72:68","statements":[{"expression":{"id":19359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19357,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19325,"src":"9265:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":19358,"name":"SCALE_INITIAL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18857,"src":"9273:13:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"src":"9265:21:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":19360,"nodeType":"ExpressionStatement","src":"9265:21:68"}]}},{"expression":{"components":[{"arguments":[{"id":19364,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19325,"src":"9334:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19365,"name":"newAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19349,"src":"9349:9:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9359:9:68","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":16389,"src":"9349:19:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":19367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9349:21:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[{"expression":{"id":19370,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"9391:5:68","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":19371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9397:9:68","memberName":"timestamp","nodeType":"MemberAccess","src":"9391:15:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19369,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9384:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":19368,"name":"uint32","nodeType":"ElementaryTypeName","src":"9384:6:68","typeDescriptions":{}}},"id":19372,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9384:23:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":19363,"name":"ScaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18874,"src":"9313:12:68","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"type(struct ETKLib.ScaledAmount storage pointer)"}},"id":19373,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["9327:5:68","9341:6:68","9372:10:68"],"names":["scale","amount","lastUpdate"],"nodeType":"FunctionCall","src":"9313:96:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_memory_ptr","typeString":"struct ETKLib.ScaledAmount memory"}},{"id":19374,"name":"scaledSub","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19331,"src":"9417:9:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":19375,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9305:127:68","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"functionReturnParameters":19332,"id":19376,"nodeType":"Return","src":"9298:134:68"}]},"documentation":{"id":19317,"nodeType":"StructuredDocumentation","src":"8035:839:68","text":" @notice Subtracts `amount` (current units) from a {ScaledAmount} using the provided `scale`.\n @dev It uses `toScaledCeil` (round up) to avoid leaving dust due to rounding. If the ceil conversion\n would underflow by 1 unit, it retries with `toScaled` (round down).\n @param scaledAmount The storage record to update.\n @param amount Amount expressed in current units.\n @param scale Scale (wad) to use to convert `amount` into scaled units.\n @return newScaledAmount Updated in-memory struct (caller is expected to store it).\n @return scaledSub The subtracted value expressed in scaled units (ceil, or floor in the retry path).\n @custom:pre `uint256(scale) != 0`\n @custom:pre `scale.toScaledCeil(amount) <= scaledAmount.amount` OR `scale.toScaled(amount) <= scaledAmount.amount`"},"id":19378,"implemented":true,"kind":"function","modifiers":[],"name":"_sub","nameLocation":"8886:4:68","nodeType":"FunctionDefinition","parameters":{"id":19326,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19320,"mutability":"mutable","name":"scaledAmount","nameLocation":"8917:12:68","nodeType":"VariableDeclaration","scope":19378,"src":"8896:33:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19319,"nodeType":"UserDefinedTypeName","pathNode":{"id":19318,"name":"ScaledAmount","nameLocations":["8896:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"8896:12:68"},"referencedDeclaration":18874,"src":"8896:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":19322,"mutability":"mutable","name":"amount","nameLocation":"8943:6:68","nodeType":"VariableDeclaration","scope":19378,"src":"8935:14:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19321,"name":"uint256","nodeType":"ElementaryTypeName","src":"8935:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":19325,"mutability":"mutable","name":"scale","nameLocation":"8961:5:68","nodeType":"VariableDeclaration","scope":19378,"src":"8955:11:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":19324,"nodeType":"UserDefinedTypeName","pathNode":{"id":19323,"name":"Scale","nameLocations":["8955:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"8955:5:68"},"referencedDeclaration":18847,"src":"8955:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"src":"8890:80:68"},"returnParameters":{"id":19332,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19329,"mutability":"mutable","name":"newScaledAmount","nameLocation":"9014:15:68","nodeType":"VariableDeclaration","scope":19378,"src":"8994:35:68","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_memory_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19328,"nodeType":"UserDefinedTypeName","pathNode":{"id":19327,"name":"ScaledAmount","nameLocations":["8994:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"8994:12:68"},"referencedDeclaration":18874,"src":"8994:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":19331,"mutability":"mutable","name":"scaledSub","nameLocation":"9039:9:68","nodeType":"VariableDeclaration","scope":19378,"src":"9031:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19330,"name":"uint256","nodeType":"ElementaryTypeName","src":"9031:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8993:56:68"},"scope":19809,"src":"8877:560:68","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":19403,"nodeType":"Block","src":"9737:86:68","statements":[{"expression":{"arguments":[{"id":19395,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19382,"src":"9755:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},{"id":19396,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19384,"src":"9769:6:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":19398,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19382,"src":"9790:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},{"id":19399,"name":"interestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19386,"src":"9804:12:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19397,"name":"projectScale","nodeType":"Identifier","overloadedDeclarations":[19196,19241],"referencedDeclaration":19196,"src":"9777:12:68","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_uint256_$returns$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256) view returns (ETKLib.Scale)"}},"id":19400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9777:40:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}],"id":19394,"name":"_add","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19316,"src":"9750:4:68","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_uint256_$_t_userDefinedValueType$_Scale_$18847_$returns$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256,ETKLib.Scale) view returns (struct ETKLib.ScaledAmount memory,uint256)"}},"id":19401,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9750:68:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"functionReturnParameters":19393,"id":19402,"nodeType":"Return","src":"9743:75:68"}]},"documentation":{"id":19379,"nodeType":"StructuredDocumentation","src":"9441:112:68","text":" @notice Adds `amount` (current units) projecting the scale forward using a linear `interestRate`."},"id":19404,"implemented":true,"kind":"function","modifiers":[],"name":"add","nameLocation":"9565:3:68","nodeType":"FunctionDefinition","parameters":{"id":19387,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19382,"mutability":"mutable","name":"scaledAmount","nameLocation":"9595:12:68","nodeType":"VariableDeclaration","scope":19404,"src":"9574:33:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19381,"nodeType":"UserDefinedTypeName","pathNode":{"id":19380,"name":"ScaledAmount","nameLocations":["9574:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"9574:12:68"},"referencedDeclaration":18874,"src":"9574:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":19384,"mutability":"mutable","name":"amount","nameLocation":"9621:6:68","nodeType":"VariableDeclaration","scope":19404,"src":"9613:14:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19383,"name":"uint256","nodeType":"ElementaryTypeName","src":"9613:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":19386,"mutability":"mutable","name":"interestRate","nameLocation":"9641:12:68","nodeType":"VariableDeclaration","scope":19404,"src":"9633:20:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19385,"name":"uint256","nodeType":"ElementaryTypeName","src":"9633:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9568:89:68"},"returnParameters":{"id":19393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19390,"mutability":"mutable","name":"newScaledAmount","nameLocation":"9701:15:68","nodeType":"VariableDeclaration","scope":19404,"src":"9681:35:68","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_memory_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19389,"nodeType":"UserDefinedTypeName","pathNode":{"id":19388,"name":"ScaledAmount","nameLocations":["9681:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"9681:12:68"},"referencedDeclaration":18874,"src":"9681:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":19392,"mutability":"mutable","name":"scaledAdd","nameLocation":"9726:9:68","nodeType":"VariableDeclaration","scope":19404,"src":"9718:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19391,"name":"uint256","nodeType":"ElementaryTypeName","src":"9718:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9680:56:68"},"scope":19809,"src":"9556:267:68","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":19429,"nodeType":"Block","src":"10128:86:68","statements":[{"expression":{"arguments":[{"id":19421,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19408,"src":"10146:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},{"id":19422,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19410,"src":"10160:6:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":19424,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19408,"src":"10181:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},{"id":19425,"name":"interestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19412,"src":"10195:12:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19423,"name":"projectScale","nodeType":"Identifier","overloadedDeclarations":[19196,19241],"referencedDeclaration":19196,"src":"10168:12:68","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_uint256_$returns$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256) view returns (ETKLib.Scale)"}},"id":19426,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10168:40:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}],"id":19420,"name":"_sub","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19378,"src":"10141:4:68","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_uint256_$_t_userDefinedValueType$_Scale_$18847_$returns$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256,ETKLib.Scale) view returns (struct ETKLib.ScaledAmount memory,uint256)"}},"id":19427,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10141:68:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"functionReturnParameters":19419,"id":19428,"nodeType":"Return","src":"10134:75:68"}]},"documentation":{"id":19405,"nodeType":"StructuredDocumentation","src":"9827:117:68","text":" @notice Subtracts `amount` (current units) projecting the scale forward using a linear `interestRate`."},"id":19430,"implemented":true,"kind":"function","modifiers":[],"name":"sub","nameLocation":"9956:3:68","nodeType":"FunctionDefinition","parameters":{"id":19413,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19408,"mutability":"mutable","name":"scaledAmount","nameLocation":"9986:12:68","nodeType":"VariableDeclaration","scope":19430,"src":"9965:33:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19407,"nodeType":"UserDefinedTypeName","pathNode":{"id":19406,"name":"ScaledAmount","nameLocations":["9965:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"9965:12:68"},"referencedDeclaration":18874,"src":"9965:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":19410,"mutability":"mutable","name":"amount","nameLocation":"10012:6:68","nodeType":"VariableDeclaration","scope":19430,"src":"10004:14:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19409,"name":"uint256","nodeType":"ElementaryTypeName","src":"10004:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":19412,"mutability":"mutable","name":"interestRate","nameLocation":"10032:12:68","nodeType":"VariableDeclaration","scope":19430,"src":"10024:20:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19411,"name":"uint256","nodeType":"ElementaryTypeName","src":"10024:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9959:89:68"},"returnParameters":{"id":19419,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19416,"mutability":"mutable","name":"newScaledAmount","nameLocation":"10092:15:68","nodeType":"VariableDeclaration","scope":19430,"src":"10072:35:68","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_memory_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19415,"nodeType":"UserDefinedTypeName","pathNode":{"id":19414,"name":"ScaledAmount","nameLocations":["10072:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"10072:12:68"},"referencedDeclaration":18874,"src":"10072:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":19418,"mutability":"mutable","name":"scaledSub","nameLocation":"10117:9:68","nodeType":"VariableDeclaration","scope":19430,"src":"10109:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19417,"name":"uint256","nodeType":"ElementaryTypeName","src":"10109:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10071:56:68"},"scope":19809,"src":"9947:267:68","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":19456,"nodeType":"Block","src":"10498:77:68","statements":[{"expression":{"arguments":[{"id":19448,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19434,"src":"10516:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},{"id":19449,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19436,"src":"10530:6:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":19451,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19434,"src":"10551:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},{"id":19452,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19439,"src":"10565:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"},{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}],"id":19450,"name":"projectScale","nodeType":"Identifier","overloadedDeclarations":[19196,19241],"referencedDeclaration":19241,"src":"10538:12:68","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_struct$_Scr_$18879_storage_ptr_$returns$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,struct ETKLib.Scr storage pointer) view returns (ETKLib.Scale)"}},"id":19453,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10538:31:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}],"id":19447,"name":"_add","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19316,"src":"10511:4:68","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_uint256_$_t_userDefinedValueType$_Scale_$18847_$returns$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256,ETKLib.Scale) view returns (struct ETKLib.ScaledAmount memory,uint256)"}},"id":19454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10511:59:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"functionReturnParameters":19446,"id":19455,"nodeType":"Return","src":"10504:66:68"}]},"documentation":{"id":19431,"nodeType":"StructuredDocumentation","src":"10218:101:68","text":" @notice Adds `amount` (current units) projecting the scale forward using SCR earnings."},"id":19457,"implemented":true,"kind":"function","modifiers":[],"name":"add","nameLocation":"10331:3:68","nodeType":"FunctionDefinition","parameters":{"id":19440,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19434,"mutability":"mutable","name":"scaledAmount","nameLocation":"10361:12:68","nodeType":"VariableDeclaration","scope":19457,"src":"10340:33:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19433,"nodeType":"UserDefinedTypeName","pathNode":{"id":19432,"name":"ScaledAmount","nameLocations":["10340:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"10340:12:68"},"referencedDeclaration":18874,"src":"10340:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":19436,"mutability":"mutable","name":"amount","nameLocation":"10387:6:68","nodeType":"VariableDeclaration","scope":19457,"src":"10379:14:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19435,"name":"uint256","nodeType":"ElementaryTypeName","src":"10379:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":19439,"mutability":"mutable","name":"scr","nameLocation":"10411:3:68","nodeType":"VariableDeclaration","scope":19457,"src":"10399:15:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":19438,"nodeType":"UserDefinedTypeName","pathNode":{"id":19437,"name":"Scr","nameLocations":["10399:3:68"],"nodeType":"IdentifierPath","referencedDeclaration":18879,"src":"10399:3:68"},"referencedDeclaration":18879,"src":"10399:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"}],"src":"10334:84:68"},"returnParameters":{"id":19446,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19443,"mutability":"mutable","name":"newScaledAmount","nameLocation":"10462:15:68","nodeType":"VariableDeclaration","scope":19457,"src":"10442:35:68","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_memory_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19442,"nodeType":"UserDefinedTypeName","pathNode":{"id":19441,"name":"ScaledAmount","nameLocations":["10442:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"10442:12:68"},"referencedDeclaration":18874,"src":"10442:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":19445,"mutability":"mutable","name":"scaledAdd","nameLocation":"10487:9:68","nodeType":"VariableDeclaration","scope":19457,"src":"10479:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19444,"name":"uint256","nodeType":"ElementaryTypeName","src":"10479:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10441:56:68"},"scope":19809,"src":"10322:253:68","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":19483,"nodeType":"Block","src":"10864:77:68","statements":[{"expression":{"arguments":[{"id":19475,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19461,"src":"10882:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},{"id":19476,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19463,"src":"10896:6:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":19478,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19461,"src":"10917:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},{"id":19479,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19466,"src":"10931:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"},{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}],"id":19477,"name":"projectScale","nodeType":"Identifier","overloadedDeclarations":[19196,19241],"referencedDeclaration":19241,"src":"10904:12:68","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_struct$_Scr_$18879_storage_ptr_$returns$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,struct ETKLib.Scr storage pointer) view returns (ETKLib.Scale)"}},"id":19480,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10904:31:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}],"id":19474,"name":"_sub","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19378,"src":"10877:4:68","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_uint256_$_t_userDefinedValueType$_Scale_$18847_$returns$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256,ETKLib.Scale) view returns (struct ETKLib.ScaledAmount memory,uint256)"}},"id":19481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10877:59:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"functionReturnParameters":19473,"id":19482,"nodeType":"Return","src":"10870:66:68"}]},"documentation":{"id":19458,"nodeType":"StructuredDocumentation","src":"10579:106:68","text":" @notice Subtracts `amount` (current units) projecting the scale forward using SCR earnings."},"id":19484,"implemented":true,"kind":"function","modifiers":[],"name":"sub","nameLocation":"10697:3:68","nodeType":"FunctionDefinition","parameters":{"id":19467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19461,"mutability":"mutable","name":"scaledAmount","nameLocation":"10727:12:68","nodeType":"VariableDeclaration","scope":19484,"src":"10706:33:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19460,"nodeType":"UserDefinedTypeName","pathNode":{"id":19459,"name":"ScaledAmount","nameLocations":["10706:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"10706:12:68"},"referencedDeclaration":18874,"src":"10706:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":19463,"mutability":"mutable","name":"amount","nameLocation":"10753:6:68","nodeType":"VariableDeclaration","scope":19484,"src":"10745:14:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19462,"name":"uint256","nodeType":"ElementaryTypeName","src":"10745:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":19466,"mutability":"mutable","name":"scr","nameLocation":"10777:3:68","nodeType":"VariableDeclaration","scope":19484,"src":"10765:15:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":19465,"nodeType":"UserDefinedTypeName","pathNode":{"id":19464,"name":"Scr","nameLocations":["10765:3:68"],"nodeType":"IdentifierPath","referencedDeclaration":18879,"src":"10765:3:68"},"referencedDeclaration":18879,"src":"10765:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"}],"src":"10700:84:68"},"returnParameters":{"id":19473,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19470,"mutability":"mutable","name":"newScaledAmount","nameLocation":"10828:15:68","nodeType":"VariableDeclaration","scope":19484,"src":"10808:35:68","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_memory_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19469,"nodeType":"UserDefinedTypeName","pathNode":{"id":19468,"name":"ScaledAmount","nameLocations":["10808:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"10808:12:68"},"referencedDeclaration":18874,"src":"10808:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":19472,"mutability":"mutable","name":"scaledSub","nameLocation":"10853:9:68","nodeType":"VariableDeclaration","scope":19484,"src":"10845:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19471,"name":"uint256","nodeType":"ElementaryTypeName","src":"10845:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10807:56:68"},"scope":19809,"src":"10688:253:68","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":19555,"nodeType":"Block","src":"11556:441:68","statements":[{"expression":{"id":19508,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19499,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19490,"src":"11630:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"arguments":[{"id":19503,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19493,"src":"11656:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},{"expression":{"id":19504,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19488,"src":"11661:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19505,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11674:10:68","memberName":"lastUpdate","nodeType":"MemberAccess","referencedDeclaration":18873,"src":"11661:23:68","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":19502,"name":"earnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19762,"src":"11647:8:68","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$18879_storage_ptr_$_t_uint32_$returns$_t_uint256_$","typeString":"function (struct ETKLib.Scr storage pointer,uint32) view returns (uint256)"}},"id":19506,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11647:38:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19501,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11640:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":19500,"name":"int256","nodeType":"ElementaryTypeName","src":"11640:6:68","typeDescriptions":{}}},"id":19507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11640:46:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"11630:56:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":19509,"nodeType":"ExpressionStatement","src":"11630:56:68"},{"assignments":[19512],"declarations":[{"constant":false,"id":19512,"mutability":"mutable","name":"newScale","nameLocation":"11698:8:68","nodeType":"VariableDeclaration","scope":19555,"src":"11692:14:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},"typeName":{"id":19511,"nodeType":"UserDefinedTypeName","pathNode":{"id":19510,"name":"Scale","nameLocations":["11692:5:68"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"11692:5:68"},"referencedDeclaration":18847,"src":"11692:5:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"id":19529,"initialValue":{"arguments":[{"arguments":[{"id":19517,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19490,"src":"11740:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":19518,"name":"SWAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18866,"src":"11748:4:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"arguments":[{"arguments":[{"expression":{"id":19523,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19488,"src":"11769:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19524,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11782:6:68","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":18868,"src":"11769:19:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":19522,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11761:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":19521,"name":"uint256","nodeType":"ElementaryTypeName","src":"11761:7:68","typeDescriptions":{}}},"id":19525,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11761:28:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19520,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11754:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":19519,"name":"int256","nodeType":"ElementaryTypeName","src":"11754:6:68","typeDescriptions":{}}},"id":19526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11754:36:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":19516,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[18904,18925],"referencedDeclaration":18925,"src":"11732:7:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_int256_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (int256,int256,int256) pure returns (int256)"}},"id":19527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11732:59:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"expression":{"id":19513,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19488,"src":"11709:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19514,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11722:5:68","memberName":"scale","nodeType":"MemberAccess","referencedDeclaration":18871,"src":"11709:18:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":19515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11728:3:68","memberName":"add","nodeType":"MemberAccess","referencedDeclaration":19133,"src":"11709:22:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$_t_int256_$returns$_t_userDefinedValueType$_Scale_$18847_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale,int256) pure returns (ETKLib.Scale)"}},"id":19528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11709:83:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"nodeType":"VariableDeclarationStatement","src":"11692:100:68"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19535,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":19532,"name":"newScale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19512,"src":"11815:8:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}],"expression":{"id":19530,"name":"Scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18847,"src":"11802:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Scale_$18847_$","typeString":"type(ETKLib.Scale)"}},"id":19531,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11808:6:68","memberName":"unwrap","nodeType":"MemberAccess","src":"11802:12:68","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Scale_$18847_$returns$_t_uint96_$","typeString":"function (ETKLib.Scale) pure returns (uint96)"}},"id":19533,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11802:22:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19534,"name":"MIN_SCALE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18860,"src":"11827:9:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11802:34:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19543,"nodeType":"IfStatement","src":"11798:84:68","trueBody":{"errorCall":{"arguments":[{"arguments":[{"id":19539,"name":"newScale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19512,"src":"11872:8:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}],"expression":{"id":19537,"name":"Scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18847,"src":"11859:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Scale_$18847_$","typeString":"type(ETKLib.Scale)"}},"id":19538,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11865:6:68","memberName":"unwrap","nodeType":"MemberAccess","src":"11859:12:68","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Scale_$18847_$returns$_t_uint96_$","typeString":"function (ETKLib.Scale) pure returns (uint96)"}},"id":19540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11859:22:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"}],"id":19536,"name":"ScaleTooSmall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18883,"src":"11845:13:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11845:37:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19542,"nodeType":"RevertStatement","src":"11838:44:68"}},{"expression":{"arguments":[{"expression":{"id":19545,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19488,"src":"11917:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19546,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11930:6:68","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":18868,"src":"11917:19:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"id":19547,"name":"newScale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19512,"src":"11945:8:68","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},{"arguments":[{"expression":{"id":19550,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"11974:5:68","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":19551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11980:9:68","memberName":"timestamp","nodeType":"MemberAccess","src":"11974:15:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19549,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11967:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":19548,"name":"uint32","nodeType":"ElementaryTypeName","src":"11967:6:68","typeDescriptions":{}}},"id":19552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11967:23:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":19544,"name":"ScaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18874,"src":"11895:12:68","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"type(struct ETKLib.ScaledAmount storage pointer)"}},"id":19553,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["11909:6:68","11938:5:68","11955:10:68"],"names":["amount","scale","lastUpdate"],"nodeType":"FunctionCall","src":"11895:97:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_memory_ptr","typeString":"struct ETKLib.ScaledAmount memory"}},"functionReturnParameters":19498,"id":19554,"nodeType":"Return","src":"11888:104:68"}]},"documentation":{"id":19485,"nodeType":"StructuredDocumentation","src":"10945:441:68","text":" @notice Applies a discrete signed change (in current units) to the scale, and also accounts for SCR earnings accrued\n since `scaledAmount.lastUpdate`.\n @param amount Signed discrete change in current units.\n @return newScaledAmount Updated in-memory struct with the same stored `amount`, but an adjusted `scale`.\n @custom:pre `scaledAmount.amount != 0` (required to compute proportional scale change)"},"id":19556,"implemented":true,"kind":"function","modifiers":[],"name":"discreteChange","nameLocation":"11398:14:68","nodeType":"FunctionDefinition","parameters":{"id":19494,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19488,"mutability":"mutable","name":"scaledAmount","nameLocation":"11439:12:68","nodeType":"VariableDeclaration","scope":19556,"src":"11418:33:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19487,"nodeType":"UserDefinedTypeName","pathNode":{"id":19486,"name":"ScaledAmount","nameLocations":["11418:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"11418:12:68"},"referencedDeclaration":18874,"src":"11418:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":19490,"mutability":"mutable","name":"amount","nameLocation":"11464:6:68","nodeType":"VariableDeclaration","scope":19556,"src":"11457:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":19489,"name":"int256","nodeType":"ElementaryTypeName","src":"11457:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":19493,"mutability":"mutable","name":"scr","nameLocation":"11488:3:68","nodeType":"VariableDeclaration","scope":19556,"src":"11476:15:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":19492,"nodeType":"UserDefinedTypeName","pathNode":{"id":19491,"name":"Scr","nameLocations":["11476:3:68"],"nodeType":"IdentifierPath","referencedDeclaration":18879,"src":"11476:3:68"},"referencedDeclaration":18879,"src":"11476:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"}],"src":"11412:83:68"},"returnParameters":{"id":19498,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19497,"mutability":"mutable","name":"newScaledAmount","nameLocation":"11539:15:68","nodeType":"VariableDeclaration","scope":19556,"src":"11519:35:68","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_memory_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19496,"nodeType":"UserDefinedTypeName","pathNode":{"id":19495,"name":"ScaledAmount","nameLocations":["11519:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"11519:12:68"},"referencedDeclaration":18874,"src":"11519:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"}],"src":"11518:37:68"},"scope":19809,"src":"11389:608:68","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":19575,"nodeType":"Block","src":"12209:75:68","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":19568,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19560,"src":"12242:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":19569,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12255:6:68","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":18868,"src":"12242:19:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":19567,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12234:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":19566,"name":"uint256","nodeType":"ElementaryTypeName","src":"12234:7:68","typeDescriptions":{}}},"id":19570,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12234:28:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19571,"name":"MIN_SCALE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18860,"src":"12264:9:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19572,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18863,"src":"12275:3:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19565,"name":"_mulDivCeil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18957,"src":"12222:11:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":19573,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12222:57:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":19564,"id":19574,"nodeType":"Return","src":"12215:64:68"}]},"documentation":{"id":19557,"nodeType":"StructuredDocumentation","src":"12001:120:68","text":" @notice Returns the minimum current value representable by `scaledAmount.amount` under the minimum scale."},"id":19576,"implemented":true,"kind":"function","modifiers":[],"name":"minValue","nameLocation":"12133:8:68","nodeType":"FunctionDefinition","parameters":{"id":19561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19560,"mutability":"mutable","name":"scaledAmount","nameLocation":"12163:12:68","nodeType":"VariableDeclaration","scope":19576,"src":"12142:33:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19559,"nodeType":"UserDefinedTypeName","pathNode":{"id":19558,"name":"ScaledAmount","nameLocations":["12142:12:68"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"12142:12:68"},"referencedDeclaration":18874,"src":"12142:12:68","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"}],"src":"12141:35:68"},"returnParameters":{"id":19564,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19563,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19576,"src":"12200:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19562,"name":"uint256","nodeType":"ElementaryTypeName","src":"12200:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12199:9:68"},"scope":19809,"src":"12124:160:68","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":19651,"nodeType":"Block","src":"12943:599:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":19593,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19590,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19580,"src":"12953:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":19591,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12957:3:68","memberName":"scr","nodeType":"MemberAccess","referencedDeclaration":18876,"src":"12953:7:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":19592,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12964:1:68","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12953:12:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19649,"nodeType":"Block","src":"13075:463:68","statements":[{"assignments":[19605],"declarations":[{"constant":false,"id":19605,"mutability":"mutable","name":"origScr","nameLocation":"13091:7:68","nodeType":"VariableDeclaration","scope":19649,"src":"13083:15:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19604,"name":"uint256","nodeType":"ElementaryTypeName","src":"13083:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19611,"initialValue":{"arguments":[{"expression":{"id":19608,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19580,"src":"13109:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":19609,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13113:3:68","memberName":"scr","nodeType":"MemberAccess","referencedDeclaration":18876,"src":"13109:7:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":19607,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13101:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":19606,"name":"uint256","nodeType":"ElementaryTypeName","src":"13101:7:68","typeDescriptions":{}}},"id":19610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13101:16:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13083:34:68"},{"assignments":[19613],"declarations":[{"constant":false,"id":19613,"mutability":"mutable","name":"newScr","nameLocation":"13133:6:68","nodeType":"VariableDeclaration","scope":19649,"src":"13125:14:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19612,"name":"uint256","nodeType":"ElementaryTypeName","src":"13125:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19617,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19614,"name":"origScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19605,"src":"13142:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":19615,"name":"scrAmount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19582,"src":"13152:10:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13142:20:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13125:37:68"},{"assignments":[19619],"declarations":[{"constant":false,"id":19619,"mutability":"mutable","name":"newInterestRate","nameLocation":"13275:15:68","nodeType":"VariableDeclaration","scope":19649,"src":"13267:23:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19618,"name":"uint256","nodeType":"ElementaryTypeName","src":"13267:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19639,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"expression":{"id":19624,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19580,"src":"13326:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":19625,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13330:12:68","memberName":"interestRate","nodeType":"MemberAccess","referencedDeclaration":18878,"src":"13326:16:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":19623,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13318:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":19622,"name":"uint256","nodeType":"ElementaryTypeName","src":"13318:7:68","typeDescriptions":{}}},"id":19626,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13318:25:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19627,"name":"origScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19605,"src":"13345:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19628,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18863,"src":"13354:3:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19621,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[18904,18925],"referencedDeclaration":18904,"src":"13310:7:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":19629,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13310:48:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"id":19631,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19584,"src":"13369:18:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19632,"name":"scrAmount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19582,"src":"13389:10:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19633,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18863,"src":"13401:3:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19630,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[18904,18925],"referencedDeclaration":18904,"src":"13361:7:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":19634,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13361:44:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13310:95:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19636,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18863,"src":"13415:3:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19637,"name":"newScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19613,"src":"13428:6:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19620,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[18904,18925],"referencedDeclaration":18904,"src":"13293:7:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":19638,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13293:149:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13267:175:68"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19641,"name":"newScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19613,"src":"13468:6:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19642,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13475:9:68","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":16389,"src":"13468:16:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":19643,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13468:18:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19644,"name":"newInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19619,"src":"13502:15:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19645,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13518:9:68","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":16389,"src":"13502:25:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":19646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13502:27:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":19640,"name":"Scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18879,"src":"13458:3:68","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Scr_$18879_storage_ptr_$","typeString":"type(struct ETKLib.Scr storage pointer)"}},"id":19647,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["13463:3:68","13488:12:68"],"names":["scr","interestRate"],"nodeType":"FunctionCall","src":"13458:73:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_memory_ptr","typeString":"struct ETKLib.Scr memory"}},"functionReturnParameters":19589,"id":19648,"nodeType":"Return","src":"13451:80:68"}]},"id":19650,"nodeType":"IfStatement","src":"12949:589:68","trueBody":{"id":19603,"nodeType":"Block","src":"12967:102:68","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19595,"name":"scrAmount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19582,"src":"12992:10:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13003:9:68","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":16389,"src":"12992:20:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":19597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12992:22:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19598,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19584,"src":"13030:18:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13049:9:68","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":16389,"src":"13030:28:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":19600,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13030:30:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":19594,"name":"Scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18879,"src":"12982:3:68","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Scr_$18879_storage_ptr_$","typeString":"type(struct ETKLib.Scr storage pointer)"}},"id":19601,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["12987:3:68","13016:12:68"],"names":["scr","interestRate"],"nodeType":"FunctionCall","src":"12982:80:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_memory_ptr","typeString":"struct ETKLib.Scr memory"}},"functionReturnParameters":19589,"id":19602,"nodeType":"Return","src":"12975:87:68"}]}}]},"documentation":{"id":19577,"nodeType":"StructuredDocumentation","src":"12359:440:68","text":" @notice Adds SCR and updates the weighted-average `interestRate`.\n @param scrAmount_ Amount of SCR to add.\n @param policyInterestRate Annualized rate (wad) associated with `scrAmount_`.\n @return modifiedScr New in-memory SCR struct reflecting the addition.\n @custom:pre If `scr.scr != 0`, then `uint256(scr.scr) + scrAmount_` fits in uint256\n @custom:pre `policyInterestRate` is expressed in wad"},"id":19652,"implemented":true,"kind":"function","modifiers":[],"name":"add","nameLocation":"12811:3:68","nodeType":"FunctionDefinition","parameters":{"id":19585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19580,"mutability":"mutable","name":"scr","nameLocation":"12832:3:68","nodeType":"VariableDeclaration","scope":19652,"src":"12820:15:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":19579,"nodeType":"UserDefinedTypeName","pathNode":{"id":19578,"name":"Scr","nameLocations":["12820:3:68"],"nodeType":"IdentifierPath","referencedDeclaration":18879,"src":"12820:3:68"},"referencedDeclaration":18879,"src":"12820:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"},{"constant":false,"id":19582,"mutability":"mutable","name":"scrAmount_","nameLocation":"12849:10:68","nodeType":"VariableDeclaration","scope":19652,"src":"12841:18:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19581,"name":"uint256","nodeType":"ElementaryTypeName","src":"12841:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":19584,"mutability":"mutable","name":"policyInterestRate","nameLocation":"12873:18:68","nodeType":"VariableDeclaration","scope":19652,"src":"12865:26:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19583,"name":"uint256","nodeType":"ElementaryTypeName","src":"12865:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12814:81:68"},"returnParameters":{"id":19589,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19588,"mutability":"mutable","name":"modifiedScr","nameLocation":"12930:11:68","nodeType":"VariableDeclaration","scope":19652,"src":"12919:22:68","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_memory_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":19587,"nodeType":"UserDefinedTypeName","pathNode":{"id":19586,"name":"Scr","nameLocations":["12919:3:68"],"nodeType":"IdentifierPath","referencedDeclaration":18879,"src":"12919:3:68"},"referencedDeclaration":18879,"src":"12919:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"}],"src":"12918:24:68"},"scope":19809,"src":"12802:740:68","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":19723,"nodeType":"Block","src":"14035:558:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19666,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19656,"src":"14045:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":19667,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14049:3:68","memberName":"scr","nodeType":"MemberAccess","referencedDeclaration":18876,"src":"14045:7:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19668,"name":"scrAmount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19658,"src":"14056:10:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14045:21:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19721,"nodeType":"Block","src":"14126:463:68","statements":[{"assignments":[19677],"declarations":[{"constant":false,"id":19677,"mutability":"mutable","name":"origScr","nameLocation":"14142:7:68","nodeType":"VariableDeclaration","scope":19721,"src":"14134:15:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19676,"name":"uint256","nodeType":"ElementaryTypeName","src":"14134:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19683,"initialValue":{"arguments":[{"expression":{"id":19680,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19656,"src":"14160:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":19681,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14164:3:68","memberName":"scr","nodeType":"MemberAccess","referencedDeclaration":18876,"src":"14160:7:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":19679,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14152:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":19678,"name":"uint256","nodeType":"ElementaryTypeName","src":"14152:7:68","typeDescriptions":{}}},"id":19682,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14152:16:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"14134:34:68"},{"assignments":[19685],"declarations":[{"constant":false,"id":19685,"mutability":"mutable","name":"newScr","nameLocation":"14184:6:68","nodeType":"VariableDeclaration","scope":19721,"src":"14176:14:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19684,"name":"uint256","nodeType":"ElementaryTypeName","src":"14176:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19689,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19686,"name":"origScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19677,"src":"14193:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":19687,"name":"scrAmount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19658,"src":"14203:10:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14193:20:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"14176:37:68"},{"assignments":[19691],"declarations":[{"constant":false,"id":19691,"mutability":"mutable","name":"newInterestRate","nameLocation":"14326:15:68","nodeType":"VariableDeclaration","scope":19721,"src":"14318:23:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19690,"name":"uint256","nodeType":"ElementaryTypeName","src":"14318:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19711,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"expression":{"id":19696,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19656,"src":"14377:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":19697,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14381:12:68","memberName":"interestRate","nodeType":"MemberAccess","referencedDeclaration":18878,"src":"14377:16:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":19695,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14369:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":19694,"name":"uint256","nodeType":"ElementaryTypeName","src":"14369:7:68","typeDescriptions":{}}},"id":19698,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14369:25:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19699,"name":"origScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19677,"src":"14396:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19700,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18863,"src":"14405:3:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19693,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[18904,18925],"referencedDeclaration":18904,"src":"14361:7:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":19701,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14361:48:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":19703,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19660,"src":"14420:18:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19704,"name":"scrAmount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19658,"src":"14440:10:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19705,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18863,"src":"14452:3:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19702,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[18904,18925],"referencedDeclaration":18904,"src":"14412:7:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":19706,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14412:44:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14361:95:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19708,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18863,"src":"14466:3:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19709,"name":"newScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19685,"src":"14479:6:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19692,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[18904,18925],"referencedDeclaration":18904,"src":"14344:7:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":19710,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14344:149:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"14318:175:68"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19713,"name":"newScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19685,"src":"14519:6:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19714,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14526:9:68","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":16389,"src":"14519:16:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":19715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14519:18:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19716,"name":"newInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19691,"src":"14553:15:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14569:9:68","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":16389,"src":"14553:25:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":19718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14553:27:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":19712,"name":"Scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18879,"src":"14509:3:68","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Scr_$18879_storage_ptr_$","typeString":"type(struct ETKLib.Scr storage pointer)"}},"id":19719,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["14514:3:68","14539:12:68"],"names":["scr","interestRate"],"nodeType":"FunctionCall","src":"14509:73:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_memory_ptr","typeString":"struct ETKLib.Scr memory"}},"functionReturnParameters":19665,"id":19720,"nodeType":"Return","src":"14502:80:68"}]},"id":19722,"nodeType":"IfStatement","src":"14041:548:68","trueBody":{"id":19675,"nodeType":"Block","src":"14068:52:68","statements":[{"expression":{"arguments":[{"hexValue":"30","id":19671,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14093:1:68","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":19672,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14110:1:68","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"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":19670,"name":"Scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18879,"src":"14083:3:68","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Scr_$18879_storage_ptr_$","typeString":"type(struct ETKLib.Scr storage pointer)"}},"id":19673,"isConstant":false,"isLValue":false,"isPure":true,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["14088:3:68","14096:12:68"],"names":["scr","interestRate"],"nodeType":"FunctionCall","src":"14083:30:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_memory_ptr","typeString":"struct ETKLib.Scr memory"}},"functionReturnParameters":19665,"id":19674,"nodeType":"Return","src":"14076:37:68"}]}}]},"documentation":{"id":19653,"nodeType":"StructuredDocumentation","src":"13546:345:68","text":" @notice Subtracts SCR and updates the weighted-average `interestRate`.\n @param scrAmount_ Amount of SCR to remove.\n @param policyInterestRate Annualized rate (wad) associated with `scrAmount_`.\n @return modifiedScr New in-memory SCR struct reflecting the subtraction.\n @custom:pre `scrAmount_ <= scr.scr`"},"id":19724,"implemented":true,"kind":"function","modifiers":[],"name":"sub","nameLocation":"13903:3:68","nodeType":"FunctionDefinition","parameters":{"id":19661,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19656,"mutability":"mutable","name":"scr","nameLocation":"13924:3:68","nodeType":"VariableDeclaration","scope":19724,"src":"13912:15:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":19655,"nodeType":"UserDefinedTypeName","pathNode":{"id":19654,"name":"Scr","nameLocations":["13912:3:68"],"nodeType":"IdentifierPath","referencedDeclaration":18879,"src":"13912:3:68"},"referencedDeclaration":18879,"src":"13912:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"},{"constant":false,"id":19658,"mutability":"mutable","name":"scrAmount_","nameLocation":"13941:10:68","nodeType":"VariableDeclaration","scope":19724,"src":"13933:18:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19657,"name":"uint256","nodeType":"ElementaryTypeName","src":"13933:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":19660,"mutability":"mutable","name":"policyInterestRate","nameLocation":"13965:18:68","nodeType":"VariableDeclaration","scope":19724,"src":"13957:26:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19659,"name":"uint256","nodeType":"ElementaryTypeName","src":"13957:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13906:81:68"},"returnParameters":{"id":19665,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19664,"mutability":"mutable","name":"modifiedScr","nameLocation":"14022:11:68","nodeType":"VariableDeclaration","scope":19724,"src":"14011:22:68","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_memory_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":19663,"nodeType":"UserDefinedTypeName","pathNode":{"id":19662,"name":"Scr","nameLocations":["14011:3:68"],"nodeType":"IdentifierPath","referencedDeclaration":18879,"src":"14011:3:68"},"referencedDeclaration":18879,"src":"14011:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"}],"src":"14010:24:68"},"scope":19809,"src":"13894:699:68","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":19761,"nodeType":"Block","src":"14754:171:68","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":19738,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19728,"src":"14798:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":19739,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14802:3:68","memberName":"scr","nodeType":"MemberAccess","referencedDeclaration":18876,"src":"14798:7:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":19737,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14790:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":19736,"name":"uint256","nodeType":"ElementaryTypeName","src":"14790:7:68","typeDescriptions":{}}},"id":19740,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14790:16:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19757,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19754,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":19743,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19728,"src":"14825:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":19744,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14829:12:68","memberName":"interestRate","nodeType":"MemberAccess","referencedDeclaration":18878,"src":"14825:16:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":19742,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14817:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":19741,"name":"uint256","nodeType":"ElementaryTypeName","src":"14817:7:68","typeDescriptions":{}}},"id":19745,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14817:25:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19746,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"14846:5:68","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":19747,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14852:9:68","memberName":"timestamp","nodeType":"MemberAccess","src":"14846:15:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":19750,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19730,"src":"14872:5:68","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":19749,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14864:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":19748,"name":"uint256","nodeType":"ElementaryTypeName","src":"14864:7:68","typeDescriptions":{}}},"id":19751,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14864:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14846:32:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":19753,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"14845:34:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14817:62:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":19755,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"14816:64:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":19756,"name":"SECONDS_PER_YEAR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18850,"src":"14883:16:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14816:83:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":19758,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18863,"src":"14909:3:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19735,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[18904,18925],"referencedDeclaration":18904,"src":"14773:7:68","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":19759,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14773:147:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":19734,"id":19760,"nodeType":"Return","src":"14760:160:68"}]},"documentation":{"id":19725,"nodeType":"StructuredDocumentation","src":"14597:73:68","text":" @notice Returns the earnings of the SCR since a given date"},"id":19762,"implemented":true,"kind":"function","modifiers":[],"name":"earnings","nameLocation":"14682:8:68","nodeType":"FunctionDefinition","parameters":{"id":19731,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19728,"mutability":"mutable","name":"scr","nameLocation":"14703:3:68","nodeType":"VariableDeclaration","scope":19762,"src":"14691:15:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":19727,"nodeType":"UserDefinedTypeName","pathNode":{"id":19726,"name":"Scr","nameLocations":["14691:3:68"],"nodeType":"IdentifierPath","referencedDeclaration":18879,"src":"14691:3:68"},"referencedDeclaration":18879,"src":"14691:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"},{"constant":false,"id":19730,"mutability":"mutable","name":"since","nameLocation":"14715:5:68","nodeType":"VariableDeclaration","scope":19762,"src":"14708:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":19729,"name":"uint32","nodeType":"ElementaryTypeName","src":"14708:6:68","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"14690:31:68"},"returnParameters":{"id":19734,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19733,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19762,"src":"14745:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19732,"name":"uint256","nodeType":"ElementaryTypeName","src":"14745:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14744:9:68"},"scope":19809,"src":"14673:252:68","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":19791,"nodeType":"Block","src":"15248:116:68","statements":[{"assignments":[19774],"declarations":[{"constant":false,"id":19774,"mutability":"mutable","name":"scr_","nameLocation":"15262:4:68","nodeType":"VariableDeclaration","scope":19791,"src":"15254:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19773,"name":"uint256","nodeType":"ElementaryTypeName","src":"15254:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19780,"initialValue":{"arguments":[{"expression":{"id":19777,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19766,"src":"15277:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":19778,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15281:3:68","memberName":"scr","nodeType":"MemberAccess","referencedDeclaration":18876,"src":"15277:7:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":19776,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15269:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":19775,"name":"uint256","nodeType":"ElementaryTypeName","src":"15269:7:68","typeDescriptions":{}}},"id":19779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15269:16:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15254:31:68"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19781,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19768,"src":"15295:11:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":19782,"name":"scr_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19774,"src":"15309:4:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15295:18:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"hexValue":"30","id":19788,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15358:1:68","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":19772,"id":19789,"nodeType":"Return","src":"15351:8:68"},"id":19790,"nodeType":"IfStatement","src":"15291:68:68","trueBody":{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19784,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19768,"src":"15322:11:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":19785,"name":"scr_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19774,"src":"15336:4:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15322:18:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":19772,"id":19787,"nodeType":"Return","src":"15315:25:68"}}]},"documentation":{"id":19763,"nodeType":"StructuredDocumentation","src":"14929:222:68","text":" @notice Returns liquid funds available given `totalSupply`, excluding locked SCR.\n @param totalSupply Total supply expressed in current units.\n @return available `max(totalSupply - scr.scr, 0)`."},"id":19792,"implemented":true,"kind":"function","modifiers":[],"name":"fundsAvailable","nameLocation":"15163:14:68","nodeType":"FunctionDefinition","parameters":{"id":19769,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19766,"mutability":"mutable","name":"scr","nameLocation":"15190:3:68","nodeType":"VariableDeclaration","scope":19792,"src":"15178:15:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":19765,"nodeType":"UserDefinedTypeName","pathNode":{"id":19764,"name":"Scr","nameLocations":["15178:3:68"],"nodeType":"IdentifierPath","referencedDeclaration":18879,"src":"15178:3:68"},"referencedDeclaration":18879,"src":"15178:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"},{"constant":false,"id":19768,"mutability":"mutable","name":"totalSupply","nameLocation":"15203:11:68","nodeType":"VariableDeclaration","scope":19792,"src":"15195:19:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19767,"name":"uint256","nodeType":"ElementaryTypeName","src":"15195:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15177:38:68"},"returnParameters":{"id":19772,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19771,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19792,"src":"15239:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19770,"name":"uint256","nodeType":"ElementaryTypeName","src":"15239:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15238:9:68"},"scope":19809,"src":"15154:210:68","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":19807,"nodeType":"Block","src":"15519:34:68","statements":[{"expression":{"arguments":[{"expression":{"id":19803,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19796,"src":"15540:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":19804,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15544:3:68","memberName":"scr","nodeType":"MemberAccess","referencedDeclaration":18876,"src":"15540:7:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":19802,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15532:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":19801,"name":"uint256","nodeType":"ElementaryTypeName","src":"15532:7:68","typeDescriptions":{}}},"id":19805,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15532:16:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":19800,"id":19806,"nodeType":"Return","src":"15525:23:68"}]},"documentation":{"id":19793,"nodeType":"StructuredDocumentation","src":"15368:80:68","text":" @notice Returns the SCR amount (locked capital) in current units."},"id":19808,"implemented":true,"kind":"function","modifiers":[],"name":"scrAmount","nameLocation":"15460:9:68","nodeType":"FunctionDefinition","parameters":{"id":19797,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19796,"mutability":"mutable","name":"scr","nameLocation":"15482:3:68","nodeType":"VariableDeclaration","scope":19808,"src":"15470:15:68","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":19795,"nodeType":"UserDefinedTypeName","pathNode":{"id":19794,"name":"Scr","nameLocations":["15470:3:68"],"nodeType":"IdentifierPath","referencedDeclaration":18879,"src":"15470:3:68"},"referencedDeclaration":18879,"src":"15470:3:68","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"}],"src":"15469:17:68"},"returnParameters":{"id":19800,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19799,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19808,"src":"15510:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19798,"name":"uint256","nodeType":"ElementaryTypeName","src":"15510:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15509:9:68"},"scope":19809,"src":"15451:102:68","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":19810,"src":"313:15273:68","usedErrors":[18883],"usedEvents":[]}],"src":"40:15547:68"},"id":68},"contracts/EToken.sol":{"ast":{"absolutePath":"contracts/EToken.sol","exportedSymbols":{"ERC20PermitUpgradeable":[1784],"ERC20Upgradeable":[1615],"ETKLib":[19809],"EToken":[21755],"ICooler":[28695],"IERC165":[14272],"IERC20":[7977],"IERC20Metadata":[8863],"IERC4626":[6400],"IEToken":[28869],"ILPWhitelist":[28916],"IPolicyPool":[29171],"IPolicyPoolComponent":[29188],"Math":[15914],"Reserve":[28015],"SafeCast":[17679],"SafeERC20":[9354]},"id":21756,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":19811,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:69"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"@openzeppelin/contracts/token/ERC20/IERC20.sol","id":19813,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21756,"sourceUnit":7978,"src":"65:70:69","symbolAliases":[{"foreign":{"id":19812,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"73:6:69","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":19815,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21756,"sourceUnit":14273,"src":"136:80:69","symbolAliases":[{"foreign":{"id":19814,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"144:7:69","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","file":"@openzeppelin/contracts/interfaces/IERC4626.sol","id":19817,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21756,"sourceUnit":6401,"src":"217:73:69","symbolAliases":[{"foreign":{"id":19816,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6400,"src":"225:8:69","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":19819,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21756,"sourceUnit":8864,"src":"291:97:69","symbolAliases":[{"foreign":{"id":19818,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"299:14:69","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol","file":"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol","id":19821,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21756,"sourceUnit":1616,"src":"389:102:69","symbolAliases":[{"foreign":{"id":19820,"name":"ERC20Upgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1615,"src":"397:16:69","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol","id":19823,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21756,"sourceUnit":1785,"src":"492:125:69","symbolAliases":[{"foreign":{"id":19822,"name":"ERC20PermitUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"500:22:69","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":19825,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21756,"sourceUnit":9355,"src":"618:82:69","symbolAliases":[{"foreign":{"id":19824,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9354,"src":"626:9:69","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"@openzeppelin/contracts/utils/math/SafeCast.sol","id":19827,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21756,"sourceUnit":17680,"src":"701:73:69","symbolAliases":[{"foreign":{"id":19826,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"709:8:69","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"@openzeppelin/contracts/utils/math/Math.sol","id":19829,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21756,"sourceUnit":15915,"src":"775:65:69","symbolAliases":[{"foreign":{"id":19828,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"783:4:69","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyPool.sol","file":"./interfaces/IPolicyPool.sol","id":19831,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21756,"sourceUnit":29172,"src":"841:57:69","symbolAliases":[{"foreign":{"id":19830,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"849:11:69","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/ILPWhitelist.sol","file":"./interfaces/ILPWhitelist.sol","id":19833,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21756,"sourceUnit":28917,"src":"899:59:69","symbolAliases":[{"foreign":{"id":19832,"name":"ILPWhitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28916,"src":"907:12:69","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/ICooler.sol","file":"./interfaces/ICooler.sol","id":19835,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21756,"sourceUnit":28696,"src":"959:49:69","symbolAliases":[{"foreign":{"id":19834,"name":"ICooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28695,"src":"967:7:69","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IEToken.sol","file":"./interfaces/IEToken.sol","id":19837,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21756,"sourceUnit":28870,"src":"1009:49:69","symbolAliases":[{"foreign":{"id":19836,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28869,"src":"1017:7:69","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyPoolComponent.sol","file":"./interfaces/IPolicyPoolComponent.sol","id":19839,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21756,"sourceUnit":29189,"src":"1059:75:69","symbolAliases":[{"foreign":{"id":19838,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29188,"src":"1067:20:69","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/ETKLib.sol","file":"./ETKLib.sol","id":19841,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21756,"sourceUnit":19810,"src":"1135:36:69","symbolAliases":[{"foreign":{"id":19840,"name":"ETKLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19809,"src":"1143:6:69","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/Reserve.sol","file":"./Reserve.sol","id":19843,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21756,"sourceUnit":28016,"src":"1172:38:69","symbolAliases":[{"foreign":{"id":19842,"name":"Reserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28015,"src":"1180:7:69","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":19845,"name":"Reserve","nameLocations":["1902:7:69"],"nodeType":"IdentifierPath","referencedDeclaration":28015,"src":"1902:7:69"},"id":19846,"nodeType":"InheritanceSpecifier","src":"1902:7:69"},{"baseName":{"id":19847,"name":"ERC20PermitUpgradeable","nameLocations":["1911:22:69"],"nodeType":"IdentifierPath","referencedDeclaration":1784,"src":"1911:22:69"},"id":19848,"nodeType":"InheritanceSpecifier","src":"1911:22:69"},{"baseName":{"id":19849,"name":"IEToken","nameLocations":["1935:7:69"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"1935:7:69"},"id":19850,"nodeType":"InheritanceSpecifier","src":"1935:7:69"}],"canonicalName":"EToken","contractDependencies":[],"contractKind":"contract","documentation":{"id":19844,"nodeType":"StructuredDocumentation","src":"1212:670:69","text":" @title Ensuro ERC20 EToken - interest-bearing token\n @notice These are the liquidity pools where users provide funds to cover insurance products\n @dev Implementation of the interest/earnings bearing token for the Ensuro protocol.\n      `_tsScaled.scale` scales the balances stored in _balances. _tsScaled (totalSupply scaled) grows\n      continuoulsly at tokenInterestRate().\n      Every operation that changes the utilization rate (_scr.scr/totalSupply) or the _scr.interestRate, updates\n      first the _tsScaled.scale accumulating the interest accrued since _tsScaled.lastUpdate.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":21755,"linearizedBaseContracts":[21755,28869,1784,3124,3628,6425,8899,1615,6477,8863,7977,2910,28015,25609,29188,14272,7384,6435,7218],"name":"EToken","nameLocation":"1892:6:69","nodeType":"ContractDefinition","nodes":[{"global":false,"id":19853,"libraryName":{"id":19851,"name":"Math","nameLocations":["1953:4:69"],"nodeType":"IdentifierPath","referencedDeclaration":15914,"src":"1953:4:69"},"nodeType":"UsingForDirective","src":"1947:23:69","typeName":{"id":19852,"name":"uint256","nodeType":"ElementaryTypeName","src":"1962:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"global":false,"id":19857,"libraryName":{"id":19854,"name":"ETKLib","nameLocations":["1979:6:69"],"nodeType":"IdentifierPath","referencedDeclaration":19809,"src":"1979:6:69"},"nodeType":"UsingForDirective","src":"1973:37:69","typeName":{"id":19856,"nodeType":"UserDefinedTypeName","pathNode":{"id":19855,"name":"ETKLib.ScaledAmount","nameLocations":["1990:6:69","1997:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"1990:19:69"},"referencedDeclaration":18874,"src":"1990:19:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}}},{"global":false,"id":19861,"libraryName":{"id":19858,"name":"ETKLib","nameLocations":["2019:6:69"],"nodeType":"IdentifierPath","referencedDeclaration":19809,"src":"2019:6:69"},"nodeType":"UsingForDirective","src":"2013:28:69","typeName":{"id":19860,"nodeType":"UserDefinedTypeName","pathNode":{"id":19859,"name":"ETKLib.Scr","nameLocations":["2030:6:69","2037:3:69"],"nodeType":"IdentifierPath","referencedDeclaration":18879,"src":"2030:10:69"},"referencedDeclaration":18879,"src":"2030:10:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"}}},{"global":false,"id":19865,"libraryName":{"id":19862,"name":"ETKLib","nameLocations":["2050:6:69"],"nodeType":"IdentifierPath","referencedDeclaration":19809,"src":"2050:6:69"},"nodeType":"UsingForDirective","src":"2044:30:69","typeName":{"id":19864,"nodeType":"UserDefinedTypeName","pathNode":{"id":19863,"name":"ETKLib.Scale","nameLocations":["2061:6:69","2068:5:69"],"nodeType":"IdentifierPath","referencedDeclaration":18847,"src":"2061:12:69"},"referencedDeclaration":18847,"src":"2061:12:69","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}}},{"global":false,"id":19869,"libraryName":{"id":19866,"name":"SafeERC20","nameLocations":["2083:9:69"],"nodeType":"IdentifierPath","referencedDeclaration":9354,"src":"2083:9:69"},"nodeType":"UsingForDirective","src":"2077:35:69","typeName":{"id":19868,"nodeType":"UserDefinedTypeName","pathNode":{"id":19867,"name":"IERC20Metadata","nameLocations":["2097:14:69"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"2097:14:69"},"referencedDeclaration":8863,"src":"2097:14:69","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}}},{"global":false,"id":19872,"libraryName":{"id":19870,"name":"SafeCast","nameLocations":["2121:8:69"],"nodeType":"IdentifierPath","referencedDeclaration":17679,"src":"2121:8:69"},"nodeType":"UsingForDirective","src":"2115:27:69","typeName":{"id":19871,"name":"uint256","nodeType":"ElementaryTypeName","src":"2134:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"constant":true,"id":19875,"mutability":"constant","name":"WAD","nameLocation":"2172:3:69","nodeType":"VariableDeclaration","scope":21755,"src":"2146:36:69","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19873,"name":"uint256","nodeType":"ElementaryTypeName","src":"2146:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31653138","id":19874,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2178:4:69","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"visibility":"internal"},{"constant":true,"id":19878,"mutability":"constant","name":"FOUR_DECIMAL_TO_WAD","nameLocation":"2212:19:69","nodeType":"VariableDeclaration","scope":21755,"src":"2186:52:69","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19876,"name":"uint256","nodeType":"ElementaryTypeName","src":"2186:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31653134","id":19877,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2234:4:69","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000_by_1","typeString":"int_const 100000000000000"},"value":"1e14"},"visibility":"internal"},{"constant":true,"id":19881,"mutability":"constant","name":"HUNDRED_PERCENT","nameLocation":"2267:15:69","nodeType":"VariableDeclaration","scope":21755,"src":"2242:46:69","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":19879,"name":"uint16","nodeType":"ElementaryTypeName","src":"2242:6:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"value":{"hexValue":"316534","id":19880,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2285:3:69","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"1e4"},"visibility":"internal"},{"constant":true,"id":19884,"mutability":"constant","name":"LIQ_REQ_MIN","nameLocation":"2318:11:69","nodeType":"VariableDeclaration","scope":21755,"src":"2292:46:69","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19882,"name":"uint256","nodeType":"ElementaryTypeName","src":"2292:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"302e38653138","id":19883,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2332:6:69","typeDescriptions":{"typeIdentifier":"t_rational_800000000000000000_by_1","typeString":"int_const 800000000000000000"},"value":"0.8e18"},"visibility":"internal"},{"constant":true,"id":19887,"mutability":"constant","name":"LIQ_REQ_MAX","nameLocation":"2375:11:69","nodeType":"VariableDeclaration","scope":21755,"src":"2349:46:69","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19885,"name":"uint256","nodeType":"ElementaryTypeName","src":"2349:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"312e33653138","id":19886,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2389:6:69","typeDescriptions":{"typeIdentifier":"t_rational_1300000000000000000_by_1","typeString":"int_const 1300000000000000000"},"value":"1.3e18"},"visibility":"internal"},{"constant":true,"id":19890,"mutability":"constant","name":"INT_LOAN_IR_MAX","nameLocation":"2433:15:69","nodeType":"VariableDeclaration","scope":21755,"src":"2407:50:69","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19888,"name":"uint256","nodeType":"ElementaryTypeName","src":"2407:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"302e35653138","id":19889,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2451:6:69","typeDescriptions":{"typeIdentifier":"t_rational_500000000000000000_by_1","typeString":"int_const 500000000000000000"},"value":"0.5e18"},"visibility":"internal"},{"constant":false,"id":19893,"mutability":"mutable","name":"_tsScaled","nameLocation":"2545:9:69","nodeType":"VariableDeclaration","scope":21755,"src":"2516:38:69","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":19892,"nodeType":"UserDefinedTypeName","pathNode":{"id":19891,"name":"ETKLib.ScaledAmount","nameLocations":["2516:6:69","2523:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"2516:19:69"},"referencedDeclaration":18874,"src":"2516:19:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":19896,"mutability":"mutable","name":"_scr","nameLocation":"2602:4:69","nodeType":"VariableDeclaration","scope":21755,"src":"2582:24:69","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr"},"typeName":{"id":19895,"nodeType":"UserDefinedTypeName","pathNode":{"id":19894,"name":"ETKLib.Scr","nameLocations":["2582:6:69","2589:3:69"],"nodeType":"IdentifierPath","referencedDeclaration":18879,"src":"2582:10:69"},"referencedDeclaration":18879,"src":"2582:10:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"},{"constant":false,"documentation":{"id":19897,"nodeType":"StructuredDocumentation","src":"2611:98:69","text":"@notice Mapping that keeps track of allowed borrowers (PremiumsAccount) and their current debt"},"id":19902,"mutability":"mutable","name":"_loans","nameLocation":"2761:6:69","nodeType":"VariableDeclaration","scope":21755,"src":"2712:55:69","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$18874_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount)"},"typeName":{"id":19901,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":19898,"name":"address","nodeType":"ElementaryTypeName","src":"2720:7:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2712:39:69","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$18874_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":19900,"nodeType":"UserDefinedTypeName","pathNode":{"id":19899,"name":"ETKLib.ScaledAmount","nameLocations":["2731:6:69","2738:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"2731:19:69"},"referencedDeclaration":18874,"src":"2731:19:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}}},"visibility":"internal"},{"canonicalName":"EToken.PackedParams","documentation":{"id":19903,"nodeType":"StructuredDocumentation","src":"2772:157:69","text":" @notice Struct to store different parameters of the eToken\n @dev Packed so it fits in 256 bits. The parameters are stored with 4 decimals."},"id":19915,"members":[{"constant":false,"id":19906,"mutability":"mutable","name":"whitelist","nameLocation":"2971:9:69","nodeType":"VariableDeclaration","scope":19915,"src":"2958:22:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"},"typeName":{"id":19905,"nodeType":"UserDefinedTypeName","pathNode":{"id":19904,"name":"ILPWhitelist","nameLocations":["2958:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":28916,"src":"2958:12:69"},"referencedDeclaration":28916,"src":"2958:12:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}},"visibility":"internal"},{"constant":false,"id":19908,"mutability":"mutable","name":"liquidityRequirement","nameLocation":"3033:20:69","nodeType":"VariableDeclaration","scope":19915,"src":"3026:27:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":19907,"name":"uint16","nodeType":"ElementaryTypeName","src":"3026:6:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":19910,"mutability":"mutable","name":"minUtilizationRate","nameLocation":"3131:18:69","nodeType":"VariableDeclaration","scope":19915,"src":"3124:25:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":19909,"name":"uint16","nodeType":"ElementaryTypeName","src":"3124:6:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":19912,"mutability":"mutable","name":"maxUtilizationRate","nameLocation":"3250:18:69","nodeType":"VariableDeclaration","scope":19915,"src":"3243:25:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":19911,"name":"uint16","nodeType":"ElementaryTypeName","src":"3243:6:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":19914,"mutability":"mutable","name":"internalLoanInterestRate","nameLocation":"3368:24:69","nodeType":"VariableDeclaration","scope":19915,"src":"3361:31:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":19913,"name":"uint16","nodeType":"ElementaryTypeName","src":"3361:6:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"name":"PackedParams","nameLocation":"2939:12:69","nodeType":"StructDefinition","scope":21755,"src":"2932:550:69","visibility":"public"},{"constant":false,"documentation":{"id":19916,"nodeType":"StructuredDocumentation","src":"3486:29:69","text":"@notice eToken parameters"},"id":19919,"mutability":"mutable","name":"_params","nameLocation":"3540:7:69","nodeType":"VariableDeclaration","scope":21755,"src":"3518:29:69","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams"},"typeName":{"id":19918,"nodeType":"UserDefinedTypeName","pathNode":{"id":19917,"name":"PackedParams","nameLocations":["3518:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":19915,"src":"3518:12:69"},"referencedDeclaration":19915,"src":"3518:12:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage_ptr","typeString":"struct EToken.PackedParams"}},"visibility":"internal"},{"constant":false,"documentation":{"id":19920,"nodeType":"StructuredDocumentation","src":"3552:99:69","text":"@notice ERC-4626 vault where the funds of the eToken are invested to generate additional yields"},"id":19923,"mutability":"mutable","name":"_yieldVault","nameLocation":"3672:11:69","nodeType":"VariableDeclaration","scope":21755,"src":"3654:29:69","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":19922,"nodeType":"UserDefinedTypeName","pathNode":{"id":19921,"name":"IERC4626","nameLocations":["3654:8:69"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"3654:8:69"},"referencedDeclaration":6400,"src":"3654:8:69","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"documentation":{"id":19924,"nodeType":"StructuredDocumentation","src":"3688:108:69","text":"@notice When defined (not address(0)), it's a contract that will handle the coooldown period and process"},"id":19927,"mutability":"mutable","name":"_cooler","nameLocation":"3816:7:69","nodeType":"VariableDeclaration","scope":21755,"src":"3799:24:69","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"},"typeName":{"id":19926,"nodeType":"UserDefinedTypeName","pathNode":{"id":19925,"name":"ICooler","nameLocations":["3799:7:69"],"nodeType":"IdentifierPath","referencedDeclaration":28695,"src":"3799:7:69"},"referencedDeclaration":28695,"src":"3799:7:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}},"visibility":"internal"},{"documentation":{"id":19928,"nodeType":"StructuredDocumentation","src":"3828:106:69","text":"@notice Thrown when called by a non-borrower on borrower operations (internalLoan and lock/unlock scr)"},"errorSelector":"9cc7db46","id":19932,"name":"OnlyBorrower","nameLocation":"3943:12:69","nodeType":"ErrorDefinition","parameters":{"id":19931,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19930,"mutability":"mutable","name":"caller","nameLocation":"3964:6:69","nodeType":"VariableDeclaration","scope":19932,"src":"3956:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19929,"name":"address","nodeType":"ElementaryTypeName","src":"3956:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3955:16:69"},"src":"3937:35:69"},{"documentation":{"id":19933,"nodeType":"StructuredDocumentation","src":"3976:90:69","text":"@notice Thrown on setParam when the given value doesn't match the specific validations"},"errorSelector":"f8f01785","id":19938,"name":"InvalidParameter","nameLocation":"4075:16:69","nodeType":"ErrorDefinition","parameters":{"id":19937,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19936,"mutability":"mutable","name":"parameter","nameLocation":"4102:9:69","nodeType":"VariableDeclaration","scope":19938,"src":"4092:19:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"},"typeName":{"id":19935,"nodeType":"UserDefinedTypeName","pathNode":{"id":19934,"name":"Parameter","nameLocations":["4092:9:69"],"nodeType":"IdentifierPath","referencedDeclaration":28704,"src":"4092:9:69"},"referencedDeclaration":28704,"src":"4092:9:69","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}},"visibility":"internal"}],"src":"4091:21:69"},"src":"4069:44:69"},{"documentation":{"id":19939,"nodeType":"StructuredDocumentation","src":"4117:63:69","text":"@notice Thrown when a transfer is rejected by the Whitelist"},"errorSelector":"4b9fe5a6","id":19947,"name":"TransferNotWhitelisted","nameLocation":"4189:22:69","nodeType":"ErrorDefinition","parameters":{"id":19946,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19941,"mutability":"mutable","name":"from_","nameLocation":"4220:5:69","nodeType":"VariableDeclaration","scope":19947,"src":"4212:13:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19940,"name":"address","nodeType":"ElementaryTypeName","src":"4212:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":19943,"mutability":"mutable","name":"to_","nameLocation":"4235:3:69","nodeType":"VariableDeclaration","scope":19947,"src":"4227:11:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19942,"name":"address","nodeType":"ElementaryTypeName","src":"4227:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":19945,"mutability":"mutable","name":"value","nameLocation":"4248:5:69","nodeType":"VariableDeclaration","scope":19947,"src":"4240:13:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19944,"name":"uint256","nodeType":"ElementaryTypeName","src":"4240:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4211:43:69"},"src":"4183:72:69"},{"documentation":{"id":19948,"nodeType":"StructuredDocumentation","src":"4259:62:69","text":"@notice Thrown when a deposit is rejected by the Whitelist"},"errorSelector":"dad93260","id":19954,"name":"DepositNotWhitelisted","nameLocation":"4330:21:69","nodeType":"ErrorDefinition","parameters":{"id":19953,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19950,"mutability":"mutable","name":"account","nameLocation":"4360:7:69","nodeType":"VariableDeclaration","scope":19954,"src":"4352:15:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19949,"name":"address","nodeType":"ElementaryTypeName","src":"4352:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":19952,"mutability":"mutable","name":"value","nameLocation":"4377:5:69","nodeType":"VariableDeclaration","scope":19954,"src":"4369:13:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19951,"name":"uint256","nodeType":"ElementaryTypeName","src":"4369:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4351:32:69"},"src":"4324:60:69"},{"documentation":{"id":19955,"nodeType":"StructuredDocumentation","src":"4388:65:69","text":"@notice Thrown when a withdrawal is rejected by the Whitelist"},"errorSelector":"d38a9339","id":19961,"name":"WithdrawalNotWhitelisted","nameLocation":"4462:24:69","nodeType":"ErrorDefinition","parameters":{"id":19960,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19957,"mutability":"mutable","name":"account","nameLocation":"4495:7:69","nodeType":"VariableDeclaration","scope":19961,"src":"4487:15:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19956,"name":"address","nodeType":"ElementaryTypeName","src":"4487:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":19959,"mutability":"mutable","name":"value","nameLocation":"4512:5:69","nodeType":"VariableDeclaration","scope":19961,"src":"4504:13:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19958,"name":"uint256","nodeType":"ElementaryTypeName","src":"4504:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4486:32:69"},"src":"4456:63:69"},{"documentation":{"id":19962,"nodeType":"StructuredDocumentation","src":"4523:82:69","text":"@notice Thrown when trying to lock more funds than the ones that are available"},"errorSelector":"08f31df3","id":19968,"name":"NotEnoughScrFunds","nameLocation":"4614:17:69","nodeType":"ErrorDefinition","parameters":{"id":19967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19964,"mutability":"mutable","name":"required","nameLocation":"4640:8:69","nodeType":"VariableDeclaration","scope":19968,"src":"4632:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19963,"name":"uint256","nodeType":"ElementaryTypeName","src":"4632:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":19966,"mutability":"mutable","name":"available","nameLocation":"4658:9:69","nodeType":"VariableDeclaration","scope":19968,"src":"4650:17:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19965,"name":"uint256","nodeType":"ElementaryTypeName","src":"4650:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4631:37:69"},"src":"4608:61:69"},{"documentation":{"id":19969,"nodeType":"StructuredDocumentation","src":"4673:85:69","text":"@notice Thrown when a deposit leaves the utilizationRate under the minUtilization"},"errorSelector":"62464ab7","id":19975,"name":"UtilizationRateTooLow","nameLocation":"4767:21:69","nodeType":"ErrorDefinition","parameters":{"id":19974,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19971,"mutability":"mutable","name":"actualUtilization","nameLocation":"4797:17:69","nodeType":"VariableDeclaration","scope":19975,"src":"4789:25:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19970,"name":"uint256","nodeType":"ElementaryTypeName","src":"4789:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":19973,"mutability":"mutable","name":"minUtilization","nameLocation":"4824:14:69","nodeType":"VariableDeclaration","scope":19975,"src":"4816:22:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19972,"name":"uint256","nodeType":"ElementaryTypeName","src":"4816:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4788:51:69"},"src":"4761:79:69"},{"documentation":{"id":19976,"nodeType":"StructuredDocumentation","src":"4844:77:69","text":"@notice Thrown when trying to repayLoan or query a loan of a non-borrower"},"errorSelector":"f55824e4","id":19980,"name":"InvalidBorrower","nameLocation":"4930:15:69","nodeType":"ErrorDefinition","parameters":{"id":19979,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19978,"mutability":"mutable","name":"borrower","nameLocation":"4954:8:69","nodeType":"VariableDeclaration","scope":19980,"src":"4946:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19977,"name":"address","nodeType":"ElementaryTypeName","src":"4946:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4945:18:69"},"src":"4924:40:69"},{"documentation":{"id":19981,"nodeType":"StructuredDocumentation","src":"4968:54:69","text":"@notice Thrown when trying to add a borrower twice"},"errorSelector":"147d1f36","id":19985,"name":"BorrowerAlreadyAdded","nameLocation":"5031:20:69","nodeType":"ErrorDefinition","parameters":{"id":19984,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19983,"mutability":"mutable","name":"borrower","nameLocation":"5060:8:69","nodeType":"VariableDeclaration","scope":19985,"src":"5052:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19982,"name":"address","nodeType":"ElementaryTypeName","src":"5052:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5051:18:69"},"src":"5025:45:69"},{"documentation":{"id":19986,"nodeType":"StructuredDocumentation","src":"5074:113:69","text":"@notice Thrown when trying to change the whitelist to a contract that doesn't belong to the same policyPool()"},"errorSelector":"7ef0808b","id":19991,"name":"InvalidWhitelist","nameLocation":"5196:16:69","nodeType":"ErrorDefinition","parameters":{"id":19990,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19989,"mutability":"mutable","name":"whitelist","nameLocation":"5226:9:69","nodeType":"VariableDeclaration","scope":19991,"src":"5213:22:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"},"typeName":{"id":19988,"nodeType":"UserDefinedTypeName","pathNode":{"id":19987,"name":"ILPWhitelist","nameLocations":["5213:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":28916,"src":"5213:12:69"},"referencedDeclaration":28916,"src":"5213:12:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}},"visibility":"internal"}],"src":"5212:24:69"},"src":"5190:47:69"},{"documentation":{"id":19992,"nodeType":"StructuredDocumentation","src":"5241:110:69","text":"@notice Thrown when trying to change the cooler to a contract that doesn't belong to the same policyPool()"},"errorSelector":"f4ae1987","id":19997,"name":"InvalidCooler","nameLocation":"5360:13:69","nodeType":"ErrorDefinition","parameters":{"id":19996,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19995,"mutability":"mutable","name":"cooler","nameLocation":"5382:6:69","nodeType":"VariableDeclaration","scope":19997,"src":"5374:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"},"typeName":{"id":19994,"nodeType":"UserDefinedTypeName","pathNode":{"id":19993,"name":"ICooler","nameLocations":["5374:7:69"],"nodeType":"IdentifierPath","referencedDeclaration":28695,"src":"5374:7:69"},"referencedDeclaration":28695,"src":"5374:7:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}},"visibility":"internal"}],"src":"5373:16:69"},"src":"5354:36:69"},{"documentation":{"id":19998,"nodeType":"StructuredDocumentation","src":"5394:110:69","text":"@notice Thrown when trying to withdraw an amount that exceeds either the user funds or totalWithdrawable()"},"errorSelector":"087da9fd","id":20004,"name":"ExceedsMaxWithdraw","nameLocation":"5513:18:69","nodeType":"ErrorDefinition","parameters":{"id":20003,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20000,"mutability":"mutable","name":"requested","nameLocation":"5540:9:69","nodeType":"VariableDeclaration","scope":20004,"src":"5532:17:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19999,"name":"uint256","nodeType":"ElementaryTypeName","src":"5532:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20002,"mutability":"mutable","name":"maxWithdraw","nameLocation":"5559:11:69","nodeType":"VariableDeclaration","scope":20004,"src":"5551:19:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20001,"name":"uint256","nodeType":"ElementaryTypeName","src":"5551:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5531:40:69"},"src":"5507:65:69"},{"documentation":{"id":20005,"nodeType":"StructuredDocumentation","src":"5576:105:69","text":"@notice Thrown when trying to execute an instant withdraw when the eToken has non-zero cooldownPeriod"},"errorSelector":"2bc34ba3","id":20010,"name":"WithdrawalsRequireCooldown","nameLocation":"5690:26:69","nodeType":"ErrorDefinition","parameters":{"id":20009,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20008,"mutability":"mutable","name":"cooler","nameLocation":"5725:6:69","nodeType":"VariableDeclaration","scope":20010,"src":"5717:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"},"typeName":{"id":20007,"nodeType":"UserDefinedTypeName","pathNode":{"id":20006,"name":"ICooler","nameLocations":["5717:7:69"],"nodeType":"IdentifierPath","referencedDeclaration":28695,"src":"5717:7:69"},"referencedDeclaration":28695,"src":"5717:7:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}},"visibility":"internal"}],"src":"5716:16:69"},"src":"5684:49:69"},{"anonymous":false,"documentation":{"id":20011,"nodeType":"StructuredDocumentation","src":"5737:410:69","text":" @notice Event emitted when a PremiumsAccount takes funds (loan) from the eToken\n @dev These funds are used to cover the losses and may be later repaid if the performance of the product improves\n and accumulates surplus.\n @param borrower The address of the borrower, a {PremiumsAccount}\n @param value The amount of the loan\n @param amountAsked The amount originally asked"},"eventSelector":"98697a4799dbd9db66c7168304c43cba77a27a50d2785625e09072e0d91fdd53","id":20019,"name":"InternalLoan","nameLocation":"6156:12:69","nodeType":"EventDefinition","parameters":{"id":20018,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20013,"indexed":true,"mutability":"mutable","name":"borrower","nameLocation":"6185:8:69","nodeType":"VariableDeclaration","scope":20019,"src":"6169:24:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20012,"name":"address","nodeType":"ElementaryTypeName","src":"6169:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20015,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"6203:5:69","nodeType":"VariableDeclaration","scope":20019,"src":"6195:13:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20014,"name":"uint256","nodeType":"ElementaryTypeName","src":"6195:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20017,"indexed":false,"mutability":"mutable","name":"amountAsked","nameLocation":"6218:11:69","nodeType":"VariableDeclaration","scope":20019,"src":"6210:19:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20016,"name":"uint256","nodeType":"ElementaryTypeName","src":"6210:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6168:62:69"},"src":"6150:81:69"},{"anonymous":false,"documentation":{"id":20020,"nodeType":"StructuredDocumentation","src":"6235:211:69","text":" @notice Event emitted when a PremiumsAccount repays a loan previously taken\n @param borrower The address of the borrower, a {PremiumsAccount}\n @param value The amount of the repayment"},"eventSelector":"a1aeb41f04a9a2aa1450e8edd0fa1a0a7971ff65c7bbb7b2ca0379b9327edbaf","id":20026,"name":"InternalLoanRepaid","nameLocation":"6455:18:69","nodeType":"EventDefinition","parameters":{"id":20025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20022,"indexed":true,"mutability":"mutable","name":"borrower","nameLocation":"6490:8:69","nodeType":"VariableDeclaration","scope":20026,"src":"6474:24:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20021,"name":"address","nodeType":"ElementaryTypeName","src":"6474:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20024,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"6508:5:69","nodeType":"VariableDeclaration","scope":20026,"src":"6500:13:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20023,"name":"uint256","nodeType":"ElementaryTypeName","src":"6500:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6473:41:69"},"src":"6449:66:69"},{"anonymous":false,"documentation":{"id":20027,"nodeType":"StructuredDocumentation","src":"6519:72:69","text":"@notice Event emitted when a new borrower (PremiumsAccount) is added"},"eventSelector":"66c0f28249c4fc4db79872a4405be78a93f19c65ac9ef2f173867a149065bcf2","id":20031,"name":"InternalBorrowerAdded","nameLocation":"6600:21:69","nodeType":"EventDefinition","parameters":{"id":20030,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20029,"indexed":true,"mutability":"mutable","name":"borrower","nameLocation":"6638:8:69","nodeType":"VariableDeclaration","scope":20031,"src":"6622:24:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20028,"name":"address","nodeType":"ElementaryTypeName","src":"6622:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6621:26:69"},"src":"6594:54:69"},{"anonymous":false,"documentation":{"id":20032,"nodeType":"StructuredDocumentation","src":"6652:247:69","text":" @notice Event emitted when a borrower is removed (it can't lock funds or take loans anymore)\n @param borrower The address of the borrower, a {PremiumsAccount}\n @param defaultedDebt The unpaid amount left by the borrower"},"eventSelector":"e2ebfbed0df9004eae018a4ae91b24baa0cd1d83f495fab6dde3a1493f9dc6c6","id":20038,"name":"InternalBorrowerRemoved","nameLocation":"6908:23:69","nodeType":"EventDefinition","parameters":{"id":20037,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20034,"indexed":true,"mutability":"mutable","name":"borrower","nameLocation":"6948:8:69","nodeType":"VariableDeclaration","scope":20038,"src":"6932:24:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20033,"name":"address","nodeType":"ElementaryTypeName","src":"6932:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20036,"indexed":false,"mutability":"mutable","name":"defaultedDebt","nameLocation":"6966:13:69","nodeType":"VariableDeclaration","scope":20038,"src":"6958:21:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20035,"name":"uint256","nodeType":"ElementaryTypeName","src":"6958:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6931:49:69"},"src":"6902:79:69"},{"anonymous":false,"documentation":{"id":20039,"nodeType":"StructuredDocumentation","src":"6985:152:69","text":" @notice Event emitted when a parameter was changed\n @param param Type of parameter change\n @param newValue The new value set"},"eventSelector":"eeeae4504d4c033c7da36bf41d8ece7c21842071ca9f9b423f8e8e36483dcd96","id":20046,"name":"ParameterChanged","nameLocation":"7146:16:69","nodeType":"EventDefinition","parameters":{"id":20045,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20042,"indexed":false,"mutability":"mutable","name":"param","nameLocation":"7173:5:69","nodeType":"VariableDeclaration","scope":20046,"src":"7163:15:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"},"typeName":{"id":20041,"nodeType":"UserDefinedTypeName","pathNode":{"id":20040,"name":"Parameter","nameLocations":["7163:9:69"],"nodeType":"IdentifierPath","referencedDeclaration":28704,"src":"7163:9:69"},"referencedDeclaration":28704,"src":"7163:9:69","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}},"visibility":"internal"},{"constant":false,"id":20044,"indexed":false,"mutability":"mutable","name":"newValue","nameLocation":"7188:8:69","nodeType":"VariableDeclaration","scope":20046,"src":"7180:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20043,"name":"uint256","nodeType":"ElementaryTypeName","src":"7180:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7162:35:69"},"src":"7140:58:69"},{"anonymous":false,"documentation":{"id":20047,"nodeType":"StructuredDocumentation","src":"7202:120:69","text":" @notice Event emitted when the whitelist is changed\n @dev The event reports the old and new whitelist"},"eventSelector":"db0a396bdd47d29c2b55a6631f0b286785ea8ed9f585d34c8e32cdb022c3bc82","id":20055,"name":"WhitelistChanged","nameLocation":"7331:16:69","nodeType":"EventDefinition","parameters":{"id":20054,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20050,"indexed":false,"mutability":"mutable","name":"oldWhitelist","nameLocation":"7361:12:69","nodeType":"VariableDeclaration","scope":20055,"src":"7348:25:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"},"typeName":{"id":20049,"nodeType":"UserDefinedTypeName","pathNode":{"id":20048,"name":"ILPWhitelist","nameLocations":["7348:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":28916,"src":"7348:12:69"},"referencedDeclaration":28916,"src":"7348:12:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}},"visibility":"internal"},{"constant":false,"id":20053,"indexed":false,"mutability":"mutable","name":"newWhitelist","nameLocation":"7388:12:69","nodeType":"VariableDeclaration","scope":20055,"src":"7375:25:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"},"typeName":{"id":20052,"nodeType":"UserDefinedTypeName","pathNode":{"id":20051,"name":"ILPWhitelist","nameLocations":["7375:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":28916,"src":"7375:12:69"},"referencedDeclaration":28916,"src":"7375:12:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}},"visibility":"internal"}],"src":"7347:54:69"},"src":"7325:77:69"},{"anonymous":false,"documentation":{"id":20056,"nodeType":"StructuredDocumentation","src":"7406:114:69","text":" @notice Event emitted when the cooler is changed\n @dev The event reports the old and new cooler"},"eventSelector":"f9f12db81524e0e7d35f2779daf818e6824509f85b09470f5c1c4d29304a756b","id":20064,"name":"CoolerChanged","nameLocation":"7529:13:69","nodeType":"EventDefinition","parameters":{"id":20063,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20059,"indexed":false,"mutability":"mutable","name":"oldCooler","nameLocation":"7551:9:69","nodeType":"VariableDeclaration","scope":20064,"src":"7543:17:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"},"typeName":{"id":20058,"nodeType":"UserDefinedTypeName","pathNode":{"id":20057,"name":"ICooler","nameLocations":["7543:7:69"],"nodeType":"IdentifierPath","referencedDeclaration":28695,"src":"7543:7:69"},"referencedDeclaration":28695,"src":"7543:7:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}},"visibility":"internal"},{"constant":false,"id":20062,"indexed":false,"mutability":"mutable","name":"newCooler","nameLocation":"7570:9:69","nodeType":"VariableDeclaration","scope":20064,"src":"7562:17:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"},"typeName":{"id":20061,"nodeType":"UserDefinedTypeName","pathNode":{"id":20060,"name":"ICooler","nameLocations":["7562:7:69"],"nodeType":"IdentifierPath","referencedDeclaration":28695,"src":"7562:7:69"},"referencedDeclaration":28695,"src":"7562:7:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}},"visibility":"internal"}],"src":"7542:38:69"},"src":"7523:58:69"},{"anonymous":false,"documentation":{"id":20065,"nodeType":"StructuredDocumentation","src":"7585:352:69","text":" @notice Event emitted when tokens are burn, redistributing the value to the rest of LPs\n @dev This typically happens when a cooldown is executed and there were profits during the period\n @param owner The owner of the burned tokens (the cooler)\n @param distributedProfit The amount that is distributed between all the LPs"},"eventSelector":"a17978b5145b36c8c694b15cd193ab32fac45fbb1b2378e56ca71b11a5bc5722","id":20071,"name":"ETokensRedistributed","nameLocation":"7946:20:69","nodeType":"EventDefinition","parameters":{"id":20070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20067,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"7983:5:69","nodeType":"VariableDeclaration","scope":20071,"src":"7967:21:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20066,"name":"address","nodeType":"ElementaryTypeName","src":"7967:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20069,"indexed":false,"mutability":"mutable","name":"distributedProfit","nameLocation":"7998:17:69","nodeType":"VariableDeclaration","scope":20071,"src":"7990:25:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20068,"name":"uint256","nodeType":"ElementaryTypeName","src":"7990:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7966:50:69"},"src":"7940:77:69"},{"anonymous":false,"documentation":{"id":20072,"nodeType":"StructuredDocumentation","src":"8021:401:69","text":" @notice Event emitted when part of a previously received CoC is refunded\n @dev This happends when a policy is cancelled with refund. It doesn't affect the totalSupply since it should\n be not yet accrued money.\n @param policyId The owner of the burned tokens (the cooler)\n @param receiver The user that received the refund\n @param amount The amount of the refund"},"eventSelector":"c8e60e828d888d5921f45ececd1bc138a29c2b6aacc8ab8a762f3f096492c561","id":20080,"name":"CoCRefunded","nameLocation":"8431:11:69","nodeType":"EventDefinition","parameters":{"id":20079,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20074,"indexed":true,"mutability":"mutable","name":"policyId","nameLocation":"8459:8:69","nodeType":"VariableDeclaration","scope":20080,"src":"8443:24:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20073,"name":"uint256","nodeType":"ElementaryTypeName","src":"8443:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20076,"indexed":true,"mutability":"mutable","name":"receiver","nameLocation":"8485:8:69","nodeType":"VariableDeclaration","scope":20080,"src":"8469:24:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20075,"name":"address","nodeType":"ElementaryTypeName","src":"8469:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20078,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"8503:6:69","nodeType":"VariableDeclaration","scope":20080,"src":"8495:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20077,"name":"uint256","nodeType":"ElementaryTypeName","src":"8495:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8442:68:69"},"src":"8425:86:69"},{"body":{"id":20098,"nodeType":"Block","src":"8646:91:69","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":20090,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":20084,"name":"_loans","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"8660:6:69","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$18874_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount storage ref)"}},"id":20087,"indexExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":20085,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"8667:10:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":20086,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8667:12:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8660:20:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20088,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8681:10:69","memberName":"lastUpdate","nodeType":"MemberAccess","referencedDeclaration":18873,"src":"8660:31:69","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":20089,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8695:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8660:36:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":20092,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"8711:10:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":20093,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8711:12:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":20091,"name":"OnlyBorrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19932,"src":"8698:12:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":20094,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8698:26:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":20083,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"8652:7:69","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":20095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8652:73:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20096,"nodeType":"ExpressionStatement","src":"8652:73:69"},{"id":20097,"nodeType":"PlaceholderStatement","src":"8731:1:69"}]},"documentation":{"id":20081,"nodeType":"StructuredDocumentation","src":"8515:104:69","text":"@notice Modifier used to validate the methods that can be called only by borrowers (PremiumsAccount)"},"id":20099,"name":"onlyBorrower","nameLocation":"8631:12:69","nodeType":"ModifierDefinition","parameters":{"id":20082,"nodeType":"ParameterList","parameters":[],"src":"8643:2:69"},"src":"8622:115:69","virtual":false,"visibility":"internal"},{"constant":true,"id":20102,"mutability":"constant","name":"ERC20StorageLocation","nameLocation":"8925:20:69","nodeType":"VariableDeclaration","scope":21755,"src":"8900:114:69","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":20100,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8900:7:69","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307835326336333234376531663437646231396435636530343630303330633439376630363763613463656266373162613938656561646162653230626163653030","id":20101,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8948:66:69","typeDescriptions":{"typeIdentifier":"t_rational_37439836327923360225337895871394760624280537466773280374265222508165906222592_by_1","typeString":"int_const 3743...(69 digits omitted)...2592"},"value":"0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00"},"visibility":"private"},{"body":{"id":20109,"nodeType":"Block","src":"9103:115:69","statements":[{"AST":{"nativeSrc":"9170:44:69","nodeType":"YulBlock","src":"9170:44:69","statements":[{"nativeSrc":"9178:30:69","nodeType":"YulAssignment","src":"9178:30:69","value":{"name":"ERC20StorageLocation","nativeSrc":"9188:20:69","nodeType":"YulIdentifier","src":"9188:20:69"},"variableNames":[{"name":"$.slot","nativeSrc":"9178:6:69","nodeType":"YulIdentifier","src":"9178:6:69"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":20106,"isOffset":false,"isSlot":true,"src":"9178:6:69","suffix":"slot","valueSize":1},{"declaration":20102,"isOffset":false,"isSlot":false,"src":"9188:20:69","valueSize":1}],"id":20108,"nodeType":"InlineAssembly","src":"9161:53:69"}]},"id":20110,"implemented":true,"kind":"function","modifiers":[],"name":"_getERC20StorageFromEToken","nameLocation":"9028:26:69","nodeType":"FunctionDefinition","parameters":{"id":20103,"nodeType":"ParameterList","parameters":[],"src":"9054:2:69"},"returnParameters":{"id":20107,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20106,"mutability":"mutable","name":"$","nameLocation":"9100:1:69","nodeType":"VariableDeclaration","scope":20110,"src":"9079:22:69","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":20105,"nodeType":"UserDefinedTypeName","pathNode":{"id":20104,"name":"ERC20Storage","nameLocations":["9079:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":1039,"src":"9079:12:69"},"referencedDeclaration":1039,"src":"9079:12:69","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"src":"9078:24:69"},"scope":21755,"src":"9019:199:69","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":20120,"nodeType":"Block","src":"9378:2:69","statements":[]},"documentation":{"id":20111,"nodeType":"StructuredDocumentation","src":"9222:48:69","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":20121,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":20117,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20114,"src":"9365:11:69","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}}],"id":20118,"kind":"baseConstructorSpecifier","modifierName":{"id":20116,"name":"Reserve","nameLocations":["9357:7:69"],"nodeType":"IdentifierPath","referencedDeclaration":28015,"src":"9357:7:69"},"nodeType":"ModifierInvocation","src":"9357:20:69"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":20115,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20114,"mutability":"mutable","name":"policyPool_","nameLocation":"9344:11:69","nodeType":"VariableDeclaration","scope":20121,"src":"9332:23:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"typeName":{"id":20113,"nodeType":"UserDefinedTypeName","pathNode":{"id":20112,"name":"IPolicyPool","nameLocations":["9332:11:69"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"9332:11:69"},"referencedDeclaration":29171,"src":"9332:11:69","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"9331:25:69"},"returnParameters":{"id":20119,"nodeType":"ParameterList","parameters":[],"src":"9378:0:69"},"scope":21755,"src":"9320:60:69","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":20152,"nodeType":"Block","src":"9866:169:69","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":20135,"name":"__Reserve_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27444,"src":"9872:14:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":20136,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9872:16:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20137,"nodeType":"ExpressionStatement","src":"9872:16:69"},{"expression":{"arguments":[{"id":20139,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20124,"src":"9907:5:69","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":20140,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20126,"src":"9914:7:69","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"}],"id":20138,"name":"__ERC20_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1066,"src":"9894:12:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":20141,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9894:28:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20142,"nodeType":"ExpressionStatement","src":"9894:28:69"},{"expression":{"arguments":[{"id":20144,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20124,"src":"9947:5:69","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":20143,"name":"__ERC20Permit_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1671,"src":"9928:18:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory)"}},"id":20145,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9928:25:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20146,"nodeType":"ExpressionStatement","src":"9928:25:69"},{"expression":{"arguments":[{"id":20148,"name":"maxUtilizationRate_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20128,"src":"9983:19:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20149,"name":"internalLoanInterestRate_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20130,"src":"10004:25:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20147,"name":"__EToken_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20195,"src":"9959:23:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":20150,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9959:71:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20151,"nodeType":"ExpressionStatement","src":"9959:71:69"}]},"documentation":{"id":20122,"nodeType":"StructuredDocumentation","src":"9384:312:69","text":" @dev Initializes the eToken\n @param name_ Name of the eToken\n @param symbol_ Symbol of the eToken\n @param maxUtilizationRate_ Max utilization rate (scr / totalSupply), in WAD (1e18)\n @param internalLoanInterestRate_ Annualized interest rate charged on internal loans, in WAD (1e18)"},"functionSelector":"6fe0e395","id":20153,"implemented":true,"kind":"function","modifiers":[{"id":20133,"kind":"modifierInvocation","modifierName":{"id":20132,"name":"initializer","nameLocations":["9854:11:69"],"nodeType":"IdentifierPath","referencedDeclaration":7058,"src":"9854:11:69"},"nodeType":"ModifierInvocation","src":"9854:11:69"}],"name":"initialize","nameLocation":"9708:10:69","nodeType":"FunctionDefinition","parameters":{"id":20131,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20124,"mutability":"mutable","name":"name_","nameLocation":"9738:5:69","nodeType":"VariableDeclaration","scope":20153,"src":"9724:19:69","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":20123,"name":"string","nodeType":"ElementaryTypeName","src":"9724:6:69","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":20126,"mutability":"mutable","name":"symbol_","nameLocation":"9763:7:69","nodeType":"VariableDeclaration","scope":20153,"src":"9749:21:69","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":20125,"name":"string","nodeType":"ElementaryTypeName","src":"9749:6:69","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":20128,"mutability":"mutable","name":"maxUtilizationRate_","nameLocation":"9784:19:69","nodeType":"VariableDeclaration","scope":20153,"src":"9776:27:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20127,"name":"uint256","nodeType":"ElementaryTypeName","src":"9776:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20130,"mutability":"mutable","name":"internalLoanInterestRate_","nameLocation":"9817:25:69","nodeType":"VariableDeclaration","scope":20153,"src":"9809:33:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20129,"name":"uint256","nodeType":"ElementaryTypeName","src":"9809:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9718:128:69"},"returnParameters":{"id":20134,"nodeType":"ParameterList","parameters":[],"src":"9866:0:69"},"scope":21755,"src":"9699:336:69","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":20194,"nodeType":"Block","src":"10225:546:69","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":20162,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"10231:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20164,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10241:4:69","memberName":"init","nodeType":"MemberAccess","referencedDeclaration":19270,"src":"10231:14:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_ScaledAmount_$18874_storage_ptr_$returns$__$attached_to$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer)"}},"id":20165,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10231:16:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20166,"nodeType":"ExpressionStatement","src":"10231:16:69"},{"expression":{"id":20180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20167,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"10348:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"hexValue":"30","id":20169,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10399:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":20170,"name":"HUNDRED_PERCENT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19881,"src":"10462:15:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},{"hexValue":"30","id":20171,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10505:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":20172,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10540:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"arguments":[{"arguments":[{"hexValue":"30","id":20176,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10613:1:69","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":20175,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10605:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":20174,"name":"address","nodeType":"ElementaryTypeName","src":"10605:7:69","typeDescriptions":{}}},"id":20177,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10605:10:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":20173,"name":"ILPWhitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28916,"src":"10592:12:69","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ILPWhitelist_$28916_$","typeString":"type(contract ILPWhitelist)"}},"id":20178,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10592:24:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint16","typeString":"uint16"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}],"id":20168,"name":"PackedParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19915,"src":"10358:12:69","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_PackedParams_$19915_storage_ptr_$","typeString":"type(struct EToken.PackedParams storage pointer)"}},"id":20179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["10379:18:69","10440:20:69","10485:18:69","10514:24:69","10581:9:69"],"names":["maxUtilizationRate","liquidityRequirement","minUtilizationRate","internalLoanInterestRate","whitelist"],"nodeType":"FunctionCall","src":"10358:265:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_memory_ptr","typeString":"struct EToken.PackedParams memory"}},"src":"10348:275:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":20181,"nodeType":"ExpressionStatement","src":"10348:275:69"},{"expression":{"arguments":[{"expression":{"id":20183,"name":"Parameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28704,"src":"10639:9:69","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Parameter_$28704_$","typeString":"type(enum IEToken.Parameter)"}},"id":20184,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10649:18:69","memberName":"maxUtilizationRate","nodeType":"MemberAccess","referencedDeclaration":28702,"src":"10639:28:69","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}},{"id":20185,"name":"maxUtilizationRate_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20155,"src":"10669:19:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20182,"name":"setParam","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21640,"src":"10630:8:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_enum$_Parameter_$28704_$_t_uint256_$returns$__$","typeString":"function (enum IEToken.Parameter,uint256)"}},"id":20186,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10630:59:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20187,"nodeType":"ExpressionStatement","src":"10630:59:69"},{"expression":{"arguments":[{"expression":{"id":20189,"name":"Parameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28704,"src":"10704:9:69","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Parameter_$28704_$","typeString":"type(enum IEToken.Parameter)"}},"id":20190,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10714:24:69","memberName":"internalLoanInterestRate","nodeType":"MemberAccess","referencedDeclaration":28703,"src":"10704:34:69","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}},{"id":20191,"name":"internalLoanInterestRate_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20157,"src":"10740:25:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20188,"name":"setParam","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21640,"src":"10695:8:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_enum$_Parameter_$28704_$_t_uint256_$returns$__$","typeString":"function (enum IEToken.Parameter,uint256)"}},"id":20192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10695:71:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20193,"nodeType":"ExpressionStatement","src":"10695:71:69"}]},"id":20195,"implemented":true,"kind":"function","modifiers":[{"id":20160,"kind":"modifierInvocation","modifierName":{"id":20159,"name":"onlyInitializing","nameLocations":["10208:16:69"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"10208:16:69"},"nodeType":"ModifierInvocation","src":"10208:16:69"}],"name":"__EToken_init_unchained","nameLocation":"10099:23:69","nodeType":"FunctionDefinition","parameters":{"id":20158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20155,"mutability":"mutable","name":"maxUtilizationRate_","nameLocation":"10136:19:69","nodeType":"VariableDeclaration","scope":20195,"src":"10128:27:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20154,"name":"uint256","nodeType":"ElementaryTypeName","src":"10128:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20157,"mutability":"mutable","name":"internalLoanInterestRate_","nameLocation":"10169:25:69","nodeType":"VariableDeclaration","scope":20195,"src":"10161:33:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20156,"name":"uint256","nodeType":"ElementaryTypeName","src":"10161:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10122:76:69"},"returnParameters":{"id":20161,"nodeType":"ParameterList","parameters":[],"src":"10225:0:69"},"scope":21755,"src":"10090:681:69","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[25582],"body":{"id":20230,"nodeType":"Block","src":"10892:216:69","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":20228,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":20221,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":20214,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":20206,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20198,"src":"10935:11:69","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":20204,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"10911:5:69","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_EToken_$21755_$","typeString":"type(contract super EToken)"}},"id":20205,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10917:17:69","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":25582,"src":"10911:23:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":20207,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10911:36:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":20213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20208,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20198,"src":"10957:11:69","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":20210,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"10977:6:69","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$7977_$","typeString":"type(contract IERC20)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC20_$7977_$","typeString":"type(contract IERC20)"}],"id":20209,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10972:4:69","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20211,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10972:12:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC20_$7977","typeString":"type(contract IERC20)"}},"id":20212,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10985:11:69","memberName":"interfaceId","nodeType":"MemberAccess","src":"10972:24:69","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"10957:39:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10911:85:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":20220,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20215,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20198,"src":"11006:11:69","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":20217,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"11026:14:69","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$8863_$","typeString":"type(contract IERC20Metadata)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$8863_$","typeString":"type(contract IERC20Metadata)"}],"id":20216,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11021:4:69","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20218,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11021:20:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC20Metadata_$8863","typeString":"type(contract IERC20Metadata)"}},"id":20219,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11042:11:69","memberName":"interfaceId","nodeType":"MemberAccess","src":"11021:32:69","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"11006:47:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10911:142:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":20227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20222,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20198,"src":"11063:11:69","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":20224,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28869,"src":"11083:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IEToken_$28869_$","typeString":"type(contract IEToken)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IEToken_$28869_$","typeString":"type(contract IEToken)"}],"id":20223,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11078:4:69","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20225,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11078:13:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IEToken_$28869","typeString":"type(contract IEToken)"}},"id":20226,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11092:11:69","memberName":"interfaceId","nodeType":"MemberAccess","src":"11078:25:69","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"11063:40:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10911:192:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":20203,"id":20229,"nodeType":"Return","src":"10898:205:69"}]},"documentation":{"id":20196,"nodeType":"StructuredDocumentation","src":"10775:23:69","text":"@inheritdoc IERC165"},"functionSelector":"01ffc9a7","id":20231,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"10810:17:69","nodeType":"FunctionDefinition","overrides":{"id":20200,"nodeType":"OverrideSpecifier","overrides":[],"src":"10868:8:69"},"parameters":{"id":20199,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20198,"mutability":"mutable","name":"interfaceId","nameLocation":"10835:11:69","nodeType":"VariableDeclaration","scope":20231,"src":"10828:18:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":20197,"name":"bytes4","nodeType":"ElementaryTypeName","src":"10828:6:69","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"10827:20:69"},"returnParameters":{"id":20203,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20202,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20231,"src":"10886:4:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":20201,"name":"bool","nodeType":"ElementaryTypeName","src":"10886:4:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10885:6:69"},"scope":21755,"src":"10801:307:69","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1135],"body":{"id":20244,"nodeType":"Block","src":"11299:51:69","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":20238,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25474,"src":"11312:11:69","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"id":20239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11324:8:69","memberName":"currency","nodeType":"MemberAccess","referencedDeclaration":29043,"src":"11312:20:69","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IERC20Metadata_$8863_$","typeString":"function () view external returns (contract IERC20Metadata)"}},"id":20240,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11312:22:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":20241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11335:8:69","memberName":"decimals","nodeType":"MemberAccess","referencedDeclaration":8862,"src":"11312:31:69","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint8_$","typeString":"function () view external returns (uint8)"}},"id":20242,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11312:33:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":20237,"id":20243,"nodeType":"Return","src":"11305:40:69"}]},"documentation":{"id":20232,"nodeType":"StructuredDocumentation","src":"11201:30:69","text":"@inheritdoc IERC20Metadata"},"functionSelector":"313ce567","id":20245,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"11243:8:69","nodeType":"FunctionDefinition","overrides":{"id":20234,"nodeType":"OverrideSpecifier","overrides":[],"src":"11274:8:69"},"parameters":{"id":20233,"nodeType":"ParameterList","parameters":[],"src":"11251:2:69"},"returnParameters":{"id":20237,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20236,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20245,"src":"11292:5:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":20235,"name":"uint8","nodeType":"ElementaryTypeName","src":"11292:5:69","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"11291:7:69"},"scope":21755,"src":"11234:116:69","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1151],"body":{"id":20261,"nodeType":"Block","src":"11449:74:69","statements":[{"expression":{"arguments":[{"expression":{"id":20257,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"11501:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20258,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11511:6:69","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":18868,"src":"11501:16:69","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"expression":{"arguments":[{"id":20254,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"11485:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":20252,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"11462:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20253,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11472:12:69","memberName":"projectScale","nodeType":"MemberAccess","referencedDeclaration":19241,"src":"11462:22:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_struct$_Scr_$18879_storage_ptr_$returns$_t_userDefinedValueType$_Scale_$18847_$attached_to$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,struct ETKLib.Scr storage pointer) view returns (ETKLib.Scale)"}},"id":20255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11462:28:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":20256,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11491:9:69","memberName":"toCurrent","nodeType":"MemberAccess","referencedDeclaration":18977,"src":"11462:38:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$_t_uint256_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale,uint256) pure returns (uint256)"}},"id":20259,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11462:56:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":20251,"id":20260,"nodeType":"Return","src":"11455:63:69"}]},"documentation":{"id":20246,"nodeType":"StructuredDocumentation","src":"11354:22:69","text":"@inheritdoc IERC20"},"functionSelector":"18160ddd","id":20262,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"11388:11:69","nodeType":"FunctionDefinition","overrides":{"id":20248,"nodeType":"OverrideSpecifier","overrides":[],"src":"11422:8:69"},"parameters":{"id":20247,"nodeType":"ParameterList","parameters":[],"src":"11399:2:69"},"returnParameters":{"id":20251,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20250,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20262,"src":"11440:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20249,"name":"uint256","nodeType":"ElementaryTypeName","src":"11440:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11439:9:69"},"scope":21755,"src":"11379:144:69","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1171],"body":{"id":20282,"nodeType":"Block","src":"11635:82:69","statements":[{"expression":{"arguments":[{"arguments":[{"id":20278,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20265,"src":"11703:7:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":20276,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"11687:5:69","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_EToken_$21755_$","typeString":"type(contract super EToken)"}},"id":20277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11693:9:69","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":1171,"src":"11687:15:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":20279,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11687:24:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":20273,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"11671:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":20271,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"11648:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20272,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11658:12:69","memberName":"projectScale","nodeType":"MemberAccess","referencedDeclaration":19241,"src":"11648:22:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_struct$_Scr_$18879_storage_ptr_$returns$_t_userDefinedValueType$_Scale_$18847_$attached_to$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,struct ETKLib.Scr storage pointer) view returns (ETKLib.Scale)"}},"id":20274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11648:28:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":20275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11677:9:69","memberName":"toCurrent","nodeType":"MemberAccess","referencedDeclaration":18977,"src":"11648:38:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$_t_uint256_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale,uint256) pure returns (uint256)"}},"id":20280,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11648:64:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":20270,"id":20281,"nodeType":"Return","src":"11641:71:69"}]},"documentation":{"id":20263,"nodeType":"StructuredDocumentation","src":"11527:22:69","text":"@inheritdoc IERC20"},"functionSelector":"70a08231","id":20283,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"11561:9:69","nodeType":"FunctionDefinition","overrides":{"id":20267,"nodeType":"OverrideSpecifier","overrides":[],"src":"11608:8:69"},"parameters":{"id":20266,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20265,"mutability":"mutable","name":"account","nameLocation":"11579:7:69","nodeType":"VariableDeclaration","scope":20283,"src":"11571:15:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20264,"name":"address","nodeType":"ElementaryTypeName","src":"11571:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11570:17:69"},"returnParameters":{"id":20270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20269,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20283,"src":"11626:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20268,"name":"uint256","nodeType":"ElementaryTypeName","src":"11626:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11625:9:69"},"scope":21755,"src":"11552:165:69","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1414],"body":{"id":20443,"nodeType":"Block","src":"11840:1242:69","statements":[{"assignments":[20295],"declarations":[{"constant":false,"id":20295,"mutability":"mutable","name":"valueScaled","nameLocation":"11854:11:69","nodeType":"VariableDeclaration","scope":20443,"src":"11846:19:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20294,"name":"uint256","nodeType":"ElementaryTypeName","src":"11846:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":20296,"nodeType":"VariableDeclarationStatement","src":"11846:19:69"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":20302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20297,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20286,"src":"11875:4:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":20300,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11891:1:69","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":20299,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11883:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":20298,"name":"address","nodeType":"ElementaryTypeName","src":"11883:7:69","typeDescriptions":{}}},"id":20301,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11883:10:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11875:18:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":20319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20314,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20288,"src":"11987:2:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":20317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12001:1:69","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":20316,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11993:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":20315,"name":"address","nodeType":"ElementaryTypeName","src":"11993:7:69","typeDescriptions":{}}},"id":20318,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11993:10:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11987:16:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":20368,"nodeType":"Block","src":"12093:277:69","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":20350,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":20341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":20334,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"12144:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":20335,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12152:9:69","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":19906,"src":"12144:17:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}],"id":20333,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12136:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":20332,"name":"address","nodeType":"ElementaryTypeName","src":"12136:7:69","typeDescriptions":{}}},"id":20336,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12136:26:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":20339,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12174:1:69","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":20338,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12166:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":20337,"name":"address","nodeType":"ElementaryTypeName","src":"12166:7:69","typeDescriptions":{}}},"id":20340,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12166:10:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12136:40:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":20345,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"12214:4:69","typeDescriptions":{"typeIdentifier":"t_contract$_EToken_$21755","typeString":"contract EToken"}},{"id":20346,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20286,"src":"12220:4:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20347,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20288,"src":"12226:2:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20348,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20290,"src":"12230:5:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EToken_$21755","typeString":"contract EToken"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":20342,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"12180:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":20343,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12188:9:69","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":19906,"src":"12180:17:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}},"id":20344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12198:15:69","memberName":"acceptsTransfer","nodeType":"MemberAccess","referencedDeclaration":28902,"src":"12180:33:69","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_contract$_IEToken_$28869_$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (contract IEToken,address,address,uint256) view external returns (bool)"}},"id":20349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12180:56:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12136:100:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":20352,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20286,"src":"12269:4:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20353,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20288,"src":"12275:2:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20354,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20290,"src":"12279:5:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20351,"name":"TransferNotWhitelisted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19947,"src":"12246:22:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$_t_uint256_$returns$_t_error_$","typeString":"function (address,address,uint256) pure returns (error)"}},"id":20355,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12246:39:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":20331,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"12119:7:69","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":20356,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12119:174:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20357,"nodeType":"ExpressionStatement","src":"12119:174:69"},{"expression":{"id":20366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20358,"name":"valueScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20295,"src":"12301:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20364,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20290,"src":"12357:5:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":20361,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"12338:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":20359,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"12315:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20360,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12325:12:69","memberName":"projectScale","nodeType":"MemberAccess","referencedDeclaration":19241,"src":"12315:22:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_struct$_Scr_$18879_storage_ptr_$returns$_t_userDefinedValueType$_Scale_$18847_$attached_to$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,struct ETKLib.Scr storage pointer) view returns (ETKLib.Scale)"}},"id":20362,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12315:28:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":20363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12344:12:69","memberName":"toScaledCeil","nodeType":"MemberAccess","referencedDeclaration":19037,"src":"12315:41:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$_t_uint256_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale,uint256) pure returns (uint256)"}},"id":20365,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12315:48:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12301:62:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":20367,"nodeType":"ExpressionStatement","src":"12301:62:69"}]},"id":20369,"nodeType":"IfStatement","src":"11983:387:69","trueBody":{"id":20330,"nodeType":"Block","src":"12005:82:69","statements":[{"expression":{"id":20328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":20320,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"12028:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},{"id":20321,"name":"valueScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20295,"src":"12039:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":20322,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"12027:24:69","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$18874_storage_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount storage ref,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20325,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20290,"src":"12068:5:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20326,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"12075:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":20323,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"12054:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20324,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12064:3:69","memberName":"sub","nodeType":"MemberAccess","referencedDeclaration":19484,"src":"12054:13:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_uint256_$_t_struct$_Scr_$18879_storage_ptr_$returns$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$attached_to$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256,struct ETKLib.Scr storage pointer) view returns (struct ETKLib.ScaledAmount memory,uint256)"}},"id":20327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12054:26:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"src":"12027:53:69","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20329,"nodeType":"ExpressionStatement","src":"12027:53:69"}]}},"id":20370,"nodeType":"IfStatement","src":"11871:499:69","trueBody":{"id":20313,"nodeType":"Block","src":"11895:82:69","statements":[{"expression":{"id":20311,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":20303,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"11918:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},{"id":20304,"name":"valueScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20295,"src":"11929:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":20305,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"11917:24:69","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$18874_storage_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount storage ref,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20308,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20290,"src":"11958:5:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20309,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"11965:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":20306,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"11944:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20307,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11954:3:69","memberName":"add","nodeType":"MemberAccess","referencedDeclaration":19457,"src":"11944:13:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_uint256_$_t_struct$_Scr_$18879_storage_ptr_$returns$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$attached_to$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256,struct ETKLib.Scr storage pointer) view returns (struct ETKLib.ScaledAmount memory,uint256)"}},"id":20310,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11944:26:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"src":"11917:53:69","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20312,"nodeType":"ExpressionStatement","src":"11917:53:69"}]}},{"assignments":[20373],"declarations":[{"constant":false,"id":20373,"mutability":"mutable","name":"$","nameLocation":"12397:1:69","nodeType":"VariableDeclaration","scope":20443,"src":"12376:22:69","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":20372,"nodeType":"UserDefinedTypeName","pathNode":{"id":20371,"name":"ERC20Storage","nameLocations":["12376:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":1039,"src":"12376:12:69"},"referencedDeclaration":1039,"src":"12376:12:69","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":20376,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":20374,"name":"_getERC20StorageFromEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20110,"src":"12401:26:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$1039_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":20375,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12401:28:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"12376:53:69"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":20382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20377,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20286,"src":"12439:4:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":20380,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12455:1:69","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":20379,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12447:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":20378,"name":"address","nodeType":"ElementaryTypeName","src":"12447:7:69","typeDescriptions":{}}},"id":20381,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12447:10:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12439:18:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20419,"nodeType":"IfStatement","src":"12435:390:69","trueBody":{"id":20418,"nodeType":"Block","src":"12459:366:69","statements":[{"assignments":[20384],"declarations":[{"constant":false,"id":20384,"mutability":"mutable","name":"fromBalance","nameLocation":"12475:11:69","nodeType":"VariableDeclaration","scope":20418,"src":"12467:19:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20383,"name":"uint256","nodeType":"ElementaryTypeName","src":"12467:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":20389,"initialValue":{"baseExpression":{"expression":{"id":20385,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20373,"src":"12489:1:69","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":20386,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12491:9:69","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":1026,"src":"12489:11:69","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":20388,"indexExpression":{"id":20387,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20286,"src":"12501:4:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12489:17:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12467:39:69"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20392,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20390,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20384,"src":"12518:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":20391,"name":"valueScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20295,"src":"12532:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12518:25:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20406,"nodeType":"IfStatement","src":"12514:147:69","trueBody":{"id":20405,"nodeType":"Block","src":"12545:116:69","statements":[{"errorCall":{"arguments":[{"id":20394,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20286,"src":"12587:4:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":20400,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20384,"src":"12632:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":20397,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"12616:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":20395,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"12593:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20396,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12603:12:69","memberName":"projectScale","nodeType":"MemberAccess","referencedDeclaration":19241,"src":"12593:22:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_struct$_Scr_$18879_storage_ptr_$returns$_t_userDefinedValueType$_Scale_$18847_$attached_to$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,struct ETKLib.Scr storage pointer) view returns (ETKLib.Scale)"}},"id":20398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12593:28:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":20399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12622:9:69","memberName":"toCurrent","nodeType":"MemberAccess","referencedDeclaration":18977,"src":"12593:38:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$_t_uint256_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale,uint256) pure returns (uint256)"}},"id":20401,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12593:51:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20402,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20290,"src":"12646:5:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20393,"name":"ERC20InsufficientBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6447,"src":"12562:24:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":20403,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12562:90:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20404,"nodeType":"RevertStatement","src":"12555:97:69"}]}},{"id":20417,"nodeType":"UncheckedBlock","src":"12668:151:69","statements":[{"expression":{"id":20415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":20407,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20373,"src":"12765:1:69","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":20410,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12767:9:69","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":1026,"src":"12765:11:69","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":20411,"indexExpression":{"id":20409,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20286,"src":"12777:4:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"12765:17:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20414,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20412,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20384,"src":"12785:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":20413,"name":"valueScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20295,"src":"12799:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12785:25:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12765:45:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":20416,"nodeType":"ExpressionStatement","src":"12765:45:69"}]}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":20425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20420,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20288,"src":"12835:2:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":20423,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12849:1:69","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":20422,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12841:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":20421,"name":"address","nodeType":"ElementaryTypeName","src":"12841:7:69","typeDescriptions":{}}},"id":20424,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12841:10:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12835:16:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20436,"nodeType":"IfStatement","src":"12831:210:69","trueBody":{"id":20435,"nodeType":"Block","src":"12853:188:69","statements":[{"id":20434,"nodeType":"UncheckedBlock","src":"12861:174:69","statements":[{"expression":{"id":20432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":20426,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20373,"src":"12996:1:69","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$1039_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":20429,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12998:9:69","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":1026,"src":"12996:11:69","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":20430,"indexExpression":{"id":20428,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20288,"src":"13008:2:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"12996:15:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":20431,"name":"valueScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20295,"src":"13015:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12996:30:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":20433,"nodeType":"ExpressionStatement","src":"12996:30:69"}]}]}},{"eventCall":{"arguments":[{"id":20438,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20286,"src":"13061:4:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20439,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20288,"src":"13067:2:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20440,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20290,"src":"13071:5:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20437,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7911,"src":"13052:8:69","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":20441,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13052:25:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20442,"nodeType":"EmitStatement","src":"13047:30:69"}]},"documentation":{"id":20284,"nodeType":"StructuredDocumentation","src":"11721:32:69","text":"@inheritdoc ERC20Upgradeable"},"id":20444,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"11765:7:69","nodeType":"FunctionDefinition","overrides":{"id":20292,"nodeType":"OverrideSpecifier","overrides":[],"src":"11831:8:69"},"parameters":{"id":20291,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20286,"mutability":"mutable","name":"from","nameLocation":"11781:4:69","nodeType":"VariableDeclaration","scope":20444,"src":"11773:12:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20285,"name":"address","nodeType":"ElementaryTypeName","src":"11773:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20288,"mutability":"mutable","name":"to","nameLocation":"11795:2:69","nodeType":"VariableDeclaration","scope":20444,"src":"11787:10:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20287,"name":"address","nodeType":"ElementaryTypeName","src":"11787:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20290,"mutability":"mutable","name":"value","nameLocation":"11807:5:69","nodeType":"VariableDeclaration","scope":20444,"src":"11799:13:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20289,"name":"uint256","nodeType":"ElementaryTypeName","src":"11799:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11772:41:69"},"returnParameters":{"id":20293,"nodeType":"ParameterList","parameters":[],"src":"11840:0:69"},"scope":21755,"src":"11756:1326:69","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":20457,"nodeType":"Block","src":"13546:39:69","statements":[{"expression":{"arguments":[{"id":20454,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20447,"src":"13575:4:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":20452,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"13559:5:69","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_EToken_$21755_$","typeString":"type(contract super EToken)"}},"id":20453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13565:9:69","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":1171,"src":"13559:15:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":20455,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13559:21:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":20451,"id":20456,"nodeType":"Return","src":"13552:28:69"}]},"documentation":{"id":20445,"nodeType":"StructuredDocumentation","src":"13209:263:69","text":" @dev Returns the scaled balance of the user. The scaled balance is the sum of all the\n updated stored balance divided by the EToken's scale index\n @param user The user whose balance is calculated\n @return The scaled balance of the user*"},"functionSelector":"1da24f3e","id":20458,"implemented":true,"kind":"function","modifiers":[],"name":"scaledBalanceOf","nameLocation":"13484:15:69","nodeType":"FunctionDefinition","parameters":{"id":20448,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20447,"mutability":"mutable","name":"user","nameLocation":"13508:4:69","nodeType":"VariableDeclaration","scope":20458,"src":"13500:12:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20446,"name":"address","nodeType":"ElementaryTypeName","src":"13500:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"13499:14:69"},"returnParameters":{"id":20451,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20450,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20458,"src":"13537:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20449,"name":"uint256","nodeType":"ElementaryTypeName","src":"13537:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13536:9:69"},"scope":21755,"src":"13475:110:69","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":20479,"nodeType":"Block","src":"13919:68:69","statements":[{"expression":{"components":[{"arguments":[{"id":20470,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20461,"src":"13949:4:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":20468,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"13933:5:69","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_EToken_$21755_$","typeString":"type(contract super EToken)"}},"id":20469,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13939:9:69","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":1171,"src":"13933:15:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":20471,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13933:21:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"expression":{"id":20474,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"13964:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20475,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13974:6:69","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":18868,"src":"13964:16:69","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":20473,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13956:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":20472,"name":"uint256","nodeType":"ElementaryTypeName","src":"13956:7:69","typeDescriptions":{}}},"id":20476,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13956:25:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":20477,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13932:50:69","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"functionReturnParameters":20467,"id":20478,"nodeType":"Return","src":"13925:57:69"}]},"documentation":{"id":20459,"nodeType":"StructuredDocumentation","src":"13589:233:69","text":" @dev Returns the scaled balance of the user and the scaled total supply.\n @param user The address of the user\n @return The scaled balance of the user\n @return The scaled balance and the scaled total supply*"},"functionSelector":"0afbcdc9","id":20480,"implemented":true,"kind":"function","modifiers":[],"name":"getScaledUserBalanceAndSupply","nameLocation":"13834:29:69","nodeType":"FunctionDefinition","parameters":{"id":20462,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20461,"mutability":"mutable","name":"user","nameLocation":"13872:4:69","nodeType":"VariableDeclaration","scope":20480,"src":"13864:12:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20460,"name":"address","nodeType":"ElementaryTypeName","src":"13864:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"13863:14:69"},"returnParameters":{"id":20467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20464,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20480,"src":"13901:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20463,"name":"uint256","nodeType":"ElementaryTypeName","src":"13901:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20466,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20480,"src":"13910:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20465,"name":"uint256","nodeType":"ElementaryTypeName","src":"13910:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13900:18:69"},"scope":21755,"src":"13825:162:69","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":20492,"nodeType":"Block","src":"14271:43:69","statements":[{"expression":{"arguments":[{"expression":{"id":20488,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"14292:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20489,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14302:6:69","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":18868,"src":"14292:16:69","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":20487,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14284:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":20486,"name":"uint256","nodeType":"ElementaryTypeName","src":"14284:7:69","typeDescriptions":{}}},"id":20490,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14284:25:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":20485,"id":20491,"nodeType":"Return","src":"14277:32:69"}]},"documentation":{"id":20481,"nodeType":"StructuredDocumentation","src":"13991:216:69","text":" @notice Returns the total supply in scaled/raw units (without applying the current scale index). Equals the sum of {scaledBalanceOf} across all users.\n @return The total supply in scaled/raw units."},"functionSelector":"b1bf962d","id":20493,"implemented":true,"kind":"function","modifiers":[],"name":"scaledTotalSupply","nameLocation":"14219:17:69","nodeType":"FunctionDefinition","parameters":{"id":20482,"nodeType":"ParameterList","parameters":[],"src":"14236:2:69"},"returnParameters":{"id":20485,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20484,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20493,"src":"14262:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20483,"name":"uint256","nodeType":"ElementaryTypeName","src":"14262:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14261:9:69"},"scope":21755,"src":"14210:104:69","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[28856],"body":{"id":20516,"nodeType":"Block","src":"14481:116:69","statements":[{"condition":{"id":20502,"name":"updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20496,"src":"14491:7:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":20510,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"14565:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20511,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14575:5:69","memberName":"scale","nodeType":"MemberAccess","referencedDeclaration":18871,"src":"14565:15:69","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":20512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14581:9:69","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":19148,"src":"14565:25:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":20513,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14565:27:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":20501,"id":20514,"nodeType":"Return","src":"14558:34:69"},"id":20515,"nodeType":"IfStatement","src":"14487:105:69","trueBody":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":20505,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"14530:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":20503,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"14507:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20504,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14517:12:69","memberName":"projectScale","nodeType":"MemberAccess","referencedDeclaration":19241,"src":"14507:22:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_struct$_Scr_$18879_storage_ptr_$returns$_t_userDefinedValueType$_Scale_$18847_$attached_to$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,struct ETKLib.Scr storage pointer) view returns (ETKLib.Scale)"}},"id":20506,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14507:28:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":20507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14536:9:69","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":19148,"src":"14507:38:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":20508,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14507:40:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":20501,"id":20509,"nodeType":"Return","src":"14500:47:69"}}]},"documentation":{"id":20494,"nodeType":"StructuredDocumentation","src":"14377:23:69","text":"@inheritdoc IEToken"},"functionSelector":"79d989fb","id":20517,"implemented":true,"kind":"function","modifiers":[],"name":"getCurrentScale","nameLocation":"14412:15:69","nodeType":"FunctionDefinition","overrides":{"id":20498,"nodeType":"OverrideSpecifier","overrides":[],"src":"14454:8:69"},"parameters":{"id":20497,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20496,"mutability":"mutable","name":"updated","nameLocation":"14433:7:69","nodeType":"VariableDeclaration","scope":20517,"src":"14428:12:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":20495,"name":"bool","nodeType":"ElementaryTypeName","src":"14428:4:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"14427:14:69"},"returnParameters":{"id":20501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20500,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20517,"src":"14472:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20499,"name":"uint256","nodeType":"ElementaryTypeName","src":"14472:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14471:9:69"},"scope":21755,"src":"14403:194:69","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":20529,"nodeType":"Block","src":"14741:52:69","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":20525,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[20262],"referencedDeclaration":20262,"src":"14774:11:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":20526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14774:13:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":20523,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"14754:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":20524,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14759:14:69","memberName":"fundsAvailable","nodeType":"MemberAccess","referencedDeclaration":19792,"src":"14754:19:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$18879_storage_ptr_$_t_uint256_$returns$_t_uint256_$attached_to$_t_struct$_Scr_$18879_storage_ptr_$","typeString":"function (struct ETKLib.Scr storage pointer,uint256) view returns (uint256)"}},"id":20527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14754:34:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":20522,"id":20528,"nodeType":"Return","src":"14747:41:69"}]},"documentation":{"id":20518,"nodeType":"StructuredDocumentation","src":"14601:81:69","text":" @dev Returns the amount of totalSupply that isn't utilized as SCR."},"functionSelector":"4fe0bd1e","id":20530,"implemented":true,"kind":"function","modifiers":[],"name":"fundsAvailable","nameLocation":"14694:14:69","nodeType":"FunctionDefinition","parameters":{"id":20519,"nodeType":"ParameterList","parameters":[],"src":"14708:2:69"},"returnParameters":{"id":20522,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20521,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20530,"src":"14732:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20520,"name":"uint256","nodeType":"ElementaryTypeName","src":"14732:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14731:9:69"},"scope":21755,"src":"14685:108:69","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":20599,"nodeType":"Block","src":"15062:406:69","statements":[{"assignments":[20537],"declarations":[{"constant":false,"id":20537,"mutability":"mutable","name":"ts","nameLocation":"15076:2:69","nodeType":"VariableDeclaration","scope":20599,"src":"15068:10:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20536,"name":"uint256","nodeType":"ElementaryTypeName","src":"15068:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":20540,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":20538,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[20262],"referencedDeclaration":20262,"src":"15081:11:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":20539,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15081:13:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15068:26:69"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":20549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":20543,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19927,"src":"15112:7:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}],"id":20542,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15104:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":20541,"name":"address","nodeType":"ElementaryTypeName","src":"15104:7:69","typeDescriptions":{}}},"id":20544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15104:16:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":20547,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15132:1:69","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":20546,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15124:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":20545,"name":"address","nodeType":"ElementaryTypeName","src":"15124:7:69","typeDescriptions":{}}},"id":20548,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15124:10:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"15104:30:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":20592,"nodeType":"Block","src":"15372:56:69","statements":[{"expression":{"id":20590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20583,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20537,"src":"15380:2:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":20586,"name":"maxUtilizationRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20732,"src":"15395:18:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":20587,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15395:20:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20588,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19875,"src":"15417:3:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":20584,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20537,"src":"15385:2:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":20585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15388:6:69","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14799,"src":"15385:9:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":20589,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15385:36:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15380:41:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":20591,"nodeType":"ExpressionStatement","src":"15380:41:69"}]},"id":20593,"nodeType":"IfStatement","src":"15100:328:69","trueBody":{"id":20582,"nodeType":"Block","src":"15136:230:69","statements":[{"assignments":[20551],"declarations":[{"constant":false,"id":20551,"mutability":"mutable","name":"pendingWithdraw","nameLocation":"15152:15:69","nodeType":"VariableDeclaration","scope":20582,"src":"15144:23:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20550,"name":"uint256","nodeType":"ElementaryTypeName","src":"15144:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":20556,"initialValue":{"arguments":[{"id":20554,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"15197:4:69","typeDescriptions":{"typeIdentifier":"t_contract$_EToken_$21755","typeString":"contract EToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EToken_$21755","typeString":"contract EToken"}],"expression":{"id":20552,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19927,"src":"15170:7:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}},"id":20553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15178:18:69","memberName":"pendingWithdrawals","nodeType":"MemberAccess","referencedDeclaration":28681,"src":"15170:26:69","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_contract$_IEToken_$28869_$returns$_t_uint256_$","typeString":"function (contract IEToken) view external returns (uint256)"}},"id":20555,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15170:32:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15144:58:69"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20559,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20557,"name":"pendingWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20551,"src":"15214:15:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":20558,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20537,"src":"15233:2:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15214:21:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":20580,"nodeType":"Block","src":"15268:92:69","statements":[{"expression":{"id":20578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20565,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20537,"src":"15278:2:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20568,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20537,"src":"15292:2:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":20569,"name":"pendingWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20551,"src":"15297:15:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15292:20:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":20573,"name":"maxUtilizationRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20732,"src":"15324:18:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":20574,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15324:20:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20575,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19875,"src":"15346:3:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":20571,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20537,"src":"15314:2:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":20572,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15317:6:69","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14799,"src":"15314:9:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":20576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15314:36:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":20566,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"15283:4:69","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":20567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15288:3:69","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":14599,"src":"15283:8:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":20577,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15283:68:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15278:73:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":20579,"nodeType":"ExpressionStatement","src":"15278:73:69"}]},"id":20581,"nodeType":"IfStatement","src":"15210:150:69","trueBody":{"id":20564,"nodeType":"Block","src":"15237:25:69","statements":[{"expression":{"id":20562,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20560,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20537,"src":"15247:2:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":20561,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15252:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"15247:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":20563,"nodeType":"ExpressionStatement","src":"15247:6:69"}]}}]}},{"expression":{"arguments":[{"id":20596,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20537,"src":"15460:2:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":20594,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"15440:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":20595,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15445:14:69","memberName":"fundsAvailable","nodeType":"MemberAccess","referencedDeclaration":19792,"src":"15440:19:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$18879_storage_ptr_$_t_uint256_$returns$_t_uint256_$attached_to$_t_struct$_Scr_$18879_storage_ptr_$","typeString":"function (struct ETKLib.Scr storage pointer,uint256) view returns (uint256)"}},"id":20597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15440:23:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":20535,"id":20598,"nodeType":"Return","src":"15433:30:69"}]},"documentation":{"id":20531,"nodeType":"StructuredDocumentation","src":"14797:200:69","text":" @dev Returns the funds that can be treated as available to lock as SCR, after applying the\n      max utilization cap and (if a Cooler is configured) subtracting pending withdrawals."},"functionSelector":"a08f2203","id":20600,"implemented":true,"kind":"function","modifiers":[],"name":"fundsAvailableToLock","nameLocation":"15009:20:69","nodeType":"FunctionDefinition","parameters":{"id":20532,"nodeType":"ParameterList","parameters":[],"src":"15029:2:69"},"returnParameters":{"id":20535,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20534,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20600,"src":"15053:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20533,"name":"uint256","nodeType":"ElementaryTypeName","src":"15053:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15052:9:69"},"scope":21755,"src":"15000:468:69","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[27525],"body":{"id":20610,"nodeType":"Block","src":"15560:29:69","statements":[{"expression":{"id":20608,"name":"_yieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19923,"src":"15573:11:69","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"functionReturnParameters":20607,"id":20609,"nodeType":"Return","src":"15566:18:69"}]},"documentation":{"id":20601,"nodeType":"StructuredDocumentation","src":"15472:23:69","text":"@inheritdoc Reserve"},"functionSelector":"a7f8a5e2","id":20611,"implemented":true,"kind":"function","modifiers":[],"name":"yieldVault","nameLocation":"15507:10:69","nodeType":"FunctionDefinition","overrides":{"id":20603,"nodeType":"OverrideSpecifier","overrides":[],"src":"15532:8:69"},"parameters":{"id":20602,"nodeType":"ParameterList","parameters":[],"src":"15517:2:69"},"returnParameters":{"id":20607,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20606,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20611,"src":"15550:8:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":20605,"nodeType":"UserDefinedTypeName","pathNode":{"id":20604,"name":"IERC4626","nameLocations":["15550:8:69"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"15550:8:69"},"referencedDeclaration":6400,"src":"15550:8:69","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"15549:10:69"},"scope":21755,"src":"15498:91:69","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[27532],"body":{"id":20622,"nodeType":"Block","src":"15651:30:69","statements":[{"expression":{"id":20620,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20618,"name":"_yieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19923,"src":"15657:11:69","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":20619,"name":"newYV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20614,"src":"15671:5:69","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"src":"15657:19:69","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"id":20621,"nodeType":"ExpressionStatement","src":"15657:19:69"}]},"id":20623,"implemented":true,"kind":"function","modifiers":[],"name":"_setYieldVault","nameLocation":"15602:14:69","nodeType":"FunctionDefinition","overrides":{"id":20616,"nodeType":"OverrideSpecifier","overrides":[],"src":"15642:8:69"},"parameters":{"id":20615,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20614,"mutability":"mutable","name":"newYV","nameLocation":"15626:5:69","nodeType":"VariableDeclaration","scope":20623,"src":"15617:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":20613,"nodeType":"UserDefinedTypeName","pathNode":{"id":20612,"name":"IERC4626","nameLocations":["15617:8:69"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"15617:8:69"},"referencedDeclaration":6400,"src":"15617:8:69","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"15616:16:69"},"returnParameters":{"id":20617,"nodeType":"ParameterList","parameters":[],"src":"15651:0:69"},"scope":21755,"src":"15593:88:69","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":20637,"nodeType":"Block","src":"15799:93:69","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":20632,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20625,"src":"15859:5:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"}],"id":20631,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15851:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":20630,"name":"uint256","nodeType":"ElementaryTypeName","src":"15851:7:69","typeDescriptions":{}}},"id":20633,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15851:14:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":20634,"name":"FOUR_DECIMAL_TO_WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19878,"src":"15868:19:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15851:36:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":20629,"id":20636,"nodeType":"Return","src":"15844:43:69"}]},"id":20638,"implemented":true,"kind":"function","modifiers":[],"name":"_4toWad","nameLocation":"15745:7:69","nodeType":"FunctionDefinition","parameters":{"id":20626,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20625,"mutability":"mutable","name":"value","nameLocation":"15760:5:69","nodeType":"VariableDeclaration","scope":20638,"src":"15753:12:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":20624,"name":"uint16","nodeType":"ElementaryTypeName","src":"15753:6:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"15752:14:69"},"returnParameters":{"id":20629,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20628,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20638,"src":"15790:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20627,"name":"uint256","nodeType":"ElementaryTypeName","src":"15790:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15789:9:69"},"scope":21755,"src":"15736:156:69","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20652,"nodeType":"Block","src":"15959:83:69","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20647,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20645,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20640,"src":"15998:5:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":20646,"name":"FOUR_DECIMAL_TO_WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19878,"src":"16006:19:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15998:27:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":20648,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15997:29:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":20649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16027:8:69","memberName":"toUint16","nodeType":"MemberAccess","referencedDeclaration":16781,"src":"15997:38:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint16_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint16)"}},"id":20650,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15997:40:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"functionReturnParameters":20644,"id":20651,"nodeType":"Return","src":"15990:47:69"}]},"id":20653,"implemented":true,"kind":"function","modifiers":[],"name":"_wadTo4","nameLocation":"15905:7:69","nodeType":"FunctionDefinition","parameters":{"id":20641,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20640,"mutability":"mutable","name":"value","nameLocation":"15921:5:69","nodeType":"VariableDeclaration","scope":20653,"src":"15913:13:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20639,"name":"uint256","nodeType":"ElementaryTypeName","src":"15913:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15912:15:69"},"returnParameters":{"id":20644,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20643,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20653,"src":"15951:6:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":20642,"name":"uint16","nodeType":"ElementaryTypeName","src":"15951:6:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"15950:8:69"},"scope":21755,"src":"15896:146:69","stateMutability":"pure","virtual":false,"visibility":"internal"},{"baseFunctions":[28730],"body":{"id":20664,"nodeType":"Block","src":"16134:34:69","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":20660,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"16147:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":20661,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16152:9:69","memberName":"scrAmount","nodeType":"MemberAccess","referencedDeclaration":19808,"src":"16147:14:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$18879_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_Scr_$18879_storage_ptr_$","typeString":"function (struct ETKLib.Scr storage pointer) view returns (uint256)"}},"id":20662,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16147:16:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":20659,"id":20663,"nodeType":"Return","src":"16140:23:69"}]},"documentation":{"id":20654,"nodeType":"StructuredDocumentation","src":"16046:23:69","text":"@inheritdoc IEToken"},"functionSelector":"6c6f4542","id":20665,"implemented":true,"kind":"function","modifiers":[],"name":"scr","nameLocation":"16081:3:69","nodeType":"FunctionDefinition","overrides":{"id":20656,"nodeType":"OverrideSpecifier","overrides":[],"src":"16107:8:69"},"parameters":{"id":20655,"nodeType":"ParameterList","parameters":[],"src":"16084:2:69"},"returnParameters":{"id":20659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20658,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20665,"src":"16125:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20657,"name":"uint256","nodeType":"ElementaryTypeName","src":"16125:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16124:9:69"},"scope":21755,"src":"16072:96:69","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[28848],"body":{"id":20678,"nodeType":"Block","src":"16264:44:69","statements":[{"expression":{"arguments":[{"expression":{"id":20674,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"16285:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":20675,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16290:12:69","memberName":"interestRate","nodeType":"MemberAccess","referencedDeclaration":18878,"src":"16285:17:69","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":20673,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16277:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":20672,"name":"uint256","nodeType":"ElementaryTypeName","src":"16277:7:69","typeDescriptions":{}}},"id":20676,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16277:26:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":20671,"id":20677,"nodeType":"Return","src":"16270:33:69"}]},"documentation":{"id":20666,"nodeType":"StructuredDocumentation","src":"16172:23:69","text":"@inheritdoc IEToken"},"functionSelector":"9d90724d","id":20679,"implemented":true,"kind":"function","modifiers":[],"name":"scrInterestRate","nameLocation":"16207:15:69","nodeType":"FunctionDefinition","overrides":{"id":20668,"nodeType":"OverrideSpecifier","overrides":[],"src":"16237:8:69"},"parameters":{"id":20667,"nodeType":"ParameterList","parameters":[],"src":"16222:2:69"},"returnParameters":{"id":20671,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20670,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20679,"src":"16255:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20669,"name":"uint256","nodeType":"ElementaryTypeName","src":"16255:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16254:9:69"},"scope":21755,"src":"16198:110:69","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[28842],"body":{"id":20707,"nodeType":"Block","src":"16406:111:69","statements":[{"assignments":[20687],"declarations":[{"constant":false,"id":20687,"mutability":"mutable","name":"ts","nameLocation":"16420:2:69","nodeType":"VariableDeclaration","scope":20707,"src":"16412:10:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20686,"name":"uint256","nodeType":"ElementaryTypeName","src":"16412:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":20690,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":20688,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[20262],"referencedDeclaration":20262,"src":"16425:11:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":20689,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16425:13:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16412:26:69"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20693,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20691,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20687,"src":"16451:2:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":20692,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16457:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"16451:7:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"expression":{"id":20701,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"16499:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":20702,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16504:3:69","memberName":"scr","nodeType":"MemberAccess","referencedDeclaration":18876,"src":"16499:8:69","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"id":20703,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20687,"src":"16509:2:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"id":20697,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"16473:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":20698,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16478:12:69","memberName":"interestRate","nodeType":"MemberAccess","referencedDeclaration":18878,"src":"16473:17:69","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":20696,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16465:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":20695,"name":"uint256","nodeType":"ElementaryTypeName","src":"16465:7:69","typeDescriptions":{}}},"id":20699,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16465:26:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":20700,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16492:6:69","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14799,"src":"16465:33:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":20704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16465:47:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":20705,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"16451:61:69","trueExpression":{"hexValue":"30","id":20694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16461:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":20685,"id":20706,"nodeType":"Return","src":"16444:68:69"}]},"documentation":{"id":20680,"nodeType":"StructuredDocumentation","src":"16312:23:69","text":"@inheritdoc IEToken"},"functionSelector":"159ec2df","id":20708,"implemented":true,"kind":"function","modifiers":[],"name":"tokenInterestRate","nameLocation":"16347:17:69","nodeType":"FunctionDefinition","overrides":{"id":20682,"nodeType":"OverrideSpecifier","overrides":[],"src":"16379:8:69"},"parameters":{"id":20681,"nodeType":"ParameterList","parameters":[],"src":"16364:2:69"},"returnParameters":{"id":20685,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20684,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20708,"src":"16397:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20683,"name":"uint256","nodeType":"ElementaryTypeName","src":"16397:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16396:9:69"},"scope":21755,"src":"16338:179:69","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":20719,"nodeType":"Block","src":"16700:55:69","statements":[{"expression":{"arguments":[{"expression":{"id":20715,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"16721:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":20716,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16729:20:69","memberName":"liquidityRequirement","nodeType":"MemberAccess","referencedDeclaration":19908,"src":"16721:28:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"}],"id":20714,"name":"_4toWad","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20638,"src":"16713:7:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint16_$returns$_t_uint256_$","typeString":"function (uint16) pure returns (uint256)"}},"id":20717,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16713:37:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":20713,"id":20718,"nodeType":"Return","src":"16706:44:69"}]},"documentation":{"id":20709,"nodeType":"StructuredDocumentation","src":"16521:114:69","text":" @dev Returns the factor applied to SCR when computing the non-withdrawable. Typically 1.0 (in wad)."},"functionSelector":"ba4e8df5","id":20720,"implemented":true,"kind":"function","modifiers":[],"name":"liquidityRequirement","nameLocation":"16647:20:69","nodeType":"FunctionDefinition","parameters":{"id":20710,"nodeType":"ParameterList","parameters":[],"src":"16667:2:69"},"returnParameters":{"id":20713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20712,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20720,"src":"16691:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20711,"name":"uint256","nodeType":"ElementaryTypeName","src":"16691:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16690:9:69"},"scope":21755,"src":"16638:117:69","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":20731,"nodeType":"Block","src":"17076:53:69","statements":[{"expression":{"arguments":[{"expression":{"id":20727,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"17097:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":20728,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17105:18:69","memberName":"maxUtilizationRate","nodeType":"MemberAccess","referencedDeclaration":19912,"src":"17097:26:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"}],"id":20726,"name":"_4toWad","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20638,"src":"17089:7:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint16_$returns$_t_uint256_$","typeString":"function (uint16) pure returns (uint256)"}},"id":20729,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17089:35:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":20725,"id":20730,"nodeType":"Return","src":"17082:42:69"}]},"documentation":{"id":20721,"nodeType":"StructuredDocumentation","src":"16759:254:69","text":" @dev Returns the maximum utilization rate (UR) that is acceptable when locking funds.\n      The UR can be higher than this value as a consequence of withdrawals or other operations,\n      but not as a consequence of a lockScr call."},"functionSelector":"dfcb48bd","id":20732,"implemented":true,"kind":"function","modifiers":[],"name":"maxUtilizationRate","nameLocation":"17025:18:69","nodeType":"FunctionDefinition","parameters":{"id":20722,"nodeType":"ParameterList","parameters":[],"src":"17043:2:69"},"returnParameters":{"id":20725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20724,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20732,"src":"17067:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20723,"name":"uint256","nodeType":"ElementaryTypeName","src":"17067:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17066:9:69"},"scope":21755,"src":"17016:113:69","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":20743,"nodeType":"Block","src":"17445:53:69","statements":[{"expression":{"arguments":[{"expression":{"id":20739,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"17466:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":20740,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17474:18:69","memberName":"minUtilizationRate","nodeType":"MemberAccess","referencedDeclaration":19910,"src":"17466:26:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"}],"id":20738,"name":"_4toWad","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20638,"src":"17458:7:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint16_$returns$_t_uint256_$","typeString":"function (uint16) pure returns (uint256)"}},"id":20741,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17458:35:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":20737,"id":20742,"nodeType":"Return","src":"17451:42:69"}]},"documentation":{"id":20733,"nodeType":"StructuredDocumentation","src":"17133:249:69","text":" @dev Returns the minimum utilization rate (UR) that is acceptable after deposits.\n      The UR can be lower than this value as a consequence of SCR unlocks or other operations,\n      but not as a consequence of a deposit call."},"functionSelector":"ee01a183","id":20744,"implemented":true,"kind":"function","modifiers":[],"name":"minUtilizationRate","nameLocation":"17394:18:69","nodeType":"FunctionDefinition","parameters":{"id":20734,"nodeType":"ParameterList","parameters":[],"src":"17412:2:69"},"returnParameters":{"id":20737,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20736,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20744,"src":"17436:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20735,"name":"uint256","nodeType":"ElementaryTypeName","src":"17436:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17435:9:69"},"scope":21755,"src":"17385:113:69","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":20768,"nodeType":"Block","src":"17677:96:69","statements":[{"assignments":[20751],"declarations":[{"constant":false,"id":20751,"mutability":"mutable","name":"ts","nameLocation":"17691:2:69","nodeType":"VariableDeclaration","scope":20768,"src":"17683:10:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20750,"name":"uint256","nodeType":"ElementaryTypeName","src":"17683:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":20754,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":20752,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[20262],"referencedDeclaration":20262,"src":"17696:11:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":20753,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17696:13:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"17683:26:69"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20757,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20755,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20751,"src":"17722:2:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":20756,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17728:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17722:7:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":20763,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19875,"src":"17760:3:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20764,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20751,"src":"17765:2:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":20759,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"17736:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":20760,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17741:9:69","memberName":"scrAmount","nodeType":"MemberAccess","referencedDeclaration":19808,"src":"17736:14:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$18879_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_Scr_$18879_storage_ptr_$","typeString":"function (struct ETKLib.Scr storage pointer) view returns (uint256)"}},"id":20761,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17736:16:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":20762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17753:6:69","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14799,"src":"17736:23:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":20765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17736:32:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":20766,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"17722:46:69","trueExpression":{"hexValue":"30","id":20758,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17732:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":20749,"id":20767,"nodeType":"Return","src":"17715:53:69"}]},"documentation":{"id":20745,"nodeType":"StructuredDocumentation","src":"17502:115:69","text":" @dev Returns the percentage of the total supply that is used as SCR (solvency capital backing risks)"},"functionSelector":"6c321c8a","id":20769,"implemented":true,"kind":"function","modifiers":[],"name":"utilizationRate","nameLocation":"17629:15:69","nodeType":"FunctionDefinition","parameters":{"id":20746,"nodeType":"ParameterList","parameters":[],"src":"17644:2:69"},"returnParameters":{"id":20749,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20748,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20769,"src":"17668:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20747,"name":"uint256","nodeType":"ElementaryTypeName","src":"17668:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17667:9:69"},"scope":21755,"src":"17620:153:69","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[28740],"body":{"id":20814,"nodeType":"Block","src":"17890:342:69","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20784,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20781,"name":"scrAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20773,"src":"17900:9:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":20782,"name":"fundsAvailableToLock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20600,"src":"17912:20:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":20783,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17912:22:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17900:34:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20791,"nodeType":"IfStatement","src":"17896:99:69","trueBody":{"errorCall":{"arguments":[{"id":20786,"name":"scrAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20773,"src":"17961:9:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":20787,"name":"fundsAvailableToLock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20600,"src":"17972:20:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":20788,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17972:22:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20785,"name":"NotEnoughScrFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19968,"src":"17943:17:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":20789,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17943:52:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20790,"nodeType":"RevertStatement","src":"17936:59:69"}},{"expression":{"id":20798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20792,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"18001:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"hexValue":"30","id":20795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18038:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":20796,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"18041:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":20793,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"18013:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20794,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18023:14:69","memberName":"discreteChange","nodeType":"MemberAccess","referencedDeclaration":19556,"src":"18013:24:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_int256_$_t_struct$_Scr_$18879_storage_ptr_$returns$_t_struct$_ScaledAmount_$18874_memory_ptr_$attached_to$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,int256,struct ETKLib.Scr storage pointer) view returns (struct ETKLib.ScaledAmount memory)"}},"id":20797,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18013:33:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_memory_ptr","typeString":"struct ETKLib.ScaledAmount memory"}},"src":"18001:45:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20799,"nodeType":"ExpressionStatement","src":"18001:45:69"},{"expression":{"id":20806,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20800,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"18120:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20803,"name":"scrAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20773,"src":"18136:9:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20804,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20775,"src":"18147:18:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":20801,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"18127:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":20802,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18132:3:69","memberName":"add","nodeType":"MemberAccess","referencedDeclaration":19652,"src":"18127:8:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$18879_storage_ptr_$_t_uint256_$_t_uint256_$returns$_t_struct$_Scr_$18879_memory_ptr_$attached_to$_t_struct$_Scr_$18879_storage_ptr_$","typeString":"function (struct ETKLib.Scr storage pointer,uint256,uint256) view returns (struct ETKLib.Scr memory)"}},"id":20805,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18127:39:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_memory_ptr","typeString":"struct ETKLib.Scr memory"}},"src":"18120:46:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":20807,"nodeType":"ExpressionStatement","src":"18120:46:69"},{"eventCall":{"arguments":[{"id":20809,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20771,"src":"18187:8:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20810,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20775,"src":"18197:18:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20811,"name":"scrAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20773,"src":"18217:9:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20808,"name":"SCRLocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28713,"src":"18177:9:69","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256)"}},"id":20812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18177:50:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20813,"nodeType":"EmitStatement","src":"18172:55:69"}]},"functionSelector":"4ffcda8c","id":20815,"implemented":true,"kind":"function","modifiers":[{"id":20779,"kind":"modifierInvocation","modifierName":{"id":20778,"name":"onlyBorrower","nameLocations":["17877:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":20099,"src":"17877:12:69"},"nodeType":"ModifierInvocation","src":"17877:12:69"}],"name":"lockScr","nameLocation":"17786:7:69","nodeType":"FunctionDefinition","overrides":{"id":20777,"nodeType":"OverrideSpecifier","overrides":[],"src":"17868:8:69"},"parameters":{"id":20776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20771,"mutability":"mutable","name":"policyId","nameLocation":"17802:8:69","nodeType":"VariableDeclaration","scope":20815,"src":"17794:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20770,"name":"uint256","nodeType":"ElementaryTypeName","src":"17794:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20773,"mutability":"mutable","name":"scrAmount","nameLocation":"17820:9:69","nodeType":"VariableDeclaration","scope":20815,"src":"17812:17:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20772,"name":"uint256","nodeType":"ElementaryTypeName","src":"17812:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20775,"mutability":"mutable","name":"policyInterestRate","nameLocation":"17839:18:69","nodeType":"VariableDeclaration","scope":20815,"src":"17831:26:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20774,"name":"uint256","nodeType":"ElementaryTypeName","src":"17831:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17793:65:69"},"returnParameters":{"id":20780,"nodeType":"ParameterList","parameters":[],"src":"17890:0:69"},"scope":21755,"src":"17777:455:69","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":20849,"nodeType":"Block","src":"18349:385:69","statements":[{"expression":{"id":20832,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20826,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"18548:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20829,"name":"adjustment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20823,"src":"18585:10:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":20830,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"18597:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":20827,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"18560:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20828,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18570:14:69","memberName":"discreteChange","nodeType":"MemberAccess","referencedDeclaration":19556,"src":"18560:24:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_int256_$_t_struct$_Scr_$18879_storage_ptr_$returns$_t_struct$_ScaledAmount_$18874_memory_ptr_$attached_to$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,int256,struct ETKLib.Scr storage pointer) view returns (struct ETKLib.ScaledAmount memory)"}},"id":20831,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18560:42:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_memory_ptr","typeString":"struct ETKLib.ScaledAmount memory"}},"src":"18548:54:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20833,"nodeType":"ExpressionStatement","src":"18548:54:69"},{"expression":{"id":20840,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20834,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"18608:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20837,"name":"scrAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20819,"src":"18624:9:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20838,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20821,"src":"18635:18:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":20835,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"18615:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":20836,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18620:3:69","memberName":"sub","nodeType":"MemberAccess","referencedDeclaration":19724,"src":"18615:8:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$18879_storage_ptr_$_t_uint256_$_t_uint256_$returns$_t_struct$_Scr_$18879_memory_ptr_$attached_to$_t_struct$_Scr_$18879_storage_ptr_$","typeString":"function (struct ETKLib.Scr storage pointer,uint256,uint256) view returns (struct ETKLib.Scr memory)"}},"id":20839,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18615:39:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_memory_ptr","typeString":"struct ETKLib.Scr memory"}},"src":"18608:46:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":20841,"nodeType":"ExpressionStatement","src":"18608:46:69"},{"eventCall":{"arguments":[{"id":20843,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20817,"src":"18677:8:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20844,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20821,"src":"18687:18:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20845,"name":"scrAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20819,"src":"18707:9:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20846,"name":"adjustment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20823,"src":"18718:10:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20842,"name":"SCRUnlocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28724,"src":"18665:11:69","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256)"}},"id":20847,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18665:64:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20848,"nodeType":"EmitStatement","src":"18660:69:69"}]},"id":20850,"implemented":true,"kind":"function","modifiers":[],"name":"_unlockScr","nameLocation":"18245:10:69","nodeType":"FunctionDefinition","parameters":{"id":20824,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20817,"mutability":"mutable","name":"policyId","nameLocation":"18264:8:69","nodeType":"VariableDeclaration","scope":20850,"src":"18256:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20816,"name":"uint256","nodeType":"ElementaryTypeName","src":"18256:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20819,"mutability":"mutable","name":"scrAmount","nameLocation":"18282:9:69","nodeType":"VariableDeclaration","scope":20850,"src":"18274:17:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20818,"name":"uint256","nodeType":"ElementaryTypeName","src":"18274:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20821,"mutability":"mutable","name":"policyInterestRate","nameLocation":"18301:18:69","nodeType":"VariableDeclaration","scope":20850,"src":"18293:26:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20820,"name":"uint256","nodeType":"ElementaryTypeName","src":"18293:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20823,"mutability":"mutable","name":"adjustment","nameLocation":"18328:10:69","nodeType":"VariableDeclaration","scope":20850,"src":"18321:17:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":20822,"name":"int256","nodeType":"ElementaryTypeName","src":"18321:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18255:84:69"},"returnParameters":{"id":20825,"nodeType":"ParameterList","parameters":[],"src":"18349:0:69"},"scope":21755,"src":"18236:498:69","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[28752],"body":{"id":20871,"nodeType":"Block","src":"18892:74:69","statements":[{"expression":{"arguments":[{"id":20865,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20852,"src":"18909:8:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20866,"name":"scrAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20854,"src":"18919:9:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20867,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20856,"src":"18930:18:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20868,"name":"adjustment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20858,"src":"18950:10:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20864,"name":"_unlockScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20850,"src":"18898:10:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256)"}},"id":20869,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18898:63:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20870,"nodeType":"ExpressionStatement","src":"18898:63:69"}]},"functionSelector":"a227dc41","id":20872,"implemented":true,"kind":"function","modifiers":[{"id":20862,"kind":"modifierInvocation","modifierName":{"id":20861,"name":"onlyBorrower","nameLocations":["18879:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":20099,"src":"18879:12:69"},"nodeType":"ModifierInvocation","src":"18879:12:69"}],"name":"unlockScr","nameLocation":"18747:9:69","nodeType":"FunctionDefinition","overrides":{"id":20860,"nodeType":"OverrideSpecifier","overrides":[],"src":"18870:8:69"},"parameters":{"id":20859,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20852,"mutability":"mutable","name":"policyId","nameLocation":"18770:8:69","nodeType":"VariableDeclaration","scope":20872,"src":"18762:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20851,"name":"uint256","nodeType":"ElementaryTypeName","src":"18762:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20854,"mutability":"mutable","name":"scrAmount","nameLocation":"18792:9:69","nodeType":"VariableDeclaration","scope":20872,"src":"18784:17:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20853,"name":"uint256","nodeType":"ElementaryTypeName","src":"18784:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20856,"mutability":"mutable","name":"policyInterestRate","nameLocation":"18815:18:69","nodeType":"VariableDeclaration","scope":20872,"src":"18807:26:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20855,"name":"uint256","nodeType":"ElementaryTypeName","src":"18807:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20858,"mutability":"mutable","name":"adjustment","nameLocation":"18846:10:69","nodeType":"VariableDeclaration","scope":20872,"src":"18839:17:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":20857,"name":"int256","nodeType":"ElementaryTypeName","src":"18839:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18756:104:69"},"returnParameters":{"id":20863,"nodeType":"ParameterList","parameters":[],"src":"18892:0:69"},"scope":21755,"src":"18738:228:69","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[28768],"body":{"id":20913,"nodeType":"Block","src":"19182:210:69","statements":[{"expression":{"arguments":[{"id":20891,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20874,"src":"19199:8:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20892,"name":"scrAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20876,"src":"19209:9:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20893,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20878,"src":"19220:18:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20894,"name":"adjustment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20880,"src":"19240:10:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20890,"name":"_unlockScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20850,"src":"19188:10:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256)"}},"id":20895,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19188:63:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20896,"nodeType":"ExpressionStatement","src":"19188:63:69"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20899,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20897,"name":"refundAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20884,"src":"19261:12:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":20898,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19277:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"19261:17:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20912,"nodeType":"IfStatement","src":"19257:131:69","trueBody":{"id":20911,"nodeType":"Block","src":"19280:108:69","statements":[{"expression":{"arguments":[{"id":20901,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20882,"src":"19300:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20902,"name":"refundAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20884,"src":"19310:12:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20900,"name":"_transferTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27518,"src":"19288:11:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":20903,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19288:35:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20904,"nodeType":"ExpressionStatement","src":"19288:35:69"},{"eventCall":{"arguments":[{"id":20906,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20874,"src":"19348:8:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":20907,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20882,"src":"19358:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20908,"name":"refundAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20884,"src":"19368:12:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20905,"name":"CoCRefunded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20080,"src":"19336:11:69","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_uint256_$returns$__$","typeString":"function (uint256,address,uint256)"}},"id":20909,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19336:45:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20910,"nodeType":"EmitStatement","src":"19331:50:69"}]}}]},"functionSelector":"3ad2820b","id":20914,"implemented":true,"kind":"function","modifiers":[{"id":20888,"kind":"modifierInvocation","modifierName":{"id":20887,"name":"onlyBorrower","nameLocations":["19169:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":20099,"src":"19169:12:69"},"nodeType":"ModifierInvocation","src":"19169:12:69"}],"name":"unlockScrWithRefund","nameLocation":"18979:19:69","nodeType":"FunctionDefinition","overrides":{"id":20886,"nodeType":"OverrideSpecifier","overrides":[],"src":"19160:8:69"},"parameters":{"id":20885,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20874,"mutability":"mutable","name":"policyId","nameLocation":"19012:8:69","nodeType":"VariableDeclaration","scope":20914,"src":"19004:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20873,"name":"uint256","nodeType":"ElementaryTypeName","src":"19004:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20876,"mutability":"mutable","name":"scrAmount","nameLocation":"19034:9:69","nodeType":"VariableDeclaration","scope":20914,"src":"19026:17:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20875,"name":"uint256","nodeType":"ElementaryTypeName","src":"19026:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20878,"mutability":"mutable","name":"policyInterestRate","nameLocation":"19057:18:69","nodeType":"VariableDeclaration","scope":20914,"src":"19049:26:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20877,"name":"uint256","nodeType":"ElementaryTypeName","src":"19049:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20880,"mutability":"mutable","name":"adjustment","nameLocation":"19088:10:69","nodeType":"VariableDeclaration","scope":20914,"src":"19081:17:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":20879,"name":"int256","nodeType":"ElementaryTypeName","src":"19081:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":20882,"mutability":"mutable","name":"receiver","nameLocation":"19112:8:69","nodeType":"VariableDeclaration","scope":20914,"src":"19104:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20881,"name":"address","nodeType":"ElementaryTypeName","src":"19104:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20884,"mutability":"mutable","name":"refundAmount","nameLocation":"19134:12:69","nodeType":"VariableDeclaration","scope":20914,"src":"19126:20:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20883,"name":"uint256","nodeType":"ElementaryTypeName","src":"19126:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18998:152:69"},"returnParameters":{"id":20889,"nodeType":"ParameterList","parameters":[],"src":"19182:0:69"},"scope":21755,"src":"18970:422:69","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[27552],"body":{"id":20930,"nodeType":"Block","src":"19455:72:69","statements":[{"expression":{"arguments":[{"id":20921,"name":"earnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20916,"src":"19477:8:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20920,"name":"_discreteChange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20945,"src":"19461:15:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":20922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19461:25:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20923,"nodeType":"ExpressionStatement","src":"19461:25:69"},{"expression":{"arguments":[{"id":20927,"name":"earnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20916,"src":"19513:8:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":20924,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"19492:5:69","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_EToken_$21755_$","typeString":"type(contract super EToken)"}},"id":20926,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19498:14:69","memberName":"_yieldEarnings","nodeType":"MemberAccess","referencedDeclaration":27552,"src":"19492:20:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":20928,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19492:30:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20929,"nodeType":"ExpressionStatement","src":"19492:30:69"}]},"id":20931,"implemented":true,"kind":"function","modifiers":[],"name":"_yieldEarnings","nameLocation":"19405:14:69","nodeType":"FunctionDefinition","overrides":{"id":20918,"nodeType":"OverrideSpecifier","overrides":[],"src":"19446:8:69"},"parameters":{"id":20917,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20916,"mutability":"mutable","name":"earnings","nameLocation":"19427:8:69","nodeType":"VariableDeclaration","scope":20931,"src":"19420:15:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":20915,"name":"int256","nodeType":"ElementaryTypeName","src":"19420:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19419:17:69"},"returnParameters":{"id":20919,"nodeType":"ParameterList","parameters":[],"src":"19455:0:69"},"scope":21755,"src":"19396:131:69","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":20944,"nodeType":"Block","src":"19580:61:69","statements":[{"expression":{"id":20942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20936,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"19586:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20939,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20933,"src":"19623:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":20940,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"19631:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":20937,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"19598:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20938,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19608:14:69","memberName":"discreteChange","nodeType":"MemberAccess","referencedDeclaration":19556,"src":"19598:24:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_int256_$_t_struct$_Scr_$18879_storage_ptr_$returns$_t_struct$_ScaledAmount_$18874_memory_ptr_$attached_to$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,int256,struct ETKLib.Scr storage pointer) view returns (struct ETKLib.ScaledAmount memory)"}},"id":20941,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19598:38:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_memory_ptr","typeString":"struct ETKLib.ScaledAmount memory"}},"src":"19586:50:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":20943,"nodeType":"ExpressionStatement","src":"19586:50:69"}]},"id":20945,"implemented":true,"kind":"function","modifiers":[],"name":"_discreteChange","nameLocation":"19540:15:69","nodeType":"FunctionDefinition","parameters":{"id":20934,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20933,"mutability":"mutable","name":"amount","nameLocation":"19563:6:69","nodeType":"VariableDeclaration","scope":20945,"src":"19556:13:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":20932,"name":"int256","nodeType":"ElementaryTypeName","src":"19556:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19555:15:69"},"returnParameters":{"id":20935,"nodeType":"ParameterList","parameters":[],"src":"19580:0:69"},"scope":21755,"src":"19531:110:69","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[28778],"body":{"id":21015,"nodeType":"Block","src":"19745:438:69","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":20990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":20967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":20960,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"19774:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":20961,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19782:9:69","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":19906,"src":"19774:17:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}],"id":20959,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19766:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":20958,"name":"address","nodeType":"ElementaryTypeName","src":"19766:7:69","typeDescriptions":{}}},"id":20962,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19766:26:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":20965,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19804:1:69","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":20964,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19796:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":20963,"name":"address","nodeType":"ElementaryTypeName","src":"19796:7:69","typeDescriptions":{}}},"id":20966,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19796:10:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"19766:40:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":20988,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":20971,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"19852:4:69","typeDescriptions":{"typeIdentifier":"t_contract$_EToken_$21755","typeString":"contract EToken"}},{"id":20972,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20949,"src":"19858:6:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20973,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20947,"src":"19866:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EToken_$21755","typeString":"contract EToken"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":20968,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"19819:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":20969,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19827:9:69","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":19906,"src":"19819:17:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}},"id":20970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19837:14:69","memberName":"acceptsDeposit","nodeType":"MemberAccess","referencedDeclaration":28887,"src":"19819:32:69","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_contract$_IEToken_$28869_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (contract IEToken,address,uint256) view external returns (bool)"}},"id":20974,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19819:54:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":20986,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":20977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20975,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20949,"src":"19888:6:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":20976,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20951,"src":"19898:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"19888:18:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":20981,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"19944:4:69","typeDescriptions":{"typeIdentifier":"t_contract$_EToken_$21755","typeString":"contract EToken"}},{"id":20982,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20949,"src":"19950:6:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20983,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20951,"src":"19958:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20984,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20947,"src":"19968:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EToken_$21755","typeString":"contract EToken"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":20978,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"19910:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":20979,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19918:9:69","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":19906,"src":"19910:17:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}},"id":20980,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19928:15:69","memberName":"acceptsTransfer","nodeType":"MemberAccess","referencedDeclaration":28902,"src":"19910:33:69","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_contract$_IEToken_$28869_$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (contract IEToken,address,address,uint256) view external returns (bool)"}},"id":20985,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19910:65:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"19888:87:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":20987,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"19887:89:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"19819:157:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":20989,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"19818:159:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"19766:211:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":20992,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20949,"src":"20007:6:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20993,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20947,"src":"20015:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20991,"name":"DepositNotWhitelisted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19954,"src":"19985:21:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256) pure returns (error)"}},"id":20994,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19985:37:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":20957,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"19751:7:69","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":20995,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19751:277:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20996,"nodeType":"ExpressionStatement","src":"19751:277:69"},{"expression":{"arguments":[{"id":20998,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20951,"src":"20040:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20999,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20947,"src":"20050:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20997,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1447,"src":"20034:5:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":21000,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20034:23:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21001,"nodeType":"ExpressionStatement","src":"20034:23:69"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21006,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":21002,"name":"utilizationRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20769,"src":"20067:15:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":21003,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20067:17:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":21004,"name":"minUtilizationRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20744,"src":"20087:18:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":21005,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20087:20:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20067:40:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21014,"nodeType":"IfStatement","src":"20063:115:69","trueBody":{"errorCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":21008,"name":"utilizationRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20769,"src":"20138:15:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":21009,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20138:17:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":21010,"name":"minUtilizationRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20744,"src":"20157:18:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":21011,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20157:20:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21007,"name":"UtilizationRateTooLow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19975,"src":"20116:21:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":21012,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20116:62:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21013,"nodeType":"RevertStatement","src":"20109:69:69"}}]},"functionSelector":"2e2d2984","id":21016,"implemented":true,"kind":"function","modifiers":[{"id":20955,"kind":"modifierInvocation","modifierName":{"id":20954,"name":"onlyPolicyPool","nameLocations":["19730:14:69"],"nodeType":"IdentifierPath","referencedDeclaration":25496,"src":"19730:14:69"},"nodeType":"ModifierInvocation","src":"19730:14:69"}],"name":"deposit","nameLocation":"19654:7:69","nodeType":"FunctionDefinition","overrides":{"id":20953,"nodeType":"OverrideSpecifier","overrides":[],"src":"19721:8:69"},"parameters":{"id":20952,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20947,"mutability":"mutable","name":"amount","nameLocation":"19670:6:69","nodeType":"VariableDeclaration","scope":21016,"src":"19662:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20946,"name":"uint256","nodeType":"ElementaryTypeName","src":"19662:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":20949,"mutability":"mutable","name":"caller","nameLocation":"19686:6:69","nodeType":"VariableDeclaration","scope":21016,"src":"19678:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20948,"name":"address","nodeType":"ElementaryTypeName","src":"19678:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20951,"mutability":"mutable","name":"receiver","nameLocation":"19702:8:69","nodeType":"VariableDeclaration","scope":21016,"src":"19694:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20950,"name":"address","nodeType":"ElementaryTypeName","src":"19694:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"19661:50:69"},"returnParameters":{"id":20956,"nodeType":"ParameterList","parameters":[],"src":"19745:0:69"},"scope":21755,"src":"19645:538:69","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[28798],"body":{"id":21049,"nodeType":"Block","src":"20289:157:69","statements":[{"assignments":[21024],"declarations":[{"constant":false,"id":21024,"mutability":"mutable","name":"locked","nameLocation":"20303:6:69","nodeType":"VariableDeclaration","scope":21049,"src":"20295:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21023,"name":"uint256","nodeType":"ElementaryTypeName","src":"20295:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":21033,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":21029,"name":"liquidityRequirement","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20720,"src":"20336:20:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":21030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20336:22:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":21031,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19875,"src":"20360:3:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":21025,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"20312:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$18879_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":21026,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20317:9:69","memberName":"scrAmount","nodeType":"MemberAccess","referencedDeclaration":19808,"src":"20312:14:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$18879_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_Scr_$18879_storage_ptr_$","typeString":"function (struct ETKLib.Scr storage pointer) view returns (uint256)"}},"id":21027,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20312:16:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":21028,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20329:6:69","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14799,"src":"20312:23:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":21032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20312:52:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"20295:69:69"},{"assignments":[21035],"declarations":[{"constant":false,"id":21035,"mutability":"mutable","name":"ts","nameLocation":"20378:2:69","nodeType":"VariableDeclaration","scope":21049,"src":"20370:10:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21034,"name":"uint256","nodeType":"ElementaryTypeName","src":"20370:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":21038,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":21036,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[20262],"referencedDeclaration":20262,"src":"20383:11:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":21037,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20383:13:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"20370:26:69"},{"expression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21039,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21035,"src":"20410:2:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":21040,"name":"locked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21024,"src":"20416:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20410:12:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":21042,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20409:14:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":21046,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20440:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":21047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"20409:32:69","trueExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21043,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21035,"src":"20426:2:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":21044,"name":"locked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21024,"src":"20431:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20426:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":21022,"id":21048,"nodeType":"Return","src":"20402:39:69"}]},"documentation":{"id":21017,"nodeType":"StructuredDocumentation","src":"20187:23:69","text":"@inheritdoc IEToken"},"functionSelector":"0600a865","id":21050,"implemented":true,"kind":"function","modifiers":[],"name":"totalWithdrawable","nameLocation":"20222:17:69","nodeType":"FunctionDefinition","overrides":{"id":21019,"nodeType":"OverrideSpecifier","overrides":[],"src":"20262:8:69"},"parameters":{"id":21018,"nodeType":"ParameterList","parameters":[],"src":"20239:2:69"},"returnParameters":{"id":21022,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21021,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21050,"src":"20280:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21020,"name":"uint256","nodeType":"ElementaryTypeName","src":"20280:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20279:9:69"},"scope":21755,"src":"20213:233:69","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[28792],"body":{"id":21199,"nodeType":"Block","src":"20604:1511:69","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":21075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":21068,"name":"yieldVault","nodeType":"Identifier","overloadedDeclarations":[20611],"referencedDeclaration":20611,"src":"20990:10:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC4626_$6400_$","typeString":"function () view returns (contract IERC4626)"}},"id":21069,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20990:12:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}],"id":21067,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"20982:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21066,"name":"address","nodeType":"ElementaryTypeName","src":"20982:7:69","typeDescriptions":{}}},"id":21070,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20982:21:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":21073,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21015:1:69","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":21072,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21007:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21071,"name":"address","nodeType":"ElementaryTypeName","src":"21007:7:69","typeDescriptions":{}}},"id":21074,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21007:10:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"20982:35:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"documentation":" Here we don't check for maxUtilizationRate because that limit only affects locking more capital (`lockScr`), but\n doesn't affects the right of liquidity providers to withdraw their funds.\n The only limit for withdraws is the `totalWithdrawable()` function, that's affected by the relation between the\n scr and the totalSupply.","id":21080,"nodeType":"IfStatement","src":"20978:182:69","trueBody":{"id":21079,"nodeType":"Block","src":"21019:141:69","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":21076,"name":"recordEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28009,"src":"21137:14:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":21077,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21137:16:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21078,"nodeType":"ExpressionStatement","src":"21137:16:69"}]}},{"assignments":[21082],"declarations":[{"constant":false,"id":21082,"mutability":"mutable","name":"maxWithdraw","nameLocation":"21173:11:69","nodeType":"VariableDeclaration","scope":21199,"src":"21165:19:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21081,"name":"uint256","nodeType":"ElementaryTypeName","src":"21165:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":21091,"initialValue":{"arguments":[{"arguments":[{"id":21086,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21056,"src":"21206:5:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":21085,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[20283],"referencedDeclaration":20283,"src":"21196:9:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":21087,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21196:16:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":21088,"name":"totalWithdrawable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21050,"src":"21214:17:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":21089,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21214:19:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":21083,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"21187:4:69","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":21084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21192:3:69","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":14599,"src":"21187:8:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":21090,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21187:47:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"21165:69:69"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21092,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21052,"src":"21244:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":21095,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21259:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":21094,"name":"uint256","nodeType":"ElementaryTypeName","src":"21259:7:69","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":21093,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"21254:4:69","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":21096,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21254:13:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":21097,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21268:3:69","memberName":"max","nodeType":"MemberAccess","src":"21254:17:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21244:27:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21103,"nodeType":"IfStatement","src":"21240:53:69","trueBody":{"expression":{"id":21101,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21099,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21052,"src":"21273:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":21100,"name":"maxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21082,"src":"21282:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21273:20:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":21102,"nodeType":"ExpressionStatement","src":"21273:20:69"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21106,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21104,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21052,"src":"21303:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":21105,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21313:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"21303:11:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21109,"nodeType":"IfStatement","src":"21299:25:69","trueBody":{"expression":{"hexValue":"30","id":21107,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21323:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":21065,"id":21108,"nodeType":"Return","src":"21316:8:69"}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":21119,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":21113,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19927,"src":"21353:7:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}],"id":21112,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21345:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21111,"name":"address","nodeType":"ElementaryTypeName","src":"21345:7:69","typeDescriptions":{}}},"id":21114,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21345:16:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":21117,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21373:1:69","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":21116,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21365:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21115,"name":"address","nodeType":"ElementaryTypeName","src":"21365:7:69","typeDescriptions":{}}},"id":21118,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21365:10:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21345:30:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":21125,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":21122,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19927,"src":"21387:7:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}],"id":21121,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21379:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21120,"name":"address","nodeType":"ElementaryTypeName","src":"21379:7:69","typeDescriptions":{}}},"id":21123,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21379:16:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":21124,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21054,"src":"21399:6:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21379:26:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"21345:60:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":21134,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":21129,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"21432:4:69","typeDescriptions":{"typeIdentifier":"t_contract$_EToken_$21755","typeString":"contract EToken"}},{"id":21130,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21056,"src":"21438:5:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21131,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21052,"src":"21445:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EToken_$21755","typeString":"contract EToken"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":21127,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19927,"src":"21409:7:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}},"id":21128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21417:14:69","memberName":"cooldownPeriod","nodeType":"MemberAccess","referencedDeclaration":28694,"src":"21409:22:69","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_contract$_IEToken_$28869_$_t_address_$_t_uint256_$returns$_t_uint40_$","typeString":"function (contract IEToken,address,uint256) view external returns (uint40)"}},"id":21132,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21409:43:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":21133,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21456:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"21409:48:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"21345:112:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":21137,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19927,"src":"21492:7:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}],"id":21136,"name":"WithdrawalsRequireCooldown","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20010,"src":"21465:26:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_contract$_ICooler_$28695_$returns$_t_error_$","typeString":"function (contract ICooler) pure returns (error)"}},"id":21138,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21465:35:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":21110,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"21330:7:69","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":21139,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21330:176:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21140,"nodeType":"ExpressionStatement","src":"21330:176:69"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21142,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21052,"src":"21520:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":21143,"name":"maxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21082,"src":"21530:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21520:21:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":21146,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21052,"src":"21562:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":21147,"name":"maxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21082,"src":"21570:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21145,"name":"ExceedsMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20004,"src":"21543:18:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":21148,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21543:39:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":21141,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"21512:7:69","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":21149,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21512:71:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21150,"nodeType":"ExpressionStatement","src":"21512:71:69"},{"documentation":" For the whitelist validation, I use the owner address. If the caller != owner, then I assume that if the\n owner gave spending approval to the caller, that's enough.","expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21169,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":21161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":21154,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"21806:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":21155,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21814:9:69","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":19906,"src":"21806:17:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}],"id":21153,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21798:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21152,"name":"address","nodeType":"ElementaryTypeName","src":"21798:7:69","typeDescriptions":{}}},"id":21156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21798:26:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":21159,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21836:1:69","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":21158,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21828:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21157,"name":"address","nodeType":"ElementaryTypeName","src":"21828:7:69","typeDescriptions":{}}},"id":21160,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21828:10:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21798:40:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":21165,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"21878:4:69","typeDescriptions":{"typeIdentifier":"t_contract$_EToken_$21755","typeString":"contract EToken"}},{"id":21166,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21056,"src":"21884:5:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21167,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21052,"src":"21891:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EToken_$21755","typeString":"contract EToken"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":21162,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"21842:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":21163,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21850:9:69","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":19906,"src":"21842:17:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}},"id":21164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21860:17:69","memberName":"acceptsWithdrawal","nodeType":"MemberAccess","referencedDeclaration":28915,"src":"21842:35:69","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_contract$_IEToken_$28869_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (contract IEToken,address,uint256) view external returns (bool)"}},"id":21168,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21842:56:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"21798:100:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":21171,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21056,"src":"21931:5:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21172,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21052,"src":"21938:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21170,"name":"WithdrawalNotWhitelisted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19961,"src":"21906:24:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256) pure returns (error)"}},"id":21173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21906:39:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":21151,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"21783:7:69","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":21174,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21783:168:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21175,"nodeType":"ExpressionStatement","src":"21783:168:69"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":21178,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21176,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21054,"src":"21961:6:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21177,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21056,"src":"21971:5:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21961:15:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21186,"nodeType":"IfStatement","src":"21957:74:69","trueBody":{"id":21185,"nodeType":"Block","src":"21978:53:69","statements":[{"expression":{"arguments":[{"id":21180,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21056,"src":"22002:5:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21181,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21054,"src":"22009:6:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21182,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21052,"src":"22017:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21179,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1614,"src":"21986:15:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":21183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21986:38:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21184,"nodeType":"ExpressionStatement","src":"21986:38:69"}]}},{"expression":{"arguments":[{"id":21188,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21056,"src":"22042:5:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21189,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21052,"src":"22049:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21187,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1480,"src":"22036:5:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":21190,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22036:20:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21191,"nodeType":"ExpressionStatement","src":"22036:20:69"},{"expression":{"arguments":[{"id":21193,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21058,"src":"22074:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21194,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21052,"src":"22084:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21192,"name":"_transferTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27518,"src":"22062:11:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":21195,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22062:29:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21196,"nodeType":"ExpressionStatement","src":"22062:29:69"},{"expression":{"id":21197,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21052,"src":"22104:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":21065,"id":21198,"nodeType":"Return","src":"22097:13:69"}]},"functionSelector":"23e103a8","id":21200,"implemented":true,"kind":"function","modifiers":[{"id":21062,"kind":"modifierInvocation","modifierName":{"id":21061,"name":"onlyPolicyPool","nameLocations":["20571:14:69"],"nodeType":"IdentifierPath","referencedDeclaration":25496,"src":"20571:14:69"},"nodeType":"ModifierInvocation","src":"20571:14:69"}],"name":"withdraw","nameLocation":"20459:8:69","nodeType":"FunctionDefinition","overrides":{"id":21060,"nodeType":"OverrideSpecifier","overrides":[],"src":"20562:8:69"},"parameters":{"id":21059,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21052,"mutability":"mutable","name":"amount","nameLocation":"20481:6:69","nodeType":"VariableDeclaration","scope":21200,"src":"20473:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21051,"name":"uint256","nodeType":"ElementaryTypeName","src":"20473:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":21054,"mutability":"mutable","name":"caller","nameLocation":"20501:6:69","nodeType":"VariableDeclaration","scope":21200,"src":"20493:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21053,"name":"address","nodeType":"ElementaryTypeName","src":"20493:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21056,"mutability":"mutable","name":"owner","nameLocation":"20521:5:69","nodeType":"VariableDeclaration","scope":21200,"src":"20513:13:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21055,"name":"address","nodeType":"ElementaryTypeName","src":"20513:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21058,"mutability":"mutable","name":"receiver","nameLocation":"20540:8:69","nodeType":"VariableDeclaration","scope":21200,"src":"20532:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21057,"name":"address","nodeType":"ElementaryTypeName","src":"20532:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"20467:85:69"},"returnParameters":{"id":21065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21064,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21200,"src":"20595:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21063,"name":"uint256","nodeType":"ElementaryTypeName","src":"20595:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20594:9:69"},"scope":21755,"src":"20450:1665:69","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[28862],"body":{"id":21224,"nodeType":"Block","src":"22175:131:69","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":21207,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"22187:10:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":21208,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22187:12:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21209,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21202,"src":"22201:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21206,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1480,"src":"22181:5:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":21210,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22181:27:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21211,"nodeType":"ExpressionStatement","src":"22181:27:69"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":21213,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21202,"src":"22230:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":21214,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22237:8:69","memberName":"toInt256","nodeType":"MemberAccess","referencedDeclaration":17668,"src":"22230:15:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_int256_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (int256)"}},"id":21215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22230:17:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21212,"name":"_discreteChange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20945,"src":"22214:15:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":21216,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22214:34:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21217,"nodeType":"ExpressionStatement","src":"22214:34:69"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":21219,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"22280:10:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":21220,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22280:12:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21221,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21202,"src":"22294:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21218,"name":"ETokensRedistributed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20071,"src":"22259:20:69","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":21222,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22259:42:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21223,"nodeType":"EmitStatement","src":"22254:47:69"}]},"functionSelector":"a0ce552d","id":21225,"implemented":true,"kind":"function","modifiers":[],"name":"redistribute","nameLocation":"22128:12:69","nodeType":"FunctionDefinition","overrides":{"id":21204,"nodeType":"OverrideSpecifier","overrides":[],"src":"22166:8:69"},"parameters":{"id":21203,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21202,"mutability":"mutable","name":"amount","nameLocation":"22149:6:69","nodeType":"VariableDeclaration","scope":21225,"src":"22141:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21201,"name":"uint256","nodeType":"ElementaryTypeName","src":"22141:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"22140:16:69"},"returnParameters":{"id":21205,"nodeType":"ParameterList","parameters":[],"src":"22175:0:69"},"scope":21755,"src":"22119:187:69","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[28804],"body":{"id":21273,"nodeType":"Block","src":"22382:252:69","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":21239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21234,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21227,"src":"22396:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":21237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22416:1:69","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":21236,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22408:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21235,"name":"address","nodeType":"ElementaryTypeName","src":"22408:7:69","typeDescriptions":{}}},"id":21238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22408:10:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"22396:22:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":21241,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21227,"src":"22436:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":21240,"name":"InvalidBorrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19980,"src":"22420:15:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":21242,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22420:25:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":21233,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"22388:7:69","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":21243,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22388:58:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21244,"nodeType":"ExpressionStatement","src":"22388:58:69"},{"assignments":[21249],"declarations":[{"constant":false,"id":21249,"mutability":"mutable","name":"loan","nameLocation":"22480:4:69","nodeType":"VariableDeclaration","scope":21273,"src":"22452:32:69","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":21248,"nodeType":"UserDefinedTypeName","pathNode":{"id":21247,"name":"ETKLib.ScaledAmount","nameLocations":["22452:6:69","22459:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"22452:19:69"},"referencedDeclaration":18874,"src":"22452:19:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"}],"id":21253,"initialValue":{"baseExpression":{"id":21250,"name":"_loans","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"22487:6:69","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$18874_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount storage ref)"}},"id":21252,"indexExpression":{"id":21251,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21227,"src":"22494:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22487:16:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"nodeType":"VariableDeclarationStatement","src":"22452:51:69"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":21258,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":21255,"name":"loan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21249,"src":"22517:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":21256,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22522:10:69","memberName":"lastUpdate","nodeType":"MemberAccess","referencedDeclaration":18873,"src":"22517:15:69","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":21257,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22536:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"22517:20:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":21260,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21227,"src":"22560:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":21259,"name":"BorrowerAlreadyAdded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19985,"src":"22539:20:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":21261,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22539:30:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":21254,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"22509:7:69","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":21262,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22509:61:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21263,"nodeType":"ExpressionStatement","src":"22509:61:69"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":21264,"name":"loan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21249,"src":"22576:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":21266,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22581:4:69","memberName":"init","nodeType":"MemberAccess","referencedDeclaration":19270,"src":"22576:9:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_ScaledAmount_$18874_storage_ptr_$returns$__$attached_to$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer)"}},"id":21267,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22576:11:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21268,"nodeType":"ExpressionStatement","src":"22576:11:69"},{"eventCall":{"arguments":[{"id":21270,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21227,"src":"22620:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":21269,"name":"InternalBorrowerAdded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20031,"src":"22598:21:69","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":21271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22598:31:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21272,"nodeType":"EmitStatement","src":"22593:36:69"}]},"functionSelector":"e3a8e29c","id":21274,"implemented":true,"kind":"function","modifiers":[{"id":21231,"kind":"modifierInvocation","modifierName":{"id":21230,"name":"onlyPolicyPool","nameLocations":["22367:14:69"],"nodeType":"IdentifierPath","referencedDeclaration":25496,"src":"22367:14:69"},"nodeType":"ModifierInvocation","src":"22367:14:69"}],"name":"addBorrower","nameLocation":"22319:11:69","nodeType":"FunctionDefinition","overrides":{"id":21229,"nodeType":"OverrideSpecifier","overrides":[],"src":"22358:8:69"},"parameters":{"id":21228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21227,"mutability":"mutable","name":"borrower","nameLocation":"22339:8:69","nodeType":"VariableDeclaration","scope":21274,"src":"22331:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21226,"name":"address","nodeType":"ElementaryTypeName","src":"22331:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"22330:18:69"},"returnParameters":{"id":21232,"nodeType":"ParameterList","parameters":[],"src":"22382:0:69"},"scope":21755,"src":"22310:324:69","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[28810],"body":{"id":21310,"nodeType":"Block","src":"22713:204:69","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":21288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21283,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21276,"src":"22727:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":21286,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22747:1:69","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":21285,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22739:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21284,"name":"address","nodeType":"ElementaryTypeName","src":"22739:7:69","typeDescriptions":{}}},"id":21287,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22739:10:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"22727:22:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":21290,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21276,"src":"22767:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":21289,"name":"InvalidBorrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19980,"src":"22751:15:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":21291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22751:25:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":21282,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"22719:7:69","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":21292,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22719:58:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21293,"nodeType":"ExpressionStatement","src":"22719:58:69"},{"assignments":[21295],"declarations":[{"constant":false,"id":21295,"mutability":"mutable","name":"defaultedDebt","nameLocation":"22791:13:69","nodeType":"VariableDeclaration","scope":21310,"src":"22783:21:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21294,"name":"uint256","nodeType":"ElementaryTypeName","src":"22783:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":21299,"initialValue":{"arguments":[{"id":21297,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21276,"src":"22815:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":21296,"name":"getLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21523,"src":"22807:7:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":21298,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22807:17:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"22783:41:69"},{"expression":{"id":21303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"22830:23:69","subExpression":{"baseExpression":{"id":21300,"name":"_loans","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"22837:6:69","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$18874_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount storage ref)"}},"id":21302,"indexExpression":{"id":21301,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21276,"src":"22844:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"22837:16:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21304,"nodeType":"ExpressionStatement","src":"22830:23:69"},{"eventCall":{"arguments":[{"id":21306,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21276,"src":"22888:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21307,"name":"defaultedDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21295,"src":"22898:13:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21305,"name":"InternalBorrowerRemoved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20038,"src":"22864:23:69","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":21308,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22864:48:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21309,"nodeType":"EmitStatement","src":"22859:53:69"}]},"functionSelector":"76c7fc55","id":21311,"implemented":true,"kind":"function","modifiers":[{"id":21280,"kind":"modifierInvocation","modifierName":{"id":21279,"name":"onlyPolicyPool","nameLocations":["22698:14:69"],"nodeType":"IdentifierPath","referencedDeclaration":25496,"src":"22698:14:69"},"nodeType":"ModifierInvocation","src":"22698:14:69"}],"name":"removeBorrower","nameLocation":"22647:14:69","nodeType":"FunctionDefinition","overrides":{"id":21278,"nodeType":"OverrideSpecifier","overrides":[],"src":"22689:8:69"},"parameters":{"id":21277,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21276,"mutability":"mutable","name":"borrower","nameLocation":"22670:8:69","nodeType":"VariableDeclaration","scope":21311,"src":"22662:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21275,"name":"address","nodeType":"ElementaryTypeName","src":"22662:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"22661:18:69"},"returnParameters":{"id":21281,"nodeType":"ParameterList","parameters":[],"src":"22713:0:69"},"scope":21755,"src":"22638:279:69","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":21324,"nodeType":"Block","src":"23222:89:69","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":21317,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[20262],"referencedDeclaration":20262,"src":"23235:11:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":21318,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23235:13:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":21319,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19893,"src":"23251:9:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":21320,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23261:8:69","memberName":"minValue","nodeType":"MemberAccess","referencedDeclaration":19576,"src":"23251:18:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer) view returns (uint256)"}},"id":21321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23251:20:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23235:36:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":21316,"id":21323,"nodeType":"Return","src":"23228:43:69"}]},"documentation":{"id":21312,"nodeType":"StructuredDocumentation","src":"22921:235:69","text":" @dev Returns the maximum negative adjustment (discrete loss) the eToken can accept without breaking consistency.\n      The limit comes from limits in the internal scale that takes scaledTotalSupply() to totalSupply()"},"functionSelector":"16db000f","id":21325,"implemented":true,"kind":"function","modifiers":[],"name":"maxNegativeAdjustment","nameLocation":"23168:21:69","nodeType":"FunctionDefinition","parameters":{"id":21313,"nodeType":"ParameterList","parameters":[],"src":"23189:2:69"},"returnParameters":{"id":21316,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21315,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21325,"src":"23213:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21314,"name":"uint256","nodeType":"ElementaryTypeName","src":"23213:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23212:9:69"},"scope":21755,"src":"23159:152:69","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[28820],"body":{"id":21396,"nodeType":"Block","src":"23420:393:69","statements":[{"assignments":[21338],"declarations":[{"constant":false,"id":21338,"mutability":"mutable","name":"amountAsked","nameLocation":"23434:11:69","nodeType":"VariableDeclaration","scope":21396,"src":"23426:19:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21337,"name":"uint256","nodeType":"ElementaryTypeName","src":"23426:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":21340,"initialValue":{"id":21339,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21327,"src":"23448:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23426:28:69"},{"expression":{"id":21348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21341,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21327,"src":"23460:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21344,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21327,"src":"23478:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":21345,"name":"maxNegativeAdjustment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21325,"src":"23486:21:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":21346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23486:23:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":21342,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"23469:4:69","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":21343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23474:3:69","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":14599,"src":"23469:8:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":21347,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23469:41:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23460:50:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":21349,"nodeType":"ExpressionStatement","src":"23460:50:69"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21350,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21327,"src":"23520:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":21351,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23530:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23520:11:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21355,"nodeType":"IfStatement","src":"23516:35:69","trueBody":{"expression":{"id":21353,"name":"amountAsked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21338,"src":"23540:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":21336,"id":21354,"nodeType":"Return","src":"23533:18:69"}},{"expression":{"id":21370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"baseExpression":{"id":21356,"name":"_loans","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"23558:6:69","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$18874_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount storage ref)"}},"id":21359,"indexExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":21357,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"23565:10:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":21358,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23565:12:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"23558:20:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},null],"id":21360,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"23557:24:69","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$18874_storage_$__$","typeString":"tuple(struct ETKLib.ScaledAmount storage ref,)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21366,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21327,"src":"23609:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":21367,"name":"internalLoanInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21535,"src":"23617:24:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":21368,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23617:26:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"baseExpression":{"id":21361,"name":"_loans","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"23584:6:69","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$18874_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount storage ref)"}},"id":21364,"indexExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":21362,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"23591:10:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":21363,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23591:12:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"23584:20:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":21365,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23605:3:69","memberName":"add","nodeType":"MemberAccess","referencedDeclaration":19404,"src":"23584:24:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_uint256_$_t_uint256_$returns$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$attached_to$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256,uint256) view returns (struct ETKLib.ScaledAmount memory,uint256)"}},"id":21369,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23584:60:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"src":"23557:87:69","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21371,"nodeType":"ExpressionStatement","src":"23557:87:69"},{"expression":{"arguments":[{"id":21377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"23666:15:69","subExpression":{"arguments":[{"id":21375,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21327,"src":"23674:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21374,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23667:6:69","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":21373,"name":"int256","nodeType":"ElementaryTypeName","src":"23667:6:69","typeDescriptions":{}}},"id":21376,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23667:14:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21372,"name":"_discreteChange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20945,"src":"23650:15:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":21378,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23650:32:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21379,"nodeType":"ExpressionStatement","src":"23650:32:69"},{"expression":{"arguments":[{"id":21381,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21329,"src":"23700:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21382,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21327,"src":"23710:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21380,"name":"_transferTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27518,"src":"23688:11:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":21383,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23688:29:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21384,"nodeType":"ExpressionStatement","src":"23688:29:69"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":21386,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"23741:10:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":21387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23741:12:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21388,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21327,"src":"23755:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":21389,"name":"amountAsked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21338,"src":"23763:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21385,"name":"InternalLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20019,"src":"23728:12:69","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":21390,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23728:47:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21391,"nodeType":"EmitStatement","src":"23723:52:69"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21392,"name":"amountAsked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21338,"src":"23788:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":21393,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21327,"src":"23802:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23788:20:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":21336,"id":21395,"nodeType":"Return","src":"23781:27:69"}]},"functionSelector":"c3df9dac","id":21397,"implemented":true,"kind":"function","modifiers":[{"id":21333,"kind":"modifierInvocation","modifierName":{"id":21332,"name":"onlyBorrower","nameLocations":["23389:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":20099,"src":"23389:12:69"},"nodeType":"ModifierInvocation","src":"23389:12:69"}],"name":"internalLoan","nameLocation":"23324:12:69","nodeType":"FunctionDefinition","overrides":{"id":21331,"nodeType":"OverrideSpecifier","overrides":[],"src":"23380:8:69"},"parameters":{"id":21330,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21327,"mutability":"mutable","name":"amount","nameLocation":"23345:6:69","nodeType":"VariableDeclaration","scope":21397,"src":"23337:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21326,"name":"uint256","nodeType":"ElementaryTypeName","src":"23337:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":21329,"mutability":"mutable","name":"receiver","nameLocation":"23361:8:69","nodeType":"VariableDeclaration","scope":21397,"src":"23353:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21328,"name":"address","nodeType":"ElementaryTypeName","src":"23353:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"23336:34:69"},"returnParameters":{"id":21336,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21335,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21397,"src":"23411:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21334,"name":"uint256","nodeType":"ElementaryTypeName","src":"23411:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23410:9:69"},"scope":21755,"src":"23315:498:69","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[28828],"body":{"id":21480,"nodeType":"Block","src":"23890:720:69","statements":[{"assignments":[21406],"declarations":[{"constant":false,"id":21406,"mutability":"mutable","name":"currentLoan","nameLocation":"23960:11:69","nodeType":"VariableDeclaration","scope":21480,"src":"23952:19:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21405,"name":"uint256","nodeType":"ElementaryTypeName","src":"23952:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":21410,"initialValue":{"arguments":[{"id":21408,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21401,"src":"23982:10:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":21407,"name":"getLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21523,"src":"23974:7:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":21409,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23974:19:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23952:41:69"},{"assignments":[21415],"declarations":[{"constant":false,"id":21415,"mutability":"mutable","name":"loan","nameLocation":"24027:4:69","nodeType":"VariableDeclaration","scope":21480,"src":"23999:32:69","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":21414,"nodeType":"UserDefinedTypeName","pathNode":{"id":21413,"name":"ETKLib.ScaledAmount","nameLocations":["23999:6:69","24006:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"23999:19:69"},"referencedDeclaration":18874,"src":"23999:19:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"}],"id":21419,"initialValue":{"baseExpression":{"id":21416,"name":"_loans","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"24034:6:69","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$18874_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount storage ref)"}},"id":21418,"indexExpression":{"id":21417,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21401,"src":"24041:10:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"24034:18:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"nodeType":"VariableDeclarationStatement","src":"23999:53:69"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21420,"name":"currentLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21406,"src":"24062:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":21421,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21399,"src":"24077:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24062:21:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":21449,"nodeType":"Block","src":"24199:84:69","statements":[{"expression":{"id":21447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"baseExpression":{"id":21437,"name":"_loans","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"24208:6:69","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$18874_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount storage ref)"}},"id":21439,"indexExpression":{"id":21438,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21401,"src":"24215:10:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"24208:18:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},null],"id":21440,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"24207:22:69","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$18874_storage_$__$","typeString":"tuple(struct ETKLib.ScaledAmount storage ref,)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21443,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21399,"src":"24241:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":21444,"name":"internalLoanInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21535,"src":"24249:24:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":21445,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24249:26:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":21441,"name":"loan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21415,"src":"24232:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":21442,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24237:3:69","memberName":"sub","nodeType":"MemberAccess","referencedDeclaration":19430,"src":"24232:8:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_uint256_$_t_uint256_$returns$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$attached_to$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256,uint256) view returns (struct ETKLib.ScaledAmount memory,uint256)"}},"id":21446,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24232:44:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$18874_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"src":"24207:69:69","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21448,"nodeType":"ExpressionStatement","src":"24207:69:69"}]},"id":21450,"nodeType":"IfStatement","src":"24058:225:69","trueBody":{"id":21436,"nodeType":"Block","src":"24085:108:69","statements":[{"expression":{"id":21425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21423,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21399,"src":"24093:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":21424,"name":"currentLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21406,"src":"24102:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24093:20:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":21426,"nodeType":"ExpressionStatement","src":"24093:20:69"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21427,"name":"currentLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21406,"src":"24125:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":21428,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24140:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24125:16:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21435,"nodeType":"IfStatement","src":"24121:33:69","trueBody":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":21430,"name":"loan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21415,"src":"24143:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":21432,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24148:4:69","memberName":"init","nodeType":"MemberAccess","referencedDeclaration":19270,"src":"24143:9:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_ScaledAmount_$18874_storage_ptr_$returns$__$attached_to$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer)"}},"id":21433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24143:11:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21434,"nodeType":"ExpressionStatement","src":"24143:11:69"}}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21451,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21399,"src":"24292:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":21452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24302:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24292:11:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21455,"nodeType":"IfStatement","src":"24288:24:69","trueBody":{"functionReturnParameters":21404,"id":21454,"nodeType":"Return","src":"24305:7:69"}},{"expression":{"arguments":[{"arguments":[{"id":21459,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21399,"src":"24427:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21458,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24420:6:69","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":21457,"name":"int256","nodeType":"ElementaryTypeName","src":"24420:6:69","typeDescriptions":{}}},"id":21460,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24420:14:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21456,"name":"_discreteChange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20945,"src":"24404:15:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":21461,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24404:31:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21462,"nodeType":"ExpressionStatement","src":"24404:31:69"},{"eventCall":{"arguments":[{"id":21464,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21401,"src":"24465:10:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21465,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21399,"src":"24477:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21463,"name":"InternalLoanRepaid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20026,"src":"24446:18:69","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":21466,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24446:38:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21467,"nodeType":"EmitStatement","src":"24441:43:69"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":21471,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"24569:10:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":21472,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24569:12:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":21475,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"24591:4:69","typeDescriptions":{"typeIdentifier":"t_contract$_EToken_$21755","typeString":"contract EToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EToken_$21755","typeString":"contract EToken"}],"id":21474,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24583:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21473,"name":"address","nodeType":"ElementaryTypeName","src":"24583:7:69","typeDescriptions":{}}},"id":21476,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24583:13:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21477,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21399,"src":"24598:6:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":21468,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25603,"src":"24541:8:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$8863_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":21469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24541:10:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":21470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24552:16:69","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":8979,"src":"24541:27:69","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$7977_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":21478,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24541:64:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21479,"nodeType":"ExpressionStatement","src":"24541:64:69"}]},"functionSelector":"918344d3","id":21481,"implemented":true,"kind":"function","modifiers":[],"name":"repayLoan","nameLocation":"23826:9:69","nodeType":"FunctionDefinition","overrides":{"id":21403,"nodeType":"OverrideSpecifier","overrides":[],"src":"23881:8:69"},"parameters":{"id":21402,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21399,"mutability":"mutable","name":"amount","nameLocation":"23844:6:69","nodeType":"VariableDeclaration","scope":21481,"src":"23836:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21398,"name":"uint256","nodeType":"ElementaryTypeName","src":"23836:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":21401,"mutability":"mutable","name":"onBehalfOf","nameLocation":"23860:10:69","nodeType":"VariableDeclaration","scope":21481,"src":"23852:18:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21400,"name":"address","nodeType":"ElementaryTypeName","src":"23852:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"23835:36:69"},"returnParameters":{"id":21404,"nodeType":"ParameterList","parameters":[],"src":"23890:0:69"},"scope":21755,"src":"23817:793:69","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[28836],"body":{"id":21522,"nodeType":"Block","src":"24722:218:69","statements":[{"assignments":[21494],"declarations":[{"constant":false,"id":21494,"mutability":"mutable","name":"loan","nameLocation":"24756:4:69","nodeType":"VariableDeclaration","scope":21522,"src":"24728:32:69","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":21493,"nodeType":"UserDefinedTypeName","pathNode":{"id":21492,"name":"ETKLib.ScaledAmount","nameLocations":["24728:6:69","24735:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":18874,"src":"24728:19:69"},"referencedDeclaration":18874,"src":"24728:19:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"}],"id":21498,"initialValue":{"baseExpression":{"id":21495,"name":"_loans","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"24763:6:69","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$18874_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount storage ref)"}},"id":21497,"indexExpression":{"id":21496,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21484,"src":"24770:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"24763:16:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"nodeType":"VariableDeclarationStatement","src":"24728:51:69"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":21503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":21500,"name":"loan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21494,"src":"24793:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":21501,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24798:10:69","memberName":"lastUpdate","nodeType":"MemberAccess","referencedDeclaration":18873,"src":"24793:15:69","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":21502,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24812:1:69","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24793:20:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":21505,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21484,"src":"24831:8:69","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":21504,"name":"InvalidBorrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19980,"src":"24815:15:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":21506,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24815:25:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":21499,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"24785:7:69","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":21507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24785:56:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21508,"nodeType":"ExpressionStatement","src":"24785:56:69"},{"expression":{"arguments":[{"arguments":[{"expression":{"id":21517,"name":"loan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21494,"src":"24922:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":21518,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24927:6:69","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":18868,"src":"24922:11:69","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":21516,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24914:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":21515,"name":"uint256","nodeType":"ElementaryTypeName","src":"24914:7:69","typeDescriptions":{}}},"id":21519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24914:20:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":21511,"name":"internalLoanInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21535,"src":"24872:24:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":21512,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24872:26:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":21509,"name":"loan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21494,"src":"24854:4:69","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$18874_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":21510,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24859:12:69","memberName":"projectScale","nodeType":"MemberAccess","referencedDeclaration":19196,"src":"24854:17:69","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$18874_storage_ptr_$_t_uint256_$returns$_t_userDefinedValueType$_Scale_$18847_$attached_to$_t_struct$_ScaledAmount_$18874_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256) view returns (ETKLib.Scale)"}},"id":21513,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24854:45:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$18847","typeString":"ETKLib.Scale"}},"id":21514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24900:13:69","memberName":"toCurrentCeil","nodeType":"MemberAccess","referencedDeclaration":18997,"src":"24854:59:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$18847_$_t_uint256_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$18847_$","typeString":"function (ETKLib.Scale,uint256) pure returns (uint256)"}},"id":21520,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24854:81:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":21489,"id":21521,"nodeType":"Return","src":"24847:88:69"}]},"documentation":{"id":21482,"nodeType":"StructuredDocumentation","src":"24614:23:69","text":"@inheritdoc IEToken"},"functionSelector":"33481fc9","id":21523,"implemented":true,"kind":"function","modifiers":[],"name":"getLoan","nameLocation":"24649:7:69","nodeType":"FunctionDefinition","overrides":{"id":21486,"nodeType":"OverrideSpecifier","overrides":[],"src":"24695:8:69"},"parameters":{"id":21485,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21484,"mutability":"mutable","name":"borrower","nameLocation":"24665:8:69","nodeType":"VariableDeclaration","scope":21523,"src":"24657:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21483,"name":"address","nodeType":"ElementaryTypeName","src":"24657:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"24656:18:69"},"returnParameters":{"id":21489,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21488,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21523,"src":"24713:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21487,"name":"uint256","nodeType":"ElementaryTypeName","src":"24713:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"24712:9:69"},"scope":21755,"src":"24640:300:69","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":21534,"nodeType":"Block","src":"25133:59:69","statements":[{"expression":{"arguments":[{"expression":{"id":21530,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"25154:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":21531,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25162:24:69","memberName":"internalLoanInterestRate","nodeType":"MemberAccess","referencedDeclaration":19914,"src":"25154:32:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"}],"id":21529,"name":"_4toWad","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20638,"src":"25146:7:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint16_$returns$_t_uint256_$","typeString":"function (uint16) pure returns (uint256)"}},"id":21532,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25146:41:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":21528,"id":21533,"nodeType":"Return","src":"25139:48:69"}]},"documentation":{"id":21524,"nodeType":"StructuredDocumentation","src":"24944:120:69","text":" @dev Returns the annualized interest rate charged to borrowers (see PremiumsAccount) when they take funds"},"functionSelector":"cda4bcc2","id":21535,"implemented":true,"kind":"function","modifiers":[],"name":"internalLoanInterestRate","nameLocation":"25076:24:69","nodeType":"FunctionDefinition","parameters":{"id":21525,"nodeType":"ParameterList","parameters":[],"src":"25100:2:69"},"returnParameters":{"id":21528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21527,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21535,"src":"25124:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21526,"name":"uint256","nodeType":"ElementaryTypeName","src":"25124:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25123:9:69"},"scope":21755,"src":"25067:125:69","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":21639,"nodeType":"Block","src":"25256:1885:69","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"},"id":21546,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21543,"name":"param","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21538,"src":"25266:5:69","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":21544,"name":"Parameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28704,"src":"25275:9:69","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Parameter_$28704_$","typeString":"type(enum IEToken.Parameter)"}},"id":21545,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25285:20:69","memberName":"liquidityRequirement","nodeType":"MemberAccess","referencedDeclaration":28700,"src":"25275:30:69","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}},"src":"25266:39:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"},"id":21572,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21569,"name":"param","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21538,"src":"25472:5:69","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":21570,"name":"Parameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28704,"src":"25481:9:69","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Parameter_$28704_$","typeString":"type(enum IEToken.Parameter)"}},"id":21571,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25491:18:69","memberName":"minUtilizationRate","nodeType":"MemberAccess","referencedDeclaration":28701,"src":"25481:28:69","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}},"src":"25472:37:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"},"id":21594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21591,"name":"param","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21538,"src":"25639:5:69","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":21592,"name":"Parameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28704,"src":"25648:9:69","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Parameter_$28704_$","typeString":"type(enum IEToken.Parameter)"}},"id":21593,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25658:18:69","memberName":"maxUtilizationRate","nodeType":"MemberAccess","referencedDeclaration":28702,"src":"25648:28:69","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}},"src":"25639:37:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":21630,"nodeType":"Block","src":"26455:638:69","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21614,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21540,"src":"26973:8:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":21615,"name":"INT_LOAN_IR_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19890,"src":"26985:15:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26973:27:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":21618,"name":"param","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21538,"src":"27019:5:69","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}],"id":21617,"name":"InvalidParameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19938,"src":"27002:16:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_enum$_Parameter_$28704_$returns$_t_error_$","typeString":"function (enum IEToken.Parameter) pure returns (error)"}},"id":21619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27002:23:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":21613,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"26965:7:69","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":21620,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26965:61:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21621,"nodeType":"ExpressionStatement","src":"26965:61:69"},{"expression":{"id":21628,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":21622,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"27034:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":21624,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"27042:24:69","memberName":"internalLoanInterestRate","nodeType":"MemberAccess","referencedDeclaration":19914,"src":"27034:32:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21626,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21540,"src":"27077:8:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21625,"name":"_wadTo4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20653,"src":"27069:7:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint16_$","typeString":"function (uint256) pure returns (uint16)"}},"id":21627,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27069:17:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"27034:52:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"id":21629,"nodeType":"ExpressionStatement","src":"27034:52:69"}]},"id":21631,"nodeType":"IfStatement","src":"25635:1458:69","trueBody":{"id":21612,"nodeType":"Block","src":"25678:771:69","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21598,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21596,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21540,"src":"25694:8:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":21597,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19875,"src":"25706:3:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25694:15:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":21600,"name":"param","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21538,"src":"25728:5:69","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}],"id":21599,"name":"InvalidParameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19938,"src":"25711:16:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_enum$_Parameter_$28704_$returns$_t_error_$","typeString":"function (enum IEToken.Parameter) pure returns (error)"}},"id":21601,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25711:23:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":21595,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"25686:7:69","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":21602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25686:49:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21603,"nodeType":"ExpressionStatement","src":"25686:49:69"},{"expression":{"id":21610,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":21604,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"25743:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":21606,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"25751:18:69","memberName":"maxUtilizationRate","nodeType":"MemberAccess","referencedDeclaration":19912,"src":"25743:26:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21608,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21540,"src":"25780:8:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21607,"name":"_wadTo4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20653,"src":"25772:7:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint16_$","typeString":"function (uint256) pure returns (uint16)"}},"id":21609,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25772:17:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"25743:46:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"id":21611,"nodeType":"ExpressionStatement","src":"25743:46:69"}]}},"id":21632,"nodeType":"IfStatement","src":"25468:1625:69","trueBody":{"id":21590,"nodeType":"Block","src":"25511:118:69","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21574,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21540,"src":"25527:8:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":21575,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19875,"src":"25539:3:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25527:15:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":21578,"name":"param","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21538,"src":"25561:5:69","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}],"id":21577,"name":"InvalidParameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19938,"src":"25544:16:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_enum$_Parameter_$28704_$returns$_t_error_$","typeString":"function (enum IEToken.Parameter) pure returns (error)"}},"id":21579,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25544:23:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":21573,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"25519:7:69","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":21580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25519:49:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21581,"nodeType":"ExpressionStatement","src":"25519:49:69"},{"expression":{"id":21588,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":21582,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"25576:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":21584,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"25584:18:69","memberName":"minUtilizationRate","nodeType":"MemberAccess","referencedDeclaration":19910,"src":"25576:26:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21586,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21540,"src":"25613:8:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21585,"name":"_wadTo4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20653,"src":"25605:7:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint16_$","typeString":"function (uint256) pure returns (uint16)"}},"id":21587,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25605:17:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"25576:46:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"id":21589,"nodeType":"ExpressionStatement","src":"25576:46:69"}]}},"id":21633,"nodeType":"IfStatement","src":"25262:1831:69","trueBody":{"id":21568,"nodeType":"Block","src":"25307:155:69","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21554,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21550,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21548,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21540,"src":"25323:8:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":21549,"name":"LIQ_REQ_MIN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19884,"src":"25335:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25323:23:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21551,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21540,"src":"25350:8:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":21552,"name":"LIQ_REQ_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19887,"src":"25362:11:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25350:23:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25323:50:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":21556,"name":"param","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21538,"src":"25392:5:69","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}],"id":21555,"name":"InvalidParameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19938,"src":"25375:16:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_enum$_Parameter_$28704_$returns$_t_error_$","typeString":"function (enum IEToken.Parameter) pure returns (error)"}},"id":21557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25375:23:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":21547,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"25315:7:69","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":21558,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25315:84:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21559,"nodeType":"ExpressionStatement","src":"25315:84:69"},{"expression":{"id":21566,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":21560,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"25407:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":21562,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"25415:20:69","memberName":"liquidityRequirement","nodeType":"MemberAccess","referencedDeclaration":19908,"src":"25407:28:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21564,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21540,"src":"25446:8:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21563,"name":"_wadTo4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20653,"src":"25438:7:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint16_$","typeString":"function (uint256) pure returns (uint16)"}},"id":21565,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25438:17:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"25407:48:69","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"id":21567,"nodeType":"ExpressionStatement","src":"25407:48:69"}]}},{"eventCall":{"arguments":[{"id":21635,"name":"param","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21538,"src":"27120:5:69","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}},{"id":21636,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21540,"src":"27127:8:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21634,"name":"ParameterChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20046,"src":"27103:16:69","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_enum$_Parameter_$28704_$_t_uint256_$returns$__$","typeString":"function (enum IEToken.Parameter,uint256)"}},"id":21637,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27103:33:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21638,"nodeType":"EmitStatement","src":"27098:38:69"}]},"functionSelector":"c1cca2b3","id":21640,"implemented":true,"kind":"function","modifiers":[],"name":"setParam","nameLocation":"25205:8:69","nodeType":"FunctionDefinition","parameters":{"id":21541,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21538,"mutability":"mutable","name":"param","nameLocation":"25224:5:69","nodeType":"VariableDeclaration","scope":21640,"src":"25214:15:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"},"typeName":{"id":21537,"nodeType":"UserDefinedTypeName","pathNode":{"id":21536,"name":"Parameter","nameLocations":["25214:9:69"],"nodeType":"IdentifierPath","referencedDeclaration":28704,"src":"25214:9:69"},"referencedDeclaration":28704,"src":"25214:9:69","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$28704","typeString":"enum IEToken.Parameter"}},"visibility":"internal"},{"constant":false,"id":21540,"mutability":"mutable","name":"newValue","nameLocation":"25239:8:69","nodeType":"VariableDeclaration","scope":21640,"src":"25231:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21539,"name":"uint256","nodeType":"ElementaryTypeName","src":"25231:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25213:35:69"},"returnParameters":{"id":21542,"nodeType":"ParameterList","parameters":[],"src":"25256:0:69"},"scope":21755,"src":"25196:1945:69","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":21684,"nodeType":"Block","src":"27203:278:69","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":21655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":21649,"name":"lpWhitelist_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21643,"src":"27232:12:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}],"id":21648,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27224:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21647,"name":"address","nodeType":"ElementaryTypeName","src":"27224:7:69","typeDescriptions":{}}},"id":21650,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27224:21:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":21653,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27257:1:69","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":21652,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27249:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21651,"name":"address","nodeType":"ElementaryTypeName","src":"27249:7:69","typeDescriptions":{}}},"id":21654,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27249:10:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27224:35:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"id":21665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"id":21659,"name":"lpWhitelist_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21643,"src":"27292:12:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}],"id":21658,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27284:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21657,"name":"address","nodeType":"ElementaryTypeName","src":"27284:7:69","typeDescriptions":{}}},"id":21660,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27284:21:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":21656,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29188,"src":"27263:20:69","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$29188_$","typeString":"type(contract IPolicyPoolComponent)"}},"id":21661,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27263:43:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"id":21662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27307:10:69","memberName":"policyPool","nodeType":"MemberAccess","referencedDeclaration":29187,"src":"27263:54:69","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPolicyPool_$29171_$","typeString":"function () view external returns (contract IPolicyPool)"}},"id":21663,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27263:56:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":21664,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25474,"src":"27323:11:69","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"src":"27263:71:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"27224:110:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":21668,"name":"lpWhitelist_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21643,"src":"27359:12:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}],"id":21667,"name":"InvalidWhitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19991,"src":"27342:16:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_contract$_ILPWhitelist_$28916_$returns$_t_error_$","typeString":"function (contract ILPWhitelist) pure returns (error)"}},"id":21669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27342:30:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":21646,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"27209:7:69","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":21670,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27209:169:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21671,"nodeType":"ExpressionStatement","src":"27209:169:69"},{"eventCall":{"arguments":[{"expression":{"id":21673,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"27406:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":21674,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27414:9:69","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":19906,"src":"27406:17:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}},{"id":21675,"name":"lpWhitelist_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21643,"src":"27425:12:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"},{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}],"id":21672,"name":"WhitelistChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20055,"src":"27389:16:69","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_ILPWhitelist_$28916_$_t_contract$_ILPWhitelist_$28916_$returns$__$","typeString":"function (contract ILPWhitelist,contract ILPWhitelist)"}},"id":21676,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27389:49:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21677,"nodeType":"EmitStatement","src":"27384:54:69"},{"expression":{"id":21682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":21678,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"27444:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":21680,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"27452:9:69","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":19906,"src":"27444:17:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":21681,"name":"lpWhitelist_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21643,"src":"27464:12:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}},"src":"27444:32:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}},"id":21683,"nodeType":"ExpressionStatement","src":"27444:32:69"}]},"functionSelector":"854cff2f","id":21685,"implemented":true,"kind":"function","modifiers":[],"name":"setWhitelist","nameLocation":"27154:12:69","nodeType":"FunctionDefinition","parameters":{"id":21644,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21643,"mutability":"mutable","name":"lpWhitelist_","nameLocation":"27180:12:69","nodeType":"VariableDeclaration","scope":21685,"src":"27167:25:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"},"typeName":{"id":21642,"nodeType":"UserDefinedTypeName","pathNode":{"id":21641,"name":"ILPWhitelist","nameLocations":["27167:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":28916,"src":"27167:12:69"},"referencedDeclaration":28916,"src":"27167:12:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}},"visibility":"internal"}],"src":"27166:27:69"},"returnParameters":{"id":21645,"nodeType":"ParameterList","parameters":[],"src":"27203:0:69"},"scope":21755,"src":"27145:336:69","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":21694,"nodeType":"Block","src":"27543:35:69","statements":[{"expression":{"expression":{"id":21691,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19919,"src":"27556:7:69","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$19915_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":21692,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27564:9:69","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":19906,"src":"27556:17:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}},"functionReturnParameters":21690,"id":21693,"nodeType":"Return","src":"27549:24:69"}]},"functionSelector":"93e59dc1","id":21695,"implemented":true,"kind":"function","modifiers":[],"name":"whitelist","nameLocation":"27494:9:69","nodeType":"FunctionDefinition","parameters":{"id":21686,"nodeType":"ParameterList","parameters":[],"src":"27503:2:69"},"returnParameters":{"id":21690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21689,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21695,"src":"27529:12:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"},"typeName":{"id":21688,"nodeType":"UserDefinedTypeName","pathNode":{"id":21687,"name":"ILPWhitelist","nameLocations":["27529:12:69"],"nodeType":"IdentifierPath","referencedDeclaration":28916,"src":"27529:12:69"},"referencedDeclaration":28916,"src":"27529:12:69","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$28916","typeString":"contract ILPWhitelist"}},"visibility":"internal"}],"src":"27528:14:69"},"scope":21755,"src":"27485:93:69","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":21736,"nodeType":"Block","src":"27629:237:69","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21721,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":21710,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":21704,"name":"newCooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21698,"src":"27658:9:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}],"id":21703,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27650:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21702,"name":"address","nodeType":"ElementaryTypeName","src":"27650:7:69","typeDescriptions":{}}},"id":21705,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27650:18:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":21708,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27680:1:69","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":21707,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27672:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21706,"name":"address","nodeType":"ElementaryTypeName","src":"27672:7:69","typeDescriptions":{}}},"id":21709,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27672:10:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27650:32:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"id":21720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"id":21714,"name":"newCooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21698,"src":"27715:9:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}],"id":21713,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27707:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21712,"name":"address","nodeType":"ElementaryTypeName","src":"27707:7:69","typeDescriptions":{}}},"id":21715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27707:18:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":21711,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29188,"src":"27686:20:69","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$29188_$","typeString":"type(contract IPolicyPoolComponent)"}},"id":21716,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27686:40:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"id":21717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27727:10:69","memberName":"policyPool","nodeType":"MemberAccess","referencedDeclaration":29187,"src":"27686:51:69","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPolicyPool_$29171_$","typeString":"function () view external returns (contract IPolicyPool)"}},"id":21718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27686:53:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":21719,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25474,"src":"27743:11:69","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"src":"27686:68:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"27650:104:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":21723,"name":"newCooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21698,"src":"27776:9:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}],"id":21722,"name":"InvalidCooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19997,"src":"27762:13:69","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_contract$_ICooler_$28695_$returns$_t_error_$","typeString":"function (contract ICooler) pure returns (error)"}},"id":21724,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27762:24:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":21701,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"27635:7:69","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":21725,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27635:157:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21726,"nodeType":"ExpressionStatement","src":"27635:157:69"},{"eventCall":{"arguments":[{"id":21728,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19927,"src":"27817:7:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}},{"id":21729,"name":"newCooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21698,"src":"27826:9:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"},{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}],"id":21727,"name":"CoolerChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20064,"src":"27803:13:69","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_ICooler_$28695_$_t_contract$_ICooler_$28695_$returns$__$","typeString":"function (contract ICooler,contract ICooler)"}},"id":21730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27803:33:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21731,"nodeType":"EmitStatement","src":"27798:38:69"},{"expression":{"id":21734,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21732,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19927,"src":"27842:7:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":21733,"name":"newCooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21698,"src":"27852:9:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}},"src":"27842:19:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}},"id":21735,"nodeType":"ExpressionStatement","src":"27842:19:69"}]},"functionSelector":"d17e6c93","id":21737,"implemented":true,"kind":"function","modifiers":[],"name":"setCooler","nameLocation":"27591:9:69","nodeType":"FunctionDefinition","parameters":{"id":21699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21698,"mutability":"mutable","name":"newCooler","nameLocation":"27609:9:69","nodeType":"VariableDeclaration","scope":21737,"src":"27601:17:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"},"typeName":{"id":21697,"nodeType":"UserDefinedTypeName","pathNode":{"id":21696,"name":"ICooler","nameLocations":["27601:7:69"],"nodeType":"IdentifierPath","referencedDeclaration":28695,"src":"27601:7:69"},"referencedDeclaration":28695,"src":"27601:7:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}},"visibility":"internal"}],"src":"27600:19:69"},"returnParameters":{"id":21700,"nodeType":"ParameterList","parameters":[],"src":"27629:0:69"},"scope":21755,"src":"27582:284:69","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[28868],"body":{"id":21748,"nodeType":"Block","src":"27929:34:69","statements":[{"expression":{"arguments":[{"id":21745,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19927,"src":"27950:7:69","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$28695","typeString":"contract ICooler"}],"id":21744,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27942:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21743,"name":"address","nodeType":"ElementaryTypeName","src":"27942:7:69","typeDescriptions":{}}},"id":21746,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27942:16:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":21742,"id":21747,"nodeType":"Return","src":"27935:23:69"}]},"functionSelector":"cf6a9a94","id":21749,"implemented":true,"kind":"function","modifiers":[],"name":"cooler","nameLocation":"27879:6:69","nodeType":"FunctionDefinition","overrides":{"id":21739,"nodeType":"OverrideSpecifier","overrides":[],"src":"27902:8:69"},"parameters":{"id":21738,"nodeType":"ParameterList","parameters":[],"src":"27885:2:69"},"returnParameters":{"id":21742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21741,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21749,"src":"27920:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21740,"name":"address","nodeType":"ElementaryTypeName","src":"27920:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"27919:9:69"},"scope":21755,"src":"27870:93:69","stateMutability":"view","virtual":false,"visibility":"external"},{"constant":false,"documentation":{"id":21750,"nodeType":"StructuredDocumentation","src":"27967:246:69","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":21754,"mutability":"mutable","name":"__gap","nameLocation":"28236:5:69","nodeType":"VariableDeclaration","scope":21755,"src":"28216:25:69","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$44_storage","typeString":"uint256[44]"},"typeName":{"baseType":{"id":21751,"name":"uint256","nodeType":"ElementaryTypeName","src":"28216:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":21753,"length":{"hexValue":"3434","id":21752,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28224:2:69","typeDescriptions":{"typeIdentifier":"t_rational_44_by_1","typeString":"int_const 44"},"value":"44"},"nodeType":"ArrayTypeName","src":"28216:11:69","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$44_storage_ptr","typeString":"uint256[44]"}},"visibility":"private"}],"scope":21756,"src":"1883:26361:69","usedErrors":[1650,1657,3027,6447,6452,6457,6466,6471,6476,6630,6643,6967,6970,7241,7246,8911,9606,10740,13249,13254,13259,15924,15941,18883,19932,19938,19947,19954,19961,19968,19975,19980,19985,19991,19997,20004,20010,25476,25478,25480,27387,27394,27399],"usedEvents":[6213,6405,6975,7911,7920,20019,20026,20031,20038,20046,20055,20064,20071,20080,27410,27418,27423,28713,28724]}],"src":"39:28206:69"},"id":69},"contracts/LPManualWhitelist.sol":{"ast":{"absolutePath":"contracts/LPManualWhitelist.sol","exportedSymbols":{"IEToken":[28869],"ILPWhitelist":[28916],"IPolicyPool":[29171],"LPManualWhitelist":[22193],"PolicyPoolComponent":[25609]},"id":22194,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":21757,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:70"},{"absolutePath":"contracts/interfaces/IPolicyPool.sol","file":"./interfaces/IPolicyPool.sol","id":21759,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22194,"sourceUnit":29172,"src":"65:57:70","symbolAliases":[{"foreign":{"id":21758,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"73:11:70","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/PolicyPoolComponent.sol","file":"./PolicyPoolComponent.sol","id":21761,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22194,"sourceUnit":25610,"src":"123:62:70","symbolAliases":[{"foreign":{"id":21760,"name":"PolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25609,"src":"131:19:70","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/ILPWhitelist.sol","file":"./interfaces/ILPWhitelist.sol","id":21763,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22194,"sourceUnit":28917,"src":"186:59:70","symbolAliases":[{"foreign":{"id":21762,"name":"ILPWhitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28916,"src":"194:12:70","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IEToken.sol","file":"./interfaces/IEToken.sol","id":21765,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22194,"sourceUnit":28870,"src":"246:49:70","symbolAliases":[{"foreign":{"id":21764,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28869,"src":"254:7:70","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":21767,"name":"ILPWhitelist","nameLocations":["551:12:70"],"nodeType":"IdentifierPath","referencedDeclaration":28916,"src":"551:12:70"},"id":21768,"nodeType":"InheritanceSpecifier","src":"551:12:70"},{"baseName":{"id":21769,"name":"PolicyPoolComponent","nameLocations":["565:19:70"],"nodeType":"IdentifierPath","referencedDeclaration":25609,"src":"565:19:70"},"id":21770,"nodeType":"InheritanceSpecifier","src":"565:19:70"}],"canonicalName":"LPManualWhitelist","contractDependencies":[],"contractKind":"contract","documentation":{"id":21766,"nodeType":"StructuredDocumentation","src":"297:223:70","text":" @title Manual Whitelisting contract\n @notice LP addresses are whitelisted (and un-whitelisted) manually with transactions by user with given role\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":22193,"linearizedBaseContracts":[22193,25609,29188,14272,7384,6435,7218,28916],"name":"LPManualWhitelist","nameLocation":"530:17:70","nodeType":"ContractDefinition","nodes":[{"canonicalName":"LPManualWhitelist.WhitelistOptions","documentation":{"id":21771,"nodeType":"StructuredDocumentation","src":"589:78:70","text":" @notice Enum with the different options for whitelisting status"},"id":21775,"members":[{"id":21772,"name":"undefined","nameLocation":"698:9:70","nodeType":"EnumValue","src":"698:9:70"},{"id":21773,"name":"whitelisted","nameLocation":"713:11:70","nodeType":"EnumValue","src":"713:11:70"},{"id":21774,"name":"blacklisted","nameLocation":"730:11:70","nodeType":"EnumValue","src":"730:11:70"}],"name":"WhitelistOptions","nameLocation":"675:16:70","nodeType":"EnumDefinition","src":"670:75:70"},{"canonicalName":"LPManualWhitelist.WhitelistStatus","id":21788,"members":[{"constant":false,"id":21778,"mutability":"mutable","name":"deposit","nameLocation":"795:7:70","nodeType":"VariableDeclaration","scope":21788,"src":"778:24:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"typeName":{"id":21777,"nodeType":"UserDefinedTypeName","pathNode":{"id":21776,"name":"WhitelistOptions","nameLocations":["778:16:70"],"nodeType":"IdentifierPath","referencedDeclaration":21775,"src":"778:16:70"},"referencedDeclaration":21775,"src":"778:16:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"visibility":"internal"},{"constant":false,"id":21781,"mutability":"mutable","name":"withdraw","nameLocation":"825:8:70","nodeType":"VariableDeclaration","scope":21788,"src":"808:25:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"typeName":{"id":21780,"nodeType":"UserDefinedTypeName","pathNode":{"id":21779,"name":"WhitelistOptions","nameLocations":["808:16:70"],"nodeType":"IdentifierPath","referencedDeclaration":21775,"src":"808:16:70"},"referencedDeclaration":21775,"src":"808:16:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"visibility":"internal"},{"constant":false,"id":21784,"mutability":"mutable","name":"sendTransfer","nameLocation":"856:12:70","nodeType":"VariableDeclaration","scope":21788,"src":"839:29:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"typeName":{"id":21783,"nodeType":"UserDefinedTypeName","pathNode":{"id":21782,"name":"WhitelistOptions","nameLocations":["839:16:70"],"nodeType":"IdentifierPath","referencedDeclaration":21775,"src":"839:16:70"},"referencedDeclaration":21775,"src":"839:16:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"visibility":"internal"},{"constant":false,"id":21787,"mutability":"mutable","name":"receiveTransfer","nameLocation":"891:15:70","nodeType":"VariableDeclaration","scope":21788,"src":"874:32:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"typeName":{"id":21786,"nodeType":"UserDefinedTypeName","pathNode":{"id":21785,"name":"WhitelistOptions","nameLocations":["874:16:70"],"nodeType":"IdentifierPath","referencedDeclaration":21775,"src":"874:16:70"},"referencedDeclaration":21775,"src":"874:16:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"visibility":"internal"}],"name":"WhitelistStatus","nameLocation":"756:15:70","nodeType":"StructDefinition","scope":22193,"src":"749:162:70","visibility":"public"},{"constant":false,"id":21793,"mutability":"mutable","name":"_wlStatus","nameLocation":"959:9:70","nodeType":"VariableDeclaration","scope":22193,"src":"915:53:70","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_WhitelistStatus_$21788_storage_$","typeString":"mapping(address => struct LPManualWhitelist.WhitelistStatus)"},"typeName":{"id":21792,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":21789,"name":"address","nodeType":"ElementaryTypeName","src":"923:7:70","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"915:35:70","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_WhitelistStatus_$21788_storage_$","typeString":"mapping(address => struct LPManualWhitelist.WhitelistStatus)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":21791,"nodeType":"UserDefinedTypeName","pathNode":{"id":21790,"name":"WhitelistStatus","nameLocations":["934:15:70"],"nodeType":"IdentifierPath","referencedDeclaration":21788,"src":"934:15:70"},"referencedDeclaration":21788,"src":"934:15:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"}}},"visibility":"private"},{"errorSelector":"96271599","id":21797,"name":"InvalidProvider","nameLocation":"979:15:70","nodeType":"ErrorDefinition","parameters":{"id":21796,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21795,"mutability":"mutable","name":"provider","nameLocation":"1003:8:70","nodeType":"VariableDeclaration","scope":21797,"src":"995:16:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21794,"name":"address","nodeType":"ElementaryTypeName","src":"995:7:70","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"994:18:70"},"src":"973:40:70"},{"errorSelector":"7a94d597","id":21802,"name":"InvalidWhitelistStatus","nameLocation":"1022:22:70","nodeType":"ErrorDefinition","parameters":{"id":21801,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21800,"mutability":"mutable","name":"newStatus","nameLocation":"1061:9:70","nodeType":"VariableDeclaration","scope":21802,"src":"1045:25:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_memory_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"},"typeName":{"id":21799,"nodeType":"UserDefinedTypeName","pathNode":{"id":21798,"name":"WhitelistStatus","nameLocations":["1045:15:70"],"nodeType":"IdentifierPath","referencedDeclaration":21788,"src":"1045:15:70"},"referencedDeclaration":21788,"src":"1045:15:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"}},"visibility":"internal"}],"src":"1044:27:70"},"src":"1016:56:70"},{"anonymous":false,"documentation":{"id":21803,"nodeType":"StructuredDocumentation","src":"1076:291:70","text":" @notice Emitted when the whitelist status for a provider (or the defaults entry at address(0)) is updated.\n @param provider The provider whose status was changed. `address(0)` denotes the defaults entry.\n @param whitelisted The new status stored for the provider."},"eventSelector":"95d7a6740c7954755644347f27cbf1bebf7d02a83371922a49d04ddce4757c2a","id":21810,"name":"LPWhitelistStatusChanged","nameLocation":"1376:24:70","nodeType":"EventDefinition","parameters":{"id":21809,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21805,"indexed":false,"mutability":"mutable","name":"provider","nameLocation":"1409:8:70","nodeType":"VariableDeclaration","scope":21810,"src":"1401:16:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21804,"name":"address","nodeType":"ElementaryTypeName","src":"1401:7:70","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21808,"indexed":false,"mutability":"mutable","name":"whitelisted","nameLocation":"1435:11:70","nodeType":"VariableDeclaration","scope":21810,"src":"1419:27:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_memory_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"},"typeName":{"id":21807,"nodeType":"UserDefinedTypeName","pathNode":{"id":21806,"name":"WhitelistStatus","nameLocations":["1419:15:70"],"nodeType":"IdentifierPath","referencedDeclaration":21788,"src":"1419:15:70"},"referencedDeclaration":21788,"src":"1419:15:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"}},"visibility":"internal"}],"src":"1400:47:70"},"src":"1370:78:70"},{"body":{"id":21820,"nodeType":"Block","src":"1620:2:70","statements":[]},"documentation":{"id":21811,"nodeType":"StructuredDocumentation","src":"1452:48:70","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":21821,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":21817,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21814,"src":"1607:11:70","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}}],"id":21818,"kind":"baseConstructorSpecifier","modifierName":{"id":21816,"name":"PolicyPoolComponent","nameLocations":["1587:19:70"],"nodeType":"IdentifierPath","referencedDeclaration":25609,"src":"1587:19:70"},"nodeType":"ModifierInvocation","src":"1587:32:70"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":21815,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21814,"mutability":"mutable","name":"policyPool_","nameLocation":"1574:11:70","nodeType":"VariableDeclaration","scope":21821,"src":"1562:23:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"typeName":{"id":21813,"nodeType":"UserDefinedTypeName","pathNode":{"id":21812,"name":"IPolicyPool","nameLocations":["1562:11:70"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"1562:11:70"},"referencedDeclaration":29171,"src":"1562:11:70","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"1561:25:70"},"returnParameters":{"id":21819,"nodeType":"ParameterList","parameters":[],"src":"1620:0:70"},"scope":22193,"src":"1550:72:70","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":21834,"nodeType":"Block","src":"1773:50:70","statements":[{"expression":{"arguments":[{"id":21831,"name":"defaultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21825,"src":"1804:13:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}],"id":21830,"name":"__LPManualWhitelist_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21851,"src":"1779:24:70","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_WhitelistStatus_$21788_calldata_ptr_$returns$__$","typeString":"function (struct LPManualWhitelist.WhitelistStatus calldata)"}},"id":21832,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1779:39:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21833,"nodeType":"ExpressionStatement","src":"1779:39:70"}]},"documentation":{"id":21822,"nodeType":"StructuredDocumentation","src":"1626:57:70","text":" @notice Initializes the Whitelist contract"},"functionSelector":"aa2f92fb","id":21835,"implemented":true,"kind":"function","modifiers":[{"id":21828,"kind":"modifierInvocation","modifierName":{"id":21827,"name":"initializer","nameLocations":["1761:11:70"],"nodeType":"IdentifierPath","referencedDeclaration":7058,"src":"1761:11:70"},"nodeType":"ModifierInvocation","src":"1761:11:70"}],"name":"initialize","nameLocation":"1695:10:70","nodeType":"FunctionDefinition","parameters":{"id":21826,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21825,"mutability":"mutable","name":"defaultStatus","nameLocation":"1731:13:70","nodeType":"VariableDeclaration","scope":21835,"src":"1706:38:70","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"},"typeName":{"id":21824,"nodeType":"UserDefinedTypeName","pathNode":{"id":21823,"name":"WhitelistStatus","nameLocations":["1706:15:70"],"nodeType":"IdentifierPath","referencedDeclaration":21788,"src":"1706:15:70"},"referencedDeclaration":21788,"src":"1706:15:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"}},"visibility":"internal"}],"src":"1705:40:70"},"returnParameters":{"id":21829,"nodeType":"ParameterList","parameters":[],"src":"1773:0:70"},"scope":22193,"src":"1686:137:70","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":21850,"nodeType":"Block","src":"1978:94:70","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":21843,"name":"__PolicyPoolComponent_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25530,"src":"1984:26:70","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":21844,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1984:28:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21845,"nodeType":"ExpressionStatement","src":"1984:28:70"},{"expression":{"arguments":[{"id":21847,"name":"defaultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21838,"src":"2053:13:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}],"id":21846,"name":"__LPManualWhitelist_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21881,"src":"2018:34:70","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_WhitelistStatus_$21788_calldata_ptr_$returns$__$","typeString":"function (struct LPManualWhitelist.WhitelistStatus calldata)"}},"id":21848,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2018:49:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21849,"nodeType":"ExpressionStatement","src":"2018:49:70"}]},"id":21851,"implemented":true,"kind":"function","modifiers":[{"id":21841,"kind":"modifierInvocation","modifierName":{"id":21840,"name":"onlyInitializing","nameLocations":["1961:16:70"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"1961:16:70"},"nodeType":"ModifierInvocation","src":"1961:16:70"}],"name":"__LPManualWhitelist_init","nameLocation":"1887:24:70","nodeType":"FunctionDefinition","parameters":{"id":21839,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21838,"mutability":"mutable","name":"defaultStatus","nameLocation":"1937:13:70","nodeType":"VariableDeclaration","scope":21851,"src":"1912:38:70","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"},"typeName":{"id":21837,"nodeType":"UserDefinedTypeName","pathNode":{"id":21836,"name":"WhitelistStatus","nameLocations":["1912:15:70"],"nodeType":"IdentifierPath","referencedDeclaration":21788,"src":"1912:15:70"},"referencedDeclaration":21788,"src":"1912:15:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"}},"visibility":"internal"}],"src":"1911:40:70"},"returnParameters":{"id":21842,"nodeType":"ParameterList","parameters":[],"src":"1978:0:70"},"scope":22193,"src":"1878:194:70","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":21880,"nodeType":"Block","src":"2237:150:70","statements":[{"expression":{"arguments":[{"id":21860,"name":"defaultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21854,"src":"2263:13:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}],"id":21859,"name":"_checkDefaultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21945,"src":"2243:19:70","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_WhitelistStatus_$21788_calldata_ptr_$returns$__$","typeString":"function (struct LPManualWhitelist.WhitelistStatus calldata) pure"}},"id":21861,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2243:34:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21862,"nodeType":"ExpressionStatement","src":"2243:34:70"},{"expression":{"id":21870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":21863,"name":"_wlStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21793,"src":"2283:9:70","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_WhitelistStatus_$21788_storage_$","typeString":"mapping(address => struct LPManualWhitelist.WhitelistStatus storage ref)"}},"id":21868,"indexExpression":{"arguments":[{"hexValue":"30","id":21866,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2301:1:70","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":21865,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2293:7:70","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21864,"name":"address","nodeType":"ElementaryTypeName","src":"2293:7:70","typeDescriptions":{}}},"id":21867,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2293:10:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2283:21:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage","typeString":"struct LPManualWhitelist.WhitelistStatus storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":21869,"name":"defaultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21854,"src":"2307:13:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}},"src":"2283:37:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage","typeString":"struct LPManualWhitelist.WhitelistStatus storage ref"}},"id":21871,"nodeType":"ExpressionStatement","src":"2283:37:70"},{"eventCall":{"arguments":[{"arguments":[{"hexValue":"30","id":21875,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2364:1:70","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":21874,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2356:7:70","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21873,"name":"address","nodeType":"ElementaryTypeName","src":"2356:7:70","typeDescriptions":{}}},"id":21876,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2356:10:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21877,"name":"defaultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21854,"src":"2368:13:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}],"id":21872,"name":"LPWhitelistStatusChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21810,"src":"2331:24:70","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_struct$_WhitelistStatus_$21788_memory_ptr_$returns$__$","typeString":"function (address,struct LPManualWhitelist.WhitelistStatus memory)"}},"id":21878,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2331:51:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21879,"nodeType":"EmitStatement","src":"2326:56:70"}]},"id":21881,"implemented":true,"kind":"function","modifiers":[{"id":21857,"kind":"modifierInvocation","modifierName":{"id":21856,"name":"onlyInitializing","nameLocations":["2220:16:70"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"2220:16:70"},"nodeType":"ModifierInvocation","src":"2220:16:70"}],"name":"__LPManualWhitelist_init_unchained","nameLocation":"2136:34:70","nodeType":"FunctionDefinition","parameters":{"id":21855,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21854,"mutability":"mutable","name":"defaultStatus","nameLocation":"2196:13:70","nodeType":"VariableDeclaration","scope":21881,"src":"2171:38:70","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"},"typeName":{"id":21853,"nodeType":"UserDefinedTypeName","pathNode":{"id":21852,"name":"WhitelistStatus","nameLocations":["2171:15:70"],"nodeType":"IdentifierPath","referencedDeclaration":21788,"src":"2171:15:70"},"referencedDeclaration":21788,"src":"2171:15:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"}},"visibility":"internal"}],"src":"2170:40:70"},"returnParameters":{"id":21858,"nodeType":"ParameterList","parameters":[],"src":"2237:0:70"},"scope":22193,"src":"2127:260:70","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":21907,"nodeType":"Block","src":"2871:113:70","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":21896,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21891,"name":"provider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21884,"src":"2885:8:70","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":21894,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2905:1:70","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":21893,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2897:7:70","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21892,"name":"address","nodeType":"ElementaryTypeName","src":"2897:7:70","typeDescriptions":{}}},"id":21895,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2897:10:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2885:22:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":21898,"name":"provider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21884,"src":"2925:8:70","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":21897,"name":"InvalidProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21797,"src":"2909:15:70","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":21899,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2909:25:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":21890,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2877:7:70","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":21900,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2877:58:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21901,"nodeType":"ExpressionStatement","src":"2877:58:70"},{"expression":{"arguments":[{"id":21903,"name":"provider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21884,"src":"2959:8:70","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21904,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21887,"src":"2969:9:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}],"id":21902,"name":"_whitelistAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22001,"src":"2941:17:70","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_struct$_WhitelistStatus_$21788_memory_ptr_$returns$__$","typeString":"function (address,struct LPManualWhitelist.WhitelistStatus memory)"}},"id":21905,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2941:38:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21906,"nodeType":"ExpressionStatement","src":"2941:38:70"}]},"documentation":{"id":21882,"nodeType":"StructuredDocumentation","src":"2391:388:70","text":" @notice Sets a custom whitelist status for `provider`.\n @param provider The LP address whose status will be updated. Must be non-zero.\n @param newStatus The status to store for `provider`. Fields may be `undefined` to indicate \"use defaults\".\n @custom:pre `provider != address(0)`\n @custom:throws {InvalidProvider} if `provider == address(0)`"},"functionSelector":"896ce44c","id":21908,"implemented":true,"kind":"function","modifiers":[],"name":"whitelistAddress","nameLocation":"2791:16:70","nodeType":"FunctionDefinition","parameters":{"id":21888,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21884,"mutability":"mutable","name":"provider","nameLocation":"2816:8:70","nodeType":"VariableDeclaration","scope":21908,"src":"2808:16:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21883,"name":"address","nodeType":"ElementaryTypeName","src":"2808:7:70","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21887,"mutability":"mutable","name":"newStatus","nameLocation":"2851:9:70","nodeType":"VariableDeclaration","scope":21908,"src":"2826:34:70","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"},"typeName":{"id":21886,"nodeType":"UserDefinedTypeName","pathNode":{"id":21885,"name":"WhitelistStatus","nameLocations":["2826:15:70"],"nodeType":"IdentifierPath","referencedDeclaration":21788,"src":"2826:15:70"},"referencedDeclaration":21788,"src":"2826:15:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"}},"visibility":"internal"}],"src":"2807:54:70"},"returnParameters":{"id":21889,"nodeType":"ParameterList","parameters":[],"src":"2871:0:70"},"scope":22193,"src":"2782:202:70","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":21944,"nodeType":"Block","src":"3607:311:70","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21938,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21932,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21926,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"id":21920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":21916,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21912,"src":"3628:9:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}},"id":21917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3638:7:70","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":21778,"src":"3628:17:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":21918,"name":"WhitelistOptions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21775,"src":"3649:16:70","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WhitelistOptions_$21775_$","typeString":"type(enum LPManualWhitelist.WhitelistOptions)"}},"id":21919,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3666:9:70","memberName":"undefined","nodeType":"MemberAccess","referencedDeclaration":21772,"src":"3649:26:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"src":"3628:47:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"id":21925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":21921,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21912,"src":"3687:9:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}},"id":21922,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3697:8:70","memberName":"withdraw","nodeType":"MemberAccess","referencedDeclaration":21781,"src":"3687:18:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":21923,"name":"WhitelistOptions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21775,"src":"3709:16:70","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WhitelistOptions_$21775_$","typeString":"type(enum LPManualWhitelist.WhitelistOptions)"}},"id":21924,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3726:9:70","memberName":"undefined","nodeType":"MemberAccess","referencedDeclaration":21772,"src":"3709:26:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"src":"3687:48:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3628:107:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"id":21931,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":21927,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21912,"src":"3747:9:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}},"id":21928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3757:12:70","memberName":"sendTransfer","nodeType":"MemberAccess","referencedDeclaration":21784,"src":"3747:22:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":21929,"name":"WhitelistOptions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21775,"src":"3773:16:70","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WhitelistOptions_$21775_$","typeString":"type(enum LPManualWhitelist.WhitelistOptions)"}},"id":21930,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3790:9:70","memberName":"undefined","nodeType":"MemberAccess","referencedDeclaration":21772,"src":"3773:26:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"src":"3747:52:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3628:171:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"id":21937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":21933,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21912,"src":"3811:9:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}},"id":21934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3821:15:70","memberName":"receiveTransfer","nodeType":"MemberAccess","referencedDeclaration":21787,"src":"3811:25:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":21935,"name":"WhitelistOptions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21775,"src":"3840:16:70","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WhitelistOptions_$21775_$","typeString":"type(enum LPManualWhitelist.WhitelistOptions)"}},"id":21936,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3857:9:70","memberName":"undefined","nodeType":"MemberAccess","referencedDeclaration":21772,"src":"3840:26:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"src":"3811:55:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3628:238:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":21940,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21912,"src":"3897:9:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}],"id":21939,"name":"InvalidWhitelistStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21802,"src":"3874:22:70","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_struct$_WhitelistStatus_$21788_memory_ptr_$returns$_t_error_$","typeString":"function (struct LPManualWhitelist.WhitelistStatus memory) pure returns (error)"}},"id":21941,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3874:33:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":21915,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3613:7:70","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":21942,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3613:300:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21943,"nodeType":"ExpressionStatement","src":"3613:300:70"}]},"documentation":{"id":21909,"nodeType":"StructuredDocumentation","src":"2988:537:70","text":" @notice Internal validator for the defaults entry. All fields must be explicitly set (non-`undefined`).\n @param newStatus Candidate defaults status.\n @custom:pre `newStatus.deposit != WhitelistOptions.undefined`\n @custom:pre `newStatus.withdraw != WhitelistOptions.undefined`\n @custom:pre `newStatus.sendTransfer != WhitelistOptions.undefined`\n @custom:pre `newStatus.receiveTransfer != WhitelistOptions.undefined`\n @custom:throws {InvalidWhitelistStatus} if any field is `undefined`"},"id":21945,"implemented":true,"kind":"function","modifiers":[],"name":"_checkDefaultStatus","nameLocation":"3537:19:70","nodeType":"FunctionDefinition","parameters":{"id":21913,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21912,"mutability":"mutable","name":"newStatus","nameLocation":"3582:9:70","nodeType":"VariableDeclaration","scope":21945,"src":"3557:34:70","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"},"typeName":{"id":21911,"nodeType":"UserDefinedTypeName","pathNode":{"id":21910,"name":"WhitelistStatus","nameLocations":["3557:15:70"],"nodeType":"IdentifierPath","referencedDeclaration":21788,"src":"3557:15:70"},"referencedDeclaration":21788,"src":"3557:15:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"}},"visibility":"internal"}],"src":"3556:36:70"},"returnParameters":{"id":21914,"nodeType":"ParameterList","parameters":[],"src":"3607:0:70"},"scope":22193,"src":"3528:390:70","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21964,"nodeType":"Block","src":"4555:87:70","statements":[{"expression":{"arguments":[{"id":21953,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21949,"src":"4581:9:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}],"id":21952,"name":"_checkDefaultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21945,"src":"4561:19:70","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_WhitelistStatus_$21788_calldata_ptr_$returns$__$","typeString":"function (struct LPManualWhitelist.WhitelistStatus calldata) pure"}},"id":21954,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4561:30:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21955,"nodeType":"ExpressionStatement","src":"4561:30:70"},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":21959,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4623:1:70","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":21958,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4615:7:70","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21957,"name":"address","nodeType":"ElementaryTypeName","src":"4615:7:70","typeDescriptions":{}}},"id":21960,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4615:10:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21961,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21949,"src":"4627:9:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus calldata"}],"id":21956,"name":"_whitelistAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22001,"src":"4597:17:70","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_struct$_WhitelistStatus_$21788_memory_ptr_$returns$__$","typeString":"function (address,struct LPManualWhitelist.WhitelistStatus memory)"}},"id":21962,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4597:40:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21963,"nodeType":"ExpressionStatement","src":"4597:40:70"}]},"documentation":{"id":21946,"nodeType":"StructuredDocumentation","src":"3922:555:70","text":" @notice Updates the default whitelist status stored at `_wlStatus[address(0)]`.\n @param newStatus The new defaults entry. All fields must be non-`undefined`.\n @custom:pre `newStatus.deposit != WhitelistOptions.undefined`\n @custom:pre `newStatus.withdraw != WhitelistOptions.undefined`\n @custom:pre `newStatus.sendTransfer != WhitelistOptions.undefined`\n @custom:pre `newStatus.receiveTransfer != WhitelistOptions.undefined`\n @custom:throws {InvalidWhitelistStatus} if any defaults field is `undefined`"},"functionSelector":"cf273ca6","id":21965,"implemented":true,"kind":"function","modifiers":[],"name":"setWhitelistDefaults","nameLocation":"4489:20:70","nodeType":"FunctionDefinition","parameters":{"id":21950,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21949,"mutability":"mutable","name":"newStatus","nameLocation":"4535:9:70","nodeType":"VariableDeclaration","scope":21965,"src":"4510:34:70","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_calldata_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"},"typeName":{"id":21948,"nodeType":"UserDefinedTypeName","pathNode":{"id":21947,"name":"WhitelistStatus","nameLocations":["4510:15:70"],"nodeType":"IdentifierPath","referencedDeclaration":21788,"src":"4510:15:70"},"referencedDeclaration":21788,"src":"4510:15:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"}},"visibility":"internal"}],"src":"4509:36:70"},"returnParameters":{"id":21951,"nodeType":"ParameterList","parameters":[],"src":"4555:0:70"},"scope":22193,"src":"4480:162:70","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":21979,"nodeType":"Block","src":"4822:39:70","statements":[{"expression":{"baseExpression":{"id":21972,"name":"_wlStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21793,"src":"4835:9:70","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_WhitelistStatus_$21788_storage_$","typeString":"mapping(address => struct LPManualWhitelist.WhitelistStatus storage ref)"}},"id":21977,"indexExpression":{"arguments":[{"hexValue":"30","id":21975,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4853:1:70","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":21974,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4845:7:70","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21973,"name":"address","nodeType":"ElementaryTypeName","src":"4845:7:70","typeDescriptions":{}}},"id":21976,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4845:10:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4835:21:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage","typeString":"struct LPManualWhitelist.WhitelistStatus storage ref"}},"functionReturnParameters":21971,"id":21978,"nodeType":"Return","src":"4828:28:70"}]},"documentation":{"id":21966,"nodeType":"StructuredDocumentation","src":"4646:94:70","text":" @notice Returns the default whitelist status stored at `_wlStatus[address(0)]`."},"functionSelector":"ed716bf4","id":21980,"implemented":true,"kind":"function","modifiers":[],"name":"getWhitelistDefaults","nameLocation":"4752:20:70","nodeType":"FunctionDefinition","parameters":{"id":21967,"nodeType":"ParameterList","parameters":[],"src":"4772:2:70"},"returnParameters":{"id":21971,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21970,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21980,"src":"4798:22:70","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_memory_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"},"typeName":{"id":21969,"nodeType":"UserDefinedTypeName","pathNode":{"id":21968,"name":"WhitelistStatus","nameLocations":["4798:15:70"],"nodeType":"IdentifierPath","referencedDeclaration":21788,"src":"4798:15:70"},"referencedDeclaration":21788,"src":"4798:15:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"}},"visibility":"internal"}],"src":"4797:24:70"},"scope":22193,"src":"4743:118:70","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22000,"nodeType":"Block","src":"5176:98:70","statements":[{"expression":{"id":21993,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":21989,"name":"_wlStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21793,"src":"5182:9:70","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_WhitelistStatus_$21788_storage_$","typeString":"mapping(address => struct LPManualWhitelist.WhitelistStatus storage ref)"}},"id":21991,"indexExpression":{"id":21990,"name":"provider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21983,"src":"5192:8:70","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"5182:19:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage","typeString":"struct LPManualWhitelist.WhitelistStatus storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":21992,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21986,"src":"5204:9:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_memory_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus memory"}},"src":"5182:31:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage","typeString":"struct LPManualWhitelist.WhitelistStatus storage ref"}},"id":21994,"nodeType":"ExpressionStatement","src":"5182:31:70"},{"eventCall":{"arguments":[{"id":21996,"name":"provider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21983,"src":"5249:8:70","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21997,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21986,"src":"5259:9:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_memory_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_memory_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus memory"}],"id":21995,"name":"LPWhitelistStatusChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21810,"src":"5224:24:70","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_struct$_WhitelistStatus_$21788_memory_ptr_$returns$__$","typeString":"function (address,struct LPManualWhitelist.WhitelistStatus memory)"}},"id":21998,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5224:45:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21999,"nodeType":"EmitStatement","src":"5219:50:70"}]},"documentation":{"id":21981,"nodeType":"StructuredDocumentation","src":"4865:220:70","text":" @notice Stores `newStatus` for `provider`.\n @param provider The provider whose entry is being written.\n @param newStatus The status to store.\n @custom:emits {LPWhitelistStatusChanged}"},"id":22001,"implemented":true,"kind":"function","modifiers":[],"name":"_whitelistAddress","nameLocation":"5097:17:70","nodeType":"FunctionDefinition","parameters":{"id":21987,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21983,"mutability":"mutable","name":"provider","nameLocation":"5123:8:70","nodeType":"VariableDeclaration","scope":22001,"src":"5115:16:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21982,"name":"address","nodeType":"ElementaryTypeName","src":"5115:7:70","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21986,"mutability":"mutable","name":"newStatus","nameLocation":"5156:9:70","nodeType":"VariableDeclaration","scope":22001,"src":"5133:32:70","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_memory_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"},"typeName":{"id":21985,"nodeType":"UserDefinedTypeName","pathNode":{"id":21984,"name":"WhitelistStatus","nameLocations":["5133:15:70"],"nodeType":"IdentifierPath","referencedDeclaration":21788,"src":"5133:15:70"},"referencedDeclaration":21788,"src":"5133:15:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage_ptr","typeString":"struct LPManualWhitelist.WhitelistStatus"}},"visibility":"internal"}],"src":"5114:52:70"},"returnParameters":{"id":21988,"nodeType":"ParameterList","parameters":[],"src":"5176:0:70"},"scope":22193,"src":"5088:186:70","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[25582],"body":{"id":22022,"nodeType":"Block","src":"5424:103:70","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":22020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":22012,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22004,"src":"5461:11:70","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":22010,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5437:5:70","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_LPManualWhitelist_$22193_$","typeString":"type(contract super LPManualWhitelist)"}},"id":22011,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5443:17:70","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":25582,"src":"5437:23:70","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":22013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5437:36:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":22019,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22014,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22004,"src":"5477:11:70","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":22016,"name":"ILPWhitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28916,"src":"5497:12:70","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ILPWhitelist_$28916_$","typeString":"type(contract ILPWhitelist)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_ILPWhitelist_$28916_$","typeString":"type(contract ILPWhitelist)"}],"id":22015,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5492:4:70","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":22017,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5492:18:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_ILPWhitelist_$28916","typeString":"type(contract ILPWhitelist)"}},"id":22018,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5511:11:70","memberName":"interfaceId","nodeType":"MemberAccess","src":"5492:30:70","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"5477:45:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5437:85:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":22009,"id":22021,"nodeType":"Return","src":"5430:92:70"}]},"documentation":{"id":22002,"nodeType":"StructuredDocumentation","src":"5278:52:70","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":22023,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"5342:17:70","nodeType":"FunctionDefinition","overrides":{"id":22006,"nodeType":"OverrideSpecifier","overrides":[],"src":"5400:8:70"},"parameters":{"id":22005,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22004,"mutability":"mutable","name":"interfaceId","nameLocation":"5367:11:70","nodeType":"VariableDeclaration","scope":22023,"src":"5360:18:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":22003,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5360:6:70","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"5359:20:70"},"returnParameters":{"id":22009,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22008,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22023,"src":"5418:4:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":22007,"name":"bool","nodeType":"ElementaryTypeName","src":"5418:4:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5417:6:70"},"scope":22193,"src":"5333:194:70","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[28887],"body":{"id":22066,"nodeType":"Block","src":"5660:199:70","statements":[{"assignments":[22039],"declarations":[{"constant":false,"id":22039,"mutability":"mutable","name":"wl","nameLocation":"5683:2:70","nodeType":"VariableDeclaration","scope":22066,"src":"5666:19:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"typeName":{"id":22038,"nodeType":"UserDefinedTypeName","pathNode":{"id":22037,"name":"WhitelistOptions","nameLocations":["5666:16:70"],"nodeType":"IdentifierPath","referencedDeclaration":21775,"src":"5666:16:70"},"referencedDeclaration":21775,"src":"5666:16:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"visibility":"internal"}],"id":22044,"initialValue":{"expression":{"baseExpression":{"id":22040,"name":"_wlStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21793,"src":"5688:9:70","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_WhitelistStatus_$21788_storage_$","typeString":"mapping(address => struct LPManualWhitelist.WhitelistStatus storage ref)"}},"id":22042,"indexExpression":{"id":22041,"name":"provider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22029,"src":"5698:8:70","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5688:19:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage","typeString":"struct LPManualWhitelist.WhitelistStatus storage ref"}},"id":22043,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5708:7:70","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":21778,"src":"5688:27:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"VariableDeclarationStatement","src":"5666:49:70"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"id":22048,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22045,"name":"wl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22039,"src":"5725:2:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":22046,"name":"WhitelistOptions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21775,"src":"5731:16:70","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WhitelistOptions_$21775_$","typeString":"type(enum LPManualWhitelist.WhitelistOptions)"}},"id":22047,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5748:9:70","memberName":"undefined","nodeType":"MemberAccess","referencedDeclaration":21772,"src":"5731:26:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"src":"5725:32:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":22060,"nodeType":"IfStatement","src":"5721:87:70","trueBody":{"id":22059,"nodeType":"Block","src":"5759:49:70","statements":[{"expression":{"id":22057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":22049,"name":"wl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22039,"src":"5767:2:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"baseExpression":{"id":22050,"name":"_wlStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21793,"src":"5772:9:70","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_WhitelistStatus_$21788_storage_$","typeString":"mapping(address => struct LPManualWhitelist.WhitelistStatus storage ref)"}},"id":22055,"indexExpression":{"arguments":[{"hexValue":"30","id":22053,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5790:1:70","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":22052,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5782:7:70","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":22051,"name":"address","nodeType":"ElementaryTypeName","src":"5782:7:70","typeDescriptions":{}}},"id":22054,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5782:10:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5772:21:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage","typeString":"struct LPManualWhitelist.WhitelistStatus storage ref"}},"id":22056,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5794:7:70","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":21778,"src":"5772:29:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"src":"5767:34:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"id":22058,"nodeType":"ExpressionStatement","src":"5767:34:70"}]}},{"expression":{"commonType":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"id":22064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22061,"name":"wl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22039,"src":"5820:2:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":22062,"name":"WhitelistOptions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21775,"src":"5826:16:70","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WhitelistOptions_$21775_$","typeString":"type(enum LPManualWhitelist.WhitelistOptions)"}},"id":22063,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5843:11:70","memberName":"whitelisted","nodeType":"MemberAccess","referencedDeclaration":21773,"src":"5826:28:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"src":"5820:34:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":22036,"id":22065,"nodeType":"Return","src":"5813:41:70"}]},"documentation":{"id":22024,"nodeType":"StructuredDocumentation","src":"5531:28:70","text":"@inheritdoc ILPWhitelist"},"functionSelector":"37ee20dd","id":22067,"implemented":true,"kind":"function","modifiers":[],"name":"acceptsDeposit","nameLocation":"5571:14:70","nodeType":"FunctionDefinition","overrides":{"id":22033,"nodeType":"OverrideSpecifier","overrides":[],"src":"5636:8:70"},"parameters":{"id":22032,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22027,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22067,"src":"5586:7:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":22026,"nodeType":"UserDefinedTypeName","pathNode":{"id":22025,"name":"IEToken","nameLocations":["5586:7:70"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"5586:7:70"},"referencedDeclaration":28869,"src":"5586:7:70","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":22029,"mutability":"mutable","name":"provider","nameLocation":"5603:8:70","nodeType":"VariableDeclaration","scope":22067,"src":"5595:16:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22028,"name":"address","nodeType":"ElementaryTypeName","src":"5595:7:70","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22031,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22067,"src":"5613:7:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22030,"name":"uint256","nodeType":"ElementaryTypeName","src":"5613:7:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5585:36:70"},"returnParameters":{"id":22036,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22035,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22067,"src":"5654:4:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":22034,"name":"bool","nodeType":"ElementaryTypeName","src":"5654:4:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5653:6:70"},"scope":22193,"src":"5562:297:70","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[28915],"body":{"id":22110,"nodeType":"Block","src":"5995:201:70","statements":[{"assignments":[22083],"declarations":[{"constant":false,"id":22083,"mutability":"mutable","name":"wl","nameLocation":"6018:2:70","nodeType":"VariableDeclaration","scope":22110,"src":"6001:19:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"typeName":{"id":22082,"nodeType":"UserDefinedTypeName","pathNode":{"id":22081,"name":"WhitelistOptions","nameLocations":["6001:16:70"],"nodeType":"IdentifierPath","referencedDeclaration":21775,"src":"6001:16:70"},"referencedDeclaration":21775,"src":"6001:16:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"visibility":"internal"}],"id":22088,"initialValue":{"expression":{"baseExpression":{"id":22084,"name":"_wlStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21793,"src":"6023:9:70","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_WhitelistStatus_$21788_storage_$","typeString":"mapping(address => struct LPManualWhitelist.WhitelistStatus storage ref)"}},"id":22086,"indexExpression":{"id":22085,"name":"provider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22073,"src":"6033:8:70","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6023:19:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage","typeString":"struct LPManualWhitelist.WhitelistStatus storage ref"}},"id":22087,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6043:8:70","memberName":"withdraw","nodeType":"MemberAccess","referencedDeclaration":21781,"src":"6023:28:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"VariableDeclarationStatement","src":"6001:50:70"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"id":22092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22089,"name":"wl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22083,"src":"6061:2:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":22090,"name":"WhitelistOptions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21775,"src":"6067:16:70","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WhitelistOptions_$21775_$","typeString":"type(enum LPManualWhitelist.WhitelistOptions)"}},"id":22091,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6084:9:70","memberName":"undefined","nodeType":"MemberAccess","referencedDeclaration":21772,"src":"6067:26:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"src":"6061:32:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":22104,"nodeType":"IfStatement","src":"6057:88:70","trueBody":{"id":22103,"nodeType":"Block","src":"6095:50:70","statements":[{"expression":{"id":22101,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":22093,"name":"wl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22083,"src":"6103:2:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"baseExpression":{"id":22094,"name":"_wlStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21793,"src":"6108:9:70","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_WhitelistStatus_$21788_storage_$","typeString":"mapping(address => struct LPManualWhitelist.WhitelistStatus storage ref)"}},"id":22099,"indexExpression":{"arguments":[{"hexValue":"30","id":22097,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6126:1:70","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":22096,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6118:7:70","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":22095,"name":"address","nodeType":"ElementaryTypeName","src":"6118:7:70","typeDescriptions":{}}},"id":22098,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6118:10:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6108:21:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage","typeString":"struct LPManualWhitelist.WhitelistStatus storage ref"}},"id":22100,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6130:8:70","memberName":"withdraw","nodeType":"MemberAccess","referencedDeclaration":21781,"src":"6108:30:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"src":"6103:35:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"id":22102,"nodeType":"ExpressionStatement","src":"6103:35:70"}]}},{"expression":{"commonType":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"id":22108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22105,"name":"wl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22083,"src":"6157:2:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":22106,"name":"WhitelistOptions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21775,"src":"6163:16:70","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WhitelistOptions_$21775_$","typeString":"type(enum LPManualWhitelist.WhitelistOptions)"}},"id":22107,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6180:11:70","memberName":"whitelisted","nodeType":"MemberAccess","referencedDeclaration":21773,"src":"6163:28:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"src":"6157:34:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":22080,"id":22109,"nodeType":"Return","src":"6150:41:70"}]},"documentation":{"id":22068,"nodeType":"StructuredDocumentation","src":"5863:28:70","text":"@inheritdoc ILPWhitelist"},"functionSelector":"9051c763","id":22111,"implemented":true,"kind":"function","modifiers":[],"name":"acceptsWithdrawal","nameLocation":"5903:17:70","nodeType":"FunctionDefinition","overrides":{"id":22077,"nodeType":"OverrideSpecifier","overrides":[],"src":"5971:8:70"},"parameters":{"id":22076,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22071,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22111,"src":"5921:7:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":22070,"nodeType":"UserDefinedTypeName","pathNode":{"id":22069,"name":"IEToken","nameLocations":["5921:7:70"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"5921:7:70"},"referencedDeclaration":28869,"src":"5921:7:70","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":22073,"mutability":"mutable","name":"provider","nameLocation":"5938:8:70","nodeType":"VariableDeclaration","scope":22111,"src":"5930:16:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22072,"name":"address","nodeType":"ElementaryTypeName","src":"5930:7:70","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22075,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22111,"src":"5948:7:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22074,"name":"uint256","nodeType":"ElementaryTypeName","src":"5948:7:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5920:36:70"},"returnParameters":{"id":22080,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22079,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22111,"src":"5989:4:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":22078,"name":"bool","nodeType":"ElementaryTypeName","src":"5989:4:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5988:6:70"},"scope":22193,"src":"5894:302:70","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[28902],"body":{"id":22186,"nodeType":"Block","src":"6374:419:70","statements":[{"assignments":[22129],"declarations":[{"constant":false,"id":22129,"mutability":"mutable","name":"wl","nameLocation":"6397:2:70","nodeType":"VariableDeclaration","scope":22186,"src":"6380:19:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"typeName":{"id":22128,"nodeType":"UserDefinedTypeName","pathNode":{"id":22127,"name":"WhitelistOptions","nameLocations":["6380:16:70"],"nodeType":"IdentifierPath","referencedDeclaration":21775,"src":"6380:16:70"},"referencedDeclaration":21775,"src":"6380:16:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"visibility":"internal"}],"id":22134,"initialValue":{"expression":{"baseExpression":{"id":22130,"name":"_wlStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21793,"src":"6402:9:70","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_WhitelistStatus_$21788_storage_$","typeString":"mapping(address => struct LPManualWhitelist.WhitelistStatus storage ref)"}},"id":22132,"indexExpression":{"id":22131,"name":"providerFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22117,"src":"6412:12:70","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6402:23:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage","typeString":"struct LPManualWhitelist.WhitelistStatus storage ref"}},"id":22133,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6426:12:70","memberName":"sendTransfer","nodeType":"MemberAccess","referencedDeclaration":21784,"src":"6402:36:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"VariableDeclarationStatement","src":"6380:58:70"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"id":22138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22135,"name":"wl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22129,"src":"6448:2:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":22136,"name":"WhitelistOptions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21775,"src":"6454:16:70","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WhitelistOptions_$21775_$","typeString":"type(enum LPManualWhitelist.WhitelistOptions)"}},"id":22137,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6471:9:70","memberName":"undefined","nodeType":"MemberAccess","referencedDeclaration":21772,"src":"6454:26:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"src":"6448:32:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":22150,"nodeType":"IfStatement","src":"6444:92:70","trueBody":{"id":22149,"nodeType":"Block","src":"6482:54:70","statements":[{"expression":{"id":22147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":22139,"name":"wl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22129,"src":"6490:2:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"baseExpression":{"id":22140,"name":"_wlStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21793,"src":"6495:9:70","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_WhitelistStatus_$21788_storage_$","typeString":"mapping(address => struct LPManualWhitelist.WhitelistStatus storage ref)"}},"id":22145,"indexExpression":{"arguments":[{"hexValue":"30","id":22143,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6513:1:70","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":22142,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6505:7:70","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":22141,"name":"address","nodeType":"ElementaryTypeName","src":"6505:7:70","typeDescriptions":{}}},"id":22144,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6505:10:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6495:21:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage","typeString":"struct LPManualWhitelist.WhitelistStatus storage ref"}},"id":22146,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6517:12:70","memberName":"sendTransfer","nodeType":"MemberAccess","referencedDeclaration":21784,"src":"6495:34:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"src":"6490:39:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"id":22148,"nodeType":"ExpressionStatement","src":"6490:39:70"}]}},{"condition":{"commonType":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"id":22154,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22151,"name":"wl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22129,"src":"6545:2:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":22152,"name":"WhitelistOptions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21775,"src":"6551:16:70","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WhitelistOptions_$21775_$","typeString":"type(enum LPManualWhitelist.WhitelistOptions)"}},"id":22153,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6568:11:70","memberName":"whitelisted","nodeType":"MemberAccess","referencedDeclaration":21773,"src":"6551:28:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"src":"6545:34:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":22157,"nodeType":"IfStatement","src":"6541:52:70","trueBody":{"expression":{"hexValue":"66616c7365","id":22155,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6588:5:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":22126,"id":22156,"nodeType":"Return","src":"6581:12:70"}},{"expression":{"id":22163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":22158,"name":"wl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22129,"src":"6599:2:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"baseExpression":{"id":22159,"name":"_wlStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21793,"src":"6604:9:70","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_WhitelistStatus_$21788_storage_$","typeString":"mapping(address => struct LPManualWhitelist.WhitelistStatus storage ref)"}},"id":22161,"indexExpression":{"id":22160,"name":"providerTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22119,"src":"6614:10:70","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6604:21:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage","typeString":"struct LPManualWhitelist.WhitelistStatus storage ref"}},"id":22162,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6626:15:70","memberName":"receiveTransfer","nodeType":"MemberAccess","referencedDeclaration":21787,"src":"6604:37:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"src":"6599:42:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"id":22164,"nodeType":"ExpressionStatement","src":"6599:42:70"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"id":22168,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22165,"name":"wl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22129,"src":"6651:2:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":22166,"name":"WhitelistOptions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21775,"src":"6657:16:70","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WhitelistOptions_$21775_$","typeString":"type(enum LPManualWhitelist.WhitelistOptions)"}},"id":22167,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6674:9:70","memberName":"undefined","nodeType":"MemberAccess","referencedDeclaration":21772,"src":"6657:26:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"src":"6651:32:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":22180,"nodeType":"IfStatement","src":"6647:95:70","trueBody":{"id":22179,"nodeType":"Block","src":"6685:57:70","statements":[{"expression":{"id":22177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":22169,"name":"wl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22129,"src":"6693:2:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"baseExpression":{"id":22170,"name":"_wlStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21793,"src":"6698:9:70","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_WhitelistStatus_$21788_storage_$","typeString":"mapping(address => struct LPManualWhitelist.WhitelistStatus storage ref)"}},"id":22175,"indexExpression":{"arguments":[{"hexValue":"30","id":22173,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6716:1:70","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":22172,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6708:7:70","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":22171,"name":"address","nodeType":"ElementaryTypeName","src":"6708:7:70","typeDescriptions":{}}},"id":22174,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6708:10:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6698:21:70","typeDescriptions":{"typeIdentifier":"t_struct$_WhitelistStatus_$21788_storage","typeString":"struct LPManualWhitelist.WhitelistStatus storage ref"}},"id":22176,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6720:15:70","memberName":"receiveTransfer","nodeType":"MemberAccess","referencedDeclaration":21787,"src":"6698:37:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"src":"6693:42:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"id":22178,"nodeType":"ExpressionStatement","src":"6693:42:70"}]}},{"expression":{"commonType":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"},"id":22184,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22181,"name":"wl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22129,"src":"6754:2:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":22182,"name":"WhitelistOptions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21775,"src":"6760:16:70","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WhitelistOptions_$21775_$","typeString":"type(enum LPManualWhitelist.WhitelistOptions)"}},"id":22183,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6777:11:70","memberName":"whitelisted","nodeType":"MemberAccess","referencedDeclaration":21773,"src":"6760:28:70","typeDescriptions":{"typeIdentifier":"t_enum$_WhitelistOptions_$21775","typeString":"enum LPManualWhitelist.WhitelistOptions"}},"src":"6754:34:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":22126,"id":22185,"nodeType":"Return","src":"6747:41:70"}]},"documentation":{"id":22112,"nodeType":"StructuredDocumentation","src":"6200:28:70","text":"@inheritdoc ILPWhitelist"},"functionSelector":"5fcdca37","id":22187,"implemented":true,"kind":"function","modifiers":[],"name":"acceptsTransfer","nameLocation":"6240:15:70","nodeType":"FunctionDefinition","overrides":{"id":22123,"nodeType":"OverrideSpecifier","overrides":[],"src":"6350:8:70"},"parameters":{"id":22122,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22115,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22187,"src":"6261:7:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":22114,"nodeType":"UserDefinedTypeName","pathNode":{"id":22113,"name":"IEToken","nameLocations":["6261:7:70"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"6261:7:70"},"referencedDeclaration":28869,"src":"6261:7:70","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":22117,"mutability":"mutable","name":"providerFrom","nameLocation":"6282:12:70","nodeType":"VariableDeclaration","scope":22187,"src":"6274:20:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22116,"name":"address","nodeType":"ElementaryTypeName","src":"6274:7:70","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22119,"mutability":"mutable","name":"providerTo","nameLocation":"6308:10:70","nodeType":"VariableDeclaration","scope":22187,"src":"6300:18:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22118,"name":"address","nodeType":"ElementaryTypeName","src":"6300:7:70","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22121,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22187,"src":"6324:7:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22120,"name":"uint256","nodeType":"ElementaryTypeName","src":"6324:7:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6255:80:70"},"returnParameters":{"id":22126,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22125,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22187,"src":"6368:4:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":22124,"name":"bool","nodeType":"ElementaryTypeName","src":"6368:4:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6367:6:70"},"scope":22193,"src":"6231:562:70","stateMutability":"view","virtual":false,"visibility":"external"},{"constant":false,"documentation":{"id":22188,"nodeType":"StructuredDocumentation","src":"6797:246:70","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":22192,"mutability":"mutable","name":"__gap","nameLocation":"7066:5:70","nodeType":"VariableDeclaration","scope":22193,"src":"7046:25:70","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":22189,"name":"uint256","nodeType":"ElementaryTypeName","src":"7046:7:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22191,"length":{"hexValue":"3439","id":22190,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7054:2:70","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"7046:11:70","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"}],"scope":22194,"src":"521:6553:70","usedErrors":[6630,6643,6967,6970,7241,7246,9606,10740,21797,21802,25476,25478,25480],"usedEvents":[6213,6975,21810]}],"src":"39:7036:70"},"id":70},"contracts/Policy.sol":{"ast":{"absolutePath":"contracts/Policy.sol","exportedSymbols":{"Math":[15914],"Policy":[22826]},"id":22827,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":22195,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:71"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"@openzeppelin/contracts/utils/math/Math.sol","id":22197,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22827,"sourceUnit":15915,"src":"64:65:71","symbolAliases":[{"foreign":{"id":22196,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"72:4:71","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Policy","contractDependencies":[],"contractKind":"library","documentation":{"id":22198,"nodeType":"StructuredDocumentation","src":"131:433:71","text":" @title Policy library\n @notice Library for PolicyData struct. This struct represents an active policy, the premium and solvency breakdown\n @dev Tracks how the premium is distributed, the probability of payout, duration and how the capital is locked.\n It is never stored on-chain, but instead we store a hash and we receive the policy on each operation\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":22826,"linearizedBaseContracts":[22826],"name":"Policy","nameLocation":"573:6:71","nodeType":"ContractDefinition","nodes":[{"global":false,"id":22201,"libraryName":{"id":22199,"name":"Math","nameLocations":["590:4:71"],"nodeType":"IdentifierPath","referencedDeclaration":15914,"src":"590:4:71"},"nodeType":"UsingForDirective","src":"584:23:71","typeName":{"id":22200,"name":"uint256","nodeType":"ElementaryTypeName","src":"599:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"constant":true,"id":22204,"mutability":"constant","name":"WAD","nameLocation":"637:3:71","nodeType":"VariableDeclaration","scope":22826,"src":"611:36:71","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22202,"name":"uint256","nodeType":"ElementaryTypeName","src":"611:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31653138","id":22203,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"643:4:71","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"visibility":"internal"},{"constant":true,"id":22207,"mutability":"constant","name":"SECONDS_PER_YEAR","nameLocation":"677:16:71","nodeType":"VariableDeclaration","scope":22826,"src":"651:53:71","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22205,"name":"uint256","nodeType":"ElementaryTypeName","src":"651:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"333635","id":22206,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"696:8:71","subdenomination":"days","typeDescriptions":{"typeIdentifier":"t_rational_31536000_by_1","typeString":"int_const 31536000"},"value":"365"},"visibility":"internal"},{"canonicalName":"Policy.Params","documentation":{"id":22208,"nodeType":"StructuredDocumentation","src":"709:152:71","text":" @notice Struct of the parameters of the risk module that are used to calculate the different Policy fields (see\n {Policy-PolicyData}."},"id":22230,"members":[{"constant":false,"id":22211,"mutability":"mutable","name":"moc","nameLocation":"1041:3:71","nodeType":"VariableDeclaration","scope":22230,"src":"1033:11:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22210,"name":"uint256","nodeType":"ElementaryTypeName","src":"1033:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22214,"mutability":"mutable","name":"jrCollRatio","nameLocation":"1234:11:71","nodeType":"VariableDeclaration","scope":22230,"src":"1226:19:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22213,"name":"uint256","nodeType":"ElementaryTypeName","src":"1226:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22217,"mutability":"mutable","name":"collRatio","nameLocation":"1537:9:71","nodeType":"VariableDeclaration","scope":22230,"src":"1529:17:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22216,"name":"uint256","nodeType":"ElementaryTypeName","src":"1529:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22220,"mutability":"mutable","name":"ensuroPpFee","nameLocation":"1758:11:71","nodeType":"VariableDeclaration","scope":22230,"src":"1750:19:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22219,"name":"uint256","nodeType":"ElementaryTypeName","src":"1750:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22223,"mutability":"mutable","name":"ensuroCocFee","nameLocation":"1985:12:71","nodeType":"VariableDeclaration","scope":22230,"src":"1977:20:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22222,"name":"uint256","nodeType":"ElementaryTypeName","src":"1977:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22226,"mutability":"mutable","name":"jrRoc","nameLocation":"2163:5:71","nodeType":"VariableDeclaration","scope":22230,"src":"2155:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22225,"name":"uint256","nodeType":"ElementaryTypeName","src":"2155:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22229,"mutability":"mutable","name":"srRoc","nameLocation":"2334:5:71","nodeType":"VariableDeclaration","scope":22230,"src":"2326:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22228,"name":"uint256","nodeType":"ElementaryTypeName","src":"2326:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Params","nameLocation":"871:6:71","nodeType":"StructDefinition","scope":22826,"src":"864:1480:71","visibility":"public"},{"canonicalName":"Policy.PolicyData","documentation":{"id":22231,"nodeType":"StructuredDocumentation","src":"2348:324:71","text":" @notice Struct with all the info of a given policy\n @dev It includes the premium breakdown\n (`premium=purePremium + jrCoc + srCoc + ensuroCommission + partnerCommission`), the solvency breakdown\n (`solvency = purePremium + jrScr + srScr = payout * collRatio`), and the start and end of the policy."},"id":22256,"members":[{"constant":false,"id":22233,"mutability":"mutable","name":"id","nameLocation":"2707:2:71","nodeType":"VariableDeclaration","scope":22256,"src":"2699:10:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22232,"name":"uint256","nodeType":"ElementaryTypeName","src":"2699:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22235,"mutability":"mutable","name":"payout","nameLocation":"2723:6:71","nodeType":"VariableDeclaration","scope":22256,"src":"2715:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22234,"name":"uint256","nodeType":"ElementaryTypeName","src":"2715:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22237,"mutability":"mutable","name":"jrScr","nameLocation":"2743:5:71","nodeType":"VariableDeclaration","scope":22256,"src":"2735:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22236,"name":"uint256","nodeType":"ElementaryTypeName","src":"2735:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22239,"mutability":"mutable","name":"srScr","nameLocation":"2762:5:71","nodeType":"VariableDeclaration","scope":22256,"src":"2754:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22238,"name":"uint256","nodeType":"ElementaryTypeName","src":"2754:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22241,"mutability":"mutable","name":"lossProb","nameLocation":"2781:8:71","nodeType":"VariableDeclaration","scope":22256,"src":"2773:16:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22240,"name":"uint256","nodeType":"ElementaryTypeName","src":"2773:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22243,"mutability":"mutable","name":"purePremium","nameLocation":"2841:11:71","nodeType":"VariableDeclaration","scope":22256,"src":"2833:19:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22242,"name":"uint256","nodeType":"ElementaryTypeName","src":"2833:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22245,"mutability":"mutable","name":"ensuroCommission","nameLocation":"2969:16:71","nodeType":"VariableDeclaration","scope":22256,"src":"2961:24:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22244,"name":"uint256","nodeType":"ElementaryTypeName","src":"2961:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22247,"mutability":"mutable","name":"partnerCommission","nameLocation":"3044:17:71","nodeType":"VariableDeclaration","scope":22256,"src":"3036:25:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22246,"name":"uint256","nodeType":"ElementaryTypeName","src":"3036:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22249,"mutability":"mutable","name":"jrCoc","nameLocation":"3120:5:71","nodeType":"VariableDeclaration","scope":22256,"src":"3112:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22248,"name":"uint256","nodeType":"ElementaryTypeName","src":"3112:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22251,"mutability":"mutable","name":"srCoc","nameLocation":"3216:5:71","nodeType":"VariableDeclaration","scope":22256,"src":"3208:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22250,"name":"uint256","nodeType":"ElementaryTypeName","src":"3208:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22253,"mutability":"mutable","name":"start","nameLocation":"3311:5:71","nodeType":"VariableDeclaration","scope":22256,"src":"3304:12:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":22252,"name":"uint40","nodeType":"ElementaryTypeName","src":"3304:6:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":22255,"mutability":"mutable","name":"expiration","nameLocation":"3329:10:71","nodeType":"VariableDeclaration","scope":22256,"src":"3322:17:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":22254,"name":"uint40","nodeType":"ElementaryTypeName","src":"3322:6:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"name":"PolicyData","nameLocation":"2682:10:71","nodeType":"StructDefinition","scope":22826,"src":"2675:669:71","visibility":"public"},{"canonicalName":"Policy.PremiumComposition","documentation":{"id":22257,"nodeType":"StructuredDocumentation","src":"3348:219:71","text":" @notice Struct that contains the breakdown of premium and policy solvency\n @dev Used for internal calculations.\n `totalPremium = purePremium + jrCoc + srCoc + ensuroCommission + partnerCommission`"},"id":22274,"members":[{"constant":false,"id":22259,"mutability":"mutable","name":"purePremium","nameLocation":"3610:11:71","nodeType":"VariableDeclaration","scope":22274,"src":"3602:19:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22258,"name":"uint256","nodeType":"ElementaryTypeName","src":"3602:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22261,"mutability":"mutable","name":"jrScr","nameLocation":"3635:5:71","nodeType":"VariableDeclaration","scope":22274,"src":"3627:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22260,"name":"uint256","nodeType":"ElementaryTypeName","src":"3627:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22263,"mutability":"mutable","name":"srScr","nameLocation":"3654:5:71","nodeType":"VariableDeclaration","scope":22274,"src":"3646:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22262,"name":"uint256","nodeType":"ElementaryTypeName","src":"3646:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22265,"mutability":"mutable","name":"jrCoc","nameLocation":"3673:5:71","nodeType":"VariableDeclaration","scope":22274,"src":"3665:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22264,"name":"uint256","nodeType":"ElementaryTypeName","src":"3665:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22267,"mutability":"mutable","name":"srCoc","nameLocation":"3692:5:71","nodeType":"VariableDeclaration","scope":22274,"src":"3684:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22266,"name":"uint256","nodeType":"ElementaryTypeName","src":"3684:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22269,"mutability":"mutable","name":"ensuroCommission","nameLocation":"3711:16:71","nodeType":"VariableDeclaration","scope":22274,"src":"3703:24:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22268,"name":"uint256","nodeType":"ElementaryTypeName","src":"3703:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22271,"mutability":"mutable","name":"partnerCommission","nameLocation":"3741:17:71","nodeType":"VariableDeclaration","scope":22274,"src":"3733:25:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22270,"name":"uint256","nodeType":"ElementaryTypeName","src":"3733:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22273,"mutability":"mutable","name":"totalPremium","nameLocation":"3772:12:71","nodeType":"VariableDeclaration","scope":22274,"src":"3764:20:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22272,"name":"uint256","nodeType":"ElementaryTypeName","src":"3764:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"PremiumComposition","nameLocation":"3577:18:71","nodeType":"StructDefinition","scope":22826,"src":"3570:219:71","visibility":"public"},{"documentation":{"id":22275,"nodeType":"StructuredDocumentation","src":"3793:248:71","text":" @notice Raised when the received premium is less than the minimum\n @dev The minPremium is the one that results of computing the CoCs, purePremium and ensuroCommission for the given\n parameters, assuming partnerCommission = 0."},"errorSelector":"fc096627","id":22281,"name":"PremiumLessThanMinimum","nameLocation":"4050:22:71","nodeType":"ErrorDefinition","parameters":{"id":22280,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22277,"mutability":"mutable","name":"premium","nameLocation":"4081:7:71","nodeType":"VariableDeclaration","scope":22281,"src":"4073:15:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22276,"name":"uint256","nodeType":"ElementaryTypeName","src":"4073:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22279,"mutability":"mutable","name":"minPremium","nameLocation":"4098:10:71","nodeType":"VariableDeclaration","scope":22281,"src":"4090:18:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22278,"name":"uint256","nodeType":"ElementaryTypeName","src":"4090:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4072:37:71"},"src":"4044:66:71"},{"documentation":{"id":22282,"nodeType":"StructuredDocumentation","src":"4114:95:71","text":"@notice Raised when the premium exceeds the payoutreceived premium is less than the minimum"},"errorSelector":"632611b2","id":22288,"name":"PremiumExceedsPayout","nameLocation":"4218:20:71","nodeType":"ErrorDefinition","parameters":{"id":22287,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22284,"mutability":"mutable","name":"premium","nameLocation":"4247:7:71","nodeType":"VariableDeclaration","scope":22288,"src":"4239:15:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22283,"name":"uint256","nodeType":"ElementaryTypeName","src":"4239:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22286,"mutability":"mutable","name":"payout","nameLocation":"4264:6:71","nodeType":"VariableDeclaration","scope":22288,"src":"4256:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22285,"name":"uint256","nodeType":"ElementaryTypeName","src":"4256:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4238:33:71"},"src":"4212:60:71"},{"documentation":{"id":22289,"nodeType":"StructuredDocumentation","src":"4276:55:71","text":"@notice Raised when the computed hash is bytes32(0)"},"errorSelector":"6ee9f647","id":22294,"name":"ZeroHash","nameLocation":"4340:8:71","nodeType":"ErrorDefinition","parameters":{"id":22293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22292,"mutability":"mutable","name":"policy","nameLocation":"4360:6:71","nodeType":"VariableDeclaration","scope":22294,"src":"4349:17:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":22291,"nodeType":"UserDefinedTypeName","pathNode":{"id":22290,"name":"PolicyData","nameLocations":["4349:10:71"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"4349:10:71"},"referencedDeclaration":22256,"src":"4349:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"4348:19:71"},"src":"4334:34:71"},{"body":{"id":22475,"nodeType":"Block","src":"5347:1111:71","statements":[{"expression":{"id":22325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22312,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"5353:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22314,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5364:11:71","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22259,"src":"5353:22:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":22321,"name":"rmParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22298,"src":"5414:8:71","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}},"id":22322,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5423:3:71","memberName":"moc","nodeType":"MemberAccess","referencedDeclaration":22211,"src":"5414:12:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":22323,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22204,"src":"5428:3:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":22317,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22302,"src":"5392:8:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":22318,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22204,"src":"5402:3:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":22315,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22300,"src":"5378:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5385:6:71","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14799,"src":"5378:13:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":22319,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5378:28:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5407:6:71","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14799,"src":"5378:35:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":22324,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5378:54:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5353:79:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22326,"nodeType":"ExpressionStatement","src":"5353:79:71"},{"expression":{"id":22336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22327,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"5438:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22329,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5449:5:71","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22261,"src":"5438:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":22332,"name":"rmParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22298,"src":"5471:8:71","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}},"id":22333,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5480:11:71","memberName":"jrCollRatio","nodeType":"MemberAccess","referencedDeclaration":22214,"src":"5471:20:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":22334,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22204,"src":"5493:3:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":22330,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22300,"src":"5457:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5464:6:71","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14799,"src":"5457:13:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":22335,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5457:40:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5438:59:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22337,"nodeType":"ExpressionStatement","src":"5438:59:71"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22342,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22338,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"5507:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22339,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5518:5:71","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22261,"src":"5507:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":22340,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"5526:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22341,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5537:11:71","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22259,"src":"5526:22:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5507:41:71","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":22357,"nodeType":"Block","src":"5613:35:71","statements":[{"expression":{"id":22355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22351,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"5621:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22353,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5632:5:71","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22261,"src":"5621:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":22354,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5640:1:71","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5621:20:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22356,"nodeType":"ExpressionStatement","src":"5621:20:71"}]},"id":22358,"nodeType":"IfStatement","src":"5503:145:71","trueBody":{"id":22350,"nodeType":"Block","src":"5550:57:71","statements":[{"expression":{"id":22348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22343,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"5558:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22345,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5569:5:71","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22261,"src":"5558:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"expression":{"id":22346,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"5578:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22347,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5589:11:71","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22259,"src":"5578:22:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5558:42:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22349,"nodeType":"ExpressionStatement","src":"5558:42:71"}]}},{"expression":{"id":22368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22359,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"5654:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22361,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5665:5:71","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22263,"src":"5654:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":22364,"name":"rmParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22298,"src":"5687:8:71","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}},"id":22365,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5696:9:71","memberName":"collRatio","nodeType":"MemberAccess","referencedDeclaration":22217,"src":"5687:18:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":22366,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22204,"src":"5707:3:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":22362,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22300,"src":"5673:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5680:6:71","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14799,"src":"5673:13:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":22367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5673:38:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5654:57:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22369,"nodeType":"ExpressionStatement","src":"5654:57:71"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22370,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"5721:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22371,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5732:5:71","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22263,"src":"5721:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22372,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"5741:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22373,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5752:11:71","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22259,"src":"5741:22:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":22374,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"5766:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22375,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5777:5:71","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22261,"src":"5766:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5741:41:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":22377,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5740:43:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5721:62:71","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":22396,"nodeType":"Block","src":"5867:35:71","statements":[{"expression":{"id":22394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22390,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"5875:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22392,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5886:5:71","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22263,"src":"5875:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":22393,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5894:1:71","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5875:20:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22395,"nodeType":"ExpressionStatement","src":"5875:20:71"}]},"id":22397,"nodeType":"IfStatement","src":"5717:185:71","trueBody":{"id":22389,"nodeType":"Block","src":"5785:76:71","statements":[{"expression":{"id":22387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22379,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"5793:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22381,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5804:5:71","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22263,"src":"5793:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22382,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"5813:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22383,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5824:11:71","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22259,"src":"5813:22:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":22384,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"5838:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22385,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5849:5:71","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22261,"src":"5838:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5813:41:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5793:61:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22388,"nodeType":"ExpressionStatement","src":"5793:61:71"}]}},{"expression":{"id":22415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22398,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"5930:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22400,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5941:5:71","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":22265,"src":"5930:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22404,"name":"rmParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22298,"src":"5973:8:71","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}},"id":22405,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5982:5:71","memberName":"jrRoc","nodeType":"MemberAccess","referencedDeclaration":22226,"src":"5973:14:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":22408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22406,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22304,"src":"5991:10:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":22407,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22306,"src":"6004:5:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"5991:18:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"id":22409,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5990:20:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"5973:37:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22413,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"id":22411,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22204,"src":"6012:3:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":22412,"name":"SECONDS_PER_YEAR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22207,"src":"6018:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6012:22:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":22401,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"5949:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22402,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5960:5:71","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22261,"src":"5949:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5966:6:71","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14799,"src":"5949:23:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":22414,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5949:86:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5930:105:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22416,"nodeType":"ExpressionStatement","src":"5930:105:71"},{"expression":{"id":22434,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22417,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"6041:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22419,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6052:5:71","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":22267,"src":"6041:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22423,"name":"rmParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22298,"src":"6084:8:71","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}},"id":22424,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6093:5:71","memberName":"srRoc","nodeType":"MemberAccess","referencedDeclaration":22229,"src":"6084:14:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":22427,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22425,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22304,"src":"6102:10:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":22426,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22306,"src":"6115:5:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"6102:18:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"id":22428,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6101:20:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"6084:37:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22432,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"id":22430,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22204,"src":"6123:3:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":22431,"name":"SECONDS_PER_YEAR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22207,"src":"6129:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6123:22:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":22420,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"6060:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22421,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6071:5:71","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22263,"src":"6060:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6077:6:71","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14799,"src":"6060:23:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":22433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6060:86:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6041:105:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22435,"nodeType":"ExpressionStatement","src":"6041:105:71"},{"assignments":[22437],"declarations":[{"constant":false,"id":22437,"mutability":"mutable","name":"totalCoc","nameLocation":"6160:8:71","nodeType":"VariableDeclaration","scope":22475,"src":"6152:16:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22436,"name":"uint256","nodeType":"ElementaryTypeName","src":"6152:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":22443,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22442,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22438,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"6171:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22439,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6182:5:71","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":22265,"src":"6171:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":22440,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"6190:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22441,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6201:5:71","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":22267,"src":"6190:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6171:35:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6152:54:71"},{"expression":{"id":22461,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22444,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"6213:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22446,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6224:16:71","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":22269,"src":"6213:27:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":22450,"name":"rmParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22298,"src":"6279:8:71","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}},"id":22451,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6288:11:71","memberName":"ensuroPpFee","nodeType":"MemberAccess","referencedDeclaration":22220,"src":"6279:20:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":22452,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22204,"src":"6301:3:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":22447,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"6249:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22448,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6260:11:71","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22259,"src":"6249:22:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6272:6:71","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14799,"src":"6249:29:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":22453,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6249:56:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"expression":{"id":22456,"name":"rmParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22298,"src":"6330:8:71","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}},"id":22457,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6339:12:71","memberName":"ensuroCocFee","nodeType":"MemberAccess","referencedDeclaration":22223,"src":"6330:21:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":22458,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22204,"src":"6353:3:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":22454,"name":"totalCoc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22437,"src":"6314:8:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6323:6:71","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14799,"src":"6314:15:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":22459,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6314:43:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6249:108:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6213:144:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22462,"nodeType":"ExpressionStatement","src":"6213:144:71"},{"expression":{"id":22473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22463,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"6364:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22465,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6375:12:71","memberName":"totalPremium","nodeType":"MemberAccess","referencedDeclaration":22273,"src":"6364:23:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22466,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"6390:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22467,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6401:11:71","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22259,"src":"6390:22:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":22468,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22310,"src":"6415:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22469,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6426:16:71","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":22269,"src":"6415:27:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6390:52:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":22471,"name":"totalCoc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22437,"src":"6445:8:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6390:63:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6364:89:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22474,"nodeType":"ExpressionStatement","src":"6364:89:71"}]},"documentation":{"id":22295,"nodeType":"StructuredDocumentation","src":"4372:769:71","text":" @notice Computes the minimum premium\n @dev The minPremium is the one that results of computing the CoCs, purePremium and ensuroCommission for the given\n parameters, assuming partnerCommission = 0.\n @param rmParams Struct with the business and quantitative parameters that define the risk (see {Params}).\n @param payout Maximum payout (exposure) of the policy\n @param lossProb Probability of paying the maximum payout (purePremium = rmParams.moc * lossProb * payout)\n @param expiration Timestamp when the policy expires (can't be claimed anymore)\n @param start Timestamp when the policy starts (block.timestamp for new policies)\n @return minPremium PremiumComposition struct with the computed premium and its breakdown"},"id":22476,"implemented":true,"kind":"function","modifiers":[],"name":"getMinimumPremium","nameLocation":"5153:17:71","nodeType":"FunctionDefinition","parameters":{"id":22307,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22298,"mutability":"mutable","name":"rmParams","nameLocation":"5190:8:71","nodeType":"VariableDeclaration","scope":22476,"src":"5176:22:71","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":22297,"nodeType":"UserDefinedTypeName","pathNode":{"id":22296,"name":"Params","nameLocations":["5176:6:71"],"nodeType":"IdentifierPath","referencedDeclaration":22230,"src":"5176:6:71"},"referencedDeclaration":22230,"src":"5176:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"},{"constant":false,"id":22300,"mutability":"mutable","name":"payout","nameLocation":"5212:6:71","nodeType":"VariableDeclaration","scope":22476,"src":"5204:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22299,"name":"uint256","nodeType":"ElementaryTypeName","src":"5204:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22302,"mutability":"mutable","name":"lossProb","nameLocation":"5232:8:71","nodeType":"VariableDeclaration","scope":22476,"src":"5224:16:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22301,"name":"uint256","nodeType":"ElementaryTypeName","src":"5224:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22304,"mutability":"mutable","name":"expiration","nameLocation":"5253:10:71","nodeType":"VariableDeclaration","scope":22476,"src":"5246:17:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":22303,"name":"uint40","nodeType":"ElementaryTypeName","src":"5246:6:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":22306,"mutability":"mutable","name":"start","nameLocation":"5276:5:71","nodeType":"VariableDeclaration","scope":22476,"src":"5269:12:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":22305,"name":"uint40","nodeType":"ElementaryTypeName","src":"5269:6:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"5170:115:71"},"returnParameters":{"id":22311,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22310,"mutability":"mutable","name":"minPremium","nameLocation":"5335:10:71","nodeType":"VariableDeclaration","scope":22476,"src":"5309:36:71","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition"},"typeName":{"id":22309,"nodeType":"UserDefinedTypeName","pathNode":{"id":22308,"name":"PremiumComposition","nameLocations":["5309:18:71"],"nodeType":"IdentifierPath","referencedDeclaration":22274,"src":"5309:18:71"},"referencedDeclaration":22274,"src":"5309:18:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_storage_ptr","typeString":"struct Policy.PremiumComposition"}},"visibility":"internal"}],"src":"5308:38:71"},"scope":22826,"src":"5144:1314:71","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":22610,"nodeType":"Block","src":"7554:789:71","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22497,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22482,"src":"7568:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":22498,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22484,"src":"7578:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7568:16:71","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":22501,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22482,"src":"7607:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":22502,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22484,"src":"7616:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":22500,"name":"PremiumExceedsPayout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22288,"src":"7586:20:71","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":22503,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7586:37:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":22496,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"7560:7:71","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":22504,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7560:64:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22505,"nodeType":"ExpressionStatement","src":"7560:64:71"},{"assignments":[22508],"declarations":[{"constant":false,"id":22508,"mutability":"mutable","name":"policy","nameLocation":"7648:6:71","nodeType":"VariableDeclaration","scope":22610,"src":"7630:24:71","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":22507,"nodeType":"UserDefinedTypeName","pathNode":{"id":22506,"name":"PolicyData","nameLocations":["7630:10:71"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"7630:10:71"},"referencedDeclaration":22256,"src":"7630:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"id":22509,"nodeType":"VariableDeclarationStatement","src":"7630:24:71"},{"expression":{"id":22514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22510,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22508,"src":"7661:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22512,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7668:6:71","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":22235,"src":"7661:13:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":22513,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22484,"src":"7677:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7661:22:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22515,"nodeType":"ExpressionStatement","src":"7661:22:71"},{"expression":{"id":22520,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22516,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22508,"src":"7689:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22518,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7696:8:71","memberName":"lossProb","nodeType":"MemberAccess","referencedDeclaration":22241,"src":"7689:15:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":22519,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22486,"src":"7707:8:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7689:26:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22521,"nodeType":"ExpressionStatement","src":"7689:26:71"},{"expression":{"id":22526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22522,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22508,"src":"7721:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22524,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7728:5:71","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":22253,"src":"7721:12:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":22525,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22490,"src":"7736:5:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"7721:20:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"id":22527,"nodeType":"ExpressionStatement","src":"7721:20:71"},{"expression":{"id":22532,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22528,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22508,"src":"7747:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22530,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7754:10:71","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":22255,"src":"7747:17:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":22531,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22488,"src":"7767:10:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"7747:30:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"id":22533,"nodeType":"ExpressionStatement","src":"7747:30:71"},{"assignments":[22536],"declarations":[{"constant":false,"id":22536,"mutability":"mutable","name":"minPremium","nameLocation":"7810:10:71","nodeType":"VariableDeclaration","scope":22610,"src":"7784:36:71","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition"},"typeName":{"id":22535,"nodeType":"UserDefinedTypeName","pathNode":{"id":22534,"name":"PremiumComposition","nameLocations":["7784:18:71"],"nodeType":"IdentifierPath","referencedDeclaration":22274,"src":"7784:18:71"},"referencedDeclaration":22274,"src":"7784:18:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_storage_ptr","typeString":"struct Policy.PremiumComposition"}},"visibility":"internal"}],"id":22544,"initialValue":{"arguments":[{"id":22538,"name":"rmParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22480,"src":"7841:8:71","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}},{"id":22539,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22484,"src":"7851:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":22540,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22486,"src":"7859:8:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":22541,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22488,"src":"7869:10:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":22542,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22490,"src":"7881:5:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"}],"id":22537,"name":"getMinimumPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22476,"src":"7823:17:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Params_$22230_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint40_$returns$_t_struct$_PremiumComposition_$22274_memory_ptr_$","typeString":"function (struct Policy.Params memory,uint256,uint256,uint40,uint40) pure returns (struct Policy.PremiumComposition memory)"}},"id":22543,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7823:64:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"nodeType":"VariableDeclarationStatement","src":"7784:103:71"},{"expression":{"id":22550,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22545,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22508,"src":"7894:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22547,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7901:11:71","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22243,"src":"7894:18:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":22548,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22536,"src":"7915:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22549,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7926:11:71","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22259,"src":"7915:22:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7894:43:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22551,"nodeType":"ExpressionStatement","src":"7894:43:71"},{"expression":{"id":22557,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22552,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22508,"src":"7943:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22554,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7950:5:71","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22237,"src":"7943:12:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":22555,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22536,"src":"7958:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22556,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7969:5:71","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22261,"src":"7958:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7943:31:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22558,"nodeType":"ExpressionStatement","src":"7943:31:71"},{"expression":{"id":22564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22559,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22508,"src":"7980:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22561,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7987:5:71","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22239,"src":"7980:12:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":22562,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22536,"src":"7995:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22563,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8006:5:71","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22263,"src":"7995:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7980:31:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22565,"nodeType":"ExpressionStatement","src":"7980:31:71"},{"expression":{"id":22571,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22566,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22508,"src":"8017:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22568,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8024:5:71","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":22249,"src":"8017:12:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":22569,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22536,"src":"8032:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22570,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8043:5:71","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":22265,"src":"8032:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8017:31:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22572,"nodeType":"ExpressionStatement","src":"8017:31:71"},{"expression":{"id":22578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22573,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22508,"src":"8054:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22575,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8061:5:71","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":22251,"src":"8054:12:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":22576,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22536,"src":"8069:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22577,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8080:5:71","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":22267,"src":"8069:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8054:31:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22579,"nodeType":"ExpressionStatement","src":"8054:31:71"},{"expression":{"id":22585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22580,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22508,"src":"8091:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22582,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8098:16:71","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":22245,"src":"8091:23:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":22583,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22536,"src":"8117:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22584,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8128:16:71","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":22269,"src":"8117:27:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8091:53:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22586,"nodeType":"ExpressionStatement","src":"8091:53:71"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22588,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22536,"src":"8159:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22589,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8170:12:71","memberName":"totalPremium","nodeType":"MemberAccess","referencedDeclaration":22273,"src":"8159:23:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":22590,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22482,"src":"8186:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8159:34:71","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":22593,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22482,"src":"8218:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":22594,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22536,"src":"8227:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22595,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8238:12:71","memberName":"totalPremium","nodeType":"MemberAccess","referencedDeclaration":22273,"src":"8227:23:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":22592,"name":"PremiumLessThanMinimum","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22281,"src":"8195:22:71","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":22596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8195:56:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":22587,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"8151:7:71","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":22597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8151:101:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22598,"nodeType":"ExpressionStatement","src":"8151:101:71"},{"expression":{"id":22606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":22599,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22508,"src":"8259:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22601,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8266:17:71","memberName":"partnerCommission","nodeType":"MemberAccess","referencedDeclaration":22247,"src":"8259:24:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22602,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22482,"src":"8286:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":22603,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22536,"src":"8296:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":22604,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8307:12:71","memberName":"totalPremium","nodeType":"MemberAccess","referencedDeclaration":22273,"src":"8296:23:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8286:33:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8259:60:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22607,"nodeType":"ExpressionStatement","src":"8259:60:71"},{"expression":{"id":22608,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22508,"src":"8332:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"functionReturnParameters":22495,"id":22609,"nodeType":"Return","src":"8325:13:71"}]},"documentation":{"id":22477,"nodeType":"StructuredDocumentation","src":"6462:881:71","text":" @notice Initializes a policy struct\n @dev Computes the minimum premium and the remaining (premium - minPremium) is assigned as partnerCommissiona\n @custom:throws PremiumLessThanMinimum when `premium` parameter is less than the computed minPremium\n @param rmParams Struct with the business and quantitative parameters that define the risk (see {Params}).\n @param premium The premium that will be paid for the policy\n @param payout Maximum payout (exposure) of the policy\n @param lossProb Probability of paying the maximum payout (purePremium = rmParams.moc * lossProb * payout)\n @param expiration Timestamp when the policy expires (can't be claimed anymore)\n @param start Timestamp when the policy starts (block.timestamp for new policies)\n @return newPolicy PolicyData struct with the fields initialized (all except .id)"},"id":22611,"implemented":true,"kind":"function","modifiers":[],"name":"initialize","nameLocation":"7355:10:71","nodeType":"FunctionDefinition","parameters":{"id":22491,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22480,"mutability":"mutable","name":"rmParams","nameLocation":"7385:8:71","nodeType":"VariableDeclaration","scope":22611,"src":"7371:22:71","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":22479,"nodeType":"UserDefinedTypeName","pathNode":{"id":22478,"name":"Params","nameLocations":["7371:6:71"],"nodeType":"IdentifierPath","referencedDeclaration":22230,"src":"7371:6:71"},"referencedDeclaration":22230,"src":"7371:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"},{"constant":false,"id":22482,"mutability":"mutable","name":"premium","nameLocation":"7407:7:71","nodeType":"VariableDeclaration","scope":22611,"src":"7399:15:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22481,"name":"uint256","nodeType":"ElementaryTypeName","src":"7399:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22484,"mutability":"mutable","name":"payout","nameLocation":"7428:6:71","nodeType":"VariableDeclaration","scope":22611,"src":"7420:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22483,"name":"uint256","nodeType":"ElementaryTypeName","src":"7420:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22486,"mutability":"mutable","name":"lossProb","nameLocation":"7448:8:71","nodeType":"VariableDeclaration","scope":22611,"src":"7440:16:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22485,"name":"uint256","nodeType":"ElementaryTypeName","src":"7440:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22488,"mutability":"mutable","name":"expiration","nameLocation":"7469:10:71","nodeType":"VariableDeclaration","scope":22611,"src":"7462:17:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":22487,"name":"uint40","nodeType":"ElementaryTypeName","src":"7462:6:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":22490,"mutability":"mutable","name":"start","nameLocation":"7492:5:71","nodeType":"VariableDeclaration","scope":22611,"src":"7485:12:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":22489,"name":"uint40","nodeType":"ElementaryTypeName","src":"7485:6:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"7365:136:71"},"returnParameters":{"id":22495,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22494,"mutability":"mutable","name":"newPolicy","nameLocation":"7543:9:71","nodeType":"VariableDeclaration","scope":22611,"src":"7525:27:71","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":22493,"nodeType":"UserDefinedTypeName","pathNode":{"id":22492,"name":"PolicyData","nameLocations":["7525:10:71"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"7525:10:71"},"referencedDeclaration":22256,"src":"7525:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"7524:29:71"},"scope":22826,"src":"7346:997:71","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":22635,"nodeType":"Block","src":"8806:96:71","statements":[{"expression":{"arguments":[{"id":22626,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22204,"src":"8860:3:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22627,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22615,"src":"8865:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22628,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8872:5:71","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22237,"src":"8865:12:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":22630,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22615,"src":"8889:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":22629,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22727,"src":"8880:8:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint40_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint40)"}},"id":22631,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8880:16:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"8865:31:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22620,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22615,"src":"8820:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22621,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8827:5:71","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":22249,"src":"8820:12:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":22622,"name":"SECONDS_PER_YEAR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22207,"src":"8835:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8820:31:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":22624,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8819:33:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8853:6:71","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14799,"src":"8819:40:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":22633,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8819:78:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":22619,"id":22634,"nodeType":"Return","src":"8812:85:71"}]},"documentation":{"id":22612,"nodeType":"StructuredDocumentation","src":"8347:374:71","text":" @notice Computes the annualized interest rate paid to Junior LPs, for a given policy\n @dev Computed as `(jrCoc / jrScr) * (SECONDS_PER_YEAR / duration)`. The result should be almost the same as\n the initial rmParams.jrRoc sent to `initialize`.\n @param policy Struct with all the info of the policy\n @return Annualized interest rate in WAD"},"id":22636,"implemented":true,"kind":"function","modifiers":[],"name":"jrInterestRate","nameLocation":"8733:14:71","nodeType":"FunctionDefinition","parameters":{"id":22616,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22615,"mutability":"mutable","name":"policy","nameLocation":"8766:6:71","nodeType":"VariableDeclaration","scope":22636,"src":"8748:24:71","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":22614,"nodeType":"UserDefinedTypeName","pathNode":{"id":22613,"name":"PolicyData","nameLocations":["8748:10:71"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"8748:10:71"},"referencedDeclaration":22256,"src":"8748:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"8747:26:71"},"returnParameters":{"id":22619,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22618,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22636,"src":"8797:7:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22617,"name":"uint256","nodeType":"ElementaryTypeName","src":"8797:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8796:9:71"},"scope":22826,"src":"8724:178:71","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":22660,"nodeType":"Block","src":"9284:86:71","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22658,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22653,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22645,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22640,"src":"9298:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22646,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9305:5:71","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":22249,"src":"9298:12:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22647,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"9314:5:71","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":22648,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9320:9:71","memberName":"timestamp","nodeType":"MemberAccess","src":"9314:15:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":22649,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22640,"src":"9332:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22650,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9339:5:71","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":22253,"src":"9332:12:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"9314:30:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":22652,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9313:32:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9298:47:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":22654,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9297:49:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"arguments":[{"id":22656,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22640,"src":"9358:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":22655,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22727,"src":"9349:8:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint40_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint40)"}},"id":22657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9349:16:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"9297:68:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":22644,"id":22659,"nodeType":"Return","src":"9290:75:71"}]},"documentation":{"id":22637,"nodeType":"StructuredDocumentation","src":"8906:290:71","text":" @notice Computed the interest accrued by junior LPs\n @dev The value is directly proportional to the elapsed time since policy.start with respect to the duration\n @param policy Struct with all the info of the policy\n @return Amount of the JrCoc accrued so far"},"id":22661,"implemented":true,"kind":"function","modifiers":[],"name":"jrAccruedInterest","nameLocation":"9208:17:71","nodeType":"FunctionDefinition","parameters":{"id":22641,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22640,"mutability":"mutable","name":"policy","nameLocation":"9244:6:71","nodeType":"VariableDeclaration","scope":22661,"src":"9226:24:71","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":22639,"nodeType":"UserDefinedTypeName","pathNode":{"id":22638,"name":"PolicyData","nameLocations":["9226:10:71"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"9226:10:71"},"referencedDeclaration":22256,"src":"9226:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"9225:26:71"},"returnParameters":{"id":22644,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22643,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22661,"src":"9275:7:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22642,"name":"uint256","nodeType":"ElementaryTypeName","src":"9275:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9274:9:71"},"scope":22826,"src":"9199:171:71","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":22685,"nodeType":"Block","src":"9833:96:71","statements":[{"expression":{"arguments":[{"id":22676,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22204,"src":"9887:3:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22677,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22665,"src":"9892:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22678,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9899:5:71","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22239,"src":"9892:12:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":22680,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22665,"src":"9916:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":22679,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22727,"src":"9907:8:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint40_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint40)"}},"id":22681,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9907:16:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"9892:31:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22670,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22665,"src":"9847:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22671,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9854:5:71","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":22251,"src":"9847:12:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":22672,"name":"SECONDS_PER_YEAR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22207,"src":"9862:16:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9847:31:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":22674,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9846:33:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9880:6:71","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14799,"src":"9846:40:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":22683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9846:78:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":22669,"id":22684,"nodeType":"Return","src":"9839:85:71"}]},"documentation":{"id":22662,"nodeType":"StructuredDocumentation","src":"9374:374:71","text":" @notice Computes the annualized interest rate paid to Senior LPs, for a given policy\n @dev Computed as `(srCoc / srScr) * (SECONDS_PER_YEAR / duration)`. The result should be almost the same as\n the initial rmParams.srRoc sent to `initialize`.\n @param policy Struct with all the info of the policy\n @return Annualized interest rate in WAD"},"id":22686,"implemented":true,"kind":"function","modifiers":[],"name":"srInterestRate","nameLocation":"9760:14:71","nodeType":"FunctionDefinition","parameters":{"id":22666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22665,"mutability":"mutable","name":"policy","nameLocation":"9793:6:71","nodeType":"VariableDeclaration","scope":22686,"src":"9775:24:71","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":22664,"nodeType":"UserDefinedTypeName","pathNode":{"id":22663,"name":"PolicyData","nameLocations":["9775:10:71"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"9775:10:71"},"referencedDeclaration":22256,"src":"9775:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"9774:26:71"},"returnParameters":{"id":22669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22668,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22686,"src":"9824:7:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22667,"name":"uint256","nodeType":"ElementaryTypeName","src":"9824:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9823:9:71"},"scope":22826,"src":"9751:178:71","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":22710,"nodeType":"Block","src":"10311:86:71","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22708,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22695,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22690,"src":"10325:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22696,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10332:5:71","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":22251,"src":"10325:12:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22697,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"10341:5:71","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":22698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10347:9:71","memberName":"timestamp","nodeType":"MemberAccess","src":"10341:15:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":22699,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22690,"src":"10359:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22700,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10366:5:71","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":22253,"src":"10359:12:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"10341:30:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":22702,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10340:32:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10325:47:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":22704,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10324:49:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"arguments":[{"id":22706,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22690,"src":"10385:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":22705,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22727,"src":"10376:8:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint40_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint40)"}},"id":22707,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10376:16:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"10324:68:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":22694,"id":22709,"nodeType":"Return","src":"10317:75:71"}]},"documentation":{"id":22687,"nodeType":"StructuredDocumentation","src":"9933:290:71","text":" @notice Computed the interest accrued by senior LPs\n @dev The value is directly proportional to the elapsed time since policy.start with respect to the duration\n @param policy Struct with all the info of the policy\n @return Amount of the SrCoc accrued so far"},"id":22711,"implemented":true,"kind":"function","modifiers":[],"name":"srAccruedInterest","nameLocation":"10235:17:71","nodeType":"FunctionDefinition","parameters":{"id":22691,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22690,"mutability":"mutable","name":"policy","nameLocation":"10271:6:71","nodeType":"VariableDeclaration","scope":22711,"src":"10253:24:71","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":22689,"nodeType":"UserDefinedTypeName","pathNode":{"id":22688,"name":"PolicyData","nameLocations":["10253:10:71"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"10253:10:71"},"referencedDeclaration":22256,"src":"10253:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"10252:26:71"},"returnParameters":{"id":22694,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22693,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22711,"src":"10302:7:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22692,"name":"uint256","nodeType":"ElementaryTypeName","src":"10302:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10301:9:71"},"scope":22826,"src":"10226:171:71","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":22726,"nodeType":"Block","src":"10536:50:71","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":22724,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22720,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22715,"src":"10549:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22721,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10556:10:71","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":22255,"src":"10549:17:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":22722,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22715,"src":"10569:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":22723,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10576:5:71","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":22253,"src":"10569:12:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"10549:32:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"functionReturnParameters":22719,"id":22725,"nodeType":"Return","src":"10542:39:71"}]},"documentation":{"id":22712,"nodeType":"StructuredDocumentation","src":"10401:57:71","text":"@notice Returns the duration in seconds of the policy"},"id":22727,"implemented":true,"kind":"function","modifiers":[],"name":"duration","nameLocation":"10470:8:71","nodeType":"FunctionDefinition","parameters":{"id":22716,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22715,"mutability":"mutable","name":"policy","nameLocation":"10497:6:71","nodeType":"VariableDeclaration","scope":22727,"src":"10479:24:71","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":22714,"nodeType":"UserDefinedTypeName","pathNode":{"id":22713,"name":"PolicyData","nameLocations":["10479:10:71"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"10479:10:71"},"referencedDeclaration":22256,"src":"10479:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"10478:26:71"},"returnParameters":{"id":22719,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22718,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22727,"src":"10528:6:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":22717,"name":"uint40","nodeType":"ElementaryTypeName","src":"10528:6:71","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"10527:8:71"},"scope":22826,"src":"10461:125:71","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":22759,"nodeType":"Block","src":"10731:124:71","statements":[{"expression":{"id":22743,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":22736,"name":"retHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22734,"src":"10737:7:71","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":22740,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22731,"src":"10768:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"expression":{"id":22738,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"10757:3:71","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":22739,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10761:6:71","memberName":"encode","nodeType":"MemberAccess","src":"10757:10:71","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":22741,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10757:18:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":22737,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"10747:9:71","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":22742,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10747:29:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"10737:39:71","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":22744,"nodeType":"ExpressionStatement","src":"10737:39:71"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":22751,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22746,"name":"retHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22734,"src":"10790:7:71","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":22749,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10809:1:71","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":22748,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10801:7:71","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":22747,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10801:7:71","typeDescriptions":{}}},"id":22750,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10801:10:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"10790:21:71","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":22753,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22731,"src":"10822:6:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":22752,"name":"ZeroHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22294,"src":"10813:8:71","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_error_$","typeString":"function (struct Policy.PolicyData memory) pure returns (error)"}},"id":22754,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10813:16:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":22745,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"10782:7:71","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":22755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10782:48:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22756,"nodeType":"ExpressionStatement","src":"10782:48:71"},{"expression":{"id":22757,"name":"retHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22734,"src":"10843:7:71","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":22735,"id":22758,"nodeType":"Return","src":"10836:14:71"}]},"documentation":{"id":22728,"nodeType":"StructuredDocumentation","src":"10590:58:71","text":"@notice Returns a hash of all the fields of the policy"},"id":22760,"implemented":true,"kind":"function","modifiers":[],"name":"hash","nameLocation":"10660:4:71","nodeType":"FunctionDefinition","parameters":{"id":22732,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22731,"mutability":"mutable","name":"policy","nameLocation":"10683:6:71","nodeType":"VariableDeclaration","scope":22760,"src":"10665:24:71","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":22730,"nodeType":"UserDefinedTypeName","pathNode":{"id":22729,"name":"PolicyData","nameLocations":["10665:10:71"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"10665:10:71"},"referencedDeclaration":22256,"src":"10665:10:71","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"10664:26:71"},"returnParameters":{"id":22735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22734,"mutability":"mutable","name":"retHash","nameLocation":"10722:7:71","nodeType":"VariableDeclaration","scope":22760,"src":"10714:15:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":22733,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10714:7:71","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"10713:17:71"},"scope":22826,"src":"10651:204:71","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":22778,"nodeType":"Block","src":"11016:50:71","statements":[{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22772,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22763,"src":"11045:8:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3936","id":22773,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11057:2:71","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"11045:14:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":22771,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11037:7:71","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":22770,"name":"uint160","nodeType":"ElementaryTypeName","src":"11037:7:71","typeDescriptions":{}}},"id":22775,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11037:23:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":22769,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11029:7:71","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":22768,"name":"address","nodeType":"ElementaryTypeName","src":"11029:7:71","typeDescriptions":{}}},"id":22776,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11029:32:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":22767,"id":22777,"nodeType":"Return","src":"11022:39:71"}]},"documentation":{"id":22761,"nodeType":"StructuredDocumentation","src":"10859:77:71","text":"@notice Extracts the risk module address from a policyId (first 20 bytes)"},"id":22779,"implemented":true,"kind":"function","modifiers":[],"name":"extractRiskModule","nameLocation":"10948:17:71","nodeType":"FunctionDefinition","parameters":{"id":22764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22763,"mutability":"mutable","name":"policyId","nameLocation":"10974:8:71","nodeType":"VariableDeclaration","scope":22779,"src":"10966:16:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22762,"name":"uint256","nodeType":"ElementaryTypeName","src":"10966:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10965:18:71"},"returnParameters":{"id":22767,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22766,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22779,"src":"11007:7:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22765,"name":"address","nodeType":"ElementaryTypeName","src":"11007:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11006:9:71"},"scope":22826,"src":"10939:127:71","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":22797,"nodeType":"Block","src":"11215:46:71","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22789,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22782,"src":"11235:8:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_79228162514264337593543950336_by_1","typeString":"int_const 79228162514264337593543950336"},"id":22792,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":22790,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11247:1:71","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3936","id":22791,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11252:2:71","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"11247:7:71","typeDescriptions":{"typeIdentifier":"t_rational_79228162514264337593543950336_by_1","typeString":"int_const 79228162514264337593543950336"}}],"id":22793,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"11246:9:71","typeDescriptions":{"typeIdentifier":"t_rational_79228162514264337593543950336_by_1","typeString":"int_const 79228162514264337593543950336"}},"src":"11235:20:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":22788,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11228:6:71","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":22787,"name":"uint96","nodeType":"ElementaryTypeName","src":"11228:6:71","typeDescriptions":{}}},"id":22795,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11228:28:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"functionReturnParameters":22786,"id":22796,"nodeType":"Return","src":"11221:35:71"}]},"documentation":{"id":22780,"nodeType":"StructuredDocumentation","src":"11070:66:71","text":"@notice Extracts the internalId from a policyId (last 96 bits)"},"id":22798,"implemented":true,"kind":"function","modifiers":[],"name":"extractInternalId","nameLocation":"11148:17:71","nodeType":"FunctionDefinition","parameters":{"id":22783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22782,"mutability":"mutable","name":"policyId","nameLocation":"11174:8:71","nodeType":"VariableDeclaration","scope":22798,"src":"11166:16:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22781,"name":"uint256","nodeType":"ElementaryTypeName","src":"11166:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11165:18:71"},"returnParameters":{"id":22786,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22785,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22798,"src":"11207:6:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":22784,"name":"uint96","nodeType":"ElementaryTypeName","src":"11207:6:71","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"11206:8:71"},"scope":22826,"src":"11139:122:71","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":22824,"nodeType":"Block","src":"11692:68:71","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22822,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22819,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"arguments":[{"id":22814,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22801,"src":"11730:2:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":22813,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11722:7:71","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":22812,"name":"address","nodeType":"ElementaryTypeName","src":"11722:7:71","typeDescriptions":{}}},"id":22815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11722:11:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":22811,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11714:7:71","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":22810,"name":"uint160","nodeType":"ElementaryTypeName","src":"11714:7:71","typeDescriptions":{}}},"id":22816,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11714:20:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":22809,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11706:7:71","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":22808,"name":"uint256","nodeType":"ElementaryTypeName","src":"11706:7:71","typeDescriptions":{}}},"id":22817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11706:29:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3936","id":22818,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11739:2:71","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"11706:35:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":22820,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11705:37:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":22821,"name":"internalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22803,"src":"11745:10:71","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"11705:50:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":22807,"id":22823,"nodeType":"Return","src":"11698:57:71"}]},"documentation":{"id":22799,"nodeType":"StructuredDocumentation","src":"11265:339:71","text":" @notice Generates a policyId, combining the riskModule (first 20 bytes) with the internalId (last 12 bytes)\n @param rm The risk module\n @param internalId An identifier for the policy that is unique within a given risk module\n @return The policy id, that will be used as the tokenId for the minted policy NFT"},"id":22825,"implemented":true,"kind":"function","modifiers":[],"name":"makePolicyId","nameLocation":"11616:12:71","nodeType":"FunctionDefinition","parameters":{"id":22804,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22801,"mutability":"mutable","name":"rm","nameLocation":"11637:2:71","nodeType":"VariableDeclaration","scope":22825,"src":"11629:10:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22800,"name":"address","nodeType":"ElementaryTypeName","src":"11629:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22803,"mutability":"mutable","name":"internalId","nameLocation":"11648:10:71","nodeType":"VariableDeclaration","scope":22825,"src":"11641:17:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":22802,"name":"uint96","nodeType":"ElementaryTypeName","src":"11641:6:71","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"11628:31:71"},"returnParameters":{"id":22807,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22806,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22825,"src":"11683:7:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22805,"name":"uint256","nodeType":"ElementaryTypeName","src":"11683:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11682:9:71"},"scope":22826,"src":"11607:153:71","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":22827,"src":"565:11197:71","usedErrors":[22281,22288,22294],"usedEvents":[]}],"src":"39:11724:71"},"id":71},"contracts/PolicyPool.sol":{"ast":{"absolutePath":"contracts/PolicyPool.sol","exportedSymbols":{"ERC165Checker":[14260],"ERC721Upgradeable":[2864],"IERC165":[14272],"IERC20Metadata":[8863],"IERC20Permit":[8899],"IEToken":[28869],"IPolicyHolder":[28982],"IPolicyPool":[29171],"IPolicyPoolComponent":[29188],"IPremiumsAccount":[29276],"IRiskModule":[29295],"MulticallUpgradeable":[3013],"PausableUpgradeable":[3284],"Policy":[22826],"PolicyPool":[25449],"SafeCast":[17679],"SafeERC20":[9354],"UUPSUpgradeable":[7384]},"id":25450,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":22828,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:72"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":22830,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25450,"sourceUnit":14273,"src":"65:80:72","symbolAliases":[{"foreign":{"id":22829,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"73:7:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol","file":"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol","id":22832,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25450,"sourceUnit":14261,"src":"146:92:72","symbolAliases":[{"foreign":{"id":22831,"name":"ERC165Checker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14260,"src":"154:13:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol","file":"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol","id":22834,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25450,"sourceUnit":2865,"src":"239:105:72","symbolAliases":[{"foreign":{"id":22833,"name":"ERC721Upgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2864,"src":"247:17:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","id":22836,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25450,"sourceUnit":8900,"src":"345:93:72","symbolAliases":[{"foreign":{"id":22835,"name":"IERC20Permit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8899,"src":"353:12:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":22838,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25450,"sourceUnit":8864,"src":"439:97:72","symbolAliases":[{"foreign":{"id":22837,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"447:14:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol","id":22840,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25450,"sourceUnit":3285,"src":"537:102:72","symbolAliases":[{"foreign":{"id":22839,"name":"PausableUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3284,"src":"545:19:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol","id":22842,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25450,"sourceUnit":3014,"src":"640:104:72","symbolAliases":[{"foreign":{"id":22841,"name":"MulticallUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3013,"src":"648:20:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":22844,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25450,"sourceUnit":9355,"src":"745:82:72","symbolAliases":[{"foreign":{"id":22843,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9354,"src":"753:9:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"@openzeppelin/contracts/utils/math/SafeCast.sol","id":22846,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25450,"sourceUnit":17680,"src":"828:73:72","symbolAliases":[{"foreign":{"id":22845,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"836:8:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol","file":"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol","id":22848,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25450,"sourceUnit":7385,"src":"902:88:72","symbolAliases":[{"foreign":{"id":22847,"name":"UUPSUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7384,"src":"910:15:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IEToken.sol","file":"./interfaces/IEToken.sol","id":22850,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25450,"sourceUnit":28870,"src":"992:49:72","symbolAliases":[{"foreign":{"id":22849,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28869,"src":"1000:7:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyHolder.sol","file":"./interfaces/IPolicyHolder.sol","id":22852,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25450,"sourceUnit":28983,"src":"1042:61:72","symbolAliases":[{"foreign":{"id":22851,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"1050:13:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyPool.sol","file":"./interfaces/IPolicyPool.sol","id":22854,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25450,"sourceUnit":29172,"src":"1104:57:72","symbolAliases":[{"foreign":{"id":22853,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"1112:11:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyPoolComponent.sol","file":"./interfaces/IPolicyPoolComponent.sol","id":22856,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25450,"sourceUnit":29189,"src":"1162:75:72","symbolAliases":[{"foreign":{"id":22855,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29188,"src":"1170:20:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPremiumsAccount.sol","file":"./interfaces/IPremiumsAccount.sol","id":22858,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25450,"sourceUnit":29277,"src":"1238:67:72","symbolAliases":[{"foreign":{"id":22857,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29276,"src":"1246:16:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IRiskModule.sol","file":"./interfaces/IRiskModule.sol","id":22860,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25450,"sourceUnit":29296,"src":"1306:57:72","symbolAliases":[{"foreign":{"id":22859,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"1314:11:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/Policy.sol","file":"./Policy.sol","id":22862,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25450,"sourceUnit":22827,"src":"1364:36:72","symbolAliases":[{"foreign":{"id":22861,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"1372:6:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":22864,"name":"IPolicyPool","nameLocations":["2451:11:72"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"2451:11:72"},"id":22865,"nodeType":"InheritanceSpecifier","src":"2451:11:72"},{"baseName":{"id":22866,"name":"PausableUpgradeable","nameLocations":["2464:19:72"],"nodeType":"IdentifierPath","referencedDeclaration":3284,"src":"2464:19:72"},"id":22867,"nodeType":"InheritanceSpecifier","src":"2464:19:72"},{"baseName":{"id":22868,"name":"UUPSUpgradeable","nameLocations":["2485:15:72"],"nodeType":"IdentifierPath","referencedDeclaration":7384,"src":"2485:15:72"},"id":22869,"nodeType":"InheritanceSpecifier","src":"2485:15:72"},{"baseName":{"id":22870,"name":"ERC721Upgradeable","nameLocations":["2502:17:72"],"nodeType":"IdentifierPath","referencedDeclaration":2864,"src":"2502:17:72"},"id":22871,"nodeType":"InheritanceSpecifier","src":"2502:17:72"},{"baseName":{"id":22872,"name":"MulticallUpgradeable","nameLocations":["2521:20:72"],"nodeType":"IdentifierPath","referencedDeclaration":3013,"src":"2521:20:72"},"id":22873,"nodeType":"InheritanceSpecifier","src":"2521:20:72"}],"canonicalName":"PolicyPool","contractDependencies":[],"contractKind":"contract","documentation":{"id":22863,"nodeType":"StructuredDocumentation","src":"1402:1025:72","text":" @title Ensuro PolicyPool contract\n @notice This is the main contract of the protocol.\n @dev There's a single instance of PolicyPool contract for a given deployment of the protocol.\n It stores the registry of components (eTokens, PremiumsAccounts, and RiskModules). It also tracks the active\n exposure and exposure limit per risk module.\n This is also the contract that receives and sends the underlying asset (currency, typically USDC).\n The currency spending approvals should be done to this protocol for deposits or premium payments.\n This contract implements the ERC721 standard, because it mints and NFT for each policy created. The\n property of the NFT represents the one that will receive the payout.\n The active policies are tracked in _policies as hashes, but for gas optimization we just store the hash\n of the policy struct, and the struct needs to be stored off-chain and provided on every subsequent call.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":25449,"linearizedBaseContracts":[25449,3013,2864,6525,9517,9471,3668,14272,7384,6435,3284,2910,7218,29171],"name":"PolicyPool","nameLocation":"2437:10:72","nodeType":"ContractDefinition","nodes":[{"global":false,"id":22877,"libraryName":{"id":22874,"name":"Policy","nameLocations":["2552:6:72"],"nodeType":"IdentifierPath","referencedDeclaration":22826,"src":"2552:6:72"},"nodeType":"UsingForDirective","src":"2546:35:72","typeName":{"id":22876,"nodeType":"UserDefinedTypeName","pathNode":{"id":22875,"name":"Policy.PolicyData","nameLocations":["2563:6:72","2570:10:72"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"2563:17:72"},"referencedDeclaration":22256,"src":"2563:17:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}}},{"global":false,"id":22881,"libraryName":{"id":22878,"name":"SafeERC20","nameLocations":["2590:9:72"],"nodeType":"IdentifierPath","referencedDeclaration":9354,"src":"2590:9:72"},"nodeType":"UsingForDirective","src":"2584:35:72","typeName":{"id":22880,"nodeType":"UserDefinedTypeName","pathNode":{"id":22879,"name":"IERC20Metadata","nameLocations":["2604:14:72"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"2604:14:72"},"referencedDeclaration":8863,"src":"2604:14:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}}},{"global":false,"id":22884,"libraryName":{"id":22882,"name":"SafeCast","nameLocations":["2628:8:72"],"nodeType":"IdentifierPath","referencedDeclaration":17679,"src":"2628:8:72"},"nodeType":"UsingForDirective","src":"2622:27:72","typeName":{"id":22883,"name":"uint256","nodeType":"ElementaryTypeName","src":"2641:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"constant":true,"id":22887,"mutability":"constant","name":"HOLDER_GAS_LIMIT","nameLocation":"2679:16:72","nodeType":"VariableDeclaration","scope":25449,"src":"2653:51:72","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22885,"name":"uint256","nodeType":"ElementaryTypeName","src":"2653:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"313530303030","id":22886,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2698:6:72","typeDescriptions":{"typeIdentifier":"t_rational_150000_by_1","typeString":"int_const 150000"},"value":"150000"},"visibility":"internal"},{"constant":false,"documentation":{"id":22888,"nodeType":"StructuredDocumentation","src":"2826:61:72","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":22891,"mutability":"immutable","name":"_currency","nameLocation":"2924:9:72","nodeType":"VariableDeclaration","scope":25449,"src":"2890:43:72","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"},"typeName":{"id":22890,"nodeType":"UserDefinedTypeName","pathNode":{"id":22889,"name":"IERC20Metadata","nameLocations":["2890:14:72"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"2890:14:72"},"referencedDeclaration":8863,"src":"2890:14:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"visibility":"internal"},{"constant":false,"documentation":{"id":22892,"nodeType":"StructuredDocumentation","src":"2938:84:72","text":" @notice Address of Ensuro's treasury that receives the protocol fees."},"id":22894,"mutability":"mutable","name":"_treasury","nameLocation":"3042:9:72","nodeType":"VariableDeclaration","scope":25449,"src":"3025:26:72","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22893,"name":"address","nodeType":"ElementaryTypeName","src":"3025:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"canonicalName":"PolicyPool.ComponentStatus","documentation":{"id":22895,"nodeType":"StructuredDocumentation","src":"3086:113:72","text":" @notice Different statuses that a component ({PremiumsAccount}, {EToken} or {RiskModule} can have."},"id":22904,"members":[{"documentation":{"id":22896,"nodeType":"StructuredDocumentation","src":"3229:107:72","text":" @notice inactive status = 0 means the component doesn't exists - All operations rejected"},"id":22897,"name":"inactive","nameLocation":"3341:8:72","nodeType":"EnumValue","src":"3341:8:72"},{"documentation":{"id":22898,"nodeType":"StructuredDocumentation","src":"3355:311:72","text":" @notice active means the component is fully functional, all the component operations are allowed.\n         deposit / withdraw for eTokens\n         newPolicy / resolvePolicy for riskModules\n         policyCreated / policyExpired / policyResolvedWithPayout for premiumsAccount"},"id":22899,"name":"active","nameLocation":"3671:6:72","nodeType":"EnumValue","src":"3671:6:72"},{"documentation":{"id":22900,"nodeType":"StructuredDocumentation","src":"3683:299:72","text":" @notice deprecated means the component is in process of being deactivated. Only some operations are allowed:\n         withdraw for eTokens\n         resolvePolicy / expirePolicy for riskModules\n         policyExpired / policyResolvedWithPayout for premiumsAccount"},"id":22901,"name":"deprecated","nameLocation":"3987:10:72","nodeType":"EnumValue","src":"3987:10:72"},{"documentation":{"id":22902,"nodeType":"StructuredDocumentation","src":"4003:159:72","text":" @notice suspended means the component is temporarily deactivated. All the operations are rejected. Only GUARDIAN\n         can suspend."},"id":22903,"name":"suspended","nameLocation":"4167:9:72","nodeType":"EnumValue","src":"4167:9:72"}],"name":"ComponentStatus","nameLocation":"3207:15:72","nodeType":"EnumDefinition","src":"3202:978:72"},{"canonicalName":"PolicyPool.ComponentKind","documentation":{"id":22905,"nodeType":"StructuredDocumentation","src":"4184:202:72","text":" @notice Enum of the different kind of top level components that can be plugged into the pool. Each one corresponds\n with the {EToken}, {RiskModule} and {PremiumsAccount} respectively."},"id":22910,"members":[{"id":22906,"name":"unknown","nameLocation":"4414:7:72","nodeType":"EnumValue","src":"4414:7:72"},{"id":22907,"name":"eToken","nameLocation":"4427:6:72","nodeType":"EnumValue","src":"4427:6:72"},{"id":22908,"name":"riskModule","nameLocation":"4439:10:72","nodeType":"EnumValue","src":"4439:10:72"},{"id":22909,"name":"premiumsAccount","nameLocation":"4455:15:72","nodeType":"EnumValue","src":"4455:15:72"}],"name":"ComponentKind","nameLocation":"4394:13:72","nodeType":"EnumDefinition","src":"4389:85:72"},{"canonicalName":"PolicyPool.Component","documentation":{"id":22911,"nodeType":"StructuredDocumentation","src":"4478:253:72","text":" @notice Struct to keep the state and type of the components installed\n @dev The `kind` never changes. The `status` initially is `active` and can be changes with\n {PolicyPool-changeComponentStatus} and {PolicyPool-removeComponent}."},"id":22918,"members":[{"constant":false,"id":22914,"mutability":"mutable","name":"status","nameLocation":"4773:6:72","nodeType":"VariableDeclaration","scope":22918,"src":"4757:22:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"},"typeName":{"id":22913,"nodeType":"UserDefinedTypeName","pathNode":{"id":22912,"name":"ComponentStatus","nameLocations":["4757:15:72"],"nodeType":"IdentifierPath","referencedDeclaration":22904,"src":"4757:15:72"},"referencedDeclaration":22904,"src":"4757:15:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"visibility":"internal"},{"constant":false,"id":22917,"mutability":"mutable","name":"kind","nameLocation":"4799:4:72","nodeType":"VariableDeclaration","scope":22918,"src":"4785:18:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},"typeName":{"id":22916,"nodeType":"UserDefinedTypeName","pathNode":{"id":22915,"name":"ComponentKind","nameLocations":["4785:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":22910,"src":"4785:13:72"},"referencedDeclaration":22910,"src":"4785:13:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"visibility":"internal"}],"name":"Component","nameLocation":"4741:9:72","nodeType":"StructDefinition","scope":25449,"src":"4734:74:72","visibility":"public"},{"constant":false,"documentation":{"id":22919,"nodeType":"StructuredDocumentation","src":"4812:121:72","text":" @notice Mapping of installed components (see {EToken}, {RiskModule}, {PremiumsAccount}) in the PolicyPool."},"id":22925,"mutability":"mutable","name":"_components","nameLocation":"4988:11:72","nodeType":"VariableDeclaration","scope":25449,"src":"4936:63:72","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IPolicyPoolComponent_$29188_$_t_struct$_Component_$22918_storage_$","typeString":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component)"},"typeName":{"id":22924,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":22921,"nodeType":"UserDefinedTypeName","pathNode":{"id":22920,"name":"IPolicyPoolComponent","nameLocations":["4944:20:72"],"nodeType":"IdentifierPath","referencedDeclaration":29188,"src":"4944:20:72"},"referencedDeclaration":29188,"src":"4944:20:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"nodeType":"Mapping","src":"4936:42:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IPolicyPoolComponent_$29188_$_t_struct$_Component_$22918_storage_$","typeString":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":22923,"nodeType":"UserDefinedTypeName","pathNode":{"id":22922,"name":"Component","nameLocations":["4968:9:72"],"nodeType":"IdentifierPath","referencedDeclaration":22918,"src":"4968:9:72"},"referencedDeclaration":22918,"src":"4968:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component"}}},"visibility":"internal"},{"constant":false,"documentation":{"id":22926,"nodeType":"StructuredDocumentation","src":"5004:240:72","text":" @notice Mapping that stores the active policies (the policyId is the key).\n @dev It just saves the hash of the policies, the full {Policy-PolicyData} struct has to be sent for each\n operation (hash is used to verify)."},"id":22930,"mutability":"mutable","name":"_policies","nameLocation":"5284:9:72","nodeType":"VariableDeclaration","scope":25449,"src":"5247:46:72","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"},"typeName":{"id":22929,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":22927,"name":"uint256","nodeType":"ElementaryTypeName","src":"5255:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"5247:27:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":22928,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5266:7:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},"visibility":"internal"},{"canonicalName":"PolicyPool.Exposure","id":22935,"members":[{"constant":false,"id":22932,"mutability":"mutable","name":"active","nameLocation":"5328:6:72","nodeType":"VariableDeclaration","scope":22935,"src":"5320:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":22931,"name":"uint128","nodeType":"ElementaryTypeName","src":"5320:7:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":22934,"mutability":"mutable","name":"limit","nameLocation":"5348:5:72","nodeType":"VariableDeclaration","scope":22935,"src":"5340:13:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":22933,"name":"uint128","nodeType":"ElementaryTypeName","src":"5340:7:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"name":"Exposure","nameLocation":"5305:8:72","nodeType":"StructDefinition","scope":25449,"src":"5298:60:72","visibility":"public"},{"constant":false,"documentation":{"id":22936,"nodeType":"StructuredDocumentation","src":"5362:59:72","text":" @notice Base URI for the minted policy NFTs."},"id":22938,"mutability":"mutable","name":"_nftBaseURI","nameLocation":"5440:11:72","nodeType":"VariableDeclaration","scope":25449,"src":"5424:27:72","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":22937,"name":"string","nodeType":"ElementaryTypeName","src":"5424:6:72","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"documentation":{"id":22939,"nodeType":"StructuredDocumentation","src":"5456:84:72","text":" @notice Mapping of current exposures and limits for each risk module."},"id":22945,"mutability":"mutable","name":"_exposureByRm","nameLocation":"5585:13:72","nodeType":"VariableDeclaration","scope":25449,"src":"5543:55:72","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IRiskModule_$29295_$_t_struct$_Exposure_$22935_storage_$","typeString":"mapping(contract IRiskModule => struct PolicyPool.Exposure)"},"typeName":{"id":22944,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":22941,"nodeType":"UserDefinedTypeName","pathNode":{"id":22940,"name":"IRiskModule","nameLocations":["5551:11:72"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"5551:11:72"},"referencedDeclaration":29295,"src":"5551:11:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"nodeType":"Mapping","src":"5543:32:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IRiskModule_$29295_$_t_struct$_Exposure_$22935_storage_$","typeString":"mapping(contract IRiskModule => struct PolicyPool.Exposure)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":22943,"nodeType":"UserDefinedTypeName","pathNode":{"id":22942,"name":"Exposure","nameLocations":["5566:8:72"],"nodeType":"IdentifierPath","referencedDeclaration":22935,"src":"5566:8:72"},"referencedDeclaration":22935,"src":"5566:8:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure"}}},"visibility":"internal"},{"documentation":{"id":22946,"nodeType":"StructuredDocumentation","src":"5603:80:72","text":" @notice Constructor error when address(0) is sent as `currency()`"},"errorSelector":"559a03cd","id":22948,"name":"NoZeroCurrency","nameLocation":"5692:14:72","nodeType":"ErrorDefinition","parameters":{"id":22947,"nodeType":"ParameterList","parameters":[],"src":"5706:2:72"},"src":"5686:23:72"},{"documentation":{"id":22949,"nodeType":"StructuredDocumentation","src":"5713:97:72","text":" @notice Constructor error (or setTreasury) when address(0) is sent as `treasury()`"},"errorSelector":"0f45dd16","id":22951,"name":"NoZeroTreasury","nameLocation":"5819:14:72","nodeType":"ErrorDefinition","parameters":{"id":22950,"nodeType":"ParameterList","parameters":[],"src":"5833:2:72"},"src":"5813:23:72"},{"documentation":{"id":22952,"nodeType":"StructuredDocumentation","src":"5840:82:72","text":" @notice Initialization error when empty name for the ERC721 is sent"},"errorSelector":"000beefb","id":22954,"name":"NoEmptyName","nameLocation":"5931:11:72","nodeType":"ErrorDefinition","parameters":{"id":22953,"nodeType":"ParameterList","parameters":[],"src":"5942:2:72"},"src":"5925:20:72"},{"documentation":{"id":22955,"nodeType":"StructuredDocumentation","src":"5949:84:72","text":" @notice Initialization error when empty symbol for the ERC721 is sent"},"errorSelector":"43b47bcb","id":22957,"name":"NoEmptySymbol","nameLocation":"6042:13:72","nodeType":"ErrorDefinition","parameters":{"id":22956,"nodeType":"ParameterList","parameters":[],"src":"6055:2:72"},"src":"6036:22:72"},{"documentation":{"id":22958,"nodeType":"StructuredDocumentation","src":"6062:71:72","text":"@notice Thrown when trying to change the currency during an upgrade"},"errorSelector":"49483686","id":22960,"name":"UpgradeCannotChangeCurrency","nameLocation":"6142:27:72","nodeType":"ErrorDefinition","parameters":{"id":22959,"nodeType":"ParameterList","parameters":[],"src":"6169:2:72"},"src":"6136:36:72"},{"documentation":{"id":22961,"nodeType":"StructuredDocumentation","src":"6176:100:72","text":" @notice Error when trying to add a component that was already added to the PolicyPool"},"errorSelector":"cf9a96f3","id":22963,"name":"ComponentAlreadyInThePool","nameLocation":"6285:25:72","nodeType":"ErrorDefinition","parameters":{"id":22962,"nodeType":"ParameterList","parameters":[],"src":"6310:2:72"},"src":"6279:34:72"},{"documentation":{"id":22964,"nodeType":"StructuredDocumentation","src":"6317:116:72","text":" @notice Error when trying to add a component that isn't linked to this pool (`.policyPool() != this`)"},"errorSelector":"1fbdc486","id":22966,"name":"ComponentNotLinkedToThisPool","nameLocation":"6442:28:72","nodeType":"ErrorDefinition","parameters":{"id":22965,"nodeType":"ParameterList","parameters":[],"src":"6470:2:72"},"src":"6436:37:72"},{"documentation":{"id":22967,"nodeType":"StructuredDocumentation","src":"6477:306:72","text":" @notice Raised when a component is not of the right kind\n @dev It might happen if a component declared as ComponentKind.eToken doesn't support the IEToken interface (or\n similar) or when in a given operation we expect a component to be a risk module and the stored kind is different."},"errorSelector":"502c9a5f","id":22975,"name":"ComponentNotTheRightKind","nameLocation":"6792:24:72","nodeType":"ErrorDefinition","parameters":{"id":22974,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22970,"mutability":"mutable","name":"component","nameLocation":"6838:9:72","nodeType":"VariableDeclaration","scope":22975,"src":"6817:30:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"},"typeName":{"id":22969,"nodeType":"UserDefinedTypeName","pathNode":{"id":22968,"name":"IPolicyPoolComponent","nameLocations":["6817:20:72"],"nodeType":"IdentifierPath","referencedDeclaration":29188,"src":"6817:20:72"},"referencedDeclaration":29188,"src":"6817:20:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"visibility":"internal"},{"constant":false,"id":22973,"mutability":"mutable","name":"expectedKind","nameLocation":"6863:12:72","nodeType":"VariableDeclaration","scope":22975,"src":"6849:26:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},"typeName":{"id":22972,"nodeType":"UserDefinedTypeName","pathNode":{"id":22971,"name":"ComponentKind","nameLocations":["6849:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":22910,"src":"6849:13:72"},"referencedDeclaration":22910,"src":"6849:13:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"visibility":"internal"}],"src":"6816:60:72"},"src":"6786:91:72"},{"documentation":{"id":22976,"nodeType":"StructuredDocumentation","src":"6881:120:72","text":" @notice Error when a component is not deprecated for the operation (see `removeComponent`), when it must."},"errorSelector":"b9256472","id":22978,"name":"ComponentNotDeprecated","nameLocation":"7010:22:72","nodeType":"ErrorDefinition","parameters":{"id":22977,"nodeType":"ParameterList","parameters":[],"src":"7032:2:72"},"src":"7004:31:72"},{"documentation":{"id":22979,"nodeType":"StructuredDocumentation","src":"7039:313:72","text":" @notice Error when trying to remove a component that is still in use.\n @dev The \"in use\" definition can change from one component to the other. For eToken in use means\n `totalSupply() != 0`. For PremiumsAccount means `purePremiums() != 0`. For RiskModule means\n `activeExposure() != 0`."},"errorSelector":"1d0ec0ab","id":22986,"name":"ComponentInUseCannotRemove","nameLocation":"7361:26:72","nodeType":"ErrorDefinition","parameters":{"id":22985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22982,"mutability":"mutable","name":"kind","nameLocation":"7402:4:72","nodeType":"VariableDeclaration","scope":22986,"src":"7388:18:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},"typeName":{"id":22981,"nodeType":"UserDefinedTypeName","pathNode":{"id":22980,"name":"ComponentKind","nameLocations":["7388:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":22910,"src":"7388:13:72"},"referencedDeclaration":22910,"src":"7388:13:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"visibility":"internal"},{"constant":false,"id":22984,"mutability":"mutable","name":"amount","nameLocation":"7416:6:72","nodeType":"VariableDeclaration","scope":22986,"src":"7408:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22983,"name":"uint256","nodeType":"ElementaryTypeName","src":"7408:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7387:36:72"},"src":"7355:69:72"},{"documentation":{"id":22987,"nodeType":"StructuredDocumentation","src":"7428:94:72","text":" @notice Error when a component is not found in the pool (status = 0 = inactive)"},"errorSelector":"7d918563","id":22989,"name":"ComponentNotFound","nameLocation":"7531:17:72","nodeType":"ErrorDefinition","parameters":{"id":22988,"nodeType":"ParameterList","parameters":[],"src":"7548:2:72"},"src":"7525:26:72"},{"documentation":{"id":22990,"nodeType":"StructuredDocumentation","src":"7555:106:72","text":" @notice Error when a component is not found in the pool or is not active (status != active)"},"errorSelector":"0422f25f","id":22992,"name":"ComponentNotFoundOrNotActive","nameLocation":"7670:28:72","nodeType":"ErrorDefinition","parameters":{"id":22991,"nodeType":"ParameterList","parameters":[],"src":"7698:2:72"},"src":"7664:37:72"},{"documentation":{"id":22993,"nodeType":"StructuredDocumentation","src":"7705:132:72","text":"@notice Thrown when attempting to set a component status to `inactive` via changeComponentStatus, use removeComponent() instead."},"errorSelector":"32b409a1","id":22995,"name":"InvalidComponentStatus","nameLocation":"7846:22:72","nodeType":"ErrorDefinition","parameters":{"id":22994,"nodeType":"ParameterList","parameters":[],"src":"7868:2:72"},"src":"7840:31:72"},{"documentation":{"id":22996,"nodeType":"StructuredDocumentation","src":"7875:242:72","text":" @notice Error when a component is not active or deprecated. Happens on some operations like eToken withdrawals or\n policy resolutions that accept the component might be active or deprecated and isn't on any of those states."},"errorSelector":"d08ef1ff","id":22998,"name":"ComponentMustBeActiveOrDeprecated","nameLocation":"8126:33:72","nodeType":"ErrorDefinition","parameters":{"id":22997,"nodeType":"ParameterList","parameters":[],"src":"8159:2:72"},"src":"8120:42:72"},{"documentation":{"id":22999,"nodeType":"StructuredDocumentation","src":"8166:140:72","text":" @notice Error when a method intented to be called by riskModule (and by policy's risk module) is called by\n someone else."},"errorSelector":"4ace04f9","id":23001,"name":"OnlyRiskModuleAllowed","nameLocation":"8315:21:72","nodeType":"ErrorDefinition","parameters":{"id":23000,"nodeType":"ParameterList","parameters":[],"src":"8336:2:72"},"src":"8309:30:72"},{"documentation":{"id":23002,"nodeType":"StructuredDocumentation","src":"8343:158:72","text":" @notice Raised when IPolicyHolder doesn't return the expected selector answer when notified of policy payout,\n replacement or cancellation."},"errorSelector":"81784a51","id":23006,"name":"InvalidNotificationResponse","nameLocation":"8510:27:72","nodeType":"ErrorDefinition","parameters":{"id":23005,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23004,"mutability":"mutable","name":"response","nameLocation":"8545:8:72","nodeType":"VariableDeclaration","scope":23006,"src":"8538:15:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":23003,"name":"bytes4","nodeType":"ElementaryTypeName","src":"8538:6:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"8537:17:72"},"src":"8504:51:72"},{"documentation":{"id":23007,"nodeType":"StructuredDocumentation","src":"8559:84:72","text":"@notice Thrown when attempting to create a policy with an ID that already exists"},"errorSelector":"15e46fbb","id":23011,"name":"PolicyAlreadyExists","nameLocation":"8652:19:72","nodeType":"ErrorDefinition","parameters":{"id":23010,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23009,"mutability":"mutable","name":"policyId","nameLocation":"8680:8:72","nodeType":"VariableDeclaration","scope":23011,"src":"8672:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23008,"name":"uint256","nodeType":"ElementaryTypeName","src":"8672:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8671:18:72"},"src":"8646:44:72"},{"documentation":{"id":23012,"nodeType":"StructuredDocumentation","src":"8694:117:72","text":"@notice Thrown when attempting to process an action (other than expiration) on a policy after its expiration date"},"errorSelector":"0844aa5e","id":23016,"name":"PolicyAlreadyExpired","nameLocation":"8820:20:72","nodeType":"ErrorDefinition","parameters":{"id":23015,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23014,"mutability":"mutable","name":"policyId","nameLocation":"8849:8:72","nodeType":"VariableDeclaration","scope":23016,"src":"8841:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23013,"name":"uint256","nodeType":"ElementaryTypeName","src":"8841:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8840:18:72"},"src":"8814:45:72"},{"documentation":{"id":23017,"nodeType":"StructuredDocumentation","src":"8863:112:72","text":"@notice Thrown when attempting to execute an action on a policy that does not exist (or was already expired)"},"errorSelector":"43bebf4a","id":23021,"name":"PolicyNotFound","nameLocation":"8984:14:72","nodeType":"ErrorDefinition","parameters":{"id":23020,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23019,"mutability":"mutable","name":"policyId","nameLocation":"9007:8:72","nodeType":"VariableDeclaration","scope":23021,"src":"8999:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23018,"name":"uint256","nodeType":"ElementaryTypeName","src":"8999:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8998:18:72"},"src":"8978:39:72"},{"documentation":{"id":23022,"nodeType":"StructuredDocumentation","src":"9021:315:72","text":" @notice Thrown when attempting to expire a policy, but the policy is still active (policy.expiration >\n block.timestamp)\n @param policyId The ID of the policy that is not yet expired\n @param expiration The timestamp when the policy expires\n @param now The current block timestamp"},"errorSelector":"6257fbae","id":23030,"name":"PolicyNotExpired","nameLocation":"9345:16:72","nodeType":"ErrorDefinition","parameters":{"id":23029,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23024,"mutability":"mutable","name":"policyId","nameLocation":"9370:8:72","nodeType":"VariableDeclaration","scope":23030,"src":"9362:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23023,"name":"uint256","nodeType":"ElementaryTypeName","src":"9362:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23026,"mutability":"mutable","name":"expiration","nameLocation":"9387:10:72","nodeType":"VariableDeclaration","scope":23030,"src":"9380:17:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":23025,"name":"uint40","nodeType":"ElementaryTypeName","src":"9380:6:72","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":23028,"mutability":"mutable","name":"now","nameLocation":"9407:3:72","nodeType":"VariableDeclaration","scope":23030,"src":"9399:11:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23027,"name":"uint256","nodeType":"ElementaryTypeName","src":"9399:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9361:50:72"},"src":"9339:73:72"},{"documentation":{"id":23031,"nodeType":"StructuredDocumentation","src":"9416:392:72","text":" @notice Thrown when attempting to replace a policy with an invalid replacement\n @dev This could occur if the policies have a different start, or if any of the premium components of the\n      newPolicy are lower than the same component of the original policy.\n @param oldPolicy The original policy data\n @param newPolicy The proposed replacement policy data"},"errorSelector":"7fd52140","id":23039,"name":"InvalidPolicyReplacement","nameLocation":"9817:24:72","nodeType":"ErrorDefinition","parameters":{"id":23038,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23034,"mutability":"mutable","name":"oldPolicy","nameLocation":"9860:9:72","nodeType":"VariableDeclaration","scope":23039,"src":"9842:27:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":23033,"nodeType":"UserDefinedTypeName","pathNode":{"id":23032,"name":"Policy.PolicyData","nameLocations":["9842:6:72","9849:10:72"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"9842:17:72"},"referencedDeclaration":22256,"src":"9842:17:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":23037,"mutability":"mutable","name":"newPolicy","nameLocation":"9889:9:72","nodeType":"VariableDeclaration","scope":23039,"src":"9871:27:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":23036,"nodeType":"UserDefinedTypeName","pathNode":{"id":23035,"name":"Policy.PolicyData","nameLocations":["9871:6:72","9878:10:72"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"9871:17:72"},"referencedDeclaration":22256,"src":"9871:17:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"9841:58:72"},"src":"9811:89:72"},{"documentation":{"id":23040,"nodeType":"StructuredDocumentation","src":"9904:441:72","text":" @notice Thrown when attempting to cancel a policy with invalid refunds\n @dev The refunds amounts can never exceed the original premium components.\n @param policyToCancel The data of the policy being cancelled\n @param purePremiumRefund The amount to refund from pure premium charged\n @param jrCocRefund The amount to refund from jrCoc charged\n @param srCocRefund The amount to refund from srCoc charged"},"errorSelector":"a02db783","id":23051,"name":"InvalidPolicyCancellation","nameLocation":"10354:25:72","nodeType":"ErrorDefinition","parameters":{"id":23050,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23043,"mutability":"mutable","name":"policyToCancel","nameLocation":"10403:14:72","nodeType":"VariableDeclaration","scope":23051,"src":"10385:32:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":23042,"nodeType":"UserDefinedTypeName","pathNode":{"id":23041,"name":"Policy.PolicyData","nameLocations":["10385:6:72","10392:10:72"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"10385:17:72"},"referencedDeclaration":22256,"src":"10385:17:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":23045,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"10431:17:72","nodeType":"VariableDeclaration","scope":23051,"src":"10423:25:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23044,"name":"uint256","nodeType":"ElementaryTypeName","src":"10423:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23047,"mutability":"mutable","name":"jrCocRefund","nameLocation":"10462:11:72","nodeType":"VariableDeclaration","scope":23051,"src":"10454:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23046,"name":"uint256","nodeType":"ElementaryTypeName","src":"10454:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23049,"mutability":"mutable","name":"srCocRefund","nameLocation":"10487:11:72","nodeType":"VariableDeclaration","scope":23051,"src":"10479:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23048,"name":"uint256","nodeType":"ElementaryTypeName","src":"10479:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10379:123:72"},"src":"10348:155:72"},{"documentation":{"id":23052,"nodeType":"StructuredDocumentation","src":"10507:84:72","text":"@notice Thrown when a requested payout exceeds the policy's maximum payout limit"},"errorSelector":"17d3b4f9","id":23058,"name":"PayoutExceedsLimit","nameLocation":"10600:18:72","nodeType":"ErrorDefinition","parameters":{"id":23057,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23054,"mutability":"mutable","name":"payout","nameLocation":"10627:6:72","nodeType":"VariableDeclaration","scope":23058,"src":"10619:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23053,"name":"uint256","nodeType":"ElementaryTypeName","src":"10619:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23056,"mutability":"mutable","name":"policyPayout","nameLocation":"10643:12:72","nodeType":"VariableDeclaration","scope":23058,"src":"10635:20:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23055,"name":"uint256","nodeType":"ElementaryTypeName","src":"10635:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10618:38:72"},"src":"10594:63:72"},{"documentation":{"id":23059,"nodeType":"StructuredDocumentation","src":"10661:96:72","text":"@notice Thrown when an action would cause the active exposure to exceed the configured limit"},"errorSelector":"67036898","id":23065,"name":"ExposureLimitExceeded","nameLocation":"10766:21:72","nodeType":"ErrorDefinition","parameters":{"id":23064,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23061,"mutability":"mutable","name":"activeExposure","nameLocation":"10796:14:72","nodeType":"VariableDeclaration","scope":23065,"src":"10788:22:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":23060,"name":"uint128","nodeType":"ElementaryTypeName","src":"10788:7:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":23063,"mutability":"mutable","name":"exposureLimit","nameLocation":"10820:13:72","nodeType":"VariableDeclaration","scope":23065,"src":"10812:21:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":23062,"name":"uint128","nodeType":"ElementaryTypeName","src":"10812:7:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"10787:47:72"},"src":"10760:75:72"},{"documentation":{"id":23066,"nodeType":"StructuredDocumentation","src":"10839:111:72","text":"@notice Thrown when an invalid receiver address (address(0)) is provided as received of deposit or withdraw"},"errorSelector":"9cfea583","id":23070,"name":"InvalidReceiver","nameLocation":"10959:15:72","nodeType":"ErrorDefinition","parameters":{"id":23069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23068,"mutability":"mutable","name":"receiver","nameLocation":"10983:8:72","nodeType":"VariableDeclaration","scope":23070,"src":"10975:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23067,"name":"address","nodeType":"ElementaryTypeName","src":"10975:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10974:18:72"},"src":"10953:40:72"},{"anonymous":false,"documentation":{"id":23071,"nodeType":"StructuredDocumentation","src":"10997:239:72","text":" @notice Event emitted when the treasury (who receives ensuroCommission) changes\n @param oldTreasury The address of the treasury before the change\n @param newTreasury  The address of the treasury after the change"},"eventSelector":"8c3aa5f43a388513435861bf27dfad7829cd248696fed367c62d441f62954496","id":23077,"name":"TreasuryChanged","nameLocation":"11245:15:72","nodeType":"EventDefinition","parameters":{"id":23076,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23073,"indexed":false,"mutability":"mutable","name":"oldTreasury","nameLocation":"11269:11:72","nodeType":"VariableDeclaration","scope":23077,"src":"11261:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23072,"name":"address","nodeType":"ElementaryTypeName","src":"11261:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23075,"indexed":false,"mutability":"mutable","name":"newTreasury","nameLocation":"11290:11:72","nodeType":"VariableDeclaration","scope":23077,"src":"11282:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23074,"name":"address","nodeType":"ElementaryTypeName","src":"11282:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11260:42:72"},"src":"11239:64:72"},{"anonymous":false,"documentation":{"id":23078,"nodeType":"StructuredDocumentation","src":"11307:189:72","text":" @notice Event emitted when the baseURI (for policy NFTs) changes\n @param oldBaseURI The baseURI before the change\n @param newBaseURI The baseURI after the change"},"eventSelector":"c41b7cb64e5be01af4afc2641afc861432136270f4206b7773f229b658b96699","id":23084,"name":"BaseURIChanged","nameLocation":"11505:14:72","nodeType":"EventDefinition","parameters":{"id":23083,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23080,"indexed":false,"mutability":"mutable","name":"oldBaseURI","nameLocation":"11527:10:72","nodeType":"VariableDeclaration","scope":23084,"src":"11520:17:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":23079,"name":"string","nodeType":"ElementaryTypeName","src":"11520:6:72","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":23082,"indexed":false,"mutability":"mutable","name":"newBaseURI","nameLocation":"11546:10:72","nodeType":"VariableDeclaration","scope":23084,"src":"11539:17:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":23081,"name":"string","nodeType":"ElementaryTypeName","src":"11539:6:72","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"11519:38:72"},"src":"11499:59:72"},{"anonymous":false,"documentation":{"id":23085,"nodeType":"StructuredDocumentation","src":"11562:390:72","text":" @notice Event emitted when a new component added/removed to the pool or the status changes.\n @param component The address of the component, it can be an {EToken}, {RiskModule} or {PremiumsAccount}\n @param kind Value indicating the kind of component. See {ComponentKind}\n @param newStatus The status of the component after the operation. See {ComponentStatus}"},"eventSelector":"fe4c6998a06520b63340a48710b374432cb395da90e4e5360e1ec7aeefebecef","id":23096,"name":"ComponentStatusChanged","nameLocation":"11961:22:72","nodeType":"EventDefinition","parameters":{"id":23095,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23088,"indexed":true,"mutability":"mutable","name":"component","nameLocation":"12013:9:72","nodeType":"VariableDeclaration","scope":23096,"src":"11984:38:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"},"typeName":{"id":23087,"nodeType":"UserDefinedTypeName","pathNode":{"id":23086,"name":"IPolicyPoolComponent","nameLocations":["11984:20:72"],"nodeType":"IdentifierPath","referencedDeclaration":29188,"src":"11984:20:72"},"referencedDeclaration":29188,"src":"11984:20:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"visibility":"internal"},{"constant":false,"id":23091,"indexed":false,"mutability":"mutable","name":"kind","nameLocation":"12038:4:72","nodeType":"VariableDeclaration","scope":23096,"src":"12024:18:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},"typeName":{"id":23090,"nodeType":"UserDefinedTypeName","pathNode":{"id":23089,"name":"ComponentKind","nameLocations":["12024:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":22910,"src":"12024:13:72"},"referencedDeclaration":22910,"src":"12024:13:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"visibility":"internal"},{"constant":false,"id":23094,"indexed":false,"mutability":"mutable","name":"newStatus","nameLocation":"12060:9:72","nodeType":"VariableDeclaration","scope":23096,"src":"12044:25:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"},"typeName":{"id":23093,"nodeType":"UserDefinedTypeName","pathNode":{"id":23092,"name":"ComponentStatus","nameLocations":["12044:15:72"],"nodeType":"IdentifierPath","referencedDeclaration":22904,"src":"12044:15:72"},"referencedDeclaration":22904,"src":"12044:15:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"visibility":"internal"}],"src":"11983:87:72"},"src":"11955:116:72"},{"anonymous":false,"documentation":{"id":23097,"nodeType":"StructuredDocumentation","src":"12075:256:72","text":" @notice Event emitted when a IPolicyHolder reverts on the expiration notification. The operation doesn't reverts\n @param policyId The id of the policy being expired\n @param holder The address of the contract that owns the policy"},"eventSelector":"6ce8016f81523f240956bca9a698e643d09e84e7d0e931470b1016baf1027bd0","id":23104,"name":"ExpirationNotificationFailed","nameLocation":"12340:28:72","nodeType":"EventDefinition","parameters":{"id":23103,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23099,"indexed":true,"mutability":"mutable","name":"policyId","nameLocation":"12385:8:72","nodeType":"VariableDeclaration","scope":23104,"src":"12369:24:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23098,"name":"uint256","nodeType":"ElementaryTypeName","src":"12369:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23102,"indexed":false,"mutability":"mutable","name":"holder","nameLocation":"12409:6:72","nodeType":"VariableDeclaration","scope":23104,"src":"12395:20:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyHolder_$28982","typeString":"contract IPolicyHolder"},"typeName":{"id":23101,"nodeType":"UserDefinedTypeName","pathNode":{"id":23100,"name":"IPolicyHolder","nameLocations":["12395:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":28982,"src":"12395:13:72"},"referencedDeclaration":28982,"src":"12395:13:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyHolder_$28982","typeString":"contract IPolicyHolder"}},"visibility":"internal"}],"src":"12368:48:72"},"src":"12334:83:72"},{"anonymous":false,"documentation":{"id":23105,"nodeType":"StructuredDocumentation","src":"12421:274:72","text":" @notice Event emitted when the exposure limit for a given risk module is changed\n @param riskModule The risk module whose limit will be changed\n @param oldLimit Exposure limit before the change\n @param newLimit Exposure limit after the change"},"eventSelector":"7e1092696182a6d6922c9583db468951527f21f67f9f2f4911ed3f7bbf02b330","id":23114,"name":"ExposureLimitChanged","nameLocation":"12704:20:72","nodeType":"EventDefinition","parameters":{"id":23113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23108,"indexed":true,"mutability":"mutable","name":"riskModule","nameLocation":"12745:10:72","nodeType":"VariableDeclaration","scope":23114,"src":"12725:30:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},"typeName":{"id":23107,"nodeType":"UserDefinedTypeName","pathNode":{"id":23106,"name":"IRiskModule","nameLocations":["12725:11:72"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"12725:11:72"},"referencedDeclaration":29295,"src":"12725:11:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"visibility":"internal"},{"constant":false,"id":23110,"indexed":false,"mutability":"mutable","name":"oldLimit","nameLocation":"12765:8:72","nodeType":"VariableDeclaration","scope":23114,"src":"12757:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":23109,"name":"uint128","nodeType":"ElementaryTypeName","src":"12757:7:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":23112,"indexed":false,"mutability":"mutable","name":"newLimit","nameLocation":"12783:8:72","nodeType":"VariableDeclaration","scope":23114,"src":"12775:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":23111,"name":"uint128","nodeType":"ElementaryTypeName","src":"12775:7:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"12724:68:72"},"src":"12698:95:72"},{"anonymous":false,"documentation":{"id":23115,"nodeType":"StructuredDocumentation","src":"12797:388:72","text":" @notice Event emitted for every deposit into an eToken\n @param eToken The eToken receiving the funds\n @param sender The sender of the funds (the user calling `deposit` or `depositWithPermit`)\n @param owner The user that will receive the minted eTokens\n @param amount Amount in `currency()` paid for the eTokens (equal to the amount of eTokens received)"},"eventSelector":"7cfff908a4b583f36430b25d75964c458d8ede8a99bd61be750e97ee1b2f3a96","id":23126,"name":"Deposit","nameLocation":"13194:7:72","nodeType":"EventDefinition","parameters":{"id":23125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23118,"indexed":true,"mutability":"mutable","name":"eToken","nameLocation":"13218:6:72","nodeType":"VariableDeclaration","scope":23126,"src":"13202:22:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":23117,"nodeType":"UserDefinedTypeName","pathNode":{"id":23116,"name":"IEToken","nameLocations":["13202:7:72"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"13202:7:72"},"referencedDeclaration":28869,"src":"13202:7:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":23120,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"13242:6:72","nodeType":"VariableDeclaration","scope":23126,"src":"13226:22:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23119,"name":"address","nodeType":"ElementaryTypeName","src":"13226:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23122,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"13266:5:72","nodeType":"VariableDeclaration","scope":23126,"src":"13250:21:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23121,"name":"address","nodeType":"ElementaryTypeName","src":"13250:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23124,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"13281:6:72","nodeType":"VariableDeclaration","scope":23126,"src":"13273:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23123,"name":"uint256","nodeType":"ElementaryTypeName","src":"13273:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13201:87:72"},"src":"13188:101:72"},{"anonymous":false,"documentation":{"id":23127,"nodeType":"StructuredDocumentation","src":"13293:459:72","text":" @notice Event emitted for every withdrawal from an eToken\n @param eToken The eToken where the withdrawal will be done\n @param sender The user calling the withdraw method. Must be the owner or have spending approval from it.\n @param receiver The user that receives the resulting funds (`currency()`)\n @param owner The owner of the burned eTokens\n @param amount Amount in `currency()` that will be received by `receiver`."},"eventSelector":"e826ecb5c03d4897f8ab426ee94064e06179dff39cd9fdd0776904cd935c95d8","id":23140,"name":"Withdraw","nameLocation":"13761:8:72","nodeType":"EventDefinition","parameters":{"id":23139,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23130,"indexed":true,"mutability":"mutable","name":"eToken","nameLocation":"13791:6:72","nodeType":"VariableDeclaration","scope":23140,"src":"13775:22:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":23129,"nodeType":"UserDefinedTypeName","pathNode":{"id":23128,"name":"IEToken","nameLocations":["13775:7:72"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"13775:7:72"},"referencedDeclaration":28869,"src":"13775:7:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":23132,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"13819:6:72","nodeType":"VariableDeclaration","scope":23140,"src":"13803:22:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23131,"name":"address","nodeType":"ElementaryTypeName","src":"13803:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23134,"indexed":true,"mutability":"mutable","name":"receiver","nameLocation":"13847:8:72","nodeType":"VariableDeclaration","scope":23140,"src":"13831:24:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23133,"name":"address","nodeType":"ElementaryTypeName","src":"13831:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23136,"indexed":false,"mutability":"mutable","name":"owner","nameLocation":"13869:5:72","nodeType":"VariableDeclaration","scope":23140,"src":"13861:13:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23135,"name":"address","nodeType":"ElementaryTypeName","src":"13861:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23138,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"13888:6:72","nodeType":"VariableDeclaration","scope":23140,"src":"13880:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23137,"name":"uint256","nodeType":"ElementaryTypeName","src":"13880:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13769:129:72"},"src":"13755:144:72"},{"body":{"id":23167,"nodeType":"Block","src":"14188:127:72","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":23149,"name":"currency_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23144,"src":"14206:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}],"id":23148,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14198:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23147,"name":"address","nodeType":"ElementaryTypeName","src":"14198:7:72","typeDescriptions":{}}},"id":23150,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14198:18:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":23153,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14228:1:72","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":23152,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14220:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23151,"name":"address","nodeType":"ElementaryTypeName","src":"14220:7:72","typeDescriptions":{}}},"id":23154,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14220:10:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"14198:32:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23159,"nodeType":"IfStatement","src":"14194:61:72","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":23156,"name":"NoZeroCurrency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22948,"src":"14239:14:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23157,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14239:16:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23158,"nodeType":"RevertStatement","src":"14232:23:72"}},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":23160,"name":"_disableInitializers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7172,"src":"14261:20:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":23161,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14261:22:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23162,"nodeType":"ExpressionStatement","src":"14261:22:72"},{"expression":{"id":23165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":23163,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22891,"src":"14289:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":23164,"name":"currency_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23144,"src":"14301:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"src":"14289:21:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":23166,"nodeType":"ExpressionStatement","src":"14289:21:72"}]},"documentation":{"id":23141,"nodeType":"StructuredDocumentation","src":"14099:48:72","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":23168,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":23145,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23144,"mutability":"mutable","name":"currency_","nameLocation":"14177:9:72","nodeType":"VariableDeclaration","scope":23168,"src":"14162:24:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"},"typeName":{"id":23143,"nodeType":"UserDefinedTypeName","pathNode":{"id":23142,"name":"IERC20Metadata","nameLocations":["14162:14:72"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"14162:14:72"},"referencedDeclaration":8863,"src":"14162:14:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"src":"14161:26:72"},"returnParameters":{"id":23146,"nodeType":"ParameterList","parameters":[],"src":"14188:0:72"},"scope":25449,"src":"14150:165:72","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":23214,"nodeType":"Block","src":"14661:223:72","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":23182,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23171,"src":"14677:5:72","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":23181,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14671:5:72","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":23180,"name":"bytes","nodeType":"ElementaryTypeName","src":"14671:5:72","typeDescriptions":{}}},"id":23183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14671:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":23184,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14684:6:72","memberName":"length","nodeType":"MemberAccess","src":"14671:19:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":23185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14694:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14671:24:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23190,"nodeType":"IfStatement","src":"14667:50:72","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":23187,"name":"NoEmptyName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22954,"src":"14704:11:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14704:13:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23189,"nodeType":"RevertStatement","src":"14697:20:72"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":23193,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23173,"src":"14733:7:72","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":23192,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14727:5:72","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":23191,"name":"bytes","nodeType":"ElementaryTypeName","src":"14727:5:72","typeDescriptions":{}}},"id":23194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14727:14:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":23195,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14742:6:72","memberName":"length","nodeType":"MemberAccess","src":"14727:21:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":23196,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14752:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14727:26:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23201,"nodeType":"IfStatement","src":"14723:54:72","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":23198,"name":"NoEmptySymbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22957,"src":"14762:13:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23199,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14762:15:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23200,"nodeType":"RevertStatement","src":"14755:22:72"}},{"expression":{"arguments":[{"id":23203,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23171,"src":"14797:5:72","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":23204,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23173,"src":"14804:7:72","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"}],"id":23202,"name":"__ERC721_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1871,"src":"14783:13:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":23205,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14783:29:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23206,"nodeType":"ExpressionStatement","src":"14783:29:72"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":23207,"name":"__Pausable_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3188,"src":"14818:15:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":23208,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14818:17:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23209,"nodeType":"ExpressionStatement","src":"14818:17:72"},{"expression":{"arguments":[{"id":23211,"name":"treasury_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23175,"src":"14869:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23210,"name":"__PolicyPool_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23249,"src":"14841:27:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":23212,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14841:38:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23213,"nodeType":"ExpressionStatement","src":"14841:38:72"}]},"documentation":{"id":23169,"nodeType":"StructuredDocumentation","src":"14319:237:72","text":" @dev Initializes a Policy Pool\n @param name_ The name of the ERC721 token.\n @param symbol_ The symbol of the ERC721 token.\n @param treasury_ The address of the treasury that will receive the protocol fees."},"functionSelector":"077f224a","id":23215,"implemented":true,"kind":"function","modifiers":[{"id":23178,"kind":"modifierInvocation","modifierName":{"id":23177,"name":"initializer","nameLocations":["14649:11:72"],"nodeType":"IdentifierPath","referencedDeclaration":7058,"src":"14649:11:72"},"nodeType":"ModifierInvocation","src":"14649:11:72"}],"name":"initialize","nameLocation":"14568:10:72","nodeType":"FunctionDefinition","parameters":{"id":23176,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23171,"mutability":"mutable","name":"name_","nameLocation":"14593:5:72","nodeType":"VariableDeclaration","scope":23215,"src":"14579:19:72","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":23170,"name":"string","nodeType":"ElementaryTypeName","src":"14579:6:72","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":23173,"mutability":"mutable","name":"symbol_","nameLocation":"14614:7:72","nodeType":"VariableDeclaration","scope":23215,"src":"14600:21:72","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":23172,"name":"string","nodeType":"ElementaryTypeName","src":"14600:6:72","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":23175,"mutability":"mutable","name":"treasury_","nameLocation":"14631:9:72","nodeType":"VariableDeclaration","scope":23215,"src":"14623:17:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23174,"name":"address","nodeType":"ElementaryTypeName","src":"14623:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14578:63:72"},"returnParameters":{"id":23179,"nodeType":"ParameterList","parameters":[],"src":"14661:0:72"},"scope":25449,"src":"14559:325:72","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[1930],"body":{"id":23236,"nodeType":"Block","src":"15005:102:72","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":23226,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23218,"src":"15042:11:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":23224,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"15018:5:72","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_PolicyPool_$25449_$","typeString":"type(contract super PolicyPool)"}},"id":23225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15024:17:72","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":1930,"src":"15018:23:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":23227,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15018:36:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":23233,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23228,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23218,"src":"15058:11:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":23230,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"15078:11:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPool_$29171_$","typeString":"type(contract IPolicyPool)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyPool_$29171_$","typeString":"type(contract IPolicyPool)"}],"id":23229,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"15073:4:72","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":23231,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15073:17:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyPool_$29171","typeString":"type(contract IPolicyPool)"}},"id":23232,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15091:11:72","memberName":"interfaceId","nodeType":"MemberAccess","src":"15073:29:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"15058:44:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15018:84:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":23223,"id":23235,"nodeType":"Return","src":"15011:91:72"}]},"documentation":{"id":23216,"nodeType":"StructuredDocumentation","src":"14888:23:72","text":"@inheritdoc IERC165"},"functionSelector":"01ffc9a7","id":23237,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"14923:17:72","nodeType":"FunctionDefinition","overrides":{"id":23220,"nodeType":"OverrideSpecifier","overrides":[],"src":"14981:8:72"},"parameters":{"id":23219,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23218,"mutability":"mutable","name":"interfaceId","nameLocation":"14948:11:72","nodeType":"VariableDeclaration","scope":23237,"src":"14941:18:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":23217,"name":"bytes4","nodeType":"ElementaryTypeName","src":"14941:6:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"14940:20:72"},"returnParameters":{"id":23223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23222,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23237,"src":"14999:4:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":23221,"name":"bool","nodeType":"ElementaryTypeName","src":"14999:4:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"14998:6:72"},"scope":25449,"src":"14914:193:72","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":23248,"nodeType":"Block","src":"15244:34:72","statements":[{"expression":{"arguments":[{"id":23245,"name":"treasury_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23239,"src":"15263:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23244,"name":"_setTreasury","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23324,"src":"15250:12:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":23246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15250:23:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23247,"nodeType":"ExpressionStatement","src":"15250:23:72"}]},"id":23249,"implemented":true,"kind":"function","modifiers":[{"id":23242,"kind":"modifierInvocation","modifierName":{"id":23241,"name":"onlyInitializing","nameLocations":["15227:16:72"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"15227:16:72"},"nodeType":"ModifierInvocation","src":"15227:16:72"}],"name":"__PolicyPool_init_unchained","nameLocation":"15171:27:72","nodeType":"FunctionDefinition","parameters":{"id":23240,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23239,"mutability":"mutable","name":"treasury_","nameLocation":"15207:9:72","nodeType":"VariableDeclaration","scope":23249,"src":"15199:17:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23238,"name":"address","nodeType":"ElementaryTypeName","src":"15199:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15198:19:72"},"returnParameters":{"id":23243,"nodeType":"ParameterList","parameters":[],"src":"15244:0:72"},"scope":25449,"src":"15162:116:72","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[7338],"body":{"id":23271,"nodeType":"Block","src":"15349:132:72","statements":[{"assignments":[23257],"declarations":[{"constant":false,"id":23257,"mutability":"mutable","name":"newPool","nameLocation":"15367:7:72","nodeType":"VariableDeclaration","scope":23271,"src":"15355:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"typeName":{"id":23256,"nodeType":"UserDefinedTypeName","pathNode":{"id":23255,"name":"IPolicyPool","nameLocations":["15355:11:72"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"15355:11:72"},"referencedDeclaration":29171,"src":"15355:11:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"id":23261,"initialValue":{"arguments":[{"id":23259,"name":"newImpl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23251,"src":"15389:7:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23258,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"15377:11:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPool_$29171_$","typeString":"type(contract IPolicyPool)"}},"id":23260,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15377:20:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"nodeType":"VariableDeclarationStatement","src":"15355:42:72"},{"condition":{"commonType":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"},"id":23266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":23262,"name":"newPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23257,"src":"15407:7:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"id":23263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15415:8:72","memberName":"currency","nodeType":"MemberAccess","referencedDeclaration":29043,"src":"15407:16:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IERC20Metadata_$8863_$","typeString":"function () view external returns (contract IERC20Metadata)"}},"id":23264,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15407:18:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":23265,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22891,"src":"15429:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"src":"15407:31:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23270,"nodeType":"IfStatement","src":"15403:73:72","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":23267,"name":"UpgradeCannotChangeCurrency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22960,"src":"15447:27:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23268,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15447:29:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23269,"nodeType":"RevertStatement","src":"15440:36:72"}}]},"id":23272,"implemented":true,"kind":"function","modifiers":[],"name":"_authorizeUpgrade","nameLocation":"15291:17:72","nodeType":"FunctionDefinition","overrides":{"id":23253,"nodeType":"OverrideSpecifier","overrides":[],"src":"15340:8:72"},"parameters":{"id":23252,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23251,"mutability":"mutable","name":"newImpl","nameLocation":"15317:7:72","nodeType":"VariableDeclaration","scope":23272,"src":"15309:15:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23250,"name":"address","nodeType":"ElementaryTypeName","src":"15309:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15308:17:72"},"returnParameters":{"id":23254,"nodeType":"ParameterList","parameters":[],"src":"15349:0:72"},"scope":25449,"src":"15282:199:72","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":23279,"nodeType":"Block","src":"15718:19:72","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":23276,"name":"_pause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3259,"src":"15724:6:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":23277,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15724:8:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23278,"nodeType":"ExpressionStatement","src":"15724:8:72"}]},"documentation":{"id":23273,"nodeType":"StructuredDocumentation","src":"15485:206:72","text":" @notice Pauses the contract.\n @dev When the contract is paused, several operations are rejected: deposits, withdrawals, new\n policies, policy resolution and expiration, nft transfers."},"functionSelector":"8456cb59","id":23280,"implemented":true,"kind":"function","modifiers":[],"name":"pause","nameLocation":"15703:5:72","nodeType":"FunctionDefinition","parameters":{"id":23274,"nodeType":"ParameterList","parameters":[],"src":"15708:2:72"},"returnParameters":{"id":23275,"nodeType":"ParameterList","parameters":[],"src":"15718:0:72"},"scope":25449,"src":"15694:43:72","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":23287,"nodeType":"Block","src":"15898:21:72","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":23284,"name":"_unpause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3283,"src":"15904:8:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":23285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15904:10:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23286,"nodeType":"ExpressionStatement","src":"15904:10:72"}]},"documentation":{"id":23281,"nodeType":"StructuredDocumentation","src":"15741:128:72","text":" @notice Unpauses the contract.\n @dev All the operations disabled when the contract was paused are re-enabled."},"functionSelector":"3f4ba83a","id":23288,"implemented":true,"kind":"function","modifiers":[],"name":"unpause","nameLocation":"15881:7:72","nodeType":"FunctionDefinition","parameters":{"id":23282,"nodeType":"ParameterList","parameters":[],"src":"15888:2:72"},"returnParameters":{"id":23283,"nodeType":"ParameterList","parameters":[],"src":"15898:0:72"},"scope":25449,"src":"15872:47:72","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[29043],"body":{"id":23298,"nodeType":"Block","src":"16029:27:72","statements":[{"expression":{"id":23296,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22891,"src":"16042:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"functionReturnParameters":23295,"id":23297,"nodeType":"Return","src":"16035:16:72"}]},"documentation":{"id":23289,"nodeType":"StructuredDocumentation","src":"15923:27:72","text":"@inheritdoc IPolicyPool"},"functionSelector":"e5a6b10f","id":23299,"implemented":true,"kind":"function","modifiers":[],"name":"currency","nameLocation":"15962:8:72","nodeType":"FunctionDefinition","overrides":{"id":23291,"nodeType":"OverrideSpecifier","overrides":[],"src":"15995:8:72"},"parameters":{"id":23290,"nodeType":"ParameterList","parameters":[],"src":"15970:2:72"},"returnParameters":{"id":23295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23294,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23299,"src":"16013:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"},"typeName":{"id":23293,"nodeType":"UserDefinedTypeName","pathNode":{"id":23292,"name":"IERC20Metadata","nameLocations":["16013:14:72"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"16013:14:72"},"referencedDeclaration":8863,"src":"16013:14:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"src":"16012:16:72"},"scope":25449,"src":"15953:103:72","stateMutability":"view","virtual":true,"visibility":"external"},{"body":{"id":23323,"nodeType":"Block","src":"16110:138:72","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23309,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23304,"name":"treasury_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23301,"src":"16120:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":23307,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16141:1:72","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":23306,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16133:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23305,"name":"address","nodeType":"ElementaryTypeName","src":"16133:7:72","typeDescriptions":{}}},"id":23308,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16133:10:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16120:23:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23313,"nodeType":"IfStatement","src":"16116:52:72","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":23310,"name":"NoZeroTreasury","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22951,"src":"16152:14:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23311,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16152:16:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23312,"nodeType":"RevertStatement","src":"16145:23:72"}},{"eventCall":{"arguments":[{"id":23315,"name":"_treasury","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22894,"src":"16195:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23316,"name":"treasury_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23301,"src":"16206:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":23314,"name":"TreasuryChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23077,"src":"16179:15:72","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":23317,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16179:37:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23318,"nodeType":"EmitStatement","src":"16174:42:72"},{"expression":{"id":23321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":23319,"name":"_treasury","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22894,"src":"16222:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":23320,"name":"treasury_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23301,"src":"16234:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16222:21:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":23322,"nodeType":"ExpressionStatement","src":"16222:21:72"}]},"id":23324,"implemented":true,"kind":"function","modifiers":[],"name":"_setTreasury","nameLocation":"16069:12:72","nodeType":"FunctionDefinition","parameters":{"id":23302,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23301,"mutability":"mutable","name":"treasury_","nameLocation":"16090:9:72","nodeType":"VariableDeclaration","scope":23324,"src":"16082:17:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23300,"name":"address","nodeType":"ElementaryTypeName","src":"16082:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"16081:19:72"},"returnParameters":{"id":23303,"nodeType":"ParameterList","parameters":[],"src":"16110:0:72"},"scope":25449,"src":"16060:188:72","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":23334,"nodeType":"Block","src":"16483:34:72","statements":[{"expression":{"arguments":[{"id":23331,"name":"treasury_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23327,"src":"16502:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23330,"name":"_setTreasury","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23324,"src":"16489:12:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":23332,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16489:23:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23333,"nodeType":"ExpressionStatement","src":"16489:23:72"}]},"documentation":{"id":23325,"nodeType":"StructuredDocumentation","src":"16252:179:72","text":" @notice Changes the address of the treasury, the one that receives the protocol fees.\n @custom:emits TreasuryChanged with the previous and current treasury"},"functionSelector":"f0f44260","id":23335,"implemented":true,"kind":"function","modifiers":[],"name":"setTreasury","nameLocation":"16443:11:72","nodeType":"FunctionDefinition","parameters":{"id":23328,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23327,"mutability":"mutable","name":"treasury_","nameLocation":"16463:9:72","nodeType":"VariableDeclaration","scope":23335,"src":"16455:17:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23326,"name":"address","nodeType":"ElementaryTypeName","src":"16455:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"16454:19:72"},"returnParameters":{"id":23329,"nodeType":"ParameterList","parameters":[],"src":"16483:0:72"},"scope":25449,"src":"16434:83:72","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[29049],"body":{"id":23344,"nodeType":"Block","src":"16612:27:72","statements":[{"expression":{"id":23342,"name":"_treasury","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22894,"src":"16625:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":23341,"id":23343,"nodeType":"Return","src":"16618:16:72"}]},"documentation":{"id":23336,"nodeType":"StructuredDocumentation","src":"16521:27:72","text":"@inheritdoc IPolicyPool"},"functionSelector":"61d027b3","id":23345,"implemented":true,"kind":"function","modifiers":[],"name":"treasury","nameLocation":"16560:8:72","nodeType":"FunctionDefinition","overrides":{"id":23338,"nodeType":"OverrideSpecifier","overrides":[],"src":"16585:8:72"},"parameters":{"id":23337,"nodeType":"ParameterList","parameters":[],"src":"16568:2:72"},"returnParameters":{"id":23341,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23340,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23345,"src":"16603:7:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23339,"name":"address","nodeType":"ElementaryTypeName","src":"16603:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"16602:9:72"},"scope":25449,"src":"16551:88:72","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":23525,"nodeType":"Block","src":"17348:1145:72","statements":[{"assignments":[23357],"declarations":[{"constant":false,"id":23357,"mutability":"mutable","name":"comp","nameLocation":"17372:4:72","nodeType":"VariableDeclaration","scope":23525,"src":"17354:22:72","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component"},"typeName":{"id":23356,"nodeType":"UserDefinedTypeName","pathNode":{"id":23355,"name":"Component","nameLocations":["17354:9:72"],"nodeType":"IdentifierPath","referencedDeclaration":22918,"src":"17354:9:72"},"referencedDeclaration":22918,"src":"17354:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component"}},"visibility":"internal"}],"id":23361,"initialValue":{"baseExpression":{"id":23358,"name":"_components","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22925,"src":"17379:11:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IPolicyPoolComponent_$29188_$_t_struct$_Component_$22918_storage_$","typeString":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component storage ref)"}},"id":23360,"indexExpression":{"id":23359,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23349,"src":"17391:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17379:22:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage","typeString":"struct PolicyPool.Component storage ref"}},"nodeType":"VariableDeclarationStatement","src":"17354:47:72"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"},"id":23366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":23362,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23357,"src":"17411:4:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":23363,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17416:6:72","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":22914,"src":"17411:11:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":23364,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22904,"src":"17426:15:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$22904_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":23365,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17442:8:72","memberName":"inactive","nodeType":"MemberAccess","referencedDeclaration":22897,"src":"17426:24:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"src":"17411:39:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23370,"nodeType":"IfStatement","src":"17407:79:72","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":23367,"name":"ComponentAlreadyInThePool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22963,"src":"17459:25:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23368,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17459:27:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23369,"nodeType":"RevertStatement","src":"17452:34:72"}},{"condition":{"commonType":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"id":23375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":23371,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23349,"src":"17496:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"id":23372,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17506:10:72","memberName":"policyPool","nodeType":"MemberAccess","referencedDeclaration":29187,"src":"17496:20:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPolicyPool_$29171_$","typeString":"function () view external returns (contract IPolicyPool)"}},"id":23373,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17496:22:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":23374,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"17522:4:72","typeDescriptions":{"typeIdentifier":"t_contract$_PolicyPool_$25449","typeString":"contract PolicyPool"}},"src":"17496:30:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23379,"nodeType":"IfStatement","src":"17492:73:72","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":23376,"name":"ComponentNotLinkedToThisPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22966,"src":"17535:28:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17535:30:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23378,"nodeType":"RevertStatement","src":"17528:37:72"}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23414,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},"id":23383,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23380,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23352,"src":"17584:4:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":23381,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22910,"src":"17592:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$22910_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":23382,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17606:7:72","memberName":"unknown","nodeType":"MemberAccess","referencedDeclaration":22906,"src":"17592:21:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"src":"17584:29:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":23384,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17583:31:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23397,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},"id":23388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23385,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23352,"src":"17625:4:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":23386,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22910,"src":"17633:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$22910_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":23387,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17647:6:72","memberName":"eToken","nodeType":"MemberAccess","referencedDeclaration":22907,"src":"17633:20:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"src":"17625:28:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":23396,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"17657:55:72","subExpression":{"arguments":[{"expression":{"arguments":[{"id":23392,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28869,"src":"17691:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IEToken_$28869_$","typeString":"type(contract IEToken)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IEToken_$28869_$","typeString":"type(contract IEToken)"}],"id":23391,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17686:4:72","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":23393,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17686:13:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IEToken_$28869","typeString":"type(contract IEToken)"}},"id":23394,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17700:11:72","memberName":"interfaceId","nodeType":"MemberAccess","src":"17686:25:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":23389,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23349,"src":"17658:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"id":23390,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17668:17:72","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":14271,"src":"17658:27:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view external returns (bool)"}},"id":23395,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17658:54:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17625:87:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":23398,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17624:89:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17583:130:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23412,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},"id":23403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23400,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23352,"src":"17724:4:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":23401,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22910,"src":"17732:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$22910_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":23402,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17746:15:72","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":22909,"src":"17732:29:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"src":"17724:37:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":23411,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"17765:64:72","subExpression":{"arguments":[{"expression":{"arguments":[{"id":23407,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29276,"src":"17799:16:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPremiumsAccount_$29276_$","typeString":"type(contract IPremiumsAccount)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPremiumsAccount_$29276_$","typeString":"type(contract IPremiumsAccount)"}],"id":23406,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17794:4:72","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":23408,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17794:22:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPremiumsAccount_$29276","typeString":"type(contract IPremiumsAccount)"}},"id":23409,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17817:11:72","memberName":"interfaceId","nodeType":"MemberAccess","src":"17794:34:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":23404,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23349,"src":"17766:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"id":23405,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17776:17:72","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":14271,"src":"17766:27:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view external returns (bool)"}},"id":23410,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17766:63:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17724:105:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":23413,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17723:107:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17583:247:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23427,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},"id":23418,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23415,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23352,"src":"17841:4:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":23416,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22910,"src":"17849:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$22910_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":23417,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17863:10:72","memberName":"riskModule","nodeType":"MemberAccess","referencedDeclaration":22908,"src":"17849:24:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"src":"17841:32:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":23426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"17877:59:72","subExpression":{"arguments":[{"expression":{"arguments":[{"id":23422,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"17911:11:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}],"id":23421,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17906:4:72","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":23423,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17906:17:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IRiskModule_$29295","typeString":"type(contract IRiskModule)"}},"id":23424,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17924:11:72","memberName":"interfaceId","nodeType":"MemberAccess","src":"17906:29:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":23419,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23349,"src":"17878:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"id":23420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17888:17:72","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":14271,"src":"17878:27:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view external returns (bool)"}},"id":23425,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17878:58:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17841:95:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":23428,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17840:97:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17583:354:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23435,"nodeType":"IfStatement","src":"17572:420:72","trueBody":{"errorCall":{"arguments":[{"id":23431,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23349,"src":"17976:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},{"id":23432,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23352,"src":"17987:4:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"},{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}],"id":23430,"name":"ComponentNotTheRightKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22975,"src":"17951:24:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_contract$_IPolicyPoolComponent_$29188_$_t_enum$_ComponentKind_$22910_$returns$_t_error_$","typeString":"function (contract IPolicyPoolComponent,enum PolicyPool.ComponentKind) pure returns (error)"}},"id":23433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17951:41:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23434,"nodeType":"RevertStatement","src":"17944:48:72"}},{"expression":{"id":23441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":23436,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23357,"src":"17999:4:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":23438,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"18004:6:72","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":22914,"src":"17999:11:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":23439,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22904,"src":"18013:15:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$22904_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":23440,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18029:6:72","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":22899,"src":"18013:22:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"src":"17999:36:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"id":23442,"nodeType":"ExpressionStatement","src":"17999:36:72"},{"expression":{"id":23447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":23443,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23357,"src":"18041:4:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":23445,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"18046:4:72","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":22917,"src":"18041:9:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":23446,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23352,"src":"18053:4:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"src":"18041:16:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"id":23448,"nodeType":"ExpressionStatement","src":"18041:16:72"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},"id":23452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23449,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23352,"src":"18067:4:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":23450,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22910,"src":"18075:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$22910_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":23451,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18089:15:72","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":22909,"src":"18075:29:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"src":"18067:37:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23517,"nodeType":"IfStatement","src":"18063:352:72","trueBody":{"id":23516,"nodeType":"Block","src":"18106:309:72","statements":[{"assignments":[23455],"declarations":[{"constant":false,"id":23455,"mutability":"mutable","name":"pa","nameLocation":"18131:2:72","nodeType":"VariableDeclaration","scope":23516,"src":"18114:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"},"typeName":{"id":23454,"nodeType":"UserDefinedTypeName","pathNode":{"id":23453,"name":"IPremiumsAccount","nameLocations":["18114:16:72"],"nodeType":"IdentifierPath","referencedDeclaration":29276,"src":"18114:16:72"},"referencedDeclaration":29276,"src":"18114:16:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"id":23462,"initialValue":{"arguments":[{"arguments":[{"id":23459,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23349,"src":"18161:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}],"id":23458,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18153:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23457,"name":"address","nodeType":"ElementaryTypeName","src":"18153:7:72","typeDescriptions":{}}},"id":23460,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18153:18:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23456,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29276,"src":"18136:16:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPremiumsAccount_$29276_$","typeString":"type(contract IPremiumsAccount)"}},"id":23461,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18136:36:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"nodeType":"VariableDeclarationStatement","src":"18114:58:72"},{"assignments":[23465],"declarations":[{"constant":false,"id":23465,"mutability":"mutable","name":"etk","nameLocation":"18188:3:72","nodeType":"VariableDeclaration","scope":23516,"src":"18180:11:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":23464,"nodeType":"UserDefinedTypeName","pathNode":{"id":23463,"name":"IEToken","nameLocations":["18180:7:72"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"18180:7:72"},"referencedDeclaration":28869,"src":"18180:7:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"}],"id":23469,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":23466,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23455,"src":"18194:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"id":23467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18197:9:72","memberName":"juniorEtk","nodeType":"MemberAccess","referencedDeclaration":29259,"src":"18194:12:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IEToken_$28869_$","typeString":"function () view external returns (contract IEToken)"}},"id":23468,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18194:14:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"nodeType":"VariableDeclarationStatement","src":"18180:28:72"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":23472,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23465,"src":"18228:3:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":23471,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18220:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23470,"name":"address","nodeType":"ElementaryTypeName","src":"18220:7:72","typeDescriptions":{}}},"id":23473,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18220:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":23476,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18244:1:72","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":23475,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18236:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23474,"name":"address","nodeType":"ElementaryTypeName","src":"18236:7:72","typeDescriptions":{}}},"id":23477,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18236:10:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"18220:26:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23489,"nodeType":"IfStatement","src":"18216:79:72","trueBody":{"id":23488,"nodeType":"Block","src":"18248:47:72","statements":[{"expression":{"arguments":[{"arguments":[{"id":23484,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23455,"src":"18282:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}],"id":23483,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18274:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23482,"name":"address","nodeType":"ElementaryTypeName","src":"18274:7:72","typeDescriptions":{}}},"id":23485,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18274:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":23479,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23465,"src":"18258:3:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":23481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18262:11:72","memberName":"addBorrower","nodeType":"MemberAccess","referencedDeclaration":28804,"src":"18258:15:72","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$returns$__$","typeString":"function (address) external"}},"id":23486,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18258:28:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23487,"nodeType":"ExpressionStatement","src":"18258:28:72"}]}},{"expression":{"id":23494,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":23490,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23465,"src":"18302:3:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":23491,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23455,"src":"18308:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"id":23492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18311:9:72","memberName":"seniorEtk","nodeType":"MemberAccess","referencedDeclaration":29252,"src":"18308:12:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IEToken_$28869_$","typeString":"function () view external returns (contract IEToken)"}},"id":23493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18308:14:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"src":"18302:20:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":23495,"nodeType":"ExpressionStatement","src":"18302:20:72"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23504,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":23498,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23465,"src":"18342:3:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":23497,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18334:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23496,"name":"address","nodeType":"ElementaryTypeName","src":"18334:7:72","typeDescriptions":{}}},"id":23499,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18334:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":23502,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18358:1:72","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":23501,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18350:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23500,"name":"address","nodeType":"ElementaryTypeName","src":"18350:7:72","typeDescriptions":{}}},"id":23503,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18350:10:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"18334:26:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23515,"nodeType":"IfStatement","src":"18330:79:72","trueBody":{"id":23514,"nodeType":"Block","src":"18362:47:72","statements":[{"expression":{"arguments":[{"arguments":[{"id":23510,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23455,"src":"18396:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}],"id":23509,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18388:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23508,"name":"address","nodeType":"ElementaryTypeName","src":"18388:7:72","typeDescriptions":{}}},"id":23511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18388:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":23505,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23465,"src":"18372:3:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":23507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18376:11:72","memberName":"addBorrower","nodeType":"MemberAccess","referencedDeclaration":28804,"src":"18372:15:72","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$returns$__$","typeString":"function (address) external"}},"id":23512,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18372:28:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23513,"nodeType":"ExpressionStatement","src":"18372:28:72"}]}}]}},{"eventCall":{"arguments":[{"id":23519,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23349,"src":"18448:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},{"id":23520,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23352,"src":"18459:4:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},{"expression":{"id":23521,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22904,"src":"18465:15:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$22904_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":23522,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18481:6:72","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":22899,"src":"18465:22:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"},{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}],"id":23518,"name":"ComponentStatusChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23096,"src":"18425:22:72","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IPolicyPoolComponent_$29188_$_t_enum$_ComponentKind_$22910_$_t_enum$_ComponentStatus_$22904_$returns$__$","typeString":"function (contract IPolicyPoolComponent,enum PolicyPool.ComponentKind,enum PolicyPool.ComponentStatus)"}},"id":23523,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18425:63:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23524,"nodeType":"EmitStatement","src":"18420:68:72"}]},"documentation":{"id":23346,"nodeType":"StructuredDocumentation","src":"16643:619:72","text":" @notice Adds a new component (either an {EToken}, {RiskModule} or {PremiumsAccount}) to the protocol.\n @dev The component status will be `active`.\n @custom:emits ComponentStatusChanged with status active.\n @custom:throws ComponentNotTheRightKind When there's a mismatch between the specified kind and supported interface\n @param component The address of component contract. Must be an {EToken}, {RiskModule} or {PremiumsAccount} linked\n to this specific {PolicyPool} and matching the `kind` specified in the next paramter.\n @param kind The type of component to be added."},"functionSelector":"6b8734e7","id":23526,"implemented":true,"kind":"function","modifiers":[],"name":"addComponent","nameLocation":"17274:12:72","nodeType":"FunctionDefinition","parameters":{"id":23353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23349,"mutability":"mutable","name":"component","nameLocation":"17308:9:72","nodeType":"VariableDeclaration","scope":23526,"src":"17287:30:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"},"typeName":{"id":23348,"nodeType":"UserDefinedTypeName","pathNode":{"id":23347,"name":"IPolicyPoolComponent","nameLocations":["17287:20:72"],"nodeType":"IdentifierPath","referencedDeclaration":29188,"src":"17287:20:72"},"referencedDeclaration":29188,"src":"17287:20:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"visibility":"internal"},{"constant":false,"id":23352,"mutability":"mutable","name":"kind","nameLocation":"17333:4:72","nodeType":"VariableDeclaration","scope":23526,"src":"17319:18:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},"typeName":{"id":23351,"nodeType":"UserDefinedTypeName","pathNode":{"id":23350,"name":"ComponentKind","nameLocations":["17319:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":22910,"src":"17319:13:72"},"referencedDeclaration":22910,"src":"17319:13:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"visibility":"internal"}],"src":"17286:52:72"},"returnParameters":{"id":23354,"nodeType":"ParameterList","parameters":[],"src":"17348:0:72"},"scope":25449,"src":"17265:1228:72","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":23704,"nodeType":"Block","src":"18879:1187:72","statements":[{"assignments":[23535],"declarations":[{"constant":false,"id":23535,"mutability":"mutable","name":"comp","nameLocation":"18903:4:72","nodeType":"VariableDeclaration","scope":23704,"src":"18885:22:72","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component"},"typeName":{"id":23534,"nodeType":"UserDefinedTypeName","pathNode":{"id":23533,"name":"Component","nameLocations":["18885:9:72"],"nodeType":"IdentifierPath","referencedDeclaration":22918,"src":"18885:9:72"},"referencedDeclaration":22918,"src":"18885:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component"}},"visibility":"internal"}],"id":23539,"initialValue":{"baseExpression":{"id":23536,"name":"_components","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22925,"src":"18910:11:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IPolicyPoolComponent_$29188_$_t_struct$_Component_$22918_storage_$","typeString":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component storage ref)"}},"id":23538,"indexExpression":{"id":23537,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23530,"src":"18922:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18910:22:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage","typeString":"struct PolicyPool.Component storage ref"}},"nodeType":"VariableDeclarationStatement","src":"18885:47:72"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"},"id":23544,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":23540,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23535,"src":"18942:4:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":23541,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18947:6:72","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":22914,"src":"18942:11:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":23542,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22904,"src":"18957:15:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$22904_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":23543,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18973:10:72","memberName":"deprecated","nodeType":"MemberAccess","referencedDeclaration":22901,"src":"18957:26:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"src":"18942:41:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23548,"nodeType":"IfStatement","src":"18938:78:72","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":23545,"name":"ComponentNotDeprecated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22978,"src":"18992:22:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23546,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18992:24:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23547,"nodeType":"RevertStatement","src":"18985:31:72"}},{"condition":{"commonType":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},"id":23553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":23549,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23535,"src":"19026:4:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":23550,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19031:4:72","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":22917,"src":"19026:9:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":23551,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22910,"src":"19039:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$22910_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":23552,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19053:6:72","memberName":"eToken","nodeType":"MemberAccess","referencedDeclaration":22907,"src":"19039:20:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"src":"19026:33:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},"id":23583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":23579,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23535,"src":"19247:4:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":23580,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19252:4:72","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":22917,"src":"19247:9:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":23581,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22910,"src":"19260:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$22910_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":23582,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19274:10:72","memberName":"riskModule","nodeType":"MemberAccess","referencedDeclaration":22908,"src":"19260:24:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"src":"19247:37:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":23688,"nodeType":"Block","src":"19478:468:72","statements":[{"assignments":[23613],"declarations":[{"constant":false,"id":23613,"mutability":"mutable","name":"pa","nameLocation":"19557:2:72","nodeType":"VariableDeclaration","scope":23688,"src":"19540:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"},"typeName":{"id":23612,"nodeType":"UserDefinedTypeName","pathNode":{"id":23611,"name":"IPremiumsAccount","nameLocations":["19540:16:72"],"nodeType":"IdentifierPath","referencedDeclaration":29276,"src":"19540:16:72"},"referencedDeclaration":29276,"src":"19540:16:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"id":23620,"initialValue":{"arguments":[{"arguments":[{"id":23617,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23530,"src":"19587:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}],"id":23616,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19579:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23615,"name":"address","nodeType":"ElementaryTypeName","src":"19579:7:72","typeDescriptions":{}}},"id":23618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19579:18:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23614,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29276,"src":"19562:16:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPremiumsAccount_$29276_$","typeString":"type(contract IPremiumsAccount)"}},"id":23619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19562:36:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"nodeType":"VariableDeclarationStatement","src":"19540:58:72"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":23621,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23613,"src":"19610:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"id":23622,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19613:12:72","memberName":"purePremiums","nodeType":"MemberAccess","referencedDeclaration":29275,"src":"19610:15:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint256_$","typeString":"function () view external returns (uint256)"}},"id":23623,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19610:17:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":23624,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19631:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"19610:22:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23634,"nodeType":"IfStatement","src":"19606:91:72","trueBody":{"errorCall":{"arguments":[{"expression":{"id":23627,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23535,"src":"19668:4:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":23628,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19673:4:72","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":22917,"src":"19668:9:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":23629,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23613,"src":"19679:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"id":23630,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19682:12:72","memberName":"purePremiums","nodeType":"MemberAccess","referencedDeclaration":29275,"src":"19679:15:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint256_$","typeString":"function () view external returns (uint256)"}},"id":23631,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19679:17:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23626,"name":"ComponentInUseCannotRemove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22986,"src":"19641:26:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_enum$_ComponentKind_$22910_$_t_uint256_$returns$_t_error_$","typeString":"function (enum PolicyPool.ComponentKind,uint256) pure returns (error)"}},"id":23632,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19641:56:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23633,"nodeType":"RevertStatement","src":"19634:63:72"}},{"assignments":[23637],"declarations":[{"constant":false,"id":23637,"mutability":"mutable","name":"etk","nameLocation":"19713:3:72","nodeType":"VariableDeclaration","scope":23688,"src":"19705:11:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":23636,"nodeType":"UserDefinedTypeName","pathNode":{"id":23635,"name":"IEToken","nameLocations":["19705:7:72"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"19705:7:72"},"referencedDeclaration":28869,"src":"19705:7:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"}],"id":23641,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":23638,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23613,"src":"19719:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"id":23639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19722:9:72","memberName":"juniorEtk","nodeType":"MemberAccess","referencedDeclaration":29259,"src":"19719:12:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IEToken_$28869_$","typeString":"function () view external returns (contract IEToken)"}},"id":23640,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19719:14:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"nodeType":"VariableDeclarationStatement","src":"19705:28:72"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23650,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":23644,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23637,"src":"19753:3:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":23643,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19745:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23642,"name":"address","nodeType":"ElementaryTypeName","src":"19745:7:72","typeDescriptions":{}}},"id":23645,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19745:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":23648,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19769:1:72","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":23647,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19761:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23646,"name":"address","nodeType":"ElementaryTypeName","src":"19761:7:72","typeDescriptions":{}}},"id":23649,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19761:10:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"19745:26:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23661,"nodeType":"IfStatement","src":"19741:82:72","trueBody":{"id":23660,"nodeType":"Block","src":"19773:50:72","statements":[{"expression":{"arguments":[{"arguments":[{"id":23656,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23613,"src":"19810:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}],"id":23655,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19802:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23654,"name":"address","nodeType":"ElementaryTypeName","src":"19802:7:72","typeDescriptions":{}}},"id":23657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19802:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":23651,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23637,"src":"19783:3:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":23653,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19787:14:72","memberName":"removeBorrower","nodeType":"MemberAccess","referencedDeclaration":28810,"src":"19783:18:72","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$returns$__$","typeString":"function (address) external"}},"id":23658,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19783:31:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23659,"nodeType":"ExpressionStatement","src":"19783:31:72"}]}},{"expression":{"id":23666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":23662,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23637,"src":"19830:3:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":23663,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23613,"src":"19836:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"id":23664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19839:9:72","memberName":"seniorEtk","nodeType":"MemberAccess","referencedDeclaration":29252,"src":"19836:12:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IEToken_$28869_$","typeString":"function () view external returns (contract IEToken)"}},"id":23665,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19836:14:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"src":"19830:20:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":23667,"nodeType":"ExpressionStatement","src":"19830:20:72"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":23670,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23637,"src":"19870:3:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":23669,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19862:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23668,"name":"address","nodeType":"ElementaryTypeName","src":"19862:7:72","typeDescriptions":{}}},"id":23671,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19862:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":23674,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19886:1:72","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":23673,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19878:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23672,"name":"address","nodeType":"ElementaryTypeName","src":"19878:7:72","typeDescriptions":{}}},"id":23675,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19878:10:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"19862:26:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23687,"nodeType":"IfStatement","src":"19858:82:72","trueBody":{"id":23686,"nodeType":"Block","src":"19890:50:72","statements":[{"expression":{"arguments":[{"arguments":[{"id":23682,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23613,"src":"19927:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}],"id":23681,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19919:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23680,"name":"address","nodeType":"ElementaryTypeName","src":"19919:7:72","typeDescriptions":{}}},"id":23683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19919:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":23677,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23637,"src":"19900:3:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":23679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19904:14:72","memberName":"removeBorrower","nodeType":"MemberAccess","referencedDeclaration":28810,"src":"19900:18:72","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$returns$__$","typeString":"function (address) external"}},"id":23684,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19900:31:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23685,"nodeType":"ExpressionStatement","src":"19900:31:72"}]}}]},"id":23689,"nodeType":"IfStatement","src":"19243:703:72","trueBody":{"id":23610,"nodeType":"Block","src":"19286:186:72","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":23594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":23584,"name":"_exposureByRm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22945,"src":"19298:13:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IRiskModule_$29295_$_t_struct$_Exposure_$22935_storage_$","typeString":"mapping(contract IRiskModule => struct PolicyPool.Exposure storage ref)"}},"id":23591,"indexExpression":{"arguments":[{"arguments":[{"id":23588,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23530,"src":"19332:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}],"id":23587,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19324:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23586,"name":"address","nodeType":"ElementaryTypeName","src":"19324:7:72","typeDescriptions":{}}},"id":23589,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19324:18:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23585,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"19312:11:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}},"id":23590,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19312:31:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19298:46:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage","typeString":"struct PolicyPool.Exposure storage ref"}},"id":23592,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19345:6:72","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":22932,"src":"19298:53:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":23593,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19355:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"19298:58:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23609,"nodeType":"IfStatement","src":"19294:171:72","trueBody":{"errorCall":{"arguments":[{"expression":{"id":23596,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23535,"src":"19400:4:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":23597,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19405:4:72","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":22917,"src":"19400:9:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},{"expression":{"baseExpression":{"id":23598,"name":"_exposureByRm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22945,"src":"19411:13:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IRiskModule_$29295_$_t_struct$_Exposure_$22935_storage_$","typeString":"mapping(contract IRiskModule => struct PolicyPool.Exposure storage ref)"}},"id":23605,"indexExpression":{"arguments":[{"arguments":[{"id":23602,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23530,"src":"19445:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}],"id":23601,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19437:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23600,"name":"address","nodeType":"ElementaryTypeName","src":"19437:7:72","typeDescriptions":{}}},"id":23603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19437:18:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23599,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"19425:11:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}},"id":23604,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19425:31:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19411:46:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage","typeString":"struct PolicyPool.Exposure storage ref"}},"id":23606,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19458:6:72","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":22932,"src":"19411:53:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":23595,"name":"ComponentInUseCannotRemove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22986,"src":"19373:26:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_enum$_ComponentKind_$22910_$_t_uint256_$returns$_t_error_$","typeString":"function (enum PolicyPool.ComponentKind,uint256) pure returns (error)"}},"id":23607,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19373:92:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23608,"nodeType":"RevertStatement","src":"19366:99:72"}}]}},"id":23690,"nodeType":"IfStatement","src":"19022:924:72","trueBody":{"id":23578,"nodeType":"Block","src":"19061:176:72","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23563,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"id":23557,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23530,"src":"19096:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}],"id":23556,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19088:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23555,"name":"address","nodeType":"ElementaryTypeName","src":"19088:7:72","typeDescriptions":{}}},"id":23558,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19088:18:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23554,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"19073:14:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$8863_$","typeString":"type(contract IERC20Metadata)"}},"id":23559,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19073:34:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":23560,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19108:11:72","memberName":"totalSupply","nodeType":"MemberAccess","referencedDeclaration":7926,"src":"19073:46:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint256_$","typeString":"function () view external returns (uint256)"}},"id":23561,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19073:48:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":23562,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19125:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"19073:53:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23577,"nodeType":"IfStatement","src":"19069:161:72","trueBody":{"errorCall":{"arguments":[{"expression":{"id":23565,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23535,"src":"19170:4:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":23566,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19175:4:72","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":22917,"src":"19170:9:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"id":23570,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23530,"src":"19204:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}],"id":23569,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19196:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23568,"name":"address","nodeType":"ElementaryTypeName","src":"19196:7:72","typeDescriptions":{}}},"id":23571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19196:18:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23567,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"19181:14:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$8863_$","typeString":"type(contract IERC20Metadata)"}},"id":23572,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19181:34:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":23573,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19216:11:72","memberName":"totalSupply","nodeType":"MemberAccess","referencedDeclaration":7926,"src":"19181:46:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint256_$","typeString":"function () view external returns (uint256)"}},"id":23574,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19181:48:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23564,"name":"ComponentInUseCannotRemove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22986,"src":"19143:26:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_enum$_ComponentKind_$22910_$_t_uint256_$returns$_t_error_$","typeString":"function (enum PolicyPool.ComponentKind,uint256) pure returns (error)"}},"id":23575,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19143:87:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23576,"nodeType":"RevertStatement","src":"19136:94:72"}}]}},{"eventCall":{"arguments":[{"id":23692,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23530,"src":"19979:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},{"expression":{"id":23693,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23535,"src":"19990:4:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":23694,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19995:4:72","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":22917,"src":"19990:9:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},{"expression":{"id":23695,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22904,"src":"20001:15:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$22904_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":23696,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"20017:8:72","memberName":"inactive","nodeType":"MemberAccess","referencedDeclaration":22897,"src":"20001:24:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"},{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}],"id":23691,"name":"ComponentStatusChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23096,"src":"19956:22:72","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IPolicyPoolComponent_$29188_$_t_enum$_ComponentKind_$22910_$_t_enum$_ComponentStatus_$22904_$returns$__$","typeString":"function (contract IPolicyPoolComponent,enum PolicyPool.ComponentKind,enum PolicyPool.ComponentStatus)"}},"id":23697,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19956:70:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23698,"nodeType":"EmitStatement","src":"19951:75:72"},{"expression":{"id":23702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"20032:29:72","subExpression":{"baseExpression":{"id":23699,"name":"_components","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22925,"src":"20039:11:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IPolicyPoolComponent_$29188_$_t_struct$_Component_$22918_storage_$","typeString":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component storage ref)"}},"id":23701,"indexExpression":{"id":23700,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23530,"src":"20051:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"20039:22:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage","typeString":"struct PolicyPool.Component storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23703,"nodeType":"ExpressionStatement","src":"20032:29:72"}]},"documentation":{"id":23527,"nodeType":"StructuredDocumentation","src":"18497:313:72","text":" @notice Removes a component from the protocol\n @dev The component needs to be in `deprecated` status before doing this operation.\n @custom:emits ComponentStatusChanged with status inactive.\n @param component The address of component contract. Must be a component added before."},"functionSelector":"6f86c897","id":23705,"implemented":true,"kind":"function","modifiers":[],"name":"removeComponent","nameLocation":"18822:15:72","nodeType":"FunctionDefinition","parameters":{"id":23531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23530,"mutability":"mutable","name":"component","nameLocation":"18859:9:72","nodeType":"VariableDeclaration","scope":23705,"src":"18838:30:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"},"typeName":{"id":23529,"nodeType":"UserDefinedTypeName","pathNode":{"id":23528,"name":"IPolicyPoolComponent","nameLocations":["18838:20:72"],"nodeType":"IdentifierPath","referencedDeclaration":29188,"src":"18838:20:72"},"referencedDeclaration":29188,"src":"18838:20:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"visibility":"internal"}],"src":"18837:32:72"},"returnParameters":{"id":23532,"nodeType":"ParameterList","parameters":[],"src":"18879:0:72"},"scope":25449,"src":"18813:1253:72","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":23754,"nodeType":"Block","src":"20584:306:72","statements":[{"assignments":[23717],"declarations":[{"constant":false,"id":23717,"mutability":"mutable","name":"comp","nameLocation":"20608:4:72","nodeType":"VariableDeclaration","scope":23754,"src":"20590:22:72","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component"},"typeName":{"id":23716,"nodeType":"UserDefinedTypeName","pathNode":{"id":23715,"name":"Component","nameLocations":["20590:9:72"],"nodeType":"IdentifierPath","referencedDeclaration":22918,"src":"20590:9:72"},"referencedDeclaration":22918,"src":"20590:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component"}},"visibility":"internal"}],"id":23721,"initialValue":{"baseExpression":{"id":23718,"name":"_components","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22925,"src":"20615:11:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IPolicyPoolComponent_$29188_$_t_struct$_Component_$22918_storage_$","typeString":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component storage ref)"}},"id":23720,"indexExpression":{"id":23719,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23709,"src":"20627:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20615:22:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage","typeString":"struct PolicyPool.Component storage ref"}},"nodeType":"VariableDeclarationStatement","src":"20590:47:72"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"},"id":23727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":23723,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23717,"src":"20651:4:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":23724,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20656:6:72","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":22914,"src":"20651:11:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":23725,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22904,"src":"20666:15:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$22904_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":23726,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"20682:8:72","memberName":"inactive","nodeType":"MemberAccess","referencedDeclaration":22897,"src":"20666:24:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"src":"20651:39:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":23728,"name":"ComponentNotFound","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22989,"src":"20692:17:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23729,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20692:19:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":23722,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"20643:7:72","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":23730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20643:69:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23731,"nodeType":"ExpressionStatement","src":"20643:69:72"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"},"id":23736,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23733,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23712,"src":"20726:9:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":23734,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22904,"src":"20739:15:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$22904_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":23735,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"20755:8:72","memberName":"inactive","nodeType":"MemberAccess","referencedDeclaration":22897,"src":"20739:24:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"src":"20726:37:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":23737,"name":"InvalidComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22995,"src":"20765:22:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23738,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20765:24:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":23732,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"20718:7:72","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":23739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20718:72:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23740,"nodeType":"ExpressionStatement","src":"20718:72:72"},{"expression":{"id":23745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":23741,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23717,"src":"20796:4:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":23743,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"20801:6:72","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":22914,"src":"20796:11:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":23744,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23712,"src":"20810:9:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"src":"20796:23:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"id":23746,"nodeType":"ExpressionStatement","src":"20796:23:72"},{"eventCall":{"arguments":[{"id":23748,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23709,"src":"20853:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},{"expression":{"id":23749,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23717,"src":"20864:4:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":23750,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20869:4:72","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":22917,"src":"20864:9:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},{"id":23751,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23712,"src":"20875:9:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"},{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}],"id":23747,"name":"ComponentStatusChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23096,"src":"20830:22:72","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IPolicyPoolComponent_$29188_$_t_enum$_ComponentKind_$22910_$_t_enum$_ComponentStatus_$22904_$returns$__$","typeString":"function (contract IPolicyPoolComponent,enum PolicyPool.ComponentKind,enum PolicyPool.ComponentStatus)"}},"id":23752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20830:55:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23753,"nodeType":"EmitStatement","src":"20825:60:72"}]},"documentation":{"id":23706,"nodeType":"StructuredDocumentation","src":"20070:412:72","text":" @notice Changes the status of a component.\n @custom:emits ComponentStatusChanged with the new status.\n @custom:throws InvalidComponentStatus() when newStatus is inactive (use removeComponent() instead)\n @param component The address of component contract. Must be a component added before.\n @param newStatus The new status, must be either `active`, `deprecated` or `suspended`."},"functionSelector":"5fcbf445","id":23755,"implemented":true,"kind":"function","modifiers":[],"name":"changeComponentStatus","nameLocation":"20494:21:72","nodeType":"FunctionDefinition","parameters":{"id":23713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23709,"mutability":"mutable","name":"component","nameLocation":"20537:9:72","nodeType":"VariableDeclaration","scope":23755,"src":"20516:30:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"},"typeName":{"id":23708,"nodeType":"UserDefinedTypeName","pathNode":{"id":23707,"name":"IPolicyPoolComponent","nameLocations":["20516:20:72"],"nodeType":"IdentifierPath","referencedDeclaration":29188,"src":"20516:20:72"},"referencedDeclaration":29188,"src":"20516:20:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"visibility":"internal"},{"constant":false,"id":23712,"mutability":"mutable","name":"newStatus","nameLocation":"20564:9:72","nodeType":"VariableDeclaration","scope":23755,"src":"20548:25:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"},"typeName":{"id":23711,"nodeType":"UserDefinedTypeName","pathNode":{"id":23710,"name":"ComponentStatus","nameLocations":["20548:15:72"],"nodeType":"IdentifierPath","referencedDeclaration":22904,"src":"20548:15:72"},"referencedDeclaration":22904,"src":"20548:15:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"visibility":"internal"}],"src":"20515:59:72"},"returnParameters":{"id":23714,"nodeType":"ParameterList","parameters":[],"src":"20584:0:72"},"scope":25449,"src":"20485:405:72","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":23770,"nodeType":"Block","src":"21174:47:72","statements":[{"expression":{"expression":{"baseExpression":{"id":23765,"name":"_components","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22925,"src":"21187:11:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IPolicyPoolComponent_$29188_$_t_struct$_Component_$22918_storage_$","typeString":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component storage ref)"}},"id":23767,"indexExpression":{"id":23766,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23759,"src":"21199:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21187:22:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage","typeString":"struct PolicyPool.Component storage ref"}},"id":23768,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21210:6:72","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":22914,"src":"21187:29:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"functionReturnParameters":23764,"id":23769,"nodeType":"Return","src":"21180:36:72"}]},"documentation":{"id":23756,"nodeType":"StructuredDocumentation","src":"20894:177:72","text":" @notice Returns the status of a component.\n @param component The address of the component\n @return The status of the component. See {ComponentStatus}"},"functionSelector":"33d6157a","id":23771,"implemented":true,"kind":"function","modifiers":[],"name":"getComponentStatus","nameLocation":"21083:18:72","nodeType":"FunctionDefinition","parameters":{"id":23760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23759,"mutability":"mutable","name":"component","nameLocation":"21123:9:72","nodeType":"VariableDeclaration","scope":23771,"src":"21102:30:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"},"typeName":{"id":23758,"nodeType":"UserDefinedTypeName","pathNode":{"id":23757,"name":"IPolicyPoolComponent","nameLocations":["21102:20:72"],"nodeType":"IdentifierPath","referencedDeclaration":29188,"src":"21102:20:72"},"referencedDeclaration":29188,"src":"21102:20:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"visibility":"internal"}],"src":"21101:32:72"},"returnParameters":{"id":23764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23763,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23771,"src":"21157:15:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"},"typeName":{"id":23762,"nodeType":"UserDefinedTypeName","pathNode":{"id":23761,"name":"ComponentStatus","nameLocations":["21157:15:72"],"nodeType":"IdentifierPath","referencedDeclaration":22904,"src":"21157:15:72"},"referencedDeclaration":22904,"src":"21157:15:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"visibility":"internal"}],"src":"21156:17:72"},"scope":25449,"src":"21074:147:72","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":23806,"nodeType":"Block","src":"21330:203:72","statements":[{"assignments":[23784],"declarations":[{"constant":false,"id":23784,"mutability":"mutable","name":"comp","nameLocation":"21354:4:72","nodeType":"VariableDeclaration","scope":23806,"src":"21336:22:72","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component"},"typeName":{"id":23783,"nodeType":"UserDefinedTypeName","pathNode":{"id":23782,"name":"Component","nameLocations":["21336:9:72"],"nodeType":"IdentifierPath","referencedDeclaration":22918,"src":"21336:9:72"},"referencedDeclaration":22918,"src":"21336:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component"}},"visibility":"internal"}],"id":23790,"initialValue":{"baseExpression":{"id":23785,"name":"_components","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22925,"src":"21361:11:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IPolicyPoolComponent_$29188_$_t_struct$_Component_$22918_storage_$","typeString":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component storage ref)"}},"id":23789,"indexExpression":{"arguments":[{"id":23787,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23773,"src":"21394:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23786,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29188,"src":"21373:20:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$29188_$","typeString":"type(contract IPolicyPoolComponent)"}},"id":23788,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21373:31:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21361:44:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage","typeString":"struct PolicyPool.Component storage ref"}},"nodeType":"VariableDeclarationStatement","src":"21336:69:72"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},"id":23794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":23791,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23784,"src":"21415:4:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":23792,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21420:4:72","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":22917,"src":"21415:9:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":23793,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23776,"src":"21428:4:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"src":"21415:17:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23802,"nodeType":"IfStatement","src":"21411:93:72","trueBody":{"errorCall":{"arguments":[{"arguments":[{"id":23797,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23773,"src":"21487:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23796,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29188,"src":"21466:20:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$29188_$","typeString":"type(contract IPolicyPoolComponent)"}},"id":23798,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21466:31:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},{"id":23799,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23776,"src":"21499:4:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"},{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}],"id":23795,"name":"ComponentNotTheRightKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22975,"src":"21441:24:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_contract$_IPolicyPoolComponent_$29188_$_t_enum$_ComponentKind_$22910_$returns$_t_error_$","typeString":"function (contract IPolicyPoolComponent,enum PolicyPool.ComponentKind) pure returns (error)"}},"id":23800,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21441:63:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23801,"nodeType":"RevertStatement","src":"21434:70:72"}},{"expression":{"expression":{"id":23803,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23784,"src":"21517:4:72","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$22918_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":23804,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21522:6:72","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":22914,"src":"21517:11:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"functionReturnParameters":23781,"id":23805,"nodeType":"Return","src":"21510:18:72"}]},"id":23807,"implemented":true,"kind":"function","modifiers":[],"name":"_componentStatus","nameLocation":"21234:16:72","nodeType":"FunctionDefinition","parameters":{"id":23777,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23773,"mutability":"mutable","name":"component","nameLocation":"21259:9:72","nodeType":"VariableDeclaration","scope":23807,"src":"21251:17:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23772,"name":"address","nodeType":"ElementaryTypeName","src":"21251:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23776,"mutability":"mutable","name":"kind","nameLocation":"21284:4:72","nodeType":"VariableDeclaration","scope":23807,"src":"21270:18:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},"typeName":{"id":23775,"nodeType":"UserDefinedTypeName","pathNode":{"id":23774,"name":"ComponentKind","nameLocations":["21270:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":22910,"src":"21270:13:72"},"referencedDeclaration":22910,"src":"21270:13:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"visibility":"internal"}],"src":"21250:39:72"},"returnParameters":{"id":23781,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23780,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23807,"src":"21313:15:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"},"typeName":{"id":23779,"nodeType":"UserDefinedTypeName","pathNode":{"id":23778,"name":"ComponentStatus","nameLocations":["21313:15:72"],"nodeType":"IdentifierPath","referencedDeclaration":22904,"src":"21313:15:72"},"referencedDeclaration":22904,"src":"21313:15:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"visibility":"internal"}],"src":"21312:17:72"},"scope":25449,"src":"21225:308:72","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":23826,"nodeType":"Block","src":"21618:113:72","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"},"id":23821,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":23816,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23809,"src":"21645:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23817,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23812,"src":"21656:4:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}],"id":23815,"name":"_componentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23807,"src":"21628:16:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$22910_$returns$_t_enum$_ComponentStatus_$22904_$","typeString":"function (address,enum PolicyPool.ComponentKind) view returns (enum PolicyPool.ComponentStatus)"}},"id":23818,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21628:33:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":23819,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22904,"src":"21665:15:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$22904_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":23820,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21681:6:72","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":22899,"src":"21665:22:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"src":"21628:59:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23825,"nodeType":"IfStatement","src":"21624:102:72","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":23822,"name":"ComponentNotFoundOrNotActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22992,"src":"21696:28:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21696:30:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23824,"nodeType":"RevertStatement","src":"21689:37:72"}}]},"id":23827,"implemented":true,"kind":"function","modifiers":[],"name":"_requireCompActive","nameLocation":"21546:18:72","nodeType":"FunctionDefinition","parameters":{"id":23813,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23809,"mutability":"mutable","name":"component","nameLocation":"21573:9:72","nodeType":"VariableDeclaration","scope":23827,"src":"21565:17:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23808,"name":"address","nodeType":"ElementaryTypeName","src":"21565:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23812,"mutability":"mutable","name":"kind","nameLocation":"21598:4:72","nodeType":"VariableDeclaration","scope":23827,"src":"21584:18:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},"typeName":{"id":23811,"nodeType":"UserDefinedTypeName","pathNode":{"id":23810,"name":"ComponentKind","nameLocations":["21584:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":22910,"src":"21584:13:72"},"referencedDeclaration":22910,"src":"21584:13:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"visibility":"internal"}],"src":"21564:39:72"},"returnParameters":{"id":23814,"nodeType":"ParameterList","parameters":[],"src":"21618:0:72"},"scope":25449,"src":"21537:194:72","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":23856,"nodeType":"Block","src":"21828:201:72","statements":[{"assignments":[23837],"declarations":[{"constant":false,"id":23837,"mutability":"mutable","name":"status","nameLocation":"21850:6:72","nodeType":"VariableDeclaration","scope":23856,"src":"21834:22:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"},"typeName":{"id":23836,"nodeType":"UserDefinedTypeName","pathNode":{"id":23835,"name":"ComponentStatus","nameLocations":["21834:15:72"],"nodeType":"IdentifierPath","referencedDeclaration":22904,"src":"21834:15:72"},"referencedDeclaration":22904,"src":"21834:15:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"visibility":"internal"}],"id":23842,"initialValue":{"arguments":[{"id":23839,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23829,"src":"21876:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23840,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23832,"src":"21887:4:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}],"id":23838,"name":"_componentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23807,"src":"21859:16:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$22910_$returns$_t_enum$_ComponentStatus_$22904_$","typeString":"function (address,enum PolicyPool.ComponentKind) view returns (enum PolicyPool.ComponentStatus)"}},"id":23841,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21859:33:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"VariableDeclarationStatement","src":"21834:58:72"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"},"id":23846,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23843,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23837,"src":"21902:6:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":23844,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22904,"src":"21912:15:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$22904_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":23845,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21928:6:72","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":22899,"src":"21912:22:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"src":"21902:32:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"},"id":23850,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23847,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23837,"src":"21938:6:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":23848,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22904,"src":"21948:15:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$22904_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":23849,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21964:10:72","memberName":"deprecated","nodeType":"MemberAccess","referencedDeclaration":22901,"src":"21948:26:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$22904","typeString":"enum PolicyPool.ComponentStatus"}},"src":"21938:36:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"21902:72:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23855,"nodeType":"IfStatement","src":"21898:126:72","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":23852,"name":"ComponentMustBeActiveOrDeprecated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22998,"src":"21989:33:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23853,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21989:35:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23854,"nodeType":"RevertStatement","src":"21982:42:72"}}]},"id":23857,"implemented":true,"kind":"function","modifiers":[],"name":"_requireCompActiveOrDeprecated","nameLocation":"21744:30:72","nodeType":"FunctionDefinition","parameters":{"id":23833,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23829,"mutability":"mutable","name":"component","nameLocation":"21783:9:72","nodeType":"VariableDeclaration","scope":23857,"src":"21775:17:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23828,"name":"address","nodeType":"ElementaryTypeName","src":"21775:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23832,"mutability":"mutable","name":"kind","nameLocation":"21808:4:72","nodeType":"VariableDeclaration","scope":23857,"src":"21794:18:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"},"typeName":{"id":23831,"nodeType":"UserDefinedTypeName","pathNode":{"id":23830,"name":"ComponentKind","nameLocations":["21794:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":22910,"src":"21794:13:72"},"referencedDeclaration":22910,"src":"21794:13:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}},"visibility":"internal"}],"src":"21774:39:72"},"returnParameters":{"id":23834,"nodeType":"ParameterList","parameters":[],"src":"21828:0:72"},"scope":25449,"src":"21735:294:72","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":23917,"nodeType":"Block","src":"22110:313:72","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23873,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23868,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23864,"src":"22124:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":23871,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22144:1:72","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":23870,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22136:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23869,"name":"address","nodeType":"ElementaryTypeName","src":"22136:7:72","typeDescriptions":{}}},"id":23872,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22136:10:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"22124:22:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":23875,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23864,"src":"22164:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23874,"name":"InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23070,"src":"22148:15:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":23876,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22148:25:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":23867,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"22116:7:72","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":23877,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22116:58:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23878,"nodeType":"ExpressionStatement","src":"22116:58:72"},{"expression":{"arguments":[{"arguments":[{"id":23882,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23860,"src":"22207:6:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":23881,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22199:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23880,"name":"address","nodeType":"ElementaryTypeName","src":"22199:7:72","typeDescriptions":{}}},"id":23883,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22199:15:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":23884,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22910,"src":"22216:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$22910_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":23885,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"22230:6:72","memberName":"eToken","nodeType":"MemberAccess","referencedDeclaration":22907,"src":"22216:20:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}],"id":23879,"name":"_requireCompActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23827,"src":"22180:18:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$22910_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":23886,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22180:57:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23887,"nodeType":"ExpressionStatement","src":"22180:57:72"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":23891,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"22270:10:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":23892,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22270:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":23895,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23860,"src":"22292:6:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":23894,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22284:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23893,"name":"address","nodeType":"ElementaryTypeName","src":"22284:7:72","typeDescriptions":{}}},"id":23896,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22284:15:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23897,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23862,"src":"22301:6:72","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":23888,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22891,"src":"22243:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":23890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22253:16:72","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":8979,"src":"22243:26:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$7977_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":23898,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22243:65:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23899,"nodeType":"ExpressionStatement","src":"22243:65:72"},{"expression":{"arguments":[{"id":23903,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23862,"src":"22329:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":23904,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"22337:10:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":23905,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22337:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23906,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23864,"src":"22351:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":23900,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23860,"src":"22314:6:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":23902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22321:7:72","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":28778,"src":"22314:14:72","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$_t_address_$returns$__$","typeString":"function (uint256,address,address) external"}},"id":23907,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22314:46:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23908,"nodeType":"ExpressionStatement","src":"22314:46:72"},{"eventCall":{"arguments":[{"id":23910,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23860,"src":"22379:6:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},{"arguments":[],"expression":{"argumentTypes":[],"id":23911,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"22387:10:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":23912,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22387:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23913,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23864,"src":"22401:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23914,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23862,"src":"22411:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23909,"name":"Deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23126,"src":"22371:7:72","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IEToken_$28869_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IEToken,address,address,uint256)"}},"id":23915,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22371:47:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23916,"nodeType":"EmitStatement","src":"22366:52:72"}]},"id":23918,"implemented":true,"kind":"function","modifiers":[],"name":"_deposit","nameLocation":"22042:8:72","nodeType":"FunctionDefinition","parameters":{"id":23865,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23860,"mutability":"mutable","name":"eToken","nameLocation":"22059:6:72","nodeType":"VariableDeclaration","scope":23918,"src":"22051:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":23859,"nodeType":"UserDefinedTypeName","pathNode":{"id":23858,"name":"IEToken","nameLocations":["22051:7:72"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"22051:7:72"},"referencedDeclaration":28869,"src":"22051:7:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":23862,"mutability":"mutable","name":"amount","nameLocation":"22075:6:72","nodeType":"VariableDeclaration","scope":23918,"src":"22067:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23861,"name":"uint256","nodeType":"ElementaryTypeName","src":"22067:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23864,"mutability":"mutable","name":"receiver","nameLocation":"22091:8:72","nodeType":"VariableDeclaration","scope":23918,"src":"22083:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23863,"name":"address","nodeType":"ElementaryTypeName","src":"22083:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"22050:50:72"},"returnParameters":{"id":23866,"nodeType":"ParameterList","parameters":[],"src":"22110:0:72"},"scope":25449,"src":"22033:390:72","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[29136],"body":{"id":23938,"nodeType":"Block","src":"22556:45:72","statements":[{"expression":{"arguments":[{"id":23933,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23922,"src":"22571:6:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},{"id":23934,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23924,"src":"22579:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":23935,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23926,"src":"22587:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":23932,"name":"_deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23918,"src":"22562:8:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IEToken_$28869_$_t_uint256_$_t_address_$returns$__$","typeString":"function (contract IEToken,uint256,address)"}},"id":23936,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22562:34:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23937,"nodeType":"ExpressionStatement","src":"22562:34:72"}]},"documentation":{"id":23919,"nodeType":"StructuredDocumentation","src":"22427:27:72","text":"@inheritdoc IPolicyPool"},"functionSelector":"f45346dc","id":23939,"implemented":true,"kind":"function","modifiers":[{"id":23930,"kind":"modifierInvocation","modifierName":{"id":23929,"name":"whenNotPaused","nameLocations":["22542:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":3174,"src":"22542:13:72"},"nodeType":"ModifierInvocation","src":"22542:13:72"}],"name":"deposit","nameLocation":"22466:7:72","nodeType":"FunctionDefinition","overrides":{"id":23928,"nodeType":"OverrideSpecifier","overrides":[],"src":"22533:8:72"},"parameters":{"id":23927,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23922,"mutability":"mutable","name":"eToken","nameLocation":"22482:6:72","nodeType":"VariableDeclaration","scope":23939,"src":"22474:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":23921,"nodeType":"UserDefinedTypeName","pathNode":{"id":23920,"name":"IEToken","nameLocations":["22474:7:72"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"22474:7:72"},"referencedDeclaration":28869,"src":"22474:7:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":23924,"mutability":"mutable","name":"amount","nameLocation":"22498:6:72","nodeType":"VariableDeclaration","scope":23939,"src":"22490:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23923,"name":"uint256","nodeType":"ElementaryTypeName","src":"22490:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23926,"mutability":"mutable","name":"receiver","nameLocation":"22514:8:72","nodeType":"VariableDeclaration","scope":23939,"src":"22506:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23925,"name":"address","nodeType":"ElementaryTypeName","src":"22506:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"22473:50:72"},"returnParameters":{"id":23931,"nodeType":"ParameterList","parameters":[],"src":"22556:0:72"},"scope":25449,"src":"22457:144:72","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[29155],"body":{"id":23991,"nodeType":"Block","src":"22825:427:72","statements":[{"clauses":[{"block":{"id":23980,"nodeType":"Block","src":"22980:2:72","statements":[]},"errorName":"","id":23981,"nodeType":"TryCatchClause","src":"22980:2:72"},{"block":{"id":23982,"nodeType":"Block","src":"22989:2:72","statements":[]},"errorName":"","id":23983,"nodeType":"TryCatchClause","src":"22983:8:72"}],"externalCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":23968,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"22924:10:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":23969,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22924:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":23972,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"22946:4:72","typeDescriptions":{"typeIdentifier":"t_contract$_PolicyPool_$25449","typeString":"contract PolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PolicyPool_$25449","typeString":"contract PolicyPool"}],"id":23971,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22938:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23970,"name":"address","nodeType":"ElementaryTypeName","src":"22938:7:72","typeDescriptions":{}}},"id":23973,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22938:13:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23974,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23945,"src":"22953:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":23975,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23949,"src":"22961:8:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":23976,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23951,"src":"22971:1:72","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":23977,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23953,"src":"22974:1:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":23978,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23955,"src":"22977:1:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"arguments":[{"arguments":[{"id":23964,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22891,"src":"22905:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}],"id":23963,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22897:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23962,"name":"address","nodeType":"ElementaryTypeName","src":"22897:7:72","typeDescriptions":{}}},"id":23965,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22897:18:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23961,"name":"IERC20Permit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8899,"src":"22884:12:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Permit_$8899_$","typeString":"type(contract IERC20Permit)"}},"id":23966,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22884:32:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Permit_$8899","typeString":"contract IERC20Permit"}},"id":23967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22917:6:72","memberName":"permit","nodeType":"MemberAccess","referencedDeclaration":8884,"src":"22884:39:72","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (address,address,uint256,uint256,uint8,bytes32,bytes32) external"}},"id":23979,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22884:95:72","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23984,"nodeType":"TryStatement","src":"22880:111:72"},{"expression":{"arguments":[{"id":23986,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23943,"src":"23222:6:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},{"id":23987,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23945,"src":"23230:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":23988,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23947,"src":"23238:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":23985,"name":"_deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23918,"src":"23213:8:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IEToken_$28869_$_t_uint256_$_t_address_$returns$__$","typeString":"function (contract IEToken,uint256,address)"}},"id":23989,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23213:34:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23990,"nodeType":"ExpressionStatement","src":"23213:34:72"}]},"documentation":{"id":23940,"nodeType":"StructuredDocumentation","src":"22605:27:72","text":"@inheritdoc IPolicyPool"},"functionSelector":"de27010a","id":23992,"implemented":true,"kind":"function","modifiers":[{"id":23959,"kind":"modifierInvocation","modifierName":{"id":23958,"name":"whenNotPaused","nameLocations":["22811:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":3174,"src":"22811:13:72"},"nodeType":"ModifierInvocation","src":"22811:13:72"}],"name":"depositWithPermit","nameLocation":"22644:17:72","nodeType":"FunctionDefinition","overrides":{"id":23957,"nodeType":"OverrideSpecifier","overrides":[],"src":"22802:8:72"},"parameters":{"id":23956,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23943,"mutability":"mutable","name":"eToken","nameLocation":"22675:6:72","nodeType":"VariableDeclaration","scope":23992,"src":"22667:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":23942,"nodeType":"UserDefinedTypeName","pathNode":{"id":23941,"name":"IEToken","nameLocations":["22667:7:72"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"22667:7:72"},"referencedDeclaration":28869,"src":"22667:7:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":23945,"mutability":"mutable","name":"amount","nameLocation":"22695:6:72","nodeType":"VariableDeclaration","scope":23992,"src":"22687:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23944,"name":"uint256","nodeType":"ElementaryTypeName","src":"22687:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23947,"mutability":"mutable","name":"receiver","nameLocation":"22715:8:72","nodeType":"VariableDeclaration","scope":23992,"src":"22707:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23946,"name":"address","nodeType":"ElementaryTypeName","src":"22707:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23949,"mutability":"mutable","name":"deadline","nameLocation":"22737:8:72","nodeType":"VariableDeclaration","scope":23992,"src":"22729:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23948,"name":"uint256","nodeType":"ElementaryTypeName","src":"22729:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23951,"mutability":"mutable","name":"v","nameLocation":"22757:1:72","nodeType":"VariableDeclaration","scope":23992,"src":"22751:7:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":23950,"name":"uint8","nodeType":"ElementaryTypeName","src":"22751:5:72","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":23953,"mutability":"mutable","name":"r","nameLocation":"22772:1:72","nodeType":"VariableDeclaration","scope":23992,"src":"22764:9:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":23952,"name":"bytes32","nodeType":"ElementaryTypeName","src":"22764:7:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":23955,"mutability":"mutable","name":"s","nameLocation":"22787:1:72","nodeType":"VariableDeclaration","scope":23992,"src":"22779:9:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":23954,"name":"bytes32","nodeType":"ElementaryTypeName","src":"22779:7:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"22661:131:72"},"returnParameters":{"id":23960,"nodeType":"ParameterList","parameters":[],"src":"22825:0:72"},"scope":25449,"src":"22635:617:72","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[29170],"body":{"id":24051,"nodeType":"Block","src":"23455:297:72","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":24016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24011,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24000,"src":"23469:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":24014,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23489:1:72","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":24013,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23481:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24012,"name":"address","nodeType":"ElementaryTypeName","src":"23481:7:72","typeDescriptions":{}}},"id":24015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23481:10:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"23469:22:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":24018,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24000,"src":"23509:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24017,"name":"InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23070,"src":"23493:15:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":24019,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23493:25:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":24010,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"23461:7:72","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":24020,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23461:58:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24021,"nodeType":"ExpressionStatement","src":"23461:58:72"},{"expression":{"arguments":[{"arguments":[{"id":24025,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23996,"src":"23564:6:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":24024,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23556:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24023,"name":"address","nodeType":"ElementaryTypeName","src":"23556:7:72","typeDescriptions":{}}},"id":24026,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23556:15:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24027,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22910,"src":"23573:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$22910_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":24028,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"23587:6:72","memberName":"eToken","nodeType":"MemberAccess","referencedDeclaration":22907,"src":"23573:20:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}],"id":24022,"name":"_requireCompActiveOrDeprecated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23857,"src":"23525:30:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$22910_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":24029,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23525:69:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24030,"nodeType":"ExpressionStatement","src":"23525:69:72"},{"expression":{"id":24040,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":24031,"name":"amountWithdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24008,"src":"23600:15:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":24034,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23998,"src":"23634:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":24035,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"23642:10:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24036,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23642:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24037,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24002,"src":"23656:5:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24038,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24000,"src":"23663:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":24032,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23996,"src":"23618:6:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":24033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23625:8:72","memberName":"withdraw","nodeType":"MemberAccess","referencedDeclaration":28792,"src":"23618:15:72","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address,address,address) external returns (uint256)"}},"id":24039,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23618:54:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23600:72:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":24041,"nodeType":"ExpressionStatement","src":"23600:72:72"},{"eventCall":{"arguments":[{"id":24043,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23996,"src":"23692:6:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},{"arguments":[],"expression":{"argumentTypes":[],"id":24044,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"23700:10:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23700:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24046,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24000,"src":"23714:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24047,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24002,"src":"23724:5:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24048,"name":"amountWithdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24008,"src":"23731:15:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24042,"name":"Withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23140,"src":"23683:8:72","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IEToken_$28869_$_t_address_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IEToken,address,address,address,uint256)"}},"id":24049,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23683:64:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24050,"nodeType":"EmitStatement","src":"23678:69:72"}]},"documentation":{"id":23993,"nodeType":"StructuredDocumentation","src":"23256:27:72","text":"@inheritdoc IPolicyPool"},"functionSelector":"dfcd412e","id":24052,"implemented":true,"kind":"function","modifiers":[{"id":24006,"kind":"modifierInvocation","modifierName":{"id":24005,"name":"whenNotPaused","nameLocations":["23407:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":3174,"src":"23407:13:72"},"nodeType":"ModifierInvocation","src":"23407:13:72"}],"name":"withdraw","nameLocation":"23295:8:72","nodeType":"FunctionDefinition","overrides":{"id":24004,"nodeType":"OverrideSpecifier","overrides":[],"src":"23398:8:72"},"parameters":{"id":24003,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23996,"mutability":"mutable","name":"eToken","nameLocation":"23317:6:72","nodeType":"VariableDeclaration","scope":24052,"src":"23309:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":23995,"nodeType":"UserDefinedTypeName","pathNode":{"id":23994,"name":"IEToken","nameLocations":["23309:7:72"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"23309:7:72"},"referencedDeclaration":28869,"src":"23309:7:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":23998,"mutability":"mutable","name":"amount","nameLocation":"23337:6:72","nodeType":"VariableDeclaration","scope":24052,"src":"23329:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23997,"name":"uint256","nodeType":"ElementaryTypeName","src":"23329:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24000,"mutability":"mutable","name":"receiver","nameLocation":"23357:8:72","nodeType":"VariableDeclaration","scope":24052,"src":"23349:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23999,"name":"address","nodeType":"ElementaryTypeName","src":"23349:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24002,"mutability":"mutable","name":"owner","nameLocation":"23379:5:72","nodeType":"VariableDeclaration","scope":24052,"src":"23371:13:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24001,"name":"address","nodeType":"ElementaryTypeName","src":"23371:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"23303:85:72"},"returnParameters":{"id":24009,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24008,"mutability":"mutable","name":"amountWithdrawn","nameLocation":"23438:15:72","nodeType":"VariableDeclaration","scope":24052,"src":"23430:23:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24007,"name":"uint256","nodeType":"ElementaryTypeName","src":"23430:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23429:25:72"},"scope":25449,"src":"23286:466:72","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[29064],"body":{"id":24266,"nodeType":"Block","src":"23964:1550:72","statements":[{"assignments":[24072],"declarations":[{"constant":false,"id":24072,"mutability":"mutable","name":"rm","nameLocation":"23996:2:72","nodeType":"VariableDeclaration","scope":24266,"src":"23984:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},"typeName":{"id":24071,"nodeType":"UserDefinedTypeName","pathNode":{"id":24070,"name":"IRiskModule","nameLocations":["23984:11:72"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"23984:11:72"},"referencedDeclaration":29295,"src":"23984:11:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"visibility":"internal"}],"id":24077,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":24074,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"24013:10:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24075,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24013:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24073,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"24001:11:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}},"id":24076,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24001:25:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"nodeType":"VariableDeclarationStatement","src":"23984:42:72"},{"expression":{"arguments":[{"arguments":[{"id":24081,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24072,"src":"24059:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}],"id":24080,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24051:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24079,"name":"address","nodeType":"ElementaryTypeName","src":"24051:7:72","typeDescriptions":{}}},"id":24082,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24051:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24083,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22910,"src":"24064:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$22910_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":24084,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"24078:10:72","memberName":"riskModule","nodeType":"MemberAccess","referencedDeclaration":22908,"src":"24064:24:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}],"id":24078,"name":"_requireCompActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23827,"src":"24032:18:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$22910_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":24085,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24032:57:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24086,"nodeType":"ExpressionStatement","src":"24032:57:72"},{"assignments":[24089],"declarations":[{"constant":false,"id":24089,"mutability":"mutable","name":"pa","nameLocation":"24112:2:72","nodeType":"VariableDeclaration","scope":24266,"src":"24095:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"},"typeName":{"id":24088,"nodeType":"UserDefinedTypeName","pathNode":{"id":24087,"name":"IPremiumsAccount","nameLocations":["24095:16:72"],"nodeType":"IdentifierPath","referencedDeclaration":29276,"src":"24095:16:72"},"referencedDeclaration":29276,"src":"24095:16:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"id":24093,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24090,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24072,"src":"24117:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"id":24091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24120:15:72","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":29294,"src":"24117:18:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPremiumsAccount_$29276_$","typeString":"function () view external returns (contract IPremiumsAccount)"}},"id":24092,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24117:20:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"nodeType":"VariableDeclarationStatement","src":"24095:42:72"},{"expression":{"arguments":[{"arguments":[{"id":24097,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24089,"src":"24170:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}],"id":24096,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24162:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24095,"name":"address","nodeType":"ElementaryTypeName","src":"24162:7:72","typeDescriptions":{}}},"id":24098,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24162:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24099,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22910,"src":"24175:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$22910_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":24100,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"24189:15:72","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":22909,"src":"24175:29:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}],"id":24094,"name":"_requireCompActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23827,"src":"24143:18:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$22910_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":24101,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24143:62:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24102,"nodeType":"ExpressionStatement","src":"24143:62:72"},{"expression":{"id":24114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":24103,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"24227:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24105,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"24234:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"24227:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":24110,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24072,"src":"24267:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}],"id":24109,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24259:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24108,"name":"address","nodeType":"ElementaryTypeName","src":"24259:7:72","typeDescriptions":{}}},"id":24111,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24259:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24112,"name":"internalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24062,"src":"24272:10:72","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint96","typeString":"uint96"}],"expression":{"id":24106,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"24239:6:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":24107,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24246:12:72","memberName":"makePolicyId","nodeType":"MemberAccess","referencedDeclaration":22825,"src":"24239:19:72","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_uint96_$returns$_t_uint256_$","typeString":"function (address,uint96) pure returns (uint256)"}},"id":24113,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24239:44:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24227:56:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":24115,"nodeType":"ExpressionStatement","src":"24227:56:72"},{"expression":{"id":24124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":24116,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"24289:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24118,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"24296:5:72","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":22253,"src":"24289:12:72","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":24121,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"24311:5:72","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":24122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24317:9:72","memberName":"timestamp","nodeType":"MemberAccess","src":"24311:15:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24120,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24304:6:72","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":24119,"name":"uint40","nodeType":"ElementaryTypeName","src":"24304:6:72","typeDescriptions":{}}},"id":24123,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24304:23:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"24289:38:72","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"id":24125,"nodeType":"ExpressionStatement","src":"24289:38:72"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":24135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":24127,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22930,"src":"24341:9:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":24130,"indexExpression":{"expression":{"id":24128,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"24351:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24129,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24358:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"24351:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"24341:20:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":24133,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24373:1:72","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":24132,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24365:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":24131,"name":"bytes32","nodeType":"ElementaryTypeName","src":"24365:7:72","typeDescriptions":{}}},"id":24134,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24365:10:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"24341:34:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":24137,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"24397:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24138,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24404:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"24397:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24136,"name":"PolicyAlreadyExists","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23011,"src":"24377:19:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":24139,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24377:30:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":24126,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"24333:7:72","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":24140,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24333:75:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24141,"nodeType":"ExpressionStatement","src":"24333:75:72"},{"expression":{"id":24149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":24142,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22930,"src":"24414:9:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":24145,"indexExpression":{"expression":{"id":24143,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"24424:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24144,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24431:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"24424:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"24414:20:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24146,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"24437:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24147,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24444:4:72","memberName":"hash","nodeType":"MemberAccess","referencedDeclaration":22760,"src":"24437:11:72","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_bytes32_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (bytes32)"}},"id":24148,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24437:13:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"24414:36:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":24150,"nodeType":"ExpressionStatement","src":"24414:36:72"},{"expression":{"arguments":[{"id":24152,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24060,"src":"24466:12:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24153,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"24480:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24154,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24487:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"24480:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"","id":24155,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"24491:2:72","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":24151,"name":"_safeMint","nodeType":"Identifier","overloadedDeclarations":[2526,2556],"referencedDeclaration":2556,"src":"24456:9:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,uint256,bytes memory)"}},"id":24156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24456:38:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24157,"nodeType":"ExpressionStatement","src":"24456:38:72"},{"expression":{"arguments":[{"id":24159,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24072,"src":"24516:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},{"hexValue":"74727565","id":24160,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"24520:4:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"id":24161,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"24526:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24162,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24533:6:72","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":22235,"src":"24526:13:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24158,"name":"_changeExposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25101,"src":"24500:15:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IRiskModule_$29295_$_t_bool_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,bool,uint256)"}},"id":24163,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24500:40:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24164,"nodeType":"ExpressionStatement","src":"24500:40:72"},{"expression":{"arguments":[{"id":24168,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"24584:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"expression":{"id":24165,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24089,"src":"24567:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"id":24167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24570:13:72","memberName":"policyCreated","nodeType":"MemberAccess","referencedDeclaration":29202,"src":"24567:16:72","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PolicyData_$22256_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory) external"}},"id":24169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24567:24:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24170,"nodeType":"ExpressionStatement","src":"24567:24:72"},{"expression":{"arguments":[{"id":24174,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24058,"src":"24655:5:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":24177,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24089,"src":"24670:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}],"id":24176,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24662:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24175,"name":"address","nodeType":"ElementaryTypeName","src":"24662:7:72","typeDescriptions":{}}},"id":24178,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24662:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24179,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"24675:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24180,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24682:11:72","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22243,"src":"24675:18:72","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":24171,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22891,"src":"24628:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":24173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24638:16:72","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":8979,"src":"24628:26:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$7977_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":24181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24628:66:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24182,"nodeType":"ExpressionStatement","src":"24628:66:72"},{"assignments":[24185,24188],"declarations":[{"constant":false,"id":24185,"mutability":"mutable","name":"jrEtk","nameLocation":"24709:5:72","nodeType":"VariableDeclaration","scope":24266,"src":"24701:13:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":24184,"nodeType":"UserDefinedTypeName","pathNode":{"id":24183,"name":"IEToken","nameLocations":["24701:7:72"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"24701:7:72"},"referencedDeclaration":28869,"src":"24701:7:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":24188,"mutability":"mutable","name":"srEtk","nameLocation":"24724:5:72","nodeType":"VariableDeclaration","scope":24266,"src":"24716:13:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":24187,"nodeType":"UserDefinedTypeName","pathNode":{"id":24186,"name":"IEToken","nameLocations":["24716:7:72"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"24716:7:72"},"referencedDeclaration":28869,"src":"24716:7:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"}],"id":24192,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24189,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24089,"src":"24733:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"id":24190,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24736:4:72","memberName":"etks","nodeType":"MemberAccess","referencedDeclaration":29269,"src":"24733:7:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IEToken_$28869_$_t_contract$_IEToken_$28869_$","typeString":"function () view external returns (contract IEToken,contract IEToken)"}},"id":24191,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24733:9:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_contract$_IEToken_$28869_$_t_contract$_IEToken_$28869_$","typeString":"tuple(contract IEToken,contract IEToken)"}},"nodeType":"VariableDeclarationStatement","src":"24700:42:72"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24196,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24193,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"24752:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24194,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24759:5:72","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":22251,"src":"24752:12:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":24195,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24767:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24752:16:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24209,"nodeType":"IfStatement","src":"24748:85:72","trueBody":{"expression":{"arguments":[{"id":24200,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24058,"src":"24797:5:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":24203,"name":"srEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24188,"src":"24812:5:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":24202,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24804:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24201,"name":"address","nodeType":"ElementaryTypeName","src":"24804:7:72","typeDescriptions":{}}},"id":24204,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24804:14:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24205,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"24820:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24206,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24827:5:72","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":22251,"src":"24820:12:72","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":24197,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22891,"src":"24770:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":24199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24780:16:72","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":8979,"src":"24770:26:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$7977_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":24207,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24770:63:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24208,"nodeType":"ExpressionStatement","src":"24770:63:72"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24210,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"24843:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24211,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24850:5:72","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":22249,"src":"24843:12:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":24212,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24858:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24843:16:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24226,"nodeType":"IfStatement","src":"24839:85:72","trueBody":{"expression":{"arguments":[{"id":24217,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24058,"src":"24888:5:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":24220,"name":"jrEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24185,"src":"24903:5:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":24219,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24895:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24218,"name":"address","nodeType":"ElementaryTypeName","src":"24895:7:72","typeDescriptions":{}}},"id":24221,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24895:14:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24222,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"24911:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24223,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24918:5:72","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":22249,"src":"24911:12:72","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":24214,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22891,"src":"24861:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":24216,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24871:16:72","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":8979,"src":"24861:26:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$7977_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":24224,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24861:63:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24225,"nodeType":"ExpressionStatement","src":"24861:63:72"}},{"expression":{"arguments":[{"id":24230,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24058,"src":"24957:5:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24231,"name":"_treasury","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22894,"src":"24964:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24232,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"24975:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24233,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24982:16:72","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":22245,"src":"24975:23:72","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":24227,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22891,"src":"24930:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":24229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24940:16:72","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":8979,"src":"24930:26:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$7977_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":24234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24930:69:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24235,"nodeType":"ExpressionStatement","src":"24930:69:72"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24236,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"25009:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24237,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25016:17:72","memberName":"partnerCommission","nodeType":"MemberAccess","referencedDeclaration":22247,"src":"25009:24:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":24238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25036:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"25009:28:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":24244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24240,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24058,"src":"25041:5:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24241,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24072,"src":"25050:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"id":24242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25053:6:72","memberName":"wallet","nodeType":"MemberAccess","referencedDeclaration":29287,"src":"25050:9:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":24243,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25050:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"25041:20:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25009:52:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24257,"nodeType":"IfStatement","src":"25005:136:72","trueBody":{"expression":{"arguments":[{"id":24249,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24058,"src":"25096:5:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24250,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24072,"src":"25103:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"id":24251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25106:6:72","memberName":"wallet","nodeType":"MemberAccess","referencedDeclaration":29287,"src":"25103:9:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":24252,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25103:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24253,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"25116:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24254,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25123:17:72","memberName":"partnerCommission","nodeType":"MemberAccess","referencedDeclaration":22247,"src":"25116:24:72","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":24246,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22891,"src":"25069:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":24248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25079:16:72","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":8979,"src":"25069:26:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$7977_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":24255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25069:72:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24256,"nodeType":"ExpressionStatement","src":"25069:72:72"}},{"documentation":" This code does up to 5 ERC20 transfers. This can be avoided to reduce the gas cost, by implementing delayed\n transfers. This might be considered in the future, but to avoid increasing the complexity and since so far we\n operate on low gas-cost blockchains, we keep it as it is.","eventCall":{"arguments":[{"id":24259,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24072,"src":"25476:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},{"id":24260,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"25480:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":24258,"name":"NewPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29002,"src":"25466:9:72","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IRiskModule_$29295_$_t_struct$_PolicyData_$22256_memory_ptr_$returns$__$","typeString":"function (contract IRiskModule,struct Policy.PolicyData memory)"}},"id":24261,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25466:21:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24262,"nodeType":"EmitStatement","src":"25461:26:72"},{"expression":{"expression":{"id":24263,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24056,"src":"25500:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24264,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25507:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"25500:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24069,"id":24265,"nodeType":"Return","src":"25493:16:72"}]},"documentation":{"id":24053,"nodeType":"StructuredDocumentation","src":"23756:27:72","text":"@inheritdoc IPolicyPool"},"functionSelector":"0d100acb","id":24267,"implemented":true,"kind":"function","modifiers":[{"id":24066,"kind":"modifierInvocation","modifierName":{"id":24065,"name":"whenNotPaused","nameLocations":["23932:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":3174,"src":"23932:13:72"},"nodeType":"ModifierInvocation","src":"23932:13:72"}],"name":"newPolicy","nameLocation":"23795:9:72","nodeType":"FunctionDefinition","overrides":{"id":24064,"nodeType":"OverrideSpecifier","overrides":[],"src":"23923:8:72"},"parameters":{"id":24063,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24056,"mutability":"mutable","name":"policy","nameLocation":"23835:6:72","nodeType":"VariableDeclaration","scope":24267,"src":"23810:31:72","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":24055,"nodeType":"UserDefinedTypeName","pathNode":{"id":24054,"name":"Policy.PolicyData","nameLocations":["23810:6:72","23817:10:72"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"23810:17:72"},"referencedDeclaration":22256,"src":"23810:17:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":24058,"mutability":"mutable","name":"payer","nameLocation":"23855:5:72","nodeType":"VariableDeclaration","scope":24267,"src":"23847:13:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24057,"name":"address","nodeType":"ElementaryTypeName","src":"23847:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24060,"mutability":"mutable","name":"policyHolder","nameLocation":"23874:12:72","nodeType":"VariableDeclaration","scope":24267,"src":"23866:20:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24059,"name":"address","nodeType":"ElementaryTypeName","src":"23866:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24062,"mutability":"mutable","name":"internalId","nameLocation":"23899:10:72","nodeType":"VariableDeclaration","scope":24267,"src":"23892:17:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":24061,"name":"uint96","nodeType":"ElementaryTypeName","src":"23892:6:72","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"23804:109:72"},"returnParameters":{"id":24069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24068,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24267,"src":"23955:7:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24067,"name":"uint256","nodeType":"ElementaryTypeName","src":"23955:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23954:9:72"},"scope":25449,"src":"23786:1728:72","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[29080],"body":{"id":24591,"nodeType":"Block","src":"25800:2711:72","statements":[{"expression":{"arguments":[{"id":24287,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"25836:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}],"id":24286,"name":"_validatePolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24803,"src":"25820:15:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$22256_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory) view"}},"id":24288,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25820:26:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24289,"nodeType":"ExpressionStatement","src":"25820:26:72"},{"assignments":[24292],"declarations":[{"constant":false,"id":24292,"mutability":"mutable","name":"rm","nameLocation":"25864:2:72","nodeType":"VariableDeclaration","scope":24591,"src":"25852:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},"typeName":{"id":24291,"nodeType":"UserDefinedTypeName","pathNode":{"id":24290,"name":"IRiskModule","nameLocations":["25852:11:72"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"25852:11:72"},"referencedDeclaration":29295,"src":"25852:11:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"visibility":"internal"}],"id":24297,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":24294,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"25881:10:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24295,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25881:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24293,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"25869:11:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}},"id":24296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25869:25:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"nodeType":"VariableDeclarationStatement","src":"25852:42:72"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":24307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":24300,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"25929:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25939:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"25929:12:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":24298,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"25904:6:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":24299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25911:17:72","memberName":"extractRiskModule","nodeType":"MemberAccess","referencedDeclaration":22779,"src":"25904:24:72","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) pure returns (address)"}},"id":24302,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25904:38:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":24305,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24292,"src":"25954:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}],"id":24304,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25946:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24303,"name":"address","nodeType":"ElementaryTypeName","src":"25946:7:72","typeDescriptions":{}}},"id":24306,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25946:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"25904:53:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24311,"nodeType":"IfStatement","src":"25900:89:72","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":24308,"name":"OnlyRiskModuleAllowed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23001,"src":"25966:21:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":24309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25966:23:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":24310,"nodeType":"RevertStatement","src":"25959:30:72"}},{"expression":{"arguments":[{"arguments":[{"id":24315,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24292,"src":"26022:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}],"id":24314,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26014:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24313,"name":"address","nodeType":"ElementaryTypeName","src":"26014:7:72","typeDescriptions":{}}},"id":24316,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26014:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24317,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22910,"src":"26027:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$22910_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":24318,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26041:10:72","memberName":"riskModule","nodeType":"MemberAccess","referencedDeclaration":22908,"src":"26027:24:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}],"id":24312,"name":"_requireCompActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23827,"src":"25995:18:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$22910_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":24319,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25995:57:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24320,"nodeType":"ExpressionStatement","src":"25995:57:72"},{"assignments":[24323],"declarations":[{"constant":false,"id":24323,"mutability":"mutable","name":"pa","nameLocation":"26075:2:72","nodeType":"VariableDeclaration","scope":24591,"src":"26058:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"},"typeName":{"id":24322,"nodeType":"UserDefinedTypeName","pathNode":{"id":24321,"name":"IPremiumsAccount","nameLocations":["26058:16:72"],"nodeType":"IdentifierPath","referencedDeclaration":29276,"src":"26058:16:72"},"referencedDeclaration":29276,"src":"26058:16:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"id":24327,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24324,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24292,"src":"26080:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"id":24325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26083:15:72","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":29294,"src":"26080:18:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPremiumsAccount_$29276_$","typeString":"function () view external returns (contract IPremiumsAccount)"}},"id":24326,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26080:20:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"nodeType":"VariableDeclarationStatement","src":"26058:42:72"},{"expression":{"arguments":[{"arguments":[{"id":24331,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24323,"src":"26133:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}],"id":24330,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26125:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24329,"name":"address","nodeType":"ElementaryTypeName","src":"26125:7:72","typeDescriptions":{}}},"id":24332,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26125:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24333,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22910,"src":"26138:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$22910_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":24334,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26152:15:72","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":22909,"src":"26138:29:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}],"id":24328,"name":"_requireCompActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23827,"src":"26106:18:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$22910_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":24335,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26106:62:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24336,"nodeType":"ExpressionStatement","src":"26106:62:72"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":24345,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24338,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"26189:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26199:10:72","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":22255,"src":"26189:20:72","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"expression":{"id":24342,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"26219:5:72","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":24343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26225:9:72","memberName":"timestamp","nodeType":"MemberAccess","src":"26219:15:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24341,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26212:6:72","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":24340,"name":"uint40","nodeType":"ElementaryTypeName","src":"26212:6:72","typeDescriptions":{}}},"id":24344,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26212:23:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"26189:46:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":24353,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24346,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"26239:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24347,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26250:10:72","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":22255,"src":"26239:21:72","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"arguments":[{"expression":{"id":24350,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"26271:5:72","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":24351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26277:9:72","memberName":"timestamp","nodeType":"MemberAccess","src":"26271:15:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24349,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26264:6:72","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":24348,"name":"uint40","nodeType":"ElementaryTypeName","src":"26264:6:72","typeDescriptions":{}}},"id":24352,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26264:23:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"26239:48:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26189:98:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":24356,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"26316:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26326:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"26316:12:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24355,"name":"PolicyAlreadyExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23016,"src":"26295:20:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":24358,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26295:34:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":24337,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"26174:7:72","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":24359,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26174:161:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24360,"nodeType":"ExpressionStatement","src":"26174:161:72"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24396,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24390,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24372,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":24366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24362,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"26356:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26366:5:72","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":22253,"src":"26356:15:72","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":24364,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"26375:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24365,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26386:5:72","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":22253,"src":"26375:16:72","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"26356:35:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24367,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"26403:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26413:11:72","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22243,"src":"26403:21:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":24369,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"26428:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24370,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26439:11:72","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22243,"src":"26428:22:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26403:47:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26356:94:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24373,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"26462:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26472:16:72","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":22245,"src":"26462:26:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":24375,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"26492:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24376,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26503:16:72","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":22245,"src":"26492:27:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26462:57:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26356:163:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24383,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24379,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"26531:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24380,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26541:5:72","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":22249,"src":"26531:15:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":24381,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"26550:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24382,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26561:5:72","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":22249,"src":"26550:16:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26531:35:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26356:210:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24389,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24385,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"26578:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26588:5:72","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":22251,"src":"26578:15:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":24387,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"26597:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24388,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26608:5:72","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":22251,"src":"26597:16:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26578:35:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26356:257:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24395,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24391,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"26625:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24392,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26635:17:72","memberName":"partnerCommission","nodeType":"MemberAccess","referencedDeclaration":22247,"src":"26625:27:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":24393,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"26656:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24394,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26667:17:72","memberName":"partnerCommission","nodeType":"MemberAccess","referencedDeclaration":22247,"src":"26656:28:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26625:59:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26356:328:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":24398,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"26717:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"id":24399,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"26728:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":24397,"name":"InvalidPolicyReplacement","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23039,"src":"26692:24:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_struct$_PolicyData_$22256_memory_ptr_$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_error_$","typeString":"function (struct Policy.PolicyData memory,struct Policy.PolicyData memory) pure returns (error)"}},"id":24400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26692:47:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":24361,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"26341:7:72","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":24401,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26341:404:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24402,"nodeType":"ExpressionStatement","src":"26341:404:72"},{"expression":{"id":24414,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":24403,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"26835:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24405,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"26846:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"26835:13:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":24410,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24292,"src":"26879:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}],"id":24409,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26871:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24408,"name":"address","nodeType":"ElementaryTypeName","src":"26871:7:72","typeDescriptions":{}}},"id":24411,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26871:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24412,"name":"internalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24278,"src":"26884:10:72","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint96","typeString":"uint96"}],"expression":{"id":24406,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"26851:6:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":24407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26858:12:72","memberName":"makePolicyId","nodeType":"MemberAccess","referencedDeclaration":22825,"src":"26851:19:72","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_uint96_$returns$_t_uint256_$","typeString":"function (address,uint96) pure returns (uint256)"}},"id":24413,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26851:44:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26835:60:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":24415,"nodeType":"ExpressionStatement","src":"26835:60:72"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":24425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":24417,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22930,"src":"26909:9:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":24420,"indexExpression":{"expression":{"id":24418,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"26919:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24419,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26930:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"26919:13:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"26909:24:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":24423,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26945:1:72","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":24422,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26937:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":24421,"name":"bytes32","nodeType":"ElementaryTypeName","src":"26937:7:72","typeDescriptions":{}}},"id":24424,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26937:10:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"26909:38:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":24427,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"26969:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24428,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26980:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"26969:13:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24426,"name":"PolicyAlreadyExists","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23011,"src":"26949:19:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":24429,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26949:34:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":24416,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"26901:7:72","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":24430,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26901:83:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24431,"nodeType":"ExpressionStatement","src":"26901:83:72"},{"expression":{"id":24439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":24432,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22930,"src":"26990:9:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":24435,"indexExpression":{"expression":{"id":24433,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"27000:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24434,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27011:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"27000:13:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"26990:24:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24436,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"27017:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24437,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27028:4:72","memberName":"hash","nodeType":"MemberAccess","referencedDeclaration":22760,"src":"27017:15:72","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_bytes32_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (bytes32)"}},"id":24438,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27017:17:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"26990:44:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":24440,"nodeType":"ExpressionStatement","src":"26990:44:72"},{"assignments":[24442],"declarations":[{"constant":false,"id":24442,"mutability":"mutable","name":"policyHolder","nameLocation":"27048:12:72","nodeType":"VariableDeclaration","scope":24591,"src":"27040:20:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24441,"name":"address","nodeType":"ElementaryTypeName","src":"27040:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":24447,"initialValue":{"arguments":[{"expression":{"id":24444,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"27071:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27081:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"27071:12:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24443,"name":"ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1978,"src":"27063:7:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":24446,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27063:21:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"27040:44:72"},{"expression":{"arguments":[{"id":24449,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24442,"src":"27100:12:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24450,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"27114:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24451,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27125:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"27114:13:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"","id":24452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"27129:2:72","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":24448,"name":"_safeMint","nodeType":"Identifier","overloadedDeclarations":[2526,2556],"referencedDeclaration":2556,"src":"27090:9:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,uint256,bytes memory)"}},"id":24453,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27090:42:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24454,"nodeType":"ExpressionStatement","src":"27090:42:72"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24455,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"27142:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24456,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27153:6:72","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":22235,"src":"27142:17:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":24457,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"27162:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27172:6:72","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":22235,"src":"27162:16:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27142:36:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"arguments":[{"id":24471,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24292,"src":"27270:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},{"hexValue":"66616c7365","id":24472,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"27274:5:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24477,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24473,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"27281:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27291:6:72","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":22235,"src":"27281:16:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":24475,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"27300:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24476,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27311:6:72","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":22235,"src":"27300:17:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27281:36:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24470,"name":"_changeExposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25101,"src":"27254:15:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IRiskModule_$29295_$_t_bool_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,bool,uint256)"}},"id":24478,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27254:64:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24479,"nodeType":"ExpressionStatement","src":"27254:64:72"},"id":24480,"nodeType":"IfStatement","src":"27138:180:72","trueBody":{"expression":{"arguments":[{"id":24461,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24292,"src":"27196:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},{"hexValue":"74727565","id":24462,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"27200:4:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24463,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"27206:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24464,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27217:6:72","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":22235,"src":"27206:17:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":24465,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"27226:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24466,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27236:6:72","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":22235,"src":"27226:16:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27206:36:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24460,"name":"_changeExposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25101,"src":"27180:15:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IRiskModule_$29295_$_t_bool_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,bool,uint256)"}},"id":24468,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27180:63:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24469,"nodeType":"ExpressionStatement","src":"27180:63:72"}},{"expression":{"id":24485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"27324:30:72","subExpression":{"baseExpression":{"id":24481,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22930,"src":"27331:9:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":24484,"indexExpression":{"expression":{"id":24482,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"27341:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24483,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27351:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"27341:12:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"27331:23:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24486,"nodeType":"ExpressionStatement","src":"27324:30:72"},{"expression":{"arguments":[{"id":24490,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"27399:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"id":24491,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"27410:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"expression":{"id":24487,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24323,"src":"27381:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"id":24489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27384:14:72","memberName":"policyReplaced","nodeType":"MemberAccess","referencedDeclaration":29212,"src":"27381:17:72","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PolicyData_$22256_memory_ptr_$_t_struct$_PolicyData_$22256_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory,struct Policy.PolicyData memory) external"}},"id":24492,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27381:40:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24493,"nodeType":"ExpressionStatement","src":"27381:40:72"},{"expression":{"arguments":[{"id":24495,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24276,"src":"27477:5:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":24498,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24323,"src":"27492:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}],"id":24497,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27484:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24496,"name":"address","nodeType":"ElementaryTypeName","src":"27484:7:72","typeDescriptions":{}}},"id":24499,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27484:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24500,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"27497:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24501,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27508:11:72","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22243,"src":"27497:22:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":24502,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"27521:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27531:11:72","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22243,"src":"27521:21:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24494,"name":"_transferIfNonZero","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24776,"src":"27458:18:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":24504,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27458:85:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24505,"nodeType":"ExpressionStatement","src":"27458:85:72"},{"assignments":[24508,24511],"declarations":[{"constant":false,"id":24508,"mutability":"mutable","name":"jrEtk","nameLocation":"27558:5:72","nodeType":"VariableDeclaration","scope":24591,"src":"27550:13:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":24507,"nodeType":"UserDefinedTypeName","pathNode":{"id":24506,"name":"IEToken","nameLocations":["27550:7:72"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"27550:7:72"},"referencedDeclaration":28869,"src":"27550:7:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":24511,"mutability":"mutable","name":"srEtk","nameLocation":"27573:5:72","nodeType":"VariableDeclaration","scope":24591,"src":"27565:13:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":24510,"nodeType":"UserDefinedTypeName","pathNode":{"id":24509,"name":"IEToken","nameLocations":["27565:7:72"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"27565:7:72"},"referencedDeclaration":28869,"src":"27565:7:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"}],"id":24515,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24512,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24323,"src":"27582:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"id":24513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27585:4:72","memberName":"etks","nodeType":"MemberAccess","referencedDeclaration":29269,"src":"27582:7:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IEToken_$28869_$_t_contract$_IEToken_$28869_$","typeString":"function () view external returns (contract IEToken,contract IEToken)"}},"id":24514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27582:9:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_contract$_IEToken_$28869_$_t_contract$_IEToken_$28869_$","typeString":"tuple(contract IEToken,contract IEToken)"}},"nodeType":"VariableDeclarationStatement","src":"27549:42:72"},{"expression":{"arguments":[{"id":24517,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24276,"src":"27616:5:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":24520,"name":"srEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24511,"src":"27631:5:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":24519,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27623:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24518,"name":"address","nodeType":"ElementaryTypeName","src":"27623:7:72","typeDescriptions":{}}},"id":24521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27623:14:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24522,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"27639:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24523,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27650:5:72","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":22251,"src":"27639:16:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":24524,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"27657:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27667:5:72","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":22251,"src":"27657:15:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24516,"name":"_transferIfNonZero","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24776,"src":"27597:18:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":24526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27597:76:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24527,"nodeType":"ExpressionStatement","src":"27597:76:72"},{"expression":{"arguments":[{"id":24529,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24276,"src":"27698:5:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":24532,"name":"jrEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24508,"src":"27713:5:72","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":24531,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27705:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24530,"name":"address","nodeType":"ElementaryTypeName","src":"27705:7:72","typeDescriptions":{}}},"id":24533,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27705:14:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24534,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"27721:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24535,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27732:5:72","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":22249,"src":"27721:16:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":24536,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"27739:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24537,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27749:5:72","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":22249,"src":"27739:15:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24528,"name":"_transferIfNonZero","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24776,"src":"27679:18:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":24538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27679:76:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24539,"nodeType":"ExpressionStatement","src":"27679:76:72"},{"expression":{"arguments":[{"id":24541,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24276,"src":"27780:5:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24542,"name":"_treasury","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22894,"src":"27787:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24543,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"27798:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24544,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27809:16:72","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":22245,"src":"27798:27:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":24545,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"27827:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24546,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27837:16:72","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":22245,"src":"27827:26:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24540,"name":"_transferIfNonZero","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24776,"src":"27761:18:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":24547,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27761:93:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24548,"nodeType":"ExpressionStatement","src":"27761:93:72"},{"assignments":[24550],"declarations":[{"constant":false,"id":24550,"mutability":"mutable","name":"rmWallet","nameLocation":"27868:8:72","nodeType":"VariableDeclaration","scope":24591,"src":"27860:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24549,"name":"address","nodeType":"ElementaryTypeName","src":"27860:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":24554,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24551,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24292,"src":"27879:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"id":24552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27882:6:72","memberName":"wallet","nodeType":"MemberAccess","referencedDeclaration":29287,"src":"27879:9:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":24553,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27879:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"27860:30:72"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":24557,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24555,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24276,"src":"27900:5:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":24556,"name":"rmWallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24550,"src":"27909:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27900:17:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24567,"nodeType":"IfStatement","src":"27896:123:72","trueBody":{"expression":{"arguments":[{"id":24559,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24276,"src":"27944:5:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24560,"name":"rmWallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24550,"src":"27951:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24561,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"27961:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24562,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27972:17:72","memberName":"partnerCommission","nodeType":"MemberAccess","referencedDeclaration":22247,"src":"27961:28:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":24563,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"27991:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28001:17:72","memberName":"partnerCommission","nodeType":"MemberAccess","referencedDeclaration":22247,"src":"27991:27:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24558,"name":"_transferIfNonZero","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24776,"src":"27925:18:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":24565,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27925:94:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24566,"nodeType":"ExpressionStatement","src":"27925:94:72"}},{"documentation":" This code does up to 5 ERC20 transfers. This can be avoided to reduce the gas cost, by implementing delayed\n transfers. This might be considered in the future, but to avoid increasing the complexity and since so far we\n operate on low gas-cost blockchains, we keep it as it is.","eventCall":{"arguments":[{"id":24569,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24292,"src":"28354:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},{"id":24570,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"28358:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":24568,"name":"NewPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29002,"src":"28344:9:72","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IRiskModule_$29295_$_t_struct$_PolicyData_$22256_memory_ptr_$returns$__$","typeString":"function (contract IRiskModule,struct Policy.PolicyData memory)"}},"id":24571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28344:25:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24572,"nodeType":"EmitStatement","src":"28339:30:72"},{"eventCall":{"arguments":[{"id":24574,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24292,"src":"28395:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},{"expression":{"id":24575,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"28399:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28409:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"28399:12:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":24577,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"28413:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24578,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28424:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"28413:13:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24573,"name":"PolicyReplaced","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29012,"src":"28380:14:72","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IRiskModule_$29295_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,uint256,uint256)"}},"id":24579,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28380:47:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24580,"nodeType":"EmitStatement","src":"28375:52:72"},{"expression":{"arguments":[{"expression":{"id":24582,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24271,"src":"28452:9:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28462:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"28452:12:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":24584,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"28466:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24585,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28477:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"28466:13:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24581,"name":"_notifyReplacement","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25337,"src":"28433:18:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":24586,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28433:47:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24587,"nodeType":"ExpressionStatement","src":"28433:47:72"},{"expression":{"expression":{"id":24588,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24274,"src":"28493:10:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24589,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28504:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"28493:13:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24285,"id":24590,"nodeType":"Return","src":"28486:20:72"}]},"documentation":{"id":24268,"nodeType":"StructuredDocumentation","src":"25518:27:72","text":"@inheritdoc IPolicyPool"},"functionSelector":"663d8337","id":24592,"implemented":true,"kind":"function","modifiers":[{"id":24282,"kind":"modifierInvocation","modifierName":{"id":24281,"name":"whenNotPaused","nameLocations":["25768:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":3174,"src":"25768:13:72"},"nodeType":"ModifierInvocation","src":"25768:13:72"}],"name":"replacePolicy","nameLocation":"25607:13:72","nodeType":"FunctionDefinition","overrides":{"id":24280,"nodeType":"OverrideSpecifier","overrides":[],"src":"25759:8:72"},"parameters":{"id":24279,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24271,"mutability":"mutable","name":"oldPolicy","nameLocation":"25653:9:72","nodeType":"VariableDeclaration","scope":24592,"src":"25626:36:72","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":24270,"nodeType":"UserDefinedTypeName","pathNode":{"id":24269,"name":"Policy.PolicyData","nameLocations":["25626:6:72","25633:10:72"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"25626:17:72"},"referencedDeclaration":22256,"src":"25626:17:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":24274,"mutability":"mutable","name":"newPolicy_","nameLocation":"25693:10:72","nodeType":"VariableDeclaration","scope":24592,"src":"25668:35:72","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":24273,"nodeType":"UserDefinedTypeName","pathNode":{"id":24272,"name":"Policy.PolicyData","nameLocations":["25668:6:72","25675:10:72"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"25668:17:72"},"referencedDeclaration":22256,"src":"25668:17:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":24276,"mutability":"mutable","name":"payer","nameLocation":"25717:5:72","nodeType":"VariableDeclaration","scope":24592,"src":"25709:13:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24275,"name":"address","nodeType":"ElementaryTypeName","src":"25709:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24278,"mutability":"mutable","name":"internalId","nameLocation":"25735:10:72","nodeType":"VariableDeclaration","scope":24592,"src":"25728:17:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":24277,"name":"uint96","nodeType":"ElementaryTypeName","src":"25728:6:72","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"25620:129:72"},"returnParameters":{"id":24285,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24284,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24592,"src":"25791:7:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24283,"name":"uint256","nodeType":"ElementaryTypeName","src":"25791:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25790:9:72"},"scope":25449,"src":"25598:2913:72","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[29093],"body":{"id":24744,"nodeType":"Block","src":"28731:1247:72","statements":[{"expression":{"arguments":[{"id":24609,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24596,"src":"28767:14:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}],"id":24608,"name":"_validatePolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24803,"src":"28751:15:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$22256_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory) view"}},"id":24610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28751:31:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24611,"nodeType":"ExpressionStatement","src":"28751:31:72"},{"assignments":[24614],"declarations":[{"constant":false,"id":24614,"mutability":"mutable","name":"rm","nameLocation":"28800:2:72","nodeType":"VariableDeclaration","scope":24744,"src":"28788:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},"typeName":{"id":24613,"nodeType":"UserDefinedTypeName","pathNode":{"id":24612,"name":"IRiskModule","nameLocations":["28788:11:72"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"28788:11:72"},"referencedDeclaration":29295,"src":"28788:11:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"visibility":"internal"}],"id":24619,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":24616,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"28817:10:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24617,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28817:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24615,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"28805:11:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}},"id":24618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28805:25:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"nodeType":"VariableDeclarationStatement","src":"28788:42:72"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":24629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":24622,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24596,"src":"28865:14:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28880:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"28865:17:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":24620,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"28840:6:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":24621,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28847:17:72","memberName":"extractRiskModule","nodeType":"MemberAccess","referencedDeclaration":22779,"src":"28840:24:72","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) pure returns (address)"}},"id":24624,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28840:43:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":24627,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24614,"src":"28895:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}],"id":24626,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28887:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24625,"name":"address","nodeType":"ElementaryTypeName","src":"28887:7:72","typeDescriptions":{}}},"id":24628,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28887:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"28840:58:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24633,"nodeType":"IfStatement","src":"28836:94:72","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":24630,"name":"OnlyRiskModuleAllowed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23001,"src":"28907:21:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":24631,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28907:23:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":24632,"nodeType":"RevertStatement","src":"28900:30:72"}},{"expression":{"arguments":[{"arguments":[{"id":24637,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24614,"src":"28975:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}],"id":24636,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28967:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24635,"name":"address","nodeType":"ElementaryTypeName","src":"28967:7:72","typeDescriptions":{}}},"id":24638,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28967:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24639,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22910,"src":"28980:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$22910_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":24640,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"28994:10:72","memberName":"riskModule","nodeType":"MemberAccess","referencedDeclaration":22908,"src":"28980:24:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}],"id":24634,"name":"_requireCompActiveOrDeprecated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23857,"src":"28936:30:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$22910_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":24641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28936:69:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24642,"nodeType":"ExpressionStatement","src":"28936:69:72"},{"assignments":[24645],"declarations":[{"constant":false,"id":24645,"mutability":"mutable","name":"pa","nameLocation":"29028:2:72","nodeType":"VariableDeclaration","scope":24744,"src":"29011:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"},"typeName":{"id":24644,"nodeType":"UserDefinedTypeName","pathNode":{"id":24643,"name":"IPremiumsAccount","nameLocations":["29011:16:72"],"nodeType":"IdentifierPath","referencedDeclaration":29276,"src":"29011:16:72"},"referencedDeclaration":29276,"src":"29011:16:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"id":24649,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24646,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24614,"src":"29033:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"id":24647,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29036:15:72","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":29294,"src":"29033:18:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPremiumsAccount_$29276_$","typeString":"function () view external returns (contract IPremiumsAccount)"}},"id":24648,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29033:20:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"nodeType":"VariableDeclarationStatement","src":"29011:42:72"},{"expression":{"arguments":[{"arguments":[{"id":24653,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24645,"src":"29098:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}],"id":24652,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29090:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24651,"name":"address","nodeType":"ElementaryTypeName","src":"29090:7:72","typeDescriptions":{}}},"id":24654,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29090:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24655,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22910,"src":"29103:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$22910_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":24656,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"29117:15:72","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":22909,"src":"29103:29:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}],"id":24650,"name":"_requireCompActiveOrDeprecated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23857,"src":"29059:30:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$22910_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":24657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29059:74:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24658,"nodeType":"ExpressionStatement","src":"29059:74:72"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":24667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24660,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24596,"src":"29147:14:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29162:10:72","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":22255,"src":"29147:25:72","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"expression":{"id":24664,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"29182:5:72","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":24665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29188:9:72","memberName":"timestamp","nodeType":"MemberAccess","src":"29182:15:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24663,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29175:6:72","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":24662,"name":"uint40","nodeType":"ElementaryTypeName","src":"29175:6:72","typeDescriptions":{}}},"id":24666,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29175:23:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"29147:51:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":24669,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24596,"src":"29221:14:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29236:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"29221:17:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24668,"name":"PolicyAlreadyExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23016,"src":"29200:20:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":24671,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29200:39:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":24659,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"29139:7:72","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":24672,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29139:101:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24673,"nodeType":"ExpressionStatement","src":"29139:101:72"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24678,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24675,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24598,"src":"29261:17:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":24676,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24596,"src":"29282:14:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24677,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29297:11:72","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22243,"src":"29282:26:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29261:47:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24679,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24600,"src":"29320:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":24680,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24596,"src":"29335:14:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29350:5:72","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":22249,"src":"29335:20:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29320:35:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"29261:94:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24687,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24684,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24602,"src":"29367:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":24685,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24596,"src":"29382:14:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29397:5:72","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":22251,"src":"29382:20:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29367:35:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"29261:141:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":24690,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24596,"src":"29436:14:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"id":24691,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24598,"src":"29452:17:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24692,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24600,"src":"29471:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24693,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24602,"src":"29484:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24689,"name":"InvalidPolicyCancellation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23051,"src":"29410:25:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (struct Policy.PolicyData memory,uint256,uint256,uint256) pure returns (error)"}},"id":24694,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29410:86:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":24674,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"29246:7:72","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":24695,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29246:256:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24696,"nodeType":"ExpressionStatement","src":"29246:256:72"},{"assignments":[24698],"declarations":[{"constant":false,"id":24698,"mutability":"mutable","name":"policyHolder","nameLocation":"29532:12:72","nodeType":"VariableDeclaration","scope":24744,"src":"29524:20:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24697,"name":"address","nodeType":"ElementaryTypeName","src":"29524:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":24703,"initialValue":{"arguments":[{"expression":{"id":24700,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24596,"src":"29555:14:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29570:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"29555:17:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24699,"name":"ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1978,"src":"29547:7:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":24702,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29547:26:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"29524:49:72"},{"expression":{"arguments":[{"id":24705,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24614,"src":"29595:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},{"hexValue":"66616c7365","id":24706,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"29599:5:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"expression":{"id":24707,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24596,"src":"29606:14:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24708,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29621:6:72","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":22235,"src":"29606:21:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24704,"name":"_changeExposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25101,"src":"29579:15:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IRiskModule_$29295_$_t_bool_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,bool,uint256)"}},"id":24709,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29579:49:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24710,"nodeType":"ExpressionStatement","src":"29579:49:72"},{"expression":{"id":24715,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"29634:35:72","subExpression":{"baseExpression":{"id":24711,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22930,"src":"29641:9:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":24714,"indexExpression":{"expression":{"id":24712,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24596,"src":"29651:14:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24713,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29666:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"29651:17:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"29641:28:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24716,"nodeType":"ExpressionStatement","src":"29634:35:72"},{"expression":{"arguments":[{"id":24720,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24596,"src":"29715:14:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"id":24721,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24598,"src":"29731:17:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24722,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24600,"src":"29750:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24723,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24602,"src":"29763:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24724,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24698,"src":"29776:12:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":24717,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24645,"src":"29696:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"id":24719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29699:15:72","memberName":"policyCancelled","nodeType":"MemberAccess","referencedDeclaration":29227,"src":"29696:18:72","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$_t_address_$returns$__$","typeString":"function (struct Policy.PolicyData memory,uint256,uint256,uint256,address) external"}},"id":24725,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29696:93:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24726,"nodeType":"ExpressionStatement","src":"29696:93:72"},{"eventCall":{"arguments":[{"id":24728,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24614,"src":"29817:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},{"expression":{"id":24729,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24596,"src":"29821:14:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29836:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"29821:17:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24731,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24598,"src":"29840:17:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24732,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24600,"src":"29859:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24733,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24602,"src":"29872:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24727,"name":"PolicyCancelled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29026,"src":"29801:15:72","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IRiskModule_$29295_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,uint256,uint256,uint256,uint256)"}},"id":24734,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29801:83:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24735,"nodeType":"EmitStatement","src":"29796:88:72"},{"expression":{"arguments":[{"expression":{"id":24737,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24596,"src":"29910:14:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24738,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29925:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"29910:17:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24739,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24598,"src":"29929:17:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24740,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24600,"src":"29948:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24741,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24602,"src":"29961:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24736,"name":"_notifyCancellation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25395,"src":"29890:19:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256,uint256)"}},"id":24742,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29890:83:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24743,"nodeType":"ExpressionStatement","src":"29890:83:72"}]},"documentation":{"id":24593,"nodeType":"StructuredDocumentation","src":"28515:27:72","text":"@inheritdoc IPolicyPool"},"functionSelector":"6f520b73","id":24745,"implemented":true,"kind":"function","modifiers":[{"id":24606,"kind":"modifierInvocation","modifierName":{"id":24605,"name":"whenNotPaused","nameLocations":["28717:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":3174,"src":"28717:13:72"},"nodeType":"ModifierInvocation","src":"28717:13:72"}],"name":"cancelPolicy","nameLocation":"28554:12:72","nodeType":"FunctionDefinition","overrides":{"id":24604,"nodeType":"OverrideSpecifier","overrides":[],"src":"28708:8:72"},"parameters":{"id":24603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24596,"mutability":"mutable","name":"policyToCancel","nameLocation":"28599:14:72","nodeType":"VariableDeclaration","scope":24745,"src":"28572:41:72","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":24595,"nodeType":"UserDefinedTypeName","pathNode":{"id":24594,"name":"Policy.PolicyData","nameLocations":["28572:6:72","28579:10:72"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"28572:17:72"},"referencedDeclaration":22256,"src":"28572:17:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":24598,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"28627:17:72","nodeType":"VariableDeclaration","scope":24745,"src":"28619:25:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24597,"name":"uint256","nodeType":"ElementaryTypeName","src":"28619:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24600,"mutability":"mutable","name":"jrCocRefund","nameLocation":"28658:11:72","nodeType":"VariableDeclaration","scope":24745,"src":"28650:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24599,"name":"uint256","nodeType":"ElementaryTypeName","src":"28650:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24602,"mutability":"mutable","name":"srCocRefund","nameLocation":"28683:11:72","nodeType":"VariableDeclaration","scope":24745,"src":"28675:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24601,"name":"uint256","nodeType":"ElementaryTypeName","src":"28675:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"28566:132:72"},"returnParameters":{"id":24607,"nodeType":"ParameterList","parameters":[],"src":"28731:0:72"},"scope":25449,"src":"28545:1433:72","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":24775,"nodeType":"Block","src":"30078:116:72","statements":[{"assignments":[24757],"declarations":[{"constant":false,"id":24757,"mutability":"mutable","name":"aux","nameLocation":"30092:3:72","nodeType":"VariableDeclaration","scope":24775,"src":"30084:11:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24756,"name":"uint256","nodeType":"ElementaryTypeName","src":"30084:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":24761,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24758,"name":"new_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24751,"src":"30098:4:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":24759,"name":"old_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24753,"src":"30105:4:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30098:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"30084:25:72"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24764,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24762,"name":"aux","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24757,"src":"30119:3:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":24763,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30126:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"30119:8:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24774,"nodeType":"IfStatement","src":"30115:75:72","trueBody":{"id":24773,"nodeType":"Block","src":"30129:61:72","statements":[{"expression":{"arguments":[{"id":24768,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24747,"src":"30164:5:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24769,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24749,"src":"30171:6:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24770,"name":"aux","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24757,"src":"30179:3:72","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":24765,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22891,"src":"30137:9:72","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":24767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30147:16:72","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":8979,"src":"30137:26:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$7977_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":24771,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30137:46:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24772,"nodeType":"ExpressionStatement","src":"30137:46:72"}]}}]},"id":24776,"implemented":true,"kind":"function","modifiers":[],"name":"_transferIfNonZero","nameLocation":"29991:18:72","nodeType":"FunctionDefinition","parameters":{"id":24754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24747,"mutability":"mutable","name":"payer","nameLocation":"30018:5:72","nodeType":"VariableDeclaration","scope":24776,"src":"30010:13:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24746,"name":"address","nodeType":"ElementaryTypeName","src":"30010:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24749,"mutability":"mutable","name":"target","nameLocation":"30033:6:72","nodeType":"VariableDeclaration","scope":24776,"src":"30025:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24748,"name":"address","nodeType":"ElementaryTypeName","src":"30025:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24751,"mutability":"mutable","name":"new_","nameLocation":"30049:4:72","nodeType":"VariableDeclaration","scope":24776,"src":"30041:12:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24750,"name":"uint256","nodeType":"ElementaryTypeName","src":"30041:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24753,"mutability":"mutable","name":"old_","nameLocation":"30063:4:72","nodeType":"VariableDeclaration","scope":24776,"src":"30055:12:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24752,"name":"uint256","nodeType":"ElementaryTypeName","src":"30055:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30009:59:72"},"returnParameters":{"id":24755,"nodeType":"ParameterList","parameters":[],"src":"30078:0:72"},"scope":25449,"src":"29982:212:72","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":24802,"nodeType":"Block","src":"30270:102:72","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24783,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24779,"src":"30284:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24784,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30291:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"30284:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":24785,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30297:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"30284:14:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":24794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24787,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24779,"src":"30302:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24788,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30309:4:72","memberName":"hash","nodeType":"MemberAccess","referencedDeclaration":22760,"src":"30302:11:72","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_bytes32_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (bytes32)"}},"id":24789,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30302:13:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"baseExpression":{"id":24790,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22930,"src":"30319:9:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":24793,"indexExpression":{"expression":{"id":24791,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24779,"src":"30329:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24792,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30336:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"30329:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30319:20:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"30302:37:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"30284:55:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":24797,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24779,"src":"30356:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24798,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30363:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"30356:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24796,"name":"PolicyNotFound","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23021,"src":"30341:14:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":24799,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30341:25:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":24782,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"30276:7:72","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":24800,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30276:91:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24801,"nodeType":"ExpressionStatement","src":"30276:91:72"}]},"id":24803,"implemented":true,"kind":"function","modifiers":[],"name":"_validatePolicy","nameLocation":"30207:15:72","nodeType":"FunctionDefinition","parameters":{"id":24780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24779,"mutability":"mutable","name":"policy","nameLocation":"30248:6:72","nodeType":"VariableDeclaration","scope":24803,"src":"30223:31:72","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":24778,"nodeType":"UserDefinedTypeName","pathNode":{"id":24777,"name":"Policy.PolicyData","nameLocations":["30223:6:72","30230:10:72"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"30223:17:72"},"referencedDeclaration":22256,"src":"30223:17:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"30222:33:72"},"returnParameters":{"id":24781,"nodeType":"ParameterList","parameters":[],"src":"30270:0:72"},"scope":25449,"src":"30198:174:72","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[29109],"body":{"id":24834,"nodeType":"Block","src":"30495:166:72","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24813,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24807,"src":"30505:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24814,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30512:10:72","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":22255,"src":"30505:17:72","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":24815,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"30525:5:72","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":24816,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30531:9:72","memberName":"timestamp","nodeType":"MemberAccess","src":"30525:15:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30505:35:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24827,"nodeType":"IfStatement","src":"30501:111:72","trueBody":{"errorCall":{"arguments":[{"expression":{"id":24819,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24807,"src":"30566:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30573:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"30566:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":24821,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24807,"src":"30577:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":24822,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30584:10:72","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":22255,"src":"30577:17:72","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"expression":{"id":24823,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"30596:5:72","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":24824,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30602:9:72","memberName":"timestamp","nodeType":"MemberAccess","src":"30596:15:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24818,"name":"PolicyNotExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23030,"src":"30549:16:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint40_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint40,uint256) pure returns (error)"}},"id":24825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30549:63:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":24826,"nodeType":"RevertStatement","src":"30542:70:72"}},{"expression":{"arguments":[{"id":24829,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24807,"src":"30640:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"hexValue":"30","id":24830,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30648:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"74727565","id":24831,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"30651:4:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":24828,"name":"_resolvePolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25049,"src":"30625:14:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (struct Policy.PolicyData memory,uint256,bool)"}},"id":24832,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30625:31:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"functionReturnParameters":24812,"id":24833,"nodeType":"Return","src":"30618:38:72"}]},"documentation":{"id":24804,"nodeType":"StructuredDocumentation","src":"30376:27:72","text":"@inheritdoc IPolicyPool"},"functionSelector":"f720bbbf","id":24835,"implemented":true,"kind":"function","modifiers":[{"id":24811,"kind":"modifierInvocation","modifierName":{"id":24810,"name":"whenNotPaused","nameLocations":["30481:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":3174,"src":"30481:13:72"},"nodeType":"ModifierInvocation","src":"30481:13:72"}],"name":"expirePolicy","nameLocation":"30415:12:72","nodeType":"FunctionDefinition","overrides":{"id":24809,"nodeType":"OverrideSpecifier","overrides":[],"src":"30472:8:72"},"parameters":{"id":24808,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24807,"mutability":"mutable","name":"policy","nameLocation":"30455:6:72","nodeType":"VariableDeclaration","scope":24835,"src":"30428:33:72","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":24806,"nodeType":"UserDefinedTypeName","pathNode":{"id":24805,"name":"Policy.PolicyData","nameLocations":["30428:6:72","30435:10:72"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"30428:17:72"},"referencedDeclaration":22256,"src":"30428:17:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"30427:35:72"},"returnParameters":{"id":24812,"nodeType":"ParameterList","parameters":[],"src":"30495:0:72"},"scope":25449,"src":"30406:255:72","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[29102],"body":{"id":24853,"nodeType":"Block","src":"30801:55:72","statements":[{"expression":{"arguments":[{"id":24848,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24839,"src":"30829:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"id":24849,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24841,"src":"30837:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":24850,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"30845:5:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":24847,"name":"_resolvePolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25049,"src":"30814:14:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (struct Policy.PolicyData memory,uint256,bool)"}},"id":24851,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30814:37:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"functionReturnParameters":24846,"id":24852,"nodeType":"Return","src":"30807:44:72"}]},"documentation":{"id":24836,"nodeType":"StructuredDocumentation","src":"30665:27:72","text":"@inheritdoc IPolicyPool"},"functionSelector":"bd644c56","id":24854,"implemented":true,"kind":"function","modifiers":[{"id":24845,"kind":"modifierInvocation","modifierName":{"id":24844,"name":"whenNotPaused","nameLocations":["30787:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":3174,"src":"30787:13:72"},"nodeType":"ModifierInvocation","src":"30787:13:72"}],"name":"resolvePolicy","nameLocation":"30704:13:72","nodeType":"FunctionDefinition","overrides":{"id":24843,"nodeType":"OverrideSpecifier","overrides":[],"src":"30778:8:72"},"parameters":{"id":24842,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24839,"mutability":"mutable","name":"policy","nameLocation":"30745:6:72","nodeType":"VariableDeclaration","scope":24854,"src":"30718:33:72","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":24838,"nodeType":"UserDefinedTypeName","pathNode":{"id":24837,"name":"Policy.PolicyData","nameLocations":["30718:6:72","30725:10:72"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"30718:17:72"},"referencedDeclaration":22256,"src":"30718:17:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":24841,"mutability":"mutable","name":"payout","nameLocation":"30761:6:72","nodeType":"VariableDeclaration","scope":24854,"src":"30753:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24840,"name":"uint256","nodeType":"ElementaryTypeName","src":"30753:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30717:51:72"},"returnParameters":{"id":24846,"nodeType":"ParameterList","parameters":[],"src":"30801:0:72"},"scope":25449,"src":"30695:161:72","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[29117],"body":{"id":24872,"nodeType":"Block","src":"30964:51:72","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":24870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":24863,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22930,"src":"30977:9:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":24865,"indexExpression":{"id":24864,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24857,"src":"30987:8:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30977:19:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":24868,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31008:1:72","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":24867,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31000:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":24866,"name":"bytes32","nodeType":"ElementaryTypeName","src":"31000:7:72","typeDescriptions":{}}},"id":24869,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31000:10:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"30977:33:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":24862,"id":24871,"nodeType":"Return","src":"30970:40:72"}]},"documentation":{"id":24855,"nodeType":"StructuredDocumentation","src":"30860:27:72","text":"@inheritdoc IPolicyPool"},"functionSelector":"82afd23b","id":24873,"implemented":true,"kind":"function","modifiers":[],"name":"isActive","nameLocation":"30899:8:72","nodeType":"FunctionDefinition","overrides":{"id":24859,"nodeType":"OverrideSpecifier","overrides":[],"src":"30940:8:72"},"parameters":{"id":24858,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24857,"mutability":"mutable","name":"policyId","nameLocation":"30916:8:72","nodeType":"VariableDeclaration","scope":24873,"src":"30908:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24856,"name":"uint256","nodeType":"ElementaryTypeName","src":"30908:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30907:18:72"},"returnParameters":{"id":24862,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24861,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24873,"src":"30958:4:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":24860,"name":"bool","nodeType":"ElementaryTypeName","src":"30958:4:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"30957:6:72"},"scope":25449,"src":"30890:125:72","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[29125],"body":{"id":24886,"nodeType":"Block","src":"31131:37:72","statements":[{"expression":{"baseExpression":{"id":24882,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22930,"src":"31144:9:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":24884,"indexExpression":{"id":24883,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24876,"src":"31154:8:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"31144:19:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":24881,"id":24885,"nodeType":"Return","src":"31137:26:72"}]},"documentation":{"id":24874,"nodeType":"StructuredDocumentation","src":"31019:27:72","text":"@inheritdoc IPolicyPool"},"functionSelector":"792da09e","id":24887,"implemented":true,"kind":"function","modifiers":[],"name":"getPolicyHash","nameLocation":"31058:13:72","nodeType":"FunctionDefinition","overrides":{"id":24878,"nodeType":"OverrideSpecifier","overrides":[],"src":"31104:8:72"},"parameters":{"id":24877,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24876,"mutability":"mutable","name":"policyId","nameLocation":"31080:8:72","nodeType":"VariableDeclaration","scope":24887,"src":"31072:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24875,"name":"uint256","nodeType":"ElementaryTypeName","src":"31072:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31071:18:72"},"returnParameters":{"id":24881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24880,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24887,"src":"31122:7:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":24879,"name":"bytes32","nodeType":"ElementaryTypeName","src":"31122:7:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"31121:9:72"},"scope":25449,"src":"31049:119:72","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":25048,"nodeType":"Block","src":"31697:1088:72","statements":[{"expression":{"arguments":[{"id":24899,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24891,"src":"31733:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":24898,"name":"_validatePolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24803,"src":"31717:15:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$22256_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory) view"}},"id":24900,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31717:23:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24901,"nodeType":"ExpressionStatement","src":"31717:23:72"},{"assignments":[24904],"declarations":[{"constant":false,"id":24904,"mutability":"mutable","name":"rm","nameLocation":"31758:2:72","nodeType":"VariableDeclaration","scope":25048,"src":"31746:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},"typeName":{"id":24903,"nodeType":"UserDefinedTypeName","pathNode":{"id":24902,"name":"IRiskModule","nameLocations":["31746:11:72"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"31746:11:72"},"referencedDeclaration":29295,"src":"31746:11:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"visibility":"internal"}],"id":24912,"initialValue":{"arguments":[{"arguments":[{"expression":{"id":24908,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24891,"src":"31800:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24909,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31807:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"31800:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":24906,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"31775:6:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":24907,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31782:17:72","memberName":"extractRiskModule","nodeType":"MemberAccess","referencedDeclaration":22779,"src":"31775:24:72","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) pure returns (address)"}},"id":24910,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31775:35:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24905,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"31763:11:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}},"id":24911,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31763:48:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"nodeType":"VariableDeclarationStatement","src":"31746:65:72"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24922,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"31821:8:72","subExpression":{"id":24913,"name":"expired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24895,"src":"31822:7:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":24921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":24917,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24904,"src":"31841:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}],"id":24916,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31833:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24915,"name":"address","nodeType":"ElementaryTypeName","src":"31833:7:72","typeDescriptions":{}}},"id":24918,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31833:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":24919,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"31848:10:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24920,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31848:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"31833:27:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"31821:39:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24926,"nodeType":"IfStatement","src":"31817:75:72","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":24923,"name":"OnlyRiskModuleAllowed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23001,"src":"31869:21:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":24924,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31869:23:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":24925,"nodeType":"RevertStatement","src":"31862:30:72"}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24928,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24893,"src":"31906:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":24929,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31916:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"31906:11:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24931,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24891,"src":"31921:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24932,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31928:10:72","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":22255,"src":"31921:17:72","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":24933,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"31941:5:72","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":24934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31947:9:72","memberName":"timestamp","nodeType":"MemberAccess","src":"31941:15:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31921:35:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"31906:50:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":24938,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24891,"src":"31979:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24939,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31986:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"31979:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24937,"name":"PolicyAlreadyExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23016,"src":"31958:20:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":24940,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31958:31:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":24927,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"31898:7:72","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":24941,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31898:92:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24942,"nodeType":"ExpressionStatement","src":"31898:92:72"},{"expression":{"arguments":[{"arguments":[{"id":24946,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24904,"src":"32035:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}],"id":24945,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32027:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24944,"name":"address","nodeType":"ElementaryTypeName","src":"32027:7:72","typeDescriptions":{}}},"id":24947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32027:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24948,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22910,"src":"32040:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$22910_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":24949,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"32054:10:72","memberName":"riskModule","nodeType":"MemberAccess","referencedDeclaration":22908,"src":"32040:24:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}],"id":24943,"name":"_requireCompActiveOrDeprecated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23857,"src":"31996:30:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$22910_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":24950,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31996:69:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24951,"nodeType":"ExpressionStatement","src":"31996:69:72"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24956,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24953,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24893,"src":"32080:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":24954,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24891,"src":"32090:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24955,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32097:6:72","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":22235,"src":"32090:13:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32080:23:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":24958,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24893,"src":"32124:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":24959,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24891,"src":"32132:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24960,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32139:6:72","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":22235,"src":"32132:13:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24957,"name":"PayoutExceedsLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23058,"src":"32105:18:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":24961,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32105:41:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":24952,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"32072:7:72","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":24962,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32072:75:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24963,"nodeType":"ExpressionStatement","src":"32072:75:72"},{"assignments":[24965],"declarations":[{"constant":false,"id":24965,"mutability":"mutable","name":"customerWon","nameLocation":"32159:11:72","nodeType":"VariableDeclaration","scope":25048,"src":"32154:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":24964,"name":"bool","nodeType":"ElementaryTypeName","src":"32154:4:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":24969,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24966,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24893,"src":"32173:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":24967,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32182:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"32173:10:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"32154:29:72"},{"assignments":[24972],"declarations":[{"constant":false,"id":24972,"mutability":"mutable","name":"pa","nameLocation":"32207:2:72","nodeType":"VariableDeclaration","scope":25048,"src":"32190:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"},"typeName":{"id":24971,"nodeType":"UserDefinedTypeName","pathNode":{"id":24970,"name":"IPremiumsAccount","nameLocations":["32190:16:72"],"nodeType":"IdentifierPath","referencedDeclaration":29276,"src":"32190:16:72"},"referencedDeclaration":29276,"src":"32190:16:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"id":24976,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24973,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24904,"src":"32212:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"id":24974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32215:15:72","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":29294,"src":"32212:18:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPremiumsAccount_$29276_$","typeString":"function () view external returns (contract IPremiumsAccount)"}},"id":24975,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32212:20:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"nodeType":"VariableDeclarationStatement","src":"32190:42:72"},{"expression":{"arguments":[{"arguments":[{"id":24980,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24972,"src":"32277:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}],"id":24979,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32269:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24978,"name":"address","nodeType":"ElementaryTypeName","src":"32269:7:72","typeDescriptions":{}}},"id":24981,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32269:11:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24982,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22910,"src":"32282:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$22910_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":24983,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"32296:15:72","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":22909,"src":"32282:29:72","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$22910","typeString":"enum PolicyPool.ComponentKind"}],"id":24977,"name":"_requireCompActiveOrDeprecated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23857,"src":"32238:30:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$22910_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":24984,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32238:74:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24985,"nodeType":"ExpressionStatement","src":"32238:74:72"},{"expression":{"id":24990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"32333:27:72","subExpression":{"baseExpression":{"id":24986,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22930,"src":"32340:9:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":24989,"indexExpression":{"expression":{"id":24987,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24891,"src":"32350:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24988,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32357:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"32350:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"32340:20:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24991,"nodeType":"ExpressionStatement","src":"32333:27:72"},{"condition":{"id":24992,"name":"customerWon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24965,"src":"32390:11:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":25015,"nodeType":"Block","src":"32528:39:72","statements":[{"expression":{"arguments":[{"id":25012,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24891,"src":"32553:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"expression":{"id":25009,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24972,"src":"32536:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"id":25011,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32539:13:72","memberName":"policyExpired","nodeType":"MemberAccess","referencedDeclaration":29245,"src":"32536:16:72","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PolicyData_$22256_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory) external"}},"id":25013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32536:24:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25014,"nodeType":"ExpressionStatement","src":"32536:24:72"}]},"id":25016,"nodeType":"IfStatement","src":"32386:181:72","trueBody":{"id":25008,"nodeType":"Block","src":"32403:119:72","statements":[{"assignments":[24994],"declarations":[{"constant":false,"id":24994,"mutability":"mutable","name":"policyOwner","nameLocation":"32419:11:72","nodeType":"VariableDeclaration","scope":25008,"src":"32411:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24993,"name":"address","nodeType":"ElementaryTypeName","src":"32411:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":24999,"initialValue":{"arguments":[{"expression":{"id":24996,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24891,"src":"32441:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":24997,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32448:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"32441:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24995,"name":"ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1978,"src":"32433:7:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":24998,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32433:18:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"32411:40:72"},{"expression":{"arguments":[{"id":25003,"name":"policyOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24994,"src":"32487:11:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25004,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24891,"src":"32500:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},{"id":25005,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24893,"src":"32508:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":25000,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24972,"src":"32459:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"id":25002,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32462:24:72","memberName":"policyResolvedWithPayout","nodeType":"MemberAccess","referencedDeclaration":29238,"src":"32459:27:72","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$returns$__$","typeString":"function (address,struct Policy.PolicyData memory,uint256) external"}},"id":25006,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32459:56:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25007,"nodeType":"ExpressionStatement","src":"32459:56:72"}]}},{"expression":{"arguments":[{"id":25018,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24904,"src":"32589:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},{"hexValue":"66616c7365","id":25019,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"32593:5:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"expression":{"id":25020,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24891,"src":"32600:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":25021,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32607:6:72","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":22235,"src":"32600:13:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25017,"name":"_changeExposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25101,"src":"32573:15:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IRiskModule_$29295_$_t_bool_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,bool,uint256)"}},"id":25022,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32573:41:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25023,"nodeType":"ExpressionStatement","src":"32573:41:72"},{"eventCall":{"arguments":[{"id":25025,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24904,"src":"32641:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},{"expression":{"id":25026,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24891,"src":"32645:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":25027,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32652:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"32645:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25028,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24893,"src":"32656:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25024,"name":"PolicyResolved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29036,"src":"32626:14:72","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IRiskModule_$29295_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,uint256,uint256)"}},"id":25029,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32626:37:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25030,"nodeType":"EmitStatement","src":"32621:42:72"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25031,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24893,"src":"32673:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":25032,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32682:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"32673:10:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":25046,"nodeType":"Block","src":"32738:43:72","statements":[{"expression":{"arguments":[{"expression":{"id":25042,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24891,"src":"32764:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":25043,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32771:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"32764:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25041,"name":"_notifyExpiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25285,"src":"32746:17:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":25044,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32746:28:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25045,"nodeType":"ExpressionStatement","src":"32746:28:72"}]},"id":25047,"nodeType":"IfStatement","src":"32669:112:72","trueBody":{"id":25040,"nodeType":"Block","src":"32685:47:72","statements":[{"expression":{"arguments":[{"expression":{"id":25035,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24891,"src":"32707:6:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":25036,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32714:2:72","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"32707:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25037,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24893,"src":"32718:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25034,"name":"_notifyPayout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25230,"src":"32693:13:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":25038,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32693:32:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25039,"nodeType":"ExpressionStatement","src":"32693:32:72"}]}}]},"documentation":{"id":24888,"nodeType":"StructuredDocumentation","src":"31172:426:72","text":" @notice Internal function that handles the different alternative resolutions for a policy.\n @dev Alternatives: with or without payout and expiration.\n @custom:emits PolicyResolved with the payout amount\n @param policy A policy created with {Policy-initialize}\n @param payout The amount to paid to the policyholder\n @param expired True for expiration resolution (`payout` must be 0)"},"id":25049,"implemented":true,"kind":"function","modifiers":[],"name":"_resolvePolicy","nameLocation":"31610:14:72","nodeType":"FunctionDefinition","parameters":{"id":24896,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24891,"mutability":"mutable","name":"policy","nameLocation":"31650:6:72","nodeType":"VariableDeclaration","scope":25049,"src":"31625:31:72","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":24890,"nodeType":"UserDefinedTypeName","pathNode":{"id":24889,"name":"Policy.PolicyData","nameLocations":["31625:6:72","31632:10:72"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"31625:17:72"},"referencedDeclaration":22256,"src":"31625:17:72","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":24893,"mutability":"mutable","name":"payout","nameLocation":"31666:6:72","nodeType":"VariableDeclaration","scope":25049,"src":"31658:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24892,"name":"uint256","nodeType":"ElementaryTypeName","src":"31658:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24895,"mutability":"mutable","name":"expired","nameLocation":"31679:7:72","nodeType":"VariableDeclaration","scope":25049,"src":"31674:12:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":24894,"name":"bool","nodeType":"ElementaryTypeName","src":"31674:4:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"31624:63:72"},"returnParameters":{"id":24897,"nodeType":"ParameterList","parameters":[],"src":"31697:0:72"},"scope":25449,"src":"31601:1184:72","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25100,"nodeType":"Block","src":"32870:291:72","statements":[{"assignments":[25061],"declarations":[{"constant":false,"id":25061,"mutability":"mutable","name":"exposure","nameLocation":"32893:8:72","nodeType":"VariableDeclaration","scope":25100,"src":"32876:25:72","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure"},"typeName":{"id":25060,"nodeType":"UserDefinedTypeName","pathNode":{"id":25059,"name":"Exposure","nameLocations":["32876:8:72"],"nodeType":"IdentifierPath","referencedDeclaration":22935,"src":"32876:8:72"},"referencedDeclaration":22935,"src":"32876:8:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure"}},"visibility":"internal"}],"id":25065,"initialValue":{"baseExpression":{"id":25062,"name":"_exposureByRm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22945,"src":"32904:13:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IRiskModule_$29295_$_t_struct$_Exposure_$22935_storage_$","typeString":"mapping(contract IRiskModule => struct PolicyPool.Exposure storage ref)"}},"id":25064,"indexExpression":{"id":25063,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25052,"src":"32918:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"32904:17:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage","typeString":"struct PolicyPool.Exposure storage ref"}},"nodeType":"VariableDeclarationStatement","src":"32876:45:72"},{"condition":{"id":25066,"name":"increase","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25054,"src":"32931:8:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":25098,"nodeType":"Block","src":"33105:52:72","statements":[{"expression":{"id":25096,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":25090,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25061,"src":"33113:8:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":25092,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"33122:6:72","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":22932,"src":"33113:15:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25093,"name":"change","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25056,"src":"33132:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":25094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33139:9:72","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":16389,"src":"33132:16:72","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":25095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33132:18:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"33113:37:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":25097,"nodeType":"ExpressionStatement","src":"33113:37:72"}]},"id":25099,"nodeType":"IfStatement","src":"32927:230:72","trueBody":{"id":25089,"nodeType":"Block","src":"32941:158:72","statements":[{"expression":{"id":25073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":25067,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25061,"src":"32949:8:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":25069,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"32958:6:72","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":22932,"src":"32949:15:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25070,"name":"change","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25056,"src":"32968:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":25071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32975:9:72","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":16389,"src":"32968:16:72","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":25072,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32968:18:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"32949:37:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":25074,"nodeType":"ExpressionStatement","src":"32949:37:72"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":25080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":25076,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25061,"src":"33002:8:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":25077,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"33011:6:72","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":22932,"src":"33002:15:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":25078,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25061,"src":"33021:8:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":25079,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"33030:5:72","memberName":"limit","nodeType":"MemberAccess","referencedDeclaration":22934,"src":"33021:14:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"33002:33:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":25082,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25061,"src":"33059:8:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":25083,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"33068:6:72","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":22932,"src":"33059:15:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"expression":{"id":25084,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25061,"src":"33076:8:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":25085,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"33085:5:72","memberName":"limit","nodeType":"MemberAccess","referencedDeclaration":22934,"src":"33076:14:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":25081,"name":"ExposureLimitExceeded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23065,"src":"33037:21:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint128_$_t_uint128_$returns$_t_error_$","typeString":"function (uint128,uint128) pure returns (error)"}},"id":25086,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33037:54:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":25075,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"32994:7:72","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":25087,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32994:98:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25088,"nodeType":"ExpressionStatement","src":"32994:98:72"}]}}]},"id":25101,"implemented":true,"kind":"function","modifiers":[],"name":"_changeExposure","nameLocation":"32798:15:72","nodeType":"FunctionDefinition","parameters":{"id":25057,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25052,"mutability":"mutable","name":"rm","nameLocation":"32826:2:72","nodeType":"VariableDeclaration","scope":25101,"src":"32814:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},"typeName":{"id":25051,"nodeType":"UserDefinedTypeName","pathNode":{"id":25050,"name":"IRiskModule","nameLocations":["32814:11:72"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"32814:11:72"},"referencedDeclaration":29295,"src":"32814:11:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"visibility":"internal"},{"constant":false,"id":25054,"mutability":"mutable","name":"increase","nameLocation":"32835:8:72","nodeType":"VariableDeclaration","scope":25101,"src":"32830:13:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25053,"name":"bool","nodeType":"ElementaryTypeName","src":"32830:4:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":25056,"mutability":"mutable","name":"change","nameLocation":"32853:6:72","nodeType":"VariableDeclaration","scope":25101,"src":"32845:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25055,"name":"uint256","nodeType":"ElementaryTypeName","src":"32845:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"32813:47:72"},"returnParameters":{"id":25058,"nodeType":"ParameterList","parameters":[],"src":"32870:0:72"},"scope":25449,"src":"32789:372:72","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25148,"nodeType":"Block","src":"33882:300:72","statements":[{"assignments":[25112],"declarations":[{"constant":false,"id":25112,"mutability":"mutable","name":"exposure","nameLocation":"33905:8:72","nodeType":"VariableDeclaration","scope":25148,"src":"33888:25:72","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure"},"typeName":{"id":25111,"nodeType":"UserDefinedTypeName","pathNode":{"id":25110,"name":"Exposure","nameLocations":["33888:8:72"],"nodeType":"IdentifierPath","referencedDeclaration":22935,"src":"33888:8:72"},"referencedDeclaration":22935,"src":"33888:8:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure"}},"visibility":"internal"}],"id":25116,"initialValue":{"baseExpression":{"id":25113,"name":"_exposureByRm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22945,"src":"33916:13:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IRiskModule_$29295_$_t_struct$_Exposure_$22935_storage_$","typeString":"mapping(contract IRiskModule => struct PolicyPool.Exposure storage ref)"}},"id":25115,"indexExpression":{"id":25114,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25105,"src":"33930:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"33916:17:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage","typeString":"struct PolicyPool.Exposure storage ref"}},"nodeType":"VariableDeclarationStatement","src":"33888:45:72"},{"assignments":[25118],"declarations":[{"constant":false,"id":25118,"mutability":"mutable","name":"newLimit128","nameLocation":"33947:11:72","nodeType":"VariableDeclaration","scope":25148,"src":"33939:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":25117,"name":"uint128","nodeType":"ElementaryTypeName","src":"33939:7:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":25122,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25119,"name":"newLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25107,"src":"33961:8:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":25120,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33970:9:72","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":16389,"src":"33961:18:72","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":25121,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33961:20:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"33939:42:72"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":25127,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":25124,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25112,"src":"33995:8:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":25125,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34004:6:72","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":22932,"src":"33995:15:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":25126,"name":"newLimit128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25118,"src":"34014:11:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"33995:30:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":25129,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25112,"src":"34049:8:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":25130,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34058:6:72","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":22932,"src":"34049:15:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"id":25131,"name":"newLimit128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25118,"src":"34066:11:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":25128,"name":"ExposureLimitExceeded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23065,"src":"34027:21:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint128_$_t_uint128_$returns$_t_error_$","typeString":"function (uint128,uint128) pure returns (error)"}},"id":25132,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34027:51:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":25123,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"33987:7:72","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":25133,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33987:92:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25134,"nodeType":"ExpressionStatement","src":"33987:92:72"},{"eventCall":{"arguments":[{"id":25136,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25105,"src":"34111:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},{"expression":{"id":25137,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25112,"src":"34115:8:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":25138,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34124:5:72","memberName":"limit","nodeType":"MemberAccess","referencedDeclaration":22934,"src":"34115:14:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"id":25139,"name":"newLimit128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25118,"src":"34131:11:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":25135,"name":"ExposureLimitChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23114,"src":"34090:20:72","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IRiskModule_$29295_$_t_uint128_$_t_uint128_$returns$__$","typeString":"function (contract IRiskModule,uint128,uint128)"}},"id":25140,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34090:53:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25141,"nodeType":"EmitStatement","src":"34085:58:72"},{"expression":{"id":25146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":25142,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25112,"src":"34149:8:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":25144,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"34158:5:72","memberName":"limit","nodeType":"MemberAccess","referencedDeclaration":22934,"src":"34149:14:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":25145,"name":"newLimit128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25118,"src":"34166:11:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"34149:28:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":25147,"nodeType":"ExpressionStatement","src":"34149:28:72"}]},"documentation":{"id":25102,"nodeType":"StructuredDocumentation","src":"33165:645:72","text":" @notice  Changes the maximum cumulative loss limit (exposure limit) for a given risk module\n @dev     This function allows updating the exposure limit for a risk module.\n          The new limit must be greater than or equal to the current active exposure.\n @param   rm  The risk module interface for which to update the exposure limit\n @param   newLimit  The new exposure limit to set (will be converted to uint128)\n @custom:throws ExposureLimitExceeded if the new limit is less than the current active exposure\n @custom:emits  ExposureLimitChanged with parameters: (risk module, old limit, new limit)"},"functionSelector":"9760905e","id":25149,"implemented":true,"kind":"function","modifiers":[],"name":"setExposureLimit","nameLocation":"33822:16:72","nodeType":"FunctionDefinition","parameters":{"id":25108,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25105,"mutability":"mutable","name":"rm","nameLocation":"33851:2:72","nodeType":"VariableDeclaration","scope":25149,"src":"33839:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},"typeName":{"id":25104,"nodeType":"UserDefinedTypeName","pathNode":{"id":25103,"name":"IRiskModule","nameLocations":["33839:11:72"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"33839:11:72"},"referencedDeclaration":29295,"src":"33839:11:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"visibility":"internal"},{"constant":false,"id":25107,"mutability":"mutable","name":"newLimit","nameLocation":"33863:8:72","nodeType":"VariableDeclaration","scope":25149,"src":"33855:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25106,"name":"uint256","nodeType":"ElementaryTypeName","src":"33855:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"33838:34:72"},"returnParameters":{"id":25109,"nodeType":"ParameterList","parameters":[],"src":"33882:0:72"},"scope":25449,"src":"33813:369:72","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":25177,"nodeType":"Block","src":"34753:114:72","statements":[{"assignments":[25162],"declarations":[{"constant":false,"id":25162,"mutability":"mutable","name":"exposure","nameLocation":"34776:8:72","nodeType":"VariableDeclaration","scope":25177,"src":"34759:25:72","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure"},"typeName":{"id":25161,"nodeType":"UserDefinedTypeName","pathNode":{"id":25160,"name":"Exposure","nameLocations":["34759:8:72"],"nodeType":"IdentifierPath","referencedDeclaration":22935,"src":"34759:8:72"},"referencedDeclaration":22935,"src":"34759:8:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure"}},"visibility":"internal"}],"id":25166,"initialValue":{"baseExpression":{"id":25163,"name":"_exposureByRm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22945,"src":"34787:13:72","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IRiskModule_$29295_$_t_struct$_Exposure_$22935_storage_$","typeString":"mapping(contract IRiskModule => struct PolicyPool.Exposure storage ref)"}},"id":25165,"indexExpression":{"id":25164,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25153,"src":"34801:2:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"34787:17:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage","typeString":"struct PolicyPool.Exposure storage ref"}},"nodeType":"VariableDeclarationStatement","src":"34759:45:72"},{"expression":{"id":25170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":25167,"name":"active","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25156,"src":"34810:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":25168,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25162,"src":"34819:8:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":25169,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34828:6:72","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":22932,"src":"34819:15:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"34810:24:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":25171,"nodeType":"ExpressionStatement","src":"34810:24:72"},{"expression":{"id":25175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":25172,"name":"limit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25158,"src":"34840:5:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":25173,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25162,"src":"34848:8:72","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$22935_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":25174,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34857:5:72","memberName":"limit","nodeType":"MemberAccess","referencedDeclaration":22934,"src":"34848:14:72","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"34840:22:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":25176,"nodeType":"ExpressionStatement","src":"34840:22:72"}]},"documentation":{"id":25150,"nodeType":"StructuredDocumentation","src":"34186:473:72","text":" @notice  Retrieves the current exposure data for a specific risk module\n @dev     Returns both the active exposure (current cumulative losses)\n and the configured exposure limit for the given risk module.\n @param   rm  The risk module interface to query exposure data for\n @return  active  The current active exposure (cumulative losses) for the risk module\n @return  limit   The configured maximum exposure limit for the risk module"},"functionSelector":"9e2d8922","id":25178,"implemented":true,"kind":"function","modifiers":[],"name":"getExposure","nameLocation":"34671:11:72","nodeType":"FunctionDefinition","parameters":{"id":25154,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25153,"mutability":"mutable","name":"rm","nameLocation":"34695:2:72","nodeType":"VariableDeclaration","scope":25178,"src":"34683:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},"typeName":{"id":25152,"nodeType":"UserDefinedTypeName","pathNode":{"id":25151,"name":"IRiskModule","nameLocations":["34683:11:72"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"34683:11:72"},"referencedDeclaration":29295,"src":"34683:11:72","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"visibility":"internal"}],"src":"34682:16:72"},"returnParameters":{"id":25159,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25156,"mutability":"mutable","name":"active","nameLocation":"34730:6:72","nodeType":"VariableDeclaration","scope":25178,"src":"34722:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25155,"name":"uint256","nodeType":"ElementaryTypeName","src":"34722:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25158,"mutability":"mutable","name":"limit","nameLocation":"34746:5:72","nodeType":"VariableDeclaration","scope":25178,"src":"34738:13:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25157,"name":"uint256","nodeType":"ElementaryTypeName","src":"34738:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34721:31:72"},"scope":25449,"src":"34662:205:72","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":25229,"nodeType":"Block","src":"35205:353:72","statements":[{"assignments":[25187],"declarations":[{"constant":false,"id":25187,"mutability":"mutable","name":"customer","nameLocation":"35219:8:72","nodeType":"VariableDeclaration","scope":25229,"src":"35211:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25186,"name":"address","nodeType":"ElementaryTypeName","src":"35211:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":25191,"initialValue":{"arguments":[{"id":25189,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25181,"src":"35238:8:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25188,"name":"ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1978,"src":"35230:7:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":25190,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35230:17:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"35211:36:72"},{"condition":{"id":25200,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"35257:75:72","subExpression":{"arguments":[{"id":25194,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25187,"src":"35290:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"arguments":[{"id":25196,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"35305:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}],"id":25195,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"35300:4:72","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":25197,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35300:19:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyHolder_$28982","typeString":"type(contract IPolicyHolder)"}},"id":25198,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"35320:11:72","memberName":"interfaceId","nodeType":"MemberAccess","src":"35300:31:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":25192,"name":"ERC165Checker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14260,"src":"35258:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC165Checker_$14260_$","typeString":"type(library ERC165Checker)"}},"id":25193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35272:17:72","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":14113,"src":"35258:31:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":25199,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35258:74:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25202,"nodeType":"IfStatement","src":"35253:88:72","trueBody":{"functionReturnParameters":25185,"id":25201,"nodeType":"Return","src":"35334:7:72"}},{"assignments":[25204],"declarations":[{"constant":false,"id":25204,"mutability":"mutable","name":"retval","nameLocation":"35354:6:72","nodeType":"VariableDeclaration","scope":25229,"src":"35347:13:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":25203,"name":"bytes4","nodeType":"ElementaryTypeName","src":"35347:6:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":25218,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":25209,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"35404:10:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":25210,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35404:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":25213,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"35426:4:72","typeDescriptions":{"typeIdentifier":"t_contract$_PolicyPool_$25449","typeString":"contract PolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PolicyPool_$25449","typeString":"contract PolicyPool"}],"id":25212,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"35418:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25211,"name":"address","nodeType":"ElementaryTypeName","src":"35418:7:72","typeDescriptions":{}}},"id":25214,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35418:13:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25215,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25181,"src":"35433:8:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25216,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25183,"src":"35443:6:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":25206,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25187,"src":"35377:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25205,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"35363:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}},"id":25207,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35363:23:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyHolder_$28982","typeString":"contract IPolicyHolder"}},"id":25208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35387:16:72","memberName":"onPayoutReceived","nodeType":"MemberAccess","referencedDeclaration":28949,"src":"35363:40:72","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,uint256) external returns (bytes4)"}},"id":25217,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35363:87:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"35347:103:72"},{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":25223,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25219,"name":"retval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25204,"src":"35460:6:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"expression":{"id":25220,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"35470:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}},"id":25221,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"35484:16:72","memberName":"onPayoutReceived","nodeType":"MemberAccess","referencedDeclaration":28949,"src":"35470:30:72","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function IPolicyHolder.onPayoutReceived(address,address,uint256,uint256) returns (bytes4)"}},"id":25222,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"35501:8:72","memberName":"selector","nodeType":"MemberAccess","src":"35470:39:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"35460:49:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25228,"nodeType":"IfStatement","src":"35456:97:72","trueBody":{"errorCall":{"arguments":[{"id":25225,"name":"retval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25204,"src":"35546:6:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":25224,"name":"InvalidNotificationResponse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23006,"src":"35518:27:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes4_$returns$_t_error_$","typeString":"function (bytes4) pure returns (error)"}},"id":25226,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35518:35:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25227,"nodeType":"RevertStatement","src":"35511:42:72"}}]},"documentation":{"id":25179,"nodeType":"StructuredDocumentation","src":"34871:265:72","text":" @notice Notifies the payout with a callback\n @dev Only if the policyholder implements the IPolicyHolder interface.\n Reverts if the policyholder contract explicitly reverts or it doesn't return the\n IPolicyHolder.onPayoutReceived selector."},"id":25230,"implemented":true,"kind":"function","modifiers":[],"name":"_notifyPayout","nameLocation":"35148:13:72","nodeType":"FunctionDefinition","parameters":{"id":25184,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25181,"mutability":"mutable","name":"policyId","nameLocation":"35170:8:72","nodeType":"VariableDeclaration","scope":25230,"src":"35162:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25180,"name":"uint256","nodeType":"ElementaryTypeName","src":"35162:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25183,"mutability":"mutable","name":"payout","nameLocation":"35188:6:72","nodeType":"VariableDeclaration","scope":25230,"src":"35180:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25182,"name":"uint256","nodeType":"ElementaryTypeName","src":"35180:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"35161:34:72"},"returnParameters":{"id":25185,"nodeType":"ParameterList","parameters":[],"src":"35205:0:72"},"scope":25449,"src":"35139:419:72","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25284,"nodeType":"Block","src":"35831:406:72","statements":[{"assignments":[25237],"declarations":[{"constant":false,"id":25237,"mutability":"mutable","name":"customer","nameLocation":"35845:8:72","nodeType":"VariableDeclaration","scope":25284,"src":"35837:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25236,"name":"address","nodeType":"ElementaryTypeName","src":"35837:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":25241,"initialValue":{"arguments":[{"id":25239,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25233,"src":"35864:8:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25238,"name":"ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1978,"src":"35856:7:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":25240,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35856:17:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"35837:36:72"},{"condition":{"id":25250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"35883:75:72","subExpression":{"arguments":[{"id":25244,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25237,"src":"35916:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"arguments":[{"id":25246,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"35931:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}],"id":25245,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"35926:4:72","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":25247,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35926:19:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyHolder_$28982","typeString":"type(contract IPolicyHolder)"}},"id":25248,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"35946:11:72","memberName":"interfaceId","nodeType":"MemberAccess","src":"35926:31:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":25242,"name":"ERC165Checker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14260,"src":"35884:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC165Checker_$14260_$","typeString":"type(library ERC165Checker)"}},"id":25243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35898:17:72","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":14113,"src":"35884:31:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":25249,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35884:74:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25252,"nodeType":"IfStatement","src":"35879:88:72","trueBody":{"functionReturnParameters":25235,"id":25251,"nodeType":"Return","src":"35960:7:72"}},{"clauses":[{"block":{"id":25271,"nodeType":"Block","src":"36108:21:72","statements":[{"functionReturnParameters":25235,"id":25270,"nodeType":"Return","src":"36116:7:72"}]},"errorName":"","id":25272,"nodeType":"TryCatchClause","parameters":{"id":25269,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25268,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25272,"src":"36095:6:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":25267,"name":"bytes4","nodeType":"ElementaryTypeName","src":"36095:6:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"36087:20:72"},"src":"36079:50:72"},{"block":{"id":25281,"nodeType":"Block","src":"36136:97:72","statements":[{"eventCall":{"arguments":[{"id":25274,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25233,"src":"36178:8:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":25276,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25237,"src":"36202:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25275,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"36188:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}},"id":25277,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36188:23:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyHolder_$28982","typeString":"contract IPolicyHolder"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_contract$_IPolicyHolder_$28982","typeString":"contract IPolicyHolder"}],"id":25273,"name":"ExpirationNotificationFailed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23104,"src":"36149:28:72","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_contract$_IPolicyHolder_$28982_$returns$__$","typeString":"function (uint256,contract IPolicyHolder)"}},"id":25278,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36149:63:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25279,"nodeType":"EmitStatement","src":"36144:68:72"},{"functionReturnParameters":25235,"id":25280,"nodeType":"Return","src":"36220:7:72"}]},"errorName":"","id":25282,"nodeType":"TryCatchClause","src":"36130:103:72"}],"externalCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":25259,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"36040:10:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":25260,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36040:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":25263,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"36062:4:72","typeDescriptions":{"typeIdentifier":"t_contract$_PolicyPool_$25449","typeString":"contract PolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PolicyPool_$25449","typeString":"contract PolicyPool"}],"id":25262,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"36054:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25261,"name":"address","nodeType":"ElementaryTypeName","src":"36054:7:72","typeDescriptions":{}}},"id":25264,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36054:13:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25265,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25233,"src":"36069:8:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":25254,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25237,"src":"35991:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25253,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"35977:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}},"id":25255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35977:23:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyHolder_$28982","typeString":"contract IPolicyHolder"}},"id":25256,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"36001:15:72","memberName":"onPolicyExpired","nodeType":"MemberAccess","referencedDeclaration":28935,"src":"35977:39:72","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bytes4_$","typeString":"function (address,address,uint256) external returns (bytes4)"}},"id":25258,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["gas"],"nodeType":"FunctionCallOptions","options":[{"id":25257,"name":"HOLDER_GAS_LIMIT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22887,"src":"36022:16:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"35977:62:72","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bytes4_$gas","typeString":"function (address,address,uint256) external returns (bytes4)"}},"id":25266,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35977:101:72","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":25283,"nodeType":"TryStatement","src":"35973:260:72"}]},"documentation":{"id":25231,"nodeType":"StructuredDocumentation","src":"35562:212:72","text":" @notice Notifies the expiration with a callback\n @dev Only if the policyholder implements the IPolicyHolder interface. Never reverts. The onPolicyExpired has\n a gas limit = HOLDER_GAS_LIMIT"},"id":25285,"implemented":true,"kind":"function","modifiers":[],"name":"_notifyExpiration","nameLocation":"35786:17:72","nodeType":"FunctionDefinition","parameters":{"id":25234,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25233,"mutability":"mutable","name":"policyId","nameLocation":"35812:8:72","nodeType":"VariableDeclaration","scope":25285,"src":"35804:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25232,"name":"uint256","nodeType":"ElementaryTypeName","src":"35804:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"35803:18:72"},"returnParameters":{"id":25235,"nodeType":"ParameterList","parameters":[],"src":"35831:0:72"},"scope":25449,"src":"35777:460:72","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25336,"nodeType":"Block","src":"36593:429:72","statements":[{"assignments":[25294],"declarations":[{"constant":false,"id":25294,"mutability":"mutable","name":"customer","nameLocation":"36607:8:72","nodeType":"VariableDeclaration","scope":25336,"src":"36599:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25293,"name":"address","nodeType":"ElementaryTypeName","src":"36599:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":25298,"initialValue":{"arguments":[{"id":25296,"name":"oldPolicyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25288,"src":"36626:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25295,"name":"ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1978,"src":"36618:7:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":25297,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36618:20:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"36599:39:72"},{"condition":{"id":25307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"36648:75:72","subExpression":{"arguments":[{"id":25301,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25294,"src":"36681:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"arguments":[{"id":25303,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"36696:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}],"id":25302,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"36691:4:72","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":25304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36691:19:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyHolder_$28982","typeString":"type(contract IPolicyHolder)"}},"id":25305,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"36711:11:72","memberName":"interfaceId","nodeType":"MemberAccess","src":"36691:31:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":25299,"name":"ERC165Checker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14260,"src":"36649:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC165Checker_$14260_$","typeString":"type(library ERC165Checker)"}},"id":25300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"36663:17:72","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":14113,"src":"36649:31:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":25306,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36649:74:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25309,"nodeType":"IfStatement","src":"36644:88:72","trueBody":{"functionReturnParameters":25292,"id":25308,"nodeType":"Return","src":"36725:7:72"}},{"assignments":[25311],"declarations":[{"constant":false,"id":25311,"mutability":"mutable","name":"retval","nameLocation":"36745:6:72","nodeType":"VariableDeclaration","scope":25336,"src":"36738:13:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":25310,"name":"bytes4","nodeType":"ElementaryTypeName","src":"36738:6:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":25325,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":25316,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"36795:10:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":25317,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36795:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":25320,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"36817:4:72","typeDescriptions":{"typeIdentifier":"t_contract$_PolicyPool_$25449","typeString":"contract PolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PolicyPool_$25449","typeString":"contract PolicyPool"}],"id":25319,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"36809:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25318,"name":"address","nodeType":"ElementaryTypeName","src":"36809:7:72","typeDescriptions":{}}},"id":25321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36809:13:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25322,"name":"oldPolicyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25288,"src":"36824:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25323,"name":"newPolicyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25290,"src":"36837:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":25313,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25294,"src":"36768:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25312,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"36754:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}},"id":25314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36754:23:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyHolder_$28982","typeString":"contract IPolicyHolder"}},"id":25315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"36778:16:72","memberName":"onPolicyReplaced","nodeType":"MemberAccess","referencedDeclaration":28963,"src":"36754:40:72","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,uint256) external returns (bytes4)"}},"id":25324,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36754:95:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"36738:111:72"},{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":25330,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25326,"name":"retval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25311,"src":"36924:6:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"expression":{"id":25327,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"36934:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}},"id":25328,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"36948:16:72","memberName":"onPolicyReplaced","nodeType":"MemberAccess","referencedDeclaration":28963,"src":"36934:30:72","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function IPolicyHolder.onPolicyReplaced(address,address,uint256,uint256) returns (bytes4)"}},"id":25329,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"36965:8:72","memberName":"selector","nodeType":"MemberAccess","src":"36934:39:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"36924:49:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25335,"nodeType":"IfStatement","src":"36920:97:72","trueBody":{"errorCall":{"arguments":[{"id":25332,"name":"retval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25311,"src":"37010:6:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":25331,"name":"InvalidNotificationResponse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23006,"src":"36982:27:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes4_$returns$_t_error_$","typeString":"function (bytes4) pure returns (error)"}},"id":25333,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36982:35:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25334,"nodeType":"RevertStatement","src":"36975:42:72"}}]},"documentation":{"id":25286,"nodeType":"StructuredDocumentation","src":"36241:270:72","text":" @notice Notifies the replacement with a callback\n @dev Only if the policyholder implements the IPolicyHolder interface.\n Reverts if the policyholder contract explicitly reverts or it doesn't return the\n IPolicyHolder.onPolicyReplaced selector."},"id":25337,"implemented":true,"kind":"function","modifiers":[],"name":"_notifyReplacement","nameLocation":"36523:18:72","nodeType":"FunctionDefinition","parameters":{"id":25291,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25288,"mutability":"mutable","name":"oldPolicyId","nameLocation":"36550:11:72","nodeType":"VariableDeclaration","scope":25337,"src":"36542:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25287,"name":"uint256","nodeType":"ElementaryTypeName","src":"36542:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25290,"mutability":"mutable","name":"newPolicyId","nameLocation":"36571:11:72","nodeType":"VariableDeclaration","scope":25337,"src":"36563:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25289,"name":"uint256","nodeType":"ElementaryTypeName","src":"36563:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"36541:42:72"},"returnParameters":{"id":25292,"nodeType":"ParameterList","parameters":[],"src":"36593:0:72"},"scope":25449,"src":"36514:508:72","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25394,"nodeType":"Block","src":"37455:518:72","statements":[{"assignments":[25350],"declarations":[{"constant":false,"id":25350,"mutability":"mutable","name":"customer","nameLocation":"37469:8:72","nodeType":"VariableDeclaration","scope":25394,"src":"37461:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25349,"name":"address","nodeType":"ElementaryTypeName","src":"37461:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":25354,"initialValue":{"arguments":[{"id":25352,"name":"cancelledPolicyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25340,"src":"37488:17:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25351,"name":"ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1978,"src":"37480:7:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":25353,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37480:26:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"37461:45:72"},{"condition":{"id":25363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"37516:75:72","subExpression":{"arguments":[{"id":25357,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25350,"src":"37549:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"arguments":[{"id":25359,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"37564:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}],"id":25358,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"37559:4:72","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":25360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37559:19:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyHolder_$28982","typeString":"type(contract IPolicyHolder)"}},"id":25361,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37579:11:72","memberName":"interfaceId","nodeType":"MemberAccess","src":"37559:31:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":25355,"name":"ERC165Checker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14260,"src":"37517:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC165Checker_$14260_$","typeString":"type(library ERC165Checker)"}},"id":25356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"37531:17:72","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":14113,"src":"37517:31:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":25362,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37517:74:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25365,"nodeType":"IfStatement","src":"37512:88:72","trueBody":{"functionReturnParameters":25348,"id":25364,"nodeType":"Return","src":"37593:7:72"}},{"assignments":[25367],"declarations":[{"constant":false,"id":25367,"mutability":"mutable","name":"retval","nameLocation":"37613:6:72","nodeType":"VariableDeclaration","scope":25394,"src":"37606:13:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":25366,"name":"bytes4","nodeType":"ElementaryTypeName","src":"37606:6:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":25383,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":25372,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"37671:10:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":25373,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37671:12:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":25376,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"37699:4:72","typeDescriptions":{"typeIdentifier":"t_contract$_PolicyPool_$25449","typeString":"contract PolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PolicyPool_$25449","typeString":"contract PolicyPool"}],"id":25375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"37691:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25374,"name":"address","nodeType":"ElementaryTypeName","src":"37691:7:72","typeDescriptions":{}}},"id":25377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37691:13:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25378,"name":"cancelledPolicyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25340,"src":"37712:17:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25379,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25342,"src":"37737:17:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25380,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25344,"src":"37762:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25381,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25346,"src":"37781:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":25369,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25350,"src":"37636:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25368,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"37622:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}},"id":25370,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37622:23:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyHolder_$28982","typeString":"contract IPolicyHolder"}},"id":25371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"37646:17:72","memberName":"onPolicyCancelled","nodeType":"MemberAccess","referencedDeclaration":28981,"src":"37622:41:72","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,uint256,uint256,uint256) external returns (bytes4)"}},"id":25382,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37622:176:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"37606:192:72"},{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":25388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25384,"name":"retval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25367,"src":"37874:6:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"expression":{"id":25385,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"37884:13:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}},"id":25386,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37898:17:72","memberName":"onPolicyCancelled","nodeType":"MemberAccess","referencedDeclaration":28981,"src":"37884:31:72","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function IPolicyHolder.onPolicyCancelled(address,address,uint256,uint256,uint256,uint256) returns (bytes4)"}},"id":25387,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37916:8:72","memberName":"selector","nodeType":"MemberAccess","src":"37884:40:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"37874:50:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25393,"nodeType":"IfStatement","src":"37870:98:72","trueBody":{"errorCall":{"arguments":[{"id":25390,"name":"retval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25367,"src":"37961:6:72","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":25389,"name":"InvalidNotificationResponse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23006,"src":"37933:27:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes4_$returns$_t_error_$","typeString":"function (bytes4) pure returns (error)"}},"id":25391,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37933:35:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25392,"nodeType":"RevertStatement","src":"37926:42:72"}}]},"documentation":{"id":25338,"nodeType":"StructuredDocumentation","src":"37026:272:72","text":" @notice Notifies the cancellation with a callback\n @dev Only if the policyholder implements the IPolicyHolder interface.\n Reverts if the policyholder contract explicitly reverts or it doesn't return the\n IPolicyHolder.onPolicyCancelled selector."},"id":25395,"implemented":true,"kind":"function","modifiers":[],"name":"_notifyCancellation","nameLocation":"37310:19:72","nodeType":"FunctionDefinition","parameters":{"id":25347,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25340,"mutability":"mutable","name":"cancelledPolicyId","nameLocation":"37343:17:72","nodeType":"VariableDeclaration","scope":25395,"src":"37335:25:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25339,"name":"uint256","nodeType":"ElementaryTypeName","src":"37335:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25342,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"37374:17:72","nodeType":"VariableDeclaration","scope":25395,"src":"37366:25:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25341,"name":"uint256","nodeType":"ElementaryTypeName","src":"37366:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25344,"mutability":"mutable","name":"jrCocRefund","nameLocation":"37405:11:72","nodeType":"VariableDeclaration","scope":25395,"src":"37397:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25343,"name":"uint256","nodeType":"ElementaryTypeName","src":"37397:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25346,"mutability":"mutable","name":"srCocRefund","nameLocation":"37430:11:72","nodeType":"VariableDeclaration","scope":25395,"src":"37422:19:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25345,"name":"uint256","nodeType":"ElementaryTypeName","src":"37422:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"37329:116:72"},"returnParameters":{"id":25348,"nodeType":"ParameterList","parameters":[],"src":"37455:0:72"},"scope":25449,"src":"37301:672:72","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[2055],"body":{"id":25404,"nodeType":"Block","src":"38286:29:72","statements":[{"expression":{"id":25402,"name":"_nftBaseURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22938,"src":"38299:11:72","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":25401,"id":25403,"nodeType":"Return","src":"38292:18:72"}]},"documentation":{"id":25396,"nodeType":"StructuredDocumentation","src":"37977:231:72","text":" @notice Base URI for computing {tokenURI}.\n @dev If set, the resulting URI for each token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n by default, can be modified calling {setBaseURI}."},"id":25405,"implemented":true,"kind":"function","modifiers":[],"name":"_baseURI","nameLocation":"38220:8:72","nodeType":"FunctionDefinition","overrides":{"id":25398,"nodeType":"OverrideSpecifier","overrides":[],"src":"38253:8:72"},"parameters":{"id":25397,"nodeType":"ParameterList","parameters":[],"src":"38228:2:72"},"returnParameters":{"id":25401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25400,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25405,"src":"38271:13:72","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":25399,"name":"string","nodeType":"ElementaryTypeName","src":"38271:6:72","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"38270:15:72"},"scope":25449,"src":"38211:104:72","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":25420,"nodeType":"Block","src":"38513:87:72","statements":[{"eventCall":{"arguments":[{"id":25412,"name":"_nftBaseURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22938,"src":"38539:11:72","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},{"id":25413,"name":"nftBaseURI_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25408,"src":"38552:11:72","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":25411,"name":"BaseURIChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23084,"src":"38524:14:72","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":25414,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38524:40:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25415,"nodeType":"EmitStatement","src":"38519:45:72"},{"expression":{"id":25418,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":25416,"name":"_nftBaseURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22938,"src":"38570:11:72","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":25417,"name":"nftBaseURI_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25408,"src":"38584:11:72","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},"src":"38570:25:72","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":25419,"nodeType":"ExpressionStatement","src":"38570:25:72"}]},"documentation":{"id":25406,"nodeType":"StructuredDocumentation","src":"38319:133:72","text":" @notice Changes the baseURI of the minted policy NFTs\n @custom:emits BaseURIChanged With the new and old URIs"},"functionSelector":"55f804b3","id":25421,"implemented":true,"kind":"function","modifiers":[],"name":"setBaseURI","nameLocation":"38464:10:72","nodeType":"FunctionDefinition","parameters":{"id":25409,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25408,"mutability":"mutable","name":"nftBaseURI_","nameLocation":"38491:11:72","nodeType":"VariableDeclaration","scope":25421,"src":"38475:27:72","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":25407,"name":"string","nodeType":"ElementaryTypeName","src":"38475:6:72","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"38474:29:72"},"returnParameters":{"id":25410,"nodeType":"ParameterList","parameters":[],"src":"38513:0:72"},"scope":25449,"src":"38455:145:72","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[2461],"body":{"id":25442,"nodeType":"Block","src":"38714:50:72","statements":[{"expression":{"arguments":[{"id":25437,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25423,"src":"38741:2:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25438,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25425,"src":"38745:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25439,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25427,"src":"38754:4:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":25435,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"38727:5:72","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_PolicyPool_$25449_$","typeString":"type(contract super PolicyPool)"}},"id":25436,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"38733:7:72","memberName":"_update","nodeType":"MemberAccess","referencedDeclaration":2461,"src":"38727:13:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_address_$returns$_t_address_$","typeString":"function (address,uint256,address) returns (address)"}},"id":25440,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38727:32:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":25434,"id":25441,"nodeType":"Return","src":"38720:39:72"}]},"id":25443,"implemented":true,"kind":"function","modifiers":[{"id":25431,"kind":"modifierInvocation","modifierName":{"id":25430,"name":"whenNotPaused","nameLocations":["38682:13:72"],"nodeType":"IdentifierPath","referencedDeclaration":3174,"src":"38682:13:72"},"nodeType":"ModifierInvocation","src":"38682:13:72"}],"name":"_update","nameLocation":"38613:7:72","nodeType":"FunctionDefinition","overrides":{"id":25429,"nodeType":"OverrideSpecifier","overrides":[],"src":"38673:8:72"},"parameters":{"id":25428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25423,"mutability":"mutable","name":"to","nameLocation":"38629:2:72","nodeType":"VariableDeclaration","scope":25443,"src":"38621:10:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25422,"name":"address","nodeType":"ElementaryTypeName","src":"38621:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25425,"mutability":"mutable","name":"tokenId","nameLocation":"38641:7:72","nodeType":"VariableDeclaration","scope":25443,"src":"38633:15:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25424,"name":"uint256","nodeType":"ElementaryTypeName","src":"38633:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25427,"mutability":"mutable","name":"auth","nameLocation":"38658:4:72","nodeType":"VariableDeclaration","scope":25443,"src":"38650:12:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25426,"name":"address","nodeType":"ElementaryTypeName","src":"38650:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"38620:43:72"},"returnParameters":{"id":25434,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25433,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25443,"src":"38705:7:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25432,"name":"address","nodeType":"ElementaryTypeName","src":"38705:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"38704:9:72"},"scope":25449,"src":"38604:160:72","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"constant":false,"documentation":{"id":25444,"nodeType":"StructuredDocumentation","src":"38768:246:72","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":25448,"mutability":"mutable","name":"__gap","nameLocation":"39037:5:72","nodeType":"VariableDeclaration","scope":25449,"src":"39017:25:72","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$45_storage","typeString":"uint256[45]"},"typeName":{"baseType":{"id":25445,"name":"uint256","nodeType":"ElementaryTypeName","src":"39017:7:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":25447,"length":{"hexValue":"3435","id":25446,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39025:2:72","typeDescriptions":{"typeIdentifier":"t_rational_45_by_1","typeString":"int_const 45"},"value":"45"},"nodeType":"ArrayTypeName","src":"39017:11:72","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$45_storage_ptr","typeString":"uint256[45]"}},"visibility":"private"}],"scope":25450,"src":"2428:36617:72","usedErrors":[3163,3166,6483,6488,6497,6502,6507,6514,6519,6524,6630,6643,6967,6970,7241,7246,8911,9606,10740,15924,22294,22948,22951,22954,22957,22960,22963,22966,22975,22978,22986,22989,22992,22995,22998,23001,23006,23011,23016,23021,23030,23039,23051,23058,23065,23070],"usedEvents":[3155,3160,6213,6975,9370,9379,9388,23077,23084,23096,23104,23114,23126,23140,29002,29012,29026,29036]}],"src":"39:39007:72"},"id":72},"contracts/PolicyPoolComponent.sol":{"ast":{"absolutePath":"contracts/PolicyPoolComponent.sol","exportedSymbols":{"IERC165":[14272],"IERC20Metadata":[8863],"IPolicyPool":[29171],"IPolicyPoolComponent":[29188],"Initializable":[7218],"PolicyPoolComponent":[25609],"UUPSUpgradeable":[7384]},"id":25610,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":25451,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:73"},{"absolutePath":"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol","file":"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol","id":25453,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25610,"sourceUnit":7385,"src":"65:88:73","symbolAliases":[{"foreign":{"id":25452,"name":"UUPSUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7384,"src":"73:15:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":25455,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25610,"sourceUnit":7219,"src":"154:84:73","symbolAliases":[{"foreign":{"id":25454,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7218,"src":"162:13:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":25457,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25610,"sourceUnit":8864,"src":"239:97:73","symbolAliases":[{"foreign":{"id":25456,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"247:14:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":25459,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25610,"sourceUnit":14273,"src":"337:80:73","symbolAliases":[{"foreign":{"id":25458,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"345:7:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyPool.sol","file":"./interfaces/IPolicyPool.sol","id":25461,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25610,"sourceUnit":29172,"src":"418:57:73","symbolAliases":[{"foreign":{"id":25460,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"426:11:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyPoolComponent.sol","file":"./interfaces/IPolicyPoolComponent.sol","id":25463,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25610,"sourceUnit":29189,"src":"476:75:73","symbolAliases":[{"foreign":{"id":25462,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29188,"src":"484:20:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":25465,"name":"Initializable","nameLocations":["1069:13:73"],"nodeType":"IdentifierPath","referencedDeclaration":7218,"src":"1069:13:73"},"id":25466,"nodeType":"InheritanceSpecifier","src":"1069:13:73"},{"baseName":{"id":25467,"name":"UUPSUpgradeable","nameLocations":["1084:15:73"],"nodeType":"IdentifierPath","referencedDeclaration":7384,"src":"1084:15:73"},"id":25468,"nodeType":"InheritanceSpecifier","src":"1084:15:73"},{"baseName":{"id":25469,"name":"IPolicyPoolComponent","nameLocations":["1101:20:73"],"nodeType":"IdentifierPath","referencedDeclaration":29188,"src":"1101:20:73"},"id":25470,"nodeType":"InheritanceSpecifier","src":"1101:20:73"}],"canonicalName":"PolicyPoolComponent","contractDependencies":[],"contractKind":"contract","documentation":{"id":25464,"nodeType":"StructuredDocumentation","src":"553:474:73","text":" @title Base class for PolicyPool components\n @dev This is the base class of all the components of the protocol that are linked to the PolicyPool and created\n      after it.\n      Holds the reference to _policyPool as immutable, also provides access to common admin roles:\n      This contract also keeps track of the tweaks to avoid two tweaks of the same type are done in a short period.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":25609,"linearizedBaseContracts":[25609,29188,14272,7384,6435,7218],"name":"PolicyPoolComponent","nameLocation":"1046:19:73","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":25471,"nodeType":"StructuredDocumentation","src":"1126:61:73","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":25474,"mutability":"immutable","name":"_policyPool","nameLocation":"1221:11:73","nodeType":"VariableDeclaration","scope":25609,"src":"1190:42:73","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"typeName":{"id":25473,"nodeType":"UserDefinedTypeName","pathNode":{"id":25472,"name":"IPolicyPool","nameLocations":["1190:11:73"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"1190:11:73"},"referencedDeclaration":29171,"src":"1190:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"visibility":"internal"},{"errorSelector":"6b23cf01","id":25476,"name":"NoZeroPolicyPool","nameLocation":"1243:16:73","nodeType":"ErrorDefinition","parameters":{"id":25475,"nodeType":"ParameterList","parameters":[],"src":"1259:2:73"},"src":"1237:25:73"},{"errorSelector":"d2b3d33f","id":25478,"name":"UpgradeCannotChangePolicyPool","nameLocation":"1271:29:73","nodeType":"ErrorDefinition","parameters":{"id":25477,"nodeType":"ParameterList","parameters":[],"src":"1300:2:73"},"src":"1265:38:73"},{"errorSelector":"799e780f","id":25480,"name":"OnlyPolicyPool","nameLocation":"1312:14:73","nodeType":"ErrorDefinition","parameters":{"id":25479,"nodeType":"ParameterList","parameters":[],"src":"1326:2:73"},"src":"1306:23:73"},{"body":{"id":25495,"nodeType":"Block","src":"1359:79:73","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":25489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":25483,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1373:3:73","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":25484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1377:6:73","memberName":"sender","nodeType":"MemberAccess","src":"1373:10:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":25487,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25474,"src":"1395:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}],"id":25486,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1387:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25485,"name":"address","nodeType":"ElementaryTypeName","src":"1387:7:73","typeDescriptions":{}}},"id":25488,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1387:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1373:34:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":25490,"name":"OnlyPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25480,"src":"1409:14:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":25491,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1409:16:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":25482,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"1365:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":25492,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1365:61:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25493,"nodeType":"ExpressionStatement","src":"1365:61:73"},{"id":25494,"nodeType":"PlaceholderStatement","src":"1432:1:73"}]},"id":25496,"name":"onlyPolicyPool","nameLocation":"1342:14:73","nodeType":"ModifierDefinition","parameters":{"id":25481,"nodeType":"ParameterList","parameters":[],"src":"1356:2:73"},"src":"1333:105:73","virtual":false,"visibility":"internal"},{"body":{"id":25523,"nodeType":"Block","src":"1530:135:73","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":25511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":25505,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25500,"src":"1548:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}],"id":25504,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1540:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25503,"name":"address","nodeType":"ElementaryTypeName","src":"1540:7:73","typeDescriptions":{}}},"id":25506,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1540:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":25509,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1572:1:73","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":25508,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1564:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25507,"name":"address","nodeType":"ElementaryTypeName","src":"1564:7:73","typeDescriptions":{}}},"id":25510,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1564:10:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1540:34:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25515,"nodeType":"IfStatement","src":"1536:65:73","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":25512,"name":"NoZeroPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25476,"src":"1583:16:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":25513,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1583:18:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25514,"nodeType":"RevertStatement","src":"1576:25:73"}},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":25516,"name":"_disableInitializers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7172,"src":"1607:20:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":25517,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1607:22:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25518,"nodeType":"ExpressionStatement","src":"1607:22:73"},{"expression":{"id":25521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":25519,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25474,"src":"1635:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":25520,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25500,"src":"1649:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"src":"1635:25:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"id":25522,"nodeType":"ExpressionStatement","src":"1635:25:73"}]},"documentation":{"id":25497,"nodeType":"StructuredDocumentation","src":"1442:48:73","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":25524,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":25501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25500,"mutability":"mutable","name":"policyPool_","nameLocation":"1517:11:73","nodeType":"VariableDeclaration","scope":25524,"src":"1505:23:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"typeName":{"id":25499,"nodeType":"UserDefinedTypeName","pathNode":{"id":25498,"name":"IPolicyPool","nameLocations":["1505:11:73"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"1505:11:73"},"referencedDeclaration":29171,"src":"1505:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"1504:25:73"},"returnParameters":{"id":25502,"nodeType":"ParameterList","parameters":[],"src":"1530:0:73"},"scope":25609,"src":"1493:172:73","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25529,"nodeType":"Block","src":"1801:2:73","statements":[]},"id":25530,"implemented":true,"kind":"function","modifiers":[{"id":25527,"kind":"modifierInvocation","modifierName":{"id":25526,"name":"onlyInitializing","nameLocations":["1784:16:73"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"1784:16:73"},"nodeType":"ModifierInvocation","src":"1784:16:73"}],"name":"__PolicyPoolComponent_init","nameLocation":"1746:26:73","nodeType":"FunctionDefinition","parameters":{"id":25525,"nodeType":"ParameterList","parameters":[],"src":"1772:2:73"},"returnParameters":{"id":25528,"nodeType":"ParameterList","parameters":[],"src":"1801:0:73"},"scope":25609,"src":"1737:66:73","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[7338],"body":{"id":25540,"nodeType":"Block","src":"1874:39:73","statements":[{"expression":{"arguments":[{"id":25537,"name":"newImpl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25532,"src":"1900:7:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25536,"name":"_upgradeValidations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25558,"src":"1880:19:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$__$","typeString":"function (address) view"}},"id":25538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1880:28:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25539,"nodeType":"ExpressionStatement","src":"1880:28:73"}]},"id":25541,"implemented":true,"kind":"function","modifiers":[],"name":"_authorizeUpgrade","nameLocation":"1816:17:73","nodeType":"FunctionDefinition","overrides":{"id":25534,"nodeType":"OverrideSpecifier","overrides":[],"src":"1865:8:73"},"parameters":{"id":25533,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25532,"mutability":"mutable","name":"newImpl","nameLocation":"1842:7:73","nodeType":"VariableDeclaration","scope":25541,"src":"1834:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25531,"name":"address","nodeType":"ElementaryTypeName","src":"1834:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1833:17:73"},"returnParameters":{"id":25535,"nodeType":"ParameterList","parameters":[],"src":"1874:0:73"},"scope":25609,"src":"1807:106:73","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":25557,"nodeType":"Block","src":"1985:112:73","statements":[{"condition":{"commonType":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"id":25552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":25547,"name":"newImpl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25543,"src":"2016:7:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25546,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29188,"src":"1995:20:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$29188_$","typeString":"type(contract IPolicyPoolComponent)"}},"id":25548,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1995:29:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$29188","typeString":"contract IPolicyPoolComponent"}},"id":25549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2025:10:73","memberName":"policyPool","nodeType":"MemberAccess","referencedDeclaration":29187,"src":"1995:40:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPolicyPool_$29171_$","typeString":"function () view external returns (contract IPolicyPool)"}},"id":25550,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1995:42:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":25551,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25474,"src":"2041:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"src":"1995:57:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25556,"nodeType":"IfStatement","src":"1991:101:73","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":25553,"name":"UpgradeCannotChangePolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25478,"src":"2061:29:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":25554,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2061:31:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25555,"nodeType":"RevertStatement","src":"2054:38:73"}}]},"id":25558,"implemented":true,"kind":"function","modifiers":[],"name":"_upgradeValidations","nameLocation":"1926:19:73","nodeType":"FunctionDefinition","parameters":{"id":25544,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25543,"mutability":"mutable","name":"newImpl","nameLocation":"1954:7:73","nodeType":"VariableDeclaration","scope":25558,"src":"1946:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25542,"name":"address","nodeType":"ElementaryTypeName","src":"1946:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1945:17:73"},"returnParameters":{"id":25545,"nodeType":"ParameterList","parameters":[],"src":"1985:0:73"},"scope":25609,"src":"1917:180:73","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[14271],"body":{"id":25581,"nodeType":"Block","src":"2247:115:73","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":25579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":25572,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25567,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25561,"src":"2260:11:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":25569,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"2280:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$14272_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$14272_$","typeString":"type(contract IERC165)"}],"id":25568,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2275:4:73","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":25570,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2275:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$14272","typeString":"type(contract IERC165)"}},"id":25571,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2289:11:73","memberName":"interfaceId","nodeType":"MemberAccess","src":"2275:25:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2260:40:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":25578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25573,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25561,"src":"2304:11:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":25575,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29188,"src":"2324:20:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$29188_$","typeString":"type(contract IPolicyPoolComponent)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$29188_$","typeString":"type(contract IPolicyPoolComponent)"}],"id":25574,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2319:4:73","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":25576,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2319:26:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyPoolComponent_$29188","typeString":"type(contract IPolicyPoolComponent)"}},"id":25577,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2346:11:73","memberName":"interfaceId","nodeType":"MemberAccess","src":"2319:38:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2304:53:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2260:97:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":25566,"id":25580,"nodeType":"Return","src":"2253:104:73"}]},"documentation":{"id":25559,"nodeType":"StructuredDocumentation","src":"2101:52:73","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":25582,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"2165:17:73","nodeType":"FunctionDefinition","overrides":{"id":25563,"nodeType":"OverrideSpecifier","overrides":[],"src":"2223:8:73"},"parameters":{"id":25562,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25561,"mutability":"mutable","name":"interfaceId","nameLocation":"2190:11:73","nodeType":"VariableDeclaration","scope":25582,"src":"2183:18:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":25560,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2183:6:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2182:20:73"},"returnParameters":{"id":25566,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25565,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25582,"src":"2241:4:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25564,"name":"bool","nodeType":"ElementaryTypeName","src":"2241:4:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2240:6:73"},"scope":25609,"src":"2156:206:73","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[29187],"body":{"id":25591,"nodeType":"Block","src":"2431:29:73","statements":[{"expression":{"id":25589,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25474,"src":"2444:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"functionReturnParameters":25588,"id":25590,"nodeType":"Return","src":"2437:18:73"}]},"functionSelector":"4d15eb03","id":25592,"implemented":true,"kind":"function","modifiers":[],"name":"policyPool","nameLocation":"2375:10:73","nodeType":"FunctionDefinition","overrides":{"id":25584,"nodeType":"OverrideSpecifier","overrides":[],"src":"2400:8:73"},"parameters":{"id":25583,"nodeType":"ParameterList","parameters":[],"src":"2385:2:73"},"returnParameters":{"id":25588,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25587,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25592,"src":"2418:11:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"typeName":{"id":25586,"nodeType":"UserDefinedTypeName","pathNode":{"id":25585,"name":"IPolicyPool","nameLocations":["2418:11:73"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"2418:11:73"},"referencedDeclaration":29171,"src":"2418:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"2417:13:73"},"scope":25609,"src":"2366:94:73","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":25602,"nodeType":"Block","src":"2521:40:73","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25598,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25474,"src":"2534:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"id":25599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2546:8:73","memberName":"currency","nodeType":"MemberAccess","referencedDeclaration":29043,"src":"2534:20:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IERC20Metadata_$8863_$","typeString":"function () view external returns (contract IERC20Metadata)"}},"id":25600,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2534:22:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"functionReturnParameters":25597,"id":25601,"nodeType":"Return","src":"2527:29:73"}]},"functionSelector":"e5a6b10f","id":25603,"implemented":true,"kind":"function","modifiers":[],"name":"currency","nameLocation":"2473:8:73","nodeType":"FunctionDefinition","parameters":{"id":25593,"nodeType":"ParameterList","parameters":[],"src":"2481:2:73"},"returnParameters":{"id":25597,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25596,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25603,"src":"2505:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"},"typeName":{"id":25595,"nodeType":"UserDefinedTypeName","pathNode":{"id":25594,"name":"IERC20Metadata","nameLocations":["2505:14:73"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"2505:14:73"},"referencedDeclaration":8863,"src":"2505:14:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"src":"2504:16:73"},"scope":25609,"src":"2464:97:73","stateMutability":"view","virtual":false,"visibility":"public"},{"constant":false,"documentation":{"id":25604,"nodeType":"StructuredDocumentation","src":"2565:246:73","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":25608,"mutability":"mutable","name":"__gap","nameLocation":"2834:5:73","nodeType":"VariableDeclaration","scope":25609,"src":"2814:25:73","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage","typeString":"uint256[50]"},"typeName":{"baseType":{"id":25605,"name":"uint256","nodeType":"ElementaryTypeName","src":"2814:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":25607,"length":{"hexValue":"3530","id":25606,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2822:2:73","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"50"},"nodeType":"ArrayTypeName","src":"2814:11:73","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage_ptr","typeString":"uint256[50]"}},"visibility":"private"}],"scope":25610,"src":"1028:1814:73","usedErrors":[6630,6643,6967,6970,7241,7246,9606,10740,25476,25478,25480],"usedEvents":[6213,6975]}],"src":"39:2804:73"},"id":73},"contracts/PremiumsAccount.sol":{"ast":{"absolutePath":"contracts/PremiumsAccount.sol","exportedSymbols":{"IERC20Metadata":[8863],"IERC4626":[6400],"IEToken":[28869],"IPolicyPool":[29171],"IPremiumsAccount":[29276],"Math":[15914],"Policy":[22826],"PremiumsAccount":[27362],"Reserve":[28015],"SafeCast":[17679],"SafeERC20":[9354]},"id":27363,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":25611,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:74"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"@openzeppelin/contracts/utils/math/Math.sol","id":25613,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":27363,"sourceUnit":15915,"src":"65:65:74","symbolAliases":[{"foreign":{"id":25612,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"73:4:74","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":25615,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":27363,"sourceUnit":8864,"src":"131:97:74","symbolAliases":[{"foreign":{"id":25614,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"139:14:74","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","file":"@openzeppelin/contracts/interfaces/IERC4626.sol","id":25617,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":27363,"sourceUnit":6401,"src":"229:73:74","symbolAliases":[{"foreign":{"id":25616,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6400,"src":"237:8:74","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":25619,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":27363,"sourceUnit":9355,"src":"303:82:74","symbolAliases":[{"foreign":{"id":25618,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9354,"src":"311:9:74","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"@openzeppelin/contracts/utils/math/SafeCast.sol","id":25621,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":27363,"sourceUnit":17680,"src":"386:73:74","symbolAliases":[{"foreign":{"id":25620,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"394:8:74","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyPool.sol","file":"./interfaces/IPolicyPool.sol","id":25623,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":27363,"sourceUnit":29172,"src":"460:57:74","symbolAliases":[{"foreign":{"id":25622,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"468:11:74","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IEToken.sol","file":"./interfaces/IEToken.sol","id":25625,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":27363,"sourceUnit":28870,"src":"518:49:74","symbolAliases":[{"foreign":{"id":25624,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28869,"src":"526:7:74","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/Reserve.sol","file":"./Reserve.sol","id":25627,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":27363,"sourceUnit":28016,"src":"568:38:74","symbolAliases":[{"foreign":{"id":25626,"name":"Reserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28015,"src":"576:7:74","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPremiumsAccount.sol","file":"./interfaces/IPremiumsAccount.sol","id":25629,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":27363,"sourceUnit":29277,"src":"607:67:74","symbolAliases":[{"foreign":{"id":25628,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29276,"src":"615:16:74","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/Policy.sol","file":"./Policy.sol","id":25631,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":27363,"sourceUnit":22827,"src":"675:36:74","symbolAliases":[{"foreign":{"id":25630,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"683:6:74","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":25633,"name":"IPremiumsAccount","nameLocations":["1349:16:74"],"nodeType":"IdentifierPath","referencedDeclaration":29276,"src":"1349:16:74"},"id":25634,"nodeType":"InheritanceSpecifier","src":"1349:16:74"},{"baseName":{"id":25635,"name":"Reserve","nameLocations":["1367:7:74"],"nodeType":"IdentifierPath","referencedDeclaration":28015,"src":"1367:7:74"},"id":25636,"nodeType":"InheritanceSpecifier","src":"1367:7:74"}],"canonicalName":"PremiumsAccount","contractDependencies":[],"contractKind":"contract","documentation":{"id":25632,"nodeType":"StructuredDocumentation","src":"713:607:74","text":" @title Ensuro Premiums Account\n @notice This contract holds the pure premiums of a set of risk modules.\n @dev Pure premiums is the part of the premium that is expected to cover the losses. The contract keeps track of the pure premiums of the active policies\n (_activePurePremiums) and the surplus or deficit generated by the finalized policies (pure premiums collected -\n losses).\n Collaborates with a junior {EToken} and a senior {EToken} that act as lenders when the premiums aren't enough to\n cover the losses.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":27362,"linearizedBaseContracts":[27362,28015,25609,29188,14272,7384,6435,7218,29276],"name":"PremiumsAccount","nameLocation":"1330:15:74","nodeType":"ContractDefinition","nodes":[{"global":false,"id":25640,"libraryName":{"id":25637,"name":"Policy","nameLocations":["1385:6:74"],"nodeType":"IdentifierPath","referencedDeclaration":22826,"src":"1385:6:74"},"nodeType":"UsingForDirective","src":"1379:35:74","typeName":{"id":25639,"nodeType":"UserDefinedTypeName","pathNode":{"id":25638,"name":"Policy.PolicyData","nameLocations":["1396:6:74","1403:10:74"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"1396:17:74"},"referencedDeclaration":22256,"src":"1396:17:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}}},{"global":false,"id":25643,"libraryName":{"id":25641,"name":"Math","nameLocations":["1423:4:74"],"nodeType":"IdentifierPath","referencedDeclaration":15914,"src":"1423:4:74"},"nodeType":"UsingForDirective","src":"1417:23:74","typeName":{"id":25642,"name":"uint256","nodeType":"ElementaryTypeName","src":"1432:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"global":false,"id":25647,"libraryName":{"id":25644,"name":"SafeERC20","nameLocations":["1449:9:74"],"nodeType":"IdentifierPath","referencedDeclaration":9354,"src":"1449:9:74"},"nodeType":"UsingForDirective","src":"1443:35:74","typeName":{"id":25646,"nodeType":"UserDefinedTypeName","pathNode":{"id":25645,"name":"IERC20Metadata","nameLocations":["1463:14:74"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"1463:14:74"},"referencedDeclaration":8863,"src":"1463:14:74","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}}},{"global":false,"id":25650,"libraryName":{"id":25648,"name":"SafeCast","nameLocations":["1487:8:74"],"nodeType":"IdentifierPath","referencedDeclaration":17679,"src":"1487:8:74"},"nodeType":"UsingForDirective","src":"1481:27:74","typeName":{"id":25649,"name":"uint256","nodeType":"ElementaryTypeName","src":"1500:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"constant":true,"id":25653,"mutability":"constant","name":"WAD","nameLocation":"1538:3:74","nodeType":"VariableDeclaration","scope":27362,"src":"1512:36:74","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25651,"name":"uint256","nodeType":"ElementaryTypeName","src":"1512:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31653138","id":25652,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1544:4:74","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"visibility":"internal"},{"constant":true,"id":25656,"mutability":"constant","name":"FOUR_DECIMAL_TO_WAD","nameLocation":"1578:19:74","nodeType":"VariableDeclaration","scope":27362,"src":"1552:52:74","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25654,"name":"uint256","nodeType":"ElementaryTypeName","src":"1552:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31653134","id":25655,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1600:4:74","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000_by_1","typeString":"int_const 100000000000000"},"value":"1e14"},"visibility":"internal"},{"constant":true,"id":25659,"mutability":"constant","name":"HUNDRED_PERCENT","nameLocation":"1633:15:74","nodeType":"VariableDeclaration","scope":27362,"src":"1608:46:74","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":25657,"name":"uint16","nodeType":"ElementaryTypeName","src":"1608:6:74","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"value":{"hexValue":"316534","id":25658,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1651:3:74","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"1e4"},"visibility":"internal"},{"constant":false,"documentation":{"id":25660,"nodeType":"StructuredDocumentation","src":"1824:61:74","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":25663,"mutability":"immutable","name":"_juniorEtk","nameLocation":"1915:10:74","nodeType":"VariableDeclaration","scope":27362,"src":"1888:37:74","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":25662,"nodeType":"UserDefinedTypeName","pathNode":{"id":25661,"name":"IEToken","nameLocations":["1888:7:74"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"1888:7:74"},"referencedDeclaration":28869,"src":"1888:7:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"documentation":{"id":25664,"nodeType":"StructuredDocumentation","src":"2141:61:74","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":25667,"mutability":"immutable","name":"_seniorEtk","nameLocation":"2232:10:74","nodeType":"VariableDeclaration","scope":27362,"src":"2205:37:74","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":25666,"nodeType":"UserDefinedTypeName","pathNode":{"id":25665,"name":"IEToken","nameLocations":["2205:7:74"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"2205:7:74"},"referencedDeclaration":28869,"src":"2205:7:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"documentation":{"id":25668,"nodeType":"StructuredDocumentation","src":"2247:171:74","text":" @dev The active pure premiums field keeps track of the pure premiums collected by the active policies of risk\n modules linked with this PremiumsAccount."},"id":25670,"mutability":"mutable","name":"_activePurePremiums","nameLocation":"2438:19:74","nodeType":"VariableDeclaration","scope":27362,"src":"2421:36:74","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25669,"name":"uint256","nodeType":"ElementaryTypeName","src":"2421:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"documentation":{"id":25671,"nodeType":"StructuredDocumentation","src":"2514:313:74","text":" @dev The surplus field keeps track of the surplus or deficit (when negative) of the actual payouts made by the\n PremiumsAccount versus the collected pure premiums. On the negative side, it has a limit defined by `_maxDeficit()`,\n after that limit, internal loans are taken from the eTokens."},"id":25673,"mutability":"mutable","name":"_surplus","nameLocation":"2846:8:74","nodeType":"VariableDeclaration","scope":27362,"src":"2830:24:74","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":25672,"name":"int256","nodeType":"ElementaryTypeName","src":"2830:6:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"canonicalName":"PremiumsAccount.PackedParams","documentation":{"id":25674,"nodeType":"StructuredDocumentation","src":"2859:630:74","text":" @notice This struct has the parameters that can be modified by governance\n @member deficitRatio A value between [0, 1] that defines the percentage of active pure premiums that can be used\n                      to cover losses.\n @member yieldVault   This is the implementation contract that manages the PremiumsAccount's funds. See\n                      {yieldVault()}\n @member jrLoanLimit  This is the maximum amount that can be borrowed from the Junior eToken (without decimals)\n @member srLoanLimit  This is the maximum amount that can be borrowed from the Senior eToken (without decimals)"},"id":25684,"members":[{"constant":false,"id":25677,"mutability":"mutable","name":"yieldVault","nameLocation":"3527:10:74","nodeType":"VariableDeclaration","scope":25684,"src":"3518:19:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":25676,"nodeType":"UserDefinedTypeName","pathNode":{"id":25675,"name":"IERC4626","nameLocations":["3518:8:74"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"3518:8:74"},"referencedDeclaration":6400,"src":"3518:8:74","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":25679,"mutability":"mutable","name":"jrLoanLimit","nameLocation":"3550:11:74","nodeType":"VariableDeclaration","scope":25684,"src":"3543:18:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":25678,"name":"uint32","nodeType":"ElementaryTypeName","src":"3543:6:74","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":25681,"mutability":"mutable","name":"srLoanLimit","nameLocation":"3574:11:74","nodeType":"VariableDeclaration","scope":25684,"src":"3567:18:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":25680,"name":"uint32","nodeType":"ElementaryTypeName","src":"3567:6:74","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":25683,"mutability":"mutable","name":"deficitRatio","nameLocation":"3598:12:74","nodeType":"VariableDeclaration","scope":25684,"src":"3591:19:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":25682,"name":"uint16","nodeType":"ElementaryTypeName","src":"3591:6:74","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"name":"PackedParams","nameLocation":"3499:12:74","nodeType":"StructDefinition","scope":27362,"src":"3492:123:74","visibility":"public"},{"constant":false,"id":25687,"mutability":"mutable","name":"_params","nameLocation":"3641:7:74","nodeType":"VariableDeclaration","scope":27362,"src":"3619:29:74","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_storage","typeString":"struct PremiumsAccount.PackedParams"},"typeName":{"id":25686,"nodeType":"UserDefinedTypeName","pathNode":{"id":25685,"name":"PackedParams","nameLocations":["3619:12:74"],"nodeType":"IdentifierPath","referencedDeclaration":25684,"src":"3619:12:74"},"referencedDeclaration":25684,"src":"3619:12:74","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_storage_ptr","typeString":"struct PremiumsAccount.PackedParams"}},"visibility":"internal"},{"documentation":{"id":25688,"nodeType":"StructuredDocumentation","src":"3653:361:74","text":" @notice Thrown when yield-vault losses would push the account below its maximum allowed deficit.\n @dev `excess` is the remaining unpaid amount returned by `_payFromPremiums(losses)` after clamping to `_maxDeficit()`.\n @param losses The total losses being applied\n @param excess The unpaid portion that exceeds the max-deficit capacity"},"errorSelector":"1f846496","id":25694,"name":"LossesCannotExceedMaxDeficit","nameLocation":"4023:28:74","nodeType":"ErrorDefinition","parameters":{"id":25693,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25690,"mutability":"mutable","name":"losses","nameLocation":"4060:6:74","nodeType":"VariableDeclaration","scope":25694,"src":"4052:14:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25689,"name":"uint256","nodeType":"ElementaryTypeName","src":"4052:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25692,"mutability":"mutable","name":"excess","nameLocation":"4076:6:74","nodeType":"VariableDeclaration","scope":25694,"src":"4068:14:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25691,"name":"uint256","nodeType":"ElementaryTypeName","src":"4068:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4051:32:74"},"src":"4017:67:74"},{"documentation":{"id":25695,"nodeType":"StructuredDocumentation","src":"4087:344:74","text":" @notice Thrown during upgrade validation if the configured eToken addresses change unexpectedly.\n @dev Upgrades must keep the same junior/senior eToken wiring (unless the current eToken is zero-address).\n @param oldEToken The currently configured eToken\n @param newEToken The eToken reported by the new implementation"},"errorSelector":"4ebfaa24","id":25703,"name":"InvalidUpgradeETokenChanged","nameLocation":"4440:27:74","nodeType":"ErrorDefinition","parameters":{"id":25702,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25698,"mutability":"mutable","name":"oldEToken","nameLocation":"4476:9:74","nodeType":"VariableDeclaration","scope":25703,"src":"4468:17:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":25697,"nodeType":"UserDefinedTypeName","pathNode":{"id":25696,"name":"IEToken","nameLocations":["4468:7:74"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"4468:7:74"},"referencedDeclaration":28869,"src":"4468:7:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":25701,"mutability":"mutable","name":"newEToken","nameLocation":"4495:9:74","nodeType":"VariableDeclaration","scope":25703,"src":"4487:17:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":25700,"nodeType":"UserDefinedTypeName","pathNode":{"id":25699,"name":"IEToken","nameLocations":["4487:7:74"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"4487:7:74"},"referencedDeclaration":28869,"src":"4487:7:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"4467:38:74"},"src":"4434:72:74"},{"documentation":{"id":25704,"nodeType":"StructuredDocumentation","src":"4509:171:74","text":" @notice Thrown when a new deficit ratio is invalid (out of range or not representable with 4 decimals).\n @param newDeficitRatio The proposed ratio (wad)"},"errorSelector":"46c20ab7","id":25708,"name":"InvalidDeficitRatio","nameLocation":"4689:19:74","nodeType":"ErrorDefinition","parameters":{"id":25707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25706,"mutability":"mutable","name":"newDeficitRatio","nameLocation":"4717:15:74","nodeType":"VariableDeclaration","scope":25708,"src":"4709:23:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25705,"name":"uint256","nodeType":"ElementaryTypeName","src":"4709:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4708:25:74"},"src":"4683:51:74"},{"documentation":{"id":25709,"nodeType":"StructuredDocumentation","src":"4737:321:74","text":" @notice Thrown when attempting to set a deficit ratio without adjustment while the current deficit exceeds the new\n maximum allowed deficit.\n @param currentDeficit Current deficit (positive value, i.e., `-surplus`)\n @param newMaxDeficit New maximum deficit (positive value, i.e., `-maxDeficit`)"},"errorSelector":"287223f9","id":25715,"name":"DeficitExceedsMaxDeficit","nameLocation":"5067:24:74","nodeType":"ErrorDefinition","parameters":{"id":25714,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25711,"mutability":"mutable","name":"currentDeficit","nameLocation":"5099:14:74","nodeType":"VariableDeclaration","scope":25715,"src":"5092:21:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":25710,"name":"int256","nodeType":"ElementaryTypeName","src":"5092:6:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":25713,"mutability":"mutable","name":"newMaxDeficit","nameLocation":"5122:13:74","nodeType":"VariableDeclaration","scope":25715,"src":"5115:20:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":25712,"name":"int256","nodeType":"ElementaryTypeName","src":"5115:6:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"5091:45:74"},"src":"5061:76:74"},{"documentation":{"id":25716,"nodeType":"StructuredDocumentation","src":"5140:198:74","text":" @notice Thrown when the required funds cannot be fully borrowed from the configured eTokens within their limits.\n @param amountLeft The remaining amount that could not be borrowed"},"errorSelector":"093f6643","id":25720,"name":"CannotBeBorrowed","nameLocation":"5347:16:74","nodeType":"ErrorDefinition","parameters":{"id":25719,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25718,"mutability":"mutable","name":"amountLeft","nameLocation":"5372:10:74","nodeType":"VariableDeclaration","scope":25720,"src":"5364:18:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25717,"name":"uint256","nodeType":"ElementaryTypeName","src":"5364:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5363:20:74"},"src":"5341:43:74"},{"documentation":{"id":25721,"nodeType":"StructuredDocumentation","src":"5387:156:74","text":" @notice Thrown when a loan limit cannot be represented with 0 decimals when packing/unpacking.\n @param loanLimit The provided limit value"},"errorSelector":"4a8fd66f","id":25725,"name":"InvalidLoanLimit","nameLocation":"5552:16:74","nodeType":"ErrorDefinition","parameters":{"id":25724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25723,"mutability":"mutable","name":"loanLimit","nameLocation":"5577:9:74","nodeType":"VariableDeclaration","scope":25725,"src":"5569:17:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25722,"name":"uint256","nodeType":"ElementaryTypeName","src":"5569:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5568:19:74"},"src":"5546:42:74"},{"documentation":{"id":25726,"nodeType":"StructuredDocumentation","src":"5591:127:74","text":" @notice Thrown when the destination address is invalid.\n @param destination The provided destination address"},"errorSelector":"8eaba6f9","id":25730,"name":"InvalidDestination","nameLocation":"5727:18:74","nodeType":"ErrorDefinition","parameters":{"id":25729,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25728,"mutability":"mutable","name":"destination","nameLocation":"5754:11:74","nodeType":"VariableDeclaration","scope":25730,"src":"5746:19:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25727,"name":"address","nodeType":"ElementaryTypeName","src":"5746:7:74","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5745:21:74"},"src":"5721:46:74"},{"documentation":{"id":25731,"nodeType":"StructuredDocumentation","src":"5770:243:74","text":" @notice Thrown when attempting to withdraw more than the current surplus (when `amount != type(uint256).max`).\n @param amountRequired The requested amount to withdraw\n @param surplus The current surplus (can be negative)"},"errorSelector":"4836a44e","id":25737,"name":"WithdrawExceedsSurplus","nameLocation":"6022:22:74","nodeType":"ErrorDefinition","parameters":{"id":25736,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25733,"mutability":"mutable","name":"amountRequired","nameLocation":"6053:14:74","nodeType":"VariableDeclaration","scope":25737,"src":"6045:22:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25732,"name":"uint256","nodeType":"ElementaryTypeName","src":"6045:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25735,"mutability":"mutable","name":"surplus","nameLocation":"6076:7:74","nodeType":"VariableDeclaration","scope":25737,"src":"6069:14:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":25734,"name":"int256","nodeType":"ElementaryTypeName","src":"6069:6:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"6044:40:74"},"src":"6016:69:74"},{"anonymous":false,"documentation":{"id":25738,"nodeType":"StructuredDocumentation","src":"6089:381:74","text":" @notice Emitted when \"won premiums\" move in or out of the PremiumsAccount.\n @dev Emitted by `receiveGrant` when funds are received without liability, and by `withdrawWonPremiums` when\n surplus is withdrawn (typically to the treasury).\n @param moneyIn Indicates if money came in or out (false).\n @param value The amount of money received or given"},"eventSelector":"d60d524f1cae273480bb0a4ddfb992b6ac0b61c8e12ffbe2e4e31463f9e90199","id":25744,"name":"WonPremiumsInOut","nameLocation":"6479:16:74","nodeType":"EventDefinition","parameters":{"id":25743,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25740,"indexed":false,"mutability":"mutable","name":"moneyIn","nameLocation":"6501:7:74","nodeType":"VariableDeclaration","scope":25744,"src":"6496:12:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25739,"name":"bool","nodeType":"ElementaryTypeName","src":"6496:4:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":25742,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"6518:5:74","nodeType":"VariableDeclaration","scope":25744,"src":"6510:13:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25741,"name":"uint256","nodeType":"ElementaryTypeName","src":"6510:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6495:29:74"},"src":"6473:52:74"},{"anonymous":false,"documentation":{"id":25745,"nodeType":"StructuredDocumentation","src":"6529:257:74","text":" @notice Emitted when the deficitRatio is changed\n @param oldRatio Ratio before the change\n @param newRatio Ratio after the change\n @param adjustment Adjustement (etk loan) made to adjust the contract, so deficit <= maxDeficit"},"eventSelector":"5b2441044bd7b1320018e9cf93f7a9a26d14db096298500121b8370aff51133d","id":25753,"name":"DeficitRatioChanged","nameLocation":"6795:19:74","nodeType":"EventDefinition","parameters":{"id":25752,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25747,"indexed":false,"mutability":"mutable","name":"oldRatio","nameLocation":"6823:8:74","nodeType":"VariableDeclaration","scope":25753,"src":"6815:16:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25746,"name":"uint256","nodeType":"ElementaryTypeName","src":"6815:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25749,"indexed":false,"mutability":"mutable","name":"newRatio","nameLocation":"6841:8:74","nodeType":"VariableDeclaration","scope":25753,"src":"6833:16:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25748,"name":"uint256","nodeType":"ElementaryTypeName","src":"6833:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25751,"indexed":false,"mutability":"mutable","name":"adjustment","nameLocation":"6859:10:74","nodeType":"VariableDeclaration","scope":25753,"src":"6851:18:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25750,"name":"uint256","nodeType":"ElementaryTypeName","src":"6851:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6814:56:74"},"src":"6789:82:74"},{"anonymous":false,"documentation":{"id":25754,"nodeType":"StructuredDocumentation","src":"6875:256:74","text":" @notice Emitted when the loan limits are changed\n @param oldLimit Limit before the change\n @param newLimit Limit after the change\n @param isSenior If true, the limit changed is the senior limit, otherwise is the junior limit"},"eventSelector":"1366686786a1d0cde83e2e2241a477fcf29662506a51f052f72e47b15729bf0b","id":25762,"name":"LoanLimitChanged","nameLocation":"7140:16:74","nodeType":"EventDefinition","parameters":{"id":25761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25756,"indexed":false,"mutability":"mutable","name":"oldLimit","nameLocation":"7165:8:74","nodeType":"VariableDeclaration","scope":25762,"src":"7157:16:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25755,"name":"uint256","nodeType":"ElementaryTypeName","src":"7157:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25758,"indexed":false,"mutability":"mutable","name":"newLimit","nameLocation":"7183:8:74","nodeType":"VariableDeclaration","scope":25762,"src":"7175:16:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25757,"name":"uint256","nodeType":"ElementaryTypeName","src":"7175:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25760,"indexed":false,"mutability":"mutable","name":"isSenior","nameLocation":"7198:8:74","nodeType":"VariableDeclaration","scope":25762,"src":"7193:13:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25759,"name":"bool","nodeType":"ElementaryTypeName","src":"7193:4:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7156:51:74"},"src":"7134:74:74"},{"body":{"id":25786,"nodeType":"Block","src":"7646:63:74","statements":[{"expression":{"id":25780,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":25778,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25663,"src":"7652:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":25779,"name":"juniorEtk_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25769,"src":"7665:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"src":"7652:23:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":25781,"nodeType":"ExpressionStatement","src":"7652:23:74"},{"expression":{"id":25784,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":25782,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25667,"src":"7681:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":25783,"name":"seniorEtk_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25772,"src":"7694:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"src":"7681:23:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":25785,"nodeType":"ExpressionStatement","src":"7681:23:74"}]},"documentation":{"id":25763,"nodeType":"StructuredDocumentation","src":"7497:48:74","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":25787,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":25775,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25766,"src":"7633:11:74","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}}],"id":25776,"kind":"baseConstructorSpecifier","modifierName":{"id":25774,"name":"Reserve","nameLocations":["7625:7:74"],"nodeType":"IdentifierPath","referencedDeclaration":28015,"src":"7625:7:74"},"nodeType":"ModifierInvocation","src":"7625:20:74"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":25773,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25766,"mutability":"mutable","name":"policyPool_","nameLocation":"7572:11:74","nodeType":"VariableDeclaration","scope":25787,"src":"7560:23:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"typeName":{"id":25765,"nodeType":"UserDefinedTypeName","pathNode":{"id":25764,"name":"IPolicyPool","nameLocations":["7560:11:74"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"7560:11:74"},"referencedDeclaration":29171,"src":"7560:11:74","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"visibility":"internal"},{"constant":false,"id":25769,"mutability":"mutable","name":"juniorEtk_","nameLocation":"7593:10:74","nodeType":"VariableDeclaration","scope":25787,"src":"7585:18:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":25768,"nodeType":"UserDefinedTypeName","pathNode":{"id":25767,"name":"IEToken","nameLocations":["7585:7:74"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"7585:7:74"},"referencedDeclaration":28869,"src":"7585:7:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":25772,"mutability":"mutable","name":"seniorEtk_","nameLocation":"7613:10:74","nodeType":"VariableDeclaration","scope":25787,"src":"7605:18:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":25771,"nodeType":"UserDefinedTypeName","pathNode":{"id":25770,"name":"IEToken","nameLocations":["7605:7:74"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"7605:7:74"},"referencedDeclaration":28869,"src":"7605:7:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"7559:65:74"},"returnParameters":{"id":25777,"nodeType":"ParameterList","parameters":[],"src":"7646:0:74"},"scope":27362,"src":"7548:161:74","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":25796,"nodeType":"Block","src":"7808:35:74","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":25793,"name":"__PremiumsAccount_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25810,"src":"7814:22:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":25794,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7814:24:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25795,"nodeType":"ExpressionStatement","src":"7814:24:74"}]},"documentation":{"id":25788,"nodeType":"StructuredDocumentation","src":"7713:51:74","text":" @dev Initializes the PremiumsAccount"},"functionSelector":"8129fc1c","id":25797,"implemented":true,"kind":"function","modifiers":[{"id":25791,"kind":"modifierInvocation","modifierName":{"id":25790,"name":"initializer","nameLocations":["7796:11:74"],"nodeType":"IdentifierPath","referencedDeclaration":7058,"src":"7796:11:74"},"nodeType":"ModifierInvocation","src":"7796:11:74"}],"name":"initialize","nameLocation":"7776:10:74","nodeType":"FunctionDefinition","parameters":{"id":25789,"nodeType":"ParameterList","parameters":[],"src":"7786:2:74"},"returnParameters":{"id":25792,"nodeType":"ParameterList","parameters":[],"src":"7808:0:74"},"scope":27362,"src":"7767:76:74","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":25809,"nodeType":"Block","src":"8041:67:74","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":25803,"name":"__Reserve_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27444,"src":"8047:14:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":25804,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8047:16:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25805,"nodeType":"ExpressionStatement","src":"8047:16:74"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":25806,"name":"__PremiumsAccount_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25830,"src":"8069:32:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":25807,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8069:34:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25808,"nodeType":"ExpressionStatement","src":"8069:34:74"}]},"documentation":{"id":25798,"nodeType":"StructuredDocumentation","src":"7847:80:74","text":" @dev Initializes the PremiumsAccount (to be called by subclasses)"},"id":25810,"implemented":true,"kind":"function","modifiers":[{"id":25801,"kind":"modifierInvocation","modifierName":{"id":25800,"name":"onlyInitializing","nameLocations":["8024:16:74"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"8024:16:74"},"nodeType":"ModifierInvocation","src":"8024:16:74"}],"name":"__PremiumsAccount_init","nameLocation":"7990:22:74","nodeType":"FunctionDefinition","parameters":{"id":25799,"nodeType":"ParameterList","parameters":[],"src":"8012:2:74"},"returnParameters":{"id":25802,"nodeType":"ParameterList","parameters":[],"src":"8041:0:74"},"scope":27362,"src":"7981:127:74","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25829,"nodeType":"Block","src":"8233:205:74","statements":[{"expression":{"id":25827,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":25815,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25687,"src":"8282:7:74","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":25817,"name":"HUNDRED_PERCENT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25659,"src":"8327:15:74","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},{"arguments":[{"arguments":[{"hexValue":"30","id":25821,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8379:1:74","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":25820,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8371:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25819,"name":"address","nodeType":"ElementaryTypeName","src":"8371:7:74","typeDescriptions":{}}},"id":25822,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8371:10:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25818,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6400,"src":"8362:8:74","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC4626_$6400_$","typeString":"type(contract IERC4626)"}},"id":25823,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8362:20:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},{"hexValue":"30","id":25824,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8403:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":25825,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8425:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"},{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":25816,"name":"PackedParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25684,"src":"8292:12:74","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_PackedParams_$25684_storage_ptr_$","typeString":"type(struct PremiumsAccount.PackedParams storage pointer)"}},"id":25826,"isConstant":false,"isLValue":false,"isPure":true,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["8313:12:74","8350:10:74","8390:11:74","8412:11:74"],"names":["deficitRatio","yieldVault","jrLoanLimit","srLoanLimit"],"nodeType":"FunctionCall","src":"8292:141:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_memory_ptr","typeString":"struct PremiumsAccount.PackedParams memory"}},"src":"8282:151:74","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":25828,"nodeType":"ExpressionStatement","src":"8282:151:74"}]},"id":25830,"implemented":true,"kind":"function","modifiers":[{"id":25813,"kind":"modifierInvocation","modifierName":{"id":25812,"name":"onlyInitializing","nameLocations":["8216:16:74"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"8216:16:74"},"nodeType":"ModifierInvocation","src":"8216:16:74"}],"name":"__PremiumsAccount_init_unchained","nameLocation":"8172:32:74","nodeType":"FunctionDefinition","parameters":{"id":25811,"nodeType":"ParameterList","parameters":[],"src":"8204:2:74"},"returnParameters":{"id":25814,"nodeType":"ParameterList","parameters":[],"src":"8233:0:74"},"scope":27362,"src":"8163:275:74","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[25558],"body":{"id":25899,"nodeType":"Block","src":"8519:390:74","statements":[{"expression":{"arguments":[{"id":25839,"name":"newImpl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25832,"src":"8551:7:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":25836,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8525:5:74","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_PremiumsAccount_$27362_$","typeString":"type(contract super PremiumsAccount)"}},"id":25838,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8531:19:74","memberName":"_upgradeValidations","nodeType":"MemberAccess","referencedDeclaration":25558,"src":"8525:25:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$__$","typeString":"function (address) view"}},"id":25840,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8525:34:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25841,"nodeType":"ExpressionStatement","src":"8525:34:74"},{"assignments":[25844],"declarations":[{"constant":false,"id":25844,"mutability":"mutable","name":"newPA","nameLocation":"8582:5:74","nodeType":"VariableDeclaration","scope":25899,"src":"8565:22:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"},"typeName":{"id":25843,"nodeType":"UserDefinedTypeName","pathNode":{"id":25842,"name":"IPremiumsAccount","nameLocations":["8565:16:74"],"nodeType":"IdentifierPath","referencedDeclaration":29276,"src":"8565:16:74"},"referencedDeclaration":29276,"src":"8565:16:74","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"id":25848,"initialValue":{"arguments":[{"id":25846,"name":"newImpl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25832,"src":"8607:7:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25845,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29276,"src":"8590:16:74","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPremiumsAccount_$29276_$","typeString":"type(contract IPremiumsAccount)"}},"id":25847,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8590:25:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"nodeType":"VariableDeclarationStatement","src":"8565:50:74"},{"assignments":[25851,25854],"declarations":[{"constant":false,"id":25851,"mutability":"mutable","name":"newJr","nameLocation":"8630:5:74","nodeType":"VariableDeclaration","scope":25899,"src":"8622:13:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":25850,"nodeType":"UserDefinedTypeName","pathNode":{"id":25849,"name":"IEToken","nameLocations":["8622:7:74"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"8622:7:74"},"referencedDeclaration":28869,"src":"8622:7:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":25854,"mutability":"mutable","name":"newSr","nameLocation":"8645:5:74","nodeType":"VariableDeclaration","scope":25899,"src":"8637:13:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":25853,"nodeType":"UserDefinedTypeName","pathNode":{"id":25852,"name":"IEToken","nameLocations":["8637:7:74"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"8637:7:74"},"referencedDeclaration":28869,"src":"8637:7:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"}],"id":25858,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25855,"name":"newPA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25844,"src":"8654:5:74","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"id":25856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8660:4:74","memberName":"etks","nodeType":"MemberAccess","referencedDeclaration":29269,"src":"8654:10:74","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IEToken_$28869_$_t_contract$_IEToken_$28869_$","typeString":"function () view external returns (contract IEToken,contract IEToken)"}},"id":25857,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8654:12:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_contract$_IEToken_$28869_$_t_contract$_IEToken_$28869_$","typeString":"tuple(contract IEToken,contract IEToken)"}},"nodeType":"VariableDeclarationStatement","src":"8621:45:74"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":25872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"id":25862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25860,"name":"newJr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25851,"src":"8680:5:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":25861,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25663,"src":"8689:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"src":"8680:19:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":25871,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":25865,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25663,"src":"8711:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":25864,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8703:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25863,"name":"address","nodeType":"ElementaryTypeName","src":"8703:7:74","typeDescriptions":{}}},"id":25866,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8703:19:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":25869,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8734:1:74","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":25868,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8726:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25867,"name":"address","nodeType":"ElementaryTypeName","src":"8726:7:74","typeDescriptions":{}}},"id":25870,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8726:10:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8703:33:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"8680:56:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":25874,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25663,"src":"8766:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},{"id":25875,"name":"newJr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25851,"src":"8778:5:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":25873,"name":"InvalidUpgradeETokenChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25703,"src":"8738:27:74","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_contract$_IEToken_$28869_$_t_contract$_IEToken_$28869_$returns$_t_error_$","typeString":"function (contract IEToken,contract IEToken) pure returns (error)"}},"id":25876,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8738:46:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":25859,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"8672:7:74","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":25877,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8672:113:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25878,"nodeType":"ExpressionStatement","src":"8672:113:74"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":25892,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"id":25882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25880,"name":"newSr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25854,"src":"8799:5:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":25881,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25667,"src":"8808:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"src":"8799:19:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":25891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":25885,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25667,"src":"8830:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":25884,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8822:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25883,"name":"address","nodeType":"ElementaryTypeName","src":"8822:7:74","typeDescriptions":{}}},"id":25886,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8822:19:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":25889,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8853:1:74","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":25888,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8845:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25887,"name":"address","nodeType":"ElementaryTypeName","src":"8845:7:74","typeDescriptions":{}}},"id":25890,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8845:10:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8822:33:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"8799:56:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":25894,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25667,"src":"8885:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},{"id":25895,"name":"newSr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25854,"src":"8897:5:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":25893,"name":"InvalidUpgradeETokenChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25703,"src":"8857:27:74","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_contract$_IEToken_$28869_$_t_contract$_IEToken_$28869_$returns$_t_error_$","typeString":"function (contract IEToken,contract IEToken) pure returns (error)"}},"id":25896,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8857:46:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":25879,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"8791:7:74","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":25897,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8791:113:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25898,"nodeType":"ExpressionStatement","src":"8791:113:74"}]},"id":25900,"implemented":true,"kind":"function","modifiers":[],"name":"_upgradeValidations","nameLocation":"8451:19:74","nodeType":"FunctionDefinition","overrides":{"id":25834,"nodeType":"OverrideSpecifier","overrides":[],"src":"8510:8:74"},"parameters":{"id":25833,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25832,"mutability":"mutable","name":"newImpl","nameLocation":"8479:7:74","nodeType":"VariableDeclaration","scope":25900,"src":"8471:15:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25831,"name":"address","nodeType":"ElementaryTypeName","src":"8471:7:74","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8470:17:74"},"returnParameters":{"id":25835,"nodeType":"ParameterList","parameters":[],"src":"8519:0:74"},"scope":27362,"src":"8442:467:74","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[25582],"body":{"id":25921,"nodeType":"Block","src":"9059:107:74","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":25919,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":25911,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25903,"src":"9096:11:74","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":25909,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9072:5:74","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_PremiumsAccount_$27362_$","typeString":"type(contract super PremiumsAccount)"}},"id":25910,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9078:17:74","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":25582,"src":"9072:23:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":25912,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9072:36:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":25918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25913,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25903,"src":"9112:11:74","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":25915,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29276,"src":"9132:16:74","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPremiumsAccount_$29276_$","typeString":"type(contract IPremiumsAccount)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPremiumsAccount_$29276_$","typeString":"type(contract IPremiumsAccount)"}],"id":25914,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9127:4:74","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":25916,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9127:22:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPremiumsAccount_$29276","typeString":"type(contract IPremiumsAccount)"}},"id":25917,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9150:11:74","memberName":"interfaceId","nodeType":"MemberAccess","src":"9127:34:74","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"9112:49:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9072:89:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":25908,"id":25920,"nodeType":"Return","src":"9065:96:74"}]},"documentation":{"id":25901,"nodeType":"StructuredDocumentation","src":"8913:52:74","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":25922,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"8977:17:74","nodeType":"FunctionDefinition","overrides":{"id":25905,"nodeType":"OverrideSpecifier","overrides":[],"src":"9035:8:74"},"parameters":{"id":25904,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25903,"mutability":"mutable","name":"interfaceId","nameLocation":"9002:11:74","nodeType":"VariableDeclaration","scope":25922,"src":"8995:18:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":25902,"name":"bytes4","nodeType":"ElementaryTypeName","src":"8995:6:74","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"8994:20:74"},"returnParameters":{"id":25908,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25907,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25922,"src":"9053:4:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25906,"name":"bool","nodeType":"ElementaryTypeName","src":"9053:4:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9052:6:74"},"scope":27362,"src":"8968:198:74","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[27525],"body":{"id":25933,"nodeType":"Block","src":"9258:36:74","statements":[{"expression":{"expression":{"id":25930,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25687,"src":"9271:7:74","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":25931,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9279:10:74","memberName":"yieldVault","nodeType":"MemberAccess","referencedDeclaration":25677,"src":"9271:18:74","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"functionReturnParameters":25929,"id":25932,"nodeType":"Return","src":"9264:25:74"}]},"documentation":{"id":25923,"nodeType":"StructuredDocumentation","src":"9170:23:74","text":"@inheritdoc Reserve"},"functionSelector":"a7f8a5e2","id":25934,"implemented":true,"kind":"function","modifiers":[],"name":"yieldVault","nameLocation":"9205:10:74","nodeType":"FunctionDefinition","overrides":{"id":25925,"nodeType":"OverrideSpecifier","overrides":[],"src":"9230:8:74"},"parameters":{"id":25924,"nodeType":"ParameterList","parameters":[],"src":"9215:2:74"},"returnParameters":{"id":25929,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25928,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25934,"src":"9248:8:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":25927,"nodeType":"UserDefinedTypeName","pathNode":{"id":25926,"name":"IERC4626","nameLocations":["9248:8:74"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"9248:8:74"},"referencedDeclaration":6400,"src":"9248:8:74","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"9247:10:74"},"scope":27362,"src":"9196:98:74","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[27532],"body":{"id":25948,"nodeType":"Block","src":"9382:37:74","statements":[{"expression":{"id":25946,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":25942,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25687,"src":"9388:7:74","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":25944,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"9396:10:74","memberName":"yieldVault","nodeType":"MemberAccess","referencedDeclaration":25677,"src":"9388:18:74","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":25945,"name":"newYV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25938,"src":"9409:5:74","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"src":"9388:26:74","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"id":25947,"nodeType":"ExpressionStatement","src":"9388:26:74"}]},"documentation":{"id":25935,"nodeType":"StructuredDocumentation","src":"9298:23:74","text":"@inheritdoc Reserve"},"id":25949,"implemented":true,"kind":"function","modifiers":[],"name":"_setYieldVault","nameLocation":"9333:14:74","nodeType":"FunctionDefinition","overrides":{"id":25940,"nodeType":"OverrideSpecifier","overrides":[],"src":"9373:8:74"},"parameters":{"id":25939,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25938,"mutability":"mutable","name":"newYV","nameLocation":"9357:5:74","nodeType":"VariableDeclaration","scope":25949,"src":"9348:14:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":25937,"nodeType":"UserDefinedTypeName","pathNode":{"id":25936,"name":"IERC4626","nameLocations":["9348:8:74"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"9348:8:74"},"referencedDeclaration":6400,"src":"9348:8:74","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"9347:16:74"},"returnParameters":{"id":25941,"nodeType":"ParameterList","parameters":[],"src":"9382:0:74"},"scope":27362,"src":"9324:95:74","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[27552],"body":{"id":25996,"nodeType":"Block","src":"9917:310:74","statements":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":25958,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25956,"name":"earningsOrLosses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25952,"src":"9927:16:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":25957,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9947:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9927:21:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":25988,"nodeType":"Block","src":"10018:161:74","statements":[{"assignments":[25968],"declarations":[{"constant":false,"id":25968,"mutability":"mutable","name":"excess","nameLocation":"10034:6:74","nodeType":"VariableDeclaration","scope":25988,"src":"10026:14:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25967,"name":"uint256","nodeType":"ElementaryTypeName","src":"10026:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":25973,"initialValue":{"arguments":[{"id":25971,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"10060:17:74","subExpression":{"id":25970,"name":"earningsOrLosses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25952,"src":"10061:16:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":25969,"name":"_payFromPremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26580,"src":"10043:16:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$_t_uint256_$","typeString":"function (int256) returns (uint256)"}},"id":25972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10043:35:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10026:52:74"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25975,"name":"excess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25968,"src":"10094:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":25976,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10104:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10094:11:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"arguments":[{"id":25982,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"10144:17:74","subExpression":{"id":25981,"name":"earningsOrLosses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25952,"src":"10145:16:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":25980,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10136:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":25979,"name":"uint256","nodeType":"ElementaryTypeName","src":"10136:7:74","typeDescriptions":{}}},"id":25983,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10136:26:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25984,"name":"excess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25968,"src":"10164:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25978,"name":"LossesCannotExceedMaxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25694,"src":"10107:28:74","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":25985,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10107:64:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":25974,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"10086:7:74","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":25986,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10086:86:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25987,"nodeType":"ExpressionStatement","src":"10086:86:74"}]},"id":25989,"nodeType":"IfStatement","src":"9923:256:74","trueBody":{"id":25966,"nodeType":"Block","src":"9950:62:74","statements":[{"expression":{"arguments":[{"arguments":[{"id":25962,"name":"earningsOrLosses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25952,"src":"9987:16:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":25961,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9979:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":25960,"name":"uint256","nodeType":"ElementaryTypeName","src":"9979:7:74","typeDescriptions":{}}},"id":25963,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9979:25:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25959,"name":"_storePurePremiumWon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26594,"src":"9958:20:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":25964,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9958:47:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25965,"nodeType":"ExpressionStatement","src":"9958:47:74"}]}},{"expression":{"arguments":[{"id":25993,"name":"earningsOrLosses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25952,"src":"10205:16:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":25990,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"10184:5:74","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_PremiumsAccount_$27362_$","typeString":"type(contract super PremiumsAccount)"}},"id":25992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10190:14:74","memberName":"_yieldEarnings","nodeType":"MemberAccess","referencedDeclaration":27552,"src":"10184:20:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":25994,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10184:38:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25995,"nodeType":"ExpressionStatement","src":"10184:38:74"}]},"documentation":{"id":25950,"nodeType":"StructuredDocumentation","src":"9423:424:74","text":" @dev This is called by the {Reserve} base class to record the earnings generated by the asset management.\n @param earningsOrLosses Indicates the amount earned since last time earnings where recorded.\n - If positive, accumulates the amount in the surplus.\n - If negative (losses) substracts it from surplus. It never can exceed _maxDeficit and doesn't takes\n   loans to cover asset losses."},"id":25997,"implemented":true,"kind":"function","modifiers":[],"name":"_yieldEarnings","nameLocation":"9859:14:74","nodeType":"FunctionDefinition","overrides":{"id":25954,"nodeType":"OverrideSpecifier","overrides":[],"src":"9908:8:74"},"parameters":{"id":25953,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25952,"mutability":"mutable","name":"earningsOrLosses","nameLocation":"9881:16:74","nodeType":"VariableDeclaration","scope":25997,"src":"9874:23:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":25951,"name":"int256","nodeType":"ElementaryTypeName","src":"9874:6:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9873:25:74"},"returnParameters":{"id":25955,"nodeType":"ParameterList","parameters":[],"src":"9917:0:74"},"scope":27362,"src":"9850:377:74","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[29275],"body":{"id":26013,"nodeType":"Block","src":"10296:65:74","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":26010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":26007,"name":"_activePurePremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25670,"src":"10324:19:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26006,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10317:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":26005,"name":"int256","nodeType":"ElementaryTypeName","src":"10317:6:74","typeDescriptions":{}}},"id":26008,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10317:27:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":26009,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"10347:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"10317:38:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":26004,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10309:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26003,"name":"uint256","nodeType":"ElementaryTypeName","src":"10309:7:74","typeDescriptions":{}}},"id":26011,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10309:47:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26002,"id":26012,"nodeType":"Return","src":"10302:54:74"}]},"functionSelector":"26ccbd22","id":26014,"implemented":true,"kind":"function","modifiers":[],"name":"purePremiums","nameLocation":"10240:12:74","nodeType":"FunctionDefinition","overrides":{"id":25999,"nodeType":"OverrideSpecifier","overrides":[],"src":"10269:8:74"},"parameters":{"id":25998,"nodeType":"ParameterList","parameters":[],"src":"10252:2:74"},"returnParameters":{"id":26002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26001,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26014,"src":"10287:7:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26000,"name":"uint256","nodeType":"ElementaryTypeName","src":"10287:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10286:9:74"},"scope":27362,"src":"10231:130:74","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":26022,"nodeType":"Block","src":"10591:37:74","statements":[{"expression":{"id":26020,"name":"_activePurePremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25670,"src":"10604:19:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26019,"id":26021,"nodeType":"Return","src":"10597:26:74"}]},"documentation":{"id":26015,"nodeType":"StructuredDocumentation","src":"10365:161:74","text":" @dev Returns the total amount of pure premiums that were collected by the active policies of the risk modules\n linked to this PremiumsAccount."},"functionSelector":"1a548a27","id":26023,"implemented":true,"kind":"function","modifiers":[],"name":"activePurePremiums","nameLocation":"10538:18:74","nodeType":"FunctionDefinition","parameters":{"id":26016,"nodeType":"ParameterList","parameters":[],"src":"10556:2:74"},"returnParameters":{"id":26019,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26018,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26023,"src":"10582:7:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26017,"name":"uint256","nodeType":"ElementaryTypeName","src":"10582:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10581:9:74"},"scope":27362,"src":"10529:99:74","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":26039,"nodeType":"Block","src":"10841:55:74","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":26031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26029,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"10854:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":26030,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10866:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10854:13:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":26036,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10890:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":26037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"10854:37:74","trueExpression":{"arguments":[{"id":26034,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"10878:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":26033,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10870:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26032,"name":"uint256","nodeType":"ElementaryTypeName","src":"10870:7:74","typeDescriptions":{}}},"id":26035,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10870:17:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26028,"id":26038,"nodeType":"Return","src":"10847:44:74"}]},"documentation":{"id":26024,"nodeType":"StructuredDocumentation","src":"10632:147:74","text":" @dev Returns the surplus between pure premiums collected and payouts of finalized policies. Returns 0 if no surplus\n or deficit."},"functionSelector":"536c9a43","id":26040,"implemented":true,"kind":"function","modifiers":[],"name":"wonPurePremiums","nameLocation":"10791:15:74","nodeType":"FunctionDefinition","parameters":{"id":26025,"nodeType":"ParameterList","parameters":[],"src":"10806:2:74"},"returnParameters":{"id":26028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26027,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26040,"src":"10832:7:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26026,"name":"uint256","nodeType":"ElementaryTypeName","src":"10832:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10831:9:74"},"scope":27362,"src":"10782:114:74","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":26057,"nodeType":"Block","src":"11158:56:74","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":26048,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26046,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"11171:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":26047,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11183:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11171:13:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":26053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"11199:9:74","subExpression":{"id":26052,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"11200:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":26051,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11191:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26050,"name":"uint256","nodeType":"ElementaryTypeName","src":"11191:7:74","typeDescriptions":{}}},"id":26054,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11191:18:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26055,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"11171:38:74","trueExpression":{"hexValue":"30","id":26049,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11187:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26045,"id":26056,"nodeType":"Return","src":"11164:45:74"}]},"documentation":{"id":26041,"nodeType":"StructuredDocumentation","src":"10900:195:74","text":" @dev Returns the amount of active pure premiums that was used to cover payouts of finalized policies (in excess of\n collected pure premiums). This is limited by `_maxDeficit()`"},"functionSelector":"e823584a","id":26058,"implemented":true,"kind":"function","modifiers":[],"name":"borrowedActivePP","nameLocation":"11107:16:74","nodeType":"FunctionDefinition","parameters":{"id":26042,"nodeType":"ParameterList","parameters":[],"src":"11123:2:74"},"returnParameters":{"id":26045,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26044,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26058,"src":"11149:7:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26043,"name":"uint256","nodeType":"ElementaryTypeName","src":"11149:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11148:9:74"},"scope":27362,"src":"11098:116:74","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":26066,"nodeType":"Block","src":"11553:26:74","statements":[{"expression":{"id":26064,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"11566:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":26063,"id":26065,"nodeType":"Return","src":"11559:15:74"}]},"documentation":{"id":26059,"nodeType":"StructuredDocumentation","src":"11218:282:74","text":" @dev Returns the surplus between pure premiums collected and payouts of finalized policies. Losses where more than\n premiums collected, returns a negative number that indicates the amount of the active pure premiums that was used\n to cover finalized premiums."},"functionSelector":"13888565","id":26067,"implemented":true,"kind":"function","modifiers":[],"name":"surplus","nameLocation":"11512:7:74","nodeType":"FunctionDefinition","parameters":{"id":26060,"nodeType":"ParameterList","parameters":[],"src":"11519:2:74"},"returnParameters":{"id":26063,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26062,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26067,"src":"11545:6:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":26061,"name":"int256","nodeType":"ElementaryTypeName","src":"11545:6:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"11544:8:74"},"scope":27362,"src":"11503:76:74","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":26083,"nodeType":"Block","src":"11738:180:74","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":26080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26075,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"11874:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":26077,"name":"deficitRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26193,"src":"11897:12:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":26078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11897:14:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26076,"name":"_maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26138,"src":"11885:11:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_int256_$","typeString":"function (uint256) view returns (int256)"}},"id":26079,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11885:27:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"11874:38:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":26074,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11866:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26073,"name":"uint256","nodeType":"ElementaryTypeName","src":"11866:7:74","typeDescriptions":{}}},"id":26081,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11866:47:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26072,"id":26082,"nodeType":"Return","src":"11859:54:74"}]},"documentation":{"id":26068,"nodeType":"StructuredDocumentation","src":"11583:96:74","text":" @dev Returns the amount of funds available to cover losses or repay eToken loans."},"functionSelector":"4fe0bd1e","id":26084,"implemented":true,"kind":"function","modifiers":[],"name":"fundsAvailable","nameLocation":"11691:14:74","nodeType":"FunctionDefinition","parameters":{"id":26069,"nodeType":"ParameterList","parameters":[],"src":"11705:2:74"},"returnParameters":{"id":26072,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26071,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26084,"src":"11729:7:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26070,"name":"uint256","nodeType":"ElementaryTypeName","src":"11729:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11728:9:74"},"scope":27362,"src":"11682:236:74","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[29252],"body":{"id":26093,"nodeType":"Block","src":"11984:28:74","statements":[{"expression":{"id":26091,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25667,"src":"11997:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"functionReturnParameters":26090,"id":26092,"nodeType":"Return","src":"11990:17:74"}]},"functionSelector":"7b83037b","id":26094,"implemented":true,"kind":"function","modifiers":[],"name":"seniorEtk","nameLocation":"11931:9:74","nodeType":"FunctionDefinition","overrides":{"id":26086,"nodeType":"OverrideSpecifier","overrides":[],"src":"11957:8:74"},"parameters":{"id":26085,"nodeType":"ParameterList","parameters":[],"src":"11940:2:74"},"returnParameters":{"id":26090,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26089,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26094,"src":"11975:7:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":26088,"nodeType":"UserDefinedTypeName","pathNode":{"id":26087,"name":"IEToken","nameLocations":["11975:7:74"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"11975:7:74"},"referencedDeclaration":28869,"src":"11975:7:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"11974:9:74"},"scope":27362,"src":"11922:90:74","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[29259],"body":{"id":26103,"nodeType":"Block","src":"12078:28:74","statements":[{"expression":{"id":26101,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25663,"src":"12091:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"functionReturnParameters":26100,"id":26102,"nodeType":"Return","src":"12084:17:74"}]},"functionSelector":"536ebbfc","id":26104,"implemented":true,"kind":"function","modifiers":[],"name":"juniorEtk","nameLocation":"12025:9:74","nodeType":"FunctionDefinition","overrides":{"id":26096,"nodeType":"OverrideSpecifier","overrides":[],"src":"12051:8:74"},"parameters":{"id":26095,"nodeType":"ParameterList","parameters":[],"src":"12034:2:74"},"returnParameters":{"id":26100,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26099,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26104,"src":"12069:7:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":26098,"nodeType":"UserDefinedTypeName","pathNode":{"id":26097,"name":"IEToken","nameLocations":["12069:7:74"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"12069:7:74"},"referencedDeclaration":28869,"src":"12069:7:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"12068:9:74"},"scope":27362,"src":"12016:90:74","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[29269],"body":{"id":26118,"nodeType":"Block","src":"12176:42:74","statements":[{"expression":{"components":[{"id":26114,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25663,"src":"12190:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},{"id":26115,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25667,"src":"12202:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"id":26116,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12189:24:74","typeDescriptions":{"typeIdentifier":"t_tuple$_t_contract$_IEToken_$28869_$_t_contract$_IEToken_$28869_$","typeString":"tuple(contract IEToken,contract IEToken)"}},"functionReturnParameters":26113,"id":26117,"nodeType":"Return","src":"12182:31:74"}]},"functionSelector":"5e445859","id":26119,"implemented":true,"kind":"function","modifiers":[],"name":"etks","nameLocation":"12119:4:74","nodeType":"FunctionDefinition","overrides":{"id":26106,"nodeType":"OverrideSpecifier","overrides":[],"src":"12140:8:74"},"parameters":{"id":26105,"nodeType":"ParameterList","parameters":[],"src":"12123:2:74"},"returnParameters":{"id":26113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26109,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26119,"src":"12158:7:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":26108,"nodeType":"UserDefinedTypeName","pathNode":{"id":26107,"name":"IEToken","nameLocations":["12158:7:74"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"12158:7:74"},"referencedDeclaration":28869,"src":"12158:7:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":26112,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26119,"src":"12167:7:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":26111,"nodeType":"UserDefinedTypeName","pathNode":{"id":26110,"name":"IEToken","nameLocations":["12167:7:74"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"12167:7:74"},"referencedDeclaration":28869,"src":"12167:7:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"12157:18:74"},"scope":27362,"src":"12110:108:74","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":26137,"nodeType":"Block","src":"13179:65:74","statements":[{"expression":{"id":26135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"13192:47:74","subExpression":{"arguments":[{"arguments":[{"id":26131,"name":"ratio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26122,"src":"13227:5:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26132,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25653,"src":"13234:3:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":26129,"name":"_activePurePremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25670,"src":"13200:19:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26130,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13220:6:74","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":14799,"src":"13200:26:74","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":26133,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13200:38:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26128,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13193:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":26127,"name":"int256","nodeType":"ElementaryTypeName","src":"13193:6:74","typeDescriptions":{}}},"id":26134,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13193:46:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":26126,"id":26136,"nodeType":"Return","src":"13185:54:74"}]},"documentation":{"id":26120,"nodeType":"StructuredDocumentation","src":"12222:887:74","text":" @dev Returns the maximum deficit that's supported by the PremiumsAccount. If more money is needed, it must take\n loans from the eTokens. The value is calculated as a fraction of the active pure premiums. The fraction is\n regulated by the `deficitRatio` parameter that indicates the percentage of the active pure premiums that can be\n used to cover payouts of finalized policies. In many cases is fine to use the active pure premiums to cover the\n losses because in most cases the policies with payout are triggered long time before the policies without payout.\n But this also can be dangerous because it can be postponing the losses that should impact on liquidity providers.\n @param ratio The ratio used in the calculation of the deficit. It's the deficitRatio parameter (whether the current\n one or the new one when it's being modified)."},"id":26138,"implemented":true,"kind":"function","modifiers":[],"name":"_maxDeficit","nameLocation":"13121:11:74","nodeType":"FunctionDefinition","parameters":{"id":26123,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26122,"mutability":"mutable","name":"ratio","nameLocation":"13141:5:74","nodeType":"VariableDeclaration","scope":26138,"src":"13133:13:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26121,"name":"uint256","nodeType":"ElementaryTypeName","src":"13133:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13132:15:74"},"returnParameters":{"id":26126,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26125,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26138,"src":"13171:6:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":26124,"name":"int256","nodeType":"ElementaryTypeName","src":"13171:6:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"13170:8:74"},"scope":27362,"src":"13112:132:74","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":26157,"nodeType":"Block","src":"13313:99:74","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":26147,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26140,"src":"13371:5:74","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":26146,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13363:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26145,"name":"uint256","nodeType":"ElementaryTypeName","src":"13363:7:74","typeDescriptions":{}}},"id":26148,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13363:14:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26154,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":26149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13380:2:74","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":26150,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25603,"src":"13386:8:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$8863_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":26151,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13386:10:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":26152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13397:8:74","memberName":"decimals","nodeType":"MemberAccess","referencedDeclaration":8862,"src":"13386:19:74","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint8_$","typeString":"function () view external returns (uint8)"}},"id":26153,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13386:21:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"13380:27:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13363:44:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26144,"id":26156,"nodeType":"Return","src":"13356:51:74"}]},"id":26158,"implemented":true,"kind":"function","modifiers":[],"name":"_toAmount","nameLocation":"13257:9:74","nodeType":"FunctionDefinition","parameters":{"id":26141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26140,"mutability":"mutable","name":"value","nameLocation":"13274:5:74","nodeType":"VariableDeclaration","scope":26158,"src":"13267:12:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":26139,"name":"uint32","nodeType":"ElementaryTypeName","src":"13267:6:74","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"13266:14:74"},"returnParameters":{"id":26144,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26143,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26158,"src":"13304:7:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26142,"name":"uint256","nodeType":"ElementaryTypeName","src":"13304:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13303:9:74"},"scope":27362,"src":"13248:164:74","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":26177,"nodeType":"Block","src":"13488:111:74","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26165,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26160,"src":"13546:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":26166,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13555:2:74","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":26167,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25603,"src":"13561:8:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$8863_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":26168,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13561:10:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":26169,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13572:8:74","memberName":"decimals","nodeType":"MemberAccess","referencedDeclaration":8862,"src":"13561:19:74","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint8_$","typeString":"function () view external returns (uint8)"}},"id":26170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13561:21:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"13555:27:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13546:36:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":26173,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13545:38:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26174,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13584:8:74","memberName":"toUint32","nodeType":"MemberAccess","referencedDeclaration":16725,"src":"13545:47:74","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint32_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint32)"}},"id":26175,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13545:49:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":26164,"id":26176,"nodeType":"Return","src":"13538:56:74"}]},"id":26178,"implemented":true,"kind":"function","modifiers":[],"name":"_toZeroDecimals","nameLocation":"13425:15:74","nodeType":"FunctionDefinition","parameters":{"id":26161,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26160,"mutability":"mutable","name":"amount","nameLocation":"13449:6:74","nodeType":"VariableDeclaration","scope":26178,"src":"13441:14:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26159,"name":"uint256","nodeType":"ElementaryTypeName","src":"13441:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13440:16:74"},"returnParameters":{"id":26164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26163,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26178,"src":"13480:6:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":26162,"name":"uint32","nodeType":"ElementaryTypeName","src":"13480:6:74","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"13479:8:74"},"scope":27362,"src":"13416:183:74","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":26192,"nodeType":"Block","src":"13786:89:74","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26190,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":26186,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25687,"src":"13807:7:74","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":26187,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13815:12:74","memberName":"deficitRatio","nodeType":"MemberAccess","referencedDeclaration":25683,"src":"13807:20:74","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"}],"id":26185,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13799:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26184,"name":"uint256","nodeType":"ElementaryTypeName","src":"13799:7:74","typeDescriptions":{}}},"id":26188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13799:29:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":26189,"name":"FOUR_DECIMAL_TO_WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25656,"src":"13831:19:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13799:51:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26183,"id":26191,"nodeType":"Return","src":"13792:58:74"}]},"documentation":{"id":26179,"nodeType":"StructuredDocumentation","src":"13603:126:74","text":" @dev Returns the percentage of the active pure premiums that can be used to cover losses of finalized policies."},"functionSelector":"4863c8b0","id":26193,"implemented":true,"kind":"function","modifiers":[],"name":"deficitRatio","nameLocation":"13741:12:74","nodeType":"FunctionDefinition","parameters":{"id":26180,"nodeType":"ParameterList","parameters":[],"src":"13753:2:74"},"returnParameters":{"id":26183,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26182,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26193,"src":"13777:7:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26181,"name":"uint256","nodeType":"ElementaryTypeName","src":"13777:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13776:9:74"},"scope":27362,"src":"13732:143:74","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":26214,"nodeType":"Block","src":"14038:95:74","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":26202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":26199,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25687,"src":"14051:7:74","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":26200,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14059:11:74","memberName":"jrLoanLimit","nodeType":"MemberAccess","referencedDeclaration":25679,"src":"14051:19:74","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":26201,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14074:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14051:24:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"expression":{"id":26209,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25687,"src":"14108:7:74","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":26210,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14116:11:74","memberName":"jrLoanLimit","nodeType":"MemberAccess","referencedDeclaration":25679,"src":"14108:19:74","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":26208,"name":"_toAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26158,"src":"14098:9:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint32_$returns$_t_uint256_$","typeString":"function (uint32) view returns (uint256)"}},"id":26211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14098:30:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"14051:77:74","trueExpression":{"expression":{"arguments":[{"id":26205,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14083:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26204,"name":"uint256","nodeType":"ElementaryTypeName","src":"14083:7:74","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":26203,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14078:4:74","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":26206,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14078:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":26207,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14092:3:74","memberName":"max","nodeType":"MemberAccess","src":"14078:17:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26198,"id":26213,"nodeType":"Return","src":"14044:84:74"}]},"documentation":{"id":26194,"nodeType":"StructuredDocumentation","src":"13879:103:74","text":" @dev Returns the limit on the Junior eToken loans (infinite if _params.jrLoanLimit == 0)"},"functionSelector":"2d8f892a","id":26215,"implemented":true,"kind":"function","modifiers":[],"name":"jrLoanLimit","nameLocation":"13994:11:74","nodeType":"FunctionDefinition","parameters":{"id":26195,"nodeType":"ParameterList","parameters":[],"src":"14005:2:74"},"returnParameters":{"id":26198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26197,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26215,"src":"14029:7:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26196,"name":"uint256","nodeType":"ElementaryTypeName","src":"14029:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14028:9:74"},"scope":27362,"src":"13985:148:74","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":26236,"nodeType":"Block","src":"14296:95:74","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":26224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":26221,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25687,"src":"14309:7:74","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":26222,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14317:11:74","memberName":"srLoanLimit","nodeType":"MemberAccess","referencedDeclaration":25681,"src":"14309:19:74","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":26223,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14332:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14309:24:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"expression":{"id":26231,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25687,"src":"14366:7:74","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":26232,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14374:11:74","memberName":"srLoanLimit","nodeType":"MemberAccess","referencedDeclaration":25681,"src":"14366:19:74","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":26230,"name":"_toAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26158,"src":"14356:9:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint32_$returns$_t_uint256_$","typeString":"function (uint32) view returns (uint256)"}},"id":26233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14356:30:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"14309:77:74","trueExpression":{"expression":{"arguments":[{"id":26227,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14341:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26226,"name":"uint256","nodeType":"ElementaryTypeName","src":"14341:7:74","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":26225,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14336:4:74","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":26228,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14336:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":26229,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14350:3:74","memberName":"max","nodeType":"MemberAccess","src":"14336:17:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26220,"id":26235,"nodeType":"Return","src":"14302:84:74"}]},"documentation":{"id":26216,"nodeType":"StructuredDocumentation","src":"14137:103:74","text":" @dev Returns the limit on the Senior eToken loans (infinite if _params.srLoanLimit == 0)"},"functionSelector":"7bb62319","id":26237,"implemented":true,"kind":"function","modifiers":[],"name":"srLoanLimit","nameLocation":"14252:11:74","nodeType":"FunctionDefinition","parameters":{"id":26217,"nodeType":"ParameterList","parameters":[],"src":"14263:2:74"},"returnParameters":{"id":26220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26219,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26237,"src":"14287:7:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26218,"name":"uint256","nodeType":"ElementaryTypeName","src":"14287:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14286:9:74"},"scope":27362,"src":"14243:148:74","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":26346,"nodeType":"Block","src":"15378:748:74","statements":[{"assignments":[26246],"declarations":[{"constant":false,"id":26246,"mutability":"mutable","name":"truncatedRatio","nameLocation":"15391:14:74","nodeType":"VariableDeclaration","scope":26346,"src":"15384:21:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":26245,"name":"uint16","nodeType":"ElementaryTypeName","src":"15384:6:74","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"id":26253,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26249,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26247,"name":"newRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26240,"src":"15409:8:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":26248,"name":"FOUR_DECIMAL_TO_WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25656,"src":"15420:19:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15409:30:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":26250,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15408:32:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15441:8:74","memberName":"toUint16","nodeType":"MemberAccess","referencedDeclaration":16781,"src":"15408:41:74","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint16_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint16)"}},"id":26252,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15408:43:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"VariableDeclarationStatement","src":"15384:67:74"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":26266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26257,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26255,"name":"newRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26240,"src":"15472:8:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":26256,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25653,"src":"15484:3:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15472:15:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":26260,"name":"truncatedRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26246,"src":"15499:14:74","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"}],"id":26259,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15491:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26258,"name":"uint256","nodeType":"ElementaryTypeName","src":"15491:7:74","typeDescriptions":{}}},"id":26261,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15491:23:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":26262,"name":"FOUR_DECIMAL_TO_WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25656,"src":"15517:19:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15491:45:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":26264,"name":"newRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26240,"src":"15540:8:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15491:57:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15472:76:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":26268,"name":"newRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26240,"src":"15576:8:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26267,"name":"InvalidDeficitRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25708,"src":"15556:19:74","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":26269,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15556:29:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":26254,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"15457:7:74","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":26270,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15457:134:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26271,"nodeType":"ExpressionStatement","src":"15457:134:74"},{"assignments":[26273],"declarations":[{"constant":false,"id":26273,"mutability":"mutable","name":"maxDeficit","nameLocation":"15605:10:74","nodeType":"VariableDeclaration","scope":26346,"src":"15598:17:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":26272,"name":"int256","nodeType":"ElementaryTypeName","src":"15598:6:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":26277,"initialValue":{"arguments":[{"id":26275,"name":"newRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26240,"src":"15630:8:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26274,"name":"_maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26138,"src":"15618:11:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_int256_$","typeString":"function (uint256) view returns (int256)"}},"id":26276,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15618:21:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"15598:41:74"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":26283,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"15649:11:74","subExpression":{"id":26278,"name":"adjustment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26242,"src":"15650:10:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":26282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26280,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"15664:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":26281,"name":"maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26273,"src":"15675:10:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"15664:21:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15649:36:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26291,"nodeType":"IfStatement","src":"15645:97:74","trueBody":{"errorCall":{"arguments":[{"id":26286,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"15719:9:74","subExpression":{"id":26285,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"15720:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":26288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"15730:11:74","subExpression":{"id":26287,"name":"maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26273,"src":"15731:10:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":26284,"name":"DeficitExceedsMaxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25715,"src":"15694:24:74","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_int256_$_t_int256_$returns$_t_error_$","typeString":"function (int256,int256) pure returns (error)"}},"id":26289,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15694:48:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":26290,"nodeType":"RevertStatement","src":"15687:55:74"}},{"assignments":[26293],"declarations":[{"constant":false,"id":26293,"mutability":"mutable","name":"borrow","nameLocation":"15757:6:74","nodeType":"VariableDeclaration","scope":26346,"src":"15749:14:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26292,"name":"uint256","nodeType":"ElementaryTypeName","src":"15749:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":26294,"nodeType":"VariableDeclarationStatement","src":"15749:14:74"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":26297,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26295,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"15773:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":26296,"name":"maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26273,"src":"15784:10:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"15773:21:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26330,"nodeType":"IfStatement","src":"15769:218:74","trueBody":{"id":26329,"nodeType":"Block","src":"15796:191:74","statements":[{"expression":{"id":26306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26298,"name":"borrow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26293,"src":"15831:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":26304,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"15848:9:74","subExpression":{"id":26301,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"15849:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":26303,"name":"maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26273,"src":"15860:10:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"15848:22:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":26300,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15840:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26299,"name":"uint256","nodeType":"ElementaryTypeName","src":"15840:7:74","typeDescriptions":{}}},"id":26305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15840:31:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15831:40:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26307,"nodeType":"ExpressionStatement","src":"15831:40:74"},{"expression":{"id":26310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26308,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"15879:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":26309,"name":"maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26273,"src":"15890:10:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"15879:21:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":26311,"nodeType":"ExpressionStatement","src":"15879:21:74"},{"expression":{"arguments":[{"id":26313,"name":"borrow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26293,"src":"15923:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":26316,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"15939:4:74","typeDescriptions":{"typeIdentifier":"t_contract$_PremiumsAccount_$27362","typeString":"contract PremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PremiumsAccount_$27362","typeString":"contract PremiumsAccount"}],"id":26315,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15931:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":26314,"name":"address","nodeType":"ElementaryTypeName","src":"15931:7:74","typeDescriptions":{}}},"id":26317,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15931:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":26326,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":26320,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25663,"src":"15954:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":26319,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15946:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":26318,"name":"address","nodeType":"ElementaryTypeName","src":"15946:7:74","typeDescriptions":{}}},"id":26321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15946:19:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":26324,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15977:1:74","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":26323,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15969:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":26322,"name":"address","nodeType":"ElementaryTypeName","src":"15969:7:74","typeDescriptions":{}}},"id":26325,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15969:10:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"15946:33:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":26312,"name":"_borrowFromEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26535,"src":"15908:14:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_bool_$returns$__$","typeString":"function (uint256,address,bool)"}},"id":26327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15908:72:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26328,"nodeType":"ExpressionStatement","src":"15908:72:74"}]}},{"eventCall":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":26332,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25687,"src":"16017:7:74","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":26333,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16025:12:74","memberName":"deficitRatio","nodeType":"MemberAccess","referencedDeclaration":25683,"src":"16017:20:74","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":26334,"name":"FOUR_DECIMAL_TO_WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25656,"src":"16040:19:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16017:42:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26336,"name":"newRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26240,"src":"16061:8:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26337,"name":"borrow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26293,"src":"16071:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26331,"name":"DeficitRatioChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25753,"src":"15997:19:74","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256)"}},"id":26338,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15997:81:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26339,"nodeType":"EmitStatement","src":"15992:86:74"},{"expression":{"id":26344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":26340,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25687,"src":"16084:7:74","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":26342,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16092:12:74","memberName":"deficitRatio","nodeType":"MemberAccess","referencedDeclaration":25683,"src":"16084:20:74","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":26343,"name":"truncatedRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26246,"src":"16107:14:74","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"16084:37:74","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"id":26345,"nodeType":"ExpressionStatement","src":"16084:37:74"}]},"documentation":{"id":26238,"nodeType":"StructuredDocumentation","src":"14395:911:74","text":" @notice Changes the `deficitRatio` parameter.\n @param newRatio New deficit ratio (wad). Must be `<= WAD` and exactly representable with 4 decimals\n                 (multiple of `FOUR_DECIMAL_TO_WAD`).\n @param adjustment If true, allows borrowing from eTokens to satisfy the new max-deficit bound when needed.\n @custom:pre `newRatio <= WAD`\n @custom:pre `newRatio` must be exactly representable with 4 decimals:\n             `uint256(uint16(newRatio / FOUR_DECIMAL_TO_WAD)) * FOUR_DECIMAL_TO_WAD == newRatio`\n @custom:pre If `adjustment == false`, then `_surplus >= _maxDeficit(newRatio)`\n @custom:throws {InvalidDeficitRatio} if `newRatio` is out of range or not representable with 4 decimals\n @custom:throws {DeficitExceedsMaxDeficit} if `adjustment == false` and `_surplus < _maxDeficit(newRatio)`\n @custom:emits {DeficitRatioChanged}"},"functionSelector":"50093f04","id":26347,"implemented":true,"kind":"function","modifiers":[],"name":"setDeficitRatio","nameLocation":"15318:15:74","nodeType":"FunctionDefinition","parameters":{"id":26243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26240,"mutability":"mutable","name":"newRatio","nameLocation":"15342:8:74","nodeType":"VariableDeclaration","scope":26347,"src":"15334:16:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26239,"name":"uint256","nodeType":"ElementaryTypeName","src":"15334:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":26242,"mutability":"mutable","name":"adjustment","nameLocation":"15357:10:74","nodeType":"VariableDeclaration","scope":26347,"src":"15352:15:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":26241,"name":"bool","nodeType":"ElementaryTypeName","src":"15352:4:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"15333:35:74"},"returnParameters":{"id":26244,"nodeType":"ParameterList","parameters":[],"src":"15378:0:74"},"scope":27362,"src":"15309:817:74","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":26427,"nodeType":"Block","src":"17086:524:74","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26355,"name":"newLimitJr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26350,"src":"17096:10:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":26358,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17115:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26357,"name":"uint256","nodeType":"ElementaryTypeName","src":"17115:7:74","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":26356,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17110:4:74","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":26359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17110:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":26360,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17124:3:74","memberName":"max","nodeType":"MemberAccess","src":"17110:17:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17096:31:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26390,"nodeType":"IfStatement","src":"17092:255:74","trueBody":{"id":26389,"nodeType":"Block","src":"17129:218:74","statements":[{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":26363,"name":"jrLoanLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26215,"src":"17159:11:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":26364,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17159:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26365,"name":"newLimitJr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26350,"src":"17174:10:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":26366,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17186:5:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":26362,"name":"LoanLimitChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25762,"src":"17142:16:74","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (uint256,uint256,bool)"}},"id":26367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17142:50:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26368,"nodeType":"EmitStatement","src":"17137:55:74"},{"expression":{"id":26375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":26369,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25687,"src":"17200:7:74","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":26371,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"17208:11:74","memberName":"jrLoanLimit","nodeType":"MemberAccess","referencedDeclaration":25679,"src":"17200:19:74","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":26373,"name":"newLimitJr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26350,"src":"17238:10:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26372,"name":"_toZeroDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26178,"src":"17222:15:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint256) view returns (uint32)"}},"id":26374,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17222:27:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"17200:49:74","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":26376,"nodeType":"ExpressionStatement","src":"17200:49:74"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26383,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":26379,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25687,"src":"17275:7:74","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":26380,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17283:11:74","memberName":"jrLoanLimit","nodeType":"MemberAccess","referencedDeclaration":25679,"src":"17275:19:74","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":26378,"name":"_toAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26158,"src":"17265:9:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint32_$returns$_t_uint256_$","typeString":"function (uint32) view returns (uint256)"}},"id":26381,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17265:30:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":26382,"name":"newLimitJr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26350,"src":"17299:10:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17265:44:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":26385,"name":"newLimitJr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26350,"src":"17328:10:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26384,"name":"InvalidLoanLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25725,"src":"17311:16:74","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":26386,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17311:28:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":26377,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"17257:7:74","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":26387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17257:83:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26388,"nodeType":"ExpressionStatement","src":"17257:83:74"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26397,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26391,"name":"newLimitSr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26352,"src":"17356:10:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":26394,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17375:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26393,"name":"uint256","nodeType":"ElementaryTypeName","src":"17375:7:74","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":26392,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17370:4:74","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":26395,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17370:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":26396,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17384:3:74","memberName":"max","nodeType":"MemberAccess","src":"17370:17:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17356:31:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26426,"nodeType":"IfStatement","src":"17352:254:74","trueBody":{"id":26425,"nodeType":"Block","src":"17389:217:74","statements":[{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":26399,"name":"srLoanLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26237,"src":"17419:11:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":26400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17419:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26401,"name":"newLimitSr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26352,"src":"17434:10:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":26402,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17446:4:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":26398,"name":"LoanLimitChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25762,"src":"17402:16:74","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (uint256,uint256,bool)"}},"id":26403,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17402:49:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26404,"nodeType":"EmitStatement","src":"17397:54:74"},{"expression":{"id":26411,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":26405,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25687,"src":"17459:7:74","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":26407,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"17467:11:74","memberName":"srLoanLimit","nodeType":"MemberAccess","referencedDeclaration":25681,"src":"17459:19:74","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":26409,"name":"newLimitSr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26352,"src":"17497:10:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26408,"name":"_toZeroDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26178,"src":"17481:15:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint256) view returns (uint32)"}},"id":26410,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17481:27:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"17459:49:74","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":26412,"nodeType":"ExpressionStatement","src":"17459:49:74"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":26415,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25687,"src":"17534:7:74","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$25684_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":26416,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17542:11:74","memberName":"srLoanLimit","nodeType":"MemberAccess","referencedDeclaration":25681,"src":"17534:19:74","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":26414,"name":"_toAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26158,"src":"17524:9:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint32_$returns$_t_uint256_$","typeString":"function (uint32) view returns (uint256)"}},"id":26417,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17524:30:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":26418,"name":"newLimitSr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26352,"src":"17558:10:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17524:44:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":26421,"name":"newLimitSr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26352,"src":"17587:10:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26420,"name":"InvalidLoanLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25725,"src":"17570:16:74","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":26422,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17570:28:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":26413,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"17516:7:74","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":26423,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17516:83:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26424,"nodeType":"ExpressionStatement","src":"17516:83:74"}]}}]},"documentation":{"id":26348,"nodeType":"StructuredDocumentation","src":"16130:881:74","text":" @notice Changes the `jrLoanLimit` or `srLoanLimit` parameter.\n @param newLimitJr The new limit to be set for the loans taken from the Junior eToken.\n                   If newLimitJr == MAX_UINT, it's ignored. If == 0, means the loans are unbounded.\n @param newLimitSr The new limit to be set for the loans taken from the Senior eToken.\n                   If newLimitSr == MAX_UINT, it's ignored. If == 0, means the loans are unbounded.\n @custom:pre For each limit `newLimit` that is updated (`newLimit != type(uint256).max`), it must be representable with 0 decimals:\n             `_toAmount(_toZeroDecimals(newLimit)) == newLimit`\n @custom:throws {InvalidLoanLimit} if any provided limit cannot be packed/unpacked without losing precision\n @custom:emits {LoanLimitChanged} once per updated limit (up to two emits)"},"functionSelector":"97a146c0","id":26428,"implemented":true,"kind":"function","modifiers":[],"name":"setLoanLimits","nameLocation":"17023:13:74","nodeType":"FunctionDefinition","parameters":{"id":26353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26350,"mutability":"mutable","name":"newLimitJr","nameLocation":"17045:10:74","nodeType":"VariableDeclaration","scope":26428,"src":"17037:18:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26349,"name":"uint256","nodeType":"ElementaryTypeName","src":"17037:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":26352,"mutability":"mutable","name":"newLimitSr","nameLocation":"17065:10:74","nodeType":"VariableDeclaration","scope":26428,"src":"17057:18:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26351,"name":"uint256","nodeType":"ElementaryTypeName","src":"17057:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17036:40:74"},"returnParameters":{"id":26354,"nodeType":"ParameterList","parameters":[],"src":"17086:0:74"},"scope":27362,"src":"17014:596:74","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":26534,"nodeType":"Block","src":"18148:813:74","statements":[{"assignments":[26439],"declarations":[{"constant":false,"id":26439,"mutability":"mutable","name":"left","nameLocation":"18162:4:74","nodeType":"VariableDeclaration","scope":26534,"src":"18154:12:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26438,"name":"uint256","nodeType":"ElementaryTypeName","src":"18154:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":26441,"initialValue":{"id":26440,"name":"borrow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26431,"src":"18169:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18154:21:74"},{"condition":{"id":26442,"name":"jrEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26435,"src":"18185:5:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26497,"nodeType":"IfStatement","src":"18181:401:74","trueBody":{"id":26496,"nodeType":"Block","src":"18192:390:74","statements":[{"assignments":[26444],"declarations":[{"constant":false,"id":26444,"mutability":"mutable","name":"jrLoan","nameLocation":"18208:6:74","nodeType":"VariableDeclaration","scope":26496,"src":"18200:14:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26443,"name":"uint256","nodeType":"ElementaryTypeName","src":"18200:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":26452,"initialValue":{"arguments":[{"arguments":[{"id":26449,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"18244:4:74","typeDescriptions":{"typeIdentifier":"t_contract$_PremiumsAccount_$27362","typeString":"contract PremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PremiumsAccount_$27362","typeString":"contract PremiumsAccount"}],"id":26448,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18236:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":26447,"name":"address","nodeType":"ElementaryTypeName","src":"18236:7:74","typeDescriptions":{}}},"id":26450,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18236:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":26445,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25663,"src":"18217:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":26446,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18228:7:74","memberName":"getLoan","nodeType":"MemberAccess","referencedDeclaration":28836,"src":"18217:18:74","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":26451,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18217:33:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18200:50:74"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26453,"name":"jrLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26444,"src":"18262:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":26454,"name":"borrow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26431,"src":"18271:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18262:15:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":26456,"name":"jrLoanLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26215,"src":"18281:11:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":26457,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18281:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18262:32:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26468,"name":"jrLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26444,"src":"18373:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":26469,"name":"jrLoanLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26215,"src":"18382:11:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":26470,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18382:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18373:22:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26494,"nodeType":"IfStatement","src":"18369:207:74","trueBody":{"id":26493,"nodeType":"Block","src":"18397:179:74","statements":[{"assignments":[26473],"declarations":[{"constant":false,"id":26473,"mutability":"mutable","name":"loanExcess","nameLocation":"18439:10:74","nodeType":"VariableDeclaration","scope":26493,"src":"18431:18:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26472,"name":"uint256","nodeType":"ElementaryTypeName","src":"18431:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":26480,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26474,"name":"jrLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26444,"src":"18452:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":26475,"name":"borrow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26431,"src":"18461:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18452:15:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":26477,"name":"jrLoanLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26215,"src":"18470:11:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":26478,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18470:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18452:31:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18431:52:74"},{"expression":{"id":26491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26481,"name":"left","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26439,"src":"18493:4:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26490,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26482,"name":"loanExcess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26473,"src":"18500:10:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26487,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26485,"name":"borrow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26431,"src":"18537:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":26486,"name":"loanExcess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26473,"src":"18546:10:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18537:19:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26488,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26433,"src":"18558:8:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":26483,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25663,"src":"18513:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":26484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18524:12:74","memberName":"internalLoan","nodeType":"MemberAccess","referencedDeclaration":28820,"src":"18513:23:74","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address) external returns (uint256)"}},"id":26489,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18513:54:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18500:67:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18493:74:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26492,"nodeType":"ExpressionStatement","src":"18493:74:74"}]}},"id":26495,"nodeType":"IfStatement","src":"18258:318:74","trueBody":{"id":26467,"nodeType":"Block","src":"18296:67:74","statements":[{"expression":{"id":26465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26459,"name":"left","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26439,"src":"18306:4:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":26462,"name":"borrow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26431,"src":"18337:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26463,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26433,"src":"18345:8:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":26460,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25663,"src":"18313:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":26461,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18324:12:74","memberName":"internalLoan","nodeType":"MemberAccess","referencedDeclaration":28820,"src":"18313:23:74","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address) external returns (uint256)"}},"id":26464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18313:41:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18306:48:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26466,"nodeType":"ExpressionStatement","src":"18306:48:74"}]}}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26500,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26498,"name":"left","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26439,"src":"18591:4:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":26499,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18599:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18591:9:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26533,"nodeType":"IfStatement","src":"18587:370:74","trueBody":{"id":26532,"nodeType":"Block","src":"18602:355:74","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26509,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":26505,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"18738:4:74","typeDescriptions":{"typeIdentifier":"t_contract$_PremiumsAccount_$27362","typeString":"contract PremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PremiumsAccount_$27362","typeString":"contract PremiumsAccount"}],"id":26504,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18730:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":26503,"name":"address","nodeType":"ElementaryTypeName","src":"18730:7:74","typeDescriptions":{}}},"id":26506,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18730:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":26501,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25667,"src":"18711:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":26502,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18722:7:74","memberName":"getLoan","nodeType":"MemberAccess","referencedDeclaration":28836,"src":"18711:18:74","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":26507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18711:33:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":26508,"name":"left","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26439,"src":"18747:4:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18711:40:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":26510,"name":"srLoanLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26237,"src":"18755:11:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":26511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18755:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18711:57:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26522,"nodeType":"IfStatement","src":"18707:128:74","trueBody":{"id":26521,"nodeType":"Block","src":"18770:65:74","statements":[{"expression":{"id":26519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26513,"name":"left","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26439,"src":"18780:4:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":26516,"name":"left","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26439,"src":"18811:4:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26517,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26433,"src":"18817:8:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":26514,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25667,"src":"18787:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":26515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18798:12:74","memberName":"internalLoan","nodeType":"MemberAccess","referencedDeclaration":28820,"src":"18787:23:74","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address) external returns (uint256)"}},"id":26518,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18787:39:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18780:46:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26520,"nodeType":"ExpressionStatement","src":"18780:46:74"}]}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26524,"name":"left","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26439,"src":"18916:4:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":26525,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18924:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18916:9:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":26528,"name":"left","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26439,"src":"18944:4:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26527,"name":"CannotBeBorrowed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25720,"src":"18927:16:74","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":26529,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18927:22:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":26523,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"18908:7:74","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":26530,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18908:42:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26531,"nodeType":"ExpressionStatement","src":"18908:42:74"}]}}]},"documentation":{"id":26429,"nodeType":"StructuredDocumentation","src":"17614:452:74","text":" @dev Internal function called when money in the PremiumsAccount is not enough and we need to borrow from the\n eTokens.\n @param borrow The amount to borrow.\n @param receiver The address that will receive the money of the loan. Usually is the policy holder if this is called\n                 in the context of a policy payout.\n @param jrEtk If true it indicates that the loan is asked first from the junior eToken."},"id":26535,"implemented":true,"kind":"function","modifiers":[],"name":"_borrowFromEtk","nameLocation":"18078:14:74","nodeType":"FunctionDefinition","parameters":{"id":26436,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26431,"mutability":"mutable","name":"borrow","nameLocation":"18101:6:74","nodeType":"VariableDeclaration","scope":26535,"src":"18093:14:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26430,"name":"uint256","nodeType":"ElementaryTypeName","src":"18093:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":26433,"mutability":"mutable","name":"receiver","nameLocation":"18117:8:74","nodeType":"VariableDeclaration","scope":26535,"src":"18109:16:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":26432,"name":"address","nodeType":"ElementaryTypeName","src":"18109:7:74","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":26435,"mutability":"mutable","name":"jrEtk","nameLocation":"18132:5:74","nodeType":"VariableDeclaration","scope":26535,"src":"18127:10:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":26434,"name":"bool","nodeType":"ElementaryTypeName","src":"18127:4:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"18092:46:74"},"returnParameters":{"id":26437,"nodeType":"ParameterList","parameters":[],"src":"18148:0:74"},"scope":27362,"src":"18069:892:74","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":26579,"nodeType":"Block","src":"19366:260:74","statements":[{"assignments":[26544],"declarations":[{"constant":false,"id":26544,"mutability":"mutable","name":"newSurplus","nameLocation":"19379:10:74","nodeType":"VariableDeclaration","scope":26579,"src":"19372:17:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":26543,"name":"int256","nodeType":"ElementaryTypeName","src":"19372:6:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":26548,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":26547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26545,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"19392:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":26546,"name":"toPay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26538,"src":"19403:5:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19392:16:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"19372:36:74"},{"assignments":[26550],"declarations":[{"constant":false,"id":26550,"mutability":"mutable","name":"maxDeficit","nameLocation":"19421:10:74","nodeType":"VariableDeclaration","scope":26579,"src":"19414:17:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":26549,"name":"int256","nodeType":"ElementaryTypeName","src":"19414:6:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":26555,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":26552,"name":"deficitRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26193,"src":"19446:12:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":26553,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19446:14:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26551,"name":"_maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26138,"src":"19434:11:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_int256_$","typeString":"function (uint256) view returns (int256)"}},"id":26554,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19434:27:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"19414:47:74"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":26558,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26556,"name":"newSurplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26544,"src":"19471:10:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":26557,"name":"maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26550,"src":"19485:10:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19471:24:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26566,"nodeType":"IfStatement","src":"19467:82:74","trueBody":{"id":26565,"nodeType":"Block","src":"19497:52:74","statements":[{"expression":{"id":26561,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26559,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"19505:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":26560,"name":"newSurplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26544,"src":"19516:10:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19505:21:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":26562,"nodeType":"ExpressionStatement","src":"19505:21:74"},{"expression":{"hexValue":"30","id":26563,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19541:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":26542,"id":26564,"nodeType":"Return","src":"19534:8:74"}]}},{"expression":{"id":26569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26567,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"19554:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":26568,"name":"maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26550,"src":"19565:10:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19554:21:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":26570,"nodeType":"ExpressionStatement","src":"19554:21:74"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":26576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"19596:11:74","subExpression":{"id":26573,"name":"newSurplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26544,"src":"19597:10:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":26575,"name":"maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26550,"src":"19610:10:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19596:24:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":26572,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19588:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26571,"name":"uint256","nodeType":"ElementaryTypeName","src":"19588:7:74","typeDescriptions":{}}},"id":26577,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19588:33:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26542,"id":26578,"nodeType":"Return","src":"19581:40:74"}]},"documentation":{"id":26536,"nodeType":"StructuredDocumentation","src":"18965:331:74","text":" @dev Updates the `_surplus` field with the payment made. Since the _surplus can never exceed `_maxDeficit()`,\n returns the remaining amount in case something can't be paid from the PremiumsAccount.\n @param toPay The amount to pay.\n @return The amount that couldn't be paid from the premiums account."},"id":26580,"implemented":true,"kind":"function","modifiers":[],"name":"_payFromPremiums","nameLocation":"19308:16:74","nodeType":"FunctionDefinition","parameters":{"id":26539,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26538,"mutability":"mutable","name":"toPay","nameLocation":"19332:5:74","nodeType":"VariableDeclaration","scope":26580,"src":"19325:12:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":26537,"name":"int256","nodeType":"ElementaryTypeName","src":"19325:6:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19324:14:74"},"returnParameters":{"id":26542,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26541,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26580,"src":"19357:7:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26540,"name":"uint256","nodeType":"ElementaryTypeName","src":"19357:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19356:9:74"},"scope":27362,"src":"19299:327:74","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":26593,"nodeType":"Block","src":"19908:45:74","statements":[{"expression":{"id":26591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26586,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"19914:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"id":26589,"name":"purePremiumWon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26583,"src":"19933:14:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26588,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19926:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":26587,"name":"int256","nodeType":"ElementaryTypeName","src":"19926:6:74","typeDescriptions":{}}},"id":26590,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19926:22:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19914:34:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":26592,"nodeType":"ExpressionStatement","src":"19914:34:74"}]},"documentation":{"id":26581,"nodeType":"StructuredDocumentation","src":"19630:212:74","text":" @dev Stores an earned pure premium. Adds to the surplus, increasing the surplus if it was positive or reducing the\n deficit if it was negative.\n @param purePremiumWon The amount earned"},"id":26594,"implemented":true,"kind":"function","modifiers":[],"name":"_storePurePremiumWon","nameLocation":"19854:20:74","nodeType":"FunctionDefinition","parameters":{"id":26584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26583,"mutability":"mutable","name":"purePremiumWon","nameLocation":"19883:14:74","nodeType":"VariableDeclaration","scope":26594,"src":"19875:22:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26582,"name":"uint256","nodeType":"ElementaryTypeName","src":"19875:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19874:24:74"},"returnParameters":{"id":26585,"nodeType":"ParameterList","parameters":[],"src":"19908:0:74"},"scope":27362,"src":"19845:108:74","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":26621,"nodeType":"Block","src":"20427:148:74","statements":[{"expression":{"arguments":[{"id":26601,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26597,"src":"20454:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26600,"name":"_storePurePremiumWon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26594,"src":"20433:20:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":26602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20433:28:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26603,"nodeType":"ExpressionStatement","src":"20433:28:74"},{"expression":{"arguments":[{"expression":{"id":26607,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"20495:3:74","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":26608,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20499:6:74","memberName":"sender","nodeType":"MemberAccess","src":"20495:10:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":26611,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"20515:4:74","typeDescriptions":{"typeIdentifier":"t_contract$_PremiumsAccount_$27362","typeString":"contract PremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PremiumsAccount_$27362","typeString":"contract PremiumsAccount"}],"id":26610,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"20507:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":26609,"name":"address","nodeType":"ElementaryTypeName","src":"20507:7:74","typeDescriptions":{}}},"id":26612,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20507:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":26613,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26597,"src":"20522:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":26604,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25603,"src":"20467:8:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$8863_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":26605,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20467:10:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":26606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20478:16:74","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":8979,"src":"20467:27:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$7977_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":26614,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20467:62:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26615,"nodeType":"ExpressionStatement","src":"20467:62:74"},{"eventCall":{"arguments":[{"hexValue":"74727565","id":26617,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"20557:4:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":26618,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26597,"src":"20563:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26616,"name":"WonPremiumsInOut","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25744,"src":"20540:16:74","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bool_$_t_uint256_$returns$__$","typeString":"function (bool,uint256)"}},"id":26619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20540:30:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26620,"nodeType":"EmitStatement","src":"20535:35:74"}]},"documentation":{"id":26595,"nodeType":"StructuredDocumentation","src":"19957:420:74","text":" @notice Endpoint to receive \"free money\" and inject that money into the premium pool.\n @dev Can be used for example if the PolicyPool subscribes an excess loss policy with other company.\n @param amount The amount to be transferred.\n @custom:pre `msg.sender` approved `currency()` to this contract for at least `amount`\n @custom:emits {WonPremiumsInOut} with `moneyIn = true`"},"functionSelector":"81ced71f","id":26622,"implemented":true,"kind":"function","modifiers":[],"name":"receiveGrant","nameLocation":"20389:12:74","nodeType":"FunctionDefinition","parameters":{"id":26598,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26597,"mutability":"mutable","name":"amount","nameLocation":"20410:6:74","nodeType":"VariableDeclaration","scope":26622,"src":"20402:14:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26596,"name":"uint256","nodeType":"ElementaryTypeName","src":"20402:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20401:16:74"},"returnParameters":{"id":26599,"nodeType":"ParameterList","parameters":[],"src":"20427:0:74"},"scope":27362,"src":"20380:195:74","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":26713,"nodeType":"Block","src":"21714:484:74","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":26638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26633,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26627,"src":"21728:11:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":26636,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21751:1:74","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":26635,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21743:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":26634,"name":"address","nodeType":"ElementaryTypeName","src":"21743:7:74","typeDescriptions":{}}},"id":26637,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21743:10:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21728:25:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":26640,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26627,"src":"21774:11:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":26639,"name":"InvalidDestination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25730,"src":"21755:18:74","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":26641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21755:31:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":26632,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"21720:7:74","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":26642,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21720:67:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26643,"nodeType":"ExpressionStatement","src":"21720:67:74"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":26653,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":26646,"name":"yieldVault","nodeType":"Identifier","overloadedDeclarations":[25934],"referencedDeclaration":25934,"src":"21805:10:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC4626_$6400_$","typeString":"function () view returns (contract IERC4626)"}},"id":26647,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21805:12:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}],"id":26645,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21797:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":26644,"name":"address","nodeType":"ElementaryTypeName","src":"21797:7:74","typeDescriptions":{}}},"id":26648,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21797:21:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":26651,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21830:1:74","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":26650,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21822:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":26649,"name":"address","nodeType":"ElementaryTypeName","src":"21822:7:74","typeDescriptions":{}}},"id":26652,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21822:10:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21797:35:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26657,"nodeType":"IfStatement","src":"21793:57:74","trueBody":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":26654,"name":"recordEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28009,"src":"21834:14:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":26655,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21834:16:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26656,"nodeType":"ExpressionStatement","src":"21834:16:74"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26658,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26625,"src":"21860:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":26661,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21875:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26660,"name":"uint256","nodeType":"ElementaryTypeName","src":"21875:7:74","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":26659,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"21870:4:74","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":26662,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21870:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":26663,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21884:3:74","memberName":"max","nodeType":"MemberAccess","src":"21870:17:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21860:27:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":26692,"nodeType":"Block","src":"21971:92:74","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":26685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":26682,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26625,"src":"21994:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26681,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21987:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":26680,"name":"int256","nodeType":"ElementaryTypeName","src":"21987:6:74","typeDescriptions":{}}},"id":26683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21987:14:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":26684,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"22005:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21987:26:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":26687,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26625,"src":"22038:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26688,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"22046:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":26686,"name":"WithdrawExceedsSurplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25737,"src":"22015:22:74","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_int256_$returns$_t_error_$","typeString":"function (uint256,int256) pure returns (error)"}},"id":26689,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22015:40:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":26679,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"21979:7:74","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":26690,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21979:77:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26691,"nodeType":"ExpressionStatement","src":"21979:77:74"}]},"id":26693,"nodeType":"IfStatement","src":"21856:207:74","trueBody":{"id":26678,"nodeType":"Block","src":"21889:76:74","statements":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":26667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26665,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"21901:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"30","id":26666,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21913:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"21901:13:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26670,"nodeType":"IfStatement","src":"21897:27:74","trueBody":{"expression":{"hexValue":"30","id":26668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21923:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":26631,"id":26669,"nodeType":"Return","src":"21916:8:74"}},{"expression":{"id":26676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26671,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26625,"src":"21932:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":26674,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"21949:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":26673,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21941:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26672,"name":"uint256","nodeType":"ElementaryTypeName","src":"21941:7:74","typeDescriptions":{}}},"id":26675,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21941:17:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21932:26:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26677,"nodeType":"ExpressionStatement","src":"21932:26:74"}]}},{"expression":{"id":26699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26694,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"22068:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"arguments":[{"id":26697,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26625,"src":"22087:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26696,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22080:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":26695,"name":"int256","nodeType":"ElementaryTypeName","src":"22080:6:74","typeDescriptions":{}}},"id":26698,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22080:14:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22068:26:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":26700,"nodeType":"ExpressionStatement","src":"22068:26:74"},{"expression":{"arguments":[{"id":26702,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26627,"src":"22112:11:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":26703,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26625,"src":"22125:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26701,"name":"_transferTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27518,"src":"22100:11:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":26704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22100:32:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26705,"nodeType":"ExpressionStatement","src":"22100:32:74"},{"eventCall":{"arguments":[{"hexValue":"66616c7365","id":26707,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"22160:5:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"id":26708,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26625,"src":"22167:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26706,"name":"WonPremiumsInOut","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25744,"src":"22143:16:74","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bool_$_t_uint256_$returns$__$","typeString":"function (bool,uint256)"}},"id":26709,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22143:31:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26710,"nodeType":"EmitStatement","src":"22138:36:74"},{"expression":{"id":26711,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26625,"src":"22187:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26631,"id":26712,"nodeType":"Return","src":"22180:13:74"}]},"documentation":{"id":26623,"nodeType":"StructuredDocumentation","src":"20579:1039:74","text":" @notice Withdraws excess premiums (surplus) to the destination.\n @dev This might be needed in some cases for example if we are deprecating the protocol or the excess premiums\n are needed to compensate something. Or to extract profits accrued either by Ensuro or the partners.\n @param amount The amount to withdraw. If amount == type(uint256).max it withdraws as much as possible and doesn't\n               fails. If amount != type(uint256).max it tries to withdraw that amount or it fails\n @param destination The address that will receive the transferred funds.\n @return Returns the actual amount withdrawn.\n @custom:pre `destination != address(0)`\n @custom:pre If `amount != type(uint256).max`, then `int256(amount) <= _surplus`\n @custom:throws {InvalidDestination} if `destination == address(0)`\n @custom:throws {WithdrawExceedsSurplus} if `amount != type(uint256).max` and `int256(amount) > _surplus`\n @custom:emits {WonPremiumsInOut} with `moneyIn = false`"},"functionSelector":"a0ce58b8","id":26714,"implemented":true,"kind":"function","modifiers":[],"name":"withdrawWonPremiums","nameLocation":"21630:19:74","nodeType":"FunctionDefinition","parameters":{"id":26628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26625,"mutability":"mutable","name":"amount","nameLocation":"21658:6:74","nodeType":"VariableDeclaration","scope":26714,"src":"21650:14:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26624,"name":"uint256","nodeType":"ElementaryTypeName","src":"21650:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":26627,"mutability":"mutable","name":"destination","nameLocation":"21674:11:74","nodeType":"VariableDeclaration","scope":26714,"src":"21666:19:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":26626,"name":"address","nodeType":"ElementaryTypeName","src":"21666:7:74","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"21649:37:74"},"returnParameters":{"id":26631,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26630,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26714,"src":"21705:7:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26629,"name":"uint256","nodeType":"ElementaryTypeName","src":"21705:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21704:9:74"},"scope":27362,"src":"21621:577:74","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[29202],"body":{"id":26763,"nodeType":"Block","src":"22328:244:74","statements":[{"expression":{"id":26727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26724,"name":"_activePurePremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25670,"src":"22334:19:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"expression":{"id":26725,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26718,"src":"22357:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26726,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22364:11:74","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22243,"src":"22357:18:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22334:41:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26728,"nodeType":"ExpressionStatement","src":"22334:41:74"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":26729,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26718,"src":"22385:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22392:5:74","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22237,"src":"22385:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":26731,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22400:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"22385:16:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26745,"nodeType":"IfStatement","src":"22381:90:74","trueBody":{"expression":{"arguments":[{"expression":{"id":26736,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26718,"src":"22422:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22429:2:74","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"22422:9:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":26738,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26718,"src":"22433:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26739,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22440:5:74","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22237,"src":"22433:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":26740,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26718,"src":"22447:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22454:14:74","memberName":"jrInterestRate","nodeType":"MemberAccess","referencedDeclaration":22636,"src":"22447:21:74","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":26742,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22447:23:74","tryCall":false,"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":26733,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25663,"src":"22403:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":26735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22414:7:74","memberName":"lockScr","nodeType":"MemberAccess","referencedDeclaration":28740,"src":"22403:18:74","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) external"}},"id":26743,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22403:68:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26744,"nodeType":"ExpressionStatement","src":"22403:68:74"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":26746,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26718,"src":"22481:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26747,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22488:5:74","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22239,"src":"22481:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":26748,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22496:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"22481:16:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26762,"nodeType":"IfStatement","src":"22477:90:74","trueBody":{"expression":{"arguments":[{"expression":{"id":26753,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26718,"src":"22518:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26754,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22525:2:74","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"22518:9:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":26755,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26718,"src":"22529:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22536:5:74","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22239,"src":"22529:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":26757,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26718,"src":"22543:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26758,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22550:14:74","memberName":"srInterestRate","nodeType":"MemberAccess","referencedDeclaration":22686,"src":"22543:21:74","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":26759,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22543:23:74","tryCall":false,"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":26750,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25667,"src":"22499:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":26752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22510:7:74","memberName":"lockScr","nodeType":"MemberAccess","referencedDeclaration":28740,"src":"22499:18:74","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) external"}},"id":26760,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22499:68:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26761,"nodeType":"ExpressionStatement","src":"22499:68:74"}}]},"documentation":{"id":26715,"nodeType":"StructuredDocumentation","src":"22202:32:74","text":"@inheritdoc IPremiumsAccount"},"functionSelector":"f79ac183","id":26764,"implemented":true,"kind":"function","modifiers":[{"id":26722,"kind":"modifierInvocation","modifierName":{"id":26721,"name":"onlyPolicyPool","nameLocations":["22313:14:74"],"nodeType":"IdentifierPath","referencedDeclaration":25496,"src":"22313:14:74"},"nodeType":"ModifierInvocation","src":"22313:14:74"}],"name":"policyCreated","nameLocation":"22246:13:74","nodeType":"FunctionDefinition","overrides":{"id":26720,"nodeType":"OverrideSpecifier","overrides":[],"src":"22304:8:74"},"parameters":{"id":26719,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26718,"mutability":"mutable","name":"policy","nameLocation":"22287:6:74","nodeType":"VariableDeclaration","scope":26764,"src":"22260:33:74","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":26717,"nodeType":"UserDefinedTypeName","pathNode":{"id":26716,"name":"Policy.PolicyData","nameLocations":["22260:6:74","22267:10:74"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"22260:17:74"},"referencedDeclaration":22256,"src":"22260:17:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"22259:35:74"},"returnParameters":{"id":26723,"nodeType":"ParameterList","parameters":[],"src":"22328:0:74"},"scope":27362,"src":"22237:335:74","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[29212],"body":{"id":26879,"nodeType":"Block","src":"22756:1546:74","statements":[{"documentation":" Assumptions:\n 1. newPolicy.purePremium >= oldPolicy.purePremium (validated by PolicyPool)\n 2. jrCoc != 0 ==> jrScr != 0 ^ srCoc != 0 ==> srScr != 0 (guaranteed by Policy.sol)\n 3. newPolicy.jrCoc >= oldPolicy.jrCoc (validated by PolicyPool)\n 4. newPolicy.srCoc >= oldPolicy.srCoc (validated by PolicyPool)\n 5. Then sr/jrInterestRate() never fails","expression":{"id":26783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26777,"name":"_activePurePremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25670,"src":"23161:19:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26782,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":26778,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"23184:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23194:11:74","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22243,"src":"23184:21:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":26780,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26768,"src":"23208:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26781,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23218:11:74","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22243,"src":"23208:21:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23184:45:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23161:68:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26784,"nodeType":"ExpressionStatement","src":"23161:68:74"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":26785,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26768,"src":"23619:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23629:5:74","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22237,"src":"23619:15:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":26787,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23638:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23619:20:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"documentation":" Applies an adjustment based on the difference between the accrued interest with the old policy and the new\n policy.\n The CoC is disbursed linearly from policy start (the same for old and new policy) and policy.expiration (might\n be different).\n The adjustment corrects the gap between the two straight lines at the replacement time","id":26814,"nodeType":"IfStatement","src":"23615:230:74","trueBody":{"expression":{"arguments":[{"expression":{"id":26792,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26768,"src":"23677:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23687:2:74","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"23677:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":26794,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26768,"src":"23699:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23709:5:74","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22237,"src":"23699:15:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":26796,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26768,"src":"23724:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23734:14:74","memberName":"jrInterestRate","nodeType":"MemberAccess","referencedDeclaration":22636,"src":"23724:24:74","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":26798,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23724:26:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":26811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":26801,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"23767:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26802,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23777:17:74","memberName":"jrAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":22661,"src":"23767:27:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":26803,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23767:29:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26800,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23760:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":26799,"name":"int256","nodeType":"ElementaryTypeName","src":"23760:6:74","typeDescriptions":{}}},"id":26804,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23760:37:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":26807,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26768,"src":"23807:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23817:17:74","memberName":"jrAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":22661,"src":"23807:27:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":26809,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23807:29:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26806,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23800:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":26805,"name":"int256","nodeType":"ElementaryTypeName","src":"23800:6:74","typeDescriptions":{}}},"id":26810,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23800:37:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23760:77:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":26789,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25663,"src":"23647:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":26791,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23658:9:74","memberName":"unlockScr","nodeType":"MemberAccess","referencedDeclaration":28752,"src":"23647:20:74","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256) external"}},"id":26812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23647:198:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26813,"nodeType":"ExpressionStatement","src":"23647:198:74"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26818,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":26815,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"23855:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26816,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23865:5:74","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22237,"src":"23855:15:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":26817,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23873:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23855:19:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26831,"nodeType":"IfStatement","src":"23851:102:74","trueBody":{"expression":{"arguments":[{"expression":{"id":26822,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"23895:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26823,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23905:2:74","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"23895:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":26824,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"23909:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26825,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23919:5:74","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22237,"src":"23909:15:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":26826,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"23926:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26827,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23936:14:74","memberName":"jrInterestRate","nodeType":"MemberAccess","referencedDeclaration":22636,"src":"23926:24:74","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":26828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23926:26:74","tryCall":false,"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":26819,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25663,"src":"23876:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":26821,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23887:7:74","memberName":"lockScr","nodeType":"MemberAccess","referencedDeclaration":28740,"src":"23876:18:74","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) external"}},"id":26829,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23876:77:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26830,"nodeType":"ExpressionStatement","src":"23876:77:74"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26835,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":26832,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26768,"src":"23963:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23973:5:74","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22239,"src":"23963:15:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":26834,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23982:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23963:20:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26861,"nodeType":"IfStatement","src":"23959:230:74","trueBody":{"expression":{"arguments":[{"expression":{"id":26839,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26768,"src":"24021:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26840,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24031:2:74","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"24021:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":26841,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26768,"src":"24043:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26842,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24053:5:74","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22239,"src":"24043:15:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":26843,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26768,"src":"24068:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26844,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24078:14:74","memberName":"srInterestRate","nodeType":"MemberAccess","referencedDeclaration":22686,"src":"24068:24:74","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":26845,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24068:26:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":26858,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":26848,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"24111:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26849,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24121:17:74","memberName":"srAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":22711,"src":"24111:27:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":26850,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24111:29:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26847,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24104:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":26846,"name":"int256","nodeType":"ElementaryTypeName","src":"24104:6:74","typeDescriptions":{}}},"id":26851,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24104:37:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":26854,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26768,"src":"24151:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24161:17:74","memberName":"srAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":22711,"src":"24151:27:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":26856,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24151:29:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26853,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24144:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":26852,"name":"int256","nodeType":"ElementaryTypeName","src":"24144:6:74","typeDescriptions":{}}},"id":26857,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24144:37:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24104:77:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":26836,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25667,"src":"23991:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":26838,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24002:9:74","memberName":"unlockScr","nodeType":"MemberAccess","referencedDeclaration":28752,"src":"23991:20:74","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256) external"}},"id":26859,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23991:198:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26860,"nodeType":"ExpressionStatement","src":"23991:198:74"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":26862,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"24199:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26863,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24209:5:74","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22239,"src":"24199:15:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":26864,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24217:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24199:19:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26878,"nodeType":"IfStatement","src":"24195:102:74","trueBody":{"expression":{"arguments":[{"expression":{"id":26869,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"24239:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24249:2:74","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"24239:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":26871,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"24253:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24263:5:74","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22239,"src":"24253:15:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":26873,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"24270:9:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24280:14:74","memberName":"srInterestRate","nodeType":"MemberAccess","referencedDeclaration":22686,"src":"24270:24:74","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":26875,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24270:26:74","tryCall":false,"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":26866,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25667,"src":"24220:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":26868,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24231:7:74","memberName":"lockScr","nodeType":"MemberAccess","referencedDeclaration":28740,"src":"24220:18:74","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) external"}},"id":26876,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24220:77:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26877,"nodeType":"ExpressionStatement","src":"24220:77:74"}}]},"documentation":{"id":26765,"nodeType":"StructuredDocumentation","src":"22576:32:74","text":"@inheritdoc IPremiumsAccount"},"functionSelector":"d5c6c166","id":26880,"implemented":true,"kind":"function","modifiers":[{"id":26775,"kind":"modifierInvocation","modifierName":{"id":26774,"name":"onlyPolicyPool","nameLocations":["22741:14:74"],"nodeType":"IdentifierPath","referencedDeclaration":25496,"src":"22741:14:74"},"nodeType":"ModifierInvocation","src":"22741:14:74"}],"name":"policyReplaced","nameLocation":"22620:14:74","nodeType":"FunctionDefinition","overrides":{"id":26773,"nodeType":"OverrideSpecifier","overrides":[],"src":"22732:8:74"},"parameters":{"id":26772,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26768,"mutability":"mutable","name":"oldPolicy","nameLocation":"22667:9:74","nodeType":"VariableDeclaration","scope":26880,"src":"22640:36:74","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":26767,"nodeType":"UserDefinedTypeName","pathNode":{"id":26766,"name":"Policy.PolicyData","nameLocations":["22640:6:74","22647:10:74"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"22640:17:74"},"referencedDeclaration":22256,"src":"22640:17:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":26771,"mutability":"mutable","name":"newPolicy","nameLocation":"22709:9:74","nodeType":"VariableDeclaration","scope":26880,"src":"22682:36:74","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":26770,"nodeType":"UserDefinedTypeName","pathNode":{"id":26769,"name":"Policy.PolicyData","nameLocations":["22682:6:74","22689:10:74"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"22682:17:74"},"referencedDeclaration":22256,"src":"22682:17:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"22634:88:74"},"returnParameters":{"id":26776,"nodeType":"ParameterList","parameters":[],"src":"22756:0:74"},"scope":27362,"src":"22611:1691:74","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[29227],"body":{"id":26954,"nodeType":"Block","src":"24549:490:74","statements":[{"expression":{"id":26901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26898,"name":"_activePurePremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25670,"src":"24555:19:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"expression":{"id":26899,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26884,"src":"24578:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24585:11:74","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22243,"src":"24578:18:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24555:41:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26902,"nodeType":"ExpressionStatement","src":"24555:41:74"},{"assignments":[26904],"declarations":[{"constant":false,"id":26904,"mutability":"mutable","name":"borrowFromScr","nameLocation":"24610:13:74","nodeType":"VariableDeclaration","scope":26954,"src":"24602:21:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26903,"name":"uint256","nodeType":"ElementaryTypeName","src":"24602:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":26917,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":26915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":26908,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26886,"src":"24650:17:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26907,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24643:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":26906,"name":"int256","nodeType":"ElementaryTypeName","src":"24643:6:74","typeDescriptions":{}}},"id":26909,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24643:25:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"expression":{"id":26912,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26884,"src":"24678:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26913,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24685:11:74","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22243,"src":"24678:18:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26911,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24671:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":26910,"name":"int256","nodeType":"ElementaryTypeName","src":"24671:6:74","typeDescriptions":{}}},"id":26914,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24671:26:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24643:54:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":26905,"name":"_payFromPremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26580,"src":"24626:16:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$_t_uint256_$","typeString":"function (int256) returns (uint256)"}},"id":26916,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24626:72:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"24602:96:74"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26918,"name":"borrowFromScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26904,"src":"24708:13:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":26919,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24725:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24708:18:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":26945,"nodeType":"Block","src":"24886:83:74","statements":[{"expression":{"arguments":[{"id":26939,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26884,"src":"24915:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"id":26940,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26888,"src":"24923:11:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26941,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26890,"src":"24936:11:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26942,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26892,"src":"24949:12:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":26938,"name":"_unlockScrWithRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27170,"src":"24894:20:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_uint256_$_t_address_$returns$__$","typeString":"function (struct Policy.PolicyData memory,uint256,uint256,address)"}},"id":26943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24894:68:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26944,"nodeType":"ExpressionStatement","src":"24894:68:74"}]},"id":26946,"nodeType":"IfStatement","src":"24704:265:74","trueBody":{"id":26937,"nodeType":"Block","src":"24728:152:74","statements":[{"expression":{"arguments":[{"id":26922,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26884,"src":"24757:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"id":26923,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26888,"src":"24765:11:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26924,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26890,"src":"24778:11:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26925,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26892,"src":"24791:12:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":26921,"name":"_unlockScrWithRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27170,"src":"24736:20:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_uint256_$_t_address_$returns$__$","typeString":"function (struct Policy.PolicyData memory,uint256,uint256,address)"}},"id":26926,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24736:68:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26927,"nodeType":"ExpressionStatement","src":"24736:68:74"},{"expression":{"arguments":[{"id":26929,"name":"borrowFromScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26904,"src":"24827:13:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26930,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26892,"src":"24842:12:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":26931,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26884,"src":"24856:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26932,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24863:5:74","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22237,"src":"24856:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":26933,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24871:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24856:16:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":26928,"name":"_borrowFromEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26535,"src":"24812:14:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_bool_$returns$__$","typeString":"function (uint256,address,bool)"}},"id":26935,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24812:61:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26936,"nodeType":"ExpressionStatement","src":"24812:61:74"}]}},{"expression":{"arguments":[{"id":26948,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26892,"src":"24986:12:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26951,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26949,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26886,"src":"25000:17:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":26950,"name":"borrowFromScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26904,"src":"25020:13:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25000:33:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26947,"name":"_transferTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27518,"src":"24974:11:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":26952,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24974:60:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26953,"nodeType":"ExpressionStatement","src":"24974:60:74"}]},"documentation":{"id":26881,"nodeType":"StructuredDocumentation","src":"24306:32:74","text":"@inheritdoc IPremiumsAccount"},"functionSelector":"ee1f9a6a","id":26955,"implemented":true,"kind":"function","modifiers":[{"id":26896,"kind":"modifierInvocation","modifierName":{"id":26895,"name":"onlyPolicyPool","nameLocations":["24534:14:74"],"nodeType":"IdentifierPath","referencedDeclaration":25496,"src":"24534:14:74"},"nodeType":"ModifierInvocation","src":"24534:14:74"}],"name":"policyCancelled","nameLocation":"24350:15:74","nodeType":"FunctionDefinition","overrides":{"id":26894,"nodeType":"OverrideSpecifier","overrides":[],"src":"24525:8:74"},"parameters":{"id":26893,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26884,"mutability":"mutable","name":"policy","nameLocation":"24398:6:74","nodeType":"VariableDeclaration","scope":26955,"src":"24371:33:74","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":26883,"nodeType":"UserDefinedTypeName","pathNode":{"id":26882,"name":"Policy.PolicyData","nameLocations":["24371:6:74","24378:10:74"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"24371:17:74"},"referencedDeclaration":22256,"src":"24371:17:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":26886,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"24418:17:74","nodeType":"VariableDeclaration","scope":26955,"src":"24410:25:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26885,"name":"uint256","nodeType":"ElementaryTypeName","src":"24410:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":26888,"mutability":"mutable","name":"jrCocRefund","nameLocation":"24449:11:74","nodeType":"VariableDeclaration","scope":26955,"src":"24441:19:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26887,"name":"uint256","nodeType":"ElementaryTypeName","src":"24441:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":26890,"mutability":"mutable","name":"srCocRefund","nameLocation":"24474:11:74","nodeType":"VariableDeclaration","scope":26955,"src":"24466:19:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26889,"name":"uint256","nodeType":"ElementaryTypeName","src":"24466:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":26892,"mutability":"mutable","name":"policyHolder","nameLocation":"24499:12:74","nodeType":"VariableDeclaration","scope":26955,"src":"24491:20:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":26891,"name":"address","nodeType":"ElementaryTypeName","src":"24491:7:74","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"24365:150:74"},"returnParameters":{"id":26897,"nodeType":"ParameterList","parameters":[],"src":"24549:0:74"},"scope":27362,"src":"24341:698:74","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[29238],"body":{"id":27019,"nodeType":"Block","src":"25234:368:74","statements":[{"expression":{"id":26972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26969,"name":"_activePurePremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25670,"src":"25240:19:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"expression":{"id":26970,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26961,"src":"25263:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26971,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25270:11:74","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22243,"src":"25263:18:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25240:41:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26973,"nodeType":"ExpressionStatement","src":"25240:41:74"},{"assignments":[26975],"declarations":[{"constant":false,"id":26975,"mutability":"mutable","name":"borrowFromScr","nameLocation":"25295:13:74","nodeType":"VariableDeclaration","scope":27019,"src":"25287:21:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26974,"name":"uint256","nodeType":"ElementaryTypeName","src":"25287:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":26988,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":26986,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":26979,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26963,"src":"25335:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26978,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25328:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":26977,"name":"int256","nodeType":"ElementaryTypeName","src":"25328:6:74","typeDescriptions":{}}},"id":26980,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25328:14:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"expression":{"id":26983,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26961,"src":"25352:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":26984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25359:11:74","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22243,"src":"25352:18:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26982,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25345:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":26981,"name":"int256","nodeType":"ElementaryTypeName","src":"25345:6:74","typeDescriptions":{}}},"id":26985,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25345:26:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"25328:43:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":26976,"name":"_payFromPremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26580,"src":"25311:16:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$_t_uint256_$","typeString":"function (int256) returns (uint256)"}},"id":26987,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25311:61:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"25287:85:74"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26989,"name":"borrowFromScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26975,"src":"25382:13:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":26990,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25399:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"25382:18:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":27010,"nodeType":"Block","src":"25510:33:74","statements":[{"expression":{"arguments":[{"id":27007,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26961,"src":"25529:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}],"id":27006,"name":"_unlockScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27088,"src":"25518:10:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PolicyData_$22256_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory)"}},"id":27008,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25518:18:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27009,"nodeType":"ExpressionStatement","src":"25518:18:74"}]},"id":27011,"nodeType":"IfStatement","src":"25378:165:74","trueBody":{"id":27005,"nodeType":"Block","src":"25402:102:74","statements":[{"expression":{"arguments":[{"id":26993,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26961,"src":"25421:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}],"id":26992,"name":"_unlockScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27088,"src":"25410:10:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PolicyData_$22256_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory)"}},"id":26994,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25410:18:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26995,"nodeType":"ExpressionStatement","src":"25410:18:74"},{"expression":{"arguments":[{"id":26997,"name":"borrowFromScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26975,"src":"25451:13:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26998,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26958,"src":"25466:12:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27002,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":26999,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26961,"src":"25480:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":27000,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25487:5:74","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22237,"src":"25480:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":27001,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25495:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"25480:16:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":26996,"name":"_borrowFromEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26535,"src":"25436:14:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_bool_$returns$__$","typeString":"function (uint256,address,bool)"}},"id":27003,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25436:61:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27004,"nodeType":"ExpressionStatement","src":"25436:61:74"}]}},{"expression":{"arguments":[{"id":27013,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26958,"src":"25560:12:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27014,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26963,"src":"25574:6:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":27015,"name":"borrowFromScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26975,"src":"25583:13:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25574:22:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27012,"name":"_transferTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27518,"src":"25548:11:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":27017,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25548:49:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27018,"nodeType":"ExpressionStatement","src":"25548:49:74"}]},"documentation":{"id":26956,"nodeType":"StructuredDocumentation","src":"25043:32:74","text":"@inheritdoc IPremiumsAccount"},"functionSelector":"1dda2899","id":27020,"implemented":true,"kind":"function","modifiers":[{"id":26967,"kind":"modifierInvocation","modifierName":{"id":26966,"name":"onlyPolicyPool","nameLocations":["25219:14:74"],"nodeType":"IdentifierPath","referencedDeclaration":25496,"src":"25219:14:74"},"nodeType":"ModifierInvocation","src":"25219:14:74"}],"name":"policyResolvedWithPayout","nameLocation":"25087:24:74","nodeType":"FunctionDefinition","overrides":{"id":26965,"nodeType":"OverrideSpecifier","overrides":[],"src":"25210:8:74"},"parameters":{"id":26964,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26958,"mutability":"mutable","name":"policyHolder","nameLocation":"25125:12:74","nodeType":"VariableDeclaration","scope":27020,"src":"25117:20:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":26957,"name":"address","nodeType":"ElementaryTypeName","src":"25117:7:74","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":26961,"mutability":"mutable","name":"policy","nameLocation":"25170:6:74","nodeType":"VariableDeclaration","scope":27020,"src":"25143:33:74","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":26960,"nodeType":"UserDefinedTypeName","pathNode":{"id":26959,"name":"Policy.PolicyData","nameLocations":["25143:6:74","25150:10:74"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"25143:17:74"},"referencedDeclaration":22256,"src":"25143:17:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":26963,"mutability":"mutable","name":"payout","nameLocation":"25190:6:74","nodeType":"VariableDeclaration","scope":27020,"src":"25182:14:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26962,"name":"uint256","nodeType":"ElementaryTypeName","src":"25182:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25111:89:74"},"returnParameters":{"id":26968,"nodeType":"ParameterList","parameters":[],"src":"25234:0:74"},"scope":27362,"src":"25078:524:74","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":27087,"nodeType":"Block","src":"25829:427:74","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27030,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":27027,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27024,"src":"25839:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27028,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25846:5:74","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22237,"src":"25839:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":27029,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25854:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"25839:16:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27056,"nodeType":"IfStatement","src":"25835:206:74","trueBody":{"id":27055,"nodeType":"Block","src":"25857:184:74","statements":[{"expression":{"arguments":[{"expression":{"id":27034,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27024,"src":"25895:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27035,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25902:2:74","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"25895:9:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":27036,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27024,"src":"25914:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27037,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25921:5:74","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22237,"src":"25914:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":27038,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27024,"src":"25936:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27039,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25943:14:74","memberName":"jrInterestRate","nodeType":"MemberAccess","referencedDeclaration":22636,"src":"25936:21:74","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":27040,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25936:23:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":27052,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":27043,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27024,"src":"25976:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27044,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25983:5:74","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":22249,"src":"25976:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27042,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25969:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":27041,"name":"int256","nodeType":"ElementaryTypeName","src":"25969:6:74","typeDescriptions":{}}},"id":27045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25969:20:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":27048,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27024,"src":"25999:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27049,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26006:17:74","memberName":"jrAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":22661,"src":"25999:24:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":27050,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25999:26:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27047,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25992:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":27046,"name":"int256","nodeType":"ElementaryTypeName","src":"25992:6:74","typeDescriptions":{}}},"id":27051,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25992:34:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"25969:57:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":27031,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25663,"src":"25865:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":27033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25876:9:74","memberName":"unlockScr","nodeType":"MemberAccess","referencedDeclaration":28752,"src":"25865:20:74","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256) external"}},"id":27053,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25865:169:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27054,"nodeType":"ExpressionStatement","src":"25865:169:74"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":27057,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27024,"src":"26050:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27058,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26057:5:74","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22239,"src":"26050:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":27059,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26065:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"26050:16:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27086,"nodeType":"IfStatement","src":"26046:206:74","trueBody":{"id":27085,"nodeType":"Block","src":"26068:184:74","statements":[{"expression":{"arguments":[{"expression":{"id":27064,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27024,"src":"26106:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27065,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26113:2:74","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"26106:9:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":27066,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27024,"src":"26125:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27067,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26132:5:74","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22239,"src":"26125:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":27068,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27024,"src":"26147:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27069,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26154:14:74","memberName":"srInterestRate","nodeType":"MemberAccess","referencedDeclaration":22686,"src":"26147:21:74","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":27070,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26147:23:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":27082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":27073,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27024,"src":"26187:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27074,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26194:5:74","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":22251,"src":"26187:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27072,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26180:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":27071,"name":"int256","nodeType":"ElementaryTypeName","src":"26180:6:74","typeDescriptions":{}}},"id":27075,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26180:20:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":27078,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27024,"src":"26210:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27079,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26217:17:74","memberName":"srAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":22711,"src":"26210:24:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":27080,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26210:26:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27077,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26203:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":27076,"name":"int256","nodeType":"ElementaryTypeName","src":"26203:6:74","typeDescriptions":{}}},"id":27081,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26203:34:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26180:57:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":27061,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25667,"src":"26076:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":27063,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26087:9:74","memberName":"unlockScr","nodeType":"MemberAccess","referencedDeclaration":28752,"src":"26076:20:74","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256) external"}},"id":27083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26076:169:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27084,"nodeType":"ExpressionStatement","src":"26076:169:74"}]}}]},"documentation":{"id":27021,"nodeType":"StructuredDocumentation","src":"25606:158:74","text":" @dev Internal function that calls the eTokens to unlock the solvency capital when the policy expires\n @param policy The policy expired"},"id":27088,"implemented":true,"kind":"function","modifiers":[],"name":"_unlockScr","nameLocation":"25776:10:74","nodeType":"FunctionDefinition","parameters":{"id":27025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27024,"mutability":"mutable","name":"policy","nameLocation":"25812:6:74","nodeType":"VariableDeclaration","scope":27088,"src":"25787:31:74","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":27023,"nodeType":"UserDefinedTypeName","pathNode":{"id":27022,"name":"Policy.PolicyData","nameLocations":["25787:6:74","25794:10:74"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"25787:17:74"},"referencedDeclaration":22256,"src":"25787:17:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"25786:33:74"},"returnParameters":{"id":27026,"nodeType":"ParameterList","parameters":[],"src":"25829:0:74"},"scope":27362,"src":"25767:489:74","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":27169,"nodeType":"Block","src":"26629:561:74","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27104,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":27101,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27092,"src":"26639:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27102,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26646:5:74","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22237,"src":"26639:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":27103,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26654:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"26639:16:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27134,"nodeType":"IfStatement","src":"26635:273:74","trueBody":{"id":27133,"nodeType":"Block","src":"26657:251:74","statements":[{"expression":{"arguments":[{"expression":{"id":27108,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27092,"src":"26705:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27109,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26712:2:74","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"26705:9:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":27110,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27092,"src":"26724:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27111,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26731:5:74","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":22237,"src":"26724:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":27112,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27092,"src":"26746:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27113,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26753:14:74","memberName":"jrInterestRate","nodeType":"MemberAccess","referencedDeclaration":22636,"src":"26746:21:74","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":27114,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26746:23:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":27128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27120,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":27117,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27092,"src":"26786:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27118,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26793:5:74","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":22249,"src":"26786:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":27119,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27094,"src":"26801:11:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26786:26:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27116,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26779:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":27115,"name":"int256","nodeType":"ElementaryTypeName","src":"26779:6:74","typeDescriptions":{}}},"id":27121,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26779:34:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":27124,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27092,"src":"26823:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27125,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26830:17:74","memberName":"jrAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":22661,"src":"26823:24:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":27126,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26823:26:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27123,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26816:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":27122,"name":"int256","nodeType":"ElementaryTypeName","src":"26816:6:74","typeDescriptions":{}}},"id":27127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26816:34:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26779:71:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":27129,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27098,"src":"26860:12:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":27130,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27094,"src":"26882:11:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":27105,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25663,"src":"26665:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":27107,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26676:19:74","memberName":"unlockScrWithRefund","nodeType":"MemberAccess","referencedDeclaration":28768,"src":"26665:30:74","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$_t_address_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256,address,uint256) external"}},"id":27131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26665:236:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27132,"nodeType":"ExpressionStatement","src":"26665:236:74"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":27135,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27092,"src":"26917:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27136,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26924:5:74","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22239,"src":"26917:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":27137,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26932:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"26917:16:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27168,"nodeType":"IfStatement","src":"26913:273:74","trueBody":{"id":27167,"nodeType":"Block","src":"26935:251:74","statements":[{"expression":{"arguments":[{"expression":{"id":27142,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27092,"src":"26983:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27143,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26990:2:74","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"26983:9:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":27144,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27092,"src":"27002:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27145,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27009:5:74","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":22239,"src":"27002:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":27146,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27092,"src":"27024:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27147,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27031:14:74","memberName":"srInterestRate","nodeType":"MemberAccess","referencedDeclaration":22686,"src":"27024:21:74","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":27148,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27024:23:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":27162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27154,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":27151,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27092,"src":"27064:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27152,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27071:5:74","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":22251,"src":"27064:12:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":27153,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27096,"src":"27079:11:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27064:26:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27150,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27057:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":27149,"name":"int256","nodeType":"ElementaryTypeName","src":"27057:6:74","typeDescriptions":{}}},"id":27155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27057:34:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":27158,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27092,"src":"27101:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":27159,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27108:17:74","memberName":"srAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":22711,"src":"27101:24:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":27160,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27101:26:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27157,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27094:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":27156,"name":"int256","nodeType":"ElementaryTypeName","src":"27094:6:74","typeDescriptions":{}}},"id":27161,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27094:34:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27057:71:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":27163,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27098,"src":"27138:12:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":27164,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27096,"src":"27160:11:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":27139,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25667,"src":"26943:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":27141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26954:19:74","memberName":"unlockScrWithRefund","nodeType":"MemberAccess","referencedDeclaration":28768,"src":"26943:30:74","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$_t_address_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256,address,uint256) external"}},"id":27165,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26943:236:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27166,"nodeType":"ExpressionStatement","src":"26943:236:74"}]}}]},"documentation":{"id":27089,"nodeType":"StructuredDocumentation","src":"26260:210:74","text":" @dev Internal function that calls the eTokens to unlock the solvency capital when the policy is cancelled, doing\n      refund of the jr and sr Coc\n @param policy The policy cancelled"},"id":27170,"implemented":true,"kind":"function","modifiers":[],"name":"_unlockScrWithRefund","nameLocation":"26482:20:74","nodeType":"FunctionDefinition","parameters":{"id":27099,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27092,"mutability":"mutable","name":"policy","nameLocation":"26533:6:74","nodeType":"VariableDeclaration","scope":27170,"src":"26508:31:74","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":27091,"nodeType":"UserDefinedTypeName","pathNode":{"id":27090,"name":"Policy.PolicyData","nameLocations":["26508:6:74","26515:10:74"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"26508:17:74"},"referencedDeclaration":22256,"src":"26508:17:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":27094,"mutability":"mutable","name":"jrCocRefund","nameLocation":"26553:11:74","nodeType":"VariableDeclaration","scope":27170,"src":"26545:19:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27093,"name":"uint256","nodeType":"ElementaryTypeName","src":"26545:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":27096,"mutability":"mutable","name":"srCocRefund","nameLocation":"26578:11:74","nodeType":"VariableDeclaration","scope":27170,"src":"26570:19:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27095,"name":"uint256","nodeType":"ElementaryTypeName","src":"26570:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":27098,"mutability":"mutable","name":"policyHolder","nameLocation":"26603:12:74","nodeType":"VariableDeclaration","scope":27170,"src":"26595:20:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":27097,"name":"address","nodeType":"ElementaryTypeName","src":"26595:7:74","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"26502:117:74"},"returnParameters":{"id":27100,"nodeType":"ParameterList","parameters":[],"src":"26629:0:74"},"scope":27362,"src":"26473:717:74","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":27239,"nodeType":"Block","src":"27399:340:74","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":27185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":27178,"name":"yieldVault","nodeType":"Identifier","overloadedDeclarations":[25934],"referencedDeclaration":25934,"src":"27417:10:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC4626_$6400_$","typeString":"function () view returns (contract IERC4626)"}},"id":27179,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27417:12:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}],"id":27177,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27409:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27176,"name":"address","nodeType":"ElementaryTypeName","src":"27409:7:74","typeDescriptions":{}}},"id":27180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27409:21:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":27183,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27442:1:74","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":27182,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27434:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27181,"name":"address","nodeType":"ElementaryTypeName","src":"27434:7:74","typeDescriptions":{}}},"id":27184,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27434:10:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27409:35:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27189,"nodeType":"IfStatement","src":"27405:57:74","trueBody":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":27186,"name":"recordEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28009,"src":"27446:14:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":27187,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27446:16:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27188,"nodeType":"ExpressionStatement","src":"27446:16:74"}},{"expression":{"id":27193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27190,"name":"available","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27174,"src":"27468:9:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":27191,"name":"fundsAvailable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26084,"src":"27480:14:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":27192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27480:16:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27468:28:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27194,"nodeType":"ExpressionStatement","src":"27468:28:74"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":27207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27195,"name":"available","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27174,"src":"27506:9:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":27196,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27519:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"27506:14:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":27206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":27200,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25667,"src":"27532:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":27199,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27524:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27198,"name":"address","nodeType":"ElementaryTypeName","src":"27524:7:74","typeDescriptions":{}}},"id":27201,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27524:19:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":27204,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27555:1:74","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":27203,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27547:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27202,"name":"address","nodeType":"ElementaryTypeName","src":"27547:7:74","typeDescriptions":{}}},"id":27205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27547:10:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27524:33:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"27506:51:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27215,"nodeType":"IfStatement","src":"27502:102:74","trueBody":{"expression":{"id":27213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27208,"name":"available","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27174,"src":"27559:9:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":27210,"name":"available","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27174,"src":"27582:9:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":27211,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25667,"src":"27593:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":27209,"name":"_repayLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27331,"src":"27571:10:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_contract$_IEToken_$28869_$returns$_t_uint256_$","typeString":"function (uint256,contract IEToken) returns (uint256)"}},"id":27212,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27571:33:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27559:45:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27214,"nodeType":"ExpressionStatement","src":"27559:45:74"}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":27228,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27216,"name":"available","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27174,"src":"27614:9:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":27217,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27627:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"27614:14:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":27227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":27221,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25663,"src":"27640:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":27220,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27632:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27219,"name":"address","nodeType":"ElementaryTypeName","src":"27632:7:74","typeDescriptions":{}}},"id":27222,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27632:19:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":27225,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27663:1:74","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":27224,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27655:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27223,"name":"address","nodeType":"ElementaryTypeName","src":"27655:7:74","typeDescriptions":{}}},"id":27226,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27655:10:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27632:33:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"27614:51:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27236,"nodeType":"IfStatement","src":"27610:102:74","trueBody":{"expression":{"id":27234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27229,"name":"available","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27174,"src":"27667:9:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":27231,"name":"available","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27174,"src":"27690:9:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":27232,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25663,"src":"27701:10:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":27230,"name":"_repayLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27331,"src":"27679:10:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_contract$_IEToken_$28869_$returns$_t_uint256_$","typeString":"function (uint256,contract IEToken) returns (uint256)"}},"id":27233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27679:33:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27667:45:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27235,"nodeType":"ExpressionStatement","src":"27667:45:74"}},{"expression":{"id":27237,"name":"available","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27174,"src":"27725:9:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":27175,"id":27238,"nodeType":"Return","src":"27718:16:74"}]},"documentation":{"id":27171,"nodeType":"StructuredDocumentation","src":"27194:143:74","text":" @notice Function that repays the loan(s) if fundsAvailable\n @return available The funds still available after repayment"},"functionSelector":"f39a4bc5","id":27240,"implemented":true,"kind":"function","modifiers":[],"name":"repayLoans","nameLocation":"27349:10:74","nodeType":"FunctionDefinition","parameters":{"id":27172,"nodeType":"ParameterList","parameters":[],"src":"27359:2:74"},"returnParameters":{"id":27175,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27174,"mutability":"mutable","name":"available","nameLocation":"27388:9:74","nodeType":"VariableDeclaration","scope":27240,"src":"27380:17:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27173,"name":"uint256","nodeType":"ElementaryTypeName","src":"27380:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"27379:19:74"},"scope":27362,"src":"27340:399:74","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":27330,"nodeType":"Block","src":"28159:740:74","statements":[{"assignments":[27252],"declarations":[{"constant":false,"id":27252,"mutability":"mutable","name":"borrowedFromEtk","nameLocation":"28173:15:74","nodeType":"VariableDeclaration","scope":27330,"src":"28165:23:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27251,"name":"uint256","nodeType":"ElementaryTypeName","src":"28165:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":27260,"initialValue":{"arguments":[{"arguments":[{"id":27257,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28211:4:74","typeDescriptions":{"typeIdentifier":"t_contract$_PremiumsAccount_$27362","typeString":"contract PremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PremiumsAccount_$27362","typeString":"contract PremiumsAccount"}],"id":27256,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28203:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27255,"name":"address","nodeType":"ElementaryTypeName","src":"28203:7:74","typeDescriptions":{}}},"id":27258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28203:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":27253,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27246,"src":"28191:3:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":27254,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28195:7:74","memberName":"getLoan","nodeType":"MemberAccess","referencedDeclaration":28836,"src":"28191:11:74","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":27259,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28191:26:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28165:52:74"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27261,"name":"borrowedFromEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27252,"src":"28227:15:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":27262,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28246:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"28227:20:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27266,"nodeType":"IfStatement","src":"28223:48:74","trueBody":{"expression":{"id":27264,"name":"fundsAvailable_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27243,"src":"28256:15:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":27250,"id":27265,"nodeType":"Return","src":"28249:22:74"}},{"assignments":[27268],"declarations":[{"constant":false,"id":27268,"mutability":"mutable","name":"repayAmount","nameLocation":"28285:11:74","nodeType":"VariableDeclaration","scope":27330,"src":"28277:19:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27267,"name":"uint256","nodeType":"ElementaryTypeName","src":"28277:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":27274,"initialValue":{"arguments":[{"id":27271,"name":"fundsAvailable_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27243,"src":"28308:15:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":27272,"name":"borrowedFromEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27252,"src":"28325:15:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":27269,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15914,"src":"28299:4:74","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$15914_$","typeString":"type(library Math)"}},"id":27270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28304:3:74","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":14599,"src":"28299:8:74","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":27273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28299:42:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28277:64:74"},{"expression":{"id":27280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27275,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"28347:8:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"arguments":[{"id":27278,"name":"repayAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27268,"src":"28366:11:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27277,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28359:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":27276,"name":"int256","nodeType":"ElementaryTypeName","src":"28359:6:74","typeDescriptions":{}}},"id":27279,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28359:19:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28347:31:74","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":27281,"nodeType":"ExpressionStatement","src":"28347:31:74"},{"expression":{"arguments":[{"arguments":[{"id":27285,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28464:4:74","typeDescriptions":{"typeIdentifier":"t_contract$_PremiumsAccount_$27362","typeString":"contract PremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PremiumsAccount_$27362","typeString":"contract PremiumsAccount"}],"id":27284,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28456:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27283,"name":"address","nodeType":"ElementaryTypeName","src":"28456:7:74","typeDescriptions":{}}},"id":27286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28456:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":27287,"name":"repayAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27268,"src":"28471:11:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27282,"name":"_transferTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27518,"src":"28444:11:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":27288,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28444:39:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27289,"nodeType":"ExpressionStatement","src":"28444:39:74"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":27295,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28567:4:74","typeDescriptions":{"typeIdentifier":"t_contract$_PremiumsAccount_$27362","typeString":"contract PremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PremiumsAccount_$27362","typeString":"contract PremiumsAccount"}],"id":27294,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28559:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27293,"name":"address","nodeType":"ElementaryTypeName","src":"28559:7:74","typeDescriptions":{}}},"id":27296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28559:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":27299,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27246,"src":"28582:3:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":27298,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28574:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27297,"name":"address","nodeType":"ElementaryTypeName","src":"28574:7:74","typeDescriptions":{}}},"id":27300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28574:12:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":27290,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25603,"src":"28538:8:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$8863_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":27291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28538:10:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":27292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28549:9:74","memberName":"allowance","nodeType":"MemberAccess","referencedDeclaration":7954,"src":"28538:20:74","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view external returns (uint256)"}},"id":27301,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28538:49:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":27302,"name":"repayAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27268,"src":"28590:11:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28538:63:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27315,"nodeType":"IfStatement","src":"28534:272:74","trueBody":{"id":27314,"nodeType":"Block","src":"28603:203:74","statements":[{"expression":{"arguments":[{"arguments":[{"id":27309,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27246,"src":"28777:3:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}],"id":27308,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28769:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27307,"name":"address","nodeType":"ElementaryTypeName","src":"28769:7:74","typeDescriptions":{}}},"id":27310,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28769:12:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":27311,"name":"borrowedFromEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27252,"src":"28783:15:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":27304,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25603,"src":"28750:8:74","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$8863_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":27305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28750:10:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":27306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28761:7:74","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":7964,"src":"28750:18:74","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":27312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28750:49:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27313,"nodeType":"ExpressionStatement","src":"28750:49:74"}]}},{"expression":{"arguments":[{"id":27319,"name":"repayAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27268,"src":"28825:11:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":27322,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28846:4:74","typeDescriptions":{"typeIdentifier":"t_contract$_PremiumsAccount_$27362","typeString":"contract PremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PremiumsAccount_$27362","typeString":"contract PremiumsAccount"}],"id":27321,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28838:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27320,"name":"address","nodeType":"ElementaryTypeName","src":"28838:7:74","typeDescriptions":{}}},"id":27323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28838:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":27316,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27246,"src":"28811:3:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"id":27318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28815:9:74","memberName":"repayLoan","nodeType":"MemberAccess","referencedDeclaration":28828,"src":"28811:13:74","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$returns$__$","typeString":"function (uint256,address) external"}},"id":27324,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28811:41:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27325,"nodeType":"ExpressionStatement","src":"28811:41:74"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27326,"name":"fundsAvailable_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27243,"src":"28865:15:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":27327,"name":"repayAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27268,"src":"28883:11:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28865:29:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":27250,"id":27329,"nodeType":"Return","src":"28858:36:74"}]},"documentation":{"id":27241,"nodeType":"StructuredDocumentation","src":"27743:328:74","text":" @dev Internal function that repays a loan taken (if any outstanding) from the an eToken\n @param fundsAvailable_ The amount of funds available for the repayment\n @param etk The eToken with the potential debt\n @return The excess amount of the purePremiumWon that wasn't used for the loan repayment."},"id":27331,"implemented":true,"kind":"function","modifiers":[],"name":"_repayLoan","nameLocation":"28083:10:74","nodeType":"FunctionDefinition","parameters":{"id":27247,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27243,"mutability":"mutable","name":"fundsAvailable_","nameLocation":"28102:15:74","nodeType":"VariableDeclaration","scope":27331,"src":"28094:23:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27242,"name":"uint256","nodeType":"ElementaryTypeName","src":"28094:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":27246,"mutability":"mutable","name":"etk","nameLocation":"28127:3:74","nodeType":"VariableDeclaration","scope":27331,"src":"28119:11:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":27245,"nodeType":"UserDefinedTypeName","pathNode":{"id":27244,"name":"IEToken","nameLocations":["28119:7:74"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"28119:7:74"},"referencedDeclaration":28869,"src":"28119:7:74","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"28093:38:74"},"returnParameters":{"id":27250,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27249,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":27331,"src":"28150:7:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27248,"name":"uint256","nodeType":"ElementaryTypeName","src":"28150:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"28149:9:74"},"scope":27362,"src":"28074:825:74","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[29245],"body":{"id":27355,"nodeType":"Block","src":"29029:122:74","statements":[{"expression":{"id":27344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27341,"name":"_activePurePremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25670,"src":"29035:19:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"expression":{"id":27342,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27335,"src":"29058:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":27343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29065:11:74","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22243,"src":"29058:18:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29035:41:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27345,"nodeType":"ExpressionStatement","src":"29035:41:74"},{"expression":{"arguments":[{"expression":{"id":27347,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27335,"src":"29103:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":27348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29110:11:74","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":22243,"src":"29103:18:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27346,"name":"_storePurePremiumWon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26594,"src":"29082:20:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":27349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29082:40:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27350,"nodeType":"ExpressionStatement","src":"29082:40:74"},{"expression":{"arguments":[{"id":27352,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27335,"src":"29139:6:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}],"id":27351,"name":"_unlockScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27088,"src":"29128:10:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PolicyData_$22256_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory)"}},"id":27353,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29128:18:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27354,"nodeType":"ExpressionStatement","src":"29128:18:74"}]},"documentation":{"id":27332,"nodeType":"StructuredDocumentation","src":"28903:32:74","text":"@inheritdoc IPremiumsAccount"},"functionSelector":"76185ff1","id":27356,"implemented":true,"kind":"function","modifiers":[{"id":27339,"kind":"modifierInvocation","modifierName":{"id":27338,"name":"onlyPolicyPool","nameLocations":["29014:14:74"],"nodeType":"IdentifierPath","referencedDeclaration":25496,"src":"29014:14:74"},"nodeType":"ModifierInvocation","src":"29014:14:74"}],"name":"policyExpired","nameLocation":"28947:13:74","nodeType":"FunctionDefinition","overrides":{"id":27337,"nodeType":"OverrideSpecifier","overrides":[],"src":"29005:8:74"},"parameters":{"id":27336,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27335,"mutability":"mutable","name":"policy","nameLocation":"28988:6:74","nodeType":"VariableDeclaration","scope":27356,"src":"28961:33:74","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":27334,"nodeType":"UserDefinedTypeName","pathNode":{"id":27333,"name":"Policy.PolicyData","nameLocations":["28961:6:74","28968:10:74"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"28961:17:74"},"referencedDeclaration":22256,"src":"28961:17:74","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"28960:35:74"},"returnParameters":{"id":27340,"nodeType":"ParameterList","parameters":[],"src":"29029:0:74"},"scope":27362,"src":"28938:213:74","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"constant":false,"documentation":{"id":27357,"nodeType":"StructuredDocumentation","src":"29155:246:74","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":27361,"mutability":"mutable","name":"__gap","nameLocation":"29424:5:74","nodeType":"VariableDeclaration","scope":27362,"src":"29404:25:74","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$47_storage","typeString":"uint256[47]"},"typeName":{"baseType":{"id":27358,"name":"uint256","nodeType":"ElementaryTypeName","src":"29404:7:74","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27360,"length":{"hexValue":"3437","id":27359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29412:2:74","typeDescriptions":{"typeIdentifier":"t_rational_47_by_1","typeString":"int_const 47"},"value":"47"},"nodeType":"ArrayTypeName","src":"29404:11:74","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$47_storage_ptr","typeString":"uint256[47]"}},"visibility":"private"}],"scope":27363,"src":"1321:28111:74","usedErrors":[6630,6643,6967,6970,7241,7246,8911,9606,10740,15924,25476,25478,25480,25694,25703,25708,25715,25720,25725,25730,25737,27387,27394,27399],"usedEvents":[6213,6975,25744,25753,25762,27410,27418,27423]}],"src":"39:29394:74"},"id":74},"contracts/Reserve.sol":{"ast":{"absolutePath":"contracts/Reserve.sol","exportedSymbols":{"IERC20Metadata":[8863],"IERC4626":[6400],"IPolicyPool":[29171],"PolicyPoolComponent":[25609],"Reserve":[28015],"SafeERC20":[9354]},"id":28016,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":27364,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:75"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":27366,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28016,"sourceUnit":9355,"src":"65:82:75","symbolAliases":[{"foreign":{"id":27365,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9354,"src":"73:9:75","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":27368,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28016,"sourceUnit":8864,"src":"148:97:75","symbolAliases":[{"foreign":{"id":27367,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"156:14:75","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","file":"@openzeppelin/contracts/interfaces/IERC4626.sol","id":27370,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28016,"sourceUnit":6401,"src":"246:73:75","symbolAliases":[{"foreign":{"id":27369,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6400,"src":"254:8:75","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyPool.sol","file":"./interfaces/IPolicyPool.sol","id":27372,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28016,"sourceUnit":29172,"src":"320:57:75","symbolAliases":[{"foreign":{"id":27371,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"328:11:75","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/PolicyPoolComponent.sol","file":"./PolicyPoolComponent.sol","id":27374,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28016,"sourceUnit":25610,"src":"378:62:75","symbolAliases":[{"foreign":{"id":27373,"name":"PolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25609,"src":"386:19:75","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":27376,"name":"PolicyPoolComponent","nameLocations":["1005:19:75"],"nodeType":"IdentifierPath","referencedDeclaration":25609,"src":"1005:19:75"},"id":27377,"nodeType":"InheritanceSpecifier","src":"1005:19:75"}],"canonicalName":"Reserve","contractDependencies":[],"contractKind":"contract","documentation":{"id":27375,"nodeType":"StructuredDocumentation","src":"442:533:75","text":" @title Base contract for Ensuro cash reserves\n @notice Implements the methods related with management of the reserves and payments. {EToken} and\n {PremiumsAccount} inherit from this contract.\n @dev These contracts have an asset manager {IAssetManager} that's a strategy contract that runs in the same context\n (called with delegatecall) that apply some strategy to reinvest the assets managed by the contract to generate\n additional returns.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":false,"id":28015,"linearizedBaseContracts":[28015,25609,29188,14272,7384,6435,7218],"name":"Reserve","nameLocation":"994:7:75","nodeType":"ContractDefinition","nodes":[{"global":false,"id":27381,"libraryName":{"id":27378,"name":"SafeERC20","nameLocations":["1035:9:75"],"nodeType":"IdentifierPath","referencedDeclaration":9354,"src":"1035:9:75"},"nodeType":"UsingForDirective","src":"1029:35:75","typeName":{"id":27380,"nodeType":"UserDefinedTypeName","pathNode":{"id":27379,"name":"IERC20Metadata","nameLocations":["1049:14:75"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"1049:14:75"},"referencedDeclaration":8863,"src":"1049:14:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}}},{"constant":false,"documentation":{"id":27382,"nodeType":"StructuredDocumentation","src":"1068:111:75","text":" @dev Tracks the amount of assets invested in the yieldVault, up to the last time it was recorded"},"id":27384,"mutability":"mutable","name":"_invested","nameLocation":"1199:9:75","nodeType":"VariableDeclaration","scope":28015,"src":"1182:26:75","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27383,"name":"uint256","nodeType":"ElementaryTypeName","src":"1182:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"documentation":{"id":27385,"nodeType":"StructuredDocumentation","src":"1213:88:75","text":"@notice Thrown when the yield vault is unset or invalid for the configured currency."},"errorSelector":"89592691","id":27387,"name":"InvalidYieldVault","nameLocation":"1310:17:75","nodeType":"ErrorDefinition","parameters":{"id":27386,"nodeType":"ParameterList","parameters":[],"src":"1327:2:75"},"src":"1304:26:75"},{"documentation":{"id":27388,"nodeType":"StructuredDocumentation","src":"1333:218:75","text":" @notice Thrown when trying to invest more cash than currently liquid in the reserve.\n @param required The requested amount of liquid funds\n @param available The currently available liquid balance"},"errorSelector":"a62613f6","id":27394,"name":"NotEnoughCash","nameLocation":"1560:13:75","nodeType":"ErrorDefinition","parameters":{"id":27393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27390,"mutability":"mutable","name":"required","nameLocation":"1582:8:75","nodeType":"VariableDeclaration","scope":27394,"src":"1574:16:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27389,"name":"uint256","nodeType":"ElementaryTypeName","src":"1574:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":27392,"mutability":"mutable","name":"available","nameLocation":"1600:9:75","nodeType":"VariableDeclaration","scope":27394,"src":"1592:17:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27391,"name":"uint256","nodeType":"ElementaryTypeName","src":"1592:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1573:37:75"},"src":"1554:57:75"},{"documentation":{"id":27395,"nodeType":"StructuredDocumentation","src":"1614:159:75","text":" @notice Thrown when attempting to transfer to the zero address.\n @param receiver The receiver that was provided (cannot be the zero address)"},"errorSelector":"c84fe4e6","id":27399,"name":"ReserveInvalidReceiver","nameLocation":"1782:22:75","nodeType":"ErrorDefinition","parameters":{"id":27398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27397,"mutability":"mutable","name":"receiver","nameLocation":"1813:8:75","nodeType":"VariableDeclaration","scope":27399,"src":"1805:16:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":27396,"name":"address","nodeType":"ElementaryTypeName","src":"1805:7:75","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1804:18:75"},"src":"1776:47:75"},{"anonymous":false,"documentation":{"id":27400,"nodeType":"StructuredDocumentation","src":"1827:415:75","text":" @notice Emitted when the yield vault is changed.\n @dev When replacing an existing vault, the reserve attempts to redeem the full position (unless `force` is used).\n @param oldVault The previous yield vault (can be `address(0)`)\n @param newVault The new yield vault (can be `address(0)`)\n @param forced True if the switch ignored a partial/failed deinvestment and proceeded anyway"},"eventSelector":"243f9479bbdaf9f3395e726975293ee3724f3819f4322a018c98afb9de70a1e0","id":27410,"name":"YieldVaultChanged","nameLocation":"2251:17:75","nodeType":"EventDefinition","parameters":{"id":27409,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27403,"indexed":true,"mutability":"mutable","name":"oldVault","nameLocation":"2286:8:75","nodeType":"VariableDeclaration","scope":27410,"src":"2269:25:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":27402,"nodeType":"UserDefinedTypeName","pathNode":{"id":27401,"name":"IERC4626","nameLocations":["2269:8:75"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"2269:8:75"},"referencedDeclaration":6400,"src":"2269:8:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":27406,"indexed":true,"mutability":"mutable","name":"newVault","nameLocation":"2313:8:75","nodeType":"VariableDeclaration","scope":27410,"src":"2296:25:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":27405,"nodeType":"UserDefinedTypeName","pathNode":{"id":27404,"name":"IERC4626","nameLocations":["2296:8:75"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"2296:8:75"},"referencedDeclaration":6400,"src":"2296:8:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":27408,"indexed":false,"mutability":"mutable","name":"forced","nameLocation":"2328:6:75","nodeType":"VariableDeclaration","scope":27410,"src":"2323:11:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":27407,"name":"bool","nodeType":"ElementaryTypeName","src":"2323:4:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2268:67:75"},"src":"2245:91:75"},{"anonymous":false,"documentation":{"id":27411,"nodeType":"StructuredDocumentation","src":"2340:201:75","text":" @notice Emitted when a forced deinvestment ignored a redeem failure.\n @param oldVault The vault that failed to redeem\n @param shares The number of shares attempted to redeem"},"eventSelector":"25bce30047860a48c9d8830dbf31873be5434f4d28f14a5808a4ea8e35d08296","id":27418,"name":"ErrorIgnoredDeinvestingVault","nameLocation":"2550:28:75","nodeType":"EventDefinition","parameters":{"id":27417,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27414,"indexed":true,"mutability":"mutable","name":"oldVault","nameLocation":"2596:8:75","nodeType":"VariableDeclaration","scope":27418,"src":"2579:25:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":27413,"nodeType":"UserDefinedTypeName","pathNode":{"id":27412,"name":"IERC4626","nameLocations":["2579:8:75"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"2579:8:75"},"referencedDeclaration":6400,"src":"2579:8:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":27416,"indexed":false,"mutability":"mutable","name":"shares","nameLocation":"2614:6:75","nodeType":"VariableDeclaration","scope":27418,"src":"2606:14:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27415,"name":"uint256","nodeType":"ElementaryTypeName","src":"2606:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2578:43:75"},"src":"2544:78:75"},{"anonymous":false,"documentation":{"id":27419,"nodeType":"StructuredDocumentation","src":"2626:244:75","text":" @notice Event emitted when investment yields are accounted in the reserve\n @param earnings The amount of earnings generated since last record. It's positive in the case of earnings or\n negative when there are losses."},"eventSelector":"731c439c5bae15be1344eec709967e046b4f7d3f7e37abeffc5247f448fa18bf","id":27423,"name":"EarningsRecorded","nameLocation":"2879:16:75","nodeType":"EventDefinition","parameters":{"id":27422,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27421,"indexed":false,"mutability":"mutable","name":"earnings","nameLocation":"2903:8:75","nodeType":"VariableDeclaration","scope":27423,"src":"2896:15:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":27420,"name":"int256","nodeType":"ElementaryTypeName","src":"2896:6:75","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"2895:17:75"},"src":"2873:40:75"},{"body":{"id":27433,"nodeType":"Block","src":"3161:2:75","statements":[]},"documentation":{"id":27424,"nodeType":"StructuredDocumentation","src":"3040:48:75","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":27434,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":27430,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27427,"src":"3148:11:75","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}}],"id":27431,"kind":"baseConstructorSpecifier","modifierName":{"id":27429,"name":"PolicyPoolComponent","nameLocations":["3128:19:75"],"nodeType":"IdentifierPath","referencedDeclaration":25609,"src":"3128:19:75"},"nodeType":"ModifierInvocation","src":"3128:32:75"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":27428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27427,"mutability":"mutable","name":"policyPool_","nameLocation":"3115:11:75","nodeType":"VariableDeclaration","scope":27434,"src":"3103:23:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"typeName":{"id":27426,"nodeType":"UserDefinedTypeName","pathNode":{"id":27425,"name":"IPolicyPool","nameLocations":["3103:11:75"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"3103:11:75"},"referencedDeclaration":29171,"src":"3103:11:75","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"3102:25:75"},"returnParameters":{"id":27432,"nodeType":"ParameterList","parameters":[],"src":"3161:0:75"},"scope":28015,"src":"3091:72:75","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":27443,"nodeType":"Block","src":"3345:39:75","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":27440,"name":"__PolicyPoolComponent_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25530,"src":"3351:26:75","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":27441,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3351:28:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27442,"nodeType":"ExpressionStatement","src":"3351:28:75"}]},"documentation":{"id":27435,"nodeType":"StructuredDocumentation","src":"3167:72:75","text":" @dev Initializes the Reserve (to be called by subclasses)"},"id":27444,"implemented":true,"kind":"function","modifiers":[{"id":27438,"kind":"modifierInvocation","modifierName":{"id":27437,"name":"onlyInitializing","nameLocations":["3328:16:75"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"3328:16:75"},"nodeType":"ModifierInvocation","src":"3328:16:75"}],"name":"__Reserve_init","nameLocation":"3302:14:75","nodeType":"FunctionDefinition","parameters":{"id":27436,"nodeType":"ParameterList","parameters":[],"src":"3316:2:75"},"returnParameters":{"id":27439,"nodeType":"ParameterList","parameters":[],"src":"3345:0:75"},"scope":28015,"src":"3293:91:75","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":27517,"nodeType":"Block","src":"4101:443:75","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":27458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27453,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27447,"src":"4115:11:75","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":27456,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4138:1:75","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":27455,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4130:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27454,"name":"address","nodeType":"ElementaryTypeName","src":"4130:7:75","typeDescriptions":{}}},"id":27457,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4130:10:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4115:25:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":27460,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27447,"src":"4165:11:75","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":27459,"name":"ReserveInvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27399,"src":"4142:22:75","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":27461,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4142:35:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":27452,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4107:7:75","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":27462,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4107:71:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27463,"nodeType":"ExpressionStatement","src":"4107:71:75"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27466,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27464,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27449,"src":"4188:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":27465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4198:1:75","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4188:11:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27468,"nodeType":"IfStatement","src":"4184:24:75","trueBody":{"functionReturnParameters":27451,"id":27467,"nodeType":"Return","src":"4201:7:75"}},{"assignments":[27470],"declarations":[{"constant":false,"id":27470,"mutability":"mutable","name":"balance","nameLocation":"4221:7:75","nodeType":"VariableDeclaration","scope":27517,"src":"4213:15:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27469,"name":"uint256","nodeType":"ElementaryTypeName","src":"4213:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":27473,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":27471,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27823,"src":"4231:8:75","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":27472,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4231:10:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"4213:28:75"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27474,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27470,"src":"4251:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":27475,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27449,"src":"4261:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4251:16:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27502,"nodeType":"IfStatement","src":"4247:209:75","trueBody":{"id":27501,"nodeType":"Block","src":"4269:187:75","statements":[{"assignments":[27479],"declarations":[{"constant":false,"id":27479,"mutability":"mutable","name":"yv","nameLocation":"4286:2:75","nodeType":"VariableDeclaration","scope":27501,"src":"4277:11:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":27478,"nodeType":"UserDefinedTypeName","pathNode":{"id":27477,"name":"IERC4626","nameLocations":["4277:8:75"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"4277:8:75"},"referencedDeclaration":6400,"src":"4277:8:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"}],"id":27482,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":27480,"name":"yieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27525,"src":"4291:10:75","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC4626_$6400_$","typeString":"function () view returns (contract IERC4626)"}},"id":27481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4291:12:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"nodeType":"VariableDeclarationStatement","src":"4277:26:75"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":27491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":27485,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27479,"src":"4323:2:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}],"id":27484,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4315:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27483,"name":"address","nodeType":"ElementaryTypeName","src":"4315:7:75","typeDescriptions":{}}},"id":27486,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4315:11:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":27489,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4338:1:75","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":27488,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4330:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27487,"name":"address","nodeType":"ElementaryTypeName","src":"4330:7:75","typeDescriptions":{}}},"id":27490,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4330:10:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4315:25:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27500,"nodeType":"IfStatement","src":"4311:81:75","trueBody":{"id":27499,"nodeType":"Block","src":"4342:50:75","statements":[{"expression":{"arguments":[{"id":27493,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27479,"src":"4362:2:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27496,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27494,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27449,"src":"4366:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":27495,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27470,"src":"4375:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4366:16:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27492,"name":"_deinvest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27730,"src":"4352:9:75","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$6400_$_t_uint256_$returns$__$","typeString":"function (contract IERC4626,uint256)"}},"id":27497,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4352:31:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27498,"nodeType":"ExpressionStatement","src":"4352:31:75"}]}}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":27508,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27503,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27447,"src":"4465:11:75","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":27506,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4488:4:75","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}],"id":27505,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4480:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27504,"name":"address","nodeType":"ElementaryTypeName","src":"4480:7:75","typeDescriptions":{}}},"id":27507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4480:13:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4465:28:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27516,"nodeType":"IfStatement","src":"4461:78:75","trueBody":{"expression":{"arguments":[{"id":27512,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27447,"src":"4519:11:75","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":27513,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27449,"src":"4532:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":27509,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25603,"src":"4495:8:75","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$8863_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":27510,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4495:10:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":27511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4506:12:75","memberName":"safeTransfer","nodeType":"MemberAccess","referencedDeclaration":8948,"src":"4495:23:75","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$7977_$","typeString":"function (contract IERC20,address,uint256)"}},"id":27514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4495:44:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27515,"nodeType":"ExpressionStatement","src":"4495:44:75"}}]},"documentation":{"id":27445,"nodeType":"StructuredDocumentation","src":"3388:643:75","text":" @dev Internal function that transfers money to a destination. It might need to call `_deinvest` to deinvest\n      some money to have enough liquidity for the payment.\n @param destination The destination of the transfer. If destination == address(this) it doesn't transfer, just\n                    makes sure the amount is available.\n @param amount The amount to be transferred.\n @custom:pre `destination` must not be `address(0)`\n @custom:pre If a yield vault is configured, it must be compatible with {currency()}\n @custom:throws ReserveInvalidReceiver if `destination == address(0)`"},"id":27518,"implemented":true,"kind":"function","modifiers":[],"name":"_transferTo","nameLocation":"4043:11:75","nodeType":"FunctionDefinition","parameters":{"id":27450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27447,"mutability":"mutable","name":"destination","nameLocation":"4063:11:75","nodeType":"VariableDeclaration","scope":27518,"src":"4055:19:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":27446,"name":"address","nodeType":"ElementaryTypeName","src":"4055:7:75","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":27449,"mutability":"mutable","name":"amount","nameLocation":"4084:6:75","nodeType":"VariableDeclaration","scope":27518,"src":"4076:14:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27448,"name":"uint256","nodeType":"ElementaryTypeName","src":"4076:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4054:37:75"},"returnParameters":{"id":27451,"nodeType":"ParameterList","parameters":[],"src":"4101:0:75"},"scope":28015,"src":"4034:510:75","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"documentation":{"id":27519,"nodeType":"StructuredDocumentation","src":"4548:195:75","text":" @notice Returns the address of the yield vault, where the part of the funds are invested to generate additional\n      yields. Can be `address(0)` if no yieldVault has been set."},"functionSelector":"a7f8a5e2","id":27525,"implemented":false,"kind":"function","modifiers":[],"name":"yieldVault","nameLocation":"4755:10:75","nodeType":"FunctionDefinition","parameters":{"id":27520,"nodeType":"ParameterList","parameters":[],"src":"4765:2:75"},"returnParameters":{"id":27524,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27523,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":27525,"src":"4797:8:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":27522,"nodeType":"UserDefinedTypeName","pathNode":{"id":27521,"name":"IERC4626","nameLocations":["4797:8:75"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"4797:8:75"},"referencedDeclaration":6400,"src":"4797:8:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"4796:10:75"},"scope":28015,"src":"4746:61:75","stateMutability":"view","virtual":true,"visibility":"public"},{"documentation":{"id":27526,"nodeType":"StructuredDocumentation","src":"4811:384:75","text":" @dev Internal function that needs to be implemented by child contracts because they might store the yield vault\n address in a different way. This function just stores the value, doesn't do any validation (validations are done\n on `setYieldVault`.\n @param newYieldVault The address of the new Yield vault. The yield vault is an ERC-4626 compatible vault"},"id":27532,"implemented":false,"kind":"function","modifiers":[],"name":"_setYieldVault","nameLocation":"5207:14:75","nodeType":"FunctionDefinition","parameters":{"id":27530,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27529,"mutability":"mutable","name":"newYieldVault","nameLocation":"5231:13:75","nodeType":"VariableDeclaration","scope":27532,"src":"5222:22:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":27528,"nodeType":"UserDefinedTypeName","pathNode":{"id":27527,"name":"IERC4626","nameLocations":["5222:8:75"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"5222:8:75"},"referencedDeclaration":6400,"src":"5222:8:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"5221:24:75"},"returnParameters":{"id":27531,"nodeType":"ParameterList","parameters":[],"src":"5262:0:75"},"scope":28015,"src":"5198:65:75","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":27540,"nodeType":"Block","src":"5454:27:75","statements":[{"expression":{"id":27538,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27384,"src":"5467:9:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":27537,"id":27539,"nodeType":"Return","src":"5460:16:75"}]},"documentation":{"id":27533,"nodeType":"StructuredDocumentation","src":"5267:130:75","text":" @notice Returns the amount of funds that were invested in the yieldVault, up to the last recorded earnings / losses"},"functionSelector":"7d919a97","id":27541,"implemented":true,"kind":"function","modifiers":[],"name":"investedInYV","nameLocation":"5409:12:75","nodeType":"FunctionDefinition","parameters":{"id":27534,"nodeType":"ParameterList","parameters":[],"src":"5421:2:75"},"returnParameters":{"id":27537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27536,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":27541,"src":"5445:7:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27535,"name":"uint256","nodeType":"ElementaryTypeName","src":"5445:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5444:9:75"},"scope":28015,"src":"5400:81:75","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":27551,"nodeType":"Block","src":"5887:42:75","statements":[{"eventCall":{"arguments":[{"id":27548,"name":"earnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27544,"src":"5915:8:75","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":27547,"name":"EarningsRecorded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27423,"src":"5898:16:75","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":27549,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5898:26:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27550,"nodeType":"EmitStatement","src":"5893:31:75"}]},"documentation":{"id":27542,"nodeType":"StructuredDocumentation","src":"5485:341:75","text":" @dev Internal function that needs to be implemented by child contracts to record the earnings (or losses if\n negative) generated by the yield vault\n @param earnings The amount of earnings (or losses if negative) generated since last time the earnings were\n recorded.\n @custom:emits {EarningsRecorded}"},"id":27552,"implemented":true,"kind":"function","modifiers":[],"name":"_yieldEarnings","nameLocation":"5838:14:75","nodeType":"FunctionDefinition","parameters":{"id":27545,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27544,"mutability":"mutable","name":"earnings","nameLocation":"5860:8:75","nodeType":"VariableDeclaration","scope":27552,"src":"5853:15:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":27543,"name":"int256","nodeType":"ElementaryTypeName","src":"5853:6:75","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"5852:17:75"},"returnParameters":{"id":27546,"nodeType":"ParameterList","parameters":[],"src":"5887:0:75"},"scope":28015,"src":"5829:100:75","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":27682,"nodeType":"Block","src":"6894:922:75","statements":[{"assignments":[27562],"declarations":[{"constant":false,"id":27562,"mutability":"mutable","name":"forced","nameLocation":"6905:6:75","nodeType":"VariableDeclaration","scope":27682,"src":"6900:11:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":27561,"name":"bool","nodeType":"ElementaryTypeName","src":"6900:4:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":27563,"nodeType":"VariableDeclarationStatement","src":"6900:11:75"},{"assignments":[27566],"declarations":[{"constant":false,"id":27566,"mutability":"mutable","name":"asset","nameLocation":"6932:5:75","nodeType":"VariableDeclaration","scope":27682,"src":"6917:20:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"},"typeName":{"id":27565,"nodeType":"UserDefinedTypeName","pathNode":{"id":27564,"name":"IERC20Metadata","nameLocations":["6917:14:75"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"6917:14:75"},"referencedDeclaration":8863,"src":"6917:14:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"id":27569,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":27567,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25603,"src":"6940:8:75","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$8863_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":27568,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6940:10:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"nodeType":"VariableDeclarationStatement","src":"6917:33:75"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":27588,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":27579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":27573,"name":"newYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27556,"src":"6972:13:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}],"id":27572,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6964:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27571,"name":"address","nodeType":"ElementaryTypeName","src":"6964:7:75","typeDescriptions":{}}},"id":27574,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6964:22:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":27577,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6998:1:75","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":27576,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6990:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27575,"name":"address","nodeType":"ElementaryTypeName","src":"6990:7:75","typeDescriptions":{}}},"id":27578,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6990:10:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6964:36:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":27587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":27580,"name":"newYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27556,"src":"7004:13:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"id":27581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7018:5:75","memberName":"asset","nodeType":"MemberAccess","referencedDeclaration":6269,"src":"7004:19:75","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":27582,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7004:21:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":27585,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27566,"src":"7037:5:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}],"id":27584,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7029:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27583,"name":"address","nodeType":"ElementaryTypeName","src":"7029:7:75","typeDescriptions":{}}},"id":27586,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7029:14:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7004:39:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6964:79:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":27589,"name":"InvalidYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27387,"src":"7045:17:75","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":27590,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7045:19:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":27570,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"6956:7:75","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":27591,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6956:109:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27592,"nodeType":"ExpressionStatement","src":"6956:109:75"},{"assignments":[27595],"declarations":[{"constant":false,"id":27595,"mutability":"mutable","name":"oldYV","nameLocation":"7080:5:75","nodeType":"VariableDeclaration","scope":27682,"src":"7071:14:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":27594,"nodeType":"UserDefinedTypeName","pathNode":{"id":27593,"name":"IERC4626","nameLocations":["7071:8:75"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"7071:8:75"},"referencedDeclaration":6400,"src":"7071:8:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"}],"id":27598,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":27596,"name":"yieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27525,"src":"7088:10:75","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC4626_$6400_$","typeString":"function () view returns (contract IERC4626)"}},"id":27597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7088:12:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"nodeType":"VariableDeclarationStatement","src":"7071:29:75"},{"assignments":[27600],"declarations":[{"constant":false,"id":27600,"mutability":"mutable","name":"deinvested","nameLocation":"7114:10:75","nodeType":"VariableDeclaration","scope":27682,"src":"7106:18:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27599,"name":"uint256","nodeType":"ElementaryTypeName","src":"7106:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":27601,"nodeType":"VariableDeclarationStatement","src":"7106:18:75"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":27610,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":27604,"name":"oldYV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27595,"src":"7143:5:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}],"id":27603,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7135:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27602,"name":"address","nodeType":"ElementaryTypeName","src":"7135:7:75","typeDescriptions":{}}},"id":27605,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7135:14:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":27608,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7161:1:75","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":27607,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7153:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27606,"name":"address","nodeType":"ElementaryTypeName","src":"7153:7:75","typeDescriptions":{}}},"id":27609,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7153:10:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7135:28:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27655,"nodeType":"IfStatement","src":"7131:459:75","trueBody":{"id":27654,"nodeType":"Block","src":"7165:425:75","statements":[{"assignments":[27612],"declarations":[{"constant":false,"id":27612,"mutability":"mutable","name":"yvShares","nameLocation":"7181:8:75","nodeType":"VariableDeclaration","scope":27654,"src":"7173:16:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27611,"name":"uint256","nodeType":"ElementaryTypeName","src":"7173:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":27620,"initialValue":{"arguments":[{"arguments":[{"id":27617,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7216:4:75","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}],"id":27616,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7208:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27615,"name":"address","nodeType":"ElementaryTypeName","src":"7208:7:75","typeDescriptions":{}}},"id":27618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7208:13:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":27613,"name":"oldYV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27595,"src":"7192:5:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"id":27614,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7198:9:75","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":7934,"src":"7192:15:75","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":27619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7192:30:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7173:49:75"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27621,"name":"yvShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27612,"src":"7234:8:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":27622,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7246:1:75","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7234:13:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27653,"nodeType":"IfStatement","src":"7230:354:75","trueBody":{"id":27652,"nodeType":"Block","src":"7249:335:75","statements":[{"condition":{"id":27624,"name":"force","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27558,"src":"7263:5:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":27650,"nodeType":"Block","src":"7431:145:75","statements":[{"expression":{"id":27648,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27635,"name":"deinvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27600,"src":"7500:10:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":27638,"name":"yvShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27612,"src":"7526:8:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":27641,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7544:4:75","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}],"id":27640,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7536:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27639,"name":"address","nodeType":"ElementaryTypeName","src":"7536:7:75","typeDescriptions":{}}},"id":27642,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7536:13:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":27645,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7559:4:75","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}],"id":27644,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7551:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27643,"name":"address","nodeType":"ElementaryTypeName","src":"7551:7:75","typeDescriptions":{}}},"id":27646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7551:13:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":27636,"name":"oldYV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27595,"src":"7513:5:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"id":27637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7519:6:75","memberName":"redeem","nodeType":"MemberAccess","referencedDeclaration":6399,"src":"7513:12:75","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address,address) external returns (uint256)"}},"id":27647,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7513:52:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7500:65:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27649,"nodeType":"ExpressionStatement","src":"7500:65:75"}]},"id":27651,"nodeType":"IfStatement","src":"7259:317:75","trueBody":{"id":27634,"nodeType":"Block","src":"7270:155:75","statements":[{"expression":{"id":27632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":27625,"name":"deinvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27600,"src":"7359:10:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":27626,"name":"forced","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27562,"src":"7371:6:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":27627,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"7358:20:75","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_bool_$","typeString":"tuple(uint256,bool)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":27629,"name":"oldYV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27595,"src":"7398:5:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},{"id":27630,"name":"yvShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27612,"src":"7405:8:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27628,"name":"_safeDeInvestAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27805,"src":"7381:16:75","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$6400_$_t_uint256_$returns$_t_uint256_$_t_bool_$","typeString":"function (contract IERC4626,uint256) returns (uint256,bool)"}},"id":27631,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7381:33:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_bool_$","typeString":"tuple(uint256,bool)"}},"src":"7358:56:75","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27633,"nodeType":"ExpressionStatement","src":"7358:56:75"}]}}]}}]}},{"expression":{"arguments":[{"id":27657,"name":"newYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27556,"src":"7610:13:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}],"id":27656,"name":"_setYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27532,"src":"7595:14:75","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$6400_$returns$__$","typeString":"function (contract IERC4626)"}},"id":27658,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7595:29:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27659,"nodeType":"ExpressionStatement","src":"7595:29:75"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":27669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":27663,"name":"deinvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27600,"src":"7702:10:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27662,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7695:6:75","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":27661,"name":"int256","nodeType":"ElementaryTypeName","src":"7695:6:75","typeDescriptions":{}}},"id":27664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7695:18:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":27667,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27384,"src":"7723:9:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27666,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7716:6:75","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":27665,"name":"int256","nodeType":"ElementaryTypeName","src":"7716:6:75","typeDescriptions":{}}},"id":27668,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7716:17:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"7695:38:75","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":27660,"name":"_yieldEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27552,"src":"7680:14:75","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":27670,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7680:54:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27671,"nodeType":"ExpressionStatement","src":"7680:54:75"},{"expression":{"id":27674,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27672,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27384,"src":"7740:9:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":27673,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7752:1:75","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7740:13:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27675,"nodeType":"ExpressionStatement","src":"7740:13:75"},{"eventCall":{"arguments":[{"id":27677,"name":"oldYV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27595,"src":"7782:5:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},{"id":27678,"name":"newYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27556,"src":"7789:13:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},{"id":27679,"name":"forced","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27562,"src":"7804:6:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":27676,"name":"YieldVaultChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27410,"src":"7764:17:75","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IERC4626_$6400_$_t_contract$_IERC4626_$6400_$_t_bool_$returns$__$","typeString":"function (contract IERC4626,contract IERC4626,bool)"}},"id":27680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7764:47:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27681,"nodeType":"EmitStatement","src":"7759:52:75"}]},"documentation":{"id":27553,"nodeType":"StructuredDocumentation","src":"5933:890:75","text":" @notice Sets the new yield vault for this reserve. If the reserve had previously a yield vault, it will deinvest all\n the funds, making all of the liquid in the reserve balance.\n @param newYieldVault The address of the new yield vault to assign to the reserve. If is `address(0)` it means\n                      the reserve will not have a yield vault. If not `address(0)` it MUST be an IERC4626\n                      where `newYieldVault.asset()` equals `.currency()`\n @param force When a previous yield vault exists, before setting the new one, the funds are deinvested. When\n              `force` is true, an error in the deinvestment of the assets (or some assets not withdrawable)\n              will be ignored. When `force` is false, it will revert if `oldVault.balanceOf(address(this)) != 0`.\n @custom:emits {YieldVaultChanged}"},"functionSelector":"194448e5","id":27683,"implemented":true,"kind":"function","modifiers":[],"name":"setYieldVault","nameLocation":"6835:13:75","nodeType":"FunctionDefinition","parameters":{"id":27559,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27556,"mutability":"mutable","name":"newYieldVault","nameLocation":"6858:13:75","nodeType":"VariableDeclaration","scope":27683,"src":"6849:22:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":27555,"nodeType":"UserDefinedTypeName","pathNode":{"id":27554,"name":"IERC4626","nameLocations":["6849:8:75"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"6849:8:75"},"referencedDeclaration":6400,"src":"6849:8:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":27558,"mutability":"mutable","name":"force","nameLocation":"6878:5:75","nodeType":"VariableDeclaration","scope":27683,"src":"6873:10:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":27557,"name":"bool","nodeType":"ElementaryTypeName","src":"6873:4:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6848:36:75"},"returnParameters":{"id":27560,"nodeType":"ParameterList","parameters":[],"src":"6894:0:75"},"scope":28015,"src":"6826:990:75","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":27729,"nodeType":"Block","src":"8591:320:75","statements":[{"expression":{"arguments":[{"id":27695,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27689,"src":"8618:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":27698,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"8634:4:75","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}],"id":27697,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8626:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27696,"name":"address","nodeType":"ElementaryTypeName","src":"8626:7:75","typeDescriptions":{}}},"id":27699,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8626:13:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":27702,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"8649:4:75","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}],"id":27701,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8641:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27700,"name":"address","nodeType":"ElementaryTypeName","src":"8641:7:75","typeDescriptions":{}}},"id":27703,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8641:13:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":27692,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27687,"src":"8597:11:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"id":27694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8609:8:75","memberName":"withdraw","nodeType":"MemberAccess","referencedDeclaration":6371,"src":"8597:20:75","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address,address) external returns (uint256)"}},"id":27704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8597:58:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27705,"nodeType":"ExpressionStatement","src":"8597:58:75"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27708,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27706,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27689,"src":"8665:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":27707,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27384,"src":"8674:9:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8665:18:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":27727,"nodeType":"Block","src":"8873:34:75","statements":[{"expression":{"id":27725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27723,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27384,"src":"8881:9:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":27724,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27689,"src":"8894:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8881:19:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27726,"nodeType":"ExpressionStatement","src":"8881:19:75"}]},"id":27728,"nodeType":"IfStatement","src":"8661:246:75","trueBody":{"id":27722,"nodeType":"Block","src":"8685:182:75","statements":[{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27714,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27712,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27689,"src":"8819:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":27713,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27384,"src":"8828:9:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8819:18:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27711,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8812:6:75","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":27710,"name":"int256","nodeType":"ElementaryTypeName","src":"8812:6:75","typeDescriptions":{}}},"id":27715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8812:26:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":27709,"name":"_yieldEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27552,"src":"8797:14:75","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":27716,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8797:42:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27717,"nodeType":"ExpressionStatement","src":"8797:42:75"},{"expression":{"id":27720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27718,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27384,"src":"8847:9:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":27719,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8859:1:75","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8847:13:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27721,"nodeType":"ExpressionStatement","src":"8847:13:75"}]}}]},"documentation":{"id":27684,"nodeType":"StructuredDocumentation","src":"7820:702:75","text":" @dev Internal helper to deinvest `amount` assets from `yieldVault_`.\n It calls `withdraw(amount, address(this), address(this))` on the vault and updates `_invested`,\n also recording earnings if more than the tracked `_invested` is recovered.\n Although the protocol usually operates with safe investments where significant losses are not expected,\n there could be losses anyway. Calls to deinvest should be preceded by a call to `recordEarnings()`\n in situations where accurate earnings/losses tracking is required (like LP withdrawals).\n @param yieldVault_ Yield vault to deinvest from\n @param amount Amount of assets to withdraw from the vault"},"id":27730,"implemented":true,"kind":"function","modifiers":[],"name":"_deinvest","nameLocation":"8534:9:75","nodeType":"FunctionDefinition","parameters":{"id":27690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27687,"mutability":"mutable","name":"yieldVault_","nameLocation":"8553:11:75","nodeType":"VariableDeclaration","scope":27730,"src":"8544:20:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":27686,"nodeType":"UserDefinedTypeName","pathNode":{"id":27685,"name":"IERC4626","nameLocations":["8544:8:75"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"8544:8:75"},"referencedDeclaration":6400,"src":"8544:8:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":27689,"mutability":"mutable","name":"amount","nameLocation":"8574:6:75","nodeType":"VariableDeclaration","scope":27730,"src":"8566:14:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27688,"name":"uint256","nodeType":"ElementaryTypeName","src":"8566:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8543:38:75"},"returnParameters":{"id":27691,"nodeType":"ParameterList","parameters":[],"src":"8591:0:75"},"scope":28015,"src":"8525:386:75","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":27804,"nodeType":"Block","src":"9495:482:75","statements":[{"clauses":[{"block":{"id":27766,"nodeType":"Block","src":"9567:159:75","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27753,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27751,"src":"9579:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":27754,"name":"sharesToRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27736,"src":"9588:14:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9579:23:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27765,"nodeType":"IfStatement","src":"9575:94:75","trueBody":{"id":27764,"nodeType":"Block","src":"9604:65:75","statements":[{"expression":{"id":27758,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27756,"name":"forced","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27741,"src":"9614:6:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":27757,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9623:4:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"9614:13:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27759,"nodeType":"ExpressionStatement","src":"9614:13:75"},{"expression":{"id":27762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27760,"name":"sharesToRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27736,"src":"9637:14:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":27761,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27751,"src":"9654:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9637:23:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27763,"nodeType":"ExpressionStatement","src":"9637:23:75"}]}}]},"errorName":"","id":27767,"nodeType":"TryCatchClause","parameters":{"id":27752,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27751,"mutability":"mutable","name":"result","nameLocation":"9559:6:75","nodeType":"VariableDeclaration","scope":27767,"src":"9551:14:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27750,"name":"uint256","nodeType":"ElementaryTypeName","src":"9551:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9550:16:75"},"src":"9542:184:75"},{"block":{"id":27768,"nodeType":"Block","src":"9733:2:75","statements":[]},"errorName":"","id":27769,"nodeType":"TryCatchClause","src":"9727:8:75"}],"externalCall":{"arguments":[{"arguments":[{"id":27747,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"9535:4:75","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}],"id":27746,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9527:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27745,"name":"address","nodeType":"ElementaryTypeName","src":"9527:7:75","typeDescriptions":{}}},"id":27748,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9527:13:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":27743,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27734,"src":"9505:11:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"id":27744,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9517:9:75","memberName":"maxRedeem","nodeType":"MemberAccess","referencedDeclaration":6379,"src":"9505:21:75","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":27749,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9505:36:75","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27770,"nodeType":"TryStatement","src":"9501:234:75"},{"clauses":[{"block":{"id":27790,"nodeType":"Block","src":"9834:34:75","statements":[{"expression":{"id":27788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27786,"name":"deinvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27739,"src":"9842:10:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":27787,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27784,"src":"9855:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9842:19:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27789,"nodeType":"ExpressionStatement","src":"9842:19:75"}]},"errorName":"","id":27791,"nodeType":"TryCatchClause","parameters":{"id":27785,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27784,"mutability":"mutable","name":"result","nameLocation":"9826:6:75","nodeType":"VariableDeclaration","scope":27791,"src":"9818:14:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27783,"name":"uint256","nodeType":"ElementaryTypeName","src":"9818:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9817:16:75"},"src":"9809:59:75"},{"block":{"id":27801,"nodeType":"Block","src":"9875:98:75","statements":[{"eventCall":{"arguments":[{"id":27793,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27734,"src":"9917:11:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},{"id":27794,"name":"sharesToRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27736,"src":"9930:14:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27792,"name":"ErrorIgnoredDeinvestingVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27418,"src":"9888:28:75","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IERC4626_$6400_$_t_uint256_$returns$__$","typeString":"function (contract IERC4626,uint256)"}},"id":27795,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9888:57:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27796,"nodeType":"EmitStatement","src":"9883:62:75"},{"expression":{"id":27799,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27797,"name":"forced","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27741,"src":"9953:6:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":27798,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9962:4:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"9953:13:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27800,"nodeType":"ExpressionStatement","src":"9953:13:75"}]},"errorName":"","id":27802,"nodeType":"TryCatchClause","src":"9869:104:75"}],"externalCall":{"arguments":[{"id":27773,"name":"sharesToRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27736,"src":"9763:14:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":27776,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"9787:4:75","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}],"id":27775,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9779:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27774,"name":"address","nodeType":"ElementaryTypeName","src":"9779:7:75","typeDescriptions":{}}},"id":27777,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9779:13:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":27780,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"9802:4:75","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}],"id":27779,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9794:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27778,"name":"address","nodeType":"ElementaryTypeName","src":"9794:7:75","typeDescriptions":{}}},"id":27781,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9794:13:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":27771,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27734,"src":"9744:11:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"id":27772,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9756:6:75","memberName":"redeem","nodeType":"MemberAccess","referencedDeclaration":6399,"src":"9744:18:75","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address,address) external returns (uint256)"}},"id":27782,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9744:64:75","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27803,"nodeType":"TryStatement","src":"9740:233:75"}]},"documentation":{"id":27731,"nodeType":"StructuredDocumentation","src":"8915:442:75","text":" @dev Deinvests all the funds or as much as possible, without failing.\n @param yieldVault_ Yield vault to deinvest from\n @param sharesToRedeem Initial amount of shares to redeem\n @return deinvested The amount that was withdrawn from the vault\n @return forced If true, it indicates that something failed and it wasn't able to withdraw all the funds\n @custom:emits {ErrorIgnoredDeinvestingVault}"},"id":27805,"implemented":true,"kind":"function","modifiers":[],"name":"_safeDeInvestAll","nameLocation":"9369:16:75","nodeType":"FunctionDefinition","parameters":{"id":27737,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27734,"mutability":"mutable","name":"yieldVault_","nameLocation":"9400:11:75","nodeType":"VariableDeclaration","scope":27805,"src":"9391:20:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":27733,"nodeType":"UserDefinedTypeName","pathNode":{"id":27732,"name":"IERC4626","nameLocations":["9391:8:75"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"9391:8:75"},"referencedDeclaration":6400,"src":"9391:8:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":27736,"mutability":"mutable","name":"sharesToRedeem","nameLocation":"9425:14:75","nodeType":"VariableDeclaration","scope":27805,"src":"9417:22:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27735,"name":"uint256","nodeType":"ElementaryTypeName","src":"9417:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9385:58:75"},"returnParameters":{"id":27742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27739,"mutability":"mutable","name":"deinvested","nameLocation":"9470:10:75","nodeType":"VariableDeclaration","scope":27805,"src":"9462:18:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27738,"name":"uint256","nodeType":"ElementaryTypeName","src":"9462:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":27741,"mutability":"mutable","name":"forced","nameLocation":"9487:6:75","nodeType":"VariableDeclaration","scope":27805,"src":"9482:11:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":27740,"name":"bool","nodeType":"ElementaryTypeName","src":"9482:4:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9461:33:75"},"scope":28015,"src":"9360:617:75","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":27822,"nodeType":"Block","src":"10129:69:75","statements":[{"expression":{"arguments":[{"arguments":[{"id":27818,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"10187:4:75","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}],"id":27817,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10179:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27816,"name":"address","nodeType":"ElementaryTypeName","src":"10179:7:75","typeDescriptions":{}}},"id":27819,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10179:13:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":27812,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25603,"src":"10157:8:75","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$8863_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":27813,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10157:10:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}],"id":27811,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"10142:14:75","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$8863_$","typeString":"type(contract IERC20Metadata)"}},"id":27814,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10142:26:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":27815,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10169:9:75","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":7934,"src":"10142:36:75","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":27820,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10142:51:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":27810,"id":27821,"nodeType":"Return","src":"10135:58:75"}]},"documentation":{"id":27806,"nodeType":"StructuredDocumentation","src":"9981:93:75","text":" @dev Returns the liquid balance of `currency()` held directly by this reserve."},"id":27823,"implemented":true,"kind":"function","modifiers":[],"name":"_balance","nameLocation":"10086:8:75","nodeType":"FunctionDefinition","parameters":{"id":27807,"nodeType":"ParameterList","parameters":[],"src":"10094:2:75"},"returnParameters":{"id":27810,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27809,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":27823,"src":"10120:7:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27808,"name":"uint256","nodeType":"ElementaryTypeName","src":"10120:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10119:9:75"},"scope":28015,"src":"10077:121:75","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":27865,"nodeType":"Block","src":"10803:182:75","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":27831,"name":"recordEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28009,"src":"10809:14:75","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":27832,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10809:16:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27833,"nodeType":"ExpressionStatement","src":"10809:16:75"},{"assignments":[27836],"declarations":[{"constant":false,"id":27836,"mutability":"mutable","name":"yv","nameLocation":"10840:2:75","nodeType":"VariableDeclaration","scope":27865,"src":"10831:11:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":27835,"nodeType":"UserDefinedTypeName","pathNode":{"id":27834,"name":"IERC4626","nameLocations":["10831:8:75"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"10831:8:75"},"referencedDeclaration":6400,"src":"10831:8:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"}],"id":27839,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":27837,"name":"yieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27525,"src":"10845:10:75","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC4626_$6400_$","typeString":"function () view returns (contract IERC4626)"}},"id":27838,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10845:12:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"nodeType":"VariableDeclarationStatement","src":"10831:26:75"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27846,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27840,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27826,"src":"10867:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":27843,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10882:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":27842,"name":"uint256","nodeType":"ElementaryTypeName","src":"10882:7:75","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":27841,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10877:4:75","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":27844,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10877:13:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":27845,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10891:3:75","memberName":"max","nodeType":"MemberAccess","src":"10877:17:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10867:27:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27857,"nodeType":"IfStatement","src":"10863:71:75","trueBody":{"expression":{"id":27855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27847,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27826,"src":"10896:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":27852,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"10928:4:75","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}],"id":27851,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10920:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27850,"name":"address","nodeType":"ElementaryTypeName","src":"10920:7:75","typeDescriptions":{}}},"id":27853,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10920:13:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":27848,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27836,"src":"10905:2:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"id":27849,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10908:11:75","memberName":"maxWithdraw","nodeType":"MemberAccess","referencedDeclaration":6351,"src":"10905:14:75","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":27854,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10905:29:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10896:38:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27856,"nodeType":"ExpressionStatement","src":"10896:38:75"}},{"expression":{"arguments":[{"id":27859,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27836,"src":"10950:2:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},{"id":27860,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27826,"src":"10954:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27858,"name":"_deinvest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27730,"src":"10940:9:75","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$6400_$_t_uint256_$returns$__$","typeString":"function (contract IERC4626,uint256)"}},"id":27861,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10940:21:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27862,"nodeType":"ExpressionStatement","src":"10940:21:75"},{"expression":{"id":27863,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27826,"src":"10974:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":27830,"id":27864,"nodeType":"Return","src":"10967:13:75"}]},"documentation":{"id":27824,"nodeType":"StructuredDocumentation","src":"10202:512:75","text":" @notice Deinvest from the vault a given amount.\n @param amount Amount to withdraw from the `yieldVault()`. If equal type(uint256).max, deinvests maxWithdraw()\n @return deinvested The amount that was deinvested and added as liquid funds to the reserve\n @custom:pre yieldVault() != address(0)\n @custom:pre yieldVault().maxWithdraw(address(this)) >= amount\n             (this condition is not checked here; exceeding it is expected to revert in the vault during _deinvest())."},"functionSelector":"d336078c","id":27866,"implemented":true,"kind":"function","modifiers":[],"name":"withdrawFromYieldVault","nameLocation":"10726:22:75","nodeType":"FunctionDefinition","parameters":{"id":27827,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27826,"mutability":"mutable","name":"amount","nameLocation":"10757:6:75","nodeType":"VariableDeclaration","scope":27866,"src":"10749:14:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27825,"name":"uint256","nodeType":"ElementaryTypeName","src":"10749:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10748:16:75"},"returnParameters":{"id":27830,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27829,"mutability":"mutable","name":"deinvested","nameLocation":"10791:10:75","nodeType":"VariableDeclaration","scope":27866,"src":"10783:18:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27828,"name":"uint256","nodeType":"ElementaryTypeName","src":"10783:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10782:20:75"},"scope":28015,"src":"10717:268:75","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":27945,"nodeType":"Block","src":"11302:389:75","statements":[{"assignments":[27874],"declarations":[{"constant":false,"id":27874,"mutability":"mutable","name":"yv","nameLocation":"11317:2:75","nodeType":"VariableDeclaration","scope":27945,"src":"11308:11:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":27873,"nodeType":"UserDefinedTypeName","pathNode":{"id":27872,"name":"IERC4626","nameLocations":["11308:8:75"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"11308:8:75"},"referencedDeclaration":6400,"src":"11308:8:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"}],"id":27877,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":27875,"name":"yieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27525,"src":"11322:10:75","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC4626_$6400_$","typeString":"function () view returns (contract IERC4626)"}},"id":27876,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11322:12:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"nodeType":"VariableDeclarationStatement","src":"11308:26:75"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":27887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":27881,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27874,"src":"11356:2:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}],"id":27880,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11348:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27879,"name":"address","nodeType":"ElementaryTypeName","src":"11348:7:75","typeDescriptions":{}}},"id":27882,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11348:11:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":27885,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11371:1:75","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":27884,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11363:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27883,"name":"address","nodeType":"ElementaryTypeName","src":"11363:7:75","typeDescriptions":{}}},"id":27886,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11363:10:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11348:25:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":27888,"name":"InvalidYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27387,"src":"11375:17:75","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":27889,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11375:19:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":27878,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"11340:7:75","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":27890,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11340:55:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27891,"nodeType":"ExpressionStatement","src":"11340:55:75"},{"assignments":[27893],"declarations":[{"constant":false,"id":27893,"mutability":"mutable","name":"balance","nameLocation":"11409:7:75","nodeType":"VariableDeclaration","scope":27945,"src":"11401:15:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27892,"name":"uint256","nodeType":"ElementaryTypeName","src":"11401:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":27896,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":27894,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27823,"src":"11419:8:75","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":27895,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11419:10:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11401:28:75"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27897,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27869,"src":"11439:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":27900,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11454:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":27899,"name":"uint256","nodeType":"ElementaryTypeName","src":"11454:7:75","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":27898,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11449:4:75","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":27901,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11449:13:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":27902,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11463:3:75","memberName":"max","nodeType":"MemberAccess","src":"11449:17:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11439:27:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":27919,"nodeType":"Block","src":"11505:73:75","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27912,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27910,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27869,"src":"11521:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":27911,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27893,"src":"11531:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11521:17:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":27914,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27869,"src":"11554:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":27915,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27893,"src":"11562:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27913,"name":"NotEnoughCash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27394,"src":"11540:13:75","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":27916,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11540:30:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":27909,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"11513:7:75","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":27917,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11513:58:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27918,"nodeType":"ExpressionStatement","src":"11513:58:75"}]},"id":27920,"nodeType":"IfStatement","src":"11435:143:75","trueBody":{"id":27908,"nodeType":"Block","src":"11468:31:75","statements":[{"expression":{"id":27906,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27904,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27869,"src":"11476:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":27905,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27893,"src":"11485:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11476:16:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27907,"nodeType":"ExpressionStatement","src":"11476:16:75"}]}},{"expression":{"id":27923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27921,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27384,"src":"11583:9:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":27922,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27869,"src":"11596:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11583:19:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27924,"nodeType":"ExpressionStatement","src":"11583:19:75"},{"expression":{"arguments":[{"arguments":[{"id":27930,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27874,"src":"11635:2:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}],"id":27929,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11627:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27928,"name":"address","nodeType":"ElementaryTypeName","src":"11627:7:75","typeDescriptions":{}}},"id":27931,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11627:11:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":27932,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27869,"src":"11640:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":27925,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25603,"src":"11608:8:75","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$8863_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":27926,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11608:10:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":27927,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11619:7:75","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":7964,"src":"11608:18:75","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":27933,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11608:39:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27934,"nodeType":"ExpressionStatement","src":"11608:39:75"},{"expression":{"arguments":[{"id":27938,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27869,"src":"11664:6:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":27941,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"11680:4:75","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}],"id":27940,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11672:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27939,"name":"address","nodeType":"ElementaryTypeName","src":"11672:7:75","typeDescriptions":{}}},"id":27942,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11672:13:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":27935,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27874,"src":"11653:2:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"id":27937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11656:7:75","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":6317,"src":"11653:10:75","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address) external returns (uint256)"}},"id":27943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11653:33:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27944,"nodeType":"ExpressionStatement","src":"11653:33:75"}]},"documentation":{"id":27867,"nodeType":"StructuredDocumentation","src":"10989:254:75","text":" @notice Moves money that's liquid in the contract to the yield vault, to generate yields\n @param amount Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`\n @custom:pre _balance() >= amount"},"functionSelector":"ac860f74","id":27946,"implemented":true,"kind":"function","modifiers":[],"name":"depositIntoYieldVault","nameLocation":"11255:21:75","nodeType":"FunctionDefinition","parameters":{"id":27870,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27869,"mutability":"mutable","name":"amount","nameLocation":"11285:6:75","nodeType":"VariableDeclaration","scope":27946,"src":"11277:14:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27868,"name":"uint256","nodeType":"ElementaryTypeName","src":"11277:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11276:16:75"},"returnParameters":{"id":27871,"nodeType":"ParameterList","parameters":[],"src":"11302:0:75"},"scope":28015,"src":"11246:445:75","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":28008,"nodeType":"Block","src":"11960:333:75","statements":[{"assignments":[27952],"declarations":[{"constant":false,"id":27952,"mutability":"mutable","name":"yv","nameLocation":"11975:2:75","nodeType":"VariableDeclaration","scope":28008,"src":"11966:11:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":27951,"nodeType":"UserDefinedTypeName","pathNode":{"id":27950,"name":"IERC4626","nameLocations":["11966:8:75"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"11966:8:75"},"referencedDeclaration":6400,"src":"11966:8:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"}],"id":27955,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":27953,"name":"yieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27525,"src":"11980:10:75","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC4626_$6400_$","typeString":"function () view returns (contract IERC4626)"}},"id":27954,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11980:12:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"nodeType":"VariableDeclarationStatement","src":"11966:26:75"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":27965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":27959,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27952,"src":"12014:2:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}],"id":27958,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12006:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27957,"name":"address","nodeType":"ElementaryTypeName","src":"12006:7:75","typeDescriptions":{}}},"id":27960,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12006:11:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":27963,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12029:1:75","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":27962,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12021:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27961,"name":"address","nodeType":"ElementaryTypeName","src":"12021:7:75","typeDescriptions":{}}},"id":27964,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12021:10:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12006:25:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":27966,"name":"InvalidYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27387,"src":"12033:17:75","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":27967,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12033:19:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":27956,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"11998:7:75","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":27968,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11998:55:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27969,"nodeType":"ExpressionStatement","src":"11998:55:75"},{"assignments":[27971],"declarations":[{"constant":false,"id":27971,"mutability":"mutable","name":"assetsInvested","nameLocation":"12067:14:75","nodeType":"VariableDeclaration","scope":28008,"src":"12059:22:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27970,"name":"uint256","nodeType":"ElementaryTypeName","src":"12059:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":27982,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":27978,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"12124:4:75","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$28015","typeString":"contract Reserve"}],"id":27977,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12116:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27976,"name":"address","nodeType":"ElementaryTypeName","src":"12116:7:75","typeDescriptions":{}}},"id":27979,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12116:13:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":27974,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27952,"src":"12103:2:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"id":27975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12106:9:75","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":7934,"src":"12103:12:75","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":27980,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12103:27:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":27972,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27952,"src":"12084:2:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"id":27973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12087:15:75","memberName":"convertToAssets","nodeType":"MemberAccess","referencedDeclaration":6291,"src":"12084:18:75","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view external returns (uint256)"}},"id":27981,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12084:47:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12059:72:75"},{"assignments":[27984],"declarations":[{"constant":false,"id":27984,"mutability":"mutable","name":"earned","nameLocation":"12144:6:75","nodeType":"VariableDeclaration","scope":28008,"src":"12137:13:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":27983,"name":"int256","nodeType":"ElementaryTypeName","src":"12137:6:75","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":27994,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":27993,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":27987,"name":"assetsInvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27971,"src":"12160:14:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27986,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12153:6:75","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":27985,"name":"int256","nodeType":"ElementaryTypeName","src":"12153:6:75","typeDescriptions":{}}},"id":27988,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12153:22:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":27991,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27384,"src":"12185:9:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27990,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12178:6:75","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":27989,"name":"int256","nodeType":"ElementaryTypeName","src":"12178:6:75","typeDescriptions":{}}},"id":27992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12178:17:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"12153:42:75","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"12137:58:75"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":27997,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27995,"name":"earned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27984,"src":"12205:6:75","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":27996,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12215:1:75","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12205:11:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28007,"nodeType":"IfStatement","src":"12201:88:75","trueBody":{"id":28006,"nodeType":"Block","src":"12218:71:75","statements":[{"expression":{"id":28000,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27998,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27384,"src":"12226:9:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":27999,"name":"assetsInvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27971,"src":"12238:14:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12226:26:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":28001,"nodeType":"ExpressionStatement","src":"12226:26:75"},{"expression":{"arguments":[{"id":28003,"name":"earned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27984,"src":"12275:6:75","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":28002,"name":"_yieldEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27552,"src":"12260:14:75","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":28004,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12260:22:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":28005,"nodeType":"ExpressionStatement","src":"12260:22:75"}]}}]},"documentation":{"id":27947,"nodeType":"StructuredDocumentation","src":"11695:229:75","text":" @dev Computes the value of the assets invested in the yieldVault() and then calls `_yieldEarnings` to\n      reflect the earnings/losses in the way defined for each reserve.\n @custom:emits {EarningsRecorded}"},"functionSelector":"4eb978a4","id":28009,"implemented":true,"kind":"function","modifiers":[],"name":"recordEarnings","nameLocation":"11936:14:75","nodeType":"FunctionDefinition","parameters":{"id":27948,"nodeType":"ParameterList","parameters":[],"src":"11950:2:75"},"returnParameters":{"id":27949,"nodeType":"ParameterList","parameters":[],"src":"11960:0:75"},"scope":28015,"src":"11927:366:75","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"constant":false,"documentation":{"id":28010,"nodeType":"StructuredDocumentation","src":"12297:246:75","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":28014,"mutability":"mutable","name":"__gap","nameLocation":"12566:5:75","nodeType":"VariableDeclaration","scope":28015,"src":"12546:25:75","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":28011,"name":"uint256","nodeType":"ElementaryTypeName","src":"12546:7:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":28013,"length":{"hexValue":"3439","id":28012,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12554:2:75","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"12546:11:75","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"}],"scope":28016,"src":"976:11598:75","usedErrors":[6630,6643,6967,6970,7241,7246,9606,10740,25476,25478,25480,27387,27394,27399],"usedEvents":[6213,6975,27410,27418,27423]}],"src":"39:12536:75"},"id":75},"contracts/RiskModule.sol":{"ast":{"absolutePath":"contracts/RiskModule.sol","exportedSymbols":{"IPolicyPool":[29171],"IPremiumsAccount":[29276],"IRiskModule":[29295],"IUnderwriter":[29363],"Policy":[22826],"PolicyPoolComponent":[25609],"RiskModule":[28649],"SafeCast":[17679]},"id":28650,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":28017,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:76"},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"@openzeppelin/contracts/utils/math/SafeCast.sol","id":28019,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28650,"sourceUnit":17680,"src":"65:73:76","symbolAliases":[{"foreign":{"id":28018,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"73:8:76","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyPool.sol","file":"./interfaces/IPolicyPool.sol","id":28021,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28650,"sourceUnit":29172,"src":"139:57:76","symbolAliases":[{"foreign":{"id":28020,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"147:11:76","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/PolicyPoolComponent.sol","file":"./PolicyPoolComponent.sol","id":28023,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28650,"sourceUnit":25610,"src":"197:62:76","symbolAliases":[{"foreign":{"id":28022,"name":"PolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25609,"src":"205:19:76","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IRiskModule.sol","file":"./interfaces/IRiskModule.sol","id":28025,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28650,"sourceUnit":29296,"src":"260:57:76","symbolAliases":[{"foreign":{"id":28024,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"268:11:76","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IUnderwriter.sol","file":"./interfaces/IUnderwriter.sol","id":28027,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28650,"sourceUnit":29364,"src":"318:59:76","symbolAliases":[{"foreign":{"id":28026,"name":"IUnderwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29363,"src":"326:12:76","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPremiumsAccount.sol","file":"./interfaces/IPremiumsAccount.sol","id":28029,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28650,"sourceUnit":29277,"src":"378:67:76","symbolAliases":[{"foreign":{"id":28028,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29276,"src":"386:16:76","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/Policy.sol","file":"./Policy.sol","id":28031,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28650,"sourceUnit":22827,"src":"446:36:76","symbolAliases":[{"foreign":{"id":28030,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"454:6:76","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":28033,"name":"IRiskModule","nameLocations":["731:11:76"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"731:11:76"},"id":28034,"nodeType":"InheritanceSpecifier","src":"731:11:76"},{"baseName":{"id":28035,"name":"PolicyPoolComponent","nameLocations":["744:19:76"],"nodeType":"IdentifierPath","referencedDeclaration":25609,"src":"744:19:76"},"id":28036,"nodeType":"InheritanceSpecifier","src":"744:19:76"}],"canonicalName":"RiskModule","contractDependencies":[],"contractKind":"contract","documentation":{"id":28032,"nodeType":"StructuredDocumentation","src":"484:223:76","text":" @title Ensuro Risk Module contract\n @dev Risk Module that keeps the configuration and is responsible for injecting policies and policy resolution\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":28649,"linearizedBaseContracts":[28649,25609,29188,14272,7384,6435,7218,29295],"name":"RiskModule","nameLocation":"717:10:76","nodeType":"ContractDefinition","nodes":[{"global":false,"id":28040,"libraryName":{"id":28037,"name":"Policy","nameLocations":["774:6:76"],"nodeType":"IdentifierPath","referencedDeclaration":22826,"src":"774:6:76"},"nodeType":"UsingForDirective","src":"768:35:76","typeName":{"id":28039,"nodeType":"UserDefinedTypeName","pathNode":{"id":28038,"name":"Policy.PolicyData","nameLocations":["785:6:76","792:10:76"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"785:17:76"},"referencedDeclaration":22256,"src":"785:17:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}}},{"global":false,"id":28043,"libraryName":{"id":28041,"name":"SafeCast","nameLocations":["812:8:76"],"nodeType":"IdentifierPath","referencedDeclaration":17679,"src":"812:8:76"},"nodeType":"UsingForDirective","src":"806:27:76","typeName":{"id":28042,"name":"uint256","nodeType":"ElementaryTypeName","src":"825:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"constant":false,"documentation":{"id":28044,"nodeType":"StructuredDocumentation","src":"837:61:76","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":28047,"mutability":"immutable","name":"_premiumsAccount","nameLocation":"937:16:76","nodeType":"VariableDeclaration","scope":28649,"src":"901:52:76","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"},"typeName":{"id":28046,"nodeType":"UserDefinedTypeName","pathNode":{"id":28045,"name":"IPremiumsAccount","nameLocations":["901:16:76"],"nodeType":"IdentifierPath","referencedDeclaration":29276,"src":"901:16:76"},"referencedDeclaration":29276,"src":"901:16:76","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"visibility":"internal"},{"constant":false,"id":28050,"mutability":"mutable","name":"_underwriter","nameLocation":"980:12:76","nodeType":"VariableDeclaration","scope":28649,"src":"958:34:76","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"},"typeName":{"id":28049,"nodeType":"UserDefinedTypeName","pathNode":{"id":28048,"name":"IUnderwriter","nameLocations":["958:12:76"],"nodeType":"IdentifierPath","referencedDeclaration":29363,"src":"958:12:76"},"referencedDeclaration":29363,"src":"958:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},"visibility":"internal"},{"constant":false,"id":28052,"mutability":"mutable","name":"_wallet","nameLocation":"1014:7:76","nodeType":"VariableDeclaration","scope":28649,"src":"997:24:76","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28051,"name":"address","nodeType":"ElementaryTypeName","src":"997:7:76","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"anonymous":false,"eventSelector":"e3d815eb4e0fdd9b02285235cb46b09f34bee9bd0eb8d8dc3a1fe84694079bc2","id":28058,"name":"PartnerWalletChanged","nameLocation":"1070:20:76","nodeType":"EventDefinition","parameters":{"id":28057,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28054,"indexed":false,"mutability":"mutable","name":"oldWallet","nameLocation":"1099:9:76","nodeType":"VariableDeclaration","scope":28058,"src":"1091:17:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28053,"name":"address","nodeType":"ElementaryTypeName","src":"1091:7:76","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28056,"indexed":false,"mutability":"mutable","name":"newWallet","nameLocation":"1118:9:76","nodeType":"VariableDeclaration","scope":28058,"src":"1110:17:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28055,"name":"address","nodeType":"ElementaryTypeName","src":"1110:7:76","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1090:38:76"},"src":"1064:65:76"},{"anonymous":false,"eventSelector":"ae536502f25a82de70abed467008489d54fa0cbf58cdc51718efe6d49406724f","id":28066,"name":"UnderwriterChanged","nameLocation":"1138:18:76","nodeType":"EventDefinition","parameters":{"id":28065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28061,"indexed":false,"mutability":"mutable","name":"oldUW","nameLocation":"1170:5:76","nodeType":"VariableDeclaration","scope":28066,"src":"1157:18:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"},"typeName":{"id":28060,"nodeType":"UserDefinedTypeName","pathNode":{"id":28059,"name":"IUnderwriter","nameLocations":["1157:12:76"],"nodeType":"IdentifierPath","referencedDeclaration":29363,"src":"1157:12:76"},"referencedDeclaration":29363,"src":"1157:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},"visibility":"internal"},{"constant":false,"id":28064,"indexed":false,"mutability":"mutable","name":"newUW","nameLocation":"1190:5:76","nodeType":"VariableDeclaration","scope":28066,"src":"1177:18:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"},"typeName":{"id":28063,"nodeType":"UserDefinedTypeName","pathNode":{"id":28062,"name":"IUnderwriter","nameLocations":["1177:12:76"],"nodeType":"IdentifierPath","referencedDeclaration":29363,"src":"1177:12:76"},"referencedDeclaration":29363,"src":"1177:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},"visibility":"internal"}],"src":"1156:40:76"},"src":"1132:65:76"},{"errorSelector":"628d229a","id":28070,"name":"InvalidWallet","nameLocation":"1207:13:76","nodeType":"ErrorDefinition","parameters":{"id":28069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28068,"mutability":"mutable","name":"wallet","nameLocation":"1229:6:76","nodeType":"VariableDeclaration","scope":28070,"src":"1221:14:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28067,"name":"address","nodeType":"ElementaryTypeName","src":"1221:7:76","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1220:16:76"},"src":"1201:36:76"},{"errorSelector":"fe0c5f44","id":28075,"name":"InvalidUnderwriter","nameLocation":"1246:18:76","nodeType":"ErrorDefinition","parameters":{"id":28074,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28073,"mutability":"mutable","name":"uw","nameLocation":"1278:2:76","nodeType":"VariableDeclaration","scope":28075,"src":"1265:15:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"},"typeName":{"id":28072,"nodeType":"UserDefinedTypeName","pathNode":{"id":28071,"name":"IUnderwriter","nameLocations":["1265:12:76"],"nodeType":"IdentifierPath","referencedDeclaration":29363,"src":"1265:12:76"},"referencedDeclaration":29363,"src":"1265:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},"visibility":"internal"}],"src":"1264:17:76"},"src":"1240:42:76"},{"errorSelector":"fec343d5","id":28077,"name":"PremiumsAccountMustBePartOfThePool","nameLocation":"1291:34:76","nodeType":"ErrorDefinition","parameters":{"id":28076,"nodeType":"ParameterList","parameters":[],"src":"1325:2:76"},"src":"1285:43:76"},{"errorSelector":"143e1f84","id":28079,"name":"UpgradeCannotChangePremiumsAccount","nameLocation":"1337:34:76","nodeType":"ErrorDefinition","parameters":{"id":28078,"nodeType":"ParameterList","parameters":[],"src":"1371:2:76"},"src":"1331:43:76"},{"errorSelector":"a67fcb1d","id":28085,"name":"ExpirationMustBeInTheFuture","nameLocation":"1383:27:76","nodeType":"ErrorDefinition","parameters":{"id":28084,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28081,"mutability":"mutable","name":"expiration","nameLocation":"1418:10:76","nodeType":"VariableDeclaration","scope":28085,"src":"1411:17:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":28080,"name":"uint40","nodeType":"ElementaryTypeName","src":"1411:6:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":28083,"mutability":"mutable","name":"now","nameLocation":"1437:3:76","nodeType":"VariableDeclaration","scope":28085,"src":"1430:10:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":28082,"name":"uint40","nodeType":"ElementaryTypeName","src":"1430:6:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"1410:31:76"},"src":"1377:65:76"},{"errorSelector":"58e92282","id":28089,"name":"InvalidCustomer","nameLocation":"1451:15:76","nodeType":"ErrorDefinition","parameters":{"id":28088,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28087,"mutability":"mutable","name":"customer","nameLocation":"1475:8:76","nodeType":"VariableDeclaration","scope":28089,"src":"1467:16:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28086,"name":"address","nodeType":"ElementaryTypeName","src":"1467:7:76","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1466:18:76"},"src":"1445:40:76"},{"body":{"id":28121,"nodeType":"Block","src":"1645:189:76","statements":[{"condition":{"commonType":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"id":28111,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"id":28105,"name":"premiumsAccount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28096,"src":"1683:16:76","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}],"id":28104,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1675:7:76","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":28103,"name":"address","nodeType":"ElementaryTypeName","src":"1675:7:76","typeDescriptions":{}}},"id":28106,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1675:25:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":28102,"name":"PolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25609,"src":"1655:19:76","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_PolicyPoolComponent_$25609_$","typeString":"type(contract PolicyPoolComponent)"}},"id":28107,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1655:46:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_PolicyPoolComponent_$25609","typeString":"contract PolicyPoolComponent"}},"id":28108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1702:10:76","memberName":"policyPool","nodeType":"MemberAccess","referencedDeclaration":25592,"src":"1655:57:76","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPolicyPool_$29171_$","typeString":"function () view external returns (contract IPolicyPool)"}},"id":28109,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1655:59:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":28110,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28093,"src":"1718:11:76","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"src":"1655:74:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28116,"nodeType":"IfStatement","src":"1651:138:76","trueBody":{"id":28115,"nodeType":"Block","src":"1731:58:76","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28112,"name":"PremiumsAccountMustBePartOfThePool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28077,"src":"1746:34:76","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28113,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1746:36:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28114,"nodeType":"RevertStatement","src":"1739:43:76"}]}},{"expression":{"id":28119,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":28117,"name":"_premiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28047,"src":"1794:16:76","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":28118,"name":"premiumsAccount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28096,"src":"1813:16:76","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"src":"1794:35:76","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"id":28120,"nodeType":"ExpressionStatement","src":"1794:35:76"}]},"documentation":{"id":28090,"nodeType":"StructuredDocumentation","src":"1489:48:76","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":28122,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":28099,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28093,"src":"1632:11:76","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}}],"id":28100,"kind":"baseConstructorSpecifier","modifierName":{"id":28098,"name":"PolicyPoolComponent","nameLocations":["1612:19:76"],"nodeType":"IdentifierPath","referencedDeclaration":25609,"src":"1612:19:76"},"nodeType":"ModifierInvocation","src":"1612:32:76"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":28097,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28093,"mutability":"mutable","name":"policyPool_","nameLocation":"1564:11:76","nodeType":"VariableDeclaration","scope":28122,"src":"1552:23:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"typeName":{"id":28092,"nodeType":"UserDefinedTypeName","pathNode":{"id":28091,"name":"IPolicyPool","nameLocations":["1552:11:76"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"1552:11:76"},"referencedDeclaration":29171,"src":"1552:11:76","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"visibility":"internal"},{"constant":false,"id":28096,"mutability":"mutable","name":"premiumsAccount_","nameLocation":"1594:16:76","nodeType":"VariableDeclaration","scope":28122,"src":"1577:33:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"},"typeName":{"id":28095,"nodeType":"UserDefinedTypeName","pathNode":{"id":28094,"name":"IPremiumsAccount","nameLocations":["1577:16:76"],"nodeType":"IdentifierPath","referencedDeclaration":29276,"src":"1577:16:76"},"referencedDeclaration":29276,"src":"1577:16:76","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"src":"1551:60:76"},"returnParameters":{"id":28101,"nodeType":"ParameterList","parameters":[],"src":"1645:0:76"},"scope":28649,"src":"1540:294:76","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":28138,"nodeType":"Block","src":"2131:51:76","statements":[{"expression":{"arguments":[{"id":28134,"name":"underwriter_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28126,"src":"2155:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},{"id":28135,"name":"wallet_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28128,"src":"2169:7:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"},{"typeIdentifier":"t_address","typeString":"address"}],"id":28133,"name":"__RiskModule_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28159,"src":"2137:17:76","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IUnderwriter_$29363_$_t_address_$returns$__$","typeString":"function (contract IUnderwriter,address)"}},"id":28136,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2137:40:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":28137,"nodeType":"ExpressionStatement","src":"2137:40:76"}]},"documentation":{"id":28123,"nodeType":"StructuredDocumentation","src":"1838:207:76","text":" @dev Initializes the RiskModule\n @param underwriter_ Contract in charge of decoding and validating the input and pricing the policies\n @param wallet_ Address of the RiskModule provider"},"functionSelector":"485cc955","id":28139,"implemented":true,"kind":"function","modifiers":[{"id":28131,"kind":"modifierInvocation","modifierName":{"id":28130,"name":"initializer","nameLocations":["2119:11:76"],"nodeType":"IdentifierPath","referencedDeclaration":7058,"src":"2119:11:76"},"nodeType":"ModifierInvocation","src":"2119:11:76"}],"name":"initialize","nameLocation":"2057:10:76","nodeType":"FunctionDefinition","parameters":{"id":28129,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28126,"mutability":"mutable","name":"underwriter_","nameLocation":"2081:12:76","nodeType":"VariableDeclaration","scope":28139,"src":"2068:25:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"},"typeName":{"id":28125,"nodeType":"UserDefinedTypeName","pathNode":{"id":28124,"name":"IUnderwriter","nameLocations":["2068:12:76"],"nodeType":"IdentifierPath","referencedDeclaration":29363,"src":"2068:12:76"},"referencedDeclaration":29363,"src":"2068:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},"visibility":"internal"},{"constant":false,"id":28128,"mutability":"mutable","name":"wallet_","nameLocation":"2103:7:76","nodeType":"VariableDeclaration","scope":28139,"src":"2095:15:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28127,"name":"address","nodeType":"ElementaryTypeName","src":"2095:7:76","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2067:44:76"},"returnParameters":{"id":28132,"nodeType":"ParameterList","parameters":[],"src":"2131:0:76"},"scope":28649,"src":"2048:134:76","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":28158,"nodeType":"Block","src":"2544:95:76","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":28150,"name":"__PolicyPoolComponent_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25530,"src":"2550:26:76","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":28151,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2550:28:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":28152,"nodeType":"ExpressionStatement","src":"2550:28:76"},{"expression":{"arguments":[{"id":28154,"name":"underwriter_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28143,"src":"2612:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},{"id":28155,"name":"wallet_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28145,"src":"2626:7:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"},{"typeIdentifier":"t_address","typeString":"address"}],"id":28153,"name":"__RiskModule_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28178,"src":"2584:27:76","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IUnderwriter_$29363_$_t_address_$returns$__$","typeString":"function (contract IUnderwriter,address)"}},"id":28156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2584:50:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":28157,"nodeType":"ExpressionStatement","src":"2584:50:76"}]},"documentation":{"id":28140,"nodeType":"StructuredDocumentation","src":"2186:207:76","text":" @dev Initializes the RiskModule\n @param underwriter_ Contract in charge of decoding and validating the input and pricing the policies\n @param wallet_ Address of the RiskModule provider"},"id":28159,"implemented":true,"kind":"function","modifiers":[{"id":28148,"kind":"modifierInvocation","modifierName":{"id":28147,"name":"onlyInitializing","nameLocations":["2527:16:76"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"2527:16:76"},"nodeType":"ModifierInvocation","src":"2527:16:76"}],"name":"__RiskModule_init","nameLocation":"2456:17:76","nodeType":"FunctionDefinition","parameters":{"id":28146,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28143,"mutability":"mutable","name":"underwriter_","nameLocation":"2487:12:76","nodeType":"VariableDeclaration","scope":28159,"src":"2474:25:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"},"typeName":{"id":28142,"nodeType":"UserDefinedTypeName","pathNode":{"id":28141,"name":"IUnderwriter","nameLocations":["2474:12:76"],"nodeType":"IdentifierPath","referencedDeclaration":29363,"src":"2474:12:76"},"referencedDeclaration":29363,"src":"2474:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},"visibility":"internal"},{"constant":false,"id":28145,"mutability":"mutable","name":"wallet_","nameLocation":"2509:7:76","nodeType":"VariableDeclaration","scope":28159,"src":"2501:15:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28144,"name":"address","nodeType":"ElementaryTypeName","src":"2501:7:76","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2473:44:76"},"returnParameters":{"id":28149,"nodeType":"ParameterList","parameters":[],"src":"2544:0:76"},"scope":28649,"src":"2447:192:76","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":28177,"nodeType":"Block","src":"2801:63:76","statements":[{"expression":{"arguments":[{"id":28170,"name":"wallet_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28164,"src":"2817:7:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":28169,"name":"setWallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28268,"src":"2807:9:76","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":28171,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2807:18:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":28172,"nodeType":"ExpressionStatement","src":"2807:18:76"},{"expression":{"arguments":[{"id":28174,"name":"underwriter_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28162,"src":"2846:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}],"id":28173,"name":"setUnderwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28310,"src":"2831:14:76","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IUnderwriter_$29363_$returns$__$","typeString":"function (contract IUnderwriter)"}},"id":28175,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2831:28:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":28176,"nodeType":"ExpressionStatement","src":"2831:28:76"}]},"id":28178,"implemented":true,"kind":"function","modifiers":[{"id":28167,"kind":"modifierInvocation","modifierName":{"id":28166,"name":"onlyInitializing","nameLocations":["2784:16:76"],"nodeType":"IdentifierPath","referencedDeclaration":7113,"src":"2784:16:76"},"nodeType":"ModifierInvocation","src":"2784:16:76"}],"name":"__RiskModule_init_unchained","nameLocation":"2703:27:76","nodeType":"FunctionDefinition","parameters":{"id":28165,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28162,"mutability":"mutable","name":"underwriter_","nameLocation":"2744:12:76","nodeType":"VariableDeclaration","scope":28178,"src":"2731:25:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"},"typeName":{"id":28161,"nodeType":"UserDefinedTypeName","pathNode":{"id":28160,"name":"IUnderwriter","nameLocations":["2731:12:76"],"nodeType":"IdentifierPath","referencedDeclaration":29363,"src":"2731:12:76"},"referencedDeclaration":29363,"src":"2731:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},"visibility":"internal"},{"constant":false,"id":28164,"mutability":"mutable","name":"wallet_","nameLocation":"2766:7:76","nodeType":"VariableDeclaration","scope":28178,"src":"2758:15:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28163,"name":"address","nodeType":"ElementaryTypeName","src":"2758:7:76","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2730:44:76"},"returnParameters":{"id":28168,"nodeType":"ParameterList","parameters":[],"src":"2801:0:76"},"scope":28649,"src":"2694:170:76","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[25558],"body":{"id":28207,"nodeType":"Block","src":"2945:203:76","statements":[{"expression":{"arguments":[{"id":28187,"name":"newImpl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28180,"src":"2977:7:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":28184,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2951:5:76","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_RiskModule_$28649_$","typeString":"type(contract super RiskModule)"}},"id":28186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2957:19:76","memberName":"_upgradeValidations","nodeType":"MemberAccess","referencedDeclaration":25558,"src":"2951:25:76","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$__$","typeString":"function (address) view"}},"id":28188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2951:34:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":28189,"nodeType":"ExpressionStatement","src":"2951:34:76"},{"assignments":[28192],"declarations":[{"constant":false,"id":28192,"mutability":"mutable","name":"newRM","nameLocation":"3003:5:76","nodeType":"VariableDeclaration","scope":28207,"src":"2991:17:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},"typeName":{"id":28191,"nodeType":"UserDefinedTypeName","pathNode":{"id":28190,"name":"IRiskModule","nameLocations":["2991:11:76"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"2991:11:76"},"referencedDeclaration":29295,"src":"2991:11:76","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"visibility":"internal"}],"id":28196,"initialValue":{"arguments":[{"id":28194,"name":"newImpl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28180,"src":"3023:7:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":28193,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"3011:11:76","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}},"id":28195,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3011:20:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"nodeType":"VariableDeclarationStatement","src":"2991:40:76"},{"condition":{"commonType":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"},"id":28201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":28197,"name":"newRM","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28192,"src":"3041:5:76","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"id":28198,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3047:15:76","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":29294,"src":"3041:21:76","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPremiumsAccount_$29276_$","typeString":"function () view external returns (contract IPremiumsAccount)"}},"id":28199,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3041:23:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":28200,"name":"_premiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28047,"src":"3068:16:76","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"src":"3041:43:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28206,"nodeType":"IfStatement","src":"3037:107:76","trueBody":{"id":28205,"nodeType":"Block","src":"3086:58:76","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28202,"name":"UpgradeCannotChangePremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28079,"src":"3101:34:76","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28203,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3101:36:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28204,"nodeType":"RevertStatement","src":"3094:43:76"}]}}]},"id":28208,"implemented":true,"kind":"function","modifiers":[],"name":"_upgradeValidations","nameLocation":"2877:19:76","nodeType":"FunctionDefinition","overrides":{"id":28182,"nodeType":"OverrideSpecifier","overrides":[],"src":"2936:8:76"},"parameters":{"id":28181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28180,"mutability":"mutable","name":"newImpl","nameLocation":"2905:7:76","nodeType":"VariableDeclaration","scope":28208,"src":"2897:15:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28179,"name":"address","nodeType":"ElementaryTypeName","src":"2897:7:76","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2896:17:76"},"returnParameters":{"id":28183,"nodeType":"ParameterList","parameters":[],"src":"2945:0:76"},"scope":28649,"src":"2868:280:76","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[25582],"body":{"id":28229,"nodeType":"Block","src":"3298:102:76","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":28227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":28219,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28211,"src":"3335:11:76","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":28217,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"3311:5:76","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_RiskModule_$28649_$","typeString":"type(contract super RiskModule)"}},"id":28218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3317:17:76","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":25582,"src":"3311:23:76","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":28220,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3311:36:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":28226,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28221,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28211,"src":"3351:11:76","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":28223,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"3371:11:76","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}],"id":28222,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3366:4:76","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":28224,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3366:17:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IRiskModule_$29295","typeString":"type(contract IRiskModule)"}},"id":28225,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3384:11:76","memberName":"interfaceId","nodeType":"MemberAccess","src":"3366:29:76","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"3351:44:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3311:84:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":28216,"id":28228,"nodeType":"Return","src":"3304:91:76"}]},"documentation":{"id":28209,"nodeType":"StructuredDocumentation","src":"3152:52:76","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":28230,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"3216:17:76","nodeType":"FunctionDefinition","overrides":{"id":28213,"nodeType":"OverrideSpecifier","overrides":[],"src":"3274:8:76"},"parameters":{"id":28212,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28211,"mutability":"mutable","name":"interfaceId","nameLocation":"3241:11:76","nodeType":"VariableDeclaration","scope":28230,"src":"3234:18:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28210,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3234:6:76","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3233:20:76"},"returnParameters":{"id":28216,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28215,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28230,"src":"3292:4:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":28214,"name":"bool","nodeType":"ElementaryTypeName","src":"3292:4:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3291:6:76"},"scope":28649,"src":"3207:193:76","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[29287],"body":{"id":28239,"nodeType":"Block","src":"3491:25:76","statements":[{"expression":{"id":28237,"name":"_wallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28052,"src":"3504:7:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":28236,"id":28238,"nodeType":"Return","src":"3497:14:76"}]},"documentation":{"id":28231,"nodeType":"StructuredDocumentation","src":"3404:27:76","text":"@inheritdoc IRiskModule"},"functionSelector":"521eb273","id":28240,"implemented":true,"kind":"function","modifiers":[],"name":"wallet","nameLocation":"3443:6:76","nodeType":"FunctionDefinition","overrides":{"id":28233,"nodeType":"OverrideSpecifier","overrides":[],"src":"3464:8:76"},"parameters":{"id":28232,"nodeType":"ParameterList","parameters":[],"src":"3449:2:76"},"returnParameters":{"id":28236,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28235,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28240,"src":"3482:7:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28234,"name":"address","nodeType":"ElementaryTypeName","src":"3482:7:76","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3481:9:76"},"scope":28649,"src":"3434:82:76","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":28267,"nodeType":"Block","src":"3850:145:76","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":28252,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28247,"name":"newWallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28243,"src":"3864:9:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":28250,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3885:1:76","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":28249,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3877:7:76","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":28248,"name":"address","nodeType":"ElementaryTypeName","src":"3877:7:76","typeDescriptions":{}}},"id":28251,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3877:10:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3864:23:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":28254,"name":"newWallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28243,"src":"3903:9:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":28253,"name":"InvalidWallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28070,"src":"3889:13:76","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":28255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3889:24:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":28246,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3856:7:76","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":28256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3856:58:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":28257,"nodeType":"ExpressionStatement","src":"3856:58:76"},{"eventCall":{"arguments":[{"id":28259,"name":"_wallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28052,"src":"3946:7:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":28260,"name":"newWallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28243,"src":"3955:9:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":28258,"name":"PartnerWalletChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28058,"src":"3925:20:76","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":28261,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3925:40:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":28262,"nodeType":"EmitStatement","src":"3920:45:76"},{"expression":{"id":28265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":28263,"name":"_wallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28052,"src":"3971:7:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":28264,"name":"newWallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28243,"src":"3981:9:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3971:19:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":28266,"nodeType":"ExpressionStatement","src":"3971:19:76"}]},"documentation":{"id":28241,"nodeType":"StructuredDocumentation","src":"3520:282:76","text":" @dev Changes the wallet that will receive the partner commission of the policies created by this risk module.\n Events:\n - {RiskModule-PartnerWalletChanged}\n @param newWallet The new wallet that will receive the partner commissions. It can't be address(0)."},"functionSelector":"deaa59df","id":28268,"implemented":true,"kind":"function","modifiers":[],"name":"setWallet","nameLocation":"3814:9:76","nodeType":"FunctionDefinition","parameters":{"id":28244,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28243,"mutability":"mutable","name":"newWallet","nameLocation":"3832:9:76","nodeType":"VariableDeclaration","scope":28268,"src":"3824:17:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28242,"name":"address","nodeType":"ElementaryTypeName","src":"3824:7:76","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3823:19:76"},"returnParameters":{"id":28245,"nodeType":"ParameterList","parameters":[],"src":"3850:0:76"},"scope":28649,"src":"3805:190:76","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":28277,"nodeType":"Block","src":"4201:30:76","statements":[{"expression":{"id":28275,"name":"_underwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28050,"src":"4214:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},"functionReturnParameters":28274,"id":28276,"nodeType":"Return","src":"4207:19:76"}]},"documentation":{"id":28269,"nodeType":"StructuredDocumentation","src":"3999:141:76","text":" @notice Returns the underwriter contract, responsible for pricing and validating new policies, replacements and cancellations."},"functionSelector":"f00db260","id":28278,"implemented":true,"kind":"function","modifiers":[],"name":"underwriter","nameLocation":"4152:11:76","nodeType":"FunctionDefinition","parameters":{"id":28270,"nodeType":"ParameterList","parameters":[],"src":"4163:2:76"},"returnParameters":{"id":28274,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28273,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28278,"src":"4187:12:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"},"typeName":{"id":28272,"nodeType":"UserDefinedTypeName","pathNode":{"id":28271,"name":"IUnderwriter","nameLocations":["4187:12:76"],"nodeType":"IdentifierPath","referencedDeclaration":29363,"src":"4187:12:76"},"referencedDeclaration":29363,"src":"4187:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},"visibility":"internal"}],"src":"4186:14:76"},"scope":28649,"src":"4143:88:76","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":28309,"nodeType":"Block","src":"4550:151:76","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":28294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":28288,"name":"newUW","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28282,"src":"4572:5:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}],"id":28287,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4564:7:76","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":28286,"name":"address","nodeType":"ElementaryTypeName","src":"4564:7:76","typeDescriptions":{}}},"id":28289,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4564:14:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":28292,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4590:1:76","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":28291,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4582:7:76","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":28290,"name":"address","nodeType":"ElementaryTypeName","src":"4582:7:76","typeDescriptions":{}}},"id":28293,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4582:10:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4564:28:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":28296,"name":"newUW","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28282,"src":"4613:5:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}],"id":28295,"name":"InvalidUnderwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28075,"src":"4594:18:76","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_contract$_IUnderwriter_$29363_$returns$_t_error_$","typeString":"function (contract IUnderwriter) pure returns (error)"}},"id":28297,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4594:25:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":28285,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4556:7:76","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":28298,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4556:64:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":28299,"nodeType":"ExpressionStatement","src":"4556:64:76"},{"eventCall":{"arguments":[{"id":28301,"name":"_underwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28050,"src":"4650:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},{"id":28302,"name":"newUW","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28282,"src":"4664:5:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"},{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}],"id":28300,"name":"UnderwriterChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28066,"src":"4631:18:76","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IUnderwriter_$29363_$_t_contract$_IUnderwriter_$29363_$returns$__$","typeString":"function (contract IUnderwriter,contract IUnderwriter)"}},"id":28303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4631:39:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":28304,"nodeType":"EmitStatement","src":"4626:44:76"},{"expression":{"id":28307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":28305,"name":"_underwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28050,"src":"4676:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":28306,"name":"newUW","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28282,"src":"4691:5:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},"src":"4676:20:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},"id":28308,"nodeType":"ExpressionStatement","src":"4676:20:76"}]},"documentation":{"id":28279,"nodeType":"StructuredDocumentation","src":"4235:261:76","text":" @dev Changes the underwriter contract, responsible for pricing and validating new policies, replacements and cancellations.\n Events:\n - {RiskModule-UnderwriterChanged}\n @param newUW The new underwriter contract. It can't be address(0)"},"functionSelector":"08bb5f7b","id":28310,"implemented":true,"kind":"function","modifiers":[],"name":"setUnderwriter","nameLocation":"4508:14:76","nodeType":"FunctionDefinition","parameters":{"id":28283,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28282,"mutability":"mutable","name":"newUW","nameLocation":"4536:5:76","nodeType":"VariableDeclaration","scope":28310,"src":"4523:18:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"},"typeName":{"id":28281,"nodeType":"UserDefinedTypeName","pathNode":{"id":28280,"name":"IUnderwriter","nameLocations":["4523:12:76"],"nodeType":"IdentifierPath","referencedDeclaration":29363,"src":"4523:12:76"},"referencedDeclaration":29363,"src":"4523:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},"visibility":"internal"}],"src":"4522:20:76"},"returnParameters":{"id":28284,"nodeType":"ParameterList","parameters":[],"src":"4550:0:76"},"scope":28649,"src":"4499:202:76","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[29294],"body":{"id":28320,"nodeType":"Block","src":"4812:34:76","statements":[{"expression":{"id":28318,"name":"_premiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28047,"src":"4825:16:76","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"functionReturnParameters":28317,"id":28319,"nodeType":"Return","src":"4818:23:76"}]},"documentation":{"id":28311,"nodeType":"StructuredDocumentation","src":"4705:27:76","text":"@inheritdoc IRiskModule"},"functionSelector":"73a952e8","id":28321,"implemented":true,"kind":"function","modifiers":[],"name":"premiumsAccount","nameLocation":"4744:15:76","nodeType":"FunctionDefinition","overrides":{"id":28313,"nodeType":"OverrideSpecifier","overrides":[],"src":"4776:8:76"},"parameters":{"id":28312,"nodeType":"ParameterList","parameters":[],"src":"4759:2:76"},"returnParameters":{"id":28317,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28316,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28321,"src":"4794:16:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"},"typeName":{"id":28315,"nodeType":"UserDefinedTypeName","pathNode":{"id":28314,"name":"IPremiumsAccount","nameLocations":["4794:16:76"],"nodeType":"IdentifierPath","referencedDeclaration":29276,"src":"4794:16:76"},"referencedDeclaration":29276,"src":"4794:16:76","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"src":"4793:18:76"},"scope":28649,"src":"4735:111:76","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":28347,"nodeType":"Block","src":"5022:95:76","statements":[{"expression":{"expression":{"arguments":[{"id":28339,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28332,"src":"5060:1:76","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}},{"id":28340,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28323,"src":"5063:6:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":28341,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28325,"src":"5071:8:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":28342,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28329,"src":"5081:10:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":28343,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28327,"src":"5093:5:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"}],"expression":{"id":28337,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"5035:6:76","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":28338,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5042:17:76","memberName":"getMinimumPremium","nodeType":"MemberAccess","referencedDeclaration":22476,"src":"5035:24:76","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Params_$22230_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint40_$returns$_t_struct$_PremiumComposition_$22274_memory_ptr_$","typeString":"function (struct Policy.Params memory,uint256,uint256,uint40,uint40) pure returns (struct Policy.PremiumComposition memory)"}},"id":28344,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5035:64:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$22274_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":28345,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5100:12:76","memberName":"totalPremium","nodeType":"MemberAccess","referencedDeclaration":22273,"src":"5035:77:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":28336,"id":28346,"nodeType":"Return","src":"5028:84:76"}]},"functionSelector":"23d09ac9","id":28348,"implemented":true,"kind":"function","modifiers":[],"name":"getMinimumPremium","nameLocation":"4859:17:76","nodeType":"FunctionDefinition","parameters":{"id":28333,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28323,"mutability":"mutable","name":"payout","nameLocation":"4890:6:76","nodeType":"VariableDeclaration","scope":28348,"src":"4882:14:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28322,"name":"uint256","nodeType":"ElementaryTypeName","src":"4882:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28325,"mutability":"mutable","name":"lossProb","nameLocation":"4910:8:76","nodeType":"VariableDeclaration","scope":28348,"src":"4902:16:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28324,"name":"uint256","nodeType":"ElementaryTypeName","src":"4902:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28327,"mutability":"mutable","name":"start","nameLocation":"4931:5:76","nodeType":"VariableDeclaration","scope":28348,"src":"4924:12:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":28326,"name":"uint40","nodeType":"ElementaryTypeName","src":"4924:6:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":28329,"mutability":"mutable","name":"expiration","nameLocation":"4949:10:76","nodeType":"VariableDeclaration","scope":28348,"src":"4942:17:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":28328,"name":"uint40","nodeType":"ElementaryTypeName","src":"4942:6:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":28332,"mutability":"mutable","name":"p","nameLocation":"4986:1:76","nodeType":"VariableDeclaration","scope":28348,"src":"4965:22:76","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":28331,"nodeType":"UserDefinedTypeName","pathNode":{"id":28330,"name":"Policy.Params","nameLocations":["4965:6:76","4972:6:76"],"nodeType":"IdentifierPath","referencedDeclaration":22230,"src":"4965:13:76"},"referencedDeclaration":22230,"src":"4965:13:76","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"src":"4876:115:76"},"returnParameters":{"id":28336,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28335,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28348,"src":"5013:7:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28334,"name":"uint256","nodeType":"ElementaryTypeName","src":"5013:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5012:9:76"},"scope":28649,"src":"4850:267:76","stateMutability":"pure","virtual":false,"visibility":"public"},{"body":{"id":28457,"nodeType":"Block","src":"5544:733:76","statements":[{"assignments":[28360,28362,28364,28366,28368,28371],"declarations":[{"constant":false,"id":28360,"mutability":"mutable","name":"payout","nameLocation":"5566:6:76","nodeType":"VariableDeclaration","scope":28457,"src":"5558:14:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28359,"name":"uint256","nodeType":"ElementaryTypeName","src":"5558:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28362,"mutability":"mutable","name":"premium","nameLocation":"5588:7:76","nodeType":"VariableDeclaration","scope":28457,"src":"5580:15:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28361,"name":"uint256","nodeType":"ElementaryTypeName","src":"5580:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28364,"mutability":"mutable","name":"lossProb","nameLocation":"5611:8:76","nodeType":"VariableDeclaration","scope":28457,"src":"5603:16:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28363,"name":"uint256","nodeType":"ElementaryTypeName","src":"5603:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28366,"mutability":"mutable","name":"expiration","nameLocation":"5634:10:76","nodeType":"VariableDeclaration","scope":28457,"src":"5627:17:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":28365,"name":"uint40","nodeType":"ElementaryTypeName","src":"5627:6:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":28368,"mutability":"mutable","name":"internalId","nameLocation":"5659:10:76","nodeType":"VariableDeclaration","scope":28457,"src":"5652:17:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":28367,"name":"uint96","nodeType":"ElementaryTypeName","src":"5652:6:76","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":28371,"mutability":"mutable","name":"params_","nameLocation":"5698:7:76","nodeType":"VariableDeclaration","scope":28457,"src":"5677:28:76","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":28370,"nodeType":"UserDefinedTypeName","pathNode":{"id":28369,"name":"Policy.Params","nameLocations":["5677:6:76","5684:6:76"],"nodeType":"IdentifierPath","referencedDeclaration":22230,"src":"5677:13:76"},"referencedDeclaration":22230,"src":"5677:13:76","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"id":28380,"initialValue":{"arguments":[{"arguments":[{"id":28376,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5750:4:76","typeDescriptions":{"typeIdentifier":"t_contract$_RiskModule_$28649","typeString":"contract RiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_RiskModule_$28649","typeString":"contract RiskModule"}],"id":28375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5742:7:76","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":28374,"name":"address","nodeType":"ElementaryTypeName","src":"5742:7:76","typeDescriptions":{}}},"id":28377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5742:13:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":28378,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28351,"src":"5757:9:76","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":28372,"name":"_underwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28050,"src":"5714:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},"id":28373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5727:14:76","memberName":"priceNewPolicy","nodeType":"MemberAccess","referencedDeclaration":29321,"src":"5714:27:76","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_bytes_memory_ptr_$returns$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint96_$_t_struct$_Params_$22230_memory_ptr_$","typeString":"function (address,bytes memory) view external returns (uint256,uint256,uint256,uint40,uint96,struct Policy.Params memory)"}},"id":28379,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5714:53:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint96_$_t_struct$_Params_$22230_memory_ptr_$","typeString":"tuple(uint256,uint256,uint256,uint40,uint96,struct Policy.Params memory)"}},"nodeType":"VariableDeclarationStatement","src":"5550:217:76"},{"assignments":[28382],"declarations":[{"constant":false,"id":28382,"mutability":"mutable","name":"now_","nameLocation":"5781:4:76","nodeType":"VariableDeclaration","scope":28457,"src":"5774:11:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":28381,"name":"uint40","nodeType":"ElementaryTypeName","src":"5774:6:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"id":28388,"initialValue":{"arguments":[{"expression":{"id":28385,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5795:5:76","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":28386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5801:9:76","memberName":"timestamp","nodeType":"MemberAccess","src":"5795:15:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":28384,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5788:6:76","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":28383,"name":"uint40","nodeType":"ElementaryTypeName","src":"5788:6:76","typeDescriptions":{}}},"id":28387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5788:23:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"VariableDeclarationStatement","src":"5774:37:76"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":28395,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28389,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28362,"src":"5821:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":28392,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5837:7:76","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":28391,"name":"uint256","nodeType":"ElementaryTypeName","src":"5837:7:76","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":28390,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5832:4:76","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":28393,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5832:13:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":28394,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5846:3:76","memberName":"max","nodeType":"MemberAccess","src":"5832:17:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5821:28:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28407,"nodeType":"IfStatement","src":"5817:121:76","trueBody":{"id":28406,"nodeType":"Block","src":"5851:87:76","statements":[{"expression":{"id":28404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":28396,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28362,"src":"5859:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":28398,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28360,"src":"5887:6:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":28399,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28364,"src":"5895:8:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":28400,"name":"now_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28382,"src":"5905:4:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":28401,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28366,"src":"5911:10:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":28402,"name":"params_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28371,"src":"5923:7:76","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}],"id":28397,"name":"getMinimumPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28348,"src":"5869:17:76","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint40_$_t_struct$_Params_$22230_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint40,uint40,struct Policy.Params memory) pure returns (uint256)"}},"id":28403,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5869:62:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5859:72:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":28405,"nodeType":"ExpressionStatement","src":"5859:72:76"}]}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":28411,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28409,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28366,"src":"5951:10:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":28410,"name":"now_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28382,"src":"5964:4:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"5951:17:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":28413,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28366,"src":"5998:10:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":28414,"name":"now_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28382,"src":"6010:4:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"}],"id":28412,"name":"ExpirationMustBeInTheFuture","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28085,"src":"5970:27:76","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint40_$_t_uint40_$returns$_t_error_$","typeString":"function (uint40,uint40) pure returns (error)"}},"id":28415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5970:45:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":28408,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"5943:7:76","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":28416,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5943:73:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":28417,"nodeType":"ExpressionStatement","src":"5943:73:76"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":28424,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28419,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28353,"src":"6030:10:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":28422,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6052:1:76","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":28421,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6044:7:76","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":28420,"name":"address","nodeType":"ElementaryTypeName","src":"6044:7:76","typeDescriptions":{}}},"id":28423,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6044:10:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6030:24:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":28426,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28353,"src":"6072:10:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":28425,"name":"InvalidCustomer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28089,"src":"6056:15:76","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":28427,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6056:27:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":28418,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"6022:7:76","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":28428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6022:62:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":28429,"nodeType":"ExpressionStatement","src":"6022:62:76"},{"expression":{"id":28440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":28430,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28357,"src":"6090:6:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":28433,"name":"params_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28371,"src":"6117:7:76","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}},{"id":28434,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28362,"src":"6126:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":28435,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28360,"src":"6135:6:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":28436,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28364,"src":"6143:8:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":28437,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28366,"src":"6153:10:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":28438,"name":"now_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28382,"src":"6165:4:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"}],"expression":{"id":28431,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"6099:6:76","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":28432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6106:10:76","memberName":"initialize","nodeType":"MemberAccess","referencedDeclaration":22611,"src":"6099:17:76","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Params_$22230_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint40_$returns$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.Params memory,uint256,uint256,uint256,uint40,uint40) pure returns (struct Policy.PolicyData memory)"}},"id":28439,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6099:71:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"src":"6090:80:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":28441,"nodeType":"ExpressionStatement","src":"6090:80:76"},{"expression":{"id":28453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":28442,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28357,"src":"6176:6:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":28444,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6183:2:76","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"6176:9:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":28447,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28357,"src":"6210:6:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},{"expression":{"id":28448,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6218:3:76","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":28449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6222:6:76","memberName":"sender","nodeType":"MemberAccess","src":"6218:10:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":28450,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28353,"src":"6230:10:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":28451,"name":"internalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28368,"src":"6242:10:76","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint96","typeString":"uint96"}],"expression":{"id":28445,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25474,"src":"6188:11:76","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"id":28446,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6200:9:76","memberName":"newPolicy","nodeType":"MemberAccess","referencedDeclaration":29064,"src":"6188:21:76","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PolicyData_$22256_memory_ptr_$_t_address_$_t_address_$_t_uint96_$returns$_t_uint256_$","typeString":"function (struct Policy.PolicyData memory,address,address,uint96) external returns (uint256)"}},"id":28452,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6188:65:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6176:77:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":28454,"nodeType":"ExpressionStatement","src":"6176:77:76"},{"expression":{"id":28455,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28357,"src":"6266:6:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"functionReturnParameters":28358,"id":28456,"nodeType":"Return","src":"6259:13:76"}]},"documentation":{"id":28349,"nodeType":"StructuredDocumentation","src":"5121:306:76","text":" @dev Creates a new policy. The premium will paid by msg.sender\n @param inputData Input data that will be decoded by the _underwriter to construct the parameters for the\n                  new policy.\n @param onBehalfOf The address that will be the owner of the created policy"},"functionSelector":"8dab1952","id":28458,"implemented":true,"kind":"function","modifiers":[],"name":"newPolicy","nameLocation":"5439:9:76","nodeType":"FunctionDefinition","parameters":{"id":28354,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28351,"mutability":"mutable","name":"inputData","nameLocation":"5464:9:76","nodeType":"VariableDeclaration","scope":28458,"src":"5449:24:76","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":28350,"name":"bytes","nodeType":"ElementaryTypeName","src":"5449:5:76","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":28353,"mutability":"mutable","name":"onBehalfOf","nameLocation":"5483:10:76","nodeType":"VariableDeclaration","scope":28458,"src":"5475:18:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28352,"name":"address","nodeType":"ElementaryTypeName","src":"5475:7:76","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5448:46:76"},"returnParameters":{"id":28358,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28357,"mutability":"mutable","name":"policy","nameLocation":"5536:6:76","nodeType":"VariableDeclaration","scope":28458,"src":"5511:31:76","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":28356,"nodeType":"UserDefinedTypeName","pathNode":{"id":28355,"name":"Policy.PolicyData","nameLocations":["5511:6:76","5518:10:76"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"5511:17:76"},"referencedDeclaration":22256,"src":"5511:17:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"5510:33:76"},"scope":28649,"src":"5430:847:76","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":28487,"nodeType":"Block","src":"6698:107:76","statements":[{"body":{"id":28485,"nodeType":"Block","src":"6751:50:76","statements":[{"expression":{"arguments":[{"baseExpression":{"id":28479,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28462,"src":"6769:9:76","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":28481,"indexExpression":{"id":28480,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28468,"src":"6779:1:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6769:12:76","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":28482,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28464,"src":"6783:10:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_address","typeString":"address"}],"id":28478,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28458,"src":"6759:9:76","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes_calldata_ptr_$_t_address_$returns$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (bytes calldata,address) returns (struct Policy.PolicyData memory)"}},"id":28483,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6759:35:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":28484,"nodeType":"ExpressionStatement","src":"6759:35:76"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":28474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28471,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28468,"src":"6724:1:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":28472,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28462,"src":"6728:9:76","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":28473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6738:6:76","memberName":"length","nodeType":"MemberAccess","src":"6728:16:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6724:20:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28486,"initializationExpression":{"assignments":[28468],"declarations":[{"constant":false,"id":28468,"mutability":"mutable","name":"i","nameLocation":"6717:1:76","nodeType":"VariableDeclaration","scope":28486,"src":"6709:9:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28467,"name":"uint256","nodeType":"ElementaryTypeName","src":"6709:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":28470,"initialValue":{"hexValue":"30","id":28469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6721:1:76","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6709:13:76"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":28476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6746:3:76","subExpression":{"id":28475,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28468,"src":"6748:1:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":28477,"nodeType":"ExpressionStatement","src":"6746:3:76"},"nodeType":"ForStatement","src":"6704:97:76"}]},"documentation":{"id":28459,"nodeType":"StructuredDocumentation","src":"6281:336:76","text":" @dev Creates several policies, the premium is paid by msg.sender\n @param inputData Input data that will be decoded by the _underwriter to construct the parameters for the\n                  new policy.\n @param onBehalfOf The address that will be the owner of the created policy (same for all the policies)"},"functionSelector":"1f0f3e18","id":28488,"implemented":true,"kind":"function","modifiers":[],"name":"newPolicies","nameLocation":"6629:11:76","nodeType":"FunctionDefinition","parameters":{"id":28465,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28462,"mutability":"mutable","name":"inputData","nameLocation":"6658:9:76","nodeType":"VariableDeclaration","scope":28488,"src":"6641:26:76","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":28460,"name":"bytes","nodeType":"ElementaryTypeName","src":"6641:5:76","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":28461,"nodeType":"ArrayTypeName","src":"6641:7:76","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":28464,"mutability":"mutable","name":"onBehalfOf","nameLocation":"6677:10:76","nodeType":"VariableDeclaration","scope":28488,"src":"6669:18:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28463,"name":"address","nodeType":"ElementaryTypeName","src":"6669:7:76","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6640:48:76"},"returnParameters":{"id":28466,"nodeType":"ParameterList","parameters":[],"src":"6698:0:76"},"scope":28649,"src":"6620:185:76","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":28589,"nodeType":"Block","src":"7160:739:76","statements":[{"assignments":[28501,28503,28505,28507,28509,28511,28514],"declarations":[{"constant":false,"id":28501,"mutability":"mutable","name":"oldPolicy","nameLocation":"7199:9:76","nodeType":"VariableDeclaration","scope":28589,"src":"7174:34:76","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":28500,"nodeType":"UserDefinedTypeName","pathNode":{"id":28499,"name":"Policy.PolicyData","nameLocations":["7174:6:76","7181:10:76"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"7174:17:76"},"referencedDeclaration":22256,"src":"7174:17:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":28503,"mutability":"mutable","name":"payout","nameLocation":"7224:6:76","nodeType":"VariableDeclaration","scope":28589,"src":"7216:14:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28502,"name":"uint256","nodeType":"ElementaryTypeName","src":"7216:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28505,"mutability":"mutable","name":"premium","nameLocation":"7246:7:76","nodeType":"VariableDeclaration","scope":28589,"src":"7238:15:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28504,"name":"uint256","nodeType":"ElementaryTypeName","src":"7238:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28507,"mutability":"mutable","name":"lossProb","nameLocation":"7269:8:76","nodeType":"VariableDeclaration","scope":28589,"src":"7261:16:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28506,"name":"uint256","nodeType":"ElementaryTypeName","src":"7261:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28509,"mutability":"mutable","name":"expiration","nameLocation":"7292:10:76","nodeType":"VariableDeclaration","scope":28589,"src":"7285:17:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":28508,"name":"uint40","nodeType":"ElementaryTypeName","src":"7285:6:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":28511,"mutability":"mutable","name":"internalId","nameLocation":"7317:10:76","nodeType":"VariableDeclaration","scope":28589,"src":"7310:17:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":28510,"name":"uint96","nodeType":"ElementaryTypeName","src":"7310:6:76","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":28514,"mutability":"mutable","name":"params_","nameLocation":"7356:7:76","nodeType":"VariableDeclaration","scope":28589,"src":"7335:28:76","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":28513,"nodeType":"UserDefinedTypeName","pathNode":{"id":28512,"name":"Policy.Params","nameLocations":["7335:6:76","7342:6:76"],"nodeType":"IdentifierPath","referencedDeclaration":22230,"src":"7335:13:76"},"referencedDeclaration":22230,"src":"7335:13:76","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"id":28523,"initialValue":{"arguments":[{"arguments":[{"id":28519,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7416:4:76","typeDescriptions":{"typeIdentifier":"t_contract$_RiskModule_$28649","typeString":"contract RiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_RiskModule_$28649","typeString":"contract RiskModule"}],"id":28518,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7408:7:76","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":28517,"name":"address","nodeType":"ElementaryTypeName","src":"7408:7:76","typeDescriptions":{}}},"id":28520,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7408:13:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":28521,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28491,"src":"7423:9:76","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":28515,"name":"_underwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28050,"src":"7372:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},"id":28516,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7385:22:76","memberName":"pricePolicyReplacement","nodeType":"MemberAccess","referencedDeclaration":29345,"src":"7372:35:76","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_bytes_memory_ptr_$returns$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint96_$_t_struct$_Params_$22230_memory_ptr_$","typeString":"function (address,bytes memory) view external returns (struct Policy.PolicyData memory,uint256,uint256,uint256,uint40,uint96,struct Policy.Params memory)"}},"id":28522,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7372:61:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint96_$_t_struct$_Params_$22230_memory_ptr_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256,uint40,uint96,struct Policy.Params memory)"}},"nodeType":"VariableDeclarationStatement","src":"7166:267:76"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":28530,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28524,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28505,"src":"7444:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":28527,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7460:7:76","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":28526,"name":"uint256","nodeType":"ElementaryTypeName","src":"7460:7:76","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":28525,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7455:4:76","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":28528,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7455:13:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":28529,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7469:3:76","memberName":"max","nodeType":"MemberAccess","src":"7455:17:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7444:28:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28543,"nodeType":"IfStatement","src":"7440:132:76","trueBody":{"id":28542,"nodeType":"Block","src":"7474:98:76","statements":[{"expression":{"id":28540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":28531,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28505,"src":"7482:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":28533,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28503,"src":"7510:6:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":28534,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28507,"src":"7518:8:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":28535,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28501,"src":"7528:9:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":28536,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7538:5:76","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":22253,"src":"7528:15:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":28537,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28509,"src":"7545:10:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":28538,"name":"params_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28514,"src":"7557:7:76","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}],"id":28532,"name":"getMinimumPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28348,"src":"7492:17:76","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint40_$_t_struct$_Params_$22230_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint40,uint40,struct Policy.Params memory) pure returns (uint256)"}},"id":28539,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7492:73:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7482:83:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":28541,"nodeType":"ExpressionStatement","src":"7482:83:76"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":28550,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28544,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28509,"src":"7581:10:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"arguments":[{"expression":{"id":28547,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"7601:5:76","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":28548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7607:9:76","memberName":"timestamp","nodeType":"MemberAccess","src":"7601:15:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":28546,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7594:6:76","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":28545,"name":"uint40","nodeType":"ElementaryTypeName","src":"7594:6:76","typeDescriptions":{}}},"id":28549,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7594:23:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"7581:36:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28560,"nodeType":"IfStatement","src":"7577:113:76","trueBody":{"errorCall":{"arguments":[{"id":28552,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28509,"src":"7654:10:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"arguments":[{"expression":{"id":28555,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"7673:5:76","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":28556,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7679:9:76","memberName":"timestamp","nodeType":"MemberAccess","src":"7673:15:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":28554,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7666:6:76","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":28553,"name":"uint40","nodeType":"ElementaryTypeName","src":"7666:6:76","typeDescriptions":{}}},"id":28557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7666:23:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"}],"id":28551,"name":"ExpirationMustBeInTheFuture","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28085,"src":"7626:27:76","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint40_$_t_uint40_$returns$_t_error_$","typeString":"function (uint40,uint40) pure returns (error)"}},"id":28558,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7626:64:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28559,"nodeType":"RevertStatement","src":"7619:71:76"}},{"expression":{"id":28572,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":28561,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28495,"src":"7696:6:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":28564,"name":"params_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28514,"src":"7723:7:76","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}},{"id":28565,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28505,"src":"7732:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":28566,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28503,"src":"7741:6:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":28567,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28507,"src":"7749:8:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":28568,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28509,"src":"7759:10:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"expression":{"id":28569,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28501,"src":"7771:9:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":28570,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7781:5:76","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":22253,"src":"7771:15:76","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"}],"expression":{"id":28562,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"7705:6:76","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":28563,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7712:10:76","memberName":"initialize","nodeType":"MemberAccess","referencedDeclaration":22611,"src":"7705:17:76","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Params_$22230_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint40_$returns$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.Params memory,uint256,uint256,uint256,uint40,uint40) pure returns (struct Policy.PolicyData memory)"}},"id":28571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7705:82:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"src":"7696:91:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":28573,"nodeType":"ExpressionStatement","src":"7696:91:76"},{"expression":{"id":28585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":28574,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28495,"src":"7794:6:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":28576,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7801:2:76","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"7794:9:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":28579,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28501,"src":"7832:9:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},{"id":28580,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28495,"src":"7843:6:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},{"expression":{"id":28581,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7851:3:76","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":28582,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7855:6:76","memberName":"sender","nodeType":"MemberAccess","src":"7851:10:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":28583,"name":"internalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28511,"src":"7863:10:76","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"},{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint96","typeString":"uint96"}],"expression":{"id":28577,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25474,"src":"7806:11:76","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"id":28578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7818:13:76","memberName":"replacePolicy","nodeType":"MemberAccess","referencedDeclaration":29080,"src":"7806:25:76","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PolicyData_$22256_memory_ptr_$_t_struct$_PolicyData_$22256_memory_ptr_$_t_address_$_t_uint96_$returns$_t_uint256_$","typeString":"function (struct Policy.PolicyData memory,struct Policy.PolicyData memory,address,uint96) external returns (uint256)"}},"id":28584,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7806:68:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7794:80:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":28586,"nodeType":"ExpressionStatement","src":"7794:80:76"},{"expression":{"id":28587,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28495,"src":"7888:6:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"functionReturnParameters":28496,"id":28588,"nodeType":"Return","src":"7881:13:76"}]},"documentation":{"id":28489,"nodeType":"StructuredDocumentation","src":"6809:240:76","text":" @dev Replaces a policy with a new one, with the same owner\n @param inputData Input data that will be decoded by the _underwriter to construct the oldPolicy and the\n                  parameters for the new policy."},"functionSelector":"68beecf9","id":28590,"implemented":true,"kind":"function","modifiers":[],"name":"replacePolicy","nameLocation":"7061:13:76","nodeType":"FunctionDefinition","parameters":{"id":28492,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28491,"mutability":"mutable","name":"inputData","nameLocation":"7090:9:76","nodeType":"VariableDeclaration","scope":28590,"src":"7075:24:76","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":28490,"name":"bytes","nodeType":"ElementaryTypeName","src":"7075:5:76","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7074:26:76"},"returnParameters":{"id":28496,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28495,"mutability":"mutable","name":"policy","nameLocation":"7152:6:76","nodeType":"VariableDeclaration","scope":28590,"src":"7127:31:76","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":28494,"nodeType":"UserDefinedTypeName","pathNode":{"id":28493,"name":"Policy.PolicyData","nameLocations":["7127:6:76","7134:10:76"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"7127:17:76"},"referencedDeclaration":22256,"src":"7127:17:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"7126:33:76"},"scope":28649,"src":"7052:847:76","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"body":{"id":28625,"nodeType":"Block","src":"8245:308:76","statements":[{"assignments":[28600,28602,28604,28606],"declarations":[{"constant":false,"id":28600,"mutability":"mutable","name":"policyToCancel","nameLocation":"8284:14:76","nodeType":"VariableDeclaration","scope":28625,"src":"8259:39:76","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":28599,"nodeType":"UserDefinedTypeName","pathNode":{"id":28598,"name":"Policy.PolicyData","nameLocations":["8259:6:76","8266:10:76"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"8259:17:76"},"referencedDeclaration":22256,"src":"8259:17:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":28602,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"8314:17:76","nodeType":"VariableDeclaration","scope":28625,"src":"8306:25:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28601,"name":"uint256","nodeType":"ElementaryTypeName","src":"8306:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28604,"mutability":"mutable","name":"jrCocRefund","nameLocation":"8347:11:76","nodeType":"VariableDeclaration","scope":28625,"src":"8339:19:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28603,"name":"uint256","nodeType":"ElementaryTypeName","src":"8339:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28606,"mutability":"mutable","name":"srCocRefund","nameLocation":"8374:11:76","nodeType":"VariableDeclaration","scope":28625,"src":"8366:19:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28605,"name":"uint256","nodeType":"ElementaryTypeName","src":"8366:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":28615,"initialValue":{"arguments":[{"arguments":[{"id":28611,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"8439:4:76","typeDescriptions":{"typeIdentifier":"t_contract$_RiskModule_$28649","typeString":"contract RiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_RiskModule_$28649","typeString":"contract RiskModule"}],"id":28610,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8431:7:76","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":28609,"name":"address","nodeType":"ElementaryTypeName","src":"8431:7:76","typeDescriptions":{}}},"id":28612,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8431:13:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":28613,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28593,"src":"8446:9:76","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":28607,"name":"_underwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28050,"src":"8394:12:76","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$29363","typeString":"contract IUnderwriter"}},"id":28608,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8407:23:76","memberName":"pricePolicyCancellation","nodeType":"MemberAccess","referencedDeclaration":29362,"src":"8394:36:76","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_bytes_memory_ptr_$returns$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"function (address,bytes memory) view external returns (struct Policy.PolicyData memory,uint256,uint256,uint256)"}},"id":28614,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8394:62:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"8251:205:76"},{"expression":{"arguments":[{"id":28619,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28600,"src":"8488:14:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},{"id":28620,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28602,"src":"8504:17:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":28621,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28604,"src":"8523:11:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":28622,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28606,"src":"8536:11:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":28616,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25474,"src":"8463:11:76","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"id":28618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8475:12:76","memberName":"cancelPolicy","nodeType":"MemberAccess","referencedDeclaration":29093,"src":"8463:24:76","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (struct Policy.PolicyData memory,uint256,uint256,uint256) external"}},"id":28623,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8463:85:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":28624,"nodeType":"ExpressionStatement","src":"8463:85:76"}]},"documentation":{"id":28591,"nodeType":"StructuredDocumentation","src":"7903:274:76","text":" @dev Cancels a policy, giving back all (or part) of the pure premium and the non-accrued CoC\n @param inputData Input data that will be decoded by the _underwriter to construct the oldPolicy and the\n                  parameters for the new policy."},"functionSelector":"73d0efd0","id":28626,"implemented":true,"kind":"function","modifiers":[],"name":"cancelPolicy","nameLocation":"8189:12:76","nodeType":"FunctionDefinition","parameters":{"id":28594,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28593,"mutability":"mutable","name":"inputData","nameLocation":"8217:9:76","nodeType":"VariableDeclaration","scope":28626,"src":"8202:24:76","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":28592,"name":"bytes","nodeType":"ElementaryTypeName","src":"8202:5:76","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8201:26:76"},"returnParameters":{"id":28595,"nodeType":"ParameterList","parameters":[],"src":"8245:0:76"},"scope":28649,"src":"8180:373:76","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"body":{"id":28642,"nodeType":"Block","src":"9019:52:76","statements":[{"expression":{"arguments":[{"id":28638,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28630,"src":"9051:6:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"id":28639,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28632,"src":"9059:6:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":28635,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25474,"src":"9025:11:76","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"id":28637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9037:13:76","memberName":"resolvePolicy","nodeType":"MemberAccess","referencedDeclaration":29102,"src":"9025:25:76","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$returns$__$","typeString":"function (struct Policy.PolicyData memory,uint256) external"}},"id":28640,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9025:41:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":28641,"nodeType":"ExpressionStatement","src":"9025:41:76"}]},"documentation":{"id":28627,"nodeType":"StructuredDocumentation","src":"8557:376:76","text":" @dev Resolves a policy, if payout > 0, it pays to the policy holder.\n Requirements:\n - payout <= policy.payout\n - block.timestamp >= policy.expiration\n Emits:\n - {PolicyPool.PolicyResolved}\n @param policy The policy previously created (from {NewPolicy} event)\n @param payout The payout to transfer to the policy holder"},"functionSelector":"bd644c56","id":28643,"implemented":true,"kind":"function","modifiers":[],"name":"resolvePolicy","nameLocation":"8945:13:76","nodeType":"FunctionDefinition","parameters":{"id":28633,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28630,"mutability":"mutable","name":"policy","nameLocation":"8986:6:76","nodeType":"VariableDeclaration","scope":28643,"src":"8959:33:76","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":28629,"nodeType":"UserDefinedTypeName","pathNode":{"id":28628,"name":"Policy.PolicyData","nameLocations":["8959:6:76","8966:10:76"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"8959:17:76"},"referencedDeclaration":22256,"src":"8959:17:76","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":28632,"mutability":"mutable","name":"payout","nameLocation":"9002:6:76","nodeType":"VariableDeclaration","scope":28643,"src":"8994:14:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28631,"name":"uint256","nodeType":"ElementaryTypeName","src":"8994:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8958:51:76"},"returnParameters":{"id":28634,"nodeType":"ParameterList","parameters":[],"src":"9019:0:76"},"scope":28649,"src":"8936:135:76","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"constant":false,"documentation":{"id":28644,"nodeType":"StructuredDocumentation","src":"9075:246:76","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":28648,"mutability":"mutable","name":"__gap","nameLocation":"9344:5:76","nodeType":"VariableDeclaration","scope":28649,"src":"9324:25:76","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$48_storage","typeString":"uint256[48]"},"typeName":{"baseType":{"id":28645,"name":"uint256","nodeType":"ElementaryTypeName","src":"9324:7:76","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":28647,"length":{"hexValue":"3438","id":28646,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9332:2:76","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"nodeType":"ArrayTypeName","src":"9324:11:76","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$48_storage_ptr","typeString":"uint256[48]"}},"visibility":"private"}],"scope":28650,"src":"708:8644:76","usedErrors":[6630,6643,6967,6970,7241,7246,9606,10740,22281,22288,25476,25478,25480,28070,28075,28077,28079,28085,28089],"usedEvents":[6213,6975,28058,28066]}],"src":"39:9314:76"},"id":76},"contracts/hardhat-dependency-compiler/@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol","exportedSymbols":{"AMPUtils":[240],"AccessManagedProxy":[330],"AccessManagedProxyBase":[474],"IAccessManagedProxy":[519],"IAccessManager":[6119]},"id":28653,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":28651,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:77"},{"absolutePath":"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol","file":"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol","id":28652,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28653,"sourceUnit":331,"src":"63:71:77","symbolAliases":[],"unitAlias":""}],"src":"39:96:77"},"id":77},"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestCurrency.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestCurrency.sol","exportedSymbols":{"ERC20":[7899],"TestCurrency":[589]},"id":28656,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":28654,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:78"},{"absolutePath":"@ensuro/utils/contracts/TestCurrency.sol","file":"@ensuro/utils/contracts/TestCurrency.sol","id":28655,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28656,"sourceUnit":590,"src":"63:50:78","symbolAliases":[],"unitAlias":""}],"src":"39:75:78"},"id":78},"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestCurrencyPermit.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestCurrencyPermit.sol","exportedSymbols":{"ERC20":[7899],"ERC20Permit":[8131],"TestCurrencyPermit":[664]},"id":28659,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":28657,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:79"},{"absolutePath":"@ensuro/utils/contracts/TestCurrencyPermit.sol","file":"@ensuro/utils/contracts/TestCurrencyPermit.sol","id":28658,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28659,"sourceUnit":665,"src":"63:56:79","symbolAliases":[],"unitAlias":""}],"src":"39:81:79"},"id":79},"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestERC4626.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestERC4626.sol","exportedSymbols":{"ERC20":[7899],"ERC4626":[8837],"IERC20Metadata":[8863],"IMintable":[687],"TestERC4626":[998]},"id":28662,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":28660,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:80"},{"absolutePath":"@ensuro/utils/contracts/TestERC4626.sol","file":"@ensuro/utils/contracts/TestERC4626.sol","id":28661,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28662,"sourceUnit":999,"src":"63:49:80","symbolAliases":[],"unitAlias":""}],"src":"39:74:80"},"id":80},"contracts/hardhat-dependency-compiler/@openzeppelin/contracts/access/manager/AccessManager.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@openzeppelin/contracts/access/manager/AccessManager.sol","exportedSymbols":{"AccessManager":[5649],"Address":[9984],"Context":[10727],"Hashes":[13964],"IAccessManaged":[5689],"IAccessManager":[6119],"Math":[15914],"Multicall":[11297],"Time":[18097]},"id":28665,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":28663,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:81"},{"absolutePath":"@openzeppelin/contracts/access/manager/AccessManager.sol","file":"@openzeppelin/contracts/access/manager/AccessManager.sol","id":28664,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28665,"sourceUnit":5650,"src":"63:66:81","symbolAliases":[],"unitAlias":""}],"src":"39:91:81"},"id":81},"contracts/hardhat-dependency-compiler/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","exportedSymbols":{"ERC1967Proxy":[6610],"ERC1967Utils":[6904],"Proxy":[6940]},"id":28668,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":28666,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:82"},{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","file":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","id":28667,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28668,"sourceUnit":6611,"src":"63:64:82","symbolAliases":[],"unitAlias":""}],"src":"39:89:82"},"id":82},"contracts/interfaces/ICooler.sol":{"ast":{"absolutePath":"contracts/interfaces/ICooler.sol","exportedSymbols":{"ICooler":[28695],"IEToken":[28869]},"id":28696,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":28669,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:83"},{"absolutePath":"contracts/interfaces/IEToken.sol","file":"./IEToken.sol","id":28671,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28696,"sourceUnit":28870,"src":"65:38:83","symbolAliases":[{"foreign":{"id":28670,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28869,"src":"73:7:83","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"ICooler","contractDependencies":[],"contractKind":"interface","documentation":{"id":28672,"nodeType":"StructuredDocumentation","src":"105:180:83","text":" @title ICooler - Interface of Cooler contracts, for eTokens that have cooldown\n @dev This contract will hold the tokens during the cooldown period\n @author Ensuro"},"fullyImplemented":false,"id":28695,"linearizedBaseContracts":[28695],"name":"ICooler","nameLocation":"296:7:83","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":28673,"nodeType":"StructuredDocumentation","src":"308:197:83","text":" @notice Returns the amount of pending (scheduled) withdrawals for a given eToken\n @param eToken The eToken (see {EToken})\n @return The amount in currency that is pending"},"functionSelector":"f3f43703","id":28681,"implemented":false,"kind":"function","modifiers":[],"name":"pendingWithdrawals","nameLocation":"517:18:83","nodeType":"FunctionDefinition","parameters":{"id":28677,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28676,"mutability":"mutable","name":"eToken","nameLocation":"544:6:83","nodeType":"VariableDeclaration","scope":28681,"src":"536:14:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":28675,"nodeType":"UserDefinedTypeName","pathNode":{"id":28674,"name":"IEToken","nameLocations":["536:7:83"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"536:7:83"},"referencedDeclaration":28869,"src":"536:7:83","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"535:16:83"},"returnParameters":{"id":28680,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28679,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28681,"src":"575:7:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28678,"name":"uint256","nodeType":"ElementaryTypeName","src":"575:7:83","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"574:9:83"},"scope":28695,"src":"508:76:83","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":28682,"nodeType":"StructuredDocumentation","src":"588:315:83","text":" @notice Returns the cooldown period in seconds required for withdrawals in a given eToken\n @param eToken The eToken (see {EToken})\n @param owner  The owner of the tokens requested to withdraw\n @param amount The amount requested to withdraw\n @return The cooldown period in seconds"},"functionSelector":"5ce095ee","id":28694,"implemented":false,"kind":"function","modifiers":[],"name":"cooldownPeriod","nameLocation":"915:14:83","nodeType":"FunctionDefinition","parameters":{"id":28690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28685,"mutability":"mutable","name":"eToken","nameLocation":"938:6:83","nodeType":"VariableDeclaration","scope":28694,"src":"930:14:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":28684,"nodeType":"UserDefinedTypeName","pathNode":{"id":28683,"name":"IEToken","nameLocations":["930:7:83"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"930:7:83"},"referencedDeclaration":28869,"src":"930:7:83","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":28687,"mutability":"mutable","name":"owner","nameLocation":"954:5:83","nodeType":"VariableDeclaration","scope":28694,"src":"946:13:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28686,"name":"address","nodeType":"ElementaryTypeName","src":"946:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28689,"mutability":"mutable","name":"amount","nameLocation":"969:6:83","nodeType":"VariableDeclaration","scope":28694,"src":"961:14:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28688,"name":"uint256","nodeType":"ElementaryTypeName","src":"961:7:83","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"929:47:83"},"returnParameters":{"id":28693,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28692,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28694,"src":"1000:6:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":28691,"name":"uint40","nodeType":"ElementaryTypeName","src":"1000:6:83","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"999:8:83"},"scope":28695,"src":"906:102:83","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":28696,"src":"286:724:83","usedErrors":[],"usedEvents":[]}],"src":"39:972:83"},"id":83},"contracts/interfaces/IEToken.sol":{"ast":{"absolutePath":"contracts/interfaces/IEToken.sol","exportedSymbols":{"IEToken":[28869]},"id":28870,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":28697,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:84"},{"abstract":false,"baseContracts":[],"canonicalName":"IEToken","contractDependencies":[],"contractKind":"interface","documentation":{"id":28698,"nodeType":"StructuredDocumentation","src":"65:131:84","text":" @title IEToken interface\n @notice Interface for EToken smart contracts, these are the capital pools.\n @author Ensuro"},"fullyImplemented":false,"id":28869,"linearizedBaseContracts":[28869],"name":"IEToken","nameLocation":"207:7:84","nodeType":"ContractDefinition","nodes":[{"canonicalName":"IEToken.Parameter","documentation":{"id":28699,"nodeType":"StructuredDocumentation","src":"219:540:84","text":" @notice Enum of the configurable parameters in an EToken.\n @dev These are the supported parameter types:\n - liquidityRequirement: target solvency/liquidity constraint (typically 1, scales the SCR to lock more)\n - minUtilizationRate: lower bound for utilization rate after deposits (prevents excess idle liquidity)\n - maxUtilizationRate: upper bound for utilization rate after capital lock (prevents locking all the capital)\n - internalLoanInterestRate: annualized rate charged on internal loans (wad)"},"id":28704,"members":[{"id":28700,"name":"liquidityRequirement","nameLocation":"783:20:84","nodeType":"EnumValue","src":"783:20:84"},{"id":28701,"name":"minUtilizationRate","nameLocation":"809:18:84","nodeType":"EnumValue","src":"809:18:84"},{"id":28702,"name":"maxUtilizationRate","nameLocation":"833:18:84","nodeType":"EnumValue","src":"833:18:84"},{"id":28703,"name":"internalLoanInterestRate","nameLocation":"857:24:84","nodeType":"EnumValue","src":"857:24:84"}],"name":"Parameter","nameLocation":"767:9:84","nodeType":"EnumDefinition","src":"762:123:84"},{"anonymous":false,"documentation":{"id":28705,"nodeType":"StructuredDocumentation","src":"889:286:84","text":" @notice Event emitted when part of the funds of the eToken are locked as solvency capital.\n @param policyId The id of the policy that locks the capital\n @param interestRate The annualized interestRate paid for the capital (wad)\n @param value The amount locked"},"eventSelector":"266dc24a75ea4c7d7c74f89a78dc3a44307babf0b588230497189fc46d71693d","id":28713,"name":"SCRLocked","nameLocation":"1184:9:84","nodeType":"EventDefinition","parameters":{"id":28712,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28707,"indexed":true,"mutability":"mutable","name":"policyId","nameLocation":"1210:8:84","nodeType":"VariableDeclaration","scope":28713,"src":"1194:24:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28706,"name":"uint256","nodeType":"ElementaryTypeName","src":"1194:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28709,"indexed":false,"mutability":"mutable","name":"interestRate","nameLocation":"1228:12:84","nodeType":"VariableDeclaration","scope":28713,"src":"1220:20:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28708,"name":"uint256","nodeType":"ElementaryTypeName","src":"1220:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28711,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"1250:5:84","nodeType":"VariableDeclaration","scope":28713,"src":"1242:13:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28710,"name":"uint256","nodeType":"ElementaryTypeName","src":"1242:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1193:63:84"},"src":"1178:79:84"},{"anonymous":false,"documentation":{"id":28714,"nodeType":"StructuredDocumentation","src":"1261:561:84","text":" @notice Event emitted when the locked funds are unlocked and no longer used as solvency capital.\n @param policyId The id of the policy that unlocks the capital (should be the that locked before with SCRLocked)\n @param interestRate The annualized interestRate that was paid for the capital (wad)\n @param value The amount unlocked\n @param adjustment Discrete amount of adjustment done to the totalSupply to reflect when more or less\n                   than the received cost of capital has been accrued since the SCR was locked."},"eventSelector":"82e3211b2071ba731d809bc922f607d914d7cb7d76b03e72acbe7753613e21f3","id":28724,"name":"SCRUnlocked","nameLocation":"1831:11:84","nodeType":"EventDefinition","parameters":{"id":28723,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28716,"indexed":true,"mutability":"mutable","name":"policyId","nameLocation":"1859:8:84","nodeType":"VariableDeclaration","scope":28724,"src":"1843:24:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28715,"name":"uint256","nodeType":"ElementaryTypeName","src":"1843:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28718,"indexed":false,"mutability":"mutable","name":"interestRate","nameLocation":"1877:12:84","nodeType":"VariableDeclaration","scope":28724,"src":"1869:20:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28717,"name":"uint256","nodeType":"ElementaryTypeName","src":"1869:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28720,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"1899:5:84","nodeType":"VariableDeclaration","scope":28724,"src":"1891:13:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28719,"name":"uint256","nodeType":"ElementaryTypeName","src":"1891:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28722,"indexed":false,"mutability":"mutable","name":"adjustment","nameLocation":"1913:10:84","nodeType":"VariableDeclaration","scope":28724,"src":"1906:17:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":28721,"name":"int256","nodeType":"ElementaryTypeName","src":"1906:6:84","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1842:82:84"},"src":"1825:100:84"},{"documentation":{"id":28725,"nodeType":"StructuredDocumentation","src":"1929:107:84","text":" @notice Returns the amount of capital that's locked as solvency capital for active policies."},"functionSelector":"6c6f4542","id":28730,"implemented":false,"kind":"function","modifiers":[],"name":"scr","nameLocation":"2048:3:84","nodeType":"FunctionDefinition","parameters":{"id":28726,"nodeType":"ParameterList","parameters":[],"src":"2051:2:84"},"returnParameters":{"id":28729,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28728,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28730,"src":"2077:7:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28727,"name":"uint256","nodeType":"ElementaryTypeName","src":"2077:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2076:9:84"},"scope":28869,"src":"2039:47:84","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":28731,"nodeType":"StructuredDocumentation","src":"2090:492:84","text":" @notice Locks part of the liquidity of the EToken as solvency capital.\n @param policyId The id of the policy that locks the capital\n @param scrAmount The amount to lock\n @param policyInterestRate The annualized interest rate (wad) to be paid for the `scrAmount`\n @custom:pre Must be called by a _borrower_ (PremiumsAccount) previously added with `addBorrower`.\n @custom:pre `scrAmount` <= `fundsAvailableToLock()`\n @custom:emits SCRLocked"},"functionSelector":"4ffcda8c","id":28740,"implemented":false,"kind":"function","modifiers":[],"name":"lockScr","nameLocation":"2594:7:84","nodeType":"FunctionDefinition","parameters":{"id":28738,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28733,"mutability":"mutable","name":"policyId","nameLocation":"2610:8:84","nodeType":"VariableDeclaration","scope":28740,"src":"2602:16:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28732,"name":"uint256","nodeType":"ElementaryTypeName","src":"2602:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28735,"mutability":"mutable","name":"scrAmount","nameLocation":"2628:9:84","nodeType":"VariableDeclaration","scope":28740,"src":"2620:17:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28734,"name":"uint256","nodeType":"ElementaryTypeName","src":"2620:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28737,"mutability":"mutable","name":"policyInterestRate","nameLocation":"2647:18:84","nodeType":"VariableDeclaration","scope":28740,"src":"2639:26:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28736,"name":"uint256","nodeType":"ElementaryTypeName","src":"2639:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2601:65:84"},"returnParameters":{"id":28739,"nodeType":"ParameterList","parameters":[],"src":"2675:0:84"},"scope":28869,"src":"2585:91:84","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":28741,"nodeType":"StructuredDocumentation","src":"2680:847:84","text":" @notice Unlocks solvency capital previously locked with `lockScr`.\n @dev The capital no longer needed as solvency, enabling withdrawal.\n @param policyId The id of the policy that locked the scr originally\n @param scrAmount The amount to unlock\n @param policyInterestRate The annualized interest rate that was paid for the `scrAmount`, must be the same that\n                           was sent in `lockScr` call.\n @param adjustment Discrete amount of adjustment done to the totalSupply to reflect when more or less\n                   than the received cost of capital has been accrued since the SCR was locked.\n @custom:pre Must be called by a _borrower_ (PremiumsAccount) previously added with `addBorrower`.\n @custom:pre `scrAmount` must be <= {scr}\n @custom:emits SCRUnlocked"},"functionSelector":"a227dc41","id":28752,"implemented":false,"kind":"function","modifiers":[],"name":"unlockScr","nameLocation":"3539:9:84","nodeType":"FunctionDefinition","parameters":{"id":28750,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28743,"mutability":"mutable","name":"policyId","nameLocation":"3557:8:84","nodeType":"VariableDeclaration","scope":28752,"src":"3549:16:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28742,"name":"uint256","nodeType":"ElementaryTypeName","src":"3549:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28745,"mutability":"mutable","name":"scrAmount","nameLocation":"3575:9:84","nodeType":"VariableDeclaration","scope":28752,"src":"3567:17:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28744,"name":"uint256","nodeType":"ElementaryTypeName","src":"3567:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28747,"mutability":"mutable","name":"policyInterestRate","nameLocation":"3594:18:84","nodeType":"VariableDeclaration","scope":28752,"src":"3586:26:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28746,"name":"uint256","nodeType":"ElementaryTypeName","src":"3586:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28749,"mutability":"mutable","name":"adjustment","nameLocation":"3621:10:84","nodeType":"VariableDeclaration","scope":28752,"src":"3614:17:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":28748,"name":"int256","nodeType":"ElementaryTypeName","src":"3614:6:84","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"3548:84:84"},"returnParameters":{"id":28751,"nodeType":"ParameterList","parameters":[],"src":"3641:0:84"},"scope":28869,"src":"3530:112:84","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":28753,"nodeType":"StructuredDocumentation","src":"3646:899:84","text":" @notice Unlocks solvency capital previously locked with `lockScr`, doing a refund of the CoC previously received\n @dev The capital no longer needed as solvency . It refunds part of the Coc received that wasn't accrued (or if\n it was already accrued, it is adjusted). The refund doesn't affect the totalSupply. It just changes the reserves.\n @param policyId The id of the policy that locked the scr originally\n @param scrAmount The amount to unlock\n @param policyInterestRate The annualized interest rate that was paid for the `scrAmount`, must be the same that\n was sent in `lockScr` call.\n @param receiver The address of the receiver of the refund\n @param refundAmount The amount to refund\n @custom:pre Must be called by a _borrower_ previously added with `addBorrower`.\n @custom:emits SCRUnlocked\n @custom:emits CoCRefunded"},"functionSelector":"3ad2820b","id":28768,"implemented":false,"kind":"function","modifiers":[],"name":"unlockScrWithRefund","nameLocation":"4557:19:84","nodeType":"FunctionDefinition","parameters":{"id":28766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28755,"mutability":"mutable","name":"policyId","nameLocation":"4590:8:84","nodeType":"VariableDeclaration","scope":28768,"src":"4582:16:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28754,"name":"uint256","nodeType":"ElementaryTypeName","src":"4582:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28757,"mutability":"mutable","name":"scrAmount","nameLocation":"4612:9:84","nodeType":"VariableDeclaration","scope":28768,"src":"4604:17:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28756,"name":"uint256","nodeType":"ElementaryTypeName","src":"4604:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28759,"mutability":"mutable","name":"policyInterestRate","nameLocation":"4635:18:84","nodeType":"VariableDeclaration","scope":28768,"src":"4627:26:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28758,"name":"uint256","nodeType":"ElementaryTypeName","src":"4627:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28761,"mutability":"mutable","name":"adjustment","nameLocation":"4666:10:84","nodeType":"VariableDeclaration","scope":28768,"src":"4659:17:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":28760,"name":"int256","nodeType":"ElementaryTypeName","src":"4659:6:84","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":28763,"mutability":"mutable","name":"receiver","nameLocation":"4690:8:84","nodeType":"VariableDeclaration","scope":28768,"src":"4682:16:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28762,"name":"address","nodeType":"ElementaryTypeName","src":"4682:7:84","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28765,"mutability":"mutable","name":"refundAmount","nameLocation":"4712:12:84","nodeType":"VariableDeclaration","scope":28768,"src":"4704:20:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28764,"name":"uint256","nodeType":"ElementaryTypeName","src":"4704:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4576:152:84"},"returnParameters":{"id":28767,"nodeType":"ParameterList","parameters":[],"src":"4737:0:84"},"scope":28869,"src":"4548:190:84","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":28769,"nodeType":"StructuredDocumentation","src":"4742:861:84","text":" @notice Registers a deposit of liquidity in the pool.\n @dev Called from the PolicyPool, assumes the amount has already been transferred. `amount` of eToken are minted\n and given to the provider in exchange of the liquidity provided.\n @param amount The amount deposited.\n @param caller The user that initiates the deposit\n @param receiver The user that will receive the minted eTokens\n @custom:pre Must be called by `policyPool()`\n @custom:pre The amount was transferred\n @custom:pre `utilizationRate()` after the deposit is >= `minUtilizationRate()`\n @custom:pre If there is a whitelist, caller must be authorized to deposit. If caller != receiver, then transfer from caller\n             to received must be authorized\n @custom:emits Transfer with `from` = 0x0 and to = `provider` (mint)"},"functionSelector":"2e2d2984","id":28778,"implemented":false,"kind":"function","modifiers":[],"name":"deposit","nameLocation":"5615:7:84","nodeType":"FunctionDefinition","parameters":{"id":28776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28771,"mutability":"mutable","name":"amount","nameLocation":"5631:6:84","nodeType":"VariableDeclaration","scope":28778,"src":"5623:14:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28770,"name":"uint256","nodeType":"ElementaryTypeName","src":"5623:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28773,"mutability":"mutable","name":"caller","nameLocation":"5647:6:84","nodeType":"VariableDeclaration","scope":28778,"src":"5639:14:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28772,"name":"address","nodeType":"ElementaryTypeName","src":"5639:7:84","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28775,"mutability":"mutable","name":"receiver","nameLocation":"5663:8:84","nodeType":"VariableDeclaration","scope":28778,"src":"5655:16:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28774,"name":"address","nodeType":"ElementaryTypeName","src":"5655:7:84","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5622:50:84"},"returnParameters":{"id":28777,"nodeType":"ParameterList","parameters":[],"src":"5681:0:84"},"scope":28869,"src":"5606:76:84","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":28779,"nodeType":"StructuredDocumentation","src":"5686:786:84","text":" @notice Withdraws an amount from an eToken.\n @dev `withdrawn` eTokens are be burned and the user receives the same amount in `currency()`.\n If `amount == type(uint256).max`, it withdraws up to `maxWithdraw` (i.e., as much as possible).\n Otherwise, it reverts if `amount > maxWithdraw`.\n @param amount The amount to withdraw. If `amount == type(uint256).max`, withdraws up to `maxWithdraw`.\n @param caller The user that initiates the withdrawal\n @param owner The owner of the eTokens (either caller==owner or caller has allowance)\n @param receiver The address that will receive the resulting `currency()`\n @custom:pre Must be called by `policyPool()`\n @custom:emits Transfer with `from` = `provider` and to = `0x0` (burn)"},"functionSelector":"23e103a8","id":28792,"implemented":false,"kind":"function","modifiers":[],"name":"withdraw","nameLocation":"6484:8:84","nodeType":"FunctionDefinition","parameters":{"id":28788,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28781,"mutability":"mutable","name":"amount","nameLocation":"6506:6:84","nodeType":"VariableDeclaration","scope":28792,"src":"6498:14:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28780,"name":"uint256","nodeType":"ElementaryTypeName","src":"6498:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28783,"mutability":"mutable","name":"caller","nameLocation":"6526:6:84","nodeType":"VariableDeclaration","scope":28792,"src":"6518:14:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28782,"name":"address","nodeType":"ElementaryTypeName","src":"6518:7:84","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28785,"mutability":"mutable","name":"owner","nameLocation":"6546:5:84","nodeType":"VariableDeclaration","scope":28792,"src":"6538:13:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28784,"name":"address","nodeType":"ElementaryTypeName","src":"6538:7:84","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28787,"mutability":"mutable","name":"receiver","nameLocation":"6565:8:84","nodeType":"VariableDeclaration","scope":28792,"src":"6557:16:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28786,"name":"address","nodeType":"ElementaryTypeName","src":"6557:7:84","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6492:85:84"},"returnParameters":{"id":28791,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28790,"mutability":"mutable","name":"withdrawn","nameLocation":"6604:9:84","nodeType":"VariableDeclaration","scope":28792,"src":"6596:17:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28789,"name":"uint256","nodeType":"ElementaryTypeName","src":"6596:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6595:19:84"},"scope":28869,"src":"6475:140:84","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":28793,"nodeType":"StructuredDocumentation","src":"6619:69:84","text":" @notice Returns the total amount that can be withdrawn"},"functionSelector":"0600a865","id":28798,"implemented":false,"kind":"function","modifiers":[],"name":"totalWithdrawable","nameLocation":"6700:17:84","nodeType":"FunctionDefinition","parameters":{"id":28794,"nodeType":"ParameterList","parameters":[],"src":"6717:2:84"},"returnParameters":{"id":28797,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28796,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28798,"src":"6743:7:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28795,"name":"uint256","nodeType":"ElementaryTypeName","src":"6743:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6742:9:84"},"scope":28869,"src":"6691:61:84","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":28799,"nodeType":"StructuredDocumentation","src":"6756:540:84","text":" @notice Adds an authorized _borrower_ to the eToken. This _borrower_ will be allowed to lock/unlock funds and to take\n loans.\n @dev Borrowers (typically PremiumsAccounts) can:\n - lock/unlock SCR via {lockScr}/{unlockScr}/{unlockScrWithRefund}\n - take internal loans via {internalLoan}\n @param borrower The address of the _borrower_, a PremiumsAccount that has this eToken as senior or junior eToken.\n @custom:pre Must be called by `policyPool()`\n @custom:emits InternalBorrowerAdded"},"functionSelector":"e3a8e29c","id":28804,"implemented":false,"kind":"function","modifiers":[],"name":"addBorrower","nameLocation":"7308:11:84","nodeType":"FunctionDefinition","parameters":{"id":28802,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28801,"mutability":"mutable","name":"borrower","nameLocation":"7328:8:84","nodeType":"VariableDeclaration","scope":28804,"src":"7320:16:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28800,"name":"address","nodeType":"ElementaryTypeName","src":"7320:7:84","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7319:18:84"},"returnParameters":{"id":28803,"nodeType":"ParameterList","parameters":[],"src":"7346:0:84"},"scope":28869,"src":"7299:48:84","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":28805,"nodeType":"StructuredDocumentation","src":"7351:373:84","text":" @notice Removes an authorized _borrower_ to the eToken. The _borrower_ can't no longer lock funds or take loans.\n @param borrower The address of the _borrower_, a PremiumsAccount that has this eToken as senior or junior eToken.\n @custom:pre Must be called by `policyPool()`\n @custom:emits InternalBorrowerRemoved with the defaulted debt"},"functionSelector":"76c7fc55","id":28810,"implemented":false,"kind":"function","modifiers":[],"name":"removeBorrower","nameLocation":"7736:14:84","nodeType":"FunctionDefinition","parameters":{"id":28808,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28807,"mutability":"mutable","name":"borrower","nameLocation":"7759:8:84","nodeType":"VariableDeclaration","scope":28810,"src":"7751:16:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28806,"name":"address","nodeType":"ElementaryTypeName","src":"7751:7:84","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7750:18:84"},"returnParameters":{"id":28809,"nodeType":"ParameterList","parameters":[],"src":"7777:0:84"},"scope":28869,"src":"7727:51:84","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":28811,"nodeType":"StructuredDocumentation","src":"7782:675:84","text":" @notice Lends `amount` to the borrower (msg.sender), transferring the money to `receiver`.\n @dev This reduces the `totalSupply()` of the eToken, and stores a debt that will be repaid (hopefully) with\n `repayLoan`.\n @param amount The amount required\n @param receiver The received of the funds lent. This is usually the policyholder if the loan is used for a payout.\n @return Returns the amount that wasn't able to fulfil. `amount - lent`\n @custom:pre Must be called by a _borrower_ previously added with `addBorrower`.\n @custom:emits {InternalLoan}\n @custom:emits {ERC20-Transfer} transferring `lent` to `receiver`"},"functionSelector":"c3df9dac","id":28820,"implemented":false,"kind":"function","modifiers":[],"name":"internalLoan","nameLocation":"8469:12:84","nodeType":"FunctionDefinition","parameters":{"id":28816,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28813,"mutability":"mutable","name":"amount","nameLocation":"8490:6:84","nodeType":"VariableDeclaration","scope":28820,"src":"8482:14:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28812,"name":"uint256","nodeType":"ElementaryTypeName","src":"8482:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28815,"mutability":"mutable","name":"receiver","nameLocation":"8506:8:84","nodeType":"VariableDeclaration","scope":28820,"src":"8498:16:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28814,"name":"address","nodeType":"ElementaryTypeName","src":"8498:7:84","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8481:34:84"},"returnParameters":{"id":28819,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28818,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28820,"src":"8534:7:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28817,"name":"uint256","nodeType":"ElementaryTypeName","src":"8534:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8533:9:84"},"scope":28869,"src":"8460:83:84","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":28821,"nodeType":"StructuredDocumentation","src":"8547:584:84","text":" @notice Repays a loan taken with `internalLoan`.\n @param amount The amount to repaid, that will be transferred from `msg.sender` balance.\n @param onBehalfOf The address of the borrower that took the loan. Usually `onBehalfOf == msg.sender` but we keep it\n open because in some cases with might need someone else pays the debt.\n @custom:pre `msg.sender` approved the spending of `currency()` for at least `amount`\n @custom:emits {InternalLoanRepaid}\n @custom:emits {ERC20-Transfer} transferring `amount` from `msg.sender` to `this`"},"functionSelector":"918344d3","id":28828,"implemented":false,"kind":"function","modifiers":[],"name":"repayLoan","nameLocation":"9143:9:84","nodeType":"FunctionDefinition","parameters":{"id":28826,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28823,"mutability":"mutable","name":"amount","nameLocation":"9161:6:84","nodeType":"VariableDeclaration","scope":28828,"src":"9153:14:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28822,"name":"uint256","nodeType":"ElementaryTypeName","src":"9153:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28825,"mutability":"mutable","name":"onBehalfOf","nameLocation":"9177:10:84","nodeType":"VariableDeclaration","scope":28828,"src":"9169:18:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28824,"name":"address","nodeType":"ElementaryTypeName","src":"9169:7:84","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9152:36:84"},"returnParameters":{"id":28827,"nodeType":"ParameterList","parameters":[],"src":"9197:0:84"},"scope":28869,"src":"9134:64:84","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":28829,"nodeType":"StructuredDocumentation","src":"9202:89:84","text":" @notice Returns the updated debt (principal + interest) of the `borrower`."},"functionSelector":"33481fc9","id":28836,"implemented":false,"kind":"function","modifiers":[],"name":"getLoan","nameLocation":"9303:7:84","nodeType":"FunctionDefinition","parameters":{"id":28832,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28831,"mutability":"mutable","name":"borrower","nameLocation":"9319:8:84","nodeType":"VariableDeclaration","scope":28836,"src":"9311:16:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28830,"name":"address","nodeType":"ElementaryTypeName","src":"9311:7:84","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9310:18:84"},"returnParameters":{"id":28835,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28834,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28836,"src":"9352:7:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28833,"name":"uint256","nodeType":"ElementaryTypeName","src":"9352:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9351:9:84"},"scope":28869,"src":"9294:67:84","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":28837,"nodeType":"StructuredDocumentation","src":"9365:86:84","text":" @notice The annualized interest rate at which the `totalSupply()` grows"},"functionSelector":"159ec2df","id":28842,"implemented":false,"kind":"function","modifiers":[],"name":"tokenInterestRate","nameLocation":"9463:17:84","nodeType":"FunctionDefinition","parameters":{"id":28838,"nodeType":"ParameterList","parameters":[],"src":"9480:2:84"},"returnParameters":{"id":28841,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28840,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28842,"src":"9506:7:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28839,"name":"uint256","nodeType":"ElementaryTypeName","src":"9506:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9505:9:84"},"scope":28869,"src":"9454:61:84","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":28843,"nodeType":"StructuredDocumentation","src":"9519:106:84","text":" @notice The weighted average annualized interest rate paid by the currently locked `scr()`."},"functionSelector":"9d90724d","id":28848,"implemented":false,"kind":"function","modifiers":[],"name":"scrInterestRate","nameLocation":"9637:15:84","nodeType":"FunctionDefinition","parameters":{"id":28844,"nodeType":"ParameterList","parameters":[],"src":"9652:2:84"},"returnParameters":{"id":28847,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28846,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28848,"src":"9678:7:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28845,"name":"uint256","nodeType":"ElementaryTypeName","src":"9678:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9677:9:84"},"scope":28869,"src":"9628:59:84","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":28849,"nodeType":"StructuredDocumentation","src":"9691:290:84","text":" @notice Returns the number that scales the shares to reflect the earnings or losses (rebasing token)\n @param updated When it's false, it returns the last scale stored. When it's true, it projects that scale applying\n                the accrued returns of the scr"},"functionSelector":"79d989fb","id":28856,"implemented":false,"kind":"function","modifiers":[],"name":"getCurrentScale","nameLocation":"9993:15:84","nodeType":"FunctionDefinition","parameters":{"id":28852,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28851,"mutability":"mutable","name":"updated","nameLocation":"10014:7:84","nodeType":"VariableDeclaration","scope":28856,"src":"10009:12:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":28850,"name":"bool","nodeType":"ElementaryTypeName","src":"10009:4:84","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10008:14:84"},"returnParameters":{"id":28855,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28854,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28856,"src":"10046:7:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28853,"name":"uint256","nodeType":"ElementaryTypeName","src":"10046:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10045:9:84"},"scope":28869,"src":"9984:71:84","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":28857,"nodeType":"StructuredDocumentation","src":"10059:156:84","text":" @notice Redistributes a given amount of eTokens of the caller between the remaining LPs\n @param amount The amount of eTokens to burn"},"functionSelector":"a0ce552d","id":28862,"implemented":false,"kind":"function","modifiers":[],"name":"redistribute","nameLocation":"10227:12:84","nodeType":"FunctionDefinition","parameters":{"id":28860,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28859,"mutability":"mutable","name":"amount","nameLocation":"10248:6:84","nodeType":"VariableDeclaration","scope":28862,"src":"10240:14:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28858,"name":"uint256","nodeType":"ElementaryTypeName","src":"10240:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10239:16:84"},"returnParameters":{"id":28861,"nodeType":"ParameterList","parameters":[],"src":"10264:0:84"},"scope":28869,"src":"10218:47:84","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":28863,"nodeType":"StructuredDocumentation","src":"10269:74:84","text":" @notice Returns the cooler contract plugged into the eToken"},"functionSelector":"cf6a9a94","id":28868,"implemented":false,"kind":"function","modifiers":[],"name":"cooler","nameLocation":"10355:6:84","nodeType":"FunctionDefinition","parameters":{"id":28864,"nodeType":"ParameterList","parameters":[],"src":"10361:2:84"},"returnParameters":{"id":28867,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28866,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28868,"src":"10387:7:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28865,"name":"address","nodeType":"ElementaryTypeName","src":"10387:7:84","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10386:9:84"},"scope":28869,"src":"10346:50:84","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":28870,"src":"197:10201:84","usedErrors":[],"usedEvents":[28713,28724]}],"src":"39:10360:84"},"id":84},"contracts/interfaces/ILPWhitelist.sol":{"ast":{"absolutePath":"contracts/interfaces/ILPWhitelist.sol","exportedSymbols":{"IEToken":[28869],"ILPWhitelist":[28916]},"id":28917,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":28871,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:85"},{"absolutePath":"contracts/interfaces/IEToken.sol","file":"./IEToken.sol","id":28873,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28917,"sourceUnit":28870,"src":"65:38:85","symbolAliases":[{"foreign":{"id":28872,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28869,"src":"73:7:85","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"ILPWhitelist","contractDependencies":[],"contractKind":"interface","documentation":{"id":28874,"nodeType":"StructuredDocumentation","src":"105:113:85","text":" @title ILPWhitelist - Interface that handles the whitelisting of Liquidity Providers\n @author Ensuro"},"fullyImplemented":false,"id":28916,"linearizedBaseContracts":[28916],"name":"ILPWhitelist","nameLocation":"229:12:85","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":28875,"nodeType":"StructuredDocumentation","src":"246:388:85","text":" @dev Indicates whether or not a liquidity provider can do a deposit in an eToken.\n @param etoken The eToken (see {EToken}) where the provider wants to deposit money.\n @param provider The address of the liquidity provider (user) that wants to deposit\n @param amount The amount of the deposit\n @return true if `provider` deposit is accepted, false if not"},"functionSelector":"37ee20dd","id":28887,"implemented":false,"kind":"function","modifiers":[],"name":"acceptsDeposit","nameLocation":"646:14:85","nodeType":"FunctionDefinition","parameters":{"id":28883,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28878,"mutability":"mutable","name":"etoken","nameLocation":"669:6:85","nodeType":"VariableDeclaration","scope":28887,"src":"661:14:85","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":28877,"nodeType":"UserDefinedTypeName","pathNode":{"id":28876,"name":"IEToken","nameLocations":["661:7:85"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"661:7:85"},"referencedDeclaration":28869,"src":"661:7:85","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":28880,"mutability":"mutable","name":"provider","nameLocation":"685:8:85","nodeType":"VariableDeclaration","scope":28887,"src":"677:16:85","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28879,"name":"address","nodeType":"ElementaryTypeName","src":"677:7:85","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28882,"mutability":"mutable","name":"amount","nameLocation":"703:6:85","nodeType":"VariableDeclaration","scope":28887,"src":"695:14:85","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28881,"name":"uint256","nodeType":"ElementaryTypeName","src":"695:7:85","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"660:50:85"},"returnParameters":{"id":28886,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28885,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28887,"src":"734:4:85","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":28884,"name":"bool","nodeType":"ElementaryTypeName","src":"734:4:85","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"733:6:85"},"scope":28916,"src":"637:103:85","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":28888,"nodeType":"StructuredDocumentation","src":"744:473:85","text":" @dev Indicates whether or not the eTokens can be transferred from `providerFrom` to `providerTo`\n @param etoken The eToken (see {EToken}) that the LPs have the intention to transfer.\n @param providerFrom The current owner of the tokens\n @param providerTo The destination of the tokens if the transfer is accepted\n @param amount The amount of tokens to be transferred\n @return true if the transfer operation is accepted, false if not."},"functionSelector":"5fcdca37","id":28902,"implemented":false,"kind":"function","modifiers":[],"name":"acceptsTransfer","nameLocation":"1229:15:85","nodeType":"FunctionDefinition","parameters":{"id":28898,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28891,"mutability":"mutable","name":"etoken","nameLocation":"1258:6:85","nodeType":"VariableDeclaration","scope":28902,"src":"1250:14:85","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":28890,"nodeType":"UserDefinedTypeName","pathNode":{"id":28889,"name":"IEToken","nameLocations":["1250:7:85"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"1250:7:85"},"referencedDeclaration":28869,"src":"1250:7:85","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":28893,"mutability":"mutable","name":"providerFrom","nameLocation":"1278:12:85","nodeType":"VariableDeclaration","scope":28902,"src":"1270:20:85","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28892,"name":"address","nodeType":"ElementaryTypeName","src":"1270:7:85","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28895,"mutability":"mutable","name":"providerTo","nameLocation":"1304:10:85","nodeType":"VariableDeclaration","scope":28902,"src":"1296:18:85","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28894,"name":"address","nodeType":"ElementaryTypeName","src":"1296:7:85","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28897,"mutability":"mutable","name":"amount","nameLocation":"1328:6:85","nodeType":"VariableDeclaration","scope":28902,"src":"1320:14:85","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28896,"name":"uint256","nodeType":"ElementaryTypeName","src":"1320:7:85","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1244:94:85"},"returnParameters":{"id":28901,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28900,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28902,"src":"1362:4:85","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":28899,"name":"bool","nodeType":"ElementaryTypeName","src":"1362:4:85","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1361:6:85"},"scope":28916,"src":"1220:148:85","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":28903,"nodeType":"StructuredDocumentation","src":"1372:395:85","text":" @dev Indicates whether or not a liquidity provider can withdraw an eToken.\n @param etoken The eToken (see {EToken}) where the provider wants to withdraw money.\n @param provider The address of the liquidity provider (user) that wants to withdraw\n @param amount The amount of the withdrawal\n @return true if `provider` withdraw request is accepted, false if not"},"functionSelector":"9051c763","id":28915,"implemented":false,"kind":"function","modifiers":[],"name":"acceptsWithdrawal","nameLocation":"1779:17:85","nodeType":"FunctionDefinition","parameters":{"id":28911,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28906,"mutability":"mutable","name":"etoken","nameLocation":"1805:6:85","nodeType":"VariableDeclaration","scope":28915,"src":"1797:14:85","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":28905,"nodeType":"UserDefinedTypeName","pathNode":{"id":28904,"name":"IEToken","nameLocations":["1797:7:85"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"1797:7:85"},"referencedDeclaration":28869,"src":"1797:7:85","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":28908,"mutability":"mutable","name":"provider","nameLocation":"1821:8:85","nodeType":"VariableDeclaration","scope":28915,"src":"1813:16:85","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28907,"name":"address","nodeType":"ElementaryTypeName","src":"1813:7:85","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28910,"mutability":"mutable","name":"amount","nameLocation":"1839:6:85","nodeType":"VariableDeclaration","scope":28915,"src":"1831:14:85","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28909,"name":"uint256","nodeType":"ElementaryTypeName","src":"1831:7:85","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1796:50:85"},"returnParameters":{"id":28914,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28913,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28915,"src":"1870:4:85","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":28912,"name":"bool","nodeType":"ElementaryTypeName","src":"1870:4:85","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1869:6:85"},"scope":28916,"src":"1770:106:85","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":28917,"src":"219:1659:85","usedErrors":[],"usedEvents":[]}],"src":"39:1840:85"},"id":85},"contracts/interfaces/IPolicyHolder.sol":{"ast":{"absolutePath":"contracts/interfaces/IPolicyHolder.sol","exportedSymbols":{"IERC721Receiver":[9489],"IPolicyHolder":[28982]},"id":28983,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":28918,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:86"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","id":28920,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":28983,"sourceUnit":9490,"src":"65:89:86","symbolAliases":[{"foreign":{"id":28919,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9489,"src":"73:15:86","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":28922,"name":"IERC721Receiver","nameLocations":["329:15:86"],"nodeType":"IdentifierPath","referencedDeclaration":9489,"src":"329:15:86"},"id":28923,"nodeType":"InheritanceSpecifier","src":"329:15:86"}],"canonicalName":"IPolicyHolder","contractDependencies":[],"contractKind":"interface","documentation":{"id":28921,"nodeType":"StructuredDocumentation","src":"156:145:86","text":" @title Policy holder interface\n @dev Interface for any contract that wants to be a holder of Ensuro Policies and receive the payouts"},"fullyImplemented":false,"id":28982,"linearizedBaseContracts":[28982,9489],"name":"IPolicyHolder","nameLocation":"312:13:86","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":28924,"nodeType":"StructuredDocumentation","src":"349:512:86","text":" @dev Whenever an Policy is expired or resolved with payout = 0, this function is called\n It should return its Solidity selector to confirm the payout.\n If interface is not implemented by the recipient, it will be ignored and the payout will be successful.\n No mather what's the return value or even if this function reverts, this function will not revert the policy\n expiration.\n The selector can be obtained in Solidity with `IPolicyHolder.onPolicyExpired.selector`."},"functionSelector":"e8e617b7","id":28935,"implemented":false,"kind":"function","modifiers":[],"name":"onPolicyExpired","nameLocation":"873:15:86","nodeType":"FunctionDefinition","parameters":{"id":28931,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28926,"mutability":"mutable","name":"operator","nameLocation":"897:8:86","nodeType":"VariableDeclaration","scope":28935,"src":"889:16:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28925,"name":"address","nodeType":"ElementaryTypeName","src":"889:7:86","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28928,"mutability":"mutable","name":"from","nameLocation":"915:4:86","nodeType":"VariableDeclaration","scope":28935,"src":"907:12:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28927,"name":"address","nodeType":"ElementaryTypeName","src":"907:7:86","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28930,"mutability":"mutable","name":"policyId","nameLocation":"929:8:86","nodeType":"VariableDeclaration","scope":28935,"src":"921:16:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28929,"name":"uint256","nodeType":"ElementaryTypeName","src":"921:7:86","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"888:50:86"},"returnParameters":{"id":28934,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28933,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28935,"src":"957:6:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28932,"name":"bytes4","nodeType":"ElementaryTypeName","src":"957:6:86","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"956:8:86"},"scope":28982,"src":"864:101:86","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":28936,"nodeType":"StructuredDocumentation","src":"969:469:86","text":" @dev Whenever an Policy is resolved with payout > 0, this function is called\n It must return its Solidity selector to confirm the payout.\n If interface is not implemented by the recipient, it will be ignored and the payout will be successful.\n If any other value is returned or it reverts, the policy resolution / payout will be reverted.\n The selector can be obtained in Solidity with `IPolicyHolder.onPayoutReceived.selector`."},"functionSelector":"d6281d3e","id":28949,"implemented":false,"kind":"function","modifiers":[],"name":"onPayoutReceived","nameLocation":"1450:16:86","nodeType":"FunctionDefinition","parameters":{"id":28945,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28938,"mutability":"mutable","name":"operator","nameLocation":"1475:8:86","nodeType":"VariableDeclaration","scope":28949,"src":"1467:16:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28937,"name":"address","nodeType":"ElementaryTypeName","src":"1467:7:86","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28940,"mutability":"mutable","name":"from","nameLocation":"1493:4:86","nodeType":"VariableDeclaration","scope":28949,"src":"1485:12:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28939,"name":"address","nodeType":"ElementaryTypeName","src":"1485:7:86","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28942,"mutability":"mutable","name":"policyId","nameLocation":"1507:8:86","nodeType":"VariableDeclaration","scope":28949,"src":"1499:16:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28941,"name":"uint256","nodeType":"ElementaryTypeName","src":"1499:7:86","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28944,"mutability":"mutable","name":"amount","nameLocation":"1525:6:86","nodeType":"VariableDeclaration","scope":28949,"src":"1517:14:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28943,"name":"uint256","nodeType":"ElementaryTypeName","src":"1517:7:86","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1466:66:86"},"returnParameters":{"id":28948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28947,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28949,"src":"1551:6:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28946,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1551:6:86","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1550:8:86"},"scope":28982,"src":"1441:118:86","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":28950,"nodeType":"StructuredDocumentation","src":"1563:452:86","text":" @dev Whenever a policy is replaced, this function is called\n It must return its Solidity selector to confirm the operation.\n If interface is not implemented by the recipient, it will be ignored and the replacement will be successful.\n If any other value is returned or it reverts, the policy replacement will be reverted.\n The selector can be obtained in Solidity with `IPolicyHolder.onPolicyReplaced.selector`."},"functionSelector":"5ee0c7dd","id":28963,"implemented":false,"kind":"function","modifiers":[],"name":"onPolicyReplaced","nameLocation":"2027:16:86","nodeType":"FunctionDefinition","parameters":{"id":28959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28952,"mutability":"mutable","name":"operator","nameLocation":"2057:8:86","nodeType":"VariableDeclaration","scope":28963,"src":"2049:16:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28951,"name":"address","nodeType":"ElementaryTypeName","src":"2049:7:86","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28954,"mutability":"mutable","name":"from","nameLocation":"2079:4:86","nodeType":"VariableDeclaration","scope":28963,"src":"2071:12:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28953,"name":"address","nodeType":"ElementaryTypeName","src":"2071:7:86","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28956,"mutability":"mutable","name":"oldPolicyId","nameLocation":"2097:11:86","nodeType":"VariableDeclaration","scope":28963,"src":"2089:19:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28955,"name":"uint256","nodeType":"ElementaryTypeName","src":"2089:7:86","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28958,"mutability":"mutable","name":"newPolicyId","nameLocation":"2122:11:86","nodeType":"VariableDeclaration","scope":28963,"src":"2114:19:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28957,"name":"uint256","nodeType":"ElementaryTypeName","src":"2114:7:86","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2043:94:86"},"returnParameters":{"id":28962,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28961,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28963,"src":"2156:6:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28960,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2156:6:86","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2155:8:86"},"scope":28982,"src":"2018:146:86","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":28964,"nodeType":"StructuredDocumentation","src":"2168:456:86","text":" @dev Whenever a policy is cancelled, this function is called\n It must return its Solidity selector to confirm the operation.\n If interface is not implemented by the recipient, it will be ignored and the cancellation will be successful.\n If any other value is returned or it reverts, the policy cancellation will be reverted.\n The selector can be obtained in Solidity with `IPolicyHolder.onPolicyCancelled.selector`."},"functionSelector":"62eb345e","id":28981,"implemented":false,"kind":"function","modifiers":[],"name":"onPolicyCancelled","nameLocation":"2636:17:86","nodeType":"FunctionDefinition","parameters":{"id":28977,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28966,"mutability":"mutable","name":"operator","nameLocation":"2667:8:86","nodeType":"VariableDeclaration","scope":28981,"src":"2659:16:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28965,"name":"address","nodeType":"ElementaryTypeName","src":"2659:7:86","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28968,"mutability":"mutable","name":"from","nameLocation":"2689:4:86","nodeType":"VariableDeclaration","scope":28981,"src":"2681:12:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28967,"name":"address","nodeType":"ElementaryTypeName","src":"2681:7:86","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":28970,"mutability":"mutable","name":"cancelledPolicyId","nameLocation":"2707:17:86","nodeType":"VariableDeclaration","scope":28981,"src":"2699:25:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28969,"name":"uint256","nodeType":"ElementaryTypeName","src":"2699:7:86","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28972,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"2738:17:86","nodeType":"VariableDeclaration","scope":28981,"src":"2730:25:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28971,"name":"uint256","nodeType":"ElementaryTypeName","src":"2730:7:86","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28974,"mutability":"mutable","name":"jrCocRefund","nameLocation":"2769:11:86","nodeType":"VariableDeclaration","scope":28981,"src":"2761:19:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28973,"name":"uint256","nodeType":"ElementaryTypeName","src":"2761:7:86","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":28976,"mutability":"mutable","name":"srCocRefund","nameLocation":"2794:11:86","nodeType":"VariableDeclaration","scope":28981,"src":"2786:19:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28975,"name":"uint256","nodeType":"ElementaryTypeName","src":"2786:7:86","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2653:156:86"},"returnParameters":{"id":28980,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28979,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28981,"src":"2828:6:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28978,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2828:6:86","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2827:8:86"},"scope":28982,"src":"2627:209:86","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":28983,"src":"302:2536:86","usedErrors":[],"usedEvents":[]}],"src":"39:2800:86"},"id":86},"contracts/interfaces/IPolicyPool.sol":{"ast":{"absolutePath":"contracts/interfaces/IPolicyPool.sol","exportedSymbols":{"IERC20Metadata":[8863],"IEToken":[28869],"IPolicyPool":[29171],"IRiskModule":[29295],"Policy":[22826]},"id":29172,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":28984,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:87"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":28986,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29172,"sourceUnit":8864,"src":"65:97:87","symbolAliases":[{"foreign":{"id":28985,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"73:14:87","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/Policy.sol","file":"../Policy.sol","id":28988,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29172,"sourceUnit":22827,"src":"163:37:87","symbolAliases":[{"foreign":{"id":28987,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"171:6:87","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IEToken.sol","file":"./IEToken.sol","id":28990,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29172,"sourceUnit":28870,"src":"201:38:87","symbolAliases":[{"foreign":{"id":28989,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28869,"src":"209:7:87","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IRiskModule.sol","file":"./IRiskModule.sol","id":28992,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29172,"sourceUnit":29296,"src":"240:46:87","symbolAliases":[{"foreign":{"id":28991,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"248:11:87","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IPolicyPool","contractDependencies":[],"contractKind":"interface","documentation":{"id":28993,"nodeType":"StructuredDocumentation","src":"288:354:87","text":" @title Interface of PolicyPool contracts\n @notice There's a single instance of PolicyPool contract for a given deployment of the protocol\n @dev Some methods of this interface will be called by other components of the protocol (like RiskModule or\n      PremiumsAccount).\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":false,"id":29171,"linearizedBaseContracts":[29171],"name":"IPolicyPool","nameLocation":"653:11:87","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":28994,"nodeType":"StructuredDocumentation","src":"669:394:87","text":" @notice Event emitted every time a new policy is added to the pool\n @dev Contains all the data about the policy that is later required for doing operations with the policy like\n      resolution or expiration.\n @param riskModule The risk module that created the policy\n @param policy The {Policy-PolicyData} struct with all the immutable fields of the policy."},"eventSelector":"988ac1a1c4820f963124b6fa0394627ad4fa3de7583a76399b998c1d7e43af3f","id":29002,"name":"NewPolicy","nameLocation":"1072:9:87","nodeType":"EventDefinition","parameters":{"id":29001,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28997,"indexed":true,"mutability":"mutable","name":"riskModule","nameLocation":"1102:10:87","nodeType":"VariableDeclaration","scope":29002,"src":"1082:30:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},"typeName":{"id":28996,"nodeType":"UserDefinedTypeName","pathNode":{"id":28995,"name":"IRiskModule","nameLocations":["1082:11:87"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"1082:11:87"},"referencedDeclaration":29295,"src":"1082:11:87","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"visibility":"internal"},{"constant":false,"id":29000,"indexed":false,"mutability":"mutable","name":"policy","nameLocation":"1132:6:87","nodeType":"VariableDeclaration","scope":29002,"src":"1114:24:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":28999,"nodeType":"UserDefinedTypeName","pathNode":{"id":28998,"name":"Policy.PolicyData","nameLocations":["1114:6:87","1121:10:87"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"1114:17:87"},"referencedDeclaration":22256,"src":"1114:17:87","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"1081:58:87"},"src":"1066:74:87"},{"anonymous":false,"documentation":{"id":29003,"nodeType":"StructuredDocumentation","src":"1144:376:87","text":" @notice Event emitted every time a new policy replaces an old Policy.\n @dev The event contains only the id of the replacement policy, the full data is available in the NewPolicy event.\n @param riskModule The risk module that created the policy\n @param oldPolicyId The id of the replaced policy.\n @param newPolicyId The id of the new policy."},"eventSelector":"4ff4ac703cb703b7ea535d47e65e64b4cabf11b3e2eb41f152dab17971953add","id":29012,"name":"PolicyReplaced","nameLocation":"1529:14:87","nodeType":"EventDefinition","parameters":{"id":29011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29006,"indexed":true,"mutability":"mutable","name":"riskModule","nameLocation":"1564:10:87","nodeType":"VariableDeclaration","scope":29012,"src":"1544:30:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},"typeName":{"id":29005,"nodeType":"UserDefinedTypeName","pathNode":{"id":29004,"name":"IRiskModule","nameLocations":["1544:11:87"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"1544:11:87"},"referencedDeclaration":29295,"src":"1544:11:87","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"visibility":"internal"},{"constant":false,"id":29008,"indexed":true,"mutability":"mutable","name":"oldPolicyId","nameLocation":"1592:11:87","nodeType":"VariableDeclaration","scope":29012,"src":"1576:27:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29007,"name":"uint256","nodeType":"ElementaryTypeName","src":"1576:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29010,"indexed":true,"mutability":"mutable","name":"newPolicyId","nameLocation":"1621:11:87","nodeType":"VariableDeclaration","scope":29012,"src":"1605:27:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29009,"name":"uint256","nodeType":"ElementaryTypeName","src":"1605:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1543:90:87"},"src":"1523:111:87"},{"anonymous":false,"documentation":{"id":29013,"nodeType":"StructuredDocumentation","src":"1638:521:87","text":" @notice Event emitted when a policy is cancelled, and part of the paid premium is refunded.\n @dev After this, the policy is no longer active. The refund amounts are transferred to the policy holder.\n @param riskModule The risk module that created the policy\n @param cancelledPolicyId The id of the cancelled policy.\n @param purePremiumRefund The amount of pure premium refunded\n @param jrCocRefund The amount of Jr CoC refunded\n @param srCocRefund The amount of Sr CoC refunded"},"eventSelector":"825c3ee6eecaa4b0dc3573e9732b65613d705cadfc4ba69cc76cb7d9227e5971","id":29026,"name":"PolicyCancelled","nameLocation":"2168:15:87","nodeType":"EventDefinition","parameters":{"id":29025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29016,"indexed":true,"mutability":"mutable","name":"riskModule","nameLocation":"2209:10:87","nodeType":"VariableDeclaration","scope":29026,"src":"2189:30:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},"typeName":{"id":29015,"nodeType":"UserDefinedTypeName","pathNode":{"id":29014,"name":"IRiskModule","nameLocations":["2189:11:87"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"2189:11:87"},"referencedDeclaration":29295,"src":"2189:11:87","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"visibility":"internal"},{"constant":false,"id":29018,"indexed":true,"mutability":"mutable","name":"cancelledPolicyId","nameLocation":"2241:17:87","nodeType":"VariableDeclaration","scope":29026,"src":"2225:33:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29017,"name":"uint256","nodeType":"ElementaryTypeName","src":"2225:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29020,"indexed":false,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"2272:17:87","nodeType":"VariableDeclaration","scope":29026,"src":"2264:25:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29019,"name":"uint256","nodeType":"ElementaryTypeName","src":"2264:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29022,"indexed":false,"mutability":"mutable","name":"jrCocRefund","nameLocation":"2303:11:87","nodeType":"VariableDeclaration","scope":29026,"src":"2295:19:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29021,"name":"uint256","nodeType":"ElementaryTypeName","src":"2295:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29024,"indexed":false,"mutability":"mutable","name":"srCocRefund","nameLocation":"2328:11:87","nodeType":"VariableDeclaration","scope":29026,"src":"2320:19:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29023,"name":"uint256","nodeType":"ElementaryTypeName","src":"2320:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2183:160:87"},"src":"2162:182:87"},{"anonymous":false,"documentation":{"id":29027,"nodeType":"StructuredDocumentation","src":"2348:422:87","text":" @notice Event emitted every time a policy is removed from the pool\n @dev If the policy expired, the `payout` is 0, otherwise is the amount transferred to the policyholder.\n @param riskModule The risk module where that created the policy initially.\n @param policyId The unique id of the policy\n @param payout The payout that has been paid to the policy holder. 0 when the policy expired."},"eventSelector":"54f4a270ea08f88dc23b2520d6b063fecb24d956c4496f447926d736338f545e","id":29036,"name":"PolicyResolved","nameLocation":"2779:14:87","nodeType":"EventDefinition","parameters":{"id":29035,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29030,"indexed":true,"mutability":"mutable","name":"riskModule","nameLocation":"2814:10:87","nodeType":"VariableDeclaration","scope":29036,"src":"2794:30:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},"typeName":{"id":29029,"nodeType":"UserDefinedTypeName","pathNode":{"id":29028,"name":"IRiskModule","nameLocations":["2794:11:87"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"2794:11:87"},"referencedDeclaration":29295,"src":"2794:11:87","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"visibility":"internal"},{"constant":false,"id":29032,"indexed":true,"mutability":"mutable","name":"policyId","nameLocation":"2842:8:87","nodeType":"VariableDeclaration","scope":29036,"src":"2826:24:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29031,"name":"uint256","nodeType":"ElementaryTypeName","src":"2826:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29034,"indexed":false,"mutability":"mutable","name":"payout","nameLocation":"2860:6:87","nodeType":"VariableDeclaration","scope":29036,"src":"2852:14:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29033,"name":"uint256","nodeType":"ElementaryTypeName","src":"2852:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2793:74:87"},"src":"2773:95:87"},{"documentation":{"id":29037,"nodeType":"StructuredDocumentation","src":"2872:93:87","text":" @notice Reference to the main currency (ERC20, e.g. USDC) used in the protocol"},"functionSelector":"e5a6b10f","id":29043,"implemented":false,"kind":"function","modifiers":[],"name":"currency","nameLocation":"2977:8:87","nodeType":"FunctionDefinition","parameters":{"id":29038,"nodeType":"ParameterList","parameters":[],"src":"2985:2:87"},"returnParameters":{"id":29042,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29041,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29043,"src":"3011:14:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"},"typeName":{"id":29040,"nodeType":"UserDefinedTypeName","pathNode":{"id":29039,"name":"IERC20Metadata","nameLocations":["3011:14:87"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"3011:14:87"},"referencedDeclaration":8863,"src":"3011:14:87","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"src":"3010:16:87"},"scope":29171,"src":"2968:59:87","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":29044,"nodeType":"StructuredDocumentation","src":"3031:76:87","text":" @notice Address of the treasury, that receives protocol fees."},"functionSelector":"61d027b3","id":29049,"implemented":false,"kind":"function","modifiers":[],"name":"treasury","nameLocation":"3119:8:87","nodeType":"FunctionDefinition","parameters":{"id":29045,"nodeType":"ParameterList","parameters":[],"src":"3127:2:87"},"returnParameters":{"id":29048,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29047,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29049,"src":"3153:7:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29046,"name":"address","nodeType":"ElementaryTypeName","src":"3153:7:87","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3152:9:87"},"scope":29171,"src":"3110:52:87","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":29050,"nodeType":"StructuredDocumentation","src":"3166:1129:87","text":" @notice Creates a new Policy\n @dev It charges the premium and distributes it to the different parties (PremiumsAccount, ETokens, treasury)\n @custom:pre `msg.sender` must be an active RiskModule\n @custom:pre `rm.premiumsAccount()` must be an active PremiumsAccount\n @custom:pre `payer` approved the spending of `currency()` for at least `policy.premium`\n @custom:pre `internalId` must be unique within the risk module (`msg.sender`) and not used before\n @custom:emits NewPolicy with all the details about the policy\n @custom:emits ERC20-Transfer transfers from `payer` to the different receivers of the premium\n               (see Premium Split in the docs)\n @custom:throws PolicyAlreadyExists when reusing an internalId\n @param policy A policy created with {Policy-initialize}\n @param payer The address that will pay for the premium\n @param policyHolder The address of the policy holder\n @param internalId A unique id within the RiskModule, that will be used to compute the policy id\n @return The policy id, identifying the NFT and the policy"},"functionSelector":"0d100acb","id":29064,"implemented":false,"kind":"function","modifiers":[],"name":"newPolicy","nameLocation":"4307:9:87","nodeType":"FunctionDefinition","parameters":{"id":29060,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29053,"mutability":"mutable","name":"policy","nameLocation":"4347:6:87","nodeType":"VariableDeclaration","scope":29064,"src":"4322:31:87","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":29052,"nodeType":"UserDefinedTypeName","pathNode":{"id":29051,"name":"Policy.PolicyData","nameLocations":["4322:6:87","4329:10:87"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"4322:17:87"},"referencedDeclaration":22256,"src":"4322:17:87","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":29055,"mutability":"mutable","name":"payer","nameLocation":"4367:5:87","nodeType":"VariableDeclaration","scope":29064,"src":"4359:13:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29054,"name":"address","nodeType":"ElementaryTypeName","src":"4359:7:87","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29057,"mutability":"mutable","name":"policyHolder","nameLocation":"4386:12:87","nodeType":"VariableDeclaration","scope":29064,"src":"4378:20:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29056,"name":"address","nodeType":"ElementaryTypeName","src":"4378:7:87","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29059,"mutability":"mutable","name":"internalId","nameLocation":"4411:10:87","nodeType":"VariableDeclaration","scope":29064,"src":"4404:17:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":29058,"name":"uint96","nodeType":"ElementaryTypeName","src":"4404:6:87","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"4316:109:87"},"returnParameters":{"id":29063,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29062,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29064,"src":"4444:7:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29061,"name":"uint256","nodeType":"ElementaryTypeName","src":"4444:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4443:9:87"},"scope":29171,"src":"4298:155:87","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":29065,"nodeType":"StructuredDocumentation","src":"4457:1256:87","text":" @notice Replaces a policy with another\n @dev After this call, the oldPolicy is no longer active and a new policy is created. Diferencial changes to\n      premiums and locked SCR.\n @param oldPolicy A policy created previously and not expired\n @param newPolicy_ A policy created with {Policy-initialize}\n @param payer The address that will pay for the premium difference\n @param internalId A unique id within the RiskModule, that will be used to compute the policy id\n @return The policy id, identifying the NFT and the policy\n @custom:pre `msg.sender` must be an active RiskModule\n @custom:pre `rm.premiumsAccount()` must be an active PremiumsAccount\n @custom:pre `payer` approved the spending of `currency()` for at least `newPolicy_.premium - oldPolicy.premium`\n @custom:pre `internalId` must be unique within `policy.riskModule` and not used before\n @custom:throws PolicyAlreadyExpired when trying to replace an expired policy\n @custom:throws InvalidPolicyReplacement when trying to reduce some of the premium componentsa\n @custom:emits PolicyReplaced with the ids of the new and replaced policy\n @custom:emits NewPolicy with all the details of the new policy"},"functionSelector":"663d8337","id":29080,"implemented":false,"kind":"function","modifiers":[],"name":"replacePolicy","nameLocation":"5725:13:87","nodeType":"FunctionDefinition","parameters":{"id":29076,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29068,"mutability":"mutable","name":"oldPolicy","nameLocation":"5769:9:87","nodeType":"VariableDeclaration","scope":29080,"src":"5744:34:87","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":29067,"nodeType":"UserDefinedTypeName","pathNode":{"id":29066,"name":"Policy.PolicyData","nameLocations":["5744:6:87","5751:10:87"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"5744:17:87"},"referencedDeclaration":22256,"src":"5744:17:87","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":29071,"mutability":"mutable","name":"newPolicy_","nameLocation":"5809:10:87","nodeType":"VariableDeclaration","scope":29080,"src":"5784:35:87","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":29070,"nodeType":"UserDefinedTypeName","pathNode":{"id":29069,"name":"Policy.PolicyData","nameLocations":["5784:6:87","5791:10:87"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"5784:17:87"},"referencedDeclaration":22256,"src":"5784:17:87","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":29073,"mutability":"mutable","name":"payer","nameLocation":"5833:5:87","nodeType":"VariableDeclaration","scope":29080,"src":"5825:13:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29072,"name":"address","nodeType":"ElementaryTypeName","src":"5825:7:87","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29075,"mutability":"mutable","name":"internalId","nameLocation":"5851:10:87","nodeType":"VariableDeclaration","scope":29080,"src":"5844:17:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":29074,"name":"uint96","nodeType":"ElementaryTypeName","src":"5844:6:87","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"5738:127:87"},"returnParameters":{"id":29079,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29078,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29080,"src":"5884:7:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29077,"name":"uint256","nodeType":"ElementaryTypeName","src":"5884:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5883:9:87"},"scope":29171,"src":"5716:177:87","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":29081,"nodeType":"StructuredDocumentation","src":"5897:809:87","text":" @notice Cancels a policy, doing optional refunds of parts of the premium.\n @dev After this call the policy is not claimable and funds are unlocked\n @custom:pre `msg.sender` must be an active or deprecated RiskModule\n @custom:pre Policy not expired\n Events:\n @custom:emits PolicyCancelled with the refund amounts\n @custom:emits ERC20-Transfer transfers of the refunds amount to the policy holder\n @param policyToCancel A policy created previously and not expired, that will be cancelled\n @param purePremiumRefund The amount to refund from pure premiums (<= policyToCancel.purePremium)\n @param jrCocRefund The amount to refund from jrCoc (<= policyToCancel.jrCoc)\n @param srCocRefund The amount to refund from srCoc (<= policyToCancel.jrCoc)"},"functionSelector":"6f520b73","id":29093,"implemented":false,"kind":"function","modifiers":[],"name":"cancelPolicy","nameLocation":"6718:12:87","nodeType":"FunctionDefinition","parameters":{"id":29091,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29084,"mutability":"mutable","name":"policyToCancel","nameLocation":"6763:14:87","nodeType":"VariableDeclaration","scope":29093,"src":"6736:41:87","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":29083,"nodeType":"UserDefinedTypeName","pathNode":{"id":29082,"name":"Policy.PolicyData","nameLocations":["6736:6:87","6743:10:87"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"6736:17:87"},"referencedDeclaration":22256,"src":"6736:17:87","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":29086,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"6791:17:87","nodeType":"VariableDeclaration","scope":29093,"src":"6783:25:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29085,"name":"uint256","nodeType":"ElementaryTypeName","src":"6783:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29088,"mutability":"mutable","name":"jrCocRefund","nameLocation":"6822:11:87","nodeType":"VariableDeclaration","scope":29093,"src":"6814:19:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29087,"name":"uint256","nodeType":"ElementaryTypeName","src":"6814:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29090,"mutability":"mutable","name":"srCocRefund","nameLocation":"6847:11:87","nodeType":"VariableDeclaration","scope":29093,"src":"6839:19:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29089,"name":"uint256","nodeType":"ElementaryTypeName","src":"6839:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6730:132:87"},"returnParameters":{"id":29092,"nodeType":"ParameterList","parameters":[],"src":"6871:0:87"},"scope":29171,"src":"6709:163:87","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":29094,"nodeType":"StructuredDocumentation","src":"6876:702:87","text":" @notice Resolves a policy with a payout, sending the payment to the owner of the policy NFT.\n @dev After this call the policy is no longer active and the funds have been unlocked.\n @custom:pre `msg.sender` must be an active or deprecated RiskModule\n @custom:pre `payout`: must be less than equal to `policy.payout`.\n @custom:pre `policy`: must be a Policy not resolved before and not expired (if payout > 0).\n @custom:emits PolicyResolved with the payout amount\n @custom:emits ERC20-Transfer to the policyholder with the payout\n @param policy A policy previously created with `newPolicy`\n @param payout The amount to pay to the policyholder"},"functionSelector":"bd644c56","id":29102,"implemented":false,"kind":"function","modifiers":[],"name":"resolvePolicy","nameLocation":"7590:13:87","nodeType":"FunctionDefinition","parameters":{"id":29100,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29097,"mutability":"mutable","name":"policy","nameLocation":"7631:6:87","nodeType":"VariableDeclaration","scope":29102,"src":"7604:33:87","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":29096,"nodeType":"UserDefinedTypeName","pathNode":{"id":29095,"name":"Policy.PolicyData","nameLocations":["7604:6:87","7611:10:87"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"7604:17:87"},"referencedDeclaration":22256,"src":"7604:17:87","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":29099,"mutability":"mutable","name":"payout","nameLocation":"7647:6:87","nodeType":"VariableDeclaration","scope":29102,"src":"7639:14:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29098,"name":"uint256","nodeType":"ElementaryTypeName","src":"7639:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7603:51:87"},"returnParameters":{"id":29101,"nodeType":"ParameterList","parameters":[],"src":"7663:0:87"},"scope":29171,"src":"7581:83:87","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":29103,"nodeType":"StructuredDocumentation","src":"7668:457:87","text":" @notice Expires a policy, unlocked the solvency.\n @dev Resolves a policy with a payout 0, unlocking the solvency. Can be called by anyone, but only after\n      `Policy.expiration`.\n @custom:pre `policy`: must be a Policy not resolved before\n @custom:pre `policy.expiration` <= block.timestamp\n @custom:emits PolicyResolved with the payout == 0\n @param policy A policy previously created with `newPolicy`"},"functionSelector":"f720bbbf","id":29109,"implemented":false,"kind":"function","modifiers":[],"name":"expirePolicy","nameLocation":"8137:12:87","nodeType":"FunctionDefinition","parameters":{"id":29107,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29106,"mutability":"mutable","name":"policy","nameLocation":"8177:6:87","nodeType":"VariableDeclaration","scope":29109,"src":"8150:33:87","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":29105,"nodeType":"UserDefinedTypeName","pathNode":{"id":29104,"name":"Policy.PolicyData","nameLocations":["8150:6:87","8157:10:87"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"8150:17:87"},"referencedDeclaration":22256,"src":"8150:17:87","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"8149:35:87"},"returnParameters":{"id":29108,"nodeType":"ParameterList","parameters":[],"src":"8193:0:87"},"scope":29171,"src":"8128:66:87","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":29110,"nodeType":"StructuredDocumentation","src":"8198:415:87","text":" @notice Returns whether a policy is active\n @dev A policy is active when it's still in the PolicyPool, not yet resolved or expired.\n      Be aware that a policy might be active but the `block.timestamp` might be after the expiration date, so it\n      can't be triggered with a payout.\n @param policyId The id of the policy queried\n @return Whether the policy is active or not"},"functionSelector":"82afd23b","id":29117,"implemented":false,"kind":"function","modifiers":[],"name":"isActive","nameLocation":"8625:8:87","nodeType":"FunctionDefinition","parameters":{"id":29113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29112,"mutability":"mutable","name":"policyId","nameLocation":"8642:8:87","nodeType":"VariableDeclaration","scope":29117,"src":"8634:16:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29111,"name":"uint256","nodeType":"ElementaryTypeName","src":"8634:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8633:18:87"},"returnParameters":{"id":29116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29115,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29117,"src":"8675:4:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29114,"name":"bool","nodeType":"ElementaryTypeName","src":"8675:4:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8674:6:87"},"scope":29171,"src":"8616:65:87","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":29118,"nodeType":"StructuredDocumentation","src":"8685:225:87","text":" @notice Returns the stored hash of the policy\n @dev Returns `bytes32(0)` if the policy isn't active.\n @param policyId The id of the policy queried\n @return Returns the hash of a given policy id"},"functionSelector":"792da09e","id":29125,"implemented":false,"kind":"function","modifiers":[],"name":"getPolicyHash","nameLocation":"8922:13:87","nodeType":"FunctionDefinition","parameters":{"id":29121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29120,"mutability":"mutable","name":"policyId","nameLocation":"8944:8:87","nodeType":"VariableDeclaration","scope":29125,"src":"8936:16:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29119,"name":"uint256","nodeType":"ElementaryTypeName","src":"8936:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8935:18:87"},"returnParameters":{"id":29124,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29123,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29125,"src":"8977:7:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":29122,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8977:7:87","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8976:9:87"},"scope":29171,"src":"8913:73:87","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":29126,"nodeType":"StructuredDocumentation","src":"8990:736:87","text":" @notice Deposits liquidity into an eToken\n @dev Forwards the call to {EToken-deposit}, after transferring the funds.\n      The user will receive etokens for the same amount deposited.\n @custom:pre `msg.sender` approved the spending of `currency()` for at least `amount`\n @custom:pre `eToken` is an active eToken installed in the pool.\n @custom:emits EToken-Transfer from 0x0 to `receiver`, reflects the eTokens minted.\n @custom:emits ERC20-Transfer from `msg.sender` to address(eToken)\n @param eToken The address of the eToken to which the user wants to provide liquidity\n @param amount The amount to deposit\n @param receiver The user that will receive the minted tokens"},"functionSelector":"f45346dc","id":29136,"implemented":false,"kind":"function","modifiers":[],"name":"deposit","nameLocation":"9738:7:87","nodeType":"FunctionDefinition","parameters":{"id":29134,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29129,"mutability":"mutable","name":"eToken","nameLocation":"9754:6:87","nodeType":"VariableDeclaration","scope":29136,"src":"9746:14:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":29128,"nodeType":"UserDefinedTypeName","pathNode":{"id":29127,"name":"IEToken","nameLocations":["9746:7:87"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"9746:7:87"},"referencedDeclaration":28869,"src":"9746:7:87","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":29131,"mutability":"mutable","name":"amount","nameLocation":"9770:6:87","nodeType":"VariableDeclaration","scope":29136,"src":"9762:14:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29130,"name":"uint256","nodeType":"ElementaryTypeName","src":"9762:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29133,"mutability":"mutable","name":"receiver","nameLocation":"9786:8:87","nodeType":"VariableDeclaration","scope":29136,"src":"9778:16:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29132,"name":"address","nodeType":"ElementaryTypeName","src":"9778:7:87","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9745:50:87"},"returnParameters":{"id":29135,"nodeType":"ParameterList","parameters":[],"src":"9804:0:87"},"scope":29171,"src":"9729:76:87","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":29137,"nodeType":"StructuredDocumentation","src":"9809:1060:87","text":" @notice Deposits liquidity into an eToken, EIP-2612 compatible version.\n @dev Forwards the call to {EToken-deposit}, after transferring the funds.\n      The user will receive etokens for the same amount deposited. EIP-2612 compatible version, allows sending a\n      signed permit in the same operation.\n @custom:pre `msg.sender` approved the spending of `currency()` for at least `amount`\n @custom:pre `eToken` is an active eToken installed in the pool.\n @custom:emits EToken-Transfer from 0x0 to `receiver`, reflects the eTokens minted.\n @custom:emits ERC20-Transfer from `msg.sender` to address(eToken)\n @param eToken The address of the eToken to which the user wants to provide liquidity\n @param receiver The user that will receive the minted tokens\n @param amount The amount to deposit\n @param deadline The deadline of the permit\n @param v Component of the secp256k1 signature\n @param r Component of the secp256k1 signature\n @param s Component of the secp256k1 signature"},"functionSelector":"de27010a","id":29155,"implemented":false,"kind":"function","modifiers":[],"name":"depositWithPermit","nameLocation":"10881:17:87","nodeType":"FunctionDefinition","parameters":{"id":29153,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29140,"mutability":"mutable","name":"eToken","nameLocation":"10912:6:87","nodeType":"VariableDeclaration","scope":29155,"src":"10904:14:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":29139,"nodeType":"UserDefinedTypeName","pathNode":{"id":29138,"name":"IEToken","nameLocations":["10904:7:87"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"10904:7:87"},"referencedDeclaration":28869,"src":"10904:7:87","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":29142,"mutability":"mutable","name":"amount","nameLocation":"10932:6:87","nodeType":"VariableDeclaration","scope":29155,"src":"10924:14:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29141,"name":"uint256","nodeType":"ElementaryTypeName","src":"10924:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29144,"mutability":"mutable","name":"receiver","nameLocation":"10952:8:87","nodeType":"VariableDeclaration","scope":29155,"src":"10944:16:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29143,"name":"address","nodeType":"ElementaryTypeName","src":"10944:7:87","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29146,"mutability":"mutable","name":"deadline","nameLocation":"10974:8:87","nodeType":"VariableDeclaration","scope":29155,"src":"10966:16:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29145,"name":"uint256","nodeType":"ElementaryTypeName","src":"10966:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29148,"mutability":"mutable","name":"v","nameLocation":"10994:1:87","nodeType":"VariableDeclaration","scope":29155,"src":"10988:7:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29147,"name":"uint8","nodeType":"ElementaryTypeName","src":"10988:5:87","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":29150,"mutability":"mutable","name":"r","nameLocation":"11009:1:87","nodeType":"VariableDeclaration","scope":29155,"src":"11001:9:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":29149,"name":"bytes32","nodeType":"ElementaryTypeName","src":"11001:7:87","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":29152,"mutability":"mutable","name":"s","nameLocation":"11024:1:87","nodeType":"VariableDeclaration","scope":29155,"src":"11016:9:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":29151,"name":"bytes32","nodeType":"ElementaryTypeName","src":"11016:7:87","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"10898:131:87"},"returnParameters":{"id":29154,"nodeType":"ParameterList","parameters":[],"src":"11038:0:87"},"scope":29171,"src":"10872:167:87","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":29156,"nodeType":"StructuredDocumentation","src":"11043:1027:87","text":" @notice Withdraws an amount from an eToken\n @dev Forwards the call to {EToken-withdraw}. `amount` of eTokens will be burned and the user will receive the\n      same amount in `currency()`.\n @custom:pre `eToken` is an active (or deprecated) eToken installed in the pool.\n @custom:emits EToken-Transfer from `owner` to `0x0`, reflects the eTokens burned.\n @custom:emits ERC20-Transfer from address(eToken) to `receiver`\n @param eToken The address of the eToken from where the user wants to withdraw liquidity\n @param amount The amount to withdraw. If equal to type(uint256).max, means full withdrawal.\n               If the balance is not enough or can't be withdrawn (locked as SCR), it withdraws\n               as much as it can, but doesn't fails.\n @param receiver The user that will receive the resulting `currency()`\n @param owner The user that owns the eTokens (must be msg.sender or have allowance)\n @return Returns the actual amount withdrawn."},"functionSelector":"dfcd412e","id":29170,"implemented":false,"kind":"function","modifiers":[],"name":"withdraw","nameLocation":"12082:8:87","nodeType":"FunctionDefinition","parameters":{"id":29166,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29159,"mutability":"mutable","name":"eToken","nameLocation":"12099:6:87","nodeType":"VariableDeclaration","scope":29170,"src":"12091:14:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":29158,"nodeType":"UserDefinedTypeName","pathNode":{"id":29157,"name":"IEToken","nameLocations":["12091:7:87"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"12091:7:87"},"referencedDeclaration":28869,"src":"12091:7:87","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":29161,"mutability":"mutable","name":"amount","nameLocation":"12115:6:87","nodeType":"VariableDeclaration","scope":29170,"src":"12107:14:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29160,"name":"uint256","nodeType":"ElementaryTypeName","src":"12107:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29163,"mutability":"mutable","name":"receiver","nameLocation":"12131:8:87","nodeType":"VariableDeclaration","scope":29170,"src":"12123:16:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29162,"name":"address","nodeType":"ElementaryTypeName","src":"12123:7:87","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29165,"mutability":"mutable","name":"owner","nameLocation":"12149:5:87","nodeType":"VariableDeclaration","scope":29170,"src":"12141:13:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29164,"name":"address","nodeType":"ElementaryTypeName","src":"12141:7:87","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"12090:65:87"},"returnParameters":{"id":29169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29168,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29170,"src":"12174:7:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29167,"name":"uint256","nodeType":"ElementaryTypeName","src":"12174:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12173:9:87"},"scope":29171,"src":"12073:110:87","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":29172,"src":"643:11542:87","usedErrors":[],"usedEvents":[29002,29012,29026,29036]}],"src":"39:12147:87"},"id":87},"contracts/interfaces/IPolicyPoolComponent.sol":{"ast":{"absolutePath":"contracts/interfaces/IPolicyPoolComponent.sol","exportedSymbols":{"IERC165":[14272],"IPolicyPool":[29171],"IPolicyPoolComponent":[29188]},"id":29189,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":29173,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:88"},{"absolutePath":"contracts/interfaces/IPolicyPool.sol","file":"./IPolicyPool.sol","id":29175,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29189,"sourceUnit":29172,"src":"65:46:88","symbolAliases":[{"foreign":{"id":29174,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"73:11:88","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":29177,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29189,"sourceUnit":14273,"src":"112:80:88","symbolAliases":[{"foreign":{"id":29176,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"120:7:88","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":29179,"name":"IERC165","nameLocations":["398:7:88"],"nodeType":"IdentifierPath","referencedDeclaration":14272,"src":"398:7:88"},"id":29180,"nodeType":"InheritanceSpecifier","src":"398:7:88"}],"canonicalName":"IPolicyPoolComponent","contractDependencies":[],"contractKind":"interface","documentation":{"id":29178,"nodeType":"StructuredDocumentation","src":"194:169:88","text":" @title IPolicyPoolComponent interface\n @notice Interface for Contracts linked (owned) by a PolicyPool. Useful to avoid cyclic dependencies\n @author Ensuro"},"fullyImplemented":false,"id":29188,"linearizedBaseContracts":[29188,14272],"name":"IPolicyPoolComponent","nameLocation":"374:20:88","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":29181,"nodeType":"StructuredDocumentation","src":"410:109:88","text":" @notice Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs."},"functionSelector":"4d15eb03","id":29187,"implemented":false,"kind":"function","modifiers":[],"name":"policyPool","nameLocation":"531:10:88","nodeType":"FunctionDefinition","parameters":{"id":29182,"nodeType":"ParameterList","parameters":[],"src":"541:2:88"},"returnParameters":{"id":29186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29185,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29187,"src":"567:11:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"typeName":{"id":29184,"nodeType":"UserDefinedTypeName","pathNode":{"id":29183,"name":"IPolicyPool","nameLocations":["567:11:88"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"567:11:88"},"referencedDeclaration":29171,"src":"567:11:88","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"566:13:88"},"scope":29188,"src":"522:58:88","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":29189,"src":"364:218:88","usedErrors":[],"usedEvents":[]}],"src":"39:544:88"},"id":88},"contracts/interfaces/IPremiumsAccount.sol":{"ast":{"absolutePath":"contracts/interfaces/IPremiumsAccount.sol","exportedSymbols":{"IEToken":[28869],"IPremiumsAccount":[29276],"Policy":[22826]},"id":29277,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":29190,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:89"},{"absolutePath":"contracts/interfaces/IEToken.sol","file":"./IEToken.sol","id":29192,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29277,"sourceUnit":28870,"src":"65:38:89","symbolAliases":[{"foreign":{"id":29191,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28869,"src":"73:7:89","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/Policy.sol","file":"../Policy.sol","id":29194,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29277,"sourceUnit":22827,"src":"104:37:89","symbolAliases":[{"foreign":{"id":29193,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"112:6:89","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IPremiumsAccount","contractDependencies":[],"contractKind":"interface","documentation":{"id":29195,"nodeType":"StructuredDocumentation","src":"143:115:89","text":" @title IPremiumsAccount interface\n @notice Interface for Premiums Account contracts.\n @author Ensuro"},"fullyImplemented":false,"id":29276,"linearizedBaseContracts":[29276],"name":"IPremiumsAccount","nameLocation":"269:16:89","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":29196,"nodeType":"StructuredDocumentation","src":"290:322:89","text":" @notice Adds a policy to the PremiumsAccount. Stores the pure premiums and locks the aditional funds from junior and\n senior eTokens.\n @param policy The policy to add (created in this transaction)\n @custom:pre Must be called by `policyPool()`\n @custom:emits {EToken-SCRLocked}"},"functionSelector":"f79ac183","id":29202,"implemented":false,"kind":"function","modifiers":[],"name":"policyCreated","nameLocation":"624:13:89","nodeType":"FunctionDefinition","parameters":{"id":29200,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29199,"mutability":"mutable","name":"policy","nameLocation":"663:6:89","nodeType":"VariableDeclaration","scope":29202,"src":"638:31:89","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":29198,"nodeType":"UserDefinedTypeName","pathNode":{"id":29197,"name":"Policy.PolicyData","nameLocations":["638:6:89","645:10:89"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"638:17:89"},"referencedDeclaration":22256,"src":"638:17:89","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"637:33:89"},"returnParameters":{"id":29201,"nodeType":"ParameterList","parameters":[],"src":"679:0:89"},"scope":29276,"src":"615:65:89","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":29203,"nodeType":"StructuredDocumentation","src":"684:495:89","text":" @notice Replaces a policy with another in PremiumsAccount. Stores the pure premiums difference and\n re-locks the aditional funds from junior and senior eTokens.\n @param oldPolicy The policy to replace (created in a previous transaction)\n @param newPolicy The policy that will replace the old one (created in this transaction)\n @custom:pre Must be called by `policyPool()`\n @custom:emits {EToken-SCRUnlocked}\n @custom:emits {EToken-SCRLocked}"},"functionSelector":"d5c6c166","id":29212,"implemented":false,"kind":"function","modifiers":[],"name":"policyReplaced","nameLocation":"1191:14:89","nodeType":"FunctionDefinition","parameters":{"id":29210,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29206,"mutability":"mutable","name":"oldPolicy","nameLocation":"1231:9:89","nodeType":"VariableDeclaration","scope":29212,"src":"1206:34:89","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":29205,"nodeType":"UserDefinedTypeName","pathNode":{"id":29204,"name":"Policy.PolicyData","nameLocations":["1206:6:89","1213:10:89"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"1206:17:89"},"referencedDeclaration":22256,"src":"1206:17:89","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":29209,"mutability":"mutable","name":"newPolicy","nameLocation":"1267:9:89","nodeType":"VariableDeclaration","scope":29212,"src":"1242:34:89","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":29208,"nodeType":"UserDefinedTypeName","pathNode":{"id":29207,"name":"Policy.PolicyData","nameLocations":["1242:6:89","1249:10:89"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"1242:17:89"},"referencedDeclaration":22256,"src":"1242:17:89","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"1205:72:89"},"returnParameters":{"id":29211,"nodeType":"ParameterList","parameters":[],"src":"1286:0:89"},"scope":29276,"src":"1182:105:89","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":29213,"nodeType":"StructuredDocumentation","src":"1291:594:89","text":" @notice Reflects the cancellation of a policy, doing the required refunds.\n @param policyToCancel The policy that is being cancelled\n @param purePremiumRefund The pure premium amount that will be reimbursed to the policy holder\n @param jrCocRefund The jrCoc that will be reimbursed to the policy holder\n @param srCocRefund The srCoc that will be reimbursed to the policy holder\n @param policyHolder Owner of the policy that will receive the reimbursement\n @custom:pre Must be called by `policyPool()`\n @custom:emits {EToken-SCRUnlocked}"},"functionSelector":"ee1f9a6a","id":29227,"implemented":false,"kind":"function","modifiers":[],"name":"policyCancelled","nameLocation":"1897:15:89","nodeType":"FunctionDefinition","parameters":{"id":29225,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29216,"mutability":"mutable","name":"policyToCancel","nameLocation":"1945:14:89","nodeType":"VariableDeclaration","scope":29227,"src":"1918:41:89","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":29215,"nodeType":"UserDefinedTypeName","pathNode":{"id":29214,"name":"Policy.PolicyData","nameLocations":["1918:6:89","1925:10:89"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"1918:17:89"},"referencedDeclaration":22256,"src":"1918:17:89","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":29218,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"1973:17:89","nodeType":"VariableDeclaration","scope":29227,"src":"1965:25:89","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29217,"name":"uint256","nodeType":"ElementaryTypeName","src":"1965:7:89","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29220,"mutability":"mutable","name":"jrCocRefund","nameLocation":"2004:11:89","nodeType":"VariableDeclaration","scope":29227,"src":"1996:19:89","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29219,"name":"uint256","nodeType":"ElementaryTypeName","src":"1996:7:89","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29222,"mutability":"mutable","name":"srCocRefund","nameLocation":"2029:11:89","nodeType":"VariableDeclaration","scope":29227,"src":"2021:19:89","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29221,"name":"uint256","nodeType":"ElementaryTypeName","src":"2021:7:89","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29224,"mutability":"mutable","name":"policyHolder","nameLocation":"2054:12:89","nodeType":"VariableDeclaration","scope":29227,"src":"2046:20:89","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29223,"name":"address","nodeType":"ElementaryTypeName","src":"2046:7:89","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1912:158:89"},"returnParameters":{"id":29226,"nodeType":"ParameterList","parameters":[],"src":"2079:0:89"},"scope":29276,"src":"1888:192:89","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":29228,"nodeType":"StructuredDocumentation","src":"2084:569:89","text":" @notice The PremiumsAccount is notified that the policy was resolved and issues the payout to the policyHolder.\n @param policyHolder The one that will receive the payout\n @param policy The policy that was resolved\n @param payout The amount that has to be transferred to `policyHolder`\n @custom:pre Must be called by `policyPool()`\n @custom:emits {ERC20-Transfer}: `to == policyHolder`, `amount == payout`\n @custom:emits {EToken-InternalLoan}: optional, if a loan needs to be taken\n @custom:emits {EToken-SCRUnlocked}"},"functionSelector":"1dda2899","id":29238,"implemented":false,"kind":"function","modifiers":[],"name":"policyResolvedWithPayout","nameLocation":"2665:24:89","nodeType":"FunctionDefinition","parameters":{"id":29236,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29230,"mutability":"mutable","name":"policyHolder","nameLocation":"2698:12:89","nodeType":"VariableDeclaration","scope":29238,"src":"2690:20:89","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29229,"name":"address","nodeType":"ElementaryTypeName","src":"2690:7:89","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29233,"mutability":"mutable","name":"policy","nameLocation":"2737:6:89","nodeType":"VariableDeclaration","scope":29238,"src":"2712:31:89","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":29232,"nodeType":"UserDefinedTypeName","pathNode":{"id":29231,"name":"Policy.PolicyData","nameLocations":["2712:6:89","2719:10:89"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"2712:17:89"},"referencedDeclaration":22256,"src":"2712:17:89","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":29235,"mutability":"mutable","name":"payout","nameLocation":"2753:6:89","nodeType":"VariableDeclaration","scope":29238,"src":"2745:14:89","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29234,"name":"uint256","nodeType":"ElementaryTypeName","src":"2745:7:89","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2689:71:89"},"returnParameters":{"id":29237,"nodeType":"ParameterList","parameters":[],"src":"2769:0:89"},"scope":29276,"src":"2656:114:89","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":29239,"nodeType":"StructuredDocumentation","src":"2774:397:89","text":" @notice The PremiumsAccount is notified that the policy has expired, unlocks the SCR and earns the pure premium.\n @param policy The policy that has expired\n @custom:pre Must be called by `policyPool()`\n @custom:emits {ERC20-Transfer}: `to == policyHolder`, `amount == payout`\n @custom:emits {EToken-InternalLoanRepaid}: optional, if a loan was taken before"},"functionSelector":"76185ff1","id":29245,"implemented":false,"kind":"function","modifiers":[],"name":"policyExpired","nameLocation":"3183:13:89","nodeType":"FunctionDefinition","parameters":{"id":29243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29242,"mutability":"mutable","name":"policy","nameLocation":"3222:6:89","nodeType":"VariableDeclaration","scope":29245,"src":"3197:31:89","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":29241,"nodeType":"UserDefinedTypeName","pathNode":{"id":29240,"name":"Policy.PolicyData","nameLocations":["3197:6:89","3204:10:89"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"3197:17:89"},"referencedDeclaration":22256,"src":"3197:17:89","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"3196:33:89"},"returnParameters":{"id":29244,"nodeType":"ParameterList","parameters":[],"src":"3238:0:89"},"scope":29276,"src":"3174:65:89","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":29246,"nodeType":"StructuredDocumentation","src":"3243:132:89","text":" @notice The senior eToken, the secondary source of solvency, used if the premiums account is exhausted and junior too"},"functionSelector":"7b83037b","id":29252,"implemented":false,"kind":"function","modifiers":[],"name":"seniorEtk","nameLocation":"3387:9:89","nodeType":"FunctionDefinition","parameters":{"id":29247,"nodeType":"ParameterList","parameters":[],"src":"3396:2:89"},"returnParameters":{"id":29251,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29250,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29252,"src":"3422:7:89","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":29249,"nodeType":"UserDefinedTypeName","pathNode":{"id":29248,"name":"IEToken","nameLocations":["3422:7:89"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"3422:7:89"},"referencedDeclaration":28869,"src":"3422:7:89","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"3421:9:89"},"scope":29276,"src":"3378:53:89","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":29253,"nodeType":"StructuredDocumentation","src":"3435:116:89","text":" @notice The junior eToken, the primary source of solvency, used if the premiums account is exhausted."},"functionSelector":"536ebbfc","id":29259,"implemented":false,"kind":"function","modifiers":[],"name":"juniorEtk","nameLocation":"3563:9:89","nodeType":"FunctionDefinition","parameters":{"id":29254,"nodeType":"ParameterList","parameters":[],"src":"3572:2:89"},"returnParameters":{"id":29258,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29257,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29259,"src":"3598:7:89","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":29256,"nodeType":"UserDefinedTypeName","pathNode":{"id":29255,"name":"IEToken","nameLocations":["3598:7:89"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"3598:7:89"},"referencedDeclaration":28869,"src":"3598:7:89","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"3597:9:89"},"scope":29276,"src":"3554:53:89","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":29260,"nodeType":"StructuredDocumentation","src":"3611:95:89","text":" @notice Returns the juniorEtk and seniorEtk. See {juniorEtk()} and {seniorEtk()}"},"functionSelector":"5e445859","id":29269,"implemented":false,"kind":"function","modifiers":[],"name":"etks","nameLocation":"3718:4:89","nodeType":"FunctionDefinition","parameters":{"id":29261,"nodeType":"ParameterList","parameters":[],"src":"3722:2:89"},"returnParameters":{"id":29268,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29264,"mutability":"mutable","name":"juniorEtk","nameLocation":"3756:9:89","nodeType":"VariableDeclaration","scope":29269,"src":"3748:17:89","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":29263,"nodeType":"UserDefinedTypeName","pathNode":{"id":29262,"name":"IEToken","nameLocations":["3748:7:89"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"3748:7:89"},"referencedDeclaration":28869,"src":"3748:7:89","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":29267,"mutability":"mutable","name":"seniorEtk","nameLocation":"3775:9:89","nodeType":"VariableDeclaration","scope":29269,"src":"3767:17:89","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":29266,"nodeType":"UserDefinedTypeName","pathNode":{"id":29265,"name":"IEToken","nameLocations":["3767:7:89"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"3767:7:89"},"referencedDeclaration":28869,"src":"3767:7:89","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"3747:38:89"},"scope":29276,"src":"3709:77:89","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":29270,"nodeType":"StructuredDocumentation","src":"3790:80:89","text":" @notice The total amount of premiums hold by this PremiumsAccount"},"functionSelector":"26ccbd22","id":29275,"implemented":false,"kind":"function","modifiers":[],"name":"purePremiums","nameLocation":"3882:12:89","nodeType":"FunctionDefinition","parameters":{"id":29271,"nodeType":"ParameterList","parameters":[],"src":"3894:2:89"},"returnParameters":{"id":29274,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29273,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29275,"src":"3920:7:89","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29272,"name":"uint256","nodeType":"ElementaryTypeName","src":"3920:7:89","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3919:9:89"},"scope":29276,"src":"3873:56:89","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":29277,"src":"259:3672:89","usedErrors":[],"usedEvents":[]}],"src":"39:3893:89"},"id":89},"contracts/interfaces/IRiskModule.sol":{"ast":{"absolutePath":"contracts/interfaces/IRiskModule.sol","exportedSymbols":{"IPremiumsAccount":[29276],"IRiskModule":[29295]},"id":29296,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":29278,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:90"},{"absolutePath":"contracts/interfaces/IPremiumsAccount.sol","file":"./IPremiumsAccount.sol","id":29280,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29296,"sourceUnit":29277,"src":"65:56:90","symbolAliases":[{"foreign":{"id":29279,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29276,"src":"73:16:90","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IRiskModule","contractDependencies":[],"contractKind":"interface","documentation":{"id":29281,"nodeType":"StructuredDocumentation","src":"123:162:90","text":" @title IRiskModule interface\n @notice Interface for RiskModule smart contracts. Gives access to RiskModule configuration parameters\n @author Ensuro"},"fullyImplemented":false,"id":29295,"linearizedBaseContracts":[29295],"name":"IRiskModule","nameLocation":"296:11:90","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":29282,"nodeType":"StructuredDocumentation","src":"312:93:90","text":" @notice Returns the address of the partner that receives the partnerCommission"},"functionSelector":"521eb273","id":29287,"implemented":false,"kind":"function","modifiers":[],"name":"wallet","nameLocation":"417:6:90","nodeType":"FunctionDefinition","parameters":{"id":29283,"nodeType":"ParameterList","parameters":[],"src":"423:2:90"},"returnParameters":{"id":29286,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29285,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29287,"src":"449:7:90","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29284,"name":"address","nodeType":"ElementaryTypeName","src":"449:7:90","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"448:9:90"},"scope":29295,"src":"408:50:90","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":29288,"nodeType":"StructuredDocumentation","src":"462:121:90","text":" @notice Returns the {PremiumsAccount} where the premiums of this risk module are collected. Never changes."},"functionSelector":"73a952e8","id":29294,"implemented":false,"kind":"function","modifiers":[],"name":"premiumsAccount","nameLocation":"595:15:90","nodeType":"FunctionDefinition","parameters":{"id":29289,"nodeType":"ParameterList","parameters":[],"src":"610:2:90"},"returnParameters":{"id":29293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29292,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29294,"src":"636:16:90","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"},"typeName":{"id":29291,"nodeType":"UserDefinedTypeName","pathNode":{"id":29290,"name":"IPremiumsAccount","nameLocations":["636:16:90"],"nodeType":"IdentifierPath","referencedDeclaration":29276,"src":"636:16:90"},"referencedDeclaration":29276,"src":"636:16:90","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"src":"635:18:90"},"scope":29295,"src":"586:68:90","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":29296,"src":"286:370:90","usedErrors":[],"usedEvents":[]}],"src":"39:618:90"},"id":90},"contracts/interfaces/IUnderwriter.sol":{"ast":{"absolutePath":"contracts/interfaces/IUnderwriter.sol","exportedSymbols":{"IUnderwriter":[29363],"Policy":[22826]},"id":29364,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":29297,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:91"},{"absolutePath":"contracts/Policy.sol","file":"../Policy.sol","id":29299,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29364,"sourceUnit":22827,"src":"64:37:91","symbolAliases":[{"foreign":{"id":29298,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"72:6:91","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IUnderwriter","contractDependencies":[],"contractKind":"interface","documentation":{"id":29300,"nodeType":"StructuredDocumentation","src":"103:222:91","text":" @title Underwriter interface\n @notice Interface for a contract that validates inputs and converts it into the fields required to create a policy\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":false,"id":29363,"linearizedBaseContracts":[29363],"name":"IUnderwriter","nameLocation":"336:12:91","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":29301,"nodeType":"StructuredDocumentation","src":"353:916:91","text":" @notice Prices a new policy request for RiskModule `rm`.\n @param rm        The RiskModule address requesting pricing (implementations may use it for access checks).\n @param inputData Opaque payload consumed by the Underwriter implementation.\n @return payout      The policy payout.\n @return premium     The total premium for the policy.\n @return lossProb    Loss probability used for pricing/risk calculations.\n @return expiration  Policy expiration timestamp (seconds since epoch).\n @return internalId  Unique id within `rm` used to derive the policy id.\n @return params      Additional policy parameters used by {Policy-initialize}.\n @custom:pre `inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.\n @custom:pre The caller must satisfy any access/authentication requirements imposed by the implementation."},"functionSelector":"ba097a2a","id":29321,"implemented":false,"kind":"function","modifiers":[],"name":"priceNewPolicy","nameLocation":"1281:14:91","nodeType":"FunctionDefinition","parameters":{"id":29306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29303,"mutability":"mutable","name":"rm","nameLocation":"1309:2:91","nodeType":"VariableDeclaration","scope":29321,"src":"1301:10:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29302,"name":"address","nodeType":"ElementaryTypeName","src":"1301:7:91","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29305,"mutability":"mutable","name":"inputData","nameLocation":"1332:9:91","nodeType":"VariableDeclaration","scope":29321,"src":"1317:24:91","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":29304,"name":"bytes","nodeType":"ElementaryTypeName","src":"1317:5:91","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1295:50:91"},"returnParameters":{"id":29320,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29308,"mutability":"mutable","name":"payout","nameLocation":"1396:6:91","nodeType":"VariableDeclaration","scope":29321,"src":"1388:14:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29307,"name":"uint256","nodeType":"ElementaryTypeName","src":"1388:7:91","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29310,"mutability":"mutable","name":"premium","nameLocation":"1418:7:91","nodeType":"VariableDeclaration","scope":29321,"src":"1410:15:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29309,"name":"uint256","nodeType":"ElementaryTypeName","src":"1410:7:91","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29312,"mutability":"mutable","name":"lossProb","nameLocation":"1441:8:91","nodeType":"VariableDeclaration","scope":29321,"src":"1433:16:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29311,"name":"uint256","nodeType":"ElementaryTypeName","src":"1433:7:91","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29314,"mutability":"mutable","name":"expiration","nameLocation":"1464:10:91","nodeType":"VariableDeclaration","scope":29321,"src":"1457:17:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":29313,"name":"uint40","nodeType":"ElementaryTypeName","src":"1457:6:91","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":29316,"mutability":"mutable","name":"internalId","nameLocation":"1489:10:91","nodeType":"VariableDeclaration","scope":29321,"src":"1482:17:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":29315,"name":"uint96","nodeType":"ElementaryTypeName","src":"1482:6:91","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":29319,"mutability":"mutable","name":"params","nameLocation":"1528:6:91","nodeType":"VariableDeclaration","scope":29321,"src":"1507:27:91","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":29318,"nodeType":"UserDefinedTypeName","pathNode":{"id":29317,"name":"Policy.Params","nameLocations":["1507:6:91","1514:6:91"],"nodeType":"IdentifierPath","referencedDeclaration":22230,"src":"1507:13:91"},"referencedDeclaration":22230,"src":"1507:13:91","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"src":"1380:160:91"},"scope":29363,"src":"1272:269:91","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":29322,"nodeType":"StructuredDocumentation","src":"1545:999:91","text":" @notice Prices a policy replacement request for RiskModule `rm`.\n @param rm        The RiskModule address requesting pricing (implementations may use it for access checks).\n @param inputData Opaque payload consumed by the Underwriter implementation.\n @return oldPolicy   The policy being replaced (as {Policy-PolicyData}).\n @return payout      The replacement policy payout.\n @return premium     The replacement policy premium.\n @return lossProb    Loss probability used for pricing/risk calculations.\n @return expiration  Replacement policy expiration timestamp.\n @return internalId  Unique id within `rm` for the replacement policy.\n @return params      Additional policy parameters used by {Policy-initialize}.\n @custom:pre `inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.\n @custom:pre The caller must satisfy any access/authentication requirements imposed by the implementation."},"functionSelector":"9ba942d6","id":29345,"implemented":false,"kind":"function","modifiers":[],"name":"pricePolicyReplacement","nameLocation":"2556:22:91","nodeType":"FunctionDefinition","parameters":{"id":29327,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29324,"mutability":"mutable","name":"rm","nameLocation":"2592:2:91","nodeType":"VariableDeclaration","scope":29345,"src":"2584:10:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29323,"name":"address","nodeType":"ElementaryTypeName","src":"2584:7:91","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29326,"mutability":"mutable","name":"inputData","nameLocation":"2615:9:91","nodeType":"VariableDeclaration","scope":29345,"src":"2600:24:91","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":29325,"name":"bytes","nodeType":"ElementaryTypeName","src":"2600:5:91","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2578:50:91"},"returnParameters":{"id":29344,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29330,"mutability":"mutable","name":"oldPolicy","nameLocation":"2696:9:91","nodeType":"VariableDeclaration","scope":29345,"src":"2671:34:91","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":29329,"nodeType":"UserDefinedTypeName","pathNode":{"id":29328,"name":"Policy.PolicyData","nameLocations":["2671:6:91","2678:10:91"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"2671:17:91"},"referencedDeclaration":22256,"src":"2671:17:91","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":29332,"mutability":"mutable","name":"payout","nameLocation":"2721:6:91","nodeType":"VariableDeclaration","scope":29345,"src":"2713:14:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29331,"name":"uint256","nodeType":"ElementaryTypeName","src":"2713:7:91","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29334,"mutability":"mutable","name":"premium","nameLocation":"2743:7:91","nodeType":"VariableDeclaration","scope":29345,"src":"2735:15:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29333,"name":"uint256","nodeType":"ElementaryTypeName","src":"2735:7:91","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29336,"mutability":"mutable","name":"lossProb","nameLocation":"2766:8:91","nodeType":"VariableDeclaration","scope":29345,"src":"2758:16:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29335,"name":"uint256","nodeType":"ElementaryTypeName","src":"2758:7:91","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29338,"mutability":"mutable","name":"expiration","nameLocation":"2789:10:91","nodeType":"VariableDeclaration","scope":29345,"src":"2782:17:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":29337,"name":"uint40","nodeType":"ElementaryTypeName","src":"2782:6:91","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":29340,"mutability":"mutable","name":"internalId","nameLocation":"2814:10:91","nodeType":"VariableDeclaration","scope":29345,"src":"2807:17:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":29339,"name":"uint96","nodeType":"ElementaryTypeName","src":"2807:6:91","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":29343,"mutability":"mutable","name":"params","nameLocation":"2853:6:91","nodeType":"VariableDeclaration","scope":29345,"src":"2832:27:91","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":29342,"nodeType":"UserDefinedTypeName","pathNode":{"id":29341,"name":"Policy.Params","nameLocations":["2832:6:91","2839:6:91"],"nodeType":"IdentifierPath","referencedDeclaration":22230,"src":"2832:13:91"},"referencedDeclaration":22230,"src":"2832:13:91","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"src":"2663:202:91"},"scope":29363,"src":"2547:319:91","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":29346,"nodeType":"StructuredDocumentation","src":"2870:855:91","text":" @notice Prices a policy cancellation request for RiskModule `rm`.\n @param rm        The RiskModule address requesting pricing (implementations may use it for access checks).\n @param inputData Opaque payload consumed by the Underwriter implementation.\n @return policyToCancel    The policy to cancel (as {Policy-PolicyData}).\n @return purePremiumRefund Amount to refund from pure premium.\n @return jrCocRefund       Amount to refund from junior CoC (or a sentinel value, if supported).\n @return srCocRefund       Amount to refund from senior CoC (or a sentinel value, if supported).\n @custom:pre `inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.\n @custom:pre The caller must satisfy any access/authentication requirements imposed by the implementation."},"functionSelector":"32f857fa","id":29362,"implemented":false,"kind":"function","modifiers":[],"name":"pricePolicyCancellation","nameLocation":"3737:23:91","nodeType":"FunctionDefinition","parameters":{"id":29351,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29348,"mutability":"mutable","name":"rm","nameLocation":"3774:2:91","nodeType":"VariableDeclaration","scope":29362,"src":"3766:10:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29347,"name":"address","nodeType":"ElementaryTypeName","src":"3766:7:91","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29350,"mutability":"mutable","name":"inputData","nameLocation":"3797:9:91","nodeType":"VariableDeclaration","scope":29362,"src":"3782:24:91","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":29349,"name":"bytes","nodeType":"ElementaryTypeName","src":"3782:5:91","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3760:50:91"},"returnParameters":{"id":29361,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29354,"mutability":"mutable","name":"policyToCancel","nameLocation":"3878:14:91","nodeType":"VariableDeclaration","scope":29362,"src":"3853:39:91","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":29353,"nodeType":"UserDefinedTypeName","pathNode":{"id":29352,"name":"Policy.PolicyData","nameLocations":["3853:6:91","3860:10:91"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"3853:17:91"},"referencedDeclaration":22256,"src":"3853:17:91","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":29356,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"3908:17:91","nodeType":"VariableDeclaration","scope":29362,"src":"3900:25:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29355,"name":"uint256","nodeType":"ElementaryTypeName","src":"3900:7:91","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29358,"mutability":"mutable","name":"jrCocRefund","nameLocation":"3941:11:91","nodeType":"VariableDeclaration","scope":29362,"src":"3933:19:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29357,"name":"uint256","nodeType":"ElementaryTypeName","src":"3933:7:91","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29360,"mutability":"mutable","name":"srCocRefund","nameLocation":"3968:11:91","nodeType":"VariableDeclaration","scope":29362,"src":"3960:19:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29359,"name":"uint256","nodeType":"ElementaryTypeName","src":"3960:7:91","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3845:140:91"},"scope":29363,"src":"3728:258:91","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":29364,"src":"326:3662:91","usedErrors":[],"usedEvents":[]}],"src":"39:3950:91"},"id":91},"contracts/mocks/ForwardProxy.sol":{"ast":{"absolutePath":"contracts/mocks/ForwardProxy.sol","exportedSymbols":{"ForwardProxy":[29412],"Proxy":[6940]},"id":29413,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":29365,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:92"},{"absolutePath":"@openzeppelin/contracts/proxy/Proxy.sol","file":"@openzeppelin/contracts/proxy/Proxy.sol","id":29367,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29413,"sourceUnit":6941,"src":"65:62:92","symbolAliases":[{"foreign":{"id":29366,"name":"Proxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6940,"src":"73:5:92","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":29369,"name":"Proxy","nameLocations":["577:5:92"],"nodeType":"IdentifierPath","referencedDeclaration":6940,"src":"577:5:92"},"id":29370,"nodeType":"InheritanceSpecifier","src":"577:5:92"}],"canonicalName":"ForwardProxy","contractDependencies":[],"contractKind":"contract","documentation":{"id":29368,"nodeType":"StructuredDocumentation","src":"129:422:92","text":" @dev This contract provides a fallback function that forwards all calls to another contract using the EVM\n instruction `call`.\n Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a\n different contract through the {_delegate} function.\n The success and return data of the delegated call will be returned back to the caller of the proxy."},"fullyImplemented":true,"id":29412,"linearizedBaseContracts":[29412,6940],"name":"ForwardProxy","nameLocation":"561:12:92","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":29372,"mutability":"mutable","name":"_forwardTo","nameLocation":"604:10:92","nodeType":"VariableDeclaration","scope":29412,"src":"587:27:92","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29371,"name":"address","nodeType":"ElementaryTypeName","src":"587:7:92","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"body":{"id":29381,"nodeType":"Block","src":"650:33:92","statements":[{"expression":{"id":29379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29377,"name":"_forwardTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29372,"src":"656:10:92","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":29378,"name":"forwardTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29374,"src":"669:9:92","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"656:22:92","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":29380,"nodeType":"ExpressionStatement","src":"656:22:92"}]},"id":29382,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":29375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29374,"mutability":"mutable","name":"forwardTo","nameLocation":"639:9:92","nodeType":"VariableDeclaration","scope":29382,"src":"631:17:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29373,"name":"address","nodeType":"ElementaryTypeName","src":"631:7:92","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"630:19:92"},"returnParameters":{"id":29376,"nodeType":"ParameterList","parameters":[],"src":"650:0:92"},"scope":29412,"src":"619:64:92","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[6915],"body":{"id":29390,"nodeType":"Block","src":"942:850:92","statements":[{"AST":{"nativeSrc":"1009:779:92","nodeType":"YulBlock","src":"1009:779:92","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1238:1:92","nodeType":"YulLiteral","src":"1238:1:92","type":"","value":"0"},{"kind":"number","nativeSrc":"1241:1:92","nodeType":"YulLiteral","src":"1241:1:92","type":"","value":"0"},{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"1244:12:92","nodeType":"YulIdentifier","src":"1244:12:92"},"nativeSrc":"1244:14:92","nodeType":"YulFunctionCall","src":"1244:14:92"}],"functionName":{"name":"calldatacopy","nativeSrc":"1225:12:92","nodeType":"YulIdentifier","src":"1225:12:92"},"nativeSrc":"1225:34:92","nodeType":"YulFunctionCall","src":"1225:34:92"},"nativeSrc":"1225:34:92","nodeType":"YulExpressionStatement","src":"1225:34:92"},{"nativeSrc":"1452:69:92","nodeType":"YulVariableDeclaration","src":"1452:69:92","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"1471:3:92","nodeType":"YulIdentifier","src":"1471:3:92"},"nativeSrc":"1471:5:92","nodeType":"YulFunctionCall","src":"1471:5:92"},{"name":"implementation","nativeSrc":"1478:14:92","nodeType":"YulIdentifier","src":"1478:14:92"},{"kind":"number","nativeSrc":"1494:1:92","nodeType":"YulLiteral","src":"1494:1:92","type":"","value":"0"},{"kind":"number","nativeSrc":"1497:1:92","nodeType":"YulLiteral","src":"1497:1:92","type":"","value":"0"},{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"1500:12:92","nodeType":"YulIdentifier","src":"1500:12:92"},"nativeSrc":"1500:14:92","nodeType":"YulFunctionCall","src":"1500:14:92"},{"kind":"number","nativeSrc":"1516:1:92","nodeType":"YulLiteral","src":"1516:1:92","type":"","value":"0"},{"kind":"number","nativeSrc":"1519:1:92","nodeType":"YulLiteral","src":"1519:1:92","type":"","value":"0"}],"functionName":{"name":"call","nativeSrc":"1466:4:92","nodeType":"YulIdentifier","src":"1466:4:92"},"nativeSrc":"1466:55:92","nodeType":"YulFunctionCall","src":"1466:55:92"},"variables":[{"name":"result","nativeSrc":"1456:6:92","nodeType":"YulTypedName","src":"1456:6:92","type":""}]},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1577:1:92","nodeType":"YulLiteral","src":"1577:1:92","type":"","value":"0"},{"kind":"number","nativeSrc":"1580:1:92","nodeType":"YulLiteral","src":"1580:1:92","type":"","value":"0"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"1583:14:92","nodeType":"YulIdentifier","src":"1583:14:92"},"nativeSrc":"1583:16:92","nodeType":"YulFunctionCall","src":"1583:16:92"}],"functionName":{"name":"returndatacopy","nativeSrc":"1562:14:92","nodeType":"YulIdentifier","src":"1562:14:92"},"nativeSrc":"1562:38:92","nodeType":"YulFunctionCall","src":"1562:38:92"},"nativeSrc":"1562:38:92","nodeType":"YulExpressionStatement","src":"1562:38:92"},{"cases":[{"body":{"nativeSrc":"1677:45:92","nodeType":"YulBlock","src":"1677:45:92","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1694:1:92","nodeType":"YulLiteral","src":"1694:1:92","type":"","value":"0"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"1697:14:92","nodeType":"YulIdentifier","src":"1697:14:92"},"nativeSrc":"1697:16:92","nodeType":"YulFunctionCall","src":"1697:16:92"}],"functionName":{"name":"revert","nativeSrc":"1687:6:92","nodeType":"YulIdentifier","src":"1687:6:92"},"nativeSrc":"1687:27:92","nodeType":"YulFunctionCall","src":"1687:27:92"},"nativeSrc":"1687:27:92","nodeType":"YulExpressionStatement","src":"1687:27:92"}]},"nativeSrc":"1670:52:92","nodeType":"YulCase","src":"1670:52:92","value":{"kind":"number","nativeSrc":"1675:1:92","nodeType":"YulLiteral","src":"1675:1:92","type":"","value":"0"}},{"body":{"nativeSrc":"1737:45:92","nodeType":"YulBlock","src":"1737:45:92","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1754:1:92","nodeType":"YulLiteral","src":"1754:1:92","type":"","value":"0"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"1757:14:92","nodeType":"YulIdentifier","src":"1757:14:92"},"nativeSrc":"1757:16:92","nodeType":"YulFunctionCall","src":"1757:16:92"}],"functionName":{"name":"return","nativeSrc":"1747:6:92","nodeType":"YulIdentifier","src":"1747:6:92"},"nativeSrc":"1747:27:92","nodeType":"YulFunctionCall","src":"1747:27:92"},"nativeSrc":"1747:27:92","nodeType":"YulExpressionStatement","src":"1747:27:92"}]},"nativeSrc":"1729:53:92","nodeType":"YulCase","src":"1729:53:92","value":"default"}],"expression":{"name":"result","nativeSrc":"1615:6:92","nodeType":"YulIdentifier","src":"1615:6:92"},"nativeSrc":"1608:174:92","nodeType":"YulSwitch","src":"1608:174:92"}]},"evmVersion":"prague","externalReferences":[{"declaration":29385,"isOffset":false,"isSlot":false,"src":"1478:14:92","valueSize":1}],"id":29389,"nodeType":"InlineAssembly","src":"1000:788:92"}]},"documentation":{"id":29383,"nodeType":"StructuredDocumentation","src":"687:183:92","text":" @dev Delegates the current call to `implementation`.\n This function does not return to its internall call site, it will return directly to the external caller."},"id":29391,"implemented":true,"kind":"function","modifiers":[],"name":"_delegate","nameLocation":"882:9:92","nodeType":"FunctionDefinition","overrides":{"id":29387,"nodeType":"OverrideSpecifier","overrides":[],"src":"933:8:92"},"parameters":{"id":29386,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29385,"mutability":"mutable","name":"implementation","nameLocation":"900:14:92","nodeType":"VariableDeclaration","scope":29391,"src":"892:22:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29384,"name":"address","nodeType":"ElementaryTypeName","src":"892:7:92","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"891:24:92"},"returnParameters":{"id":29388,"nodeType":"ParameterList","parameters":[],"src":"942:0:92"},"scope":29412,"src":"873:919:92","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[6921],"body":{"id":29400,"nodeType":"Block","src":"2041:28:92","statements":[{"expression":{"id":29398,"name":"_forwardTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29372,"src":"2054:10:92","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":29397,"id":29399,"nodeType":"Return","src":"2047:17:92"}]},"documentation":{"id":29392,"nodeType":"StructuredDocumentation","src":"1796:166:92","text":" @dev This is a virtual function that should be overriden so it returns the address to which the fallback function\n and {_fallback} should delegate."},"id":29401,"implemented":true,"kind":"function","modifiers":[],"name":"_implementation","nameLocation":"1974:15:92","nodeType":"FunctionDefinition","overrides":{"id":29394,"nodeType":"OverrideSpecifier","overrides":[],"src":"2014:8:92"},"parameters":{"id":29393,"nodeType":"ParameterList","parameters":[],"src":"1989:2:92"},"returnParameters":{"id":29397,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29396,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29401,"src":"2032:7:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29395,"name":"address","nodeType":"ElementaryTypeName","src":"2032:7:92","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2031:9:92"},"scope":29412,"src":"1965:104:92","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":29410,"nodeType":"Block","src":"2123:33:92","statements":[{"expression":{"id":29408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29406,"name":"_forwardTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29372,"src":"2129:10:92","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":29407,"name":"forwardTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29403,"src":"2142:9:92","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2129:22:92","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":29409,"nodeType":"ExpressionStatement","src":"2129:22:92"}]},"functionSelector":"d4b27001","id":29411,"implemented":true,"kind":"function","modifiers":[],"name":"setForwardTo","nameLocation":"2082:12:92","nodeType":"FunctionDefinition","parameters":{"id":29404,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29403,"mutability":"mutable","name":"forwardTo","nameLocation":"2103:9:92","nodeType":"VariableDeclaration","scope":29411,"src":"2095:17:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29402,"name":"address","nodeType":"ElementaryTypeName","src":"2095:7:92","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2094:19:92"},"returnParameters":{"id":29405,"nodeType":"ParameterList","parameters":[],"src":"2123:0:92"},"scope":29412,"src":"2073:83:92","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":29413,"src":"552:1606:92","usedErrors":[],"usedEvents":[]}],"src":"39:2120:92"},"id":92},"contracts/mocks/InterfaceIdCalculator.sol":{"ast":{"absolutePath":"contracts/mocks/InterfaceIdCalculator.sol","exportedSymbols":{"IAccessControl":[3751],"ICooler":[28695],"IERC165":[14272],"IERC20":[7977],"IERC20Metadata":[8863],"IERC721":[9471],"IEToken":[28869],"ILPWhitelist":[28916],"IPolicyHolder":[28982],"IPolicyPool":[29171],"IPolicyPoolComponent":[29188],"IPremiumsAccount":[29276],"IRiskModule":[29295],"InterfaceIdCalculator":[29519]},"id":29520,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":29414,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:93"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":29416,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29520,"sourceUnit":14273,"src":"65:80:93","symbolAliases":[{"foreign":{"id":29415,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"73:7:93","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"@openzeppelin/contracts/token/ERC20/IERC20.sol","id":29418,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29520,"sourceUnit":7978,"src":"146:70:93","symbolAliases":[{"foreign":{"id":29417,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"154:6:93","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":29420,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29520,"sourceUnit":8864,"src":"217:97:93","symbolAliases":[{"foreign":{"id":29419,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"225:14:93","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","file":"@openzeppelin/contracts/token/ERC721/IERC721.sol","id":29422,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29520,"sourceUnit":9472,"src":"315:73:93","symbolAliases":[{"foreign":{"id":29421,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9471,"src":"323:7:93","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/access/IAccessControl.sol","file":"@openzeppelin/contracts/access/IAccessControl.sol","id":29424,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29520,"sourceUnit":3752,"src":"389:81:93","symbolAliases":[{"foreign":{"id":29423,"name":"IAccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3751,"src":"397:14:93","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyPool.sol","file":"../interfaces/IPolicyPool.sol","id":29426,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29520,"sourceUnit":29172,"src":"471:58:93","symbolAliases":[{"foreign":{"id":29425,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"479:11:93","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyPoolComponent.sol","file":"../interfaces/IPolicyPoolComponent.sol","id":29428,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29520,"sourceUnit":29189,"src":"530:76:93","symbolAliases":[{"foreign":{"id":29427,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29188,"src":"538:20:93","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IEToken.sol","file":"../interfaces/IEToken.sol","id":29430,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29520,"sourceUnit":28870,"src":"607:50:93","symbolAliases":[{"foreign":{"id":29429,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28869,"src":"615:7:93","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IRiskModule.sol","file":"../interfaces/IRiskModule.sol","id":29432,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29520,"sourceUnit":29296,"src":"658:58:93","symbolAliases":[{"foreign":{"id":29431,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"666:11:93","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyHolder.sol","file":"../interfaces/IPolicyHolder.sol","id":29434,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29520,"sourceUnit":28983,"src":"717:62:93","symbolAliases":[{"foreign":{"id":29433,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"725:13:93","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPremiumsAccount.sol","file":"../interfaces/IPremiumsAccount.sol","id":29436,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29520,"sourceUnit":29277,"src":"780:68:93","symbolAliases":[{"foreign":{"id":29435,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29276,"src":"788:16:93","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/ILPWhitelist.sol","file":"../interfaces/ILPWhitelist.sol","id":29438,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29520,"sourceUnit":28917,"src":"849:60:93","symbolAliases":[{"foreign":{"id":29437,"name":"ILPWhitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28916,"src":"857:12:93","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/ICooler.sol","file":"../interfaces/ICooler.sol","id":29440,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":29520,"sourceUnit":28696,"src":"910:50:93","symbolAliases":[{"foreign":{"id":29439,"name":"ICooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28695,"src":"918:7:93","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"InterfaceIdCalculator","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":29519,"linearizedBaseContracts":[29519],"name":"InterfaceIdCalculator","nameLocation":"971:21:93","nodeType":"ContractDefinition","nodes":[{"constant":true,"functionSelector":"a23a1661","id":29446,"mutability":"constant","name":"IERC165_INTERFACEID","nameLocation":"1020:19:93","nodeType":"VariableDeclaration","scope":29519,"src":"997:70:93","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29441,"name":"bytes4","nodeType":"ElementaryTypeName","src":"997:6:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"expression":{"arguments":[{"id":29443,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"1047:7:93","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$14272_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$14272_$","typeString":"type(contract IERC165)"}],"id":29442,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1042:4:93","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":29444,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1042:13:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$14272","typeString":"type(contract IERC165)"}},"id":29445,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1056:11:93","memberName":"interfaceId","nodeType":"MemberAccess","src":"1042:25:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"public"},{"constant":true,"functionSelector":"c1bd03a6","id":29452,"mutability":"constant","name":"IERC20_INTERFACEID","nameLocation":"1094:18:93","nodeType":"VariableDeclaration","scope":29519,"src":"1071:68:93","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29447,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1071:6:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"expression":{"arguments":[{"id":29449,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7977,"src":"1120:6:93","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$7977_$","typeString":"type(contract IERC20)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC20_$7977_$","typeString":"type(contract IERC20)"}],"id":29448,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1115:4:93","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":29450,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1115:12:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC20_$7977","typeString":"type(contract IERC20)"}},"id":29451,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1128:11:93","memberName":"interfaceId","nodeType":"MemberAccess","src":"1115:24:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"public"},{"constant":true,"functionSelector":"731e0f7f","id":29458,"mutability":"constant","name":"IERC20METADATA_INTERFACEID","nameLocation":"1166:26:93","nodeType":"VariableDeclaration","scope":29519,"src":"1143:84:93","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29453,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1143:6:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"expression":{"arguments":[{"id":29455,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"1200:14:93","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$8863_$","typeString":"type(contract IERC20Metadata)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$8863_$","typeString":"type(contract IERC20Metadata)"}],"id":29454,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1195:4:93","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":29456,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1195:20:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC20Metadata_$8863","typeString":"type(contract IERC20Metadata)"}},"id":29457,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1216:11:93","memberName":"interfaceId","nodeType":"MemberAccess","src":"1195:32:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"public"},{"constant":true,"functionSelector":"96047c99","id":29464,"mutability":"constant","name":"IERC721_INTERFACEID","nameLocation":"1254:19:93","nodeType":"VariableDeclaration","scope":29519,"src":"1231:70:93","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29459,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1231:6:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"expression":{"arguments":[{"id":29461,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9471,"src":"1281:7:93","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721_$9471_$","typeString":"type(contract IERC721)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC721_$9471_$","typeString":"type(contract IERC721)"}],"id":29460,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1276:4:93","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":29462,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1276:13:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC721_$9471","typeString":"type(contract IERC721)"}},"id":29463,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1290:11:93","memberName":"interfaceId","nodeType":"MemberAccess","src":"1276:25:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"public"},{"constant":true,"functionSelector":"933c234b","id":29470,"mutability":"constant","name":"IACCESSCONTROL_INTERFACEID","nameLocation":"1328:26:93","nodeType":"VariableDeclaration","scope":29519,"src":"1305:84:93","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29465,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1305:6:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"expression":{"arguments":[{"id":29467,"name":"IAccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3751,"src":"1362:14:93","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessControl_$3751_$","typeString":"type(contract IAccessControl)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IAccessControl_$3751_$","typeString":"type(contract IAccessControl)"}],"id":29466,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1357:4:93","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":29468,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1357:20:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IAccessControl_$3751","typeString":"type(contract IAccessControl)"}},"id":29469,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1378:11:93","memberName":"interfaceId","nodeType":"MemberAccess","src":"1357:32:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"public"},{"constant":true,"functionSelector":"fef87f0b","id":29476,"mutability":"constant","name":"IPOLICYPOOL_INTERFACEID","nameLocation":"1416:23:93","nodeType":"VariableDeclaration","scope":29519,"src":"1393:78:93","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29471,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1393:6:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"expression":{"arguments":[{"id":29473,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"1447:11:93","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPool_$29171_$","typeString":"type(contract IPolicyPool)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyPool_$29171_$","typeString":"type(contract IPolicyPool)"}],"id":29472,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1442:4:93","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":29474,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1442:17:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyPool_$29171","typeString":"type(contract IPolicyPool)"}},"id":29475,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1460:11:93","memberName":"interfaceId","nodeType":"MemberAccess","src":"1442:29:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"public"},{"constant":true,"functionSelector":"362466de","id":29482,"mutability":"constant","name":"IPOLICYPOOLCOMPONENT_INTERFACEID","nameLocation":"1498:32:93","nodeType":"VariableDeclaration","scope":29519,"src":"1475:96:93","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29477,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1475:6:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"expression":{"arguments":[{"id":29479,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29188,"src":"1538:20:93","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$29188_$","typeString":"type(contract IPolicyPoolComponent)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$29188_$","typeString":"type(contract IPolicyPoolComponent)"}],"id":29478,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1533:4:93","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":29480,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1533:26:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyPoolComponent_$29188","typeString":"type(contract IPolicyPoolComponent)"}},"id":29481,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1560:11:93","memberName":"interfaceId","nodeType":"MemberAccess","src":"1533:38:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"public"},{"constant":true,"functionSelector":"7874bf98","id":29488,"mutability":"constant","name":"IETOKEN_INTERFACEID","nameLocation":"1598:19:93","nodeType":"VariableDeclaration","scope":29519,"src":"1575:70:93","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29483,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1575:6:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"expression":{"arguments":[{"id":29485,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28869,"src":"1625:7:93","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IEToken_$28869_$","typeString":"type(contract IEToken)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IEToken_$28869_$","typeString":"type(contract IEToken)"}],"id":29484,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1620:4:93","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":29486,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1620:13:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IEToken_$28869","typeString":"type(contract IEToken)"}},"id":29487,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1634:11:93","memberName":"interfaceId","nodeType":"MemberAccess","src":"1620:25:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"public"},{"constant":true,"functionSelector":"8b98dad0","id":29494,"mutability":"constant","name":"IRISKMODULE_INTERFACEID","nameLocation":"1672:23:93","nodeType":"VariableDeclaration","scope":29519,"src":"1649:78:93","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29489,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1649:6:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"expression":{"arguments":[{"id":29491,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"1703:11:93","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}],"id":29490,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1698:4:93","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":29492,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1698:17:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IRiskModule_$29295","typeString":"type(contract IRiskModule)"}},"id":29493,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1716:11:93","memberName":"interfaceId","nodeType":"MemberAccess","src":"1698:29:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"public"},{"constant":true,"functionSelector":"11f34418","id":29500,"mutability":"constant","name":"IPREMIUMSACCOUNT_INTERFACEID","nameLocation":"1754:28:93","nodeType":"VariableDeclaration","scope":29519,"src":"1731:88:93","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29495,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1731:6:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"expression":{"arguments":[{"id":29497,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29276,"src":"1790:16:93","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPremiumsAccount_$29276_$","typeString":"type(contract IPremiumsAccount)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPremiumsAccount_$29276_$","typeString":"type(contract IPremiumsAccount)"}],"id":29496,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1785:4:93","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":29498,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1785:22:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPremiumsAccount_$29276","typeString":"type(contract IPremiumsAccount)"}},"id":29499,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1808:11:93","memberName":"interfaceId","nodeType":"MemberAccess","src":"1785:34:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"public"},{"constant":true,"functionSelector":"800915a5","id":29506,"mutability":"constant","name":"ILPWHITELIST_INTERFACEID","nameLocation":"1846:24:93","nodeType":"VariableDeclaration","scope":29519,"src":"1823:80:93","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29501,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1823:6:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"expression":{"arguments":[{"id":29503,"name":"ILPWhitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28916,"src":"1878:12:93","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ILPWhitelist_$28916_$","typeString":"type(contract ILPWhitelist)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_ILPWhitelist_$28916_$","typeString":"type(contract ILPWhitelist)"}],"id":29502,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1873:4:93","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":29504,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1873:18:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_ILPWhitelist_$28916","typeString":"type(contract ILPWhitelist)"}},"id":29505,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1892:11:93","memberName":"interfaceId","nodeType":"MemberAccess","src":"1873:30:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"public"},{"constant":true,"functionSelector":"8786bcbd","id":29512,"mutability":"constant","name":"IPOLICYHOLDER_INTERFACEID","nameLocation":"1930:25:93","nodeType":"VariableDeclaration","scope":29519,"src":"1907:82:93","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29507,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1907:6:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"expression":{"arguments":[{"id":29509,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"1963:13:93","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}],"id":29508,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1958:4:93","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":29510,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1958:19:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyHolder_$28982","typeString":"type(contract IPolicyHolder)"}},"id":29511,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1978:11:93","memberName":"interfaceId","nodeType":"MemberAccess","src":"1958:31:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"public"},{"constant":true,"functionSelector":"824bab69","id":29518,"mutability":"constant","name":"ICOOLER_INTERFACEID","nameLocation":"2016:19:93","nodeType":"VariableDeclaration","scope":29519,"src":"1993:70:93","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29513,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1993:6:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"expression":{"arguments":[{"id":29515,"name":"ICooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28695,"src":"2043:7:93","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ICooler_$28695_$","typeString":"type(contract ICooler)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_ICooler_$28695_$","typeString":"type(contract ICooler)"}],"id":29514,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2038:4:93","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":29516,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2038:13:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_ICooler_$28695","typeString":"type(contract ICooler)"}},"id":29517,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2052:11:93","memberName":"interfaceId","nodeType":"MemberAccess","src":"2038:25:93","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"public"}],"scope":29520,"src":"962:1104:93","usedErrors":[],"usedEvents":[]}],"src":"39:2028:93"},"id":93},"contracts/mocks/PolicyHolderMock.sol":{"ast":{"absolutePath":"contracts/mocks/PolicyHolderMock.sol","exportedSymbols":{"IERC165":[14272],"IERC721Receiver":[9489],"IPolicyHolder":[28982],"PolicyHolderMock":[30032],"StorageSlot":[11758]},"id":30033,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":29521,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:94"},{"absolutePath":"contracts/interfaces/IPolicyHolder.sol","file":"../interfaces/IPolicyHolder.sol","id":29523,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30033,"sourceUnit":28983,"src":"65:62:94","symbolAliases":[{"foreign":{"id":29522,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"73:13:94","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","id":29525,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30033,"sourceUnit":9490,"src":"128:89:94","symbolAliases":[{"foreign":{"id":29524,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9489,"src":"136:15:94","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":29527,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30033,"sourceUnit":14273,"src":"218:80:94","symbolAliases":[{"foreign":{"id":29526,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"226:7:94","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","file":"@openzeppelin/contracts/utils/StorageSlot.sol","id":29529,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30033,"sourceUnit":11759,"src":"299:74:94","symbolAliases":[{"foreign":{"id":29528,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11758,"src":"307:11:94","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":29530,"name":"IPolicyHolder","nameLocations":["404:13:94"],"nodeType":"IdentifierPath","referencedDeclaration":28982,"src":"404:13:94"},"id":29531,"nodeType":"InheritanceSpecifier","src":"404:13:94"}],"canonicalName":"PolicyHolderMock","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":30032,"linearizedBaseContracts":[30032,28982,9489],"name":"PolicyHolderMock","nameLocation":"384:16:94","nodeType":"ContractDefinition","nodes":[{"constant":false,"functionSelector":"ee89ef3a","id":29533,"mutability":"mutable","name":"policyId","nameLocation":"437:8:94","nodeType":"VariableDeclaration","scope":30032,"src":"422:23:94","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29532,"name":"uint256","nodeType":"ElementaryTypeName","src":"422:7:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"63bd1d4a","id":29535,"mutability":"mutable","name":"payout","nameLocation":"464:6:94","nodeType":"VariableDeclaration","scope":30032,"src":"449:21:94","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29534,"name":"uint256","nodeType":"ElementaryTypeName","src":"449:7:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"a9cc4718","id":29537,"mutability":"mutable","name":"fail","nameLocation":"486:4:94","nodeType":"VariableDeclaration","scope":30032,"src":"474:16:94","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29536,"name":"bool","nodeType":"ElementaryTypeName","src":"474:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"public"},{"constant":false,"functionSelector":"9568ca0f","id":29539,"mutability":"mutable","name":"failReplace","nameLocation":"506:11:94","nodeType":"VariableDeclaration","scope":30032,"src":"494:23:94","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29538,"name":"bool","nodeType":"ElementaryTypeName","src":"494:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"public"},{"constant":false,"functionSelector":"cc6a6523","id":29541,"mutability":"mutable","name":"failCancellation","nameLocation":"533:16:94","nodeType":"VariableDeclaration","scope":30032,"src":"521:28:94","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29540,"name":"bool","nodeType":"ElementaryTypeName","src":"521:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"public"},{"constant":false,"functionSelector":"6db65619","id":29543,"mutability":"mutable","name":"emptyRevert","nameLocation":"565:11:94","nodeType":"VariableDeclaration","scope":30032,"src":"553:23:94","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29542,"name":"bool","nodeType":"ElementaryTypeName","src":"553:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"public"},{"constant":false,"functionSelector":"35287014","id":29545,"mutability":"mutable","name":"notImplemented","nameLocation":"592:14:94","nodeType":"VariableDeclaration","scope":30032,"src":"580:26:94","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29544,"name":"bool","nodeType":"ElementaryTypeName","src":"580:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"public"},{"constant":false,"functionSelector":"c3af904e","id":29547,"mutability":"mutable","name":"badlyImplemented","nameLocation":"622:16:94","nodeType":"VariableDeclaration","scope":30032,"src":"610:28:94","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29546,"name":"bool","nodeType":"ElementaryTypeName","src":"610:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"public"},{"constant":false,"functionSelector":"d99ba408","id":29549,"mutability":"mutable","name":"badlyImplementedReplace","nameLocation":"654:23:94","nodeType":"VariableDeclaration","scope":30032,"src":"642:35:94","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29548,"name":"bool","nodeType":"ElementaryTypeName","src":"642:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"public"},{"constant":false,"functionSelector":"bcce5399","id":29551,"mutability":"mutable","name":"noERC165","nameLocation":"693:8:94","nodeType":"VariableDeclaration","scope":30032,"src":"681:20:94","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29550,"name":"bool","nodeType":"ElementaryTypeName","src":"681:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"public"},{"constant":false,"functionSelector":"f57c302e","id":29553,"mutability":"mutable","name":"spendGasCount","nameLocation":"720:13:94","nodeType":"VariableDeclaration","scope":30032,"src":"705:28:94","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29552,"name":"uint256","nodeType":"ElementaryTypeName","src":"705:7:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"canonicalName":"PolicyHolderMock.NotificationKind","id":29559,"members":[{"id":29554,"name":"PolicyReceived","nameLocation":"766:14:94","nodeType":"EnumValue","src":"766:14:94"},{"id":29555,"name":"PayoutReceived","nameLocation":"786:14:94","nodeType":"EnumValue","src":"786:14:94"},{"id":29556,"name":"PolicyExpired","nameLocation":"806:13:94","nodeType":"EnumValue","src":"806:13:94"},{"id":29557,"name":"PolicyReplaced","nameLocation":"825:14:94","nodeType":"EnumValue","src":"825:14:94"},{"id":29558,"name":"PolicyCancelled","nameLocation":"845:15:94","nodeType":"EnumValue","src":"845:15:94"}],"name":"NotificationKind","nameLocation":"743:16:94","nodeType":"EnumDefinition","src":"738:126:94"},{"anonymous":false,"eventSelector":"cb6442f1752a34d49fd946725ee915eae9914b3fe3f3193b98232c772393e7c5","id":29570,"name":"NotificationReceived","nameLocation":"874:20:94","nodeType":"EventDefinition","parameters":{"id":29569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29562,"indexed":false,"mutability":"mutable","name":"kind","nameLocation":"912:4:94","nodeType":"VariableDeclaration","scope":29570,"src":"895:21:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_NotificationKind_$29559","typeString":"enum PolicyHolderMock.NotificationKind"},"typeName":{"id":29561,"nodeType":"UserDefinedTypeName","pathNode":{"id":29560,"name":"NotificationKind","nameLocations":["895:16:94"],"nodeType":"IdentifierPath","referencedDeclaration":29559,"src":"895:16:94"},"referencedDeclaration":29559,"src":"895:16:94","typeDescriptions":{"typeIdentifier":"t_enum$_NotificationKind_$29559","typeString":"enum PolicyHolderMock.NotificationKind"}},"visibility":"internal"},{"constant":false,"id":29564,"indexed":false,"mutability":"mutable","name":"policyId","nameLocation":"926:8:94","nodeType":"VariableDeclaration","scope":29570,"src":"918:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29563,"name":"uint256","nodeType":"ElementaryTypeName","src":"918:7:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29566,"indexed":false,"mutability":"mutable","name":"operator","nameLocation":"944:8:94","nodeType":"VariableDeclaration","scope":29570,"src":"936:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29565,"name":"address","nodeType":"ElementaryTypeName","src":"936:7:94","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29568,"indexed":false,"mutability":"mutable","name":"from","nameLocation":"962:4:94","nodeType":"VariableDeclaration","scope":29570,"src":"954:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29567,"name":"address","nodeType":"ElementaryTypeName","src":"954:7:94","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"894:73:94"},"src":"868:100:94"},{"body":{"id":29605,"nodeType":"Block","src":"986:183:94","statements":[{"expression":{"id":29575,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29573,"name":"fail","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29537,"src":"992:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":29574,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"999:5:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"992:12:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29576,"nodeType":"ExpressionStatement","src":"992:12:94"},{"expression":{"id":29579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29577,"name":"notImplemented","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29545,"src":"1010:14:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":29578,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1027:5:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"1010:22:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29580,"nodeType":"ExpressionStatement","src":"1010:22:94"},{"expression":{"id":29583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29581,"name":"badlyImplemented","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29547,"src":"1038:16:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":29582,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1057:5:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"1038:24:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29584,"nodeType":"ExpressionStatement","src":"1038:24:94"},{"expression":{"id":29587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29585,"name":"emptyRevert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29543,"src":"1068:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":29586,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1082:5:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"1068:19:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29588,"nodeType":"ExpressionStatement","src":"1068:19:94"},{"expression":{"id":29591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29589,"name":"noERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29551,"src":"1093:8:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":29590,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1104:5:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"1093:16:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29592,"nodeType":"ExpressionStatement","src":"1093:16:94"},{"expression":{"id":29599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29593,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29535,"src":"1115:6:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"arguments":[{"id":29596,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1129:7:94","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":29595,"name":"uint256","nodeType":"ElementaryTypeName","src":"1129:7:94","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":29594,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1124:4:94","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":29597,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1124:13:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":29598,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1138:3:94","memberName":"max","nodeType":"MemberAccess","src":"1124:17:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1115:26:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":29600,"nodeType":"ExpressionStatement","src":"1115:26:94"},{"expression":{"id":29603,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29601,"name":"spendGasCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29553,"src":"1147:13:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":29602,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1163:1:94","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1147:17:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":29604,"nodeType":"ExpressionStatement","src":"1147:17:94"}]},"id":29606,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":29571,"nodeType":"ParameterList","parameters":[],"src":"983:2:94"},"returnParameters":{"id":29572,"nodeType":"ParameterList","parameters":[],"src":"986:0:94"},"scope":30032,"src":"972:197:94","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":29615,"nodeType":"Block","src":"1211:23:94","statements":[{"expression":{"id":29613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29611,"name":"fail","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29537,"src":"1217:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":29612,"name":"fail_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29608,"src":"1224:5:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1217:12:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29614,"nodeType":"ExpressionStatement","src":"1217:12:94"}]},"functionSelector":"9d769402","id":29616,"implemented":true,"kind":"function","modifiers":[],"name":"setFail","nameLocation":"1182:7:94","nodeType":"FunctionDefinition","parameters":{"id":29609,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29608,"mutability":"mutable","name":"fail_","nameLocation":"1195:5:94","nodeType":"VariableDeclaration","scope":29616,"src":"1190:10:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29607,"name":"bool","nodeType":"ElementaryTypeName","src":"1190:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1189:12:94"},"returnParameters":{"id":29610,"nodeType":"ParameterList","parameters":[],"src":"1211:0:94"},"scope":30032,"src":"1173:61:94","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":29625,"nodeType":"Block","src":"1290:37:94","statements":[{"expression":{"id":29623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29621,"name":"failReplace","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29539,"src":"1296:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":29622,"name":"failReplace_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29618,"src":"1310:12:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1296:26:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29624,"nodeType":"ExpressionStatement","src":"1296:26:94"}]},"functionSelector":"286ee351","id":29626,"implemented":true,"kind":"function","modifiers":[],"name":"setFailReplace","nameLocation":"1247:14:94","nodeType":"FunctionDefinition","parameters":{"id":29619,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29618,"mutability":"mutable","name":"failReplace_","nameLocation":"1267:12:94","nodeType":"VariableDeclaration","scope":29626,"src":"1262:17:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29617,"name":"bool","nodeType":"ElementaryTypeName","src":"1262:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1261:19:94"},"returnParameters":{"id":29620,"nodeType":"ParameterList","parameters":[],"src":"1290:0:94"},"scope":30032,"src":"1238:89:94","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":29635,"nodeType":"Block","src":"1381:35:94","statements":[{"expression":{"id":29633,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29631,"name":"failCancellation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29541,"src":"1387:16:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":29632,"name":"fail_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29628,"src":"1406:5:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1387:24:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29634,"nodeType":"ExpressionStatement","src":"1387:24:94"}]},"functionSelector":"b8d6d18d","id":29636,"implemented":true,"kind":"function","modifiers":[],"name":"setFailCancellation","nameLocation":"1340:19:94","nodeType":"FunctionDefinition","parameters":{"id":29629,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29628,"mutability":"mutable","name":"fail_","nameLocation":"1365:5:94","nodeType":"VariableDeclaration","scope":29636,"src":"1360:10:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29627,"name":"bool","nodeType":"ElementaryTypeName","src":"1360:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1359:12:94"},"returnParameters":{"id":29630,"nodeType":"ParameterList","parameters":[],"src":"1381:0:94"},"scope":30032,"src":"1331:85:94","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":29645,"nodeType":"Block","src":"1479:41:94","statements":[{"expression":{"id":29643,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29641,"name":"spendGasCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29553,"src":"1485:13:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":29642,"name":"spendGasCount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29638,"src":"1501:14:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1485:30:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":29644,"nodeType":"ExpressionStatement","src":"1485:30:94"}]},"functionSelector":"7806ce81","id":29646,"implemented":true,"kind":"function","modifiers":[],"name":"setSpendGasCount","nameLocation":"1429:16:94","nodeType":"FunctionDefinition","parameters":{"id":29639,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29638,"mutability":"mutable","name":"spendGasCount_","nameLocation":"1454:14:94","nodeType":"VariableDeclaration","scope":29646,"src":"1446:22:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29637,"name":"uint256","nodeType":"ElementaryTypeName","src":"1446:7:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1445:24:94"},"returnParameters":{"id":29640,"nodeType":"ParameterList","parameters":[],"src":"1479:0:94"},"scope":30032,"src":"1420:100:94","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":29655,"nodeType":"Block","src":"1582:43:94","statements":[{"expression":{"id":29653,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29651,"name":"notImplemented","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29545,"src":"1588:14:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":29652,"name":"notImplemented_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29648,"src":"1605:15:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1588:32:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29654,"nodeType":"ExpressionStatement","src":"1588:32:94"}]},"functionSelector":"aeec8f9d","id":29656,"implemented":true,"kind":"function","modifiers":[],"name":"setNotImplemented","nameLocation":"1533:17:94","nodeType":"FunctionDefinition","parameters":{"id":29649,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29648,"mutability":"mutable","name":"notImplemented_","nameLocation":"1556:15:94","nodeType":"VariableDeclaration","scope":29656,"src":"1551:20:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29647,"name":"bool","nodeType":"ElementaryTypeName","src":"1551:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1550:22:94"},"returnParameters":{"id":29650,"nodeType":"ParameterList","parameters":[],"src":"1582:0:94"},"scope":30032,"src":"1524:101:94","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":29665,"nodeType":"Block","src":"1691:47:94","statements":[{"expression":{"id":29663,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29661,"name":"badlyImplemented","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29547,"src":"1697:16:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":29662,"name":"badlyImplemented_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29658,"src":"1716:17:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1697:36:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29664,"nodeType":"ExpressionStatement","src":"1697:36:94"}]},"functionSelector":"2bb2adb3","id":29666,"implemented":true,"kind":"function","modifiers":[],"name":"setBadlyImplemented","nameLocation":"1638:19:94","nodeType":"FunctionDefinition","parameters":{"id":29659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29658,"mutability":"mutable","name":"badlyImplemented_","nameLocation":"1663:17:94","nodeType":"VariableDeclaration","scope":29666,"src":"1658:22:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29657,"name":"bool","nodeType":"ElementaryTypeName","src":"1658:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1657:24:94"},"returnParameters":{"id":29660,"nodeType":"ParameterList","parameters":[],"src":"1691:0:94"},"scope":30032,"src":"1629:109:94","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":29675,"nodeType":"Block","src":"1818:61:94","statements":[{"expression":{"id":29673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29671,"name":"badlyImplementedReplace","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29549,"src":"1824:23:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":29672,"name":"badlyImplementedReplace_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29668,"src":"1850:24:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1824:50:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29674,"nodeType":"ExpressionStatement","src":"1824:50:94"}]},"functionSelector":"5177cd13","id":29676,"implemented":true,"kind":"function","modifiers":[],"name":"setBadlyImplementedReplace","nameLocation":"1751:26:94","nodeType":"FunctionDefinition","parameters":{"id":29669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29668,"mutability":"mutable","name":"badlyImplementedReplace_","nameLocation":"1783:24:94","nodeType":"VariableDeclaration","scope":29676,"src":"1778:29:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29667,"name":"bool","nodeType":"ElementaryTypeName","src":"1778:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1777:31:94"},"returnParameters":{"id":29670,"nodeType":"ParameterList","parameters":[],"src":"1818:0:94"},"scope":30032,"src":"1742:137:94","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":29685,"nodeType":"Block","src":"1929:31:94","statements":[{"expression":{"id":29683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29681,"name":"noERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29551,"src":"1935:8:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":29682,"name":"noERC165_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29678,"src":"1946:9:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1935:20:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29684,"nodeType":"ExpressionStatement","src":"1935:20:94"}]},"functionSelector":"2fb64362","id":29686,"implemented":true,"kind":"function","modifiers":[],"name":"setNoERC165","nameLocation":"1892:11:94","nodeType":"FunctionDefinition","parameters":{"id":29679,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29678,"mutability":"mutable","name":"noERC165_","nameLocation":"1909:9:94","nodeType":"VariableDeclaration","scope":29686,"src":"1904:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29677,"name":"bool","nodeType":"ElementaryTypeName","src":"1904:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1903:16:94"},"returnParameters":{"id":29680,"nodeType":"ParameterList","parameters":[],"src":"1929:0:94"},"scope":30032,"src":"1883:77:94","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":29695,"nodeType":"Block","src":"2016:37:94","statements":[{"expression":{"id":29693,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29691,"name":"emptyRevert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29543,"src":"2022:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":29692,"name":"emptyRevert_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29688,"src":"2036:12:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2022:26:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29694,"nodeType":"ExpressionStatement","src":"2022:26:94"}]},"functionSelector":"31ca2944","id":29696,"implemented":true,"kind":"function","modifiers":[],"name":"setEmptyRevert","nameLocation":"1973:14:94","nodeType":"FunctionDefinition","parameters":{"id":29689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29688,"mutability":"mutable","name":"emptyRevert_","nameLocation":"1993:12:94","nodeType":"VariableDeclaration","scope":29696,"src":"1988:17:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29687,"name":"bool","nodeType":"ElementaryTypeName","src":"1988:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1987:19:94"},"returnParameters":{"id":29690,"nodeType":"ParameterList","parameters":[],"src":"2016:0:94"},"scope":30032,"src":"1964:89:94","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":29727,"nodeType":"Block","src":"2086:166:94","statements":[{"body":{"id":29725,"nodeType":"Block","src":"2175:73:94","statements":[{"expression":{"id":29723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":29716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"313030","id":29714,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2218:3:94","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":29715,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29700,"src":"2224:1:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2218:7:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":29713,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2210:7:94","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":29712,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2210:7:94","typeDescriptions":{}}},"id":29717,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2210:16:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":29709,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11758,"src":"2183:11:94","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$11758_$","typeString":"type(library StorageSlot)"}},"id":29711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2195:14:94","memberName":"getUint256Slot","nodeType":"MemberAccess","referencedDeclaration":11702,"src":"2183:26:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_Uint256Slot_$11649_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.Uint256Slot storage pointer)"}},"id":29718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2183:44:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$11649_storage_ptr","typeString":"struct StorageSlot.Uint256Slot storage pointer"}},"id":29719,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2228:5:94","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":11648,"src":"2183:50:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":29722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29720,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29700,"src":"2236:1:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":29721,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2240:1:94","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2236:5:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2183:58:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":29724,"nodeType":"ExpressionStatement","src":"2183:58:94"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":29705,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29703,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29700,"src":"2151:1:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":29704,"name":"spendGasCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29553,"src":"2155:13:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2151:17:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29726,"initializationExpression":{"assignments":[29700],"declarations":[{"constant":false,"id":29700,"mutability":"mutable","name":"i","nameLocation":"2144:1:94","nodeType":"VariableDeclaration","scope":29726,"src":"2136:9:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29699,"name":"uint256","nodeType":"ElementaryTypeName","src":"2136:7:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":29702,"initialValue":{"hexValue":"30","id":29701,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2148:1:94","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"2136:13:94"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":29707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"2170:3:94","subExpression":{"id":29706,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29700,"src":"2170:1:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":29708,"nodeType":"ExpressionStatement","src":"2170:3:94"},"nodeType":"ForStatement","src":"2131:117:94"}]},"id":29728,"implemented":true,"kind":"function","modifiers":[],"name":"spendGas","nameLocation":"2066:8:94","nodeType":"FunctionDefinition","parameters":{"id":29697,"nodeType":"ParameterList","parameters":[],"src":"2074:2:94"},"returnParameters":{"id":29698,"nodeType":"ParameterList","parameters":[],"src":"2086:0:94"},"scope":30032,"src":"2057:195:94","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":29757,"nodeType":"Block","src":"2393:210:94","statements":[{"condition":{"id":29736,"name":"noERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29551,"src":"2403:8:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29738,"nodeType":"IfStatement","src":"2399:59:94","trueBody":{"AST":{"nativeSrc":"2428:30:94","nodeType":"YulBlock","src":"2428:30:94","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2445:1:94","nodeType":"YulLiteral","src":"2445:1:94","type":"","value":"0"},{"kind":"number","nativeSrc":"2448:1:94","nodeType":"YulLiteral","src":"2448:1:94","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2438:6:94","nodeType":"YulIdentifier","src":"2438:6:94"},"nativeSrc":"2438:12:94","nodeType":"YulFunctionCall","src":"2438:12:94"},"nativeSrc":"2438:12:94","nodeType":"YulExpressionStatement","src":"2438:12:94"}]},"evmVersion":"prague","externalReferences":[],"id":29737,"nodeType":"InlineAssembly","src":"2419:39:94"}},{"condition":{"id":29739,"name":"notImplemented","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29545,"src":"2467:14:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29742,"nodeType":"IfStatement","src":"2463:32:94","trueBody":{"expression":{"hexValue":"66616c7365","id":29740,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2490:5:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":29735,"id":29741,"nodeType":"Return","src":"2483:12:94"}},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":29755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":29748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29743,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29731,"src":"2508:11:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":29745,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"2528:13:94","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}],"id":29744,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2523:4:94","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":29746,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2523:19:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyHolder_$28982","typeString":"type(contract IPolicyHolder)"}},"id":29747,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2543:11:94","memberName":"interfaceId","nodeType":"MemberAccess","src":"2523:31:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2508:46:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":29754,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29749,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29731,"src":"2558:11:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":29751,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"2578:7:94","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$14272_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$14272_$","typeString":"type(contract IERC165)"}],"id":29750,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2573:4:94","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":29752,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2573:13:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$14272","typeString":"type(contract IERC165)"}},"id":29753,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2587:11:94","memberName":"interfaceId","nodeType":"MemberAccess","src":"2573:25:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2558:40:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2508:90:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":29735,"id":29756,"nodeType":"Return","src":"2501:97:94"}]},"documentation":{"id":29729,"nodeType":"StructuredDocumentation","src":"2256:52:94","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":29758,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"2320:17:94","nodeType":"FunctionDefinition","parameters":{"id":29732,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29731,"mutability":"mutable","name":"interfaceId","nameLocation":"2345:11:94","nodeType":"VariableDeclaration","scope":29758,"src":"2338:18:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29730,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2338:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2337:20:94"},"returnParameters":{"id":29735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29734,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29758,"src":"2387:4:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29733,"name":"bool","nodeType":"ElementaryTypeName","src":"2387:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2386:6:94"},"scope":30032,"src":"2311:292:94","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9488],"body":{"id":29815,"nodeType":"Block","src":"2755:438:94","statements":[{"condition":{"id":29772,"name":"fail","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29537,"src":"2765:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29780,"nodeType":"IfStatement","src":"2761:151:94","trueBody":{"condition":{"id":29773,"name":"emptyRevert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29543,"src":"2781:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"arguments":[{"hexValue":"6f6e45524337323152656365697665643a205468657920746f6c64206d652049206861766520746f206661696c","id":29776,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2864:47:94","typeDescriptions":{"typeIdentifier":"t_stringliteral_46ae0231b151a29cb76b0eb0bfc0feea3dce0b818e71e3685082cfa188eaf63d","typeString":"literal_string \"onERC721Received: They told me I have to fail\""},"value":"onERC721Received: They told me I have to fail"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_46ae0231b151a29cb76b0eb0bfc0feea3dce0b818e71e3685082cfa188eaf63d","typeString":"literal_string \"onERC721Received: They told me I have to fail\""}],"id":29775,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"2857:6:94","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":29777,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2857:55:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":29778,"nodeType":"ExpressionStatement","src":"2857:55:94"},"id":29779,"nodeType":"IfStatement","src":"2777:135:94","trueBody":{"AST":{"nativeSrc":"2811:34:94","nodeType":"YulBlock","src":"2811:34:94","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2830:1:94","nodeType":"YulLiteral","src":"2830:1:94","type":"","value":"0"},{"kind":"number","nativeSrc":"2833:1:94","nodeType":"YulLiteral","src":"2833:1:94","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2823:6:94","nodeType":"YulIdentifier","src":"2823:6:94"},"nativeSrc":"2823:12:94","nodeType":"YulFunctionCall","src":"2823:12:94"},"nativeSrc":"2823:12:94","nodeType":"YulExpressionStatement","src":"2823:12:94"}]},"evmVersion":"prague","externalReferences":[],"id":29774,"nodeType":"InlineAssembly","src":"2802:43:94"}}},{"expression":{"id":29783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29781,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29533,"src":"2919:8:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":29782,"name":"policyId_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29764,"src":"2930:9:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2919:20:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":29784,"nodeType":"ExpressionStatement","src":"2919:20:94"},{"expression":{"id":29791,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29785,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29535,"src":"2945:6:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"arguments":[{"id":29788,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2959:7:94","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":29787,"name":"uint256","nodeType":"ElementaryTypeName","src":"2959:7:94","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":29786,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2954:4:94","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":29789,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2954:13:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":29790,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2968:3:94","memberName":"max","nodeType":"MemberAccess","src":"2954:17:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2945:26:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":29792,"nodeType":"ExpressionStatement","src":"2945:26:94"},{"eventCall":{"arguments":[{"expression":{"id":29794,"name":"NotificationKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29559,"src":"3003:16:94","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_NotificationKind_$29559_$","typeString":"type(enum PolicyHolderMock.NotificationKind)"}},"id":29795,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3020:14:94","memberName":"PolicyReceived","nodeType":"MemberAccess","referencedDeclaration":29554,"src":"3003:31:94","typeDescriptions":{"typeIdentifier":"t_enum$_NotificationKind_$29559","typeString":"enum PolicyHolderMock.NotificationKind"}},{"id":29796,"name":"policyId_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29764,"src":"3036:9:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":29797,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29760,"src":"3047:8:94","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":29798,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29762,"src":"3057:4:94","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_NotificationKind_$29559","typeString":"enum PolicyHolderMock.NotificationKind"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":29793,"name":"NotificationReceived","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29570,"src":"2982:20:94","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_enum$_NotificationKind_$29559_$_t_uint256_$_t_address_$_t_address_$returns$__$","typeString":"function (enum PolicyHolderMock.NotificationKind,uint256,address,address)"}},"id":29799,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2982:80:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":29800,"nodeType":"EmitStatement","src":"2977:85:94"},{"condition":{"id":29801,"name":"badlyImplemented","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29547,"src":"3073:16:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29807,"nodeType":"IfStatement","src":"3069:47:94","trueBody":{"expression":{"arguments":[{"hexValue":"30783062616466303064","id":29804,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3105:10:94","typeDescriptions":{"typeIdentifier":"t_rational_195948557_by_1","typeString":"int_const 195948557"},"value":"0x0badf00d"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_195948557_by_1","typeString":"int_const 195948557"}],"id":29803,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3098:6:94","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":29802,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3098:6:94","typeDescriptions":{}}},"id":29805,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3098:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":29771,"id":29806,"nodeType":"Return","src":"3091:25:94"}},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":29808,"name":"spendGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29728,"src":"3123:8:94","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":29809,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3123:10:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":29810,"nodeType":"ExpressionStatement","src":"3123:10:94"},{"expression":{"expression":{"expression":{"id":29811,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9489,"src":"3147:15:94","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Receiver_$9489_$","typeString":"type(contract IERC721Receiver)"}},"id":29812,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3163:16:94","memberName":"onERC721Received","nodeType":"MemberAccess","referencedDeclaration":9488,"src":"3147:32:94","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function IERC721Receiver.onERC721Received(address,address,uint256,bytes calldata) returns (bytes4)"}},"id":29813,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3180:8:94","memberName":"selector","nodeType":"MemberAccess","src":"3147:41:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":29771,"id":29814,"nodeType":"Return","src":"3140:48:94"}]},"functionSelector":"150b7a02","id":29816,"implemented":true,"kind":"function","modifiers":[],"name":"onERC721Received","nameLocation":"2616:16:94","nodeType":"FunctionDefinition","overrides":{"id":29768,"nodeType":"OverrideSpecifier","overrides":[],"src":"2729:8:94"},"parameters":{"id":29767,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29760,"mutability":"mutable","name":"operator","nameLocation":"2646:8:94","nodeType":"VariableDeclaration","scope":29816,"src":"2638:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29759,"name":"address","nodeType":"ElementaryTypeName","src":"2638:7:94","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29762,"mutability":"mutable","name":"from","nameLocation":"2668:4:94","nodeType":"VariableDeclaration","scope":29816,"src":"2660:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29761,"name":"address","nodeType":"ElementaryTypeName","src":"2660:7:94","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29764,"mutability":"mutable","name":"policyId_","nameLocation":"2686:9:94","nodeType":"VariableDeclaration","scope":29816,"src":"2678:17:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29763,"name":"uint256","nodeType":"ElementaryTypeName","src":"2678:7:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29766,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29816,"src":"2701:14:94","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":29765,"name":"bytes","nodeType":"ElementaryTypeName","src":"2701:5:94","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2632:87:94"},"returnParameters":{"id":29771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29770,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29816,"src":"2747:6:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29769,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2747:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2746:8:94"},"scope":30032,"src":"2607:586:94","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[28935],"body":{"id":29867,"nodeType":"Block","src":"3308:416:94","statements":[{"condition":{"id":29828,"name":"fail","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29537,"src":"3318:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29836,"nodeType":"IfStatement","src":"3314:150:94","trueBody":{"condition":{"id":29829,"name":"emptyRevert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29543,"src":"3334:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"arguments":[{"hexValue":"6f6e506f6c696379457870697265643a205468657920746f6c64206d652049206861766520746f206661696c","id":29832,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3417:46:94","typeDescriptions":{"typeIdentifier":"t_stringliteral_66a42fcc0cb3a241433f702d08559d4868da600fb6c417c0d22bf3e4e199a226","typeString":"literal_string \"onPolicyExpired: They told me I have to fail\""},"value":"onPolicyExpired: They told me I have to fail"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_66a42fcc0cb3a241433f702d08559d4868da600fb6c417c0d22bf3e4e199a226","typeString":"literal_string \"onPolicyExpired: They told me I have to fail\""}],"id":29831,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"3410:6:94","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":29833,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3410:54:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":29834,"nodeType":"ExpressionStatement","src":"3410:54:94"},"id":29835,"nodeType":"IfStatement","src":"3330:134:94","trueBody":{"AST":{"nativeSrc":"3364:34:94","nodeType":"YulBlock","src":"3364:34:94","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3383:1:94","nodeType":"YulLiteral","src":"3383:1:94","type":"","value":"0"},{"kind":"number","nativeSrc":"3386:1:94","nodeType":"YulLiteral","src":"3386:1:94","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3376:6:94","nodeType":"YulIdentifier","src":"3376:6:94"},"nativeSrc":"3376:12:94","nodeType":"YulFunctionCall","src":"3376:12:94"},"nativeSrc":"3376:12:94","nodeType":"YulExpressionStatement","src":"3376:12:94"}]},"evmVersion":"prague","externalReferences":[],"id":29830,"nodeType":"InlineAssembly","src":"3355:43:94"}}},{"expression":{"id":29839,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29837,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29533,"src":"3470:8:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":29838,"name":"policyId_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29822,"src":"3481:9:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3470:20:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":29840,"nodeType":"ExpressionStatement","src":"3470:20:94"},{"expression":{"id":29843,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29841,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29535,"src":"3496:6:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":29842,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3505:1:94","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3496:10:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":29844,"nodeType":"ExpressionStatement","src":"3496:10:94"},{"eventCall":{"arguments":[{"expression":{"id":29846,"name":"NotificationKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29559,"src":"3538:16:94","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_NotificationKind_$29559_$","typeString":"type(enum PolicyHolderMock.NotificationKind)"}},"id":29847,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3555:13:94","memberName":"PolicyExpired","nodeType":"MemberAccess","referencedDeclaration":29556,"src":"3538:30:94","typeDescriptions":{"typeIdentifier":"t_enum$_NotificationKind_$29559","typeString":"enum PolicyHolderMock.NotificationKind"}},{"id":29848,"name":"policyId_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29822,"src":"3570:9:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":29849,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29818,"src":"3581:8:94","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":29850,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29820,"src":"3591:4:94","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_NotificationKind_$29559","typeString":"enum PolicyHolderMock.NotificationKind"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":29845,"name":"NotificationReceived","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29570,"src":"3517:20:94","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_enum$_NotificationKind_$29559_$_t_uint256_$_t_address_$_t_address_$returns$__$","typeString":"function (enum PolicyHolderMock.NotificationKind,uint256,address,address)"}},"id":29851,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3517:79:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":29852,"nodeType":"EmitStatement","src":"3512:84:94"},{"condition":{"id":29853,"name":"badlyImplemented","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29547,"src":"3607:16:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29859,"nodeType":"IfStatement","src":"3603:47:94","trueBody":{"expression":{"arguments":[{"hexValue":"30783062616466303064","id":29856,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3639:10:94","typeDescriptions":{"typeIdentifier":"t_rational_195948557_by_1","typeString":"int_const 195948557"},"value":"0x0badf00d"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_195948557_by_1","typeString":"int_const 195948557"}],"id":29855,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3632:6:94","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":29854,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3632:6:94","typeDescriptions":{}}},"id":29857,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3632:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":29827,"id":29858,"nodeType":"Return","src":"3625:25:94"}},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":29860,"name":"spendGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29728,"src":"3657:8:94","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":29861,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3657:10:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":29862,"nodeType":"ExpressionStatement","src":"3657:10:94"},{"expression":{"expression":{"expression":{"id":29863,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"3681:13:94","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}},"id":29864,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3695:15:94","memberName":"onPolicyExpired","nodeType":"MemberAccess","referencedDeclaration":28935,"src":"3681:29:94","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bytes4_$","typeString":"function IPolicyHolder.onPolicyExpired(address,address,uint256) returns (bytes4)"}},"id":29865,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3711:8:94","memberName":"selector","nodeType":"MemberAccess","src":"3681:38:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":29827,"id":29866,"nodeType":"Return","src":"3674:45:94"}]},"functionSelector":"e8e617b7","id":29868,"implemented":true,"kind":"function","modifiers":[],"name":"onPolicyExpired","nameLocation":"3206:15:94","nodeType":"FunctionDefinition","overrides":{"id":29824,"nodeType":"OverrideSpecifier","overrides":[],"src":"3282:8:94"},"parameters":{"id":29823,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29818,"mutability":"mutable","name":"operator","nameLocation":"3230:8:94","nodeType":"VariableDeclaration","scope":29868,"src":"3222:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29817,"name":"address","nodeType":"ElementaryTypeName","src":"3222:7:94","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29820,"mutability":"mutable","name":"from","nameLocation":"3248:4:94","nodeType":"VariableDeclaration","scope":29868,"src":"3240:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29819,"name":"address","nodeType":"ElementaryTypeName","src":"3240:7:94","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29822,"mutability":"mutable","name":"policyId_","nameLocation":"3262:9:94","nodeType":"VariableDeclaration","scope":29868,"src":"3254:17:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29821,"name":"uint256","nodeType":"ElementaryTypeName","src":"3254:7:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3221:51:94"},"returnParameters":{"id":29827,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29826,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29868,"src":"3300:6:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29825,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3300:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3299:8:94"},"scope":30032,"src":"3197:527:94","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[28949],"body":{"id":29922,"nodeType":"Block","src":"3938:424:94","statements":[{"condition":{"id":29883,"name":"fail","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29537,"src":"3948:4:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29891,"nodeType":"IfStatement","src":"3944:151:94","trueBody":{"condition":{"id":29884,"name":"emptyRevert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29543,"src":"3964:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"arguments":[{"hexValue":"6f6e5061796f757452656365697665643a205468657920746f6c64206d652049206861766520746f206661696c","id":29887,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4047:47:94","typeDescriptions":{"typeIdentifier":"t_stringliteral_58698f5e11d9176307777359c7e820c4c719f9fb53f283df2e9b7afae0920593","typeString":"literal_string \"onPayoutReceived: They told me I have to fail\""},"value":"onPayoutReceived: They told me I have to fail"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_58698f5e11d9176307777359c7e820c4c719f9fb53f283df2e9b7afae0920593","typeString":"literal_string \"onPayoutReceived: They told me I have to fail\""}],"id":29886,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"4040:6:94","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":29888,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4040:55:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":29889,"nodeType":"ExpressionStatement","src":"4040:55:94"},"id":29890,"nodeType":"IfStatement","src":"3960:135:94","trueBody":{"AST":{"nativeSrc":"3994:34:94","nodeType":"YulBlock","src":"3994:34:94","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4013:1:94","nodeType":"YulLiteral","src":"4013:1:94","type":"","value":"0"},{"kind":"number","nativeSrc":"4016:1:94","nodeType":"YulLiteral","src":"4016:1:94","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4006:6:94","nodeType":"YulIdentifier","src":"4006:6:94"},"nativeSrc":"4006:12:94","nodeType":"YulFunctionCall","src":"4006:12:94"},"nativeSrc":"4006:12:94","nodeType":"YulExpressionStatement","src":"4006:12:94"}]},"evmVersion":"prague","externalReferences":[],"id":29885,"nodeType":"InlineAssembly","src":"3985:43:94"}}},{"expression":{"id":29894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29892,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29533,"src":"4101:8:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":29893,"name":"policyId_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29875,"src":"4112:9:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4101:20:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":29895,"nodeType":"ExpressionStatement","src":"4101:20:94"},{"expression":{"id":29898,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29896,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29535,"src":"4127:6:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":29897,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29877,"src":"4136:6:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4127:15:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":29899,"nodeType":"ExpressionStatement","src":"4127:15:94"},{"eventCall":{"arguments":[{"expression":{"id":29901,"name":"NotificationKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29559,"src":"4174:16:94","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_NotificationKind_$29559_$","typeString":"type(enum PolicyHolderMock.NotificationKind)"}},"id":29902,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4191:14:94","memberName":"PayoutReceived","nodeType":"MemberAccess","referencedDeclaration":29555,"src":"4174:31:94","typeDescriptions":{"typeIdentifier":"t_enum$_NotificationKind_$29559","typeString":"enum PolicyHolderMock.NotificationKind"}},{"id":29903,"name":"policyId_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29875,"src":"4207:9:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":29904,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29871,"src":"4218:8:94","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":29905,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29873,"src":"4228:4:94","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_NotificationKind_$29559","typeString":"enum PolicyHolderMock.NotificationKind"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":29900,"name":"NotificationReceived","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29570,"src":"4153:20:94","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_enum$_NotificationKind_$29559_$_t_uint256_$_t_address_$_t_address_$returns$__$","typeString":"function (enum PolicyHolderMock.NotificationKind,uint256,address,address)"}},"id":29906,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4153:80:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":29907,"nodeType":"EmitStatement","src":"4148:85:94"},{"condition":{"id":29908,"name":"badlyImplemented","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29547,"src":"4244:16:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29914,"nodeType":"IfStatement","src":"4240:47:94","trueBody":{"expression":{"arguments":[{"hexValue":"30783062616466303064","id":29911,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4276:10:94","typeDescriptions":{"typeIdentifier":"t_rational_195948557_by_1","typeString":"int_const 195948557"},"value":"0x0badf00d"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_195948557_by_1","typeString":"int_const 195948557"}],"id":29910,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4269:6:94","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":29909,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4269:6:94","typeDescriptions":{}}},"id":29912,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4269:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":29882,"id":29913,"nodeType":"Return","src":"4262:25:94"}},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":29915,"name":"spendGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29728,"src":"4294:8:94","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":29916,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4294:10:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":29917,"nodeType":"ExpressionStatement","src":"4294:10:94"},{"expression":{"expression":{"expression":{"id":29918,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"4318:13:94","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}},"id":29919,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4332:16:94","memberName":"onPayoutReceived","nodeType":"MemberAccess","referencedDeclaration":28949,"src":"4318:30:94","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function IPolicyHolder.onPayoutReceived(address,address,uint256,uint256) returns (bytes4)"}},"id":29920,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4349:8:94","memberName":"selector","nodeType":"MemberAccess","src":"4318:39:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":29882,"id":29921,"nodeType":"Return","src":"4311:46:94"}]},"documentation":{"id":29869,"nodeType":"StructuredDocumentation","src":"3728:59:94","text":" @dev See {IPolicyHolderV2-onPayoutReceived}."},"functionSelector":"d6281d3e","id":29923,"implemented":true,"kind":"function","modifiers":[],"name":"onPayoutReceived","nameLocation":"3799:16:94","nodeType":"FunctionDefinition","overrides":{"id":29879,"nodeType":"OverrideSpecifier","overrides":[],"src":"3912:8:94"},"parameters":{"id":29878,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29871,"mutability":"mutable","name":"operator","nameLocation":"3829:8:94","nodeType":"VariableDeclaration","scope":29923,"src":"3821:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29870,"name":"address","nodeType":"ElementaryTypeName","src":"3821:7:94","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29873,"mutability":"mutable","name":"from","nameLocation":"3851:4:94","nodeType":"VariableDeclaration","scope":29923,"src":"3843:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29872,"name":"address","nodeType":"ElementaryTypeName","src":"3843:7:94","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29875,"mutability":"mutable","name":"policyId_","nameLocation":"3869:9:94","nodeType":"VariableDeclaration","scope":29923,"src":"3861:17:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29874,"name":"uint256","nodeType":"ElementaryTypeName","src":"3861:7:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29877,"mutability":"mutable","name":"amount","nameLocation":"3892:6:94","nodeType":"VariableDeclaration","scope":29923,"src":"3884:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29876,"name":"uint256","nodeType":"ElementaryTypeName","src":"3884:7:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3815:87:94"},"returnParameters":{"id":29882,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29881,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29923,"src":"3930:6:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29880,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3930:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3929:8:94"},"scope":30032,"src":"3790:572:94","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[28963],"body":{"id":29977,"nodeType":"Block","src":"4583:447:94","statements":[{"condition":{"id":29938,"name":"failReplace","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29539,"src":"4593:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29946,"nodeType":"IfStatement","src":"4589:158:94","trueBody":{"condition":{"id":29939,"name":"emptyRevert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29543,"src":"4616:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"arguments":[{"hexValue":"6f6e506f6c6963795265706c616365643a205468657920746f6c64206d652049206861766520746f206661696c","id":29942,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4699:47:94","typeDescriptions":{"typeIdentifier":"t_stringliteral_7ddfbdd1d4ac69255d0a55452a77fbdbf1242396b0bad9544763e87828ab15fb","typeString":"literal_string \"onPolicyReplaced: They told me I have to fail\""},"value":"onPolicyReplaced: They told me I have to fail"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_7ddfbdd1d4ac69255d0a55452a77fbdbf1242396b0bad9544763e87828ab15fb","typeString":"literal_string \"onPolicyReplaced: They told me I have to fail\""}],"id":29941,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"4692:6:94","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":29943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4692:55:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":29944,"nodeType":"ExpressionStatement","src":"4692:55:94"},"id":29945,"nodeType":"IfStatement","src":"4612:135:94","trueBody":{"AST":{"nativeSrc":"4646:34:94","nodeType":"YulBlock","src":"4646:34:94","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4665:1:94","nodeType":"YulLiteral","src":"4665:1:94","type":"","value":"0"},{"kind":"number","nativeSrc":"4668:1:94","nodeType":"YulLiteral","src":"4668:1:94","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4658:6:94","nodeType":"YulIdentifier","src":"4658:6:94"},"nativeSrc":"4658:12:94","nodeType":"YulFunctionCall","src":"4658:12:94"},"nativeSrc":"4658:12:94","nodeType":"YulExpressionStatement","src":"4658:12:94"}]},"evmVersion":"prague","externalReferences":[],"id":29940,"nodeType":"InlineAssembly","src":"4637:43:94"}}},{"expression":{"id":29949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29947,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29533,"src":"4753:8:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":29948,"name":"oldPolicyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29930,"src":"4764:11:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4753:22:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":29950,"nodeType":"ExpressionStatement","src":"4753:22:94"},{"expression":{"id":29953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":29951,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29535,"src":"4781:6:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":29952,"name":"newPolicyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29932,"src":"4790:11:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4781:20:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":29954,"nodeType":"ExpressionStatement","src":"4781:20:94"},{"eventCall":{"arguments":[{"expression":{"id":29956,"name":"NotificationKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29559,"src":"4833:16:94","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_NotificationKind_$29559_$","typeString":"type(enum PolicyHolderMock.NotificationKind)"}},"id":29957,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4850:14:94","memberName":"PolicyReplaced","nodeType":"MemberAccess","referencedDeclaration":29557,"src":"4833:31:94","typeDescriptions":{"typeIdentifier":"t_enum$_NotificationKind_$29559","typeString":"enum PolicyHolderMock.NotificationKind"}},{"id":29958,"name":"oldPolicyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29930,"src":"4866:11:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":29959,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29926,"src":"4879:8:94","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":29960,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29928,"src":"4889:4:94","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_NotificationKind_$29559","typeString":"enum PolicyHolderMock.NotificationKind"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":29955,"name":"NotificationReceived","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29570,"src":"4812:20:94","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_enum$_NotificationKind_$29559_$_t_uint256_$_t_address_$_t_address_$returns$__$","typeString":"function (enum PolicyHolderMock.NotificationKind,uint256,address,address)"}},"id":29961,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4812:82:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":29962,"nodeType":"EmitStatement","src":"4807:87:94"},{"condition":{"id":29963,"name":"badlyImplementedReplace","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29549,"src":"4905:23:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29969,"nodeType":"IfStatement","src":"4901:54:94","trueBody":{"expression":{"arguments":[{"hexValue":"30783062616466303064","id":29966,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4944:10:94","typeDescriptions":{"typeIdentifier":"t_rational_195948557_by_1","typeString":"int_const 195948557"},"value":"0x0badf00d"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_195948557_by_1","typeString":"int_const 195948557"}],"id":29965,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4937:6:94","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":29964,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4937:6:94","typeDescriptions":{}}},"id":29967,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4937:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":29937,"id":29968,"nodeType":"Return","src":"4930:25:94"}},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":29970,"name":"spendGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29728,"src":"4962:8:94","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":29971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4962:10:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":29972,"nodeType":"ExpressionStatement","src":"4962:10:94"},{"expression":{"expression":{"expression":{"id":29973,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"4986:13:94","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}},"id":29974,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5000:16:94","memberName":"onPolicyReplaced","nodeType":"MemberAccess","referencedDeclaration":28963,"src":"4986:30:94","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function IPolicyHolder.onPolicyReplaced(address,address,uint256,uint256) returns (bytes4)"}},"id":29975,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5017:8:94","memberName":"selector","nodeType":"MemberAccess","src":"4986:39:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":29937,"id":29976,"nodeType":"Return","src":"4979:46:94"}]},"documentation":{"id":29924,"nodeType":"StructuredDocumentation","src":"4366:59:94","text":" @dev See {IPolicyHolderV2-onPolicyReplaced}."},"functionSelector":"5ee0c7dd","id":29978,"implemented":true,"kind":"function","modifiers":[],"name":"onPolicyReplaced","nameLocation":"4437:16:94","nodeType":"FunctionDefinition","overrides":{"id":29934,"nodeType":"OverrideSpecifier","overrides":[],"src":"4557:8:94"},"parameters":{"id":29933,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29926,"mutability":"mutable","name":"operator","nameLocation":"4467:8:94","nodeType":"VariableDeclaration","scope":29978,"src":"4459:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29925,"name":"address","nodeType":"ElementaryTypeName","src":"4459:7:94","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29928,"mutability":"mutable","name":"from","nameLocation":"4489:4:94","nodeType":"VariableDeclaration","scope":29978,"src":"4481:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29927,"name":"address","nodeType":"ElementaryTypeName","src":"4481:7:94","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29930,"mutability":"mutable","name":"oldPolicyId","nameLocation":"4507:11:94","nodeType":"VariableDeclaration","scope":29978,"src":"4499:19:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29929,"name":"uint256","nodeType":"ElementaryTypeName","src":"4499:7:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29932,"mutability":"mutable","name":"newPolicyId","nameLocation":"4532:11:94","nodeType":"VariableDeclaration","scope":29978,"src":"4524:19:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29931,"name":"uint256","nodeType":"ElementaryTypeName","src":"4524:7:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4453:94:94"},"returnParameters":{"id":29937,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29936,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29978,"src":"4575:6:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29935,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4575:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"4574:8:94"},"scope":30032,"src":"4428:602:94","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[28981],"body":{"id":30030,"nodeType":"Block","src":"5261:441:94","statements":[{"condition":{"id":29995,"name":"failCancellation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29541,"src":"5271:16:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30003,"nodeType":"IfStatement","src":"5267:164:94","trueBody":{"condition":{"id":29996,"name":"emptyRevert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29543,"src":"5299:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"arguments":[{"hexValue":"6f6e506f6c69637943616e63656c6c65643a205468657920746f6c64206d652049206861766520746f206661696c","id":29999,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5382:48:94","typeDescriptions":{"typeIdentifier":"t_stringliteral_cafcf11cef247dfc7f6d14af31b85636a2a800b1462b08970c9283203a393627","typeString":"literal_string \"onPolicyCancelled: They told me I have to fail\""},"value":"onPolicyCancelled: They told me I have to fail"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_cafcf11cef247dfc7f6d14af31b85636a2a800b1462b08970c9283203a393627","typeString":"literal_string \"onPolicyCancelled: They told me I have to fail\""}],"id":29998,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"5375:6:94","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":30000,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5375:56:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30001,"nodeType":"ExpressionStatement","src":"5375:56:94"},"id":30002,"nodeType":"IfStatement","src":"5295:136:94","trueBody":{"AST":{"nativeSrc":"5329:34:94","nodeType":"YulBlock","src":"5329:34:94","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5348:1:94","nodeType":"YulLiteral","src":"5348:1:94","type":"","value":"0"},{"kind":"number","nativeSrc":"5351:1:94","nodeType":"YulLiteral","src":"5351:1:94","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5341:6:94","nodeType":"YulIdentifier","src":"5341:6:94"},"nativeSrc":"5341:12:94","nodeType":"YulFunctionCall","src":"5341:12:94"},"nativeSrc":"5341:12:94","nodeType":"YulExpressionStatement","src":"5341:12:94"}]},"evmVersion":"prague","externalReferences":[],"id":29997,"nodeType":"InlineAssembly","src":"5320:43:94"}}},{"expression":{"id":30006,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":30004,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29533,"src":"5437:8:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":30005,"name":"cancelledPolicyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29984,"src":"5448:17:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5437:28:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":30007,"nodeType":"ExpressionStatement","src":"5437:28:94"},{"eventCall":{"arguments":[{"expression":{"id":30009,"name":"NotificationKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29559,"src":"5497:16:94","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_NotificationKind_$29559_$","typeString":"type(enum PolicyHolderMock.NotificationKind)"}},"id":30010,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5514:15:94","memberName":"PolicyCancelled","nodeType":"MemberAccess","referencedDeclaration":29558,"src":"5497:32:94","typeDescriptions":{"typeIdentifier":"t_enum$_NotificationKind_$29559","typeString":"enum PolicyHolderMock.NotificationKind"}},{"id":30011,"name":"cancelledPolicyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29984,"src":"5531:17:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":30012,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29980,"src":"5550:8:94","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":30013,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29982,"src":"5560:4:94","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_NotificationKind_$29559","typeString":"enum PolicyHolderMock.NotificationKind"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":30008,"name":"NotificationReceived","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29570,"src":"5476:20:94","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_enum$_NotificationKind_$29559_$_t_uint256_$_t_address_$_t_address_$returns$__$","typeString":"function (enum PolicyHolderMock.NotificationKind,uint256,address,address)"}},"id":30014,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5476:89:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30015,"nodeType":"EmitStatement","src":"5471:94:94"},{"condition":{"id":30016,"name":"badlyImplementedReplace","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29549,"src":"5576:23:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30022,"nodeType":"IfStatement","src":"5572:54:94","trueBody":{"expression":{"arguments":[{"hexValue":"30783062616466656564","id":30019,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5615:10:94","typeDescriptions":{"typeIdentifier":"t_rational_195952365_by_1","typeString":"int_const 195952365"},"value":"0x0badfeed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_195952365_by_1","typeString":"int_const 195952365"}],"id":30018,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5608:6:94","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":30017,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5608:6:94","typeDescriptions":{}}},"id":30020,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5608:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":29994,"id":30021,"nodeType":"Return","src":"5601:25:94"}},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":30023,"name":"spendGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29728,"src":"5633:8:94","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":30024,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5633:10:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30025,"nodeType":"ExpressionStatement","src":"5633:10:94"},{"expression":{"expression":{"expression":{"id":30026,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28982,"src":"5657:13:94","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$28982_$","typeString":"type(contract IPolicyHolder)"}},"id":30027,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5671:17:94","memberName":"onPolicyCancelled","nodeType":"MemberAccess","referencedDeclaration":28981,"src":"5657:31:94","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function IPolicyHolder.onPolicyCancelled(address,address,uint256,uint256,uint256,uint256) returns (bytes4)"}},"id":30028,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5689:8:94","memberName":"selector","nodeType":"MemberAccess","src":"5657:40:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":29994,"id":30029,"nodeType":"Return","src":"5650:47:94"}]},"functionSelector":"62eb345e","id":30031,"implemented":true,"kind":"function","modifiers":[],"name":"onPolicyCancelled","nameLocation":"5043:17:94","nodeType":"FunctionDefinition","parameters":{"id":29991,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29980,"mutability":"mutable","name":"operator","nameLocation":"5074:8:94","nodeType":"VariableDeclaration","scope":30031,"src":"5066:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29979,"name":"address","nodeType":"ElementaryTypeName","src":"5066:7:94","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29982,"mutability":"mutable","name":"from","nameLocation":"5096:4:94","nodeType":"VariableDeclaration","scope":30031,"src":"5088:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":29981,"name":"address","nodeType":"ElementaryTypeName","src":"5088:7:94","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29984,"mutability":"mutable","name":"cancelledPolicyId","nameLocation":"5114:17:94","nodeType":"VariableDeclaration","scope":30031,"src":"5106:25:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29983,"name":"uint256","nodeType":"ElementaryTypeName","src":"5106:7:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29986,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30031,"src":"5137:7:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29985,"name":"uint256","nodeType":"ElementaryTypeName","src":"5137:7:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29988,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30031,"src":"5174:7:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29987,"name":"uint256","nodeType":"ElementaryTypeName","src":"5174:7:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":29990,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30031,"src":"5205:7:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":29989,"name":"uint256","nodeType":"ElementaryTypeName","src":"5205:7:94","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5060:174:94"},"returnParameters":{"id":29994,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29993,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30031,"src":"5253:6:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29992,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5253:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"5252:8:94"},"scope":30032,"src":"5034:668:94","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":30033,"src":"375:5329:94","usedErrors":[],"usedEvents":[29570]}],"src":"39:5666:94"},"id":94},"contracts/mocks/PolicyPoolComponentMock.sol":{"ast":{"absolutePath":"contracts/mocks/PolicyPoolComponentMock.sol","exportedSymbols":{"IERC165":[14272],"IPolicyPool":[29171],"IPolicyPoolComponent":[29188],"PolicyPoolComponentMock":[30091]},"id":30092,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":30034,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:95"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":30036,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30092,"sourceUnit":14273,"src":"65:80:95","symbolAliases":[{"foreign":{"id":30035,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"73:7:95","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyPool.sol","file":"../interfaces/IPolicyPool.sol","id":30038,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30092,"sourceUnit":29172,"src":"146:58:95","symbolAliases":[{"foreign":{"id":30037,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"154:11:95","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyPoolComponent.sol","file":"../interfaces/IPolicyPoolComponent.sol","id":30040,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30092,"sourceUnit":29189,"src":"205:76:95","symbolAliases":[{"foreign":{"id":30039,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29188,"src":"213:20:95","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":30041,"name":"IPolicyPoolComponent","nameLocations":["319:20:95"],"nodeType":"IdentifierPath","referencedDeclaration":29188,"src":"319:20:95"},"id":30042,"nodeType":"InheritanceSpecifier","src":"319:20:95"}],"canonicalName":"PolicyPoolComponentMock","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":30091,"linearizedBaseContracts":[30091,29188,14272],"name":"PolicyPoolComponentMock","nameLocation":"292:23:95","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":30045,"mutability":"immutable","name":"_policyPool","nameLocation":"375:11:95","nodeType":"VariableDeclaration","scope":30091,"src":"344:42:95","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"typeName":{"id":30044,"nodeType":"UserDefinedTypeName","pathNode":{"id":30043,"name":"IPolicyPool","nameLocations":["344:11:95"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"344:11:95"},"referencedDeclaration":29171,"src":"344:11:95","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"visibility":"internal"},{"body":{"id":30055,"nodeType":"Block","src":"428:36:95","statements":[{"expression":{"id":30053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":30051,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30045,"src":"434:11:95","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":30052,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30048,"src":"448:11:95","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"src":"434:25:95","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"id":30054,"nodeType":"ExpressionStatement","src":"434:25:95"}]},"id":30056,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":30049,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30048,"mutability":"mutable","name":"policyPool_","nameLocation":"415:11:95","nodeType":"VariableDeclaration","scope":30056,"src":"403:23:95","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"typeName":{"id":30047,"nodeType":"UserDefinedTypeName","pathNode":{"id":30046,"name":"IPolicyPool","nameLocations":["403:11:95"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"403:11:95"},"referencedDeclaration":29171,"src":"403:11:95","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"402:25:95"},"returnParameters":{"id":30050,"nodeType":"ParameterList","parameters":[],"src":"428:0:95"},"scope":30091,"src":"391:73:95","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[29187],"body":{"id":30065,"nodeType":"Block","src":"535:29:95","statements":[{"expression":{"id":30063,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30045,"src":"548:11:95","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"functionReturnParameters":30062,"id":30064,"nodeType":"Return","src":"541:18:95"}]},"functionSelector":"4d15eb03","id":30066,"implemented":true,"kind":"function","modifiers":[],"name":"policyPool","nameLocation":"477:10:95","nodeType":"FunctionDefinition","overrides":{"id":30058,"nodeType":"OverrideSpecifier","overrides":[],"src":"504:8:95"},"parameters":{"id":30057,"nodeType":"ParameterList","parameters":[],"src":"487:2:95"},"returnParameters":{"id":30062,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30061,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30066,"src":"522:11:95","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"typeName":{"id":30060,"nodeType":"UserDefinedTypeName","pathNode":{"id":30059,"name":"IPolicyPool","nameLocations":["522:11:95"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"522:11:95"},"referencedDeclaration":29171,"src":"522:11:95","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"521:13:95"},"scope":30091,"src":"468:96:95","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[14271],"body":{"id":30089,"nodeType":"Block","src":"714:115:95","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":30087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":30080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30075,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30069,"src":"727:11:95","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":30077,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"747:7:95","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$14272_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$14272_$","typeString":"type(contract IERC165)"}],"id":30076,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"742:4:95","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":30078,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"742:13:95","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$14272","typeString":"type(contract IERC165)"}},"id":30079,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"756:11:95","memberName":"interfaceId","nodeType":"MemberAccess","src":"742:25:95","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"727:40:95","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":30086,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30081,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30069,"src":"771:11:95","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":30083,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29188,"src":"791:20:95","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$29188_$","typeString":"type(contract IPolicyPoolComponent)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$29188_$","typeString":"type(contract IPolicyPoolComponent)"}],"id":30082,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"786:4:95","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":30084,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"786:26:95","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyPoolComponent_$29188","typeString":"type(contract IPolicyPoolComponent)"}},"id":30085,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"813:11:95","memberName":"interfaceId","nodeType":"MemberAccess","src":"786:38:95","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"771:53:95","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"727:97:95","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":30074,"id":30088,"nodeType":"Return","src":"720:104:95"}]},"documentation":{"id":30067,"nodeType":"StructuredDocumentation","src":"568:52:95","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":30090,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"632:17:95","nodeType":"FunctionDefinition","overrides":{"id":30071,"nodeType":"OverrideSpecifier","overrides":[],"src":"690:8:95"},"parameters":{"id":30070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30069,"mutability":"mutable","name":"interfaceId","nameLocation":"657:11:95","nodeType":"VariableDeclaration","scope":30090,"src":"650:18:95","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":30068,"name":"bytes4","nodeType":"ElementaryTypeName","src":"650:6:95","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"649:20:95"},"returnParameters":{"id":30074,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30073,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30090,"src":"708:4:95","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":30072,"name":"bool","nodeType":"ElementaryTypeName","src":"708:4:95","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"707:6:95"},"scope":30091,"src":"623:206:95","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":30092,"src":"283:548:95","usedErrors":[],"usedEvents":[]}],"src":"39:793:95"},"id":95},"contracts/mocks/PolicyPoolMock.sol":{"ast":{"absolutePath":"contracts/mocks/PolicyPoolMock.sol","exportedSymbols":{"ForwardProxy":[29412],"IERC20Metadata":[8863],"IEToken":[28869],"IPolicyPool":[29171],"IRiskModule":[29295],"Policy":[22826],"PolicyPoolMock":[30542],"PolicyPoolMockForward":[30577]},"id":30578,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":30093,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:96"},{"absolutePath":"contracts/interfaces/IPolicyPool.sol","file":"../interfaces/IPolicyPool.sol","id":30095,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30578,"sourceUnit":29172,"src":"65:58:96","symbolAliases":[{"foreign":{"id":30094,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"73:11:96","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IRiskModule.sol","file":"../interfaces/IRiskModule.sol","id":30097,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30578,"sourceUnit":29296,"src":"124:58:96","symbolAliases":[{"foreign":{"id":30096,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"132:11:96","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IEToken.sol","file":"../interfaces/IEToken.sol","id":30099,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30578,"sourceUnit":28870,"src":"183:50:96","symbolAliases":[{"foreign":{"id":30098,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28869,"src":"191:7:96","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":30101,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30578,"sourceUnit":8864,"src":"234:97:96","symbolAliases":[{"foreign":{"id":30100,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"242:14:96","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/Policy.sol","file":"../Policy.sol","id":30103,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30578,"sourceUnit":22827,"src":"332:37:96","symbolAliases":[{"foreign":{"id":30102,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"340:6:96","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/mocks/ForwardProxy.sol","file":"./ForwardProxy.sol","id":30105,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30578,"sourceUnit":29413,"src":"370:48:96","symbolAliases":[{"foreign":{"id":30104,"name":"ForwardProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29412,"src":"378:12:96","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":30106,"name":"IPolicyPool","nameLocations":["447:11:96"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"447:11:96"},"id":30107,"nodeType":"InheritanceSpecifier","src":"447:11:96"}],"canonicalName":"PolicyPoolMock","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":30542,"linearizedBaseContracts":[30542,29171],"name":"PolicyPoolMock","nameLocation":"429:14:96","nodeType":"ContractDefinition","nodes":[{"global":false,"id":30111,"libraryName":{"id":30108,"name":"Policy","nameLocations":["469:6:96"],"nodeType":"IdentifierPath","referencedDeclaration":22826,"src":"469:6:96"},"nodeType":"UsingForDirective","src":"463:35:96","typeName":{"id":30110,"nodeType":"UserDefinedTypeName","pathNode":{"id":30109,"name":"Policy.PolicyData","nameLocations":["480:6:96","487:10:96"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"480:17:96"},"referencedDeclaration":22256,"src":"480:17:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}}},{"constant":true,"functionSelector":"098d3228","id":30114,"mutability":"constant","name":"MAX_INT","nameLocation":"526:7:96","nodeType":"VariableDeclaration","scope":30542,"src":"502:100:96","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30112,"name":"uint256","nodeType":"ElementaryTypeName","src":"502:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"307866666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666","id":30113,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"536:66:96","typeDescriptions":{"typeIdentifier":"t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1","typeString":"int_const 1157...(70 digits omitted)...9935"},"value":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"},"visibility":"public"},{"constant":false,"id":30117,"mutability":"mutable","name":"_currency","nameLocation":"631:9:96","nodeType":"VariableDeclaration","scope":30542,"src":"607:33:96","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"},"typeName":{"id":30116,"nodeType":"UserDefinedTypeName","pathNode":{"id":30115,"name":"IERC20Metadata","nameLocations":["607:14:96"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"607:14:96"},"referencedDeclaration":8863,"src":"607:14:96","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"visibility":"internal"},{"constant":false,"id":30122,"mutability":"mutable","name":"policies","nameLocation":"692:8:96","nodeType":"VariableDeclaration","scope":30542,"src":"645:55:96","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_PolicyData_$22256_storage_$","typeString":"mapping(uint256 => struct Policy.PolicyData)"},"typeName":{"id":30121,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":30118,"name":"uint256","nodeType":"ElementaryTypeName","src":"653:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"645:37:96","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_PolicyData_$22256_storage_$","typeString":"mapping(uint256 => struct Policy.PolicyData)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":30120,"nodeType":"UserDefinedTypeName","pathNode":{"id":30119,"name":"Policy.PolicyData","nameLocations":["664:6:96","671:10:96"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"664:17:96"},"referencedDeclaration":22256,"src":"664:17:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}}},"visibility":"internal"},{"constant":false,"id":30126,"mutability":"mutable","name":"policyHashes","nameLocation":"741:12:96","nodeType":"VariableDeclaration","scope":30542,"src":"704:49:96","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"},"typeName":{"id":30125,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":30123,"name":"uint256","nodeType":"ElementaryTypeName","src":"712:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"704:27:96","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":30124,"name":"bytes32","nodeType":"ElementaryTypeName","src":"723:7:96","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},"visibility":"internal"},{"body":{"id":30136,"nodeType":"Block","src":"796:32:96","statements":[{"expression":{"id":30134,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":30132,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30117,"src":"802:9:96","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":30133,"name":"currency_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30129,"src":"814:9:96","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"src":"802:21:96","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":30135,"nodeType":"ExpressionStatement","src":"802:21:96"}]},"id":30137,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":30130,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30129,"mutability":"mutable","name":"currency_","nameLocation":"785:9:96","nodeType":"VariableDeclaration","scope":30137,"src":"770:24:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"},"typeName":{"id":30128,"nodeType":"UserDefinedTypeName","pathNode":{"id":30127,"name":"IERC20Metadata","nameLocations":["770:14:96"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"770:14:96"},"referencedDeclaration":8863,"src":"770:14:96","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"src":"769:26:96"},"returnParameters":{"id":30131,"nodeType":"ParameterList","parameters":[],"src":"796:0:96"},"scope":30542,"src":"758:70:96","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[29043],"body":{"id":30146,"nodeType":"Block","src":"900:27:96","statements":[{"expression":{"id":30144,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30117,"src":"913:9:96","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"functionReturnParameters":30143,"id":30145,"nodeType":"Return","src":"906:16:96"}]},"functionSelector":"e5a6b10f","id":30147,"implemented":true,"kind":"function","modifiers":[],"name":"currency","nameLocation":"841:8:96","nodeType":"FunctionDefinition","overrides":{"id":30139,"nodeType":"OverrideSpecifier","overrides":[],"src":"866:8:96"},"parameters":{"id":30138,"nodeType":"ParameterList","parameters":[],"src":"849:2:96"},"returnParameters":{"id":30143,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30142,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30147,"src":"884:14:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"},"typeName":{"id":30141,"nodeType":"UserDefinedTypeName","pathNode":{"id":30140,"name":"IERC20Metadata","nameLocations":["884:14:96"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"884:14:96"},"referencedDeclaration":8863,"src":"884:14:96","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"src":"883:16:96"},"scope":30542,"src":"832:95:96","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[29049],"body":{"id":30158,"nodeType":"Block","src":"992:28:96","statements":[{"expression":{"arguments":[{"hexValue":"30","id":30155,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1013:1:96","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":30154,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1005:7:96","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":30153,"name":"address","nodeType":"ElementaryTypeName","src":"1005:7:96","typeDescriptions":{}}},"id":30156,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1005:10:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":30152,"id":30157,"nodeType":"Return","src":"998:17:96"}]},"functionSelector":"61d027b3","id":30159,"implemented":true,"kind":"function","modifiers":[],"name":"treasury","nameLocation":"940:8:96","nodeType":"FunctionDefinition","overrides":{"id":30149,"nodeType":"OverrideSpecifier","overrides":[],"src":"965:8:96"},"parameters":{"id":30148,"nodeType":"ParameterList","parameters":[],"src":"948:2:96"},"returnParameters":{"id":30152,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30151,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30159,"src":"983:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":30150,"name":"address","nodeType":"ElementaryTypeName","src":"983:7:96","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"982:9:96"},"scope":30542,"src":"931:89:96","stateMutability":"pure","virtual":false,"visibility":"external"},{"baseFunctions":[29064],"body":{"id":30212,"nodeType":"Block","src":"1200:192:96","statements":[{"expression":{"id":30190,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":30174,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30162,"src":"1206:6:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":30176,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1213:2:96","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"1206:9:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":30189,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":30186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"expression":{"id":30181,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1235:3:96","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":30182,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1239:6:96","memberName":"sender","nodeType":"MemberAccess","src":"1235:10:96","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":30180,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1227:7:96","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":30179,"name":"uint160","nodeType":"ElementaryTypeName","src":"1227:7:96","typeDescriptions":{}}},"id":30183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1227:19:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":30178,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1219:7:96","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":30177,"name":"uint256","nodeType":"ElementaryTypeName","src":"1219:7:96","typeDescriptions":{}}},"id":30184,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1219:28:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3936","id":30185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1251:2:96","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"1219:34:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":30187,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1218:36:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":30188,"name":"internalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30168,"src":"1257:10:96","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"1218:49:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1206:61:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":30191,"nodeType":"ExpressionStatement","src":"1206:61:96"},{"expression":{"id":30199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":30192,"name":"policyHashes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30126,"src":"1273:12:96","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":30195,"indexExpression":{"expression":{"id":30193,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30162,"src":"1286:6:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":30194,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1293:2:96","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"1286:9:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1273:23:96","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":30196,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30162,"src":"1299:6:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":30197,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1306:4:96","memberName":"hash","nodeType":"MemberAccess","referencedDeclaration":22760,"src":"1299:11:96","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_bytes32_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (bytes32)"}},"id":30198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1299:13:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"1273:39:96","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":30200,"nodeType":"ExpressionStatement","src":"1273:39:96"},{"eventCall":{"arguments":[{"arguments":[{"expression":{"id":30203,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1345:3:96","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":30204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1349:6:96","memberName":"sender","nodeType":"MemberAccess","src":"1345:10:96","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":30202,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"1333:11:96","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}},"id":30205,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1333:23:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},{"id":30206,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30162,"src":"1358:6:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":30201,"name":"NewPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29002,"src":"1323:9:96","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IRiskModule_$29295_$_t_struct$_PolicyData_$22256_memory_ptr_$returns$__$","typeString":"function (contract IRiskModule,struct Policy.PolicyData memory)"}},"id":30207,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1323:42:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30208,"nodeType":"EmitStatement","src":"1318:47:96"},{"expression":{"expression":{"id":30209,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30162,"src":"1378:6:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":30210,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1385:2:96","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"1378:9:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":30173,"id":30211,"nodeType":"Return","src":"1371:16:96"}]},"functionSelector":"0d100acb","id":30213,"implemented":true,"kind":"function","modifiers":[],"name":"newPolicy","nameLocation":"1033:9:96","nodeType":"FunctionDefinition","overrides":{"id":30170,"nodeType":"OverrideSpecifier","overrides":[],"src":"1173:8:96"},"parameters":{"id":30169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30162,"mutability":"mutable","name":"policy","nameLocation":"1073:6:96","nodeType":"VariableDeclaration","scope":30213,"src":"1048:31:96","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":30161,"nodeType":"UserDefinedTypeName","pathNode":{"id":30160,"name":"Policy.PolicyData","nameLocations":["1048:6:96","1055:10:96"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"1048:17:96"},"referencedDeclaration":22256,"src":"1048:17:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":30164,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30213,"src":"1085:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":30163,"name":"address","nodeType":"ElementaryTypeName","src":"1085:7:96","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":30166,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30213,"src":"1110:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":30165,"name":"address","nodeType":"ElementaryTypeName","src":"1110:7:96","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":30168,"mutability":"mutable","name":"internalId","nameLocation":"1149:10:96","nodeType":"VariableDeclaration","scope":30213,"src":"1142:17:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":30167,"name":"uint96","nodeType":"ElementaryTypeName","src":"1142:6:96","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"1042:121:96"},"returnParameters":{"id":30173,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30172,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30213,"src":"1191:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30171,"name":"uint256","nodeType":"ElementaryTypeName","src":"1191:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1190:9:96"},"scope":30542,"src":"1024:368:96","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[29080],"body":{"id":30283,"nodeType":"Block","src":"1588:316:96","statements":[{"expression":{"id":30245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":30229,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30219,"src":"1594:10:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":30231,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1605:2:96","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"1594:13:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":30244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":30241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"expression":{"id":30236,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1627:3:96","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":30237,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1631:6:96","memberName":"sender","nodeType":"MemberAccess","src":"1627:10:96","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":30235,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1619:7:96","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":30234,"name":"uint160","nodeType":"ElementaryTypeName","src":"1619:7:96","typeDescriptions":{}}},"id":30238,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1619:19:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":30233,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1611:7:96","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":30232,"name":"uint256","nodeType":"ElementaryTypeName","src":"1611:7:96","typeDescriptions":{}}},"id":30239,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1611:28:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3936","id":30240,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1643:2:96","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"1611:34:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":30242,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1610:36:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":30243,"name":"internalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30223,"src":"1649:10:96","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"1610:49:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1594:65:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":30246,"nodeType":"ExpressionStatement","src":"1594:65:96"},{"expression":{"id":30254,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":30247,"name":"policyHashes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30126,"src":"1665:12:96","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":30250,"indexExpression":{"expression":{"id":30248,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30219,"src":"1678:10:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":30249,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1689:2:96","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"1678:13:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1665:27:96","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":30251,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30219,"src":"1695:10:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":30252,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1706:4:96","memberName":"hash","nodeType":"MemberAccess","referencedDeclaration":22760,"src":"1695:15:96","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_bytes32_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (bytes32)"}},"id":30253,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1695:17:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"1665:47:96","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":30255,"nodeType":"ExpressionStatement","src":"1665:47:96"},{"assignments":[30258],"declarations":[{"constant":false,"id":30258,"mutability":"mutable","name":"rm","nameLocation":"1730:2:96","nodeType":"VariableDeclaration","scope":30283,"src":"1718:14:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},"typeName":{"id":30257,"nodeType":"UserDefinedTypeName","pathNode":{"id":30256,"name":"IRiskModule","nameLocations":["1718:11:96"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"1718:11:96"},"referencedDeclaration":29295,"src":"1718:11:96","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"visibility":"internal"}],"id":30263,"initialValue":{"arguments":[{"expression":{"id":30260,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1747:3:96","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":30261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1751:6:96","memberName":"sender","nodeType":"MemberAccess","src":"1747:10:96","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":30259,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"1735:11:96","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}},"id":30262,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1735:23:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"nodeType":"VariableDeclarationStatement","src":"1718:40:96"},{"eventCall":{"arguments":[{"id":30265,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30258,"src":"1779:2:96","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},{"id":30266,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30219,"src":"1783:10:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":30264,"name":"NewPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29002,"src":"1769:9:96","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IRiskModule_$29295_$_t_struct$_PolicyData_$22256_memory_ptr_$returns$__$","typeString":"function (contract IRiskModule,struct Policy.PolicyData memory)"}},"id":30267,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1769:25:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30268,"nodeType":"EmitStatement","src":"1764:30:96"},{"eventCall":{"arguments":[{"arguments":[{"expression":{"id":30271,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1832:3:96","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":30272,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1836:6:96","memberName":"sender","nodeType":"MemberAccess","src":"1832:10:96","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":30270,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"1820:11:96","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}},"id":30273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1820:23:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},{"expression":{"id":30274,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30216,"src":"1845:9:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":30275,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1855:2:96","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"1845:12:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":30276,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30219,"src":"1859:10:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":30277,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1870:2:96","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"1859:13:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":30269,"name":"PolicyReplaced","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29012,"src":"1805:14:96","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IRiskModule_$29295_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,uint256,uint256)"}},"id":30278,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1805:68:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30279,"nodeType":"EmitStatement","src":"1800:73:96"},{"expression":{"expression":{"id":30280,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30219,"src":"1886:10:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":30281,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1897:2:96","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"1886:13:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":30228,"id":30282,"nodeType":"Return","src":"1879:20:96"}]},"functionSelector":"663d8337","id":30284,"implemented":true,"kind":"function","modifiers":[],"name":"replacePolicy","nameLocation":"1405:13:96","nodeType":"FunctionDefinition","overrides":{"id":30225,"nodeType":"OverrideSpecifier","overrides":[],"src":"1561:8:96"},"parameters":{"id":30224,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30216,"mutability":"mutable","name":"oldPolicy","nameLocation":"1449:9:96","nodeType":"VariableDeclaration","scope":30284,"src":"1424:34:96","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":30215,"nodeType":"UserDefinedTypeName","pathNode":{"id":30214,"name":"Policy.PolicyData","nameLocations":["1424:6:96","1431:10:96"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"1424:17:96"},"referencedDeclaration":22256,"src":"1424:17:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":30219,"mutability":"mutable","name":"newPolicy_","nameLocation":"1489:10:96","nodeType":"VariableDeclaration","scope":30284,"src":"1464:35:96","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":30218,"nodeType":"UserDefinedTypeName","pathNode":{"id":30217,"name":"Policy.PolicyData","nameLocations":["1464:6:96","1471:10:96"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"1464:17:96"},"referencedDeclaration":22256,"src":"1464:17:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":30221,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30284,"src":"1505:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":30220,"name":"address","nodeType":"ElementaryTypeName","src":"1505:7:96","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":30223,"mutability":"mutable","name":"internalId","nameLocation":"1537:10:96","nodeType":"VariableDeclaration","scope":30284,"src":"1530:17:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":30222,"name":"uint96","nodeType":"ElementaryTypeName","src":"1530:6:96","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"1418:133:96"},"returnParameters":{"id":30228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30227,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30284,"src":"1579:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30226,"name":"uint256","nodeType":"ElementaryTypeName","src":"1579:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1578:9:96"},"scope":30542,"src":"1396:508:96","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[29093],"body":{"id":30297,"nodeType":"Block","src":"2078:2:96","statements":[]},"functionSelector":"6f520b73","id":30298,"implemented":true,"kind":"function","modifiers":[],"name":"cancelPolicy","nameLocation":"1917:12:96","nodeType":"FunctionDefinition","overrides":{"id":30295,"nodeType":"OverrideSpecifier","overrides":[],"src":"2069:8:96"},"parameters":{"id":30294,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30287,"mutability":"mutable","name":"policyToCancel","nameLocation":"1960:14:96","nodeType":"VariableDeclaration","scope":30298,"src":"1935:39:96","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":30286,"nodeType":"UserDefinedTypeName","pathNode":{"id":30285,"name":"Policy.PolicyData","nameLocations":["1935:6:96","1942:10:96"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"1935:17:96"},"referencedDeclaration":22256,"src":"1935:17:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":30289,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"1988:17:96","nodeType":"VariableDeclaration","scope":30298,"src":"1980:25:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30288,"name":"uint256","nodeType":"ElementaryTypeName","src":"1980:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":30291,"mutability":"mutable","name":"jrCocRefund","nameLocation":"2019:11:96","nodeType":"VariableDeclaration","scope":30298,"src":"2011:19:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30290,"name":"uint256","nodeType":"ElementaryTypeName","src":"2011:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":30293,"mutability":"mutable","name":"srCocRefund","nameLocation":"2044:11:96","nodeType":"VariableDeclaration","scope":30298,"src":"2036:19:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30292,"name":"uint256","nodeType":"ElementaryTypeName","src":"2036:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1929:130:96"},"returnParameters":{"id":30296,"nodeType":"ParameterList","parameters":[],"src":"2078:0:96"},"scope":30542,"src":"1908:172:96","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":30318,"nodeType":"Block","src":"2163:63:96","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":30313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30311,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30300,"src":"2204:8:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3936","id":30312,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2216:2:96","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"2204:14:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":30310,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2196:7:96","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":30309,"name":"uint160","nodeType":"ElementaryTypeName","src":"2196:7:96","typeDescriptions":{}}},"id":30314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2196:23:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":30308,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2188:7:96","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":30307,"name":"address","nodeType":"ElementaryTypeName","src":"2188:7:96","typeDescriptions":{}}},"id":30315,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2188:32:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":30306,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"2176:11:96","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}},"id":30316,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2176:45:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"functionReturnParameters":30305,"id":30317,"nodeType":"Return","src":"2169:52:96"}]},"functionSelector":"ab55daea","id":30319,"implemented":true,"kind":"function","modifiers":[],"name":"extractRiskModule","nameLocation":"2093:17:96","nodeType":"FunctionDefinition","parameters":{"id":30301,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30300,"mutability":"mutable","name":"policyId","nameLocation":"2119:8:96","nodeType":"VariableDeclaration","scope":30319,"src":"2111:16:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30299,"name":"uint256","nodeType":"ElementaryTypeName","src":"2111:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2110:18:96"},"returnParameters":{"id":30305,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30304,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30319,"src":"2150:11:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},"typeName":{"id":30303,"nodeType":"UserDefinedTypeName","pathNode":{"id":30302,"name":"IRiskModule","nameLocations":["2150:11:96"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"2150:11:96"},"referencedDeclaration":29295,"src":"2150:11:96","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},"visibility":"internal"}],"src":"2149:13:96"},"scope":30542,"src":"2084:142:96","stateMutability":"pure","virtual":false,"visibility":"public"},{"body":{"id":30369,"nodeType":"Block","src":"2312:268:96","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":30331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":30328,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30322,"src":"2326:6:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":30329,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2333:2:96","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"2326:9:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":30330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2339:1:96","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2326:14:96","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"506f6c696379206e6f7420666f756e64","id":30332,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2342:18:96","typeDescriptions":{"typeIdentifier":"t_stringliteral_42cb6adf2172fcd554545cbd0fc5a0dbec5675a8a159c6f6ca5b7e35bd632f79","typeString":"literal_string \"Policy not found\""},"value":"Policy not found"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_42cb6adf2172fcd554545cbd0fc5a0dbec5675a8a159c6f6ca5b7e35bd632f79","typeString":"literal_string \"Policy not found\""}],"id":30327,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2318:7:96","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":30333,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2318:43:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30334,"nodeType":"ExpressionStatement","src":"2318:43:96"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":30343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":30336,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30322,"src":"2375:6:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":30337,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2382:4:96","memberName":"hash","nodeType":"MemberAccess","referencedDeclaration":22760,"src":"2375:11:96","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_bytes32_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (bytes32)"}},"id":30338,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2375:13:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"baseExpression":{"id":30339,"name":"policyHashes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30126,"src":"2392:12:96","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":30342,"indexExpression":{"expression":{"id":30340,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30322,"src":"2405:6:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":30341,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2412:2:96","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"2405:9:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2392:23:96","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2375:40:96","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4861736820646f65736e2774206d61746368","id":30344,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2417:20:96","typeDescriptions":{"typeIdentifier":"t_stringliteral_dfce19cc5c9d715e1c1447fc4d85b7dd2f48c5fc48e7b8cdfb74121bafc6775d","typeString":"literal_string \"Hash doesn't match\""},"value":"Hash doesn't match"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_dfce19cc5c9d715e1c1447fc4d85b7dd2f48c5fc48e7b8cdfb74121bafc6775d","typeString":"literal_string \"Hash doesn't match\""}],"id":30335,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2367:7:96","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":30345,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2367:71:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30346,"nodeType":"ExpressionStatement","src":"2367:71:96"},{"expression":{"id":30351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"2444:26:96","subExpression":{"baseExpression":{"id":30347,"name":"policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30122,"src":"2451:8:96","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_PolicyData_$22256_storage_$","typeString":"mapping(uint256 => struct Policy.PolicyData storage ref)"}},"id":30350,"indexExpression":{"expression":{"id":30348,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30322,"src":"2460:6:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":30349,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2467:2:96","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"2460:9:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2451:19:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage","typeString":"struct Policy.PolicyData storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30352,"nodeType":"ExpressionStatement","src":"2444:26:96"},{"expression":{"id":30357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"2476:30:96","subExpression":{"baseExpression":{"id":30353,"name":"policyHashes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30126,"src":"2483:12:96","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":30356,"indexExpression":{"expression":{"id":30354,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30322,"src":"2496:6:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":30355,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2503:2:96","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"2496:9:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2483:23:96","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30358,"nodeType":"ExpressionStatement","src":"2476:30:96"},{"eventCall":{"arguments":[{"arguments":[{"expression":{"id":30361,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2544:3:96","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":30362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2548:6:96","memberName":"sender","nodeType":"MemberAccess","src":"2544:10:96","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":30360,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"2532:11:96","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}},"id":30363,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2532:23:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},{"expression":{"id":30364,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30322,"src":"2557:6:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":30365,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2564:2:96","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"2557:9:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":30366,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30324,"src":"2568:6:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":30359,"name":"PolicyResolved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29036,"src":"2517:14:96","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IRiskModule_$29295_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,uint256,uint256)"}},"id":30367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2517:58:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30368,"nodeType":"EmitStatement","src":"2512:63:96"}]},"id":30370,"implemented":true,"kind":"function","modifiers":[],"name":"_resolvePolicy","nameLocation":"2239:14:96","nodeType":"FunctionDefinition","parameters":{"id":30325,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30322,"mutability":"mutable","name":"policy","nameLocation":"2279:6:96","nodeType":"VariableDeclaration","scope":30370,"src":"2254:31:96","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":30321,"nodeType":"UserDefinedTypeName","pathNode":{"id":30320,"name":"Policy.PolicyData","nameLocations":["2254:6:96","2261:10:96"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"2254:17:96"},"referencedDeclaration":22256,"src":"2254:17:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":30324,"mutability":"mutable","name":"payout","nameLocation":"2295:6:96","nodeType":"VariableDeclaration","scope":30370,"src":"2287:14:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30323,"name":"uint256","nodeType":"ElementaryTypeName","src":"2287:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2253:49:96"},"returnParameters":{"id":30326,"nodeType":"ParameterList","parameters":[],"src":"2312:0:96"},"scope":30542,"src":"2230:350:96","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[29102],"body":{"id":30384,"nodeType":"Block","src":"2676:41:96","statements":[{"expression":{"arguments":[{"id":30380,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30373,"src":"2697:6:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"id":30381,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30375,"src":"2705:6:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":30379,"name":"_resolvePolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30370,"src":"2682:14:96","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$returns$__$","typeString":"function (struct Policy.PolicyData memory,uint256)"}},"id":30382,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2682:30:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30383,"nodeType":"ExpressionStatement","src":"2682:30:96"}]},"functionSelector":"bd644c56","id":30385,"implemented":true,"kind":"function","modifiers":[],"name":"resolvePolicy","nameLocation":"2593:13:96","nodeType":"FunctionDefinition","overrides":{"id":30377,"nodeType":"OverrideSpecifier","overrides":[],"src":"2667:8:96"},"parameters":{"id":30376,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30373,"mutability":"mutable","name":"policy","nameLocation":"2634:6:96","nodeType":"VariableDeclaration","scope":30385,"src":"2607:33:96","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":30372,"nodeType":"UserDefinedTypeName","pathNode":{"id":30371,"name":"Policy.PolicyData","nameLocations":["2607:6:96","2614:10:96"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"2607:17:96"},"referencedDeclaration":22256,"src":"2607:17:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":30375,"mutability":"mutable","name":"payout","nameLocation":"2650:6:96","nodeType":"VariableDeclaration","scope":30385,"src":"2642:14:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30374,"name":"uint256","nodeType":"ElementaryTypeName","src":"2642:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2606:51:96"},"returnParameters":{"id":30378,"nodeType":"ParameterList","parameters":[],"src":"2676:0:96"},"scope":30542,"src":"2584:133:96","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[29109],"body":{"id":30397,"nodeType":"Block","src":"2796:36:96","statements":[{"expression":{"arguments":[{"id":30393,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30388,"src":"2817:6:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"hexValue":"30","id":30394,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2825:1:96","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":30392,"name":"_resolvePolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30370,"src":"2802:14:96","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$returns$__$","typeString":"function (struct Policy.PolicyData memory,uint256)"}},"id":30395,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2802:25:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30396,"nodeType":"ExpressionStatement","src":"2802:25:96"}]},"functionSelector":"f720bbbf","id":30398,"implemented":true,"kind":"function","modifiers":[],"name":"expirePolicy","nameLocation":"2730:12:96","nodeType":"FunctionDefinition","overrides":{"id":30390,"nodeType":"OverrideSpecifier","overrides":[],"src":"2787:8:96"},"parameters":{"id":30389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30388,"mutability":"mutable","name":"policy","nameLocation":"2770:6:96","nodeType":"VariableDeclaration","scope":30398,"src":"2743:33:96","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":30387,"nodeType":"UserDefinedTypeName","pathNode":{"id":30386,"name":"Policy.PolicyData","nameLocations":["2743:6:96","2750:10:96"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"2743:17:96"},"referencedDeclaration":22256,"src":"2743:17:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"2742:35:96"},"returnParameters":{"id":30391,"nodeType":"ParameterList","parameters":[],"src":"2796:0:96"},"scope":30542,"src":"2721:111:96","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[29117],"body":{"id":30415,"nodeType":"Block","src":"2910:54:96","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":30413,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":30406,"name":"policyHashes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30126,"src":"2923:12:96","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":30408,"indexExpression":{"id":30407,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30400,"src":"2936:8:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2923:22:96","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":30411,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2957:1:96","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":30410,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2949:7:96","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":30409,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2949:7:96","typeDescriptions":{}}},"id":30412,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2949:10:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2923:36:96","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":30405,"id":30414,"nodeType":"Return","src":"2916:43:96"}]},"functionSelector":"82afd23b","id":30416,"implemented":true,"kind":"function","modifiers":[],"name":"isActive","nameLocation":"2845:8:96","nodeType":"FunctionDefinition","overrides":{"id":30402,"nodeType":"OverrideSpecifier","overrides":[],"src":"2886:8:96"},"parameters":{"id":30401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30400,"mutability":"mutable","name":"policyId","nameLocation":"2862:8:96","nodeType":"VariableDeclaration","scope":30416,"src":"2854:16:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30399,"name":"uint256","nodeType":"ElementaryTypeName","src":"2854:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2853:18:96"},"returnParameters":{"id":30405,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30404,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30416,"src":"2904:4:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":30403,"name":"bool","nodeType":"ElementaryTypeName","src":"2904:4:96","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2903:6:96"},"scope":30542,"src":"2836:128:96","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[29125],"body":{"id":30428,"nodeType":"Block","src":"3050:40:96","statements":[{"expression":{"baseExpression":{"id":30424,"name":"policyHashes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30126,"src":"3063:12:96","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":30426,"indexExpression":{"id":30425,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30418,"src":"3076:8:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3063:22:96","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":30423,"id":30427,"nodeType":"Return","src":"3056:29:96"}]},"functionSelector":"792da09e","id":30429,"implemented":true,"kind":"function","modifiers":[],"name":"getPolicyHash","nameLocation":"2977:13:96","nodeType":"FunctionDefinition","overrides":{"id":30420,"nodeType":"OverrideSpecifier","overrides":[],"src":"3023:8:96"},"parameters":{"id":30419,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30418,"mutability":"mutable","name":"policyId","nameLocation":"2999:8:96","nodeType":"VariableDeclaration","scope":30429,"src":"2991:16:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30417,"name":"uint256","nodeType":"ElementaryTypeName","src":"2991:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2990:18:96"},"returnParameters":{"id":30423,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30422,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30429,"src":"3041:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30421,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3041:7:96","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3040:9:96"},"scope":30542,"src":"2968:122:96","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[29136],"body":{"id":30444,"nodeType":"Block","src":"3161:44:96","statements":[{"expression":{"arguments":[{"hexValue":"4e6f7420496d706c656d656e746564206465706f736974","id":30441,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3174:25:96","typeDescriptions":{"typeIdentifier":"t_stringliteral_4056b1a890a2c3818b7771ad8e47567b7f58fbbd321bfc4356d4990f533b901a","typeString":"literal_string \"Not Implemented deposit\""},"value":"Not Implemented deposit"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_4056b1a890a2c3818b7771ad8e47567b7f58fbbd321bfc4356d4990f533b901a","typeString":"literal_string \"Not Implemented deposit\""}],"id":30440,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"3167:6:96","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":30442,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3167:33:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30443,"nodeType":"ExpressionStatement","src":"3167:33:96"}]},"functionSelector":"f45346dc","id":30445,"implemented":true,"kind":"function","modifiers":[],"name":"deposit","nameLocation":"3103:7:96","nodeType":"FunctionDefinition","overrides":{"id":30438,"nodeType":"OverrideSpecifier","overrides":[],"src":"3152:8:96"},"parameters":{"id":30437,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30432,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30445,"src":"3111:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":30431,"nodeType":"UserDefinedTypeName","pathNode":{"id":30430,"name":"IEToken","nameLocations":["3111:7:96"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"3111:7:96"},"referencedDeclaration":28869,"src":"3111:7:96","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":30434,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30445,"src":"3120:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30433,"name":"uint256","nodeType":"ElementaryTypeName","src":"3120:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":30436,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30445,"src":"3129:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":30435,"name":"address","nodeType":"ElementaryTypeName","src":"3129:7:96","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3110:27:96"},"returnParameters":{"id":30439,"nodeType":"ParameterList","parameters":[],"src":"3161:0:96"},"scope":30542,"src":"3094:111:96","stateMutability":"pure","virtual":false,"visibility":"external"},{"baseFunctions":[29155],"body":{"id":30468,"nodeType":"Block","src":"3320:44:96","statements":[{"expression":{"arguments":[{"hexValue":"4e6f7420496d706c656d656e746564206465706f736974","id":30465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3333:25:96","typeDescriptions":{"typeIdentifier":"t_stringliteral_4056b1a890a2c3818b7771ad8e47567b7f58fbbd321bfc4356d4990f533b901a","typeString":"literal_string \"Not Implemented deposit\""},"value":"Not Implemented deposit"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_4056b1a890a2c3818b7771ad8e47567b7f58fbbd321bfc4356d4990f533b901a","typeString":"literal_string \"Not Implemented deposit\""}],"id":30464,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"3326:6:96","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":30466,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3326:33:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30467,"nodeType":"ExpressionStatement","src":"3326:33:96"}]},"functionSelector":"de27010a","id":30469,"implemented":true,"kind":"function","modifiers":[],"name":"depositWithPermit","nameLocation":"3218:17:96","nodeType":"FunctionDefinition","overrides":{"id":30462,"nodeType":"OverrideSpecifier","overrides":[],"src":"3311:8:96"},"parameters":{"id":30461,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30448,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30469,"src":"3236:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":30447,"nodeType":"UserDefinedTypeName","pathNode":{"id":30446,"name":"IEToken","nameLocations":["3236:7:96"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"3236:7:96"},"referencedDeclaration":28869,"src":"3236:7:96","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":30450,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30469,"src":"3245:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30449,"name":"uint256","nodeType":"ElementaryTypeName","src":"3245:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":30452,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30469,"src":"3254:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":30451,"name":"address","nodeType":"ElementaryTypeName","src":"3254:7:96","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":30454,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30469,"src":"3263:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30453,"name":"uint256","nodeType":"ElementaryTypeName","src":"3263:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":30456,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30469,"src":"3272:5:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30455,"name":"uint8","nodeType":"ElementaryTypeName","src":"3272:5:96","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":30458,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30469,"src":"3279:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30457,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3279:7:96","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30460,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30469,"src":"3288:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30459,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3288:7:96","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3235:61:96"},"returnParameters":{"id":30463,"nodeType":"ParameterList","parameters":[],"src":"3320:0:96"},"scope":30542,"src":"3209:155:96","stateMutability":"pure","virtual":false,"visibility":"external"},{"baseFunctions":[29170],"body":{"id":30488,"nodeType":"Block","src":"3463:45:96","statements":[{"expression":{"arguments":[{"hexValue":"4e6f7420496d706c656d656e746564207769746864726177","id":30485,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3476:26:96","typeDescriptions":{"typeIdentifier":"t_stringliteral_d1c133ca691942c2b9c7b9bbdea503640377a82463f9986cfe69df5983647c2d","typeString":"literal_string \"Not Implemented withdraw\""},"value":"Not Implemented withdraw"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d1c133ca691942c2b9c7b9bbdea503640377a82463f9986cfe69df5983647c2d","typeString":"literal_string \"Not Implemented withdraw\""}],"id":30484,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"3469:6:96","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":30486,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3469:34:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30487,"nodeType":"ExpressionStatement","src":"3469:34:96"}]},"functionSelector":"dfcd412e","id":30489,"implemented":true,"kind":"function","modifiers":[],"name":"withdraw","nameLocation":"3377:8:96","nodeType":"FunctionDefinition","overrides":{"id":30480,"nodeType":"OverrideSpecifier","overrides":[],"src":"3436:8:96"},"parameters":{"id":30479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30472,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30489,"src":"3386:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"},"typeName":{"id":30471,"nodeType":"UserDefinedTypeName","pathNode":{"id":30470,"name":"IEToken","nameLocations":["3386:7:96"],"nodeType":"IdentifierPath","referencedDeclaration":28869,"src":"3386:7:96"},"referencedDeclaration":28869,"src":"3386:7:96","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$28869","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":30474,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30489,"src":"3395:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30473,"name":"uint256","nodeType":"ElementaryTypeName","src":"3395:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":30476,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30489,"src":"3404:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":30475,"name":"address","nodeType":"ElementaryTypeName","src":"3404:7:96","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":30478,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30489,"src":"3413:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":30477,"name":"address","nodeType":"ElementaryTypeName","src":"3413:7:96","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3385:36:96"},"returnParameters":{"id":30483,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30482,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30489,"src":"3454:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30481,"name":"uint256","nodeType":"ElementaryTypeName","src":"3454:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3453:9:96"},"scope":30542,"src":"3368:140:96","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":30540,"nodeType":"Block","src":"3775:253:96","statements":[{"assignments":[30510],"declarations":[{"constant":false,"id":30510,"mutability":"mutable","name":"policy","nameLocation":"3806:6:96","nodeType":"VariableDeclaration","scope":30540,"src":"3781:31:96","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":30509,"nodeType":"UserDefinedTypeName","pathNode":{"id":30508,"name":"Policy.PolicyData","nameLocations":["3781:6:96","3788:10:96"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"3781:17:96"},"referencedDeclaration":22256,"src":"3781:17:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"id":30529,"initialValue":{"arguments":[{"id":30513,"name":"rmParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30493,"src":"3840:8:96","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}},{"id":30514,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30495,"src":"3856:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":30515,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30497,"src":"3871:6:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":30516,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30499,"src":"3885:8:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":30517,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30501,"src":"3901:10:96","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"condition":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":30520,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30518,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30503,"src":"3919:5:96","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":30519,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3928:1:96","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3919:10:96","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":30526,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30503,"src":"3958:5:96","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"id":30527,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3919:44:96","trueExpression":{"arguments":[{"expression":{"id":30523,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"3939:5:96","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":30524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3945:9:96","memberName":"timestamp","nodeType":"MemberAccess","src":"3939:15:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":30522,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3932:6:96","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":30521,"name":"uint40","nodeType":"ElementaryTypeName","src":"3932:6:96","typeDescriptions":{}}},"id":30525,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3932:23:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"}],"expression":{"id":30511,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"3815:6:96","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":30512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3822:10:96","memberName":"initialize","nodeType":"MemberAccess","referencedDeclaration":22611,"src":"3815:17:96","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Params_$22230_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint40_$returns$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.Params memory,uint256,uint256,uint256,uint40,uint40) pure returns (struct Policy.PolicyData memory)"}},"id":30528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3815:154:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"nodeType":"VariableDeclarationStatement","src":"3781:188:96"},{"eventCall":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"30","id":30534,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4011:1:96","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":30533,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4003:7:96","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":30532,"name":"address","nodeType":"ElementaryTypeName","src":"4003:7:96","typeDescriptions":{}}},"id":30535,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4003:10:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":30531,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"3991:11:96","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}},"id":30536,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3991:23:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"}},{"id":30537,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30510,"src":"4016:6:96","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$29295","typeString":"contract IRiskModule"},{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":30530,"name":"NewPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29002,"src":"3981:9:96","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IRiskModule_$29295_$_t_struct$_PolicyData_$22256_memory_ptr_$returns$__$","typeString":"function (contract IRiskModule,struct Policy.PolicyData memory)"}},"id":30538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3981:42:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30539,"nodeType":"EmitStatement","src":"3976:47:96"}]},"documentation":{"id":30490,"nodeType":"StructuredDocumentation","src":"3512:75:96","text":" @dev Simple passthrough method for testing Policy.initialize"},"functionSelector":"0c0aab9d","id":30541,"implemented":true,"kind":"function","modifiers":[],"name":"initializeAndEmitPolicy","nameLocation":"3599:23:96","nodeType":"FunctionDefinition","parameters":{"id":30504,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30493,"mutability":"mutable","name":"rmParams","nameLocation":"3649:8:96","nodeType":"VariableDeclaration","scope":30541,"src":"3628:29:96","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":30492,"nodeType":"UserDefinedTypeName","pathNode":{"id":30491,"name":"Policy.Params","nameLocations":["3628:6:96","3635:6:96"],"nodeType":"IdentifierPath","referencedDeclaration":22230,"src":"3628:13:96"},"referencedDeclaration":22230,"src":"3628:13:96","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"},{"constant":false,"id":30495,"mutability":"mutable","name":"premium","nameLocation":"3671:7:96","nodeType":"VariableDeclaration","scope":30541,"src":"3663:15:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30494,"name":"uint256","nodeType":"ElementaryTypeName","src":"3663:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":30497,"mutability":"mutable","name":"payout","nameLocation":"3692:6:96","nodeType":"VariableDeclaration","scope":30541,"src":"3684:14:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30496,"name":"uint256","nodeType":"ElementaryTypeName","src":"3684:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":30499,"mutability":"mutable","name":"lossProb","nameLocation":"3712:8:96","nodeType":"VariableDeclaration","scope":30541,"src":"3704:16:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30498,"name":"uint256","nodeType":"ElementaryTypeName","src":"3704:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":30501,"mutability":"mutable","name":"expiration","nameLocation":"3733:10:96","nodeType":"VariableDeclaration","scope":30541,"src":"3726:17:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":30500,"name":"uint40","nodeType":"ElementaryTypeName","src":"3726:6:96","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":30503,"mutability":"mutable","name":"start","nameLocation":"3756:5:96","nodeType":"VariableDeclaration","scope":30541,"src":"3749:12:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":30502,"name":"uint40","nodeType":"ElementaryTypeName","src":"3749:6:96","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"3622:143:96"},"returnParameters":{"id":30505,"nodeType":"ParameterList","parameters":[],"src":"3775:0:96"},"scope":30542,"src":"3590:438:96","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":30578,"src":"420:3610:96","usedErrors":[22281,22288,22294],"usedEvents":[29002,29012,29026,29036]},{"abstract":false,"baseContracts":[{"baseName":{"id":30544,"name":"ForwardProxy","nameLocations":["4296:12:96"],"nodeType":"IdentifierPath","referencedDeclaration":29412,"src":"4296:12:96"},"id":30545,"nodeType":"InheritanceSpecifier","src":"4296:12:96"}],"canonicalName":"PolicyPoolMockForward","contractDependencies":[],"contractKind":"contract","documentation":{"id":30543,"nodeType":"StructuredDocumentation","src":"4032:229:96","text":" @title PolicyPoolMockForward\n @dev PolicyPool that forwards fallback calls to another contract. Used to simulate calls to EToken\n      and other contracts that have functions that can be called only from PolicyPool"},"fullyImplemented":true,"id":30577,"linearizedBaseContracts":[30577,29412,6940],"name":"PolicyPoolMockForward","nameLocation":"4271:21:96","nodeType":"ContractDefinition","nodes":[{"constant":true,"functionSelector":"098d3228","id":30548,"mutability":"constant","name":"MAX_INT","nameLocation":"4337:7:96","nodeType":"VariableDeclaration","scope":30577,"src":"4313:100:96","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30546,"name":"uint256","nodeType":"ElementaryTypeName","src":"4313:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"307866666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666","id":30547,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4347:66:96","typeDescriptions":{"typeIdentifier":"t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1","typeString":"int_const 1157...(70 digits omitted)...9935"},"value":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"},"visibility":"public"},{"constant":false,"id":30551,"mutability":"mutable","name":"_currency","nameLocation":"4442:9:96","nodeType":"VariableDeclaration","scope":30577,"src":"4418:33:96","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"},"typeName":{"id":30550,"nodeType":"UserDefinedTypeName","pathNode":{"id":30549,"name":"IERC20Metadata","nameLocations":["4418:14:96"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"4418:14:96"},"referencedDeclaration":8863,"src":"4418:14:96","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"visibility":"internal"},{"body":{"id":30566,"nodeType":"Block","src":"4537:32:96","statements":[{"expression":{"id":30564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":30562,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30551,"src":"4543:9:96","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":30563,"name":"currency_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30556,"src":"4555:9:96","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"src":"4543:21:96","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":30565,"nodeType":"ExpressionStatement","src":"4543:21:96"}]},"id":30567,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":30559,"name":"forwardTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30553,"src":"4526:9:96","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":30560,"kind":"baseConstructorSpecifier","modifierName":{"id":30558,"name":"ForwardProxy","nameLocations":["4513:12:96"],"nodeType":"IdentifierPath","referencedDeclaration":29412,"src":"4513:12:96"},"nodeType":"ModifierInvocation","src":"4513:23:96"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":30557,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30553,"mutability":"mutable","name":"forwardTo","nameLocation":"4476:9:96","nodeType":"VariableDeclaration","scope":30567,"src":"4468:17:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":30552,"name":"address","nodeType":"ElementaryTypeName","src":"4468:7:96","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":30556,"mutability":"mutable","name":"currency_","nameLocation":"4502:9:96","nodeType":"VariableDeclaration","scope":30567,"src":"4487:24:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"},"typeName":{"id":30555,"nodeType":"UserDefinedTypeName","pathNode":{"id":30554,"name":"IERC20Metadata","nameLocations":["4487:14:96"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"4487:14:96"},"referencedDeclaration":8863,"src":"4487:14:96","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"src":"4467:45:96"},"returnParameters":{"id":30561,"nodeType":"ParameterList","parameters":[],"src":"4537:0:96"},"scope":30577,"src":"4456:113:96","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":30575,"nodeType":"Block","src":"4632:27:96","statements":[{"expression":{"id":30573,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30551,"src":"4645:9:96","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"functionReturnParameters":30572,"id":30574,"nodeType":"Return","src":"4638:16:96"}]},"functionSelector":"e5a6b10f","id":30576,"implemented":true,"kind":"function","modifiers":[],"name":"currency","nameLocation":"4582:8:96","nodeType":"FunctionDefinition","parameters":{"id":30568,"nodeType":"ParameterList","parameters":[],"src":"4590:2:96"},"returnParameters":{"id":30572,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30571,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30576,"src":"4616:14:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"},"typeName":{"id":30570,"nodeType":"UserDefinedTypeName","pathNode":{"id":30569,"name":"IERC20Metadata","nameLocations":["4616:14:96"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"4616:14:96"},"referencedDeclaration":8863,"src":"4616:14:96","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"src":"4615:16:96"},"scope":30577,"src":"4573:86:96","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":30578,"src":"4262:399:96","usedErrors":[],"usedEvents":[]}],"src":"39:4623:96"},"id":96},"contracts/mocks/ReserveMock.sol":{"ast":{"absolutePath":"contracts/mocks/ReserveMock.sol","exportedSymbols":{"IERC20Metadata":[8863],"IERC4626":[6400],"IPolicyPool":[29171],"Reserve":[28015],"ReserveMock":[30699],"SafeERC20":[9354]},"id":30700,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":30579,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:97"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":30581,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30700,"sourceUnit":9355,"src":"65:82:97","symbolAliases":[{"foreign":{"id":30580,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9354,"src":"73:9:97","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":30583,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30700,"sourceUnit":8864,"src":"148:97:97","symbolAliases":[{"foreign":{"id":30582,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8863,"src":"156:14:97","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","file":"@openzeppelin/contracts/interfaces/IERC4626.sol","id":30585,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30700,"sourceUnit":6401,"src":"246:73:97","symbolAliases":[{"foreign":{"id":30584,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6400,"src":"254:8:97","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyPool.sol","file":"../interfaces/IPolicyPool.sol","id":30587,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30700,"sourceUnit":29172,"src":"320:58:97","symbolAliases":[{"foreign":{"id":30586,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"328:11:97","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/Reserve.sol","file":"../Reserve.sol","id":30589,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30700,"sourceUnit":28016,"src":"379:39:97","symbolAliases":[{"foreign":{"id":30588,"name":"Reserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28015,"src":"387:7:97","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":30591,"name":"Reserve","nameLocations":["1048:7:97"],"nodeType":"IdentifierPath","referencedDeclaration":28015,"src":"1048:7:97"},"id":30592,"nodeType":"InheritanceSpecifier","src":"1048:7:97"}],"canonicalName":"ReserveMock","contractDependencies":[],"contractKind":"contract","documentation":{"id":30590,"nodeType":"StructuredDocumentation","src":"420:603:97","text":" @title Ensuro Premiums Account\n @dev This contract holds the pure premiums of a set of risk modules. The pure premiums is the part of the premium\n that is expected to cover the losses. The contract keeps track of the pure premiums of the active policies\n (_activePurePremiums) and the surplus or deficit generated by the finalized policies (pure premiums collected -\n losses).\n Collaborates with a junior {EToken} and a senior {EToken} that act as lenders when the premiums aren't enough to\n cover the losses.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":30699,"linearizedBaseContracts":[30699,28015,25609,29188,14272,7384,6435,7218],"name":"ReserveMock","nameLocation":"1033:11:97","nodeType":"ContractDefinition","nodes":[{"global":false,"id":30596,"libraryName":{"id":30593,"name":"SafeERC20","nameLocations":["1066:9:97"],"nodeType":"IdentifierPath","referencedDeclaration":9354,"src":"1066:9:97"},"nodeType":"UsingForDirective","src":"1060:35:97","typeName":{"id":30595,"nodeType":"UserDefinedTypeName","pathNode":{"id":30594,"name":"IERC20Metadata","nameLocations":["1080:14:97"],"nodeType":"IdentifierPath","referencedDeclaration":8863,"src":"1080:14:97"},"referencedDeclaration":8863,"src":"1080:14:97","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}}},{"constant":false,"id":30599,"mutability":"mutable","name":"_yieldVault","nameLocation":"1117:11:97","nodeType":"VariableDeclaration","scope":30699,"src":"1099:29:97","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":30598,"nodeType":"UserDefinedTypeName","pathNode":{"id":30597,"name":"IERC4626","nameLocations":["1099:8:97"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"1099:8:97"},"referencedDeclaration":6400,"src":"1099:8:97","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":30601,"mutability":"mutable","name":"_totalEarnings","nameLocation":"1148:14:97","nodeType":"VariableDeclaration","scope":30699,"src":"1132:30:97","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":30600,"name":"int256","nodeType":"ElementaryTypeName","src":"1132:6:97","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"body":{"id":30611,"nodeType":"Block","src":"1359:2:97","statements":[]},"documentation":{"id":30602,"nodeType":"StructuredDocumentation","src":"1250:48:97","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":30612,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":30608,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30605,"src":"1346:11:97","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}}],"id":30609,"kind":"baseConstructorSpecifier","modifierName":{"id":30607,"name":"Reserve","nameLocations":["1338:7:97"],"nodeType":"IdentifierPath","referencedDeclaration":28015,"src":"1338:7:97"},"nodeType":"ModifierInvocation","src":"1338:20:97"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":30606,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30605,"mutability":"mutable","name":"policyPool_","nameLocation":"1325:11:97","nodeType":"VariableDeclaration","scope":30612,"src":"1313:23:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"typeName":{"id":30604,"nodeType":"UserDefinedTypeName","pathNode":{"id":30603,"name":"IPolicyPool","nameLocations":["1313:11:97"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"1313:11:97"},"referencedDeclaration":29171,"src":"1313:11:97","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"1312:25:97"},"returnParameters":{"id":30610,"nodeType":"ParameterList","parameters":[],"src":"1359:0:97"},"scope":30699,"src":"1301:60:97","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":30621,"nodeType":"Block","src":"1460:27:97","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":30618,"name":"__Reserve_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27444,"src":"1466:14:97","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":30619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1466:16:97","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30620,"nodeType":"ExpressionStatement","src":"1466:16:97"}]},"documentation":{"id":30613,"nodeType":"StructuredDocumentation","src":"1365:51:97","text":" @dev Initializes the PremiumsAccount"},"functionSelector":"8129fc1c","id":30622,"implemented":true,"kind":"function","modifiers":[{"id":30616,"kind":"modifierInvocation","modifierName":{"id":30615,"name":"initializer","nameLocations":["1448:11:97"],"nodeType":"IdentifierPath","referencedDeclaration":7058,"src":"1448:11:97"},"nodeType":"ModifierInvocation","src":"1448:11:97"}],"name":"initialize","nameLocation":"1428:10:97","nodeType":"FunctionDefinition","parameters":{"id":30614,"nodeType":"ParameterList","parameters":[],"src":"1438:2:97"},"returnParameters":{"id":30617,"nodeType":"ParameterList","parameters":[],"src":"1460:0:97"},"scope":30699,"src":"1419:68:97","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[27525],"body":{"id":30631,"nodeType":"Block","src":"1553:29:97","statements":[{"expression":{"id":30629,"name":"_yieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30599,"src":"1566:11:97","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"functionReturnParameters":30628,"id":30630,"nodeType":"Return","src":"1559:18:97"}]},"functionSelector":"a7f8a5e2","id":30632,"implemented":true,"kind":"function","modifiers":[],"name":"yieldVault","nameLocation":"1500:10:97","nodeType":"FunctionDefinition","overrides":{"id":30624,"nodeType":"OverrideSpecifier","overrides":[],"src":"1525:8:97"},"parameters":{"id":30623,"nodeType":"ParameterList","parameters":[],"src":"1510:2:97"},"returnParameters":{"id":30628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30627,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30632,"src":"1543:8:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":30626,"nodeType":"UserDefinedTypeName","pathNode":{"id":30625,"name":"IERC4626","nameLocations":["1543:8:97"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"1543:8:97"},"referencedDeclaration":6400,"src":"1543:8:97","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"1542:10:97"},"scope":30699,"src":"1491:91:97","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[27532],"body":{"id":30643,"nodeType":"Block","src":"1644:30:97","statements":[{"expression":{"id":30641,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":30639,"name":"_yieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30599,"src":"1650:11:97","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":30640,"name":"newYV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30635,"src":"1664:5:97","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"src":"1650:19:97","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"id":30642,"nodeType":"ExpressionStatement","src":"1650:19:97"}]},"id":30644,"implemented":true,"kind":"function","modifiers":[],"name":"_setYieldVault","nameLocation":"1595:14:97","nodeType":"FunctionDefinition","overrides":{"id":30637,"nodeType":"OverrideSpecifier","overrides":[],"src":"1635:8:97"},"parameters":{"id":30636,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30635,"mutability":"mutable","name":"newYV","nameLocation":"1619:5:97","nodeType":"VariableDeclaration","scope":30644,"src":"1610:14:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"},"typeName":{"id":30634,"nodeType":"UserDefinedTypeName","pathNode":{"id":30633,"name":"IERC4626","nameLocations":["1610:8:97"],"nodeType":"IdentifierPath","referencedDeclaration":6400,"src":"1610:8:97"},"referencedDeclaration":6400,"src":"1610:8:97","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$6400","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"1609:16:97"},"returnParameters":{"id":30638,"nodeType":"ParameterList","parameters":[],"src":"1644:0:97"},"scope":30699,"src":"1586:88:97","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[27552],"body":{"id":30661,"nodeType":"Block","src":"2191:89:97","statements":[{"expression":{"id":30653,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":30651,"name":"_totalEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30601,"src":"2197:14:97","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":30652,"name":"earningsOrLosses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30647,"src":"2215:16:97","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"2197:34:97","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":30654,"nodeType":"ExpressionStatement","src":"2197:34:97"},{"expression":{"arguments":[{"id":30658,"name":"earningsOrLosses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30647,"src":"2258:16:97","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":30655,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2237:5:97","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ReserveMock_$30699_$","typeString":"type(contract super ReserveMock)"}},"id":30657,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2243:14:97","memberName":"_yieldEarnings","nodeType":"MemberAccess","referencedDeclaration":27552,"src":"2237:20:97","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":30659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2237:38:97","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30660,"nodeType":"ExpressionStatement","src":"2237:38:97"}]},"documentation":{"id":30645,"nodeType":"StructuredDocumentation","src":"1678:443:97","text":" @dev This is called by the {Reserve} base class to record the earnings generated by the asset management.\n @param earningsOrLosses Indicates the amount earned since last time earnings where recorded.\n - If positive, repays the loans and accumulates the rest in the surplus.\n - If negative (losses) substracts it from surplus. It never can exceed _maxDeficit and doesn't takes\n   loans to cover asset losses."},"id":30662,"implemented":true,"kind":"function","modifiers":[],"name":"_yieldEarnings","nameLocation":"2133:14:97","nodeType":"FunctionDefinition","overrides":{"id":30649,"nodeType":"OverrideSpecifier","overrides":[],"src":"2182:8:97"},"parameters":{"id":30648,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30647,"mutability":"mutable","name":"earningsOrLosses","nameLocation":"2155:16:97","nodeType":"VariableDeclaration","scope":30662,"src":"2148:23:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":30646,"name":"int256","nodeType":"ElementaryTypeName","src":"2148:6:97","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"2147:25:97"},"returnParameters":{"id":30650,"nodeType":"ParameterList","parameters":[],"src":"2191:0:97"},"scope":30699,"src":"2124:156:97","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":30679,"nodeType":"Block","src":"2327:73:97","statements":[{"expression":{"arguments":[{"expression":{"id":30670,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2361:3:97","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":30671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2365:6:97","memberName":"sender","nodeType":"MemberAccess","src":"2361:10:97","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":30674,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2381:4:97","typeDescriptions":{"typeIdentifier":"t_contract$_ReserveMock_$30699","typeString":"contract ReserveMock"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ReserveMock_$30699","typeString":"contract ReserveMock"}],"id":30673,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2373:7:97","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":30672,"name":"address","nodeType":"ElementaryTypeName","src":"2373:7:97","typeDescriptions":{}}},"id":30675,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2373:13:97","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":30676,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30664,"src":"2388:6:97","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":30667,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25603,"src":"2333:8:97","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$8863_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":30668,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2333:10:97","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$8863","typeString":"contract IERC20Metadata"}},"id":30669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2344:16:97","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":8979,"src":"2333:27:97","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$7977_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$7977_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":30677,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2333:62:97","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30678,"nodeType":"ExpressionStatement","src":"2333:62:97"}]},"functionSelector":"d0bc1a88","id":30680,"implemented":true,"kind":"function","modifiers":[],"name":"addMoney","nameLocation":"2293:8:97","nodeType":"FunctionDefinition","parameters":{"id":30665,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30664,"mutability":"mutable","name":"amount","nameLocation":"2310:6:97","nodeType":"VariableDeclaration","scope":30680,"src":"2302:14:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30663,"name":"uint256","nodeType":"ElementaryTypeName","src":"2302:7:97","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2301:16:97"},"returnParameters":{"id":30666,"nodeType":"ParameterList","parameters":[],"src":"2327:0:97"},"scope":30699,"src":"2284:116:97","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":30692,"nodeType":"Block","src":"2470:43:97","statements":[{"expression":{"arguments":[{"id":30688,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30682,"src":"2488:11:97","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":30689,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30684,"src":"2501:6:97","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":30687,"name":"_transferTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27518,"src":"2476:11:97","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":30690,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2476:32:97","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30691,"nodeType":"ExpressionStatement","src":"2476:32:97"}]},"functionSelector":"2ccb1b30","id":30693,"implemented":true,"kind":"function","modifiers":[],"name":"transferTo","nameLocation":"2413:10:97","nodeType":"FunctionDefinition","parameters":{"id":30685,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30682,"mutability":"mutable","name":"destination","nameLocation":"2432:11:97","nodeType":"VariableDeclaration","scope":30693,"src":"2424:19:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":30681,"name":"address","nodeType":"ElementaryTypeName","src":"2424:7:97","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":30684,"mutability":"mutable","name":"amount","nameLocation":"2453:6:97","nodeType":"VariableDeclaration","scope":30693,"src":"2445:14:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30683,"name":"uint256","nodeType":"ElementaryTypeName","src":"2445:7:97","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2423:37:97"},"returnParameters":{"id":30686,"nodeType":"ParameterList","parameters":[],"src":"2470:0:97"},"scope":30699,"src":"2404:109:97","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"constant":false,"documentation":{"id":30694,"nodeType":"StructuredDocumentation","src":"2517:246:97","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":30698,"mutability":"mutable","name":"__gap","nameLocation":"2786:5:97","nodeType":"VariableDeclaration","scope":30699,"src":"2766:25:97","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$48_storage","typeString":"uint256[48]"},"typeName":{"baseType":{"id":30695,"name":"uint256","nodeType":"ElementaryTypeName","src":"2766:7:97","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":30697,"length":{"hexValue":"3438","id":30696,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2774:2:97","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"nodeType":"ArrayTypeName","src":"2766:11:97","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$48_storage_ptr","typeString":"uint256[48]"}},"visibility":"private"}],"scope":30700,"src":"1024:1770:97","usedErrors":[6630,6643,6967,6970,7241,7246,8911,9606,10740,25476,25478,25480,27387,27394,27399],"usedEvents":[6213,6975,27410,27418,27423]}],"src":"39:2756:97"},"id":97},"contracts/mocks/RiskModuleMock.sol":{"ast":{"absolutePath":"contracts/mocks/RiskModuleMock.sol","exportedSymbols":{"ForwardProxy":[29412],"IPolicyPool":[29171],"IPolicyPoolComponent":[29188],"IPremiumsAccount":[29276],"IRiskModule":[29295],"RiskModuleMock":[30796]},"id":30797,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":30701,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:98"},{"absolutePath":"contracts/interfaces/IPolicyPool.sol","file":"../interfaces/IPolicyPool.sol","id":30703,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30797,"sourceUnit":29172,"src":"65:58:98","symbolAliases":[{"foreign":{"id":30702,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"73:11:98","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPremiumsAccount.sol","file":"../interfaces/IPremiumsAccount.sol","id":30705,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30797,"sourceUnit":29277,"src":"124:68:98","symbolAliases":[{"foreign":{"id":30704,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29276,"src":"132:16:98","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IRiskModule.sol","file":"../interfaces/IRiskModule.sol","id":30707,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30797,"sourceUnit":29296,"src":"193:58:98","symbolAliases":[{"foreign":{"id":30706,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"201:11:98","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IPolicyPoolComponent.sol","file":"../interfaces/IPolicyPoolComponent.sol","id":30709,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30797,"sourceUnit":29189,"src":"252:76:98","symbolAliases":[{"foreign":{"id":30708,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29188,"src":"260:20:98","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/mocks/ForwardProxy.sol","file":"./ForwardProxy.sol","id":30711,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":30797,"sourceUnit":29413,"src":"329:48:98","symbolAliases":[{"foreign":{"id":30710,"name":"ForwardProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29412,"src":"337:12:98","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":30712,"name":"ForwardProxy","nameLocations":["406:12:98"],"nodeType":"IdentifierPath","referencedDeclaration":29412,"src":"406:12:98"},"id":30713,"nodeType":"InheritanceSpecifier","src":"406:12:98"},{"baseName":{"id":30714,"name":"IRiskModule","nameLocations":["420:11:98"],"nodeType":"IdentifierPath","referencedDeclaration":29295,"src":"420:11:98"},"id":30715,"nodeType":"InheritanceSpecifier","src":"420:11:98"},{"baseName":{"id":30716,"name":"IPolicyPoolComponent","nameLocations":["433:20:98"],"nodeType":"IdentifierPath","referencedDeclaration":29188,"src":"433:20:98"},"id":30717,"nodeType":"InheritanceSpecifier","src":"433:20:98"}],"canonicalName":"RiskModuleMock","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":30796,"linearizedBaseContracts":[30796,29188,14272,29295,29412,6940],"name":"RiskModuleMock","nameLocation":"388:14:98","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":30720,"mutability":"immutable","name":"_premiumsAccount","nameLocation":"494:16:98","nodeType":"VariableDeclaration","scope":30796,"src":"458:52:98","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"},"typeName":{"id":30719,"nodeType":"UserDefinedTypeName","pathNode":{"id":30718,"name":"IPremiumsAccount","nameLocations":["458:16:98"],"nodeType":"IdentifierPath","referencedDeclaration":29276,"src":"458:16:98"},"referencedDeclaration":29276,"src":"458:16:98","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"visibility":"internal"},{"constant":false,"id":30722,"mutability":"immutable","name":"_wallet","nameLocation":"541:7:98","nodeType":"VariableDeclaration","scope":30796,"src":"514:34:98","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":30721,"name":"address","nodeType":"ElementaryTypeName","src":"514:7:98","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"body":{"id":30747,"nodeType":"Block","src":"693:69:98","statements":[{"expression":{"id":30741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":30739,"name":"_premiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30720,"src":"699:16:98","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":30740,"name":"premiumsAccount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30728,"src":"718:16:98","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"src":"699:35:98","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"id":30742,"nodeType":"ExpressionStatement","src":"699:35:98"},{"expression":{"id":30745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":30743,"name":"_wallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30722,"src":"740:7:98","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":30744,"name":"wallet_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30730,"src":"750:7:98","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"740:17:98","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":30746,"nodeType":"ExpressionStatement","src":"740:17:98"}]},"id":30748,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"arguments":[{"id":30735,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30725,"src":"679:11:98","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}],"id":30734,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"671:7:98","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":30733,"name":"address","nodeType":"ElementaryTypeName","src":"671:7:98","typeDescriptions":{}}},"id":30736,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"671:20:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":30737,"kind":"baseConstructorSpecifier","modifierName":{"id":30732,"name":"ForwardProxy","nameLocations":["658:12:98"],"nodeType":"IdentifierPath","referencedDeclaration":29412,"src":"658:12:98"},"nodeType":"ModifierInvocation","src":"658:34:98"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":30731,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30725,"mutability":"mutable","name":"policyPool_","nameLocation":"582:11:98","nodeType":"VariableDeclaration","scope":30748,"src":"570:23:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"typeName":{"id":30724,"nodeType":"UserDefinedTypeName","pathNode":{"id":30723,"name":"IPolicyPool","nameLocations":["570:11:98"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"570:11:98"},"referencedDeclaration":29171,"src":"570:11:98","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"visibility":"internal"},{"constant":false,"id":30728,"mutability":"mutable","name":"premiumsAccount_","nameLocation":"616:16:98","nodeType":"VariableDeclaration","scope":30748,"src":"599:33:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"},"typeName":{"id":30727,"nodeType":"UserDefinedTypeName","pathNode":{"id":30726,"name":"IPremiumsAccount","nameLocations":["599:16:98"],"nodeType":"IdentifierPath","referencedDeclaration":29276,"src":"599:16:98"},"referencedDeclaration":29276,"src":"599:16:98","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"visibility":"internal"},{"constant":false,"id":30730,"mutability":"mutable","name":"wallet_","nameLocation":"646:7:98","nodeType":"VariableDeclaration","scope":30748,"src":"638:15:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":30729,"name":"address","nodeType":"ElementaryTypeName","src":"638:7:98","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"564:93:98"},"returnParameters":{"id":30738,"nodeType":"ParameterList","parameters":[],"src":"693:0:98"},"scope":30796,"src":"553:209:98","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[29187],"body":{"id":30759,"nodeType":"Block","src":"831:41:98","statements":[{"expression":{"arguments":[{"id":30756,"name":"_forwardTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29372,"src":"856:10:98","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":30755,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29171,"src":"844:11:98","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPool_$29171_$","typeString":"type(contract IPolicyPool)"}},"id":30757,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"844:23:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"functionReturnParameters":30754,"id":30758,"nodeType":"Return","src":"837:30:98"}]},"functionSelector":"4d15eb03","id":30760,"implemented":true,"kind":"function","modifiers":[],"name":"policyPool","nameLocation":"775:10:98","nodeType":"FunctionDefinition","overrides":{"id":30750,"nodeType":"OverrideSpecifier","overrides":[],"src":"800:8:98"},"parameters":{"id":30749,"nodeType":"ParameterList","parameters":[],"src":"785:2:98"},"returnParameters":{"id":30754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30753,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30760,"src":"818:11:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"},"typeName":{"id":30752,"nodeType":"UserDefinedTypeName","pathNode":{"id":30751,"name":"IPolicyPool","nameLocations":["818:11:98"],"nodeType":"IdentifierPath","referencedDeclaration":29171,"src":"818:11:98"},"referencedDeclaration":29171,"src":"818:11:98","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$29171","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"817:13:98"},"scope":30796,"src":"766:106:98","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[29294],"body":{"id":30769,"nodeType":"Block","src":"953:34:98","statements":[{"expression":{"id":30767,"name":"_premiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30720,"src":"966:16:98","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"functionReturnParameters":30766,"id":30768,"nodeType":"Return","src":"959:23:98"}]},"functionSelector":"73a952e8","id":30770,"implemented":true,"kind":"function","modifiers":[],"name":"premiumsAccount","nameLocation":"885:15:98","nodeType":"FunctionDefinition","overrides":{"id":30762,"nodeType":"OverrideSpecifier","overrides":[],"src":"917:8:98"},"parameters":{"id":30761,"nodeType":"ParameterList","parameters":[],"src":"900:2:98"},"returnParameters":{"id":30766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30765,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30770,"src":"935:16:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"},"typeName":{"id":30764,"nodeType":"UserDefinedTypeName","pathNode":{"id":30763,"name":"IPremiumsAccount","nameLocations":["935:16:98"],"nodeType":"IdentifierPath","referencedDeclaration":29276,"src":"935:16:98"},"referencedDeclaration":29276,"src":"935:16:98","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$29276","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"src":"934:18:98"},"scope":30796,"src":"876:111:98","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[29287],"body":{"id":30778,"nodeType":"Block","src":"1134:25:98","statements":[{"expression":{"id":30776,"name":"_wallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30722,"src":"1147:7:98","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":30775,"id":30777,"nodeType":"Return","src":"1140:14:98"}]},"documentation":{"id":30771,"nodeType":"StructuredDocumentation","src":"991:90:98","text":" @dev Returns the address of the partner that receives the partnerCommission"},"functionSelector":"521eb273","id":30779,"implemented":true,"kind":"function","modifiers":[],"name":"wallet","nameLocation":"1093:6:98","nodeType":"FunctionDefinition","parameters":{"id":30772,"nodeType":"ParameterList","parameters":[],"src":"1099:2:98"},"returnParameters":{"id":30775,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30774,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30779,"src":"1125:7:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":30773,"name":"address","nodeType":"ElementaryTypeName","src":"1125:7:98","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1124:9:98"},"scope":30796,"src":"1084:75:98","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[14271],"body":{"id":30794,"nodeType":"Block","src":"1254:62:98","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":30792,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30787,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30781,"src":"1267:11:98","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":30789,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29295,"src":"1287:11:98","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$29295_$","typeString":"type(contract IRiskModule)"}],"id":30788,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1282:4:98","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":30790,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1282:17:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IRiskModule_$29295","typeString":"type(contract IRiskModule)"}},"id":30791,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1300:11:98","memberName":"interfaceId","nodeType":"MemberAccess","src":"1282:29:98","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1267:44:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":30786,"id":30793,"nodeType":"Return","src":"1260:51:98"}]},"functionSelector":"01ffc9a7","id":30795,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"1172:17:98","nodeType":"FunctionDefinition","overrides":{"id":30783,"nodeType":"OverrideSpecifier","overrides":[],"src":"1230:8:98"},"parameters":{"id":30782,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30781,"mutability":"mutable","name":"interfaceId","nameLocation":"1197:11:98","nodeType":"VariableDeclaration","scope":30795,"src":"1190:18:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":30780,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1190:6:98","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1189:20:98"},"returnParameters":{"id":30786,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30785,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":30795,"src":"1248:4:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":30784,"name":"bool","nodeType":"ElementaryTypeName","src":"1248:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1247:6:98"},"scope":30796,"src":"1163:153:98","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":30797,"src":"379:939:98","usedErrors":[],"usedEvents":[]}],"src":"39:1280:98"},"id":98},"contracts/underwriters/FullSignedUW.sol":{"ast":{"absolutePath":"contracts/underwriters/FullSignedUW.sol","exportedSymbols":{"AccessManagedProxy":[330],"ECDSA":[13697],"FullSignedUW":[31231],"IUnderwriter":[29363],"MessageHashUtils":[14050],"Policy":[22826]},"id":31232,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":30798,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:99"},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","id":30800,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":31232,"sourceUnit":13698,"src":"64:75:99","symbolAliases":[{"foreign":{"id":30799,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13697,"src":"72:5:99","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","file":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","id":30802,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":31232,"sourceUnit":14051,"src":"140:97:99","symbolAliases":[{"foreign":{"id":30801,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14050,"src":"148:16:99","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/Policy.sol","file":"../Policy.sol","id":30804,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":31232,"sourceUnit":22827,"src":"238:37:99","symbolAliases":[{"foreign":{"id":30803,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"246:6:99","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IUnderwriter.sol","file":"../interfaces/IUnderwriter.sol","id":30806,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":31232,"sourceUnit":29364,"src":"276:60:99","symbolAliases":[{"foreign":{"id":30805,"name":"IUnderwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29363,"src":"284:12:99","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol","file":"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol","id":30808,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":31232,"sourceUnit":331,"src":"337:97:99","symbolAliases":[{"foreign":{"id":30807,"name":"AccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":330,"src":"345:18:99","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":30810,"name":"IUnderwriter","nameLocations":["747:12:99"],"nodeType":"IdentifierPath","referencedDeclaration":29363,"src":"747:12:99"},"id":30811,"nodeType":"InheritanceSpecifier","src":"747:12:99"}],"canonicalName":"FullSignedUW","contractDependencies":[],"contractKind":"contract","documentation":{"id":30809,"nodeType":"StructuredDocumentation","src":"436:285:99","text":" @title FullSignedUW\n @notice Underwriter that just decodes what it receives and checks it was signed by an authorized account.\n      The signer needs to have the specific selectors granted in the target RM\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":31231,"linearizedBaseContracts":[31231,29363],"name":"FullSignedUW","nameLocation":"731:12:99","nodeType":"ContractDefinition","nodes":[{"global":false,"id":30815,"libraryName":{"id":30812,"name":"Policy","nameLocations":["770:6:99"],"nodeType":"IdentifierPath","referencedDeclaration":22826,"src":"770:6:99"},"nodeType":"UsingForDirective","src":"764:35:99","typeName":{"id":30814,"nodeType":"UserDefinedTypeName","pathNode":{"id":30813,"name":"Policy.PolicyData","nameLocations":["781:6:99","788:10:99"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"781:17:99"},"referencedDeclaration":22256,"src":"781:17:99","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}}},{"constant":true,"id":30823,"mutability":"constant","name":"FULL_PRICE_NEW_POLICY","nameLocation":"828:21:99","nodeType":"VariableDeclaration","scope":31231,"src":"803:91:99","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":30816,"name":"bytes4","nodeType":"ElementaryTypeName","src":"803:6:99","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"arguments":[{"arguments":[{"hexValue":"46554c4c5f50524943455f4e45575f504f4c494359","id":30820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"869:23:99","typeDescriptions":{"typeIdentifier":"t_stringliteral_4568705da1639073be69afeb2376d89cef780c68efd064ab4c2e8049be434a18","typeString":"literal_string \"FULL_PRICE_NEW_POLICY\""},"value":"FULL_PRICE_NEW_POLICY"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_4568705da1639073be69afeb2376d89cef780c68efd064ab4c2e8049be434a18","typeString":"literal_string \"FULL_PRICE_NEW_POLICY\""}],"id":30819,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"859:9:99","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":30821,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"859:34:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":30818,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"852:6:99","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":30817,"name":"bytes4","nodeType":"ElementaryTypeName","src":"852:6:99","typeDescriptions":{}}},"id":30822,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"852:42:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":true,"id":30831,"mutability":"constant","name":"FULL_PRICE_REPLACE_POLICY","nameLocation":"923:25:99","nodeType":"VariableDeclaration","scope":31231,"src":"898:99:99","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":30824,"name":"bytes4","nodeType":"ElementaryTypeName","src":"898:6:99","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"arguments":[{"arguments":[{"hexValue":"46554c4c5f50524943455f5245504c4143455f504f4c494359","id":30828,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"968:27:99","typeDescriptions":{"typeIdentifier":"t_stringliteral_b8bf8abee956c23073a3f628100e45da0cf4d7ca1e953d176e06c48753d2863e","typeString":"literal_string \"FULL_PRICE_REPLACE_POLICY\""},"value":"FULL_PRICE_REPLACE_POLICY"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_b8bf8abee956c23073a3f628100e45da0cf4d7ca1e953d176e06c48753d2863e","typeString":"literal_string \"FULL_PRICE_REPLACE_POLICY\""}],"id":30827,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"958:9:99","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":30829,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"958:38:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":30826,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"951:6:99","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":30825,"name":"bytes4","nodeType":"ElementaryTypeName","src":"951:6:99","typeDescriptions":{}}},"id":30830,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"951:46:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":true,"id":30839,"mutability":"constant","name":"FULL_PRICE_CANCEL_POLICY","nameLocation":"1026:24:99","nodeType":"VariableDeclaration","scope":31231,"src":"1001:97:99","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":30832,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1001:6:99","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"arguments":[{"arguments":[{"hexValue":"46554c4c5f50524943455f43414e43454c5f504f4c494359","id":30836,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1070:26:99","typeDescriptions":{"typeIdentifier":"t_stringliteral_e1cc1aa1166fa42e3a9bf6f2e810db30f295c27e6aeef2638722d3726d751570","typeString":"literal_string \"FULL_PRICE_CANCEL_POLICY\""},"value":"FULL_PRICE_CANCEL_POLICY"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_e1cc1aa1166fa42e3a9bf6f2e810db30f295c27e6aeef2638722d3726d751570","typeString":"literal_string \"FULL_PRICE_CANCEL_POLICY\""}],"id":30835,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1060:9:99","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":30837,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1060:37:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":30834,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1053:6:99","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":30833,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1053:6:99","typeDescriptions":{}}},"id":30838,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1053:45:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":true,"id":30848,"mutability":"constant","name":"NEW_POLICY_DATA_SIZE","nameLocation":"1127:20:99","nodeType":"VariableDeclaration","scope":31231,"src":"1102:63:99","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30840,"name":"uint256","nodeType":"ElementaryTypeName","src":"1102:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_rational_384_by_1","typeString":"int_const 384"},"id":30847,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"id":30843,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"35","id":30841,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1150:1:99","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3332","id":30842,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1154:2:99","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"1150:6:99","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"id":30846,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"37","id":30844,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1159:1:99","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3332","id":30845,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1163:2:99","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"1159:6:99","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"}},"src":"1150:15:99","typeDescriptions":{"typeIdentifier":"t_rational_384_by_1","typeString":"int_const 384"}},"visibility":"private"},{"constant":true,"id":30855,"mutability":"constant","name":"REPLACE_POLICY_DATA_SIZE","nameLocation":"1207:24:99","nodeType":"VariableDeclaration","scope":31231,"src":"1182:82:99","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30849,"name":"uint256","nodeType":"ElementaryTypeName","src":"1182:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":30854,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"id":30850,"name":"NEW_POLICY_DATA_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30848,"src":"1234:20:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_rational_384_by_1","typeString":"int_const 384"},"id":30853,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3132","id":30851,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1257:2:99","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3332","id":30852,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1262:2:99","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"1257:7:99","typeDescriptions":{"typeIdentifier":"t_rational_384_by_1","typeString":"int_const 384"}},"src":"1234:30:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":true,"id":30864,"mutability":"constant","name":"CANCEL_POLICY_DATA_SIZE","nameLocation":"1306:23:99","nodeType":"VariableDeclaration","scope":31231,"src":"1281:80:99","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30856,"name":"uint256","nodeType":"ElementaryTypeName","src":"1281:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_rational_480_by_1","typeString":"int_const 480"},"id":30863,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_384_by_1","typeString":"int_const 384"},"id":30859,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3132","id":30857,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1332:2:99","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3332","id":30858,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1337:2:99","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"1332:7:99","typeDescriptions":{"typeIdentifier":"t_rational_384_by_1","typeString":"int_const 384"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"id":30862,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":30860,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1355:1:99","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3332","id":30861,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1359:2:99","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"1355:6:99","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"}},"src":"1332:29:99","typeDescriptions":{"typeIdentifier":"t_rational_480_by_1","typeString":"int_const 480"}},"visibility":"private"},{"constant":true,"id":30867,"mutability":"constant","name":"SIGNATURE_SIZE","nameLocation":"1390:14:99","nodeType":"VariableDeclaration","scope":31231,"src":"1365:44:99","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30865,"name":"uint256","nodeType":"ElementaryTypeName","src":"1365:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3635","id":30866,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1407:2:99","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"65"},"visibility":"private"},{"documentation":{"id":30868,"nodeType":"StructuredDocumentation","src":"1414:399:99","text":" @notice Thrown when the recovered signer is not authorized to perform the requested pricing operation on `rm`.\n @dev `selector` is the permission/role identifier checked through the RM's AccessManager (one of `FULL_PRICE_*`).\n @param signer   The address recovered from the appended ECDSA signature.\n @param selector The required permission/role id for the operation."},"errorSelector":"44b06897","id":30874,"name":"UnauthorizedSigner","nameLocation":"1822:18:99","nodeType":"ErrorDefinition","parameters":{"id":30873,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30870,"mutability":"mutable","name":"signer","nameLocation":"1849:6:99","nodeType":"VariableDeclaration","scope":30874,"src":"1841:14:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":30869,"name":"address","nodeType":"ElementaryTypeName","src":"1841:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":30872,"mutability":"mutable","name":"selector","nameLocation":"1864:8:99","nodeType":"VariableDeclaration","scope":30874,"src":"1857:15:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":30871,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1857:6:99","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1840:33:99"},"src":"1816:58:99"},{"documentation":{"id":30875,"nodeType":"StructuredDocumentation","src":"1877:348:99","text":" @notice Thrown when `inputData` does not have the expected length: `payload || signature`.\n @dev The signature is expected to be exactly 65 bytes, so `inputData.length` must be `inputSize + 65`.\n @param actual   The actual length of `inputData` in bytes.\n @param expected The expected length of `inputData` in bytes."},"errorSelector":"58512282","id":30881,"name":"InvalidInputSize","nameLocation":"2234:16:99","nodeType":"ErrorDefinition","parameters":{"id":30880,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30877,"mutability":"mutable","name":"actual","nameLocation":"2259:6:99","nodeType":"VariableDeclaration","scope":30881,"src":"2251:14:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30876,"name":"uint256","nodeType":"ElementaryTypeName","src":"2251:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":30879,"mutability":"mutable","name":"expected","nameLocation":"2275:8:99","nodeType":"VariableDeclaration","scope":30881,"src":"2267:16:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30878,"name":"uint256","nodeType":"ElementaryTypeName","src":"2267:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2250:34:99"},"src":"2228:57:99"},{"documentation":{"id":30882,"nodeType":"StructuredDocumentation","src":"2289:75:99","text":"@notice Thrown when the received signature doesn't match the calling rm"},"errorSelector":"9697bc12","id":30884,"name":"SignatureRmMismatch","nameLocation":"2373:19:99","nodeType":"ErrorDefinition","parameters":{"id":30883,"nodeType":"ParameterList","parameters":[],"src":"2392:2:99"},"src":"2367:28:99"},{"body":{"id":30960,"nodeType":"Block","src":"3450:602:99","statements":[{"assignments":[30897],"declarations":[{"constant":false,"id":30897,"mutability":"mutable","name":"inputLength","nameLocation":"3484:11:99","nodeType":"VariableDeclaration","scope":30960,"src":"3476:19:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30896,"name":"uint256","nodeType":"ElementaryTypeName","src":"3476:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":30900,"initialValue":{"expression":{"id":30898,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30889,"src":"3498:9:99","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":30899,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3508:6:99","memberName":"length","nodeType":"MemberAccess","src":"3498:16:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3476:38:99"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":30906,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30901,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30897,"src":"3524:11:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":30904,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30902,"name":"inputSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30891,"src":"3540:9:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":30903,"name":"SIGNATURE_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30867,"src":"3552:14:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3540:26:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":30905,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3539:28:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3524:43:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30914,"nodeType":"IfStatement","src":"3520:113:99","trueBody":{"errorCall":{"arguments":[{"id":30908,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30897,"src":"3593:11:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":30911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30909,"name":"inputSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30891,"src":"3606:9:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":30910,"name":"SIGNATURE_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30867,"src":"3618:14:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3606:26:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":30907,"name":"InvalidInputSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30881,"src":"3576:16:99","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":30912,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3576:57:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30913,"nodeType":"RevertStatement","src":"3569:64:99"}},{"assignments":[30916],"declarations":[{"constant":false,"id":30916,"mutability":"mutable","name":"inputHash","nameLocation":"3670:9:99","nodeType":"VariableDeclaration","scope":30960,"src":"3662:17:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30915,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3662:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":30924,"initialValue":{"arguments":[{"baseExpression":{"id":30919,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30889,"src":"3722:9:99","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":30921,"name":"inputSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30891,"src":"3734:9:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":30922,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"3722:22:99","startExpression":{"hexValue":"30","id":30920,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3732:1:99","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"expression":{"id":30917,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14050,"src":"3682:16:99","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_MessageHashUtils_$14050_$","typeString":"type(library MessageHashUtils)"}},"id":30918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3699:22:99","memberName":"toEthSignedMessageHash","nodeType":"MemberAccess","referencedDeclaration":14005,"src":"3682:39:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":30923,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3682:63:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"3662:83:99"},{"assignments":[30926],"declarations":[{"constant":false,"id":30926,"mutability":"mutable","name":"signer","nameLocation":"3759:6:99","nodeType":"VariableDeclaration","scope":30960,"src":"3751:14:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":30925,"name":"address","nodeType":"ElementaryTypeName","src":"3751:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":30935,"initialValue":{"arguments":[{"id":30929,"name":"inputHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30916,"src":"3782:9:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":30930,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30889,"src":"3793:9:99","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":30932,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30897,"src":"3813:11:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":30933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"3793:32:99","startExpression":{"id":30931,"name":"inputSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30891,"src":"3803:9:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"expression":{"id":30927,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13697,"src":"3768:5:99","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$13697_$","typeString":"type(library ECDSA)"}},"id":30928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3774:7:99","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":13395,"src":"3768:13:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes32,bytes memory) pure returns (address)"}},"id":30934,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3768:58:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3751:75:99"},{"assignments":[30937,null],"declarations":[{"constant":false,"id":30937,"mutability":"mutable","name":"immediate","nameLocation":"3884:9:99","nodeType":"VariableDeclaration","scope":30960,"src":"3879:14:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":30936,"name":"bool","nodeType":"ElementaryTypeName","src":"3879:4:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":30951,"initialValue":{"arguments":[{"id":30947,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30926,"src":"3956:6:99","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":30948,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30887,"src":"3964:2:99","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":30949,"name":"requiredRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30893,"src":"3968:12:99","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"id":30941,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30887,"src":"3926:2:99","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":30940,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3918:8:99","typeDescriptions":{"typeIdentifier":"t_type$_t_address_payable_$","typeString":"type(address payable)"},"typeName":{"id":30939,"name":"address","nodeType":"ElementaryTypeName","src":"3918:8:99","stateMutability":"payable","typeDescriptions":{}}},"id":30942,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3918:11:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"}],"id":30938,"name":"AccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":330,"src":"3899:18:99","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AccessManagedProxy_$330_$","typeString":"type(contract AccessManagedProxy)"}},"id":30943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3899:31:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_AccessManagedProxy_$330","typeString":"contract AccessManagedProxy"}},"id":30944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3931:14:99","memberName":"ACCESS_MANAGER","nodeType":"MemberAccess","referencedDeclaration":329,"src":"3899:46:99","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IAccessManager_$6119_$","typeString":"function () view external returns (contract IAccessManager)"}},"id":30945,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3899:48:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$6119","typeString":"contract IAccessManager"}},"id":30946,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3948:7:99","memberName":"canCall","nodeType":"MemberAccess","referencedDeclaration":5863,"src":"3899:56:99","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$_t_bytes4_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes4) view external returns (bool,uint32)"}},"id":30950,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3899:82:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"3878:103:99"},{"expression":{"arguments":[{"id":30953,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30937,"src":"3995:9:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":30955,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30926,"src":"4025:6:99","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":30956,"name":"requiredRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30893,"src":"4033:12:99","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":30954,"name":"UnauthorizedSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30874,"src":"4006:18:99","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_bytes4_$returns$_t_error_$","typeString":"function (address,bytes4) pure returns (error)"}},"id":30957,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4006:40:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":30952,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3987:7:99","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":30958,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3987:60:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30959,"nodeType":"ExpressionStatement","src":"3987:60:99"}]},"documentation":{"id":30885,"nodeType":"StructuredDocumentation","src":"2399:931:99","text":" @notice Validates the signature appended to `inputData` and checks the recovered signer is authorized in `rm`.\n @param rm           Target RiskModule (must be an {AccessManagedProxy}).\n @param inputData    Concatenated bytes: `payload || signature`.\n @param inputSize    Expected length of the payload portion (without signature).\n @param requiredRole Role/selector id required for this operation (one of the `FULL_PRICE_*` constants).\n @custom:pre `inputData` is exactly `inputSize + 65` bytes long.\n @custom:pre `rm` is an {AccessManagedProxy} instance whose `ACCESS_MANAGER()` supports `canCall(...)`.\n @custom:throws InvalidInputSize if `inputData.length != inputSize + 65`.\n @custom:throws (via {ECDSA-recover}) if the signature is malformed/invalid.\n @custom:throws UnauthorizedSigner if the recovered signer is not permitted to call `rm` with `requiredRole`."},"id":30961,"implemented":true,"kind":"function","modifiers":[],"name":"_checkSignature","nameLocation":"3342:15:99","nodeType":"FunctionDefinition","parameters":{"id":30894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30887,"mutability":"mutable","name":"rm","nameLocation":"3366:2:99","nodeType":"VariableDeclaration","scope":30961,"src":"3358:10:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":30886,"name":"address","nodeType":"ElementaryTypeName","src":"3358:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":30889,"mutability":"mutable","name":"inputData","nameLocation":"3385:9:99","nodeType":"VariableDeclaration","scope":30961,"src":"3370:24:99","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":30888,"name":"bytes","nodeType":"ElementaryTypeName","src":"3370:5:99","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":30891,"mutability":"mutable","name":"inputSize","nameLocation":"3404:9:99","nodeType":"VariableDeclaration","scope":30961,"src":"3396:17:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30890,"name":"uint256","nodeType":"ElementaryTypeName","src":"3396:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":30893,"mutability":"mutable","name":"requiredRole","nameLocation":"3422:12:99","nodeType":"VariableDeclaration","scope":30961,"src":"3415:19:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":30892,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3415:6:99","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3357:78:99"},"returnParameters":{"id":30895,"nodeType":"ParameterList","parameters":[],"src":"3450:0:99"},"scope":31231,"src":"3333:719:99","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[29321],"body":{"id":31040,"nodeType":"Block","src":"4371:429:99","statements":[{"expression":{"arguments":[{"id":30984,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30964,"src":"4393:2:99","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":30985,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30966,"src":"4397:9:99","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":30986,"name":"NEW_POLICY_DATA_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30848,"src":"4408:20:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":30987,"name":"FULL_PRICE_NEW_POLICY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30823,"src":"4430:21:99","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":30983,"name":"_checkSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30961,"src":"4377:15:99","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_calldata_ptr_$_t_uint256_$_t_bytes4_$returns$__$","typeString":"function (address,bytes calldata,uint256,bytes4) view"}},"id":30988,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4377:75:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":30989,"nodeType":"ExpressionStatement","src":"4377:75:99"},{"assignments":[30991],"declarations":[{"constant":false,"id":30991,"mutability":"mutable","name":"policyId","nameLocation":"4466:8:99","nodeType":"VariableDeclaration","scope":31040,"src":"4458:16:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30990,"name":"uint256","nodeType":"ElementaryTypeName","src":"4458:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":30992,"nodeType":"VariableDeclarationStatement","src":"4458:16:99"},{"expression":{"id":31020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":30993,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30970,"src":"4481:6:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":30994,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30972,"src":"4489:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":30995,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30974,"src":"4498:8:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":30996,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30976,"src":"4508:10:99","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":30997,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30991,"src":"4520:8:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":30998,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30981,"src":"4530:6:99","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}}],"id":30999,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"4480:57:99","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint256_$_t_struct$_Params_$22230_memory_ptr_$","typeString":"tuple(uint256,uint256,uint256,uint40,uint256,struct Policy.Params memory)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":31002,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30966,"src":"4558:9:99","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":31004,"name":"NEW_POLICY_DATA_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30848,"src":"4570:20:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"4558:33:99","startExpression":{"hexValue":"30","id":31003,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4568:1:99","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"id":31007,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4600:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31006,"name":"uint256","nodeType":"ElementaryTypeName","src":"4600:7:99","typeDescriptions":{}}},{"id":31009,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4609:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31008,"name":"uint256","nodeType":"ElementaryTypeName","src":"4609:7:99","typeDescriptions":{}}},{"id":31011,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4618:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31010,"name":"uint256","nodeType":"ElementaryTypeName","src":"4618:7:99","typeDescriptions":{}}},{"id":31013,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4627:6:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":31012,"name":"uint40","nodeType":"ElementaryTypeName","src":"4627:6:99","typeDescriptions":{}}},{"id":31015,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4635:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31014,"name":"uint256","nodeType":"ElementaryTypeName","src":"4635:7:99","typeDescriptions":{}}},{"expression":{"id":31016,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"4644:6:99","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":31017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4651:6:99","memberName":"Params","nodeType":"MemberAccess","referencedDeclaration":22230,"src":"4644:13:99","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Params_$22230_storage_ptr_$","typeString":"type(struct Policy.Params storage pointer)"}}],"id":31018,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4599:59:99","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint40_$_$_t_type$_t_uint256_$_$_t_type$_t_struct$_Params_$22230_storage_ptr_$_$","typeString":"tuple(type(uint256),type(uint256),type(uint256),type(uint40),type(uint256),type(struct Policy.Params storage pointer))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_tuple$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint40_$_$_t_type$_t_uint256_$_$_t_type$_t_struct$_Params_$22230_storage_ptr_$_$","typeString":"tuple(type(uint256),type(uint256),type(uint256),type(uint40),type(uint256),type(struct Policy.Params storage pointer))"}],"expression":{"id":31000,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4540:3:99","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":31001,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4544:6:99","memberName":"decode","nodeType":"MemberAccess","src":"4540:10:99","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":31019,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4540:124:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint256_$_t_struct$_Params_$22230_memory_ptr_$","typeString":"tuple(uint256,uint256,uint256,uint40,uint256,struct Policy.Params memory)"}},"src":"4480:184:99","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":31021,"nodeType":"ExpressionStatement","src":"4480:184:99"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":31028,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":31025,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30991,"src":"4703:8:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":31023,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"4678:6:99","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":31024,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4685:17:99","memberName":"extractRiskModule","nodeType":"MemberAccess","referencedDeclaration":22779,"src":"4678:24:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) pure returns (address)"}},"id":31026,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4678:34:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":31027,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30964,"src":"4716:2:99","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4678:40:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":31029,"name":"SignatureRmMismatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30884,"src":"4720:19:99","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":31030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4720:21:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":31022,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4670:7:99","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":31031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4670:72:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":31032,"nodeType":"ExpressionStatement","src":"4670:72:99"},{"expression":{"id":31038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":31033,"name":"internalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30978,"src":"4748:10:99","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":31036,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30991,"src":"4786:8:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":31034,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"4761:6:99","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":31035,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4768:17:99","memberName":"extractInternalId","nodeType":"MemberAccess","referencedDeclaration":22798,"src":"4761:24:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$","typeString":"function (uint256) pure returns (uint96)"}},"id":31037,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4761:34:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"4748:47:99","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":31039,"nodeType":"ExpressionStatement","src":"4748:47:99"}]},"documentation":{"id":30962,"nodeType":"StructuredDocumentation","src":"4056:28:99","text":"@inheritdoc IUnderwriter"},"functionSelector":"ba097a2a","id":31041,"implemented":true,"kind":"function","modifiers":[],"name":"priceNewPolicy","nameLocation":"4096:14:99","nodeType":"FunctionDefinition","overrides":{"id":30968,"nodeType":"OverrideSpecifier","overrides":[],"src":"4187:8:99"},"parameters":{"id":30967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30964,"mutability":"mutable","name":"rm","nameLocation":"4124:2:99","nodeType":"VariableDeclaration","scope":31041,"src":"4116:10:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":30963,"name":"address","nodeType":"ElementaryTypeName","src":"4116:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":30966,"mutability":"mutable","name":"inputData","nameLocation":"4147:9:99","nodeType":"VariableDeclaration","scope":31041,"src":"4132:24:99","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":30965,"name":"bytes","nodeType":"ElementaryTypeName","src":"4132:5:99","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4110:50:99"},"returnParameters":{"id":30982,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30970,"mutability":"mutable","name":"payout","nameLocation":"4224:6:99","nodeType":"VariableDeclaration","scope":31041,"src":"4216:14:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30969,"name":"uint256","nodeType":"ElementaryTypeName","src":"4216:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":30972,"mutability":"mutable","name":"premium","nameLocation":"4246:7:99","nodeType":"VariableDeclaration","scope":31041,"src":"4238:15:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30971,"name":"uint256","nodeType":"ElementaryTypeName","src":"4238:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":30974,"mutability":"mutable","name":"lossProb","nameLocation":"4269:8:99","nodeType":"VariableDeclaration","scope":31041,"src":"4261:16:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30973,"name":"uint256","nodeType":"ElementaryTypeName","src":"4261:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":30976,"mutability":"mutable","name":"expiration","nameLocation":"4292:10:99","nodeType":"VariableDeclaration","scope":31041,"src":"4285:17:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":30975,"name":"uint40","nodeType":"ElementaryTypeName","src":"4285:6:99","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":30978,"mutability":"mutable","name":"internalId","nameLocation":"4317:10:99","nodeType":"VariableDeclaration","scope":31041,"src":"4310:17:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":30977,"name":"uint96","nodeType":"ElementaryTypeName","src":"4310:6:99","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":30981,"mutability":"mutable","name":"params","nameLocation":"4356:6:99","nodeType":"VariableDeclaration","scope":31041,"src":"4335:27:99","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":30980,"nodeType":"UserDefinedTypeName","pathNode":{"id":30979,"name":"Policy.Params","nameLocations":["4335:6:99","4342:6:99"],"nodeType":"IdentifierPath","referencedDeclaration":22230,"src":"4335:13:99"},"referencedDeclaration":22230,"src":"4335:13:99","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"src":"4208:160:99"},"scope":31231,"src":"4087:713:99","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[29345],"body":{"id":31134,"nodeType":"Block","src":"5169:537:99","statements":[{"expression":{"arguments":[{"id":31067,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31044,"src":"5191:2:99","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":31068,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31046,"src":"5195:9:99","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":31069,"name":"REPLACE_POLICY_DATA_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30855,"src":"5206:24:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":31070,"name":"FULL_PRICE_REPLACE_POLICY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30831,"src":"5232:25:99","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":31066,"name":"_checkSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30961,"src":"5175:15:99","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_calldata_ptr_$_t_uint256_$_t_bytes4_$returns$__$","typeString":"function (address,bytes calldata,uint256,bytes4) view"}},"id":31071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5175:83:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":31072,"nodeType":"ExpressionStatement","src":"5175:83:99"},{"assignments":[31074],"declarations":[{"constant":false,"id":31074,"mutability":"mutable","name":"policyId","nameLocation":"5272:8:99","nodeType":"VariableDeclaration","scope":31134,"src":"5264:16:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31073,"name":"uint256","nodeType":"ElementaryTypeName","src":"5264:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":31075,"nodeType":"VariableDeclarationStatement","src":"5264:16:99"},{"expression":{"id":31106,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":31076,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31051,"src":"5287:9:99","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},{"id":31077,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31053,"src":"5298:6:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":31078,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31055,"src":"5306:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":31079,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31057,"src":"5315:8:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":31080,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31059,"src":"5325:10:99","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":31081,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31074,"src":"5337:8:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":31082,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31064,"src":"5347:6:99","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params memory"}}],"id":31083,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"5286:68:99","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint256_$_t_struct$_Params_$22230_memory_ptr_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256,uint40,uint256,struct Policy.Params memory)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":31086,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31046,"src":"5375:9:99","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":31088,"name":"REPLACE_POLICY_DATA_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30855,"src":"5387:24:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31089,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"5375:37:99","startExpression":{"hexValue":"30","id":31087,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5385:1:99","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"expression":{"id":31090,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"5421:6:99","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":31091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5428:10:99","memberName":"PolicyData","nodeType":"MemberAccess","referencedDeclaration":22256,"src":"5421:17:99","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_PolicyData_$22256_storage_ptr_$","typeString":"type(struct Policy.PolicyData storage pointer)"}},{"id":31093,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5440:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31092,"name":"uint256","nodeType":"ElementaryTypeName","src":"5440:7:99","typeDescriptions":{}}},{"id":31095,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5449:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31094,"name":"uint256","nodeType":"ElementaryTypeName","src":"5449:7:99","typeDescriptions":{}}},{"id":31097,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5458:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31096,"name":"uint256","nodeType":"ElementaryTypeName","src":"5458:7:99","typeDescriptions":{}}},{"id":31099,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5467:6:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":31098,"name":"uint40","nodeType":"ElementaryTypeName","src":"5467:6:99","typeDescriptions":{}}},{"id":31101,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5475:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31100,"name":"uint256","nodeType":"ElementaryTypeName","src":"5475:7:99","typeDescriptions":{}}},{"expression":{"id":31102,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"5484:6:99","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":31103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5491:6:99","memberName":"Params","nodeType":"MemberAccess","referencedDeclaration":22230,"src":"5484:13:99","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Params_$22230_storage_ptr_$","typeString":"type(struct Policy.Params storage pointer)"}}],"id":31104,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5420:78:99","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_struct$_PolicyData_$22256_storage_ptr_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint40_$_$_t_type$_t_uint256_$_$_t_type$_t_struct$_Params_$22230_storage_ptr_$_$","typeString":"tuple(type(struct Policy.PolicyData storage pointer),type(uint256),type(uint256),type(uint256),type(uint40),type(uint256),type(struct Policy.Params storage pointer))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_tuple$_t_type$_t_struct$_PolicyData_$22256_storage_ptr_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint40_$_$_t_type$_t_uint256_$_$_t_type$_t_struct$_Params_$22230_storage_ptr_$_$","typeString":"tuple(type(struct Policy.PolicyData storage pointer),type(uint256),type(uint256),type(uint256),type(uint40),type(uint256),type(struct Policy.Params storage pointer))"}],"expression":{"id":31084,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"5357:3:99","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":31085,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5361:6:99","memberName":"decode","nodeType":"MemberAccess","src":"5357:10:99","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":31105,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5357:147:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint256_$_t_struct$_Params_$22230_memory_ptr_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256,uint40,uint256,struct Policy.Params memory)"}},"src":"5286:218:99","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":31107,"nodeType":"ExpressionStatement","src":"5286:218:99"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":31122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":31114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":31111,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31074,"src":"5550:8:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":31109,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"5525:6:99","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":31110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5532:17:99","memberName":"extractRiskModule","nodeType":"MemberAccess","referencedDeclaration":22779,"src":"5525:24:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) pure returns (address)"}},"id":31112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5525:34:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":31113,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31044,"src":"5563:2:99","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5525:40:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":31121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":31117,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31051,"src":"5594:9:99","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":31118,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5604:2:99","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"5594:12:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":31115,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"5569:6:99","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":31116,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5576:17:99","memberName":"extractRiskModule","nodeType":"MemberAccess","referencedDeclaration":22779,"src":"5569:24:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) pure returns (address)"}},"id":31119,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5569:38:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":31120,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31044,"src":"5611:2:99","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5569:44:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5525:88:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":31123,"name":"SignatureRmMismatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30884,"src":"5621:19:99","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":31124,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5621:21:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":31108,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"5510:7:99","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":31125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5510:138:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":31126,"nodeType":"ExpressionStatement","src":"5510:138:99"},{"expression":{"id":31132,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":31127,"name":"internalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31061,"src":"5654:10:99","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":31130,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31074,"src":"5692:8:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":31128,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"5667:6:99","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":31129,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5674:17:99","memberName":"extractInternalId","nodeType":"MemberAccess","referencedDeclaration":22798,"src":"5667:24:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$","typeString":"function (uint256) pure returns (uint96)"}},"id":31131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5667:34:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"5654:47:99","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":31133,"nodeType":"ExpressionStatement","src":"5654:47:99"}]},"documentation":{"id":31042,"nodeType":"StructuredDocumentation","src":"4804:28:99","text":"@inheritdoc IUnderwriter"},"functionSelector":"9ba942d6","id":31135,"implemented":true,"kind":"function","modifiers":[],"name":"pricePolicyReplacement","nameLocation":"4844:22:99","nodeType":"FunctionDefinition","overrides":{"id":31048,"nodeType":"OverrideSpecifier","overrides":[],"src":"4943:8:99"},"parameters":{"id":31047,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31044,"mutability":"mutable","name":"rm","nameLocation":"4880:2:99","nodeType":"VariableDeclaration","scope":31135,"src":"4872:10:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":31043,"name":"address","nodeType":"ElementaryTypeName","src":"4872:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":31046,"mutability":"mutable","name":"inputData","nameLocation":"4903:9:99","nodeType":"VariableDeclaration","scope":31135,"src":"4888:24:99","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":31045,"name":"bytes","nodeType":"ElementaryTypeName","src":"4888:5:99","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4866:50:99"},"returnParameters":{"id":31065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31051,"mutability":"mutable","name":"oldPolicy","nameLocation":"4997:9:99","nodeType":"VariableDeclaration","scope":31135,"src":"4972:34:99","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":31050,"nodeType":"UserDefinedTypeName","pathNode":{"id":31049,"name":"Policy.PolicyData","nameLocations":["4972:6:99","4979:10:99"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"4972:17:99"},"referencedDeclaration":22256,"src":"4972:17:99","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":31053,"mutability":"mutable","name":"payout","nameLocation":"5022:6:99","nodeType":"VariableDeclaration","scope":31135,"src":"5014:14:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31052,"name":"uint256","nodeType":"ElementaryTypeName","src":"5014:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31055,"mutability":"mutable","name":"premium","nameLocation":"5044:7:99","nodeType":"VariableDeclaration","scope":31135,"src":"5036:15:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31054,"name":"uint256","nodeType":"ElementaryTypeName","src":"5036:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31057,"mutability":"mutable","name":"lossProb","nameLocation":"5067:8:99","nodeType":"VariableDeclaration","scope":31135,"src":"5059:16:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31056,"name":"uint256","nodeType":"ElementaryTypeName","src":"5059:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31059,"mutability":"mutable","name":"expiration","nameLocation":"5090:10:99","nodeType":"VariableDeclaration","scope":31135,"src":"5083:17:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":31058,"name":"uint40","nodeType":"ElementaryTypeName","src":"5083:6:99","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":31061,"mutability":"mutable","name":"internalId","nameLocation":"5115:10:99","nodeType":"VariableDeclaration","scope":31135,"src":"5108:17:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":31060,"name":"uint96","nodeType":"ElementaryTypeName","src":"5108:6:99","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":31064,"mutability":"mutable","name":"params","nameLocation":"5154:6:99","nodeType":"VariableDeclaration","scope":31135,"src":"5133:27:99","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":31063,"nodeType":"UserDefinedTypeName","pathNode":{"id":31062,"name":"Policy.Params","nameLocations":["5133:6:99","5140:6:99"],"nodeType":"IdentifierPath","referencedDeclaration":22230,"src":"5133:13:99"},"referencedDeclaration":22230,"src":"5133:13:99","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"src":"4964:202:99"},"scope":31231,"src":"4835:871:99","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[29362],"body":{"id":31229,"nodeType":"Block","src":"6014:593:99","statements":[{"expression":{"arguments":[{"id":31154,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31138,"src":"6036:2:99","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":31155,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31140,"src":"6040:9:99","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":31156,"name":"CANCEL_POLICY_DATA_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30864,"src":"6051:23:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":31157,"name":"FULL_PRICE_CANCEL_POLICY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30839,"src":"6076:24:99","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":31153,"name":"_checkSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30961,"src":"6020:15:99","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_calldata_ptr_$_t_uint256_$_t_bytes4_$returns$__$","typeString":"function (address,bytes calldata,uint256,bytes4) view"}},"id":31158,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6020:81:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":31159,"nodeType":"ExpressionStatement","src":"6020:81:99"},{"expression":{"id":31181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":31160,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31145,"src":"6108:14:99","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},{"id":31161,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31147,"src":"6124:17:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":31162,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31149,"src":"6143:11:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":31163,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31151,"src":"6156:11:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":31164,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"6107:61:99","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":31167,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31140,"src":"6189:9:99","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":31169,"name":"CANCEL_POLICY_DATA_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30864,"src":"6201:23:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"6189:36:99","startExpression":{"hexValue":"30","id":31168,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6199:1:99","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"expression":{"id":31171,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"6234:6:99","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":31172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6241:10:99","memberName":"PolicyData","nodeType":"MemberAccess","referencedDeclaration":22256,"src":"6234:17:99","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_PolicyData_$22256_storage_ptr_$","typeString":"type(struct Policy.PolicyData storage pointer)"}},{"id":31174,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6253:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31173,"name":"uint256","nodeType":"ElementaryTypeName","src":"6253:7:99","typeDescriptions":{}}},{"id":31176,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6262:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31175,"name":"uint256","nodeType":"ElementaryTypeName","src":"6262:7:99","typeDescriptions":{}}},{"id":31178,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6271:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31177,"name":"uint256","nodeType":"ElementaryTypeName","src":"6271:7:99","typeDescriptions":{}}}],"id":31179,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6233:46:99","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_struct$_PolicyData_$22256_storage_ptr_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(struct Policy.PolicyData storage pointer),type(uint256),type(uint256),type(uint256))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_tuple$_t_type$_t_struct$_PolicyData_$22256_storage_ptr_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(struct Policy.PolicyData storage pointer),type(uint256),type(uint256),type(uint256))"}],"expression":{"id":31165,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"6171:3:99","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":31166,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6175:6:99","memberName":"decode","nodeType":"MemberAccess","src":"6171:10:99","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":31180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6171:114:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256)"}},"src":"6107:178:99","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":31182,"nodeType":"ExpressionStatement","src":"6107:178:99"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":31190,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":31186,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31145,"src":"6324:14:99","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":31187,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6339:2:99","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":22233,"src":"6324:17:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":31184,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"6299:6:99","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":31185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6306:17:99","memberName":"extractRiskModule","nodeType":"MemberAccess","referencedDeclaration":22779,"src":"6299:24:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) pure returns (address)"}},"id":31188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6299:43:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":31189,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31138,"src":"6346:2:99","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6299:49:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":31191,"name":"SignatureRmMismatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30884,"src":"6350:19:99","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":31192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6350:21:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":31183,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"6291:7:99","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":31193,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6291:81:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":31194,"nodeType":"ExpressionStatement","src":"6291:81:99"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31195,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31149,"src":"6382:11:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":31198,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6402:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31197,"name":"uint256","nodeType":"ElementaryTypeName","src":"6402:7:99","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":31196,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6397:4:99","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":31199,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6397:13:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":31200,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6411:3:99","memberName":"max","nodeType":"MemberAccess","src":"6397:17:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6382:32:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":31211,"nodeType":"IfStatement","src":"6378:109:99","trueBody":{"expression":{"id":31209,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":31202,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31149,"src":"6416:11:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":31203,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31145,"src":"6430:14:99","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":31204,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6445:5:99","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":22249,"src":"6430:20:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":31205,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31145,"src":"6453:14:99","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":31206,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6468:17:99","memberName":"jrAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":22661,"src":"6453:32:99","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":31207,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6453:34:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6430:57:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6416:71:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31210,"nodeType":"ExpressionStatement","src":"6416:71:99"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31212,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31151,"src":"6497:11:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":31215,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6517:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31214,"name":"uint256","nodeType":"ElementaryTypeName","src":"6517:7:99","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":31213,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6512:4:99","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":31216,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6512:13:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":31217,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6526:3:99","memberName":"max","nodeType":"MemberAccess","src":"6512:17:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6497:32:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":31228,"nodeType":"IfStatement","src":"6493:109:99","trueBody":{"expression":{"id":31226,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":31219,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31151,"src":"6531:11:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":31220,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31145,"src":"6545:14:99","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":31221,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6560:5:99","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":22251,"src":"6545:20:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":31222,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31145,"src":"6568:14:99","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":31223,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6583:17:99","memberName":"srAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":22711,"src":"6568:32:99","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":31224,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6568:34:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6545:57:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6531:71:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31227,"nodeType":"ExpressionStatement","src":"6531:71:99"}}]},"documentation":{"id":31136,"nodeType":"StructuredDocumentation","src":"5710:28:99","text":"@inheritdoc IUnderwriter"},"functionSelector":"32f857fa","id":31230,"implemented":true,"kind":"function","modifiers":[],"name":"pricePolicyCancellation","nameLocation":"5750:23:99","nodeType":"FunctionDefinition","overrides":{"id":31142,"nodeType":"OverrideSpecifier","overrides":[],"src":"5850:8:99"},"parameters":{"id":31141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31138,"mutability":"mutable","name":"rm","nameLocation":"5787:2:99","nodeType":"VariableDeclaration","scope":31230,"src":"5779:10:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":31137,"name":"address","nodeType":"ElementaryTypeName","src":"5779:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":31140,"mutability":"mutable","name":"inputData","nameLocation":"5810:9:99","nodeType":"VariableDeclaration","scope":31230,"src":"5795:24:99","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":31139,"name":"bytes","nodeType":"ElementaryTypeName","src":"5795:5:99","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5773:50:99"},"returnParameters":{"id":31152,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31145,"mutability":"mutable","name":"policyToCancel","nameLocation":"5904:14:99","nodeType":"VariableDeclaration","scope":31230,"src":"5879:39:99","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":31144,"nodeType":"UserDefinedTypeName","pathNode":{"id":31143,"name":"Policy.PolicyData","nameLocations":["5879:6:99","5886:10:99"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"5879:17:99"},"referencedDeclaration":22256,"src":"5879:17:99","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":31147,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"5934:17:99","nodeType":"VariableDeclaration","scope":31230,"src":"5926:25:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31146,"name":"uint256","nodeType":"ElementaryTypeName","src":"5926:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31149,"mutability":"mutable","name":"jrCocRefund","nameLocation":"5967:11:99","nodeType":"VariableDeclaration","scope":31230,"src":"5959:19:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31148,"name":"uint256","nodeType":"ElementaryTypeName","src":"5959:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31151,"mutability":"mutable","name":"srCocRefund","nameLocation":"5994:11:99","nodeType":"VariableDeclaration","scope":31230,"src":"5986:19:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31150,"name":"uint256","nodeType":"ElementaryTypeName","src":"5986:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5871:140:99"},"scope":31231,"src":"5741:866:99","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":31232,"src":"722:5887:99","usedErrors":[13249,13254,13259,30874,30881,30884],"usedEvents":[]}],"src":"39:6571:99"},"id":99},"contracts/underwriters/FullTrustedUW.sol":{"ast":{"absolutePath":"contracts/underwriters/FullTrustedUW.sol","exportedSymbols":{"FullTrustedUW":[31405],"IUnderwriter":[29363],"Policy":[22826]},"id":31406,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":31233,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:100"},{"absolutePath":"contracts/Policy.sol","file":"../Policy.sol","id":31235,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":31406,"sourceUnit":22827,"src":"64:37:100","symbolAliases":[{"foreign":{"id":31234,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"72:6:100","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IUnderwriter.sol","file":"../interfaces/IUnderwriter.sol","id":31237,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":31406,"sourceUnit":29364,"src":"102:60:100","symbolAliases":[{"foreign":{"id":31236,"name":"IUnderwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29363,"src":"110:12:100","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":31239,"name":"IUnderwriter","nameLocations":["408:12:100"],"nodeType":"IdentifierPath","referencedDeclaration":29363,"src":"408:12:100"},"id":31240,"nodeType":"InheritanceSpecifier","src":"408:12:100"}],"canonicalName":"FullTrustedUW","contractDependencies":[],"contractKind":"contract","documentation":{"id":31238,"nodeType":"StructuredDocumentation","src":"164:217:100","text":" @title FullTrustedUW\n @notice Underwriter that just decodes what it receives. The access validations should be done on risk module methods.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":31405,"linearizedBaseContracts":[31405,29363],"name":"FullTrustedUW","nameLocation":"391:13:100","nodeType":"ContractDefinition","nodes":[{"global":false,"id":31244,"libraryName":{"id":31241,"name":"Policy","nameLocations":["431:6:100"],"nodeType":"IdentifierPath","referencedDeclaration":22826,"src":"431:6:100"},"nodeType":"UsingForDirective","src":"425:35:100","typeName":{"id":31243,"nodeType":"UserDefinedTypeName","pathNode":{"id":31242,"name":"Policy.PolicyData","nameLocations":["442:6:100","449:10:100"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"442:17:100"},"referencedDeclaration":22256,"src":"442:17:100","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}}},{"baseFunctions":[29321],"body":{"id":31284,"nodeType":"Block","src":"785:99:100","statements":[{"expression":{"arguments":[{"id":31268,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31249,"src":"809:9:100","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"components":[{"id":31270,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"821:7:100","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31269,"name":"uint256","nodeType":"ElementaryTypeName","src":"821:7:100","typeDescriptions":{}}},{"id":31272,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"830:7:100","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31271,"name":"uint256","nodeType":"ElementaryTypeName","src":"830:7:100","typeDescriptions":{}}},{"id":31274,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"839:7:100","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31273,"name":"uint256","nodeType":"ElementaryTypeName","src":"839:7:100","typeDescriptions":{}}},{"id":31276,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"848:6:100","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":31275,"name":"uint40","nodeType":"ElementaryTypeName","src":"848:6:100","typeDescriptions":{}}},{"id":31278,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"856:6:100","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":31277,"name":"uint96","nodeType":"ElementaryTypeName","src":"856:6:100","typeDescriptions":{}}},{"expression":{"id":31279,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"864:6:100","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":31280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"871:6:100","memberName":"Params","nodeType":"MemberAccess","referencedDeclaration":22230,"src":"864:13:100","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Params_$22230_storage_ptr_$","typeString":"type(struct Policy.Params storage pointer)"}}],"id":31281,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"820:58:100","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint40_$_$_t_type$_t_uint96_$_$_t_type$_t_struct$_Params_$22230_storage_ptr_$_$","typeString":"tuple(type(uint256),type(uint256),type(uint256),type(uint40),type(uint96),type(struct Policy.Params storage pointer))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_tuple$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint40_$_$_t_type$_t_uint96_$_$_t_type$_t_struct$_Params_$22230_storage_ptr_$_$","typeString":"tuple(type(uint256),type(uint256),type(uint256),type(uint40),type(uint96),type(struct Policy.Params storage pointer))"}],"expression":{"id":31266,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"798:3:100","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":31267,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"802:6:100","memberName":"decode","nodeType":"MemberAccess","src":"798:10:100","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":31282,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"798:81:100","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint96_$_t_struct$_Params_$22230_memory_ptr_$","typeString":"tuple(uint256,uint256,uint256,uint40,uint96,struct Policy.Params memory)"}},"functionReturnParameters":31265,"id":31283,"nodeType":"Return","src":"791:88:100"}]},"documentation":{"id":31245,"nodeType":"StructuredDocumentation","src":"464:28:100","text":"@inheritdoc IUnderwriter"},"functionSelector":"ba097a2a","id":31285,"implemented":true,"kind":"function","modifiers":[],"name":"priceNewPolicy","nameLocation":"504:14:100","nodeType":"FunctionDefinition","overrides":{"id":31251,"nodeType":"OverrideSpecifier","overrides":[],"src":"601:8:100"},"parameters":{"id":31250,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31247,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":31285,"src":"524:7:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":31246,"name":"address","nodeType":"ElementaryTypeName","src":"524:7:100","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":31249,"mutability":"mutable","name":"inputData","nameLocation":"561:9:100","nodeType":"VariableDeclaration","scope":31285,"src":"546:24:100","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":31248,"name":"bytes","nodeType":"ElementaryTypeName","src":"546:5:100","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"518:56:100"},"returnParameters":{"id":31265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31253,"mutability":"mutable","name":"payout","nameLocation":"638:6:100","nodeType":"VariableDeclaration","scope":31285,"src":"630:14:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31252,"name":"uint256","nodeType":"ElementaryTypeName","src":"630:7:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31255,"mutability":"mutable","name":"premium","nameLocation":"660:7:100","nodeType":"VariableDeclaration","scope":31285,"src":"652:15:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31254,"name":"uint256","nodeType":"ElementaryTypeName","src":"652:7:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31257,"mutability":"mutable","name":"lossProb","nameLocation":"683:8:100","nodeType":"VariableDeclaration","scope":31285,"src":"675:16:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31256,"name":"uint256","nodeType":"ElementaryTypeName","src":"675:7:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31259,"mutability":"mutable","name":"expiration","nameLocation":"706:10:100","nodeType":"VariableDeclaration","scope":31285,"src":"699:17:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":31258,"name":"uint40","nodeType":"ElementaryTypeName","src":"699:6:100","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":31261,"mutability":"mutable","name":"internalId","nameLocation":"731:10:100","nodeType":"VariableDeclaration","scope":31285,"src":"724:17:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":31260,"name":"uint96","nodeType":"ElementaryTypeName","src":"724:6:100","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":31264,"mutability":"mutable","name":"params","nameLocation":"770:6:100","nodeType":"VariableDeclaration","scope":31285,"src":"749:27:100","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":31263,"nodeType":"UserDefinedTypeName","pathNode":{"id":31262,"name":"Policy.Params","nameLocations":["749:6:100","756:6:100"],"nodeType":"IdentifierPath","referencedDeclaration":22230,"src":"749:13:100"},"referencedDeclaration":22230,"src":"749:13:100","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"src":"622:160:100"},"scope":31405,"src":"495:389:100","stateMutability":"pure","virtual":false,"visibility":"external"},{"baseFunctions":[29345],"body":{"id":31330,"nodeType":"Block","src":"1259:118:100","statements":[{"expression":{"arguments":[{"id":31312,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31290,"src":"1283:9:100","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"components":[{"expression":{"id":31313,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"1295:6:100","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":31314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1302:10:100","memberName":"PolicyData","nodeType":"MemberAccess","referencedDeclaration":22256,"src":"1295:17:100","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_PolicyData_$22256_storage_ptr_$","typeString":"type(struct Policy.PolicyData storage pointer)"}},{"id":31316,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1314:7:100","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31315,"name":"uint256","nodeType":"ElementaryTypeName","src":"1314:7:100","typeDescriptions":{}}},{"id":31318,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1323:7:100","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31317,"name":"uint256","nodeType":"ElementaryTypeName","src":"1323:7:100","typeDescriptions":{}}},{"id":31320,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1332:7:100","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31319,"name":"uint256","nodeType":"ElementaryTypeName","src":"1332:7:100","typeDescriptions":{}}},{"id":31322,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1341:6:100","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":31321,"name":"uint40","nodeType":"ElementaryTypeName","src":"1341:6:100","typeDescriptions":{}}},{"id":31324,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1349:6:100","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":31323,"name":"uint96","nodeType":"ElementaryTypeName","src":"1349:6:100","typeDescriptions":{}}},{"expression":{"id":31325,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"1357:6:100","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":31326,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1364:6:100","memberName":"Params","nodeType":"MemberAccess","referencedDeclaration":22230,"src":"1357:13:100","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Params_$22230_storage_ptr_$","typeString":"type(struct Policy.Params storage pointer)"}}],"id":31327,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1294:77:100","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_struct$_PolicyData_$22256_storage_ptr_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint40_$_$_t_type$_t_uint96_$_$_t_type$_t_struct$_Params_$22230_storage_ptr_$_$","typeString":"tuple(type(struct Policy.PolicyData storage pointer),type(uint256),type(uint256),type(uint256),type(uint40),type(uint96),type(struct Policy.Params storage pointer))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_tuple$_t_type$_t_struct$_PolicyData_$22256_storage_ptr_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint40_$_$_t_type$_t_uint96_$_$_t_type$_t_struct$_Params_$22230_storage_ptr_$_$","typeString":"tuple(type(struct Policy.PolicyData storage pointer),type(uint256),type(uint256),type(uint256),type(uint40),type(uint96),type(struct Policy.Params storage pointer))"}],"expression":{"id":31310,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1272:3:100","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":31311,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1276:6:100","memberName":"decode","nodeType":"MemberAccess","src":"1272:10:100","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":31328,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1272:100:100","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint96_$_t_struct$_Params_$22230_memory_ptr_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256,uint40,uint96,struct Policy.Params memory)"}},"functionReturnParameters":31309,"id":31329,"nodeType":"Return","src":"1265:107:100"}]},"documentation":{"id":31286,"nodeType":"StructuredDocumentation","src":"888:28:100","text":"@inheritdoc IUnderwriter"},"functionSelector":"9ba942d6","id":31331,"implemented":true,"kind":"function","modifiers":[],"name":"pricePolicyReplacement","nameLocation":"928:22:100","nodeType":"FunctionDefinition","overrides":{"id":31292,"nodeType":"OverrideSpecifier","overrides":[],"src":"1033:8:100"},"parameters":{"id":31291,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31288,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":31331,"src":"956:7:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":31287,"name":"address","nodeType":"ElementaryTypeName","src":"956:7:100","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":31290,"mutability":"mutable","name":"inputData","nameLocation":"993:9:100","nodeType":"VariableDeclaration","scope":31331,"src":"978:24:100","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":31289,"name":"bytes","nodeType":"ElementaryTypeName","src":"978:5:100","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"950:56:100"},"returnParameters":{"id":31309,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31295,"mutability":"mutable","name":"oldPolicy","nameLocation":"1087:9:100","nodeType":"VariableDeclaration","scope":31331,"src":"1062:34:100","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":31294,"nodeType":"UserDefinedTypeName","pathNode":{"id":31293,"name":"Policy.PolicyData","nameLocations":["1062:6:100","1069:10:100"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"1062:17:100"},"referencedDeclaration":22256,"src":"1062:17:100","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":31297,"mutability":"mutable","name":"payout","nameLocation":"1112:6:100","nodeType":"VariableDeclaration","scope":31331,"src":"1104:14:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31296,"name":"uint256","nodeType":"ElementaryTypeName","src":"1104:7:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31299,"mutability":"mutable","name":"premium","nameLocation":"1134:7:100","nodeType":"VariableDeclaration","scope":31331,"src":"1126:15:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31298,"name":"uint256","nodeType":"ElementaryTypeName","src":"1126:7:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31301,"mutability":"mutable","name":"lossProb","nameLocation":"1157:8:100","nodeType":"VariableDeclaration","scope":31331,"src":"1149:16:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31300,"name":"uint256","nodeType":"ElementaryTypeName","src":"1149:7:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31303,"mutability":"mutable","name":"expiration","nameLocation":"1180:10:100","nodeType":"VariableDeclaration","scope":31331,"src":"1173:17:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":31302,"name":"uint40","nodeType":"ElementaryTypeName","src":"1173:6:100","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":31305,"mutability":"mutable","name":"internalId","nameLocation":"1205:10:100","nodeType":"VariableDeclaration","scope":31331,"src":"1198:17:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":31304,"name":"uint96","nodeType":"ElementaryTypeName","src":"1198:6:100","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":31308,"mutability":"mutable","name":"params","nameLocation":"1244:6:100","nodeType":"VariableDeclaration","scope":31331,"src":"1223:27:100","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":31307,"nodeType":"UserDefinedTypeName","pathNode":{"id":31306,"name":"Policy.Params","nameLocations":["1223:6:100","1230:6:100"],"nodeType":"IdentifierPath","referencedDeclaration":22230,"src":"1223:13:100"},"referencedDeclaration":22230,"src":"1223:13:100","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$22230_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"src":"1054:202:100"},"scope":31405,"src":"919:458:100","stateMutability":"pure","virtual":false,"visibility":"external"},{"baseFunctions":[29362],"body":{"id":31403,"nodeType":"Block","src":"1691:392:100","statements":[{"expression":{"id":31367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":31349,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31341,"src":"1698:14:100","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},{"id":31350,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31343,"src":"1714:17:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":31351,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31345,"src":"1733:11:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":31352,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31347,"src":"1746:11:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":31353,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"1697:61:100","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":31356,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31336,"src":"1779:9:100","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"components":[{"expression":{"id":31357,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"1797:6:100","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$22826_$","typeString":"type(library Policy)"}},"id":31358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1804:10:100","memberName":"PolicyData","nodeType":"MemberAccess","referencedDeclaration":22256,"src":"1797:17:100","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_PolicyData_$22256_storage_ptr_$","typeString":"type(struct Policy.PolicyData storage pointer)"}},{"id":31360,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1816:7:100","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31359,"name":"uint256","nodeType":"ElementaryTypeName","src":"1816:7:100","typeDescriptions":{}}},{"id":31362,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1825:7:100","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31361,"name":"uint256","nodeType":"ElementaryTypeName","src":"1825:7:100","typeDescriptions":{}}},{"id":31364,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1834:7:100","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31363,"name":"uint256","nodeType":"ElementaryTypeName","src":"1834:7:100","typeDescriptions":{}}}],"id":31365,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1796:46:100","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_struct$_PolicyData_$22256_storage_ptr_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(struct Policy.PolicyData storage pointer),type(uint256),type(uint256),type(uint256))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_tuple$_t_type$_t_struct$_PolicyData_$22256_storage_ptr_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(struct Policy.PolicyData storage pointer),type(uint256),type(uint256),type(uint256))"}],"expression":{"id":31354,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1761:3:100","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":31355,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1765:6:100","memberName":"decode","nodeType":"MemberAccess","src":"1761:10:100","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":31366,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1761:87:100","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$22256_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256)"}},"src":"1697:151:100","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":31368,"nodeType":"ExpressionStatement","src":"1697:151:100"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31369,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31345,"src":"1858:11:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":31372,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1878:7:100","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31371,"name":"uint256","nodeType":"ElementaryTypeName","src":"1878:7:100","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":31370,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1873:4:100","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":31373,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1873:13:100","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":31374,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1887:3:100","memberName":"max","nodeType":"MemberAccess","src":"1873:17:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1858:32:100","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":31385,"nodeType":"IfStatement","src":"1854:109:100","trueBody":{"expression":{"id":31383,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":31376,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31345,"src":"1892:11:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":31377,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31341,"src":"1906:14:100","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":31378,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1921:5:100","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":22249,"src":"1906:20:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":31379,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31341,"src":"1929:14:100","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":31380,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1944:17:100","memberName":"jrAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":22661,"src":"1929:32:100","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":31381,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1929:34:100","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1906:57:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1892:71:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31384,"nodeType":"ExpressionStatement","src":"1892:71:100"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31392,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31386,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31347,"src":"1973:11:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":31389,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1993:7:100","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31388,"name":"uint256","nodeType":"ElementaryTypeName","src":"1993:7:100","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":31387,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1988:4:100","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":31390,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1988:13:100","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":31391,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2002:3:100","memberName":"max","nodeType":"MemberAccess","src":"1988:17:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1973:32:100","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":31402,"nodeType":"IfStatement","src":"1969:109:100","trueBody":{"expression":{"id":31400,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":31393,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31347,"src":"2007:11:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":31394,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31341,"src":"2021:14:100","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":31395,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2036:5:100","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":22251,"src":"2021:20:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":31396,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31341,"src":"2044:14:100","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":31397,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2059:17:100","memberName":"srAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":22711,"src":"2044:32:100","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$22256_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$22256_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":31398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2044:34:100","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2021:57:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2007:71:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31401,"nodeType":"ExpressionStatement","src":"2007:71:100"}}]},"documentation":{"id":31332,"nodeType":"StructuredDocumentation","src":"1381:28:100","text":"@inheritdoc IUnderwriter"},"functionSelector":"32f857fa","id":31404,"implemented":true,"kind":"function","modifiers":[],"name":"pricePolicyCancellation","nameLocation":"1421:23:100","nodeType":"FunctionDefinition","overrides":{"id":31338,"nodeType":"OverrideSpecifier","overrides":[],"src":"1527:8:100"},"parameters":{"id":31337,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31334,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":31404,"src":"1450:7:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":31333,"name":"address","nodeType":"ElementaryTypeName","src":"1450:7:100","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":31336,"mutability":"mutable","name":"inputData","nameLocation":"1487:9:100","nodeType":"VariableDeclaration","scope":31404,"src":"1472:24:100","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":31335,"name":"bytes","nodeType":"ElementaryTypeName","src":"1472:5:100","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1444:56:100"},"returnParameters":{"id":31348,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31341,"mutability":"mutable","name":"policyToCancel","nameLocation":"1581:14:100","nodeType":"VariableDeclaration","scope":31404,"src":"1556:39:100","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":31340,"nodeType":"UserDefinedTypeName","pathNode":{"id":31339,"name":"Policy.PolicyData","nameLocations":["1556:6:100","1563:10:100"],"nodeType":"IdentifierPath","referencedDeclaration":22256,"src":"1556:17:100"},"referencedDeclaration":22256,"src":"1556:17:100","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$22256_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":31343,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"1611:17:100","nodeType":"VariableDeclaration","scope":31404,"src":"1603:25:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31342,"name":"uint256","nodeType":"ElementaryTypeName","src":"1603:7:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31345,"mutability":"mutable","name":"jrCocRefund","nameLocation":"1644:11:100","nodeType":"VariableDeclaration","scope":31404,"src":"1636:19:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31344,"name":"uint256","nodeType":"ElementaryTypeName","src":"1636:7:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31347,"mutability":"mutable","name":"srCocRefund","nameLocation":"1671:11:100","nodeType":"VariableDeclaration","scope":31404,"src":"1663:19:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31346,"name":"uint256","nodeType":"ElementaryTypeName","src":"1663:7:100","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1548:140:100"},"scope":31405,"src":"1412:671:100","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":31406,"src":"382:1703:100","usedErrors":[],"usedEvents":[]}],"src":"39:2047:100"},"id":100}},"contracts":{"@ensuro/access-managed-proxy/contracts/AMPUtils.sol":{"AMPUtils":{"abi":[{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"AccessManagedUnauthorized","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220706f85329afd92eb084fd58d0817ecdf5dc94acd4d44ef60bae0ab96e66cca3564736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH17 0x6F85329AFD92EB084FD58D0817ECDF5DC9 BLOBBASEFEE 0xCD 0x4D PREVRANDAO 0xEF PUSH1 0xBA RJUMP 0xAB96 DUPN 0x6C 0xCA CALLDATALOAD PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"394:3043:0:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;394:3043:0;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220706f85329afd92eb084fd58d0817ecdf5dc94acd4d44ef60bae0ab96e66cca3564736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH17 0x6F85329AFD92EB084FD58D0817ECDF5DC9 BLOBBASEFEE 0xCD 0x4D PREVRANDAO 0xEF PUSH1 0xBA RJUMP 0xAB96 DUPN 0x6C 0xCA CALLDATALOAD PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"394:3043:0:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"AccessManagedUnauthorized\",\"type\":\"error\"}],\"devdoc\":{\"author\":\"Ensuro\",\"details\":\"Utility functions for doing custom access control rules, for contracts deployed      with AccessManagedProxy\",\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"AccessManagedProxyStorageLocation\":{\"details\":\"Computed as: `keccak256(    abi.encode(uint256(keccak256(\\\"ensuro.storage.AccessManagedProxy\\\")) - 1) ) & ~bytes32(uint256(0xff))\"}},\"title\":\"AMPUtils\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/access-managed-proxy/contracts/AMPUtils.sol\":\"AMPUtils\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/access-managed-proxy/contracts/AMPUtils.sol\":{\"keccak256\":\"0x3f25097d759aa89ce9a7a94f98b854a3dc23c51f7f895b95a8d489e74d5f1d98\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://2912cf8c79b973d07fbb741e7d1048026f0a71489df2adf97552b83b23b427d7\",\"dweb:/ipfs/QmRTfFaqy72p4RfY99hKM1K9wH5kxaTnikH5VJjpL7K7sD\"]},\"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol\":{\"keccak256\":\"0xdd762bad2f6ad362f5a38fb333d2a953f6c9d0beea122dbaef0e333a7b83a054\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://a2bb86de08187cee5956393ca2cf096a09eb6ac694471e436ca12e377d97cb40\",\"dweb:/ipfs/Qmf6cNjug4swjsvTJYjbzhMMfAfSFdUuyJjkEf3b1cu2hn\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x71e3e350e83af0018a1683cc2ce4c13893cc01f78e5c9c305f6828608ffcfa18\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a7b521c9999007715c9bdedffaad2ef7d2ccfa07bca2a39ba9e0c2e8a944a63\",\"dweb:/ipfs/QmamPG6Y1p7iZh4cF8Hfp3oufowSRyB3S3DisTKkmVWSai\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol":{"AccessManagedProxy":{"abi":[{"inputs":[{"internalType":"address","name":"implementation","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"},{"internalType":"contract IAccessManager","name":"accessManager","type":"address"},{"internalType":"bytes4[]","name":"passThruMethods","type":"bytes4[]"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"authority","type":"address"}],"name":"AccessManagedInvalidAuthority","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"AccessManagedUnauthorized","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"authority","type":"address"}],"name":"AuthorityUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes4[]","name":"newPassThruMethods","type":"bytes4[]"}],"name":"PassThruMethodsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"ACCESS_MANAGER","outputs":[{"internalType":"contract IAccessManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PASS_THRU_METHODS","outputs":[{"internalType":"bytes4[]","name":"methods","type":"bytes4[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"authority","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_284":{"entryPoint":null,"id":284,"parameterSlots":4,"returnSlots":0},"@_372":{"entryPoint":null,"id":372,"parameterSlots":2,"returnSlots":0},"@_6597":{"entryPoint":null,"id":6597,"parameterSlots":2,"returnSlots":0},"@_checkNonPayable_6903":{"entryPoint":965,"id":6903,"parameterSlots":0,"returnSlots":0},"@_setImplementation_6683":{"entryPoint":686,"id":6683,"parameterSlots":1,"returnSlots":0},"@bubbleRevert_10900":{"entryPoint":1042,"id":10900,"parameterSlots":0,"returnSlots":0},"@delegatecallNoReturn_10862":{"entryPoint":998,"id":10862,"parameterSlots":2,"returnSlots":1},"@functionDelegateCall_9894":{"entryPoint":804,"id":9894,"parameterSlots":2,"returnSlots":1},"@getAccessManagedProxyStorage_33":{"entryPoint":null,"id":33,"parameterSlots":0,"returnSlots":1},"@getAddressSlot_11669":{"entryPoint":null,"id":11669,"parameterSlots":1,"returnSlots":1},"@returnDataSize_10886":{"entryPoint":null,"id":10886,"parameterSlots":0,"returnSlots":1},"@returnData_10894":{"entryPoint":1017,"id":10894,"parameterSlots":0,"returnSlots":1},"@setAccessManager_74":{"entryPoint":179,"id":74,"parameterSlots":1,"returnSlots":0},"@setPassThruMethods_137":{"entryPoint":334,"id":137,"parameterSlots":1,"returnSlots":0},"@upgradeToAndCall_6719":{"entryPoint":85,"id":6719,"parameterSlots":2,"returnSlots":0},"abi_decode_array_bytes4_dyn_fromMemory":{"entryPoint":1349,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_contract_IAccessManager_fromMemory":{"entryPoint":1333,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_addresst_bytes_memory_ptrt_contract$_IAccessManager_$6119t_array$_t_bytes4_$dyn_memory_ptr_fromMemory":{"entryPoint":1497,"id":null,"parameterSlots":2,"returnSlots":4},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_bytes4_$dyn_memory_ptr__to_t_array$_t_bytes4_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":1741,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_memory":{"entryPoint":1285,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x32":{"entryPoint":1721,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":1265,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":1242,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:3793:101","nodeType":"YulBlock","src":"0:3793:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"59:86:101","nodeType":"YulBlock","src":"59:86:101","statements":[{"body":{"nativeSrc":"123:16:101","nodeType":"YulBlock","src":"123:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:101","nodeType":"YulLiteral","src":"132:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:101","nodeType":"YulLiteral","src":"135:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:101","nodeType":"YulIdentifier","src":"125:6:101"},"nativeSrc":"125:12:101","nodeType":"YulFunctionCall","src":"125:12:101"},"nativeSrc":"125:12:101","nodeType":"YulExpressionStatement","src":"125:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"82:5:101","nodeType":"YulIdentifier","src":"82:5:101"},{"arguments":[{"name":"value","nativeSrc":"93:5:101","nodeType":"YulIdentifier","src":"93:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"108:3:101","nodeType":"YulLiteral","src":"108:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"113:1:101","nodeType":"YulLiteral","src":"113:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"104:3:101","nodeType":"YulIdentifier","src":"104:3:101"},"nativeSrc":"104:11:101","nodeType":"YulFunctionCall","src":"104:11:101"},{"kind":"number","nativeSrc":"117:1:101","nodeType":"YulLiteral","src":"117:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"100:3:101","nodeType":"YulIdentifier","src":"100:3:101"},"nativeSrc":"100:19:101","nodeType":"YulFunctionCall","src":"100:19:101"}],"functionName":{"name":"and","nativeSrc":"89:3:101","nodeType":"YulIdentifier","src":"89:3:101"},"nativeSrc":"89:31:101","nodeType":"YulFunctionCall","src":"89:31:101"}],"functionName":{"name":"eq","nativeSrc":"79:2:101","nodeType":"YulIdentifier","src":"79:2:101"},"nativeSrc":"79:42:101","nodeType":"YulFunctionCall","src":"79:42:101"}],"functionName":{"name":"iszero","nativeSrc":"72:6:101","nodeType":"YulIdentifier","src":"72:6:101"},"nativeSrc":"72:50:101","nodeType":"YulFunctionCall","src":"72:50:101"},"nativeSrc":"69:70:101","nodeType":"YulIf","src":"69:70:101"}]},"name":"validator_revert_address","nativeSrc":"14:131:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"48:5:101","nodeType":"YulTypedName","src":"48:5:101","type":""}],"src":"14:131:101"},{"body":{"nativeSrc":"182:95:101","nodeType":"YulBlock","src":"182:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"199:1:101","nodeType":"YulLiteral","src":"199:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"206:3:101","nodeType":"YulLiteral","src":"206:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"211:10:101","nodeType":"YulLiteral","src":"211:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"202:3:101","nodeType":"YulIdentifier","src":"202:3:101"},"nativeSrc":"202:20:101","nodeType":"YulFunctionCall","src":"202:20:101"}],"functionName":{"name":"mstore","nativeSrc":"192:6:101","nodeType":"YulIdentifier","src":"192:6:101"},"nativeSrc":"192:31:101","nodeType":"YulFunctionCall","src":"192:31:101"},"nativeSrc":"192:31:101","nodeType":"YulExpressionStatement","src":"192:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"239:1:101","nodeType":"YulLiteral","src":"239:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"242:4:101","nodeType":"YulLiteral","src":"242:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"232:6:101","nodeType":"YulIdentifier","src":"232:6:101"},"nativeSrc":"232:15:101","nodeType":"YulFunctionCall","src":"232:15:101"},"nativeSrc":"232:15:101","nodeType":"YulExpressionStatement","src":"232:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:101","nodeType":"YulLiteral","src":"263:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"266:4:101","nodeType":"YulLiteral","src":"266:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"256:6:101","nodeType":"YulIdentifier","src":"256:6:101"},"nativeSrc":"256:15:101","nodeType":"YulFunctionCall","src":"256:15:101"},"nativeSrc":"256:15:101","nodeType":"YulExpressionStatement","src":"256:15:101"}]},"name":"panic_error_0x41","nativeSrc":"150:127:101","nodeType":"YulFunctionDefinition","src":"150:127:101"},{"body":{"nativeSrc":"327:230:101","nodeType":"YulBlock","src":"327:230:101","statements":[{"nativeSrc":"337:19:101","nodeType":"YulAssignment","src":"337:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"353:2:101","nodeType":"YulLiteral","src":"353:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"347:5:101","nodeType":"YulIdentifier","src":"347:5:101"},"nativeSrc":"347:9:101","nodeType":"YulFunctionCall","src":"347:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"337:6:101","nodeType":"YulIdentifier","src":"337:6:101"}]},{"nativeSrc":"365:58:101","nodeType":"YulVariableDeclaration","src":"365:58:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"387:6:101","nodeType":"YulIdentifier","src":"387:6:101"},{"arguments":[{"arguments":[{"name":"size","nativeSrc":"403:4:101","nodeType":"YulIdentifier","src":"403:4:101"},{"kind":"number","nativeSrc":"409:2:101","nodeType":"YulLiteral","src":"409:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"399:3:101","nodeType":"YulIdentifier","src":"399:3:101"},"nativeSrc":"399:13:101","nodeType":"YulFunctionCall","src":"399:13:101"},{"arguments":[{"kind":"number","nativeSrc":"418:2:101","nodeType":"YulLiteral","src":"418:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"414:3:101","nodeType":"YulIdentifier","src":"414:3:101"},"nativeSrc":"414:7:101","nodeType":"YulFunctionCall","src":"414:7:101"}],"functionName":{"name":"and","nativeSrc":"395:3:101","nodeType":"YulIdentifier","src":"395:3:101"},"nativeSrc":"395:27:101","nodeType":"YulFunctionCall","src":"395:27:101"}],"functionName":{"name":"add","nativeSrc":"383:3:101","nodeType":"YulIdentifier","src":"383:3:101"},"nativeSrc":"383:40:101","nodeType":"YulFunctionCall","src":"383:40:101"},"variables":[{"name":"newFreePtr","nativeSrc":"369:10:101","nodeType":"YulTypedName","src":"369:10:101","type":""}]},{"body":{"nativeSrc":"498:22:101","nodeType":"YulBlock","src":"498:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"500:16:101","nodeType":"YulIdentifier","src":"500:16:101"},"nativeSrc":"500:18:101","nodeType":"YulFunctionCall","src":"500:18:101"},"nativeSrc":"500:18:101","nodeType":"YulExpressionStatement","src":"500:18:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"441:10:101","nodeType":"YulIdentifier","src":"441:10:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"461:2:101","nodeType":"YulLiteral","src":"461:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"465:1:101","nodeType":"YulLiteral","src":"465:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"457:3:101","nodeType":"YulIdentifier","src":"457:3:101"},"nativeSrc":"457:10:101","nodeType":"YulFunctionCall","src":"457:10:101"},{"kind":"number","nativeSrc":"469:1:101","nodeType":"YulLiteral","src":"469:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"453:3:101","nodeType":"YulIdentifier","src":"453:3:101"},"nativeSrc":"453:18:101","nodeType":"YulFunctionCall","src":"453:18:101"}],"functionName":{"name":"gt","nativeSrc":"438:2:101","nodeType":"YulIdentifier","src":"438:2:101"},"nativeSrc":"438:34:101","nodeType":"YulFunctionCall","src":"438:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"477:10:101","nodeType":"YulIdentifier","src":"477:10:101"},{"name":"memPtr","nativeSrc":"489:6:101","nodeType":"YulIdentifier","src":"489:6:101"}],"functionName":{"name":"lt","nativeSrc":"474:2:101","nodeType":"YulIdentifier","src":"474:2:101"},"nativeSrc":"474:22:101","nodeType":"YulFunctionCall","src":"474:22:101"}],"functionName":{"name":"or","nativeSrc":"435:2:101","nodeType":"YulIdentifier","src":"435:2:101"},"nativeSrc":"435:62:101","nodeType":"YulFunctionCall","src":"435:62:101"},"nativeSrc":"432:88:101","nodeType":"YulIf","src":"432:88:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"536:2:101","nodeType":"YulLiteral","src":"536:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"540:10:101","nodeType":"YulIdentifier","src":"540:10:101"}],"functionName":{"name":"mstore","nativeSrc":"529:6:101","nodeType":"YulIdentifier","src":"529:6:101"},"nativeSrc":"529:22:101","nodeType":"YulFunctionCall","src":"529:22:101"},"nativeSrc":"529:22:101","nodeType":"YulExpressionStatement","src":"529:22:101"}]},"name":"allocate_memory","nativeSrc":"282:275:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nativeSrc":"307:4:101","nodeType":"YulTypedName","src":"307:4:101","type":""}],"returnVariables":[{"name":"memPtr","nativeSrc":"316:6:101","nodeType":"YulTypedName","src":"316:6:101","type":""}],"src":"282:275:101"},{"body":{"nativeSrc":"638:78:101","nodeType":"YulBlock","src":"638:78:101","statements":[{"nativeSrc":"648:22:101","nodeType":"YulAssignment","src":"648:22:101","value":{"arguments":[{"name":"offset","nativeSrc":"663:6:101","nodeType":"YulIdentifier","src":"663:6:101"}],"functionName":{"name":"mload","nativeSrc":"657:5:101","nodeType":"YulIdentifier","src":"657:5:101"},"nativeSrc":"657:13:101","nodeType":"YulFunctionCall","src":"657:13:101"},"variableNames":[{"name":"value","nativeSrc":"648:5:101","nodeType":"YulIdentifier","src":"648:5:101"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"704:5:101","nodeType":"YulIdentifier","src":"704:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"679:24:101","nodeType":"YulIdentifier","src":"679:24:101"},"nativeSrc":"679:31:101","nodeType":"YulFunctionCall","src":"679:31:101"},"nativeSrc":"679:31:101","nodeType":"YulExpressionStatement","src":"679:31:101"}]},"name":"abi_decode_contract_IAccessManager_fromMemory","nativeSrc":"562:154:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"617:6:101","nodeType":"YulTypedName","src":"617:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"628:5:101","nodeType":"YulTypedName","src":"628:5:101","type":""}],"src":"562:154:101"},{"body":{"nativeSrc":"795:758:101","nodeType":"YulBlock","src":"795:758:101","statements":[{"body":{"nativeSrc":"844:16:101","nodeType":"YulBlock","src":"844:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"853:1:101","nodeType":"YulLiteral","src":"853:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"856:1:101","nodeType":"YulLiteral","src":"856:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"846:6:101","nodeType":"YulIdentifier","src":"846:6:101"},"nativeSrc":"846:12:101","nodeType":"YulFunctionCall","src":"846:12:101"},"nativeSrc":"846:12:101","nodeType":"YulExpressionStatement","src":"846:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"823:6:101","nodeType":"YulIdentifier","src":"823:6:101"},{"kind":"number","nativeSrc":"831:4:101","nodeType":"YulLiteral","src":"831:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"819:3:101","nodeType":"YulIdentifier","src":"819:3:101"},"nativeSrc":"819:17:101","nodeType":"YulFunctionCall","src":"819:17:101"},{"name":"end","nativeSrc":"838:3:101","nodeType":"YulIdentifier","src":"838:3:101"}],"functionName":{"name":"slt","nativeSrc":"815:3:101","nodeType":"YulIdentifier","src":"815:3:101"},"nativeSrc":"815:27:101","nodeType":"YulFunctionCall","src":"815:27:101"}],"functionName":{"name":"iszero","nativeSrc":"808:6:101","nodeType":"YulIdentifier","src":"808:6:101"},"nativeSrc":"808:35:101","nodeType":"YulFunctionCall","src":"808:35:101"},"nativeSrc":"805:55:101","nodeType":"YulIf","src":"805:55:101"},{"nativeSrc":"869:27:101","nodeType":"YulVariableDeclaration","src":"869:27:101","value":{"arguments":[{"name":"offset","nativeSrc":"889:6:101","nodeType":"YulIdentifier","src":"889:6:101"}],"functionName":{"name":"mload","nativeSrc":"883:5:101","nodeType":"YulIdentifier","src":"883:5:101"},"nativeSrc":"883:13:101","nodeType":"YulFunctionCall","src":"883:13:101"},"variables":[{"name":"length","nativeSrc":"873:6:101","nodeType":"YulTypedName","src":"873:6:101","type":""}]},{"body":{"nativeSrc":"939:22:101","nodeType":"YulBlock","src":"939:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"941:16:101","nodeType":"YulIdentifier","src":"941:16:101"},"nativeSrc":"941:18:101","nodeType":"YulFunctionCall","src":"941:18:101"},"nativeSrc":"941:18:101","nodeType":"YulExpressionStatement","src":"941:18:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"911:6:101","nodeType":"YulIdentifier","src":"911:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"927:2:101","nodeType":"YulLiteral","src":"927:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"931:1:101","nodeType":"YulLiteral","src":"931:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"923:3:101","nodeType":"YulIdentifier","src":"923:3:101"},"nativeSrc":"923:10:101","nodeType":"YulFunctionCall","src":"923:10:101"},{"kind":"number","nativeSrc":"935:1:101","nodeType":"YulLiteral","src":"935:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"919:3:101","nodeType":"YulIdentifier","src":"919:3:101"},"nativeSrc":"919:18:101","nodeType":"YulFunctionCall","src":"919:18:101"}],"functionName":{"name":"gt","nativeSrc":"908:2:101","nodeType":"YulIdentifier","src":"908:2:101"},"nativeSrc":"908:30:101","nodeType":"YulFunctionCall","src":"908:30:101"},"nativeSrc":"905:56:101","nodeType":"YulIf","src":"905:56:101"},{"nativeSrc":"970:24:101","nodeType":"YulVariableDeclaration","src":"970:24:101","value":{"arguments":[{"kind":"number","nativeSrc":"984:1:101","nodeType":"YulLiteral","src":"984:1:101","type":"","value":"5"},{"name":"length","nativeSrc":"987:6:101","nodeType":"YulIdentifier","src":"987:6:101"}],"functionName":{"name":"shl","nativeSrc":"980:3:101","nodeType":"YulIdentifier","src":"980:3:101"},"nativeSrc":"980:14:101","nodeType":"YulFunctionCall","src":"980:14:101"},"variables":[{"name":"_1","nativeSrc":"974:2:101","nodeType":"YulTypedName","src":"974:2:101","type":""}]},{"nativeSrc":"1003:41:101","nodeType":"YulVariableDeclaration","src":"1003:41:101","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1034:2:101","nodeType":"YulIdentifier","src":"1034:2:101"},{"kind":"number","nativeSrc":"1038:4:101","nodeType":"YulLiteral","src":"1038:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1030:3:101","nodeType":"YulIdentifier","src":"1030:3:101"},"nativeSrc":"1030:13:101","nodeType":"YulFunctionCall","src":"1030:13:101"}],"functionName":{"name":"allocate_memory","nativeSrc":"1014:15:101","nodeType":"YulIdentifier","src":"1014:15:101"},"nativeSrc":"1014:30:101","nodeType":"YulFunctionCall","src":"1014:30:101"},"variables":[{"name":"dst","nativeSrc":"1007:3:101","nodeType":"YulTypedName","src":"1007:3:101","type":""}]},{"nativeSrc":"1053:18:101","nodeType":"YulVariableDeclaration","src":"1053:18:101","value":{"name":"dst","nativeSrc":"1068:3:101","nodeType":"YulIdentifier","src":"1068:3:101"},"variables":[{"name":"array_1","nativeSrc":"1057:7:101","nodeType":"YulTypedName","src":"1057:7:101","type":""}]},{"expression":{"arguments":[{"name":"dst","nativeSrc":"1087:3:101","nodeType":"YulIdentifier","src":"1087:3:101"},{"name":"length","nativeSrc":"1092:6:101","nodeType":"YulIdentifier","src":"1092:6:101"}],"functionName":{"name":"mstore","nativeSrc":"1080:6:101","nodeType":"YulIdentifier","src":"1080:6:101"},"nativeSrc":"1080:19:101","nodeType":"YulFunctionCall","src":"1080:19:101"},"nativeSrc":"1080:19:101","nodeType":"YulExpressionStatement","src":"1080:19:101"},{"nativeSrc":"1108:21:101","nodeType":"YulAssignment","src":"1108:21:101","value":{"arguments":[{"name":"dst","nativeSrc":"1119:3:101","nodeType":"YulIdentifier","src":"1119:3:101"},{"kind":"number","nativeSrc":"1124:4:101","nodeType":"YulLiteral","src":"1124:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1115:3:101","nodeType":"YulIdentifier","src":"1115:3:101"},"nativeSrc":"1115:14:101","nodeType":"YulFunctionCall","src":"1115:14:101"},"variableNames":[{"name":"dst","nativeSrc":"1108:3:101","nodeType":"YulIdentifier","src":"1108:3:101"}]},{"nativeSrc":"1138:40:101","nodeType":"YulVariableDeclaration","src":"1138:40:101","value":{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"1160:6:101","nodeType":"YulIdentifier","src":"1160:6:101"},{"name":"_1","nativeSrc":"1168:2:101","nodeType":"YulIdentifier","src":"1168:2:101"}],"functionName":{"name":"add","nativeSrc":"1156:3:101","nodeType":"YulIdentifier","src":"1156:3:101"},"nativeSrc":"1156:15:101","nodeType":"YulFunctionCall","src":"1156:15:101"},{"kind":"number","nativeSrc":"1173:4:101","nodeType":"YulLiteral","src":"1173:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1152:3:101","nodeType":"YulIdentifier","src":"1152:3:101"},"nativeSrc":"1152:26:101","nodeType":"YulFunctionCall","src":"1152:26:101"},"variables":[{"name":"srcEnd","nativeSrc":"1142:6:101","nodeType":"YulTypedName","src":"1142:6:101","type":""}]},{"body":{"nativeSrc":"1206:16:101","nodeType":"YulBlock","src":"1206:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1215:1:101","nodeType":"YulLiteral","src":"1215:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1218:1:101","nodeType":"YulLiteral","src":"1218:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1208:6:101","nodeType":"YulIdentifier","src":"1208:6:101"},"nativeSrc":"1208:12:101","nodeType":"YulFunctionCall","src":"1208:12:101"},"nativeSrc":"1208:12:101","nodeType":"YulExpressionStatement","src":"1208:12:101"}]},"condition":{"arguments":[{"name":"srcEnd","nativeSrc":"1193:6:101","nodeType":"YulIdentifier","src":"1193:6:101"},{"name":"end","nativeSrc":"1201:3:101","nodeType":"YulIdentifier","src":"1201:3:101"}],"functionName":{"name":"gt","nativeSrc":"1190:2:101","nodeType":"YulIdentifier","src":"1190:2:101"},"nativeSrc":"1190:15:101","nodeType":"YulFunctionCall","src":"1190:15:101"},"nativeSrc":"1187:35:101","nodeType":"YulIf","src":"1187:35:101"},{"nativeSrc":"1231:28:101","nodeType":"YulVariableDeclaration","src":"1231:28:101","value":{"arguments":[{"name":"offset","nativeSrc":"1246:6:101","nodeType":"YulIdentifier","src":"1246:6:101"},{"kind":"number","nativeSrc":"1254:4:101","nodeType":"YulLiteral","src":"1254:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1242:3:101","nodeType":"YulIdentifier","src":"1242:3:101"},"nativeSrc":"1242:17:101","nodeType":"YulFunctionCall","src":"1242:17:101"},"variables":[{"name":"src","nativeSrc":"1235:3:101","nodeType":"YulTypedName","src":"1235:3:101","type":""}]},{"body":{"nativeSrc":"1326:196:101","nodeType":"YulBlock","src":"1326:196:101","statements":[{"nativeSrc":"1340:23:101","nodeType":"YulVariableDeclaration","src":"1340:23:101","value":{"arguments":[{"name":"src","nativeSrc":"1359:3:101","nodeType":"YulIdentifier","src":"1359:3:101"}],"functionName":{"name":"mload","nativeSrc":"1353:5:101","nodeType":"YulIdentifier","src":"1353:5:101"},"nativeSrc":"1353:10:101","nodeType":"YulFunctionCall","src":"1353:10:101"},"variables":[{"name":"value","nativeSrc":"1344:5:101","nodeType":"YulTypedName","src":"1344:5:101","type":""}]},{"body":{"nativeSrc":"1431:16:101","nodeType":"YulBlock","src":"1431:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1440:1:101","nodeType":"YulLiteral","src":"1440:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1443:1:101","nodeType":"YulLiteral","src":"1443:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1433:6:101","nodeType":"YulIdentifier","src":"1433:6:101"},"nativeSrc":"1433:12:101","nodeType":"YulFunctionCall","src":"1433:12:101"},"nativeSrc":"1433:12:101","nodeType":"YulExpressionStatement","src":"1433:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1389:5:101","nodeType":"YulIdentifier","src":"1389:5:101"},{"arguments":[{"name":"value","nativeSrc":"1400:5:101","nodeType":"YulIdentifier","src":"1400:5:101"},{"arguments":[{"kind":"number","nativeSrc":"1411:3:101","nodeType":"YulLiteral","src":"1411:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"1416:10:101","nodeType":"YulLiteral","src":"1416:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"1407:3:101","nodeType":"YulIdentifier","src":"1407:3:101"},"nativeSrc":"1407:20:101","nodeType":"YulFunctionCall","src":"1407:20:101"}],"functionName":{"name":"and","nativeSrc":"1396:3:101","nodeType":"YulIdentifier","src":"1396:3:101"},"nativeSrc":"1396:32:101","nodeType":"YulFunctionCall","src":"1396:32:101"}],"functionName":{"name":"eq","nativeSrc":"1386:2:101","nodeType":"YulIdentifier","src":"1386:2:101"},"nativeSrc":"1386:43:101","nodeType":"YulFunctionCall","src":"1386:43:101"}],"functionName":{"name":"iszero","nativeSrc":"1379:6:101","nodeType":"YulIdentifier","src":"1379:6:101"},"nativeSrc":"1379:51:101","nodeType":"YulFunctionCall","src":"1379:51:101"},"nativeSrc":"1376:71:101","nodeType":"YulIf","src":"1376:71:101"},{"expression":{"arguments":[{"name":"dst","nativeSrc":"1467:3:101","nodeType":"YulIdentifier","src":"1467:3:101"},{"name":"value","nativeSrc":"1472:5:101","nodeType":"YulIdentifier","src":"1472:5:101"}],"functionName":{"name":"mstore","nativeSrc":"1460:6:101","nodeType":"YulIdentifier","src":"1460:6:101"},"nativeSrc":"1460:18:101","nodeType":"YulFunctionCall","src":"1460:18:101"},"nativeSrc":"1460:18:101","nodeType":"YulExpressionStatement","src":"1460:18:101"},{"nativeSrc":"1491:21:101","nodeType":"YulAssignment","src":"1491:21:101","value":{"arguments":[{"name":"dst","nativeSrc":"1502:3:101","nodeType":"YulIdentifier","src":"1502:3:101"},{"kind":"number","nativeSrc":"1507:4:101","nodeType":"YulLiteral","src":"1507:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1498:3:101","nodeType":"YulIdentifier","src":"1498:3:101"},"nativeSrc":"1498:14:101","nodeType":"YulFunctionCall","src":"1498:14:101"},"variableNames":[{"name":"dst","nativeSrc":"1491:3:101","nodeType":"YulIdentifier","src":"1491:3:101"}]}]},"condition":{"arguments":[{"name":"src","nativeSrc":"1279:3:101","nodeType":"YulIdentifier","src":"1279:3:101"},{"name":"srcEnd","nativeSrc":"1284:6:101","nodeType":"YulIdentifier","src":"1284:6:101"}],"functionName":{"name":"lt","nativeSrc":"1276:2:101","nodeType":"YulIdentifier","src":"1276:2:101"},"nativeSrc":"1276:15:101","nodeType":"YulFunctionCall","src":"1276:15:101"},"nativeSrc":"1268:254:101","nodeType":"YulForLoop","post":{"nativeSrc":"1292:25:101","nodeType":"YulBlock","src":"1292:25:101","statements":[{"nativeSrc":"1294:21:101","nodeType":"YulAssignment","src":"1294:21:101","value":{"arguments":[{"name":"src","nativeSrc":"1305:3:101","nodeType":"YulIdentifier","src":"1305:3:101"},{"kind":"number","nativeSrc":"1310:4:101","nodeType":"YulLiteral","src":"1310:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1301:3:101","nodeType":"YulIdentifier","src":"1301:3:101"},"nativeSrc":"1301:14:101","nodeType":"YulFunctionCall","src":"1301:14:101"},"variableNames":[{"name":"src","nativeSrc":"1294:3:101","nodeType":"YulIdentifier","src":"1294:3:101"}]}]},"pre":{"nativeSrc":"1272:3:101","nodeType":"YulBlock","src":"1272:3:101","statements":[]},"src":"1268:254:101"},{"nativeSrc":"1531:16:101","nodeType":"YulAssignment","src":"1531:16:101","value":{"name":"array_1","nativeSrc":"1540:7:101","nodeType":"YulIdentifier","src":"1540:7:101"},"variableNames":[{"name":"array","nativeSrc":"1531:5:101","nodeType":"YulIdentifier","src":"1531:5:101"}]}]},"name":"abi_decode_array_bytes4_dyn_fromMemory","nativeSrc":"721:832:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"769:6:101","nodeType":"YulTypedName","src":"769:6:101","type":""},{"name":"end","nativeSrc":"777:3:101","nodeType":"YulTypedName","src":"777:3:101","type":""}],"returnVariables":[{"name":"array","nativeSrc":"785:5:101","nodeType":"YulTypedName","src":"785:5:101","type":""}],"src":"721:832:101"},{"body":{"nativeSrc":"1746:1064:101","nodeType":"YulBlock","src":"1746:1064:101","statements":[{"body":{"nativeSrc":"1793:16:101","nodeType":"YulBlock","src":"1793:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1802:1:101","nodeType":"YulLiteral","src":"1802:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1805:1:101","nodeType":"YulLiteral","src":"1805:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1795:6:101","nodeType":"YulIdentifier","src":"1795:6:101"},"nativeSrc":"1795:12:101","nodeType":"YulFunctionCall","src":"1795:12:101"},"nativeSrc":"1795:12:101","nodeType":"YulExpressionStatement","src":"1795:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1767:7:101","nodeType":"YulIdentifier","src":"1767:7:101"},{"name":"headStart","nativeSrc":"1776:9:101","nodeType":"YulIdentifier","src":"1776:9:101"}],"functionName":{"name":"sub","nativeSrc":"1763:3:101","nodeType":"YulIdentifier","src":"1763:3:101"},"nativeSrc":"1763:23:101","nodeType":"YulFunctionCall","src":"1763:23:101"},{"kind":"number","nativeSrc":"1788:3:101","nodeType":"YulLiteral","src":"1788:3:101","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"1759:3:101","nodeType":"YulIdentifier","src":"1759:3:101"},"nativeSrc":"1759:33:101","nodeType":"YulFunctionCall","src":"1759:33:101"},"nativeSrc":"1756:53:101","nodeType":"YulIf","src":"1756:53:101"},{"nativeSrc":"1818:29:101","nodeType":"YulVariableDeclaration","src":"1818:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1837:9:101","nodeType":"YulIdentifier","src":"1837:9:101"}],"functionName":{"name":"mload","nativeSrc":"1831:5:101","nodeType":"YulIdentifier","src":"1831:5:101"},"nativeSrc":"1831:16:101","nodeType":"YulFunctionCall","src":"1831:16:101"},"variables":[{"name":"value","nativeSrc":"1822:5:101","nodeType":"YulTypedName","src":"1822:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1881:5:101","nodeType":"YulIdentifier","src":"1881:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"1856:24:101","nodeType":"YulIdentifier","src":"1856:24:101"},"nativeSrc":"1856:31:101","nodeType":"YulFunctionCall","src":"1856:31:101"},"nativeSrc":"1856:31:101","nodeType":"YulExpressionStatement","src":"1856:31:101"},{"nativeSrc":"1896:15:101","nodeType":"YulAssignment","src":"1896:15:101","value":{"name":"value","nativeSrc":"1906:5:101","nodeType":"YulIdentifier","src":"1906:5:101"},"variableNames":[{"name":"value0","nativeSrc":"1896:6:101","nodeType":"YulIdentifier","src":"1896:6:101"}]},{"nativeSrc":"1920:39:101","nodeType":"YulVariableDeclaration","src":"1920:39:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1944:9:101","nodeType":"YulIdentifier","src":"1944:9:101"},{"kind":"number","nativeSrc":"1955:2:101","nodeType":"YulLiteral","src":"1955:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1940:3:101","nodeType":"YulIdentifier","src":"1940:3:101"},"nativeSrc":"1940:18:101","nodeType":"YulFunctionCall","src":"1940:18:101"}],"functionName":{"name":"mload","nativeSrc":"1934:5:101","nodeType":"YulIdentifier","src":"1934:5:101"},"nativeSrc":"1934:25:101","nodeType":"YulFunctionCall","src":"1934:25:101"},"variables":[{"name":"offset","nativeSrc":"1924:6:101","nodeType":"YulTypedName","src":"1924:6:101","type":""}]},{"body":{"nativeSrc":"2002:16:101","nodeType":"YulBlock","src":"2002:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2011:1:101","nodeType":"YulLiteral","src":"2011:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2014:1:101","nodeType":"YulLiteral","src":"2014:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2004:6:101","nodeType":"YulIdentifier","src":"2004:6:101"},"nativeSrc":"2004:12:101","nodeType":"YulFunctionCall","src":"2004:12:101"},"nativeSrc":"2004:12:101","nodeType":"YulExpressionStatement","src":"2004:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1974:6:101","nodeType":"YulIdentifier","src":"1974:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1990:2:101","nodeType":"YulLiteral","src":"1990:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"1994:1:101","nodeType":"YulLiteral","src":"1994:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1986:3:101","nodeType":"YulIdentifier","src":"1986:3:101"},"nativeSrc":"1986:10:101","nodeType":"YulFunctionCall","src":"1986:10:101"},{"kind":"number","nativeSrc":"1998:1:101","nodeType":"YulLiteral","src":"1998:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1982:3:101","nodeType":"YulIdentifier","src":"1982:3:101"},"nativeSrc":"1982:18:101","nodeType":"YulFunctionCall","src":"1982:18:101"}],"functionName":{"name":"gt","nativeSrc":"1971:2:101","nodeType":"YulIdentifier","src":"1971:2:101"},"nativeSrc":"1971:30:101","nodeType":"YulFunctionCall","src":"1971:30:101"},"nativeSrc":"1968:50:101","nodeType":"YulIf","src":"1968:50:101"},{"nativeSrc":"2027:32:101","nodeType":"YulVariableDeclaration","src":"2027:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2041:9:101","nodeType":"YulIdentifier","src":"2041:9:101"},{"name":"offset","nativeSrc":"2052:6:101","nodeType":"YulIdentifier","src":"2052:6:101"}],"functionName":{"name":"add","nativeSrc":"2037:3:101","nodeType":"YulIdentifier","src":"2037:3:101"},"nativeSrc":"2037:22:101","nodeType":"YulFunctionCall","src":"2037:22:101"},"variables":[{"name":"_1","nativeSrc":"2031:2:101","nodeType":"YulTypedName","src":"2031:2:101","type":""}]},{"body":{"nativeSrc":"2107:16:101","nodeType":"YulBlock","src":"2107:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2116:1:101","nodeType":"YulLiteral","src":"2116:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2119:1:101","nodeType":"YulLiteral","src":"2119:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2109:6:101","nodeType":"YulIdentifier","src":"2109:6:101"},"nativeSrc":"2109:12:101","nodeType":"YulFunctionCall","src":"2109:12:101"},"nativeSrc":"2109:12:101","nodeType":"YulExpressionStatement","src":"2109:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"2086:2:101","nodeType":"YulIdentifier","src":"2086:2:101"},{"kind":"number","nativeSrc":"2090:4:101","nodeType":"YulLiteral","src":"2090:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2082:3:101","nodeType":"YulIdentifier","src":"2082:3:101"},"nativeSrc":"2082:13:101","nodeType":"YulFunctionCall","src":"2082:13:101"},{"name":"dataEnd","nativeSrc":"2097:7:101","nodeType":"YulIdentifier","src":"2097:7:101"}],"functionName":{"name":"slt","nativeSrc":"2078:3:101","nodeType":"YulIdentifier","src":"2078:3:101"},"nativeSrc":"2078:27:101","nodeType":"YulFunctionCall","src":"2078:27:101"}],"functionName":{"name":"iszero","nativeSrc":"2071:6:101","nodeType":"YulIdentifier","src":"2071:6:101"},"nativeSrc":"2071:35:101","nodeType":"YulFunctionCall","src":"2071:35:101"},"nativeSrc":"2068:55:101","nodeType":"YulIf","src":"2068:55:101"},{"nativeSrc":"2132:23:101","nodeType":"YulVariableDeclaration","src":"2132:23:101","value":{"arguments":[{"name":"_1","nativeSrc":"2152:2:101","nodeType":"YulIdentifier","src":"2152:2:101"}],"functionName":{"name":"mload","nativeSrc":"2146:5:101","nodeType":"YulIdentifier","src":"2146:5:101"},"nativeSrc":"2146:9:101","nodeType":"YulFunctionCall","src":"2146:9:101"},"variables":[{"name":"length","nativeSrc":"2136:6:101","nodeType":"YulTypedName","src":"2136:6:101","type":""}]},{"body":{"nativeSrc":"2198:22:101","nodeType":"YulBlock","src":"2198:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2200:16:101","nodeType":"YulIdentifier","src":"2200:16:101"},"nativeSrc":"2200:18:101","nodeType":"YulFunctionCall","src":"2200:18:101"},"nativeSrc":"2200:18:101","nodeType":"YulExpressionStatement","src":"2200:18:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"2170:6:101","nodeType":"YulIdentifier","src":"2170:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2186:2:101","nodeType":"YulLiteral","src":"2186:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"2190:1:101","nodeType":"YulLiteral","src":"2190:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2182:3:101","nodeType":"YulIdentifier","src":"2182:3:101"},"nativeSrc":"2182:10:101","nodeType":"YulFunctionCall","src":"2182:10:101"},{"kind":"number","nativeSrc":"2194:1:101","nodeType":"YulLiteral","src":"2194:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2178:3:101","nodeType":"YulIdentifier","src":"2178:3:101"},"nativeSrc":"2178:18:101","nodeType":"YulFunctionCall","src":"2178:18:101"}],"functionName":{"name":"gt","nativeSrc":"2167:2:101","nodeType":"YulIdentifier","src":"2167:2:101"},"nativeSrc":"2167:30:101","nodeType":"YulFunctionCall","src":"2167:30:101"},"nativeSrc":"2164:56:101","nodeType":"YulIf","src":"2164:56:101"},{"nativeSrc":"2229:70:101","nodeType":"YulVariableDeclaration","src":"2229:70:101","value":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"2270:6:101","nodeType":"YulIdentifier","src":"2270:6:101"},{"kind":"number","nativeSrc":"2278:4:101","nodeType":"YulLiteral","src":"2278:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2266:3:101","nodeType":"YulIdentifier","src":"2266:3:101"},"nativeSrc":"2266:17:101","nodeType":"YulFunctionCall","src":"2266:17:101"},{"arguments":[{"kind":"number","nativeSrc":"2289:2:101","nodeType":"YulLiteral","src":"2289:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"2285:3:101","nodeType":"YulIdentifier","src":"2285:3:101"},"nativeSrc":"2285:7:101","nodeType":"YulFunctionCall","src":"2285:7:101"}],"functionName":{"name":"and","nativeSrc":"2262:3:101","nodeType":"YulIdentifier","src":"2262:3:101"},"nativeSrc":"2262:31:101","nodeType":"YulFunctionCall","src":"2262:31:101"},{"kind":"number","nativeSrc":"2295:2:101","nodeType":"YulLiteral","src":"2295:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2258:3:101","nodeType":"YulIdentifier","src":"2258:3:101"},"nativeSrc":"2258:40:101","nodeType":"YulFunctionCall","src":"2258:40:101"}],"functionName":{"name":"allocate_memory","nativeSrc":"2242:15:101","nodeType":"YulIdentifier","src":"2242:15:101"},"nativeSrc":"2242:57:101","nodeType":"YulFunctionCall","src":"2242:57:101"},"variables":[{"name":"array","nativeSrc":"2233:5:101","nodeType":"YulTypedName","src":"2233:5:101","type":""}]},{"expression":{"arguments":[{"name":"array","nativeSrc":"2315:5:101","nodeType":"YulIdentifier","src":"2315:5:101"},{"name":"length","nativeSrc":"2322:6:101","nodeType":"YulIdentifier","src":"2322:6:101"}],"functionName":{"name":"mstore","nativeSrc":"2308:6:101","nodeType":"YulIdentifier","src":"2308:6:101"},"nativeSrc":"2308:21:101","nodeType":"YulFunctionCall","src":"2308:21:101"},"nativeSrc":"2308:21:101","nodeType":"YulExpressionStatement","src":"2308:21:101"},{"body":{"nativeSrc":"2379:16:101","nodeType":"YulBlock","src":"2379:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2388:1:101","nodeType":"YulLiteral","src":"2388:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2391:1:101","nodeType":"YulLiteral","src":"2391:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2381:6:101","nodeType":"YulIdentifier","src":"2381:6:101"},"nativeSrc":"2381:12:101","nodeType":"YulFunctionCall","src":"2381:12:101"},"nativeSrc":"2381:12:101","nodeType":"YulExpressionStatement","src":"2381:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"2352:2:101","nodeType":"YulIdentifier","src":"2352:2:101"},{"name":"length","nativeSrc":"2356:6:101","nodeType":"YulIdentifier","src":"2356:6:101"}],"functionName":{"name":"add","nativeSrc":"2348:3:101","nodeType":"YulIdentifier","src":"2348:3:101"},"nativeSrc":"2348:15:101","nodeType":"YulFunctionCall","src":"2348:15:101"},{"kind":"number","nativeSrc":"2365:2:101","nodeType":"YulLiteral","src":"2365:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2344:3:101","nodeType":"YulIdentifier","src":"2344:3:101"},"nativeSrc":"2344:24:101","nodeType":"YulFunctionCall","src":"2344:24:101"},{"name":"dataEnd","nativeSrc":"2370:7:101","nodeType":"YulIdentifier","src":"2370:7:101"}],"functionName":{"name":"gt","nativeSrc":"2341:2:101","nodeType":"YulIdentifier","src":"2341:2:101"},"nativeSrc":"2341:37:101","nodeType":"YulFunctionCall","src":"2341:37:101"},"nativeSrc":"2338:57:101","nodeType":"YulIf","src":"2338:57:101"},{"expression":{"arguments":[{"arguments":[{"name":"array","nativeSrc":"2414:5:101","nodeType":"YulIdentifier","src":"2414:5:101"},{"kind":"number","nativeSrc":"2421:2:101","nodeType":"YulLiteral","src":"2421:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2410:3:101","nodeType":"YulIdentifier","src":"2410:3:101"},"nativeSrc":"2410:14:101","nodeType":"YulFunctionCall","src":"2410:14:101"},{"arguments":[{"name":"_1","nativeSrc":"2430:2:101","nodeType":"YulIdentifier","src":"2430:2:101"},{"kind":"number","nativeSrc":"2434:2:101","nodeType":"YulLiteral","src":"2434:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2426:3:101","nodeType":"YulIdentifier","src":"2426:3:101"},"nativeSrc":"2426:11:101","nodeType":"YulFunctionCall","src":"2426:11:101"},{"name":"length","nativeSrc":"2439:6:101","nodeType":"YulIdentifier","src":"2439:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"2404:5:101","nodeType":"YulIdentifier","src":"2404:5:101"},"nativeSrc":"2404:42:101","nodeType":"YulFunctionCall","src":"2404:42:101"},"nativeSrc":"2404:42:101","nodeType":"YulExpressionStatement","src":"2404:42:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"array","nativeSrc":"2470:5:101","nodeType":"YulIdentifier","src":"2470:5:101"},{"name":"length","nativeSrc":"2477:6:101","nodeType":"YulIdentifier","src":"2477:6:101"}],"functionName":{"name":"add","nativeSrc":"2466:3:101","nodeType":"YulIdentifier","src":"2466:3:101"},"nativeSrc":"2466:18:101","nodeType":"YulFunctionCall","src":"2466:18:101"},{"kind":"number","nativeSrc":"2486:2:101","nodeType":"YulLiteral","src":"2486:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2462:3:101","nodeType":"YulIdentifier","src":"2462:3:101"},"nativeSrc":"2462:27:101","nodeType":"YulFunctionCall","src":"2462:27:101"},{"kind":"number","nativeSrc":"2491:1:101","nodeType":"YulLiteral","src":"2491:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"2455:6:101","nodeType":"YulIdentifier","src":"2455:6:101"},"nativeSrc":"2455:38:101","nodeType":"YulFunctionCall","src":"2455:38:101"},"nativeSrc":"2455:38:101","nodeType":"YulExpressionStatement","src":"2455:38:101"},{"nativeSrc":"2502:15:101","nodeType":"YulAssignment","src":"2502:15:101","value":{"name":"array","nativeSrc":"2512:5:101","nodeType":"YulIdentifier","src":"2512:5:101"},"variableNames":[{"name":"value1","nativeSrc":"2502:6:101","nodeType":"YulIdentifier","src":"2502:6:101"}]},{"nativeSrc":"2526:75:101","nodeType":"YulAssignment","src":"2526:75:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2586:9:101","nodeType":"YulIdentifier","src":"2586:9:101"},{"kind":"number","nativeSrc":"2597:2:101","nodeType":"YulLiteral","src":"2597:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"2582:3:101","nodeType":"YulIdentifier","src":"2582:3:101"},"nativeSrc":"2582:18:101","nodeType":"YulFunctionCall","src":"2582:18:101"}],"functionName":{"name":"abi_decode_contract_IAccessManager_fromMemory","nativeSrc":"2536:45:101","nodeType":"YulIdentifier","src":"2536:45:101"},"nativeSrc":"2536:65:101","nodeType":"YulFunctionCall","src":"2536:65:101"},"variableNames":[{"name":"value2","nativeSrc":"2526:6:101","nodeType":"YulIdentifier","src":"2526:6:101"}]},{"nativeSrc":"2610:41:101","nodeType":"YulVariableDeclaration","src":"2610:41:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2636:9:101","nodeType":"YulIdentifier","src":"2636:9:101"},{"kind":"number","nativeSrc":"2647:2:101","nodeType":"YulLiteral","src":"2647:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"2632:3:101","nodeType":"YulIdentifier","src":"2632:3:101"},"nativeSrc":"2632:18:101","nodeType":"YulFunctionCall","src":"2632:18:101"}],"functionName":{"name":"mload","nativeSrc":"2626:5:101","nodeType":"YulIdentifier","src":"2626:5:101"},"nativeSrc":"2626:25:101","nodeType":"YulFunctionCall","src":"2626:25:101"},"variables":[{"name":"offset_1","nativeSrc":"2614:8:101","nodeType":"YulTypedName","src":"2614:8:101","type":""}]},{"body":{"nativeSrc":"2696:16:101","nodeType":"YulBlock","src":"2696:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2705:1:101","nodeType":"YulLiteral","src":"2705:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2708:1:101","nodeType":"YulLiteral","src":"2708:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2698:6:101","nodeType":"YulIdentifier","src":"2698:6:101"},"nativeSrc":"2698:12:101","nodeType":"YulFunctionCall","src":"2698:12:101"},"nativeSrc":"2698:12:101","nodeType":"YulExpressionStatement","src":"2698:12:101"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"2666:8:101","nodeType":"YulIdentifier","src":"2666:8:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2684:2:101","nodeType":"YulLiteral","src":"2684:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"2688:1:101","nodeType":"YulLiteral","src":"2688:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2680:3:101","nodeType":"YulIdentifier","src":"2680:3:101"},"nativeSrc":"2680:10:101","nodeType":"YulFunctionCall","src":"2680:10:101"},{"kind":"number","nativeSrc":"2692:1:101","nodeType":"YulLiteral","src":"2692:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2676:3:101","nodeType":"YulIdentifier","src":"2676:3:101"},"nativeSrc":"2676:18:101","nodeType":"YulFunctionCall","src":"2676:18:101"}],"functionName":{"name":"gt","nativeSrc":"2663:2:101","nodeType":"YulIdentifier","src":"2663:2:101"},"nativeSrc":"2663:32:101","nodeType":"YulFunctionCall","src":"2663:32:101"},"nativeSrc":"2660:52:101","nodeType":"YulIf","src":"2660:52:101"},{"nativeSrc":"2721:83:101","nodeType":"YulAssignment","src":"2721:83:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2774:9:101","nodeType":"YulIdentifier","src":"2774:9:101"},{"name":"offset_1","nativeSrc":"2785:8:101","nodeType":"YulIdentifier","src":"2785:8:101"}],"functionName":{"name":"add","nativeSrc":"2770:3:101","nodeType":"YulIdentifier","src":"2770:3:101"},"nativeSrc":"2770:24:101","nodeType":"YulFunctionCall","src":"2770:24:101"},{"name":"dataEnd","nativeSrc":"2796:7:101","nodeType":"YulIdentifier","src":"2796:7:101"}],"functionName":{"name":"abi_decode_array_bytes4_dyn_fromMemory","nativeSrc":"2731:38:101","nodeType":"YulIdentifier","src":"2731:38:101"},"nativeSrc":"2731:73:101","nodeType":"YulFunctionCall","src":"2731:73:101"},"variableNames":[{"name":"value3","nativeSrc":"2721:6:101","nodeType":"YulIdentifier","src":"2721:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptrt_contract$_IAccessManager_$6119t_array$_t_bytes4_$dyn_memory_ptr_fromMemory","nativeSrc":"1558:1252:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1688:9:101","nodeType":"YulTypedName","src":"1688:9:101","type":""},{"name":"dataEnd","nativeSrc":"1699:7:101","nodeType":"YulTypedName","src":"1699:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1711:6:101","nodeType":"YulTypedName","src":"1711:6:101","type":""},{"name":"value1","nativeSrc":"1719:6:101","nodeType":"YulTypedName","src":"1719:6:101","type":""},{"name":"value2","nativeSrc":"1727:6:101","nodeType":"YulTypedName","src":"1727:6:101","type":""},{"name":"value3","nativeSrc":"1735:6:101","nodeType":"YulTypedName","src":"1735:6:101","type":""}],"src":"1558:1252:101"},{"body":{"nativeSrc":"2916:102:101","nodeType":"YulBlock","src":"2916:102:101","statements":[{"nativeSrc":"2926:26:101","nodeType":"YulAssignment","src":"2926:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2938:9:101","nodeType":"YulIdentifier","src":"2938:9:101"},{"kind":"number","nativeSrc":"2949:2:101","nodeType":"YulLiteral","src":"2949:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2934:3:101","nodeType":"YulIdentifier","src":"2934:3:101"},"nativeSrc":"2934:18:101","nodeType":"YulFunctionCall","src":"2934:18:101"},"variableNames":[{"name":"tail","nativeSrc":"2926:4:101","nodeType":"YulIdentifier","src":"2926:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2968:9:101","nodeType":"YulIdentifier","src":"2968:9:101"},{"arguments":[{"name":"value0","nativeSrc":"2983:6:101","nodeType":"YulIdentifier","src":"2983:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2999:3:101","nodeType":"YulLiteral","src":"2999:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"3004:1:101","nodeType":"YulLiteral","src":"3004:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2995:3:101","nodeType":"YulIdentifier","src":"2995:3:101"},"nativeSrc":"2995:11:101","nodeType":"YulFunctionCall","src":"2995:11:101"},{"kind":"number","nativeSrc":"3008:1:101","nodeType":"YulLiteral","src":"3008:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2991:3:101","nodeType":"YulIdentifier","src":"2991:3:101"},"nativeSrc":"2991:19:101","nodeType":"YulFunctionCall","src":"2991:19:101"}],"functionName":{"name":"and","nativeSrc":"2979:3:101","nodeType":"YulIdentifier","src":"2979:3:101"},"nativeSrc":"2979:32:101","nodeType":"YulFunctionCall","src":"2979:32:101"}],"functionName":{"name":"mstore","nativeSrc":"2961:6:101","nodeType":"YulIdentifier","src":"2961:6:101"},"nativeSrc":"2961:51:101","nodeType":"YulFunctionCall","src":"2961:51:101"},"nativeSrc":"2961:51:101","nodeType":"YulExpressionStatement","src":"2961:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"2815:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2885:9:101","nodeType":"YulTypedName","src":"2885:9:101","type":""},{"name":"value0","nativeSrc":"2896:6:101","nodeType":"YulTypedName","src":"2896:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2907:4:101","nodeType":"YulTypedName","src":"2907:4:101","type":""}],"src":"2815:203:101"},{"body":{"nativeSrc":"3055:95:101","nodeType":"YulBlock","src":"3055:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3072:1:101","nodeType":"YulLiteral","src":"3072:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"3079:3:101","nodeType":"YulLiteral","src":"3079:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"3084:10:101","nodeType":"YulLiteral","src":"3084:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"3075:3:101","nodeType":"YulIdentifier","src":"3075:3:101"},"nativeSrc":"3075:20:101","nodeType":"YulFunctionCall","src":"3075:20:101"}],"functionName":{"name":"mstore","nativeSrc":"3065:6:101","nodeType":"YulIdentifier","src":"3065:6:101"},"nativeSrc":"3065:31:101","nodeType":"YulFunctionCall","src":"3065:31:101"},"nativeSrc":"3065:31:101","nodeType":"YulExpressionStatement","src":"3065:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3112:1:101","nodeType":"YulLiteral","src":"3112:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"3115:4:101","nodeType":"YulLiteral","src":"3115:4:101","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"3105:6:101","nodeType":"YulIdentifier","src":"3105:6:101"},"nativeSrc":"3105:15:101","nodeType":"YulFunctionCall","src":"3105:15:101"},"nativeSrc":"3105:15:101","nodeType":"YulExpressionStatement","src":"3105:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3136:1:101","nodeType":"YulLiteral","src":"3136:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3139:4:101","nodeType":"YulLiteral","src":"3139:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"3129:6:101","nodeType":"YulIdentifier","src":"3129:6:101"},"nativeSrc":"3129:15:101","nodeType":"YulFunctionCall","src":"3129:15:101"},"nativeSrc":"3129:15:101","nodeType":"YulExpressionStatement","src":"3129:15:101"}]},"name":"panic_error_0x32","nativeSrc":"3023:127:101","nodeType":"YulFunctionDefinition","src":"3023:127:101"},{"body":{"nativeSrc":"3304:487:101","nodeType":"YulBlock","src":"3304:487:101","statements":[{"nativeSrc":"3314:32:101","nodeType":"YulVariableDeclaration","src":"3314:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3332:9:101","nodeType":"YulIdentifier","src":"3332:9:101"},{"kind":"number","nativeSrc":"3343:2:101","nodeType":"YulLiteral","src":"3343:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3328:3:101","nodeType":"YulIdentifier","src":"3328:3:101"},"nativeSrc":"3328:18:101","nodeType":"YulFunctionCall","src":"3328:18:101"},"variables":[{"name":"tail_1","nativeSrc":"3318:6:101","nodeType":"YulTypedName","src":"3318:6:101","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3362:9:101","nodeType":"YulIdentifier","src":"3362:9:101"},{"kind":"number","nativeSrc":"3373:2:101","nodeType":"YulLiteral","src":"3373:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"3355:6:101","nodeType":"YulIdentifier","src":"3355:6:101"},"nativeSrc":"3355:21:101","nodeType":"YulFunctionCall","src":"3355:21:101"},"nativeSrc":"3355:21:101","nodeType":"YulExpressionStatement","src":"3355:21:101"},{"nativeSrc":"3385:17:101","nodeType":"YulVariableDeclaration","src":"3385:17:101","value":{"name":"tail_1","nativeSrc":"3396:6:101","nodeType":"YulIdentifier","src":"3396:6:101"},"variables":[{"name":"pos","nativeSrc":"3389:3:101","nodeType":"YulTypedName","src":"3389:3:101","type":""}]},{"nativeSrc":"3411:27:101","nodeType":"YulVariableDeclaration","src":"3411:27:101","value":{"arguments":[{"name":"value0","nativeSrc":"3431:6:101","nodeType":"YulIdentifier","src":"3431:6:101"}],"functionName":{"name":"mload","nativeSrc":"3425:5:101","nodeType":"YulIdentifier","src":"3425:5:101"},"nativeSrc":"3425:13:101","nodeType":"YulFunctionCall","src":"3425:13:101"},"variables":[{"name":"length","nativeSrc":"3415:6:101","nodeType":"YulTypedName","src":"3415:6:101","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"3454:6:101","nodeType":"YulIdentifier","src":"3454:6:101"},{"name":"length","nativeSrc":"3462:6:101","nodeType":"YulIdentifier","src":"3462:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3447:6:101","nodeType":"YulIdentifier","src":"3447:6:101"},"nativeSrc":"3447:22:101","nodeType":"YulFunctionCall","src":"3447:22:101"},"nativeSrc":"3447:22:101","nodeType":"YulExpressionStatement","src":"3447:22:101"},{"nativeSrc":"3478:25:101","nodeType":"YulAssignment","src":"3478:25:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3489:9:101","nodeType":"YulIdentifier","src":"3489:9:101"},{"kind":"number","nativeSrc":"3500:2:101","nodeType":"YulLiteral","src":"3500:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3485:3:101","nodeType":"YulIdentifier","src":"3485:3:101"},"nativeSrc":"3485:18:101","nodeType":"YulFunctionCall","src":"3485:18:101"},"variableNames":[{"name":"pos","nativeSrc":"3478:3:101","nodeType":"YulIdentifier","src":"3478:3:101"}]},{"nativeSrc":"3512:29:101","nodeType":"YulVariableDeclaration","src":"3512:29:101","value":{"arguments":[{"name":"value0","nativeSrc":"3530:6:101","nodeType":"YulIdentifier","src":"3530:6:101"},{"kind":"number","nativeSrc":"3538:2:101","nodeType":"YulLiteral","src":"3538:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3526:3:101","nodeType":"YulIdentifier","src":"3526:3:101"},"nativeSrc":"3526:15:101","nodeType":"YulFunctionCall","src":"3526:15:101"},"variables":[{"name":"srcPtr","nativeSrc":"3516:6:101","nodeType":"YulTypedName","src":"3516:6:101","type":""}]},{"nativeSrc":"3550:10:101","nodeType":"YulVariableDeclaration","src":"3550:10:101","value":{"kind":"number","nativeSrc":"3559:1:101","nodeType":"YulLiteral","src":"3559:1:101","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"3554:1:101","nodeType":"YulTypedName","src":"3554:1:101","type":""}]},{"body":{"nativeSrc":"3618:147:101","nodeType":"YulBlock","src":"3618:147:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"3639:3:101","nodeType":"YulIdentifier","src":"3639:3:101"},{"arguments":[{"arguments":[{"name":"srcPtr","nativeSrc":"3654:6:101","nodeType":"YulIdentifier","src":"3654:6:101"}],"functionName":{"name":"mload","nativeSrc":"3648:5:101","nodeType":"YulIdentifier","src":"3648:5:101"},"nativeSrc":"3648:13:101","nodeType":"YulFunctionCall","src":"3648:13:101"},{"arguments":[{"kind":"number","nativeSrc":"3667:3:101","nodeType":"YulLiteral","src":"3667:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"3672:10:101","nodeType":"YulLiteral","src":"3672:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"3663:3:101","nodeType":"YulIdentifier","src":"3663:3:101"},"nativeSrc":"3663:20:101","nodeType":"YulFunctionCall","src":"3663:20:101"}],"functionName":{"name":"and","nativeSrc":"3644:3:101","nodeType":"YulIdentifier","src":"3644:3:101"},"nativeSrc":"3644:40:101","nodeType":"YulFunctionCall","src":"3644:40:101"}],"functionName":{"name":"mstore","nativeSrc":"3632:6:101","nodeType":"YulIdentifier","src":"3632:6:101"},"nativeSrc":"3632:53:101","nodeType":"YulFunctionCall","src":"3632:53:101"},"nativeSrc":"3632:53:101","nodeType":"YulExpressionStatement","src":"3632:53:101"},{"nativeSrc":"3698:19:101","nodeType":"YulAssignment","src":"3698:19:101","value":{"arguments":[{"name":"pos","nativeSrc":"3709:3:101","nodeType":"YulIdentifier","src":"3709:3:101"},{"kind":"number","nativeSrc":"3714:2:101","nodeType":"YulLiteral","src":"3714:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3705:3:101","nodeType":"YulIdentifier","src":"3705:3:101"},"nativeSrc":"3705:12:101","nodeType":"YulFunctionCall","src":"3705:12:101"},"variableNames":[{"name":"pos","nativeSrc":"3698:3:101","nodeType":"YulIdentifier","src":"3698:3:101"}]},{"nativeSrc":"3730:25:101","nodeType":"YulAssignment","src":"3730:25:101","value":{"arguments":[{"name":"srcPtr","nativeSrc":"3744:6:101","nodeType":"YulIdentifier","src":"3744:6:101"},{"kind":"number","nativeSrc":"3752:2:101","nodeType":"YulLiteral","src":"3752:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3740:3:101","nodeType":"YulIdentifier","src":"3740:3:101"},"nativeSrc":"3740:15:101","nodeType":"YulFunctionCall","src":"3740:15:101"},"variableNames":[{"name":"srcPtr","nativeSrc":"3730:6:101","nodeType":"YulIdentifier","src":"3730:6:101"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"3580:1:101","nodeType":"YulIdentifier","src":"3580:1:101"},{"name":"length","nativeSrc":"3583:6:101","nodeType":"YulIdentifier","src":"3583:6:101"}],"functionName":{"name":"lt","nativeSrc":"3577:2:101","nodeType":"YulIdentifier","src":"3577:2:101"},"nativeSrc":"3577:13:101","nodeType":"YulFunctionCall","src":"3577:13:101"},"nativeSrc":"3569:196:101","nodeType":"YulForLoop","post":{"nativeSrc":"3591:18:101","nodeType":"YulBlock","src":"3591:18:101","statements":[{"nativeSrc":"3593:14:101","nodeType":"YulAssignment","src":"3593:14:101","value":{"arguments":[{"name":"i","nativeSrc":"3602:1:101","nodeType":"YulIdentifier","src":"3602:1:101"},{"kind":"number","nativeSrc":"3605:1:101","nodeType":"YulLiteral","src":"3605:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3598:3:101","nodeType":"YulIdentifier","src":"3598:3:101"},"nativeSrc":"3598:9:101","nodeType":"YulFunctionCall","src":"3598:9:101"},"variableNames":[{"name":"i","nativeSrc":"3593:1:101","nodeType":"YulIdentifier","src":"3593:1:101"}]}]},"pre":{"nativeSrc":"3573:3:101","nodeType":"YulBlock","src":"3573:3:101","statements":[]},"src":"3569:196:101"},{"nativeSrc":"3774:11:101","nodeType":"YulAssignment","src":"3774:11:101","value":{"name":"pos","nativeSrc":"3782:3:101","nodeType":"YulIdentifier","src":"3782:3:101"},"variableNames":[{"name":"tail","nativeSrc":"3774:4:101","nodeType":"YulIdentifier","src":"3774:4:101"}]}]},"name":"abi_encode_tuple_t_array$_t_bytes4_$dyn_memory_ptr__to_t_array$_t_bytes4_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"3155:636:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3273:9:101","nodeType":"YulTypedName","src":"3273:9:101","type":""},{"name":"value0","nativeSrc":"3284:6:101","nodeType":"YulTypedName","src":"3284:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3295:4:101","nodeType":"YulTypedName","src":"3295:4:101","type":""}],"src":"3155:636:101"}]},"contents":"{\n    { }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), not(31)))\n        if or(gt(newFreePtr, sub(shl(64, 1), 1)), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_contract_IAccessManager_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_address(value)\n    }\n    function abi_decode_array_bytes4_dyn_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let length := mload(offset)\n        if gt(length, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        let _1 := shl(5, length)\n        let dst := allocate_memory(add(_1, 0x20))\n        let array_1 := dst\n        mstore(dst, length)\n        dst := add(dst, 0x20)\n        let srcEnd := add(add(offset, _1), 0x20)\n        if gt(srcEnd, end) { revert(0, 0) }\n        let src := add(offset, 0x20)\n        for { } lt(src, srcEnd) { src := add(src, 0x20) }\n        {\n            let value := mload(src)\n            if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n            mstore(dst, value)\n            dst := add(dst, 0x20)\n        }\n        array := array_1\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptrt_contract$_IAccessManager_$6119t_array$_t_bytes4_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := mload(add(headStart, 32))\n        if gt(offset, sub(shl(64, 1), 1)) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := mload(_1)\n        if gt(length, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        let array := allocate_memory(add(and(add(length, 0x1f), not(31)), 32))\n        mstore(array, length)\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        mcopy(add(array, 32), add(_1, 32), length)\n        mstore(add(add(array, length), 32), 0)\n        value1 := array\n        value2 := abi_decode_contract_IAccessManager_fromMemory(add(headStart, 64))\n        let offset_1 := mload(add(headStart, 96))\n        if gt(offset_1, sub(shl(64, 1), 1)) { revert(0, 0) }\n        value3 := abi_decode_array_bytes4_dyn_fromMemory(add(headStart, offset_1), dataEnd)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function abi_encode_tuple_t_array$_t_bytes4_$dyn_memory_ptr__to_t_array$_t_bytes4_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let tail_1 := add(headStart, 32)\n        mstore(headStart, 32)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let srcPtr := add(value0, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, and(mload(srcPtr), shl(224, 0xffffffff)))\n            pos := add(pos, 32)\n            srcPtr := add(srcPtr, 32)\n        }\n        tail := pos\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"6080604052604051610bcc380380610bcc833981016040819052610022916105d9565b838381816100308282610055565b50505050610043826100b360201b60201c565b61004c8161014e565b50505050610719565b61005e826102ae565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100a7576100a28282610324565b505050565b6100af6103c5565b5050565b806001600160a01b03163b5f036100ed576040516361798f2f60e11b81526001600160a01b03821660048201526024015b60405180910390fd5b805f516020610bac5f395f51905f5280546001600160a01b0319166001600160a01b0392831617905560405190821681527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b80515f516020610bac5f395f51905f52906001600160401b03811115610176576101766104f1565b60405190808252806020026020018201604052801561019f578160200160208202803683370190505b5080516101b691600184019160209091019061041d565b505f5b8251811015610272578281815181106101d4576101d46106b9565b60200260200101518260010182815481106101f1576101f16106b9565b905f5260205f2090600891828204019190066004026101000a81548163ffffffff021916908360e01c02179055506001826002015f858481518110610238576102386106b9565b6020908102919091018101516001600160e01b03191682528101919091526040015f20805460ff19169115159190911790556001016101b9565b507f3da94442c0a9daca8284d03a02aafdc638dfaae447d5d7879542573a9095b493826040516102a291906106cd565b60405180910390a15050565b806001600160a01b03163b5f036102e357604051634c9c8ce360e01b81526001600160a01b03821660048201526024016100e4565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f61033184846103e6565b905080801561035257505f3d118061035257505f846001600160a01b03163b115b156103675761035f6103f9565b9150506103bf565b801561039157604051639996b31560e01b81526001600160a01b03851660048201526024016100e4565b3d156103a45761039f610412565b6103bd565b60405163d6bda27560e01b815260040160405180910390fd5b505b92915050565b34156103e45760405163b398979f60e01b815260040160405180910390fd5b565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b828054828255905f5260205f20906007016008900481019282156104b6579160200282015f5b8382111561048457835183826101000a81548163ffffffff021916908360e01c02179055509260200192600401602081600301049283019260010302610443565b80156104b45782816101000a81549063ffffffff0219169055600401602081600301049283019260010302610484565b505b506104c29291506104c6565b5090565b5b808211156104c2575f81556001016104c7565b6001600160a01b03811681146104ee575f5ffd5b50565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b038111828210171561052d5761052d6104f1565b604052919050565b8051610540816104da565b919050565b5f82601f830112610554575f5ffd5b81516001600160401b0381111561056d5761056d6104f1565b8060051b61057d60208201610505565b91825260208185018101929081019086841115610598575f5ffd5b6020860192505b838310156105cf5782516001600160e01b0319811681146105be575f5ffd5b82526020928301929091019061059f565b9695505050505050565b5f5f5f5f608085870312156105ec575f5ffd5b84516105f7816104da565b60208601519094506001600160401b03811115610612575f5ffd5b8501601f81018713610622575f5ffd5b80516001600160401b0381111561063b5761063b6104f1565b61064e601f8201601f1916602001610505565b818152886020838501011115610662575f5ffd5b8160208401602083015e5f6020838301015280955050505061068660408601610535565b60608601519092506001600160401b038111156106a1575f5ffd5b6106ad87828801610545565b91505092959194509250565b634e487b7160e01b5f52603260045260245ffd5b602080825282518282018190525f918401906040840190835b8181101561070e5783516001600160e01b0319168352602093840193909201916001016106e6565b509095945050505050565b610486806107265f395ff3fe608060405260043610610033575f3560e01c806314416c031461003d5780633a7b7a3914610067578063bf7e214f14610093575b61003b6100a7565b005b348015610048575f5ffd5b506100516100b9565b60405161005e9190610361565b60405180910390f35b348015610072575f5ffd5b5061007b61015d565b6040516001600160a01b03909116815260200161005e565b34801561009e575f5ffd5b5061007b61018f565b6100b76100b261019d565b6101a6565b565b60607f787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c0060010180548060200260200160405190810160405280929190818152602001828054801561015357602002820191905f5260205f20905f905b82829054906101000a900460e01b6001600160e01b031916815260200190600401906020826003010492830192600103820291508084116101155790505b5050505050905090565b5f7f787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c005b546001600160a01b0316919050565b5f61019861015d565b905090565b5f61019861031c565b5f600436106101ca576101bc60045f36816103ad565b6101c5916103d4565b610218565b36156101f6577fb32cdf4d3c016cb0f079f205ad61c36b1a837fb3e95c70a94bdedfca0518a010610218565b7fd217fcc64ca03b17db426f651be32786de1c93adfb772d680771c96323f9d57b5b90505f61025c826001600160e01b0319165f9081527f787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c02602052604090205460ff1690565b90508061030e5761026b61015d565b60405163b700961360e01b81523360048201523060248201526001600160e01b0319841660448201526001600160a01b03919091169063b7009613906064016040805180830381865afa1580156102c4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102e8919061040c565b5090508061030e5760405162d1953b60e31b815233600482015260240160405180910390fd5b61031783610343565b505050565b5f7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc610180565b365f5f375f5f365f845af43d5f5f3e80801561035d573d5ff35b3d5ffd5b602080825282518282018190525f918401906040840190835b818110156103a25783516001600160e01b03191683526020938401939092019160010161037a565b509095945050505050565b5f5f858511156103bb575f5ffd5b838611156103c7575f5ffd5b5050820193919092039150565b80356001600160e01b03198116906004841015610405576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f5f6040838503121561041d575f5ffd5b8251801515811461042c575f5ffd5b602084015190925063ffffffff81168114610445575f5ffd5b80915050925092905056fea2646970667358221220cb6148ae6acc2c705ee4843f36b665e40ffa3074192e7fac22cb5252058229d964736f6c634300081e0033787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c00","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH2 0xBCC CODESIZE SUB DUP1 PUSH2 0xBCC DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x22 SWAP2 PUSH2 0x5D9 JUMP JUMPDEST DUP4 DUP4 DUP2 DUP2 PUSH2 0x30 DUP3 DUP3 PUSH2 0x55 JUMP JUMPDEST POP POP POP POP PUSH2 0x43 DUP3 PUSH2 0xB3 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0x4C DUP2 PUSH2 0x14E JUMP JUMPDEST POP POP POP POP PUSH2 0x719 JUMP JUMPDEST PUSH2 0x5E DUP3 PUSH2 0x2AE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0xA7 JUMPI PUSH2 0xA2 DUP3 DUP3 PUSH2 0x324 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xAF PUSH2 0x3C5 JUMP JUMPDEST POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0xED JUMPI PUSH1 0x40 MLOAD PUSH4 0x61798F2F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0xBAC PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND OR SWAP1 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP3 AND DUP2 MSTORE PUSH32 0x2F658B440C35314F52658EA8A740E05B284CDC84DC9AE01E891F21B8933E7CAD SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST DUP1 MLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0xBAC PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x176 JUMPI PUSH2 0x176 PUSH2 0x4F1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x19F JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP DUP1 MLOAD PUSH2 0x1B6 SWAP2 PUSH1 0x1 DUP5 ADD SWAP2 PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH2 0x41D JUMP JUMPDEST POP PUSH0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x272 JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x1D4 JUMPI PUSH2 0x1D4 PUSH2 0x6B9 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 PUSH1 0x1 ADD DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x1F1 JUMPI PUSH2 0x1F1 PUSH2 0x6B9 JUMP JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x8 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x4 MUL PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH4 0xFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0xE0 SHR MUL OR SWAP1 SSTORE POP PUSH1 0x1 DUP3 PUSH1 0x2 ADD PUSH0 DUP6 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x238 JUMPI PUSH2 0x238 PUSH2 0x6B9 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH0 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x1 ADD PUSH2 0x1B9 JUMP JUMPDEST POP PUSH32 0x3DA94442C0A9DACA8284D03A02AAFDC638DFAAE447D5D7879542573A9095B493 DUP3 PUSH1 0x40 MLOAD PUSH2 0x2A2 SWAP2 SWAP1 PUSH2 0x6CD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x2E3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xE4 JUMP JUMPDEST PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x331 DUP5 DUP5 PUSH2 0x3E6 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x352 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x352 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x367 JUMPI PUSH2 0x35F PUSH2 0x3F9 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3BF JUMP JUMPDEST DUP1 ISZERO PUSH2 0x391 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xE4 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x3A4 JUMPI PUSH2 0x39F PUSH2 0x412 JUMP JUMPDEST PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x3E4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x7 ADD PUSH1 0x8 SWAP1 DIV DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x4B6 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD PUSH0 JUMPDEST DUP4 DUP3 GT ISZERO PUSH2 0x484 JUMPI DUP4 MLOAD DUP4 DUP3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH4 0xFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0xE0 SHR MUL OR SWAP1 SSTORE POP SWAP3 PUSH1 0x20 ADD SWAP3 PUSH1 0x4 ADD PUSH1 0x20 DUP2 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB MUL PUSH2 0x443 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4B4 JUMPI DUP3 DUP2 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH4 0xFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x4 ADD PUSH1 0x20 DUP2 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB MUL PUSH2 0x484 JUMP JUMPDEST POP JUMPDEST POP PUSH2 0x4C2 SWAP3 SWAP2 POP PUSH2 0x4C6 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x4C2 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x4C7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x4EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x52D JUMPI PUSH2 0x52D PUSH2 0x4F1 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 MLOAD PUSH2 0x540 DUP2 PUSH2 0x4DA JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x554 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x56D JUMPI PUSH2 0x56D PUSH2 0x4F1 JUMP JUMPDEST DUP1 PUSH1 0x5 SHL PUSH2 0x57D PUSH1 0x20 DUP3 ADD PUSH2 0x505 JUMP JUMPDEST SWAP2 DUP3 MSTORE PUSH1 0x20 DUP2 DUP6 ADD DUP2 ADD SWAP3 SWAP1 DUP2 ADD SWAP1 DUP7 DUP5 GT ISZERO PUSH2 0x598 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP7 ADD SWAP3 POP JUMPDEST DUP4 DUP4 LT ISZERO PUSH2 0x5CF JUMPI DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x5BE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD SWAP3 SWAP1 SWAP2 ADD SWAP1 PUSH2 0x59F JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5EC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 MLOAD PUSH2 0x5F7 DUP2 PUSH2 0x4DA JUMP JUMPDEST PUSH1 0x20 DUP7 ADD MLOAD SWAP1 SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x612 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x622 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x63B JUMPI PUSH2 0x63B PUSH2 0x4F1 JUMP JUMPDEST PUSH2 0x64E PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x505 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP9 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x662 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD MCOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP PUSH2 0x686 PUSH1 0x40 DUP7 ADD PUSH2 0x535 JUMP JUMPDEST PUSH1 0x60 DUP7 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x6A1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x6AD DUP8 DUP3 DUP9 ADD PUSH2 0x545 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP2 DUP5 ADD SWAP1 PUSH1 0x40 DUP5 ADD SWAP1 DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x70E JUMPI DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x6E6 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x486 DUP1 PUSH2 0x726 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x33 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x14416C03 EQ PUSH2 0x3D JUMPI DUP1 PUSH4 0x3A7B7A39 EQ PUSH2 0x67 JUMPI DUP1 PUSH4 0xBF7E214F EQ PUSH2 0x93 JUMPI JUMPDEST PUSH2 0x3B PUSH2 0xA7 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x48 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51 PUSH2 0xB9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5E SWAP2 SWAP1 PUSH2 0x361 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x72 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7B PUSH2 0x15D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x5E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7B PUSH2 0x18F JUMP JUMPDEST PUSH2 0xB7 PUSH2 0xB2 PUSH2 0x19D JUMP JUMPDEST PUSH2 0x1A6 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH32 0x787C9D7AC910D64252BCEA05ACD5B7AF6D59644E0451A8BB5674587555049C00 PUSH1 0x1 ADD DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD DUP1 ISZERO PUSH2 0x153 JUMPI PUSH1 0x20 MUL DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH0 SWAP1 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x115 JUMPI SWAP1 POP JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH32 0x787C9D7AC910D64252BCEA05ACD5B7AF6D59644E0451A8BB5674587555049C00 JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x198 PUSH2 0x15D JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x198 PUSH2 0x31C JUMP JUMPDEST PUSH0 PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1CA JUMPI PUSH2 0x1BC PUSH1 0x4 PUSH0 CALLDATASIZE DUP2 PUSH2 0x3AD JUMP JUMPDEST PUSH2 0x1C5 SWAP2 PUSH2 0x3D4 JUMP JUMPDEST PUSH2 0x218 JUMP JUMPDEST CALLDATASIZE ISZERO PUSH2 0x1F6 JUMPI PUSH32 0xB32CDF4D3C016CB0F079F205AD61C36B1A837FB3E95C70A94BDEDFCA0518A010 PUSH2 0x218 JUMP JUMPDEST PUSH32 0xD217FCC64CA03B17DB426F651BE32786DE1C93ADFB772D680771C96323F9D57B JUMPDEST SWAP1 POP PUSH0 PUSH2 0x25C DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x787C9D7AC910D64252BCEA05ACD5B7AF6D59644E0451A8BB5674587555049C02 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x30E JUMPI PUSH2 0x26B PUSH2 0x15D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xB7009613 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP5 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xB7009613 SWAP1 PUSH1 0x64 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2C4 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2E8 SWAP2 SWAP1 PUSH2 0x40C JUMP JUMPDEST POP SWAP1 POP DUP1 PUSH2 0x30E JUMPI PUSH1 0x40 MLOAD PUSH3 0xD1953B PUSH1 0xE3 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x317 DUP4 PUSH2 0x343 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH2 0x180 JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0x35D JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP2 DUP5 ADD SWAP1 PUSH1 0x40 DUP5 ADD SWAP1 DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3A2 JUMPI DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x37A JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x3BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x3C7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x405 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x41D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x42C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x445 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCB PUSH2 0x48AE PUSH11 0xCC2C705EE4843F36B665E4 0xF STATICCALL ADDRESS PUSH21 0x192E7FAC22CB5252058229D964736F6C634300081E STOP CALLER PUSH25 0x7C9D7AC910D64252BCEA05ACD5B7AF6D59644E0451A8BB5674 PC PUSH22 0x55049C00000000000000000000000000000000000000 ","sourceMap":"1448:2096:1:-:0;;;2569:294;;;;;;;;;;;;;;;;;;:::i;:::-;2739:14;2755:5;2739:14;2755:5;1155:52:28;2739:14:1;2755:5;1155:29:28;:52::i;:::-;1081:133;;1998:102:2;;2768:40:1::1;2794:13;2768:25;;;:40;;:::i;:::-;2814:44;2842:15:::0;2814:27:::1;:44::i;:::-;2569:294:::0;;;;1448:2096;;2264:344:29;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:29;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;:::-;;2264:344;;:::o;2454:148::-;2573:18;:16;:18::i;:::-;2264:344;;:::o;1375:352:0:-;1458:13;-1:-1:-1;;;;;1450:34:0;;1488:1;1450:39;1446:140;;1506:73;;-1:-1:-1;;;1506:73:0;;-1:-1:-1;;;;;2979:32:101;;1506:73:0;;;2961:51:101;2934:18;;1506:73:0;;;;;;;;1446:140;1638:13;-1:-1:-1;;;;;;;;;;;1591:60:0;;-1:-1:-1;;;;;;1591:60:0;-1:-1:-1;;;;;1591:60:0;;;;;;1662;;2979:32:101;;;2961:51;;1662:60:0;;2949:2:101;2934:18;1662:60:0;;;;;;;1375:352;:::o;1731:443::-;1923:22;;-1:-1:-1;;;;;;;;;;;1328:33:0;-1:-1:-1;;;;;1910:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1910:36:0;-1:-1:-1;1890:56:0;;;;:17;;;;:56;;;;;;:::i;:::-;;1957:9;1952:148;1972:15;:22;1968:1;:26;1952:148;;;2032:15;2048:1;2032:18;;;;;;;;:::i;:::-;;;;;;;2009:1;:17;;2027:1;2009:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;2089:4;2058:1;:8;;:28;2067:15;2083:1;2067:18;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;;2058:28:0;;;;;;;;;;;-1:-1:-1;2058:28:0;:35;;-1:-1:-1;;2058:35:0;;;;;;;;;;-1:-1:-1;1996:3:0;1952:148;;;;2110:59;2153:15;2110:59;;;;;;:::i;:::-;;;;;;;;1801:373;1731:443;:::o;1671:281:29:-;1748:17;-1:-1:-1;;;;;1748:29:29;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:29;;-1:-1:-1;;;;;2979:32:101;;1805:47:29;;;2961:51:101;2934:18;;1805:47:29;2815:203:101;1744:119:29;811:66;1872:73;;-1:-1:-1;;;;;;1872:73:29;-1:-1:-1;;;;;1872:73:29;;;;;;;;;;1671:281::o;4691:549:45:-;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:45;4583:16:49;4886:33:45;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:45;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;:::-;4962:32;;;;;4870:364;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:45;;-1:-1:-1;;;;;2979:32:101;;5045:24:45;;;2961:51:101;2934:18;;5045:24:45;2815:203:101;5011:223:45;4583:16:49;5090:33:45;5086:148;;5139:27;:25;:27::i;:::-;5086:148;;;5204:19;;-1:-1:-1;;;5204:19:45;;;;;;;;;;;5086:148;4788:452;4691:549;;;;;:::o;6113:122:29:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:29;;;;;;;;;;;6159:70;6113:122::o;3383:242:49:-;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:49:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;1448:2096:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1448:2096:1;;;-1:-1:-1;1448:2096:1;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:101;-1:-1:-1;;;;;89:31:101;;79:42;;69:70;;135:1;132;125:12;69:70;14:131;:::o;150:127::-;211:10;206:3;202:20;199:1;192:31;242:4;239:1;232:15;266:4;263:1;256:15;282:275;353:2;347:9;418:2;399:13;;-1:-1:-1;;395:27:101;383:40;;-1:-1:-1;;;;;438:34:101;;474:22;;;435:62;432:88;;;500:18;;:::i;:::-;536:2;529:22;282:275;;-1:-1:-1;282:275:101:o;562:154::-;657:13;;679:31;657:13;679:31;:::i;:::-;562:154;;;:::o;721:832::-;785:5;838:3;831:4;823:6;819:17;815:27;805:55;;856:1;853;846:12;805:55;883:13;;-1:-1:-1;;;;;908:30:101;;905:56;;;941:18;;:::i;:::-;987:6;984:1;980:14;1014:30;1038:4;1034:2;1030:13;1014:30;:::i;:::-;1080:19;;;1124:4;1156:15;;;1152:26;;;1115:14;;;;1190:15;;;1187:35;;;1218:1;1215;1208:12;1187:35;1254:4;1246:6;1242:17;1231:28;;1268:254;1284:6;1279:3;1276:15;1268:254;;;1353:10;;-1:-1:-1;;;;;;1396:32:101;;1386:43;;1376:71;;1443:1;1440;1433:12;1376:71;1460:18;;1507:4;1301:14;;;;1498;;;;1268:254;;;1540:7;721:832;-1:-1:-1;;;;;;721:832:101:o;1558:1252::-;1711:6;1719;1727;1735;1788:3;1776:9;1767:7;1763:23;1759:33;1756:53;;;1805:1;1802;1795:12;1756:53;1837:9;1831:16;1856:31;1881:5;1856:31;:::i;:::-;1955:2;1940:18;;1934:25;1906:5;;-1:-1:-1;;;;;;1971:30:101;;1968:50;;;2014:1;2011;2004:12;1968:50;2037:22;;2090:4;2082:13;;2078:27;-1:-1:-1;2068:55:101;;2119:1;2116;2109:12;2068:55;2146:9;;-1:-1:-1;;;;;2167:30:101;;2164:56;;;2200:18;;:::i;:::-;2242:57;2289:2;2266:17;;-1:-1:-1;;2262:31:101;2295:2;2258:40;2242:57;:::i;:::-;2322:6;2315:5;2308:21;2370:7;2365:2;2356:6;2352:2;2348:15;2344:24;2341:37;2338:57;;;2391:1;2388;2381:12;2338:57;2439:6;2434:2;2430;2426:11;2421:2;2414:5;2410:14;2404:42;2491:1;2486:2;2477:6;2470:5;2466:18;2462:27;2455:38;2512:5;2502:15;;;;;2536:65;2597:2;2586:9;2582:18;2536:65;:::i;:::-;2647:2;2632:18;;2626:25;2526:75;;-1:-1:-1;;;;;;2663:32:101;;2660:52;;;2708:1;2705;2698:12;2660:52;2731:73;2796:7;2785:8;2774:9;2770:24;2731:73;:::i;:::-;2721:83;;;1558:1252;;;;;;;:::o;3023:127::-;3084:10;3079:3;3075:20;3072:1;3065:31;3115:4;3112:1;3105:15;3139:4;3136:1;3129:15;3155:636;3343:2;3355:21;;;3425:13;;3328:18;;;3447:22;;;3295:4;;3526:15;;;3500:2;3485:18;;;3295:4;3569:196;3583:6;3580:1;3577:13;3569:196;;;3648:13;;-1:-1:-1;;;;;;3644:40:101;3632:53;;3714:2;3740:15;;;;3705:12;;;;3605:1;3598:9;3569:196;;;-1:-1:-1;3782:3:101;;3155:636;-1:-1:-1;;;;;3155:636:101:o;:::-;1448:2096:1;;;;;;"},"deployedBytecode":{"functionDebugData":{"@ACCESS_MANAGER_329":{"entryPoint":349,"id":329,"parameterSlots":0,"returnSlots":1},"@PASS_THRU_METHODS_315":{"entryPoint":185,"id":315,"parameterSlots":0,"returnSlots":1},"@_6939":{"entryPoint":null,"id":6939,"parameterSlots":0,"returnSlots":0},"@_delegate_465":{"entryPoint":422,"id":465,"parameterSlots":1,"returnSlots":0},"@_delegate_6915":{"entryPoint":835,"id":6915,"parameterSlots":1,"returnSlots":0},"@_fallback_6931":{"entryPoint":167,"id":6931,"parameterSlots":0,"returnSlots":0},"@_implementation_6609":{"entryPoint":413,"id":6609,"parameterSlots":0,"returnSlots":1},"@_skipAC_301":{"entryPoint":null,"id":301,"parameterSlots":1,"returnSlots":1},"@authority_392":{"entryPoint":399,"id":392,"parameterSlots":0,"returnSlots":1},"@getAccessManagedProxyStorage_33":{"entryPoint":null,"id":33,"parameterSlots":0,"returnSlots":1},"@getAddressSlot_11669":{"entryPoint":null,"id":11669,"parameterSlots":1,"returnSlots":1},"@getImplementation_6656":{"entryPoint":796,"id":6656,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_boolt_uint32_fromMemory":{"entryPoint":1036,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_array$_t_bytes4_$dyn_memory_ptr__to_t_array$_t_bytes4_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":865,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IAccessManager_$6119__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":941,"id":null,"parameterSlots":4,"returnSlots":2},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4":{"entryPoint":980,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:2618:101","nodeType":"YulBlock","src":"0:2618:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"163:487:101","nodeType":"YulBlock","src":"163:487:101","statements":[{"nativeSrc":"173:32:101","nodeType":"YulVariableDeclaration","src":"173:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"191:9:101","nodeType":"YulIdentifier","src":"191:9:101"},{"kind":"number","nativeSrc":"202:2:101","nodeType":"YulLiteral","src":"202:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"187:3:101","nodeType":"YulIdentifier","src":"187:3:101"},"nativeSrc":"187:18:101","nodeType":"YulFunctionCall","src":"187:18:101"},"variables":[{"name":"tail_1","nativeSrc":"177:6:101","nodeType":"YulTypedName","src":"177:6:101","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"221:9:101","nodeType":"YulIdentifier","src":"221:9:101"},{"kind":"number","nativeSrc":"232:2:101","nodeType":"YulLiteral","src":"232:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"214:6:101","nodeType":"YulIdentifier","src":"214:6:101"},"nativeSrc":"214:21:101","nodeType":"YulFunctionCall","src":"214:21:101"},"nativeSrc":"214:21:101","nodeType":"YulExpressionStatement","src":"214:21:101"},{"nativeSrc":"244:17:101","nodeType":"YulVariableDeclaration","src":"244:17:101","value":{"name":"tail_1","nativeSrc":"255:6:101","nodeType":"YulIdentifier","src":"255:6:101"},"variables":[{"name":"pos","nativeSrc":"248:3:101","nodeType":"YulTypedName","src":"248:3:101","type":""}]},{"nativeSrc":"270:27:101","nodeType":"YulVariableDeclaration","src":"270:27:101","value":{"arguments":[{"name":"value0","nativeSrc":"290:6:101","nodeType":"YulIdentifier","src":"290:6:101"}],"functionName":{"name":"mload","nativeSrc":"284:5:101","nodeType":"YulIdentifier","src":"284:5:101"},"nativeSrc":"284:13:101","nodeType":"YulFunctionCall","src":"284:13:101"},"variables":[{"name":"length","nativeSrc":"274:6:101","nodeType":"YulTypedName","src":"274:6:101","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"313:6:101","nodeType":"YulIdentifier","src":"313:6:101"},{"name":"length","nativeSrc":"321:6:101","nodeType":"YulIdentifier","src":"321:6:101"}],"functionName":{"name":"mstore","nativeSrc":"306:6:101","nodeType":"YulIdentifier","src":"306:6:101"},"nativeSrc":"306:22:101","nodeType":"YulFunctionCall","src":"306:22:101"},"nativeSrc":"306:22:101","nodeType":"YulExpressionStatement","src":"306:22:101"},{"nativeSrc":"337:25:101","nodeType":"YulAssignment","src":"337:25:101","value":{"arguments":[{"name":"headStart","nativeSrc":"348:9:101","nodeType":"YulIdentifier","src":"348:9:101"},{"kind":"number","nativeSrc":"359:2:101","nodeType":"YulLiteral","src":"359:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"344:3:101","nodeType":"YulIdentifier","src":"344:3:101"},"nativeSrc":"344:18:101","nodeType":"YulFunctionCall","src":"344:18:101"},"variableNames":[{"name":"pos","nativeSrc":"337:3:101","nodeType":"YulIdentifier","src":"337:3:101"}]},{"nativeSrc":"371:29:101","nodeType":"YulVariableDeclaration","src":"371:29:101","value":{"arguments":[{"name":"value0","nativeSrc":"389:6:101","nodeType":"YulIdentifier","src":"389:6:101"},{"kind":"number","nativeSrc":"397:2:101","nodeType":"YulLiteral","src":"397:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"385:3:101","nodeType":"YulIdentifier","src":"385:3:101"},"nativeSrc":"385:15:101","nodeType":"YulFunctionCall","src":"385:15:101"},"variables":[{"name":"srcPtr","nativeSrc":"375:6:101","nodeType":"YulTypedName","src":"375:6:101","type":""}]},{"nativeSrc":"409:10:101","nodeType":"YulVariableDeclaration","src":"409:10:101","value":{"kind":"number","nativeSrc":"418:1:101","nodeType":"YulLiteral","src":"418:1:101","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"413:1:101","nodeType":"YulTypedName","src":"413:1:101","type":""}]},{"body":{"nativeSrc":"477:147:101","nodeType":"YulBlock","src":"477:147:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"498:3:101","nodeType":"YulIdentifier","src":"498:3:101"},{"arguments":[{"arguments":[{"name":"srcPtr","nativeSrc":"513:6:101","nodeType":"YulIdentifier","src":"513:6:101"}],"functionName":{"name":"mload","nativeSrc":"507:5:101","nodeType":"YulIdentifier","src":"507:5:101"},"nativeSrc":"507:13:101","nodeType":"YulFunctionCall","src":"507:13:101"},{"arguments":[{"kind":"number","nativeSrc":"526:3:101","nodeType":"YulLiteral","src":"526:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"531:10:101","nodeType":"YulLiteral","src":"531:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"522:3:101","nodeType":"YulIdentifier","src":"522:3:101"},"nativeSrc":"522:20:101","nodeType":"YulFunctionCall","src":"522:20:101"}],"functionName":{"name":"and","nativeSrc":"503:3:101","nodeType":"YulIdentifier","src":"503:3:101"},"nativeSrc":"503:40:101","nodeType":"YulFunctionCall","src":"503:40:101"}],"functionName":{"name":"mstore","nativeSrc":"491:6:101","nodeType":"YulIdentifier","src":"491:6:101"},"nativeSrc":"491:53:101","nodeType":"YulFunctionCall","src":"491:53:101"},"nativeSrc":"491:53:101","nodeType":"YulExpressionStatement","src":"491:53:101"},{"nativeSrc":"557:19:101","nodeType":"YulAssignment","src":"557:19:101","value":{"arguments":[{"name":"pos","nativeSrc":"568:3:101","nodeType":"YulIdentifier","src":"568:3:101"},{"kind":"number","nativeSrc":"573:2:101","nodeType":"YulLiteral","src":"573:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"564:3:101","nodeType":"YulIdentifier","src":"564:3:101"},"nativeSrc":"564:12:101","nodeType":"YulFunctionCall","src":"564:12:101"},"variableNames":[{"name":"pos","nativeSrc":"557:3:101","nodeType":"YulIdentifier","src":"557:3:101"}]},{"nativeSrc":"589:25:101","nodeType":"YulAssignment","src":"589:25:101","value":{"arguments":[{"name":"srcPtr","nativeSrc":"603:6:101","nodeType":"YulIdentifier","src":"603:6:101"},{"kind":"number","nativeSrc":"611:2:101","nodeType":"YulLiteral","src":"611:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"599:3:101","nodeType":"YulIdentifier","src":"599:3:101"},"nativeSrc":"599:15:101","nodeType":"YulFunctionCall","src":"599:15:101"},"variableNames":[{"name":"srcPtr","nativeSrc":"589:6:101","nodeType":"YulIdentifier","src":"589:6:101"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"439:1:101","nodeType":"YulIdentifier","src":"439:1:101"},{"name":"length","nativeSrc":"442:6:101","nodeType":"YulIdentifier","src":"442:6:101"}],"functionName":{"name":"lt","nativeSrc":"436:2:101","nodeType":"YulIdentifier","src":"436:2:101"},"nativeSrc":"436:13:101","nodeType":"YulFunctionCall","src":"436:13:101"},"nativeSrc":"428:196:101","nodeType":"YulForLoop","post":{"nativeSrc":"450:18:101","nodeType":"YulBlock","src":"450:18:101","statements":[{"nativeSrc":"452:14:101","nodeType":"YulAssignment","src":"452:14:101","value":{"arguments":[{"name":"i","nativeSrc":"461:1:101","nodeType":"YulIdentifier","src":"461:1:101"},{"kind":"number","nativeSrc":"464:1:101","nodeType":"YulLiteral","src":"464:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"457:3:101","nodeType":"YulIdentifier","src":"457:3:101"},"nativeSrc":"457:9:101","nodeType":"YulFunctionCall","src":"457:9:101"},"variableNames":[{"name":"i","nativeSrc":"452:1:101","nodeType":"YulIdentifier","src":"452:1:101"}]}]},"pre":{"nativeSrc":"432:3:101","nodeType":"YulBlock","src":"432:3:101","statements":[]},"src":"428:196:101"},{"nativeSrc":"633:11:101","nodeType":"YulAssignment","src":"633:11:101","value":{"name":"pos","nativeSrc":"641:3:101","nodeType":"YulIdentifier","src":"641:3:101"},"variableNames":[{"name":"tail","nativeSrc":"633:4:101","nodeType":"YulIdentifier","src":"633:4:101"}]}]},"name":"abi_encode_tuple_t_array$_t_bytes4_$dyn_memory_ptr__to_t_array$_t_bytes4_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"14:636:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"132:9:101","nodeType":"YulTypedName","src":"132:9:101","type":""},{"name":"value0","nativeSrc":"143:6:101","nodeType":"YulTypedName","src":"143:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"154:4:101","nodeType":"YulTypedName","src":"154:4:101","type":""}],"src":"14:636:101"},{"body":{"nativeSrc":"779:102:101","nodeType":"YulBlock","src":"779:102:101","statements":[{"nativeSrc":"789:26:101","nodeType":"YulAssignment","src":"789:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"801:9:101","nodeType":"YulIdentifier","src":"801:9:101"},{"kind":"number","nativeSrc":"812:2:101","nodeType":"YulLiteral","src":"812:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"797:3:101","nodeType":"YulIdentifier","src":"797:3:101"},"nativeSrc":"797:18:101","nodeType":"YulFunctionCall","src":"797:18:101"},"variableNames":[{"name":"tail","nativeSrc":"789:4:101","nodeType":"YulIdentifier","src":"789:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"831:9:101","nodeType":"YulIdentifier","src":"831:9:101"},{"arguments":[{"name":"value0","nativeSrc":"846:6:101","nodeType":"YulIdentifier","src":"846:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"862:3:101","nodeType":"YulLiteral","src":"862:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"867:1:101","nodeType":"YulLiteral","src":"867:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"858:3:101","nodeType":"YulIdentifier","src":"858:3:101"},"nativeSrc":"858:11:101","nodeType":"YulFunctionCall","src":"858:11:101"},{"kind":"number","nativeSrc":"871:1:101","nodeType":"YulLiteral","src":"871:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"854:3:101","nodeType":"YulIdentifier","src":"854:3:101"},"nativeSrc":"854:19:101","nodeType":"YulFunctionCall","src":"854:19:101"}],"functionName":{"name":"and","nativeSrc":"842:3:101","nodeType":"YulIdentifier","src":"842:3:101"},"nativeSrc":"842:32:101","nodeType":"YulFunctionCall","src":"842:32:101"}],"functionName":{"name":"mstore","nativeSrc":"824:6:101","nodeType":"YulIdentifier","src":"824:6:101"},"nativeSrc":"824:51:101","nodeType":"YulFunctionCall","src":"824:51:101"},"nativeSrc":"824:51:101","nodeType":"YulExpressionStatement","src":"824:51:101"}]},"name":"abi_encode_tuple_t_contract$_IAccessManager_$6119__to_t_address__fromStack_reversed","nativeSrc":"655:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"748:9:101","nodeType":"YulTypedName","src":"748:9:101","type":""},{"name":"value0","nativeSrc":"759:6:101","nodeType":"YulTypedName","src":"759:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"770:4:101","nodeType":"YulTypedName","src":"770:4:101","type":""}],"src":"655:226:101"},{"body":{"nativeSrc":"987:102:101","nodeType":"YulBlock","src":"987:102:101","statements":[{"nativeSrc":"997:26:101","nodeType":"YulAssignment","src":"997:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1009:9:101","nodeType":"YulIdentifier","src":"1009:9:101"},{"kind":"number","nativeSrc":"1020:2:101","nodeType":"YulLiteral","src":"1020:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1005:3:101","nodeType":"YulIdentifier","src":"1005:3:101"},"nativeSrc":"1005:18:101","nodeType":"YulFunctionCall","src":"1005:18:101"},"variableNames":[{"name":"tail","nativeSrc":"997:4:101","nodeType":"YulIdentifier","src":"997:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1039:9:101","nodeType":"YulIdentifier","src":"1039:9:101"},{"arguments":[{"name":"value0","nativeSrc":"1054:6:101","nodeType":"YulIdentifier","src":"1054:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1070:3:101","nodeType":"YulLiteral","src":"1070:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"1075:1:101","nodeType":"YulLiteral","src":"1075:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1066:3:101","nodeType":"YulIdentifier","src":"1066:3:101"},"nativeSrc":"1066:11:101","nodeType":"YulFunctionCall","src":"1066:11:101"},{"kind":"number","nativeSrc":"1079:1:101","nodeType":"YulLiteral","src":"1079:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1062:3:101","nodeType":"YulIdentifier","src":"1062:3:101"},"nativeSrc":"1062:19:101","nodeType":"YulFunctionCall","src":"1062:19:101"}],"functionName":{"name":"and","nativeSrc":"1050:3:101","nodeType":"YulIdentifier","src":"1050:3:101"},"nativeSrc":"1050:32:101","nodeType":"YulFunctionCall","src":"1050:32:101"}],"functionName":{"name":"mstore","nativeSrc":"1032:6:101","nodeType":"YulIdentifier","src":"1032:6:101"},"nativeSrc":"1032:51:101","nodeType":"YulFunctionCall","src":"1032:51:101"},"nativeSrc":"1032:51:101","nodeType":"YulExpressionStatement","src":"1032:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"886:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"956:9:101","nodeType":"YulTypedName","src":"956:9:101","type":""},{"name":"value0","nativeSrc":"967:6:101","nodeType":"YulTypedName","src":"967:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"978:4:101","nodeType":"YulTypedName","src":"978:4:101","type":""}],"src":"886:203:101"},{"body":{"nativeSrc":"1224:201:101","nodeType":"YulBlock","src":"1224:201:101","statements":[{"body":{"nativeSrc":"1262:16:101","nodeType":"YulBlock","src":"1262:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1271:1:101","nodeType":"YulLiteral","src":"1271:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1274:1:101","nodeType":"YulLiteral","src":"1274:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1264:6:101","nodeType":"YulIdentifier","src":"1264:6:101"},"nativeSrc":"1264:12:101","nodeType":"YulFunctionCall","src":"1264:12:101"},"nativeSrc":"1264:12:101","nodeType":"YulExpressionStatement","src":"1264:12:101"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"1240:10:101","nodeType":"YulIdentifier","src":"1240:10:101"},{"name":"endIndex","nativeSrc":"1252:8:101","nodeType":"YulIdentifier","src":"1252:8:101"}],"functionName":{"name":"gt","nativeSrc":"1237:2:101","nodeType":"YulIdentifier","src":"1237:2:101"},"nativeSrc":"1237:24:101","nodeType":"YulFunctionCall","src":"1237:24:101"},"nativeSrc":"1234:44:101","nodeType":"YulIf","src":"1234:44:101"},{"body":{"nativeSrc":"1311:16:101","nodeType":"YulBlock","src":"1311:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1320:1:101","nodeType":"YulLiteral","src":"1320:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1323:1:101","nodeType":"YulLiteral","src":"1323:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1313:6:101","nodeType":"YulIdentifier","src":"1313:6:101"},"nativeSrc":"1313:12:101","nodeType":"YulFunctionCall","src":"1313:12:101"},"nativeSrc":"1313:12:101","nodeType":"YulExpressionStatement","src":"1313:12:101"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"1293:8:101","nodeType":"YulIdentifier","src":"1293:8:101"},{"name":"length","nativeSrc":"1303:6:101","nodeType":"YulIdentifier","src":"1303:6:101"}],"functionName":{"name":"gt","nativeSrc":"1290:2:101","nodeType":"YulIdentifier","src":"1290:2:101"},"nativeSrc":"1290:20:101","nodeType":"YulFunctionCall","src":"1290:20:101"},"nativeSrc":"1287:40:101","nodeType":"YulIf","src":"1287:40:101"},{"nativeSrc":"1336:36:101","nodeType":"YulAssignment","src":"1336:36:101","value":{"arguments":[{"name":"offset","nativeSrc":"1353:6:101","nodeType":"YulIdentifier","src":"1353:6:101"},{"name":"startIndex","nativeSrc":"1361:10:101","nodeType":"YulIdentifier","src":"1361:10:101"}],"functionName":{"name":"add","nativeSrc":"1349:3:101","nodeType":"YulIdentifier","src":"1349:3:101"},"nativeSrc":"1349:23:101","nodeType":"YulFunctionCall","src":"1349:23:101"},"variableNames":[{"name":"offsetOut","nativeSrc":"1336:9:101","nodeType":"YulIdentifier","src":"1336:9:101"}]},{"nativeSrc":"1381:38:101","nodeType":"YulAssignment","src":"1381:38:101","value":{"arguments":[{"name":"endIndex","nativeSrc":"1398:8:101","nodeType":"YulIdentifier","src":"1398:8:101"},{"name":"startIndex","nativeSrc":"1408:10:101","nodeType":"YulIdentifier","src":"1408:10:101"}],"functionName":{"name":"sub","nativeSrc":"1394:3:101","nodeType":"YulIdentifier","src":"1394:3:101"},"nativeSrc":"1394:25:101","nodeType":"YulFunctionCall","src":"1394:25:101"},"variableNames":[{"name":"lengthOut","nativeSrc":"1381:9:101","nodeType":"YulIdentifier","src":"1381:9:101"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"1094:331:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"1158:6:101","nodeType":"YulTypedName","src":"1158:6:101","type":""},{"name":"length","nativeSrc":"1166:6:101","nodeType":"YulTypedName","src":"1166:6:101","type":""},{"name":"startIndex","nativeSrc":"1174:10:101","nodeType":"YulTypedName","src":"1174:10:101","type":""},{"name":"endIndex","nativeSrc":"1186:8:101","nodeType":"YulTypedName","src":"1186:8:101","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"1199:9:101","nodeType":"YulTypedName","src":"1199:9:101","type":""},{"name":"lengthOut","nativeSrc":"1210:9:101","nodeType":"YulTypedName","src":"1210:9:101","type":""}],"src":"1094:331:101"},{"body":{"nativeSrc":"1530:238:101","nodeType":"YulBlock","src":"1530:238:101","statements":[{"nativeSrc":"1540:29:101","nodeType":"YulVariableDeclaration","src":"1540:29:101","value":{"arguments":[{"name":"array","nativeSrc":"1563:5:101","nodeType":"YulIdentifier","src":"1563:5:101"}],"functionName":{"name":"calldataload","nativeSrc":"1550:12:101","nodeType":"YulIdentifier","src":"1550:12:101"},"nativeSrc":"1550:19:101","nodeType":"YulFunctionCall","src":"1550:19:101"},"variables":[{"name":"_1","nativeSrc":"1544:2:101","nodeType":"YulTypedName","src":"1544:2:101","type":""}]},{"nativeSrc":"1578:38:101","nodeType":"YulAssignment","src":"1578:38:101","value":{"arguments":[{"name":"_1","nativeSrc":"1591:2:101","nodeType":"YulIdentifier","src":"1591:2:101"},{"arguments":[{"kind":"number","nativeSrc":"1599:3:101","nodeType":"YulLiteral","src":"1599:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"1604:10:101","nodeType":"YulLiteral","src":"1604:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"1595:3:101","nodeType":"YulIdentifier","src":"1595:3:101"},"nativeSrc":"1595:20:101","nodeType":"YulFunctionCall","src":"1595:20:101"}],"functionName":{"name":"and","nativeSrc":"1587:3:101","nodeType":"YulIdentifier","src":"1587:3:101"},"nativeSrc":"1587:29:101","nodeType":"YulFunctionCall","src":"1587:29:101"},"variableNames":[{"name":"value","nativeSrc":"1578:5:101","nodeType":"YulIdentifier","src":"1578:5:101"}]},{"body":{"nativeSrc":"1647:115:101","nodeType":"YulBlock","src":"1647:115:101","statements":[{"nativeSrc":"1661:91:101","nodeType":"YulAssignment","src":"1661:91:101","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1678:2:101","nodeType":"YulIdentifier","src":"1678:2:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1690:1:101","nodeType":"YulLiteral","src":"1690:1:101","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"1697:1:101","nodeType":"YulLiteral","src":"1697:1:101","type":"","value":"4"},{"name":"len","nativeSrc":"1700:3:101","nodeType":"YulIdentifier","src":"1700:3:101"}],"functionName":{"name":"sub","nativeSrc":"1693:3:101","nodeType":"YulIdentifier","src":"1693:3:101"},"nativeSrc":"1693:11:101","nodeType":"YulFunctionCall","src":"1693:11:101"}],"functionName":{"name":"shl","nativeSrc":"1686:3:101","nodeType":"YulIdentifier","src":"1686:3:101"},"nativeSrc":"1686:19:101","nodeType":"YulFunctionCall","src":"1686:19:101"},{"arguments":[{"kind":"number","nativeSrc":"1711:3:101","nodeType":"YulLiteral","src":"1711:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"1716:10:101","nodeType":"YulLiteral","src":"1716:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"1707:3:101","nodeType":"YulIdentifier","src":"1707:3:101"},"nativeSrc":"1707:20:101","nodeType":"YulFunctionCall","src":"1707:20:101"}],"functionName":{"name":"shl","nativeSrc":"1682:3:101","nodeType":"YulIdentifier","src":"1682:3:101"},"nativeSrc":"1682:46:101","nodeType":"YulFunctionCall","src":"1682:46:101"}],"functionName":{"name":"and","nativeSrc":"1674:3:101","nodeType":"YulIdentifier","src":"1674:3:101"},"nativeSrc":"1674:55:101","nodeType":"YulFunctionCall","src":"1674:55:101"},{"arguments":[{"kind":"number","nativeSrc":"1735:3:101","nodeType":"YulLiteral","src":"1735:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"1740:10:101","nodeType":"YulLiteral","src":"1740:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"1731:3:101","nodeType":"YulIdentifier","src":"1731:3:101"},"nativeSrc":"1731:20:101","nodeType":"YulFunctionCall","src":"1731:20:101"}],"functionName":{"name":"and","nativeSrc":"1670:3:101","nodeType":"YulIdentifier","src":"1670:3:101"},"nativeSrc":"1670:82:101","nodeType":"YulFunctionCall","src":"1670:82:101"},"variableNames":[{"name":"value","nativeSrc":"1661:5:101","nodeType":"YulIdentifier","src":"1661:5:101"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"1631:3:101","nodeType":"YulIdentifier","src":"1631:3:101"},{"kind":"number","nativeSrc":"1636:1:101","nodeType":"YulLiteral","src":"1636:1:101","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"1628:2:101","nodeType":"YulIdentifier","src":"1628:2:101"},"nativeSrc":"1628:10:101","nodeType":"YulFunctionCall","src":"1628:10:101"},"nativeSrc":"1625:137:101","nodeType":"YulIf","src":"1625:137:101"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4","nativeSrc":"1430:338:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"1505:5:101","nodeType":"YulTypedName","src":"1505:5:101","type":""},{"name":"len","nativeSrc":"1512:3:101","nodeType":"YulTypedName","src":"1512:3:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"1520:5:101","nodeType":"YulTypedName","src":"1520:5:101","type":""}],"src":"1430:338:101"},{"body":{"nativeSrc":"1928:241:101","nodeType":"YulBlock","src":"1928:241:101","statements":[{"nativeSrc":"1938:26:101","nodeType":"YulAssignment","src":"1938:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1950:9:101","nodeType":"YulIdentifier","src":"1950:9:101"},{"kind":"number","nativeSrc":"1961:2:101","nodeType":"YulLiteral","src":"1961:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1946:3:101","nodeType":"YulIdentifier","src":"1946:3:101"},"nativeSrc":"1946:18:101","nodeType":"YulFunctionCall","src":"1946:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1938:4:101","nodeType":"YulIdentifier","src":"1938:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1980:9:101","nodeType":"YulIdentifier","src":"1980:9:101"},{"arguments":[{"name":"value0","nativeSrc":"1995:6:101","nodeType":"YulIdentifier","src":"1995:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2011:3:101","nodeType":"YulLiteral","src":"2011:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"2016:1:101","nodeType":"YulLiteral","src":"2016:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2007:3:101","nodeType":"YulIdentifier","src":"2007:3:101"},"nativeSrc":"2007:11:101","nodeType":"YulFunctionCall","src":"2007:11:101"},{"kind":"number","nativeSrc":"2020:1:101","nodeType":"YulLiteral","src":"2020:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2003:3:101","nodeType":"YulIdentifier","src":"2003:3:101"},"nativeSrc":"2003:19:101","nodeType":"YulFunctionCall","src":"2003:19:101"}],"functionName":{"name":"and","nativeSrc":"1991:3:101","nodeType":"YulIdentifier","src":"1991:3:101"},"nativeSrc":"1991:32:101","nodeType":"YulFunctionCall","src":"1991:32:101"}],"functionName":{"name":"mstore","nativeSrc":"1973:6:101","nodeType":"YulIdentifier","src":"1973:6:101"},"nativeSrc":"1973:51:101","nodeType":"YulFunctionCall","src":"1973:51:101"},"nativeSrc":"1973:51:101","nodeType":"YulExpressionStatement","src":"1973:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2044:9:101","nodeType":"YulIdentifier","src":"2044:9:101"},{"kind":"number","nativeSrc":"2055:2:101","nodeType":"YulLiteral","src":"2055:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2040:3:101","nodeType":"YulIdentifier","src":"2040:3:101"},"nativeSrc":"2040:18:101","nodeType":"YulFunctionCall","src":"2040:18:101"},{"arguments":[{"name":"value1","nativeSrc":"2064:6:101","nodeType":"YulIdentifier","src":"2064:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2080:3:101","nodeType":"YulLiteral","src":"2080:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"2085:1:101","nodeType":"YulLiteral","src":"2085:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2076:3:101","nodeType":"YulIdentifier","src":"2076:3:101"},"nativeSrc":"2076:11:101","nodeType":"YulFunctionCall","src":"2076:11:101"},{"kind":"number","nativeSrc":"2089:1:101","nodeType":"YulLiteral","src":"2089:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2072:3:101","nodeType":"YulIdentifier","src":"2072:3:101"},"nativeSrc":"2072:19:101","nodeType":"YulFunctionCall","src":"2072:19:101"}],"functionName":{"name":"and","nativeSrc":"2060:3:101","nodeType":"YulIdentifier","src":"2060:3:101"},"nativeSrc":"2060:32:101","nodeType":"YulFunctionCall","src":"2060:32:101"}],"functionName":{"name":"mstore","nativeSrc":"2033:6:101","nodeType":"YulIdentifier","src":"2033:6:101"},"nativeSrc":"2033:60:101","nodeType":"YulFunctionCall","src":"2033:60:101"},"nativeSrc":"2033:60:101","nodeType":"YulExpressionStatement","src":"2033:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2113:9:101","nodeType":"YulIdentifier","src":"2113:9:101"},{"kind":"number","nativeSrc":"2124:2:101","nodeType":"YulLiteral","src":"2124:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"2109:3:101","nodeType":"YulIdentifier","src":"2109:3:101"},"nativeSrc":"2109:18:101","nodeType":"YulFunctionCall","src":"2109:18:101"},{"arguments":[{"name":"value2","nativeSrc":"2133:6:101","nodeType":"YulIdentifier","src":"2133:6:101"},{"arguments":[{"kind":"number","nativeSrc":"2145:3:101","nodeType":"YulLiteral","src":"2145:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"2150:10:101","nodeType":"YulLiteral","src":"2150:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"2141:3:101","nodeType":"YulIdentifier","src":"2141:3:101"},"nativeSrc":"2141:20:101","nodeType":"YulFunctionCall","src":"2141:20:101"}],"functionName":{"name":"and","nativeSrc":"2129:3:101","nodeType":"YulIdentifier","src":"2129:3:101"},"nativeSrc":"2129:33:101","nodeType":"YulFunctionCall","src":"2129:33:101"}],"functionName":{"name":"mstore","nativeSrc":"2102:6:101","nodeType":"YulIdentifier","src":"2102:6:101"},"nativeSrc":"2102:61:101","nodeType":"YulFunctionCall","src":"2102:61:101"},"nativeSrc":"2102:61:101","nodeType":"YulExpressionStatement","src":"2102:61:101"}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"1773:396:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1881:9:101","nodeType":"YulTypedName","src":"1881:9:101","type":""},{"name":"value2","nativeSrc":"1892:6:101","nodeType":"YulTypedName","src":"1892:6:101","type":""},{"name":"value1","nativeSrc":"1900:6:101","nodeType":"YulTypedName","src":"1900:6:101","type":""},{"name":"value0","nativeSrc":"1908:6:101","nodeType":"YulTypedName","src":"1908:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1919:4:101","nodeType":"YulTypedName","src":"1919:4:101","type":""}],"src":"1773:396:101"},{"body":{"nativeSrc":"2268:348:101","nodeType":"YulBlock","src":"2268:348:101","statements":[{"body":{"nativeSrc":"2314:16:101","nodeType":"YulBlock","src":"2314:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2323:1:101","nodeType":"YulLiteral","src":"2323:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2326:1:101","nodeType":"YulLiteral","src":"2326:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2316:6:101","nodeType":"YulIdentifier","src":"2316:6:101"},"nativeSrc":"2316:12:101","nodeType":"YulFunctionCall","src":"2316:12:101"},"nativeSrc":"2316:12:101","nodeType":"YulExpressionStatement","src":"2316:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2289:7:101","nodeType":"YulIdentifier","src":"2289:7:101"},{"name":"headStart","nativeSrc":"2298:9:101","nodeType":"YulIdentifier","src":"2298:9:101"}],"functionName":{"name":"sub","nativeSrc":"2285:3:101","nodeType":"YulIdentifier","src":"2285:3:101"},"nativeSrc":"2285:23:101","nodeType":"YulFunctionCall","src":"2285:23:101"},{"kind":"number","nativeSrc":"2310:2:101","nodeType":"YulLiteral","src":"2310:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2281:3:101","nodeType":"YulIdentifier","src":"2281:3:101"},"nativeSrc":"2281:32:101","nodeType":"YulFunctionCall","src":"2281:32:101"},"nativeSrc":"2278:52:101","nodeType":"YulIf","src":"2278:52:101"},{"nativeSrc":"2339:29:101","nodeType":"YulVariableDeclaration","src":"2339:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2358:9:101","nodeType":"YulIdentifier","src":"2358:9:101"}],"functionName":{"name":"mload","nativeSrc":"2352:5:101","nodeType":"YulIdentifier","src":"2352:5:101"},"nativeSrc":"2352:16:101","nodeType":"YulFunctionCall","src":"2352:16:101"},"variables":[{"name":"value","nativeSrc":"2343:5:101","nodeType":"YulTypedName","src":"2343:5:101","type":""}]},{"body":{"nativeSrc":"2421:16:101","nodeType":"YulBlock","src":"2421:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2430:1:101","nodeType":"YulLiteral","src":"2430:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2433:1:101","nodeType":"YulLiteral","src":"2433:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2423:6:101","nodeType":"YulIdentifier","src":"2423:6:101"},"nativeSrc":"2423:12:101","nodeType":"YulFunctionCall","src":"2423:12:101"},"nativeSrc":"2423:12:101","nodeType":"YulExpressionStatement","src":"2423:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2390:5:101","nodeType":"YulIdentifier","src":"2390:5:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2411:5:101","nodeType":"YulIdentifier","src":"2411:5:101"}],"functionName":{"name":"iszero","nativeSrc":"2404:6:101","nodeType":"YulIdentifier","src":"2404:6:101"},"nativeSrc":"2404:13:101","nodeType":"YulFunctionCall","src":"2404:13:101"}],"functionName":{"name":"iszero","nativeSrc":"2397:6:101","nodeType":"YulIdentifier","src":"2397:6:101"},"nativeSrc":"2397:21:101","nodeType":"YulFunctionCall","src":"2397:21:101"}],"functionName":{"name":"eq","nativeSrc":"2387:2:101","nodeType":"YulIdentifier","src":"2387:2:101"},"nativeSrc":"2387:32:101","nodeType":"YulFunctionCall","src":"2387:32:101"}],"functionName":{"name":"iszero","nativeSrc":"2380:6:101","nodeType":"YulIdentifier","src":"2380:6:101"},"nativeSrc":"2380:40:101","nodeType":"YulFunctionCall","src":"2380:40:101"},"nativeSrc":"2377:60:101","nodeType":"YulIf","src":"2377:60:101"},{"nativeSrc":"2446:15:101","nodeType":"YulAssignment","src":"2446:15:101","value":{"name":"value","nativeSrc":"2456:5:101","nodeType":"YulIdentifier","src":"2456:5:101"},"variableNames":[{"name":"value0","nativeSrc":"2446:6:101","nodeType":"YulIdentifier","src":"2446:6:101"}]},{"nativeSrc":"2470:40:101","nodeType":"YulVariableDeclaration","src":"2470:40:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2495:9:101","nodeType":"YulIdentifier","src":"2495:9:101"},{"kind":"number","nativeSrc":"2506:2:101","nodeType":"YulLiteral","src":"2506:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2491:3:101","nodeType":"YulIdentifier","src":"2491:3:101"},"nativeSrc":"2491:18:101","nodeType":"YulFunctionCall","src":"2491:18:101"}],"functionName":{"name":"mload","nativeSrc":"2485:5:101","nodeType":"YulIdentifier","src":"2485:5:101"},"nativeSrc":"2485:25:101","nodeType":"YulFunctionCall","src":"2485:25:101"},"variables":[{"name":"value_1","nativeSrc":"2474:7:101","nodeType":"YulTypedName","src":"2474:7:101","type":""}]},{"body":{"nativeSrc":"2568:16:101","nodeType":"YulBlock","src":"2568:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2577:1:101","nodeType":"YulLiteral","src":"2577:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2580:1:101","nodeType":"YulLiteral","src":"2580:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2570:6:101","nodeType":"YulIdentifier","src":"2570:6:101"},"nativeSrc":"2570:12:101","nodeType":"YulFunctionCall","src":"2570:12:101"},"nativeSrc":"2570:12:101","nodeType":"YulExpressionStatement","src":"2570:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2532:7:101","nodeType":"YulIdentifier","src":"2532:7:101"},{"arguments":[{"name":"value_1","nativeSrc":"2545:7:101","nodeType":"YulIdentifier","src":"2545:7:101"},{"kind":"number","nativeSrc":"2554:10:101","nodeType":"YulLiteral","src":"2554:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"2541:3:101","nodeType":"YulIdentifier","src":"2541:3:101"},"nativeSrc":"2541:24:101","nodeType":"YulFunctionCall","src":"2541:24:101"}],"functionName":{"name":"eq","nativeSrc":"2529:2:101","nodeType":"YulIdentifier","src":"2529:2:101"},"nativeSrc":"2529:37:101","nodeType":"YulFunctionCall","src":"2529:37:101"}],"functionName":{"name":"iszero","nativeSrc":"2522:6:101","nodeType":"YulIdentifier","src":"2522:6:101"},"nativeSrc":"2522:45:101","nodeType":"YulFunctionCall","src":"2522:45:101"},"nativeSrc":"2519:65:101","nodeType":"YulIf","src":"2519:65:101"},{"nativeSrc":"2593:17:101","nodeType":"YulAssignment","src":"2593:17:101","value":{"name":"value_1","nativeSrc":"2603:7:101","nodeType":"YulIdentifier","src":"2603:7:101"},"variableNames":[{"name":"value1","nativeSrc":"2593:6:101","nodeType":"YulIdentifier","src":"2593:6:101"}]}]},"name":"abi_decode_tuple_t_boolt_uint32_fromMemory","nativeSrc":"2174:442:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2226:9:101","nodeType":"YulTypedName","src":"2226:9:101","type":""},{"name":"dataEnd","nativeSrc":"2237:7:101","nodeType":"YulTypedName","src":"2237:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2249:6:101","nodeType":"YulTypedName","src":"2249:6:101","type":""},{"name":"value1","nativeSrc":"2257:6:101","nodeType":"YulTypedName","src":"2257:6:101","type":""}],"src":"2174:442:101"}]},"contents":"{\n    { }\n    function abi_encode_tuple_t_array$_t_bytes4_$dyn_memory_ptr__to_t_array$_t_bytes4_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let tail_1 := add(headStart, 32)\n        mstore(headStart, 32)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let srcPtr := add(value0, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, and(mload(srcPtr), shl(224, 0xffffffff)))\n            pos := add(pos, 32)\n            srcPtr := add(srcPtr, 32)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_contract$_IAccessManager_$6119__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n    {\n        if gt(startIndex, endIndex) { revert(0, 0) }\n        if gt(endIndex, length) { revert(0, 0) }\n        offsetOut := add(offset, startIndex)\n        lengthOut := sub(endIndex, startIndex)\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, shl(224, 0xffffffff))\n        if lt(len, 4)\n        {\n            value := and(and(_1, shl(shl(3, sub(4, len)), shl(224, 0xffffffff))), shl(224, 0xffffffff))\n        }\n    }\n    function abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, shl(224, 0xffffffff)))\n    }\n    function abi_decode_tuple_t_boolt_uint32_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        if iszero(eq(value_1, and(value_1, 0xffffffff))) { revert(0, 0) }\n        value1 := value_1\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405260043610610033575f3560e01c806314416c031461003d5780633a7b7a3914610067578063bf7e214f14610093575b61003b6100a7565b005b348015610048575f5ffd5b506100516100b9565b60405161005e9190610361565b60405180910390f35b348015610072575f5ffd5b5061007b61015d565b6040516001600160a01b03909116815260200161005e565b34801561009e575f5ffd5b5061007b61018f565b6100b76100b261019d565b6101a6565b565b60607f787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c0060010180548060200260200160405190810160405280929190818152602001828054801561015357602002820191905f5260205f20905f905b82829054906101000a900460e01b6001600160e01b031916815260200190600401906020826003010492830192600103820291508084116101155790505b5050505050905090565b5f7f787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c005b546001600160a01b0316919050565b5f61019861015d565b905090565b5f61019861031c565b5f600436106101ca576101bc60045f36816103ad565b6101c5916103d4565b610218565b36156101f6577fb32cdf4d3c016cb0f079f205ad61c36b1a837fb3e95c70a94bdedfca0518a010610218565b7fd217fcc64ca03b17db426f651be32786de1c93adfb772d680771c96323f9d57b5b90505f61025c826001600160e01b0319165f9081527f787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c02602052604090205460ff1690565b90508061030e5761026b61015d565b60405163b700961360e01b81523360048201523060248201526001600160e01b0319841660448201526001600160a01b03919091169063b7009613906064016040805180830381865afa1580156102c4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102e8919061040c565b5090508061030e5760405162d1953b60e31b815233600482015260240160405180910390fd5b61031783610343565b505050565b5f7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc610180565b365f5f375f5f365f845af43d5f5f3e80801561035d573d5ff35b3d5ffd5b602080825282518282018190525f918401906040840190835b818110156103a25783516001600160e01b03191683526020938401939092019160010161037a565b509095945050505050565b5f5f858511156103bb575f5ffd5b838611156103c7575f5ffd5b5050820193919092039150565b80356001600160e01b03198116906004841015610405576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f5f6040838503121561041d575f5ffd5b8251801515811461042c575f5ffd5b602084015190925063ffffffff81168114610445575f5ffd5b80915050925092905056fea2646970667358221220cb6148ae6acc2c705ee4843f36b665e40ffa3074192e7fac22cb5252058229d964736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x33 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x14416C03 EQ PUSH2 0x3D JUMPI DUP1 PUSH4 0x3A7B7A39 EQ PUSH2 0x67 JUMPI DUP1 PUSH4 0xBF7E214F EQ PUSH2 0x93 JUMPI JUMPDEST PUSH2 0x3B PUSH2 0xA7 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x48 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51 PUSH2 0xB9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5E SWAP2 SWAP1 PUSH2 0x361 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x72 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7B PUSH2 0x15D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x5E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7B PUSH2 0x18F JUMP JUMPDEST PUSH2 0xB7 PUSH2 0xB2 PUSH2 0x19D JUMP JUMPDEST PUSH2 0x1A6 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH32 0x787C9D7AC910D64252BCEA05ACD5B7AF6D59644E0451A8BB5674587555049C00 PUSH1 0x1 ADD DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD DUP1 ISZERO PUSH2 0x153 JUMPI PUSH1 0x20 MUL DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH0 SWAP1 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x115 JUMPI SWAP1 POP JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH32 0x787C9D7AC910D64252BCEA05ACD5B7AF6D59644E0451A8BB5674587555049C00 JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x198 PUSH2 0x15D JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x198 PUSH2 0x31C JUMP JUMPDEST PUSH0 PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1CA JUMPI PUSH2 0x1BC PUSH1 0x4 PUSH0 CALLDATASIZE DUP2 PUSH2 0x3AD JUMP JUMPDEST PUSH2 0x1C5 SWAP2 PUSH2 0x3D4 JUMP JUMPDEST PUSH2 0x218 JUMP JUMPDEST CALLDATASIZE ISZERO PUSH2 0x1F6 JUMPI PUSH32 0xB32CDF4D3C016CB0F079F205AD61C36B1A837FB3E95C70A94BDEDFCA0518A010 PUSH2 0x218 JUMP JUMPDEST PUSH32 0xD217FCC64CA03B17DB426F651BE32786DE1C93ADFB772D680771C96323F9D57B JUMPDEST SWAP1 POP PUSH0 PUSH2 0x25C DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x787C9D7AC910D64252BCEA05ACD5B7AF6D59644E0451A8BB5674587555049C02 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x30E JUMPI PUSH2 0x26B PUSH2 0x15D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xB7009613 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP5 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xB7009613 SWAP1 PUSH1 0x64 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2C4 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2E8 SWAP2 SWAP1 PUSH2 0x40C JUMP JUMPDEST POP SWAP1 POP DUP1 PUSH2 0x30E JUMPI PUSH1 0x40 MLOAD PUSH3 0xD1953B PUSH1 0xE3 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x317 DUP4 PUSH2 0x343 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH2 0x180 JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0x35D JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP2 DUP5 ADD SWAP1 PUSH1 0x40 DUP5 ADD SWAP1 DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3A2 JUMPI DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x37A JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x3BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x3C7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x405 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x41D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x42C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x445 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCB PUSH2 0x48AE PUSH11 0xCC2C705EE4843F36B665E4 0xF STATICCALL ADDRESS PUSH21 0x192E7FAC22CB5252058229D964736F6C634300081E STOP CALLER ","sourceMap":"1448:2096:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;2676:11:30;:9;:11::i;:::-;1448:2096:1;3147:159;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3399:143;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;842:32:101;;;824:51;;812:2;797:18;3399:143:1;655:226:101;2306:104:2;;;;;;;;;;;;;:::i;2350:83:30:-;2398:28;2408:17;:15;:17::i;:::-;2398:9;:28::i;:::-;2350:83::o;3147:159:1:-;3208:23;1328:33:0;3246:55:1;;3239:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3239:62:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3147:159;:::o;3399:143::-;3455:14;1328:33:0;3484:39:1;:53;-1:-1:-1;;;;;3484:53:1;;3399:143;-1:-1:-1;3399:143:1:o;2306:104:2:-;2358:7;2388:16;:14;:16::i;:::-;2373:32;;2306:104;:::o;1583:132:28:-;1650:7;1676:32;:30;:32::i;2843:547:2:-;2918:15;2954:1;2936:8;:19;:119;;3041:13;3052:1;3041:8;;;:13;:::i;:::-;3034:21;;;:::i;:::-;2936:119;;;2965:8;:20;:59;;1308:21;2965:59;;;1231:20;2965:59;2918:137;;3061:14;3078:17;3086:8;-1:-1:-1;;;;;;2993:56:1;2974:4;2993:56;;;:46;:56;;;;;;;;;2908:146;3078:17:2;3061:34;;3178:9;3173:176;;3213:16;:14;:16::i;:::-;:61;;-1:-1:-1;;;3213:61:2;;3238:10;3213:61;;;1973:51:101;3258:4:2;2040:18:101;;;2033:60;-1:-1:-1;;;;;;2129:33:101;;2109:18;;;2102:61;-1:-1:-1;;;;;3213:24:2;;;;;;;1946:18:101;;3213:61:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;3197:77:2;-1:-1:-1;3197:77:2;3282:60;;3305:37;;-1:-1:-1;;;3305:37:2;;3331:10;3305:37;;;824:51:101;797:18;;3305:37:2;;;;;;;3282:60;3354:31;3370:14;3354:15;:31::i;:::-;2912:478;;2843:547;:::o;1441:138:29:-;1493:7;811:66;1519:47;1899:163:55;949:922:30;1293:14;1287:4;1281;1268:40;1513:4;1507;1491:14;1485:4;1469:14;1462:5;1449:69;1598:16;1592:4;1586;1571:44;1636:6;1703:69;;;;1824:16;1818:4;1811:30;1703:69;1741:16;1735:4;1728:30;14:636:101;202:2;214:21;;;284:13;;187:18;;;306:22;;;154:4;;385:15;;;359:2;344:18;;;154:4;428:196;442:6;439:1;436:13;428:196;;;507:13;;-1:-1:-1;;;;;;503:40:101;491:53;;573:2;599:15;;;;564:12;;;;464:1;457:9;428:196;;;-1:-1:-1;641:3:101;;14:636;-1:-1:-1;;;;;14:636:101:o;1094:331::-;1199:9;1210;1252:8;1240:10;1237:24;1234:44;;;1274:1;1271;1264:12;1234:44;1303:6;1293:8;1290:20;1287:40;;;1323:1;1320;1313:12;1287:40;-1:-1:-1;;1349:23:101;;;1394:25;;;;;-1:-1:-1;1094:331:101:o;1430:338::-;1550:19;;-1:-1:-1;;;;;;1587:29:101;;;1636:1;1628:10;;1625:137;;;-1:-1:-1;;;;;;1697:1:101;1693:11;;;1690:1;1686:19;1682:46;;;1674:55;;1670:82;;-1:-1:-1;1625:137:101;;1430:338;;;;:::o;2174:442::-;2249:6;2257;2310:2;2298:9;2289:7;2285:23;2281:32;2278:52;;;2326:1;2323;2316:12;2278:52;2358:9;2352:16;2411:5;2404:13;2397:21;2390:5;2387:32;2377:60;;2433:1;2430;2423:12;2377:60;2506:2;2491:18;;2485:25;2456:5;;-1:-1:-1;2554:10:101;2541:24;;2529:37;;2519:65;;2580:1;2577;2570:12;2519:65;2603:7;2593:17;;;2174:442;;;;;:::o"},"methodIdentifiers":{"ACCESS_MANAGER()":"3a7b7a39","PASS_THRU_METHODS()":"14416c03","authority()":"bf7e214f"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"},{\"internalType\":\"contract IAccessManager\",\"name\":\"accessManager\",\"type\":\"address\"},{\"internalType\":\"bytes4[]\",\"name\":\"passThruMethods\",\"type\":\"bytes4[]\"}],\"stateMutability\":\"payable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"authority\",\"type\":\"address\"}],\"name\":\"AccessManagedInvalidAuthority\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"AccessManagedUnauthorized\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"authority\",\"type\":\"address\"}],\"name\":\"AuthorityUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes4[]\",\"name\":\"newPassThruMethods\",\"type\":\"bytes4[]\"}],\"name\":\"PassThruMethodsChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"inputs\":[],\"name\":\"ACCESS_MANAGER\",\"outputs\":[{\"internalType\":\"contract IAccessManager\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PASS_THRU_METHODS\",\"outputs\":[{\"internalType\":\"bytes4[]\",\"name\":\"methods\",\"type\":\"bytes4[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"authority\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"It's a variant of ERC1967Proxy.      Currently the check is executed on any call received by the proxy contract (even calls to view methods, i.e.      staticcall). For gas efficiency, you can also have `passThruMethods`, and for those methods it will skip      the call to the AccessManager, calling directly to the implementation contract.      The accessManager and the passThruMethods are in the storage, but this contract doesn't include any method      to modify them. They should be modified by the implementation contract (check AMPUtils for functions that      encapsulate these operations).      Check https://forum.openzeppelin.com/t/accessmanagedproxy-is-a-good-idea/41917 for a discussion on the      advantages and disadvantages of using it. Also https://www.youtube.com/watch?v=DKdwJ9Ap9vM for a presentation      on this approach.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}]},\"events\":{\"AuthorityUpdated(address)\":{\"details\":\"Authority that manages this contract was updated. Uses same interface as OZ's IAccessManaged\"},\"PassThruMethodsChanged(bytes4[])\":{\"details\":\"Emitted when the passThruMethods has changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"PASS_THRU_METHODS()\":{\"returns\":{\"methods\":\"The list of method selectors that skip ACCESS_MANAGER access control\"}},\"authority()\":{\"details\":\"Returns the current authority. Same as ACCESS_MANAGER(), added for compatibility with OZ's IAccessManaged\"},\"constructor\":{\"custom:pre\":\"If `_data` is empty, `msg.value` must be zero.\",\"details\":\"Initializes the upgradeable proxy with an initial implementation specified by `implementation` and      with `accessManager` as the ACCESS_MANAGER that will handle access control.\",\"params\":{\"_data\":\"If nonempty, it's used as data in a delegate call to `implementation`. This will typically be an              encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\",\"accessManager\":\"The access manager that will handle access control\",\"implementation\":\"The initial implementation contract.\",\"passThruMethods\":\"The selector of methods that will skip the access control validation, typically used for                        views and other methods for gas optimization.\"}}},\"title\":\"AccessManagedProxy\",\"version\":1},\"userdoc\":{\"events\":{\"AuthorityUpdated(address)\":{\"notice\":\"The ACCESS_MANAGER that manages the access controls was updated\"}},\"kind\":\"user\",\"methods\":{\"ACCESS_MANAGER()\":{\"notice\":\"AccessManager contract that handles the permissions to access the implementation methods\"},\"PASS_THRU_METHODS()\":{\"notice\":\"Gives observability to the methods that are skipped from access control\"},\"authority()\":{\"notice\":\"Returns the current authority.\"},\"constructor\":{\"notice\":\"Constructor of the proxy, defining the implementation and the access manager\"}},\"notice\":\"Proxy contract using IAccessManager to manage access control before delegating calls (mutable version)\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol\":\"AccessManagedProxy\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/access-managed-proxy/contracts/AMPUtils.sol\":{\"keccak256\":\"0x3f25097d759aa89ce9a7a94f98b854a3dc23c51f7f895b95a8d489e74d5f1d98\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://2912cf8c79b973d07fbb741e7d1048026f0a71489df2adf97552b83b23b427d7\",\"dweb:/ipfs/QmRTfFaqy72p4RfY99hKM1K9wH5kxaTnikH5VJjpL7K7sD\"]},\"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol\":{\"keccak256\":\"0x0d3a66feed9000ccbc8a8e6c597b7fe4659f56b5a4dfa2ab1eea314171ae9745\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fa3f292954915546ce72159da1dbcd44b8cdc19ea0b5b3fc6dbb47070451583c\",\"dweb:/ipfs/QmeL7krtsKLpuS9hy5w6eRoRsXU874XtgNWutUavxRKzmA\"]},\"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol\":{\"keccak256\":\"0x5a86ce7d2d1d7516c4d8b21d0d2fcf52ba1062a42d59c54284ed17a68d0990f9\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://52b0ce231eb4630b2486df38c272f78675f40c7aa880ff0db7e7d94b2ff12a4e\",\"dweb:/ipfs/QmYp9FzWwikko2oY3Jn2YyLeWh8UQAaZRUVhRLb948i76r\"]},\"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol\":{\"keccak256\":\"0xdd762bad2f6ad362f5a38fb333d2a953f6c9d0beea122dbaef0e333a7b83a054\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://a2bb86de08187cee5956393ca2cf096a09eb6ac694471e436ca12e377d97cb40\",\"dweb:/ipfs/Qmf6cNjug4swjsvTJYjbzhMMfAfSFdUuyJjkEf3b1cu2hn\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x71e3e350e83af0018a1683cc2ce4c13893cc01f78e5c9c305f6828608ffcfa18\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a7b521c9999007715c9bdedffaad2ef7d2ccfa07bca2a39ba9e0c2e8a944a63\",\"dweb:/ipfs/QmamPG6Y1p7iZh4cF8Hfp3oufowSRyB3S3DisTKkmVWSai\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa3066ff86b94128a9d3956a63a0511fa1aae41bd455772ab587b32ff322acb2e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bf7b192fd82acf6187970c80548f624b1b9c80425b62fa49e7fdb538a52de049\",\"dweb:/ipfs/QmWXG1YCde1tqDYTbNwjkZDWVgPEjzaQGSDqWkyKLzaNua\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0x80935e4fae2c414f4e7789e13a820d06901182a5733ab006f8d68b5b09db993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://752d991d6ca1087587b48103bc623f74888054f58581ff29166d90889c4765c5\",\"dweb:/ipfs/QmRBsa6K2ChKxVWYY54YiyYhDBPbmY5HyKCtij5LoWh56o\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol":{"AccessManagedProxyBase":{"abi":[{"inputs":[{"internalType":"address","name":"authority","type":"address"}],"name":"AccessManagedInvalidAuthority","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"AccessManagedUnauthorized","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"authority","type":"address"}],"name":"AuthorityUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes4[]","name":"newPassThruMethods","type":"bytes4[]"}],"name":"PassThruMethodsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"ACCESS_MANAGER","outputs":[{"internalType":"contract IAccessManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PASS_THRU_METHODS","outputs":[{"internalType":"bytes4[]","name":"methods","type":"bytes4[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"authority","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"ACCESS_MANAGER()":"3a7b7a39","PASS_THRU_METHODS()":"14416c03","authority()":"bf7e214f"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"authority\",\"type\":\"address\"}],\"name\":\"AccessManagedInvalidAuthority\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"AccessManagedUnauthorized\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"authority\",\"type\":\"address\"}],\"name\":\"AuthorityUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes4[]\",\"name\":\"newPassThruMethods\",\"type\":\"bytes4[]\"}],\"name\":\"PassThruMethodsChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"inputs\":[],\"name\":\"ACCESS_MANAGER\",\"outputs\":[{\"internalType\":\"contract IAccessManager\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PASS_THRU_METHODS\",\"outputs\":[{\"internalType\":\"bytes4[]\",\"name\":\"methods\",\"type\":\"bytes4[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"authority\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"It's a variant of ERC1967Proxy.      Currently the check is executed on any call received by the proxy contract even calls to view methods      (staticcall). In the setup of the ACCESS_MANAGER permissions you would want to make all the views and pure      functions enabled for the PUBLIC_ROLE.      This base contract delegates on descendent contracts the storage of the ACCESS_MANAGER.      Check https://forum.openzeppelin.com/t/accessmanagedproxy-is-a-good-idea/41917 for a discussion on the      advantages and disadvantages of using it.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}]},\"events\":{\"AuthorityUpdated(address)\":{\"details\":\"Authority that manages this contract was updated. Uses same interface as OZ's IAccessManaged\"},\"PassThruMethodsChanged(bytes4[])\":{\"details\":\"Emitted when the passThruMethods has changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"PASS_THRU_METHODS()\":{\"returns\":{\"methods\":\"The list of method selectors that skip ACCESS_MANAGER access control\"}},\"authority()\":{\"details\":\"Returns the current authority. Same as ACCESS_MANAGER(), added for compatibility with OZ's IAccessManaged\"},\"constructor\":{\"custom:pre\":\"If `_data` is empty, `msg.value` must be zero.\",\"details\":\"Initializes the upgradeable proxy with an initial implementation specified by `implementation` and      with `manager` as the ACCESS_MANAGER that will handle access control.\",\"params\":{\"_data\":\"If nonempty, it's used as data in a delegate call to `implementation`. This will typically be an              encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\",\"implementation\":\"The initial implementation contract.\"}}},\"title\":\"AccessManagedProxyBase\",\"version\":1},\"userdoc\":{\"events\":{\"AuthorityUpdated(address)\":{\"notice\":\"The ACCESS_MANAGER that manages the access controls was updated\"}},\"kind\":\"user\",\"methods\":{\"ACCESS_MANAGER()\":{\"notice\":\"AccessManager contract that handles the permissions to access the implementation methods\"},\"PASS_THRU_METHODS()\":{\"notice\":\"Gives observability to the methods that are skipped from access control\"},\"authority()\":{\"notice\":\"Returns the current authority.\"},\"constructor\":{\"notice\":\"Constructor of the proxy, defining the implementation and the access manager\"}},\"notice\":\"Proxy contract using IAccessManager to manage access control before delegating calls.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol\":\"AccessManagedProxyBase\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol\":{\"keccak256\":\"0x5a86ce7d2d1d7516c4d8b21d0d2fcf52ba1062a42d59c54284ed17a68d0990f9\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://52b0ce231eb4630b2486df38c272f78675f40c7aa880ff0db7e7d94b2ff12a4e\",\"dweb:/ipfs/QmYp9FzWwikko2oY3Jn2YyLeWh8UQAaZRUVhRLb948i76r\"]},\"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol\":{\"keccak256\":\"0xdd762bad2f6ad362f5a38fb333d2a953f6c9d0beea122dbaef0e333a7b83a054\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://a2bb86de08187cee5956393ca2cf096a09eb6ac694471e436ca12e377d97cb40\",\"dweb:/ipfs/Qmf6cNjug4swjsvTJYjbzhMMfAfSFdUuyJjkEf3b1cu2hn\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x71e3e350e83af0018a1683cc2ce4c13893cc01f78e5c9c305f6828608ffcfa18\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a7b521c9999007715c9bdedffaad2ef7d2ccfa07bca2a39ba9e0c2e8a944a63\",\"dweb:/ipfs/QmamPG6Y1p7iZh4cF8Hfp3oufowSRyB3S3DisTKkmVWSai\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa3066ff86b94128a9d3956a63a0511fa1aae41bd455772ab587b32ff322acb2e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bf7b192fd82acf6187970c80548f624b1b9c80425b62fa49e7fdb538a52de049\",\"dweb:/ipfs/QmWXG1YCde1tqDYTbNwjkZDWVgPEjzaQGSDqWkyKLzaNua\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0x80935e4fae2c414f4e7789e13a820d06901182a5733ab006f8d68b5b09db993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://752d991d6ca1087587b48103bc623f74888054f58581ff29166d90889c4765c5\",\"dweb:/ipfs/QmRBsa6K2ChKxVWYY54YiyYhDBPbmY5HyKCtij5LoWh56o\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol":{"IAccessManagedProxy":{"abi":[{"inputs":[{"internalType":"address","name":"authority","type":"address"}],"name":"AccessManagedInvalidAuthority","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"AccessManagedUnauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"authority","type":"address"}],"name":"AuthorityUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes4[]","name":"newPassThruMethods","type":"bytes4[]"}],"name":"PassThruMethodsChanged","type":"event"},{"inputs":[],"name":"ACCESS_MANAGER","outputs":[{"internalType":"contract IAccessManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PASS_THRU_METHODS","outputs":[{"internalType":"bytes4[]","name":"methods","type":"bytes4[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"authority","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"ACCESS_MANAGER()":"3a7b7a39","PASS_THRU_METHODS()":"14416c03","authority()":"bf7e214f"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"authority\",\"type\":\"address\"}],\"name\":\"AccessManagedInvalidAuthority\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"AccessManagedUnauthorized\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"authority\",\"type\":\"address\"}],\"name\":\"AuthorityUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes4[]\",\"name\":\"newPassThruMethods\",\"type\":\"bytes4[]\"}],\"name\":\"PassThruMethodsChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"ACCESS_MANAGER\",\"outputs\":[{\"internalType\":\"contract IAccessManager\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PASS_THRU_METHODS\",\"outputs\":[{\"internalType\":\"bytes4[]\",\"name\":\"methods\",\"type\":\"bytes4[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"authority\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"details\":\"The `ACCESS_MANAGER()` is the AccessManager contract that stores the access roles for most of the methods, except those listed in `PASS_THRU_METHODS()` that are forwarded directly to the proxy and don't have access control (at least not by the AccessManager contract).\",\"events\":{\"AuthorityUpdated(address)\":{\"details\":\"Authority that manages this contract was updated. Uses same interface as OZ's IAccessManaged\"},\"PassThruMethodsChanged(bytes4[])\":{\"details\":\"Emitted when the passThruMethods has changed.\"}},\"kind\":\"dev\",\"methods\":{\"PASS_THRU_METHODS()\":{\"returns\":{\"methods\":\"The list of method selectors that skip ACCESS_MANAGER access control\"}},\"authority()\":{\"details\":\"Returns the current authority. Same as ACCESS_MANAGER(), added for compatibility with OZ's IAccessManaged\"}},\"title\":\"IAccessManagedProxy - Interface of AccessManagedProxy contracts\",\"version\":1},\"userdoc\":{\"events\":{\"AuthorityUpdated(address)\":{\"notice\":\"The ACCESS_MANAGER that manages the access controls was updated\"}},\"kind\":\"user\",\"methods\":{\"ACCESS_MANAGER()\":{\"notice\":\"AccessManager contract that handles the permissions to access the implementation methods\"},\"PASS_THRU_METHODS()\":{\"notice\":\"Gives observability to the methods that are skipped from access control\"},\"authority()\":{\"notice\":\"Returns the current authority.\"}},\"notice\":\"This interface gives observability of the access control setup\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol\":\"IAccessManagedProxy\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol\":{\"keccak256\":\"0xdd762bad2f6ad362f5a38fb333d2a953f6c9d0beea122dbaef0e333a7b83a054\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://a2bb86de08187cee5956393ca2cf096a09eb6ac694471e436ca12e377d97cb40\",\"dweb:/ipfs/Qmf6cNjug4swjsvTJYjbzhMMfAfSFdUuyJjkEf3b1cu2hn\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x71e3e350e83af0018a1683cc2ce4c13893cc01f78e5c9c305f6828608ffcfa18\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a7b521c9999007715c9bdedffaad2ef7d2ccfa07bca2a39ba9e0c2e8a944a63\",\"dweb:/ipfs/QmamPG6Y1p7iZh4cF8Hfp3oufowSRyB3S3DisTKkmVWSai\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/utils/contracts/TestCurrency.sol":{"TestCurrency":{"abi":[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":{"@_553":{"entryPoint":null,"id":553,"parameterSlots":4,"returnSlots":0},"@_7436":{"entryPoint":null,"id":7436,"parameterSlots":2,"returnSlots":0},"@_mint_7739":{"entryPoint":102,"id":7739,"parameterSlots":2,"returnSlots":0},"@_update_7706":{"entryPoint":163,"id":7706,"parameterSlots":3,"returnSlots":0},"abi_decode_string_fromMemory":{"entryPoint":477,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint8_fromMemory":{"entryPoint":614,"id":null,"parameterSlots":2,"returnSlots":4},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":1065,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":803,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":879,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":747,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x41":{"entryPoint":457,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:5121:101","nodeType":"YulBlock","src":"0:5121:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"46:95:101","nodeType":"YulBlock","src":"46:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"63:1:101","nodeType":"YulLiteral","src":"63:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"70:3:101","nodeType":"YulLiteral","src":"70:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"75:10:101","nodeType":"YulLiteral","src":"75:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"66:3:101","nodeType":"YulIdentifier","src":"66:3:101"},"nativeSrc":"66:20:101","nodeType":"YulFunctionCall","src":"66:20:101"}],"functionName":{"name":"mstore","nativeSrc":"56:6:101","nodeType":"YulIdentifier","src":"56:6:101"},"nativeSrc":"56:31:101","nodeType":"YulFunctionCall","src":"56:31:101"},"nativeSrc":"56:31:101","nodeType":"YulExpressionStatement","src":"56:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"103:1:101","nodeType":"YulLiteral","src":"103:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"106:4:101","nodeType":"YulLiteral","src":"106:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"96:6:101","nodeType":"YulIdentifier","src":"96:6:101"},"nativeSrc":"96:15:101","nodeType":"YulFunctionCall","src":"96:15:101"},"nativeSrc":"96:15:101","nodeType":"YulExpressionStatement","src":"96:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"127:1:101","nodeType":"YulLiteral","src":"127:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"130:4:101","nodeType":"YulLiteral","src":"130:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"120:6:101","nodeType":"YulIdentifier","src":"120:6:101"},"nativeSrc":"120:15:101","nodeType":"YulFunctionCall","src":"120:15:101"},"nativeSrc":"120:15:101","nodeType":"YulExpressionStatement","src":"120:15:101"}]},"name":"panic_error_0x41","nativeSrc":"14:127:101","nodeType":"YulFunctionDefinition","src":"14:127:101"},{"body":{"nativeSrc":"210:659:101","nodeType":"YulBlock","src":"210:659:101","statements":[{"body":{"nativeSrc":"259:16:101","nodeType":"YulBlock","src":"259:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"268:1:101","nodeType":"YulLiteral","src":"268:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"271:1:101","nodeType":"YulLiteral","src":"271:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"261:6:101","nodeType":"YulIdentifier","src":"261:6:101"},"nativeSrc":"261:12:101","nodeType":"YulFunctionCall","src":"261:12:101"},"nativeSrc":"261:12:101","nodeType":"YulExpressionStatement","src":"261:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"238:6:101","nodeType":"YulIdentifier","src":"238:6:101"},{"kind":"number","nativeSrc":"246:4:101","nodeType":"YulLiteral","src":"246:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"234:3:101","nodeType":"YulIdentifier","src":"234:3:101"},"nativeSrc":"234:17:101","nodeType":"YulFunctionCall","src":"234:17:101"},{"name":"end","nativeSrc":"253:3:101","nodeType":"YulIdentifier","src":"253:3:101"}],"functionName":{"name":"slt","nativeSrc":"230:3:101","nodeType":"YulIdentifier","src":"230:3:101"},"nativeSrc":"230:27:101","nodeType":"YulFunctionCall","src":"230:27:101"}],"functionName":{"name":"iszero","nativeSrc":"223:6:101","nodeType":"YulIdentifier","src":"223:6:101"},"nativeSrc":"223:35:101","nodeType":"YulFunctionCall","src":"223:35:101"},"nativeSrc":"220:55:101","nodeType":"YulIf","src":"220:55:101"},{"nativeSrc":"284:27:101","nodeType":"YulVariableDeclaration","src":"284:27:101","value":{"arguments":[{"name":"offset","nativeSrc":"304:6:101","nodeType":"YulIdentifier","src":"304:6:101"}],"functionName":{"name":"mload","nativeSrc":"298:5:101","nodeType":"YulIdentifier","src":"298:5:101"},"nativeSrc":"298:13:101","nodeType":"YulFunctionCall","src":"298:13:101"},"variables":[{"name":"length","nativeSrc":"288:6:101","nodeType":"YulTypedName","src":"288:6:101","type":""}]},{"body":{"nativeSrc":"354:22:101","nodeType":"YulBlock","src":"354:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"356:16:101","nodeType":"YulIdentifier","src":"356:16:101"},"nativeSrc":"356:18:101","nodeType":"YulFunctionCall","src":"356:18:101"},"nativeSrc":"356:18:101","nodeType":"YulExpressionStatement","src":"356:18:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"326:6:101","nodeType":"YulIdentifier","src":"326:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"342:2:101","nodeType":"YulLiteral","src":"342:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"346:1:101","nodeType":"YulLiteral","src":"346:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"338:3:101","nodeType":"YulIdentifier","src":"338:3:101"},"nativeSrc":"338:10:101","nodeType":"YulFunctionCall","src":"338:10:101"},{"kind":"number","nativeSrc":"350:1:101","nodeType":"YulLiteral","src":"350:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"334:3:101","nodeType":"YulIdentifier","src":"334:3:101"},"nativeSrc":"334:18:101","nodeType":"YulFunctionCall","src":"334:18:101"}],"functionName":{"name":"gt","nativeSrc":"323:2:101","nodeType":"YulIdentifier","src":"323:2:101"},"nativeSrc":"323:30:101","nodeType":"YulFunctionCall","src":"323:30:101"},"nativeSrc":"320:56:101","nodeType":"YulIf","src":"320:56:101"},{"nativeSrc":"385:23:101","nodeType":"YulVariableDeclaration","src":"385:23:101","value":{"arguments":[{"kind":"number","nativeSrc":"405:2:101","nodeType":"YulLiteral","src":"405:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"399:5:101","nodeType":"YulIdentifier","src":"399:5:101"},"nativeSrc":"399:9:101","nodeType":"YulFunctionCall","src":"399:9:101"},"variables":[{"name":"memPtr","nativeSrc":"389:6:101","nodeType":"YulTypedName","src":"389:6:101","type":""}]},{"nativeSrc":"417:85:101","nodeType":"YulVariableDeclaration","src":"417:85:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"439:6:101","nodeType":"YulIdentifier","src":"439:6:101"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"463:6:101","nodeType":"YulIdentifier","src":"463:6:101"},{"kind":"number","nativeSrc":"471:4:101","nodeType":"YulLiteral","src":"471:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"459:3:101","nodeType":"YulIdentifier","src":"459:3:101"},"nativeSrc":"459:17:101","nodeType":"YulFunctionCall","src":"459:17:101"},{"arguments":[{"kind":"number","nativeSrc":"482:2:101","nodeType":"YulLiteral","src":"482:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"478:3:101","nodeType":"YulIdentifier","src":"478:3:101"},"nativeSrc":"478:7:101","nodeType":"YulFunctionCall","src":"478:7:101"}],"functionName":{"name":"and","nativeSrc":"455:3:101","nodeType":"YulIdentifier","src":"455:3:101"},"nativeSrc":"455:31:101","nodeType":"YulFunctionCall","src":"455:31:101"},{"kind":"number","nativeSrc":"488:2:101","nodeType":"YulLiteral","src":"488:2:101","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"451:3:101","nodeType":"YulIdentifier","src":"451:3:101"},"nativeSrc":"451:40:101","nodeType":"YulFunctionCall","src":"451:40:101"},{"arguments":[{"kind":"number","nativeSrc":"497:2:101","nodeType":"YulLiteral","src":"497:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"493:3:101","nodeType":"YulIdentifier","src":"493:3:101"},"nativeSrc":"493:7:101","nodeType":"YulFunctionCall","src":"493:7:101"}],"functionName":{"name":"and","nativeSrc":"447:3:101","nodeType":"YulIdentifier","src":"447:3:101"},"nativeSrc":"447:54:101","nodeType":"YulFunctionCall","src":"447:54:101"}],"functionName":{"name":"add","nativeSrc":"435:3:101","nodeType":"YulIdentifier","src":"435:3:101"},"nativeSrc":"435:67:101","nodeType":"YulFunctionCall","src":"435:67:101"},"variables":[{"name":"newFreePtr","nativeSrc":"421:10:101","nodeType":"YulTypedName","src":"421:10:101","type":""}]},{"body":{"nativeSrc":"577:22:101","nodeType":"YulBlock","src":"577:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"579:16:101","nodeType":"YulIdentifier","src":"579:16:101"},"nativeSrc":"579:18:101","nodeType":"YulFunctionCall","src":"579:18:101"},"nativeSrc":"579:18:101","nodeType":"YulExpressionStatement","src":"579:18:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"520:10:101","nodeType":"YulIdentifier","src":"520:10:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"540:2:101","nodeType":"YulLiteral","src":"540:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"544:1:101","nodeType":"YulLiteral","src":"544:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"536:3:101","nodeType":"YulIdentifier","src":"536:3:101"},"nativeSrc":"536:10:101","nodeType":"YulFunctionCall","src":"536:10:101"},{"kind":"number","nativeSrc":"548:1:101","nodeType":"YulLiteral","src":"548:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"532:3:101","nodeType":"YulIdentifier","src":"532:3:101"},"nativeSrc":"532:18:101","nodeType":"YulFunctionCall","src":"532:18:101"}],"functionName":{"name":"gt","nativeSrc":"517:2:101","nodeType":"YulIdentifier","src":"517:2:101"},"nativeSrc":"517:34:101","nodeType":"YulFunctionCall","src":"517:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"556:10:101","nodeType":"YulIdentifier","src":"556:10:101"},{"name":"memPtr","nativeSrc":"568:6:101","nodeType":"YulIdentifier","src":"568:6:101"}],"functionName":{"name":"lt","nativeSrc":"553:2:101","nodeType":"YulIdentifier","src":"553:2:101"},"nativeSrc":"553:22:101","nodeType":"YulFunctionCall","src":"553:22:101"}],"functionName":{"name":"or","nativeSrc":"514:2:101","nodeType":"YulIdentifier","src":"514:2:101"},"nativeSrc":"514:62:101","nodeType":"YulFunctionCall","src":"514:62:101"},"nativeSrc":"511:88:101","nodeType":"YulIf","src":"511:88:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"615:2:101","nodeType":"YulLiteral","src":"615:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"619:10:101","nodeType":"YulIdentifier","src":"619:10:101"}],"functionName":{"name":"mstore","nativeSrc":"608:6:101","nodeType":"YulIdentifier","src":"608:6:101"},"nativeSrc":"608:22:101","nodeType":"YulFunctionCall","src":"608:22:101"},"nativeSrc":"608:22:101","nodeType":"YulExpressionStatement","src":"608:22:101"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"646:6:101","nodeType":"YulIdentifier","src":"646:6:101"},{"name":"length","nativeSrc":"654:6:101","nodeType":"YulIdentifier","src":"654:6:101"}],"functionName":{"name":"mstore","nativeSrc":"639:6:101","nodeType":"YulIdentifier","src":"639:6:101"},"nativeSrc":"639:22:101","nodeType":"YulFunctionCall","src":"639:22:101"},"nativeSrc":"639:22:101","nodeType":"YulExpressionStatement","src":"639:22:101"},{"body":{"nativeSrc":"713:16:101","nodeType":"YulBlock","src":"713:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"722:1:101","nodeType":"YulLiteral","src":"722:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"725:1:101","nodeType":"YulLiteral","src":"725:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"715:6:101","nodeType":"YulIdentifier","src":"715:6:101"},"nativeSrc":"715:12:101","nodeType":"YulFunctionCall","src":"715:12:101"},"nativeSrc":"715:12:101","nodeType":"YulExpressionStatement","src":"715:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"684:6:101","nodeType":"YulIdentifier","src":"684:6:101"},{"name":"length","nativeSrc":"692:6:101","nodeType":"YulIdentifier","src":"692:6:101"}],"functionName":{"name":"add","nativeSrc":"680:3:101","nodeType":"YulIdentifier","src":"680:3:101"},"nativeSrc":"680:19:101","nodeType":"YulFunctionCall","src":"680:19:101"},{"kind":"number","nativeSrc":"701:4:101","nodeType":"YulLiteral","src":"701:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"676:3:101","nodeType":"YulIdentifier","src":"676:3:101"},"nativeSrc":"676:30:101","nodeType":"YulFunctionCall","src":"676:30:101"},{"name":"end","nativeSrc":"708:3:101","nodeType":"YulIdentifier","src":"708:3:101"}],"functionName":{"name":"gt","nativeSrc":"673:2:101","nodeType":"YulIdentifier","src":"673:2:101"},"nativeSrc":"673:39:101","nodeType":"YulFunctionCall","src":"673:39:101"},"nativeSrc":"670:59:101","nodeType":"YulIf","src":"670:59:101"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"748:6:101","nodeType":"YulIdentifier","src":"748:6:101"},{"kind":"number","nativeSrc":"756:4:101","nodeType":"YulLiteral","src":"756:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"744:3:101","nodeType":"YulIdentifier","src":"744:3:101"},"nativeSrc":"744:17:101","nodeType":"YulFunctionCall","src":"744:17:101"},{"arguments":[{"name":"offset","nativeSrc":"767:6:101","nodeType":"YulIdentifier","src":"767:6:101"},{"kind":"number","nativeSrc":"775:4:101","nodeType":"YulLiteral","src":"775:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"763:3:101","nodeType":"YulIdentifier","src":"763:3:101"},"nativeSrc":"763:17:101","nodeType":"YulFunctionCall","src":"763:17:101"},{"name":"length","nativeSrc":"782:6:101","nodeType":"YulIdentifier","src":"782:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"738:5:101","nodeType":"YulIdentifier","src":"738:5:101"},"nativeSrc":"738:51:101","nodeType":"YulFunctionCall","src":"738:51:101"},"nativeSrc":"738:51:101","nodeType":"YulExpressionStatement","src":"738:51:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"813:6:101","nodeType":"YulIdentifier","src":"813:6:101"},{"name":"length","nativeSrc":"821:6:101","nodeType":"YulIdentifier","src":"821:6:101"}],"functionName":{"name":"add","nativeSrc":"809:3:101","nodeType":"YulIdentifier","src":"809:3:101"},"nativeSrc":"809:19:101","nodeType":"YulFunctionCall","src":"809:19:101"},{"kind":"number","nativeSrc":"830:4:101","nodeType":"YulLiteral","src":"830:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"805:3:101","nodeType":"YulIdentifier","src":"805:3:101"},"nativeSrc":"805:30:101","nodeType":"YulFunctionCall","src":"805:30:101"},{"kind":"number","nativeSrc":"837:1:101","nodeType":"YulLiteral","src":"837:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"798:6:101","nodeType":"YulIdentifier","src":"798:6:101"},"nativeSrc":"798:41:101","nodeType":"YulFunctionCall","src":"798:41:101"},"nativeSrc":"798:41:101","nodeType":"YulExpressionStatement","src":"798:41:101"},{"nativeSrc":"848:15:101","nodeType":"YulAssignment","src":"848:15:101","value":{"name":"memPtr","nativeSrc":"857:6:101","nodeType":"YulIdentifier","src":"857:6:101"},"variableNames":[{"name":"array","nativeSrc":"848:5:101","nodeType":"YulIdentifier","src":"848:5:101"}]}]},"name":"abi_decode_string_fromMemory","nativeSrc":"146:723:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"184:6:101","nodeType":"YulTypedName","src":"184:6:101","type":""},{"name":"end","nativeSrc":"192:3:101","nodeType":"YulTypedName","src":"192:3:101","type":""}],"returnVariables":[{"name":"array","nativeSrc":"200:5:101","nodeType":"YulTypedName","src":"200:5:101","type":""}],"src":"146:723:101"},{"body":{"nativeSrc":"1024:619:101","nodeType":"YulBlock","src":"1024:619:101","statements":[{"body":{"nativeSrc":"1071:16:101","nodeType":"YulBlock","src":"1071:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1080:1:101","nodeType":"YulLiteral","src":"1080:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1083:1:101","nodeType":"YulLiteral","src":"1083:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1073:6:101","nodeType":"YulIdentifier","src":"1073:6:101"},"nativeSrc":"1073:12:101","nodeType":"YulFunctionCall","src":"1073:12:101"},"nativeSrc":"1073:12:101","nodeType":"YulExpressionStatement","src":"1073:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1045:7:101","nodeType":"YulIdentifier","src":"1045:7:101"},{"name":"headStart","nativeSrc":"1054:9:101","nodeType":"YulIdentifier","src":"1054:9:101"}],"functionName":{"name":"sub","nativeSrc":"1041:3:101","nodeType":"YulIdentifier","src":"1041:3:101"},"nativeSrc":"1041:23:101","nodeType":"YulFunctionCall","src":"1041:23:101"},{"kind":"number","nativeSrc":"1066:3:101","nodeType":"YulLiteral","src":"1066:3:101","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"1037:3:101","nodeType":"YulIdentifier","src":"1037:3:101"},"nativeSrc":"1037:33:101","nodeType":"YulFunctionCall","src":"1037:33:101"},"nativeSrc":"1034:53:101","nodeType":"YulIf","src":"1034:53:101"},{"nativeSrc":"1096:30:101","nodeType":"YulVariableDeclaration","src":"1096:30:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1116:9:101","nodeType":"YulIdentifier","src":"1116:9:101"}],"functionName":{"name":"mload","nativeSrc":"1110:5:101","nodeType":"YulIdentifier","src":"1110:5:101"},"nativeSrc":"1110:16:101","nodeType":"YulFunctionCall","src":"1110:16:101"},"variables":[{"name":"offset","nativeSrc":"1100:6:101","nodeType":"YulTypedName","src":"1100:6:101","type":""}]},{"body":{"nativeSrc":"1169:16:101","nodeType":"YulBlock","src":"1169:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1178:1:101","nodeType":"YulLiteral","src":"1178:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1181:1:101","nodeType":"YulLiteral","src":"1181:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1171:6:101","nodeType":"YulIdentifier","src":"1171:6:101"},"nativeSrc":"1171:12:101","nodeType":"YulFunctionCall","src":"1171:12:101"},"nativeSrc":"1171:12:101","nodeType":"YulExpressionStatement","src":"1171:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1141:6:101","nodeType":"YulIdentifier","src":"1141:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1157:2:101","nodeType":"YulLiteral","src":"1157:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"1161:1:101","nodeType":"YulLiteral","src":"1161:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1153:3:101","nodeType":"YulIdentifier","src":"1153:3:101"},"nativeSrc":"1153:10:101","nodeType":"YulFunctionCall","src":"1153:10:101"},{"kind":"number","nativeSrc":"1165:1:101","nodeType":"YulLiteral","src":"1165:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1149:3:101","nodeType":"YulIdentifier","src":"1149:3:101"},"nativeSrc":"1149:18:101","nodeType":"YulFunctionCall","src":"1149:18:101"}],"functionName":{"name":"gt","nativeSrc":"1138:2:101","nodeType":"YulIdentifier","src":"1138:2:101"},"nativeSrc":"1138:30:101","nodeType":"YulFunctionCall","src":"1138:30:101"},"nativeSrc":"1135:50:101","nodeType":"YulIf","src":"1135:50:101"},{"nativeSrc":"1194:71:101","nodeType":"YulAssignment","src":"1194:71:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1237:9:101","nodeType":"YulIdentifier","src":"1237:9:101"},{"name":"offset","nativeSrc":"1248:6:101","nodeType":"YulIdentifier","src":"1248:6:101"}],"functionName":{"name":"add","nativeSrc":"1233:3:101","nodeType":"YulIdentifier","src":"1233:3:101"},"nativeSrc":"1233:22:101","nodeType":"YulFunctionCall","src":"1233:22:101"},{"name":"dataEnd","nativeSrc":"1257:7:101","nodeType":"YulIdentifier","src":"1257:7:101"}],"functionName":{"name":"abi_decode_string_fromMemory","nativeSrc":"1204:28:101","nodeType":"YulIdentifier","src":"1204:28:101"},"nativeSrc":"1204:61:101","nodeType":"YulFunctionCall","src":"1204:61:101"},"variableNames":[{"name":"value0","nativeSrc":"1194:6:101","nodeType":"YulIdentifier","src":"1194:6:101"}]},{"nativeSrc":"1274:41:101","nodeType":"YulVariableDeclaration","src":"1274:41:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1300:9:101","nodeType":"YulIdentifier","src":"1300:9:101"},{"kind":"number","nativeSrc":"1311:2:101","nodeType":"YulLiteral","src":"1311:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1296:3:101","nodeType":"YulIdentifier","src":"1296:3:101"},"nativeSrc":"1296:18:101","nodeType":"YulFunctionCall","src":"1296:18:101"}],"functionName":{"name":"mload","nativeSrc":"1290:5:101","nodeType":"YulIdentifier","src":"1290:5:101"},"nativeSrc":"1290:25:101","nodeType":"YulFunctionCall","src":"1290:25:101"},"variables":[{"name":"offset_1","nativeSrc":"1278:8:101","nodeType":"YulTypedName","src":"1278:8:101","type":""}]},{"body":{"nativeSrc":"1360:16:101","nodeType":"YulBlock","src":"1360:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1369:1:101","nodeType":"YulLiteral","src":"1369:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1372:1:101","nodeType":"YulLiteral","src":"1372:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1362:6:101","nodeType":"YulIdentifier","src":"1362:6:101"},"nativeSrc":"1362:12:101","nodeType":"YulFunctionCall","src":"1362:12:101"},"nativeSrc":"1362:12:101","nodeType":"YulExpressionStatement","src":"1362:12:101"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"1330:8:101","nodeType":"YulIdentifier","src":"1330:8:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1348:2:101","nodeType":"YulLiteral","src":"1348:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"1352:1:101","nodeType":"YulLiteral","src":"1352:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1344:3:101","nodeType":"YulIdentifier","src":"1344:3:101"},"nativeSrc":"1344:10:101","nodeType":"YulFunctionCall","src":"1344:10:101"},{"kind":"number","nativeSrc":"1356:1:101","nodeType":"YulLiteral","src":"1356:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1340:3:101","nodeType":"YulIdentifier","src":"1340:3:101"},"nativeSrc":"1340:18:101","nodeType":"YulFunctionCall","src":"1340:18:101"}],"functionName":{"name":"gt","nativeSrc":"1327:2:101","nodeType":"YulIdentifier","src":"1327:2:101"},"nativeSrc":"1327:32:101","nodeType":"YulFunctionCall","src":"1327:32:101"},"nativeSrc":"1324:52:101","nodeType":"YulIf","src":"1324:52:101"},{"nativeSrc":"1385:73:101","nodeType":"YulAssignment","src":"1385:73:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1428:9:101","nodeType":"YulIdentifier","src":"1428:9:101"},{"name":"offset_1","nativeSrc":"1439:8:101","nodeType":"YulIdentifier","src":"1439:8:101"}],"functionName":{"name":"add","nativeSrc":"1424:3:101","nodeType":"YulIdentifier","src":"1424:3:101"},"nativeSrc":"1424:24:101","nodeType":"YulFunctionCall","src":"1424:24:101"},{"name":"dataEnd","nativeSrc":"1450:7:101","nodeType":"YulIdentifier","src":"1450:7:101"}],"functionName":{"name":"abi_decode_string_fromMemory","nativeSrc":"1395:28:101","nodeType":"YulIdentifier","src":"1395:28:101"},"nativeSrc":"1395:63:101","nodeType":"YulFunctionCall","src":"1395:63:101"},"variableNames":[{"name":"value1","nativeSrc":"1385:6:101","nodeType":"YulIdentifier","src":"1385:6:101"}]},{"nativeSrc":"1467:35:101","nodeType":"YulAssignment","src":"1467:35:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1487:9:101","nodeType":"YulIdentifier","src":"1487:9:101"},{"kind":"number","nativeSrc":"1498:2:101","nodeType":"YulLiteral","src":"1498:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1483:3:101","nodeType":"YulIdentifier","src":"1483:3:101"},"nativeSrc":"1483:18:101","nodeType":"YulFunctionCall","src":"1483:18:101"}],"functionName":{"name":"mload","nativeSrc":"1477:5:101","nodeType":"YulIdentifier","src":"1477:5:101"},"nativeSrc":"1477:25:101","nodeType":"YulFunctionCall","src":"1477:25:101"},"variableNames":[{"name":"value2","nativeSrc":"1467:6:101","nodeType":"YulIdentifier","src":"1467:6:101"}]},{"nativeSrc":"1511:38:101","nodeType":"YulVariableDeclaration","src":"1511:38:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1534:9:101","nodeType":"YulIdentifier","src":"1534:9:101"},{"kind":"number","nativeSrc":"1545:2:101","nodeType":"YulLiteral","src":"1545:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1530:3:101","nodeType":"YulIdentifier","src":"1530:3:101"},"nativeSrc":"1530:18:101","nodeType":"YulFunctionCall","src":"1530:18:101"}],"functionName":{"name":"mload","nativeSrc":"1524:5:101","nodeType":"YulIdentifier","src":"1524:5:101"},"nativeSrc":"1524:25:101","nodeType":"YulFunctionCall","src":"1524:25:101"},"variables":[{"name":"value","nativeSrc":"1515:5:101","nodeType":"YulTypedName","src":"1515:5:101","type":""}]},{"body":{"nativeSrc":"1597:16:101","nodeType":"YulBlock","src":"1597:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1606:1:101","nodeType":"YulLiteral","src":"1606:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1609:1:101","nodeType":"YulLiteral","src":"1609:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1599:6:101","nodeType":"YulIdentifier","src":"1599:6:101"},"nativeSrc":"1599:12:101","nodeType":"YulFunctionCall","src":"1599:12:101"},"nativeSrc":"1599:12:101","nodeType":"YulExpressionStatement","src":"1599:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1571:5:101","nodeType":"YulIdentifier","src":"1571:5:101"},{"arguments":[{"name":"value","nativeSrc":"1582:5:101","nodeType":"YulIdentifier","src":"1582:5:101"},{"kind":"number","nativeSrc":"1589:4:101","nodeType":"YulLiteral","src":"1589:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"1578:3:101","nodeType":"YulIdentifier","src":"1578:3:101"},"nativeSrc":"1578:16:101","nodeType":"YulFunctionCall","src":"1578:16:101"}],"functionName":{"name":"eq","nativeSrc":"1568:2:101","nodeType":"YulIdentifier","src":"1568:2:101"},"nativeSrc":"1568:27:101","nodeType":"YulFunctionCall","src":"1568:27:101"}],"functionName":{"name":"iszero","nativeSrc":"1561:6:101","nodeType":"YulIdentifier","src":"1561:6:101"},"nativeSrc":"1561:35:101","nodeType":"YulFunctionCall","src":"1561:35:101"},"nativeSrc":"1558:55:101","nodeType":"YulIf","src":"1558:55:101"},{"nativeSrc":"1622:15:101","nodeType":"YulAssignment","src":"1622:15:101","value":{"name":"value","nativeSrc":"1632:5:101","nodeType":"YulIdentifier","src":"1632:5:101"},"variableNames":[{"name":"value3","nativeSrc":"1622:6:101","nodeType":"YulIdentifier","src":"1622:6:101"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint8_fromMemory","nativeSrc":"874:769:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"966:9:101","nodeType":"YulTypedName","src":"966:9:101","type":""},{"name":"dataEnd","nativeSrc":"977:7:101","nodeType":"YulTypedName","src":"977:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"989:6:101","nodeType":"YulTypedName","src":"989:6:101","type":""},{"name":"value1","nativeSrc":"997:6:101","nodeType":"YulTypedName","src":"997:6:101","type":""},{"name":"value2","nativeSrc":"1005:6:101","nodeType":"YulTypedName","src":"1005:6:101","type":""},{"name":"value3","nativeSrc":"1013:6:101","nodeType":"YulTypedName","src":"1013:6:101","type":""}],"src":"874:769:101"},{"body":{"nativeSrc":"1703:325:101","nodeType":"YulBlock","src":"1703:325:101","statements":[{"nativeSrc":"1713:22:101","nodeType":"YulAssignment","src":"1713:22:101","value":{"arguments":[{"kind":"number","nativeSrc":"1727:1:101","nodeType":"YulLiteral","src":"1727:1:101","type":"","value":"1"},{"name":"data","nativeSrc":"1730:4:101","nodeType":"YulIdentifier","src":"1730:4:101"}],"functionName":{"name":"shr","nativeSrc":"1723:3:101","nodeType":"YulIdentifier","src":"1723:3:101"},"nativeSrc":"1723:12:101","nodeType":"YulFunctionCall","src":"1723:12:101"},"variableNames":[{"name":"length","nativeSrc":"1713:6:101","nodeType":"YulIdentifier","src":"1713:6:101"}]},{"nativeSrc":"1744:38:101","nodeType":"YulVariableDeclaration","src":"1744:38:101","value":{"arguments":[{"name":"data","nativeSrc":"1774:4:101","nodeType":"YulIdentifier","src":"1774:4:101"},{"kind":"number","nativeSrc":"1780:1:101","nodeType":"YulLiteral","src":"1780:1:101","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"1770:3:101","nodeType":"YulIdentifier","src":"1770:3:101"},"nativeSrc":"1770:12:101","nodeType":"YulFunctionCall","src":"1770:12:101"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"1748:18:101","nodeType":"YulTypedName","src":"1748:18:101","type":""}]},{"body":{"nativeSrc":"1821:31:101","nodeType":"YulBlock","src":"1821:31:101","statements":[{"nativeSrc":"1823:27:101","nodeType":"YulAssignment","src":"1823:27:101","value":{"arguments":[{"name":"length","nativeSrc":"1837:6:101","nodeType":"YulIdentifier","src":"1837:6:101"},{"kind":"number","nativeSrc":"1845:4:101","nodeType":"YulLiteral","src":"1845:4:101","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"1833:3:101","nodeType":"YulIdentifier","src":"1833:3:101"},"nativeSrc":"1833:17:101","nodeType":"YulFunctionCall","src":"1833:17:101"},"variableNames":[{"name":"length","nativeSrc":"1823:6:101","nodeType":"YulIdentifier","src":"1823:6:101"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"1801:18:101","nodeType":"YulIdentifier","src":"1801:18:101"}],"functionName":{"name":"iszero","nativeSrc":"1794:6:101","nodeType":"YulIdentifier","src":"1794:6:101"},"nativeSrc":"1794:26:101","nodeType":"YulFunctionCall","src":"1794:26:101"},"nativeSrc":"1791:61:101","nodeType":"YulIf","src":"1791:61:101"},{"body":{"nativeSrc":"1911:111:101","nodeType":"YulBlock","src":"1911:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1932:1:101","nodeType":"YulLiteral","src":"1932:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1939:3:101","nodeType":"YulLiteral","src":"1939:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"1944:10:101","nodeType":"YulLiteral","src":"1944:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1935:3:101","nodeType":"YulIdentifier","src":"1935:3:101"},"nativeSrc":"1935:20:101","nodeType":"YulFunctionCall","src":"1935:20:101"}],"functionName":{"name":"mstore","nativeSrc":"1925:6:101","nodeType":"YulIdentifier","src":"1925:6:101"},"nativeSrc":"1925:31:101","nodeType":"YulFunctionCall","src":"1925:31:101"},"nativeSrc":"1925:31:101","nodeType":"YulExpressionStatement","src":"1925:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1976:1:101","nodeType":"YulLiteral","src":"1976:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"1979:4:101","nodeType":"YulLiteral","src":"1979:4:101","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"1969:6:101","nodeType":"YulIdentifier","src":"1969:6:101"},"nativeSrc":"1969:15:101","nodeType":"YulFunctionCall","src":"1969:15:101"},"nativeSrc":"1969:15:101","nodeType":"YulExpressionStatement","src":"1969:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2004:1:101","nodeType":"YulLiteral","src":"2004:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2007:4:101","nodeType":"YulLiteral","src":"2007:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1997:6:101","nodeType":"YulIdentifier","src":"1997:6:101"},"nativeSrc":"1997:15:101","nodeType":"YulFunctionCall","src":"1997:15:101"},"nativeSrc":"1997:15:101","nodeType":"YulExpressionStatement","src":"1997:15:101"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"1867:18:101","nodeType":"YulIdentifier","src":"1867:18:101"},{"arguments":[{"name":"length","nativeSrc":"1890:6:101","nodeType":"YulIdentifier","src":"1890:6:101"},{"kind":"number","nativeSrc":"1898:2:101","nodeType":"YulLiteral","src":"1898:2:101","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"1887:2:101","nodeType":"YulIdentifier","src":"1887:2:101"},"nativeSrc":"1887:14:101","nodeType":"YulFunctionCall","src":"1887:14:101"}],"functionName":{"name":"eq","nativeSrc":"1864:2:101","nodeType":"YulIdentifier","src":"1864:2:101"},"nativeSrc":"1864:38:101","nodeType":"YulFunctionCall","src":"1864:38:101"},"nativeSrc":"1861:161:101","nodeType":"YulIf","src":"1861:161:101"}]},"name":"extract_byte_array_length","nativeSrc":"1648:380:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"1683:4:101","nodeType":"YulTypedName","src":"1683:4:101","type":""}],"returnVariables":[{"name":"length","nativeSrc":"1692:6:101","nodeType":"YulTypedName","src":"1692:6:101","type":""}],"src":"1648:380:101"},{"body":{"nativeSrc":"2089:65:101","nodeType":"YulBlock","src":"2089:65:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2106:1:101","nodeType":"YulLiteral","src":"2106:1:101","type":"","value":"0"},{"name":"ptr","nativeSrc":"2109:3:101","nodeType":"YulIdentifier","src":"2109:3:101"}],"functionName":{"name":"mstore","nativeSrc":"2099:6:101","nodeType":"YulIdentifier","src":"2099:6:101"},"nativeSrc":"2099:14:101","nodeType":"YulFunctionCall","src":"2099:14:101"},"nativeSrc":"2099:14:101","nodeType":"YulExpressionStatement","src":"2099:14:101"},{"nativeSrc":"2122:26:101","nodeType":"YulAssignment","src":"2122:26:101","value":{"arguments":[{"kind":"number","nativeSrc":"2140:1:101","nodeType":"YulLiteral","src":"2140:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2143:4:101","nodeType":"YulLiteral","src":"2143:4:101","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2130:9:101","nodeType":"YulIdentifier","src":"2130:9:101"},"nativeSrc":"2130:18:101","nodeType":"YulFunctionCall","src":"2130:18:101"},"variableNames":[{"name":"data","nativeSrc":"2122:4:101","nodeType":"YulIdentifier","src":"2122:4:101"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"2033:121:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"2072:3:101","nodeType":"YulTypedName","src":"2072:3:101","type":""}],"returnVariables":[{"name":"data","nativeSrc":"2080:4:101","nodeType":"YulTypedName","src":"2080:4:101","type":""}],"src":"2033:121:101"},{"body":{"nativeSrc":"2240:437:101","nodeType":"YulBlock","src":"2240:437:101","statements":[{"body":{"nativeSrc":"2273:398:101","nodeType":"YulBlock","src":"2273:398:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2294:1:101","nodeType":"YulLiteral","src":"2294:1:101","type":"","value":"0"},{"name":"array","nativeSrc":"2297:5:101","nodeType":"YulIdentifier","src":"2297:5:101"}],"functionName":{"name":"mstore","nativeSrc":"2287:6:101","nodeType":"YulIdentifier","src":"2287:6:101"},"nativeSrc":"2287:16:101","nodeType":"YulFunctionCall","src":"2287:16:101"},"nativeSrc":"2287:16:101","nodeType":"YulExpressionStatement","src":"2287:16:101"},{"nativeSrc":"2316:30:101","nodeType":"YulVariableDeclaration","src":"2316:30:101","value":{"arguments":[{"kind":"number","nativeSrc":"2338:1:101","nodeType":"YulLiteral","src":"2338:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2341:4:101","nodeType":"YulLiteral","src":"2341:4:101","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2328:9:101","nodeType":"YulIdentifier","src":"2328:9:101"},"nativeSrc":"2328:18:101","nodeType":"YulFunctionCall","src":"2328:18:101"},"variables":[{"name":"data","nativeSrc":"2320:4:101","nodeType":"YulTypedName","src":"2320:4:101","type":""}]},{"nativeSrc":"2359:57:101","nodeType":"YulVariableDeclaration","src":"2359:57:101","value":{"arguments":[{"name":"data","nativeSrc":"2382:4:101","nodeType":"YulIdentifier","src":"2382:4:101"},{"arguments":[{"kind":"number","nativeSrc":"2392:1:101","nodeType":"YulLiteral","src":"2392:1:101","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"2399:10:101","nodeType":"YulIdentifier","src":"2399:10:101"},{"kind":"number","nativeSrc":"2411:2:101","nodeType":"YulLiteral","src":"2411:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2395:3:101","nodeType":"YulIdentifier","src":"2395:3:101"},"nativeSrc":"2395:19:101","nodeType":"YulFunctionCall","src":"2395:19:101"}],"functionName":{"name":"shr","nativeSrc":"2388:3:101","nodeType":"YulIdentifier","src":"2388:3:101"},"nativeSrc":"2388:27:101","nodeType":"YulFunctionCall","src":"2388:27:101"}],"functionName":{"name":"add","nativeSrc":"2378:3:101","nodeType":"YulIdentifier","src":"2378:3:101"},"nativeSrc":"2378:38:101","nodeType":"YulFunctionCall","src":"2378:38:101"},"variables":[{"name":"deleteStart","nativeSrc":"2363:11:101","nodeType":"YulTypedName","src":"2363:11:101","type":""}]},{"body":{"nativeSrc":"2453:23:101","nodeType":"YulBlock","src":"2453:23:101","statements":[{"nativeSrc":"2455:19:101","nodeType":"YulAssignment","src":"2455:19:101","value":{"name":"data","nativeSrc":"2470:4:101","nodeType":"YulIdentifier","src":"2470:4:101"},"variableNames":[{"name":"deleteStart","nativeSrc":"2455:11:101","nodeType":"YulIdentifier","src":"2455:11:101"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"2435:10:101","nodeType":"YulIdentifier","src":"2435:10:101"},{"kind":"number","nativeSrc":"2447:4:101","nodeType":"YulLiteral","src":"2447:4:101","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"2432:2:101","nodeType":"YulIdentifier","src":"2432:2:101"},"nativeSrc":"2432:20:101","nodeType":"YulFunctionCall","src":"2432:20:101"},"nativeSrc":"2429:47:101","nodeType":"YulIf","src":"2429:47:101"},{"nativeSrc":"2489:41:101","nodeType":"YulVariableDeclaration","src":"2489:41:101","value":{"arguments":[{"name":"data","nativeSrc":"2503:4:101","nodeType":"YulIdentifier","src":"2503:4:101"},{"arguments":[{"kind":"number","nativeSrc":"2513:1:101","nodeType":"YulLiteral","src":"2513:1:101","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"2520:3:101","nodeType":"YulIdentifier","src":"2520:3:101"},{"kind":"number","nativeSrc":"2525:2:101","nodeType":"YulLiteral","src":"2525:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2516:3:101","nodeType":"YulIdentifier","src":"2516:3:101"},"nativeSrc":"2516:12:101","nodeType":"YulFunctionCall","src":"2516:12:101"}],"functionName":{"name":"shr","nativeSrc":"2509:3:101","nodeType":"YulIdentifier","src":"2509:3:101"},"nativeSrc":"2509:20:101","nodeType":"YulFunctionCall","src":"2509:20:101"}],"functionName":{"name":"add","nativeSrc":"2499:3:101","nodeType":"YulIdentifier","src":"2499:3:101"},"nativeSrc":"2499:31:101","nodeType":"YulFunctionCall","src":"2499:31:101"},"variables":[{"name":"_1","nativeSrc":"2493:2:101","nodeType":"YulTypedName","src":"2493:2:101","type":""}]},{"nativeSrc":"2543:24:101","nodeType":"YulVariableDeclaration","src":"2543:24:101","value":{"name":"deleteStart","nativeSrc":"2556:11:101","nodeType":"YulIdentifier","src":"2556:11:101"},"variables":[{"name":"start","nativeSrc":"2547:5:101","nodeType":"YulTypedName","src":"2547:5:101","type":""}]},{"body":{"nativeSrc":"2641:20:101","nodeType":"YulBlock","src":"2641:20:101","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"2650:5:101","nodeType":"YulIdentifier","src":"2650:5:101"},{"kind":"number","nativeSrc":"2657:1:101","nodeType":"YulLiteral","src":"2657:1:101","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"2643:6:101","nodeType":"YulIdentifier","src":"2643:6:101"},"nativeSrc":"2643:16:101","nodeType":"YulFunctionCall","src":"2643:16:101"},"nativeSrc":"2643:16:101","nodeType":"YulExpressionStatement","src":"2643:16:101"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"2591:5:101","nodeType":"YulIdentifier","src":"2591:5:101"},{"name":"_1","nativeSrc":"2598:2:101","nodeType":"YulIdentifier","src":"2598:2:101"}],"functionName":{"name":"lt","nativeSrc":"2588:2:101","nodeType":"YulIdentifier","src":"2588:2:101"},"nativeSrc":"2588:13:101","nodeType":"YulFunctionCall","src":"2588:13:101"},"nativeSrc":"2580:81:101","nodeType":"YulForLoop","post":{"nativeSrc":"2602:26:101","nodeType":"YulBlock","src":"2602:26:101","statements":[{"nativeSrc":"2604:22:101","nodeType":"YulAssignment","src":"2604:22:101","value":{"arguments":[{"name":"start","nativeSrc":"2617:5:101","nodeType":"YulIdentifier","src":"2617:5:101"},{"kind":"number","nativeSrc":"2624:1:101","nodeType":"YulLiteral","src":"2624:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"2613:3:101","nodeType":"YulIdentifier","src":"2613:3:101"},"nativeSrc":"2613:13:101","nodeType":"YulFunctionCall","src":"2613:13:101"},"variableNames":[{"name":"start","nativeSrc":"2604:5:101","nodeType":"YulIdentifier","src":"2604:5:101"}]}]},"pre":{"nativeSrc":"2584:3:101","nodeType":"YulBlock","src":"2584:3:101","statements":[]},"src":"2580:81:101"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"2256:3:101","nodeType":"YulIdentifier","src":"2256:3:101"},{"kind":"number","nativeSrc":"2261:2:101","nodeType":"YulLiteral","src":"2261:2:101","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"2253:2:101","nodeType":"YulIdentifier","src":"2253:2:101"},"nativeSrc":"2253:11:101","nodeType":"YulFunctionCall","src":"2253:11:101"},"nativeSrc":"2250:421:101","nodeType":"YulIf","src":"2250:421:101"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"2159:518:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"2212:5:101","nodeType":"YulTypedName","src":"2212:5:101","type":""},{"name":"len","nativeSrc":"2219:3:101","nodeType":"YulTypedName","src":"2219:3:101","type":""},{"name":"startIndex","nativeSrc":"2224:10:101","nodeType":"YulTypedName","src":"2224:10:101","type":""}],"src":"2159:518:101"},{"body":{"nativeSrc":"2767:81:101","nodeType":"YulBlock","src":"2767:81:101","statements":[{"nativeSrc":"2777:65:101","nodeType":"YulAssignment","src":"2777:65:101","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"2792:4:101","nodeType":"YulIdentifier","src":"2792:4:101"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2810:1:101","nodeType":"YulLiteral","src":"2810:1:101","type":"","value":"3"},{"name":"len","nativeSrc":"2813:3:101","nodeType":"YulIdentifier","src":"2813:3:101"}],"functionName":{"name":"shl","nativeSrc":"2806:3:101","nodeType":"YulIdentifier","src":"2806:3:101"},"nativeSrc":"2806:11:101","nodeType":"YulFunctionCall","src":"2806:11:101"},{"arguments":[{"kind":"number","nativeSrc":"2823:1:101","nodeType":"YulLiteral","src":"2823:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2819:3:101","nodeType":"YulIdentifier","src":"2819:3:101"},"nativeSrc":"2819:6:101","nodeType":"YulFunctionCall","src":"2819:6:101"}],"functionName":{"name":"shr","nativeSrc":"2802:3:101","nodeType":"YulIdentifier","src":"2802:3:101"},"nativeSrc":"2802:24:101","nodeType":"YulFunctionCall","src":"2802:24:101"}],"functionName":{"name":"not","nativeSrc":"2798:3:101","nodeType":"YulIdentifier","src":"2798:3:101"},"nativeSrc":"2798:29:101","nodeType":"YulFunctionCall","src":"2798:29:101"}],"functionName":{"name":"and","nativeSrc":"2788:3:101","nodeType":"YulIdentifier","src":"2788:3:101"},"nativeSrc":"2788:40:101","nodeType":"YulFunctionCall","src":"2788:40:101"},{"arguments":[{"kind":"number","nativeSrc":"2834:1:101","nodeType":"YulLiteral","src":"2834:1:101","type":"","value":"1"},{"name":"len","nativeSrc":"2837:3:101","nodeType":"YulIdentifier","src":"2837:3:101"}],"functionName":{"name":"shl","nativeSrc":"2830:3:101","nodeType":"YulIdentifier","src":"2830:3:101"},"nativeSrc":"2830:11:101","nodeType":"YulFunctionCall","src":"2830:11:101"}],"functionName":{"name":"or","nativeSrc":"2785:2:101","nodeType":"YulIdentifier","src":"2785:2:101"},"nativeSrc":"2785:57:101","nodeType":"YulFunctionCall","src":"2785:57:101"},"variableNames":[{"name":"used","nativeSrc":"2777:4:101","nodeType":"YulIdentifier","src":"2777:4:101"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"2682:166:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"2744:4:101","nodeType":"YulTypedName","src":"2744:4:101","type":""},{"name":"len","nativeSrc":"2750:3:101","nodeType":"YulTypedName","src":"2750:3:101","type":""}],"returnVariables":[{"name":"used","nativeSrc":"2758:4:101","nodeType":"YulTypedName","src":"2758:4:101","type":""}],"src":"2682:166:101"},{"body":{"nativeSrc":"2949:1203:101","nodeType":"YulBlock","src":"2949:1203:101","statements":[{"nativeSrc":"2959:24:101","nodeType":"YulVariableDeclaration","src":"2959:24:101","value":{"arguments":[{"name":"src","nativeSrc":"2979:3:101","nodeType":"YulIdentifier","src":"2979:3:101"}],"functionName":{"name":"mload","nativeSrc":"2973:5:101","nodeType":"YulIdentifier","src":"2973:5:101"},"nativeSrc":"2973:10:101","nodeType":"YulFunctionCall","src":"2973:10:101"},"variables":[{"name":"newLen","nativeSrc":"2963:6:101","nodeType":"YulTypedName","src":"2963:6:101","type":""}]},{"body":{"nativeSrc":"3026:22:101","nodeType":"YulBlock","src":"3026:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3028:16:101","nodeType":"YulIdentifier","src":"3028:16:101"},"nativeSrc":"3028:18:101","nodeType":"YulFunctionCall","src":"3028:18:101"},"nativeSrc":"3028:18:101","nodeType":"YulExpressionStatement","src":"3028:18:101"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"2998:6:101","nodeType":"YulIdentifier","src":"2998:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3014:2:101","nodeType":"YulLiteral","src":"3014:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"3018:1:101","nodeType":"YulLiteral","src":"3018:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3010:3:101","nodeType":"YulIdentifier","src":"3010:3:101"},"nativeSrc":"3010:10:101","nodeType":"YulFunctionCall","src":"3010:10:101"},{"kind":"number","nativeSrc":"3022:1:101","nodeType":"YulLiteral","src":"3022:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3006:3:101","nodeType":"YulIdentifier","src":"3006:3:101"},"nativeSrc":"3006:18:101","nodeType":"YulFunctionCall","src":"3006:18:101"}],"functionName":{"name":"gt","nativeSrc":"2995:2:101","nodeType":"YulIdentifier","src":"2995:2:101"},"nativeSrc":"2995:30:101","nodeType":"YulFunctionCall","src":"2995:30:101"},"nativeSrc":"2992:56:101","nodeType":"YulIf","src":"2992:56:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"3101:4:101","nodeType":"YulIdentifier","src":"3101:4:101"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"3139:4:101","nodeType":"YulIdentifier","src":"3139:4:101"}],"functionName":{"name":"sload","nativeSrc":"3133:5:101","nodeType":"YulIdentifier","src":"3133:5:101"},"nativeSrc":"3133:11:101","nodeType":"YulFunctionCall","src":"3133:11:101"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"3107:25:101","nodeType":"YulIdentifier","src":"3107:25:101"},"nativeSrc":"3107:38:101","nodeType":"YulFunctionCall","src":"3107:38:101"},{"name":"newLen","nativeSrc":"3147:6:101","nodeType":"YulIdentifier","src":"3147:6:101"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"3057:43:101","nodeType":"YulIdentifier","src":"3057:43:101"},"nativeSrc":"3057:97:101","nodeType":"YulFunctionCall","src":"3057:97:101"},"nativeSrc":"3057:97:101","nodeType":"YulExpressionStatement","src":"3057:97:101"},{"nativeSrc":"3163:18:101","nodeType":"YulVariableDeclaration","src":"3163:18:101","value":{"kind":"number","nativeSrc":"3180:1:101","nodeType":"YulLiteral","src":"3180:1:101","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"3167:9:101","nodeType":"YulTypedName","src":"3167:9:101","type":""}]},{"nativeSrc":"3190:17:101","nodeType":"YulAssignment","src":"3190:17:101","value":{"kind":"number","nativeSrc":"3203:4:101","nodeType":"YulLiteral","src":"3203:4:101","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"3190:9:101","nodeType":"YulIdentifier","src":"3190:9:101"}]},{"cases":[{"body":{"nativeSrc":"3253:642:101","nodeType":"YulBlock","src":"3253:642:101","statements":[{"nativeSrc":"3267:35:101","nodeType":"YulVariableDeclaration","src":"3267:35:101","value":{"arguments":[{"name":"newLen","nativeSrc":"3286:6:101","nodeType":"YulIdentifier","src":"3286:6:101"},{"arguments":[{"kind":"number","nativeSrc":"3298:2:101","nodeType":"YulLiteral","src":"3298:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"3294:3:101","nodeType":"YulIdentifier","src":"3294:3:101"},"nativeSrc":"3294:7:101","nodeType":"YulFunctionCall","src":"3294:7:101"}],"functionName":{"name":"and","nativeSrc":"3282:3:101","nodeType":"YulIdentifier","src":"3282:3:101"},"nativeSrc":"3282:20:101","nodeType":"YulFunctionCall","src":"3282:20:101"},"variables":[{"name":"loopEnd","nativeSrc":"3271:7:101","nodeType":"YulTypedName","src":"3271:7:101","type":""}]},{"nativeSrc":"3315:49:101","nodeType":"YulVariableDeclaration","src":"3315:49:101","value":{"arguments":[{"name":"slot","nativeSrc":"3359:4:101","nodeType":"YulIdentifier","src":"3359:4:101"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"3329:29:101","nodeType":"YulIdentifier","src":"3329:29:101"},"nativeSrc":"3329:35:101","nodeType":"YulFunctionCall","src":"3329:35:101"},"variables":[{"name":"dstPtr","nativeSrc":"3319:6:101","nodeType":"YulTypedName","src":"3319:6:101","type":""}]},{"nativeSrc":"3377:10:101","nodeType":"YulVariableDeclaration","src":"3377:10:101","value":{"kind":"number","nativeSrc":"3386:1:101","nodeType":"YulLiteral","src":"3386:1:101","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"3381:1:101","nodeType":"YulTypedName","src":"3381:1:101","type":""}]},{"body":{"nativeSrc":"3457:165:101","nodeType":"YulBlock","src":"3457:165:101","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3482:6:101","nodeType":"YulIdentifier","src":"3482:6:101"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3500:3:101","nodeType":"YulIdentifier","src":"3500:3:101"},{"name":"srcOffset","nativeSrc":"3505:9:101","nodeType":"YulIdentifier","src":"3505:9:101"}],"functionName":{"name":"add","nativeSrc":"3496:3:101","nodeType":"YulIdentifier","src":"3496:3:101"},"nativeSrc":"3496:19:101","nodeType":"YulFunctionCall","src":"3496:19:101"}],"functionName":{"name":"mload","nativeSrc":"3490:5:101","nodeType":"YulIdentifier","src":"3490:5:101"},"nativeSrc":"3490:26:101","nodeType":"YulFunctionCall","src":"3490:26:101"}],"functionName":{"name":"sstore","nativeSrc":"3475:6:101","nodeType":"YulIdentifier","src":"3475:6:101"},"nativeSrc":"3475:42:101","nodeType":"YulFunctionCall","src":"3475:42:101"},"nativeSrc":"3475:42:101","nodeType":"YulExpressionStatement","src":"3475:42:101"},{"nativeSrc":"3534:24:101","nodeType":"YulAssignment","src":"3534:24:101","value":{"arguments":[{"name":"dstPtr","nativeSrc":"3548:6:101","nodeType":"YulIdentifier","src":"3548:6:101"},{"kind":"number","nativeSrc":"3556:1:101","nodeType":"YulLiteral","src":"3556:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3544:3:101","nodeType":"YulIdentifier","src":"3544:3:101"},"nativeSrc":"3544:14:101","nodeType":"YulFunctionCall","src":"3544:14:101"},"variableNames":[{"name":"dstPtr","nativeSrc":"3534:6:101","nodeType":"YulIdentifier","src":"3534:6:101"}]},{"nativeSrc":"3575:33:101","nodeType":"YulAssignment","src":"3575:33:101","value":{"arguments":[{"name":"srcOffset","nativeSrc":"3592:9:101","nodeType":"YulIdentifier","src":"3592:9:101"},{"kind":"number","nativeSrc":"3603:4:101","nodeType":"YulLiteral","src":"3603:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3588:3:101","nodeType":"YulIdentifier","src":"3588:3:101"},"nativeSrc":"3588:20:101","nodeType":"YulFunctionCall","src":"3588:20:101"},"variableNames":[{"name":"srcOffset","nativeSrc":"3575:9:101","nodeType":"YulIdentifier","src":"3575:9:101"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"3411:1:101","nodeType":"YulIdentifier","src":"3411:1:101"},{"name":"loopEnd","nativeSrc":"3414:7:101","nodeType":"YulIdentifier","src":"3414:7:101"}],"functionName":{"name":"lt","nativeSrc":"3408:2:101","nodeType":"YulIdentifier","src":"3408:2:101"},"nativeSrc":"3408:14:101","nodeType":"YulFunctionCall","src":"3408:14:101"},"nativeSrc":"3400:222:101","nodeType":"YulForLoop","post":{"nativeSrc":"3423:21:101","nodeType":"YulBlock","src":"3423:21:101","statements":[{"nativeSrc":"3425:17:101","nodeType":"YulAssignment","src":"3425:17:101","value":{"arguments":[{"name":"i","nativeSrc":"3434:1:101","nodeType":"YulIdentifier","src":"3434:1:101"},{"kind":"number","nativeSrc":"3437:4:101","nodeType":"YulLiteral","src":"3437:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3430:3:101","nodeType":"YulIdentifier","src":"3430:3:101"},"nativeSrc":"3430:12:101","nodeType":"YulFunctionCall","src":"3430:12:101"},"variableNames":[{"name":"i","nativeSrc":"3425:1:101","nodeType":"YulIdentifier","src":"3425:1:101"}]}]},"pre":{"nativeSrc":"3404:3:101","nodeType":"YulBlock","src":"3404:3:101","statements":[]},"src":"3400:222:101"},{"body":{"nativeSrc":"3670:166:101","nodeType":"YulBlock","src":"3670:166:101","statements":[{"nativeSrc":"3688:43:101","nodeType":"YulVariableDeclaration","src":"3688:43:101","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3715:3:101","nodeType":"YulIdentifier","src":"3715:3:101"},{"name":"srcOffset","nativeSrc":"3720:9:101","nodeType":"YulIdentifier","src":"3720:9:101"}],"functionName":{"name":"add","nativeSrc":"3711:3:101","nodeType":"YulIdentifier","src":"3711:3:101"},"nativeSrc":"3711:19:101","nodeType":"YulFunctionCall","src":"3711:19:101"}],"functionName":{"name":"mload","nativeSrc":"3705:5:101","nodeType":"YulIdentifier","src":"3705:5:101"},"nativeSrc":"3705:26:101","nodeType":"YulFunctionCall","src":"3705:26:101"},"variables":[{"name":"lastValue","nativeSrc":"3692:9:101","nodeType":"YulTypedName","src":"3692:9:101","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3755:6:101","nodeType":"YulIdentifier","src":"3755:6:101"},{"arguments":[{"name":"lastValue","nativeSrc":"3767:9:101","nodeType":"YulIdentifier","src":"3767:9:101"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3794:1:101","nodeType":"YulLiteral","src":"3794:1:101","type":"","value":"3"},{"name":"newLen","nativeSrc":"3797:6:101","nodeType":"YulIdentifier","src":"3797:6:101"}],"functionName":{"name":"shl","nativeSrc":"3790:3:101","nodeType":"YulIdentifier","src":"3790:3:101"},"nativeSrc":"3790:14:101","nodeType":"YulFunctionCall","src":"3790:14:101"},{"kind":"number","nativeSrc":"3806:3:101","nodeType":"YulLiteral","src":"3806:3:101","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"3786:3:101","nodeType":"YulIdentifier","src":"3786:3:101"},"nativeSrc":"3786:24:101","nodeType":"YulFunctionCall","src":"3786:24:101"},{"arguments":[{"kind":"number","nativeSrc":"3816:1:101","nodeType":"YulLiteral","src":"3816:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3812:3:101","nodeType":"YulIdentifier","src":"3812:3:101"},"nativeSrc":"3812:6:101","nodeType":"YulFunctionCall","src":"3812:6:101"}],"functionName":{"name":"shr","nativeSrc":"3782:3:101","nodeType":"YulIdentifier","src":"3782:3:101"},"nativeSrc":"3782:37:101","nodeType":"YulFunctionCall","src":"3782:37:101"}],"functionName":{"name":"not","nativeSrc":"3778:3:101","nodeType":"YulIdentifier","src":"3778:3:101"},"nativeSrc":"3778:42:101","nodeType":"YulFunctionCall","src":"3778:42:101"}],"functionName":{"name":"and","nativeSrc":"3763:3:101","nodeType":"YulIdentifier","src":"3763:3:101"},"nativeSrc":"3763:58:101","nodeType":"YulFunctionCall","src":"3763:58:101"}],"functionName":{"name":"sstore","nativeSrc":"3748:6:101","nodeType":"YulIdentifier","src":"3748:6:101"},"nativeSrc":"3748:74:101","nodeType":"YulFunctionCall","src":"3748:74:101"},"nativeSrc":"3748:74:101","nodeType":"YulExpressionStatement","src":"3748:74:101"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"3641:7:101","nodeType":"YulIdentifier","src":"3641:7:101"},{"name":"newLen","nativeSrc":"3650:6:101","nodeType":"YulIdentifier","src":"3650:6:101"}],"functionName":{"name":"lt","nativeSrc":"3638:2:101","nodeType":"YulIdentifier","src":"3638:2:101"},"nativeSrc":"3638:19:101","nodeType":"YulFunctionCall","src":"3638:19:101"},"nativeSrc":"3635:201:101","nodeType":"YulIf","src":"3635:201:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"3856:4:101","nodeType":"YulIdentifier","src":"3856:4:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3870:1:101","nodeType":"YulLiteral","src":"3870:1:101","type":"","value":"1"},{"name":"newLen","nativeSrc":"3873:6:101","nodeType":"YulIdentifier","src":"3873:6:101"}],"functionName":{"name":"shl","nativeSrc":"3866:3:101","nodeType":"YulIdentifier","src":"3866:3:101"},"nativeSrc":"3866:14:101","nodeType":"YulFunctionCall","src":"3866:14:101"},{"kind":"number","nativeSrc":"3882:1:101","nodeType":"YulLiteral","src":"3882:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3862:3:101","nodeType":"YulIdentifier","src":"3862:3:101"},"nativeSrc":"3862:22:101","nodeType":"YulFunctionCall","src":"3862:22:101"}],"functionName":{"name":"sstore","nativeSrc":"3849:6:101","nodeType":"YulIdentifier","src":"3849:6:101"},"nativeSrc":"3849:36:101","nodeType":"YulFunctionCall","src":"3849:36:101"},"nativeSrc":"3849:36:101","nodeType":"YulExpressionStatement","src":"3849:36:101"}]},"nativeSrc":"3246:649:101","nodeType":"YulCase","src":"3246:649:101","value":{"kind":"number","nativeSrc":"3251:1:101","nodeType":"YulLiteral","src":"3251:1:101","type":"","value":"1"}},{"body":{"nativeSrc":"3912:234:101","nodeType":"YulBlock","src":"3912:234:101","statements":[{"nativeSrc":"3926:14:101","nodeType":"YulVariableDeclaration","src":"3926:14:101","value":{"kind":"number","nativeSrc":"3939:1:101","nodeType":"YulLiteral","src":"3939:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3930:5:101","nodeType":"YulTypedName","src":"3930:5:101","type":""}]},{"body":{"nativeSrc":"3975:67:101","nodeType":"YulBlock","src":"3975:67:101","statements":[{"nativeSrc":"3993:35:101","nodeType":"YulAssignment","src":"3993:35:101","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"4012:3:101","nodeType":"YulIdentifier","src":"4012:3:101"},{"name":"srcOffset","nativeSrc":"4017:9:101","nodeType":"YulIdentifier","src":"4017:9:101"}],"functionName":{"name":"add","nativeSrc":"4008:3:101","nodeType":"YulIdentifier","src":"4008:3:101"},"nativeSrc":"4008:19:101","nodeType":"YulFunctionCall","src":"4008:19:101"}],"functionName":{"name":"mload","nativeSrc":"4002:5:101","nodeType":"YulIdentifier","src":"4002:5:101"},"nativeSrc":"4002:26:101","nodeType":"YulFunctionCall","src":"4002:26:101"},"variableNames":[{"name":"value","nativeSrc":"3993:5:101","nodeType":"YulIdentifier","src":"3993:5:101"}]}]},"condition":{"name":"newLen","nativeSrc":"3956:6:101","nodeType":"YulIdentifier","src":"3956:6:101"},"nativeSrc":"3953:89:101","nodeType":"YulIf","src":"3953:89:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"4062:4:101","nodeType":"YulIdentifier","src":"4062:4:101"},{"arguments":[{"name":"value","nativeSrc":"4121:5:101","nodeType":"YulIdentifier","src":"4121:5:101"},{"name":"newLen","nativeSrc":"4128:6:101","nodeType":"YulIdentifier","src":"4128:6:101"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"4068:52:101","nodeType":"YulIdentifier","src":"4068:52:101"},"nativeSrc":"4068:67:101","nodeType":"YulFunctionCall","src":"4068:67:101"}],"functionName":{"name":"sstore","nativeSrc":"4055:6:101","nodeType":"YulIdentifier","src":"4055:6:101"},"nativeSrc":"4055:81:101","nodeType":"YulFunctionCall","src":"4055:81:101"},"nativeSrc":"4055:81:101","nodeType":"YulExpressionStatement","src":"4055:81:101"}]},"nativeSrc":"3904:242:101","nodeType":"YulCase","src":"3904:242:101","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"3226:6:101","nodeType":"YulIdentifier","src":"3226:6:101"},{"kind":"number","nativeSrc":"3234:2:101","nodeType":"YulLiteral","src":"3234:2:101","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"3223:2:101","nodeType":"YulIdentifier","src":"3223:2:101"},"nativeSrc":"3223:14:101","nodeType":"YulFunctionCall","src":"3223:14:101"},"nativeSrc":"3216:930:101","nodeType":"YulSwitch","src":"3216:930:101"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"2853:1299:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"2934:4:101","nodeType":"YulTypedName","src":"2934:4:101","type":""},{"name":"src","nativeSrc":"2940:3:101","nodeType":"YulTypedName","src":"2940:3:101","type":""}],"src":"2853:1299:101"},{"body":{"nativeSrc":"4258:102:101","nodeType":"YulBlock","src":"4258:102:101","statements":[{"nativeSrc":"4268:26:101","nodeType":"YulAssignment","src":"4268:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4280:9:101","nodeType":"YulIdentifier","src":"4280:9:101"},{"kind":"number","nativeSrc":"4291:2:101","nodeType":"YulLiteral","src":"4291:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4276:3:101","nodeType":"YulIdentifier","src":"4276:3:101"},"nativeSrc":"4276:18:101","nodeType":"YulFunctionCall","src":"4276:18:101"},"variableNames":[{"name":"tail","nativeSrc":"4268:4:101","nodeType":"YulIdentifier","src":"4268:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4310:9:101","nodeType":"YulIdentifier","src":"4310:9:101"},{"arguments":[{"name":"value0","nativeSrc":"4325:6:101","nodeType":"YulIdentifier","src":"4325:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4341:3:101","nodeType":"YulLiteral","src":"4341:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"4346:1:101","nodeType":"YulLiteral","src":"4346:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4337:3:101","nodeType":"YulIdentifier","src":"4337:3:101"},"nativeSrc":"4337:11:101","nodeType":"YulFunctionCall","src":"4337:11:101"},{"kind":"number","nativeSrc":"4350:1:101","nodeType":"YulLiteral","src":"4350:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4333:3:101","nodeType":"YulIdentifier","src":"4333:3:101"},"nativeSrc":"4333:19:101","nodeType":"YulFunctionCall","src":"4333:19:101"}],"functionName":{"name":"and","nativeSrc":"4321:3:101","nodeType":"YulIdentifier","src":"4321:3:101"},"nativeSrc":"4321:32:101","nodeType":"YulFunctionCall","src":"4321:32:101"}],"functionName":{"name":"mstore","nativeSrc":"4303:6:101","nodeType":"YulIdentifier","src":"4303:6:101"},"nativeSrc":"4303:51:101","nodeType":"YulFunctionCall","src":"4303:51:101"},"nativeSrc":"4303:51:101","nodeType":"YulExpressionStatement","src":"4303:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"4157:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4227:9:101","nodeType":"YulTypedName","src":"4227:9:101","type":""},{"name":"value0","nativeSrc":"4238:6:101","nodeType":"YulTypedName","src":"4238:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4249:4:101","nodeType":"YulTypedName","src":"4249:4:101","type":""}],"src":"4157:203:101"},{"body":{"nativeSrc":"4413:174:101","nodeType":"YulBlock","src":"4413:174:101","statements":[{"nativeSrc":"4423:16:101","nodeType":"YulAssignment","src":"4423:16:101","value":{"arguments":[{"name":"x","nativeSrc":"4434:1:101","nodeType":"YulIdentifier","src":"4434:1:101"},{"name":"y","nativeSrc":"4437:1:101","nodeType":"YulIdentifier","src":"4437:1:101"}],"functionName":{"name":"add","nativeSrc":"4430:3:101","nodeType":"YulIdentifier","src":"4430:3:101"},"nativeSrc":"4430:9:101","nodeType":"YulFunctionCall","src":"4430:9:101"},"variableNames":[{"name":"sum","nativeSrc":"4423:3:101","nodeType":"YulIdentifier","src":"4423:3:101"}]},{"body":{"nativeSrc":"4470:111:101","nodeType":"YulBlock","src":"4470:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4491:1:101","nodeType":"YulLiteral","src":"4491:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4498:3:101","nodeType":"YulLiteral","src":"4498:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"4503:10:101","nodeType":"YulLiteral","src":"4503:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4494:3:101","nodeType":"YulIdentifier","src":"4494:3:101"},"nativeSrc":"4494:20:101","nodeType":"YulFunctionCall","src":"4494:20:101"}],"functionName":{"name":"mstore","nativeSrc":"4484:6:101","nodeType":"YulIdentifier","src":"4484:6:101"},"nativeSrc":"4484:31:101","nodeType":"YulFunctionCall","src":"4484:31:101"},"nativeSrc":"4484:31:101","nodeType":"YulExpressionStatement","src":"4484:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4535:1:101","nodeType":"YulLiteral","src":"4535:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"4538:4:101","nodeType":"YulLiteral","src":"4538:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"4528:6:101","nodeType":"YulIdentifier","src":"4528:6:101"},"nativeSrc":"4528:15:101","nodeType":"YulFunctionCall","src":"4528:15:101"},"nativeSrc":"4528:15:101","nodeType":"YulExpressionStatement","src":"4528:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4563:1:101","nodeType":"YulLiteral","src":"4563:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4566:4:101","nodeType":"YulLiteral","src":"4566:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4556:6:101","nodeType":"YulIdentifier","src":"4556:6:101"},"nativeSrc":"4556:15:101","nodeType":"YulFunctionCall","src":"4556:15:101"},"nativeSrc":"4556:15:101","nodeType":"YulExpressionStatement","src":"4556:15:101"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"4454:1:101","nodeType":"YulIdentifier","src":"4454:1:101"},{"name":"sum","nativeSrc":"4457:3:101","nodeType":"YulIdentifier","src":"4457:3:101"}],"functionName":{"name":"gt","nativeSrc":"4451:2:101","nodeType":"YulIdentifier","src":"4451:2:101"},"nativeSrc":"4451:10:101","nodeType":"YulFunctionCall","src":"4451:10:101"},"nativeSrc":"4448:133:101","nodeType":"YulIf","src":"4448:133:101"}]},"name":"checked_add_t_uint256","nativeSrc":"4365:222:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"4396:1:101","nodeType":"YulTypedName","src":"4396:1:101","type":""},{"name":"y","nativeSrc":"4399:1:101","nodeType":"YulTypedName","src":"4399:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"4405:3:101","nodeType":"YulTypedName","src":"4405:3:101","type":""}],"src":"4365:222:101"},{"body":{"nativeSrc":"4749:188:101","nodeType":"YulBlock","src":"4749:188:101","statements":[{"nativeSrc":"4759:26:101","nodeType":"YulAssignment","src":"4759:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4771:9:101","nodeType":"YulIdentifier","src":"4771:9:101"},{"kind":"number","nativeSrc":"4782:2:101","nodeType":"YulLiteral","src":"4782:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4767:3:101","nodeType":"YulIdentifier","src":"4767:3:101"},"nativeSrc":"4767:18:101","nodeType":"YulFunctionCall","src":"4767:18:101"},"variableNames":[{"name":"tail","nativeSrc":"4759:4:101","nodeType":"YulIdentifier","src":"4759:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4801:9:101","nodeType":"YulIdentifier","src":"4801:9:101"},{"arguments":[{"name":"value0","nativeSrc":"4816:6:101","nodeType":"YulIdentifier","src":"4816:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4832:3:101","nodeType":"YulLiteral","src":"4832:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"4837:1:101","nodeType":"YulLiteral","src":"4837:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4828:3:101","nodeType":"YulIdentifier","src":"4828:3:101"},"nativeSrc":"4828:11:101","nodeType":"YulFunctionCall","src":"4828:11:101"},{"kind":"number","nativeSrc":"4841:1:101","nodeType":"YulLiteral","src":"4841:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4824:3:101","nodeType":"YulIdentifier","src":"4824:3:101"},"nativeSrc":"4824:19:101","nodeType":"YulFunctionCall","src":"4824:19:101"}],"functionName":{"name":"and","nativeSrc":"4812:3:101","nodeType":"YulIdentifier","src":"4812:3:101"},"nativeSrc":"4812:32:101","nodeType":"YulFunctionCall","src":"4812:32:101"}],"functionName":{"name":"mstore","nativeSrc":"4794:6:101","nodeType":"YulIdentifier","src":"4794:6:101"},"nativeSrc":"4794:51:101","nodeType":"YulFunctionCall","src":"4794:51:101"},"nativeSrc":"4794:51:101","nodeType":"YulExpressionStatement","src":"4794:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4865:9:101","nodeType":"YulIdentifier","src":"4865:9:101"},{"kind":"number","nativeSrc":"4876:2:101","nodeType":"YulLiteral","src":"4876:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4861:3:101","nodeType":"YulIdentifier","src":"4861:3:101"},"nativeSrc":"4861:18:101","nodeType":"YulFunctionCall","src":"4861:18:101"},{"name":"value1","nativeSrc":"4881:6:101","nodeType":"YulIdentifier","src":"4881:6:101"}],"functionName":{"name":"mstore","nativeSrc":"4854:6:101","nodeType":"YulIdentifier","src":"4854:6:101"},"nativeSrc":"4854:34:101","nodeType":"YulFunctionCall","src":"4854:34:101"},"nativeSrc":"4854:34:101","nodeType":"YulExpressionStatement","src":"4854:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4908:9:101","nodeType":"YulIdentifier","src":"4908:9:101"},{"kind":"number","nativeSrc":"4919:2:101","nodeType":"YulLiteral","src":"4919:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4904:3:101","nodeType":"YulIdentifier","src":"4904:3:101"},"nativeSrc":"4904:18:101","nodeType":"YulFunctionCall","src":"4904:18:101"},{"name":"value2","nativeSrc":"4924:6:101","nodeType":"YulIdentifier","src":"4924:6:101"}],"functionName":{"name":"mstore","nativeSrc":"4897:6:101","nodeType":"YulIdentifier","src":"4897:6:101"},"nativeSrc":"4897:34:101","nodeType":"YulFunctionCall","src":"4897:34:101"},"nativeSrc":"4897:34:101","nodeType":"YulExpressionStatement","src":"4897:34:101"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"4592:345:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4702:9:101","nodeType":"YulTypedName","src":"4702:9:101","type":""},{"name":"value2","nativeSrc":"4713:6:101","nodeType":"YulTypedName","src":"4713:6:101","type":""},{"name":"value1","nativeSrc":"4721:6:101","nodeType":"YulTypedName","src":"4721:6:101","type":""},{"name":"value0","nativeSrc":"4729:6:101","nodeType":"YulTypedName","src":"4729:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4740:4:101","nodeType":"YulTypedName","src":"4740:4:101","type":""}],"src":"4592:345:101"},{"body":{"nativeSrc":"5043:76:101","nodeType":"YulBlock","src":"5043:76:101","statements":[{"nativeSrc":"5053:26:101","nodeType":"YulAssignment","src":"5053:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5065:9:101","nodeType":"YulIdentifier","src":"5065:9:101"},{"kind":"number","nativeSrc":"5076:2:101","nodeType":"YulLiteral","src":"5076:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5061:3:101","nodeType":"YulIdentifier","src":"5061:3:101"},"nativeSrc":"5061:18:101","nodeType":"YulFunctionCall","src":"5061:18:101"},"variableNames":[{"name":"tail","nativeSrc":"5053:4:101","nodeType":"YulIdentifier","src":"5053:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5095:9:101","nodeType":"YulIdentifier","src":"5095:9:101"},{"name":"value0","nativeSrc":"5106:6:101","nodeType":"YulIdentifier","src":"5106:6:101"}],"functionName":{"name":"mstore","nativeSrc":"5088:6:101","nodeType":"YulIdentifier","src":"5088:6:101"},"nativeSrc":"5088:25:101","nodeType":"YulFunctionCall","src":"5088:25:101"},"nativeSrc":"5088:25:101","nodeType":"YulExpressionStatement","src":"5088:25:101"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"4942:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5012:9:101","nodeType":"YulTypedName","src":"5012:9:101","type":""},{"name":"value0","nativeSrc":"5023:6:101","nodeType":"YulTypedName","src":"5023:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5034:4:101","nodeType":"YulTypedName","src":"5034:4:101","type":""}],"src":"4942:177:101"}]},"contents":"{\n    { }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let length := mload(offset)\n        if gt(length, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(length, 0x1f), not(31)), 63), not(31)))\n        if or(gt(newFreePtr, sub(shl(64, 1), 1)), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, length)\n        if gt(add(add(offset, length), 0x20), end) { revert(0, 0) }\n        mcopy(add(memPtr, 0x20), add(offset, 0x20), length)\n        mstore(add(add(memPtr, length), 0x20), 0)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint8_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, sub(shl(64, 1), 1)) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, sub(shl(64, 1), 1)) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        value2 := mload(add(headStart, 64))\n        let value := mload(add(headStart, 96))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value3 := value\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function array_dataslot_string_storage(ptr) -> data\n    {\n        mstore(0, ptr)\n        data := keccak256(0, 0x20)\n    }\n    function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n    {\n        if gt(len, 31)\n        {\n            mstore(0, array)\n            let data := keccak256(0, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _1 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _1) { start := add(start, 1) }\n            { sstore(start, 0) }\n        }\n    }\n    function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used\n    {\n        used := or(and(data, not(shr(shl(3, len), not(0)))), shl(1, len))\n    }\n    function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src)\n    {\n        let newLen := mload(src)\n        if gt(newLen, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), newLen)\n        let srcOffset := 0\n        srcOffset := 0x20\n        switch gt(newLen, 31)\n        case 1 {\n            let loopEnd := and(newLen, not(31))\n            let dstPtr := array_dataslot_string_storage(slot)\n            let i := 0\n            for { } lt(i, loopEnd) { i := add(i, 0x20) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, 0x20)\n            }\n            if lt(loopEnd, newLen)\n            {\n                let lastValue := mload(add(src, srcOffset))\n                sstore(dstPtr, and(lastValue, not(shr(and(shl(3, newLen), 248), not(0)))))\n            }\n            sstore(slot, add(shl(1, newLen), 1))\n        }\n        default {\n            let value := 0\n            if newLen\n            {\n                value := mload(add(src, srcOffset))\n            }\n            sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n        }\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60a060405234801561000f575f5ffd5b50604051610c2a380380610c2a83398101604081905261002e91610266565b8383600361003c838261036f565b506004610049828261036f565b50505060ff811660805261005d3383610066565b5050505061044e565b6001600160a01b0382166100945760405163ec442f0560e01b81525f60048201526024015b60405180910390fd5b61009f5f83836100a3565b5050565b6001600160a01b0383166100cd578060025f8282546100c29190610429565b9091555061013d9050565b6001600160a01b0383165f908152602081905260409020548181101561011f5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161008b565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661015957600280548290039055610177565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516101bc91815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126101ec575f5ffd5b81516001600160401b03811115610205576102056101c9565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610233576102336101c9565b60405281815283820160200185101561024a575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f5f5f5f60808587031215610279575f5ffd5b84516001600160401b0381111561028e575f5ffd5b61029a878288016101dd565b602087015190955090506001600160401b038111156102b7575f5ffd5b6102c3878288016101dd565b93505060408501519150606085015160ff811681146102e0575f5ffd5b939692955090935050565b600181811c908216806102ff57607f821691505b60208210810361031d57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561036a57805f5260205f20601f840160051c810160208510156103485750805b601f840160051c820191505b81811015610367575f8155600101610354565b50505b505050565b81516001600160401b03811115610388576103886101c9565b61039c8161039684546102eb565b84610323565b6020601f8211600181146103ce575f83156103b75750848201515b5f19600385901b1c1916600184901b178455610367565b5f84815260208120601f198516915b828110156103fd57878501518255602094850194600190920191016103dd565b508482101561041a57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561044857634e487b7160e01b5f52601160045260245ffd5b92915050565b6080516107c46104665f395f61011701526107c45ff3fe608060405234801561000f575f5ffd5b50600436106100a6575f3560e01c806340c10f191161006e57806340c10f191461014157806370a082311461015657806395d89b411461017e5780639dc29fac14610186578063a9059cbb14610199578063dd62ed3e146101ac575f5ffd5b806306fdde03146100aa578063095ea7b3146100c857806318160ddd146100eb57806323b872dd146100fd578063313ce56714610110575b5f5ffd5b6100b26101e4565b6040516100bf9190610634565b60405180910390f35b6100db6100d6366004610684565b610274565b60405190151581526020016100bf565b6002545b6040519081526020016100bf565b6100db61010b3660046106ac565b61028d565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016100bf565b61015461014f366004610684565b6102b0565b005b6100ef6101643660046106e6565b6001600160a01b03165f9081526020819052604090205490565b6100b26102be565b610154610194366004610684565b6102cd565b6100db6101a7366004610684565b6102d7565b6100ef6101ba366004610706565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101f390610737565b80601f016020809104026020016040519081016040528092919081815260200182805461021f90610737565b801561026a5780601f106102415761010080835404028352916020019161026a565b820191905f5260205f20905b81548152906001019060200180831161024d57829003601f168201915b5050505050905090565b5f336102818185856102e4565b60019150505b92915050565b5f3361029a8582856102f6565b6102a5858585610377565b506001949350505050565b6102ba82826103d4565b5050565b6060600480546101f390610737565b6102ba8282610408565b5f33610281818585610377565b6102f1838383600161043c565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610371578181101561036357604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61037184848484035f61043c565b50505050565b6001600160a01b0383166103a057604051634b637e8f60e11b81525f600482015260240161035a565b6001600160a01b0382166103c95760405163ec442f0560e01b81525f600482015260240161035a565b6102f183838361050e565b6001600160a01b0382166103fd5760405163ec442f0560e01b81525f600482015260240161035a565b6102ba5f838361050e565b6001600160a01b03821661043157604051634b637e8f60e11b81525f600482015260240161035a565b6102ba825f8361050e565b6001600160a01b0384166104655760405163e602df0560e01b81525f600482015260240161035a565b6001600160a01b03831661048e57604051634a1406b160e11b81525f600482015260240161035a565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561037157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161050091815260200190565b60405180910390a350505050565b6001600160a01b038316610538578060025f82825461052d919061076f565b909155506105a89050565b6001600160a01b0383165f908152602081905260409020548181101561058a5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161035a565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166105c4576002805482900390556105e2565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161062791815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b038116811461067f575f5ffd5b919050565b5f5f60408385031215610695575f5ffd5b61069e83610669565b946020939093013593505050565b5f5f5f606084860312156106be575f5ffd5b6106c784610669565b92506106d560208501610669565b929592945050506040919091013590565b5f602082840312156106f6575f5ffd5b6106ff82610669565b9392505050565b5f5f60408385031215610717575f5ffd5b61072083610669565b915061072e60208401610669565b90509250929050565b600181811c9082168061074b57607f821691505b60208210810361076957634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561028757634e487b7160e01b5f52601160045260245ffdfea26469706673582212202ae8dd9ab4ee7abaa60bb9c3c6bccc689154f1f33065a301d737974cef5c28f864736f6c634300081e0033","opcodes":"PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0xC2A CODESIZE SUB DUP1 PUSH2 0xC2A DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2E SWAP2 PUSH2 0x266 JUMP JUMPDEST DUP4 DUP4 PUSH1 0x3 PUSH2 0x3C DUP4 DUP3 PUSH2 0x36F JUMP JUMPDEST POP PUSH1 0x4 PUSH2 0x49 DUP3 DUP3 PUSH2 0x36F JUMP JUMPDEST POP POP POP PUSH1 0xFF DUP2 AND PUSH1 0x80 MSTORE PUSH2 0x5D CALLER DUP4 PUSH2 0x66 JUMP JUMPDEST POP POP POP POP PUSH2 0x44E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x94 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9F PUSH0 DUP4 DUP4 PUSH2 0xA3 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xCD JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xC2 SWAP2 SWAP1 PUSH2 0x429 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x13D SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x11F JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x8B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x159 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x177 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x1BC SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1EC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x205 JUMPI PUSH2 0x205 PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x233 JUMPI PUSH2 0x233 PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP4 DUP3 ADD PUSH1 0x20 ADD DUP6 LT ISZERO PUSH2 0x24A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP6 ADD PUSH1 0x20 DUP4 ADD MCOPY PUSH0 SWAP2 DUP2 ADD PUSH1 0x20 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x279 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x28E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x29A DUP8 DUP3 DUP9 ADD PUSH2 0x1DD JUMP JUMPDEST PUSH1 0x20 DUP8 ADD MLOAD SWAP1 SWAP6 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2B7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2C3 DUP8 DUP3 DUP9 ADD PUSH2 0x1DD JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 DUP6 ADD MLOAD SWAP2 POP PUSH1 0x60 DUP6 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x2E0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x2FF JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x31D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x36A JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x348 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x367 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x354 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x388 JUMPI PUSH2 0x388 PUSH2 0x1C9 JUMP JUMPDEST PUSH2 0x39C DUP2 PUSH2 0x396 DUP5 SLOAD PUSH2 0x2EB JUMP JUMPDEST DUP5 PUSH2 0x323 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x3CE JUMPI PUSH0 DUP4 ISZERO PUSH2 0x3B7 JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x367 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x3FD JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x3DD JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x41A JUMPI DUP7 DUP5 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x448 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH2 0x7C4 PUSH2 0x466 PUSH0 CODECOPY PUSH0 PUSH2 0x117 ADD MSTORE PUSH2 0x7C4 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA6 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x6E JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x141 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x156 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x17E JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x186 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x199 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x1AC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAA JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xC8 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xEB JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0xFD JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x110 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xB2 PUSH2 0x1E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBF SWAP2 SWAP1 PUSH2 0x634 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDB PUSH2 0xD6 CALLDATASIZE PUSH1 0x4 PUSH2 0x684 JUMP JUMPDEST PUSH2 0x274 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH2 0xDB PUSH2 0x10B CALLDATASIZE PUSH1 0x4 PUSH2 0x6AC JUMP JUMPDEST PUSH2 0x28D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH2 0x154 PUSH2 0x14F CALLDATASIZE PUSH1 0x4 PUSH2 0x684 JUMP JUMPDEST PUSH2 0x2B0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xEF PUSH2 0x164 CALLDATASIZE PUSH1 0x4 PUSH2 0x6E6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xB2 PUSH2 0x2BE JUMP JUMPDEST PUSH2 0x154 PUSH2 0x194 CALLDATASIZE PUSH1 0x4 PUSH2 0x684 JUMP JUMPDEST PUSH2 0x2CD JUMP JUMPDEST PUSH2 0xDB PUSH2 0x1A7 CALLDATASIZE PUSH1 0x4 PUSH2 0x684 JUMP JUMPDEST PUSH2 0x2D7 JUMP JUMPDEST PUSH2 0xEF PUSH2 0x1BA CALLDATASIZE PUSH1 0x4 PUSH2 0x706 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1F3 SWAP1 PUSH2 0x737 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x21F SWAP1 PUSH2 0x737 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x26A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x241 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x26A JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x24D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x281 DUP2 DUP6 DUP6 PUSH2 0x2E4 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x29A DUP6 DUP3 DUP6 PUSH2 0x2F6 JUMP JUMPDEST PUSH2 0x2A5 DUP6 DUP6 DUP6 PUSH2 0x377 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x2BA DUP3 DUP3 PUSH2 0x3D4 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1F3 SWAP1 PUSH2 0x737 JUMP JUMPDEST PUSH2 0x2BA DUP3 DUP3 PUSH2 0x408 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x281 DUP2 DUP6 DUP6 PUSH2 0x377 JUMP JUMPDEST PUSH2 0x2F1 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x43C JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH0 NOT DUP2 LT ISZERO PUSH2 0x371 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x363 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x371 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x43C JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3A0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3C9 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH2 0x2F1 DUP4 DUP4 DUP4 PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3FD JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH2 0x2BA PUSH0 DUP4 DUP4 PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x431 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH2 0x2BA DUP3 PUSH0 DUP4 PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x465 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x48E JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0x371 JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x500 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x538 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x52D SWAP2 SWAP1 PUSH2 0x76F JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x5A8 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x58A JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x35A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5C4 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x5E2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x627 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x67F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x695 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x69E DUP4 PUSH2 0x669 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x6BE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x6C7 DUP5 PUSH2 0x669 JUMP JUMPDEST SWAP3 POP PUSH2 0x6D5 PUSH1 0x20 DUP6 ADD PUSH2 0x669 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x6FF DUP3 PUSH2 0x669 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x717 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x720 DUP4 PUSH2 0x669 JUMP JUMPDEST SWAP2 POP PUSH2 0x72E PUSH1 0x20 DUP5 ADD PUSH2 0x669 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x74B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x769 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x287 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2A 0xE8 0xDD SWAP11 0xB4 RETURNCONTRACT 0x7A 0xBA 0xA6 SIGNEXTEND 0xB9 0xC3 0xC6 0xBC 0xCC PUSH9 0x9154F1F33065A301D7 CALLDATACOPY SWAP8 0x4C 0xEF TLOAD 0x28 EXTCALL PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"133:600:4:-:0;;;207:208;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;329:5;336:7;1648:5:34;:13;329:5:4;1648::34;:13;:::i;:::-;-1:-1:-1;1671:7:34;:17;1681:7;1671;:17;:::i;:::-;-1:-1:-1;;;351:21:4::1;::::0;::::1;;::::0;378:32:::1;384:10;396:13:::0;378:5:::1;:32::i;:::-;207:208:::0;;;;133:600;;7362:208:34;-1:-1:-1;;;;;7432:21:34;;7428:91;;7476:32;;-1:-1:-1;;;7476:32:34;;7505:1;7476:32;;;4303:51:101;4276:18;;7476:32:34;;;;;;;;7428:91;7528:35;7544:1;7548:7;7557:5;7528:7;:35::i;:::-;7362:208;;:::o;5912:1107::-;-1:-1:-1;;;;;6001:18:34;;5997:540;;6153:5;6137:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;5997:540:34;;-1:-1:-1;5997:540:34;;-1:-1:-1;;;;;6211:15:34;;6189:19;6211:15;;;;;;;;;;;6244:19;;;6240:115;;;6290:50;;-1:-1:-1;;;6290:50:34;;-1:-1:-1;;;;;4812:32:101;;6290:50:34;;;4794:51:101;4861:18;;;4854:34;;;4904:18;;;4897:34;;;4767:18;;6290:50:34;4592:345:101;6240:115:34;-1:-1:-1;;;;;6475:15:34;;:9;:15;;;;;;;;;;6493:19;;;;6475:37;;5997:540;-1:-1:-1;;;;;6551:16:34;;6547:425;;6714:12;:21;;;;;;;6547:425;;;-1:-1:-1;;;;;6925:13:34;;:9;:13;;;;;;;;;;:22;;;;;;6547:425;7002:2;-1:-1:-1;;;;;6987:25:34;6996:4;-1:-1:-1;;;;;6987:25:34;;7006:5;6987:25;;;;5088::101;;5076:2;5061:18;;4942:177;6987:25:34;;;;;;;;5912:1107;;;:::o;14:127:101:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:723;200:5;253:3;246:4;238:6;234:17;230:27;220:55;;271:1;268;261:12;220:55;298:13;;-1:-1:-1;;;;;323:30:101;;320:56;;;356:18;;:::i;:::-;405:2;399:9;497:2;459:17;;-1:-1:-1;;455:31:101;;;488:2;451:40;447:54;435:67;;-1:-1:-1;;;;;517:34:101;;553:22;;;514:62;511:88;;;579:18;;:::i;:::-;615:2;608:22;639;;;680:19;;;701:4;676:30;673:39;-1:-1:-1;670:59:101;;;725:1;722;715:12;670:59;782:6;775:4;767:6;763:17;756:4;748:6;744:17;738:51;837:1;809:19;;;830:4;805:30;798:41;;;;813:6;146:723;-1:-1:-1;;;146:723:101:o;874:769::-;989:6;997;1005;1013;1066:3;1054:9;1045:7;1041:23;1037:33;1034:53;;;1083:1;1080;1073:12;1034:53;1110:16;;-1:-1:-1;;;;;1138:30:101;;1135:50;;;1181:1;1178;1171:12;1135:50;1204:61;1257:7;1248:6;1237:9;1233:22;1204:61;:::i;:::-;1311:2;1296:18;;1290:25;1194:71;;-1:-1:-1;1290:25:101;-1:-1:-1;;;;;;1327:32:101;;1324:52;;;1372:1;1369;1362:12;1324:52;1395:63;1450:7;1439:8;1428:9;1424:24;1395:63;:::i;:::-;1385:73;;;1498:2;1487:9;1483:18;1477:25;1467:35;;1545:2;1534:9;1530:18;1524:25;1589:4;1582:5;1578:16;1571:5;1568:27;1558:55;;1609:1;1606;1599:12;1558:55;874:769;;;;-1:-1:-1;874:769:101;;-1:-1:-1;;874:769:101:o;1648:380::-;1727:1;1723:12;;;;1770;;;1791:61;;1845:4;1837:6;1833:17;1823:27;;1791:61;1898:2;1890:6;1887:14;1867:18;1864:38;1861:161;;1944:10;1939:3;1935:20;1932:1;1925:31;1979:4;1976:1;1969:15;2007:4;2004:1;1997:15;1861:161;;1648:380;;;:::o;2159:518::-;2261:2;2256:3;2253:11;2250:421;;;2297:5;2294:1;2287:16;2341:4;2338:1;2328:18;2411:2;2399:10;2395:19;2392:1;2388:27;2382:4;2378:38;2447:4;2435:10;2432:20;2429:47;;;-1:-1:-1;2470:4:101;2429:47;2525:2;2520:3;2516:12;2513:1;2509:20;2503:4;2499:31;2489:41;;2580:81;2598:2;2591:5;2588:13;2580:81;;;2657:1;2643:16;;2624:1;2613:13;2580:81;;;2584:3;;2250:421;2159:518;;;:::o;2853:1299::-;2973:10;;-1:-1:-1;;;;;2995:30:101;;2992:56;;;3028:18;;:::i;:::-;3057:97;3147:6;3107:38;3139:4;3133:11;3107:38;:::i;:::-;3101:4;3057:97;:::i;:::-;3203:4;3234:2;3223:14;;3251:1;3246:649;;;;3939:1;3956:6;3953:89;;;-1:-1:-1;4008:19:101;;;4002:26;3953:89;-1:-1:-1;;2810:1:101;2806:11;;;2802:24;2798:29;2788:40;2834:1;2830:11;;;2785:57;4055:81;;3216:930;;3246:649;2106:1;2099:14;;;2143:4;2130:18;;-1:-1:-1;;3282:20:101;;;3400:222;3414:7;3411:1;3408:14;3400:222;;;3496:19;;;3490:26;3475:42;;3603:4;3588:20;;;;3556:1;3544:14;;;;3430:12;3400:222;;;3404:3;3650:6;3641:7;3638:19;3635:201;;;3711:19;;;3705:26;-1:-1:-1;;3794:1:101;3790:14;;;3806:3;3786:24;3782:37;3778:42;3763:58;3748:74;;3635:201;-1:-1:-1;;;;3882:1:101;3866:14;;;3862:22;3849:36;;-1:-1:-1;2853:1299:101:o;4365:222::-;4430:9;;;4451:10;;;4448:133;;;4503:10;4498:3;4494:20;4491:1;4484:31;4538:4;4535:1;4528:15;4566:4;4563:1;4556:15;4448:133;4365:222;;;;:::o;4942:177::-;133:600:4;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_approve_7790":{"entryPoint":740,"id":7790,"parameterSlots":3,"returnSlots":0},"@_approve_7850":{"entryPoint":1084,"id":7850,"parameterSlots":4,"returnSlots":0},"@_burn_7772":{"entryPoint":1032,"id":7772,"parameterSlots":2,"returnSlots":0},"@_mint_7739":{"entryPoint":980,"id":7739,"parameterSlots":2,"returnSlots":0},"@_msgSender_10709":{"entryPoint":null,"id":10709,"parameterSlots":0,"returnSlots":1},"@_spendAllowance_7898":{"entryPoint":758,"id":7898,"parameterSlots":3,"returnSlots":0},"@_transfer_7629":{"entryPoint":887,"id":7629,"parameterSlots":3,"returnSlots":0},"@_update_7706":{"entryPoint":1294,"id":7706,"parameterSlots":3,"returnSlots":0},"@allowance_7526":{"entryPoint":null,"id":7526,"parameterSlots":2,"returnSlots":1},"@approve_7550":{"entryPoint":628,"id":7550,"parameterSlots":2,"returnSlots":1},"@balanceOf_7485":{"entryPoint":null,"id":7485,"parameterSlots":1,"returnSlots":1},"@burn_588":{"entryPoint":717,"id":588,"parameterSlots":2,"returnSlots":0},"@decimals_562":{"entryPoint":null,"id":562,"parameterSlots":0,"returnSlots":1},"@mint_575":{"entryPoint":688,"id":575,"parameterSlots":2,"returnSlots":0},"@name_7445":{"entryPoint":484,"id":7445,"parameterSlots":0,"returnSlots":1},"@symbol_7454":{"entryPoint":702,"id":7454,"parameterSlots":0,"returnSlots":1},"@totalSupply_7472":{"entryPoint":null,"id":7472,"parameterSlots":0,"returnSlots":1},"@transferFrom_7582":{"entryPoint":653,"id":7582,"parameterSlots":3,"returnSlots":1},"@transfer_7509":{"entryPoint":727,"id":7509,"parameterSlots":2,"returnSlots":1},"abi_decode_address":{"entryPoint":1641,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":1766,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":1798,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":1708,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":1668,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":1588,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":1903,"id":null,"parameterSlots":2,"returnSlots":1},"extract_byte_array_length":{"entryPoint":1847,"id":null,"parameterSlots":1,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:3485:101","nodeType":"YulBlock","src":"0:3485:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"135:297:101","nodeType":"YulBlock","src":"135:297:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"152:9:101","nodeType":"YulIdentifier","src":"152:9:101"},{"kind":"number","nativeSrc":"163:2:101","nodeType":"YulLiteral","src":"163:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"145:6:101","nodeType":"YulIdentifier","src":"145:6:101"},"nativeSrc":"145:21:101","nodeType":"YulFunctionCall","src":"145:21:101"},"nativeSrc":"145:21:101","nodeType":"YulExpressionStatement","src":"145:21:101"},{"nativeSrc":"175:27:101","nodeType":"YulVariableDeclaration","src":"175:27:101","value":{"arguments":[{"name":"value0","nativeSrc":"195:6:101","nodeType":"YulIdentifier","src":"195:6:101"}],"functionName":{"name":"mload","nativeSrc":"189:5:101","nodeType":"YulIdentifier","src":"189:5:101"},"nativeSrc":"189:13:101","nodeType":"YulFunctionCall","src":"189:13:101"},"variables":[{"name":"length","nativeSrc":"179:6:101","nodeType":"YulTypedName","src":"179:6:101","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"222:9:101","nodeType":"YulIdentifier","src":"222:9:101"},{"kind":"number","nativeSrc":"233:2:101","nodeType":"YulLiteral","src":"233:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"218:3:101","nodeType":"YulIdentifier","src":"218:3:101"},"nativeSrc":"218:18:101","nodeType":"YulFunctionCall","src":"218:18:101"},{"name":"length","nativeSrc":"238:6:101","nodeType":"YulIdentifier","src":"238:6:101"}],"functionName":{"name":"mstore","nativeSrc":"211:6:101","nodeType":"YulIdentifier","src":"211:6:101"},"nativeSrc":"211:34:101","nodeType":"YulFunctionCall","src":"211:34:101"},"nativeSrc":"211:34:101","nodeType":"YulExpressionStatement","src":"211:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"264:9:101","nodeType":"YulIdentifier","src":"264:9:101"},{"kind":"number","nativeSrc":"275:2:101","nodeType":"YulLiteral","src":"275:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"260:3:101","nodeType":"YulIdentifier","src":"260:3:101"},"nativeSrc":"260:18:101","nodeType":"YulFunctionCall","src":"260:18:101"},{"arguments":[{"name":"value0","nativeSrc":"284:6:101","nodeType":"YulIdentifier","src":"284:6:101"},{"kind":"number","nativeSrc":"292:2:101","nodeType":"YulLiteral","src":"292:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"280:3:101","nodeType":"YulIdentifier","src":"280:3:101"},"nativeSrc":"280:15:101","nodeType":"YulFunctionCall","src":"280:15:101"},{"name":"length","nativeSrc":"297:6:101","nodeType":"YulIdentifier","src":"297:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"254:5:101","nodeType":"YulIdentifier","src":"254:5:101"},"nativeSrc":"254:50:101","nodeType":"YulFunctionCall","src":"254:50:101"},"nativeSrc":"254:50:101","nodeType":"YulExpressionStatement","src":"254:50:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"328:9:101","nodeType":"YulIdentifier","src":"328:9:101"},{"name":"length","nativeSrc":"339:6:101","nodeType":"YulIdentifier","src":"339:6:101"}],"functionName":{"name":"add","nativeSrc":"324:3:101","nodeType":"YulIdentifier","src":"324:3:101"},"nativeSrc":"324:22:101","nodeType":"YulFunctionCall","src":"324:22:101"},{"kind":"number","nativeSrc":"348:2:101","nodeType":"YulLiteral","src":"348:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"320:3:101","nodeType":"YulIdentifier","src":"320:3:101"},"nativeSrc":"320:31:101","nodeType":"YulFunctionCall","src":"320:31:101"},{"kind":"number","nativeSrc":"353:1:101","nodeType":"YulLiteral","src":"353:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"313:6:101","nodeType":"YulIdentifier","src":"313:6:101"},"nativeSrc":"313:42:101","nodeType":"YulFunctionCall","src":"313:42:101"},"nativeSrc":"313:42:101","nodeType":"YulExpressionStatement","src":"313:42:101"},{"nativeSrc":"364:62:101","nodeType":"YulAssignment","src":"364:62:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"380:9:101","nodeType":"YulIdentifier","src":"380:9:101"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"399:6:101","nodeType":"YulIdentifier","src":"399:6:101"},{"kind":"number","nativeSrc":"407:2:101","nodeType":"YulLiteral","src":"407:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"395:3:101","nodeType":"YulIdentifier","src":"395:3:101"},"nativeSrc":"395:15:101","nodeType":"YulFunctionCall","src":"395:15:101"},{"arguments":[{"kind":"number","nativeSrc":"416:2:101","nodeType":"YulLiteral","src":"416:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"412:3:101","nodeType":"YulIdentifier","src":"412:3:101"},"nativeSrc":"412:7:101","nodeType":"YulFunctionCall","src":"412:7:101"}],"functionName":{"name":"and","nativeSrc":"391:3:101","nodeType":"YulIdentifier","src":"391:3:101"},"nativeSrc":"391:29:101","nodeType":"YulFunctionCall","src":"391:29:101"}],"functionName":{"name":"add","nativeSrc":"376:3:101","nodeType":"YulIdentifier","src":"376:3:101"},"nativeSrc":"376:45:101","nodeType":"YulFunctionCall","src":"376:45:101"},{"kind":"number","nativeSrc":"423:2:101","nodeType":"YulLiteral","src":"423:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"372:3:101","nodeType":"YulIdentifier","src":"372:3:101"},"nativeSrc":"372:54:101","nodeType":"YulFunctionCall","src":"372:54:101"},"variableNames":[{"name":"tail","nativeSrc":"364:4:101","nodeType":"YulIdentifier","src":"364:4:101"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"14:418:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"104:9:101","nodeType":"YulTypedName","src":"104:9:101","type":""},{"name":"value0","nativeSrc":"115:6:101","nodeType":"YulTypedName","src":"115:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"126:4:101","nodeType":"YulTypedName","src":"126:4:101","type":""}],"src":"14:418:101"},{"body":{"nativeSrc":"486:124:101","nodeType":"YulBlock","src":"486:124:101","statements":[{"nativeSrc":"496:29:101","nodeType":"YulAssignment","src":"496:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"518:6:101","nodeType":"YulIdentifier","src":"518:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"505:12:101","nodeType":"YulIdentifier","src":"505:12:101"},"nativeSrc":"505:20:101","nodeType":"YulFunctionCall","src":"505:20:101"},"variableNames":[{"name":"value","nativeSrc":"496:5:101","nodeType":"YulIdentifier","src":"496:5:101"}]},{"body":{"nativeSrc":"588:16:101","nodeType":"YulBlock","src":"588:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"597:1:101","nodeType":"YulLiteral","src":"597:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"600:1:101","nodeType":"YulLiteral","src":"600:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"590:6:101","nodeType":"YulIdentifier","src":"590:6:101"},"nativeSrc":"590:12:101","nodeType":"YulFunctionCall","src":"590:12:101"},"nativeSrc":"590:12:101","nodeType":"YulExpressionStatement","src":"590:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"547:5:101","nodeType":"YulIdentifier","src":"547:5:101"},{"arguments":[{"name":"value","nativeSrc":"558:5:101","nodeType":"YulIdentifier","src":"558:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"573:3:101","nodeType":"YulLiteral","src":"573:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"578:1:101","nodeType":"YulLiteral","src":"578:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"569:3:101","nodeType":"YulIdentifier","src":"569:3:101"},"nativeSrc":"569:11:101","nodeType":"YulFunctionCall","src":"569:11:101"},{"kind":"number","nativeSrc":"582:1:101","nodeType":"YulLiteral","src":"582:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"565:3:101","nodeType":"YulIdentifier","src":"565:3:101"},"nativeSrc":"565:19:101","nodeType":"YulFunctionCall","src":"565:19:101"}],"functionName":{"name":"and","nativeSrc":"554:3:101","nodeType":"YulIdentifier","src":"554:3:101"},"nativeSrc":"554:31:101","nodeType":"YulFunctionCall","src":"554:31:101"}],"functionName":{"name":"eq","nativeSrc":"544:2:101","nodeType":"YulIdentifier","src":"544:2:101"},"nativeSrc":"544:42:101","nodeType":"YulFunctionCall","src":"544:42:101"}],"functionName":{"name":"iszero","nativeSrc":"537:6:101","nodeType":"YulIdentifier","src":"537:6:101"},"nativeSrc":"537:50:101","nodeType":"YulFunctionCall","src":"537:50:101"},"nativeSrc":"534:70:101","nodeType":"YulIf","src":"534:70:101"}]},"name":"abi_decode_address","nativeSrc":"437:173:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"465:6:101","nodeType":"YulTypedName","src":"465:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"476:5:101","nodeType":"YulTypedName","src":"476:5:101","type":""}],"src":"437:173:101"},{"body":{"nativeSrc":"702:213:101","nodeType":"YulBlock","src":"702:213:101","statements":[{"body":{"nativeSrc":"748:16:101","nodeType":"YulBlock","src":"748:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"757:1:101","nodeType":"YulLiteral","src":"757:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"760:1:101","nodeType":"YulLiteral","src":"760:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"750:6:101","nodeType":"YulIdentifier","src":"750:6:101"},"nativeSrc":"750:12:101","nodeType":"YulFunctionCall","src":"750:12:101"},"nativeSrc":"750:12:101","nodeType":"YulExpressionStatement","src":"750:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"723:7:101","nodeType":"YulIdentifier","src":"723:7:101"},{"name":"headStart","nativeSrc":"732:9:101","nodeType":"YulIdentifier","src":"732:9:101"}],"functionName":{"name":"sub","nativeSrc":"719:3:101","nodeType":"YulIdentifier","src":"719:3:101"},"nativeSrc":"719:23:101","nodeType":"YulFunctionCall","src":"719:23:101"},{"kind":"number","nativeSrc":"744:2:101","nodeType":"YulLiteral","src":"744:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"715:3:101","nodeType":"YulIdentifier","src":"715:3:101"},"nativeSrc":"715:32:101","nodeType":"YulFunctionCall","src":"715:32:101"},"nativeSrc":"712:52:101","nodeType":"YulIf","src":"712:52:101"},{"nativeSrc":"773:39:101","nodeType":"YulAssignment","src":"773:39:101","value":{"arguments":[{"name":"headStart","nativeSrc":"802:9:101","nodeType":"YulIdentifier","src":"802:9:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"783:18:101","nodeType":"YulIdentifier","src":"783:18:101"},"nativeSrc":"783:29:101","nodeType":"YulFunctionCall","src":"783:29:101"},"variableNames":[{"name":"value0","nativeSrc":"773:6:101","nodeType":"YulIdentifier","src":"773:6:101"}]},{"nativeSrc":"821:14:101","nodeType":"YulVariableDeclaration","src":"821:14:101","value":{"kind":"number","nativeSrc":"834:1:101","nodeType":"YulLiteral","src":"834:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"825:5:101","nodeType":"YulTypedName","src":"825:5:101","type":""}]},{"nativeSrc":"844:41:101","nodeType":"YulAssignment","src":"844:41:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"870:9:101","nodeType":"YulIdentifier","src":"870:9:101"},{"kind":"number","nativeSrc":"881:2:101","nodeType":"YulLiteral","src":"881:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"866:3:101","nodeType":"YulIdentifier","src":"866:3:101"},"nativeSrc":"866:18:101","nodeType":"YulFunctionCall","src":"866:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"853:12:101","nodeType":"YulIdentifier","src":"853:12:101"},"nativeSrc":"853:32:101","nodeType":"YulFunctionCall","src":"853:32:101"},"variableNames":[{"name":"value","nativeSrc":"844:5:101","nodeType":"YulIdentifier","src":"844:5:101"}]},{"nativeSrc":"894:15:101","nodeType":"YulAssignment","src":"894:15:101","value":{"name":"value","nativeSrc":"904:5:101","nodeType":"YulIdentifier","src":"904:5:101"},"variableNames":[{"name":"value1","nativeSrc":"894:6:101","nodeType":"YulIdentifier","src":"894:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"615:300:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"660:9:101","nodeType":"YulTypedName","src":"660:9:101","type":""},{"name":"dataEnd","nativeSrc":"671:7:101","nodeType":"YulTypedName","src":"671:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"683:6:101","nodeType":"YulTypedName","src":"683:6:101","type":""},{"name":"value1","nativeSrc":"691:6:101","nodeType":"YulTypedName","src":"691:6:101","type":""}],"src":"615:300:101"},{"body":{"nativeSrc":"1015:92:101","nodeType":"YulBlock","src":"1015:92:101","statements":[{"nativeSrc":"1025:26:101","nodeType":"YulAssignment","src":"1025:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1037:9:101","nodeType":"YulIdentifier","src":"1037:9:101"},{"kind":"number","nativeSrc":"1048:2:101","nodeType":"YulLiteral","src":"1048:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1033:3:101","nodeType":"YulIdentifier","src":"1033:3:101"},"nativeSrc":"1033:18:101","nodeType":"YulFunctionCall","src":"1033:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1025:4:101","nodeType":"YulIdentifier","src":"1025:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1067:9:101","nodeType":"YulIdentifier","src":"1067:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"1092:6:101","nodeType":"YulIdentifier","src":"1092:6:101"}],"functionName":{"name":"iszero","nativeSrc":"1085:6:101","nodeType":"YulIdentifier","src":"1085:6:101"},"nativeSrc":"1085:14:101","nodeType":"YulFunctionCall","src":"1085:14:101"}],"functionName":{"name":"iszero","nativeSrc":"1078:6:101","nodeType":"YulIdentifier","src":"1078:6:101"},"nativeSrc":"1078:22:101","nodeType":"YulFunctionCall","src":"1078:22:101"}],"functionName":{"name":"mstore","nativeSrc":"1060:6:101","nodeType":"YulIdentifier","src":"1060:6:101"},"nativeSrc":"1060:41:101","nodeType":"YulFunctionCall","src":"1060:41:101"},"nativeSrc":"1060:41:101","nodeType":"YulExpressionStatement","src":"1060:41:101"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"920:187:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"984:9:101","nodeType":"YulTypedName","src":"984:9:101","type":""},{"name":"value0","nativeSrc":"995:6:101","nodeType":"YulTypedName","src":"995:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1006:4:101","nodeType":"YulTypedName","src":"1006:4:101","type":""}],"src":"920:187:101"},{"body":{"nativeSrc":"1213:76:101","nodeType":"YulBlock","src":"1213:76:101","statements":[{"nativeSrc":"1223:26:101","nodeType":"YulAssignment","src":"1223:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1235:9:101","nodeType":"YulIdentifier","src":"1235:9:101"},{"kind":"number","nativeSrc":"1246:2:101","nodeType":"YulLiteral","src":"1246:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1231:3:101","nodeType":"YulIdentifier","src":"1231:3:101"},"nativeSrc":"1231:18:101","nodeType":"YulFunctionCall","src":"1231:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1223:4:101","nodeType":"YulIdentifier","src":"1223:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1265:9:101","nodeType":"YulIdentifier","src":"1265:9:101"},{"name":"value0","nativeSrc":"1276:6:101","nodeType":"YulIdentifier","src":"1276:6:101"}],"functionName":{"name":"mstore","nativeSrc":"1258:6:101","nodeType":"YulIdentifier","src":"1258:6:101"},"nativeSrc":"1258:25:101","nodeType":"YulFunctionCall","src":"1258:25:101"},"nativeSrc":"1258:25:101","nodeType":"YulExpressionStatement","src":"1258:25:101"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"1112:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1182:9:101","nodeType":"YulTypedName","src":"1182:9:101","type":""},{"name":"value0","nativeSrc":"1193:6:101","nodeType":"YulTypedName","src":"1193:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1204:4:101","nodeType":"YulTypedName","src":"1204:4:101","type":""}],"src":"1112:177:101"},{"body":{"nativeSrc":"1398:270:101","nodeType":"YulBlock","src":"1398:270:101","statements":[{"body":{"nativeSrc":"1444:16:101","nodeType":"YulBlock","src":"1444:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1453:1:101","nodeType":"YulLiteral","src":"1453:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1456:1:101","nodeType":"YulLiteral","src":"1456:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1446:6:101","nodeType":"YulIdentifier","src":"1446:6:101"},"nativeSrc":"1446:12:101","nodeType":"YulFunctionCall","src":"1446:12:101"},"nativeSrc":"1446:12:101","nodeType":"YulExpressionStatement","src":"1446:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1419:7:101","nodeType":"YulIdentifier","src":"1419:7:101"},{"name":"headStart","nativeSrc":"1428:9:101","nodeType":"YulIdentifier","src":"1428:9:101"}],"functionName":{"name":"sub","nativeSrc":"1415:3:101","nodeType":"YulIdentifier","src":"1415:3:101"},"nativeSrc":"1415:23:101","nodeType":"YulFunctionCall","src":"1415:23:101"},{"kind":"number","nativeSrc":"1440:2:101","nodeType":"YulLiteral","src":"1440:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"1411:3:101","nodeType":"YulIdentifier","src":"1411:3:101"},"nativeSrc":"1411:32:101","nodeType":"YulFunctionCall","src":"1411:32:101"},"nativeSrc":"1408:52:101","nodeType":"YulIf","src":"1408:52:101"},{"nativeSrc":"1469:39:101","nodeType":"YulAssignment","src":"1469:39:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1498:9:101","nodeType":"YulIdentifier","src":"1498:9:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1479:18:101","nodeType":"YulIdentifier","src":"1479:18:101"},"nativeSrc":"1479:29:101","nodeType":"YulFunctionCall","src":"1479:29:101"},"variableNames":[{"name":"value0","nativeSrc":"1469:6:101","nodeType":"YulIdentifier","src":"1469:6:101"}]},{"nativeSrc":"1517:48:101","nodeType":"YulAssignment","src":"1517:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1550:9:101","nodeType":"YulIdentifier","src":"1550:9:101"},{"kind":"number","nativeSrc":"1561:2:101","nodeType":"YulLiteral","src":"1561:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1546:3:101","nodeType":"YulIdentifier","src":"1546:3:101"},"nativeSrc":"1546:18:101","nodeType":"YulFunctionCall","src":"1546:18:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1527:18:101","nodeType":"YulIdentifier","src":"1527:18:101"},"nativeSrc":"1527:38:101","nodeType":"YulFunctionCall","src":"1527:38:101"},"variableNames":[{"name":"value1","nativeSrc":"1517:6:101","nodeType":"YulIdentifier","src":"1517:6:101"}]},{"nativeSrc":"1574:14:101","nodeType":"YulVariableDeclaration","src":"1574:14:101","value":{"kind":"number","nativeSrc":"1587:1:101","nodeType":"YulLiteral","src":"1587:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1578:5:101","nodeType":"YulTypedName","src":"1578:5:101","type":""}]},{"nativeSrc":"1597:41:101","nodeType":"YulAssignment","src":"1597:41:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1623:9:101","nodeType":"YulIdentifier","src":"1623:9:101"},{"kind":"number","nativeSrc":"1634:2:101","nodeType":"YulLiteral","src":"1634:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1619:3:101","nodeType":"YulIdentifier","src":"1619:3:101"},"nativeSrc":"1619:18:101","nodeType":"YulFunctionCall","src":"1619:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"1606:12:101","nodeType":"YulIdentifier","src":"1606:12:101"},"nativeSrc":"1606:32:101","nodeType":"YulFunctionCall","src":"1606:32:101"},"variableNames":[{"name":"value","nativeSrc":"1597:5:101","nodeType":"YulIdentifier","src":"1597:5:101"}]},{"nativeSrc":"1647:15:101","nodeType":"YulAssignment","src":"1647:15:101","value":{"name":"value","nativeSrc":"1657:5:101","nodeType":"YulIdentifier","src":"1657:5:101"},"variableNames":[{"name":"value2","nativeSrc":"1647:6:101","nodeType":"YulIdentifier","src":"1647:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"1294:374:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1348:9:101","nodeType":"YulTypedName","src":"1348:9:101","type":""},{"name":"dataEnd","nativeSrc":"1359:7:101","nodeType":"YulTypedName","src":"1359:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1371:6:101","nodeType":"YulTypedName","src":"1371:6:101","type":""},{"name":"value1","nativeSrc":"1379:6:101","nodeType":"YulTypedName","src":"1379:6:101","type":""},{"name":"value2","nativeSrc":"1387:6:101","nodeType":"YulTypedName","src":"1387:6:101","type":""}],"src":"1294:374:101"},{"body":{"nativeSrc":"1770:87:101","nodeType":"YulBlock","src":"1770:87:101","statements":[{"nativeSrc":"1780:26:101","nodeType":"YulAssignment","src":"1780:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1792:9:101","nodeType":"YulIdentifier","src":"1792:9:101"},{"kind":"number","nativeSrc":"1803:2:101","nodeType":"YulLiteral","src":"1803:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1788:3:101","nodeType":"YulIdentifier","src":"1788:3:101"},"nativeSrc":"1788:18:101","nodeType":"YulFunctionCall","src":"1788:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1780:4:101","nodeType":"YulIdentifier","src":"1780:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1822:9:101","nodeType":"YulIdentifier","src":"1822:9:101"},{"arguments":[{"name":"value0","nativeSrc":"1837:6:101","nodeType":"YulIdentifier","src":"1837:6:101"},{"kind":"number","nativeSrc":"1845:4:101","nodeType":"YulLiteral","src":"1845:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"1833:3:101","nodeType":"YulIdentifier","src":"1833:3:101"},"nativeSrc":"1833:17:101","nodeType":"YulFunctionCall","src":"1833:17:101"}],"functionName":{"name":"mstore","nativeSrc":"1815:6:101","nodeType":"YulIdentifier","src":"1815:6:101"},"nativeSrc":"1815:36:101","nodeType":"YulFunctionCall","src":"1815:36:101"},"nativeSrc":"1815:36:101","nodeType":"YulExpressionStatement","src":"1815:36:101"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"1673:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1739:9:101","nodeType":"YulTypedName","src":"1739:9:101","type":""},{"name":"value0","nativeSrc":"1750:6:101","nodeType":"YulTypedName","src":"1750:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1761:4:101","nodeType":"YulTypedName","src":"1761:4:101","type":""}],"src":"1673:184:101"},{"body":{"nativeSrc":"1932:116:101","nodeType":"YulBlock","src":"1932:116:101","statements":[{"body":{"nativeSrc":"1978:16:101","nodeType":"YulBlock","src":"1978:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1987:1:101","nodeType":"YulLiteral","src":"1987:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1990:1:101","nodeType":"YulLiteral","src":"1990:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1980:6:101","nodeType":"YulIdentifier","src":"1980:6:101"},"nativeSrc":"1980:12:101","nodeType":"YulFunctionCall","src":"1980:12:101"},"nativeSrc":"1980:12:101","nodeType":"YulExpressionStatement","src":"1980:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1953:7:101","nodeType":"YulIdentifier","src":"1953:7:101"},{"name":"headStart","nativeSrc":"1962:9:101","nodeType":"YulIdentifier","src":"1962:9:101"}],"functionName":{"name":"sub","nativeSrc":"1949:3:101","nodeType":"YulIdentifier","src":"1949:3:101"},"nativeSrc":"1949:23:101","nodeType":"YulFunctionCall","src":"1949:23:101"},{"kind":"number","nativeSrc":"1974:2:101","nodeType":"YulLiteral","src":"1974:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1945:3:101","nodeType":"YulIdentifier","src":"1945:3:101"},"nativeSrc":"1945:32:101","nodeType":"YulFunctionCall","src":"1945:32:101"},"nativeSrc":"1942:52:101","nodeType":"YulIf","src":"1942:52:101"},{"nativeSrc":"2003:39:101","nodeType":"YulAssignment","src":"2003:39:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2032:9:101","nodeType":"YulIdentifier","src":"2032:9:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2013:18:101","nodeType":"YulIdentifier","src":"2013:18:101"},"nativeSrc":"2013:29:101","nodeType":"YulFunctionCall","src":"2013:29:101"},"variableNames":[{"name":"value0","nativeSrc":"2003:6:101","nodeType":"YulIdentifier","src":"2003:6:101"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"1862:186:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1898:9:101","nodeType":"YulTypedName","src":"1898:9:101","type":""},{"name":"dataEnd","nativeSrc":"1909:7:101","nodeType":"YulTypedName","src":"1909:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1921:6:101","nodeType":"YulTypedName","src":"1921:6:101","type":""}],"src":"1862:186:101"},{"body":{"nativeSrc":"2140:173:101","nodeType":"YulBlock","src":"2140:173:101","statements":[{"body":{"nativeSrc":"2186:16:101","nodeType":"YulBlock","src":"2186:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2195:1:101","nodeType":"YulLiteral","src":"2195:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2198:1:101","nodeType":"YulLiteral","src":"2198:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2188:6:101","nodeType":"YulIdentifier","src":"2188:6:101"},"nativeSrc":"2188:12:101","nodeType":"YulFunctionCall","src":"2188:12:101"},"nativeSrc":"2188:12:101","nodeType":"YulExpressionStatement","src":"2188:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2161:7:101","nodeType":"YulIdentifier","src":"2161:7:101"},{"name":"headStart","nativeSrc":"2170:9:101","nodeType":"YulIdentifier","src":"2170:9:101"}],"functionName":{"name":"sub","nativeSrc":"2157:3:101","nodeType":"YulIdentifier","src":"2157:3:101"},"nativeSrc":"2157:23:101","nodeType":"YulFunctionCall","src":"2157:23:101"},{"kind":"number","nativeSrc":"2182:2:101","nodeType":"YulLiteral","src":"2182:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2153:3:101","nodeType":"YulIdentifier","src":"2153:3:101"},"nativeSrc":"2153:32:101","nodeType":"YulFunctionCall","src":"2153:32:101"},"nativeSrc":"2150:52:101","nodeType":"YulIf","src":"2150:52:101"},{"nativeSrc":"2211:39:101","nodeType":"YulAssignment","src":"2211:39:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2240:9:101","nodeType":"YulIdentifier","src":"2240:9:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2221:18:101","nodeType":"YulIdentifier","src":"2221:18:101"},"nativeSrc":"2221:29:101","nodeType":"YulFunctionCall","src":"2221:29:101"},"variableNames":[{"name":"value0","nativeSrc":"2211:6:101","nodeType":"YulIdentifier","src":"2211:6:101"}]},{"nativeSrc":"2259:48:101","nodeType":"YulAssignment","src":"2259:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2292:9:101","nodeType":"YulIdentifier","src":"2292:9:101"},{"kind":"number","nativeSrc":"2303:2:101","nodeType":"YulLiteral","src":"2303:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2288:3:101","nodeType":"YulIdentifier","src":"2288:3:101"},"nativeSrc":"2288:18:101","nodeType":"YulFunctionCall","src":"2288:18:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2269:18:101","nodeType":"YulIdentifier","src":"2269:18:101"},"nativeSrc":"2269:38:101","nodeType":"YulFunctionCall","src":"2269:38:101"},"variableNames":[{"name":"value1","nativeSrc":"2259:6:101","nodeType":"YulIdentifier","src":"2259:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"2053:260:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2098:9:101","nodeType":"YulTypedName","src":"2098:9:101","type":""},{"name":"dataEnd","nativeSrc":"2109:7:101","nodeType":"YulTypedName","src":"2109:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2121:6:101","nodeType":"YulTypedName","src":"2121:6:101","type":""},{"name":"value1","nativeSrc":"2129:6:101","nodeType":"YulTypedName","src":"2129:6:101","type":""}],"src":"2053:260:101"},{"body":{"nativeSrc":"2373:325:101","nodeType":"YulBlock","src":"2373:325:101","statements":[{"nativeSrc":"2383:22:101","nodeType":"YulAssignment","src":"2383:22:101","value":{"arguments":[{"kind":"number","nativeSrc":"2397:1:101","nodeType":"YulLiteral","src":"2397:1:101","type":"","value":"1"},{"name":"data","nativeSrc":"2400:4:101","nodeType":"YulIdentifier","src":"2400:4:101"}],"functionName":{"name":"shr","nativeSrc":"2393:3:101","nodeType":"YulIdentifier","src":"2393:3:101"},"nativeSrc":"2393:12:101","nodeType":"YulFunctionCall","src":"2393:12:101"},"variableNames":[{"name":"length","nativeSrc":"2383:6:101","nodeType":"YulIdentifier","src":"2383:6:101"}]},{"nativeSrc":"2414:38:101","nodeType":"YulVariableDeclaration","src":"2414:38:101","value":{"arguments":[{"name":"data","nativeSrc":"2444:4:101","nodeType":"YulIdentifier","src":"2444:4:101"},{"kind":"number","nativeSrc":"2450:1:101","nodeType":"YulLiteral","src":"2450:1:101","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"2440:3:101","nodeType":"YulIdentifier","src":"2440:3:101"},"nativeSrc":"2440:12:101","nodeType":"YulFunctionCall","src":"2440:12:101"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"2418:18:101","nodeType":"YulTypedName","src":"2418:18:101","type":""}]},{"body":{"nativeSrc":"2491:31:101","nodeType":"YulBlock","src":"2491:31:101","statements":[{"nativeSrc":"2493:27:101","nodeType":"YulAssignment","src":"2493:27:101","value":{"arguments":[{"name":"length","nativeSrc":"2507:6:101","nodeType":"YulIdentifier","src":"2507:6:101"},{"kind":"number","nativeSrc":"2515:4:101","nodeType":"YulLiteral","src":"2515:4:101","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"2503:3:101","nodeType":"YulIdentifier","src":"2503:3:101"},"nativeSrc":"2503:17:101","nodeType":"YulFunctionCall","src":"2503:17:101"},"variableNames":[{"name":"length","nativeSrc":"2493:6:101","nodeType":"YulIdentifier","src":"2493:6:101"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"2471:18:101","nodeType":"YulIdentifier","src":"2471:18:101"}],"functionName":{"name":"iszero","nativeSrc":"2464:6:101","nodeType":"YulIdentifier","src":"2464:6:101"},"nativeSrc":"2464:26:101","nodeType":"YulFunctionCall","src":"2464:26:101"},"nativeSrc":"2461:61:101","nodeType":"YulIf","src":"2461:61:101"},{"body":{"nativeSrc":"2581:111:101","nodeType":"YulBlock","src":"2581:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2602:1:101","nodeType":"YulLiteral","src":"2602:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"2609:3:101","nodeType":"YulLiteral","src":"2609:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"2614:10:101","nodeType":"YulLiteral","src":"2614:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"2605:3:101","nodeType":"YulIdentifier","src":"2605:3:101"},"nativeSrc":"2605:20:101","nodeType":"YulFunctionCall","src":"2605:20:101"}],"functionName":{"name":"mstore","nativeSrc":"2595:6:101","nodeType":"YulIdentifier","src":"2595:6:101"},"nativeSrc":"2595:31:101","nodeType":"YulFunctionCall","src":"2595:31:101"},"nativeSrc":"2595:31:101","nodeType":"YulExpressionStatement","src":"2595:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2646:1:101","nodeType":"YulLiteral","src":"2646:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"2649:4:101","nodeType":"YulLiteral","src":"2649:4:101","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"2639:6:101","nodeType":"YulIdentifier","src":"2639:6:101"},"nativeSrc":"2639:15:101","nodeType":"YulFunctionCall","src":"2639:15:101"},"nativeSrc":"2639:15:101","nodeType":"YulExpressionStatement","src":"2639:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2674:1:101","nodeType":"YulLiteral","src":"2674:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2677:4:101","nodeType":"YulLiteral","src":"2677:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"2667:6:101","nodeType":"YulIdentifier","src":"2667:6:101"},"nativeSrc":"2667:15:101","nodeType":"YulFunctionCall","src":"2667:15:101"},"nativeSrc":"2667:15:101","nodeType":"YulExpressionStatement","src":"2667:15:101"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"2537:18:101","nodeType":"YulIdentifier","src":"2537:18:101"},{"arguments":[{"name":"length","nativeSrc":"2560:6:101","nodeType":"YulIdentifier","src":"2560:6:101"},{"kind":"number","nativeSrc":"2568:2:101","nodeType":"YulLiteral","src":"2568:2:101","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"2557:2:101","nodeType":"YulIdentifier","src":"2557:2:101"},"nativeSrc":"2557:14:101","nodeType":"YulFunctionCall","src":"2557:14:101"}],"functionName":{"name":"eq","nativeSrc":"2534:2:101","nodeType":"YulIdentifier","src":"2534:2:101"},"nativeSrc":"2534:38:101","nodeType":"YulFunctionCall","src":"2534:38:101"},"nativeSrc":"2531:161:101","nodeType":"YulIf","src":"2531:161:101"}]},"name":"extract_byte_array_length","nativeSrc":"2318:380:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"2353:4:101","nodeType":"YulTypedName","src":"2353:4:101","type":""}],"returnVariables":[{"name":"length","nativeSrc":"2362:6:101","nodeType":"YulTypedName","src":"2362:6:101","type":""}],"src":"2318:380:101"},{"body":{"nativeSrc":"2860:188:101","nodeType":"YulBlock","src":"2860:188:101","statements":[{"nativeSrc":"2870:26:101","nodeType":"YulAssignment","src":"2870:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2882:9:101","nodeType":"YulIdentifier","src":"2882:9:101"},{"kind":"number","nativeSrc":"2893:2:101","nodeType":"YulLiteral","src":"2893:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"2878:3:101","nodeType":"YulIdentifier","src":"2878:3:101"},"nativeSrc":"2878:18:101","nodeType":"YulFunctionCall","src":"2878:18:101"},"variableNames":[{"name":"tail","nativeSrc":"2870:4:101","nodeType":"YulIdentifier","src":"2870:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2912:9:101","nodeType":"YulIdentifier","src":"2912:9:101"},{"arguments":[{"name":"value0","nativeSrc":"2927:6:101","nodeType":"YulIdentifier","src":"2927:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2943:3:101","nodeType":"YulLiteral","src":"2943:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"2948:1:101","nodeType":"YulLiteral","src":"2948:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2939:3:101","nodeType":"YulIdentifier","src":"2939:3:101"},"nativeSrc":"2939:11:101","nodeType":"YulFunctionCall","src":"2939:11:101"},{"kind":"number","nativeSrc":"2952:1:101","nodeType":"YulLiteral","src":"2952:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2935:3:101","nodeType":"YulIdentifier","src":"2935:3:101"},"nativeSrc":"2935:19:101","nodeType":"YulFunctionCall","src":"2935:19:101"}],"functionName":{"name":"and","nativeSrc":"2923:3:101","nodeType":"YulIdentifier","src":"2923:3:101"},"nativeSrc":"2923:32:101","nodeType":"YulFunctionCall","src":"2923:32:101"}],"functionName":{"name":"mstore","nativeSrc":"2905:6:101","nodeType":"YulIdentifier","src":"2905:6:101"},"nativeSrc":"2905:51:101","nodeType":"YulFunctionCall","src":"2905:51:101"},"nativeSrc":"2905:51:101","nodeType":"YulExpressionStatement","src":"2905:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2976:9:101","nodeType":"YulIdentifier","src":"2976:9:101"},{"kind":"number","nativeSrc":"2987:2:101","nodeType":"YulLiteral","src":"2987:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2972:3:101","nodeType":"YulIdentifier","src":"2972:3:101"},"nativeSrc":"2972:18:101","nodeType":"YulFunctionCall","src":"2972:18:101"},{"name":"value1","nativeSrc":"2992:6:101","nodeType":"YulIdentifier","src":"2992:6:101"}],"functionName":{"name":"mstore","nativeSrc":"2965:6:101","nodeType":"YulIdentifier","src":"2965:6:101"},"nativeSrc":"2965:34:101","nodeType":"YulFunctionCall","src":"2965:34:101"},"nativeSrc":"2965:34:101","nodeType":"YulExpressionStatement","src":"2965:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3019:9:101","nodeType":"YulIdentifier","src":"3019:9:101"},{"kind":"number","nativeSrc":"3030:2:101","nodeType":"YulLiteral","src":"3030:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3015:3:101","nodeType":"YulIdentifier","src":"3015:3:101"},"nativeSrc":"3015:18:101","nodeType":"YulFunctionCall","src":"3015:18:101"},{"name":"value2","nativeSrc":"3035:6:101","nodeType":"YulIdentifier","src":"3035:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3008:6:101","nodeType":"YulIdentifier","src":"3008:6:101"},"nativeSrc":"3008:34:101","nodeType":"YulFunctionCall","src":"3008:34:101"},"nativeSrc":"3008:34:101","nodeType":"YulExpressionStatement","src":"3008:34:101"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"2703:345:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2813:9:101","nodeType":"YulTypedName","src":"2813:9:101","type":""},{"name":"value2","nativeSrc":"2824:6:101","nodeType":"YulTypedName","src":"2824:6:101","type":""},{"name":"value1","nativeSrc":"2832:6:101","nodeType":"YulTypedName","src":"2832:6:101","type":""},{"name":"value0","nativeSrc":"2840:6:101","nodeType":"YulTypedName","src":"2840:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2851:4:101","nodeType":"YulTypedName","src":"2851:4:101","type":""}],"src":"2703:345:101"},{"body":{"nativeSrc":"3154:102:101","nodeType":"YulBlock","src":"3154:102:101","statements":[{"nativeSrc":"3164:26:101","nodeType":"YulAssignment","src":"3164:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3176:9:101","nodeType":"YulIdentifier","src":"3176:9:101"},{"kind":"number","nativeSrc":"3187:2:101","nodeType":"YulLiteral","src":"3187:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3172:3:101","nodeType":"YulIdentifier","src":"3172:3:101"},"nativeSrc":"3172:18:101","nodeType":"YulFunctionCall","src":"3172:18:101"},"variableNames":[{"name":"tail","nativeSrc":"3164:4:101","nodeType":"YulIdentifier","src":"3164:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3206:9:101","nodeType":"YulIdentifier","src":"3206:9:101"},{"arguments":[{"name":"value0","nativeSrc":"3221:6:101","nodeType":"YulIdentifier","src":"3221:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3237:3:101","nodeType":"YulLiteral","src":"3237:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"3242:1:101","nodeType":"YulLiteral","src":"3242:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3233:3:101","nodeType":"YulIdentifier","src":"3233:3:101"},"nativeSrc":"3233:11:101","nodeType":"YulFunctionCall","src":"3233:11:101"},{"kind":"number","nativeSrc":"3246:1:101","nodeType":"YulLiteral","src":"3246:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3229:3:101","nodeType":"YulIdentifier","src":"3229:3:101"},"nativeSrc":"3229:19:101","nodeType":"YulFunctionCall","src":"3229:19:101"}],"functionName":{"name":"and","nativeSrc":"3217:3:101","nodeType":"YulIdentifier","src":"3217:3:101"},"nativeSrc":"3217:32:101","nodeType":"YulFunctionCall","src":"3217:32:101"}],"functionName":{"name":"mstore","nativeSrc":"3199:6:101","nodeType":"YulIdentifier","src":"3199:6:101"},"nativeSrc":"3199:51:101","nodeType":"YulFunctionCall","src":"3199:51:101"},"nativeSrc":"3199:51:101","nodeType":"YulExpressionStatement","src":"3199:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"3053:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3123:9:101","nodeType":"YulTypedName","src":"3123:9:101","type":""},{"name":"value0","nativeSrc":"3134:6:101","nodeType":"YulTypedName","src":"3134:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3145:4:101","nodeType":"YulTypedName","src":"3145:4:101","type":""}],"src":"3053:203:101"},{"body":{"nativeSrc":"3309:174:101","nodeType":"YulBlock","src":"3309:174:101","statements":[{"nativeSrc":"3319:16:101","nodeType":"YulAssignment","src":"3319:16:101","value":{"arguments":[{"name":"x","nativeSrc":"3330:1:101","nodeType":"YulIdentifier","src":"3330:1:101"},{"name":"y","nativeSrc":"3333:1:101","nodeType":"YulIdentifier","src":"3333:1:101"}],"functionName":{"name":"add","nativeSrc":"3326:3:101","nodeType":"YulIdentifier","src":"3326:3:101"},"nativeSrc":"3326:9:101","nodeType":"YulFunctionCall","src":"3326:9:101"},"variableNames":[{"name":"sum","nativeSrc":"3319:3:101","nodeType":"YulIdentifier","src":"3319:3:101"}]},{"body":{"nativeSrc":"3366:111:101","nodeType":"YulBlock","src":"3366:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3387:1:101","nodeType":"YulLiteral","src":"3387:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"3394:3:101","nodeType":"YulLiteral","src":"3394:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"3399:10:101","nodeType":"YulLiteral","src":"3399:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"3390:3:101","nodeType":"YulIdentifier","src":"3390:3:101"},"nativeSrc":"3390:20:101","nodeType":"YulFunctionCall","src":"3390:20:101"}],"functionName":{"name":"mstore","nativeSrc":"3380:6:101","nodeType":"YulIdentifier","src":"3380:6:101"},"nativeSrc":"3380:31:101","nodeType":"YulFunctionCall","src":"3380:31:101"},"nativeSrc":"3380:31:101","nodeType":"YulExpressionStatement","src":"3380:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3431:1:101","nodeType":"YulLiteral","src":"3431:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"3434:4:101","nodeType":"YulLiteral","src":"3434:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"3424:6:101","nodeType":"YulIdentifier","src":"3424:6:101"},"nativeSrc":"3424:15:101","nodeType":"YulFunctionCall","src":"3424:15:101"},"nativeSrc":"3424:15:101","nodeType":"YulExpressionStatement","src":"3424:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3459:1:101","nodeType":"YulLiteral","src":"3459:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3462:4:101","nodeType":"YulLiteral","src":"3462:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"3452:6:101","nodeType":"YulIdentifier","src":"3452:6:101"},"nativeSrc":"3452:15:101","nodeType":"YulFunctionCall","src":"3452:15:101"},"nativeSrc":"3452:15:101","nodeType":"YulExpressionStatement","src":"3452:15:101"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"3350:1:101","nodeType":"YulIdentifier","src":"3350:1:101"},{"name":"sum","nativeSrc":"3353:3:101","nodeType":"YulIdentifier","src":"3353:3:101"}],"functionName":{"name":"gt","nativeSrc":"3347:2:101","nodeType":"YulIdentifier","src":"3347:2:101"},"nativeSrc":"3347:10:101","nodeType":"YulFunctionCall","src":"3347:10:101"},"nativeSrc":"3344:133:101","nodeType":"YulIf","src":"3344:133:101"}]},"name":"checked_add_t_uint256","nativeSrc":"3261:222:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"3292:1:101","nodeType":"YulTypedName","src":"3292:1:101","type":""},{"name":"y","nativeSrc":"3295:1:101","nodeType":"YulTypedName","src":"3295:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"3301:3:101","nodeType":"YulTypedName","src":"3301:3:101","type":""}],"src":"3261:222:101"}]},"contents":"{\n    { }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        mcopy(add(headStart, 64), add(value0, 32), length)\n        mstore(add(add(headStart, length), 64), 0)\n        tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n    }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let value := 0\n        value := calldataload(add(headStart, 32))\n        value1 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"527":[{"length":32,"start":279}]},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b50600436106100a6575f3560e01c806340c10f191161006e57806340c10f191461014157806370a082311461015657806395d89b411461017e5780639dc29fac14610186578063a9059cbb14610199578063dd62ed3e146101ac575f5ffd5b806306fdde03146100aa578063095ea7b3146100c857806318160ddd146100eb57806323b872dd146100fd578063313ce56714610110575b5f5ffd5b6100b26101e4565b6040516100bf9190610634565b60405180910390f35b6100db6100d6366004610684565b610274565b60405190151581526020016100bf565b6002545b6040519081526020016100bf565b6100db61010b3660046106ac565b61028d565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016100bf565b61015461014f366004610684565b6102b0565b005b6100ef6101643660046106e6565b6001600160a01b03165f9081526020819052604090205490565b6100b26102be565b610154610194366004610684565b6102cd565b6100db6101a7366004610684565b6102d7565b6100ef6101ba366004610706565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101f390610737565b80601f016020809104026020016040519081016040528092919081815260200182805461021f90610737565b801561026a5780601f106102415761010080835404028352916020019161026a565b820191905f5260205f20905b81548152906001019060200180831161024d57829003601f168201915b5050505050905090565b5f336102818185856102e4565b60019150505b92915050565b5f3361029a8582856102f6565b6102a5858585610377565b506001949350505050565b6102ba82826103d4565b5050565b6060600480546101f390610737565b6102ba8282610408565b5f33610281818585610377565b6102f1838383600161043c565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610371578181101561036357604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61037184848484035f61043c565b50505050565b6001600160a01b0383166103a057604051634b637e8f60e11b81525f600482015260240161035a565b6001600160a01b0382166103c95760405163ec442f0560e01b81525f600482015260240161035a565b6102f183838361050e565b6001600160a01b0382166103fd5760405163ec442f0560e01b81525f600482015260240161035a565b6102ba5f838361050e565b6001600160a01b03821661043157604051634b637e8f60e11b81525f600482015260240161035a565b6102ba825f8361050e565b6001600160a01b0384166104655760405163e602df0560e01b81525f600482015260240161035a565b6001600160a01b03831661048e57604051634a1406b160e11b81525f600482015260240161035a565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561037157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161050091815260200190565b60405180910390a350505050565b6001600160a01b038316610538578060025f82825461052d919061076f565b909155506105a89050565b6001600160a01b0383165f908152602081905260409020548181101561058a5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161035a565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166105c4576002805482900390556105e2565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161062791815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b038116811461067f575f5ffd5b919050565b5f5f60408385031215610695575f5ffd5b61069e83610669565b946020939093013593505050565b5f5f5f606084860312156106be575f5ffd5b6106c784610669565b92506106d560208501610669565b929592945050506040919091013590565b5f602082840312156106f6575f5ffd5b6106ff82610669565b9392505050565b5f5f60408385031215610717575f5ffd5b61072083610669565b915061072e60208401610669565b90509250929050565b600181811c9082168061074b57607f821691505b60208210810361076957634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561028757634e487b7160e01b5f52601160045260245ffdfea26469706673582212202ae8dd9ab4ee7abaa60bb9c3c6bccc689154f1f33065a301d737974cef5c28f864736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA6 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x6E JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x141 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x156 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x17E JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x186 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x199 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x1AC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAA JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xC8 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xEB JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0xFD JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x110 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xB2 PUSH2 0x1E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBF SWAP2 SWAP1 PUSH2 0x634 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDB PUSH2 0xD6 CALLDATASIZE PUSH1 0x4 PUSH2 0x684 JUMP JUMPDEST PUSH2 0x274 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH2 0xDB PUSH2 0x10B CALLDATASIZE PUSH1 0x4 PUSH2 0x6AC JUMP JUMPDEST PUSH2 0x28D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH2 0x154 PUSH2 0x14F CALLDATASIZE PUSH1 0x4 PUSH2 0x684 JUMP JUMPDEST PUSH2 0x2B0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xEF PUSH2 0x164 CALLDATASIZE PUSH1 0x4 PUSH2 0x6E6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xB2 PUSH2 0x2BE JUMP JUMPDEST PUSH2 0x154 PUSH2 0x194 CALLDATASIZE PUSH1 0x4 PUSH2 0x684 JUMP JUMPDEST PUSH2 0x2CD JUMP JUMPDEST PUSH2 0xDB PUSH2 0x1A7 CALLDATASIZE PUSH1 0x4 PUSH2 0x684 JUMP JUMPDEST PUSH2 0x2D7 JUMP JUMPDEST PUSH2 0xEF PUSH2 0x1BA CALLDATASIZE PUSH1 0x4 PUSH2 0x706 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1F3 SWAP1 PUSH2 0x737 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x21F SWAP1 PUSH2 0x737 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x26A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x241 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x26A JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x24D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x281 DUP2 DUP6 DUP6 PUSH2 0x2E4 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x29A DUP6 DUP3 DUP6 PUSH2 0x2F6 JUMP JUMPDEST PUSH2 0x2A5 DUP6 DUP6 DUP6 PUSH2 0x377 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x2BA DUP3 DUP3 PUSH2 0x3D4 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1F3 SWAP1 PUSH2 0x737 JUMP JUMPDEST PUSH2 0x2BA DUP3 DUP3 PUSH2 0x408 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x281 DUP2 DUP6 DUP6 PUSH2 0x377 JUMP JUMPDEST PUSH2 0x2F1 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x43C JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH0 NOT DUP2 LT ISZERO PUSH2 0x371 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x363 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x371 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x43C JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3A0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3C9 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH2 0x2F1 DUP4 DUP4 DUP4 PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3FD JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH2 0x2BA PUSH0 DUP4 DUP4 PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x431 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH2 0x2BA DUP3 PUSH0 DUP4 PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x465 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x48E JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0x371 JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x500 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x538 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x52D SWAP2 SWAP1 PUSH2 0x76F JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x5A8 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x58A JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x35A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5C4 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x5E2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x627 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x67F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x695 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x69E DUP4 PUSH2 0x669 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x6BE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x6C7 DUP5 PUSH2 0x669 JUMP JUMPDEST SWAP3 POP PUSH2 0x6D5 PUSH1 0x20 DUP6 ADD PUSH2 0x669 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x6FF DUP3 PUSH2 0x669 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x717 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x720 DUP4 PUSH2 0x669 JUMP JUMPDEST SWAP2 POP PUSH2 0x72E PUSH1 0x20 DUP5 ADD PUSH2 0x669 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x74B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x769 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x287 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2A 0xE8 0xDD SWAP11 0xB4 RETURNCONTRACT 0x7A 0xBA 0xA6 SIGNEXTEND 0xB9 0xC3 0xC6 0xBC 0xCC PUSH9 0x9154F1F33065A301D7 CALLDATACOPY SWAP8 0x4C 0xEF TLOAD 0x28 EXTCALL PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"133:600:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3902:186;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:101;;1078:22;1060:41;;1048:2;1033:18;3902:186:34;920:187:101;2803:97:34;2881:12;;2803:97;;;1258:25:101;;;1246:2;1231:18;2803:97:34;1112:177:101;4680:244:34;;;;;;:::i;:::-;;:::i;419:92:4:-;;;1845:4:101;497:9:4;1833:17:101;1815:36;;1803:2;1788:18;419:92:4;1673:184:101;515:106:4;;;;;;:::i;:::-;;:::i;:::-;;2933:116:34;;;;;;:::i;:::-;-1:-1:-1;;;;;3024:18:34;2998:7;3024:18;;;;;;;;;;;;2933:116;1962:93;;;:::i;625:106:4:-;;;;;;:::i;:::-;;:::i;3244:178:34:-;;;;;;:::i;:::-;;:::i;3455:140::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3561:18:34;;;3535:7;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3455:140;1760:89;1805:13;1837:5;1830:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89;:::o;3902:186::-;3975:4;735:10:47;4029:31:34;735:10:47;4045:7:34;4054:5;4029:8;:31::i;:::-;4077:4;4070:11;;;3902:186;;;;;:::o;4680:244::-;4767:4;735:10:47;4823:37:34;4839:4;735:10:47;4854:5:34;4823:15;:37::i;:::-;4870:26;4880:4;4886:2;4890:5;4870:9;:26::i;:::-;-1:-1:-1;4913:4:34;;4680:244;-1:-1:-1;;;;4680:244:34:o;515:106:4:-;592:24;598:9;609:6;592:5;:24::i;:::-;515:106;;:::o;1962:93:34:-;2009:13;2041:7;2034:14;;;;;:::i;625:106:4:-;702:24;708:9;719:6;702:5;:24::i;3244:178:34:-;3313:4;735:10:47;3367:27:34;735:10:47;3384:2:34;3388:5;3367:9;:27::i;8630:128::-;8714:37;8723:5;8730:7;8739:5;8746:4;8714:8;:37::i;:::-;8630:128;;;:::o;10321:476::-;-1:-1:-1;;;;;3561:18:34;;;10420:24;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10486:36:34;;10482:309;;;10561:5;10542:16;:24;10538:130;;;10593:60;;-1:-1:-1;;;10593:60:34;;-1:-1:-1;;;;;2923:32:101;;10593:60:34;;;2905:51:101;2972:18;;;2965:34;;;3015:18;;;3008:34;;;2878:18;;10593:60:34;;;;;;;;10538:130;10709:57;10718:5;10725:7;10753:5;10734:16;:24;10760:5;10709:8;:57::i;:::-;10410:387;10321:476;;;:::o;5297:300::-;-1:-1:-1;;;;;5380:18:34;;5376:86;;5421:30;;-1:-1:-1;;;5421:30:34;;5448:1;5421:30;;;3199:51:101;3172:18;;5421:30:34;3053:203:101;5376:86:34;-1:-1:-1;;;;;5475:16:34;;5471:86;;5514:32;;-1:-1:-1;;;5514:32:34;;5543:1;5514:32;;;3199:51:101;3172:18;;5514:32:34;3053:203:101;5471:86:34;5566:24;5574:4;5580:2;5584:5;5566:7;:24::i;7362:208::-;-1:-1:-1;;;;;7432:21:34;;7428:91;;7476:32;;-1:-1:-1;;;7476:32:34;;7505:1;7476:32;;;3199:51:101;3172:18;;7476:32:34;3053:203:101;7428:91:34;7528:35;7544:1;7548:7;7557:5;7528:7;:35::i;7888:206::-;-1:-1:-1;;;;;7958:21:34;;7954:89;;8002:30;;-1:-1:-1;;;8002:30:34;;8029:1;8002:30;;;3199:51:101;3172:18;;8002:30:34;3053:203:101;7954:89:34;8052:35;8060:7;8077:1;8081:5;8052:7;:35::i;9607:432::-;-1:-1:-1;;;;;9719:19:34;;9715:89;;9761:32;;-1:-1:-1;;;9761:32:34;;9790:1;9761:32;;;3199:51:101;3172:18;;9761:32:34;3053:203:101;9715:89:34;-1:-1:-1;;;;;9817:21:34;;9813:90;;9861:31;;-1:-1:-1;;;9861:31:34;;9889:1;9861:31;;;3199:51:101;3172:18;;9861:31:34;3053:203:101;9813:90:34;-1:-1:-1;;;;;9912:18:34;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;9957:76;;;;10007:7;-1:-1:-1;;;;;9991:31:34;10000:5;-1:-1:-1;;;;;9991:31:34;;10016:5;9991:31;;;;1258:25:101;;1246:2;1231:18;;1112:177;9991:31:34;;;;;;;;9607:432;;;;:::o;5912:1107::-;-1:-1:-1;;;;;6001:18:34;;5997:540;;6153:5;6137:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;5997:540:34;;-1:-1:-1;5997:540:34;;-1:-1:-1;;;;;6211:15:34;;6189:19;6211:15;;;;;;;;;;;6244:19;;;6240:115;;;6290:50;;-1:-1:-1;;;6290:50:34;;-1:-1:-1;;;;;2923:32:101;;6290:50:34;;;2905:51:101;2972:18;;;2965:34;;;3015:18;;;3008:34;;;2878:18;;6290:50:34;2703:345:101;6240:115:34;-1:-1:-1;;;;;6475:15:34;;:9;:15;;;;;;;;;;6493:19;;;;6475:37;;5997:540;-1:-1:-1;;;;;6551:16:34;;6547:425;;6714:12;:21;;;;;;;6547:425;;;-1:-1:-1;;;;;6925:13:34;;:9;:13;;;;;;;;;;:22;;;;;;6547:425;7002:2;-1:-1:-1;;;;;6987:25:34;6996:4;-1:-1:-1;;;;;6987:25:34;;7006:5;6987:25;;;;1258::101;;1246:2;1231:18;;1112:177;6987:25:34;;;;;;;;5912:1107;;;:::o;14:418:101:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:101;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:101:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:101;1619:18;;;;1606:32;;1294:374::o;1862:186::-;1921:6;1974:2;1962:9;1953:7;1949:23;1945:32;1942:52;;;1990:1;1987;1980:12;1942:52;2013:29;2032:9;2013:29;:::i;:::-;2003:39;1862:186;-1:-1:-1;;;1862:186:101:o;2053:260::-;2121:6;2129;2182:2;2170:9;2161:7;2157:23;2153:32;2150:52;;;2198:1;2195;2188:12;2150:52;2221:29;2240:9;2221:29;:::i;:::-;2211:39;;2269:38;2303:2;2292:9;2288:18;2269:38;:::i;:::-;2259:48;;2053:260;;;;;:::o;2318:380::-;2397:1;2393:12;;;;2440;;;2461:61;;2515:4;2507:6;2503:17;2493:27;;2461:61;2568:2;2560:6;2557:14;2537:18;2534:38;2531:161;;2614:10;2609:3;2605:20;2602:1;2595:31;2649:4;2646:1;2639:15;2677:4;2674:1;2667:15;2531:161;;2318:380;;;:::o;3261:222::-;3326:9;;;3347:10;;;3344:133;;;3399:10;3394:3;3390:20;3387:1;3380:31;3434:4;3431:1;3424:15;3462:4;3459:1;3452:15"},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","burn(address,uint256)":"9dc29fac","decimals()":"313ce567","mint(address,uint256)":"40c10f19","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"initialSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"decimals_\",\"type\":\"uint8\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"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\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\":{\"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\":\"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\":\"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\":\"Returns the value of tokens owned by `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}.\"},\"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\":\"Returns the value of tokens in existence.\"},\"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\":{\"@ensuro/utils/contracts/TestCurrency.sol\":\"TestCurrency\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/utils/contracts/TestCurrency.sol\":{\"keccak256\":\"0x83da2209baf46f2ea6907aa5ebacfa2c3b0064cd52eb5a180363805cf34cacb9\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://009d1abdd87bbe885a242d23c7e66368712e754cdc0b4bfe55f1c901b6fd0248\",\"dweb:/ipfs/QmeeqBi1FFT6W9XNFg8mTFdBT3DH8PiZ2SSixsdkQMfzFP\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x669464167428061ee0f8618b73b3ee90aff8405683e7ddde8cd77dadaa1afe29\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0dda78587a7358b4fdf6b9fca0fde5a5e34930f36d5268a16028627fc0170195\",\"dweb:/ipfs/QmQ1b6cCceDRWNxti9HifsTCzmVP25Haxs1bWugm52vTqH\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":7407,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":7413,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":7415,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":7417,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":7419,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@ensuro/utils/contracts/TestCurrencyPermit.sol":{"TestCurrencyPermit":{"abi":[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"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":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","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":"string","name":"str","type":"string"}],"name":"StringTooLong","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":[],"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":"DOMAIN_SEPARATOR","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","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":{"@_13794":{"entryPoint":null,"id":13794,"parameterSlots":2,"returnSlots":0},"@_628":{"entryPoint":null,"id":628,"parameterSlots":4,"returnSlots":0},"@_7436":{"entryPoint":null,"id":7436,"parameterSlots":2,"returnSlots":0},"@_8026":{"entryPoint":null,"id":8026,"parameterSlots":1,"returnSlots":0},"@_buildDomainSeparator_13841":{"entryPoint":null,"id":13841,"parameterSlots":0,"returnSlots":1},"@_mint_7739":{"entryPoint":360,"id":7739,"parameterSlots":2,"returnSlots":0},"@_update_7706":{"entryPoint":482,"id":7706,"parameterSlots":3,"returnSlots":0},"@getStringSlot_11735":{"entryPoint":null,"id":11735,"parameterSlots":1,"returnSlots":1},"@toShortStringWithFallback_11575":{"entryPoint":310,"id":11575,"parameterSlots":2,"returnSlots":1},"@toShortString_11477":{"entryPoint":421,"id":11477,"parameterSlots":1,"returnSlots":1},"abi_decode_string_fromMemory":{"entryPoint":796,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint8_fromMemory":{"entryPoint":933,"id":null,"parameterSlots":2,"returnSlots":4},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":1384,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":1472,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":1122,"id":null,"parameterSlots":3,"returnSlots":0},"convert_bytes_to_fixedbytes_from_t_bytes_memory_ptr_to_t_bytes32":{"entryPoint":1437,"id":null,"parameterSlots":1,"returnSlots":1},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":1198,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":1066,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x41":{"entryPoint":776,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:6340:101","nodeType":"YulBlock","src":"0:6340:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"46:95:101","nodeType":"YulBlock","src":"46:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"63:1:101","nodeType":"YulLiteral","src":"63:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"70:3:101","nodeType":"YulLiteral","src":"70:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"75:10:101","nodeType":"YulLiteral","src":"75:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"66:3:101","nodeType":"YulIdentifier","src":"66:3:101"},"nativeSrc":"66:20:101","nodeType":"YulFunctionCall","src":"66:20:101"}],"functionName":{"name":"mstore","nativeSrc":"56:6:101","nodeType":"YulIdentifier","src":"56:6:101"},"nativeSrc":"56:31:101","nodeType":"YulFunctionCall","src":"56:31:101"},"nativeSrc":"56:31:101","nodeType":"YulExpressionStatement","src":"56:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"103:1:101","nodeType":"YulLiteral","src":"103:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"106:4:101","nodeType":"YulLiteral","src":"106:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"96:6:101","nodeType":"YulIdentifier","src":"96:6:101"},"nativeSrc":"96:15:101","nodeType":"YulFunctionCall","src":"96:15:101"},"nativeSrc":"96:15:101","nodeType":"YulExpressionStatement","src":"96:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"127:1:101","nodeType":"YulLiteral","src":"127:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"130:4:101","nodeType":"YulLiteral","src":"130:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"120:6:101","nodeType":"YulIdentifier","src":"120:6:101"},"nativeSrc":"120:15:101","nodeType":"YulFunctionCall","src":"120:15:101"},"nativeSrc":"120:15:101","nodeType":"YulExpressionStatement","src":"120:15:101"}]},"name":"panic_error_0x41","nativeSrc":"14:127:101","nodeType":"YulFunctionDefinition","src":"14:127:101"},{"body":{"nativeSrc":"210:659:101","nodeType":"YulBlock","src":"210:659:101","statements":[{"body":{"nativeSrc":"259:16:101","nodeType":"YulBlock","src":"259:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"268:1:101","nodeType":"YulLiteral","src":"268:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"271:1:101","nodeType":"YulLiteral","src":"271:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"261:6:101","nodeType":"YulIdentifier","src":"261:6:101"},"nativeSrc":"261:12:101","nodeType":"YulFunctionCall","src":"261:12:101"},"nativeSrc":"261:12:101","nodeType":"YulExpressionStatement","src":"261:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"238:6:101","nodeType":"YulIdentifier","src":"238:6:101"},{"kind":"number","nativeSrc":"246:4:101","nodeType":"YulLiteral","src":"246:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"234:3:101","nodeType":"YulIdentifier","src":"234:3:101"},"nativeSrc":"234:17:101","nodeType":"YulFunctionCall","src":"234:17:101"},{"name":"end","nativeSrc":"253:3:101","nodeType":"YulIdentifier","src":"253:3:101"}],"functionName":{"name":"slt","nativeSrc":"230:3:101","nodeType":"YulIdentifier","src":"230:3:101"},"nativeSrc":"230:27:101","nodeType":"YulFunctionCall","src":"230:27:101"}],"functionName":{"name":"iszero","nativeSrc":"223:6:101","nodeType":"YulIdentifier","src":"223:6:101"},"nativeSrc":"223:35:101","nodeType":"YulFunctionCall","src":"223:35:101"},"nativeSrc":"220:55:101","nodeType":"YulIf","src":"220:55:101"},{"nativeSrc":"284:27:101","nodeType":"YulVariableDeclaration","src":"284:27:101","value":{"arguments":[{"name":"offset","nativeSrc":"304:6:101","nodeType":"YulIdentifier","src":"304:6:101"}],"functionName":{"name":"mload","nativeSrc":"298:5:101","nodeType":"YulIdentifier","src":"298:5:101"},"nativeSrc":"298:13:101","nodeType":"YulFunctionCall","src":"298:13:101"},"variables":[{"name":"length","nativeSrc":"288:6:101","nodeType":"YulTypedName","src":"288:6:101","type":""}]},{"body":{"nativeSrc":"354:22:101","nodeType":"YulBlock","src":"354:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"356:16:101","nodeType":"YulIdentifier","src":"356:16:101"},"nativeSrc":"356:18:101","nodeType":"YulFunctionCall","src":"356:18:101"},"nativeSrc":"356:18:101","nodeType":"YulExpressionStatement","src":"356:18:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"326:6:101","nodeType":"YulIdentifier","src":"326:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"342:2:101","nodeType":"YulLiteral","src":"342:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"346:1:101","nodeType":"YulLiteral","src":"346:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"338:3:101","nodeType":"YulIdentifier","src":"338:3:101"},"nativeSrc":"338:10:101","nodeType":"YulFunctionCall","src":"338:10:101"},{"kind":"number","nativeSrc":"350:1:101","nodeType":"YulLiteral","src":"350:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"334:3:101","nodeType":"YulIdentifier","src":"334:3:101"},"nativeSrc":"334:18:101","nodeType":"YulFunctionCall","src":"334:18:101"}],"functionName":{"name":"gt","nativeSrc":"323:2:101","nodeType":"YulIdentifier","src":"323:2:101"},"nativeSrc":"323:30:101","nodeType":"YulFunctionCall","src":"323:30:101"},"nativeSrc":"320:56:101","nodeType":"YulIf","src":"320:56:101"},{"nativeSrc":"385:23:101","nodeType":"YulVariableDeclaration","src":"385:23:101","value":{"arguments":[{"kind":"number","nativeSrc":"405:2:101","nodeType":"YulLiteral","src":"405:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"399:5:101","nodeType":"YulIdentifier","src":"399:5:101"},"nativeSrc":"399:9:101","nodeType":"YulFunctionCall","src":"399:9:101"},"variables":[{"name":"memPtr","nativeSrc":"389:6:101","nodeType":"YulTypedName","src":"389:6:101","type":""}]},{"nativeSrc":"417:85:101","nodeType":"YulVariableDeclaration","src":"417:85:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"439:6:101","nodeType":"YulIdentifier","src":"439:6:101"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"463:6:101","nodeType":"YulIdentifier","src":"463:6:101"},{"kind":"number","nativeSrc":"471:4:101","nodeType":"YulLiteral","src":"471:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"459:3:101","nodeType":"YulIdentifier","src":"459:3:101"},"nativeSrc":"459:17:101","nodeType":"YulFunctionCall","src":"459:17:101"},{"arguments":[{"kind":"number","nativeSrc":"482:2:101","nodeType":"YulLiteral","src":"482:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"478:3:101","nodeType":"YulIdentifier","src":"478:3:101"},"nativeSrc":"478:7:101","nodeType":"YulFunctionCall","src":"478:7:101"}],"functionName":{"name":"and","nativeSrc":"455:3:101","nodeType":"YulIdentifier","src":"455:3:101"},"nativeSrc":"455:31:101","nodeType":"YulFunctionCall","src":"455:31:101"},{"kind":"number","nativeSrc":"488:2:101","nodeType":"YulLiteral","src":"488:2:101","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"451:3:101","nodeType":"YulIdentifier","src":"451:3:101"},"nativeSrc":"451:40:101","nodeType":"YulFunctionCall","src":"451:40:101"},{"arguments":[{"kind":"number","nativeSrc":"497:2:101","nodeType":"YulLiteral","src":"497:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"493:3:101","nodeType":"YulIdentifier","src":"493:3:101"},"nativeSrc":"493:7:101","nodeType":"YulFunctionCall","src":"493:7:101"}],"functionName":{"name":"and","nativeSrc":"447:3:101","nodeType":"YulIdentifier","src":"447:3:101"},"nativeSrc":"447:54:101","nodeType":"YulFunctionCall","src":"447:54:101"}],"functionName":{"name":"add","nativeSrc":"435:3:101","nodeType":"YulIdentifier","src":"435:3:101"},"nativeSrc":"435:67:101","nodeType":"YulFunctionCall","src":"435:67:101"},"variables":[{"name":"newFreePtr","nativeSrc":"421:10:101","nodeType":"YulTypedName","src":"421:10:101","type":""}]},{"body":{"nativeSrc":"577:22:101","nodeType":"YulBlock","src":"577:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"579:16:101","nodeType":"YulIdentifier","src":"579:16:101"},"nativeSrc":"579:18:101","nodeType":"YulFunctionCall","src":"579:18:101"},"nativeSrc":"579:18:101","nodeType":"YulExpressionStatement","src":"579:18:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"520:10:101","nodeType":"YulIdentifier","src":"520:10:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"540:2:101","nodeType":"YulLiteral","src":"540:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"544:1:101","nodeType":"YulLiteral","src":"544:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"536:3:101","nodeType":"YulIdentifier","src":"536:3:101"},"nativeSrc":"536:10:101","nodeType":"YulFunctionCall","src":"536:10:101"},{"kind":"number","nativeSrc":"548:1:101","nodeType":"YulLiteral","src":"548:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"532:3:101","nodeType":"YulIdentifier","src":"532:3:101"},"nativeSrc":"532:18:101","nodeType":"YulFunctionCall","src":"532:18:101"}],"functionName":{"name":"gt","nativeSrc":"517:2:101","nodeType":"YulIdentifier","src":"517:2:101"},"nativeSrc":"517:34:101","nodeType":"YulFunctionCall","src":"517:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"556:10:101","nodeType":"YulIdentifier","src":"556:10:101"},{"name":"memPtr","nativeSrc":"568:6:101","nodeType":"YulIdentifier","src":"568:6:101"}],"functionName":{"name":"lt","nativeSrc":"553:2:101","nodeType":"YulIdentifier","src":"553:2:101"},"nativeSrc":"553:22:101","nodeType":"YulFunctionCall","src":"553:22:101"}],"functionName":{"name":"or","nativeSrc":"514:2:101","nodeType":"YulIdentifier","src":"514:2:101"},"nativeSrc":"514:62:101","nodeType":"YulFunctionCall","src":"514:62:101"},"nativeSrc":"511:88:101","nodeType":"YulIf","src":"511:88:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"615:2:101","nodeType":"YulLiteral","src":"615:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"619:10:101","nodeType":"YulIdentifier","src":"619:10:101"}],"functionName":{"name":"mstore","nativeSrc":"608:6:101","nodeType":"YulIdentifier","src":"608:6:101"},"nativeSrc":"608:22:101","nodeType":"YulFunctionCall","src":"608:22:101"},"nativeSrc":"608:22:101","nodeType":"YulExpressionStatement","src":"608:22:101"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"646:6:101","nodeType":"YulIdentifier","src":"646:6:101"},{"name":"length","nativeSrc":"654:6:101","nodeType":"YulIdentifier","src":"654:6:101"}],"functionName":{"name":"mstore","nativeSrc":"639:6:101","nodeType":"YulIdentifier","src":"639:6:101"},"nativeSrc":"639:22:101","nodeType":"YulFunctionCall","src":"639:22:101"},"nativeSrc":"639:22:101","nodeType":"YulExpressionStatement","src":"639:22:101"},{"body":{"nativeSrc":"713:16:101","nodeType":"YulBlock","src":"713:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"722:1:101","nodeType":"YulLiteral","src":"722:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"725:1:101","nodeType":"YulLiteral","src":"725:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"715:6:101","nodeType":"YulIdentifier","src":"715:6:101"},"nativeSrc":"715:12:101","nodeType":"YulFunctionCall","src":"715:12:101"},"nativeSrc":"715:12:101","nodeType":"YulExpressionStatement","src":"715:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"684:6:101","nodeType":"YulIdentifier","src":"684:6:101"},{"name":"length","nativeSrc":"692:6:101","nodeType":"YulIdentifier","src":"692:6:101"}],"functionName":{"name":"add","nativeSrc":"680:3:101","nodeType":"YulIdentifier","src":"680:3:101"},"nativeSrc":"680:19:101","nodeType":"YulFunctionCall","src":"680:19:101"},{"kind":"number","nativeSrc":"701:4:101","nodeType":"YulLiteral","src":"701:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"676:3:101","nodeType":"YulIdentifier","src":"676:3:101"},"nativeSrc":"676:30:101","nodeType":"YulFunctionCall","src":"676:30:101"},{"name":"end","nativeSrc":"708:3:101","nodeType":"YulIdentifier","src":"708:3:101"}],"functionName":{"name":"gt","nativeSrc":"673:2:101","nodeType":"YulIdentifier","src":"673:2:101"},"nativeSrc":"673:39:101","nodeType":"YulFunctionCall","src":"673:39:101"},"nativeSrc":"670:59:101","nodeType":"YulIf","src":"670:59:101"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"748:6:101","nodeType":"YulIdentifier","src":"748:6:101"},{"kind":"number","nativeSrc":"756:4:101","nodeType":"YulLiteral","src":"756:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"744:3:101","nodeType":"YulIdentifier","src":"744:3:101"},"nativeSrc":"744:17:101","nodeType":"YulFunctionCall","src":"744:17:101"},{"arguments":[{"name":"offset","nativeSrc":"767:6:101","nodeType":"YulIdentifier","src":"767:6:101"},{"kind":"number","nativeSrc":"775:4:101","nodeType":"YulLiteral","src":"775:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"763:3:101","nodeType":"YulIdentifier","src":"763:3:101"},"nativeSrc":"763:17:101","nodeType":"YulFunctionCall","src":"763:17:101"},{"name":"length","nativeSrc":"782:6:101","nodeType":"YulIdentifier","src":"782:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"738:5:101","nodeType":"YulIdentifier","src":"738:5:101"},"nativeSrc":"738:51:101","nodeType":"YulFunctionCall","src":"738:51:101"},"nativeSrc":"738:51:101","nodeType":"YulExpressionStatement","src":"738:51:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"813:6:101","nodeType":"YulIdentifier","src":"813:6:101"},{"name":"length","nativeSrc":"821:6:101","nodeType":"YulIdentifier","src":"821:6:101"}],"functionName":{"name":"add","nativeSrc":"809:3:101","nodeType":"YulIdentifier","src":"809:3:101"},"nativeSrc":"809:19:101","nodeType":"YulFunctionCall","src":"809:19:101"},{"kind":"number","nativeSrc":"830:4:101","nodeType":"YulLiteral","src":"830:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"805:3:101","nodeType":"YulIdentifier","src":"805:3:101"},"nativeSrc":"805:30:101","nodeType":"YulFunctionCall","src":"805:30:101"},{"kind":"number","nativeSrc":"837:1:101","nodeType":"YulLiteral","src":"837:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"798:6:101","nodeType":"YulIdentifier","src":"798:6:101"},"nativeSrc":"798:41:101","nodeType":"YulFunctionCall","src":"798:41:101"},"nativeSrc":"798:41:101","nodeType":"YulExpressionStatement","src":"798:41:101"},{"nativeSrc":"848:15:101","nodeType":"YulAssignment","src":"848:15:101","value":{"name":"memPtr","nativeSrc":"857:6:101","nodeType":"YulIdentifier","src":"857:6:101"},"variableNames":[{"name":"array","nativeSrc":"848:5:101","nodeType":"YulIdentifier","src":"848:5:101"}]}]},"name":"abi_decode_string_fromMemory","nativeSrc":"146:723:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"184:6:101","nodeType":"YulTypedName","src":"184:6:101","type":""},{"name":"end","nativeSrc":"192:3:101","nodeType":"YulTypedName","src":"192:3:101","type":""}],"returnVariables":[{"name":"array","nativeSrc":"200:5:101","nodeType":"YulTypedName","src":"200:5:101","type":""}],"src":"146:723:101"},{"body":{"nativeSrc":"1024:619:101","nodeType":"YulBlock","src":"1024:619:101","statements":[{"body":{"nativeSrc":"1071:16:101","nodeType":"YulBlock","src":"1071:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1080:1:101","nodeType":"YulLiteral","src":"1080:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1083:1:101","nodeType":"YulLiteral","src":"1083:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1073:6:101","nodeType":"YulIdentifier","src":"1073:6:101"},"nativeSrc":"1073:12:101","nodeType":"YulFunctionCall","src":"1073:12:101"},"nativeSrc":"1073:12:101","nodeType":"YulExpressionStatement","src":"1073:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1045:7:101","nodeType":"YulIdentifier","src":"1045:7:101"},{"name":"headStart","nativeSrc":"1054:9:101","nodeType":"YulIdentifier","src":"1054:9:101"}],"functionName":{"name":"sub","nativeSrc":"1041:3:101","nodeType":"YulIdentifier","src":"1041:3:101"},"nativeSrc":"1041:23:101","nodeType":"YulFunctionCall","src":"1041:23:101"},{"kind":"number","nativeSrc":"1066:3:101","nodeType":"YulLiteral","src":"1066:3:101","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"1037:3:101","nodeType":"YulIdentifier","src":"1037:3:101"},"nativeSrc":"1037:33:101","nodeType":"YulFunctionCall","src":"1037:33:101"},"nativeSrc":"1034:53:101","nodeType":"YulIf","src":"1034:53:101"},{"nativeSrc":"1096:30:101","nodeType":"YulVariableDeclaration","src":"1096:30:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1116:9:101","nodeType":"YulIdentifier","src":"1116:9:101"}],"functionName":{"name":"mload","nativeSrc":"1110:5:101","nodeType":"YulIdentifier","src":"1110:5:101"},"nativeSrc":"1110:16:101","nodeType":"YulFunctionCall","src":"1110:16:101"},"variables":[{"name":"offset","nativeSrc":"1100:6:101","nodeType":"YulTypedName","src":"1100:6:101","type":""}]},{"body":{"nativeSrc":"1169:16:101","nodeType":"YulBlock","src":"1169:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1178:1:101","nodeType":"YulLiteral","src":"1178:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1181:1:101","nodeType":"YulLiteral","src":"1181:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1171:6:101","nodeType":"YulIdentifier","src":"1171:6:101"},"nativeSrc":"1171:12:101","nodeType":"YulFunctionCall","src":"1171:12:101"},"nativeSrc":"1171:12:101","nodeType":"YulExpressionStatement","src":"1171:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1141:6:101","nodeType":"YulIdentifier","src":"1141:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1157:2:101","nodeType":"YulLiteral","src":"1157:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"1161:1:101","nodeType":"YulLiteral","src":"1161:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1153:3:101","nodeType":"YulIdentifier","src":"1153:3:101"},"nativeSrc":"1153:10:101","nodeType":"YulFunctionCall","src":"1153:10:101"},{"kind":"number","nativeSrc":"1165:1:101","nodeType":"YulLiteral","src":"1165:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1149:3:101","nodeType":"YulIdentifier","src":"1149:3:101"},"nativeSrc":"1149:18:101","nodeType":"YulFunctionCall","src":"1149:18:101"}],"functionName":{"name":"gt","nativeSrc":"1138:2:101","nodeType":"YulIdentifier","src":"1138:2:101"},"nativeSrc":"1138:30:101","nodeType":"YulFunctionCall","src":"1138:30:101"},"nativeSrc":"1135:50:101","nodeType":"YulIf","src":"1135:50:101"},{"nativeSrc":"1194:71:101","nodeType":"YulAssignment","src":"1194:71:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1237:9:101","nodeType":"YulIdentifier","src":"1237:9:101"},{"name":"offset","nativeSrc":"1248:6:101","nodeType":"YulIdentifier","src":"1248:6:101"}],"functionName":{"name":"add","nativeSrc":"1233:3:101","nodeType":"YulIdentifier","src":"1233:3:101"},"nativeSrc":"1233:22:101","nodeType":"YulFunctionCall","src":"1233:22:101"},{"name":"dataEnd","nativeSrc":"1257:7:101","nodeType":"YulIdentifier","src":"1257:7:101"}],"functionName":{"name":"abi_decode_string_fromMemory","nativeSrc":"1204:28:101","nodeType":"YulIdentifier","src":"1204:28:101"},"nativeSrc":"1204:61:101","nodeType":"YulFunctionCall","src":"1204:61:101"},"variableNames":[{"name":"value0","nativeSrc":"1194:6:101","nodeType":"YulIdentifier","src":"1194:6:101"}]},{"nativeSrc":"1274:41:101","nodeType":"YulVariableDeclaration","src":"1274:41:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1300:9:101","nodeType":"YulIdentifier","src":"1300:9:101"},{"kind":"number","nativeSrc":"1311:2:101","nodeType":"YulLiteral","src":"1311:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1296:3:101","nodeType":"YulIdentifier","src":"1296:3:101"},"nativeSrc":"1296:18:101","nodeType":"YulFunctionCall","src":"1296:18:101"}],"functionName":{"name":"mload","nativeSrc":"1290:5:101","nodeType":"YulIdentifier","src":"1290:5:101"},"nativeSrc":"1290:25:101","nodeType":"YulFunctionCall","src":"1290:25:101"},"variables":[{"name":"offset_1","nativeSrc":"1278:8:101","nodeType":"YulTypedName","src":"1278:8:101","type":""}]},{"body":{"nativeSrc":"1360:16:101","nodeType":"YulBlock","src":"1360:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1369:1:101","nodeType":"YulLiteral","src":"1369:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1372:1:101","nodeType":"YulLiteral","src":"1372:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1362:6:101","nodeType":"YulIdentifier","src":"1362:6:101"},"nativeSrc":"1362:12:101","nodeType":"YulFunctionCall","src":"1362:12:101"},"nativeSrc":"1362:12:101","nodeType":"YulExpressionStatement","src":"1362:12:101"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"1330:8:101","nodeType":"YulIdentifier","src":"1330:8:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1348:2:101","nodeType":"YulLiteral","src":"1348:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"1352:1:101","nodeType":"YulLiteral","src":"1352:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1344:3:101","nodeType":"YulIdentifier","src":"1344:3:101"},"nativeSrc":"1344:10:101","nodeType":"YulFunctionCall","src":"1344:10:101"},{"kind":"number","nativeSrc":"1356:1:101","nodeType":"YulLiteral","src":"1356:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1340:3:101","nodeType":"YulIdentifier","src":"1340:3:101"},"nativeSrc":"1340:18:101","nodeType":"YulFunctionCall","src":"1340:18:101"}],"functionName":{"name":"gt","nativeSrc":"1327:2:101","nodeType":"YulIdentifier","src":"1327:2:101"},"nativeSrc":"1327:32:101","nodeType":"YulFunctionCall","src":"1327:32:101"},"nativeSrc":"1324:52:101","nodeType":"YulIf","src":"1324:52:101"},{"nativeSrc":"1385:73:101","nodeType":"YulAssignment","src":"1385:73:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1428:9:101","nodeType":"YulIdentifier","src":"1428:9:101"},{"name":"offset_1","nativeSrc":"1439:8:101","nodeType":"YulIdentifier","src":"1439:8:101"}],"functionName":{"name":"add","nativeSrc":"1424:3:101","nodeType":"YulIdentifier","src":"1424:3:101"},"nativeSrc":"1424:24:101","nodeType":"YulFunctionCall","src":"1424:24:101"},{"name":"dataEnd","nativeSrc":"1450:7:101","nodeType":"YulIdentifier","src":"1450:7:101"}],"functionName":{"name":"abi_decode_string_fromMemory","nativeSrc":"1395:28:101","nodeType":"YulIdentifier","src":"1395:28:101"},"nativeSrc":"1395:63:101","nodeType":"YulFunctionCall","src":"1395:63:101"},"variableNames":[{"name":"value1","nativeSrc":"1385:6:101","nodeType":"YulIdentifier","src":"1385:6:101"}]},{"nativeSrc":"1467:35:101","nodeType":"YulAssignment","src":"1467:35:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1487:9:101","nodeType":"YulIdentifier","src":"1487:9:101"},{"kind":"number","nativeSrc":"1498:2:101","nodeType":"YulLiteral","src":"1498:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1483:3:101","nodeType":"YulIdentifier","src":"1483:3:101"},"nativeSrc":"1483:18:101","nodeType":"YulFunctionCall","src":"1483:18:101"}],"functionName":{"name":"mload","nativeSrc":"1477:5:101","nodeType":"YulIdentifier","src":"1477:5:101"},"nativeSrc":"1477:25:101","nodeType":"YulFunctionCall","src":"1477:25:101"},"variableNames":[{"name":"value2","nativeSrc":"1467:6:101","nodeType":"YulIdentifier","src":"1467:6:101"}]},{"nativeSrc":"1511:38:101","nodeType":"YulVariableDeclaration","src":"1511:38:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1534:9:101","nodeType":"YulIdentifier","src":"1534:9:101"},{"kind":"number","nativeSrc":"1545:2:101","nodeType":"YulLiteral","src":"1545:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1530:3:101","nodeType":"YulIdentifier","src":"1530:3:101"},"nativeSrc":"1530:18:101","nodeType":"YulFunctionCall","src":"1530:18:101"}],"functionName":{"name":"mload","nativeSrc":"1524:5:101","nodeType":"YulIdentifier","src":"1524:5:101"},"nativeSrc":"1524:25:101","nodeType":"YulFunctionCall","src":"1524:25:101"},"variables":[{"name":"value","nativeSrc":"1515:5:101","nodeType":"YulTypedName","src":"1515:5:101","type":""}]},{"body":{"nativeSrc":"1597:16:101","nodeType":"YulBlock","src":"1597:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1606:1:101","nodeType":"YulLiteral","src":"1606:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1609:1:101","nodeType":"YulLiteral","src":"1609:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1599:6:101","nodeType":"YulIdentifier","src":"1599:6:101"},"nativeSrc":"1599:12:101","nodeType":"YulFunctionCall","src":"1599:12:101"},"nativeSrc":"1599:12:101","nodeType":"YulExpressionStatement","src":"1599:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1571:5:101","nodeType":"YulIdentifier","src":"1571:5:101"},{"arguments":[{"name":"value","nativeSrc":"1582:5:101","nodeType":"YulIdentifier","src":"1582:5:101"},{"kind":"number","nativeSrc":"1589:4:101","nodeType":"YulLiteral","src":"1589:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"1578:3:101","nodeType":"YulIdentifier","src":"1578:3:101"},"nativeSrc":"1578:16:101","nodeType":"YulFunctionCall","src":"1578:16:101"}],"functionName":{"name":"eq","nativeSrc":"1568:2:101","nodeType":"YulIdentifier","src":"1568:2:101"},"nativeSrc":"1568:27:101","nodeType":"YulFunctionCall","src":"1568:27:101"}],"functionName":{"name":"iszero","nativeSrc":"1561:6:101","nodeType":"YulIdentifier","src":"1561:6:101"},"nativeSrc":"1561:35:101","nodeType":"YulFunctionCall","src":"1561:35:101"},"nativeSrc":"1558:55:101","nodeType":"YulIf","src":"1558:55:101"},{"nativeSrc":"1622:15:101","nodeType":"YulAssignment","src":"1622:15:101","value":{"name":"value","nativeSrc":"1632:5:101","nodeType":"YulIdentifier","src":"1632:5:101"},"variableNames":[{"name":"value3","nativeSrc":"1622:6:101","nodeType":"YulIdentifier","src":"1622:6:101"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint8_fromMemory","nativeSrc":"874:769:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"966:9:101","nodeType":"YulTypedName","src":"966:9:101","type":""},{"name":"dataEnd","nativeSrc":"977:7:101","nodeType":"YulTypedName","src":"977:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"989:6:101","nodeType":"YulTypedName","src":"989:6:101","type":""},{"name":"value1","nativeSrc":"997:6:101","nodeType":"YulTypedName","src":"997:6:101","type":""},{"name":"value2","nativeSrc":"1005:6:101","nodeType":"YulTypedName","src":"1005:6:101","type":""},{"name":"value3","nativeSrc":"1013:6:101","nodeType":"YulTypedName","src":"1013:6:101","type":""}],"src":"874:769:101"},{"body":{"nativeSrc":"1703:325:101","nodeType":"YulBlock","src":"1703:325:101","statements":[{"nativeSrc":"1713:22:101","nodeType":"YulAssignment","src":"1713:22:101","value":{"arguments":[{"kind":"number","nativeSrc":"1727:1:101","nodeType":"YulLiteral","src":"1727:1:101","type":"","value":"1"},{"name":"data","nativeSrc":"1730:4:101","nodeType":"YulIdentifier","src":"1730:4:101"}],"functionName":{"name":"shr","nativeSrc":"1723:3:101","nodeType":"YulIdentifier","src":"1723:3:101"},"nativeSrc":"1723:12:101","nodeType":"YulFunctionCall","src":"1723:12:101"},"variableNames":[{"name":"length","nativeSrc":"1713:6:101","nodeType":"YulIdentifier","src":"1713:6:101"}]},{"nativeSrc":"1744:38:101","nodeType":"YulVariableDeclaration","src":"1744:38:101","value":{"arguments":[{"name":"data","nativeSrc":"1774:4:101","nodeType":"YulIdentifier","src":"1774:4:101"},{"kind":"number","nativeSrc":"1780:1:101","nodeType":"YulLiteral","src":"1780:1:101","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"1770:3:101","nodeType":"YulIdentifier","src":"1770:3:101"},"nativeSrc":"1770:12:101","nodeType":"YulFunctionCall","src":"1770:12:101"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"1748:18:101","nodeType":"YulTypedName","src":"1748:18:101","type":""}]},{"body":{"nativeSrc":"1821:31:101","nodeType":"YulBlock","src":"1821:31:101","statements":[{"nativeSrc":"1823:27:101","nodeType":"YulAssignment","src":"1823:27:101","value":{"arguments":[{"name":"length","nativeSrc":"1837:6:101","nodeType":"YulIdentifier","src":"1837:6:101"},{"kind":"number","nativeSrc":"1845:4:101","nodeType":"YulLiteral","src":"1845:4:101","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"1833:3:101","nodeType":"YulIdentifier","src":"1833:3:101"},"nativeSrc":"1833:17:101","nodeType":"YulFunctionCall","src":"1833:17:101"},"variableNames":[{"name":"length","nativeSrc":"1823:6:101","nodeType":"YulIdentifier","src":"1823:6:101"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"1801:18:101","nodeType":"YulIdentifier","src":"1801:18:101"}],"functionName":{"name":"iszero","nativeSrc":"1794:6:101","nodeType":"YulIdentifier","src":"1794:6:101"},"nativeSrc":"1794:26:101","nodeType":"YulFunctionCall","src":"1794:26:101"},"nativeSrc":"1791:61:101","nodeType":"YulIf","src":"1791:61:101"},{"body":{"nativeSrc":"1911:111:101","nodeType":"YulBlock","src":"1911:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1932:1:101","nodeType":"YulLiteral","src":"1932:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1939:3:101","nodeType":"YulLiteral","src":"1939:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"1944:10:101","nodeType":"YulLiteral","src":"1944:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1935:3:101","nodeType":"YulIdentifier","src":"1935:3:101"},"nativeSrc":"1935:20:101","nodeType":"YulFunctionCall","src":"1935:20:101"}],"functionName":{"name":"mstore","nativeSrc":"1925:6:101","nodeType":"YulIdentifier","src":"1925:6:101"},"nativeSrc":"1925:31:101","nodeType":"YulFunctionCall","src":"1925:31:101"},"nativeSrc":"1925:31:101","nodeType":"YulExpressionStatement","src":"1925:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1976:1:101","nodeType":"YulLiteral","src":"1976:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"1979:4:101","nodeType":"YulLiteral","src":"1979:4:101","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"1969:6:101","nodeType":"YulIdentifier","src":"1969:6:101"},"nativeSrc":"1969:15:101","nodeType":"YulFunctionCall","src":"1969:15:101"},"nativeSrc":"1969:15:101","nodeType":"YulExpressionStatement","src":"1969:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2004:1:101","nodeType":"YulLiteral","src":"2004:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2007:4:101","nodeType":"YulLiteral","src":"2007:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1997:6:101","nodeType":"YulIdentifier","src":"1997:6:101"},"nativeSrc":"1997:15:101","nodeType":"YulFunctionCall","src":"1997:15:101"},"nativeSrc":"1997:15:101","nodeType":"YulExpressionStatement","src":"1997:15:101"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"1867:18:101","nodeType":"YulIdentifier","src":"1867:18:101"},{"arguments":[{"name":"length","nativeSrc":"1890:6:101","nodeType":"YulIdentifier","src":"1890:6:101"},{"kind":"number","nativeSrc":"1898:2:101","nodeType":"YulLiteral","src":"1898:2:101","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"1887:2:101","nodeType":"YulIdentifier","src":"1887:2:101"},"nativeSrc":"1887:14:101","nodeType":"YulFunctionCall","src":"1887:14:101"}],"functionName":{"name":"eq","nativeSrc":"1864:2:101","nodeType":"YulIdentifier","src":"1864:2:101"},"nativeSrc":"1864:38:101","nodeType":"YulFunctionCall","src":"1864:38:101"},"nativeSrc":"1861:161:101","nodeType":"YulIf","src":"1861:161:101"}]},"name":"extract_byte_array_length","nativeSrc":"1648:380:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"1683:4:101","nodeType":"YulTypedName","src":"1683:4:101","type":""}],"returnVariables":[{"name":"length","nativeSrc":"1692:6:101","nodeType":"YulTypedName","src":"1692:6:101","type":""}],"src":"1648:380:101"},{"body":{"nativeSrc":"2089:65:101","nodeType":"YulBlock","src":"2089:65:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2106:1:101","nodeType":"YulLiteral","src":"2106:1:101","type":"","value":"0"},{"name":"ptr","nativeSrc":"2109:3:101","nodeType":"YulIdentifier","src":"2109:3:101"}],"functionName":{"name":"mstore","nativeSrc":"2099:6:101","nodeType":"YulIdentifier","src":"2099:6:101"},"nativeSrc":"2099:14:101","nodeType":"YulFunctionCall","src":"2099:14:101"},"nativeSrc":"2099:14:101","nodeType":"YulExpressionStatement","src":"2099:14:101"},{"nativeSrc":"2122:26:101","nodeType":"YulAssignment","src":"2122:26:101","value":{"arguments":[{"kind":"number","nativeSrc":"2140:1:101","nodeType":"YulLiteral","src":"2140:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2143:4:101","nodeType":"YulLiteral","src":"2143:4:101","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2130:9:101","nodeType":"YulIdentifier","src":"2130:9:101"},"nativeSrc":"2130:18:101","nodeType":"YulFunctionCall","src":"2130:18:101"},"variableNames":[{"name":"data","nativeSrc":"2122:4:101","nodeType":"YulIdentifier","src":"2122:4:101"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"2033:121:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"2072:3:101","nodeType":"YulTypedName","src":"2072:3:101","type":""}],"returnVariables":[{"name":"data","nativeSrc":"2080:4:101","nodeType":"YulTypedName","src":"2080:4:101","type":""}],"src":"2033:121:101"},{"body":{"nativeSrc":"2240:437:101","nodeType":"YulBlock","src":"2240:437:101","statements":[{"body":{"nativeSrc":"2273:398:101","nodeType":"YulBlock","src":"2273:398:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2294:1:101","nodeType":"YulLiteral","src":"2294:1:101","type":"","value":"0"},{"name":"array","nativeSrc":"2297:5:101","nodeType":"YulIdentifier","src":"2297:5:101"}],"functionName":{"name":"mstore","nativeSrc":"2287:6:101","nodeType":"YulIdentifier","src":"2287:6:101"},"nativeSrc":"2287:16:101","nodeType":"YulFunctionCall","src":"2287:16:101"},"nativeSrc":"2287:16:101","nodeType":"YulExpressionStatement","src":"2287:16:101"},{"nativeSrc":"2316:30:101","nodeType":"YulVariableDeclaration","src":"2316:30:101","value":{"arguments":[{"kind":"number","nativeSrc":"2338:1:101","nodeType":"YulLiteral","src":"2338:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2341:4:101","nodeType":"YulLiteral","src":"2341:4:101","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2328:9:101","nodeType":"YulIdentifier","src":"2328:9:101"},"nativeSrc":"2328:18:101","nodeType":"YulFunctionCall","src":"2328:18:101"},"variables":[{"name":"data","nativeSrc":"2320:4:101","nodeType":"YulTypedName","src":"2320:4:101","type":""}]},{"nativeSrc":"2359:57:101","nodeType":"YulVariableDeclaration","src":"2359:57:101","value":{"arguments":[{"name":"data","nativeSrc":"2382:4:101","nodeType":"YulIdentifier","src":"2382:4:101"},{"arguments":[{"kind":"number","nativeSrc":"2392:1:101","nodeType":"YulLiteral","src":"2392:1:101","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"2399:10:101","nodeType":"YulIdentifier","src":"2399:10:101"},{"kind":"number","nativeSrc":"2411:2:101","nodeType":"YulLiteral","src":"2411:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2395:3:101","nodeType":"YulIdentifier","src":"2395:3:101"},"nativeSrc":"2395:19:101","nodeType":"YulFunctionCall","src":"2395:19:101"}],"functionName":{"name":"shr","nativeSrc":"2388:3:101","nodeType":"YulIdentifier","src":"2388:3:101"},"nativeSrc":"2388:27:101","nodeType":"YulFunctionCall","src":"2388:27:101"}],"functionName":{"name":"add","nativeSrc":"2378:3:101","nodeType":"YulIdentifier","src":"2378:3:101"},"nativeSrc":"2378:38:101","nodeType":"YulFunctionCall","src":"2378:38:101"},"variables":[{"name":"deleteStart","nativeSrc":"2363:11:101","nodeType":"YulTypedName","src":"2363:11:101","type":""}]},{"body":{"nativeSrc":"2453:23:101","nodeType":"YulBlock","src":"2453:23:101","statements":[{"nativeSrc":"2455:19:101","nodeType":"YulAssignment","src":"2455:19:101","value":{"name":"data","nativeSrc":"2470:4:101","nodeType":"YulIdentifier","src":"2470:4:101"},"variableNames":[{"name":"deleteStart","nativeSrc":"2455:11:101","nodeType":"YulIdentifier","src":"2455:11:101"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"2435:10:101","nodeType":"YulIdentifier","src":"2435:10:101"},{"kind":"number","nativeSrc":"2447:4:101","nodeType":"YulLiteral","src":"2447:4:101","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"2432:2:101","nodeType":"YulIdentifier","src":"2432:2:101"},"nativeSrc":"2432:20:101","nodeType":"YulFunctionCall","src":"2432:20:101"},"nativeSrc":"2429:47:101","nodeType":"YulIf","src":"2429:47:101"},{"nativeSrc":"2489:41:101","nodeType":"YulVariableDeclaration","src":"2489:41:101","value":{"arguments":[{"name":"data","nativeSrc":"2503:4:101","nodeType":"YulIdentifier","src":"2503:4:101"},{"arguments":[{"kind":"number","nativeSrc":"2513:1:101","nodeType":"YulLiteral","src":"2513:1:101","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"2520:3:101","nodeType":"YulIdentifier","src":"2520:3:101"},{"kind":"number","nativeSrc":"2525:2:101","nodeType":"YulLiteral","src":"2525:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2516:3:101","nodeType":"YulIdentifier","src":"2516:3:101"},"nativeSrc":"2516:12:101","nodeType":"YulFunctionCall","src":"2516:12:101"}],"functionName":{"name":"shr","nativeSrc":"2509:3:101","nodeType":"YulIdentifier","src":"2509:3:101"},"nativeSrc":"2509:20:101","nodeType":"YulFunctionCall","src":"2509:20:101"}],"functionName":{"name":"add","nativeSrc":"2499:3:101","nodeType":"YulIdentifier","src":"2499:3:101"},"nativeSrc":"2499:31:101","nodeType":"YulFunctionCall","src":"2499:31:101"},"variables":[{"name":"_1","nativeSrc":"2493:2:101","nodeType":"YulTypedName","src":"2493:2:101","type":""}]},{"nativeSrc":"2543:24:101","nodeType":"YulVariableDeclaration","src":"2543:24:101","value":{"name":"deleteStart","nativeSrc":"2556:11:101","nodeType":"YulIdentifier","src":"2556:11:101"},"variables":[{"name":"start","nativeSrc":"2547:5:101","nodeType":"YulTypedName","src":"2547:5:101","type":""}]},{"body":{"nativeSrc":"2641:20:101","nodeType":"YulBlock","src":"2641:20:101","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"2650:5:101","nodeType":"YulIdentifier","src":"2650:5:101"},{"kind":"number","nativeSrc":"2657:1:101","nodeType":"YulLiteral","src":"2657:1:101","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"2643:6:101","nodeType":"YulIdentifier","src":"2643:6:101"},"nativeSrc":"2643:16:101","nodeType":"YulFunctionCall","src":"2643:16:101"},"nativeSrc":"2643:16:101","nodeType":"YulExpressionStatement","src":"2643:16:101"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"2591:5:101","nodeType":"YulIdentifier","src":"2591:5:101"},{"name":"_1","nativeSrc":"2598:2:101","nodeType":"YulIdentifier","src":"2598:2:101"}],"functionName":{"name":"lt","nativeSrc":"2588:2:101","nodeType":"YulIdentifier","src":"2588:2:101"},"nativeSrc":"2588:13:101","nodeType":"YulFunctionCall","src":"2588:13:101"},"nativeSrc":"2580:81:101","nodeType":"YulForLoop","post":{"nativeSrc":"2602:26:101","nodeType":"YulBlock","src":"2602:26:101","statements":[{"nativeSrc":"2604:22:101","nodeType":"YulAssignment","src":"2604:22:101","value":{"arguments":[{"name":"start","nativeSrc":"2617:5:101","nodeType":"YulIdentifier","src":"2617:5:101"},{"kind":"number","nativeSrc":"2624:1:101","nodeType":"YulLiteral","src":"2624:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"2613:3:101","nodeType":"YulIdentifier","src":"2613:3:101"},"nativeSrc":"2613:13:101","nodeType":"YulFunctionCall","src":"2613:13:101"},"variableNames":[{"name":"start","nativeSrc":"2604:5:101","nodeType":"YulIdentifier","src":"2604:5:101"}]}]},"pre":{"nativeSrc":"2584:3:101","nodeType":"YulBlock","src":"2584:3:101","statements":[]},"src":"2580:81:101"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"2256:3:101","nodeType":"YulIdentifier","src":"2256:3:101"},{"kind":"number","nativeSrc":"2261:2:101","nodeType":"YulLiteral","src":"2261:2:101","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"2253:2:101","nodeType":"YulIdentifier","src":"2253:2:101"},"nativeSrc":"2253:11:101","nodeType":"YulFunctionCall","src":"2253:11:101"},"nativeSrc":"2250:421:101","nodeType":"YulIf","src":"2250:421:101"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"2159:518:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"2212:5:101","nodeType":"YulTypedName","src":"2212:5:101","type":""},{"name":"len","nativeSrc":"2219:3:101","nodeType":"YulTypedName","src":"2219:3:101","type":""},{"name":"startIndex","nativeSrc":"2224:10:101","nodeType":"YulTypedName","src":"2224:10:101","type":""}],"src":"2159:518:101"},{"body":{"nativeSrc":"2767:81:101","nodeType":"YulBlock","src":"2767:81:101","statements":[{"nativeSrc":"2777:65:101","nodeType":"YulAssignment","src":"2777:65:101","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"2792:4:101","nodeType":"YulIdentifier","src":"2792:4:101"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2810:1:101","nodeType":"YulLiteral","src":"2810:1:101","type":"","value":"3"},{"name":"len","nativeSrc":"2813:3:101","nodeType":"YulIdentifier","src":"2813:3:101"}],"functionName":{"name":"shl","nativeSrc":"2806:3:101","nodeType":"YulIdentifier","src":"2806:3:101"},"nativeSrc":"2806:11:101","nodeType":"YulFunctionCall","src":"2806:11:101"},{"arguments":[{"kind":"number","nativeSrc":"2823:1:101","nodeType":"YulLiteral","src":"2823:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2819:3:101","nodeType":"YulIdentifier","src":"2819:3:101"},"nativeSrc":"2819:6:101","nodeType":"YulFunctionCall","src":"2819:6:101"}],"functionName":{"name":"shr","nativeSrc":"2802:3:101","nodeType":"YulIdentifier","src":"2802:3:101"},"nativeSrc":"2802:24:101","nodeType":"YulFunctionCall","src":"2802:24:101"}],"functionName":{"name":"not","nativeSrc":"2798:3:101","nodeType":"YulIdentifier","src":"2798:3:101"},"nativeSrc":"2798:29:101","nodeType":"YulFunctionCall","src":"2798:29:101"}],"functionName":{"name":"and","nativeSrc":"2788:3:101","nodeType":"YulIdentifier","src":"2788:3:101"},"nativeSrc":"2788:40:101","nodeType":"YulFunctionCall","src":"2788:40:101"},{"arguments":[{"kind":"number","nativeSrc":"2834:1:101","nodeType":"YulLiteral","src":"2834:1:101","type":"","value":"1"},{"name":"len","nativeSrc":"2837:3:101","nodeType":"YulIdentifier","src":"2837:3:101"}],"functionName":{"name":"shl","nativeSrc":"2830:3:101","nodeType":"YulIdentifier","src":"2830:3:101"},"nativeSrc":"2830:11:101","nodeType":"YulFunctionCall","src":"2830:11:101"}],"functionName":{"name":"or","nativeSrc":"2785:2:101","nodeType":"YulIdentifier","src":"2785:2:101"},"nativeSrc":"2785:57:101","nodeType":"YulFunctionCall","src":"2785:57:101"},"variableNames":[{"name":"used","nativeSrc":"2777:4:101","nodeType":"YulIdentifier","src":"2777:4:101"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"2682:166:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"2744:4:101","nodeType":"YulTypedName","src":"2744:4:101","type":""},{"name":"len","nativeSrc":"2750:3:101","nodeType":"YulTypedName","src":"2750:3:101","type":""}],"returnVariables":[{"name":"used","nativeSrc":"2758:4:101","nodeType":"YulTypedName","src":"2758:4:101","type":""}],"src":"2682:166:101"},{"body":{"nativeSrc":"2949:1203:101","nodeType":"YulBlock","src":"2949:1203:101","statements":[{"nativeSrc":"2959:24:101","nodeType":"YulVariableDeclaration","src":"2959:24:101","value":{"arguments":[{"name":"src","nativeSrc":"2979:3:101","nodeType":"YulIdentifier","src":"2979:3:101"}],"functionName":{"name":"mload","nativeSrc":"2973:5:101","nodeType":"YulIdentifier","src":"2973:5:101"},"nativeSrc":"2973:10:101","nodeType":"YulFunctionCall","src":"2973:10:101"},"variables":[{"name":"newLen","nativeSrc":"2963:6:101","nodeType":"YulTypedName","src":"2963:6:101","type":""}]},{"body":{"nativeSrc":"3026:22:101","nodeType":"YulBlock","src":"3026:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3028:16:101","nodeType":"YulIdentifier","src":"3028:16:101"},"nativeSrc":"3028:18:101","nodeType":"YulFunctionCall","src":"3028:18:101"},"nativeSrc":"3028:18:101","nodeType":"YulExpressionStatement","src":"3028:18:101"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"2998:6:101","nodeType":"YulIdentifier","src":"2998:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3014:2:101","nodeType":"YulLiteral","src":"3014:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"3018:1:101","nodeType":"YulLiteral","src":"3018:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3010:3:101","nodeType":"YulIdentifier","src":"3010:3:101"},"nativeSrc":"3010:10:101","nodeType":"YulFunctionCall","src":"3010:10:101"},{"kind":"number","nativeSrc":"3022:1:101","nodeType":"YulLiteral","src":"3022:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3006:3:101","nodeType":"YulIdentifier","src":"3006:3:101"},"nativeSrc":"3006:18:101","nodeType":"YulFunctionCall","src":"3006:18:101"}],"functionName":{"name":"gt","nativeSrc":"2995:2:101","nodeType":"YulIdentifier","src":"2995:2:101"},"nativeSrc":"2995:30:101","nodeType":"YulFunctionCall","src":"2995:30:101"},"nativeSrc":"2992:56:101","nodeType":"YulIf","src":"2992:56:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"3101:4:101","nodeType":"YulIdentifier","src":"3101:4:101"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"3139:4:101","nodeType":"YulIdentifier","src":"3139:4:101"}],"functionName":{"name":"sload","nativeSrc":"3133:5:101","nodeType":"YulIdentifier","src":"3133:5:101"},"nativeSrc":"3133:11:101","nodeType":"YulFunctionCall","src":"3133:11:101"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"3107:25:101","nodeType":"YulIdentifier","src":"3107:25:101"},"nativeSrc":"3107:38:101","nodeType":"YulFunctionCall","src":"3107:38:101"},{"name":"newLen","nativeSrc":"3147:6:101","nodeType":"YulIdentifier","src":"3147:6:101"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"3057:43:101","nodeType":"YulIdentifier","src":"3057:43:101"},"nativeSrc":"3057:97:101","nodeType":"YulFunctionCall","src":"3057:97:101"},"nativeSrc":"3057:97:101","nodeType":"YulExpressionStatement","src":"3057:97:101"},{"nativeSrc":"3163:18:101","nodeType":"YulVariableDeclaration","src":"3163:18:101","value":{"kind":"number","nativeSrc":"3180:1:101","nodeType":"YulLiteral","src":"3180:1:101","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"3167:9:101","nodeType":"YulTypedName","src":"3167:9:101","type":""}]},{"nativeSrc":"3190:17:101","nodeType":"YulAssignment","src":"3190:17:101","value":{"kind":"number","nativeSrc":"3203:4:101","nodeType":"YulLiteral","src":"3203:4:101","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"3190:9:101","nodeType":"YulIdentifier","src":"3190:9:101"}]},{"cases":[{"body":{"nativeSrc":"3253:642:101","nodeType":"YulBlock","src":"3253:642:101","statements":[{"nativeSrc":"3267:35:101","nodeType":"YulVariableDeclaration","src":"3267:35:101","value":{"arguments":[{"name":"newLen","nativeSrc":"3286:6:101","nodeType":"YulIdentifier","src":"3286:6:101"},{"arguments":[{"kind":"number","nativeSrc":"3298:2:101","nodeType":"YulLiteral","src":"3298:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"3294:3:101","nodeType":"YulIdentifier","src":"3294:3:101"},"nativeSrc":"3294:7:101","nodeType":"YulFunctionCall","src":"3294:7:101"}],"functionName":{"name":"and","nativeSrc":"3282:3:101","nodeType":"YulIdentifier","src":"3282:3:101"},"nativeSrc":"3282:20:101","nodeType":"YulFunctionCall","src":"3282:20:101"},"variables":[{"name":"loopEnd","nativeSrc":"3271:7:101","nodeType":"YulTypedName","src":"3271:7:101","type":""}]},{"nativeSrc":"3315:49:101","nodeType":"YulVariableDeclaration","src":"3315:49:101","value":{"arguments":[{"name":"slot","nativeSrc":"3359:4:101","nodeType":"YulIdentifier","src":"3359:4:101"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"3329:29:101","nodeType":"YulIdentifier","src":"3329:29:101"},"nativeSrc":"3329:35:101","nodeType":"YulFunctionCall","src":"3329:35:101"},"variables":[{"name":"dstPtr","nativeSrc":"3319:6:101","nodeType":"YulTypedName","src":"3319:6:101","type":""}]},{"nativeSrc":"3377:10:101","nodeType":"YulVariableDeclaration","src":"3377:10:101","value":{"kind":"number","nativeSrc":"3386:1:101","nodeType":"YulLiteral","src":"3386:1:101","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"3381:1:101","nodeType":"YulTypedName","src":"3381:1:101","type":""}]},{"body":{"nativeSrc":"3457:165:101","nodeType":"YulBlock","src":"3457:165:101","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3482:6:101","nodeType":"YulIdentifier","src":"3482:6:101"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3500:3:101","nodeType":"YulIdentifier","src":"3500:3:101"},{"name":"srcOffset","nativeSrc":"3505:9:101","nodeType":"YulIdentifier","src":"3505:9:101"}],"functionName":{"name":"add","nativeSrc":"3496:3:101","nodeType":"YulIdentifier","src":"3496:3:101"},"nativeSrc":"3496:19:101","nodeType":"YulFunctionCall","src":"3496:19:101"}],"functionName":{"name":"mload","nativeSrc":"3490:5:101","nodeType":"YulIdentifier","src":"3490:5:101"},"nativeSrc":"3490:26:101","nodeType":"YulFunctionCall","src":"3490:26:101"}],"functionName":{"name":"sstore","nativeSrc":"3475:6:101","nodeType":"YulIdentifier","src":"3475:6:101"},"nativeSrc":"3475:42:101","nodeType":"YulFunctionCall","src":"3475:42:101"},"nativeSrc":"3475:42:101","nodeType":"YulExpressionStatement","src":"3475:42:101"},{"nativeSrc":"3534:24:101","nodeType":"YulAssignment","src":"3534:24:101","value":{"arguments":[{"name":"dstPtr","nativeSrc":"3548:6:101","nodeType":"YulIdentifier","src":"3548:6:101"},{"kind":"number","nativeSrc":"3556:1:101","nodeType":"YulLiteral","src":"3556:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3544:3:101","nodeType":"YulIdentifier","src":"3544:3:101"},"nativeSrc":"3544:14:101","nodeType":"YulFunctionCall","src":"3544:14:101"},"variableNames":[{"name":"dstPtr","nativeSrc":"3534:6:101","nodeType":"YulIdentifier","src":"3534:6:101"}]},{"nativeSrc":"3575:33:101","nodeType":"YulAssignment","src":"3575:33:101","value":{"arguments":[{"name":"srcOffset","nativeSrc":"3592:9:101","nodeType":"YulIdentifier","src":"3592:9:101"},{"kind":"number","nativeSrc":"3603:4:101","nodeType":"YulLiteral","src":"3603:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3588:3:101","nodeType":"YulIdentifier","src":"3588:3:101"},"nativeSrc":"3588:20:101","nodeType":"YulFunctionCall","src":"3588:20:101"},"variableNames":[{"name":"srcOffset","nativeSrc":"3575:9:101","nodeType":"YulIdentifier","src":"3575:9:101"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"3411:1:101","nodeType":"YulIdentifier","src":"3411:1:101"},{"name":"loopEnd","nativeSrc":"3414:7:101","nodeType":"YulIdentifier","src":"3414:7:101"}],"functionName":{"name":"lt","nativeSrc":"3408:2:101","nodeType":"YulIdentifier","src":"3408:2:101"},"nativeSrc":"3408:14:101","nodeType":"YulFunctionCall","src":"3408:14:101"},"nativeSrc":"3400:222:101","nodeType":"YulForLoop","post":{"nativeSrc":"3423:21:101","nodeType":"YulBlock","src":"3423:21:101","statements":[{"nativeSrc":"3425:17:101","nodeType":"YulAssignment","src":"3425:17:101","value":{"arguments":[{"name":"i","nativeSrc":"3434:1:101","nodeType":"YulIdentifier","src":"3434:1:101"},{"kind":"number","nativeSrc":"3437:4:101","nodeType":"YulLiteral","src":"3437:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3430:3:101","nodeType":"YulIdentifier","src":"3430:3:101"},"nativeSrc":"3430:12:101","nodeType":"YulFunctionCall","src":"3430:12:101"},"variableNames":[{"name":"i","nativeSrc":"3425:1:101","nodeType":"YulIdentifier","src":"3425:1:101"}]}]},"pre":{"nativeSrc":"3404:3:101","nodeType":"YulBlock","src":"3404:3:101","statements":[]},"src":"3400:222:101"},{"body":{"nativeSrc":"3670:166:101","nodeType":"YulBlock","src":"3670:166:101","statements":[{"nativeSrc":"3688:43:101","nodeType":"YulVariableDeclaration","src":"3688:43:101","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3715:3:101","nodeType":"YulIdentifier","src":"3715:3:101"},{"name":"srcOffset","nativeSrc":"3720:9:101","nodeType":"YulIdentifier","src":"3720:9:101"}],"functionName":{"name":"add","nativeSrc":"3711:3:101","nodeType":"YulIdentifier","src":"3711:3:101"},"nativeSrc":"3711:19:101","nodeType":"YulFunctionCall","src":"3711:19:101"}],"functionName":{"name":"mload","nativeSrc":"3705:5:101","nodeType":"YulIdentifier","src":"3705:5:101"},"nativeSrc":"3705:26:101","nodeType":"YulFunctionCall","src":"3705:26:101"},"variables":[{"name":"lastValue","nativeSrc":"3692:9:101","nodeType":"YulTypedName","src":"3692:9:101","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3755:6:101","nodeType":"YulIdentifier","src":"3755:6:101"},{"arguments":[{"name":"lastValue","nativeSrc":"3767:9:101","nodeType":"YulIdentifier","src":"3767:9:101"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3794:1:101","nodeType":"YulLiteral","src":"3794:1:101","type":"","value":"3"},{"name":"newLen","nativeSrc":"3797:6:101","nodeType":"YulIdentifier","src":"3797:6:101"}],"functionName":{"name":"shl","nativeSrc":"3790:3:101","nodeType":"YulIdentifier","src":"3790:3:101"},"nativeSrc":"3790:14:101","nodeType":"YulFunctionCall","src":"3790:14:101"},{"kind":"number","nativeSrc":"3806:3:101","nodeType":"YulLiteral","src":"3806:3:101","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"3786:3:101","nodeType":"YulIdentifier","src":"3786:3:101"},"nativeSrc":"3786:24:101","nodeType":"YulFunctionCall","src":"3786:24:101"},{"arguments":[{"kind":"number","nativeSrc":"3816:1:101","nodeType":"YulLiteral","src":"3816:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3812:3:101","nodeType":"YulIdentifier","src":"3812:3:101"},"nativeSrc":"3812:6:101","nodeType":"YulFunctionCall","src":"3812:6:101"}],"functionName":{"name":"shr","nativeSrc":"3782:3:101","nodeType":"YulIdentifier","src":"3782:3:101"},"nativeSrc":"3782:37:101","nodeType":"YulFunctionCall","src":"3782:37:101"}],"functionName":{"name":"not","nativeSrc":"3778:3:101","nodeType":"YulIdentifier","src":"3778:3:101"},"nativeSrc":"3778:42:101","nodeType":"YulFunctionCall","src":"3778:42:101"}],"functionName":{"name":"and","nativeSrc":"3763:3:101","nodeType":"YulIdentifier","src":"3763:3:101"},"nativeSrc":"3763:58:101","nodeType":"YulFunctionCall","src":"3763:58:101"}],"functionName":{"name":"sstore","nativeSrc":"3748:6:101","nodeType":"YulIdentifier","src":"3748:6:101"},"nativeSrc":"3748:74:101","nodeType":"YulFunctionCall","src":"3748:74:101"},"nativeSrc":"3748:74:101","nodeType":"YulExpressionStatement","src":"3748:74:101"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"3641:7:101","nodeType":"YulIdentifier","src":"3641:7:101"},{"name":"newLen","nativeSrc":"3650:6:101","nodeType":"YulIdentifier","src":"3650:6:101"}],"functionName":{"name":"lt","nativeSrc":"3638:2:101","nodeType":"YulIdentifier","src":"3638:2:101"},"nativeSrc":"3638:19:101","nodeType":"YulFunctionCall","src":"3638:19:101"},"nativeSrc":"3635:201:101","nodeType":"YulIf","src":"3635:201:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"3856:4:101","nodeType":"YulIdentifier","src":"3856:4:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3870:1:101","nodeType":"YulLiteral","src":"3870:1:101","type":"","value":"1"},{"name":"newLen","nativeSrc":"3873:6:101","nodeType":"YulIdentifier","src":"3873:6:101"}],"functionName":{"name":"shl","nativeSrc":"3866:3:101","nodeType":"YulIdentifier","src":"3866:3:101"},"nativeSrc":"3866:14:101","nodeType":"YulFunctionCall","src":"3866:14:101"},{"kind":"number","nativeSrc":"3882:1:101","nodeType":"YulLiteral","src":"3882:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3862:3:101","nodeType":"YulIdentifier","src":"3862:3:101"},"nativeSrc":"3862:22:101","nodeType":"YulFunctionCall","src":"3862:22:101"}],"functionName":{"name":"sstore","nativeSrc":"3849:6:101","nodeType":"YulIdentifier","src":"3849:6:101"},"nativeSrc":"3849:36:101","nodeType":"YulFunctionCall","src":"3849:36:101"},"nativeSrc":"3849:36:101","nodeType":"YulExpressionStatement","src":"3849:36:101"}]},"nativeSrc":"3246:649:101","nodeType":"YulCase","src":"3246:649:101","value":{"kind":"number","nativeSrc":"3251:1:101","nodeType":"YulLiteral","src":"3251:1:101","type":"","value":"1"}},{"body":{"nativeSrc":"3912:234:101","nodeType":"YulBlock","src":"3912:234:101","statements":[{"nativeSrc":"3926:14:101","nodeType":"YulVariableDeclaration","src":"3926:14:101","value":{"kind":"number","nativeSrc":"3939:1:101","nodeType":"YulLiteral","src":"3939:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3930:5:101","nodeType":"YulTypedName","src":"3930:5:101","type":""}]},{"body":{"nativeSrc":"3975:67:101","nodeType":"YulBlock","src":"3975:67:101","statements":[{"nativeSrc":"3993:35:101","nodeType":"YulAssignment","src":"3993:35:101","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"4012:3:101","nodeType":"YulIdentifier","src":"4012:3:101"},{"name":"srcOffset","nativeSrc":"4017:9:101","nodeType":"YulIdentifier","src":"4017:9:101"}],"functionName":{"name":"add","nativeSrc":"4008:3:101","nodeType":"YulIdentifier","src":"4008:3:101"},"nativeSrc":"4008:19:101","nodeType":"YulFunctionCall","src":"4008:19:101"}],"functionName":{"name":"mload","nativeSrc":"4002:5:101","nodeType":"YulIdentifier","src":"4002:5:101"},"nativeSrc":"4002:26:101","nodeType":"YulFunctionCall","src":"4002:26:101"},"variableNames":[{"name":"value","nativeSrc":"3993:5:101","nodeType":"YulIdentifier","src":"3993:5:101"}]}]},"condition":{"name":"newLen","nativeSrc":"3956:6:101","nodeType":"YulIdentifier","src":"3956:6:101"},"nativeSrc":"3953:89:101","nodeType":"YulIf","src":"3953:89:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"4062:4:101","nodeType":"YulIdentifier","src":"4062:4:101"},{"arguments":[{"name":"value","nativeSrc":"4121:5:101","nodeType":"YulIdentifier","src":"4121:5:101"},{"name":"newLen","nativeSrc":"4128:6:101","nodeType":"YulIdentifier","src":"4128:6:101"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"4068:52:101","nodeType":"YulIdentifier","src":"4068:52:101"},"nativeSrc":"4068:67:101","nodeType":"YulFunctionCall","src":"4068:67:101"}],"functionName":{"name":"sstore","nativeSrc":"4055:6:101","nodeType":"YulIdentifier","src":"4055:6:101"},"nativeSrc":"4055:81:101","nodeType":"YulFunctionCall","src":"4055:81:101"},"nativeSrc":"4055:81:101","nodeType":"YulExpressionStatement","src":"4055:81:101"}]},"nativeSrc":"3904:242:101","nodeType":"YulCase","src":"3904:242:101","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"3226:6:101","nodeType":"YulIdentifier","src":"3226:6:101"},{"kind":"number","nativeSrc":"3234:2:101","nodeType":"YulLiteral","src":"3234:2:101","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"3223:2:101","nodeType":"YulIdentifier","src":"3223:2:101"},"nativeSrc":"3223:14:101","nodeType":"YulFunctionCall","src":"3223:14:101"},"nativeSrc":"3216:930:101","nodeType":"YulSwitch","src":"3216:930:101"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"2853:1299:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"2934:4:101","nodeType":"YulTypedName","src":"2934:4:101","type":""},{"name":"src","nativeSrc":"2940:3:101","nodeType":"YulTypedName","src":"2940:3:101","type":""}],"src":"2853:1299:101"},{"body":{"nativeSrc":"4370:276:101","nodeType":"YulBlock","src":"4370:276:101","statements":[{"nativeSrc":"4380:27:101","nodeType":"YulAssignment","src":"4380:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4392:9:101","nodeType":"YulIdentifier","src":"4392:9:101"},{"kind":"number","nativeSrc":"4403:3:101","nodeType":"YulLiteral","src":"4403:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"4388:3:101","nodeType":"YulIdentifier","src":"4388:3:101"},"nativeSrc":"4388:19:101","nodeType":"YulFunctionCall","src":"4388:19:101"},"variableNames":[{"name":"tail","nativeSrc":"4380:4:101","nodeType":"YulIdentifier","src":"4380:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4423:9:101","nodeType":"YulIdentifier","src":"4423:9:101"},{"name":"value0","nativeSrc":"4434:6:101","nodeType":"YulIdentifier","src":"4434:6:101"}],"functionName":{"name":"mstore","nativeSrc":"4416:6:101","nodeType":"YulIdentifier","src":"4416:6:101"},"nativeSrc":"4416:25:101","nodeType":"YulFunctionCall","src":"4416:25:101"},"nativeSrc":"4416:25:101","nodeType":"YulExpressionStatement","src":"4416:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4461:9:101","nodeType":"YulIdentifier","src":"4461:9:101"},{"kind":"number","nativeSrc":"4472:2:101","nodeType":"YulLiteral","src":"4472:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4457:3:101","nodeType":"YulIdentifier","src":"4457:3:101"},"nativeSrc":"4457:18:101","nodeType":"YulFunctionCall","src":"4457:18:101"},{"name":"value1","nativeSrc":"4477:6:101","nodeType":"YulIdentifier","src":"4477:6:101"}],"functionName":{"name":"mstore","nativeSrc":"4450:6:101","nodeType":"YulIdentifier","src":"4450:6:101"},"nativeSrc":"4450:34:101","nodeType":"YulFunctionCall","src":"4450:34:101"},"nativeSrc":"4450:34:101","nodeType":"YulExpressionStatement","src":"4450:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4504:9:101","nodeType":"YulIdentifier","src":"4504:9:101"},{"kind":"number","nativeSrc":"4515:2:101","nodeType":"YulLiteral","src":"4515:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4500:3:101","nodeType":"YulIdentifier","src":"4500:3:101"},"nativeSrc":"4500:18:101","nodeType":"YulFunctionCall","src":"4500:18:101"},{"name":"value2","nativeSrc":"4520:6:101","nodeType":"YulIdentifier","src":"4520:6:101"}],"functionName":{"name":"mstore","nativeSrc":"4493:6:101","nodeType":"YulIdentifier","src":"4493:6:101"},"nativeSrc":"4493:34:101","nodeType":"YulFunctionCall","src":"4493:34:101"},"nativeSrc":"4493:34:101","nodeType":"YulExpressionStatement","src":"4493:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4547:9:101","nodeType":"YulIdentifier","src":"4547:9:101"},{"kind":"number","nativeSrc":"4558:2:101","nodeType":"YulLiteral","src":"4558:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4543:3:101","nodeType":"YulIdentifier","src":"4543:3:101"},"nativeSrc":"4543:18:101","nodeType":"YulFunctionCall","src":"4543:18:101"},{"name":"value3","nativeSrc":"4563:6:101","nodeType":"YulIdentifier","src":"4563:6:101"}],"functionName":{"name":"mstore","nativeSrc":"4536:6:101","nodeType":"YulIdentifier","src":"4536:6:101"},"nativeSrc":"4536:34:101","nodeType":"YulFunctionCall","src":"4536:34:101"},"nativeSrc":"4536:34:101","nodeType":"YulExpressionStatement","src":"4536:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4590:9:101","nodeType":"YulIdentifier","src":"4590:9:101"},{"kind":"number","nativeSrc":"4601:3:101","nodeType":"YulLiteral","src":"4601:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4586:3:101","nodeType":"YulIdentifier","src":"4586:3:101"},"nativeSrc":"4586:19:101","nodeType":"YulFunctionCall","src":"4586:19:101"},{"arguments":[{"name":"value4","nativeSrc":"4611:6:101","nodeType":"YulIdentifier","src":"4611:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4627:3:101","nodeType":"YulLiteral","src":"4627:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"4632:1:101","nodeType":"YulLiteral","src":"4632:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4623:3:101","nodeType":"YulIdentifier","src":"4623:3:101"},"nativeSrc":"4623:11:101","nodeType":"YulFunctionCall","src":"4623:11:101"},{"kind":"number","nativeSrc":"4636:1:101","nodeType":"YulLiteral","src":"4636:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4619:3:101","nodeType":"YulIdentifier","src":"4619:3:101"},"nativeSrc":"4619:19:101","nodeType":"YulFunctionCall","src":"4619:19:101"}],"functionName":{"name":"and","nativeSrc":"4607:3:101","nodeType":"YulIdentifier","src":"4607:3:101"},"nativeSrc":"4607:32:101","nodeType":"YulFunctionCall","src":"4607:32:101"}],"functionName":{"name":"mstore","nativeSrc":"4579:6:101","nodeType":"YulIdentifier","src":"4579:6:101"},"nativeSrc":"4579:61:101","nodeType":"YulFunctionCall","src":"4579:61:101"},"nativeSrc":"4579:61:101","nodeType":"YulExpressionStatement","src":"4579:61:101"}]},"name":"abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed","nativeSrc":"4157:489:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4307:9:101","nodeType":"YulTypedName","src":"4307:9:101","type":""},{"name":"value4","nativeSrc":"4318:6:101","nodeType":"YulTypedName","src":"4318:6:101","type":""},{"name":"value3","nativeSrc":"4326:6:101","nodeType":"YulTypedName","src":"4326:6:101","type":""},{"name":"value2","nativeSrc":"4334:6:101","nodeType":"YulTypedName","src":"4334:6:101","type":""},{"name":"value1","nativeSrc":"4342:6:101","nodeType":"YulTypedName","src":"4342:6:101","type":""},{"name":"value0","nativeSrc":"4350:6:101","nodeType":"YulTypedName","src":"4350:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4361:4:101","nodeType":"YulTypedName","src":"4361:4:101","type":""}],"src":"4157:489:101"},{"body":{"nativeSrc":"4752:102:101","nodeType":"YulBlock","src":"4752:102:101","statements":[{"nativeSrc":"4762:26:101","nodeType":"YulAssignment","src":"4762:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4774:9:101","nodeType":"YulIdentifier","src":"4774:9:101"},{"kind":"number","nativeSrc":"4785:2:101","nodeType":"YulLiteral","src":"4785:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4770:3:101","nodeType":"YulIdentifier","src":"4770:3:101"},"nativeSrc":"4770:18:101","nodeType":"YulFunctionCall","src":"4770:18:101"},"variableNames":[{"name":"tail","nativeSrc":"4762:4:101","nodeType":"YulIdentifier","src":"4762:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4804:9:101","nodeType":"YulIdentifier","src":"4804:9:101"},{"arguments":[{"name":"value0","nativeSrc":"4819:6:101","nodeType":"YulIdentifier","src":"4819:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4835:3:101","nodeType":"YulLiteral","src":"4835:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"4840:1:101","nodeType":"YulLiteral","src":"4840:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4831:3:101","nodeType":"YulIdentifier","src":"4831:3:101"},"nativeSrc":"4831:11:101","nodeType":"YulFunctionCall","src":"4831:11:101"},{"kind":"number","nativeSrc":"4844:1:101","nodeType":"YulLiteral","src":"4844:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4827:3:101","nodeType":"YulIdentifier","src":"4827:3:101"},"nativeSrc":"4827:19:101","nodeType":"YulFunctionCall","src":"4827:19:101"}],"functionName":{"name":"and","nativeSrc":"4815:3:101","nodeType":"YulIdentifier","src":"4815:3:101"},"nativeSrc":"4815:32:101","nodeType":"YulFunctionCall","src":"4815:32:101"}],"functionName":{"name":"mstore","nativeSrc":"4797:6:101","nodeType":"YulIdentifier","src":"4797:6:101"},"nativeSrc":"4797:51:101","nodeType":"YulFunctionCall","src":"4797:51:101"},"nativeSrc":"4797:51:101","nodeType":"YulExpressionStatement","src":"4797:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"4651:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4721:9:101","nodeType":"YulTypedName","src":"4721:9:101","type":""},{"name":"value0","nativeSrc":"4732:6:101","nodeType":"YulTypedName","src":"4732:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4743:4:101","nodeType":"YulTypedName","src":"4743:4:101","type":""}],"src":"4651:203:101"},{"body":{"nativeSrc":"4980:297:101","nodeType":"YulBlock","src":"4980:297:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4997:9:101","nodeType":"YulIdentifier","src":"4997:9:101"},{"kind":"number","nativeSrc":"5008:2:101","nodeType":"YulLiteral","src":"5008:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"4990:6:101","nodeType":"YulIdentifier","src":"4990:6:101"},"nativeSrc":"4990:21:101","nodeType":"YulFunctionCall","src":"4990:21:101"},"nativeSrc":"4990:21:101","nodeType":"YulExpressionStatement","src":"4990:21:101"},{"nativeSrc":"5020:27:101","nodeType":"YulVariableDeclaration","src":"5020:27:101","value":{"arguments":[{"name":"value0","nativeSrc":"5040:6:101","nodeType":"YulIdentifier","src":"5040:6:101"}],"functionName":{"name":"mload","nativeSrc":"5034:5:101","nodeType":"YulIdentifier","src":"5034:5:101"},"nativeSrc":"5034:13:101","nodeType":"YulFunctionCall","src":"5034:13:101"},"variables":[{"name":"length","nativeSrc":"5024:6:101","nodeType":"YulTypedName","src":"5024:6:101","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5067:9:101","nodeType":"YulIdentifier","src":"5067:9:101"},{"kind":"number","nativeSrc":"5078:2:101","nodeType":"YulLiteral","src":"5078:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5063:3:101","nodeType":"YulIdentifier","src":"5063:3:101"},"nativeSrc":"5063:18:101","nodeType":"YulFunctionCall","src":"5063:18:101"},{"name":"length","nativeSrc":"5083:6:101","nodeType":"YulIdentifier","src":"5083:6:101"}],"functionName":{"name":"mstore","nativeSrc":"5056:6:101","nodeType":"YulIdentifier","src":"5056:6:101"},"nativeSrc":"5056:34:101","nodeType":"YulFunctionCall","src":"5056:34:101"},"nativeSrc":"5056:34:101","nodeType":"YulExpressionStatement","src":"5056:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5109:9:101","nodeType":"YulIdentifier","src":"5109:9:101"},{"kind":"number","nativeSrc":"5120:2:101","nodeType":"YulLiteral","src":"5120:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5105:3:101","nodeType":"YulIdentifier","src":"5105:3:101"},"nativeSrc":"5105:18:101","nodeType":"YulFunctionCall","src":"5105:18:101"},{"arguments":[{"name":"value0","nativeSrc":"5129:6:101","nodeType":"YulIdentifier","src":"5129:6:101"},{"kind":"number","nativeSrc":"5137:2:101","nodeType":"YulLiteral","src":"5137:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5125:3:101","nodeType":"YulIdentifier","src":"5125:3:101"},"nativeSrc":"5125:15:101","nodeType":"YulFunctionCall","src":"5125:15:101"},{"name":"length","nativeSrc":"5142:6:101","nodeType":"YulIdentifier","src":"5142:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"5099:5:101","nodeType":"YulIdentifier","src":"5099:5:101"},"nativeSrc":"5099:50:101","nodeType":"YulFunctionCall","src":"5099:50:101"},"nativeSrc":"5099:50:101","nodeType":"YulExpressionStatement","src":"5099:50:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5173:9:101","nodeType":"YulIdentifier","src":"5173:9:101"},{"name":"length","nativeSrc":"5184:6:101","nodeType":"YulIdentifier","src":"5184:6:101"}],"functionName":{"name":"add","nativeSrc":"5169:3:101","nodeType":"YulIdentifier","src":"5169:3:101"},"nativeSrc":"5169:22:101","nodeType":"YulFunctionCall","src":"5169:22:101"},{"kind":"number","nativeSrc":"5193:2:101","nodeType":"YulLiteral","src":"5193:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5165:3:101","nodeType":"YulIdentifier","src":"5165:3:101"},"nativeSrc":"5165:31:101","nodeType":"YulFunctionCall","src":"5165:31:101"},{"kind":"number","nativeSrc":"5198:1:101","nodeType":"YulLiteral","src":"5198:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"5158:6:101","nodeType":"YulIdentifier","src":"5158:6:101"},"nativeSrc":"5158:42:101","nodeType":"YulFunctionCall","src":"5158:42:101"},"nativeSrc":"5158:42:101","nodeType":"YulExpressionStatement","src":"5158:42:101"},{"nativeSrc":"5209:62:101","nodeType":"YulAssignment","src":"5209:62:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5225:9:101","nodeType":"YulIdentifier","src":"5225:9:101"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"5244:6:101","nodeType":"YulIdentifier","src":"5244:6:101"},{"kind":"number","nativeSrc":"5252:2:101","nodeType":"YulLiteral","src":"5252:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"5240:3:101","nodeType":"YulIdentifier","src":"5240:3:101"},"nativeSrc":"5240:15:101","nodeType":"YulFunctionCall","src":"5240:15:101"},{"arguments":[{"kind":"number","nativeSrc":"5261:2:101","nodeType":"YulLiteral","src":"5261:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"5257:3:101","nodeType":"YulIdentifier","src":"5257:3:101"},"nativeSrc":"5257:7:101","nodeType":"YulFunctionCall","src":"5257:7:101"}],"functionName":{"name":"and","nativeSrc":"5236:3:101","nodeType":"YulIdentifier","src":"5236:3:101"},"nativeSrc":"5236:29:101","nodeType":"YulFunctionCall","src":"5236:29:101"}],"functionName":{"name":"add","nativeSrc":"5221:3:101","nodeType":"YulIdentifier","src":"5221:3:101"},"nativeSrc":"5221:45:101","nodeType":"YulFunctionCall","src":"5221:45:101"},{"kind":"number","nativeSrc":"5268:2:101","nodeType":"YulLiteral","src":"5268:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5217:3:101","nodeType":"YulIdentifier","src":"5217:3:101"},"nativeSrc":"5217:54:101","nodeType":"YulFunctionCall","src":"5217:54:101"},"variableNames":[{"name":"tail","nativeSrc":"5209:4:101","nodeType":"YulIdentifier","src":"5209:4:101"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"4859:418:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4949:9:101","nodeType":"YulTypedName","src":"4949:9:101","type":""},{"name":"value0","nativeSrc":"4960:6:101","nodeType":"YulTypedName","src":"4960:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4971:4:101","nodeType":"YulTypedName","src":"4971:4:101","type":""}],"src":"4859:418:101"},{"body":{"nativeSrc":"5376:203:101","nodeType":"YulBlock","src":"5376:203:101","statements":[{"nativeSrc":"5386:26:101","nodeType":"YulVariableDeclaration","src":"5386:26:101","value":{"arguments":[{"name":"array","nativeSrc":"5406:5:101","nodeType":"YulIdentifier","src":"5406:5:101"}],"functionName":{"name":"mload","nativeSrc":"5400:5:101","nodeType":"YulIdentifier","src":"5400:5:101"},"nativeSrc":"5400:12:101","nodeType":"YulFunctionCall","src":"5400:12:101"},"variables":[{"name":"length","nativeSrc":"5390:6:101","nodeType":"YulTypedName","src":"5390:6:101","type":""}]},{"nativeSrc":"5421:32:101","nodeType":"YulAssignment","src":"5421:32:101","value":{"arguments":[{"arguments":[{"name":"array","nativeSrc":"5440:5:101","nodeType":"YulIdentifier","src":"5440:5:101"},{"kind":"number","nativeSrc":"5447:4:101","nodeType":"YulLiteral","src":"5447:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5436:3:101","nodeType":"YulIdentifier","src":"5436:3:101"},"nativeSrc":"5436:16:101","nodeType":"YulFunctionCall","src":"5436:16:101"}],"functionName":{"name":"mload","nativeSrc":"5430:5:101","nodeType":"YulIdentifier","src":"5430:5:101"},"nativeSrc":"5430:23:101","nodeType":"YulFunctionCall","src":"5430:23:101"},"variableNames":[{"name":"value","nativeSrc":"5421:5:101","nodeType":"YulIdentifier","src":"5421:5:101"}]},{"body":{"nativeSrc":"5490:83:101","nodeType":"YulBlock","src":"5490:83:101","statements":[{"nativeSrc":"5504:59:101","nodeType":"YulAssignment","src":"5504:59:101","value":{"arguments":[{"name":"value","nativeSrc":"5517:5:101","nodeType":"YulIdentifier","src":"5517:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5532:1:101","nodeType":"YulLiteral","src":"5532:1:101","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"5539:4:101","nodeType":"YulLiteral","src":"5539:4:101","type":"","value":"0x20"},{"name":"length","nativeSrc":"5545:6:101","nodeType":"YulIdentifier","src":"5545:6:101"}],"functionName":{"name":"sub","nativeSrc":"5535:3:101","nodeType":"YulIdentifier","src":"5535:3:101"},"nativeSrc":"5535:17:101","nodeType":"YulFunctionCall","src":"5535:17:101"}],"functionName":{"name":"shl","nativeSrc":"5528:3:101","nodeType":"YulIdentifier","src":"5528:3:101"},"nativeSrc":"5528:25:101","nodeType":"YulFunctionCall","src":"5528:25:101"},{"arguments":[{"kind":"number","nativeSrc":"5559:1:101","nodeType":"YulLiteral","src":"5559:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5555:3:101","nodeType":"YulIdentifier","src":"5555:3:101"},"nativeSrc":"5555:6:101","nodeType":"YulFunctionCall","src":"5555:6:101"}],"functionName":{"name":"shl","nativeSrc":"5524:3:101","nodeType":"YulIdentifier","src":"5524:3:101"},"nativeSrc":"5524:38:101","nodeType":"YulFunctionCall","src":"5524:38:101"}],"functionName":{"name":"and","nativeSrc":"5513:3:101","nodeType":"YulIdentifier","src":"5513:3:101"},"nativeSrc":"5513:50:101","nodeType":"YulFunctionCall","src":"5513:50:101"},"variableNames":[{"name":"value","nativeSrc":"5504:5:101","nodeType":"YulIdentifier","src":"5504:5:101"}]}]},"condition":{"arguments":[{"name":"length","nativeSrc":"5468:6:101","nodeType":"YulIdentifier","src":"5468:6:101"},{"kind":"number","nativeSrc":"5476:4:101","nodeType":"YulLiteral","src":"5476:4:101","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"5465:2:101","nodeType":"YulIdentifier","src":"5465:2:101"},"nativeSrc":"5465:16:101","nodeType":"YulFunctionCall","src":"5465:16:101"},"nativeSrc":"5462:111:101","nodeType":"YulIf","src":"5462:111:101"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_memory_ptr_to_t_bytes32","nativeSrc":"5282:297:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"5356:5:101","nodeType":"YulTypedName","src":"5356:5:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"5366:5:101","nodeType":"YulTypedName","src":"5366:5:101","type":""}],"src":"5282:297:101"},{"body":{"nativeSrc":"5632:174:101","nodeType":"YulBlock","src":"5632:174:101","statements":[{"nativeSrc":"5642:16:101","nodeType":"YulAssignment","src":"5642:16:101","value":{"arguments":[{"name":"x","nativeSrc":"5653:1:101","nodeType":"YulIdentifier","src":"5653:1:101"},{"name":"y","nativeSrc":"5656:1:101","nodeType":"YulIdentifier","src":"5656:1:101"}],"functionName":{"name":"add","nativeSrc":"5649:3:101","nodeType":"YulIdentifier","src":"5649:3:101"},"nativeSrc":"5649:9:101","nodeType":"YulFunctionCall","src":"5649:9:101"},"variableNames":[{"name":"sum","nativeSrc":"5642:3:101","nodeType":"YulIdentifier","src":"5642:3:101"}]},{"body":{"nativeSrc":"5689:111:101","nodeType":"YulBlock","src":"5689:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5710:1:101","nodeType":"YulLiteral","src":"5710:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5717:3:101","nodeType":"YulLiteral","src":"5717:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"5722:10:101","nodeType":"YulLiteral","src":"5722:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5713:3:101","nodeType":"YulIdentifier","src":"5713:3:101"},"nativeSrc":"5713:20:101","nodeType":"YulFunctionCall","src":"5713:20:101"}],"functionName":{"name":"mstore","nativeSrc":"5703:6:101","nodeType":"YulIdentifier","src":"5703:6:101"},"nativeSrc":"5703:31:101","nodeType":"YulFunctionCall","src":"5703:31:101"},"nativeSrc":"5703:31:101","nodeType":"YulExpressionStatement","src":"5703:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5754:1:101","nodeType":"YulLiteral","src":"5754:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"5757:4:101","nodeType":"YulLiteral","src":"5757:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"5747:6:101","nodeType":"YulIdentifier","src":"5747:6:101"},"nativeSrc":"5747:15:101","nodeType":"YulFunctionCall","src":"5747:15:101"},"nativeSrc":"5747:15:101","nodeType":"YulExpressionStatement","src":"5747:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5782:1:101","nodeType":"YulLiteral","src":"5782:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5785:4:101","nodeType":"YulLiteral","src":"5785:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5775:6:101","nodeType":"YulIdentifier","src":"5775:6:101"},"nativeSrc":"5775:15:101","nodeType":"YulFunctionCall","src":"5775:15:101"},"nativeSrc":"5775:15:101","nodeType":"YulExpressionStatement","src":"5775:15:101"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"5673:1:101","nodeType":"YulIdentifier","src":"5673:1:101"},{"name":"sum","nativeSrc":"5676:3:101","nodeType":"YulIdentifier","src":"5676:3:101"}],"functionName":{"name":"gt","nativeSrc":"5670:2:101","nodeType":"YulIdentifier","src":"5670:2:101"},"nativeSrc":"5670:10:101","nodeType":"YulFunctionCall","src":"5670:10:101"},"nativeSrc":"5667:133:101","nodeType":"YulIf","src":"5667:133:101"}]},"name":"checked_add_t_uint256","nativeSrc":"5584:222:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"5615:1:101","nodeType":"YulTypedName","src":"5615:1:101","type":""},{"name":"y","nativeSrc":"5618:1:101","nodeType":"YulTypedName","src":"5618:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"5624:3:101","nodeType":"YulTypedName","src":"5624:3:101","type":""}],"src":"5584:222:101"},{"body":{"nativeSrc":"5968:188:101","nodeType":"YulBlock","src":"5968:188:101","statements":[{"nativeSrc":"5978:26:101","nodeType":"YulAssignment","src":"5978:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5990:9:101","nodeType":"YulIdentifier","src":"5990:9:101"},{"kind":"number","nativeSrc":"6001:2:101","nodeType":"YulLiteral","src":"6001:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5986:3:101","nodeType":"YulIdentifier","src":"5986:3:101"},"nativeSrc":"5986:18:101","nodeType":"YulFunctionCall","src":"5986:18:101"},"variableNames":[{"name":"tail","nativeSrc":"5978:4:101","nodeType":"YulIdentifier","src":"5978:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6020:9:101","nodeType":"YulIdentifier","src":"6020:9:101"},{"arguments":[{"name":"value0","nativeSrc":"6035:6:101","nodeType":"YulIdentifier","src":"6035:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6051:3:101","nodeType":"YulLiteral","src":"6051:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"6056:1:101","nodeType":"YulLiteral","src":"6056:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6047:3:101","nodeType":"YulIdentifier","src":"6047:3:101"},"nativeSrc":"6047:11:101","nodeType":"YulFunctionCall","src":"6047:11:101"},{"kind":"number","nativeSrc":"6060:1:101","nodeType":"YulLiteral","src":"6060:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6043:3:101","nodeType":"YulIdentifier","src":"6043:3:101"},"nativeSrc":"6043:19:101","nodeType":"YulFunctionCall","src":"6043:19:101"}],"functionName":{"name":"and","nativeSrc":"6031:3:101","nodeType":"YulIdentifier","src":"6031:3:101"},"nativeSrc":"6031:32:101","nodeType":"YulFunctionCall","src":"6031:32:101"}],"functionName":{"name":"mstore","nativeSrc":"6013:6:101","nodeType":"YulIdentifier","src":"6013:6:101"},"nativeSrc":"6013:51:101","nodeType":"YulFunctionCall","src":"6013:51:101"},"nativeSrc":"6013:51:101","nodeType":"YulExpressionStatement","src":"6013:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6084:9:101","nodeType":"YulIdentifier","src":"6084:9:101"},{"kind":"number","nativeSrc":"6095:2:101","nodeType":"YulLiteral","src":"6095:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6080:3:101","nodeType":"YulIdentifier","src":"6080:3:101"},"nativeSrc":"6080:18:101","nodeType":"YulFunctionCall","src":"6080:18:101"},{"name":"value1","nativeSrc":"6100:6:101","nodeType":"YulIdentifier","src":"6100:6:101"}],"functionName":{"name":"mstore","nativeSrc":"6073:6:101","nodeType":"YulIdentifier","src":"6073:6:101"},"nativeSrc":"6073:34:101","nodeType":"YulFunctionCall","src":"6073:34:101"},"nativeSrc":"6073:34:101","nodeType":"YulExpressionStatement","src":"6073:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6127:9:101","nodeType":"YulIdentifier","src":"6127:9:101"},{"kind":"number","nativeSrc":"6138:2:101","nodeType":"YulLiteral","src":"6138:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6123:3:101","nodeType":"YulIdentifier","src":"6123:3:101"},"nativeSrc":"6123:18:101","nodeType":"YulFunctionCall","src":"6123:18:101"},{"name":"value2","nativeSrc":"6143:6:101","nodeType":"YulIdentifier","src":"6143:6:101"}],"functionName":{"name":"mstore","nativeSrc":"6116:6:101","nodeType":"YulIdentifier","src":"6116:6:101"},"nativeSrc":"6116:34:101","nodeType":"YulFunctionCall","src":"6116:34:101"},"nativeSrc":"6116:34:101","nodeType":"YulExpressionStatement","src":"6116:34:101"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"5811:345:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5921:9:101","nodeType":"YulTypedName","src":"5921:9:101","type":""},{"name":"value2","nativeSrc":"5932:6:101","nodeType":"YulTypedName","src":"5932:6:101","type":""},{"name":"value1","nativeSrc":"5940:6:101","nodeType":"YulTypedName","src":"5940:6:101","type":""},{"name":"value0","nativeSrc":"5948:6:101","nodeType":"YulTypedName","src":"5948:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5959:4:101","nodeType":"YulTypedName","src":"5959:4:101","type":""}],"src":"5811:345:101"},{"body":{"nativeSrc":"6262:76:101","nodeType":"YulBlock","src":"6262:76:101","statements":[{"nativeSrc":"6272:26:101","nodeType":"YulAssignment","src":"6272:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6284:9:101","nodeType":"YulIdentifier","src":"6284:9:101"},{"kind":"number","nativeSrc":"6295:2:101","nodeType":"YulLiteral","src":"6295:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6280:3:101","nodeType":"YulIdentifier","src":"6280:3:101"},"nativeSrc":"6280:18:101","nodeType":"YulFunctionCall","src":"6280:18:101"},"variableNames":[{"name":"tail","nativeSrc":"6272:4:101","nodeType":"YulIdentifier","src":"6272:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6314:9:101","nodeType":"YulIdentifier","src":"6314:9:101"},{"name":"value0","nativeSrc":"6325:6:101","nodeType":"YulIdentifier","src":"6325:6:101"}],"functionName":{"name":"mstore","nativeSrc":"6307:6:101","nodeType":"YulIdentifier","src":"6307:6:101"},"nativeSrc":"6307:25:101","nodeType":"YulFunctionCall","src":"6307:25:101"},"nativeSrc":"6307:25:101","nodeType":"YulExpressionStatement","src":"6307:25:101"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"6161:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6231:9:101","nodeType":"YulTypedName","src":"6231:9:101","type":""},{"name":"value0","nativeSrc":"6242:6:101","nodeType":"YulTypedName","src":"6242:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6253:4:101","nodeType":"YulTypedName","src":"6253:4:101","type":""}],"src":"6161:177:101"}]},"contents":"{\n    { }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let length := mload(offset)\n        if gt(length, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(length, 0x1f), not(31)), 63), not(31)))\n        if or(gt(newFreePtr, sub(shl(64, 1), 1)), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, length)\n        if gt(add(add(offset, length), 0x20), end) { revert(0, 0) }\n        mcopy(add(memPtr, 0x20), add(offset, 0x20), length)\n        mstore(add(add(memPtr, length), 0x20), 0)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint8_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, sub(shl(64, 1), 1)) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, sub(shl(64, 1), 1)) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        value2 := mload(add(headStart, 64))\n        let value := mload(add(headStart, 96))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value3 := value\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function array_dataslot_string_storage(ptr) -> data\n    {\n        mstore(0, ptr)\n        data := keccak256(0, 0x20)\n    }\n    function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n    {\n        if gt(len, 31)\n        {\n            mstore(0, array)\n            let data := keccak256(0, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _1 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _1) { start := add(start, 1) }\n            { sstore(start, 0) }\n        }\n    }\n    function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used\n    {\n        used := or(and(data, not(shr(shl(3, len), not(0)))), shl(1, len))\n    }\n    function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src)\n    {\n        let newLen := mload(src)\n        if gt(newLen, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), newLen)\n        let srcOffset := 0\n        srcOffset := 0x20\n        switch gt(newLen, 31)\n        case 1 {\n            let loopEnd := and(newLen, not(31))\n            let dstPtr := array_dataslot_string_storage(slot)\n            let i := 0\n            for { } lt(i, loopEnd) { i := add(i, 0x20) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, 0x20)\n            }\n            if lt(loopEnd, newLen)\n            {\n                let lastValue := mload(add(src, srcOffset))\n                sstore(dstPtr, and(lastValue, not(shr(and(shl(3, newLen), 248), not(0)))))\n            }\n            sstore(slot, add(shl(1, newLen), 1))\n        }\n        default {\n            let value := 0\n            if newLen\n            {\n                value := mload(add(src, srcOffset))\n            }\n            sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n        }\n    }\n    function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        mcopy(add(headStart, 64), add(value0, 32), length)\n        mstore(add(add(headStart, length), 64), 0)\n        tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_memory_ptr_to_t_bytes32(array) -> value\n    {\n        let length := mload(array)\n        value := mload(add(array, 0x20))\n        if lt(length, 0x20)\n        {\n            value := and(value, shl(shl(3, sub(0x20, length)), not(0)))\n        }\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"610180604052348015610010575f5ffd5b506040516115be3803806115be83398101604081905261002f916103a5565b6040805180820190915260018152603160f81b6020820152849081908186600361005983826104ae565b50600461006682826104ae565b5061007691508390506005610136565b61012052610085816006610136565b61014052815160208084019190912060e052815190820120610100524660a05261011160e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b60805250503060c0525060ff81166101605261012d3383610168565b505050506105df565b5f6020835110156101515761014a836101a5565b9050610162565b8161015c84826104ae565b5060ff90505b92915050565b6001600160a01b0382166101965760405163ec442f0560e01b81525f60048201526024015b60405180910390fd5b6101a15f83836101e2565b5050565b5f5f829050601f815111156101cf578260405163305a27a960e01b815260040161018d9190610568565b80516101da8261059d565b179392505050565b6001600160a01b03831661020c578060025f82825461020191906105c0565b9091555061027c9050565b6001600160a01b0383165f908152602081905260409020548181101561025e5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161018d565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610298576002805482900390556102b6565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516102fb91815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011261032b575f5ffd5b81516001600160401b0381111561034457610344610308565b604051601f8201601f19908116603f011681016001600160401b038111828210171561037257610372610308565b604052818152838201602001851015610389575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f5f5f5f608085870312156103b8575f5ffd5b84516001600160401b038111156103cd575f5ffd5b6103d98782880161031c565b602087015190955090506001600160401b038111156103f6575f5ffd5b6104028782880161031c565b93505060408501519150606085015160ff8116811461041f575f5ffd5b939692955090935050565b600181811c9082168061043e57607f821691505b60208210810361045c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156104a957805f5260205f20601f840160051c810160208510156104875750805b601f840160051c820191505b818110156104a6575f8155600101610493565b50505b505050565b81516001600160401b038111156104c7576104c7610308565b6104db816104d5845461042a565b84610462565b6020601f82116001811461050d575f83156104f65750848201515b5f19600385901b1c1916600184901b1784556104a6565b5f84815260208120601f198516915b8281101561053c578785015182556020948501946001909201910161051c565b508482101561055957868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b8051602080830151919081101561045c575f1960209190910360031b1b16919050565b8082018082111561016257634e487b7160e01b5f52601160045260245ffd5b60805160a05160c05160e05161010051610120516101405161016051610f8461063a5f395f61016101525f61079b01525f61076e01525f6106e301525f6106bb01525f61061601525f61064001525f61066a0152610f845ff3fe608060405234801561000f575f5ffd5b50600436106100f0575f3560e01c806370a08231116100935780639dc29fac116100635780639dc29fac14610206578063a9059cbb14610219578063d505accf1461022c578063dd62ed3e1461023f575f5ffd5b806370a08231146101a85780637ecebe00146101d057806384b0196e146101e357806395d89b41146101fe575f5ffd5b806323b872dd116100ce57806323b872dd14610147578063313ce5671461015a5780633644e5151461018b57806340c10f1914610193575f5ffd5b806306fdde03146100f4578063095ea7b31461011257806318160ddd14610135575b5f5ffd5b6100fc610277565b6040516101099190610d00565b60405180910390f35b610125610120366004610d34565b610307565b6040519015158152602001610109565b6002545b604051908152602001610109565b610125610155366004610d5c565b610320565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610109565b610139610343565b6101a66101a1366004610d34565b610351565b005b6101396101b6366004610d96565b6001600160a01b03165f9081526020819052604090205490565b6101396101de366004610d96565b61035f565b6101eb61037c565b6040516101099796959493929190610daf565b6100fc6103be565b6101a6610214366004610d34565b6103cd565b610125610227366004610d34565b6103d7565b6101a661023a366004610e45565b6103e4565b61013961024d366004610eb2565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b60606003805461028690610ee3565b80601f01602080910402602001604051908101604052809291908181526020018280546102b290610ee3565b80156102fd5780601f106102d4576101008083540402835291602001916102fd565b820191905f5260205f20905b8154815290600101906020018083116102e057829003601f168201915b5050505050905090565b5f3361031481858561051f565b60019150505b92915050565b5f3361032d858285610531565b6103388585856105ad565b506001949350505050565b5f61034c61060a565b905090565b61035b8282610733565b5050565b6001600160a01b0381165f9081526007602052604081205461031a565b5f6060805f5f5f606061038d610767565b610395610794565b604080515f80825260208201909252600f60f81b9b939a50919850469750309650945092509050565b60606004805461028690610ee3565b61035b82826107c1565b5f336103148185856105ad565b8342111561040d5760405163313c898160e11b8152600481018590526024015b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886104588c6001600160a01b03165f90815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090505f6104b2826107f5565b90505f6104c182878787610821565b9050896001600160a01b0316816001600160a01b031614610508576040516325c0072360e11b81526001600160a01b0380831660048301528b166024820152604401610404565b6105138a8a8a61051f565b50505050505050505050565b61052c838383600161084d565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198110156105a7578181101561059957604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610404565b6105a784848484035f61084d565b50505050565b6001600160a01b0383166105d657604051634b637e8f60e11b81525f6004820152602401610404565b6001600160a01b0382166105ff5760405163ec442f0560e01b81525f6004820152602401610404565b61052c83838361091f565b5f306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561066257507f000000000000000000000000000000000000000000000000000000000000000046145b1561068c57507f000000000000000000000000000000000000000000000000000000000000000090565b61034c604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b6001600160a01b03821661075c5760405163ec442f0560e01b81525f6004820152602401610404565b61035b5f838361091f565b606061034c7f00000000000000000000000000000000000000000000000000000000000000006005610a45565b606061034c7f00000000000000000000000000000000000000000000000000000000000000006006610a45565b6001600160a01b0382166107ea57604051634b637e8f60e11b81525f6004820152602401610404565b61035b825f8361091f565b5f61031a61080161060a565b8360405161190160f01b8152600281019290925260228201526042902090565b5f5f5f5f61083188888888610aee565b9250925092506108418282610bb6565b50909695505050505050565b6001600160a01b0384166108765760405163e602df0560e01b81525f6004820152602401610404565b6001600160a01b03831661089f57604051634a1406b160e11b81525f6004820152602401610404565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156105a757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161091191815260200190565b60405180910390a350505050565b6001600160a01b038316610949578060025f82825461093e9190610f1b565b909155506109b99050565b6001600160a01b0383165f908152602081905260409020548181101561099b5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610404565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166109d5576002805482900390556109f3565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a3891815260200190565b60405180910390a3505050565b606060ff8314610a5f57610a5883610c6e565b905061031a565b818054610a6b90610ee3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9790610ee3565b8015610ae25780601f10610ab957610100808354040283529160200191610ae2565b820191905f5260205f20905b815481529060010190602001808311610ac557829003601f168201915b5050505050905061031a565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610b2757505f91506003905082610bac565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610b78573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b038116610ba357505f925060019150829050610bac565b92505f91508190505b9450945094915050565b5f826003811115610bc957610bc9610f3a565b03610bd2575050565b6001826003811115610be657610be6610f3a565b03610c045760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610c1857610c18610f3a565b03610c395760405163fce698f760e01b815260048101829052602401610404565b6003826003811115610c4d57610c4d610f3a565b0361035b576040516335e2f38360e21b815260048101829052602401610404565b60605f610c7a83610cab565b6040805160208082528183019092529192505f91906020820181803683375050509182525060208101929092525090565b5f60ff8216601f81111561031a57604051632cd44ac360e21b815260040160405180910390fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610d126020830184610cd2565b9392505050565b80356001600160a01b0381168114610d2f575f5ffd5b919050565b5f5f60408385031215610d45575f5ffd5b610d4e83610d19565b946020939093013593505050565b5f5f5f60608486031215610d6e575f5ffd5b610d7784610d19565b9250610d8560208501610d19565b929592945050506040919091013590565b5f60208284031215610da6575f5ffd5b610d1282610d19565b60ff60f81b8816815260e060208201525f610dcd60e0830189610cd2565b8281036040840152610ddf8189610cd2565b606084018890526001600160a01b038716608085015260a0840186905283810360c0850152845180825260208087019350909101905f5b81811015610e34578351835260209384019390920191600101610e16565b50909b9a5050505050505050505050565b5f5f5f5f5f5f5f60e0888a031215610e5b575f5ffd5b610e6488610d19565b9650610e7260208901610d19565b95506040880135945060608801359350608088013560ff81168114610e95575f5ffd5b9699959850939692959460a0840135945060c09093013592915050565b5f5f60408385031215610ec3575f5ffd5b610ecc83610d19565b9150610eda60208401610d19565b90509250929050565b600181811c90821680610ef757607f821691505b602082108103610f1557634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561031a57634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52602160045260245ffdfea2646970667358221220a4742aa022dfd5f33a4fd7c3dbb17481d80781a6308245255ade412099703f4064736f6c634300081e0033","opcodes":"PUSH2 0x180 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x15BE CODESIZE SUB DUP1 PUSH2 0x15BE DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2F SWAP2 PUSH2 0x3A5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1 DUP2 MSTORE PUSH1 0x31 PUSH1 0xF8 SHL PUSH1 0x20 DUP3 ADD MSTORE DUP5 SWAP1 DUP2 SWAP1 DUP2 DUP7 PUSH1 0x3 PUSH2 0x59 DUP4 DUP3 PUSH2 0x4AE JUMP JUMPDEST POP PUSH1 0x4 PUSH2 0x66 DUP3 DUP3 PUSH2 0x4AE JUMP JUMPDEST POP PUSH2 0x76 SWAP2 POP DUP4 SWAP1 POP PUSH1 0x5 PUSH2 0x136 JUMP JUMPDEST PUSH2 0x120 MSTORE PUSH2 0x85 DUP2 PUSH1 0x6 PUSH2 0x136 JUMP JUMPDEST PUSH2 0x140 MSTORE DUP2 MLOAD PUSH1 0x20 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 KECCAK256 PUSH1 0xE0 MSTORE DUP2 MLOAD SWAP1 DUP3 ADD KECCAK256 PUSH2 0x100 MSTORE CHAINID PUSH1 0xA0 MSTORE PUSH2 0x111 PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0xC0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x80 MSTORE POP POP ADDRESS PUSH1 0xC0 MSTORE POP PUSH1 0xFF DUP2 AND PUSH2 0x160 MSTORE PUSH2 0x12D CALLER DUP4 PUSH2 0x168 JUMP JUMPDEST POP POP POP POP PUSH2 0x5DF JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP4 MLOAD LT ISZERO PUSH2 0x151 JUMPI PUSH2 0x14A DUP4 PUSH2 0x1A5 JUMP JUMPDEST SWAP1 POP PUSH2 0x162 JUMP JUMPDEST DUP2 PUSH2 0x15C DUP5 DUP3 PUSH2 0x4AE JUMP JUMPDEST POP PUSH1 0xFF SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x196 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1A1 PUSH0 DUP4 DUP4 PUSH2 0x1E2 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP3 SWAP1 POP PUSH1 0x1F DUP2 MLOAD GT ISZERO PUSH2 0x1CF JUMPI DUP3 PUSH1 0x40 MLOAD PUSH4 0x305A27A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18D SWAP2 SWAP1 PUSH2 0x568 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x1DA DUP3 PUSH2 0x59D JUMP JUMPDEST OR SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x20C JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x201 SWAP2 SWAP1 PUSH2 0x5C0 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x27C SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x25E JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x18D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x298 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x2B6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x2FB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x32B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x344 JUMPI PUSH2 0x344 PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x372 JUMPI PUSH2 0x372 PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP4 DUP3 ADD PUSH1 0x20 ADD DUP6 LT ISZERO PUSH2 0x389 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP6 ADD PUSH1 0x20 DUP4 ADD MCOPY PUSH0 SWAP2 DUP2 ADD PUSH1 0x20 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x3B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3CD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x3D9 DUP8 DUP3 DUP9 ADD PUSH2 0x31C JUMP JUMPDEST PUSH1 0x20 DUP8 ADD MLOAD SWAP1 SWAP6 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x402 DUP8 DUP3 DUP9 ADD PUSH2 0x31C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 DUP6 ADD MLOAD SWAP2 POP PUSH1 0x60 DUP6 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x41F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x43E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x45C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x4A9 JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x487 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x4A6 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x493 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4C7 JUMPI PUSH2 0x4C7 PUSH2 0x308 JUMP JUMPDEST PUSH2 0x4DB DUP2 PUSH2 0x4D5 DUP5 SLOAD PUSH2 0x42A JUMP JUMPDEST DUP5 PUSH2 0x462 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x50D JUMPI PUSH0 DUP4 ISZERO PUSH2 0x4F6 JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x4A6 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x53C JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x51C JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x559 JUMPI DUP7 DUP5 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP1 DUP4 ADD MLOAD SWAP2 SWAP1 DUP2 LT ISZERO PUSH2 0x45C JUMPI PUSH0 NOT PUSH1 0x20 SWAP2 SWAP1 SWAP2 SUB PUSH1 0x3 SHL SHL AND SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x162 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH2 0x120 MLOAD PUSH2 0x140 MLOAD PUSH2 0x160 MLOAD PUSH2 0xF84 PUSH2 0x63A PUSH0 CODECOPY PUSH0 PUSH2 0x161 ADD MSTORE PUSH0 PUSH2 0x79B ADD MSTORE PUSH0 PUSH2 0x76E ADD MSTORE PUSH0 PUSH2 0x6E3 ADD MSTORE PUSH0 PUSH2 0x6BB ADD MSTORE PUSH0 PUSH2 0x616 ADD MSTORE PUSH0 PUSH2 0x640 ADD MSTORE PUSH0 PUSH2 0x66A ADD MSTORE PUSH2 0xF84 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xF0 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x93 JUMPI DUP1 PUSH4 0x9DC29FAC GT PUSH2 0x63 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x206 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x219 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x22C JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x23F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1A8 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x1D0 JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x1E3 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xCE JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x147 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x15A JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x18B JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x193 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xF4 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x112 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x135 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xFC PUSH2 0x277 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x109 SWAP2 SWAP1 PUSH2 0xD00 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x125 PUSH2 0x120 CALLDATASIZE PUSH1 0x4 PUSH2 0xD34 JUMP JUMPDEST PUSH2 0x307 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x109 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x109 JUMP JUMPDEST PUSH2 0x125 PUSH2 0x155 CALLDATASIZE PUSH1 0x4 PUSH2 0xD5C JUMP JUMPDEST PUSH2 0x320 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x109 JUMP JUMPDEST PUSH2 0x139 PUSH2 0x343 JUMP JUMPDEST PUSH2 0x1A6 PUSH2 0x1A1 CALLDATASIZE PUSH1 0x4 PUSH2 0xD34 JUMP JUMPDEST PUSH2 0x351 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x139 PUSH2 0x1B6 CALLDATASIZE PUSH1 0x4 PUSH2 0xD96 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x139 PUSH2 0x1DE CALLDATASIZE PUSH1 0x4 PUSH2 0xD96 JUMP JUMPDEST PUSH2 0x35F JUMP JUMPDEST PUSH2 0x1EB PUSH2 0x37C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x109 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xDAF JUMP JUMPDEST PUSH2 0xFC PUSH2 0x3BE JUMP JUMPDEST PUSH2 0x1A6 PUSH2 0x214 CALLDATASIZE PUSH1 0x4 PUSH2 0xD34 JUMP JUMPDEST PUSH2 0x3CD JUMP JUMPDEST PUSH2 0x125 PUSH2 0x227 CALLDATASIZE PUSH1 0x4 PUSH2 0xD34 JUMP JUMPDEST PUSH2 0x3D7 JUMP JUMPDEST PUSH2 0x1A6 PUSH2 0x23A CALLDATASIZE PUSH1 0x4 PUSH2 0xE45 JUMP JUMPDEST PUSH2 0x3E4 JUMP JUMPDEST PUSH2 0x139 PUSH2 0x24D CALLDATASIZE PUSH1 0x4 PUSH2 0xEB2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x286 SWAP1 PUSH2 0xEE3 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2B2 SWAP1 PUSH2 0xEE3 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2FD JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2FD JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2E0 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x314 DUP2 DUP6 DUP6 PUSH2 0x51F JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x32D DUP6 DUP3 DUP6 PUSH2 0x531 JUMP JUMPDEST PUSH2 0x338 DUP6 DUP6 DUP6 PUSH2 0x5AD JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x34C PUSH2 0x60A JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x35B DUP3 DUP3 PUSH2 0x733 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x31A JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP1 PUSH0 PUSH0 PUSH0 PUSH1 0x60 PUSH2 0x38D PUSH2 0x767 JUMP JUMPDEST PUSH2 0x395 PUSH2 0x794 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0xF PUSH1 0xF8 SHL SWAP12 SWAP4 SWAP11 POP SWAP2 SWAP9 POP CHAINID SWAP8 POP ADDRESS SWAP7 POP SWAP5 POP SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x286 SWAP1 PUSH2 0xEE3 JUMP JUMPDEST PUSH2 0x35B DUP3 DUP3 PUSH2 0x7C1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x314 DUP2 DUP6 DUP6 PUSH2 0x5AD JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x40D JUMPI PUSH1 0x40 MLOAD PUSH4 0x313C8981 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0x458 DUP13 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH0 PUSH2 0x4B2 DUP3 PUSH2 0x7F5 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x4C1 DUP3 DUP8 DUP8 DUP8 PUSH2 0x821 JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x508 JUMPI PUSH1 0x40 MLOAD PUSH4 0x25C00723 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x4 DUP4 ADD MSTORE DUP12 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x404 JUMP JUMPDEST PUSH2 0x513 DUP11 DUP11 DUP11 PUSH2 0x51F JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x52C DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x84D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH0 NOT DUP2 LT ISZERO PUSH2 0x5A7 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x599 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x404 JUMP JUMPDEST PUSH2 0x5A7 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x84D JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x5D6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x404 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5FF JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x404 JUMP JUMPDEST PUSH2 0x52C DUP4 DUP4 DUP4 PUSH2 0x91F JUMP JUMPDEST PUSH0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0x662 JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0x68C JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x34C PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x0 SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0xC0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x75C JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x404 JUMP JUMPDEST PUSH2 0x35B PUSH0 DUP4 DUP4 PUSH2 0x91F JUMP JUMPDEST PUSH1 0x60 PUSH2 0x34C PUSH32 0x0 PUSH1 0x5 PUSH2 0xA45 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x34C PUSH32 0x0 PUSH1 0x6 PUSH2 0xA45 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x7EA JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x404 JUMP JUMPDEST PUSH2 0x35B DUP3 PUSH0 DUP4 PUSH2 0x91F JUMP JUMPDEST PUSH0 PUSH2 0x31A PUSH2 0x801 PUSH2 0x60A JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH2 0x1901 PUSH1 0xF0 SHL DUP2 MSTORE PUSH1 0x2 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x22 DUP3 ADD MSTORE PUSH1 0x42 SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x831 DUP9 DUP9 DUP9 DUP9 PUSH2 0xAEE JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x841 DUP3 DUP3 PUSH2 0xBB6 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x876 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x404 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x89F JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x404 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0x5A7 JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x911 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x949 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x93E SWAP2 SWAP1 PUSH2 0xF1B JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x9B9 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x99B JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x404 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9D5 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x9F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xA38 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0xFF DUP4 EQ PUSH2 0xA5F JUMPI PUSH2 0xA58 DUP4 PUSH2 0xC6E JUMP JUMPDEST SWAP1 POP PUSH2 0x31A JUMP JUMPDEST DUP2 DUP1 SLOAD PUSH2 0xA6B SWAP1 PUSH2 0xEE3 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xA97 SWAP1 PUSH2 0xEE3 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xAE2 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xAB9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xAE2 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xAC5 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH2 0x31A JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0xB27 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0xBAC JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB78 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xBA3 JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0xBAC JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xBC9 JUMPI PUSH2 0xBC9 PUSH2 0xF3A JUMP JUMPDEST SUB PUSH2 0xBD2 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xBE6 JUMPI PUSH2 0xBE6 PUSH2 0xF3A JUMP JUMPDEST SUB PUSH2 0xC04 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xC18 JUMPI PUSH2 0xC18 PUSH2 0xF3A JUMP JUMPDEST SUB PUSH2 0xC39 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x404 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xC4D JUMPI PUSH2 0xC4D PUSH2 0xF3A JUMP JUMPDEST SUB PUSH2 0x35B JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x404 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0xC7A DUP4 PUSH2 0xCAB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE SWAP2 SWAP3 POP PUSH0 SWAP2 SWAP1 PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP POP POP SWAP2 DUP3 MSTORE POP PUSH1 0x20 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND PUSH1 0x1F DUP2 GT ISZERO PUSH2 0x31A JUMPI PUSH1 0x40 MLOAD PUSH4 0x2CD44AC3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP1 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP7 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0xD12 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xCD2 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD2F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xD4E DUP4 PUSH2 0xD19 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xD6E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xD77 DUP5 PUSH2 0xD19 JUMP JUMPDEST SWAP3 POP PUSH2 0xD85 PUSH1 0x20 DUP6 ADD PUSH2 0xD19 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDA6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xD12 DUP3 PUSH2 0xD19 JUMP JUMPDEST PUSH1 0xFF PUSH1 0xF8 SHL DUP9 AND DUP2 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0xDCD PUSH1 0xE0 DUP4 ADD DUP10 PUSH2 0xCD2 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0xDDF DUP2 DUP10 PUSH2 0xCD2 JUMP JUMPDEST PUSH1 0x60 DUP5 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD DUP7 SWAP1 MSTORE DUP4 DUP2 SUB PUSH1 0xC0 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP8 ADD SWAP4 POP SWAP1 SWAP2 ADD SWAP1 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xE34 JUMPI DUP4 MLOAD DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0xE16 JUMP JUMPDEST POP SWAP1 SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0xE5B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xE64 DUP9 PUSH2 0xD19 JUMP JUMPDEST SWAP7 POP PUSH2 0xE72 PUSH1 0x20 DUP10 ADD PUSH2 0xD19 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0xE95 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEC3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xECC DUP4 PUSH2 0xD19 JUMP JUMPDEST SWAP2 POP PUSH2 0xEDA PUSH1 0x20 DUP5 ADD PUSH2 0xD19 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xEF7 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xF15 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x31A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG4 PUSH21 0x2AA022DFD5F33A4FD7C3DBB17481D80781A6308245 0x25 GAS 0xDE COINBASE KECCAK256 SWAP10 PUSH17 0x3F4064736F6C634300081E003300000000 ","sourceMap":"225:631:5:-:0;;;311:227;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3428:431:58;;;;;;;;;;;;-1:-1:-1;;;3428:431:58;;;;461:5:5;;;;;440:7;1648:5:34;:13;461:5:5;1648::34;:13;:::i;:::-;-1:-1:-1;1671:7:34;:17;1681:7;1671;:17;:::i;:::-;-1:-1:-1;3501:45:58;;-1:-1:-1;3501:4:58;;-1:-1:-1;3532:13:58;3501:30;:45::i;:::-;3493:53;;3567:51;:7;3601:16;3567:33;:51::i;:::-;3556:62;;3642:22;;;;;;;;;;3628:36;;3691:25;;;;;;3674:42;;3744:13;3727:30;;3792:23;4326:11;;4339:14;;4304:80;;;2079:95;4304:80;;;4416:25:101;4457:18;;;4450:34;;;;4500:18;;;4493:34;4355:13:58;4543:18:101;;;4536:34;4378:4:58;4586:19:101;;;4579:61;4268:7:58;;4388:19:101;;4304:80:58;;;;;;;;;;;;4294:91;;;;;;4287:98;;4213:179;;3792:23;3767:48;;-1:-1:-1;;3847:4:58;3825:27;;-1:-1:-1;474:21:5::2;::::0;::::2;;::::0;501:32:::2;507:10;519:13:::0;501:5:::2;:32::i;:::-;311:227:::0;;;;225:631;;2893:342:54;2989:11;3038:4;3022:5;3016:19;:26;3012:217;;;3065:20;3079:5;3065:13;:20::i;:::-;3058:27;;;;3012:217;3142:5;3116:46;3157:5;3142;3116:46;:::i;:::-;-1:-1:-1;1390:66:54;;-1:-1:-1;3012:217:54;2893:342;;;;:::o;7362:208:34:-;-1:-1:-1;;;;;7432:21:34;;7428:91;;7476:32;;-1:-1:-1;;;7476:32:34;;7505:1;7476:32;;;4797:51:101;4770:18;;7476:32:34;;;;;;;;7428:91;7528:35;7544:1;7548:7;7557:5;7528:7;:35::i;:::-;7362:208;;:::o;1708:288:54:-;1773:11;1796:17;1822:3;1796:30;;1854:4;1840;:11;:18;1836:74;;;1895:3;1881:18;;-1:-1:-1;;;1881:18:54;;;;;;;;:::i;1836:74::-;1976:11;;1959:13;1976:4;1959:13;:::i;:::-;1951:36;;1708:288;-1:-1:-1;;;1708:288:54:o;5912:1107:34:-;-1:-1:-1;;;;;6001:18:34;;5997:540;;6153:5;6137:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;5997:540:34;;-1:-1:-1;5997:540:34;;-1:-1:-1;;;;;6211:15:34;;6189:19;6211:15;;;;;;;;;;;6244:19;;;6240:115;;;6290:50;;-1:-1:-1;;;6290:50:34;;-1:-1:-1;;;;;6031:32:101;;6290:50:34;;;6013:51:101;6080:18;;;6073:34;;;6123:18;;;6116:34;;;5986:18;;6290:50:34;5811:345:101;6240:115:34;-1:-1:-1;;;;;6475:15:34;;:9;:15;;;;;;;;;;6493:19;;;;6475:37;;5997:540;-1:-1:-1;;;;;6551:16:34;;6547:425;;6714:12;:21;;;;;;;6547:425;;;-1:-1:-1;;;;;6925:13:34;;:9;:13;;;;;;;;;;:22;;;;;;6547:425;7002:2;-1:-1:-1;;;;;6987:25:34;6996:4;-1:-1:-1;;;;;6987:25:34;;7006:5;6987:25;;;;6307::101;;6295:2;6280:18;;6161:177;6987:25:34;;;;;;;;5912:1107;;;:::o;14:127:101:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:723;200:5;253:3;246:4;238:6;234:17;230:27;220:55;;271:1;268;261:12;220:55;298:13;;-1:-1:-1;;;;;323:30:101;;320:56;;;356:18;;:::i;:::-;405:2;399:9;497:2;459:17;;-1:-1:-1;;455:31:101;;;488:2;451:40;447:54;435:67;;-1:-1:-1;;;;;517:34:101;;553:22;;;514:62;511:88;;;579:18;;:::i;:::-;615:2;608:22;639;;;680:19;;;701:4;676:30;673:39;-1:-1:-1;670:59:101;;;725:1;722;715:12;670:59;782:6;775:4;767:6;763:17;756:4;748:6;744:17;738:51;837:1;809:19;;;830:4;805:30;798:41;;;;813:6;146:723;-1:-1:-1;;;146:723:101:o;874:769::-;989:6;997;1005;1013;1066:3;1054:9;1045:7;1041:23;1037:33;1034:53;;;1083:1;1080;1073:12;1034:53;1110:16;;-1:-1:-1;;;;;1138:30:101;;1135:50;;;1181:1;1178;1171:12;1135:50;1204:61;1257:7;1248:6;1237:9;1233:22;1204:61;:::i;:::-;1311:2;1296:18;;1290:25;1194:71;;-1:-1:-1;1290:25:101;-1:-1:-1;;;;;;1327:32:101;;1324:52;;;1372:1;1369;1362:12;1324:52;1395:63;1450:7;1439:8;1428:9;1424:24;1395:63;:::i;:::-;1385:73;;;1498:2;1487:9;1483:18;1477:25;1467:35;;1545:2;1534:9;1530:18;1524:25;1589:4;1582:5;1578:16;1571:5;1568:27;1558:55;;1609:1;1606;1599:12;1558:55;874:769;;;;-1:-1:-1;874:769:101;;-1:-1:-1;;874:769:101:o;1648:380::-;1727:1;1723:12;;;;1770;;;1791:61;;1845:4;1837:6;1833:17;1823:27;;1791:61;1898:2;1890:6;1887:14;1867:18;1864:38;1861:161;;1944:10;1939:3;1935:20;1932:1;1925:31;1979:4;1976:1;1969:15;2007:4;2004:1;1997:15;1861:161;;1648:380;;;:::o;2159:518::-;2261:2;2256:3;2253:11;2250:421;;;2297:5;2294:1;2287:16;2341:4;2338:1;2328:18;2411:2;2399:10;2395:19;2392:1;2388:27;2382:4;2378:38;2447:4;2435:10;2432:20;2429:47;;;-1:-1:-1;2470:4:101;2429:47;2525:2;2520:3;2516:12;2513:1;2509:20;2503:4;2499:31;2489:41;;2580:81;2598:2;2591:5;2588:13;2580:81;;;2657:1;2643:16;;2624:1;2613:13;2580:81;;;2584:3;;2250:421;2159:518;;;:::o;2853:1299::-;2973:10;;-1:-1:-1;;;;;2995:30:101;;2992:56;;;3028:18;;:::i;:::-;3057:97;3147:6;3107:38;3139:4;3133:11;3107:38;:::i;:::-;3101:4;3057:97;:::i;:::-;3203:4;3234:2;3223:14;;3251:1;3246:649;;;;3939:1;3956:6;3953:89;;;-1:-1:-1;4008:19:101;;;4002:26;3953:89;-1:-1:-1;;2810:1:101;2806:11;;;2802:24;2798:29;2788:40;2834:1;2830:11;;;2785:57;4055:81;;3216:930;;3246:649;2106:1;2099:14;;;2143:4;2130:18;;-1:-1:-1;;3282:20:101;;;3400:222;3414:7;3411:1;3408:14;3400:222;;;3496:19;;;3490:26;3475:42;;3603:4;3588:20;;;;3556:1;3544:14;;;;3430:12;3400:222;;;3404:3;3650:6;3641:7;3638:19;3635:201;;;3711:19;;;3705:26;-1:-1:-1;;3794:1:101;3790:14;;;3806:3;3786:24;3782:37;3778:42;3763:58;3748:74;;3635:201;-1:-1:-1;;;;3882:1:101;3866:14;;;3862:22;3849:36;;-1:-1:-1;2853:1299:101:o;4859:418::-;5008:2;4997:9;4990:21;4971:4;5040:6;5034:13;5083:6;5078:2;5067:9;5063:18;5056:34;5142:6;5137:2;5129:6;5125:15;5120:2;5109:9;5105:18;5099:50;5198:1;5193:2;5184:6;5173:9;5169:22;5165:31;5158:42;5268:2;5261;5257:7;5252:2;5244:6;5240:15;5236:29;5225:9;5221:45;5217:54;5209:62;;;4859:418;;;;:::o;5282:297::-;5400:12;;5447:4;5436:16;;;5430:23;;5400:12;5465:16;;5462:111;;;-1:-1:-1;;5539:4:101;5535:17;;;;5532:1;5528:25;5524:38;5513:50;;5282:297;-1:-1:-1;5282:297:101:o;5584:222::-;5649:9;;;5670:10;;;5667:133;;;5722:10;5717:3;5713:20;5710:1;5703:31;5757:4;5754:1;5747:15;5785:4;5782:1;5775:15;6161:177;225:631:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@DOMAIN_SEPARATOR_8130":{"entryPoint":835,"id":8130,"parameterSlots":0,"returnSlots":1},"@_EIP712Name_13911":{"entryPoint":1895,"id":13911,"parameterSlots":0,"returnSlots":1},"@_EIP712Version_13923":{"entryPoint":1940,"id":13923,"parameterSlots":0,"returnSlots":1},"@_approve_7790":{"entryPoint":1311,"id":7790,"parameterSlots":3,"returnSlots":0},"@_approve_7850":{"entryPoint":2125,"id":7850,"parameterSlots":4,"returnSlots":0},"@_buildDomainSeparator_13841":{"entryPoint":null,"id":13841,"parameterSlots":0,"returnSlots":1},"@_burn_7772":{"entryPoint":1985,"id":7772,"parameterSlots":2,"returnSlots":0},"@_domainSeparatorV4_13820":{"entryPoint":1546,"id":13820,"parameterSlots":0,"returnSlots":1},"@_hashTypedDataV4_13857":{"entryPoint":2037,"id":13857,"parameterSlots":1,"returnSlots":1},"@_mint_7739":{"entryPoint":1843,"id":7739,"parameterSlots":2,"returnSlots":0},"@_msgSender_10709":{"entryPoint":null,"id":10709,"parameterSlots":0,"returnSlots":1},"@_spendAllowance_7898":{"entryPoint":1329,"id":7898,"parameterSlots":3,"returnSlots":0},"@_throwError_13696":{"entryPoint":2998,"id":13696,"parameterSlots":2,"returnSlots":0},"@_transfer_7629":{"entryPoint":1453,"id":7629,"parameterSlots":3,"returnSlots":0},"@_update_7706":{"entryPoint":2335,"id":7706,"parameterSlots":3,"returnSlots":0},"@_useNonce_11339":{"entryPoint":null,"id":11339,"parameterSlots":1,"returnSlots":1},"@allowance_7526":{"entryPoint":null,"id":7526,"parameterSlots":2,"returnSlots":1},"@approve_7550":{"entryPoint":775,"id":7550,"parameterSlots":2,"returnSlots":1},"@balanceOf_7485":{"entryPoint":null,"id":7485,"parameterSlots":1,"returnSlots":1},"@burn_663":{"entryPoint":973,"id":663,"parameterSlots":2,"returnSlots":0},"@byteLength_11535":{"entryPoint":3243,"id":11535,"parameterSlots":1,"returnSlots":1},"@decimals_637":{"entryPoint":null,"id":637,"parameterSlots":0,"returnSlots":1},"@eip712Domain_13899":{"entryPoint":892,"id":13899,"parameterSlots":0,"returnSlots":7},"@mint_650":{"entryPoint":849,"id":650,"parameterSlots":2,"returnSlots":0},"@name_7445":{"entryPoint":631,"id":7445,"parameterSlots":0,"returnSlots":1},"@nonces_11324":{"entryPoint":null,"id":11324,"parameterSlots":1,"returnSlots":1},"@nonces_8120":{"entryPoint":863,"id":8120,"parameterSlots":1,"returnSlots":1},"@permit_8103":{"entryPoint":996,"id":8103,"parameterSlots":7,"returnSlots":0},"@recover_13619":{"entryPoint":2081,"id":13619,"parameterSlots":4,"returnSlots":1},"@symbol_7454":{"entryPoint":958,"id":7454,"parameterSlots":0,"returnSlots":1},"@toStringWithFallback_11602":{"entryPoint":2629,"id":11602,"parameterSlots":2,"returnSlots":1},"@toString_11503":{"entryPoint":3182,"id":11503,"parameterSlots":1,"returnSlots":1},"@toTypedDataHash_14049":{"entryPoint":null,"id":14049,"parameterSlots":2,"returnSlots":1},"@totalSupply_7472":{"entryPoint":null,"id":7472,"parameterSlots":0,"returnSlots":1},"@transferFrom_7582":{"entryPoint":800,"id":7582,"parameterSlots":3,"returnSlots":1},"@transfer_7509":{"entryPoint":983,"id":7509,"parameterSlots":2,"returnSlots":1},"@tryRecover_13583":{"entryPoint":2798,"id":13583,"parameterSlots":4,"returnSlots":3},"abi_decode_address":{"entryPoint":3353,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":3478,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":3762,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":3420,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32":{"entryPoint":3653,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":3380,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_string":{"entryPoint":3282,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":3503,"id":null,"parameterSlots":8,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":7,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":3328,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":3867,"id":null,"parameterSlots":2,"returnSlots":1},"extract_byte_array_length":{"entryPoint":3811,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x21":{"entryPoint":3898,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:7972:101","nodeType":"YulBlock","src":"0:7972:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"64:239:101","nodeType":"YulBlock","src":"64:239:101","statements":[{"nativeSrc":"74:26:101","nodeType":"YulVariableDeclaration","src":"74:26:101","value":{"arguments":[{"name":"value","nativeSrc":"94:5:101","nodeType":"YulIdentifier","src":"94:5:101"}],"functionName":{"name":"mload","nativeSrc":"88:5:101","nodeType":"YulIdentifier","src":"88:5:101"},"nativeSrc":"88:12:101","nodeType":"YulFunctionCall","src":"88:12:101"},"variables":[{"name":"length","nativeSrc":"78:6:101","nodeType":"YulTypedName","src":"78:6:101","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"116:3:101","nodeType":"YulIdentifier","src":"116:3:101"},{"name":"length","nativeSrc":"121:6:101","nodeType":"YulIdentifier","src":"121:6:101"}],"functionName":{"name":"mstore","nativeSrc":"109:6:101","nodeType":"YulIdentifier","src":"109:6:101"},"nativeSrc":"109:19:101","nodeType":"YulFunctionCall","src":"109:19:101"},"nativeSrc":"109:19:101","nodeType":"YulExpressionStatement","src":"109:19:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"147:3:101","nodeType":"YulIdentifier","src":"147:3:101"},{"kind":"number","nativeSrc":"152:4:101","nodeType":"YulLiteral","src":"152:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"143:3:101","nodeType":"YulIdentifier","src":"143:3:101"},"nativeSrc":"143:14:101","nodeType":"YulFunctionCall","src":"143:14:101"},{"arguments":[{"name":"value","nativeSrc":"163:5:101","nodeType":"YulIdentifier","src":"163:5:101"},{"kind":"number","nativeSrc":"170:4:101","nodeType":"YulLiteral","src":"170:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"159:3:101","nodeType":"YulIdentifier","src":"159:3:101"},"nativeSrc":"159:16:101","nodeType":"YulFunctionCall","src":"159:16:101"},{"name":"length","nativeSrc":"177:6:101","nodeType":"YulIdentifier","src":"177:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"137:5:101","nodeType":"YulIdentifier","src":"137:5:101"},"nativeSrc":"137:47:101","nodeType":"YulFunctionCall","src":"137:47:101"},"nativeSrc":"137:47:101","nodeType":"YulExpressionStatement","src":"137:47:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"208:3:101","nodeType":"YulIdentifier","src":"208:3:101"},{"name":"length","nativeSrc":"213:6:101","nodeType":"YulIdentifier","src":"213:6:101"}],"functionName":{"name":"add","nativeSrc":"204:3:101","nodeType":"YulIdentifier","src":"204:3:101"},"nativeSrc":"204:16:101","nodeType":"YulFunctionCall","src":"204:16:101"},{"kind":"number","nativeSrc":"222:4:101","nodeType":"YulLiteral","src":"222:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"200:3:101","nodeType":"YulIdentifier","src":"200:3:101"},"nativeSrc":"200:27:101","nodeType":"YulFunctionCall","src":"200:27:101"},{"kind":"number","nativeSrc":"229:1:101","nodeType":"YulLiteral","src":"229:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"193:6:101","nodeType":"YulIdentifier","src":"193:6:101"},"nativeSrc":"193:38:101","nodeType":"YulFunctionCall","src":"193:38:101"},"nativeSrc":"193:38:101","nodeType":"YulExpressionStatement","src":"193:38:101"},{"nativeSrc":"240:57:101","nodeType":"YulAssignment","src":"240:57:101","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"255:3:101","nodeType":"YulIdentifier","src":"255:3:101"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"268:6:101","nodeType":"YulIdentifier","src":"268:6:101"},{"kind":"number","nativeSrc":"276:2:101","nodeType":"YulLiteral","src":"276:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"264:3:101","nodeType":"YulIdentifier","src":"264:3:101"},"nativeSrc":"264:15:101","nodeType":"YulFunctionCall","src":"264:15:101"},{"arguments":[{"kind":"number","nativeSrc":"285:2:101","nodeType":"YulLiteral","src":"285:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"281:3:101","nodeType":"YulIdentifier","src":"281:3:101"},"nativeSrc":"281:7:101","nodeType":"YulFunctionCall","src":"281:7:101"}],"functionName":{"name":"and","nativeSrc":"260:3:101","nodeType":"YulIdentifier","src":"260:3:101"},"nativeSrc":"260:29:101","nodeType":"YulFunctionCall","src":"260:29:101"}],"functionName":{"name":"add","nativeSrc":"251:3:101","nodeType":"YulIdentifier","src":"251:3:101"},"nativeSrc":"251:39:101","nodeType":"YulFunctionCall","src":"251:39:101"},{"kind":"number","nativeSrc":"292:4:101","nodeType":"YulLiteral","src":"292:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"247:3:101","nodeType":"YulIdentifier","src":"247:3:101"},"nativeSrc":"247:50:101","nodeType":"YulFunctionCall","src":"247:50:101"},"variableNames":[{"name":"end","nativeSrc":"240:3:101","nodeType":"YulIdentifier","src":"240:3:101"}]}]},"name":"abi_encode_string","nativeSrc":"14:289:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"41:5:101","nodeType":"YulTypedName","src":"41:5:101","type":""},{"name":"pos","nativeSrc":"48:3:101","nodeType":"YulTypedName","src":"48:3:101","type":""}],"returnVariables":[{"name":"end","nativeSrc":"56:3:101","nodeType":"YulTypedName","src":"56:3:101","type":""}],"src":"14:289:101"},{"body":{"nativeSrc":"429:99:101","nodeType":"YulBlock","src":"429:99:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"446:9:101","nodeType":"YulIdentifier","src":"446:9:101"},{"kind":"number","nativeSrc":"457:2:101","nodeType":"YulLiteral","src":"457:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"439:6:101","nodeType":"YulIdentifier","src":"439:6:101"},"nativeSrc":"439:21:101","nodeType":"YulFunctionCall","src":"439:21:101"},"nativeSrc":"439:21:101","nodeType":"YulExpressionStatement","src":"439:21:101"},{"nativeSrc":"469:53:101","nodeType":"YulAssignment","src":"469:53:101","value":{"arguments":[{"name":"value0","nativeSrc":"495:6:101","nodeType":"YulIdentifier","src":"495:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"507:9:101","nodeType":"YulIdentifier","src":"507:9:101"},{"kind":"number","nativeSrc":"518:2:101","nodeType":"YulLiteral","src":"518:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"503:3:101","nodeType":"YulIdentifier","src":"503:3:101"},"nativeSrc":"503:18:101","nodeType":"YulFunctionCall","src":"503:18:101"}],"functionName":{"name":"abi_encode_string","nativeSrc":"477:17:101","nodeType":"YulIdentifier","src":"477:17:101"},"nativeSrc":"477:45:101","nodeType":"YulFunctionCall","src":"477:45:101"},"variableNames":[{"name":"tail","nativeSrc":"469:4:101","nodeType":"YulIdentifier","src":"469:4:101"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"308:220:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"398:9:101","nodeType":"YulTypedName","src":"398:9:101","type":""},{"name":"value0","nativeSrc":"409:6:101","nodeType":"YulTypedName","src":"409:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"420:4:101","nodeType":"YulTypedName","src":"420:4:101","type":""}],"src":"308:220:101"},{"body":{"nativeSrc":"582:124:101","nodeType":"YulBlock","src":"582:124:101","statements":[{"nativeSrc":"592:29:101","nodeType":"YulAssignment","src":"592:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"614:6:101","nodeType":"YulIdentifier","src":"614:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"601:12:101","nodeType":"YulIdentifier","src":"601:12:101"},"nativeSrc":"601:20:101","nodeType":"YulFunctionCall","src":"601:20:101"},"variableNames":[{"name":"value","nativeSrc":"592:5:101","nodeType":"YulIdentifier","src":"592:5:101"}]},{"body":{"nativeSrc":"684:16:101","nodeType":"YulBlock","src":"684:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"693:1:101","nodeType":"YulLiteral","src":"693:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"696:1:101","nodeType":"YulLiteral","src":"696:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"686:6:101","nodeType":"YulIdentifier","src":"686:6:101"},"nativeSrc":"686:12:101","nodeType":"YulFunctionCall","src":"686:12:101"},"nativeSrc":"686:12:101","nodeType":"YulExpressionStatement","src":"686:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"643:5:101","nodeType":"YulIdentifier","src":"643:5:101"},{"arguments":[{"name":"value","nativeSrc":"654:5:101","nodeType":"YulIdentifier","src":"654:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"669:3:101","nodeType":"YulLiteral","src":"669:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"674:1:101","nodeType":"YulLiteral","src":"674:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"665:3:101","nodeType":"YulIdentifier","src":"665:3:101"},"nativeSrc":"665:11:101","nodeType":"YulFunctionCall","src":"665:11:101"},{"kind":"number","nativeSrc":"678:1:101","nodeType":"YulLiteral","src":"678:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"661:3:101","nodeType":"YulIdentifier","src":"661:3:101"},"nativeSrc":"661:19:101","nodeType":"YulFunctionCall","src":"661:19:101"}],"functionName":{"name":"and","nativeSrc":"650:3:101","nodeType":"YulIdentifier","src":"650:3:101"},"nativeSrc":"650:31:101","nodeType":"YulFunctionCall","src":"650:31:101"}],"functionName":{"name":"eq","nativeSrc":"640:2:101","nodeType":"YulIdentifier","src":"640:2:101"},"nativeSrc":"640:42:101","nodeType":"YulFunctionCall","src":"640:42:101"}],"functionName":{"name":"iszero","nativeSrc":"633:6:101","nodeType":"YulIdentifier","src":"633:6:101"},"nativeSrc":"633:50:101","nodeType":"YulFunctionCall","src":"633:50:101"},"nativeSrc":"630:70:101","nodeType":"YulIf","src":"630:70:101"}]},"name":"abi_decode_address","nativeSrc":"533:173:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"561:6:101","nodeType":"YulTypedName","src":"561:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"572:5:101","nodeType":"YulTypedName","src":"572:5:101","type":""}],"src":"533:173:101"},{"body":{"nativeSrc":"798:213:101","nodeType":"YulBlock","src":"798:213:101","statements":[{"body":{"nativeSrc":"844:16:101","nodeType":"YulBlock","src":"844:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"853:1:101","nodeType":"YulLiteral","src":"853:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"856:1:101","nodeType":"YulLiteral","src":"856:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"846:6:101","nodeType":"YulIdentifier","src":"846:6:101"},"nativeSrc":"846:12:101","nodeType":"YulFunctionCall","src":"846:12:101"},"nativeSrc":"846:12:101","nodeType":"YulExpressionStatement","src":"846:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"819:7:101","nodeType":"YulIdentifier","src":"819:7:101"},{"name":"headStart","nativeSrc":"828:9:101","nodeType":"YulIdentifier","src":"828:9:101"}],"functionName":{"name":"sub","nativeSrc":"815:3:101","nodeType":"YulIdentifier","src":"815:3:101"},"nativeSrc":"815:23:101","nodeType":"YulFunctionCall","src":"815:23:101"},{"kind":"number","nativeSrc":"840:2:101","nodeType":"YulLiteral","src":"840:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"811:3:101","nodeType":"YulIdentifier","src":"811:3:101"},"nativeSrc":"811:32:101","nodeType":"YulFunctionCall","src":"811:32:101"},"nativeSrc":"808:52:101","nodeType":"YulIf","src":"808:52:101"},{"nativeSrc":"869:39:101","nodeType":"YulAssignment","src":"869:39:101","value":{"arguments":[{"name":"headStart","nativeSrc":"898:9:101","nodeType":"YulIdentifier","src":"898:9:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"879:18:101","nodeType":"YulIdentifier","src":"879:18:101"},"nativeSrc":"879:29:101","nodeType":"YulFunctionCall","src":"879:29:101"},"variableNames":[{"name":"value0","nativeSrc":"869:6:101","nodeType":"YulIdentifier","src":"869:6:101"}]},{"nativeSrc":"917:14:101","nodeType":"YulVariableDeclaration","src":"917:14:101","value":{"kind":"number","nativeSrc":"930:1:101","nodeType":"YulLiteral","src":"930:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"921:5:101","nodeType":"YulTypedName","src":"921:5:101","type":""}]},{"nativeSrc":"940:41:101","nodeType":"YulAssignment","src":"940:41:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"966:9:101","nodeType":"YulIdentifier","src":"966:9:101"},{"kind":"number","nativeSrc":"977:2:101","nodeType":"YulLiteral","src":"977:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"962:3:101","nodeType":"YulIdentifier","src":"962:3:101"},"nativeSrc":"962:18:101","nodeType":"YulFunctionCall","src":"962:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"949:12:101","nodeType":"YulIdentifier","src":"949:12:101"},"nativeSrc":"949:32:101","nodeType":"YulFunctionCall","src":"949:32:101"},"variableNames":[{"name":"value","nativeSrc":"940:5:101","nodeType":"YulIdentifier","src":"940:5:101"}]},{"nativeSrc":"990:15:101","nodeType":"YulAssignment","src":"990:15:101","value":{"name":"value","nativeSrc":"1000:5:101","nodeType":"YulIdentifier","src":"1000:5:101"},"variableNames":[{"name":"value1","nativeSrc":"990:6:101","nodeType":"YulIdentifier","src":"990:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"711:300:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"756:9:101","nodeType":"YulTypedName","src":"756:9:101","type":""},{"name":"dataEnd","nativeSrc":"767:7:101","nodeType":"YulTypedName","src":"767:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"779:6:101","nodeType":"YulTypedName","src":"779:6:101","type":""},{"name":"value1","nativeSrc":"787:6:101","nodeType":"YulTypedName","src":"787:6:101","type":""}],"src":"711:300:101"},{"body":{"nativeSrc":"1111:92:101","nodeType":"YulBlock","src":"1111:92:101","statements":[{"nativeSrc":"1121:26:101","nodeType":"YulAssignment","src":"1121:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1133:9:101","nodeType":"YulIdentifier","src":"1133:9:101"},{"kind":"number","nativeSrc":"1144:2:101","nodeType":"YulLiteral","src":"1144:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1129:3:101","nodeType":"YulIdentifier","src":"1129:3:101"},"nativeSrc":"1129:18:101","nodeType":"YulFunctionCall","src":"1129:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1121:4:101","nodeType":"YulIdentifier","src":"1121:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1163:9:101","nodeType":"YulIdentifier","src":"1163:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"1188:6:101","nodeType":"YulIdentifier","src":"1188:6:101"}],"functionName":{"name":"iszero","nativeSrc":"1181:6:101","nodeType":"YulIdentifier","src":"1181:6:101"},"nativeSrc":"1181:14:101","nodeType":"YulFunctionCall","src":"1181:14:101"}],"functionName":{"name":"iszero","nativeSrc":"1174:6:101","nodeType":"YulIdentifier","src":"1174:6:101"},"nativeSrc":"1174:22:101","nodeType":"YulFunctionCall","src":"1174:22:101"}],"functionName":{"name":"mstore","nativeSrc":"1156:6:101","nodeType":"YulIdentifier","src":"1156:6:101"},"nativeSrc":"1156:41:101","nodeType":"YulFunctionCall","src":"1156:41:101"},"nativeSrc":"1156:41:101","nodeType":"YulExpressionStatement","src":"1156:41:101"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"1016:187:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1080:9:101","nodeType":"YulTypedName","src":"1080:9:101","type":""},{"name":"value0","nativeSrc":"1091:6:101","nodeType":"YulTypedName","src":"1091:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1102:4:101","nodeType":"YulTypedName","src":"1102:4:101","type":""}],"src":"1016:187:101"},{"body":{"nativeSrc":"1309:76:101","nodeType":"YulBlock","src":"1309:76:101","statements":[{"nativeSrc":"1319:26:101","nodeType":"YulAssignment","src":"1319:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1331:9:101","nodeType":"YulIdentifier","src":"1331:9:101"},{"kind":"number","nativeSrc":"1342:2:101","nodeType":"YulLiteral","src":"1342:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1327:3:101","nodeType":"YulIdentifier","src":"1327:3:101"},"nativeSrc":"1327:18:101","nodeType":"YulFunctionCall","src":"1327:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1319:4:101","nodeType":"YulIdentifier","src":"1319:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1361:9:101","nodeType":"YulIdentifier","src":"1361:9:101"},{"name":"value0","nativeSrc":"1372:6:101","nodeType":"YulIdentifier","src":"1372:6:101"}],"functionName":{"name":"mstore","nativeSrc":"1354:6:101","nodeType":"YulIdentifier","src":"1354:6:101"},"nativeSrc":"1354:25:101","nodeType":"YulFunctionCall","src":"1354:25:101"},"nativeSrc":"1354:25:101","nodeType":"YulExpressionStatement","src":"1354:25:101"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"1208:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1278:9:101","nodeType":"YulTypedName","src":"1278:9:101","type":""},{"name":"value0","nativeSrc":"1289:6:101","nodeType":"YulTypedName","src":"1289:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1300:4:101","nodeType":"YulTypedName","src":"1300:4:101","type":""}],"src":"1208:177:101"},{"body":{"nativeSrc":"1494:270:101","nodeType":"YulBlock","src":"1494:270:101","statements":[{"body":{"nativeSrc":"1540:16:101","nodeType":"YulBlock","src":"1540:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1549:1:101","nodeType":"YulLiteral","src":"1549:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1552:1:101","nodeType":"YulLiteral","src":"1552:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1542:6:101","nodeType":"YulIdentifier","src":"1542:6:101"},"nativeSrc":"1542:12:101","nodeType":"YulFunctionCall","src":"1542:12:101"},"nativeSrc":"1542:12:101","nodeType":"YulExpressionStatement","src":"1542:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1515:7:101","nodeType":"YulIdentifier","src":"1515:7:101"},{"name":"headStart","nativeSrc":"1524:9:101","nodeType":"YulIdentifier","src":"1524:9:101"}],"functionName":{"name":"sub","nativeSrc":"1511:3:101","nodeType":"YulIdentifier","src":"1511:3:101"},"nativeSrc":"1511:23:101","nodeType":"YulFunctionCall","src":"1511:23:101"},{"kind":"number","nativeSrc":"1536:2:101","nodeType":"YulLiteral","src":"1536:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"1507:3:101","nodeType":"YulIdentifier","src":"1507:3:101"},"nativeSrc":"1507:32:101","nodeType":"YulFunctionCall","src":"1507:32:101"},"nativeSrc":"1504:52:101","nodeType":"YulIf","src":"1504:52:101"},{"nativeSrc":"1565:39:101","nodeType":"YulAssignment","src":"1565:39:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1594:9:101","nodeType":"YulIdentifier","src":"1594:9:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1575:18:101","nodeType":"YulIdentifier","src":"1575:18:101"},"nativeSrc":"1575:29:101","nodeType":"YulFunctionCall","src":"1575:29:101"},"variableNames":[{"name":"value0","nativeSrc":"1565:6:101","nodeType":"YulIdentifier","src":"1565:6:101"}]},{"nativeSrc":"1613:48:101","nodeType":"YulAssignment","src":"1613:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1646:9:101","nodeType":"YulIdentifier","src":"1646:9:101"},{"kind":"number","nativeSrc":"1657:2:101","nodeType":"YulLiteral","src":"1657:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1642:3:101","nodeType":"YulIdentifier","src":"1642:3:101"},"nativeSrc":"1642:18:101","nodeType":"YulFunctionCall","src":"1642:18:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1623:18:101","nodeType":"YulIdentifier","src":"1623:18:101"},"nativeSrc":"1623:38:101","nodeType":"YulFunctionCall","src":"1623:38:101"},"variableNames":[{"name":"value1","nativeSrc":"1613:6:101","nodeType":"YulIdentifier","src":"1613:6:101"}]},{"nativeSrc":"1670:14:101","nodeType":"YulVariableDeclaration","src":"1670:14:101","value":{"kind":"number","nativeSrc":"1683:1:101","nodeType":"YulLiteral","src":"1683:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1674:5:101","nodeType":"YulTypedName","src":"1674:5:101","type":""}]},{"nativeSrc":"1693:41:101","nodeType":"YulAssignment","src":"1693:41:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1719:9:101","nodeType":"YulIdentifier","src":"1719:9:101"},{"kind":"number","nativeSrc":"1730:2:101","nodeType":"YulLiteral","src":"1730:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1715:3:101","nodeType":"YulIdentifier","src":"1715:3:101"},"nativeSrc":"1715:18:101","nodeType":"YulFunctionCall","src":"1715:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"1702:12:101","nodeType":"YulIdentifier","src":"1702:12:101"},"nativeSrc":"1702:32:101","nodeType":"YulFunctionCall","src":"1702:32:101"},"variableNames":[{"name":"value","nativeSrc":"1693:5:101","nodeType":"YulIdentifier","src":"1693:5:101"}]},{"nativeSrc":"1743:15:101","nodeType":"YulAssignment","src":"1743:15:101","value":{"name":"value","nativeSrc":"1753:5:101","nodeType":"YulIdentifier","src":"1753:5:101"},"variableNames":[{"name":"value2","nativeSrc":"1743:6:101","nodeType":"YulIdentifier","src":"1743:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"1390:374:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1444:9:101","nodeType":"YulTypedName","src":"1444:9:101","type":""},{"name":"dataEnd","nativeSrc":"1455:7:101","nodeType":"YulTypedName","src":"1455:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1467:6:101","nodeType":"YulTypedName","src":"1467:6:101","type":""},{"name":"value1","nativeSrc":"1475:6:101","nodeType":"YulTypedName","src":"1475:6:101","type":""},{"name":"value2","nativeSrc":"1483:6:101","nodeType":"YulTypedName","src":"1483:6:101","type":""}],"src":"1390:374:101"},{"body":{"nativeSrc":"1866:87:101","nodeType":"YulBlock","src":"1866:87:101","statements":[{"nativeSrc":"1876:26:101","nodeType":"YulAssignment","src":"1876:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1888:9:101","nodeType":"YulIdentifier","src":"1888:9:101"},{"kind":"number","nativeSrc":"1899:2:101","nodeType":"YulLiteral","src":"1899:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1884:3:101","nodeType":"YulIdentifier","src":"1884:3:101"},"nativeSrc":"1884:18:101","nodeType":"YulFunctionCall","src":"1884:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1876:4:101","nodeType":"YulIdentifier","src":"1876:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1918:9:101","nodeType":"YulIdentifier","src":"1918:9:101"},{"arguments":[{"name":"value0","nativeSrc":"1933:6:101","nodeType":"YulIdentifier","src":"1933:6:101"},{"kind":"number","nativeSrc":"1941:4:101","nodeType":"YulLiteral","src":"1941:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"1929:3:101","nodeType":"YulIdentifier","src":"1929:3:101"},"nativeSrc":"1929:17:101","nodeType":"YulFunctionCall","src":"1929:17:101"}],"functionName":{"name":"mstore","nativeSrc":"1911:6:101","nodeType":"YulIdentifier","src":"1911:6:101"},"nativeSrc":"1911:36:101","nodeType":"YulFunctionCall","src":"1911:36:101"},"nativeSrc":"1911:36:101","nodeType":"YulExpressionStatement","src":"1911:36:101"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"1769:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1835:9:101","nodeType":"YulTypedName","src":"1835:9:101","type":""},{"name":"value0","nativeSrc":"1846:6:101","nodeType":"YulTypedName","src":"1846:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1857:4:101","nodeType":"YulTypedName","src":"1857:4:101","type":""}],"src":"1769:184:101"},{"body":{"nativeSrc":"2059:76:101","nodeType":"YulBlock","src":"2059:76:101","statements":[{"nativeSrc":"2069:26:101","nodeType":"YulAssignment","src":"2069:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2081:9:101","nodeType":"YulIdentifier","src":"2081:9:101"},{"kind":"number","nativeSrc":"2092:2:101","nodeType":"YulLiteral","src":"2092:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2077:3:101","nodeType":"YulIdentifier","src":"2077:3:101"},"nativeSrc":"2077:18:101","nodeType":"YulFunctionCall","src":"2077:18:101"},"variableNames":[{"name":"tail","nativeSrc":"2069:4:101","nodeType":"YulIdentifier","src":"2069:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2111:9:101","nodeType":"YulIdentifier","src":"2111:9:101"},{"name":"value0","nativeSrc":"2122:6:101","nodeType":"YulIdentifier","src":"2122:6:101"}],"functionName":{"name":"mstore","nativeSrc":"2104:6:101","nodeType":"YulIdentifier","src":"2104:6:101"},"nativeSrc":"2104:25:101","nodeType":"YulFunctionCall","src":"2104:25:101"},"nativeSrc":"2104:25:101","nodeType":"YulExpressionStatement","src":"2104:25:101"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"1958:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2028:9:101","nodeType":"YulTypedName","src":"2028:9:101","type":""},{"name":"value0","nativeSrc":"2039:6:101","nodeType":"YulTypedName","src":"2039:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2050:4:101","nodeType":"YulTypedName","src":"2050:4:101","type":""}],"src":"1958:177:101"},{"body":{"nativeSrc":"2210:116:101","nodeType":"YulBlock","src":"2210:116:101","statements":[{"body":{"nativeSrc":"2256:16:101","nodeType":"YulBlock","src":"2256:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2265:1:101","nodeType":"YulLiteral","src":"2265:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2268:1:101","nodeType":"YulLiteral","src":"2268:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2258:6:101","nodeType":"YulIdentifier","src":"2258:6:101"},"nativeSrc":"2258:12:101","nodeType":"YulFunctionCall","src":"2258:12:101"},"nativeSrc":"2258:12:101","nodeType":"YulExpressionStatement","src":"2258:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2231:7:101","nodeType":"YulIdentifier","src":"2231:7:101"},{"name":"headStart","nativeSrc":"2240:9:101","nodeType":"YulIdentifier","src":"2240:9:101"}],"functionName":{"name":"sub","nativeSrc":"2227:3:101","nodeType":"YulIdentifier","src":"2227:3:101"},"nativeSrc":"2227:23:101","nodeType":"YulFunctionCall","src":"2227:23:101"},{"kind":"number","nativeSrc":"2252:2:101","nodeType":"YulLiteral","src":"2252:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"2223:3:101","nodeType":"YulIdentifier","src":"2223:3:101"},"nativeSrc":"2223:32:101","nodeType":"YulFunctionCall","src":"2223:32:101"},"nativeSrc":"2220:52:101","nodeType":"YulIf","src":"2220:52:101"},{"nativeSrc":"2281:39:101","nodeType":"YulAssignment","src":"2281:39:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2310:9:101","nodeType":"YulIdentifier","src":"2310:9:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2291:18:101","nodeType":"YulIdentifier","src":"2291:18:101"},"nativeSrc":"2291:29:101","nodeType":"YulFunctionCall","src":"2291:29:101"},"variableNames":[{"name":"value0","nativeSrc":"2281:6:101","nodeType":"YulIdentifier","src":"2281:6:101"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"2140:186:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2176:9:101","nodeType":"YulTypedName","src":"2176:9:101","type":""},{"name":"dataEnd","nativeSrc":"2187:7:101","nodeType":"YulTypedName","src":"2187:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2199:6:101","nodeType":"YulTypedName","src":"2199:6:101","type":""}],"src":"2140:186:101"},{"body":{"nativeSrc":"2688:881:101","nodeType":"YulBlock","src":"2688:881:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2705:9:101","nodeType":"YulIdentifier","src":"2705:9:101"},{"arguments":[{"name":"value0","nativeSrc":"2720:6:101","nodeType":"YulIdentifier","src":"2720:6:101"},{"arguments":[{"kind":"number","nativeSrc":"2732:3:101","nodeType":"YulLiteral","src":"2732:3:101","type":"","value":"248"},{"kind":"number","nativeSrc":"2737:3:101","nodeType":"YulLiteral","src":"2737:3:101","type":"","value":"255"}],"functionName":{"name":"shl","nativeSrc":"2728:3:101","nodeType":"YulIdentifier","src":"2728:3:101"},"nativeSrc":"2728:13:101","nodeType":"YulFunctionCall","src":"2728:13:101"}],"functionName":{"name":"and","nativeSrc":"2716:3:101","nodeType":"YulIdentifier","src":"2716:3:101"},"nativeSrc":"2716:26:101","nodeType":"YulFunctionCall","src":"2716:26:101"}],"functionName":{"name":"mstore","nativeSrc":"2698:6:101","nodeType":"YulIdentifier","src":"2698:6:101"},"nativeSrc":"2698:45:101","nodeType":"YulFunctionCall","src":"2698:45:101"},"nativeSrc":"2698:45:101","nodeType":"YulExpressionStatement","src":"2698:45:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2763:9:101","nodeType":"YulIdentifier","src":"2763:9:101"},{"kind":"number","nativeSrc":"2774:2:101","nodeType":"YulLiteral","src":"2774:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2759:3:101","nodeType":"YulIdentifier","src":"2759:3:101"},"nativeSrc":"2759:18:101","nodeType":"YulFunctionCall","src":"2759:18:101"},{"kind":"number","nativeSrc":"2779:3:101","nodeType":"YulLiteral","src":"2779:3:101","type":"","value":"224"}],"functionName":{"name":"mstore","nativeSrc":"2752:6:101","nodeType":"YulIdentifier","src":"2752:6:101"},"nativeSrc":"2752:31:101","nodeType":"YulFunctionCall","src":"2752:31:101"},"nativeSrc":"2752:31:101","nodeType":"YulExpressionStatement","src":"2752:31:101"},{"nativeSrc":"2792:60:101","nodeType":"YulVariableDeclaration","src":"2792:60:101","value":{"arguments":[{"name":"value1","nativeSrc":"2824:6:101","nodeType":"YulIdentifier","src":"2824:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"2836:9:101","nodeType":"YulIdentifier","src":"2836:9:101"},{"kind":"number","nativeSrc":"2847:3:101","nodeType":"YulLiteral","src":"2847:3:101","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"2832:3:101","nodeType":"YulIdentifier","src":"2832:3:101"},"nativeSrc":"2832:19:101","nodeType":"YulFunctionCall","src":"2832:19:101"}],"functionName":{"name":"abi_encode_string","nativeSrc":"2806:17:101","nodeType":"YulIdentifier","src":"2806:17:101"},"nativeSrc":"2806:46:101","nodeType":"YulFunctionCall","src":"2806:46:101"},"variables":[{"name":"tail_1","nativeSrc":"2796:6:101","nodeType":"YulTypedName","src":"2796:6:101","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2872:9:101","nodeType":"YulIdentifier","src":"2872:9:101"},{"kind":"number","nativeSrc":"2883:2:101","nodeType":"YulLiteral","src":"2883:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"2868:3:101","nodeType":"YulIdentifier","src":"2868:3:101"},"nativeSrc":"2868:18:101","nodeType":"YulFunctionCall","src":"2868:18:101"},{"arguments":[{"name":"tail_1","nativeSrc":"2892:6:101","nodeType":"YulIdentifier","src":"2892:6:101"},{"name":"headStart","nativeSrc":"2900:9:101","nodeType":"YulIdentifier","src":"2900:9:101"}],"functionName":{"name":"sub","nativeSrc":"2888:3:101","nodeType":"YulIdentifier","src":"2888:3:101"},"nativeSrc":"2888:22:101","nodeType":"YulFunctionCall","src":"2888:22:101"}],"functionName":{"name":"mstore","nativeSrc":"2861:6:101","nodeType":"YulIdentifier","src":"2861:6:101"},"nativeSrc":"2861:50:101","nodeType":"YulFunctionCall","src":"2861:50:101"},"nativeSrc":"2861:50:101","nodeType":"YulExpressionStatement","src":"2861:50:101"},{"nativeSrc":"2920:47:101","nodeType":"YulVariableDeclaration","src":"2920:47:101","value":{"arguments":[{"name":"value2","nativeSrc":"2952:6:101","nodeType":"YulIdentifier","src":"2952:6:101"},{"name":"tail_1","nativeSrc":"2960:6:101","nodeType":"YulIdentifier","src":"2960:6:101"}],"functionName":{"name":"abi_encode_string","nativeSrc":"2934:17:101","nodeType":"YulIdentifier","src":"2934:17:101"},"nativeSrc":"2934:33:101","nodeType":"YulFunctionCall","src":"2934:33:101"},"variables":[{"name":"tail_2","nativeSrc":"2924:6:101","nodeType":"YulTypedName","src":"2924:6:101","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2987:9:101","nodeType":"YulIdentifier","src":"2987:9:101"},{"kind":"number","nativeSrc":"2998:2:101","nodeType":"YulLiteral","src":"2998:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"2983:3:101","nodeType":"YulIdentifier","src":"2983:3:101"},"nativeSrc":"2983:18:101","nodeType":"YulFunctionCall","src":"2983:18:101"},{"name":"value3","nativeSrc":"3003:6:101","nodeType":"YulIdentifier","src":"3003:6:101"}],"functionName":{"name":"mstore","nativeSrc":"2976:6:101","nodeType":"YulIdentifier","src":"2976:6:101"},"nativeSrc":"2976:34:101","nodeType":"YulFunctionCall","src":"2976:34:101"},"nativeSrc":"2976:34:101","nodeType":"YulExpressionStatement","src":"2976:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3030:9:101","nodeType":"YulIdentifier","src":"3030:9:101"},{"kind":"number","nativeSrc":"3041:3:101","nodeType":"YulLiteral","src":"3041:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"3026:3:101","nodeType":"YulIdentifier","src":"3026:3:101"},"nativeSrc":"3026:19:101","nodeType":"YulFunctionCall","src":"3026:19:101"},{"arguments":[{"name":"value4","nativeSrc":"3051:6:101","nodeType":"YulIdentifier","src":"3051:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3067:3:101","nodeType":"YulLiteral","src":"3067:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"3072:1:101","nodeType":"YulLiteral","src":"3072:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3063:3:101","nodeType":"YulIdentifier","src":"3063:3:101"},"nativeSrc":"3063:11:101","nodeType":"YulFunctionCall","src":"3063:11:101"},{"kind":"number","nativeSrc":"3076:1:101","nodeType":"YulLiteral","src":"3076:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3059:3:101","nodeType":"YulIdentifier","src":"3059:3:101"},"nativeSrc":"3059:19:101","nodeType":"YulFunctionCall","src":"3059:19:101"}],"functionName":{"name":"and","nativeSrc":"3047:3:101","nodeType":"YulIdentifier","src":"3047:3:101"},"nativeSrc":"3047:32:101","nodeType":"YulFunctionCall","src":"3047:32:101"}],"functionName":{"name":"mstore","nativeSrc":"3019:6:101","nodeType":"YulIdentifier","src":"3019:6:101"},"nativeSrc":"3019:61:101","nodeType":"YulFunctionCall","src":"3019:61:101"},"nativeSrc":"3019:61:101","nodeType":"YulExpressionStatement","src":"3019:61:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3100:9:101","nodeType":"YulIdentifier","src":"3100:9:101"},{"kind":"number","nativeSrc":"3111:3:101","nodeType":"YulLiteral","src":"3111:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"3096:3:101","nodeType":"YulIdentifier","src":"3096:3:101"},"nativeSrc":"3096:19:101","nodeType":"YulFunctionCall","src":"3096:19:101"},{"name":"value5","nativeSrc":"3117:6:101","nodeType":"YulIdentifier","src":"3117:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3089:6:101","nodeType":"YulIdentifier","src":"3089:6:101"},"nativeSrc":"3089:35:101","nodeType":"YulFunctionCall","src":"3089:35:101"},"nativeSrc":"3089:35:101","nodeType":"YulExpressionStatement","src":"3089:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3144:9:101","nodeType":"YulIdentifier","src":"3144:9:101"},{"kind":"number","nativeSrc":"3155:3:101","nodeType":"YulLiteral","src":"3155:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"3140:3:101","nodeType":"YulIdentifier","src":"3140:3:101"},"nativeSrc":"3140:19:101","nodeType":"YulFunctionCall","src":"3140:19:101"},{"arguments":[{"name":"tail_2","nativeSrc":"3165:6:101","nodeType":"YulIdentifier","src":"3165:6:101"},{"name":"headStart","nativeSrc":"3173:9:101","nodeType":"YulIdentifier","src":"3173:9:101"}],"functionName":{"name":"sub","nativeSrc":"3161:3:101","nodeType":"YulIdentifier","src":"3161:3:101"},"nativeSrc":"3161:22:101","nodeType":"YulFunctionCall","src":"3161:22:101"}],"functionName":{"name":"mstore","nativeSrc":"3133:6:101","nodeType":"YulIdentifier","src":"3133:6:101"},"nativeSrc":"3133:51:101","nodeType":"YulFunctionCall","src":"3133:51:101"},"nativeSrc":"3133:51:101","nodeType":"YulExpressionStatement","src":"3133:51:101"},{"nativeSrc":"3193:17:101","nodeType":"YulVariableDeclaration","src":"3193:17:101","value":{"name":"tail_2","nativeSrc":"3204:6:101","nodeType":"YulIdentifier","src":"3204:6:101"},"variables":[{"name":"pos","nativeSrc":"3197:3:101","nodeType":"YulTypedName","src":"3197:3:101","type":""}]},{"nativeSrc":"3219:27:101","nodeType":"YulVariableDeclaration","src":"3219:27:101","value":{"arguments":[{"name":"value6","nativeSrc":"3239:6:101","nodeType":"YulIdentifier","src":"3239:6:101"}],"functionName":{"name":"mload","nativeSrc":"3233:5:101","nodeType":"YulIdentifier","src":"3233:5:101"},"nativeSrc":"3233:13:101","nodeType":"YulFunctionCall","src":"3233:13:101"},"variables":[{"name":"length","nativeSrc":"3223:6:101","nodeType":"YulTypedName","src":"3223:6:101","type":""}]},{"expression":{"arguments":[{"name":"tail_2","nativeSrc":"3262:6:101","nodeType":"YulIdentifier","src":"3262:6:101"},{"name":"length","nativeSrc":"3270:6:101","nodeType":"YulIdentifier","src":"3270:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3255:6:101","nodeType":"YulIdentifier","src":"3255:6:101"},"nativeSrc":"3255:22:101","nodeType":"YulFunctionCall","src":"3255:22:101"},"nativeSrc":"3255:22:101","nodeType":"YulExpressionStatement","src":"3255:22:101"},{"nativeSrc":"3286:22:101","nodeType":"YulAssignment","src":"3286:22:101","value":{"arguments":[{"name":"tail_2","nativeSrc":"3297:6:101","nodeType":"YulIdentifier","src":"3297:6:101"},{"kind":"number","nativeSrc":"3305:2:101","nodeType":"YulLiteral","src":"3305:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3293:3:101","nodeType":"YulIdentifier","src":"3293:3:101"},"nativeSrc":"3293:15:101","nodeType":"YulFunctionCall","src":"3293:15:101"},"variableNames":[{"name":"pos","nativeSrc":"3286:3:101","nodeType":"YulIdentifier","src":"3286:3:101"}]},{"nativeSrc":"3317:29:101","nodeType":"YulVariableDeclaration","src":"3317:29:101","value":{"arguments":[{"name":"value6","nativeSrc":"3335:6:101","nodeType":"YulIdentifier","src":"3335:6:101"},{"kind":"number","nativeSrc":"3343:2:101","nodeType":"YulLiteral","src":"3343:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3331:3:101","nodeType":"YulIdentifier","src":"3331:3:101"},"nativeSrc":"3331:15:101","nodeType":"YulFunctionCall","src":"3331:15:101"},"variables":[{"name":"srcPtr","nativeSrc":"3321:6:101","nodeType":"YulTypedName","src":"3321:6:101","type":""}]},{"nativeSrc":"3355:10:101","nodeType":"YulVariableDeclaration","src":"3355:10:101","value":{"kind":"number","nativeSrc":"3364:1:101","nodeType":"YulLiteral","src":"3364:1:101","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"3359:1:101","nodeType":"YulTypedName","src":"3359:1:101","type":""}]},{"body":{"nativeSrc":"3423:120:101","nodeType":"YulBlock","src":"3423:120:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"3444:3:101","nodeType":"YulIdentifier","src":"3444:3:101"},{"arguments":[{"name":"srcPtr","nativeSrc":"3455:6:101","nodeType":"YulIdentifier","src":"3455:6:101"}],"functionName":{"name":"mload","nativeSrc":"3449:5:101","nodeType":"YulIdentifier","src":"3449:5:101"},"nativeSrc":"3449:13:101","nodeType":"YulFunctionCall","src":"3449:13:101"}],"functionName":{"name":"mstore","nativeSrc":"3437:6:101","nodeType":"YulIdentifier","src":"3437:6:101"},"nativeSrc":"3437:26:101","nodeType":"YulFunctionCall","src":"3437:26:101"},"nativeSrc":"3437:26:101","nodeType":"YulExpressionStatement","src":"3437:26:101"},{"nativeSrc":"3476:19:101","nodeType":"YulAssignment","src":"3476:19:101","value":{"arguments":[{"name":"pos","nativeSrc":"3487:3:101","nodeType":"YulIdentifier","src":"3487:3:101"},{"kind":"number","nativeSrc":"3492:2:101","nodeType":"YulLiteral","src":"3492:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3483:3:101","nodeType":"YulIdentifier","src":"3483:3:101"},"nativeSrc":"3483:12:101","nodeType":"YulFunctionCall","src":"3483:12:101"},"variableNames":[{"name":"pos","nativeSrc":"3476:3:101","nodeType":"YulIdentifier","src":"3476:3:101"}]},{"nativeSrc":"3508:25:101","nodeType":"YulAssignment","src":"3508:25:101","value":{"arguments":[{"name":"srcPtr","nativeSrc":"3522:6:101","nodeType":"YulIdentifier","src":"3522:6:101"},{"kind":"number","nativeSrc":"3530:2:101","nodeType":"YulLiteral","src":"3530:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3518:3:101","nodeType":"YulIdentifier","src":"3518:3:101"},"nativeSrc":"3518:15:101","nodeType":"YulFunctionCall","src":"3518:15:101"},"variableNames":[{"name":"srcPtr","nativeSrc":"3508:6:101","nodeType":"YulIdentifier","src":"3508:6:101"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"3385:1:101","nodeType":"YulIdentifier","src":"3385:1:101"},{"name":"length","nativeSrc":"3388:6:101","nodeType":"YulIdentifier","src":"3388:6:101"}],"functionName":{"name":"lt","nativeSrc":"3382:2:101","nodeType":"YulIdentifier","src":"3382:2:101"},"nativeSrc":"3382:13:101","nodeType":"YulFunctionCall","src":"3382:13:101"},"nativeSrc":"3374:169:101","nodeType":"YulForLoop","post":{"nativeSrc":"3396:18:101","nodeType":"YulBlock","src":"3396:18:101","statements":[{"nativeSrc":"3398:14:101","nodeType":"YulAssignment","src":"3398:14:101","value":{"arguments":[{"name":"i","nativeSrc":"3407:1:101","nodeType":"YulIdentifier","src":"3407:1:101"},{"kind":"number","nativeSrc":"3410:1:101","nodeType":"YulLiteral","src":"3410:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3403:3:101","nodeType":"YulIdentifier","src":"3403:3:101"},"nativeSrc":"3403:9:101","nodeType":"YulFunctionCall","src":"3403:9:101"},"variableNames":[{"name":"i","nativeSrc":"3398:1:101","nodeType":"YulIdentifier","src":"3398:1:101"}]}]},"pre":{"nativeSrc":"3378:3:101","nodeType":"YulBlock","src":"3378:3:101","statements":[]},"src":"3374:169:101"},{"nativeSrc":"3552:11:101","nodeType":"YulAssignment","src":"3552:11:101","value":{"name":"pos","nativeSrc":"3560:3:101","nodeType":"YulIdentifier","src":"3560:3:101"},"variableNames":[{"name":"tail","nativeSrc":"3552:4:101","nodeType":"YulIdentifier","src":"3552:4:101"}]}]},"name":"abi_encode_tuple_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"2331:1238:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2609:9:101","nodeType":"YulTypedName","src":"2609:9:101","type":""},{"name":"value6","nativeSrc":"2620:6:101","nodeType":"YulTypedName","src":"2620:6:101","type":""},{"name":"value5","nativeSrc":"2628:6:101","nodeType":"YulTypedName","src":"2628:6:101","type":""},{"name":"value4","nativeSrc":"2636:6:101","nodeType":"YulTypedName","src":"2636:6:101","type":""},{"name":"value3","nativeSrc":"2644:6:101","nodeType":"YulTypedName","src":"2644:6:101","type":""},{"name":"value2","nativeSrc":"2652:6:101","nodeType":"YulTypedName","src":"2652:6:101","type":""},{"name":"value1","nativeSrc":"2660:6:101","nodeType":"YulTypedName","src":"2660:6:101","type":""},{"name":"value0","nativeSrc":"2668:6:101","nodeType":"YulTypedName","src":"2668:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2679:4:101","nodeType":"YulTypedName","src":"2679:4:101","type":""}],"src":"2331:1238:101"},{"body":{"nativeSrc":"3744:733:101","nodeType":"YulBlock","src":"3744:733:101","statements":[{"body":{"nativeSrc":"3791:16:101","nodeType":"YulBlock","src":"3791:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3800:1:101","nodeType":"YulLiteral","src":"3800:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3803:1:101","nodeType":"YulLiteral","src":"3803:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3793:6:101","nodeType":"YulIdentifier","src":"3793:6:101"},"nativeSrc":"3793:12:101","nodeType":"YulFunctionCall","src":"3793:12:101"},"nativeSrc":"3793:12:101","nodeType":"YulExpressionStatement","src":"3793:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3765:7:101","nodeType":"YulIdentifier","src":"3765:7:101"},{"name":"headStart","nativeSrc":"3774:9:101","nodeType":"YulIdentifier","src":"3774:9:101"}],"functionName":{"name":"sub","nativeSrc":"3761:3:101","nodeType":"YulIdentifier","src":"3761:3:101"},"nativeSrc":"3761:23:101","nodeType":"YulFunctionCall","src":"3761:23:101"},{"kind":"number","nativeSrc":"3786:3:101","nodeType":"YulLiteral","src":"3786:3:101","type":"","value":"224"}],"functionName":{"name":"slt","nativeSrc":"3757:3:101","nodeType":"YulIdentifier","src":"3757:3:101"},"nativeSrc":"3757:33:101","nodeType":"YulFunctionCall","src":"3757:33:101"},"nativeSrc":"3754:53:101","nodeType":"YulIf","src":"3754:53:101"},{"nativeSrc":"3816:39:101","nodeType":"YulAssignment","src":"3816:39:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3845:9:101","nodeType":"YulIdentifier","src":"3845:9:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"3826:18:101","nodeType":"YulIdentifier","src":"3826:18:101"},"nativeSrc":"3826:29:101","nodeType":"YulFunctionCall","src":"3826:29:101"},"variableNames":[{"name":"value0","nativeSrc":"3816:6:101","nodeType":"YulIdentifier","src":"3816:6:101"}]},{"nativeSrc":"3864:48:101","nodeType":"YulAssignment","src":"3864:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3897:9:101","nodeType":"YulIdentifier","src":"3897:9:101"},{"kind":"number","nativeSrc":"3908:2:101","nodeType":"YulLiteral","src":"3908:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3893:3:101","nodeType":"YulIdentifier","src":"3893:3:101"},"nativeSrc":"3893:18:101","nodeType":"YulFunctionCall","src":"3893:18:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"3874:18:101","nodeType":"YulIdentifier","src":"3874:18:101"},"nativeSrc":"3874:38:101","nodeType":"YulFunctionCall","src":"3874:38:101"},"variableNames":[{"name":"value1","nativeSrc":"3864:6:101","nodeType":"YulIdentifier","src":"3864:6:101"}]},{"nativeSrc":"3921:14:101","nodeType":"YulVariableDeclaration","src":"3921:14:101","value":{"kind":"number","nativeSrc":"3934:1:101","nodeType":"YulLiteral","src":"3934:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3925:5:101","nodeType":"YulTypedName","src":"3925:5:101","type":""}]},{"nativeSrc":"3944:41:101","nodeType":"YulAssignment","src":"3944:41:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3970:9:101","nodeType":"YulIdentifier","src":"3970:9:101"},{"kind":"number","nativeSrc":"3981:2:101","nodeType":"YulLiteral","src":"3981:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3966:3:101","nodeType":"YulIdentifier","src":"3966:3:101"},"nativeSrc":"3966:18:101","nodeType":"YulFunctionCall","src":"3966:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3953:12:101","nodeType":"YulIdentifier","src":"3953:12:101"},"nativeSrc":"3953:32:101","nodeType":"YulFunctionCall","src":"3953:32:101"},"variableNames":[{"name":"value","nativeSrc":"3944:5:101","nodeType":"YulIdentifier","src":"3944:5:101"}]},{"nativeSrc":"3994:15:101","nodeType":"YulAssignment","src":"3994:15:101","value":{"name":"value","nativeSrc":"4004:5:101","nodeType":"YulIdentifier","src":"4004:5:101"},"variableNames":[{"name":"value2","nativeSrc":"3994:6:101","nodeType":"YulIdentifier","src":"3994:6:101"}]},{"nativeSrc":"4018:16:101","nodeType":"YulVariableDeclaration","src":"4018:16:101","value":{"kind":"number","nativeSrc":"4033:1:101","nodeType":"YulLiteral","src":"4033:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"4022:7:101","nodeType":"YulTypedName","src":"4022:7:101","type":""}]},{"nativeSrc":"4043:43:101","nodeType":"YulAssignment","src":"4043:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4071:9:101","nodeType":"YulIdentifier","src":"4071:9:101"},{"kind":"number","nativeSrc":"4082:2:101","nodeType":"YulLiteral","src":"4082:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4067:3:101","nodeType":"YulIdentifier","src":"4067:3:101"},"nativeSrc":"4067:18:101","nodeType":"YulFunctionCall","src":"4067:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"4054:12:101","nodeType":"YulIdentifier","src":"4054:12:101"},"nativeSrc":"4054:32:101","nodeType":"YulFunctionCall","src":"4054:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"4043:7:101","nodeType":"YulIdentifier","src":"4043:7:101"}]},{"nativeSrc":"4095:17:101","nodeType":"YulAssignment","src":"4095:17:101","value":{"name":"value_1","nativeSrc":"4105:7:101","nodeType":"YulIdentifier","src":"4105:7:101"},"variableNames":[{"name":"value3","nativeSrc":"4095:6:101","nodeType":"YulIdentifier","src":"4095:6:101"}]},{"nativeSrc":"4121:48:101","nodeType":"YulVariableDeclaration","src":"4121:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4153:9:101","nodeType":"YulIdentifier","src":"4153:9:101"},{"kind":"number","nativeSrc":"4164:3:101","nodeType":"YulLiteral","src":"4164:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4149:3:101","nodeType":"YulIdentifier","src":"4149:3:101"},"nativeSrc":"4149:19:101","nodeType":"YulFunctionCall","src":"4149:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"4136:12:101","nodeType":"YulIdentifier","src":"4136:12:101"},"nativeSrc":"4136:33:101","nodeType":"YulFunctionCall","src":"4136:33:101"},"variables":[{"name":"value_2","nativeSrc":"4125:7:101","nodeType":"YulTypedName","src":"4125:7:101","type":""}]},{"body":{"nativeSrc":"4221:16:101","nodeType":"YulBlock","src":"4221:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4230:1:101","nodeType":"YulLiteral","src":"4230:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4233:1:101","nodeType":"YulLiteral","src":"4233:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4223:6:101","nodeType":"YulIdentifier","src":"4223:6:101"},"nativeSrc":"4223:12:101","nodeType":"YulFunctionCall","src":"4223:12:101"},"nativeSrc":"4223:12:101","nodeType":"YulExpressionStatement","src":"4223:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value_2","nativeSrc":"4191:7:101","nodeType":"YulIdentifier","src":"4191:7:101"},{"arguments":[{"name":"value_2","nativeSrc":"4204:7:101","nodeType":"YulIdentifier","src":"4204:7:101"},{"kind":"number","nativeSrc":"4213:4:101","nodeType":"YulLiteral","src":"4213:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"4200:3:101","nodeType":"YulIdentifier","src":"4200:3:101"},"nativeSrc":"4200:18:101","nodeType":"YulFunctionCall","src":"4200:18:101"}],"functionName":{"name":"eq","nativeSrc":"4188:2:101","nodeType":"YulIdentifier","src":"4188:2:101"},"nativeSrc":"4188:31:101","nodeType":"YulFunctionCall","src":"4188:31:101"}],"functionName":{"name":"iszero","nativeSrc":"4181:6:101","nodeType":"YulIdentifier","src":"4181:6:101"},"nativeSrc":"4181:39:101","nodeType":"YulFunctionCall","src":"4181:39:101"},"nativeSrc":"4178:59:101","nodeType":"YulIf","src":"4178:59:101"},{"nativeSrc":"4246:17:101","nodeType":"YulAssignment","src":"4246:17:101","value":{"name":"value_2","nativeSrc":"4256:7:101","nodeType":"YulIdentifier","src":"4256:7:101"},"variableNames":[{"name":"value4","nativeSrc":"4246:6:101","nodeType":"YulIdentifier","src":"4246:6:101"}]},{"nativeSrc":"4272:16:101","nodeType":"YulVariableDeclaration","src":"4272:16:101","value":{"kind":"number","nativeSrc":"4287:1:101","nodeType":"YulLiteral","src":"4287:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"4276:7:101","nodeType":"YulTypedName","src":"4276:7:101","type":""}]},{"nativeSrc":"4297:44:101","nodeType":"YulAssignment","src":"4297:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4325:9:101","nodeType":"YulIdentifier","src":"4325:9:101"},{"kind":"number","nativeSrc":"4336:3:101","nodeType":"YulLiteral","src":"4336:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"4321:3:101","nodeType":"YulIdentifier","src":"4321:3:101"},"nativeSrc":"4321:19:101","nodeType":"YulFunctionCall","src":"4321:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"4308:12:101","nodeType":"YulIdentifier","src":"4308:12:101"},"nativeSrc":"4308:33:101","nodeType":"YulFunctionCall","src":"4308:33:101"},"variableNames":[{"name":"value_3","nativeSrc":"4297:7:101","nodeType":"YulIdentifier","src":"4297:7:101"}]},{"nativeSrc":"4350:17:101","nodeType":"YulAssignment","src":"4350:17:101","value":{"name":"value_3","nativeSrc":"4360:7:101","nodeType":"YulIdentifier","src":"4360:7:101"},"variableNames":[{"name":"value5","nativeSrc":"4350:6:101","nodeType":"YulIdentifier","src":"4350:6:101"}]},{"nativeSrc":"4376:16:101","nodeType":"YulVariableDeclaration","src":"4376:16:101","value":{"kind":"number","nativeSrc":"4391:1:101","nodeType":"YulLiteral","src":"4391:1:101","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"4380:7:101","nodeType":"YulTypedName","src":"4380:7:101","type":""}]},{"nativeSrc":"4401:44:101","nodeType":"YulAssignment","src":"4401:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4429:9:101","nodeType":"YulIdentifier","src":"4429:9:101"},{"kind":"number","nativeSrc":"4440:3:101","nodeType":"YulLiteral","src":"4440:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"4425:3:101","nodeType":"YulIdentifier","src":"4425:3:101"},"nativeSrc":"4425:19:101","nodeType":"YulFunctionCall","src":"4425:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"4412:12:101","nodeType":"YulIdentifier","src":"4412:12:101"},"nativeSrc":"4412:33:101","nodeType":"YulFunctionCall","src":"4412:33:101"},"variableNames":[{"name":"value_4","nativeSrc":"4401:7:101","nodeType":"YulIdentifier","src":"4401:7:101"}]},{"nativeSrc":"4454:17:101","nodeType":"YulAssignment","src":"4454:17:101","value":{"name":"value_4","nativeSrc":"4464:7:101","nodeType":"YulIdentifier","src":"4464:7:101"},"variableNames":[{"name":"value6","nativeSrc":"4454:6:101","nodeType":"YulIdentifier","src":"4454:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32","nativeSrc":"3574:903:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3662:9:101","nodeType":"YulTypedName","src":"3662:9:101","type":""},{"name":"dataEnd","nativeSrc":"3673:7:101","nodeType":"YulTypedName","src":"3673:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3685:6:101","nodeType":"YulTypedName","src":"3685:6:101","type":""},{"name":"value1","nativeSrc":"3693:6:101","nodeType":"YulTypedName","src":"3693:6:101","type":""},{"name":"value2","nativeSrc":"3701:6:101","nodeType":"YulTypedName","src":"3701:6:101","type":""},{"name":"value3","nativeSrc":"3709:6:101","nodeType":"YulTypedName","src":"3709:6:101","type":""},{"name":"value4","nativeSrc":"3717:6:101","nodeType":"YulTypedName","src":"3717:6:101","type":""},{"name":"value5","nativeSrc":"3725:6:101","nodeType":"YulTypedName","src":"3725:6:101","type":""},{"name":"value6","nativeSrc":"3733:6:101","nodeType":"YulTypedName","src":"3733:6:101","type":""}],"src":"3574:903:101"},{"body":{"nativeSrc":"4569:173:101","nodeType":"YulBlock","src":"4569:173:101","statements":[{"body":{"nativeSrc":"4615:16:101","nodeType":"YulBlock","src":"4615:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4624:1:101","nodeType":"YulLiteral","src":"4624:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4627:1:101","nodeType":"YulLiteral","src":"4627:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4617:6:101","nodeType":"YulIdentifier","src":"4617:6:101"},"nativeSrc":"4617:12:101","nodeType":"YulFunctionCall","src":"4617:12:101"},"nativeSrc":"4617:12:101","nodeType":"YulExpressionStatement","src":"4617:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4590:7:101","nodeType":"YulIdentifier","src":"4590:7:101"},{"name":"headStart","nativeSrc":"4599:9:101","nodeType":"YulIdentifier","src":"4599:9:101"}],"functionName":{"name":"sub","nativeSrc":"4586:3:101","nodeType":"YulIdentifier","src":"4586:3:101"},"nativeSrc":"4586:23:101","nodeType":"YulFunctionCall","src":"4586:23:101"},{"kind":"number","nativeSrc":"4611:2:101","nodeType":"YulLiteral","src":"4611:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4582:3:101","nodeType":"YulIdentifier","src":"4582:3:101"},"nativeSrc":"4582:32:101","nodeType":"YulFunctionCall","src":"4582:32:101"},"nativeSrc":"4579:52:101","nodeType":"YulIf","src":"4579:52:101"},{"nativeSrc":"4640:39:101","nodeType":"YulAssignment","src":"4640:39:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4669:9:101","nodeType":"YulIdentifier","src":"4669:9:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"4650:18:101","nodeType":"YulIdentifier","src":"4650:18:101"},"nativeSrc":"4650:29:101","nodeType":"YulFunctionCall","src":"4650:29:101"},"variableNames":[{"name":"value0","nativeSrc":"4640:6:101","nodeType":"YulIdentifier","src":"4640:6:101"}]},{"nativeSrc":"4688:48:101","nodeType":"YulAssignment","src":"4688:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4721:9:101","nodeType":"YulIdentifier","src":"4721:9:101"},{"kind":"number","nativeSrc":"4732:2:101","nodeType":"YulLiteral","src":"4732:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4717:3:101","nodeType":"YulIdentifier","src":"4717:3:101"},"nativeSrc":"4717:18:101","nodeType":"YulFunctionCall","src":"4717:18:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"4698:18:101","nodeType":"YulIdentifier","src":"4698:18:101"},"nativeSrc":"4698:38:101","nodeType":"YulFunctionCall","src":"4698:38:101"},"variableNames":[{"name":"value1","nativeSrc":"4688:6:101","nodeType":"YulIdentifier","src":"4688:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"4482:260:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4527:9:101","nodeType":"YulTypedName","src":"4527:9:101","type":""},{"name":"dataEnd","nativeSrc":"4538:7:101","nodeType":"YulTypedName","src":"4538:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4550:6:101","nodeType":"YulTypedName","src":"4550:6:101","type":""},{"name":"value1","nativeSrc":"4558:6:101","nodeType":"YulTypedName","src":"4558:6:101","type":""}],"src":"4482:260:101"},{"body":{"nativeSrc":"4802:325:101","nodeType":"YulBlock","src":"4802:325:101","statements":[{"nativeSrc":"4812:22:101","nodeType":"YulAssignment","src":"4812:22:101","value":{"arguments":[{"kind":"number","nativeSrc":"4826:1:101","nodeType":"YulLiteral","src":"4826:1:101","type":"","value":"1"},{"name":"data","nativeSrc":"4829:4:101","nodeType":"YulIdentifier","src":"4829:4:101"}],"functionName":{"name":"shr","nativeSrc":"4822:3:101","nodeType":"YulIdentifier","src":"4822:3:101"},"nativeSrc":"4822:12:101","nodeType":"YulFunctionCall","src":"4822:12:101"},"variableNames":[{"name":"length","nativeSrc":"4812:6:101","nodeType":"YulIdentifier","src":"4812:6:101"}]},{"nativeSrc":"4843:38:101","nodeType":"YulVariableDeclaration","src":"4843:38:101","value":{"arguments":[{"name":"data","nativeSrc":"4873:4:101","nodeType":"YulIdentifier","src":"4873:4:101"},{"kind":"number","nativeSrc":"4879:1:101","nodeType":"YulLiteral","src":"4879:1:101","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"4869:3:101","nodeType":"YulIdentifier","src":"4869:3:101"},"nativeSrc":"4869:12:101","nodeType":"YulFunctionCall","src":"4869:12:101"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"4847:18:101","nodeType":"YulTypedName","src":"4847:18:101","type":""}]},{"body":{"nativeSrc":"4920:31:101","nodeType":"YulBlock","src":"4920:31:101","statements":[{"nativeSrc":"4922:27:101","nodeType":"YulAssignment","src":"4922:27:101","value":{"arguments":[{"name":"length","nativeSrc":"4936:6:101","nodeType":"YulIdentifier","src":"4936:6:101"},{"kind":"number","nativeSrc":"4944:4:101","nodeType":"YulLiteral","src":"4944:4:101","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"4932:3:101","nodeType":"YulIdentifier","src":"4932:3:101"},"nativeSrc":"4932:17:101","nodeType":"YulFunctionCall","src":"4932:17:101"},"variableNames":[{"name":"length","nativeSrc":"4922:6:101","nodeType":"YulIdentifier","src":"4922:6:101"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"4900:18:101","nodeType":"YulIdentifier","src":"4900:18:101"}],"functionName":{"name":"iszero","nativeSrc":"4893:6:101","nodeType":"YulIdentifier","src":"4893:6:101"},"nativeSrc":"4893:26:101","nodeType":"YulFunctionCall","src":"4893:26:101"},"nativeSrc":"4890:61:101","nodeType":"YulIf","src":"4890:61:101"},{"body":{"nativeSrc":"5010:111:101","nodeType":"YulBlock","src":"5010:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5031:1:101","nodeType":"YulLiteral","src":"5031:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5038:3:101","nodeType":"YulLiteral","src":"5038:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"5043:10:101","nodeType":"YulLiteral","src":"5043:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5034:3:101","nodeType":"YulIdentifier","src":"5034:3:101"},"nativeSrc":"5034:20:101","nodeType":"YulFunctionCall","src":"5034:20:101"}],"functionName":{"name":"mstore","nativeSrc":"5024:6:101","nodeType":"YulIdentifier","src":"5024:6:101"},"nativeSrc":"5024:31:101","nodeType":"YulFunctionCall","src":"5024:31:101"},"nativeSrc":"5024:31:101","nodeType":"YulExpressionStatement","src":"5024:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5075:1:101","nodeType":"YulLiteral","src":"5075:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"5078:4:101","nodeType":"YulLiteral","src":"5078:4:101","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"5068:6:101","nodeType":"YulIdentifier","src":"5068:6:101"},"nativeSrc":"5068:15:101","nodeType":"YulFunctionCall","src":"5068:15:101"},"nativeSrc":"5068:15:101","nodeType":"YulExpressionStatement","src":"5068:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5103:1:101","nodeType":"YulLiteral","src":"5103:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5106:4:101","nodeType":"YulLiteral","src":"5106:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5096:6:101","nodeType":"YulIdentifier","src":"5096:6:101"},"nativeSrc":"5096:15:101","nodeType":"YulFunctionCall","src":"5096:15:101"},"nativeSrc":"5096:15:101","nodeType":"YulExpressionStatement","src":"5096:15:101"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"4966:18:101","nodeType":"YulIdentifier","src":"4966:18:101"},{"arguments":[{"name":"length","nativeSrc":"4989:6:101","nodeType":"YulIdentifier","src":"4989:6:101"},{"kind":"number","nativeSrc":"4997:2:101","nodeType":"YulLiteral","src":"4997:2:101","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"4986:2:101","nodeType":"YulIdentifier","src":"4986:2:101"},"nativeSrc":"4986:14:101","nodeType":"YulFunctionCall","src":"4986:14:101"}],"functionName":{"name":"eq","nativeSrc":"4963:2:101","nodeType":"YulIdentifier","src":"4963:2:101"},"nativeSrc":"4963:38:101","nodeType":"YulFunctionCall","src":"4963:38:101"},"nativeSrc":"4960:161:101","nodeType":"YulIf","src":"4960:161:101"}]},"name":"extract_byte_array_length","nativeSrc":"4747:380:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"4782:4:101","nodeType":"YulTypedName","src":"4782:4:101","type":""}],"returnVariables":[{"name":"length","nativeSrc":"4791:6:101","nodeType":"YulTypedName","src":"4791:6:101","type":""}],"src":"4747:380:101"},{"body":{"nativeSrc":"5164:95:101","nodeType":"YulBlock","src":"5164:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5181:1:101","nodeType":"YulLiteral","src":"5181:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5188:3:101","nodeType":"YulLiteral","src":"5188:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"5193:10:101","nodeType":"YulLiteral","src":"5193:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5184:3:101","nodeType":"YulIdentifier","src":"5184:3:101"},"nativeSrc":"5184:20:101","nodeType":"YulFunctionCall","src":"5184:20:101"}],"functionName":{"name":"mstore","nativeSrc":"5174:6:101","nodeType":"YulIdentifier","src":"5174:6:101"},"nativeSrc":"5174:31:101","nodeType":"YulFunctionCall","src":"5174:31:101"},"nativeSrc":"5174:31:101","nodeType":"YulExpressionStatement","src":"5174:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5221:1:101","nodeType":"YulLiteral","src":"5221:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"5224:4:101","nodeType":"YulLiteral","src":"5224:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"5214:6:101","nodeType":"YulIdentifier","src":"5214:6:101"},"nativeSrc":"5214:15:101","nodeType":"YulFunctionCall","src":"5214:15:101"},"nativeSrc":"5214:15:101","nodeType":"YulExpressionStatement","src":"5214:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5245:1:101","nodeType":"YulLiteral","src":"5245:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5248:4:101","nodeType":"YulLiteral","src":"5248:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5238:6:101","nodeType":"YulIdentifier","src":"5238:6:101"},"nativeSrc":"5238:15:101","nodeType":"YulFunctionCall","src":"5238:15:101"},"nativeSrc":"5238:15:101","nodeType":"YulExpressionStatement","src":"5238:15:101"}]},"name":"panic_error_0x41","nativeSrc":"5132:127:101","nodeType":"YulFunctionDefinition","src":"5132:127:101"},{"body":{"nativeSrc":"5505:346:101","nodeType":"YulBlock","src":"5505:346:101","statements":[{"nativeSrc":"5515:27:101","nodeType":"YulAssignment","src":"5515:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5527:9:101","nodeType":"YulIdentifier","src":"5527:9:101"},{"kind":"number","nativeSrc":"5538:3:101","nodeType":"YulLiteral","src":"5538:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"5523:3:101","nodeType":"YulIdentifier","src":"5523:3:101"},"nativeSrc":"5523:19:101","nodeType":"YulFunctionCall","src":"5523:19:101"},"variableNames":[{"name":"tail","nativeSrc":"5515:4:101","nodeType":"YulIdentifier","src":"5515:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5558:9:101","nodeType":"YulIdentifier","src":"5558:9:101"},{"name":"value0","nativeSrc":"5569:6:101","nodeType":"YulIdentifier","src":"5569:6:101"}],"functionName":{"name":"mstore","nativeSrc":"5551:6:101","nodeType":"YulIdentifier","src":"5551:6:101"},"nativeSrc":"5551:25:101","nodeType":"YulFunctionCall","src":"5551:25:101"},"nativeSrc":"5551:25:101","nodeType":"YulExpressionStatement","src":"5551:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5596:9:101","nodeType":"YulIdentifier","src":"5596:9:101"},{"kind":"number","nativeSrc":"5607:2:101","nodeType":"YulLiteral","src":"5607:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5592:3:101","nodeType":"YulIdentifier","src":"5592:3:101"},"nativeSrc":"5592:18:101","nodeType":"YulFunctionCall","src":"5592:18:101"},{"arguments":[{"name":"value1","nativeSrc":"5616:6:101","nodeType":"YulIdentifier","src":"5616:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5632:3:101","nodeType":"YulLiteral","src":"5632:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"5637:1:101","nodeType":"YulLiteral","src":"5637:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5628:3:101","nodeType":"YulIdentifier","src":"5628:3:101"},"nativeSrc":"5628:11:101","nodeType":"YulFunctionCall","src":"5628:11:101"},{"kind":"number","nativeSrc":"5641:1:101","nodeType":"YulLiteral","src":"5641:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5624:3:101","nodeType":"YulIdentifier","src":"5624:3:101"},"nativeSrc":"5624:19:101","nodeType":"YulFunctionCall","src":"5624:19:101"}],"functionName":{"name":"and","nativeSrc":"5612:3:101","nodeType":"YulIdentifier","src":"5612:3:101"},"nativeSrc":"5612:32:101","nodeType":"YulFunctionCall","src":"5612:32:101"}],"functionName":{"name":"mstore","nativeSrc":"5585:6:101","nodeType":"YulIdentifier","src":"5585:6:101"},"nativeSrc":"5585:60:101","nodeType":"YulFunctionCall","src":"5585:60:101"},"nativeSrc":"5585:60:101","nodeType":"YulExpressionStatement","src":"5585:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5665:9:101","nodeType":"YulIdentifier","src":"5665:9:101"},{"kind":"number","nativeSrc":"5676:2:101","nodeType":"YulLiteral","src":"5676:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5661:3:101","nodeType":"YulIdentifier","src":"5661:3:101"},"nativeSrc":"5661:18:101","nodeType":"YulFunctionCall","src":"5661:18:101"},{"arguments":[{"name":"value2","nativeSrc":"5685:6:101","nodeType":"YulIdentifier","src":"5685:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5701:3:101","nodeType":"YulLiteral","src":"5701:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"5706:1:101","nodeType":"YulLiteral","src":"5706:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5697:3:101","nodeType":"YulIdentifier","src":"5697:3:101"},"nativeSrc":"5697:11:101","nodeType":"YulFunctionCall","src":"5697:11:101"},{"kind":"number","nativeSrc":"5710:1:101","nodeType":"YulLiteral","src":"5710:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5693:3:101","nodeType":"YulIdentifier","src":"5693:3:101"},"nativeSrc":"5693:19:101","nodeType":"YulFunctionCall","src":"5693:19:101"}],"functionName":{"name":"and","nativeSrc":"5681:3:101","nodeType":"YulIdentifier","src":"5681:3:101"},"nativeSrc":"5681:32:101","nodeType":"YulFunctionCall","src":"5681:32:101"}],"functionName":{"name":"mstore","nativeSrc":"5654:6:101","nodeType":"YulIdentifier","src":"5654:6:101"},"nativeSrc":"5654:60:101","nodeType":"YulFunctionCall","src":"5654:60:101"},"nativeSrc":"5654:60:101","nodeType":"YulExpressionStatement","src":"5654:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5734:9:101","nodeType":"YulIdentifier","src":"5734:9:101"},{"kind":"number","nativeSrc":"5745:2:101","nodeType":"YulLiteral","src":"5745:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5730:3:101","nodeType":"YulIdentifier","src":"5730:3:101"},"nativeSrc":"5730:18:101","nodeType":"YulFunctionCall","src":"5730:18:101"},{"name":"value3","nativeSrc":"5750:6:101","nodeType":"YulIdentifier","src":"5750:6:101"}],"functionName":{"name":"mstore","nativeSrc":"5723:6:101","nodeType":"YulIdentifier","src":"5723:6:101"},"nativeSrc":"5723:34:101","nodeType":"YulFunctionCall","src":"5723:34:101"},"nativeSrc":"5723:34:101","nodeType":"YulExpressionStatement","src":"5723:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5777:9:101","nodeType":"YulIdentifier","src":"5777:9:101"},{"kind":"number","nativeSrc":"5788:3:101","nodeType":"YulLiteral","src":"5788:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"5773:3:101","nodeType":"YulIdentifier","src":"5773:3:101"},"nativeSrc":"5773:19:101","nodeType":"YulFunctionCall","src":"5773:19:101"},{"name":"value4","nativeSrc":"5794:6:101","nodeType":"YulIdentifier","src":"5794:6:101"}],"functionName":{"name":"mstore","nativeSrc":"5766:6:101","nodeType":"YulIdentifier","src":"5766:6:101"},"nativeSrc":"5766:35:101","nodeType":"YulFunctionCall","src":"5766:35:101"},"nativeSrc":"5766:35:101","nodeType":"YulExpressionStatement","src":"5766:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5821:9:101","nodeType":"YulIdentifier","src":"5821:9:101"},{"kind":"number","nativeSrc":"5832:3:101","nodeType":"YulLiteral","src":"5832:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"5817:3:101","nodeType":"YulIdentifier","src":"5817:3:101"},"nativeSrc":"5817:19:101","nodeType":"YulFunctionCall","src":"5817:19:101"},{"name":"value5","nativeSrc":"5838:6:101","nodeType":"YulIdentifier","src":"5838:6:101"}],"functionName":{"name":"mstore","nativeSrc":"5810:6:101","nodeType":"YulIdentifier","src":"5810:6:101"},"nativeSrc":"5810:35:101","nodeType":"YulFunctionCall","src":"5810:35:101"},"nativeSrc":"5810:35:101","nodeType":"YulExpressionStatement","src":"5810:35:101"}]},"name":"abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"5264:587:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5434:9:101","nodeType":"YulTypedName","src":"5434:9:101","type":""},{"name":"value5","nativeSrc":"5445:6:101","nodeType":"YulTypedName","src":"5445:6:101","type":""},{"name":"value4","nativeSrc":"5453:6:101","nodeType":"YulTypedName","src":"5453:6:101","type":""},{"name":"value3","nativeSrc":"5461:6:101","nodeType":"YulTypedName","src":"5461:6:101","type":""},{"name":"value2","nativeSrc":"5469:6:101","nodeType":"YulTypedName","src":"5469:6:101","type":""},{"name":"value1","nativeSrc":"5477:6:101","nodeType":"YulTypedName","src":"5477:6:101","type":""},{"name":"value0","nativeSrc":"5485:6:101","nodeType":"YulTypedName","src":"5485:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5496:4:101","nodeType":"YulTypedName","src":"5496:4:101","type":""}],"src":"5264:587:101"},{"body":{"nativeSrc":"5985:171:101","nodeType":"YulBlock","src":"5985:171:101","statements":[{"nativeSrc":"5995:26:101","nodeType":"YulAssignment","src":"5995:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6007:9:101","nodeType":"YulIdentifier","src":"6007:9:101"},{"kind":"number","nativeSrc":"6018:2:101","nodeType":"YulLiteral","src":"6018:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6003:3:101","nodeType":"YulIdentifier","src":"6003:3:101"},"nativeSrc":"6003:18:101","nodeType":"YulFunctionCall","src":"6003:18:101"},"variableNames":[{"name":"tail","nativeSrc":"5995:4:101","nodeType":"YulIdentifier","src":"5995:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6037:9:101","nodeType":"YulIdentifier","src":"6037:9:101"},{"arguments":[{"name":"value0","nativeSrc":"6052:6:101","nodeType":"YulIdentifier","src":"6052:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6068:3:101","nodeType":"YulLiteral","src":"6068:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"6073:1:101","nodeType":"YulLiteral","src":"6073:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6064:3:101","nodeType":"YulIdentifier","src":"6064:3:101"},"nativeSrc":"6064:11:101","nodeType":"YulFunctionCall","src":"6064:11:101"},{"kind":"number","nativeSrc":"6077:1:101","nodeType":"YulLiteral","src":"6077:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6060:3:101","nodeType":"YulIdentifier","src":"6060:3:101"},"nativeSrc":"6060:19:101","nodeType":"YulFunctionCall","src":"6060:19:101"}],"functionName":{"name":"and","nativeSrc":"6048:3:101","nodeType":"YulIdentifier","src":"6048:3:101"},"nativeSrc":"6048:32:101","nodeType":"YulFunctionCall","src":"6048:32:101"}],"functionName":{"name":"mstore","nativeSrc":"6030:6:101","nodeType":"YulIdentifier","src":"6030:6:101"},"nativeSrc":"6030:51:101","nodeType":"YulFunctionCall","src":"6030:51:101"},"nativeSrc":"6030:51:101","nodeType":"YulExpressionStatement","src":"6030:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6101:9:101","nodeType":"YulIdentifier","src":"6101:9:101"},{"kind":"number","nativeSrc":"6112:2:101","nodeType":"YulLiteral","src":"6112:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6097:3:101","nodeType":"YulIdentifier","src":"6097:3:101"},"nativeSrc":"6097:18:101","nodeType":"YulFunctionCall","src":"6097:18:101"},{"arguments":[{"name":"value1","nativeSrc":"6121:6:101","nodeType":"YulIdentifier","src":"6121:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6137:3:101","nodeType":"YulLiteral","src":"6137:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"6142:1:101","nodeType":"YulLiteral","src":"6142:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6133:3:101","nodeType":"YulIdentifier","src":"6133:3:101"},"nativeSrc":"6133:11:101","nodeType":"YulFunctionCall","src":"6133:11:101"},{"kind":"number","nativeSrc":"6146:1:101","nodeType":"YulLiteral","src":"6146:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6129:3:101","nodeType":"YulIdentifier","src":"6129:3:101"},"nativeSrc":"6129:19:101","nodeType":"YulFunctionCall","src":"6129:19:101"}],"functionName":{"name":"and","nativeSrc":"6117:3:101","nodeType":"YulIdentifier","src":"6117:3:101"},"nativeSrc":"6117:32:101","nodeType":"YulFunctionCall","src":"6117:32:101"}],"functionName":{"name":"mstore","nativeSrc":"6090:6:101","nodeType":"YulIdentifier","src":"6090:6:101"},"nativeSrc":"6090:60:101","nodeType":"YulFunctionCall","src":"6090:60:101"},"nativeSrc":"6090:60:101","nodeType":"YulExpressionStatement","src":"6090:60:101"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nativeSrc":"5856:300:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5946:9:101","nodeType":"YulTypedName","src":"5946:9:101","type":""},{"name":"value1","nativeSrc":"5957:6:101","nodeType":"YulTypedName","src":"5957:6:101","type":""},{"name":"value0","nativeSrc":"5965:6:101","nodeType":"YulTypedName","src":"5965:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5976:4:101","nodeType":"YulTypedName","src":"5976:4:101","type":""}],"src":"5856:300:101"},{"body":{"nativeSrc":"6318:188:101","nodeType":"YulBlock","src":"6318:188:101","statements":[{"nativeSrc":"6328:26:101","nodeType":"YulAssignment","src":"6328:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6340:9:101","nodeType":"YulIdentifier","src":"6340:9:101"},{"kind":"number","nativeSrc":"6351:2:101","nodeType":"YulLiteral","src":"6351:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"6336:3:101","nodeType":"YulIdentifier","src":"6336:3:101"},"nativeSrc":"6336:18:101","nodeType":"YulFunctionCall","src":"6336:18:101"},"variableNames":[{"name":"tail","nativeSrc":"6328:4:101","nodeType":"YulIdentifier","src":"6328:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6370:9:101","nodeType":"YulIdentifier","src":"6370:9:101"},{"arguments":[{"name":"value0","nativeSrc":"6385:6:101","nodeType":"YulIdentifier","src":"6385:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6401:3:101","nodeType":"YulLiteral","src":"6401:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"6406:1:101","nodeType":"YulLiteral","src":"6406:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6397:3:101","nodeType":"YulIdentifier","src":"6397:3:101"},"nativeSrc":"6397:11:101","nodeType":"YulFunctionCall","src":"6397:11:101"},{"kind":"number","nativeSrc":"6410:1:101","nodeType":"YulLiteral","src":"6410:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6393:3:101","nodeType":"YulIdentifier","src":"6393:3:101"},"nativeSrc":"6393:19:101","nodeType":"YulFunctionCall","src":"6393:19:101"}],"functionName":{"name":"and","nativeSrc":"6381:3:101","nodeType":"YulIdentifier","src":"6381:3:101"},"nativeSrc":"6381:32:101","nodeType":"YulFunctionCall","src":"6381:32:101"}],"functionName":{"name":"mstore","nativeSrc":"6363:6:101","nodeType":"YulIdentifier","src":"6363:6:101"},"nativeSrc":"6363:51:101","nodeType":"YulFunctionCall","src":"6363:51:101"},"nativeSrc":"6363:51:101","nodeType":"YulExpressionStatement","src":"6363:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6434:9:101","nodeType":"YulIdentifier","src":"6434:9:101"},{"kind":"number","nativeSrc":"6445:2:101","nodeType":"YulLiteral","src":"6445:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6430:3:101","nodeType":"YulIdentifier","src":"6430:3:101"},"nativeSrc":"6430:18:101","nodeType":"YulFunctionCall","src":"6430:18:101"},{"name":"value1","nativeSrc":"6450:6:101","nodeType":"YulIdentifier","src":"6450:6:101"}],"functionName":{"name":"mstore","nativeSrc":"6423:6:101","nodeType":"YulIdentifier","src":"6423:6:101"},"nativeSrc":"6423:34:101","nodeType":"YulFunctionCall","src":"6423:34:101"},"nativeSrc":"6423:34:101","nodeType":"YulExpressionStatement","src":"6423:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6477:9:101","nodeType":"YulIdentifier","src":"6477:9:101"},{"kind":"number","nativeSrc":"6488:2:101","nodeType":"YulLiteral","src":"6488:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6473:3:101","nodeType":"YulIdentifier","src":"6473:3:101"},"nativeSrc":"6473:18:101","nodeType":"YulFunctionCall","src":"6473:18:101"},{"name":"value2","nativeSrc":"6493:6:101","nodeType":"YulIdentifier","src":"6493:6:101"}],"functionName":{"name":"mstore","nativeSrc":"6466:6:101","nodeType":"YulIdentifier","src":"6466:6:101"},"nativeSrc":"6466:34:101","nodeType":"YulFunctionCall","src":"6466:34:101"},"nativeSrc":"6466:34:101","nodeType":"YulExpressionStatement","src":"6466:34:101"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"6161:345:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6271:9:101","nodeType":"YulTypedName","src":"6271:9:101","type":""},{"name":"value2","nativeSrc":"6282:6:101","nodeType":"YulTypedName","src":"6282:6:101","type":""},{"name":"value1","nativeSrc":"6290:6:101","nodeType":"YulTypedName","src":"6290:6:101","type":""},{"name":"value0","nativeSrc":"6298:6:101","nodeType":"YulTypedName","src":"6298:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6309:4:101","nodeType":"YulTypedName","src":"6309:4:101","type":""}],"src":"6161:345:101"},{"body":{"nativeSrc":"6612:102:101","nodeType":"YulBlock","src":"6612:102:101","statements":[{"nativeSrc":"6622:26:101","nodeType":"YulAssignment","src":"6622:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6634:9:101","nodeType":"YulIdentifier","src":"6634:9:101"},{"kind":"number","nativeSrc":"6645:2:101","nodeType":"YulLiteral","src":"6645:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6630:3:101","nodeType":"YulIdentifier","src":"6630:3:101"},"nativeSrc":"6630:18:101","nodeType":"YulFunctionCall","src":"6630:18:101"},"variableNames":[{"name":"tail","nativeSrc":"6622:4:101","nodeType":"YulIdentifier","src":"6622:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6664:9:101","nodeType":"YulIdentifier","src":"6664:9:101"},{"arguments":[{"name":"value0","nativeSrc":"6679:6:101","nodeType":"YulIdentifier","src":"6679:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6695:3:101","nodeType":"YulLiteral","src":"6695:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"6700:1:101","nodeType":"YulLiteral","src":"6700:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6691:3:101","nodeType":"YulIdentifier","src":"6691:3:101"},"nativeSrc":"6691:11:101","nodeType":"YulFunctionCall","src":"6691:11:101"},{"kind":"number","nativeSrc":"6704:1:101","nodeType":"YulLiteral","src":"6704:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6687:3:101","nodeType":"YulIdentifier","src":"6687:3:101"},"nativeSrc":"6687:19:101","nodeType":"YulFunctionCall","src":"6687:19:101"}],"functionName":{"name":"and","nativeSrc":"6675:3:101","nodeType":"YulIdentifier","src":"6675:3:101"},"nativeSrc":"6675:32:101","nodeType":"YulFunctionCall","src":"6675:32:101"}],"functionName":{"name":"mstore","nativeSrc":"6657:6:101","nodeType":"YulIdentifier","src":"6657:6:101"},"nativeSrc":"6657:51:101","nodeType":"YulFunctionCall","src":"6657:51:101"},"nativeSrc":"6657:51:101","nodeType":"YulExpressionStatement","src":"6657:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"6511:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6581:9:101","nodeType":"YulTypedName","src":"6581:9:101","type":""},{"name":"value0","nativeSrc":"6592:6:101","nodeType":"YulTypedName","src":"6592:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6603:4:101","nodeType":"YulTypedName","src":"6603:4:101","type":""}],"src":"6511:203:101"},{"body":{"nativeSrc":"6767:174:101","nodeType":"YulBlock","src":"6767:174:101","statements":[{"nativeSrc":"6777:16:101","nodeType":"YulAssignment","src":"6777:16:101","value":{"arguments":[{"name":"x","nativeSrc":"6788:1:101","nodeType":"YulIdentifier","src":"6788:1:101"},{"name":"y","nativeSrc":"6791:1:101","nodeType":"YulIdentifier","src":"6791:1:101"}],"functionName":{"name":"add","nativeSrc":"6784:3:101","nodeType":"YulIdentifier","src":"6784:3:101"},"nativeSrc":"6784:9:101","nodeType":"YulFunctionCall","src":"6784:9:101"},"variableNames":[{"name":"sum","nativeSrc":"6777:3:101","nodeType":"YulIdentifier","src":"6777:3:101"}]},{"body":{"nativeSrc":"6824:111:101","nodeType":"YulBlock","src":"6824:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6845:1:101","nodeType":"YulLiteral","src":"6845:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"6852:3:101","nodeType":"YulLiteral","src":"6852:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"6857:10:101","nodeType":"YulLiteral","src":"6857:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"6848:3:101","nodeType":"YulIdentifier","src":"6848:3:101"},"nativeSrc":"6848:20:101","nodeType":"YulFunctionCall","src":"6848:20:101"}],"functionName":{"name":"mstore","nativeSrc":"6838:6:101","nodeType":"YulIdentifier","src":"6838:6:101"},"nativeSrc":"6838:31:101","nodeType":"YulFunctionCall","src":"6838:31:101"},"nativeSrc":"6838:31:101","nodeType":"YulExpressionStatement","src":"6838:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6889:1:101","nodeType":"YulLiteral","src":"6889:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"6892:4:101","nodeType":"YulLiteral","src":"6892:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"6882:6:101","nodeType":"YulIdentifier","src":"6882:6:101"},"nativeSrc":"6882:15:101","nodeType":"YulFunctionCall","src":"6882:15:101"},"nativeSrc":"6882:15:101","nodeType":"YulExpressionStatement","src":"6882:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6917:1:101","nodeType":"YulLiteral","src":"6917:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6920:4:101","nodeType":"YulLiteral","src":"6920:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"6910:6:101","nodeType":"YulIdentifier","src":"6910:6:101"},"nativeSrc":"6910:15:101","nodeType":"YulFunctionCall","src":"6910:15:101"},"nativeSrc":"6910:15:101","nodeType":"YulExpressionStatement","src":"6910:15:101"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"6808:1:101","nodeType":"YulIdentifier","src":"6808:1:101"},{"name":"sum","nativeSrc":"6811:3:101","nodeType":"YulIdentifier","src":"6811:3:101"}],"functionName":{"name":"gt","nativeSrc":"6805:2:101","nodeType":"YulIdentifier","src":"6805:2:101"},"nativeSrc":"6805:10:101","nodeType":"YulFunctionCall","src":"6805:10:101"},"nativeSrc":"6802:133:101","nodeType":"YulIf","src":"6802:133:101"}]},"name":"checked_add_t_uint256","nativeSrc":"6719:222:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"6750:1:101","nodeType":"YulTypedName","src":"6750:1:101","type":""},{"name":"y","nativeSrc":"6753:1:101","nodeType":"YulTypedName","src":"6753:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"6759:3:101","nodeType":"YulTypedName","src":"6759:3:101","type":""}],"src":"6719:222:101"},{"body":{"nativeSrc":"7159:276:101","nodeType":"YulBlock","src":"7159:276:101","statements":[{"nativeSrc":"7169:27:101","nodeType":"YulAssignment","src":"7169:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7181:9:101","nodeType":"YulIdentifier","src":"7181:9:101"},{"kind":"number","nativeSrc":"7192:3:101","nodeType":"YulLiteral","src":"7192:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"7177:3:101","nodeType":"YulIdentifier","src":"7177:3:101"},"nativeSrc":"7177:19:101","nodeType":"YulFunctionCall","src":"7177:19:101"},"variableNames":[{"name":"tail","nativeSrc":"7169:4:101","nodeType":"YulIdentifier","src":"7169:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7212:9:101","nodeType":"YulIdentifier","src":"7212:9:101"},{"name":"value0","nativeSrc":"7223:6:101","nodeType":"YulIdentifier","src":"7223:6:101"}],"functionName":{"name":"mstore","nativeSrc":"7205:6:101","nodeType":"YulIdentifier","src":"7205:6:101"},"nativeSrc":"7205:25:101","nodeType":"YulFunctionCall","src":"7205:25:101"},"nativeSrc":"7205:25:101","nodeType":"YulExpressionStatement","src":"7205:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7250:9:101","nodeType":"YulIdentifier","src":"7250:9:101"},{"kind":"number","nativeSrc":"7261:2:101","nodeType":"YulLiteral","src":"7261:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7246:3:101","nodeType":"YulIdentifier","src":"7246:3:101"},"nativeSrc":"7246:18:101","nodeType":"YulFunctionCall","src":"7246:18:101"},{"name":"value1","nativeSrc":"7266:6:101","nodeType":"YulIdentifier","src":"7266:6:101"}],"functionName":{"name":"mstore","nativeSrc":"7239:6:101","nodeType":"YulIdentifier","src":"7239:6:101"},"nativeSrc":"7239:34:101","nodeType":"YulFunctionCall","src":"7239:34:101"},"nativeSrc":"7239:34:101","nodeType":"YulExpressionStatement","src":"7239:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7293:9:101","nodeType":"YulIdentifier","src":"7293:9:101"},{"kind":"number","nativeSrc":"7304:2:101","nodeType":"YulLiteral","src":"7304:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7289:3:101","nodeType":"YulIdentifier","src":"7289:3:101"},"nativeSrc":"7289:18:101","nodeType":"YulFunctionCall","src":"7289:18:101"},{"name":"value2","nativeSrc":"7309:6:101","nodeType":"YulIdentifier","src":"7309:6:101"}],"functionName":{"name":"mstore","nativeSrc":"7282:6:101","nodeType":"YulIdentifier","src":"7282:6:101"},"nativeSrc":"7282:34:101","nodeType":"YulFunctionCall","src":"7282:34:101"},"nativeSrc":"7282:34:101","nodeType":"YulExpressionStatement","src":"7282:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7336:9:101","nodeType":"YulIdentifier","src":"7336:9:101"},{"kind":"number","nativeSrc":"7347:2:101","nodeType":"YulLiteral","src":"7347:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"7332:3:101","nodeType":"YulIdentifier","src":"7332:3:101"},"nativeSrc":"7332:18:101","nodeType":"YulFunctionCall","src":"7332:18:101"},{"name":"value3","nativeSrc":"7352:6:101","nodeType":"YulIdentifier","src":"7352:6:101"}],"functionName":{"name":"mstore","nativeSrc":"7325:6:101","nodeType":"YulIdentifier","src":"7325:6:101"},"nativeSrc":"7325:34:101","nodeType":"YulFunctionCall","src":"7325:34:101"},"nativeSrc":"7325:34:101","nodeType":"YulExpressionStatement","src":"7325:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7379:9:101","nodeType":"YulIdentifier","src":"7379:9:101"},{"kind":"number","nativeSrc":"7390:3:101","nodeType":"YulLiteral","src":"7390:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"7375:3:101","nodeType":"YulIdentifier","src":"7375:3:101"},"nativeSrc":"7375:19:101","nodeType":"YulFunctionCall","src":"7375:19:101"},{"arguments":[{"name":"value4","nativeSrc":"7400:6:101","nodeType":"YulIdentifier","src":"7400:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7416:3:101","nodeType":"YulLiteral","src":"7416:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"7421:1:101","nodeType":"YulLiteral","src":"7421:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7412:3:101","nodeType":"YulIdentifier","src":"7412:3:101"},"nativeSrc":"7412:11:101","nodeType":"YulFunctionCall","src":"7412:11:101"},{"kind":"number","nativeSrc":"7425:1:101","nodeType":"YulLiteral","src":"7425:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7408:3:101","nodeType":"YulIdentifier","src":"7408:3:101"},"nativeSrc":"7408:19:101","nodeType":"YulFunctionCall","src":"7408:19:101"}],"functionName":{"name":"and","nativeSrc":"7396:3:101","nodeType":"YulIdentifier","src":"7396:3:101"},"nativeSrc":"7396:32:101","nodeType":"YulFunctionCall","src":"7396:32:101"}],"functionName":{"name":"mstore","nativeSrc":"7368:6:101","nodeType":"YulIdentifier","src":"7368:6:101"},"nativeSrc":"7368:61:101","nodeType":"YulFunctionCall","src":"7368:61:101"},"nativeSrc":"7368:61:101","nodeType":"YulExpressionStatement","src":"7368:61:101"}]},"name":"abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed","nativeSrc":"6946:489:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7096:9:101","nodeType":"YulTypedName","src":"7096:9:101","type":""},{"name":"value4","nativeSrc":"7107:6:101","nodeType":"YulTypedName","src":"7107:6:101","type":""},{"name":"value3","nativeSrc":"7115:6:101","nodeType":"YulTypedName","src":"7115:6:101","type":""},{"name":"value2","nativeSrc":"7123:6:101","nodeType":"YulTypedName","src":"7123:6:101","type":""},{"name":"value1","nativeSrc":"7131:6:101","nodeType":"YulTypedName","src":"7131:6:101","type":""},{"name":"value0","nativeSrc":"7139:6:101","nodeType":"YulTypedName","src":"7139:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7150:4:101","nodeType":"YulTypedName","src":"7150:4:101","type":""}],"src":"6946:489:101"},{"body":{"nativeSrc":"7621:217:101","nodeType":"YulBlock","src":"7621:217:101","statements":[{"nativeSrc":"7631:27:101","nodeType":"YulAssignment","src":"7631:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7643:9:101","nodeType":"YulIdentifier","src":"7643:9:101"},{"kind":"number","nativeSrc":"7654:3:101","nodeType":"YulLiteral","src":"7654:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"7639:3:101","nodeType":"YulIdentifier","src":"7639:3:101"},"nativeSrc":"7639:19:101","nodeType":"YulFunctionCall","src":"7639:19:101"},"variableNames":[{"name":"tail","nativeSrc":"7631:4:101","nodeType":"YulIdentifier","src":"7631:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7674:9:101","nodeType":"YulIdentifier","src":"7674:9:101"},{"name":"value0","nativeSrc":"7685:6:101","nodeType":"YulIdentifier","src":"7685:6:101"}],"functionName":{"name":"mstore","nativeSrc":"7667:6:101","nodeType":"YulIdentifier","src":"7667:6:101"},"nativeSrc":"7667:25:101","nodeType":"YulFunctionCall","src":"7667:25:101"},"nativeSrc":"7667:25:101","nodeType":"YulExpressionStatement","src":"7667:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7712:9:101","nodeType":"YulIdentifier","src":"7712:9:101"},{"kind":"number","nativeSrc":"7723:2:101","nodeType":"YulLiteral","src":"7723:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7708:3:101","nodeType":"YulIdentifier","src":"7708:3:101"},"nativeSrc":"7708:18:101","nodeType":"YulFunctionCall","src":"7708:18:101"},{"arguments":[{"name":"value1","nativeSrc":"7732:6:101","nodeType":"YulIdentifier","src":"7732:6:101"},{"kind":"number","nativeSrc":"7740:4:101","nodeType":"YulLiteral","src":"7740:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"7728:3:101","nodeType":"YulIdentifier","src":"7728:3:101"},"nativeSrc":"7728:17:101","nodeType":"YulFunctionCall","src":"7728:17:101"}],"functionName":{"name":"mstore","nativeSrc":"7701:6:101","nodeType":"YulIdentifier","src":"7701:6:101"},"nativeSrc":"7701:45:101","nodeType":"YulFunctionCall","src":"7701:45:101"},"nativeSrc":"7701:45:101","nodeType":"YulExpressionStatement","src":"7701:45:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7766:9:101","nodeType":"YulIdentifier","src":"7766:9:101"},{"kind":"number","nativeSrc":"7777:2:101","nodeType":"YulLiteral","src":"7777:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7762:3:101","nodeType":"YulIdentifier","src":"7762:3:101"},"nativeSrc":"7762:18:101","nodeType":"YulFunctionCall","src":"7762:18:101"},{"name":"value2","nativeSrc":"7782:6:101","nodeType":"YulIdentifier","src":"7782:6:101"}],"functionName":{"name":"mstore","nativeSrc":"7755:6:101","nodeType":"YulIdentifier","src":"7755:6:101"},"nativeSrc":"7755:34:101","nodeType":"YulFunctionCall","src":"7755:34:101"},"nativeSrc":"7755:34:101","nodeType":"YulExpressionStatement","src":"7755:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7809:9:101","nodeType":"YulIdentifier","src":"7809:9:101"},{"kind":"number","nativeSrc":"7820:2:101","nodeType":"YulLiteral","src":"7820:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"7805:3:101","nodeType":"YulIdentifier","src":"7805:3:101"},"nativeSrc":"7805:18:101","nodeType":"YulFunctionCall","src":"7805:18:101"},{"name":"value3","nativeSrc":"7825:6:101","nodeType":"YulIdentifier","src":"7825:6:101"}],"functionName":{"name":"mstore","nativeSrc":"7798:6:101","nodeType":"YulIdentifier","src":"7798:6:101"},"nativeSrc":"7798:34:101","nodeType":"YulFunctionCall","src":"7798:34:101"},"nativeSrc":"7798:34:101","nodeType":"YulExpressionStatement","src":"7798:34:101"}]},"name":"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"7440:398:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7566:9:101","nodeType":"YulTypedName","src":"7566:9:101","type":""},{"name":"value3","nativeSrc":"7577:6:101","nodeType":"YulTypedName","src":"7577:6:101","type":""},{"name":"value2","nativeSrc":"7585:6:101","nodeType":"YulTypedName","src":"7585:6:101","type":""},{"name":"value1","nativeSrc":"7593:6:101","nodeType":"YulTypedName","src":"7593:6:101","type":""},{"name":"value0","nativeSrc":"7601:6:101","nodeType":"YulTypedName","src":"7601:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7612:4:101","nodeType":"YulTypedName","src":"7612:4:101","type":""}],"src":"7440:398:101"},{"body":{"nativeSrc":"7875:95:101","nodeType":"YulBlock","src":"7875:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7892:1:101","nodeType":"YulLiteral","src":"7892:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"7899:3:101","nodeType":"YulLiteral","src":"7899:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"7904:10:101","nodeType":"YulLiteral","src":"7904:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"7895:3:101","nodeType":"YulIdentifier","src":"7895:3:101"},"nativeSrc":"7895:20:101","nodeType":"YulFunctionCall","src":"7895:20:101"}],"functionName":{"name":"mstore","nativeSrc":"7885:6:101","nodeType":"YulIdentifier","src":"7885:6:101"},"nativeSrc":"7885:31:101","nodeType":"YulFunctionCall","src":"7885:31:101"},"nativeSrc":"7885:31:101","nodeType":"YulExpressionStatement","src":"7885:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7932:1:101","nodeType":"YulLiteral","src":"7932:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"7935:4:101","nodeType":"YulLiteral","src":"7935:4:101","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"7925:6:101","nodeType":"YulIdentifier","src":"7925:6:101"},"nativeSrc":"7925:15:101","nodeType":"YulFunctionCall","src":"7925:15:101"},"nativeSrc":"7925:15:101","nodeType":"YulExpressionStatement","src":"7925:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7956:1:101","nodeType":"YulLiteral","src":"7956:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7959:4:101","nodeType":"YulLiteral","src":"7959:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"7949:6:101","nodeType":"YulIdentifier","src":"7949:6:101"},"nativeSrc":"7949:15:101","nodeType":"YulFunctionCall","src":"7949:15:101"},"nativeSrc":"7949:15:101","nodeType":"YulExpressionStatement","src":"7949:15:101"}]},"name":"panic_error_0x21","nativeSrc":"7843:127:101","nodeType":"YulFunctionDefinition","src":"7843:127:101"}]},"contents":"{\n    { }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        mcopy(add(pos, 0x20), add(value, 0x20), length)\n        mstore(add(add(pos, length), 0x20), 0)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string(value0, add(headStart, 32))\n    }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let value := 0\n        value := calldataload(add(headStart, 32))\n        value1 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_encode_tuple_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value6, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, shl(248, 255)))\n        mstore(add(headStart, 32), 224)\n        let tail_1 := abi_encode_string(value1, add(headStart, 224))\n        mstore(add(headStart, 64), sub(tail_1, headStart))\n        let tail_2 := abi_encode_string(value2, tail_1)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 160), value5)\n        mstore(add(headStart, 192), sub(tail_2, headStart))\n        let pos := tail_2\n        let length := mload(value6)\n        mstore(tail_2, length)\n        pos := add(tail_2, 32)\n        let srcPtr := add(value6, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, 32)\n            srcPtr := add(srcPtr, 32)\n        }\n        tail := pos\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 96))\n        value3 := value_1\n        let value_2 := calldataload(add(headStart, 128))\n        if iszero(eq(value_2, and(value_2, 0xff))) { revert(0, 0) }\n        value4 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 160))\n        value5 := value_3\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 192))\n        value6 := value_4\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n        mstore(add(headStart, 160), value5)\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"599":[{"length":32,"start":353}],"13718":[{"length":32,"start":1642}],"13720":[{"length":32,"start":1600}],"13722":[{"length":32,"start":1558}],"13724":[{"length":32,"start":1723}],"13726":[{"length":32,"start":1763}],"13729":[{"length":32,"start":1902}],"13732":[{"length":32,"start":1947}]},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b50600436106100f0575f3560e01c806370a08231116100935780639dc29fac116100635780639dc29fac14610206578063a9059cbb14610219578063d505accf1461022c578063dd62ed3e1461023f575f5ffd5b806370a08231146101a85780637ecebe00146101d057806384b0196e146101e357806395d89b41146101fe575f5ffd5b806323b872dd116100ce57806323b872dd14610147578063313ce5671461015a5780633644e5151461018b57806340c10f1914610193575f5ffd5b806306fdde03146100f4578063095ea7b31461011257806318160ddd14610135575b5f5ffd5b6100fc610277565b6040516101099190610d00565b60405180910390f35b610125610120366004610d34565b610307565b6040519015158152602001610109565b6002545b604051908152602001610109565b610125610155366004610d5c565b610320565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610109565b610139610343565b6101a66101a1366004610d34565b610351565b005b6101396101b6366004610d96565b6001600160a01b03165f9081526020819052604090205490565b6101396101de366004610d96565b61035f565b6101eb61037c565b6040516101099796959493929190610daf565b6100fc6103be565b6101a6610214366004610d34565b6103cd565b610125610227366004610d34565b6103d7565b6101a661023a366004610e45565b6103e4565b61013961024d366004610eb2565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b60606003805461028690610ee3565b80601f01602080910402602001604051908101604052809291908181526020018280546102b290610ee3565b80156102fd5780601f106102d4576101008083540402835291602001916102fd565b820191905f5260205f20905b8154815290600101906020018083116102e057829003601f168201915b5050505050905090565b5f3361031481858561051f565b60019150505b92915050565b5f3361032d858285610531565b6103388585856105ad565b506001949350505050565b5f61034c61060a565b905090565b61035b8282610733565b5050565b6001600160a01b0381165f9081526007602052604081205461031a565b5f6060805f5f5f606061038d610767565b610395610794565b604080515f80825260208201909252600f60f81b9b939a50919850469750309650945092509050565b60606004805461028690610ee3565b61035b82826107c1565b5f336103148185856105ad565b8342111561040d5760405163313c898160e11b8152600481018590526024015b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886104588c6001600160a01b03165f90815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090505f6104b2826107f5565b90505f6104c182878787610821565b9050896001600160a01b0316816001600160a01b031614610508576040516325c0072360e11b81526001600160a01b0380831660048301528b166024820152604401610404565b6105138a8a8a61051f565b50505050505050505050565b61052c838383600161084d565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198110156105a7578181101561059957604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610404565b6105a784848484035f61084d565b50505050565b6001600160a01b0383166105d657604051634b637e8f60e11b81525f6004820152602401610404565b6001600160a01b0382166105ff5760405163ec442f0560e01b81525f6004820152602401610404565b61052c83838361091f565b5f306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561066257507f000000000000000000000000000000000000000000000000000000000000000046145b1561068c57507f000000000000000000000000000000000000000000000000000000000000000090565b61034c604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b6001600160a01b03821661075c5760405163ec442f0560e01b81525f6004820152602401610404565b61035b5f838361091f565b606061034c7f00000000000000000000000000000000000000000000000000000000000000006005610a45565b606061034c7f00000000000000000000000000000000000000000000000000000000000000006006610a45565b6001600160a01b0382166107ea57604051634b637e8f60e11b81525f6004820152602401610404565b61035b825f8361091f565b5f61031a61080161060a565b8360405161190160f01b8152600281019290925260228201526042902090565b5f5f5f5f61083188888888610aee565b9250925092506108418282610bb6565b50909695505050505050565b6001600160a01b0384166108765760405163e602df0560e01b81525f6004820152602401610404565b6001600160a01b03831661089f57604051634a1406b160e11b81525f6004820152602401610404565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156105a757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161091191815260200190565b60405180910390a350505050565b6001600160a01b038316610949578060025f82825461093e9190610f1b565b909155506109b99050565b6001600160a01b0383165f908152602081905260409020548181101561099b5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610404565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166109d5576002805482900390556109f3565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a3891815260200190565b60405180910390a3505050565b606060ff8314610a5f57610a5883610c6e565b905061031a565b818054610a6b90610ee3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9790610ee3565b8015610ae25780601f10610ab957610100808354040283529160200191610ae2565b820191905f5260205f20905b815481529060010190602001808311610ac557829003601f168201915b5050505050905061031a565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610b2757505f91506003905082610bac565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610b78573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b038116610ba357505f925060019150829050610bac565b92505f91508190505b9450945094915050565b5f826003811115610bc957610bc9610f3a565b03610bd2575050565b6001826003811115610be657610be6610f3a565b03610c045760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610c1857610c18610f3a565b03610c395760405163fce698f760e01b815260048101829052602401610404565b6003826003811115610c4d57610c4d610f3a565b0361035b576040516335e2f38360e21b815260048101829052602401610404565b60605f610c7a83610cab565b6040805160208082528183019092529192505f91906020820181803683375050509182525060208101929092525090565b5f60ff8216601f81111561031a57604051632cd44ac360e21b815260040160405180910390fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610d126020830184610cd2565b9392505050565b80356001600160a01b0381168114610d2f575f5ffd5b919050565b5f5f60408385031215610d45575f5ffd5b610d4e83610d19565b946020939093013593505050565b5f5f5f60608486031215610d6e575f5ffd5b610d7784610d19565b9250610d8560208501610d19565b929592945050506040919091013590565b5f60208284031215610da6575f5ffd5b610d1282610d19565b60ff60f81b8816815260e060208201525f610dcd60e0830189610cd2565b8281036040840152610ddf8189610cd2565b606084018890526001600160a01b038716608085015260a0840186905283810360c0850152845180825260208087019350909101905f5b81811015610e34578351835260209384019390920191600101610e16565b50909b9a5050505050505050505050565b5f5f5f5f5f5f5f60e0888a031215610e5b575f5ffd5b610e6488610d19565b9650610e7260208901610d19565b95506040880135945060608801359350608088013560ff81168114610e95575f5ffd5b9699959850939692959460a0840135945060c09093013592915050565b5f5f60408385031215610ec3575f5ffd5b610ecc83610d19565b9150610eda60208401610d19565b90509250929050565b600181811c90821680610ef757607f821691505b602082108103610f1557634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561031a57634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52602160045260245ffdfea2646970667358221220a4742aa022dfd5f33a4fd7c3dbb17481d80781a6308245255ade412099703f4064736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xF0 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x93 JUMPI DUP1 PUSH4 0x9DC29FAC GT PUSH2 0x63 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x206 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x219 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x22C JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x23F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1A8 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x1D0 JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x1E3 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xCE JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x147 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x15A JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x18B JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x193 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xF4 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x112 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x135 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xFC PUSH2 0x277 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x109 SWAP2 SWAP1 PUSH2 0xD00 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x125 PUSH2 0x120 CALLDATASIZE PUSH1 0x4 PUSH2 0xD34 JUMP JUMPDEST PUSH2 0x307 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x109 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x109 JUMP JUMPDEST PUSH2 0x125 PUSH2 0x155 CALLDATASIZE PUSH1 0x4 PUSH2 0xD5C JUMP JUMPDEST PUSH2 0x320 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x109 JUMP JUMPDEST PUSH2 0x139 PUSH2 0x343 JUMP JUMPDEST PUSH2 0x1A6 PUSH2 0x1A1 CALLDATASIZE PUSH1 0x4 PUSH2 0xD34 JUMP JUMPDEST PUSH2 0x351 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x139 PUSH2 0x1B6 CALLDATASIZE PUSH1 0x4 PUSH2 0xD96 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x139 PUSH2 0x1DE CALLDATASIZE PUSH1 0x4 PUSH2 0xD96 JUMP JUMPDEST PUSH2 0x35F JUMP JUMPDEST PUSH2 0x1EB PUSH2 0x37C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x109 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xDAF JUMP JUMPDEST PUSH2 0xFC PUSH2 0x3BE JUMP JUMPDEST PUSH2 0x1A6 PUSH2 0x214 CALLDATASIZE PUSH1 0x4 PUSH2 0xD34 JUMP JUMPDEST PUSH2 0x3CD JUMP JUMPDEST PUSH2 0x125 PUSH2 0x227 CALLDATASIZE PUSH1 0x4 PUSH2 0xD34 JUMP JUMPDEST PUSH2 0x3D7 JUMP JUMPDEST PUSH2 0x1A6 PUSH2 0x23A CALLDATASIZE PUSH1 0x4 PUSH2 0xE45 JUMP JUMPDEST PUSH2 0x3E4 JUMP JUMPDEST PUSH2 0x139 PUSH2 0x24D CALLDATASIZE PUSH1 0x4 PUSH2 0xEB2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x286 SWAP1 PUSH2 0xEE3 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2B2 SWAP1 PUSH2 0xEE3 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2FD JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2FD JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2E0 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x314 DUP2 DUP6 DUP6 PUSH2 0x51F JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x32D DUP6 DUP3 DUP6 PUSH2 0x531 JUMP JUMPDEST PUSH2 0x338 DUP6 DUP6 DUP6 PUSH2 0x5AD JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x34C PUSH2 0x60A JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x35B DUP3 DUP3 PUSH2 0x733 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x31A JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP1 PUSH0 PUSH0 PUSH0 PUSH1 0x60 PUSH2 0x38D PUSH2 0x767 JUMP JUMPDEST PUSH2 0x395 PUSH2 0x794 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0xF PUSH1 0xF8 SHL SWAP12 SWAP4 SWAP11 POP SWAP2 SWAP9 POP CHAINID SWAP8 POP ADDRESS SWAP7 POP SWAP5 POP SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x286 SWAP1 PUSH2 0xEE3 JUMP JUMPDEST PUSH2 0x35B DUP3 DUP3 PUSH2 0x7C1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x314 DUP2 DUP6 DUP6 PUSH2 0x5AD JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x40D JUMPI PUSH1 0x40 MLOAD PUSH4 0x313C8981 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0x458 DUP13 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH0 PUSH2 0x4B2 DUP3 PUSH2 0x7F5 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x4C1 DUP3 DUP8 DUP8 DUP8 PUSH2 0x821 JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x508 JUMPI PUSH1 0x40 MLOAD PUSH4 0x25C00723 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x4 DUP4 ADD MSTORE DUP12 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x404 JUMP JUMPDEST PUSH2 0x513 DUP11 DUP11 DUP11 PUSH2 0x51F JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x52C DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x84D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH0 NOT DUP2 LT ISZERO PUSH2 0x5A7 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x599 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x404 JUMP JUMPDEST PUSH2 0x5A7 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x84D JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x5D6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x404 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5FF JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x404 JUMP JUMPDEST PUSH2 0x52C DUP4 DUP4 DUP4 PUSH2 0x91F JUMP JUMPDEST PUSH0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0x662 JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0x68C JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x34C PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x0 SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0xC0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x75C JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x404 JUMP JUMPDEST PUSH2 0x35B PUSH0 DUP4 DUP4 PUSH2 0x91F JUMP JUMPDEST PUSH1 0x60 PUSH2 0x34C PUSH32 0x0 PUSH1 0x5 PUSH2 0xA45 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x34C PUSH32 0x0 PUSH1 0x6 PUSH2 0xA45 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x7EA JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x404 JUMP JUMPDEST PUSH2 0x35B DUP3 PUSH0 DUP4 PUSH2 0x91F JUMP JUMPDEST PUSH0 PUSH2 0x31A PUSH2 0x801 PUSH2 0x60A JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH2 0x1901 PUSH1 0xF0 SHL DUP2 MSTORE PUSH1 0x2 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x22 DUP3 ADD MSTORE PUSH1 0x42 SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x831 DUP9 DUP9 DUP9 DUP9 PUSH2 0xAEE JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x841 DUP3 DUP3 PUSH2 0xBB6 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x876 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x404 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x89F JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x404 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0x5A7 JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x911 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x949 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x93E SWAP2 SWAP1 PUSH2 0xF1B JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x9B9 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x99B JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x404 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9D5 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x9F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xA38 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0xFF DUP4 EQ PUSH2 0xA5F JUMPI PUSH2 0xA58 DUP4 PUSH2 0xC6E JUMP JUMPDEST SWAP1 POP PUSH2 0x31A JUMP JUMPDEST DUP2 DUP1 SLOAD PUSH2 0xA6B SWAP1 PUSH2 0xEE3 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xA97 SWAP1 PUSH2 0xEE3 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xAE2 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xAB9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xAE2 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xAC5 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH2 0x31A JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0xB27 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0xBAC JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB78 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xBA3 JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0xBAC JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xBC9 JUMPI PUSH2 0xBC9 PUSH2 0xF3A JUMP JUMPDEST SUB PUSH2 0xBD2 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xBE6 JUMPI PUSH2 0xBE6 PUSH2 0xF3A JUMP JUMPDEST SUB PUSH2 0xC04 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xC18 JUMPI PUSH2 0xC18 PUSH2 0xF3A JUMP JUMPDEST SUB PUSH2 0xC39 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x404 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xC4D JUMPI PUSH2 0xC4D PUSH2 0xF3A JUMP JUMPDEST SUB PUSH2 0x35B JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x404 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0xC7A DUP4 PUSH2 0xCAB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE SWAP2 SWAP3 POP PUSH0 SWAP2 SWAP1 PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP POP POP SWAP2 DUP3 MSTORE POP PUSH1 0x20 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND PUSH1 0x1F DUP2 GT ISZERO PUSH2 0x31A JUMPI PUSH1 0x40 MLOAD PUSH4 0x2CD44AC3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP1 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP7 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0xD12 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xCD2 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD2F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xD4E DUP4 PUSH2 0xD19 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xD6E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xD77 DUP5 PUSH2 0xD19 JUMP JUMPDEST SWAP3 POP PUSH2 0xD85 PUSH1 0x20 DUP6 ADD PUSH2 0xD19 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDA6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xD12 DUP3 PUSH2 0xD19 JUMP JUMPDEST PUSH1 0xFF PUSH1 0xF8 SHL DUP9 AND DUP2 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0xDCD PUSH1 0xE0 DUP4 ADD DUP10 PUSH2 0xCD2 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0xDDF DUP2 DUP10 PUSH2 0xCD2 JUMP JUMPDEST PUSH1 0x60 DUP5 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD DUP7 SWAP1 MSTORE DUP4 DUP2 SUB PUSH1 0xC0 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP8 ADD SWAP4 POP SWAP1 SWAP2 ADD SWAP1 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xE34 JUMPI DUP4 MLOAD DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0xE16 JUMP JUMPDEST POP SWAP1 SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0xE5B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xE64 DUP9 PUSH2 0xD19 JUMP JUMPDEST SWAP7 POP PUSH2 0xE72 PUSH1 0x20 DUP10 ADD PUSH2 0xD19 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0xE95 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEC3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xECC DUP4 PUSH2 0xD19 JUMP JUMPDEST SWAP2 POP PUSH2 0xEDA PUSH1 0x20 DUP5 ADD PUSH2 0xD19 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xEF7 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xF15 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x31A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG4 PUSH21 0x2AA022DFD5F33A4FD7C3DBB17481D80781A6308245 0x25 GAS 0xDE COINBASE KECCAK256 SWAP10 PUSH17 0x3F4064736F6C634300081E003300000000 ","sourceMap":"225:631:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3902:186;;;;;;:::i;:::-;;:::i;:::-;;;1181:14:101;;1174:22;1156:41;;1144:2;1129:18;3902:186:34;1016:187:101;2803:97:34;2881:12;;2803:97;;;1354:25:101;;;1342:2;1327:18;2803:97:34;1208:177:101;4680:244:34;;;;;;:::i;:::-;;:::i;542:92:5:-;;;1941:4:101;620:9:5;1929:17:101;1911:36;;1899:2;1884:18;542:92:5;1769:184:101;2614:104:36;;;:::i;638:106:5:-;;;;;;:::i;:::-;;:::i;:::-;;2933:116:34;;;;;;:::i;:::-;-1:-1:-1;;;;;3024:18:34;2998:7;3024:18;;;;;;;;;;;;2933:116;2379:143:36;;;;;;:::i;:::-;;:::i;5228:557:58:-;;;:::i;:::-;;;;;;;;;;;;;:::i;1962:93:34:-;;;:::i;748:106:5:-;;;;;;:::i;:::-;;:::i;3244:178:34:-;;;;;;:::i;:::-;;:::i;1668:672:36:-;;;;;;:::i;:::-;;:::i;3455:140:34:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3561:18:34;;;3535:7;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3455:140;1760:89;1805:13;1837:5;1830:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89;:::o;3902:186::-;3975:4;735:10:47;4029:31:34;735:10:47;4045:7:34;4054:5;4029:8;:31::i;:::-;4077:4;4070:11;;;3902:186;;;;;:::o;4680:244::-;4767:4;735:10:47;4823:37:34;4839:4;735:10:47;4854:5:34;4823:15;:37::i;:::-;4870:26;4880:4;4886:2;4890:5;4870:9;:26::i;:::-;-1:-1:-1;4913:4:34;;4680:244;-1:-1:-1;;;;4680:244:34:o;2614:104:36:-;2665:7;2691:20;:18;:20::i;:::-;2684:27;;2614:104;:::o;638:106:5:-;715:24;721:9;732:6;715:5;:24::i;:::-;638:106;;:::o;2379:143:36:-;-1:-1:-1;;;;;624:14:52;;2470:7:36;624:14:52;;;:7;:14;;;;;;2496:19:36;538:107:52;5228:557:58;5326:13;5353:18;5385:21;5420:15;5449:25;5488:12;5514:27;5617:13;:11;:13::i;:::-;5644:16;:14;:16::i;:::-;5752;;;5736:1;5752:16;;;;;;;;;-1:-1:-1;;;5566:212:58;;;-1:-1:-1;5566:212:58;;-1:-1:-1;5674:13:58;;-1:-1:-1;5709:4:58;;-1:-1:-1;5736:1:58;-1:-1:-1;5752:16:58;-1:-1:-1;5566:212:58;-1:-1:-1;5228:557:58:o;1962:93:34:-;2009:13;2041:7;2034:14;;;;;:::i;748:106:5:-;825:24;831:9;842:6;825:5;:24::i;3244:178:34:-;3313:4;735:10:47;3367:27:34;735:10:47;3384:2:34;3388:5;3367:9;:27::i;1668:672:36:-;1889:8;1871:15;:26;1867:97;;;1920:33;;-1:-1:-1;;;1920:33:36;;;;;1354:25:101;;;1327:18;;1920:33:36;;;;;;;;1867:97;1974:18;1024:95;2033:5;2040:7;2049:5;2056:16;2066:5;-1:-1:-1;;;;;1121:14:52;819:7;1121:14;;;:7;:14;;;;;:16;;;;;;;;;759:395;2056:16:36;2005:78;;;;;;5551:25:101;;;;-1:-1:-1;;;;;5612:32:101;;;5592:18;;;5585:60;5681:32;;;;5661:18;;;5654:60;5730:18;;;5723:34;5773:19;;;5766:35;5817:19;;;5810:35;;;5523:19;;2005:78:36;;;;;;;;;;;;1995:89;;;;;;1974:110;;2095:12;2110:28;2127:10;2110:16;:28::i;:::-;2095:43;;2149:14;2166:28;2180:4;2186:1;2189;2192;2166:13;:28::i;:::-;2149:45;;2218:5;-1:-1:-1;;;;;2208:15:36;:6;-1:-1:-1;;;;;2208:15:36;;2204:88;;2246:35;;-1:-1:-1;;;2246:35:36;;-1:-1:-1;;;;;6048:32:101;;;2246:35:36;;;6030:51:101;6117:32;;6097:18;;;6090:60;6003:18;;2246:35:36;5856:300:101;2204:88:36;2302:31;2311:5;2318:7;2327:5;2302:8;:31::i;:::-;1857:483;;;1668:672;;;;;;;:::o;8630:128:34:-;8714:37;8723:5;8730:7;8739:5;8746:4;8714:8;:37::i;:::-;8630:128;;;:::o;10321:476::-;-1:-1:-1;;;;;3561:18:34;;;10420:24;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10486:36:34;;10482:309;;;10561:5;10542:16;:24;10538:130;;;10593:60;;-1:-1:-1;;;10593:60:34;;-1:-1:-1;;;;;6381:32:101;;10593:60:34;;;6363:51:101;6430:18;;;6423:34;;;6473:18;;;6466:34;;;6336:18;;10593:60:34;6161:345:101;10538:130:34;10709:57;10718:5;10725:7;10753:5;10734:16;:24;10760:5;10709:8;:57::i;:::-;10410:387;10321:476;;;:::o;5297:300::-;-1:-1:-1;;;;;5380:18:34;;5376:86;;5421:30;;-1:-1:-1;;;5421:30:34;;5448:1;5421:30;;;6657:51:101;6630:18;;5421:30:34;6511:203:101;5376:86:34;-1:-1:-1;;;;;5475:16:34;;5471:86;;5514:32;;-1:-1:-1;;;5514:32:34;;5543:1;5514:32;;;6657:51:101;6630:18;;5514:32:34;6511:203:101;5471:86:34;5566:24;5574:4;5580:2;5584:5;5566:7;:24::i;3945:262:58:-;3998:7;4029:4;-1:-1:-1;;;;;4038:11:58;4021:28;;:63;;;;;4070:14;4053:13;:31;4021:63;4017:184;;;-1:-1:-1;4107:22:58;;3945:262::o;4017:184::-;4167:23;4304:80;;;2079:95;4304:80;;;7205:25:101;4326:11:58;7246:18:101;;;7239:34;;;;4339:14:58;7289:18:101;;;7282:34;4355:13:58;7332:18:101;;;7325:34;4378:4:58;7375:19:101;;;7368:61;4268:7:58;;7177:19:101;;4304:80:58;;;;;;;;;;;;4294:91;;;;;;4287:98;;4213:179;;7362:208:34;-1:-1:-1;;;;;7432:21:34;;7428:91;;7476:32;;-1:-1:-1;;;7476:32:34;;7505:1;7476:32;;;6657:51:101;6630:18;;7476:32:34;6511:203:101;7428:91:34;7528:35;7544:1;7548:7;7557:5;7528:7;:35::i;6105:126:58:-;6151:13;6183:41;:5;6210:13;6183:26;:41::i;6557:135::-;6606:13;6638:47;:8;6668:16;6638:29;:47::i;7888:206:34:-;-1:-1:-1;;;;;7958:21:34;;7954:89;;8002:30;;-1:-1:-1;;;8002:30:34;;8029:1;8002:30;;;6657:51:101;6630:18;;8002:30:34;6511:203:101;7954:89:34;8052:35;8060:7;8077:1;8081:5;8052:7;:35::i;5017:176:58:-;5094:7;5120:66;5153:20;:18;:20::i;:::-;5175:10;4049:4:60;4043:11;-1:-1:-1;;;4067:23:60;;4119:4;4110:14;;4103:39;;;;4171:4;4162:14;;4155:34;4227:4;4212:20;;;3874:374;8826:260:57;8911:7;8931:17;8950:18;8970:16;8990:25;9001:4;9007:1;9010;9013;8990:10;:25::i;:::-;8930:85;;;;;;9025:28;9037:5;9044:8;9025:11;:28::i;:::-;-1:-1:-1;9070:9:57;;8826:260;-1:-1:-1;;;;;;8826:260:57:o;9607:432:34:-;-1:-1:-1;;;;;9719:19:34;;9715:89;;9761:32;;-1:-1:-1;;;9761:32:34;;9790:1;9761:32;;;6657:51:101;6630:18;;9761:32:34;6511:203:101;9715:89:34;-1:-1:-1;;;;;9817:21:34;;9813:90;;9861:31;;-1:-1:-1;;;9861:31:34;;9889:1;9861:31;;;6657:51:101;6630:18;;9861:31:34;6511:203:101;9813:90:34;-1:-1:-1;;;;;9912:18:34;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;9957:76;;;;10007:7;-1:-1:-1;;;;;9991:31:34;10000:5;-1:-1:-1;;;;;9991:31:34;;10016:5;9991:31;;;;1354:25:101;;1342:2;1327:18;;1208:177;9991:31:34;;;;;;;;9607:432;;;;:::o;5912:1107::-;-1:-1:-1;;;;;6001:18:34;;5997:540;;6153:5;6137:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;5997:540:34;;-1:-1:-1;5997:540:34;;-1:-1:-1;;;;;6211:15:34;;6189:19;6211:15;;;;;;;;;;;6244:19;;;6240:115;;;6290:50;;-1:-1:-1;;;6290:50:34;;-1:-1:-1;;;;;6381:32:101;;6290:50:34;;;6363:51:101;6430:18;;;6423:34;;;6473:18;;;6466:34;;;6336:18;;6290:50:34;6161:345:101;6240:115:34;-1:-1:-1;;;;;6475:15:34;;:9;:15;;;;;;;;;;6493:19;;;;6475:37;;5997:540;-1:-1:-1;;;;;6551:16:34;;6547:425;;6714:12;:21;;;;;;;6547:425;;;-1:-1:-1;;;;;6925:13:34;;:9;:13;;;;;;;;;;:22;;;;;;6547:425;7002:2;-1:-1:-1;;;;;6987:25:34;6996:4;-1:-1:-1;;;;;6987:25:34;;7006:5;6987:25;;;;1354::101;;1342:2;1327:18;;1208:177;6987:25:34;;;;;;;;5912:1107;;;:::o;3376:267:54:-;3470:13;1390:66;3499:46;;3495:142;;3568:15;3577:5;3568:8;:15::i;:::-;3561:22;;;;3495:142;3621:5;3614:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7142:1551:57;7268:17;;;8222:66;8209:79;;8205:164;;;-1:-1:-1;8320:1:57;;-1:-1:-1;8324:30:57;;-1:-1:-1;8356:1:57;8304:54;;8205:164;8480:24;;;8463:14;8480:24;;;;;;;;;7667:25:101;;;7740:4;7728:17;;7708:18;;;7701:45;;;;7762:18;;;7755:34;;;7805:18;;;7798:34;;;8480:24:57;;7639:19:101;;8480:24:57;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8480:24:57;;-1:-1:-1;;8480:24:57;;;-1:-1:-1;;;;;;;8518:20:57;;8514:113;;-1:-1:-1;8570:1:57;;-1:-1:-1;8574:29:57;;-1:-1:-1;8570:1:57;;-1:-1:-1;8554:62:57;;8514:113;8645:6;-1:-1:-1;8653:20:57;;-1:-1:-1;8653:20:57;;-1:-1:-1;7142:1551:57;;;;;;;;;:::o;11630:532::-;11725:20;11716:5;:29;;;;;;;;:::i;:::-;;11712:444;;11630:532;;:::o;11712:444::-;11821:29;11812:5;:38;;;;;;;;:::i;:::-;;11808:348;;11873:23;;-1:-1:-1;;;11873:23:57;;;;;;;;;;;11808:348;11926:35;11917:5;:44;;;;;;;;:::i;:::-;;11913:243;;11984:46;;-1:-1:-1;;;11984:46:57;;;;;1354:25:101;;;1327:18;;11984:46:57;1208:177:101;11913:243:57;12060:30;12051:5;:39;;;;;;;;:::i;:::-;;12047:109;;12113:32;;-1:-1:-1;;;12113:32:57;;;;;1354:25:101;;;1327:18;;12113:32:57;1208:177:101;2080:380:54;2139:13;2164:11;2178:16;2189:4;2178:10;:16::i;:::-;2302;;;2313:4;2302:16;;;;;;;;;2164:30;;-1:-1:-1;2282:17:54;;2302:16;;;;;;;;;-1:-1:-1;;;2367:16:54;;;-1:-1:-1;2412:4:54;2403:14;;2396:28;;;;-1:-1:-1;2367:16:54;2080:380::o;2532:247::-;2593:7;2665:4;2629:40;;2692:4;2683:13;;2679:71;;;2719:20;;-1:-1:-1;;;2719:20:54;;;;;;;;;;;14:289:101;56:3;94:5;88:12;121:6;116:3;109:19;177:6;170:4;163:5;159:16;152:4;147:3;143:14;137:47;229:1;222:4;213:6;208:3;204:16;200:27;193:38;292:4;285:2;281:7;276:2;268:6;264:15;260:29;255:3;251:39;247:50;240:57;;;14:289;;;;:::o;308:220::-;457:2;446:9;439:21;420:4;477:45;518:2;507:9;503:18;495:6;477:45;:::i;:::-;469:53;308:220;-1:-1:-1;;;308:220:101:o;533:173::-;601:20;;-1:-1:-1;;;;;650:31:101;;640:42;;630:70;;696:1;693;686:12;630:70;533:173;;;:::o;711:300::-;779:6;787;840:2;828:9;819:7;815:23;811:32;808:52;;;856:1;853;846:12;808:52;879:29;898:9;879:29;:::i;:::-;869:39;977:2;962:18;;;;949:32;;-1:-1:-1;;;711:300:101:o;1390:374::-;1467:6;1475;1483;1536:2;1524:9;1515:7;1511:23;1507:32;1504:52;;;1552:1;1549;1542:12;1504:52;1575:29;1594:9;1575:29;:::i;:::-;1565:39;;1623:38;1657:2;1646:9;1642:18;1623:38;:::i;:::-;1390:374;;1613:48;;-1:-1:-1;;;1730:2:101;1715:18;;;;1702:32;;1390:374::o;2140:186::-;2199:6;2252:2;2240:9;2231:7;2227:23;2223:32;2220:52;;;2268:1;2265;2258:12;2220:52;2291:29;2310:9;2291:29;:::i;2331:1238::-;2737:3;2732;2728:13;2720:6;2716:26;2705:9;2698:45;2779:3;2774:2;2763:9;2759:18;2752:31;2679:4;2806:46;2847:3;2836:9;2832:19;2824:6;2806:46;:::i;:::-;2900:9;2892:6;2888:22;2883:2;2872:9;2868:18;2861:50;2934:33;2960:6;2952;2934:33;:::i;:::-;2998:2;2983:18;;2976:34;;;-1:-1:-1;;;;;3047:32:101;;3041:3;3026:19;;3019:61;3067:3;3096:19;;3089:35;;;3161:22;;;3155:3;3140:19;;3133:51;3233:13;;3255:22;;;3305:2;3331:15;;;;-1:-1:-1;3293:15:101;;;;-1:-1:-1;3374:169:101;3388:6;3385:1;3382:13;3374:169;;;3449:13;;3437:26;;3492:2;3518:15;;;;3483:12;;;;3410:1;3403:9;3374:169;;;-1:-1:-1;3560:3:101;;2331:1238;-1:-1:-1;;;;;;;;;;;2331:1238:101:o;3574:903::-;3685:6;3693;3701;3709;3717;3725;3733;3786:3;3774:9;3765:7;3761:23;3757:33;3754:53;;;3803:1;3800;3793:12;3754:53;3826:29;3845:9;3826:29;:::i;:::-;3816:39;;3874:38;3908:2;3897:9;3893:18;3874:38;:::i;:::-;3864:48;-1:-1:-1;3981:2:101;3966:18;;3953:32;;-1:-1:-1;4082:2:101;4067:18;;4054:32;;-1:-1:-1;4164:3:101;4149:19;;4136:33;4213:4;4200:18;;4188:31;;4178:59;;4233:1;4230;4223:12;4178:59;3574:903;;;;-1:-1:-1;3574:903:101;;;;4256:7;4336:3;4321:19;;4308:33;;-1:-1:-1;4440:3:101;4425:19;;;4412:33;;3574:903;-1:-1:-1;;3574:903:101:o;4482:260::-;4550:6;4558;4611:2;4599:9;4590:7;4586:23;4582:32;4579:52;;;4627:1;4624;4617:12;4579:52;4650:29;4669:9;4650:29;:::i;:::-;4640:39;;4698:38;4732:2;4721:9;4717:18;4698:38;:::i;:::-;4688:48;;4482:260;;;;;:::o;4747:380::-;4826:1;4822:12;;;;4869;;;4890:61;;4944:4;4936:6;4932:17;4922:27;;4890:61;4997:2;4989:6;4986:14;4966:18;4963:38;4960:161;;5043:10;5038:3;5034:20;5031:1;5024:31;5078:4;5075:1;5068:15;5106:4;5103:1;5096:15;4960:161;;4747:380;;;:::o;6719:222::-;6784:9;;;6805:10;;;6802:133;;;6857:10;6852:3;6848:20;6845:1;6838:31;6892:4;6889:1;6882:15;6920:4;6917:1;6910:15;7843:127;7904:10;7899:3;7895:20;7892:1;7885:31;7935:4;7932:1;7925:15;7959:4;7956:1;7949:15"},"methodIdentifiers":{"DOMAIN_SEPARATOR()":"3644e515","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","burn(address,uint256)":"9dc29fac","decimals()":"313ce567","eip712Domain()":"84b0196e","mint(address,uint256)":"40c10f19","name()":"06fdde03","nonces(address)":"7ecebe00","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"initialSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"decimals_\",\"type\":\"uint8\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"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\":\"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\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"ERC2612ExpiredSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC2612InvalidSigner\",\"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\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"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\":[],\"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\":\"DOMAIN_SEPARATOR\",\"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\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"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\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"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\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\":{\"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.\"}],\"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.\"}}],\"ERC2612ExpiredSignature(uint256)\":[{\"details\":\"Permit deadline has expired.\"}],\"ERC2612InvalidSigner(address,address)\":[{\"details\":\"Mismatched signature.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}]},\"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.\"},\"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\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"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\":\"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\":\"Returns the value of tokens owned by `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}.\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"nonces(address)\":{\"details\":\"Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also applies here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section]. CAUTION: See Security Considerations above.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"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\":{\"@ensuro/utils/contracts/TestCurrencyPermit.sol\":\"TestCurrencyPermit\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/utils/contracts/TestCurrencyPermit.sol\":{\"keccak256\":\"0xb619db2f0f528a8d88805ac7c9abd085307a234a584d9c14ce5167ea3d3476d1\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://2cec2599e8c319c10184eacf39ab295b965bef2492435bb0468b6f0b75b3a293\",\"dweb:/ipfs/QmVQGmhATCVCnXrC29rmoe3SPjY143zRAdvt6qmeZf4Xcm\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0xfb223a85dd0b2175cfbbaa325a744e2cd74ecd17c3df2b77b0722f991d2725ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://84bf1dea0589ec49c8d15d559cc6d86ee493048a89b2d4adb60fbe705a3d89ae\",\"dweb:/ipfs/Qmd56n556d529wk2pRMhYhm5nhMDhviwereodDikjs68w1\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x669464167428061ee0f8618b73b3ee90aff8405683e7ddde8cd77dadaa1afe29\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0dda78587a7358b4fdf6b9fca0fde5a5e34930f36d5268a16028627fc0170195\",\"dweb:/ipfs/QmQ1b6cCceDRWNxti9HifsTCzmVP25Haxs1bWugm52vTqH\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol\":{\"keccak256\":\"0x73d9dc25e0edb50767d29665bea0092e29b68776feb39c3f48781e4bab7cdda5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://242e910e44f0569e2cd8f5282556c790f15b2b3e4112290346d72cfbb9fb5e78\",\"dweb:/ipfs/QmYejCe3DRxzXaxcZaW1JNbFDJyhHnYhPSLaVxjE3jBLSC\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x53befc41288eaa87edcd3a7be7e8475a32e44c6a29f9bf52fae789781301d9ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a1d7fab53c4ceaf42391b83d9b36d7e9cc524a8da125cffdcd32c56560f9d1c9\",\"dweb:/ipfs/QmaRZdVhQdqNXofeimibkBG65q9GVcXVZEGpycwwX3znC6\"]},\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@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\":\"0x0768b3bdb701fe4994b3be932ca8635551dfebe04c645f77500322741bebf57c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a2059f9ca8d3c11c49ca49fc9c5fb070f18cc85d12a7688e45322ed0e2a1cb99\",\"dweb:/ipfs/QmS2gwX51RAvSw4tYbjHccY2CKbh2uvDzqHLAFXdsddgia\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x360cf86214a764694dae1522a38200b1737fe90e46dcf56a0f89de143071cc20\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e393290a46ca6d1fa1addb40709d26e1d250638ab6acdd103b5af21768ebc7b\",\"dweb:/ipfs/QmPwT3tXwQ9NbGtZ99XRq7sr8LCQP8XaCrzw49JdXGn7us\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x8440117ea216b97a7bad690a67449fd372c840d073c8375822667e14702782b4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ebb6645995b8290d0b9121825e2533e4e28977b2c6befee76e15e58f0feb61d4\",\"dweb:/ipfs/QmVR72j6kL5R2txuihieDev1FeTi4KWJS1Z6ABbwL3Qtph\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x6abeed5940e1da7bb329e458db9a1c5c4ea6f86d651b952af99c6bddcd6bbb94\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fe75e9a6b759c5d7fd82fb59bd4f58c672b36f0a69b84f4789b7c7895d3e61c\",\"dweb:/ipfs/QmX28wsir8w5sS3acfJMNHcBwoPsDpqCu7WDkPnUWLMNiZ\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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}","storageLayout":{"storage":[{"astId":7407,"contract":"@ensuro/utils/contracts/TestCurrencyPermit.sol:TestCurrencyPermit","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":7413,"contract":"@ensuro/utils/contracts/TestCurrencyPermit.sol:TestCurrencyPermit","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":7415,"contract":"@ensuro/utils/contracts/TestCurrencyPermit.sol:TestCurrencyPermit","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":7417,"contract":"@ensuro/utils/contracts/TestCurrencyPermit.sol:TestCurrencyPermit","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":7419,"contract":"@ensuro/utils/contracts/TestCurrencyPermit.sol:TestCurrencyPermit","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"},{"astId":13734,"contract":"@ensuro/utils/contracts/TestCurrencyPermit.sol:TestCurrencyPermit","label":"_nameFallback","offset":0,"slot":"5","type":"t_string_storage"},{"astId":13736,"contract":"@ensuro/utils/contracts/TestCurrencyPermit.sol:TestCurrencyPermit","label":"_versionFallback","offset":0,"slot":"6","type":"t_string_storage"},{"astId":11311,"contract":"@ensuro/utils/contracts/TestCurrencyPermit.sol:TestCurrencyPermit","label":"_nonces","offset":0,"slot":"7","type":"t_mapping(t_address,t_uint256)"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@ensuro/utils/contracts/TestERC4626.sol":{"IMintable":{"abi":[{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"burn(address,uint256)":"9dc29fac","mint(address,uint256)":"40c10f19"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/utils/contracts/TestERC4626.sol\":\"IMintable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/utils/contracts/TestERC4626.sol\":{\"keccak256\":\"0x688032ec63b79e352f3eb8ceb1a358d9b61ff630a346807b1e9a017de0200150\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://6d40c7e350166b37b8f5301916939a752ffe296c30f7413b45b9c6b2c4c8e4ce\",\"dweb:/ipfs/QmWRG5CZsU1jeuoryJZP3Sg1cQU8Mu9C5bB7TwhF2M1ZaQ\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x669464167428061ee0f8618b73b3ee90aff8405683e7ddde8cd77dadaa1afe29\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0dda78587a7358b4fdf6b9fca0fde5a5e34930f36d5268a16028627fc0170195\",\"dweb:/ipfs/QmQ1b6cCceDRWNxti9HifsTCzmVP25Haxs1bWugm52vTqH\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol\":{\"keccak256\":\"0x8a6a0045f0bb52251a9a5d8bb5f4156f4eb3ba8521b1fca6a304befaab3e7d23\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ebd5125436dbb18ba3646cbdb4a8385a9e2bf28abc9d8178a9e7f31cca65f8b8\",\"dweb:/ipfs/QmPioMpycRKdAetJNYYfWCw36rQuyxNqhgHDFGRVLaPKnT\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Memory.sol\":{\"keccak256\":\"0x35feec480590c0ed9c1623df077ba9af406ad57cd9d149ff278c7316d6fe8fe0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://839967d079db4cd624c3f735a6e911953c0e2347418c016f6a0cc18ed1aa9603\",\"dweb:/ipfs/QmaWxNL8Ymkwerfvq1LNzpbq2PMzTGsnXzqsYExNyvKWka\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}},"TestERC4626":{"abi":[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"contract IERC20Metadata","name":"asset_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxMint","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxRedeem","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxWithdraw","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"VaultIsBroken","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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"OVERRIDE_UNSET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"asset","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"broken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int256","name":"assets","type":"int256"}],"name":"discreteEarning","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"overrideMaxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"overrideMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"overrideMaxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"overrideMaxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"broken_","type":"bool"}],"name":"setBroken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum TestERC4626.OverrideOption","name":"option","type":"uint8"},{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setOverride","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","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"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_7436":{"entryPoint":null,"id":7436,"parameterSlots":2,"returnSlots":0},"@_764":{"entryPoint":null,"id":764,"parameterSlots":3,"returnSlots":0},"@_8223":{"entryPoint":null,"id":8223,"parameterSlots":1,"returnSlots":0},"@_tryGetAssetDecimals_8301":{"entryPoint":171,"id":8301,"parameterSlots":1,"returnSlots":2},"@getFreeMemoryPointer_10926":{"entryPoint":null,"id":10926,"parameterSlots":0,"returnSlots":1},"@returnDataSize_10886":{"entryPoint":null,"id":10886,"parameterSlots":0,"returnSlots":1},"@setFreeMemoryPointer_10935":{"entryPoint":null,"id":10935,"parameterSlots":1,"returnSlots":0},"@staticcallReturn64Bytes_10850":{"entryPoint":316,"id":10850,"parameterSlots":2,"returnSlots":3},"abi_decode_string_fromMemory":{"entryPoint":369,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC20Metadata_$8863_fromMemory":{"entryPoint":506,"id":null,"parameterSlots":2,"returnSlots":3},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":957,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":695,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":771,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":639,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x41":{"entryPoint":349,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:4362:101","nodeType":"YulBlock","src":"0:4362:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"46:95:101","nodeType":"YulBlock","src":"46:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"63:1:101","nodeType":"YulLiteral","src":"63:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"70:3:101","nodeType":"YulLiteral","src":"70:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"75:10:101","nodeType":"YulLiteral","src":"75:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"66:3:101","nodeType":"YulIdentifier","src":"66:3:101"},"nativeSrc":"66:20:101","nodeType":"YulFunctionCall","src":"66:20:101"}],"functionName":{"name":"mstore","nativeSrc":"56:6:101","nodeType":"YulIdentifier","src":"56:6:101"},"nativeSrc":"56:31:101","nodeType":"YulFunctionCall","src":"56:31:101"},"nativeSrc":"56:31:101","nodeType":"YulExpressionStatement","src":"56:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"103:1:101","nodeType":"YulLiteral","src":"103:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"106:4:101","nodeType":"YulLiteral","src":"106:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"96:6:101","nodeType":"YulIdentifier","src":"96:6:101"},"nativeSrc":"96:15:101","nodeType":"YulFunctionCall","src":"96:15:101"},"nativeSrc":"96:15:101","nodeType":"YulExpressionStatement","src":"96:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"127:1:101","nodeType":"YulLiteral","src":"127:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"130:4:101","nodeType":"YulLiteral","src":"130:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"120:6:101","nodeType":"YulIdentifier","src":"120:6:101"},"nativeSrc":"120:15:101","nodeType":"YulFunctionCall","src":"120:15:101"},"nativeSrc":"120:15:101","nodeType":"YulExpressionStatement","src":"120:15:101"}]},"name":"panic_error_0x41","nativeSrc":"14:127:101","nodeType":"YulFunctionDefinition","src":"14:127:101"},{"body":{"nativeSrc":"210:659:101","nodeType":"YulBlock","src":"210:659:101","statements":[{"body":{"nativeSrc":"259:16:101","nodeType":"YulBlock","src":"259:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"268:1:101","nodeType":"YulLiteral","src":"268:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"271:1:101","nodeType":"YulLiteral","src":"271:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"261:6:101","nodeType":"YulIdentifier","src":"261:6:101"},"nativeSrc":"261:12:101","nodeType":"YulFunctionCall","src":"261:12:101"},"nativeSrc":"261:12:101","nodeType":"YulExpressionStatement","src":"261:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"238:6:101","nodeType":"YulIdentifier","src":"238:6:101"},{"kind":"number","nativeSrc":"246:4:101","nodeType":"YulLiteral","src":"246:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"234:3:101","nodeType":"YulIdentifier","src":"234:3:101"},"nativeSrc":"234:17:101","nodeType":"YulFunctionCall","src":"234:17:101"},{"name":"end","nativeSrc":"253:3:101","nodeType":"YulIdentifier","src":"253:3:101"}],"functionName":{"name":"slt","nativeSrc":"230:3:101","nodeType":"YulIdentifier","src":"230:3:101"},"nativeSrc":"230:27:101","nodeType":"YulFunctionCall","src":"230:27:101"}],"functionName":{"name":"iszero","nativeSrc":"223:6:101","nodeType":"YulIdentifier","src":"223:6:101"},"nativeSrc":"223:35:101","nodeType":"YulFunctionCall","src":"223:35:101"},"nativeSrc":"220:55:101","nodeType":"YulIf","src":"220:55:101"},{"nativeSrc":"284:27:101","nodeType":"YulVariableDeclaration","src":"284:27:101","value":{"arguments":[{"name":"offset","nativeSrc":"304:6:101","nodeType":"YulIdentifier","src":"304:6:101"}],"functionName":{"name":"mload","nativeSrc":"298:5:101","nodeType":"YulIdentifier","src":"298:5:101"},"nativeSrc":"298:13:101","nodeType":"YulFunctionCall","src":"298:13:101"},"variables":[{"name":"length","nativeSrc":"288:6:101","nodeType":"YulTypedName","src":"288:6:101","type":""}]},{"body":{"nativeSrc":"354:22:101","nodeType":"YulBlock","src":"354:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"356:16:101","nodeType":"YulIdentifier","src":"356:16:101"},"nativeSrc":"356:18:101","nodeType":"YulFunctionCall","src":"356:18:101"},"nativeSrc":"356:18:101","nodeType":"YulExpressionStatement","src":"356:18:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"326:6:101","nodeType":"YulIdentifier","src":"326:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"342:2:101","nodeType":"YulLiteral","src":"342:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"346:1:101","nodeType":"YulLiteral","src":"346:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"338:3:101","nodeType":"YulIdentifier","src":"338:3:101"},"nativeSrc":"338:10:101","nodeType":"YulFunctionCall","src":"338:10:101"},{"kind":"number","nativeSrc":"350:1:101","nodeType":"YulLiteral","src":"350:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"334:3:101","nodeType":"YulIdentifier","src":"334:3:101"},"nativeSrc":"334:18:101","nodeType":"YulFunctionCall","src":"334:18:101"}],"functionName":{"name":"gt","nativeSrc":"323:2:101","nodeType":"YulIdentifier","src":"323:2:101"},"nativeSrc":"323:30:101","nodeType":"YulFunctionCall","src":"323:30:101"},"nativeSrc":"320:56:101","nodeType":"YulIf","src":"320:56:101"},{"nativeSrc":"385:23:101","nodeType":"YulVariableDeclaration","src":"385:23:101","value":{"arguments":[{"kind":"number","nativeSrc":"405:2:101","nodeType":"YulLiteral","src":"405:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"399:5:101","nodeType":"YulIdentifier","src":"399:5:101"},"nativeSrc":"399:9:101","nodeType":"YulFunctionCall","src":"399:9:101"},"variables":[{"name":"memPtr","nativeSrc":"389:6:101","nodeType":"YulTypedName","src":"389:6:101","type":""}]},{"nativeSrc":"417:85:101","nodeType":"YulVariableDeclaration","src":"417:85:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"439:6:101","nodeType":"YulIdentifier","src":"439:6:101"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"463:6:101","nodeType":"YulIdentifier","src":"463:6:101"},{"kind":"number","nativeSrc":"471:4:101","nodeType":"YulLiteral","src":"471:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"459:3:101","nodeType":"YulIdentifier","src":"459:3:101"},"nativeSrc":"459:17:101","nodeType":"YulFunctionCall","src":"459:17:101"},{"arguments":[{"kind":"number","nativeSrc":"482:2:101","nodeType":"YulLiteral","src":"482:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"478:3:101","nodeType":"YulIdentifier","src":"478:3:101"},"nativeSrc":"478:7:101","nodeType":"YulFunctionCall","src":"478:7:101"}],"functionName":{"name":"and","nativeSrc":"455:3:101","nodeType":"YulIdentifier","src":"455:3:101"},"nativeSrc":"455:31:101","nodeType":"YulFunctionCall","src":"455:31:101"},{"kind":"number","nativeSrc":"488:2:101","nodeType":"YulLiteral","src":"488:2:101","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"451:3:101","nodeType":"YulIdentifier","src":"451:3:101"},"nativeSrc":"451:40:101","nodeType":"YulFunctionCall","src":"451:40:101"},{"arguments":[{"kind":"number","nativeSrc":"497:2:101","nodeType":"YulLiteral","src":"497:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"493:3:101","nodeType":"YulIdentifier","src":"493:3:101"},"nativeSrc":"493:7:101","nodeType":"YulFunctionCall","src":"493:7:101"}],"functionName":{"name":"and","nativeSrc":"447:3:101","nodeType":"YulIdentifier","src":"447:3:101"},"nativeSrc":"447:54:101","nodeType":"YulFunctionCall","src":"447:54:101"}],"functionName":{"name":"add","nativeSrc":"435:3:101","nodeType":"YulIdentifier","src":"435:3:101"},"nativeSrc":"435:67:101","nodeType":"YulFunctionCall","src":"435:67:101"},"variables":[{"name":"newFreePtr","nativeSrc":"421:10:101","nodeType":"YulTypedName","src":"421:10:101","type":""}]},{"body":{"nativeSrc":"577:22:101","nodeType":"YulBlock","src":"577:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"579:16:101","nodeType":"YulIdentifier","src":"579:16:101"},"nativeSrc":"579:18:101","nodeType":"YulFunctionCall","src":"579:18:101"},"nativeSrc":"579:18:101","nodeType":"YulExpressionStatement","src":"579:18:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"520:10:101","nodeType":"YulIdentifier","src":"520:10:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"540:2:101","nodeType":"YulLiteral","src":"540:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"544:1:101","nodeType":"YulLiteral","src":"544:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"536:3:101","nodeType":"YulIdentifier","src":"536:3:101"},"nativeSrc":"536:10:101","nodeType":"YulFunctionCall","src":"536:10:101"},{"kind":"number","nativeSrc":"548:1:101","nodeType":"YulLiteral","src":"548:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"532:3:101","nodeType":"YulIdentifier","src":"532:3:101"},"nativeSrc":"532:18:101","nodeType":"YulFunctionCall","src":"532:18:101"}],"functionName":{"name":"gt","nativeSrc":"517:2:101","nodeType":"YulIdentifier","src":"517:2:101"},"nativeSrc":"517:34:101","nodeType":"YulFunctionCall","src":"517:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"556:10:101","nodeType":"YulIdentifier","src":"556:10:101"},{"name":"memPtr","nativeSrc":"568:6:101","nodeType":"YulIdentifier","src":"568:6:101"}],"functionName":{"name":"lt","nativeSrc":"553:2:101","nodeType":"YulIdentifier","src":"553:2:101"},"nativeSrc":"553:22:101","nodeType":"YulFunctionCall","src":"553:22:101"}],"functionName":{"name":"or","nativeSrc":"514:2:101","nodeType":"YulIdentifier","src":"514:2:101"},"nativeSrc":"514:62:101","nodeType":"YulFunctionCall","src":"514:62:101"},"nativeSrc":"511:88:101","nodeType":"YulIf","src":"511:88:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"615:2:101","nodeType":"YulLiteral","src":"615:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"619:10:101","nodeType":"YulIdentifier","src":"619:10:101"}],"functionName":{"name":"mstore","nativeSrc":"608:6:101","nodeType":"YulIdentifier","src":"608:6:101"},"nativeSrc":"608:22:101","nodeType":"YulFunctionCall","src":"608:22:101"},"nativeSrc":"608:22:101","nodeType":"YulExpressionStatement","src":"608:22:101"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"646:6:101","nodeType":"YulIdentifier","src":"646:6:101"},{"name":"length","nativeSrc":"654:6:101","nodeType":"YulIdentifier","src":"654:6:101"}],"functionName":{"name":"mstore","nativeSrc":"639:6:101","nodeType":"YulIdentifier","src":"639:6:101"},"nativeSrc":"639:22:101","nodeType":"YulFunctionCall","src":"639:22:101"},"nativeSrc":"639:22:101","nodeType":"YulExpressionStatement","src":"639:22:101"},{"body":{"nativeSrc":"713:16:101","nodeType":"YulBlock","src":"713:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"722:1:101","nodeType":"YulLiteral","src":"722:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"725:1:101","nodeType":"YulLiteral","src":"725:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"715:6:101","nodeType":"YulIdentifier","src":"715:6:101"},"nativeSrc":"715:12:101","nodeType":"YulFunctionCall","src":"715:12:101"},"nativeSrc":"715:12:101","nodeType":"YulExpressionStatement","src":"715:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"684:6:101","nodeType":"YulIdentifier","src":"684:6:101"},{"name":"length","nativeSrc":"692:6:101","nodeType":"YulIdentifier","src":"692:6:101"}],"functionName":{"name":"add","nativeSrc":"680:3:101","nodeType":"YulIdentifier","src":"680:3:101"},"nativeSrc":"680:19:101","nodeType":"YulFunctionCall","src":"680:19:101"},{"kind":"number","nativeSrc":"701:4:101","nodeType":"YulLiteral","src":"701:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"676:3:101","nodeType":"YulIdentifier","src":"676:3:101"},"nativeSrc":"676:30:101","nodeType":"YulFunctionCall","src":"676:30:101"},{"name":"end","nativeSrc":"708:3:101","nodeType":"YulIdentifier","src":"708:3:101"}],"functionName":{"name":"gt","nativeSrc":"673:2:101","nodeType":"YulIdentifier","src":"673:2:101"},"nativeSrc":"673:39:101","nodeType":"YulFunctionCall","src":"673:39:101"},"nativeSrc":"670:59:101","nodeType":"YulIf","src":"670:59:101"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"748:6:101","nodeType":"YulIdentifier","src":"748:6:101"},{"kind":"number","nativeSrc":"756:4:101","nodeType":"YulLiteral","src":"756:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"744:3:101","nodeType":"YulIdentifier","src":"744:3:101"},"nativeSrc":"744:17:101","nodeType":"YulFunctionCall","src":"744:17:101"},{"arguments":[{"name":"offset","nativeSrc":"767:6:101","nodeType":"YulIdentifier","src":"767:6:101"},{"kind":"number","nativeSrc":"775:4:101","nodeType":"YulLiteral","src":"775:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"763:3:101","nodeType":"YulIdentifier","src":"763:3:101"},"nativeSrc":"763:17:101","nodeType":"YulFunctionCall","src":"763:17:101"},{"name":"length","nativeSrc":"782:6:101","nodeType":"YulIdentifier","src":"782:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"738:5:101","nodeType":"YulIdentifier","src":"738:5:101"},"nativeSrc":"738:51:101","nodeType":"YulFunctionCall","src":"738:51:101"},"nativeSrc":"738:51:101","nodeType":"YulExpressionStatement","src":"738:51:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"813:6:101","nodeType":"YulIdentifier","src":"813:6:101"},{"name":"length","nativeSrc":"821:6:101","nodeType":"YulIdentifier","src":"821:6:101"}],"functionName":{"name":"add","nativeSrc":"809:3:101","nodeType":"YulIdentifier","src":"809:3:101"},"nativeSrc":"809:19:101","nodeType":"YulFunctionCall","src":"809:19:101"},{"kind":"number","nativeSrc":"830:4:101","nodeType":"YulLiteral","src":"830:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"805:3:101","nodeType":"YulIdentifier","src":"805:3:101"},"nativeSrc":"805:30:101","nodeType":"YulFunctionCall","src":"805:30:101"},{"kind":"number","nativeSrc":"837:1:101","nodeType":"YulLiteral","src":"837:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"798:6:101","nodeType":"YulIdentifier","src":"798:6:101"},"nativeSrc":"798:41:101","nodeType":"YulFunctionCall","src":"798:41:101"},"nativeSrc":"798:41:101","nodeType":"YulExpressionStatement","src":"798:41:101"},{"nativeSrc":"848:15:101","nodeType":"YulAssignment","src":"848:15:101","value":{"name":"memPtr","nativeSrc":"857:6:101","nodeType":"YulIdentifier","src":"857:6:101"},"variableNames":[{"name":"array","nativeSrc":"848:5:101","nodeType":"YulIdentifier","src":"848:5:101"}]}]},"name":"abi_decode_string_fromMemory","nativeSrc":"146:723:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"184:6:101","nodeType":"YulTypedName","src":"184:6:101","type":""},{"name":"end","nativeSrc":"192:3:101","nodeType":"YulTypedName","src":"192:3:101","type":""}],"returnVariables":[{"name":"array","nativeSrc":"200:5:101","nodeType":"YulTypedName","src":"200:5:101","type":""}],"src":"146:723:101"},{"body":{"nativeSrc":"1032:589:101","nodeType":"YulBlock","src":"1032:589:101","statements":[{"body":{"nativeSrc":"1078:16:101","nodeType":"YulBlock","src":"1078:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1087:1:101","nodeType":"YulLiteral","src":"1087:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1090:1:101","nodeType":"YulLiteral","src":"1090:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1080:6:101","nodeType":"YulIdentifier","src":"1080:6:101"},"nativeSrc":"1080:12:101","nodeType":"YulFunctionCall","src":"1080:12:101"},"nativeSrc":"1080:12:101","nodeType":"YulExpressionStatement","src":"1080:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1053:7:101","nodeType":"YulIdentifier","src":"1053:7:101"},{"name":"headStart","nativeSrc":"1062:9:101","nodeType":"YulIdentifier","src":"1062:9:101"}],"functionName":{"name":"sub","nativeSrc":"1049:3:101","nodeType":"YulIdentifier","src":"1049:3:101"},"nativeSrc":"1049:23:101","nodeType":"YulFunctionCall","src":"1049:23:101"},{"kind":"number","nativeSrc":"1074:2:101","nodeType":"YulLiteral","src":"1074:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"1045:3:101","nodeType":"YulIdentifier","src":"1045:3:101"},"nativeSrc":"1045:32:101","nodeType":"YulFunctionCall","src":"1045:32:101"},"nativeSrc":"1042:52:101","nodeType":"YulIf","src":"1042:52:101"},{"nativeSrc":"1103:30:101","nodeType":"YulVariableDeclaration","src":"1103:30:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1123:9:101","nodeType":"YulIdentifier","src":"1123:9:101"}],"functionName":{"name":"mload","nativeSrc":"1117:5:101","nodeType":"YulIdentifier","src":"1117:5:101"},"nativeSrc":"1117:16:101","nodeType":"YulFunctionCall","src":"1117:16:101"},"variables":[{"name":"offset","nativeSrc":"1107:6:101","nodeType":"YulTypedName","src":"1107:6:101","type":""}]},{"body":{"nativeSrc":"1176:16:101","nodeType":"YulBlock","src":"1176:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1185:1:101","nodeType":"YulLiteral","src":"1185:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1188:1:101","nodeType":"YulLiteral","src":"1188:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1178:6:101","nodeType":"YulIdentifier","src":"1178:6:101"},"nativeSrc":"1178:12:101","nodeType":"YulFunctionCall","src":"1178:12:101"},"nativeSrc":"1178:12:101","nodeType":"YulExpressionStatement","src":"1178:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1148:6:101","nodeType":"YulIdentifier","src":"1148:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1164:2:101","nodeType":"YulLiteral","src":"1164:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"1168:1:101","nodeType":"YulLiteral","src":"1168:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1160:3:101","nodeType":"YulIdentifier","src":"1160:3:101"},"nativeSrc":"1160:10:101","nodeType":"YulFunctionCall","src":"1160:10:101"},{"kind":"number","nativeSrc":"1172:1:101","nodeType":"YulLiteral","src":"1172:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1156:3:101","nodeType":"YulIdentifier","src":"1156:3:101"},"nativeSrc":"1156:18:101","nodeType":"YulFunctionCall","src":"1156:18:101"}],"functionName":{"name":"gt","nativeSrc":"1145:2:101","nodeType":"YulIdentifier","src":"1145:2:101"},"nativeSrc":"1145:30:101","nodeType":"YulFunctionCall","src":"1145:30:101"},"nativeSrc":"1142:50:101","nodeType":"YulIf","src":"1142:50:101"},{"nativeSrc":"1201:71:101","nodeType":"YulAssignment","src":"1201:71:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1244:9:101","nodeType":"YulIdentifier","src":"1244:9:101"},{"name":"offset","nativeSrc":"1255:6:101","nodeType":"YulIdentifier","src":"1255:6:101"}],"functionName":{"name":"add","nativeSrc":"1240:3:101","nodeType":"YulIdentifier","src":"1240:3:101"},"nativeSrc":"1240:22:101","nodeType":"YulFunctionCall","src":"1240:22:101"},{"name":"dataEnd","nativeSrc":"1264:7:101","nodeType":"YulIdentifier","src":"1264:7:101"}],"functionName":{"name":"abi_decode_string_fromMemory","nativeSrc":"1211:28:101","nodeType":"YulIdentifier","src":"1211:28:101"},"nativeSrc":"1211:61:101","nodeType":"YulFunctionCall","src":"1211:61:101"},"variableNames":[{"name":"value0","nativeSrc":"1201:6:101","nodeType":"YulIdentifier","src":"1201:6:101"}]},{"nativeSrc":"1281:41:101","nodeType":"YulVariableDeclaration","src":"1281:41:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1307:9:101","nodeType":"YulIdentifier","src":"1307:9:101"},{"kind":"number","nativeSrc":"1318:2:101","nodeType":"YulLiteral","src":"1318:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1303:3:101","nodeType":"YulIdentifier","src":"1303:3:101"},"nativeSrc":"1303:18:101","nodeType":"YulFunctionCall","src":"1303:18:101"}],"functionName":{"name":"mload","nativeSrc":"1297:5:101","nodeType":"YulIdentifier","src":"1297:5:101"},"nativeSrc":"1297:25:101","nodeType":"YulFunctionCall","src":"1297:25:101"},"variables":[{"name":"offset_1","nativeSrc":"1285:8:101","nodeType":"YulTypedName","src":"1285:8:101","type":""}]},{"body":{"nativeSrc":"1367:16:101","nodeType":"YulBlock","src":"1367:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1376:1:101","nodeType":"YulLiteral","src":"1376:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1379:1:101","nodeType":"YulLiteral","src":"1379:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1369:6:101","nodeType":"YulIdentifier","src":"1369:6:101"},"nativeSrc":"1369:12:101","nodeType":"YulFunctionCall","src":"1369:12:101"},"nativeSrc":"1369:12:101","nodeType":"YulExpressionStatement","src":"1369:12:101"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"1337:8:101","nodeType":"YulIdentifier","src":"1337:8:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1355:2:101","nodeType":"YulLiteral","src":"1355:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"1359:1:101","nodeType":"YulLiteral","src":"1359:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1351:3:101","nodeType":"YulIdentifier","src":"1351:3:101"},"nativeSrc":"1351:10:101","nodeType":"YulFunctionCall","src":"1351:10:101"},{"kind":"number","nativeSrc":"1363:1:101","nodeType":"YulLiteral","src":"1363:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1347:3:101","nodeType":"YulIdentifier","src":"1347:3:101"},"nativeSrc":"1347:18:101","nodeType":"YulFunctionCall","src":"1347:18:101"}],"functionName":{"name":"gt","nativeSrc":"1334:2:101","nodeType":"YulIdentifier","src":"1334:2:101"},"nativeSrc":"1334:32:101","nodeType":"YulFunctionCall","src":"1334:32:101"},"nativeSrc":"1331:52:101","nodeType":"YulIf","src":"1331:52:101"},{"nativeSrc":"1392:73:101","nodeType":"YulAssignment","src":"1392:73:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1435:9:101","nodeType":"YulIdentifier","src":"1435:9:101"},{"name":"offset_1","nativeSrc":"1446:8:101","nodeType":"YulIdentifier","src":"1446:8:101"}],"functionName":{"name":"add","nativeSrc":"1431:3:101","nodeType":"YulIdentifier","src":"1431:3:101"},"nativeSrc":"1431:24:101","nodeType":"YulFunctionCall","src":"1431:24:101"},{"name":"dataEnd","nativeSrc":"1457:7:101","nodeType":"YulIdentifier","src":"1457:7:101"}],"functionName":{"name":"abi_decode_string_fromMemory","nativeSrc":"1402:28:101","nodeType":"YulIdentifier","src":"1402:28:101"},"nativeSrc":"1402:63:101","nodeType":"YulFunctionCall","src":"1402:63:101"},"variableNames":[{"name":"value1","nativeSrc":"1392:6:101","nodeType":"YulIdentifier","src":"1392:6:101"}]},{"nativeSrc":"1474:38:101","nodeType":"YulVariableDeclaration","src":"1474:38:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1497:9:101","nodeType":"YulIdentifier","src":"1497:9:101"},{"kind":"number","nativeSrc":"1508:2:101","nodeType":"YulLiteral","src":"1508:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1493:3:101","nodeType":"YulIdentifier","src":"1493:3:101"},"nativeSrc":"1493:18:101","nodeType":"YulFunctionCall","src":"1493:18:101"}],"functionName":{"name":"mload","nativeSrc":"1487:5:101","nodeType":"YulIdentifier","src":"1487:5:101"},"nativeSrc":"1487:25:101","nodeType":"YulFunctionCall","src":"1487:25:101"},"variables":[{"name":"value","nativeSrc":"1478:5:101","nodeType":"YulTypedName","src":"1478:5:101","type":""}]},{"body":{"nativeSrc":"1575:16:101","nodeType":"YulBlock","src":"1575:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1584:1:101","nodeType":"YulLiteral","src":"1584:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1587:1:101","nodeType":"YulLiteral","src":"1587:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1577:6:101","nodeType":"YulIdentifier","src":"1577:6:101"},"nativeSrc":"1577:12:101","nodeType":"YulFunctionCall","src":"1577:12:101"},"nativeSrc":"1577:12:101","nodeType":"YulExpressionStatement","src":"1577:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1534:5:101","nodeType":"YulIdentifier","src":"1534:5:101"},{"arguments":[{"name":"value","nativeSrc":"1545:5:101","nodeType":"YulIdentifier","src":"1545:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1560:3:101","nodeType":"YulLiteral","src":"1560:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"1565:1:101","nodeType":"YulLiteral","src":"1565:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1556:3:101","nodeType":"YulIdentifier","src":"1556:3:101"},"nativeSrc":"1556:11:101","nodeType":"YulFunctionCall","src":"1556:11:101"},{"kind":"number","nativeSrc":"1569:1:101","nodeType":"YulLiteral","src":"1569:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1552:3:101","nodeType":"YulIdentifier","src":"1552:3:101"},"nativeSrc":"1552:19:101","nodeType":"YulFunctionCall","src":"1552:19:101"}],"functionName":{"name":"and","nativeSrc":"1541:3:101","nodeType":"YulIdentifier","src":"1541:3:101"},"nativeSrc":"1541:31:101","nodeType":"YulFunctionCall","src":"1541:31:101"}],"functionName":{"name":"eq","nativeSrc":"1531:2:101","nodeType":"YulIdentifier","src":"1531:2:101"},"nativeSrc":"1531:42:101","nodeType":"YulFunctionCall","src":"1531:42:101"}],"functionName":{"name":"iszero","nativeSrc":"1524:6:101","nodeType":"YulIdentifier","src":"1524:6:101"},"nativeSrc":"1524:50:101","nodeType":"YulFunctionCall","src":"1524:50:101"},"nativeSrc":"1521:70:101","nodeType":"YulIf","src":"1521:70:101"},{"nativeSrc":"1600:15:101","nodeType":"YulAssignment","src":"1600:15:101","value":{"name":"value","nativeSrc":"1610:5:101","nodeType":"YulIdentifier","src":"1610:5:101"},"variableNames":[{"name":"value2","nativeSrc":"1600:6:101","nodeType":"YulIdentifier","src":"1600:6:101"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC20Metadata_$8863_fromMemory","nativeSrc":"874:747:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"982:9:101","nodeType":"YulTypedName","src":"982:9:101","type":""},{"name":"dataEnd","nativeSrc":"993:7:101","nodeType":"YulTypedName","src":"993:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1005:6:101","nodeType":"YulTypedName","src":"1005:6:101","type":""},{"name":"value1","nativeSrc":"1013:6:101","nodeType":"YulTypedName","src":"1013:6:101","type":""},{"name":"value2","nativeSrc":"1021:6:101","nodeType":"YulTypedName","src":"1021:6:101","type":""}],"src":"874:747:101"},{"body":{"nativeSrc":"1681:325:101","nodeType":"YulBlock","src":"1681:325:101","statements":[{"nativeSrc":"1691:22:101","nodeType":"YulAssignment","src":"1691:22:101","value":{"arguments":[{"kind":"number","nativeSrc":"1705:1:101","nodeType":"YulLiteral","src":"1705:1:101","type":"","value":"1"},{"name":"data","nativeSrc":"1708:4:101","nodeType":"YulIdentifier","src":"1708:4:101"}],"functionName":{"name":"shr","nativeSrc":"1701:3:101","nodeType":"YulIdentifier","src":"1701:3:101"},"nativeSrc":"1701:12:101","nodeType":"YulFunctionCall","src":"1701:12:101"},"variableNames":[{"name":"length","nativeSrc":"1691:6:101","nodeType":"YulIdentifier","src":"1691:6:101"}]},{"nativeSrc":"1722:38:101","nodeType":"YulVariableDeclaration","src":"1722:38:101","value":{"arguments":[{"name":"data","nativeSrc":"1752:4:101","nodeType":"YulIdentifier","src":"1752:4:101"},{"kind":"number","nativeSrc":"1758:1:101","nodeType":"YulLiteral","src":"1758:1:101","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"1748:3:101","nodeType":"YulIdentifier","src":"1748:3:101"},"nativeSrc":"1748:12:101","nodeType":"YulFunctionCall","src":"1748:12:101"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"1726:18:101","nodeType":"YulTypedName","src":"1726:18:101","type":""}]},{"body":{"nativeSrc":"1799:31:101","nodeType":"YulBlock","src":"1799:31:101","statements":[{"nativeSrc":"1801:27:101","nodeType":"YulAssignment","src":"1801:27:101","value":{"arguments":[{"name":"length","nativeSrc":"1815:6:101","nodeType":"YulIdentifier","src":"1815:6:101"},{"kind":"number","nativeSrc":"1823:4:101","nodeType":"YulLiteral","src":"1823:4:101","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"1811:3:101","nodeType":"YulIdentifier","src":"1811:3:101"},"nativeSrc":"1811:17:101","nodeType":"YulFunctionCall","src":"1811:17:101"},"variableNames":[{"name":"length","nativeSrc":"1801:6:101","nodeType":"YulIdentifier","src":"1801:6:101"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"1779:18:101","nodeType":"YulIdentifier","src":"1779:18:101"}],"functionName":{"name":"iszero","nativeSrc":"1772:6:101","nodeType":"YulIdentifier","src":"1772:6:101"},"nativeSrc":"1772:26:101","nodeType":"YulFunctionCall","src":"1772:26:101"},"nativeSrc":"1769:61:101","nodeType":"YulIf","src":"1769:61:101"},{"body":{"nativeSrc":"1889:111:101","nodeType":"YulBlock","src":"1889:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1910:1:101","nodeType":"YulLiteral","src":"1910:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1917:3:101","nodeType":"YulLiteral","src":"1917:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"1922:10:101","nodeType":"YulLiteral","src":"1922:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1913:3:101","nodeType":"YulIdentifier","src":"1913:3:101"},"nativeSrc":"1913:20:101","nodeType":"YulFunctionCall","src":"1913:20:101"}],"functionName":{"name":"mstore","nativeSrc":"1903:6:101","nodeType":"YulIdentifier","src":"1903:6:101"},"nativeSrc":"1903:31:101","nodeType":"YulFunctionCall","src":"1903:31:101"},"nativeSrc":"1903:31:101","nodeType":"YulExpressionStatement","src":"1903:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1954:1:101","nodeType":"YulLiteral","src":"1954:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"1957:4:101","nodeType":"YulLiteral","src":"1957:4:101","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"1947:6:101","nodeType":"YulIdentifier","src":"1947:6:101"},"nativeSrc":"1947:15:101","nodeType":"YulFunctionCall","src":"1947:15:101"},"nativeSrc":"1947:15:101","nodeType":"YulExpressionStatement","src":"1947:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1982:1:101","nodeType":"YulLiteral","src":"1982:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1985:4:101","nodeType":"YulLiteral","src":"1985:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1975:6:101","nodeType":"YulIdentifier","src":"1975:6:101"},"nativeSrc":"1975:15:101","nodeType":"YulFunctionCall","src":"1975:15:101"},"nativeSrc":"1975:15:101","nodeType":"YulExpressionStatement","src":"1975:15:101"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"1845:18:101","nodeType":"YulIdentifier","src":"1845:18:101"},{"arguments":[{"name":"length","nativeSrc":"1868:6:101","nodeType":"YulIdentifier","src":"1868:6:101"},{"kind":"number","nativeSrc":"1876:2:101","nodeType":"YulLiteral","src":"1876:2:101","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"1865:2:101","nodeType":"YulIdentifier","src":"1865:2:101"},"nativeSrc":"1865:14:101","nodeType":"YulFunctionCall","src":"1865:14:101"}],"functionName":{"name":"eq","nativeSrc":"1842:2:101","nodeType":"YulIdentifier","src":"1842:2:101"},"nativeSrc":"1842:38:101","nodeType":"YulFunctionCall","src":"1842:38:101"},"nativeSrc":"1839:161:101","nodeType":"YulIf","src":"1839:161:101"}]},"name":"extract_byte_array_length","nativeSrc":"1626:380:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"1661:4:101","nodeType":"YulTypedName","src":"1661:4:101","type":""}],"returnVariables":[{"name":"length","nativeSrc":"1670:6:101","nodeType":"YulTypedName","src":"1670:6:101","type":""}],"src":"1626:380:101"},{"body":{"nativeSrc":"2067:65:101","nodeType":"YulBlock","src":"2067:65:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2084:1:101","nodeType":"YulLiteral","src":"2084:1:101","type":"","value":"0"},{"name":"ptr","nativeSrc":"2087:3:101","nodeType":"YulIdentifier","src":"2087:3:101"}],"functionName":{"name":"mstore","nativeSrc":"2077:6:101","nodeType":"YulIdentifier","src":"2077:6:101"},"nativeSrc":"2077:14:101","nodeType":"YulFunctionCall","src":"2077:14:101"},"nativeSrc":"2077:14:101","nodeType":"YulExpressionStatement","src":"2077:14:101"},{"nativeSrc":"2100:26:101","nodeType":"YulAssignment","src":"2100:26:101","value":{"arguments":[{"kind":"number","nativeSrc":"2118:1:101","nodeType":"YulLiteral","src":"2118:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2121:4:101","nodeType":"YulLiteral","src":"2121:4:101","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2108:9:101","nodeType":"YulIdentifier","src":"2108:9:101"},"nativeSrc":"2108:18:101","nodeType":"YulFunctionCall","src":"2108:18:101"},"variableNames":[{"name":"data","nativeSrc":"2100:4:101","nodeType":"YulIdentifier","src":"2100:4:101"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"2011:121:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"2050:3:101","nodeType":"YulTypedName","src":"2050:3:101","type":""}],"returnVariables":[{"name":"data","nativeSrc":"2058:4:101","nodeType":"YulTypedName","src":"2058:4:101","type":""}],"src":"2011:121:101"},{"body":{"nativeSrc":"2218:437:101","nodeType":"YulBlock","src":"2218:437:101","statements":[{"body":{"nativeSrc":"2251:398:101","nodeType":"YulBlock","src":"2251:398:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2272:1:101","nodeType":"YulLiteral","src":"2272:1:101","type":"","value":"0"},{"name":"array","nativeSrc":"2275:5:101","nodeType":"YulIdentifier","src":"2275:5:101"}],"functionName":{"name":"mstore","nativeSrc":"2265:6:101","nodeType":"YulIdentifier","src":"2265:6:101"},"nativeSrc":"2265:16:101","nodeType":"YulFunctionCall","src":"2265:16:101"},"nativeSrc":"2265:16:101","nodeType":"YulExpressionStatement","src":"2265:16:101"},{"nativeSrc":"2294:30:101","nodeType":"YulVariableDeclaration","src":"2294:30:101","value":{"arguments":[{"kind":"number","nativeSrc":"2316:1:101","nodeType":"YulLiteral","src":"2316:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2319:4:101","nodeType":"YulLiteral","src":"2319:4:101","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2306:9:101","nodeType":"YulIdentifier","src":"2306:9:101"},"nativeSrc":"2306:18:101","nodeType":"YulFunctionCall","src":"2306:18:101"},"variables":[{"name":"data","nativeSrc":"2298:4:101","nodeType":"YulTypedName","src":"2298:4:101","type":""}]},{"nativeSrc":"2337:57:101","nodeType":"YulVariableDeclaration","src":"2337:57:101","value":{"arguments":[{"name":"data","nativeSrc":"2360:4:101","nodeType":"YulIdentifier","src":"2360:4:101"},{"arguments":[{"kind":"number","nativeSrc":"2370:1:101","nodeType":"YulLiteral","src":"2370:1:101","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"2377:10:101","nodeType":"YulIdentifier","src":"2377:10:101"},{"kind":"number","nativeSrc":"2389:2:101","nodeType":"YulLiteral","src":"2389:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2373:3:101","nodeType":"YulIdentifier","src":"2373:3:101"},"nativeSrc":"2373:19:101","nodeType":"YulFunctionCall","src":"2373:19:101"}],"functionName":{"name":"shr","nativeSrc":"2366:3:101","nodeType":"YulIdentifier","src":"2366:3:101"},"nativeSrc":"2366:27:101","nodeType":"YulFunctionCall","src":"2366:27:101"}],"functionName":{"name":"add","nativeSrc":"2356:3:101","nodeType":"YulIdentifier","src":"2356:3:101"},"nativeSrc":"2356:38:101","nodeType":"YulFunctionCall","src":"2356:38:101"},"variables":[{"name":"deleteStart","nativeSrc":"2341:11:101","nodeType":"YulTypedName","src":"2341:11:101","type":""}]},{"body":{"nativeSrc":"2431:23:101","nodeType":"YulBlock","src":"2431:23:101","statements":[{"nativeSrc":"2433:19:101","nodeType":"YulAssignment","src":"2433:19:101","value":{"name":"data","nativeSrc":"2448:4:101","nodeType":"YulIdentifier","src":"2448:4:101"},"variableNames":[{"name":"deleteStart","nativeSrc":"2433:11:101","nodeType":"YulIdentifier","src":"2433:11:101"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"2413:10:101","nodeType":"YulIdentifier","src":"2413:10:101"},{"kind":"number","nativeSrc":"2425:4:101","nodeType":"YulLiteral","src":"2425:4:101","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"2410:2:101","nodeType":"YulIdentifier","src":"2410:2:101"},"nativeSrc":"2410:20:101","nodeType":"YulFunctionCall","src":"2410:20:101"},"nativeSrc":"2407:47:101","nodeType":"YulIf","src":"2407:47:101"},{"nativeSrc":"2467:41:101","nodeType":"YulVariableDeclaration","src":"2467:41:101","value":{"arguments":[{"name":"data","nativeSrc":"2481:4:101","nodeType":"YulIdentifier","src":"2481:4:101"},{"arguments":[{"kind":"number","nativeSrc":"2491:1:101","nodeType":"YulLiteral","src":"2491:1:101","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"2498:3:101","nodeType":"YulIdentifier","src":"2498:3:101"},{"kind":"number","nativeSrc":"2503:2:101","nodeType":"YulLiteral","src":"2503:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2494:3:101","nodeType":"YulIdentifier","src":"2494:3:101"},"nativeSrc":"2494:12:101","nodeType":"YulFunctionCall","src":"2494:12:101"}],"functionName":{"name":"shr","nativeSrc":"2487:3:101","nodeType":"YulIdentifier","src":"2487:3:101"},"nativeSrc":"2487:20:101","nodeType":"YulFunctionCall","src":"2487:20:101"}],"functionName":{"name":"add","nativeSrc":"2477:3:101","nodeType":"YulIdentifier","src":"2477:3:101"},"nativeSrc":"2477:31:101","nodeType":"YulFunctionCall","src":"2477:31:101"},"variables":[{"name":"_1","nativeSrc":"2471:2:101","nodeType":"YulTypedName","src":"2471:2:101","type":""}]},{"nativeSrc":"2521:24:101","nodeType":"YulVariableDeclaration","src":"2521:24:101","value":{"name":"deleteStart","nativeSrc":"2534:11:101","nodeType":"YulIdentifier","src":"2534:11:101"},"variables":[{"name":"start","nativeSrc":"2525:5:101","nodeType":"YulTypedName","src":"2525:5:101","type":""}]},{"body":{"nativeSrc":"2619:20:101","nodeType":"YulBlock","src":"2619:20:101","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"2628:5:101","nodeType":"YulIdentifier","src":"2628:5:101"},{"kind":"number","nativeSrc":"2635:1:101","nodeType":"YulLiteral","src":"2635:1:101","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"2621:6:101","nodeType":"YulIdentifier","src":"2621:6:101"},"nativeSrc":"2621:16:101","nodeType":"YulFunctionCall","src":"2621:16:101"},"nativeSrc":"2621:16:101","nodeType":"YulExpressionStatement","src":"2621:16:101"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"2569:5:101","nodeType":"YulIdentifier","src":"2569:5:101"},{"name":"_1","nativeSrc":"2576:2:101","nodeType":"YulIdentifier","src":"2576:2:101"}],"functionName":{"name":"lt","nativeSrc":"2566:2:101","nodeType":"YulIdentifier","src":"2566:2:101"},"nativeSrc":"2566:13:101","nodeType":"YulFunctionCall","src":"2566:13:101"},"nativeSrc":"2558:81:101","nodeType":"YulForLoop","post":{"nativeSrc":"2580:26:101","nodeType":"YulBlock","src":"2580:26:101","statements":[{"nativeSrc":"2582:22:101","nodeType":"YulAssignment","src":"2582:22:101","value":{"arguments":[{"name":"start","nativeSrc":"2595:5:101","nodeType":"YulIdentifier","src":"2595:5:101"},{"kind":"number","nativeSrc":"2602:1:101","nodeType":"YulLiteral","src":"2602:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"2591:3:101","nodeType":"YulIdentifier","src":"2591:3:101"},"nativeSrc":"2591:13:101","nodeType":"YulFunctionCall","src":"2591:13:101"},"variableNames":[{"name":"start","nativeSrc":"2582:5:101","nodeType":"YulIdentifier","src":"2582:5:101"}]}]},"pre":{"nativeSrc":"2562:3:101","nodeType":"YulBlock","src":"2562:3:101","statements":[]},"src":"2558:81:101"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"2234:3:101","nodeType":"YulIdentifier","src":"2234:3:101"},{"kind":"number","nativeSrc":"2239:2:101","nodeType":"YulLiteral","src":"2239:2:101","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"2231:2:101","nodeType":"YulIdentifier","src":"2231:2:101"},"nativeSrc":"2231:11:101","nodeType":"YulFunctionCall","src":"2231:11:101"},"nativeSrc":"2228:421:101","nodeType":"YulIf","src":"2228:421:101"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"2137:518:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"2190:5:101","nodeType":"YulTypedName","src":"2190:5:101","type":""},{"name":"len","nativeSrc":"2197:3:101","nodeType":"YulTypedName","src":"2197:3:101","type":""},{"name":"startIndex","nativeSrc":"2202:10:101","nodeType":"YulTypedName","src":"2202:10:101","type":""}],"src":"2137:518:101"},{"body":{"nativeSrc":"2745:81:101","nodeType":"YulBlock","src":"2745:81:101","statements":[{"nativeSrc":"2755:65:101","nodeType":"YulAssignment","src":"2755:65:101","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"2770:4:101","nodeType":"YulIdentifier","src":"2770:4:101"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2788:1:101","nodeType":"YulLiteral","src":"2788:1:101","type":"","value":"3"},{"name":"len","nativeSrc":"2791:3:101","nodeType":"YulIdentifier","src":"2791:3:101"}],"functionName":{"name":"shl","nativeSrc":"2784:3:101","nodeType":"YulIdentifier","src":"2784:3:101"},"nativeSrc":"2784:11:101","nodeType":"YulFunctionCall","src":"2784:11:101"},{"arguments":[{"kind":"number","nativeSrc":"2801:1:101","nodeType":"YulLiteral","src":"2801:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2797:3:101","nodeType":"YulIdentifier","src":"2797:3:101"},"nativeSrc":"2797:6:101","nodeType":"YulFunctionCall","src":"2797:6:101"}],"functionName":{"name":"shr","nativeSrc":"2780:3:101","nodeType":"YulIdentifier","src":"2780:3:101"},"nativeSrc":"2780:24:101","nodeType":"YulFunctionCall","src":"2780:24:101"}],"functionName":{"name":"not","nativeSrc":"2776:3:101","nodeType":"YulIdentifier","src":"2776:3:101"},"nativeSrc":"2776:29:101","nodeType":"YulFunctionCall","src":"2776:29:101"}],"functionName":{"name":"and","nativeSrc":"2766:3:101","nodeType":"YulIdentifier","src":"2766:3:101"},"nativeSrc":"2766:40:101","nodeType":"YulFunctionCall","src":"2766:40:101"},{"arguments":[{"kind":"number","nativeSrc":"2812:1:101","nodeType":"YulLiteral","src":"2812:1:101","type":"","value":"1"},{"name":"len","nativeSrc":"2815:3:101","nodeType":"YulIdentifier","src":"2815:3:101"}],"functionName":{"name":"shl","nativeSrc":"2808:3:101","nodeType":"YulIdentifier","src":"2808:3:101"},"nativeSrc":"2808:11:101","nodeType":"YulFunctionCall","src":"2808:11:101"}],"functionName":{"name":"or","nativeSrc":"2763:2:101","nodeType":"YulIdentifier","src":"2763:2:101"},"nativeSrc":"2763:57:101","nodeType":"YulFunctionCall","src":"2763:57:101"},"variableNames":[{"name":"used","nativeSrc":"2755:4:101","nodeType":"YulIdentifier","src":"2755:4:101"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"2660:166:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"2722:4:101","nodeType":"YulTypedName","src":"2722:4:101","type":""},{"name":"len","nativeSrc":"2728:3:101","nodeType":"YulTypedName","src":"2728:3:101","type":""}],"returnVariables":[{"name":"used","nativeSrc":"2736:4:101","nodeType":"YulTypedName","src":"2736:4:101","type":""}],"src":"2660:166:101"},{"body":{"nativeSrc":"2927:1203:101","nodeType":"YulBlock","src":"2927:1203:101","statements":[{"nativeSrc":"2937:24:101","nodeType":"YulVariableDeclaration","src":"2937:24:101","value":{"arguments":[{"name":"src","nativeSrc":"2957:3:101","nodeType":"YulIdentifier","src":"2957:3:101"}],"functionName":{"name":"mload","nativeSrc":"2951:5:101","nodeType":"YulIdentifier","src":"2951:5:101"},"nativeSrc":"2951:10:101","nodeType":"YulFunctionCall","src":"2951:10:101"},"variables":[{"name":"newLen","nativeSrc":"2941:6:101","nodeType":"YulTypedName","src":"2941:6:101","type":""}]},{"body":{"nativeSrc":"3004:22:101","nodeType":"YulBlock","src":"3004:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3006:16:101","nodeType":"YulIdentifier","src":"3006:16:101"},"nativeSrc":"3006:18:101","nodeType":"YulFunctionCall","src":"3006:18:101"},"nativeSrc":"3006:18:101","nodeType":"YulExpressionStatement","src":"3006:18:101"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"2976:6:101","nodeType":"YulIdentifier","src":"2976:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2992:2:101","nodeType":"YulLiteral","src":"2992:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"2996:1:101","nodeType":"YulLiteral","src":"2996:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2988:3:101","nodeType":"YulIdentifier","src":"2988:3:101"},"nativeSrc":"2988:10:101","nodeType":"YulFunctionCall","src":"2988:10:101"},{"kind":"number","nativeSrc":"3000:1:101","nodeType":"YulLiteral","src":"3000:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2984:3:101","nodeType":"YulIdentifier","src":"2984:3:101"},"nativeSrc":"2984:18:101","nodeType":"YulFunctionCall","src":"2984:18:101"}],"functionName":{"name":"gt","nativeSrc":"2973:2:101","nodeType":"YulIdentifier","src":"2973:2:101"},"nativeSrc":"2973:30:101","nodeType":"YulFunctionCall","src":"2973:30:101"},"nativeSrc":"2970:56:101","nodeType":"YulIf","src":"2970:56:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"3079:4:101","nodeType":"YulIdentifier","src":"3079:4:101"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"3117:4:101","nodeType":"YulIdentifier","src":"3117:4:101"}],"functionName":{"name":"sload","nativeSrc":"3111:5:101","nodeType":"YulIdentifier","src":"3111:5:101"},"nativeSrc":"3111:11:101","nodeType":"YulFunctionCall","src":"3111:11:101"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"3085:25:101","nodeType":"YulIdentifier","src":"3085:25:101"},"nativeSrc":"3085:38:101","nodeType":"YulFunctionCall","src":"3085:38:101"},{"name":"newLen","nativeSrc":"3125:6:101","nodeType":"YulIdentifier","src":"3125:6:101"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"3035:43:101","nodeType":"YulIdentifier","src":"3035:43:101"},"nativeSrc":"3035:97:101","nodeType":"YulFunctionCall","src":"3035:97:101"},"nativeSrc":"3035:97:101","nodeType":"YulExpressionStatement","src":"3035:97:101"},{"nativeSrc":"3141:18:101","nodeType":"YulVariableDeclaration","src":"3141:18:101","value":{"kind":"number","nativeSrc":"3158:1:101","nodeType":"YulLiteral","src":"3158:1:101","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"3145:9:101","nodeType":"YulTypedName","src":"3145:9:101","type":""}]},{"nativeSrc":"3168:17:101","nodeType":"YulAssignment","src":"3168:17:101","value":{"kind":"number","nativeSrc":"3181:4:101","nodeType":"YulLiteral","src":"3181:4:101","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"3168:9:101","nodeType":"YulIdentifier","src":"3168:9:101"}]},{"cases":[{"body":{"nativeSrc":"3231:642:101","nodeType":"YulBlock","src":"3231:642:101","statements":[{"nativeSrc":"3245:35:101","nodeType":"YulVariableDeclaration","src":"3245:35:101","value":{"arguments":[{"name":"newLen","nativeSrc":"3264:6:101","nodeType":"YulIdentifier","src":"3264:6:101"},{"arguments":[{"kind":"number","nativeSrc":"3276:2:101","nodeType":"YulLiteral","src":"3276:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"3272:3:101","nodeType":"YulIdentifier","src":"3272:3:101"},"nativeSrc":"3272:7:101","nodeType":"YulFunctionCall","src":"3272:7:101"}],"functionName":{"name":"and","nativeSrc":"3260:3:101","nodeType":"YulIdentifier","src":"3260:3:101"},"nativeSrc":"3260:20:101","nodeType":"YulFunctionCall","src":"3260:20:101"},"variables":[{"name":"loopEnd","nativeSrc":"3249:7:101","nodeType":"YulTypedName","src":"3249:7:101","type":""}]},{"nativeSrc":"3293:49:101","nodeType":"YulVariableDeclaration","src":"3293:49:101","value":{"arguments":[{"name":"slot","nativeSrc":"3337:4:101","nodeType":"YulIdentifier","src":"3337:4:101"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"3307:29:101","nodeType":"YulIdentifier","src":"3307:29:101"},"nativeSrc":"3307:35:101","nodeType":"YulFunctionCall","src":"3307:35:101"},"variables":[{"name":"dstPtr","nativeSrc":"3297:6:101","nodeType":"YulTypedName","src":"3297:6:101","type":""}]},{"nativeSrc":"3355:10:101","nodeType":"YulVariableDeclaration","src":"3355:10:101","value":{"kind":"number","nativeSrc":"3364:1:101","nodeType":"YulLiteral","src":"3364:1:101","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"3359:1:101","nodeType":"YulTypedName","src":"3359:1:101","type":""}]},{"body":{"nativeSrc":"3435:165:101","nodeType":"YulBlock","src":"3435:165:101","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3460:6:101","nodeType":"YulIdentifier","src":"3460:6:101"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3478:3:101","nodeType":"YulIdentifier","src":"3478:3:101"},{"name":"srcOffset","nativeSrc":"3483:9:101","nodeType":"YulIdentifier","src":"3483:9:101"}],"functionName":{"name":"add","nativeSrc":"3474:3:101","nodeType":"YulIdentifier","src":"3474:3:101"},"nativeSrc":"3474:19:101","nodeType":"YulFunctionCall","src":"3474:19:101"}],"functionName":{"name":"mload","nativeSrc":"3468:5:101","nodeType":"YulIdentifier","src":"3468:5:101"},"nativeSrc":"3468:26:101","nodeType":"YulFunctionCall","src":"3468:26:101"}],"functionName":{"name":"sstore","nativeSrc":"3453:6:101","nodeType":"YulIdentifier","src":"3453:6:101"},"nativeSrc":"3453:42:101","nodeType":"YulFunctionCall","src":"3453:42:101"},"nativeSrc":"3453:42:101","nodeType":"YulExpressionStatement","src":"3453:42:101"},{"nativeSrc":"3512:24:101","nodeType":"YulAssignment","src":"3512:24:101","value":{"arguments":[{"name":"dstPtr","nativeSrc":"3526:6:101","nodeType":"YulIdentifier","src":"3526:6:101"},{"kind":"number","nativeSrc":"3534:1:101","nodeType":"YulLiteral","src":"3534:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3522:3:101","nodeType":"YulIdentifier","src":"3522:3:101"},"nativeSrc":"3522:14:101","nodeType":"YulFunctionCall","src":"3522:14:101"},"variableNames":[{"name":"dstPtr","nativeSrc":"3512:6:101","nodeType":"YulIdentifier","src":"3512:6:101"}]},{"nativeSrc":"3553:33:101","nodeType":"YulAssignment","src":"3553:33:101","value":{"arguments":[{"name":"srcOffset","nativeSrc":"3570:9:101","nodeType":"YulIdentifier","src":"3570:9:101"},{"kind":"number","nativeSrc":"3581:4:101","nodeType":"YulLiteral","src":"3581:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3566:3:101","nodeType":"YulIdentifier","src":"3566:3:101"},"nativeSrc":"3566:20:101","nodeType":"YulFunctionCall","src":"3566:20:101"},"variableNames":[{"name":"srcOffset","nativeSrc":"3553:9:101","nodeType":"YulIdentifier","src":"3553:9:101"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"3389:1:101","nodeType":"YulIdentifier","src":"3389:1:101"},{"name":"loopEnd","nativeSrc":"3392:7:101","nodeType":"YulIdentifier","src":"3392:7:101"}],"functionName":{"name":"lt","nativeSrc":"3386:2:101","nodeType":"YulIdentifier","src":"3386:2:101"},"nativeSrc":"3386:14:101","nodeType":"YulFunctionCall","src":"3386:14:101"},"nativeSrc":"3378:222:101","nodeType":"YulForLoop","post":{"nativeSrc":"3401:21:101","nodeType":"YulBlock","src":"3401:21:101","statements":[{"nativeSrc":"3403:17:101","nodeType":"YulAssignment","src":"3403:17:101","value":{"arguments":[{"name":"i","nativeSrc":"3412:1:101","nodeType":"YulIdentifier","src":"3412:1:101"},{"kind":"number","nativeSrc":"3415:4:101","nodeType":"YulLiteral","src":"3415:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3408:3:101","nodeType":"YulIdentifier","src":"3408:3:101"},"nativeSrc":"3408:12:101","nodeType":"YulFunctionCall","src":"3408:12:101"},"variableNames":[{"name":"i","nativeSrc":"3403:1:101","nodeType":"YulIdentifier","src":"3403:1:101"}]}]},"pre":{"nativeSrc":"3382:3:101","nodeType":"YulBlock","src":"3382:3:101","statements":[]},"src":"3378:222:101"},{"body":{"nativeSrc":"3648:166:101","nodeType":"YulBlock","src":"3648:166:101","statements":[{"nativeSrc":"3666:43:101","nodeType":"YulVariableDeclaration","src":"3666:43:101","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3693:3:101","nodeType":"YulIdentifier","src":"3693:3:101"},{"name":"srcOffset","nativeSrc":"3698:9:101","nodeType":"YulIdentifier","src":"3698:9:101"}],"functionName":{"name":"add","nativeSrc":"3689:3:101","nodeType":"YulIdentifier","src":"3689:3:101"},"nativeSrc":"3689:19:101","nodeType":"YulFunctionCall","src":"3689:19:101"}],"functionName":{"name":"mload","nativeSrc":"3683:5:101","nodeType":"YulIdentifier","src":"3683:5:101"},"nativeSrc":"3683:26:101","nodeType":"YulFunctionCall","src":"3683:26:101"},"variables":[{"name":"lastValue","nativeSrc":"3670:9:101","nodeType":"YulTypedName","src":"3670:9:101","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3733:6:101","nodeType":"YulIdentifier","src":"3733:6:101"},{"arguments":[{"name":"lastValue","nativeSrc":"3745:9:101","nodeType":"YulIdentifier","src":"3745:9:101"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3772:1:101","nodeType":"YulLiteral","src":"3772:1:101","type":"","value":"3"},{"name":"newLen","nativeSrc":"3775:6:101","nodeType":"YulIdentifier","src":"3775:6:101"}],"functionName":{"name":"shl","nativeSrc":"3768:3:101","nodeType":"YulIdentifier","src":"3768:3:101"},"nativeSrc":"3768:14:101","nodeType":"YulFunctionCall","src":"3768:14:101"},{"kind":"number","nativeSrc":"3784:3:101","nodeType":"YulLiteral","src":"3784:3:101","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"3764:3:101","nodeType":"YulIdentifier","src":"3764:3:101"},"nativeSrc":"3764:24:101","nodeType":"YulFunctionCall","src":"3764:24:101"},{"arguments":[{"kind":"number","nativeSrc":"3794:1:101","nodeType":"YulLiteral","src":"3794:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3790:3:101","nodeType":"YulIdentifier","src":"3790:3:101"},"nativeSrc":"3790:6:101","nodeType":"YulFunctionCall","src":"3790:6:101"}],"functionName":{"name":"shr","nativeSrc":"3760:3:101","nodeType":"YulIdentifier","src":"3760:3:101"},"nativeSrc":"3760:37:101","nodeType":"YulFunctionCall","src":"3760:37:101"}],"functionName":{"name":"not","nativeSrc":"3756:3:101","nodeType":"YulIdentifier","src":"3756:3:101"},"nativeSrc":"3756:42:101","nodeType":"YulFunctionCall","src":"3756:42:101"}],"functionName":{"name":"and","nativeSrc":"3741:3:101","nodeType":"YulIdentifier","src":"3741:3:101"},"nativeSrc":"3741:58:101","nodeType":"YulFunctionCall","src":"3741:58:101"}],"functionName":{"name":"sstore","nativeSrc":"3726:6:101","nodeType":"YulIdentifier","src":"3726:6:101"},"nativeSrc":"3726:74:101","nodeType":"YulFunctionCall","src":"3726:74:101"},"nativeSrc":"3726:74:101","nodeType":"YulExpressionStatement","src":"3726:74:101"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"3619:7:101","nodeType":"YulIdentifier","src":"3619:7:101"},{"name":"newLen","nativeSrc":"3628:6:101","nodeType":"YulIdentifier","src":"3628:6:101"}],"functionName":{"name":"lt","nativeSrc":"3616:2:101","nodeType":"YulIdentifier","src":"3616:2:101"},"nativeSrc":"3616:19:101","nodeType":"YulFunctionCall","src":"3616:19:101"},"nativeSrc":"3613:201:101","nodeType":"YulIf","src":"3613:201:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"3834:4:101","nodeType":"YulIdentifier","src":"3834:4:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3848:1:101","nodeType":"YulLiteral","src":"3848:1:101","type":"","value":"1"},{"name":"newLen","nativeSrc":"3851:6:101","nodeType":"YulIdentifier","src":"3851:6:101"}],"functionName":{"name":"shl","nativeSrc":"3844:3:101","nodeType":"YulIdentifier","src":"3844:3:101"},"nativeSrc":"3844:14:101","nodeType":"YulFunctionCall","src":"3844:14:101"},{"kind":"number","nativeSrc":"3860:1:101","nodeType":"YulLiteral","src":"3860:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3840:3:101","nodeType":"YulIdentifier","src":"3840:3:101"},"nativeSrc":"3840:22:101","nodeType":"YulFunctionCall","src":"3840:22:101"}],"functionName":{"name":"sstore","nativeSrc":"3827:6:101","nodeType":"YulIdentifier","src":"3827:6:101"},"nativeSrc":"3827:36:101","nodeType":"YulFunctionCall","src":"3827:36:101"},"nativeSrc":"3827:36:101","nodeType":"YulExpressionStatement","src":"3827:36:101"}]},"nativeSrc":"3224:649:101","nodeType":"YulCase","src":"3224:649:101","value":{"kind":"number","nativeSrc":"3229:1:101","nodeType":"YulLiteral","src":"3229:1:101","type":"","value":"1"}},{"body":{"nativeSrc":"3890:234:101","nodeType":"YulBlock","src":"3890:234:101","statements":[{"nativeSrc":"3904:14:101","nodeType":"YulVariableDeclaration","src":"3904:14:101","value":{"kind":"number","nativeSrc":"3917:1:101","nodeType":"YulLiteral","src":"3917:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3908:5:101","nodeType":"YulTypedName","src":"3908:5:101","type":""}]},{"body":{"nativeSrc":"3953:67:101","nodeType":"YulBlock","src":"3953:67:101","statements":[{"nativeSrc":"3971:35:101","nodeType":"YulAssignment","src":"3971:35:101","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3990:3:101","nodeType":"YulIdentifier","src":"3990:3:101"},{"name":"srcOffset","nativeSrc":"3995:9:101","nodeType":"YulIdentifier","src":"3995:9:101"}],"functionName":{"name":"add","nativeSrc":"3986:3:101","nodeType":"YulIdentifier","src":"3986:3:101"},"nativeSrc":"3986:19:101","nodeType":"YulFunctionCall","src":"3986:19:101"}],"functionName":{"name":"mload","nativeSrc":"3980:5:101","nodeType":"YulIdentifier","src":"3980:5:101"},"nativeSrc":"3980:26:101","nodeType":"YulFunctionCall","src":"3980:26:101"},"variableNames":[{"name":"value","nativeSrc":"3971:5:101","nodeType":"YulIdentifier","src":"3971:5:101"}]}]},"condition":{"name":"newLen","nativeSrc":"3934:6:101","nodeType":"YulIdentifier","src":"3934:6:101"},"nativeSrc":"3931:89:101","nodeType":"YulIf","src":"3931:89:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"4040:4:101","nodeType":"YulIdentifier","src":"4040:4:101"},{"arguments":[{"name":"value","nativeSrc":"4099:5:101","nodeType":"YulIdentifier","src":"4099:5:101"},{"name":"newLen","nativeSrc":"4106:6:101","nodeType":"YulIdentifier","src":"4106:6:101"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"4046:52:101","nodeType":"YulIdentifier","src":"4046:52:101"},"nativeSrc":"4046:67:101","nodeType":"YulFunctionCall","src":"4046:67:101"}],"functionName":{"name":"sstore","nativeSrc":"4033:6:101","nodeType":"YulIdentifier","src":"4033:6:101"},"nativeSrc":"4033:81:101","nodeType":"YulFunctionCall","src":"4033:81:101"},"nativeSrc":"4033:81:101","nodeType":"YulExpressionStatement","src":"4033:81:101"}]},"nativeSrc":"3882:242:101","nodeType":"YulCase","src":"3882:242:101","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"3204:6:101","nodeType":"YulIdentifier","src":"3204:6:101"},{"kind":"number","nativeSrc":"3212:2:101","nodeType":"YulLiteral","src":"3212:2:101","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"3201:2:101","nodeType":"YulIdentifier","src":"3201:2:101"},"nativeSrc":"3201:14:101","nodeType":"YulFunctionCall","src":"3201:14:101"},"nativeSrc":"3194:930:101","nodeType":"YulSwitch","src":"3194:930:101"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"2831:1299:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"2912:4:101","nodeType":"YulTypedName","src":"2912:4:101","type":""},{"name":"src","nativeSrc":"2918:3:101","nodeType":"YulTypedName","src":"2918:3:101","type":""}],"src":"2831:1299:101"},{"body":{"nativeSrc":"4184:176:101","nodeType":"YulBlock","src":"4184:176:101","statements":[{"nativeSrc":"4194:17:101","nodeType":"YulAssignment","src":"4194:17:101","value":{"arguments":[{"name":"x","nativeSrc":"4206:1:101","nodeType":"YulIdentifier","src":"4206:1:101"},{"name":"y","nativeSrc":"4209:1:101","nodeType":"YulIdentifier","src":"4209:1:101"}],"functionName":{"name":"sub","nativeSrc":"4202:3:101","nodeType":"YulIdentifier","src":"4202:3:101"},"nativeSrc":"4202:9:101","nodeType":"YulFunctionCall","src":"4202:9:101"},"variableNames":[{"name":"diff","nativeSrc":"4194:4:101","nodeType":"YulIdentifier","src":"4194:4:101"}]},{"body":{"nativeSrc":"4243:111:101","nodeType":"YulBlock","src":"4243:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4264:1:101","nodeType":"YulLiteral","src":"4264:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4271:3:101","nodeType":"YulLiteral","src":"4271:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"4276:10:101","nodeType":"YulLiteral","src":"4276:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4267:3:101","nodeType":"YulIdentifier","src":"4267:3:101"},"nativeSrc":"4267:20:101","nodeType":"YulFunctionCall","src":"4267:20:101"}],"functionName":{"name":"mstore","nativeSrc":"4257:6:101","nodeType":"YulIdentifier","src":"4257:6:101"},"nativeSrc":"4257:31:101","nodeType":"YulFunctionCall","src":"4257:31:101"},"nativeSrc":"4257:31:101","nodeType":"YulExpressionStatement","src":"4257:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4308:1:101","nodeType":"YulLiteral","src":"4308:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"4311:4:101","nodeType":"YulLiteral","src":"4311:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"4301:6:101","nodeType":"YulIdentifier","src":"4301:6:101"},"nativeSrc":"4301:15:101","nodeType":"YulFunctionCall","src":"4301:15:101"},"nativeSrc":"4301:15:101","nodeType":"YulExpressionStatement","src":"4301:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4336:1:101","nodeType":"YulLiteral","src":"4336:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4339:4:101","nodeType":"YulLiteral","src":"4339:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4329:6:101","nodeType":"YulIdentifier","src":"4329:6:101"},"nativeSrc":"4329:15:101","nodeType":"YulFunctionCall","src":"4329:15:101"},"nativeSrc":"4329:15:101","nodeType":"YulExpressionStatement","src":"4329:15:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"4226:4:101","nodeType":"YulIdentifier","src":"4226:4:101"},{"name":"x","nativeSrc":"4232:1:101","nodeType":"YulIdentifier","src":"4232:1:101"}],"functionName":{"name":"gt","nativeSrc":"4223:2:101","nodeType":"YulIdentifier","src":"4223:2:101"},"nativeSrc":"4223:11:101","nodeType":"YulFunctionCall","src":"4223:11:101"},"nativeSrc":"4220:134:101","nodeType":"YulIf","src":"4220:134:101"}]},"name":"checked_sub_t_uint256","nativeSrc":"4135:225:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"4166:1:101","nodeType":"YulTypedName","src":"4166:1:101","type":""},{"name":"y","nativeSrc":"4169:1:101","nodeType":"YulTypedName","src":"4169:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"4175:4:101","nodeType":"YulTypedName","src":"4175:4:101","type":""}],"src":"4135:225:101"}]},"contents":"{\n    { }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let length := mload(offset)\n        if gt(length, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(length, 0x1f), not(31)), 63), not(31)))\n        if or(gt(newFreePtr, sub(shl(64, 1), 1)), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, length)\n        if gt(add(add(offset, length), 0x20), end) { revert(0, 0) }\n        mcopy(add(memPtr, 0x20), add(offset, 0x20), length)\n        mstore(add(add(memPtr, length), 0x20), 0)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC20Metadata_$8863_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, sub(shl(64, 1), 1)) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, sub(shl(64, 1), 1)) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        let value := mload(add(headStart, 64))\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value2 := value\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function array_dataslot_string_storage(ptr) -> data\n    {\n        mstore(0, ptr)\n        data := keccak256(0, 0x20)\n    }\n    function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n    {\n        if gt(len, 31)\n        {\n            mstore(0, array)\n            let data := keccak256(0, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _1 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _1) { start := add(start, 1) }\n            { sstore(start, 0) }\n        }\n    }\n    function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used\n    {\n        used := or(and(data, not(shr(shl(3, len), not(0)))), shl(1, len))\n    }\n    function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src)\n    {\n        let newLen := mload(src)\n        if gt(newLen, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), newLen)\n        let srcOffset := 0\n        srcOffset := 0x20\n        switch gt(newLen, 31)\n        case 1 {\n            let loopEnd := and(newLen, not(31))\n            let dstPtr := array_dataslot_string_storage(slot)\n            let i := 0\n            for { } lt(i, loopEnd) { i := add(i, 0x20) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, 0x20)\n            }\n            if lt(loopEnd, newLen)\n            {\n                let lastValue := mload(add(src, srcOffset))\n                sstore(dstPtr, and(lastValue, not(shr(and(shl(3, newLen), 248), not(0)))))\n            }\n            sstore(slot, add(shl(1, newLen), 1))\n        }\n        default {\n            let value := 0\n            if newLen\n            {\n                value := mload(add(src, srcOffset))\n            }\n            sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n        }\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60c060405234801561000f575f5ffd5b50604051611a80380380611a8083398101604081905261002e916101fa565b808383600361003d8382610303565b50600461004a8282610303565b5050505f5f61005e836100ab60201b60201c565b915091508161006e576012610070565b805b60ff1660a05250506001600160a01b031660805261009060635f196103bd565b600681905560078190556008819055600955506103e2915050565b5f80806100b760405190565b6040805160048152602481019091526020810180516001600160e01b0390811663313ce56760e01b179091529192505f9182916100f79188919061013c16565b50909250905061010683604052565b818015610114575060203d10155b8015610121575060ff8111155b61012c575f5f610130565b6001815b94509450505050915091565b5f5f5f60405f855160208701885afa92505f51915060205190509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610180575f5ffd5b81516001600160401b038111156101995761019961015d565b604051601f8201601f19908116603f011681016001600160401b03811182821017156101c7576101c761015d565b6040528181528382016020018510156101de575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f5f5f6060848603121561020c575f5ffd5b83516001600160401b03811115610221575f5ffd5b61022d86828701610171565b602086015190945090506001600160401b0381111561024a575f5ffd5b61025686828701610171565b604086015190935090506001600160a01b0381168114610274575f5ffd5b809150509250925092565b600181811c9082168061029357607f821691505b6020821081036102b157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156102fe57805f5260205f20601f840160051c810160208510156102dc5750805b601f840160051c820191505b818110156102fb575f81556001016102e8565b50505b505050565b81516001600160401b0381111561031c5761031c61015d565b6103308161032a845461027f565b846102b7565b6020601f821160018114610362575f831561034b5750848201515b5f19600385901b1c1916600184901b1784556102fb565b5f84815260208120601f198516915b828110156103915787850151825560209485019460019092019101610371565b50848210156103ae57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b818103818111156103dc57634e487b7160e01b5f52601160045260245ffd5b92915050565b60805160a05161165a6104265f395f61061e01525f81816102ce015281816104a20152818161082e0152818161088b01528181610e0d0152610ebf015261165a5ff3fe608060405234801561000f575f5ffd5b50600436106101fd575f3560e01c806386de9e4f11610114578063c6e6f592116100a9578063d6dd023411610079578063d6dd023414610439578063d905777e1461044c578063dd62ed3e1461045f578063ef8b30f7146103f7578063f3c0b89214610497575f5ffd5b8063c6e6f592146103f7578063c7361ed21461040a578063cc7fcc601461041d578063ce96cb7714610426575f5ffd5b8063b3d7f6b9116100e4578063b3d7f6b9146103ab578063b460af94146103be578063ba087652146103d1578063c63d75b6146103e4575f5ffd5b806386de9e4f1461035a57806394bf804d1461037d57806395d89b4114610390578063a9059cbb14610398575f5ffd5b8063313ce56711610195578063402d267d11610165578063402d267d146103015780634cdad5061461023a5780636e553f651461031457806370a08231146103275780637fb1ad621461034f575f5ffd5b8063313ce5671461029e57806338359018146102b857806338d52e0f146102c157806339d88aff146102f8575f5ffd5b8063095ea7b3116101d0578063095ea7b31461024d5780630a28a4771461027057806318160ddd1461028357806323b872dd1461028b575f5ffd5b806301e1d11414610201578063034548cd1461021c57806306fdde031461022557806307a2d13a1461023a575b5f5ffd5b61020961049f565b6040519081526020015b60405180910390f35b61020960075481565b61022d61052e565b60405161021391906111f7565b61020961024836600461122c565b6105be565b61026061025b36600461125e565b6105cf565b6040519015158152602001610213565b61020961027e36600461122c565b6105e6565b600254610209565b610260610299366004611286565b6105f2565b6102a6610617565b60405160ff9091168152602001610213565b61020960085481565b6040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602001610213565b61020960065481565b61020961030f3660046112c0565b610642565b6102096103223660046112d9565b610666565b6102096103353660046112c0565b6001600160a01b03165f9081526020819052604090205490565b60055460ff16610260565b61037b610368366004611303565b6005805460ff1916911515919091179055565b005b61020961038b3660046112d9565b6106c3565b61022d61070f565b6102606103a636600461125e565b61071e565b6102096103b936600461122c565b61072b565b6102096103cc366004611322565b610737565b6102096103df366004611322565b61078d565b6102096103f23660046112c0565b6107da565b61020961040536600461122c565b6107f7565b61037b61041836600461122c565b610802565b61020960095481565b6102096104343660046112c0565b6108f3565b61037b61044736600461135b565b610919565b61020961045a3660046112c0565b610998565b61020961046d36600461137a565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6102096109be565b5f7f00000000000000000000000000000000000000000000000000000000000000006040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015610505573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061052991906113a2565b905090565b60606003805461053d906113b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610569906113b9565b80156105b45780601f1061058b576101008083540402835291602001916105b4565b820191905f5260205f20905b81548152906001019060200180831161059757829003601f168201915b5050505050905090565b5f6105c9825f6109cd565b92915050565b5f336105dc818585610a05565b5060019392505050565b5f6105c9826001610a17565b5f336105ff858285610a46565b61060a858585610aaf565b60019150505b9392505050565b5f610529817f0000000000000000000000000000000000000000000000000000000000000000611405565b5f61064f60635f1961141e565b6006541461065f576006546105c9565b5f196105c9565b5f5f61067183610642565b9050808411156106a357828482604051633c8097d960e11b815260040161069a93929190611431565b60405180910390fd5b5f6106ad856107f7565b90506106bb33858784610b0c565b949350505050565b5f5f6106ce836107da565b9050808411156106f75782848260405163284ff66760e01b815260040161069a93929190611431565b5f6107018561072b565b90506106bb33858388610b0c565b60606004805461053d906113b9565b5f336105dc818585610aaf565b5f6105c98260016109cd565b5f5f610742836108f3565b90508085111561076b57828582604051633fa733bb60e21b815260040161069a93929190611431565b5f610775866105e6565b90506107843386868985610b61565b95945050505050565b5f5f61079883610998565b9050808511156107c157828582604051632e52afbb60e21b815260040161069a93929190611431565b5f6107cb866105be565b9050610784338686848a610b61565b5f6107e760635f1961141e565b6007541461065f576007546105c9565b5f6105c9825f610a17565b5f811315610889576040516340c10f1960e01b8152306004820152602481018290526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340c10f19906044015b5f604051808303815f87803b158015610870575f5ffd5b505af1158015610882573d5f5f3e3d5ffd5b5050505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316639dc29fac306108c284611452565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401610859565b5f61090060635f1961141e565b60085414610910576008546105c9565b6105c982610bb7565b5f82600381111561092c5761092c61146c565b036109375760068190555b600182600381111561094b5761094b61146c565b036109565760078190555b600282600381111561096a5761096a61146c565b036109755760088190555b60038260038111156109895761098961146c565b036109945760098190555b5050565b5f6109a560635f1961141e565b600954146109b5576009546105c9565b6105c982610bc4565b6109ca60635f1961141e565b81565b5f6106106109d961049f565b6109e4906001611480565b6109ef5f600a611576565b6002546109fc9190611480565b85919085610be1565b610a128383836001610c23565b505050565b5f610610610a2682600a611576565b600254610a339190611480565b610a3b61049f565b6109fc906001611480565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610aa95781811015610a9b57828183604051637dc7a0d960e11b815260040161069a93929190611431565b610aa984848484035f610c23565b50505050565b6001600160a01b038316610ad857604051634b637e8f60e11b81525f600482015260240161069a565b6001600160a01b038216610b015760405163ec442f0560e01b81525f600482015260240161069a565b610a12838383610cf5565b60055460ff1615610b2060045f3681611584565b610b29916115ab565b90610b54576040516340c2fd5360e11b81526001600160e01b0319909116600482015260240161069a565b50610aa984848484610e08565b60055460ff1615610b7560045f3681611584565b610b7e916115ab565b90610ba9576040516340c2fd5360e11b81526001600160e01b0319909116600482015260240161069a565b506108828585858585610e8c565b5f6105c961024883610998565b6001600160a01b0381165f908152602081905260408120546105c9565b5f610c0e610bee83610f4c565b8015610c0957505f8480610c0457610c046115e3565b868809115b151590565b610c19868686610f78565b6107849190611480565b6001600160a01b038416610c4c5760405163e602df0560e01b81525f600482015260240161069a565b6001600160a01b038316610c7557604051634a1406b160e11b81525f600482015260240161069a565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610aa957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ce791815260200190565b60405180910390a350505050565b6001600160a01b038316610d1f578060025f828254610d149190611480565b90915550610d7c9050565b6001600160a01b0383165f9081526020819052604090205481811015610d5e5783818360405163391434e360e21b815260040161069a93929190611431565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610d9857600280548290039055610db6565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dfb91815260200190565b60405180910390a3505050565b610e347f0000000000000000000000000000000000000000000000000000000000000000853085611028565b610e3e838261105e565b826001600160a01b0316846001600160a01b03167fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d78484604051610ce7929190918252602082015260400190565b826001600160a01b0316856001600160a01b031614610eb057610eb0838683610a46565b610eba8382611092565b610ee57f000000000000000000000000000000000000000000000000000000000000000085846110c6565b826001600160a01b0316846001600160a01b0316866001600160a01b03167ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db8585604051610f3d929190918252602082015260400190565b60405180910390a45050505050565b5f6002826003811115610f6157610f6161146c565b610f6b91906115f7565b60ff166001149050919050565b5f5f5f610f8586866110fb565b91509150815f03610fa957838181610f9f57610f9f6115e3565b0492505050610610565b818411610fc057610fc06003851502601118611117565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b611036848484846001611128565b610aa957604051635274afe760e01b81526001600160a01b038516600482015260240161069a565b6001600160a01b0382166110875760405163ec442f0560e01b81525f600482015260240161069a565b6109945f8383610cf5565b6001600160a01b0382166110bb57604051634b637e8f60e11b81525f600482015260240161069a565b610994825f83610cf5565b6110d38383836001611195565b610a1257604051635274afe760e01b81526001600160a01b038416600482015260240161069a565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f51148316611184578383151615611178573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f511483166111eb5783831516156111df573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f6020828403121561123c575f5ffd5b5035919050565b80356001600160a01b0381168114611259575f5ffd5b919050565b5f5f6040838503121561126f575f5ffd5b61127883611243565b946020939093013593505050565b5f5f5f60608486031215611298575f5ffd5b6112a184611243565b92506112af60208501611243565b929592945050506040919091013590565b5f602082840312156112d0575f5ffd5b61061082611243565b5f5f604083850312156112ea575f5ffd5b823591506112fa60208401611243565b90509250929050565b5f60208284031215611313575f5ffd5b81358015158114610610575f5ffd5b5f5f5f60608486031215611334575f5ffd5b8335925061134460208501611243565b915061135260408501611243565b90509250925092565b5f5f6040838503121561136c575f5ffd5b823560048110611278575f5ffd5b5f5f6040838503121561138b575f5ffd5b61139483611243565b91506112fa60208401611243565b5f602082840312156113b2575f5ffd5b5051919050565b600181811c908216806113cd57607f821691505b6020821081036113eb57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b60ff81811683821601908111156105c9576105c96113f1565b818103818111156105c9576105c96113f1565b6001600160a01b039390931683526020830191909152604082015260600190565b5f600160ff1b8201611466576114666113f1565b505f0390565b634e487b7160e01b5f52602160045260245ffd5b808201808211156105c9576105c96113f1565b6001815b60018411156114ce578085048111156114b2576114b26113f1565b60018416156114c057908102905b60019390931c928002611497565b935093915050565b5f826114e4575060016105c9565b816114f057505f6105c9565b816001811461150657600281146115105761152c565b60019150506105c9565b60ff841115611521576115216113f1565b50506001821b6105c9565b5060208310610133831016604e8410600b841016171561154f575081810a6105c9565b61155b5f198484611493565b805f190482111561156e5761156e6113f1565b029392505050565b5f61061060ff8416836114d6565b5f5f85851115611592575f5ffd5b8386111561159e575f5ffd5b5050820193919092039150565b80356001600160e01b031981169060048410156115dc576001600160e01b0319600485900360031b81901b82161691505b5092915050565b634e487b7160e01b5f52601260045260245ffd5b5f60ff83168061161557634e487b7160e01b5f52601260045260245ffd5b8060ff8416069150509291505056fea264697066735822122041a239773b0c4f47712d5277cd163f3256eb28220d6a600a22cf02fd0bf1a59064736f6c634300081e0033","opcodes":"PUSH1 0xC0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x1A80 CODESIZE SUB DUP1 PUSH2 0x1A80 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2E SWAP2 PUSH2 0x1FA JUMP JUMPDEST DUP1 DUP4 DUP4 PUSH1 0x3 PUSH2 0x3D DUP4 DUP3 PUSH2 0x303 JUMP JUMPDEST POP PUSH1 0x4 PUSH2 0x4A DUP3 DUP3 PUSH2 0x303 JUMP JUMPDEST POP POP POP PUSH0 PUSH0 PUSH2 0x5E DUP4 PUSH2 0xAB PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x6E JUMPI PUSH1 0x12 PUSH2 0x70 JUMP JUMPDEST DUP1 JUMPDEST PUSH1 0xFF AND PUSH1 0xA0 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 MSTORE PUSH2 0x90 PUSH1 0x63 PUSH0 NOT PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x6 DUP2 SWAP1 SSTORE PUSH1 0x7 DUP2 SWAP1 SSTORE PUSH1 0x8 DUP2 SWAP1 SSTORE PUSH1 0x9 SSTORE POP PUSH2 0x3E2 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0xB7 PUSH1 0x40 MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x4 DUP2 MSTORE PUSH1 0x24 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 DUP2 AND PUSH4 0x313CE567 PUSH1 0xE0 SHL OR SWAP1 SWAP2 MSTORE SWAP2 SWAP3 POP PUSH0 SWAP2 DUP3 SWAP2 PUSH2 0xF7 SWAP2 DUP9 SWAP2 SWAP1 PUSH2 0x13C AND JUMP JUMPDEST POP SWAP1 SWAP3 POP SWAP1 POP PUSH2 0x106 DUP4 PUSH1 0x40 MSTORE JUMP JUMPDEST DUP2 DUP1 ISZERO PUSH2 0x114 JUMPI POP PUSH1 0x20 RETURNDATASIZE LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x121 JUMPI POP PUSH1 0xFF DUP2 GT ISZERO JUMPDEST PUSH2 0x12C JUMPI PUSH0 PUSH0 PUSH2 0x130 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST SWAP5 POP SWAP5 POP POP POP POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 PUSH0 DUP6 MLOAD PUSH1 0x20 DUP8 ADD DUP9 GAS STATICCALL SWAP3 POP PUSH0 MLOAD SWAP2 POP PUSH1 0x20 MLOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x180 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x199 JUMPI PUSH2 0x199 PUSH2 0x15D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C7 JUMPI PUSH2 0x1C7 PUSH2 0x15D JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP4 DUP3 ADD PUSH1 0x20 ADD DUP6 LT ISZERO PUSH2 0x1DE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP6 ADD PUSH1 0x20 DUP4 ADD MCOPY PUSH0 SWAP2 DUP2 ADD PUSH1 0x20 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x20C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x221 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x22D DUP7 DUP3 DUP8 ADD PUSH2 0x171 JUMP JUMPDEST PUSH1 0x20 DUP7 ADD MLOAD SWAP1 SWAP5 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x24A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x256 DUP7 DUP3 DUP8 ADD PUSH2 0x171 JUMP JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD SWAP1 SWAP4 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x274 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x293 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x2B1 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x2FE JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x2DC JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2FB JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x2E8 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x31C JUMPI PUSH2 0x31C PUSH2 0x15D JUMP JUMPDEST PUSH2 0x330 DUP2 PUSH2 0x32A DUP5 SLOAD PUSH2 0x27F JUMP JUMPDEST DUP5 PUSH2 0x2B7 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x362 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x34B JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x2FB JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x391 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x371 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x3AE JUMPI DUP7 DUP5 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x3DC JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH2 0x165A PUSH2 0x426 PUSH0 CODECOPY PUSH0 PUSH2 0x61E ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x2CE ADD MSTORE DUP2 DUP2 PUSH2 0x4A2 ADD MSTORE DUP2 DUP2 PUSH2 0x82E ADD MSTORE DUP2 DUP2 PUSH2 0x88B ADD MSTORE DUP2 DUP2 PUSH2 0xE0D ADD MSTORE PUSH2 0xEBF ADD MSTORE PUSH2 0x165A PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1FD JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x86DE9E4F GT PUSH2 0x114 JUMPI DUP1 PUSH4 0xC6E6F592 GT PUSH2 0xA9 JUMPI DUP1 PUSH4 0xD6DD0234 GT PUSH2 0x79 JUMPI DUP1 PUSH4 0xD6DD0234 EQ PUSH2 0x439 JUMPI DUP1 PUSH4 0xD905777E EQ PUSH2 0x44C JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x45F JUMPI DUP1 PUSH4 0xEF8B30F7 EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0xF3C0B892 EQ PUSH2 0x497 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC6E6F592 EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0xC7361ED2 EQ PUSH2 0x40A JUMPI DUP1 PUSH4 0xCC7FCC60 EQ PUSH2 0x41D JUMPI DUP1 PUSH4 0xCE96CB77 EQ PUSH2 0x426 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB3D7F6B9 GT PUSH2 0xE4 JUMPI DUP1 PUSH4 0xB3D7F6B9 EQ PUSH2 0x3AB JUMPI DUP1 PUSH4 0xB460AF94 EQ PUSH2 0x3BE JUMPI DUP1 PUSH4 0xBA087652 EQ PUSH2 0x3D1 JUMPI DUP1 PUSH4 0xC63D75B6 EQ PUSH2 0x3E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x86DE9E4F EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0x94BF804D EQ PUSH2 0x37D JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x390 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x398 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0x195 JUMPI DUP1 PUSH4 0x402D267D GT PUSH2 0x165 JUMPI DUP1 PUSH4 0x402D267D EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x23A JUMPI DUP1 PUSH4 0x6E553F65 EQ PUSH2 0x314 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x327 JUMPI DUP1 PUSH4 0x7FB1AD62 EQ PUSH2 0x34F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 EQ PUSH2 0x29E JUMPI DUP1 PUSH4 0x38359018 EQ PUSH2 0x2B8 JUMPI DUP1 PUSH4 0x38D52E0F EQ PUSH2 0x2C1 JUMPI DUP1 PUSH4 0x39D88AFF EQ PUSH2 0x2F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x1D0 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0xA28A477 EQ PUSH2 0x270 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x283 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x28B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1E1D114 EQ PUSH2 0x201 JUMPI DUP1 PUSH4 0x34548CD EQ PUSH2 0x21C JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0x7A2D13A EQ PUSH2 0x23A JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x209 PUSH2 0x49F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x209 PUSH1 0x7 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22D PUSH2 0x52E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x213 SWAP2 SWAP1 PUSH2 0x11F7 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x248 CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x5BE JUMP JUMPDEST PUSH2 0x260 PUSH2 0x25B CALLDATASIZE PUSH1 0x4 PUSH2 0x125E JUMP JUMPDEST PUSH2 0x5CF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x27E CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x5E6 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x209 JUMP JUMPDEST PUSH2 0x260 PUSH2 0x299 CALLDATASIZE PUSH1 0x4 PUSH2 0x1286 JUMP JUMPDEST PUSH2 0x5F2 JUMP JUMPDEST PUSH2 0x2A6 PUSH2 0x617 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x30F CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH2 0x642 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x322 CALLDATASIZE PUSH1 0x4 PUSH2 0x12D9 JUMP JUMPDEST PUSH2 0x666 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x335 CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND PUSH2 0x260 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x368 CALLDATASIZE PUSH1 0x4 PUSH2 0x1303 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x209 PUSH2 0x38B CALLDATASIZE PUSH1 0x4 PUSH2 0x12D9 JUMP JUMPDEST PUSH2 0x6C3 JUMP JUMPDEST PUSH2 0x22D PUSH2 0x70F JUMP JUMPDEST PUSH2 0x260 PUSH2 0x3A6 CALLDATASIZE PUSH1 0x4 PUSH2 0x125E JUMP JUMPDEST PUSH2 0x71E JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3B9 CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x72B JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3CC CALLDATASIZE PUSH1 0x4 PUSH2 0x1322 JUMP JUMPDEST PUSH2 0x737 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3DF CALLDATASIZE PUSH1 0x4 PUSH2 0x1322 JUMP JUMPDEST PUSH2 0x78D JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3F2 CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH2 0x7DA JUMP JUMPDEST PUSH2 0x209 PUSH2 0x405 CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x7F7 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x418 CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x802 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x434 CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH2 0x8F3 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x447 CALLDATASIZE PUSH1 0x4 PUSH2 0x135B JUMP JUMPDEST PUSH2 0x919 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x45A CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH2 0x998 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x46D CALLDATASIZE PUSH1 0x4 PUSH2 0x137A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x9BE JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x505 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x529 SWAP2 SWAP1 PUSH2 0x13A2 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x53D SWAP1 PUSH2 0x13B9 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x569 SWAP1 PUSH2 0x13B9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5B4 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x58B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5B4 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x597 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x5C9 DUP3 PUSH0 PUSH2 0x9CD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5DC DUP2 DUP6 DUP6 PUSH2 0xA05 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x5C9 DUP3 PUSH1 0x1 PUSH2 0xA17 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5FF DUP6 DUP3 DUP6 PUSH2 0xA46 JUMP JUMPDEST PUSH2 0x60A DUP6 DUP6 DUP6 PUSH2 0xAAF JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x529 DUP2 PUSH32 0x0 PUSH2 0x1405 JUMP JUMPDEST PUSH0 PUSH2 0x64F PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST PUSH1 0x6 SLOAD EQ PUSH2 0x65F JUMPI PUSH1 0x6 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH0 NOT PUSH2 0x5C9 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x671 DUP4 PUSH2 0x642 JUMP JUMPDEST SWAP1 POP DUP1 DUP5 GT ISZERO PUSH2 0x6A3 JUMPI DUP3 DUP5 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3C8097D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x6AD DUP6 PUSH2 0x7F7 JUMP JUMPDEST SWAP1 POP PUSH2 0x6BB CALLER DUP6 DUP8 DUP5 PUSH2 0xB0C JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x6CE DUP4 PUSH2 0x7DA JUMP JUMPDEST SWAP1 POP DUP1 DUP5 GT ISZERO PUSH2 0x6F7 JUMPI DUP3 DUP5 DUP3 PUSH1 0x40 MLOAD PUSH4 0x284FF667 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH0 PUSH2 0x701 DUP6 PUSH2 0x72B JUMP JUMPDEST SWAP1 POP PUSH2 0x6BB CALLER DUP6 DUP4 DUP9 PUSH2 0xB0C JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x53D SWAP1 PUSH2 0x13B9 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5DC DUP2 DUP6 DUP6 PUSH2 0xAAF JUMP JUMPDEST PUSH0 PUSH2 0x5C9 DUP3 PUSH1 0x1 PUSH2 0x9CD JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x742 DUP4 PUSH2 0x8F3 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x76B JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3FA733BB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH0 PUSH2 0x775 DUP7 PUSH2 0x5E6 JUMP JUMPDEST SWAP1 POP PUSH2 0x784 CALLER DUP7 DUP7 DUP10 DUP6 PUSH2 0xB61 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x798 DUP4 PUSH2 0x998 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x7C1 JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x2E52AFBB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH0 PUSH2 0x7CB DUP7 PUSH2 0x5BE JUMP JUMPDEST SWAP1 POP PUSH2 0x784 CALLER DUP7 DUP7 DUP5 DUP11 PUSH2 0xB61 JUMP JUMPDEST PUSH0 PUSH2 0x7E7 PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST PUSH1 0x7 SLOAD EQ PUSH2 0x65F JUMPI PUSH1 0x7 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH0 PUSH2 0x5C9 DUP3 PUSH0 PUSH2 0xA17 JUMP JUMPDEST PUSH0 DUP2 SGT ISZERO PUSH2 0x889 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C10F19 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x40C10F19 SWAP1 PUSH1 0x44 ADD JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x870 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x882 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x9DC29FAC ADDRESS PUSH2 0x8C2 DUP5 PUSH2 0x1452 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x859 JUMP JUMPDEST PUSH0 PUSH2 0x900 PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST PUSH1 0x8 SLOAD EQ PUSH2 0x910 JUMPI PUSH1 0x8 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH2 0x5C9 DUP3 PUSH2 0xBB7 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x92C JUMPI PUSH2 0x92C PUSH2 0x146C JUMP JUMPDEST SUB PUSH2 0x937 JUMPI PUSH1 0x6 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x94B JUMPI PUSH2 0x94B PUSH2 0x146C JUMP JUMPDEST SUB PUSH2 0x956 JUMPI PUSH1 0x7 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x96A JUMPI PUSH2 0x96A PUSH2 0x146C JUMP JUMPDEST SUB PUSH2 0x975 JUMPI PUSH1 0x8 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x989 JUMPI PUSH2 0x989 PUSH2 0x146C JUMP JUMPDEST SUB PUSH2 0x994 JUMPI PUSH1 0x9 DUP2 SWAP1 SSTORE JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x9A5 PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST PUSH1 0x9 SLOAD EQ PUSH2 0x9B5 JUMPI PUSH1 0x9 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH2 0x5C9 DUP3 PUSH2 0xBC4 JUMP JUMPDEST PUSH2 0x9CA PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST DUP2 JUMP JUMPDEST PUSH0 PUSH2 0x610 PUSH2 0x9D9 PUSH2 0x49F JUMP JUMPDEST PUSH2 0x9E4 SWAP1 PUSH1 0x1 PUSH2 0x1480 JUMP JUMPDEST PUSH2 0x9EF PUSH0 PUSH1 0xA PUSH2 0x1576 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x9FC SWAP2 SWAP1 PUSH2 0x1480 JUMP JUMPDEST DUP6 SWAP2 SWAP1 DUP6 PUSH2 0xBE1 JUMP JUMPDEST PUSH2 0xA12 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0xC23 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x610 PUSH2 0xA26 DUP3 PUSH1 0xA PUSH2 0x1576 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0xA33 SWAP2 SWAP1 PUSH2 0x1480 JUMP JUMPDEST PUSH2 0xA3B PUSH2 0x49F JUMP JUMPDEST PUSH2 0x9FC SWAP1 PUSH1 0x1 PUSH2 0x1480 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH0 NOT DUP2 LT ISZERO PUSH2 0xAA9 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xA9B JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH2 0xAA9 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0xC23 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xAD8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xB01 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH2 0xA12 DUP4 DUP4 DUP4 PUSH2 0xCF5 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0xB20 PUSH1 0x4 PUSH0 CALLDATASIZE DUP2 PUSH2 0x1584 JUMP JUMPDEST PUSH2 0xB29 SWAP2 PUSH2 0x15AB JUMP JUMPDEST SWAP1 PUSH2 0xB54 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C2FD53 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST POP PUSH2 0xAA9 DUP5 DUP5 DUP5 DUP5 PUSH2 0xE08 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0xB75 PUSH1 0x4 PUSH0 CALLDATASIZE DUP2 PUSH2 0x1584 JUMP JUMPDEST PUSH2 0xB7E SWAP2 PUSH2 0x15AB JUMP JUMPDEST SWAP1 PUSH2 0xBA9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C2FD53 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST POP PUSH2 0x882 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0xE8C JUMP JUMPDEST PUSH0 PUSH2 0x5C9 PUSH2 0x248 DUP4 PUSH2 0x998 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH0 PUSH2 0xC0E PUSH2 0xBEE DUP4 PUSH2 0xF4C JUMP JUMPDEST DUP1 ISZERO PUSH2 0xC09 JUMPI POP PUSH0 DUP5 DUP1 PUSH2 0xC04 JUMPI PUSH2 0xC04 PUSH2 0x15E3 JUMP JUMPDEST DUP7 DUP9 MULMOD GT JUMPDEST ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH2 0xC19 DUP7 DUP7 DUP7 PUSH2 0xF78 JUMP JUMPDEST PUSH2 0x784 SWAP2 SWAP1 PUSH2 0x1480 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0xC4C JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xC75 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0xAA9 JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0xCE7 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xD1F JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xD14 SWAP2 SWAP1 PUSH2 0x1480 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0xD7C SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xD5E JUMPI DUP4 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xD98 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0xDB6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xDFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0xE34 PUSH32 0x0 DUP6 ADDRESS DUP6 PUSH2 0x1028 JUMP JUMPDEST PUSH2 0xE3E DUP4 DUP3 PUSH2 0x105E JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDCBC1C05240F31FF3AD067EF1EE35CE4997762752E3A095284754544F4C709D7 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0xCE7 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xEB0 JUMPI PUSH2 0xEB0 DUP4 DUP7 DUP4 PUSH2 0xA46 JUMP JUMPDEST PUSH2 0xEBA DUP4 DUP3 PUSH2 0x1092 JUMP JUMPDEST PUSH2 0xEE5 PUSH32 0x0 DUP6 DUP5 PUSH2 0x10C6 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFBDE797D201C681B91056529119E0B02407C7BB96A4A2C75C01FC9667232C8DB DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0xF3D SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xF61 JUMPI PUSH2 0xF61 PUSH2 0x146C JUMP JUMPDEST PUSH2 0xF6B SWAP2 SWAP1 PUSH2 0x15F7 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x1 EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0xF85 DUP7 DUP7 PUSH2 0x10FB JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0xFA9 JUMPI DUP4 DUP2 DUP2 PUSH2 0xF9F JUMPI PUSH2 0xF9F PUSH2 0x15E3 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x610 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0xFC0 JUMPI PUSH2 0xFC0 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x1117 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1036 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x1128 JUMP JUMPDEST PUSH2 0xAA9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1087 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH2 0x994 PUSH0 DUP4 DUP4 PUSH2 0xCF5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x10BB JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH2 0x994 DUP3 PUSH0 DUP4 PUSH2 0xCF5 JUMP JUMPDEST PUSH2 0x10D3 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x1195 JUMP JUMPDEST PUSH2 0xA12 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x1184 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x1178 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x11EB JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x11DF JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x123C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1259 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x126F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1278 DUP4 PUSH2 0x1243 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1298 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x12A1 DUP5 PUSH2 0x1243 JUMP JUMPDEST SWAP3 POP PUSH2 0x12AF PUSH1 0x20 DUP6 ADD PUSH2 0x1243 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x12D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x610 DUP3 PUSH2 0x1243 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x12EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x12FA PUSH1 0x20 DUP5 ADD PUSH2 0x1243 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1313 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x610 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1334 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH2 0x1344 PUSH1 0x20 DUP6 ADD PUSH2 0x1243 JUMP JUMPDEST SWAP2 POP PUSH2 0x1352 PUSH1 0x40 DUP6 ADD PUSH2 0x1243 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x136C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x4 DUP2 LT PUSH2 0x1278 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x138B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1394 DUP4 PUSH2 0x1243 JUMP JUMPDEST SWAP2 POP PUSH2 0x12FA PUSH1 0x20 DUP5 ADD PUSH2 0x1243 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x13B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x13CD JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x13EB JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0xFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x5C9 JUMPI PUSH2 0x5C9 PUSH2 0x13F1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x5C9 JUMPI PUSH2 0x5C9 PUSH2 0x13F1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x1466 JUMPI PUSH2 0x1466 PUSH2 0x13F1 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x5C9 JUMPI PUSH2 0x5C9 PUSH2 0x13F1 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x14CE JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x14B2 JUMPI PUSH2 0x14B2 PUSH2 0x13F1 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x14C0 JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x1497 JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x14E4 JUMPI POP PUSH1 0x1 PUSH2 0x5C9 JUMP JUMPDEST DUP2 PUSH2 0x14F0 JUMPI POP PUSH0 PUSH2 0x5C9 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x1506 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x1510 JUMPI PUSH2 0x152C JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x5C9 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x1521 JUMPI PUSH2 0x1521 PUSH2 0x13F1 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x5C9 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x154F JUMPI POP DUP2 DUP2 EXP PUSH2 0x5C9 JUMP JUMPDEST PUSH2 0x155B PUSH0 NOT DUP5 DUP5 PUSH2 0x1493 JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x156E JUMPI PUSH2 0x156E PUSH2 0x13F1 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x610 PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x14D6 JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x1592 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x159E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x15DC JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x1615 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 PUSH1 0xFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 COINBASE LOG2 CODECOPY PUSH24 0x3B0C4F47712D5277CD163F3256EB28220D6A600A22CF02FD SIGNEXTEND CALL 0xA5 SWAP1 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"462:2711:6:-:0;;;953:223;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1062:6;1038:5;1045:7;1648:5:34;:13;1038:5:6;1648::34;:13;:::i;:::-;-1:-1:-1;1671:7:34;:17;1681:7;1671;:17;:::i;:::-;;1582:113;;5565:12:37;5579:19;5602:28;5623:6;5602:20;;;:28;;:::i;:::-;5564:66;;;;5662:7;:28;;5688:2;5662:28;;;5672:13;5662:28;5640:50;;;;-1:-1:-1;;;;;;;5700:15:37;;;711:22:6::2;731:2;-1:-1:-1::0;;711:22:6::2;:::i;:::-;1136:18;:35:::0;;;1118:15:::2;:53:::0;;;1096:19:::2;:75:::0;;;1076:17:::2;:95:::0;-1:-1:-1;462:2711:6;;-1:-1:-1;;462:2711:6;5865:607:37;5932:7;;;5993:29;1025:4:50;1019:11;;895:151;5993:29:37;6156:43;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6156:43:37;;;-1:-1:-1;;;6156:43:37;;;;5972:50;;-1:-1:-1;6033:12:37;;;;6077:132;;6135:6;;6156:43;6077:36;:132;:::i;:::-;-1:-1:-1;6032:177:37;;-1:-1:-1;6032:177:37;-1:-1:-1;6219:32:37;6247:3;1311:4:50;1304:17;1198:139;6219:32:37;6282:7;:46;;;;-1:-1:-1;6326:2:37;4583:16:49;6293:35:37;;6282:46;:94;;;;-1:-1:-1;6361:15:37;6332:44;;;6282:94;6281:184;;6456:5;6463:1;6281:184;;;6397:4;6417:16;6281:184;6262:203;;;;;;;5865:607;;;:::o;2893:374:49:-;3006:12;3020:15;3037;3176:4;3170;3163;3157:11;3150:4;3144;3140:15;3132:6;3125:5;3114:67;3103:78;;3211:4;3205:11;3194:22;;3246:4;3240:11;3229:22;;2893:374;;;;;:::o;14:127:101:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:723;200:5;253:3;246:4;238:6;234:17;230:27;220:55;;271:1;268;261:12;220:55;298:13;;-1:-1:-1;;;;;323:30:101;;320:56;;;356:18;;:::i;:::-;405:2;399:9;497:2;459:17;;-1:-1:-1;;455:31:101;;;488:2;451:40;447:54;435:67;;-1:-1:-1;;;;;517:34:101;;553:22;;;514:62;511:88;;;579:18;;:::i;:::-;615:2;608:22;639;;;680:19;;;701:4;676:30;673:39;-1:-1:-1;670:59:101;;;725:1;722;715:12;670:59;782:6;775:4;767:6;763:17;756:4;748:6;744:17;738:51;837:1;809:19;;;830:4;805:30;798:41;;;;813:6;146:723;-1:-1:-1;;;146:723:101:o;874:747::-;1005:6;1013;1021;1074:2;1062:9;1053:7;1049:23;1045:32;1042:52;;;1090:1;1087;1080:12;1042:52;1117:16;;-1:-1:-1;;;;;1145:30:101;;1142:50;;;1188:1;1185;1178:12;1142:50;1211:61;1264:7;1255:6;1244:9;1240:22;1211:61;:::i;:::-;1318:2;1303:18;;1297:25;1201:71;;-1:-1:-1;1297:25:101;-1:-1:-1;;;;;;1334:32:101;;1331:52;;;1379:1;1376;1369:12;1331:52;1402:63;1457:7;1446:8;1435:9;1431:24;1402:63;:::i;:::-;1508:2;1493:18;;1487:25;1392:73;;-1:-1:-1;1487:25:101;-1:-1:-1;;;;;;1541:31:101;;1531:42;;1521:70;;1587:1;1584;1577:12;1521:70;1610:5;1600:15;;;874:747;;;;;:::o;1626:380::-;1705:1;1701:12;;;;1748;;;1769:61;;1823:4;1815:6;1811:17;1801:27;;1769:61;1876:2;1868:6;1865:14;1845:18;1842:38;1839:161;;1922:10;1917:3;1913:20;1910:1;1903:31;1957:4;1954:1;1947:15;1985:4;1982:1;1975:15;1839:161;;1626:380;;;:::o;2137:518::-;2239:2;2234:3;2231:11;2228:421;;;2275:5;2272:1;2265:16;2319:4;2316:1;2306:18;2389:2;2377:10;2373:19;2370:1;2366:27;2360:4;2356:38;2425:4;2413:10;2410:20;2407:47;;;-1:-1:-1;2448:4:101;2407:47;2503:2;2498:3;2494:12;2491:1;2487:20;2481:4;2477:31;2467:41;;2558:81;2576:2;2569:5;2566:13;2558:81;;;2635:1;2621:16;;2602:1;2591:13;2558:81;;;2562:3;;2228:421;2137:518;;;:::o;2831:1299::-;2951:10;;-1:-1:-1;;;;;2973:30:101;;2970:56;;;3006:18;;:::i;:::-;3035:97;3125:6;3085:38;3117:4;3111:11;3085:38;:::i;:::-;3079:4;3035:97;:::i;:::-;3181:4;3212:2;3201:14;;3229:1;3224:649;;;;3917:1;3934:6;3931:89;;;-1:-1:-1;3986:19:101;;;3980:26;3931:89;-1:-1:-1;;2788:1:101;2784:11;;;2780:24;2776:29;2766:40;2812:1;2808:11;;;2763:57;4033:81;;3194:930;;3224:649;2084:1;2077:14;;;2121:4;2108:18;;-1:-1:-1;;3260:20:101;;;3378:222;3392:7;3389:1;3386:14;3378:222;;;3474:19;;;3468:26;3453:42;;3581:4;3566:20;;;;3534:1;3522:14;;;;3408:12;3378:222;;;3382:3;3628:6;3619:7;3616:19;3613:201;;;3689:19;;;3683:26;-1:-1:-1;;3772:1:101;3768:14;;;3784:3;3764:24;3760:37;3756:42;3741:58;3726:74;;3613:201;-1:-1:-1;;;;3860:1:101;3844:14;;;3840:22;3827:36;;-1:-1:-1;2831:1299:101:o;4135:225::-;4202:9;;;4223:11;;;4220:134;;;4276:10;4271:3;4267:20;4264:1;4257:31;4311:4;4308:1;4301:15;4339:4;4336:1;4329:15;4220:134;4135:225;;;;:::o;:::-;462:2711:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@OVERRIDE_UNSET_708":{"entryPoint":2494,"id":708,"parameterSlots":0,"returnSlots":0},"@_approve_7790":{"entryPoint":2565,"id":7790,"parameterSlots":3,"returnSlots":0},"@_approve_7850":{"entryPoint":3107,"id":7850,"parameterSlots":4,"returnSlots":0},"@_burn_7772":{"entryPoint":4242,"id":7772,"parameterSlots":2,"returnSlots":0},"@_convertToAssets_8738":{"entryPoint":2509,"id":8738,"parameterSlots":2,"returnSlots":1},"@_convertToShares_8710":{"entryPoint":2583,"id":8710,"parameterSlots":2,"returnSlots":1},"@_decimalsOffset_8836":{"entryPoint":null,"id":8836,"parameterSlots":0,"returnSlots":1},"@_deposit_788":{"entryPoint":2828,"id":788,"parameterSlots":4,"returnSlots":0},"@_deposit_8778":{"entryPoint":3592,"id":8778,"parameterSlots":4,"returnSlots":0},"@_mint_7739":{"entryPoint":4190,"id":7739,"parameterSlots":2,"returnSlots":0},"@_msgSender_10709":{"entryPoint":null,"id":10709,"parameterSlots":0,"returnSlots":1},"@_safeTransferFrom_9330":{"entryPoint":4392,"id":9330,"parameterSlots":5,"returnSlots":1},"@_safeTransfer_9305":{"entryPoint":4501,"id":9305,"parameterSlots":4,"returnSlots":1},"@_spendAllowance_7898":{"entryPoint":2630,"id":7898,"parameterSlots":3,"returnSlots":0},"@_transfer_7629":{"entryPoint":2735,"id":7629,"parameterSlots":3,"returnSlots":0},"@_update_7706":{"entryPoint":3317,"id":7706,"parameterSlots":3,"returnSlots":0},"@_withdraw_815":{"entryPoint":2913,"id":815,"parameterSlots":5,"returnSlots":0},"@_withdraw_8828":{"entryPoint":3724,"id":8828,"parameterSlots":5,"returnSlots":0},"@allowance_7526":{"entryPoint":null,"id":7526,"parameterSlots":2,"returnSlots":1},"@approve_7550":{"entryPoint":1487,"id":7550,"parameterSlots":2,"returnSlots":1},"@asset_8328":{"entryPoint":null,"id":8328,"parameterSlots":0,"returnSlots":1},"@balanceOf_7485":{"entryPoint":null,"id":7485,"parameterSlots":1,"returnSlots":1},"@broken_876":{"entryPoint":null,"id":876,"parameterSlots":0,"returnSlots":1},"@convertToAssets_8378":{"entryPoint":1470,"id":8378,"parameterSlots":1,"returnSlots":1},"@convertToShares_8362":{"entryPoint":2039,"id":8362,"parameterSlots":1,"returnSlots":1},"@decimals_8316":{"entryPoint":1559,"id":8316,"parameterSlots":0,"returnSlots":1},"@deposit_8544":{"entryPoint":1638,"id":8544,"parameterSlots":2,"returnSlots":1},"@discreteEarning_858":{"entryPoint":2050,"id":858,"parameterSlots":1,"returnSlots":0},"@maxDeposit_8393":{"entryPoint":null,"id":8393,"parameterSlots":1,"returnSlots":1},"@maxDeposit_895":{"entryPoint":1602,"id":895,"parameterSlots":1,"returnSlots":1},"@maxMint_8408":{"entryPoint":null,"id":8408,"parameterSlots":1,"returnSlots":1},"@maxMint_914":{"entryPoint":2010,"id":914,"parameterSlots":1,"returnSlots":1},"@maxRedeem_8436":{"entryPoint":3012,"id":8436,"parameterSlots":1,"returnSlots":1},"@maxRedeem_952":{"entryPoint":2456,"id":952,"parameterSlots":1,"returnSlots":1},"@maxWithdraw_8423":{"entryPoint":2999,"id":8423,"parameterSlots":1,"returnSlots":1},"@maxWithdraw_933":{"entryPoint":2291,"id":933,"parameterSlots":1,"returnSlots":1},"@mint_8588":{"entryPoint":1731,"id":8588,"parameterSlots":2,"returnSlots":1},"@mul512_14312":{"entryPoint":4347,"id":14312,"parameterSlots":2,"returnSlots":2},"@mulDiv_14799":{"entryPoint":3960,"id":14799,"parameterSlots":3,"returnSlots":1},"@mulDiv_14836":{"entryPoint":3041,"id":14836,"parameterSlots":4,"returnSlots":1},"@name_7445":{"entryPoint":1326,"id":7445,"parameterSlots":0,"returnSlots":1},"@overrideMaxDeposit_693":{"entryPoint":null,"id":693,"parameterSlots":0,"returnSlots":0},"@overrideMaxMint_695":{"entryPoint":null,"id":695,"parameterSlots":0,"returnSlots":0},"@overrideMaxRedeem_699":{"entryPoint":null,"id":699,"parameterSlots":0,"returnSlots":0},"@overrideMaxWithdraw_697":{"entryPoint":null,"id":697,"parameterSlots":0,"returnSlots":0},"@panic_11416":{"entryPoint":4375,"id":11416,"parameterSlots":1,"returnSlots":0},"@previewDeposit_8452":{"entryPoint":null,"id":8452,"parameterSlots":1,"returnSlots":1},"@previewMint_8468":{"entryPoint":1835,"id":8468,"parameterSlots":1,"returnSlots":1},"@previewRedeem_8500":{"entryPoint":null,"id":8500,"parameterSlots":1,"returnSlots":1},"@previewWithdraw_8484":{"entryPoint":1510,"id":8484,"parameterSlots":1,"returnSlots":1},"@redeem_8682":{"entryPoint":1933,"id":8682,"parameterSlots":3,"returnSlots":1},"@safeTransferFrom_8979":{"entryPoint":4136,"id":8979,"parameterSlots":4,"returnSlots":0},"@safeTransfer_8948":{"entryPoint":4294,"id":8948,"parameterSlots":3,"returnSlots":0},"@setBroken_868":{"entryPoint":null,"id":868,"parameterSlots":1,"returnSlots":0},"@setOverride_997":{"entryPoint":2329,"id":997,"parameterSlots":2,"returnSlots":0},"@symbol_7454":{"entryPoint":1807,"id":7454,"parameterSlots":0,"returnSlots":1},"@ternary_14561":{"entryPoint":null,"id":14561,"parameterSlots":3,"returnSlots":1},"@toUint_17678":{"entryPoint":null,"id":17678,"parameterSlots":1,"returnSlots":1},"@totalAssets_8346":{"entryPoint":1183,"id":8346,"parameterSlots":0,"returnSlots":1},"@totalSupply_7472":{"entryPoint":null,"id":7472,"parameterSlots":0,"returnSlots":1},"@transferFrom_7582":{"entryPoint":1522,"id":7582,"parameterSlots":3,"returnSlots":1},"@transfer_7509":{"entryPoint":1822,"id":7509,"parameterSlots":2,"returnSlots":1},"@unsignedRoundsUp_15892":{"entryPoint":3916,"id":15892,"parameterSlots":1,"returnSlots":1},"@withdraw_8635":{"entryPoint":1847,"id":8635,"parameterSlots":3,"returnSlots":1},"abi_decode_address":{"entryPoint":4675,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":4800,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":4986,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":4742,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":4702,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bool":{"entryPoint":4867,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_enum$_OverrideOption_$713t_uint256":{"entryPoint":4955,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_int256":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":4652,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":5026,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_address":{"entryPoint":4825,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_addresst_address":{"entryPoint":4898,"id":null,"parameterSlots":2,"returnSlots":3},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":5169,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4599,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":5508,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_uint256":{"entryPoint":5248,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint8":{"entryPoint":5125,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_helper":{"entryPoint":5267,"id":null,"parameterSlots":3,"returnSlots":2},"checked_exp_t_uint256_t_uint8":{"entryPoint":5494,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_unsigned":{"entryPoint":5334,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":5150,"id":null,"parameterSlots":2,"returnSlots":1},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4":{"entryPoint":5547,"id":null,"parameterSlots":2,"returnSlots":1},"extract_byte_array_length":{"entryPoint":5049,"id":null,"parameterSlots":1,"returnSlots":1},"mod_t_uint8":{"entryPoint":5623,"id":null,"parameterSlots":2,"returnSlots":1},"negate_t_int256":{"entryPoint":5202,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":5105,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":5603,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":5228,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:9285:101","nodeType":"YulBlock","src":"0:9285:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"115:76:101","nodeType":"YulBlock","src":"115:76:101","statements":[{"nativeSrc":"125:26:101","nodeType":"YulAssignment","src":"125:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"137:9:101","nodeType":"YulIdentifier","src":"137:9:101"},{"kind":"number","nativeSrc":"148:2:101","nodeType":"YulLiteral","src":"148:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"133:3:101","nodeType":"YulIdentifier","src":"133:3:101"},"nativeSrc":"133:18:101","nodeType":"YulFunctionCall","src":"133:18:101"},"variableNames":[{"name":"tail","nativeSrc":"125:4:101","nodeType":"YulIdentifier","src":"125:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"167:9:101","nodeType":"YulIdentifier","src":"167:9:101"},{"name":"value0","nativeSrc":"178:6:101","nodeType":"YulIdentifier","src":"178:6:101"}],"functionName":{"name":"mstore","nativeSrc":"160:6:101","nodeType":"YulIdentifier","src":"160:6:101"},"nativeSrc":"160:25:101","nodeType":"YulFunctionCall","src":"160:25:101"},"nativeSrc":"160:25:101","nodeType":"YulExpressionStatement","src":"160:25:101"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"14:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"84:9:101","nodeType":"YulTypedName","src":"84:9:101","type":""},{"name":"value0","nativeSrc":"95:6:101","nodeType":"YulTypedName","src":"95:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"106:4:101","nodeType":"YulTypedName","src":"106:4:101","type":""}],"src":"14:177:101"},{"body":{"nativeSrc":"317:297:101","nodeType":"YulBlock","src":"317:297:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"334:9:101","nodeType":"YulIdentifier","src":"334:9:101"},{"kind":"number","nativeSrc":"345:2:101","nodeType":"YulLiteral","src":"345:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"327:6:101","nodeType":"YulIdentifier","src":"327:6:101"},"nativeSrc":"327:21:101","nodeType":"YulFunctionCall","src":"327:21:101"},"nativeSrc":"327:21:101","nodeType":"YulExpressionStatement","src":"327:21:101"},{"nativeSrc":"357:27:101","nodeType":"YulVariableDeclaration","src":"357:27:101","value":{"arguments":[{"name":"value0","nativeSrc":"377:6:101","nodeType":"YulIdentifier","src":"377:6:101"}],"functionName":{"name":"mload","nativeSrc":"371:5:101","nodeType":"YulIdentifier","src":"371:5:101"},"nativeSrc":"371:13:101","nodeType":"YulFunctionCall","src":"371:13:101"},"variables":[{"name":"length","nativeSrc":"361:6:101","nodeType":"YulTypedName","src":"361:6:101","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"404:9:101","nodeType":"YulIdentifier","src":"404:9:101"},{"kind":"number","nativeSrc":"415:2:101","nodeType":"YulLiteral","src":"415:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"400:3:101","nodeType":"YulIdentifier","src":"400:3:101"},"nativeSrc":"400:18:101","nodeType":"YulFunctionCall","src":"400:18:101"},{"name":"length","nativeSrc":"420:6:101","nodeType":"YulIdentifier","src":"420:6:101"}],"functionName":{"name":"mstore","nativeSrc":"393:6:101","nodeType":"YulIdentifier","src":"393:6:101"},"nativeSrc":"393:34:101","nodeType":"YulFunctionCall","src":"393:34:101"},"nativeSrc":"393:34:101","nodeType":"YulExpressionStatement","src":"393:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"446:9:101","nodeType":"YulIdentifier","src":"446:9:101"},{"kind":"number","nativeSrc":"457:2:101","nodeType":"YulLiteral","src":"457:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"442:3:101","nodeType":"YulIdentifier","src":"442:3:101"},"nativeSrc":"442:18:101","nodeType":"YulFunctionCall","src":"442:18:101"},{"arguments":[{"name":"value0","nativeSrc":"466:6:101","nodeType":"YulIdentifier","src":"466:6:101"},{"kind":"number","nativeSrc":"474:2:101","nodeType":"YulLiteral","src":"474:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"462:3:101","nodeType":"YulIdentifier","src":"462:3:101"},"nativeSrc":"462:15:101","nodeType":"YulFunctionCall","src":"462:15:101"},{"name":"length","nativeSrc":"479:6:101","nodeType":"YulIdentifier","src":"479:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"436:5:101","nodeType":"YulIdentifier","src":"436:5:101"},"nativeSrc":"436:50:101","nodeType":"YulFunctionCall","src":"436:50:101"},"nativeSrc":"436:50:101","nodeType":"YulExpressionStatement","src":"436:50:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"510:9:101","nodeType":"YulIdentifier","src":"510:9:101"},{"name":"length","nativeSrc":"521:6:101","nodeType":"YulIdentifier","src":"521:6:101"}],"functionName":{"name":"add","nativeSrc":"506:3:101","nodeType":"YulIdentifier","src":"506:3:101"},"nativeSrc":"506:22:101","nodeType":"YulFunctionCall","src":"506:22:101"},{"kind":"number","nativeSrc":"530:2:101","nodeType":"YulLiteral","src":"530:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"502:3:101","nodeType":"YulIdentifier","src":"502:3:101"},"nativeSrc":"502:31:101","nodeType":"YulFunctionCall","src":"502:31:101"},{"kind":"number","nativeSrc":"535:1:101","nodeType":"YulLiteral","src":"535:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"495:6:101","nodeType":"YulIdentifier","src":"495:6:101"},"nativeSrc":"495:42:101","nodeType":"YulFunctionCall","src":"495:42:101"},"nativeSrc":"495:42:101","nodeType":"YulExpressionStatement","src":"495:42:101"},{"nativeSrc":"546:62:101","nodeType":"YulAssignment","src":"546:62:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"562:9:101","nodeType":"YulIdentifier","src":"562:9:101"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"581:6:101","nodeType":"YulIdentifier","src":"581:6:101"},{"kind":"number","nativeSrc":"589:2:101","nodeType":"YulLiteral","src":"589:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"577:3:101","nodeType":"YulIdentifier","src":"577:3:101"},"nativeSrc":"577:15:101","nodeType":"YulFunctionCall","src":"577:15:101"},{"arguments":[{"kind":"number","nativeSrc":"598:2:101","nodeType":"YulLiteral","src":"598:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"594:3:101","nodeType":"YulIdentifier","src":"594:3:101"},"nativeSrc":"594:7:101","nodeType":"YulFunctionCall","src":"594:7:101"}],"functionName":{"name":"and","nativeSrc":"573:3:101","nodeType":"YulIdentifier","src":"573:3:101"},"nativeSrc":"573:29:101","nodeType":"YulFunctionCall","src":"573:29:101"}],"functionName":{"name":"add","nativeSrc":"558:3:101","nodeType":"YulIdentifier","src":"558:3:101"},"nativeSrc":"558:45:101","nodeType":"YulFunctionCall","src":"558:45:101"},{"kind":"number","nativeSrc":"605:2:101","nodeType":"YulLiteral","src":"605:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"554:3:101","nodeType":"YulIdentifier","src":"554:3:101"},"nativeSrc":"554:54:101","nodeType":"YulFunctionCall","src":"554:54:101"},"variableNames":[{"name":"tail","nativeSrc":"546:4:101","nodeType":"YulIdentifier","src":"546:4:101"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"196:418:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"286:9:101","nodeType":"YulTypedName","src":"286:9:101","type":""},{"name":"value0","nativeSrc":"297:6:101","nodeType":"YulTypedName","src":"297:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"308:4:101","nodeType":"YulTypedName","src":"308:4:101","type":""}],"src":"196:418:101"},{"body":{"nativeSrc":"689:156:101","nodeType":"YulBlock","src":"689:156:101","statements":[{"body":{"nativeSrc":"735:16:101","nodeType":"YulBlock","src":"735:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"744:1:101","nodeType":"YulLiteral","src":"744:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"747:1:101","nodeType":"YulLiteral","src":"747:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"737:6:101","nodeType":"YulIdentifier","src":"737:6:101"},"nativeSrc":"737:12:101","nodeType":"YulFunctionCall","src":"737:12:101"},"nativeSrc":"737:12:101","nodeType":"YulExpressionStatement","src":"737:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"710:7:101","nodeType":"YulIdentifier","src":"710:7:101"},{"name":"headStart","nativeSrc":"719:9:101","nodeType":"YulIdentifier","src":"719:9:101"}],"functionName":{"name":"sub","nativeSrc":"706:3:101","nodeType":"YulIdentifier","src":"706:3:101"},"nativeSrc":"706:23:101","nodeType":"YulFunctionCall","src":"706:23:101"},{"kind":"number","nativeSrc":"731:2:101","nodeType":"YulLiteral","src":"731:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"702:3:101","nodeType":"YulIdentifier","src":"702:3:101"},"nativeSrc":"702:32:101","nodeType":"YulFunctionCall","src":"702:32:101"},"nativeSrc":"699:52:101","nodeType":"YulIf","src":"699:52:101"},{"nativeSrc":"760:14:101","nodeType":"YulVariableDeclaration","src":"760:14:101","value":{"kind":"number","nativeSrc":"773:1:101","nodeType":"YulLiteral","src":"773:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"764:5:101","nodeType":"YulTypedName","src":"764:5:101","type":""}]},{"nativeSrc":"783:32:101","nodeType":"YulAssignment","src":"783:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"805:9:101","nodeType":"YulIdentifier","src":"805:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"792:12:101","nodeType":"YulIdentifier","src":"792:12:101"},"nativeSrc":"792:23:101","nodeType":"YulFunctionCall","src":"792:23:101"},"variableNames":[{"name":"value","nativeSrc":"783:5:101","nodeType":"YulIdentifier","src":"783:5:101"}]},{"nativeSrc":"824:15:101","nodeType":"YulAssignment","src":"824:15:101","value":{"name":"value","nativeSrc":"834:5:101","nodeType":"YulIdentifier","src":"834:5:101"},"variableNames":[{"name":"value0","nativeSrc":"824:6:101","nodeType":"YulIdentifier","src":"824:6:101"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"619:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"655:9:101","nodeType":"YulTypedName","src":"655:9:101","type":""},{"name":"dataEnd","nativeSrc":"666:7:101","nodeType":"YulTypedName","src":"666:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"678:6:101","nodeType":"YulTypedName","src":"678:6:101","type":""}],"src":"619:226:101"},{"body":{"nativeSrc":"899:124:101","nodeType":"YulBlock","src":"899:124:101","statements":[{"nativeSrc":"909:29:101","nodeType":"YulAssignment","src":"909:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"931:6:101","nodeType":"YulIdentifier","src":"931:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"918:12:101","nodeType":"YulIdentifier","src":"918:12:101"},"nativeSrc":"918:20:101","nodeType":"YulFunctionCall","src":"918:20:101"},"variableNames":[{"name":"value","nativeSrc":"909:5:101","nodeType":"YulIdentifier","src":"909:5:101"}]},{"body":{"nativeSrc":"1001:16:101","nodeType":"YulBlock","src":"1001:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1010:1:101","nodeType":"YulLiteral","src":"1010:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1013:1:101","nodeType":"YulLiteral","src":"1013:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1003:6:101","nodeType":"YulIdentifier","src":"1003:6:101"},"nativeSrc":"1003:12:101","nodeType":"YulFunctionCall","src":"1003:12:101"},"nativeSrc":"1003:12:101","nodeType":"YulExpressionStatement","src":"1003:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"960:5:101","nodeType":"YulIdentifier","src":"960:5:101"},{"arguments":[{"name":"value","nativeSrc":"971:5:101","nodeType":"YulIdentifier","src":"971:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"986:3:101","nodeType":"YulLiteral","src":"986:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"991:1:101","nodeType":"YulLiteral","src":"991:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"982:3:101","nodeType":"YulIdentifier","src":"982:3:101"},"nativeSrc":"982:11:101","nodeType":"YulFunctionCall","src":"982:11:101"},{"kind":"number","nativeSrc":"995:1:101","nodeType":"YulLiteral","src":"995:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"978:3:101","nodeType":"YulIdentifier","src":"978:3:101"},"nativeSrc":"978:19:101","nodeType":"YulFunctionCall","src":"978:19:101"}],"functionName":{"name":"and","nativeSrc":"967:3:101","nodeType":"YulIdentifier","src":"967:3:101"},"nativeSrc":"967:31:101","nodeType":"YulFunctionCall","src":"967:31:101"}],"functionName":{"name":"eq","nativeSrc":"957:2:101","nodeType":"YulIdentifier","src":"957:2:101"},"nativeSrc":"957:42:101","nodeType":"YulFunctionCall","src":"957:42:101"}],"functionName":{"name":"iszero","nativeSrc":"950:6:101","nodeType":"YulIdentifier","src":"950:6:101"},"nativeSrc":"950:50:101","nodeType":"YulFunctionCall","src":"950:50:101"},"nativeSrc":"947:70:101","nodeType":"YulIf","src":"947:70:101"}]},"name":"abi_decode_address","nativeSrc":"850:173:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"878:6:101","nodeType":"YulTypedName","src":"878:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"889:5:101","nodeType":"YulTypedName","src":"889:5:101","type":""}],"src":"850:173:101"},{"body":{"nativeSrc":"1115:213:101","nodeType":"YulBlock","src":"1115:213:101","statements":[{"body":{"nativeSrc":"1161:16:101","nodeType":"YulBlock","src":"1161:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1170:1:101","nodeType":"YulLiteral","src":"1170:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1173:1:101","nodeType":"YulLiteral","src":"1173:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1163:6:101","nodeType":"YulIdentifier","src":"1163:6:101"},"nativeSrc":"1163:12:101","nodeType":"YulFunctionCall","src":"1163:12:101"},"nativeSrc":"1163:12:101","nodeType":"YulExpressionStatement","src":"1163:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1136:7:101","nodeType":"YulIdentifier","src":"1136:7:101"},{"name":"headStart","nativeSrc":"1145:9:101","nodeType":"YulIdentifier","src":"1145:9:101"}],"functionName":{"name":"sub","nativeSrc":"1132:3:101","nodeType":"YulIdentifier","src":"1132:3:101"},"nativeSrc":"1132:23:101","nodeType":"YulFunctionCall","src":"1132:23:101"},{"kind":"number","nativeSrc":"1157:2:101","nodeType":"YulLiteral","src":"1157:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1128:3:101","nodeType":"YulIdentifier","src":"1128:3:101"},"nativeSrc":"1128:32:101","nodeType":"YulFunctionCall","src":"1128:32:101"},"nativeSrc":"1125:52:101","nodeType":"YulIf","src":"1125:52:101"},{"nativeSrc":"1186:39:101","nodeType":"YulAssignment","src":"1186:39:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1215:9:101","nodeType":"YulIdentifier","src":"1215:9:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1196:18:101","nodeType":"YulIdentifier","src":"1196:18:101"},"nativeSrc":"1196:29:101","nodeType":"YulFunctionCall","src":"1196:29:101"},"variableNames":[{"name":"value0","nativeSrc":"1186:6:101","nodeType":"YulIdentifier","src":"1186:6:101"}]},{"nativeSrc":"1234:14:101","nodeType":"YulVariableDeclaration","src":"1234:14:101","value":{"kind":"number","nativeSrc":"1247:1:101","nodeType":"YulLiteral","src":"1247:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1238:5:101","nodeType":"YulTypedName","src":"1238:5:101","type":""}]},{"nativeSrc":"1257:41:101","nodeType":"YulAssignment","src":"1257:41:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1283:9:101","nodeType":"YulIdentifier","src":"1283:9:101"},{"kind":"number","nativeSrc":"1294:2:101","nodeType":"YulLiteral","src":"1294:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1279:3:101","nodeType":"YulIdentifier","src":"1279:3:101"},"nativeSrc":"1279:18:101","nodeType":"YulFunctionCall","src":"1279:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"1266:12:101","nodeType":"YulIdentifier","src":"1266:12:101"},"nativeSrc":"1266:32:101","nodeType":"YulFunctionCall","src":"1266:32:101"},"variableNames":[{"name":"value","nativeSrc":"1257:5:101","nodeType":"YulIdentifier","src":"1257:5:101"}]},{"nativeSrc":"1307:15:101","nodeType":"YulAssignment","src":"1307:15:101","value":{"name":"value","nativeSrc":"1317:5:101","nodeType":"YulIdentifier","src":"1317:5:101"},"variableNames":[{"name":"value1","nativeSrc":"1307:6:101","nodeType":"YulIdentifier","src":"1307:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"1028:300:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1073:9:101","nodeType":"YulTypedName","src":"1073:9:101","type":""},{"name":"dataEnd","nativeSrc":"1084:7:101","nodeType":"YulTypedName","src":"1084:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1096:6:101","nodeType":"YulTypedName","src":"1096:6:101","type":""},{"name":"value1","nativeSrc":"1104:6:101","nodeType":"YulTypedName","src":"1104:6:101","type":""}],"src":"1028:300:101"},{"body":{"nativeSrc":"1428:92:101","nodeType":"YulBlock","src":"1428:92:101","statements":[{"nativeSrc":"1438:26:101","nodeType":"YulAssignment","src":"1438:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1450:9:101","nodeType":"YulIdentifier","src":"1450:9:101"},{"kind":"number","nativeSrc":"1461:2:101","nodeType":"YulLiteral","src":"1461:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1446:3:101","nodeType":"YulIdentifier","src":"1446:3:101"},"nativeSrc":"1446:18:101","nodeType":"YulFunctionCall","src":"1446:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1438:4:101","nodeType":"YulIdentifier","src":"1438:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1480:9:101","nodeType":"YulIdentifier","src":"1480:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"1505:6:101","nodeType":"YulIdentifier","src":"1505:6:101"}],"functionName":{"name":"iszero","nativeSrc":"1498:6:101","nodeType":"YulIdentifier","src":"1498:6:101"},"nativeSrc":"1498:14:101","nodeType":"YulFunctionCall","src":"1498:14:101"}],"functionName":{"name":"iszero","nativeSrc":"1491:6:101","nodeType":"YulIdentifier","src":"1491:6:101"},"nativeSrc":"1491:22:101","nodeType":"YulFunctionCall","src":"1491:22:101"}],"functionName":{"name":"mstore","nativeSrc":"1473:6:101","nodeType":"YulIdentifier","src":"1473:6:101"},"nativeSrc":"1473:41:101","nodeType":"YulFunctionCall","src":"1473:41:101"},"nativeSrc":"1473:41:101","nodeType":"YulExpressionStatement","src":"1473:41:101"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"1333:187:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1397:9:101","nodeType":"YulTypedName","src":"1397:9:101","type":""},{"name":"value0","nativeSrc":"1408:6:101","nodeType":"YulTypedName","src":"1408:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1419:4:101","nodeType":"YulTypedName","src":"1419:4:101","type":""}],"src":"1333:187:101"},{"body":{"nativeSrc":"1629:270:101","nodeType":"YulBlock","src":"1629:270:101","statements":[{"body":{"nativeSrc":"1675:16:101","nodeType":"YulBlock","src":"1675:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1684:1:101","nodeType":"YulLiteral","src":"1684:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1687:1:101","nodeType":"YulLiteral","src":"1687:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1677:6:101","nodeType":"YulIdentifier","src":"1677:6:101"},"nativeSrc":"1677:12:101","nodeType":"YulFunctionCall","src":"1677:12:101"},"nativeSrc":"1677:12:101","nodeType":"YulExpressionStatement","src":"1677:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1650:7:101","nodeType":"YulIdentifier","src":"1650:7:101"},{"name":"headStart","nativeSrc":"1659:9:101","nodeType":"YulIdentifier","src":"1659:9:101"}],"functionName":{"name":"sub","nativeSrc":"1646:3:101","nodeType":"YulIdentifier","src":"1646:3:101"},"nativeSrc":"1646:23:101","nodeType":"YulFunctionCall","src":"1646:23:101"},{"kind":"number","nativeSrc":"1671:2:101","nodeType":"YulLiteral","src":"1671:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"1642:3:101","nodeType":"YulIdentifier","src":"1642:3:101"},"nativeSrc":"1642:32:101","nodeType":"YulFunctionCall","src":"1642:32:101"},"nativeSrc":"1639:52:101","nodeType":"YulIf","src":"1639:52:101"},{"nativeSrc":"1700:39:101","nodeType":"YulAssignment","src":"1700:39:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1729:9:101","nodeType":"YulIdentifier","src":"1729:9:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1710:18:101","nodeType":"YulIdentifier","src":"1710:18:101"},"nativeSrc":"1710:29:101","nodeType":"YulFunctionCall","src":"1710:29:101"},"variableNames":[{"name":"value0","nativeSrc":"1700:6:101","nodeType":"YulIdentifier","src":"1700:6:101"}]},{"nativeSrc":"1748:48:101","nodeType":"YulAssignment","src":"1748:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1781:9:101","nodeType":"YulIdentifier","src":"1781:9:101"},{"kind":"number","nativeSrc":"1792:2:101","nodeType":"YulLiteral","src":"1792:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1777:3:101","nodeType":"YulIdentifier","src":"1777:3:101"},"nativeSrc":"1777:18:101","nodeType":"YulFunctionCall","src":"1777:18:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1758:18:101","nodeType":"YulIdentifier","src":"1758:18:101"},"nativeSrc":"1758:38:101","nodeType":"YulFunctionCall","src":"1758:38:101"},"variableNames":[{"name":"value1","nativeSrc":"1748:6:101","nodeType":"YulIdentifier","src":"1748:6:101"}]},{"nativeSrc":"1805:14:101","nodeType":"YulVariableDeclaration","src":"1805:14:101","value":{"kind":"number","nativeSrc":"1818:1:101","nodeType":"YulLiteral","src":"1818:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1809:5:101","nodeType":"YulTypedName","src":"1809:5:101","type":""}]},{"nativeSrc":"1828:41:101","nodeType":"YulAssignment","src":"1828:41:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1854:9:101","nodeType":"YulIdentifier","src":"1854:9:101"},{"kind":"number","nativeSrc":"1865:2:101","nodeType":"YulLiteral","src":"1865:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1850:3:101","nodeType":"YulIdentifier","src":"1850:3:101"},"nativeSrc":"1850:18:101","nodeType":"YulFunctionCall","src":"1850:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"1837:12:101","nodeType":"YulIdentifier","src":"1837:12:101"},"nativeSrc":"1837:32:101","nodeType":"YulFunctionCall","src":"1837:32:101"},"variableNames":[{"name":"value","nativeSrc":"1828:5:101","nodeType":"YulIdentifier","src":"1828:5:101"}]},{"nativeSrc":"1878:15:101","nodeType":"YulAssignment","src":"1878:15:101","value":{"name":"value","nativeSrc":"1888:5:101","nodeType":"YulIdentifier","src":"1888:5:101"},"variableNames":[{"name":"value2","nativeSrc":"1878:6:101","nodeType":"YulIdentifier","src":"1878:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"1525:374:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1579:9:101","nodeType":"YulTypedName","src":"1579:9:101","type":""},{"name":"dataEnd","nativeSrc":"1590:7:101","nodeType":"YulTypedName","src":"1590:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1602:6:101","nodeType":"YulTypedName","src":"1602:6:101","type":""},{"name":"value1","nativeSrc":"1610:6:101","nodeType":"YulTypedName","src":"1610:6:101","type":""},{"name":"value2","nativeSrc":"1618:6:101","nodeType":"YulTypedName","src":"1618:6:101","type":""}],"src":"1525:374:101"},{"body":{"nativeSrc":"2001:87:101","nodeType":"YulBlock","src":"2001:87:101","statements":[{"nativeSrc":"2011:26:101","nodeType":"YulAssignment","src":"2011:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2023:9:101","nodeType":"YulIdentifier","src":"2023:9:101"},{"kind":"number","nativeSrc":"2034:2:101","nodeType":"YulLiteral","src":"2034:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2019:3:101","nodeType":"YulIdentifier","src":"2019:3:101"},"nativeSrc":"2019:18:101","nodeType":"YulFunctionCall","src":"2019:18:101"},"variableNames":[{"name":"tail","nativeSrc":"2011:4:101","nodeType":"YulIdentifier","src":"2011:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2053:9:101","nodeType":"YulIdentifier","src":"2053:9:101"},{"arguments":[{"name":"value0","nativeSrc":"2068:6:101","nodeType":"YulIdentifier","src":"2068:6:101"},{"kind":"number","nativeSrc":"2076:4:101","nodeType":"YulLiteral","src":"2076:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"2064:3:101","nodeType":"YulIdentifier","src":"2064:3:101"},"nativeSrc":"2064:17:101","nodeType":"YulFunctionCall","src":"2064:17:101"}],"functionName":{"name":"mstore","nativeSrc":"2046:6:101","nodeType":"YulIdentifier","src":"2046:6:101"},"nativeSrc":"2046:36:101","nodeType":"YulFunctionCall","src":"2046:36:101"},"nativeSrc":"2046:36:101","nodeType":"YulExpressionStatement","src":"2046:36:101"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"1904:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1970:9:101","nodeType":"YulTypedName","src":"1970:9:101","type":""},{"name":"value0","nativeSrc":"1981:6:101","nodeType":"YulTypedName","src":"1981:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1992:4:101","nodeType":"YulTypedName","src":"1992:4:101","type":""}],"src":"1904:184:101"},{"body":{"nativeSrc":"2194:102:101","nodeType":"YulBlock","src":"2194:102:101","statements":[{"nativeSrc":"2204:26:101","nodeType":"YulAssignment","src":"2204:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2216:9:101","nodeType":"YulIdentifier","src":"2216:9:101"},{"kind":"number","nativeSrc":"2227:2:101","nodeType":"YulLiteral","src":"2227:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2212:3:101","nodeType":"YulIdentifier","src":"2212:3:101"},"nativeSrc":"2212:18:101","nodeType":"YulFunctionCall","src":"2212:18:101"},"variableNames":[{"name":"tail","nativeSrc":"2204:4:101","nodeType":"YulIdentifier","src":"2204:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2246:9:101","nodeType":"YulIdentifier","src":"2246:9:101"},{"arguments":[{"name":"value0","nativeSrc":"2261:6:101","nodeType":"YulIdentifier","src":"2261:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2277:3:101","nodeType":"YulLiteral","src":"2277:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"2282:1:101","nodeType":"YulLiteral","src":"2282:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2273:3:101","nodeType":"YulIdentifier","src":"2273:3:101"},"nativeSrc":"2273:11:101","nodeType":"YulFunctionCall","src":"2273:11:101"},{"kind":"number","nativeSrc":"2286:1:101","nodeType":"YulLiteral","src":"2286:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2269:3:101","nodeType":"YulIdentifier","src":"2269:3:101"},"nativeSrc":"2269:19:101","nodeType":"YulFunctionCall","src":"2269:19:101"}],"functionName":{"name":"and","nativeSrc":"2257:3:101","nodeType":"YulIdentifier","src":"2257:3:101"},"nativeSrc":"2257:32:101","nodeType":"YulFunctionCall","src":"2257:32:101"}],"functionName":{"name":"mstore","nativeSrc":"2239:6:101","nodeType":"YulIdentifier","src":"2239:6:101"},"nativeSrc":"2239:51:101","nodeType":"YulFunctionCall","src":"2239:51:101"},"nativeSrc":"2239:51:101","nodeType":"YulExpressionStatement","src":"2239:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"2093:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2163:9:101","nodeType":"YulTypedName","src":"2163:9:101","type":""},{"name":"value0","nativeSrc":"2174:6:101","nodeType":"YulTypedName","src":"2174:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2185:4:101","nodeType":"YulTypedName","src":"2185:4:101","type":""}],"src":"2093:203:101"},{"body":{"nativeSrc":"2371:116:101","nodeType":"YulBlock","src":"2371:116:101","statements":[{"body":{"nativeSrc":"2417:16:101","nodeType":"YulBlock","src":"2417:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2426:1:101","nodeType":"YulLiteral","src":"2426:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2429:1:101","nodeType":"YulLiteral","src":"2429:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2419:6:101","nodeType":"YulIdentifier","src":"2419:6:101"},"nativeSrc":"2419:12:101","nodeType":"YulFunctionCall","src":"2419:12:101"},"nativeSrc":"2419:12:101","nodeType":"YulExpressionStatement","src":"2419:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2392:7:101","nodeType":"YulIdentifier","src":"2392:7:101"},{"name":"headStart","nativeSrc":"2401:9:101","nodeType":"YulIdentifier","src":"2401:9:101"}],"functionName":{"name":"sub","nativeSrc":"2388:3:101","nodeType":"YulIdentifier","src":"2388:3:101"},"nativeSrc":"2388:23:101","nodeType":"YulFunctionCall","src":"2388:23:101"},{"kind":"number","nativeSrc":"2413:2:101","nodeType":"YulLiteral","src":"2413:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"2384:3:101","nodeType":"YulIdentifier","src":"2384:3:101"},"nativeSrc":"2384:32:101","nodeType":"YulFunctionCall","src":"2384:32:101"},"nativeSrc":"2381:52:101","nodeType":"YulIf","src":"2381:52:101"},{"nativeSrc":"2442:39:101","nodeType":"YulAssignment","src":"2442:39:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2471:9:101","nodeType":"YulIdentifier","src":"2471:9:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2452:18:101","nodeType":"YulIdentifier","src":"2452:18:101"},"nativeSrc":"2452:29:101","nodeType":"YulFunctionCall","src":"2452:29:101"},"variableNames":[{"name":"value0","nativeSrc":"2442:6:101","nodeType":"YulIdentifier","src":"2442:6:101"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"2301:186:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2337:9:101","nodeType":"YulTypedName","src":"2337:9:101","type":""},{"name":"dataEnd","nativeSrc":"2348:7:101","nodeType":"YulTypedName","src":"2348:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2360:6:101","nodeType":"YulTypedName","src":"2360:6:101","type":""}],"src":"2301:186:101"},{"body":{"nativeSrc":"2579:213:101","nodeType":"YulBlock","src":"2579:213:101","statements":[{"body":{"nativeSrc":"2625:16:101","nodeType":"YulBlock","src":"2625:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2634:1:101","nodeType":"YulLiteral","src":"2634:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2637:1:101","nodeType":"YulLiteral","src":"2637:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2627:6:101","nodeType":"YulIdentifier","src":"2627:6:101"},"nativeSrc":"2627:12:101","nodeType":"YulFunctionCall","src":"2627:12:101"},"nativeSrc":"2627:12:101","nodeType":"YulExpressionStatement","src":"2627:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2600:7:101","nodeType":"YulIdentifier","src":"2600:7:101"},{"name":"headStart","nativeSrc":"2609:9:101","nodeType":"YulIdentifier","src":"2609:9:101"}],"functionName":{"name":"sub","nativeSrc":"2596:3:101","nodeType":"YulIdentifier","src":"2596:3:101"},"nativeSrc":"2596:23:101","nodeType":"YulFunctionCall","src":"2596:23:101"},{"kind":"number","nativeSrc":"2621:2:101","nodeType":"YulLiteral","src":"2621:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2592:3:101","nodeType":"YulIdentifier","src":"2592:3:101"},"nativeSrc":"2592:32:101","nodeType":"YulFunctionCall","src":"2592:32:101"},"nativeSrc":"2589:52:101","nodeType":"YulIf","src":"2589:52:101"},{"nativeSrc":"2650:14:101","nodeType":"YulVariableDeclaration","src":"2650:14:101","value":{"kind":"number","nativeSrc":"2663:1:101","nodeType":"YulLiteral","src":"2663:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"2654:5:101","nodeType":"YulTypedName","src":"2654:5:101","type":""}]},{"nativeSrc":"2673:32:101","nodeType":"YulAssignment","src":"2673:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2695:9:101","nodeType":"YulIdentifier","src":"2695:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"2682:12:101","nodeType":"YulIdentifier","src":"2682:12:101"},"nativeSrc":"2682:23:101","nodeType":"YulFunctionCall","src":"2682:23:101"},"variableNames":[{"name":"value","nativeSrc":"2673:5:101","nodeType":"YulIdentifier","src":"2673:5:101"}]},{"nativeSrc":"2714:15:101","nodeType":"YulAssignment","src":"2714:15:101","value":{"name":"value","nativeSrc":"2724:5:101","nodeType":"YulIdentifier","src":"2724:5:101"},"variableNames":[{"name":"value0","nativeSrc":"2714:6:101","nodeType":"YulIdentifier","src":"2714:6:101"}]},{"nativeSrc":"2738:48:101","nodeType":"YulAssignment","src":"2738:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2771:9:101","nodeType":"YulIdentifier","src":"2771:9:101"},{"kind":"number","nativeSrc":"2782:2:101","nodeType":"YulLiteral","src":"2782:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2767:3:101","nodeType":"YulIdentifier","src":"2767:3:101"},"nativeSrc":"2767:18:101","nodeType":"YulFunctionCall","src":"2767:18:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2748:18:101","nodeType":"YulIdentifier","src":"2748:18:101"},"nativeSrc":"2748:38:101","nodeType":"YulFunctionCall","src":"2748:38:101"},"variableNames":[{"name":"value1","nativeSrc":"2738:6:101","nodeType":"YulIdentifier","src":"2738:6:101"}]}]},"name":"abi_decode_tuple_t_uint256t_address","nativeSrc":"2492:300:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2537:9:101","nodeType":"YulTypedName","src":"2537:9:101","type":""},{"name":"dataEnd","nativeSrc":"2548:7:101","nodeType":"YulTypedName","src":"2548:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2560:6:101","nodeType":"YulTypedName","src":"2560:6:101","type":""},{"name":"value1","nativeSrc":"2568:6:101","nodeType":"YulTypedName","src":"2568:6:101","type":""}],"src":"2492:300:101"},{"body":{"nativeSrc":"2864:206:101","nodeType":"YulBlock","src":"2864:206:101","statements":[{"body":{"nativeSrc":"2910:16:101","nodeType":"YulBlock","src":"2910:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2919:1:101","nodeType":"YulLiteral","src":"2919:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2922:1:101","nodeType":"YulLiteral","src":"2922:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2912:6:101","nodeType":"YulIdentifier","src":"2912:6:101"},"nativeSrc":"2912:12:101","nodeType":"YulFunctionCall","src":"2912:12:101"},"nativeSrc":"2912:12:101","nodeType":"YulExpressionStatement","src":"2912:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2885:7:101","nodeType":"YulIdentifier","src":"2885:7:101"},{"name":"headStart","nativeSrc":"2894:9:101","nodeType":"YulIdentifier","src":"2894:9:101"}],"functionName":{"name":"sub","nativeSrc":"2881:3:101","nodeType":"YulIdentifier","src":"2881:3:101"},"nativeSrc":"2881:23:101","nodeType":"YulFunctionCall","src":"2881:23:101"},{"kind":"number","nativeSrc":"2906:2:101","nodeType":"YulLiteral","src":"2906:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"2877:3:101","nodeType":"YulIdentifier","src":"2877:3:101"},"nativeSrc":"2877:32:101","nodeType":"YulFunctionCall","src":"2877:32:101"},"nativeSrc":"2874:52:101","nodeType":"YulIf","src":"2874:52:101"},{"nativeSrc":"2935:36:101","nodeType":"YulVariableDeclaration","src":"2935:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2961:9:101","nodeType":"YulIdentifier","src":"2961:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"2948:12:101","nodeType":"YulIdentifier","src":"2948:12:101"},"nativeSrc":"2948:23:101","nodeType":"YulFunctionCall","src":"2948:23:101"},"variables":[{"name":"value","nativeSrc":"2939:5:101","nodeType":"YulTypedName","src":"2939:5:101","type":""}]},{"body":{"nativeSrc":"3024:16:101","nodeType":"YulBlock","src":"3024:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3033:1:101","nodeType":"YulLiteral","src":"3033:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3036:1:101","nodeType":"YulLiteral","src":"3036:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3026:6:101","nodeType":"YulIdentifier","src":"3026:6:101"},"nativeSrc":"3026:12:101","nodeType":"YulFunctionCall","src":"3026:12:101"},"nativeSrc":"3026:12:101","nodeType":"YulExpressionStatement","src":"3026:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2993:5:101","nodeType":"YulIdentifier","src":"2993:5:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3014:5:101","nodeType":"YulIdentifier","src":"3014:5:101"}],"functionName":{"name":"iszero","nativeSrc":"3007:6:101","nodeType":"YulIdentifier","src":"3007:6:101"},"nativeSrc":"3007:13:101","nodeType":"YulFunctionCall","src":"3007:13:101"}],"functionName":{"name":"iszero","nativeSrc":"3000:6:101","nodeType":"YulIdentifier","src":"3000:6:101"},"nativeSrc":"3000:21:101","nodeType":"YulFunctionCall","src":"3000:21:101"}],"functionName":{"name":"eq","nativeSrc":"2990:2:101","nodeType":"YulIdentifier","src":"2990:2:101"},"nativeSrc":"2990:32:101","nodeType":"YulFunctionCall","src":"2990:32:101"}],"functionName":{"name":"iszero","nativeSrc":"2983:6:101","nodeType":"YulIdentifier","src":"2983:6:101"},"nativeSrc":"2983:40:101","nodeType":"YulFunctionCall","src":"2983:40:101"},"nativeSrc":"2980:60:101","nodeType":"YulIf","src":"2980:60:101"},{"nativeSrc":"3049:15:101","nodeType":"YulAssignment","src":"3049:15:101","value":{"name":"value","nativeSrc":"3059:5:101","nodeType":"YulIdentifier","src":"3059:5:101"},"variableNames":[{"name":"value0","nativeSrc":"3049:6:101","nodeType":"YulIdentifier","src":"3049:6:101"}]}]},"name":"abi_decode_tuple_t_bool","nativeSrc":"2797:273:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2830:9:101","nodeType":"YulTypedName","src":"2830:9:101","type":""},{"name":"dataEnd","nativeSrc":"2841:7:101","nodeType":"YulTypedName","src":"2841:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2853:6:101","nodeType":"YulTypedName","src":"2853:6:101","type":""}],"src":"2797:273:101"},{"body":{"nativeSrc":"3179:270:101","nodeType":"YulBlock","src":"3179:270:101","statements":[{"body":{"nativeSrc":"3225:16:101","nodeType":"YulBlock","src":"3225:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3234:1:101","nodeType":"YulLiteral","src":"3234:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3237:1:101","nodeType":"YulLiteral","src":"3237:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3227:6:101","nodeType":"YulIdentifier","src":"3227:6:101"},"nativeSrc":"3227:12:101","nodeType":"YulFunctionCall","src":"3227:12:101"},"nativeSrc":"3227:12:101","nodeType":"YulExpressionStatement","src":"3227:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3200:7:101","nodeType":"YulIdentifier","src":"3200:7:101"},{"name":"headStart","nativeSrc":"3209:9:101","nodeType":"YulIdentifier","src":"3209:9:101"}],"functionName":{"name":"sub","nativeSrc":"3196:3:101","nodeType":"YulIdentifier","src":"3196:3:101"},"nativeSrc":"3196:23:101","nodeType":"YulFunctionCall","src":"3196:23:101"},{"kind":"number","nativeSrc":"3221:2:101","nodeType":"YulLiteral","src":"3221:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"3192:3:101","nodeType":"YulIdentifier","src":"3192:3:101"},"nativeSrc":"3192:32:101","nodeType":"YulFunctionCall","src":"3192:32:101"},"nativeSrc":"3189:52:101","nodeType":"YulIf","src":"3189:52:101"},{"nativeSrc":"3250:14:101","nodeType":"YulVariableDeclaration","src":"3250:14:101","value":{"kind":"number","nativeSrc":"3263:1:101","nodeType":"YulLiteral","src":"3263:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3254:5:101","nodeType":"YulTypedName","src":"3254:5:101","type":""}]},{"nativeSrc":"3273:32:101","nodeType":"YulAssignment","src":"3273:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3295:9:101","nodeType":"YulIdentifier","src":"3295:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"3282:12:101","nodeType":"YulIdentifier","src":"3282:12:101"},"nativeSrc":"3282:23:101","nodeType":"YulFunctionCall","src":"3282:23:101"},"variableNames":[{"name":"value","nativeSrc":"3273:5:101","nodeType":"YulIdentifier","src":"3273:5:101"}]},{"nativeSrc":"3314:15:101","nodeType":"YulAssignment","src":"3314:15:101","value":{"name":"value","nativeSrc":"3324:5:101","nodeType":"YulIdentifier","src":"3324:5:101"},"variableNames":[{"name":"value0","nativeSrc":"3314:6:101","nodeType":"YulIdentifier","src":"3314:6:101"}]},{"nativeSrc":"3338:48:101","nodeType":"YulAssignment","src":"3338:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3371:9:101","nodeType":"YulIdentifier","src":"3371:9:101"},{"kind":"number","nativeSrc":"3382:2:101","nodeType":"YulLiteral","src":"3382:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3367:3:101","nodeType":"YulIdentifier","src":"3367:3:101"},"nativeSrc":"3367:18:101","nodeType":"YulFunctionCall","src":"3367:18:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"3348:18:101","nodeType":"YulIdentifier","src":"3348:18:101"},"nativeSrc":"3348:38:101","nodeType":"YulFunctionCall","src":"3348:38:101"},"variableNames":[{"name":"value1","nativeSrc":"3338:6:101","nodeType":"YulIdentifier","src":"3338:6:101"}]},{"nativeSrc":"3395:48:101","nodeType":"YulAssignment","src":"3395:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3428:9:101","nodeType":"YulIdentifier","src":"3428:9:101"},{"kind":"number","nativeSrc":"3439:2:101","nodeType":"YulLiteral","src":"3439:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3424:3:101","nodeType":"YulIdentifier","src":"3424:3:101"},"nativeSrc":"3424:18:101","nodeType":"YulFunctionCall","src":"3424:18:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"3405:18:101","nodeType":"YulIdentifier","src":"3405:18:101"},"nativeSrc":"3405:38:101","nodeType":"YulFunctionCall","src":"3405:38:101"},"variableNames":[{"name":"value2","nativeSrc":"3395:6:101","nodeType":"YulIdentifier","src":"3395:6:101"}]}]},"name":"abi_decode_tuple_t_uint256t_addresst_address","nativeSrc":"3075:374:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3129:9:101","nodeType":"YulTypedName","src":"3129:9:101","type":""},{"name":"dataEnd","nativeSrc":"3140:7:101","nodeType":"YulTypedName","src":"3140:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3152:6:101","nodeType":"YulTypedName","src":"3152:6:101","type":""},{"name":"value1","nativeSrc":"3160:6:101","nodeType":"YulTypedName","src":"3160:6:101","type":""},{"name":"value2","nativeSrc":"3168:6:101","nodeType":"YulTypedName","src":"3168:6:101","type":""}],"src":"3075:374:101"},{"body":{"nativeSrc":"3523:110:101","nodeType":"YulBlock","src":"3523:110:101","statements":[{"body":{"nativeSrc":"3569:16:101","nodeType":"YulBlock","src":"3569:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3578:1:101","nodeType":"YulLiteral","src":"3578:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3581:1:101","nodeType":"YulLiteral","src":"3581:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3571:6:101","nodeType":"YulIdentifier","src":"3571:6:101"},"nativeSrc":"3571:12:101","nodeType":"YulFunctionCall","src":"3571:12:101"},"nativeSrc":"3571:12:101","nodeType":"YulExpressionStatement","src":"3571:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3544:7:101","nodeType":"YulIdentifier","src":"3544:7:101"},{"name":"headStart","nativeSrc":"3553:9:101","nodeType":"YulIdentifier","src":"3553:9:101"}],"functionName":{"name":"sub","nativeSrc":"3540:3:101","nodeType":"YulIdentifier","src":"3540:3:101"},"nativeSrc":"3540:23:101","nodeType":"YulFunctionCall","src":"3540:23:101"},{"kind":"number","nativeSrc":"3565:2:101","nodeType":"YulLiteral","src":"3565:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"3536:3:101","nodeType":"YulIdentifier","src":"3536:3:101"},"nativeSrc":"3536:32:101","nodeType":"YulFunctionCall","src":"3536:32:101"},"nativeSrc":"3533:52:101","nodeType":"YulIf","src":"3533:52:101"},{"nativeSrc":"3594:33:101","nodeType":"YulAssignment","src":"3594:33:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3617:9:101","nodeType":"YulIdentifier","src":"3617:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"3604:12:101","nodeType":"YulIdentifier","src":"3604:12:101"},"nativeSrc":"3604:23:101","nodeType":"YulFunctionCall","src":"3604:23:101"},"variableNames":[{"name":"value0","nativeSrc":"3594:6:101","nodeType":"YulIdentifier","src":"3594:6:101"}]}]},"name":"abi_decode_tuple_t_int256","nativeSrc":"3454:179:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3489:9:101","nodeType":"YulTypedName","src":"3489:9:101","type":""},{"name":"dataEnd","nativeSrc":"3500:7:101","nodeType":"YulTypedName","src":"3500:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3512:6:101","nodeType":"YulTypedName","src":"3512:6:101","type":""}],"src":"3454:179:101"},{"body":{"nativeSrc":"3743:289:101","nodeType":"YulBlock","src":"3743:289:101","statements":[{"body":{"nativeSrc":"3789:16:101","nodeType":"YulBlock","src":"3789:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3798:1:101","nodeType":"YulLiteral","src":"3798:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3801:1:101","nodeType":"YulLiteral","src":"3801:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3791:6:101","nodeType":"YulIdentifier","src":"3791:6:101"},"nativeSrc":"3791:12:101","nodeType":"YulFunctionCall","src":"3791:12:101"},"nativeSrc":"3791:12:101","nodeType":"YulExpressionStatement","src":"3791:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3764:7:101","nodeType":"YulIdentifier","src":"3764:7:101"},{"name":"headStart","nativeSrc":"3773:9:101","nodeType":"YulIdentifier","src":"3773:9:101"}],"functionName":{"name":"sub","nativeSrc":"3760:3:101","nodeType":"YulIdentifier","src":"3760:3:101"},"nativeSrc":"3760:23:101","nodeType":"YulFunctionCall","src":"3760:23:101"},{"kind":"number","nativeSrc":"3785:2:101","nodeType":"YulLiteral","src":"3785:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3756:3:101","nodeType":"YulIdentifier","src":"3756:3:101"},"nativeSrc":"3756:32:101","nodeType":"YulFunctionCall","src":"3756:32:101"},"nativeSrc":"3753:52:101","nodeType":"YulIf","src":"3753:52:101"},{"nativeSrc":"3814:36:101","nodeType":"YulVariableDeclaration","src":"3814:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3840:9:101","nodeType":"YulIdentifier","src":"3840:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"3827:12:101","nodeType":"YulIdentifier","src":"3827:12:101"},"nativeSrc":"3827:23:101","nodeType":"YulFunctionCall","src":"3827:23:101"},"variables":[{"name":"value","nativeSrc":"3818:5:101","nodeType":"YulTypedName","src":"3818:5:101","type":""}]},{"body":{"nativeSrc":"3883:16:101","nodeType":"YulBlock","src":"3883:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3892:1:101","nodeType":"YulLiteral","src":"3892:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3895:1:101","nodeType":"YulLiteral","src":"3895:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3885:6:101","nodeType":"YulIdentifier","src":"3885:6:101"},"nativeSrc":"3885:12:101","nodeType":"YulFunctionCall","src":"3885:12:101"},"nativeSrc":"3885:12:101","nodeType":"YulExpressionStatement","src":"3885:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3872:5:101","nodeType":"YulIdentifier","src":"3872:5:101"},{"kind":"number","nativeSrc":"3879:1:101","nodeType":"YulLiteral","src":"3879:1:101","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"3869:2:101","nodeType":"YulIdentifier","src":"3869:2:101"},"nativeSrc":"3869:12:101","nodeType":"YulFunctionCall","src":"3869:12:101"}],"functionName":{"name":"iszero","nativeSrc":"3862:6:101","nodeType":"YulIdentifier","src":"3862:6:101"},"nativeSrc":"3862:20:101","nodeType":"YulFunctionCall","src":"3862:20:101"},"nativeSrc":"3859:40:101","nodeType":"YulIf","src":"3859:40:101"},{"nativeSrc":"3908:15:101","nodeType":"YulAssignment","src":"3908:15:101","value":{"name":"value","nativeSrc":"3918:5:101","nodeType":"YulIdentifier","src":"3918:5:101"},"variableNames":[{"name":"value0","nativeSrc":"3908:6:101","nodeType":"YulIdentifier","src":"3908:6:101"}]},{"nativeSrc":"3932:16:101","nodeType":"YulVariableDeclaration","src":"3932:16:101","value":{"kind":"number","nativeSrc":"3947:1:101","nodeType":"YulLiteral","src":"3947:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"3936:7:101","nodeType":"YulTypedName","src":"3936:7:101","type":""}]},{"nativeSrc":"3957:43:101","nodeType":"YulAssignment","src":"3957:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3985:9:101","nodeType":"YulIdentifier","src":"3985:9:101"},{"kind":"number","nativeSrc":"3996:2:101","nodeType":"YulLiteral","src":"3996:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3981:3:101","nodeType":"YulIdentifier","src":"3981:3:101"},"nativeSrc":"3981:18:101","nodeType":"YulFunctionCall","src":"3981:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3968:12:101","nodeType":"YulIdentifier","src":"3968:12:101"},"nativeSrc":"3968:32:101","nodeType":"YulFunctionCall","src":"3968:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"3957:7:101","nodeType":"YulIdentifier","src":"3957:7:101"}]},{"nativeSrc":"4009:17:101","nodeType":"YulAssignment","src":"4009:17:101","value":{"name":"value_1","nativeSrc":"4019:7:101","nodeType":"YulIdentifier","src":"4019:7:101"},"variableNames":[{"name":"value1","nativeSrc":"4009:6:101","nodeType":"YulIdentifier","src":"4009:6:101"}]}]},"name":"abi_decode_tuple_t_enum$_OverrideOption_$713t_uint256","nativeSrc":"3638:394:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3701:9:101","nodeType":"YulTypedName","src":"3701:9:101","type":""},{"name":"dataEnd","nativeSrc":"3712:7:101","nodeType":"YulTypedName","src":"3712:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3724:6:101","nodeType":"YulTypedName","src":"3724:6:101","type":""},{"name":"value1","nativeSrc":"3732:6:101","nodeType":"YulTypedName","src":"3732:6:101","type":""}],"src":"3638:394:101"},{"body":{"nativeSrc":"4124:173:101","nodeType":"YulBlock","src":"4124:173:101","statements":[{"body":{"nativeSrc":"4170:16:101","nodeType":"YulBlock","src":"4170:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4179:1:101","nodeType":"YulLiteral","src":"4179:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4182:1:101","nodeType":"YulLiteral","src":"4182:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4172:6:101","nodeType":"YulIdentifier","src":"4172:6:101"},"nativeSrc":"4172:12:101","nodeType":"YulFunctionCall","src":"4172:12:101"},"nativeSrc":"4172:12:101","nodeType":"YulExpressionStatement","src":"4172:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4145:7:101","nodeType":"YulIdentifier","src":"4145:7:101"},{"name":"headStart","nativeSrc":"4154:9:101","nodeType":"YulIdentifier","src":"4154:9:101"}],"functionName":{"name":"sub","nativeSrc":"4141:3:101","nodeType":"YulIdentifier","src":"4141:3:101"},"nativeSrc":"4141:23:101","nodeType":"YulFunctionCall","src":"4141:23:101"},{"kind":"number","nativeSrc":"4166:2:101","nodeType":"YulLiteral","src":"4166:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4137:3:101","nodeType":"YulIdentifier","src":"4137:3:101"},"nativeSrc":"4137:32:101","nodeType":"YulFunctionCall","src":"4137:32:101"},"nativeSrc":"4134:52:101","nodeType":"YulIf","src":"4134:52:101"},{"nativeSrc":"4195:39:101","nodeType":"YulAssignment","src":"4195:39:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4224:9:101","nodeType":"YulIdentifier","src":"4224:9:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"4205:18:101","nodeType":"YulIdentifier","src":"4205:18:101"},"nativeSrc":"4205:29:101","nodeType":"YulFunctionCall","src":"4205:29:101"},"variableNames":[{"name":"value0","nativeSrc":"4195:6:101","nodeType":"YulIdentifier","src":"4195:6:101"}]},{"nativeSrc":"4243:48:101","nodeType":"YulAssignment","src":"4243:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4276:9:101","nodeType":"YulIdentifier","src":"4276:9:101"},{"kind":"number","nativeSrc":"4287:2:101","nodeType":"YulLiteral","src":"4287:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4272:3:101","nodeType":"YulIdentifier","src":"4272:3:101"},"nativeSrc":"4272:18:101","nodeType":"YulFunctionCall","src":"4272:18:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"4253:18:101","nodeType":"YulIdentifier","src":"4253:18:101"},"nativeSrc":"4253:38:101","nodeType":"YulFunctionCall","src":"4253:38:101"},"variableNames":[{"name":"value1","nativeSrc":"4243:6:101","nodeType":"YulIdentifier","src":"4243:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"4037:260:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4082:9:101","nodeType":"YulTypedName","src":"4082:9:101","type":""},{"name":"dataEnd","nativeSrc":"4093:7:101","nodeType":"YulTypedName","src":"4093:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4105:6:101","nodeType":"YulTypedName","src":"4105:6:101","type":""},{"name":"value1","nativeSrc":"4113:6:101","nodeType":"YulTypedName","src":"4113:6:101","type":""}],"src":"4037:260:101"},{"body":{"nativeSrc":"4383:103:101","nodeType":"YulBlock","src":"4383:103:101","statements":[{"body":{"nativeSrc":"4429:16:101","nodeType":"YulBlock","src":"4429:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4438:1:101","nodeType":"YulLiteral","src":"4438:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4441:1:101","nodeType":"YulLiteral","src":"4441:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4431:6:101","nodeType":"YulIdentifier","src":"4431:6:101"},"nativeSrc":"4431:12:101","nodeType":"YulFunctionCall","src":"4431:12:101"},"nativeSrc":"4431:12:101","nodeType":"YulExpressionStatement","src":"4431:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4404:7:101","nodeType":"YulIdentifier","src":"4404:7:101"},{"name":"headStart","nativeSrc":"4413:9:101","nodeType":"YulIdentifier","src":"4413:9:101"}],"functionName":{"name":"sub","nativeSrc":"4400:3:101","nodeType":"YulIdentifier","src":"4400:3:101"},"nativeSrc":"4400:23:101","nodeType":"YulFunctionCall","src":"4400:23:101"},{"kind":"number","nativeSrc":"4425:2:101","nodeType":"YulLiteral","src":"4425:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"4396:3:101","nodeType":"YulIdentifier","src":"4396:3:101"},"nativeSrc":"4396:32:101","nodeType":"YulFunctionCall","src":"4396:32:101"},"nativeSrc":"4393:52:101","nodeType":"YulIf","src":"4393:52:101"},{"nativeSrc":"4454:26:101","nodeType":"YulAssignment","src":"4454:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4470:9:101","nodeType":"YulIdentifier","src":"4470:9:101"}],"functionName":{"name":"mload","nativeSrc":"4464:5:101","nodeType":"YulIdentifier","src":"4464:5:101"},"nativeSrc":"4464:16:101","nodeType":"YulFunctionCall","src":"4464:16:101"},"variableNames":[{"name":"value0","nativeSrc":"4454:6:101","nodeType":"YulIdentifier","src":"4454:6:101"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"4302:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4349:9:101","nodeType":"YulTypedName","src":"4349:9:101","type":""},{"name":"dataEnd","nativeSrc":"4360:7:101","nodeType":"YulTypedName","src":"4360:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4372:6:101","nodeType":"YulTypedName","src":"4372:6:101","type":""}],"src":"4302:184:101"},{"body":{"nativeSrc":"4546:325:101","nodeType":"YulBlock","src":"4546:325:101","statements":[{"nativeSrc":"4556:22:101","nodeType":"YulAssignment","src":"4556:22:101","value":{"arguments":[{"kind":"number","nativeSrc":"4570:1:101","nodeType":"YulLiteral","src":"4570:1:101","type":"","value":"1"},{"name":"data","nativeSrc":"4573:4:101","nodeType":"YulIdentifier","src":"4573:4:101"}],"functionName":{"name":"shr","nativeSrc":"4566:3:101","nodeType":"YulIdentifier","src":"4566:3:101"},"nativeSrc":"4566:12:101","nodeType":"YulFunctionCall","src":"4566:12:101"},"variableNames":[{"name":"length","nativeSrc":"4556:6:101","nodeType":"YulIdentifier","src":"4556:6:101"}]},{"nativeSrc":"4587:38:101","nodeType":"YulVariableDeclaration","src":"4587:38:101","value":{"arguments":[{"name":"data","nativeSrc":"4617:4:101","nodeType":"YulIdentifier","src":"4617:4:101"},{"kind":"number","nativeSrc":"4623:1:101","nodeType":"YulLiteral","src":"4623:1:101","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"4613:3:101","nodeType":"YulIdentifier","src":"4613:3:101"},"nativeSrc":"4613:12:101","nodeType":"YulFunctionCall","src":"4613:12:101"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"4591:18:101","nodeType":"YulTypedName","src":"4591:18:101","type":""}]},{"body":{"nativeSrc":"4664:31:101","nodeType":"YulBlock","src":"4664:31:101","statements":[{"nativeSrc":"4666:27:101","nodeType":"YulAssignment","src":"4666:27:101","value":{"arguments":[{"name":"length","nativeSrc":"4680:6:101","nodeType":"YulIdentifier","src":"4680:6:101"},{"kind":"number","nativeSrc":"4688:4:101","nodeType":"YulLiteral","src":"4688:4:101","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"4676:3:101","nodeType":"YulIdentifier","src":"4676:3:101"},"nativeSrc":"4676:17:101","nodeType":"YulFunctionCall","src":"4676:17:101"},"variableNames":[{"name":"length","nativeSrc":"4666:6:101","nodeType":"YulIdentifier","src":"4666:6:101"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"4644:18:101","nodeType":"YulIdentifier","src":"4644:18:101"}],"functionName":{"name":"iszero","nativeSrc":"4637:6:101","nodeType":"YulIdentifier","src":"4637:6:101"},"nativeSrc":"4637:26:101","nodeType":"YulFunctionCall","src":"4637:26:101"},"nativeSrc":"4634:61:101","nodeType":"YulIf","src":"4634:61:101"},{"body":{"nativeSrc":"4754:111:101","nodeType":"YulBlock","src":"4754:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4775:1:101","nodeType":"YulLiteral","src":"4775:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4782:3:101","nodeType":"YulLiteral","src":"4782:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"4787:10:101","nodeType":"YulLiteral","src":"4787:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4778:3:101","nodeType":"YulIdentifier","src":"4778:3:101"},"nativeSrc":"4778:20:101","nodeType":"YulFunctionCall","src":"4778:20:101"}],"functionName":{"name":"mstore","nativeSrc":"4768:6:101","nodeType":"YulIdentifier","src":"4768:6:101"},"nativeSrc":"4768:31:101","nodeType":"YulFunctionCall","src":"4768:31:101"},"nativeSrc":"4768:31:101","nodeType":"YulExpressionStatement","src":"4768:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4819:1:101","nodeType":"YulLiteral","src":"4819:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"4822:4:101","nodeType":"YulLiteral","src":"4822:4:101","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"4812:6:101","nodeType":"YulIdentifier","src":"4812:6:101"},"nativeSrc":"4812:15:101","nodeType":"YulFunctionCall","src":"4812:15:101"},"nativeSrc":"4812:15:101","nodeType":"YulExpressionStatement","src":"4812:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4847:1:101","nodeType":"YulLiteral","src":"4847:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4850:4:101","nodeType":"YulLiteral","src":"4850:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4840:6:101","nodeType":"YulIdentifier","src":"4840:6:101"},"nativeSrc":"4840:15:101","nodeType":"YulFunctionCall","src":"4840:15:101"},"nativeSrc":"4840:15:101","nodeType":"YulExpressionStatement","src":"4840:15:101"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"4710:18:101","nodeType":"YulIdentifier","src":"4710:18:101"},{"arguments":[{"name":"length","nativeSrc":"4733:6:101","nodeType":"YulIdentifier","src":"4733:6:101"},{"kind":"number","nativeSrc":"4741:2:101","nodeType":"YulLiteral","src":"4741:2:101","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"4730:2:101","nodeType":"YulIdentifier","src":"4730:2:101"},"nativeSrc":"4730:14:101","nodeType":"YulFunctionCall","src":"4730:14:101"}],"functionName":{"name":"eq","nativeSrc":"4707:2:101","nodeType":"YulIdentifier","src":"4707:2:101"},"nativeSrc":"4707:38:101","nodeType":"YulFunctionCall","src":"4707:38:101"},"nativeSrc":"4704:161:101","nodeType":"YulIf","src":"4704:161:101"}]},"name":"extract_byte_array_length","nativeSrc":"4491:380:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"4526:4:101","nodeType":"YulTypedName","src":"4526:4:101","type":""}],"returnVariables":[{"name":"length","nativeSrc":"4535:6:101","nodeType":"YulTypedName","src":"4535:6:101","type":""}],"src":"4491:380:101"},{"body":{"nativeSrc":"4908:95:101","nodeType":"YulBlock","src":"4908:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4925:1:101","nodeType":"YulLiteral","src":"4925:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4932:3:101","nodeType":"YulLiteral","src":"4932:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"4937:10:101","nodeType":"YulLiteral","src":"4937:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4928:3:101","nodeType":"YulIdentifier","src":"4928:3:101"},"nativeSrc":"4928:20:101","nodeType":"YulFunctionCall","src":"4928:20:101"}],"functionName":{"name":"mstore","nativeSrc":"4918:6:101","nodeType":"YulIdentifier","src":"4918:6:101"},"nativeSrc":"4918:31:101","nodeType":"YulFunctionCall","src":"4918:31:101"},"nativeSrc":"4918:31:101","nodeType":"YulExpressionStatement","src":"4918:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4965:1:101","nodeType":"YulLiteral","src":"4965:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"4968:4:101","nodeType":"YulLiteral","src":"4968:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"4958:6:101","nodeType":"YulIdentifier","src":"4958:6:101"},"nativeSrc":"4958:15:101","nodeType":"YulFunctionCall","src":"4958:15:101"},"nativeSrc":"4958:15:101","nodeType":"YulExpressionStatement","src":"4958:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4989:1:101","nodeType":"YulLiteral","src":"4989:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4992:4:101","nodeType":"YulLiteral","src":"4992:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4982:6:101","nodeType":"YulIdentifier","src":"4982:6:101"},"nativeSrc":"4982:15:101","nodeType":"YulFunctionCall","src":"4982:15:101"},"nativeSrc":"4982:15:101","nodeType":"YulExpressionStatement","src":"4982:15:101"}]},"name":"panic_error_0x11","nativeSrc":"4876:127:101","nodeType":"YulFunctionDefinition","src":"4876:127:101"},{"body":{"nativeSrc":"5054:102:101","nodeType":"YulBlock","src":"5054:102:101","statements":[{"nativeSrc":"5064:38:101","nodeType":"YulAssignment","src":"5064:38:101","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"5079:1:101","nodeType":"YulIdentifier","src":"5079:1:101"},{"kind":"number","nativeSrc":"5082:4:101","nodeType":"YulLiteral","src":"5082:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"5075:3:101","nodeType":"YulIdentifier","src":"5075:3:101"},"nativeSrc":"5075:12:101","nodeType":"YulFunctionCall","src":"5075:12:101"},{"arguments":[{"name":"y","nativeSrc":"5093:1:101","nodeType":"YulIdentifier","src":"5093:1:101"},{"kind":"number","nativeSrc":"5096:4:101","nodeType":"YulLiteral","src":"5096:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"5089:3:101","nodeType":"YulIdentifier","src":"5089:3:101"},"nativeSrc":"5089:12:101","nodeType":"YulFunctionCall","src":"5089:12:101"}],"functionName":{"name":"add","nativeSrc":"5071:3:101","nodeType":"YulIdentifier","src":"5071:3:101"},"nativeSrc":"5071:31:101","nodeType":"YulFunctionCall","src":"5071:31:101"},"variableNames":[{"name":"sum","nativeSrc":"5064:3:101","nodeType":"YulIdentifier","src":"5064:3:101"}]},{"body":{"nativeSrc":"5128:22:101","nodeType":"YulBlock","src":"5128:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"5130:16:101","nodeType":"YulIdentifier","src":"5130:16:101"},"nativeSrc":"5130:18:101","nodeType":"YulFunctionCall","src":"5130:18:101"},"nativeSrc":"5130:18:101","nodeType":"YulExpressionStatement","src":"5130:18:101"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"5117:3:101","nodeType":"YulIdentifier","src":"5117:3:101"},{"kind":"number","nativeSrc":"5122:4:101","nodeType":"YulLiteral","src":"5122:4:101","type":"","value":"0xff"}],"functionName":{"name":"gt","nativeSrc":"5114:2:101","nodeType":"YulIdentifier","src":"5114:2:101"},"nativeSrc":"5114:13:101","nodeType":"YulFunctionCall","src":"5114:13:101"},"nativeSrc":"5111:39:101","nodeType":"YulIf","src":"5111:39:101"}]},"name":"checked_add_t_uint8","nativeSrc":"5008:148:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"5037:1:101","nodeType":"YulTypedName","src":"5037:1:101","type":""},{"name":"y","nativeSrc":"5040:1:101","nodeType":"YulTypedName","src":"5040:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"5046:3:101","nodeType":"YulTypedName","src":"5046:3:101","type":""}],"src":"5008:148:101"},{"body":{"nativeSrc":"5210:79:101","nodeType":"YulBlock","src":"5210:79:101","statements":[{"nativeSrc":"5220:17:101","nodeType":"YulAssignment","src":"5220:17:101","value":{"arguments":[{"name":"x","nativeSrc":"5232:1:101","nodeType":"YulIdentifier","src":"5232:1:101"},{"name":"y","nativeSrc":"5235:1:101","nodeType":"YulIdentifier","src":"5235:1:101"}],"functionName":{"name":"sub","nativeSrc":"5228:3:101","nodeType":"YulIdentifier","src":"5228:3:101"},"nativeSrc":"5228:9:101","nodeType":"YulFunctionCall","src":"5228:9:101"},"variableNames":[{"name":"diff","nativeSrc":"5220:4:101","nodeType":"YulIdentifier","src":"5220:4:101"}]},{"body":{"nativeSrc":"5261:22:101","nodeType":"YulBlock","src":"5261:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"5263:16:101","nodeType":"YulIdentifier","src":"5263:16:101"},"nativeSrc":"5263:18:101","nodeType":"YulFunctionCall","src":"5263:18:101"},"nativeSrc":"5263:18:101","nodeType":"YulExpressionStatement","src":"5263:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"5252:4:101","nodeType":"YulIdentifier","src":"5252:4:101"},{"name":"x","nativeSrc":"5258:1:101","nodeType":"YulIdentifier","src":"5258:1:101"}],"functionName":{"name":"gt","nativeSrc":"5249:2:101","nodeType":"YulIdentifier","src":"5249:2:101"},"nativeSrc":"5249:11:101","nodeType":"YulFunctionCall","src":"5249:11:101"},"nativeSrc":"5246:37:101","nodeType":"YulIf","src":"5246:37:101"}]},"name":"checked_sub_t_uint256","nativeSrc":"5161:128:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"5192:1:101","nodeType":"YulTypedName","src":"5192:1:101","type":""},{"name":"y","nativeSrc":"5195:1:101","nodeType":"YulTypedName","src":"5195:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"5201:4:101","nodeType":"YulTypedName","src":"5201:4:101","type":""}],"src":"5161:128:101"},{"body":{"nativeSrc":"5451:188:101","nodeType":"YulBlock","src":"5451:188:101","statements":[{"nativeSrc":"5461:26:101","nodeType":"YulAssignment","src":"5461:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5473:9:101","nodeType":"YulIdentifier","src":"5473:9:101"},{"kind":"number","nativeSrc":"5484:2:101","nodeType":"YulLiteral","src":"5484:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5469:3:101","nodeType":"YulIdentifier","src":"5469:3:101"},"nativeSrc":"5469:18:101","nodeType":"YulFunctionCall","src":"5469:18:101"},"variableNames":[{"name":"tail","nativeSrc":"5461:4:101","nodeType":"YulIdentifier","src":"5461:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5503:9:101","nodeType":"YulIdentifier","src":"5503:9:101"},{"arguments":[{"name":"value0","nativeSrc":"5518:6:101","nodeType":"YulIdentifier","src":"5518:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5534:3:101","nodeType":"YulLiteral","src":"5534:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"5539:1:101","nodeType":"YulLiteral","src":"5539:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5530:3:101","nodeType":"YulIdentifier","src":"5530:3:101"},"nativeSrc":"5530:11:101","nodeType":"YulFunctionCall","src":"5530:11:101"},{"kind":"number","nativeSrc":"5543:1:101","nodeType":"YulLiteral","src":"5543:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5526:3:101","nodeType":"YulIdentifier","src":"5526:3:101"},"nativeSrc":"5526:19:101","nodeType":"YulFunctionCall","src":"5526:19:101"}],"functionName":{"name":"and","nativeSrc":"5514:3:101","nodeType":"YulIdentifier","src":"5514:3:101"},"nativeSrc":"5514:32:101","nodeType":"YulFunctionCall","src":"5514:32:101"}],"functionName":{"name":"mstore","nativeSrc":"5496:6:101","nodeType":"YulIdentifier","src":"5496:6:101"},"nativeSrc":"5496:51:101","nodeType":"YulFunctionCall","src":"5496:51:101"},"nativeSrc":"5496:51:101","nodeType":"YulExpressionStatement","src":"5496:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5567:9:101","nodeType":"YulIdentifier","src":"5567:9:101"},{"kind":"number","nativeSrc":"5578:2:101","nodeType":"YulLiteral","src":"5578:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5563:3:101","nodeType":"YulIdentifier","src":"5563:3:101"},"nativeSrc":"5563:18:101","nodeType":"YulFunctionCall","src":"5563:18:101"},{"name":"value1","nativeSrc":"5583:6:101","nodeType":"YulIdentifier","src":"5583:6:101"}],"functionName":{"name":"mstore","nativeSrc":"5556:6:101","nodeType":"YulIdentifier","src":"5556:6:101"},"nativeSrc":"5556:34:101","nodeType":"YulFunctionCall","src":"5556:34:101"},"nativeSrc":"5556:34:101","nodeType":"YulExpressionStatement","src":"5556:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5610:9:101","nodeType":"YulIdentifier","src":"5610:9:101"},{"kind":"number","nativeSrc":"5621:2:101","nodeType":"YulLiteral","src":"5621:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5606:3:101","nodeType":"YulIdentifier","src":"5606:3:101"},"nativeSrc":"5606:18:101","nodeType":"YulFunctionCall","src":"5606:18:101"},{"name":"value2","nativeSrc":"5626:6:101","nodeType":"YulIdentifier","src":"5626:6:101"}],"functionName":{"name":"mstore","nativeSrc":"5599:6:101","nodeType":"YulIdentifier","src":"5599:6:101"},"nativeSrc":"5599:34:101","nodeType":"YulFunctionCall","src":"5599:34:101"},"nativeSrc":"5599:34:101","nodeType":"YulExpressionStatement","src":"5599:34:101"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"5294:345:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5404:9:101","nodeType":"YulTypedName","src":"5404:9:101","type":""},{"name":"value2","nativeSrc":"5415:6:101","nodeType":"YulTypedName","src":"5415:6:101","type":""},{"name":"value1","nativeSrc":"5423:6:101","nodeType":"YulTypedName","src":"5423:6:101","type":""},{"name":"value0","nativeSrc":"5431:6:101","nodeType":"YulTypedName","src":"5431:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5442:4:101","nodeType":"YulTypedName","src":"5442:4:101","type":""}],"src":"5294:345:101"},{"body":{"nativeSrc":"5773:145:101","nodeType":"YulBlock","src":"5773:145:101","statements":[{"nativeSrc":"5783:26:101","nodeType":"YulAssignment","src":"5783:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5795:9:101","nodeType":"YulIdentifier","src":"5795:9:101"},{"kind":"number","nativeSrc":"5806:2:101","nodeType":"YulLiteral","src":"5806:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5791:3:101","nodeType":"YulIdentifier","src":"5791:3:101"},"nativeSrc":"5791:18:101","nodeType":"YulFunctionCall","src":"5791:18:101"},"variableNames":[{"name":"tail","nativeSrc":"5783:4:101","nodeType":"YulIdentifier","src":"5783:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5825:9:101","nodeType":"YulIdentifier","src":"5825:9:101"},{"arguments":[{"name":"value0","nativeSrc":"5840:6:101","nodeType":"YulIdentifier","src":"5840:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5856:3:101","nodeType":"YulLiteral","src":"5856:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"5861:1:101","nodeType":"YulLiteral","src":"5861:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5852:3:101","nodeType":"YulIdentifier","src":"5852:3:101"},"nativeSrc":"5852:11:101","nodeType":"YulFunctionCall","src":"5852:11:101"},{"kind":"number","nativeSrc":"5865:1:101","nodeType":"YulLiteral","src":"5865:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5848:3:101","nodeType":"YulIdentifier","src":"5848:3:101"},"nativeSrc":"5848:19:101","nodeType":"YulFunctionCall","src":"5848:19:101"}],"functionName":{"name":"and","nativeSrc":"5836:3:101","nodeType":"YulIdentifier","src":"5836:3:101"},"nativeSrc":"5836:32:101","nodeType":"YulFunctionCall","src":"5836:32:101"}],"functionName":{"name":"mstore","nativeSrc":"5818:6:101","nodeType":"YulIdentifier","src":"5818:6:101"},"nativeSrc":"5818:51:101","nodeType":"YulFunctionCall","src":"5818:51:101"},"nativeSrc":"5818:51:101","nodeType":"YulExpressionStatement","src":"5818:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5889:9:101","nodeType":"YulIdentifier","src":"5889:9:101"},{"kind":"number","nativeSrc":"5900:2:101","nodeType":"YulLiteral","src":"5900:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5885:3:101","nodeType":"YulIdentifier","src":"5885:3:101"},"nativeSrc":"5885:18:101","nodeType":"YulFunctionCall","src":"5885:18:101"},{"name":"value1","nativeSrc":"5905:6:101","nodeType":"YulIdentifier","src":"5905:6:101"}],"functionName":{"name":"mstore","nativeSrc":"5878:6:101","nodeType":"YulIdentifier","src":"5878:6:101"},"nativeSrc":"5878:34:101","nodeType":"YulFunctionCall","src":"5878:34:101"},"nativeSrc":"5878:34:101","nodeType":"YulExpressionStatement","src":"5878:34:101"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"5644:274:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5734:9:101","nodeType":"YulTypedName","src":"5734:9:101","type":""},{"name":"value1","nativeSrc":"5745:6:101","nodeType":"YulTypedName","src":"5745:6:101","type":""},{"name":"value0","nativeSrc":"5753:6:101","nodeType":"YulTypedName","src":"5753:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5764:4:101","nodeType":"YulTypedName","src":"5764:4:101","type":""}],"src":"5644:274:101"},{"body":{"nativeSrc":"5966:93:101","nodeType":"YulBlock","src":"5966:93:101","statements":[{"body":{"nativeSrc":"6002:22:101","nodeType":"YulBlock","src":"6002:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"6004:16:101","nodeType":"YulIdentifier","src":"6004:16:101"},"nativeSrc":"6004:18:101","nodeType":"YulFunctionCall","src":"6004:18:101"},"nativeSrc":"6004:18:101","nodeType":"YulExpressionStatement","src":"6004:18:101"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"5982:5:101","nodeType":"YulIdentifier","src":"5982:5:101"},{"arguments":[{"kind":"number","nativeSrc":"5993:3:101","nodeType":"YulLiteral","src":"5993:3:101","type":"","value":"255"},{"kind":"number","nativeSrc":"5998:1:101","nodeType":"YulLiteral","src":"5998:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5989:3:101","nodeType":"YulIdentifier","src":"5989:3:101"},"nativeSrc":"5989:11:101","nodeType":"YulFunctionCall","src":"5989:11:101"}],"functionName":{"name":"eq","nativeSrc":"5979:2:101","nodeType":"YulIdentifier","src":"5979:2:101"},"nativeSrc":"5979:22:101","nodeType":"YulFunctionCall","src":"5979:22:101"},"nativeSrc":"5976:48:101","nodeType":"YulIf","src":"5976:48:101"},{"nativeSrc":"6033:20:101","nodeType":"YulAssignment","src":"6033:20:101","value":{"arguments":[{"kind":"number","nativeSrc":"6044:1:101","nodeType":"YulLiteral","src":"6044:1:101","type":"","value":"0"},{"name":"value","nativeSrc":"6047:5:101","nodeType":"YulIdentifier","src":"6047:5:101"}],"functionName":{"name":"sub","nativeSrc":"6040:3:101","nodeType":"YulIdentifier","src":"6040:3:101"},"nativeSrc":"6040:13:101","nodeType":"YulFunctionCall","src":"6040:13:101"},"variableNames":[{"name":"ret","nativeSrc":"6033:3:101","nodeType":"YulIdentifier","src":"6033:3:101"}]}]},"name":"negate_t_int256","nativeSrc":"5923:136:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"5948:5:101","nodeType":"YulTypedName","src":"5948:5:101","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"5958:3:101","nodeType":"YulTypedName","src":"5958:3:101","type":""}],"src":"5923:136:101"},{"body":{"nativeSrc":"6096:95:101","nodeType":"YulBlock","src":"6096:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6113:1:101","nodeType":"YulLiteral","src":"6113:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"6120:3:101","nodeType":"YulLiteral","src":"6120:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"6125:10:101","nodeType":"YulLiteral","src":"6125:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"6116:3:101","nodeType":"YulIdentifier","src":"6116:3:101"},"nativeSrc":"6116:20:101","nodeType":"YulFunctionCall","src":"6116:20:101"}],"functionName":{"name":"mstore","nativeSrc":"6106:6:101","nodeType":"YulIdentifier","src":"6106:6:101"},"nativeSrc":"6106:31:101","nodeType":"YulFunctionCall","src":"6106:31:101"},"nativeSrc":"6106:31:101","nodeType":"YulExpressionStatement","src":"6106:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6153:1:101","nodeType":"YulLiteral","src":"6153:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"6156:4:101","nodeType":"YulLiteral","src":"6156:4:101","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"6146:6:101","nodeType":"YulIdentifier","src":"6146:6:101"},"nativeSrc":"6146:15:101","nodeType":"YulFunctionCall","src":"6146:15:101"},"nativeSrc":"6146:15:101","nodeType":"YulExpressionStatement","src":"6146:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6177:1:101","nodeType":"YulLiteral","src":"6177:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6180:4:101","nodeType":"YulLiteral","src":"6180:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"6170:6:101","nodeType":"YulIdentifier","src":"6170:6:101"},"nativeSrc":"6170:15:101","nodeType":"YulFunctionCall","src":"6170:15:101"},"nativeSrc":"6170:15:101","nodeType":"YulExpressionStatement","src":"6170:15:101"}]},"name":"panic_error_0x21","nativeSrc":"6064:127:101","nodeType":"YulFunctionDefinition","src":"6064:127:101"},{"body":{"nativeSrc":"6244:77:101","nodeType":"YulBlock","src":"6244:77:101","statements":[{"nativeSrc":"6254:16:101","nodeType":"YulAssignment","src":"6254:16:101","value":{"arguments":[{"name":"x","nativeSrc":"6265:1:101","nodeType":"YulIdentifier","src":"6265:1:101"},{"name":"y","nativeSrc":"6268:1:101","nodeType":"YulIdentifier","src":"6268:1:101"}],"functionName":{"name":"add","nativeSrc":"6261:3:101","nodeType":"YulIdentifier","src":"6261:3:101"},"nativeSrc":"6261:9:101","nodeType":"YulFunctionCall","src":"6261:9:101"},"variableNames":[{"name":"sum","nativeSrc":"6254:3:101","nodeType":"YulIdentifier","src":"6254:3:101"}]},{"body":{"nativeSrc":"6293:22:101","nodeType":"YulBlock","src":"6293:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"6295:16:101","nodeType":"YulIdentifier","src":"6295:16:101"},"nativeSrc":"6295:18:101","nodeType":"YulFunctionCall","src":"6295:18:101"},"nativeSrc":"6295:18:101","nodeType":"YulExpressionStatement","src":"6295:18:101"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"6285:1:101","nodeType":"YulIdentifier","src":"6285:1:101"},{"name":"sum","nativeSrc":"6288:3:101","nodeType":"YulIdentifier","src":"6288:3:101"}],"functionName":{"name":"gt","nativeSrc":"6282:2:101","nodeType":"YulIdentifier","src":"6282:2:101"},"nativeSrc":"6282:10:101","nodeType":"YulFunctionCall","src":"6282:10:101"},"nativeSrc":"6279:36:101","nodeType":"YulIf","src":"6279:36:101"}]},"name":"checked_add_t_uint256","nativeSrc":"6196:125:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"6227:1:101","nodeType":"YulTypedName","src":"6227:1:101","type":""},{"name":"y","nativeSrc":"6230:1:101","nodeType":"YulTypedName","src":"6230:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"6236:3:101","nodeType":"YulTypedName","src":"6236:3:101","type":""}],"src":"6196:125:101"},{"body":{"nativeSrc":"6395:306:101","nodeType":"YulBlock","src":"6395:306:101","statements":[{"nativeSrc":"6405:10:101","nodeType":"YulAssignment","src":"6405:10:101","value":{"kind":"number","nativeSrc":"6414:1:101","nodeType":"YulLiteral","src":"6414:1:101","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"6405:5:101","nodeType":"YulIdentifier","src":"6405:5:101"}]},{"nativeSrc":"6424:13:101","nodeType":"YulAssignment","src":"6424:13:101","value":{"name":"_base","nativeSrc":"6432:5:101","nodeType":"YulIdentifier","src":"6432:5:101"},"variableNames":[{"name":"base","nativeSrc":"6424:4:101","nodeType":"YulIdentifier","src":"6424:4:101"}]},{"body":{"nativeSrc":"6482:213:101","nodeType":"YulBlock","src":"6482:213:101","statements":[{"body":{"nativeSrc":"6524:22:101","nodeType":"YulBlock","src":"6524:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"6526:16:101","nodeType":"YulIdentifier","src":"6526:16:101"},"nativeSrc":"6526:18:101","nodeType":"YulFunctionCall","src":"6526:18:101"},"nativeSrc":"6526:18:101","nodeType":"YulExpressionStatement","src":"6526:18:101"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"6502:4:101","nodeType":"YulIdentifier","src":"6502:4:101"},{"arguments":[{"name":"max","nativeSrc":"6512:3:101","nodeType":"YulIdentifier","src":"6512:3:101"},{"name":"base","nativeSrc":"6517:4:101","nodeType":"YulIdentifier","src":"6517:4:101"}],"functionName":{"name":"div","nativeSrc":"6508:3:101","nodeType":"YulIdentifier","src":"6508:3:101"},"nativeSrc":"6508:14:101","nodeType":"YulFunctionCall","src":"6508:14:101"}],"functionName":{"name":"gt","nativeSrc":"6499:2:101","nodeType":"YulIdentifier","src":"6499:2:101"},"nativeSrc":"6499:24:101","nodeType":"YulFunctionCall","src":"6499:24:101"},"nativeSrc":"6496:50:101","nodeType":"YulIf","src":"6496:50:101"},{"body":{"nativeSrc":"6579:29:101","nodeType":"YulBlock","src":"6579:29:101","statements":[{"nativeSrc":"6581:25:101","nodeType":"YulAssignment","src":"6581:25:101","value":{"arguments":[{"name":"power","nativeSrc":"6594:5:101","nodeType":"YulIdentifier","src":"6594:5:101"},{"name":"base","nativeSrc":"6601:4:101","nodeType":"YulIdentifier","src":"6601:4:101"}],"functionName":{"name":"mul","nativeSrc":"6590:3:101","nodeType":"YulIdentifier","src":"6590:3:101"},"nativeSrc":"6590:16:101","nodeType":"YulFunctionCall","src":"6590:16:101"},"variableNames":[{"name":"power","nativeSrc":"6581:5:101","nodeType":"YulIdentifier","src":"6581:5:101"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"6566:8:101","nodeType":"YulIdentifier","src":"6566:8:101"},{"kind":"number","nativeSrc":"6576:1:101","nodeType":"YulLiteral","src":"6576:1:101","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"6562:3:101","nodeType":"YulIdentifier","src":"6562:3:101"},"nativeSrc":"6562:16:101","nodeType":"YulFunctionCall","src":"6562:16:101"},"nativeSrc":"6559:49:101","nodeType":"YulIf","src":"6559:49:101"},{"nativeSrc":"6621:23:101","nodeType":"YulAssignment","src":"6621:23:101","value":{"arguments":[{"name":"base","nativeSrc":"6633:4:101","nodeType":"YulIdentifier","src":"6633:4:101"},{"name":"base","nativeSrc":"6639:4:101","nodeType":"YulIdentifier","src":"6639:4:101"}],"functionName":{"name":"mul","nativeSrc":"6629:3:101","nodeType":"YulIdentifier","src":"6629:3:101"},"nativeSrc":"6629:15:101","nodeType":"YulFunctionCall","src":"6629:15:101"},"variableNames":[{"name":"base","nativeSrc":"6621:4:101","nodeType":"YulIdentifier","src":"6621:4:101"}]},{"nativeSrc":"6657:28:101","nodeType":"YulAssignment","src":"6657:28:101","value":{"arguments":[{"kind":"number","nativeSrc":"6673:1:101","nodeType":"YulLiteral","src":"6673:1:101","type":"","value":"1"},{"name":"exponent","nativeSrc":"6676:8:101","nodeType":"YulIdentifier","src":"6676:8:101"}],"functionName":{"name":"shr","nativeSrc":"6669:3:101","nodeType":"YulIdentifier","src":"6669:3:101"},"nativeSrc":"6669:16:101","nodeType":"YulFunctionCall","src":"6669:16:101"},"variableNames":[{"name":"exponent","nativeSrc":"6657:8:101","nodeType":"YulIdentifier","src":"6657:8:101"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"6457:8:101","nodeType":"YulIdentifier","src":"6457:8:101"},{"kind":"number","nativeSrc":"6467:1:101","nodeType":"YulLiteral","src":"6467:1:101","type":"","value":"1"}],"functionName":{"name":"gt","nativeSrc":"6454:2:101","nodeType":"YulIdentifier","src":"6454:2:101"},"nativeSrc":"6454:15:101","nodeType":"YulFunctionCall","src":"6454:15:101"},"nativeSrc":"6446:249:101","nodeType":"YulForLoop","post":{"nativeSrc":"6470:3:101","nodeType":"YulBlock","src":"6470:3:101","statements":[]},"pre":{"nativeSrc":"6450:3:101","nodeType":"YulBlock","src":"6450:3:101","statements":[]},"src":"6446:249:101"}]},"name":"checked_exp_helper","nativeSrc":"6326:375:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"_base","nativeSrc":"6354:5:101","nodeType":"YulTypedName","src":"6354:5:101","type":""},{"name":"exponent","nativeSrc":"6361:8:101","nodeType":"YulTypedName","src":"6361:8:101","type":""},{"name":"max","nativeSrc":"6371:3:101","nodeType":"YulTypedName","src":"6371:3:101","type":""}],"returnVariables":[{"name":"power","nativeSrc":"6379:5:101","nodeType":"YulTypedName","src":"6379:5:101","type":""},{"name":"base","nativeSrc":"6386:4:101","nodeType":"YulTypedName","src":"6386:4:101","type":""}],"src":"6326:375:101"},{"body":{"nativeSrc":"6765:843:101","nodeType":"YulBlock","src":"6765:843:101","statements":[{"body":{"nativeSrc":"6803:52:101","nodeType":"YulBlock","src":"6803:52:101","statements":[{"nativeSrc":"6817:10:101","nodeType":"YulAssignment","src":"6817:10:101","value":{"kind":"number","nativeSrc":"6826:1:101","nodeType":"YulLiteral","src":"6826:1:101","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"6817:5:101","nodeType":"YulIdentifier","src":"6817:5:101"}]},{"nativeSrc":"6840:5:101","nodeType":"YulLeave","src":"6840:5:101"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"6785:8:101","nodeType":"YulIdentifier","src":"6785:8:101"}],"functionName":{"name":"iszero","nativeSrc":"6778:6:101","nodeType":"YulIdentifier","src":"6778:6:101"},"nativeSrc":"6778:16:101","nodeType":"YulFunctionCall","src":"6778:16:101"},"nativeSrc":"6775:80:101","nodeType":"YulIf","src":"6775:80:101"},{"body":{"nativeSrc":"6888:52:101","nodeType":"YulBlock","src":"6888:52:101","statements":[{"nativeSrc":"6902:10:101","nodeType":"YulAssignment","src":"6902:10:101","value":{"kind":"number","nativeSrc":"6911:1:101","nodeType":"YulLiteral","src":"6911:1:101","type":"","value":"0"},"variableNames":[{"name":"power","nativeSrc":"6902:5:101","nodeType":"YulIdentifier","src":"6902:5:101"}]},{"nativeSrc":"6925:5:101","nodeType":"YulLeave","src":"6925:5:101"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"6874:4:101","nodeType":"YulIdentifier","src":"6874:4:101"}],"functionName":{"name":"iszero","nativeSrc":"6867:6:101","nodeType":"YulIdentifier","src":"6867:6:101"},"nativeSrc":"6867:12:101","nodeType":"YulFunctionCall","src":"6867:12:101"},"nativeSrc":"6864:76:101","nodeType":"YulIf","src":"6864:76:101"},{"cases":[{"body":{"nativeSrc":"6976:52:101","nodeType":"YulBlock","src":"6976:52:101","statements":[{"nativeSrc":"6990:10:101","nodeType":"YulAssignment","src":"6990:10:101","value":{"kind":"number","nativeSrc":"6999:1:101","nodeType":"YulLiteral","src":"6999:1:101","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"6990:5:101","nodeType":"YulIdentifier","src":"6990:5:101"}]},{"nativeSrc":"7013:5:101","nodeType":"YulLeave","src":"7013:5:101"}]},"nativeSrc":"6969:59:101","nodeType":"YulCase","src":"6969:59:101","value":{"kind":"number","nativeSrc":"6974:1:101","nodeType":"YulLiteral","src":"6974:1:101","type":"","value":"1"}},{"body":{"nativeSrc":"7044:167:101","nodeType":"YulBlock","src":"7044:167:101","statements":[{"body":{"nativeSrc":"7079:22:101","nodeType":"YulBlock","src":"7079:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"7081:16:101","nodeType":"YulIdentifier","src":"7081:16:101"},"nativeSrc":"7081:18:101","nodeType":"YulFunctionCall","src":"7081:18:101"},"nativeSrc":"7081:18:101","nodeType":"YulExpressionStatement","src":"7081:18:101"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"7064:8:101","nodeType":"YulIdentifier","src":"7064:8:101"},{"kind":"number","nativeSrc":"7074:3:101","nodeType":"YulLiteral","src":"7074:3:101","type":"","value":"255"}],"functionName":{"name":"gt","nativeSrc":"7061:2:101","nodeType":"YulIdentifier","src":"7061:2:101"},"nativeSrc":"7061:17:101","nodeType":"YulFunctionCall","src":"7061:17:101"},"nativeSrc":"7058:43:101","nodeType":"YulIf","src":"7058:43:101"},{"nativeSrc":"7114:25:101","nodeType":"YulAssignment","src":"7114:25:101","value":{"arguments":[{"name":"exponent","nativeSrc":"7127:8:101","nodeType":"YulIdentifier","src":"7127:8:101"},{"kind":"number","nativeSrc":"7137:1:101","nodeType":"YulLiteral","src":"7137:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7123:3:101","nodeType":"YulIdentifier","src":"7123:3:101"},"nativeSrc":"7123:16:101","nodeType":"YulFunctionCall","src":"7123:16:101"},"variableNames":[{"name":"power","nativeSrc":"7114:5:101","nodeType":"YulIdentifier","src":"7114:5:101"}]},{"nativeSrc":"7152:11:101","nodeType":"YulVariableDeclaration","src":"7152:11:101","value":{"kind":"number","nativeSrc":"7162:1:101","nodeType":"YulLiteral","src":"7162:1:101","type":"","value":"0"},"variables":[{"name":"_1","nativeSrc":"7156:2:101","nodeType":"YulTypedName","src":"7156:2:101","type":""}]},{"nativeSrc":"7176:7:101","nodeType":"YulAssignment","src":"7176:7:101","value":{"kind":"number","nativeSrc":"7182:1:101","nodeType":"YulLiteral","src":"7182:1:101","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"7176:2:101","nodeType":"YulIdentifier","src":"7176:2:101"}]},{"nativeSrc":"7196:5:101","nodeType":"YulLeave","src":"7196:5:101"}]},"nativeSrc":"7037:174:101","nodeType":"YulCase","src":"7037:174:101","value":{"kind":"number","nativeSrc":"7042:1:101","nodeType":"YulLiteral","src":"7042:1:101","type":"","value":"2"}}],"expression":{"name":"base","nativeSrc":"6956:4:101","nodeType":"YulIdentifier","src":"6956:4:101"},"nativeSrc":"6949:262:101","nodeType":"YulSwitch","src":"6949:262:101"},{"body":{"nativeSrc":"7309:114:101","nodeType":"YulBlock","src":"7309:114:101","statements":[{"nativeSrc":"7323:28:101","nodeType":"YulAssignment","src":"7323:28:101","value":{"arguments":[{"name":"base","nativeSrc":"7336:4:101","nodeType":"YulIdentifier","src":"7336:4:101"},{"name":"exponent","nativeSrc":"7342:8:101","nodeType":"YulIdentifier","src":"7342:8:101"}],"functionName":{"name":"exp","nativeSrc":"7332:3:101","nodeType":"YulIdentifier","src":"7332:3:101"},"nativeSrc":"7332:19:101","nodeType":"YulFunctionCall","src":"7332:19:101"},"variableNames":[{"name":"power","nativeSrc":"7323:5:101","nodeType":"YulIdentifier","src":"7323:5:101"}]},{"nativeSrc":"7364:11:101","nodeType":"YulVariableDeclaration","src":"7364:11:101","value":{"kind":"number","nativeSrc":"7374:1:101","nodeType":"YulLiteral","src":"7374:1:101","type":"","value":"0"},"variables":[{"name":"_2","nativeSrc":"7368:2:101","nodeType":"YulTypedName","src":"7368:2:101","type":""}]},{"nativeSrc":"7388:7:101","nodeType":"YulAssignment","src":"7388:7:101","value":{"kind":"number","nativeSrc":"7394:1:101","nodeType":"YulLiteral","src":"7394:1:101","type":"","value":"0"},"variableNames":[{"name":"_2","nativeSrc":"7388:2:101","nodeType":"YulIdentifier","src":"7388:2:101"}]},{"nativeSrc":"7408:5:101","nodeType":"YulLeave","src":"7408:5:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"base","nativeSrc":"7233:4:101","nodeType":"YulIdentifier","src":"7233:4:101"},{"kind":"number","nativeSrc":"7239:2:101","nodeType":"YulLiteral","src":"7239:2:101","type":"","value":"11"}],"functionName":{"name":"lt","nativeSrc":"7230:2:101","nodeType":"YulIdentifier","src":"7230:2:101"},"nativeSrc":"7230:12:101","nodeType":"YulFunctionCall","src":"7230:12:101"},{"arguments":[{"name":"exponent","nativeSrc":"7247:8:101","nodeType":"YulIdentifier","src":"7247:8:101"},{"kind":"number","nativeSrc":"7257:2:101","nodeType":"YulLiteral","src":"7257:2:101","type":"","value":"78"}],"functionName":{"name":"lt","nativeSrc":"7244:2:101","nodeType":"YulIdentifier","src":"7244:2:101"},"nativeSrc":"7244:16:101","nodeType":"YulFunctionCall","src":"7244:16:101"}],"functionName":{"name":"and","nativeSrc":"7226:3:101","nodeType":"YulIdentifier","src":"7226:3:101"},"nativeSrc":"7226:35:101","nodeType":"YulFunctionCall","src":"7226:35:101"},{"arguments":[{"arguments":[{"name":"base","nativeSrc":"7270:4:101","nodeType":"YulIdentifier","src":"7270:4:101"},{"kind":"number","nativeSrc":"7276:3:101","nodeType":"YulLiteral","src":"7276:3:101","type":"","value":"307"}],"functionName":{"name":"lt","nativeSrc":"7267:2:101","nodeType":"YulIdentifier","src":"7267:2:101"},"nativeSrc":"7267:13:101","nodeType":"YulFunctionCall","src":"7267:13:101"},{"arguments":[{"name":"exponent","nativeSrc":"7285:8:101","nodeType":"YulIdentifier","src":"7285:8:101"},{"kind":"number","nativeSrc":"7295:2:101","nodeType":"YulLiteral","src":"7295:2:101","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"7282:2:101","nodeType":"YulIdentifier","src":"7282:2:101"},"nativeSrc":"7282:16:101","nodeType":"YulFunctionCall","src":"7282:16:101"}],"functionName":{"name":"and","nativeSrc":"7263:3:101","nodeType":"YulIdentifier","src":"7263:3:101"},"nativeSrc":"7263:36:101","nodeType":"YulFunctionCall","src":"7263:36:101"}],"functionName":{"name":"or","nativeSrc":"7223:2:101","nodeType":"YulIdentifier","src":"7223:2:101"},"nativeSrc":"7223:77:101","nodeType":"YulFunctionCall","src":"7223:77:101"},"nativeSrc":"7220:203:101","nodeType":"YulIf","src":"7220:203:101"},{"nativeSrc":"7432:65:101","nodeType":"YulVariableDeclaration","src":"7432:65:101","value":{"arguments":[{"name":"base","nativeSrc":"7474:4:101","nodeType":"YulIdentifier","src":"7474:4:101"},{"name":"exponent","nativeSrc":"7480:8:101","nodeType":"YulIdentifier","src":"7480:8:101"},{"arguments":[{"kind":"number","nativeSrc":"7494:1:101","nodeType":"YulLiteral","src":"7494:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7490:3:101","nodeType":"YulIdentifier","src":"7490:3:101"},"nativeSrc":"7490:6:101","nodeType":"YulFunctionCall","src":"7490:6:101"}],"functionName":{"name":"checked_exp_helper","nativeSrc":"7455:18:101","nodeType":"YulIdentifier","src":"7455:18:101"},"nativeSrc":"7455:42:101","nodeType":"YulFunctionCall","src":"7455:42:101"},"variables":[{"name":"power_1","nativeSrc":"7436:7:101","nodeType":"YulTypedName","src":"7436:7:101","type":""},{"name":"base_1","nativeSrc":"7445:6:101","nodeType":"YulTypedName","src":"7445:6:101","type":""}]},{"body":{"nativeSrc":"7542:22:101","nodeType":"YulBlock","src":"7542:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"7544:16:101","nodeType":"YulIdentifier","src":"7544:16:101"},"nativeSrc":"7544:18:101","nodeType":"YulFunctionCall","src":"7544:18:101"},"nativeSrc":"7544:18:101","nodeType":"YulExpressionStatement","src":"7544:18:101"}]},"condition":{"arguments":[{"name":"power_1","nativeSrc":"7512:7:101","nodeType":"YulIdentifier","src":"7512:7:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7529:1:101","nodeType":"YulLiteral","src":"7529:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7525:3:101","nodeType":"YulIdentifier","src":"7525:3:101"},"nativeSrc":"7525:6:101","nodeType":"YulFunctionCall","src":"7525:6:101"},{"name":"base_1","nativeSrc":"7533:6:101","nodeType":"YulIdentifier","src":"7533:6:101"}],"functionName":{"name":"div","nativeSrc":"7521:3:101","nodeType":"YulIdentifier","src":"7521:3:101"},"nativeSrc":"7521:19:101","nodeType":"YulFunctionCall","src":"7521:19:101"}],"functionName":{"name":"gt","nativeSrc":"7509:2:101","nodeType":"YulIdentifier","src":"7509:2:101"},"nativeSrc":"7509:32:101","nodeType":"YulFunctionCall","src":"7509:32:101"},"nativeSrc":"7506:58:101","nodeType":"YulIf","src":"7506:58:101"},{"nativeSrc":"7573:29:101","nodeType":"YulAssignment","src":"7573:29:101","value":{"arguments":[{"name":"power_1","nativeSrc":"7586:7:101","nodeType":"YulIdentifier","src":"7586:7:101"},{"name":"base_1","nativeSrc":"7595:6:101","nodeType":"YulIdentifier","src":"7595:6:101"}],"functionName":{"name":"mul","nativeSrc":"7582:3:101","nodeType":"YulIdentifier","src":"7582:3:101"},"nativeSrc":"7582:20:101","nodeType":"YulFunctionCall","src":"7582:20:101"},"variableNames":[{"name":"power","nativeSrc":"7573:5:101","nodeType":"YulIdentifier","src":"7573:5:101"}]}]},"name":"checked_exp_unsigned","nativeSrc":"6706:902:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"6736:4:101","nodeType":"YulTypedName","src":"6736:4:101","type":""},{"name":"exponent","nativeSrc":"6742:8:101","nodeType":"YulTypedName","src":"6742:8:101","type":""}],"returnVariables":[{"name":"power","nativeSrc":"6755:5:101","nodeType":"YulTypedName","src":"6755:5:101","type":""}],"src":"6706:902:101"},{"body":{"nativeSrc":"7681:72:101","nodeType":"YulBlock","src":"7681:72:101","statements":[{"nativeSrc":"7691:56:101","nodeType":"YulAssignment","src":"7691:56:101","value":{"arguments":[{"name":"base","nativeSrc":"7721:4:101","nodeType":"YulIdentifier","src":"7721:4:101"},{"arguments":[{"name":"exponent","nativeSrc":"7731:8:101","nodeType":"YulIdentifier","src":"7731:8:101"},{"kind":"number","nativeSrc":"7741:4:101","nodeType":"YulLiteral","src":"7741:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"7727:3:101","nodeType":"YulIdentifier","src":"7727:3:101"},"nativeSrc":"7727:19:101","nodeType":"YulFunctionCall","src":"7727:19:101"}],"functionName":{"name":"checked_exp_unsigned","nativeSrc":"7700:20:101","nodeType":"YulIdentifier","src":"7700:20:101"},"nativeSrc":"7700:47:101","nodeType":"YulFunctionCall","src":"7700:47:101"},"variableNames":[{"name":"power","nativeSrc":"7691:5:101","nodeType":"YulIdentifier","src":"7691:5:101"}]}]},"name":"checked_exp_t_uint256_t_uint8","nativeSrc":"7613:140:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"7652:4:101","nodeType":"YulTypedName","src":"7652:4:101","type":""},{"name":"exponent","nativeSrc":"7658:8:101","nodeType":"YulTypedName","src":"7658:8:101","type":""}],"returnVariables":[{"name":"power","nativeSrc":"7671:5:101","nodeType":"YulTypedName","src":"7671:5:101","type":""}],"src":"7613:140:101"},{"body":{"nativeSrc":"7888:201:101","nodeType":"YulBlock","src":"7888:201:101","statements":[{"body":{"nativeSrc":"7926:16:101","nodeType":"YulBlock","src":"7926:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7935:1:101","nodeType":"YulLiteral","src":"7935:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7938:1:101","nodeType":"YulLiteral","src":"7938:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7928:6:101","nodeType":"YulIdentifier","src":"7928:6:101"},"nativeSrc":"7928:12:101","nodeType":"YulFunctionCall","src":"7928:12:101"},"nativeSrc":"7928:12:101","nodeType":"YulExpressionStatement","src":"7928:12:101"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"7904:10:101","nodeType":"YulIdentifier","src":"7904:10:101"},{"name":"endIndex","nativeSrc":"7916:8:101","nodeType":"YulIdentifier","src":"7916:8:101"}],"functionName":{"name":"gt","nativeSrc":"7901:2:101","nodeType":"YulIdentifier","src":"7901:2:101"},"nativeSrc":"7901:24:101","nodeType":"YulFunctionCall","src":"7901:24:101"},"nativeSrc":"7898:44:101","nodeType":"YulIf","src":"7898:44:101"},{"body":{"nativeSrc":"7975:16:101","nodeType":"YulBlock","src":"7975:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7984:1:101","nodeType":"YulLiteral","src":"7984:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7987:1:101","nodeType":"YulLiteral","src":"7987:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7977:6:101","nodeType":"YulIdentifier","src":"7977:6:101"},"nativeSrc":"7977:12:101","nodeType":"YulFunctionCall","src":"7977:12:101"},"nativeSrc":"7977:12:101","nodeType":"YulExpressionStatement","src":"7977:12:101"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"7957:8:101","nodeType":"YulIdentifier","src":"7957:8:101"},{"name":"length","nativeSrc":"7967:6:101","nodeType":"YulIdentifier","src":"7967:6:101"}],"functionName":{"name":"gt","nativeSrc":"7954:2:101","nodeType":"YulIdentifier","src":"7954:2:101"},"nativeSrc":"7954:20:101","nodeType":"YulFunctionCall","src":"7954:20:101"},"nativeSrc":"7951:40:101","nodeType":"YulIf","src":"7951:40:101"},{"nativeSrc":"8000:36:101","nodeType":"YulAssignment","src":"8000:36:101","value":{"arguments":[{"name":"offset","nativeSrc":"8017:6:101","nodeType":"YulIdentifier","src":"8017:6:101"},{"name":"startIndex","nativeSrc":"8025:10:101","nodeType":"YulIdentifier","src":"8025:10:101"}],"functionName":{"name":"add","nativeSrc":"8013:3:101","nodeType":"YulIdentifier","src":"8013:3:101"},"nativeSrc":"8013:23:101","nodeType":"YulFunctionCall","src":"8013:23:101"},"variableNames":[{"name":"offsetOut","nativeSrc":"8000:9:101","nodeType":"YulIdentifier","src":"8000:9:101"}]},{"nativeSrc":"8045:38:101","nodeType":"YulAssignment","src":"8045:38:101","value":{"arguments":[{"name":"endIndex","nativeSrc":"8062:8:101","nodeType":"YulIdentifier","src":"8062:8:101"},{"name":"startIndex","nativeSrc":"8072:10:101","nodeType":"YulIdentifier","src":"8072:10:101"}],"functionName":{"name":"sub","nativeSrc":"8058:3:101","nodeType":"YulIdentifier","src":"8058:3:101"},"nativeSrc":"8058:25:101","nodeType":"YulFunctionCall","src":"8058:25:101"},"variableNames":[{"name":"lengthOut","nativeSrc":"8045:9:101","nodeType":"YulIdentifier","src":"8045:9:101"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"7758:331:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"7822:6:101","nodeType":"YulTypedName","src":"7822:6:101","type":""},{"name":"length","nativeSrc":"7830:6:101","nodeType":"YulTypedName","src":"7830:6:101","type":""},{"name":"startIndex","nativeSrc":"7838:10:101","nodeType":"YulTypedName","src":"7838:10:101","type":""},{"name":"endIndex","nativeSrc":"7850:8:101","nodeType":"YulTypedName","src":"7850:8:101","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"7863:9:101","nodeType":"YulTypedName","src":"7863:9:101","type":""},{"name":"lengthOut","nativeSrc":"7874:9:101","nodeType":"YulTypedName","src":"7874:9:101","type":""}],"src":"7758:331:101"},{"body":{"nativeSrc":"8194:238:101","nodeType":"YulBlock","src":"8194:238:101","statements":[{"nativeSrc":"8204:29:101","nodeType":"YulVariableDeclaration","src":"8204:29:101","value":{"arguments":[{"name":"array","nativeSrc":"8227:5:101","nodeType":"YulIdentifier","src":"8227:5:101"}],"functionName":{"name":"calldataload","nativeSrc":"8214:12:101","nodeType":"YulIdentifier","src":"8214:12:101"},"nativeSrc":"8214:19:101","nodeType":"YulFunctionCall","src":"8214:19:101"},"variables":[{"name":"_1","nativeSrc":"8208:2:101","nodeType":"YulTypedName","src":"8208:2:101","type":""}]},{"nativeSrc":"8242:38:101","nodeType":"YulAssignment","src":"8242:38:101","value":{"arguments":[{"name":"_1","nativeSrc":"8255:2:101","nodeType":"YulIdentifier","src":"8255:2:101"},{"arguments":[{"kind":"number","nativeSrc":"8263:3:101","nodeType":"YulLiteral","src":"8263:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"8268:10:101","nodeType":"YulLiteral","src":"8268:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"8259:3:101","nodeType":"YulIdentifier","src":"8259:3:101"},"nativeSrc":"8259:20:101","nodeType":"YulFunctionCall","src":"8259:20:101"}],"functionName":{"name":"and","nativeSrc":"8251:3:101","nodeType":"YulIdentifier","src":"8251:3:101"},"nativeSrc":"8251:29:101","nodeType":"YulFunctionCall","src":"8251:29:101"},"variableNames":[{"name":"value","nativeSrc":"8242:5:101","nodeType":"YulIdentifier","src":"8242:5:101"}]},{"body":{"nativeSrc":"8311:115:101","nodeType":"YulBlock","src":"8311:115:101","statements":[{"nativeSrc":"8325:91:101","nodeType":"YulAssignment","src":"8325:91:101","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"8342:2:101","nodeType":"YulIdentifier","src":"8342:2:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"8354:1:101","nodeType":"YulLiteral","src":"8354:1:101","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"8361:1:101","nodeType":"YulLiteral","src":"8361:1:101","type":"","value":"4"},{"name":"len","nativeSrc":"8364:3:101","nodeType":"YulIdentifier","src":"8364:3:101"}],"functionName":{"name":"sub","nativeSrc":"8357:3:101","nodeType":"YulIdentifier","src":"8357:3:101"},"nativeSrc":"8357:11:101","nodeType":"YulFunctionCall","src":"8357:11:101"}],"functionName":{"name":"shl","nativeSrc":"8350:3:101","nodeType":"YulIdentifier","src":"8350:3:101"},"nativeSrc":"8350:19:101","nodeType":"YulFunctionCall","src":"8350:19:101"},{"arguments":[{"kind":"number","nativeSrc":"8375:3:101","nodeType":"YulLiteral","src":"8375:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"8380:10:101","nodeType":"YulLiteral","src":"8380:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"8371:3:101","nodeType":"YulIdentifier","src":"8371:3:101"},"nativeSrc":"8371:20:101","nodeType":"YulFunctionCall","src":"8371:20:101"}],"functionName":{"name":"shl","nativeSrc":"8346:3:101","nodeType":"YulIdentifier","src":"8346:3:101"},"nativeSrc":"8346:46:101","nodeType":"YulFunctionCall","src":"8346:46:101"}],"functionName":{"name":"and","nativeSrc":"8338:3:101","nodeType":"YulIdentifier","src":"8338:3:101"},"nativeSrc":"8338:55:101","nodeType":"YulFunctionCall","src":"8338:55:101"},{"arguments":[{"kind":"number","nativeSrc":"8399:3:101","nodeType":"YulLiteral","src":"8399:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"8404:10:101","nodeType":"YulLiteral","src":"8404:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"8395:3:101","nodeType":"YulIdentifier","src":"8395:3:101"},"nativeSrc":"8395:20:101","nodeType":"YulFunctionCall","src":"8395:20:101"}],"functionName":{"name":"and","nativeSrc":"8334:3:101","nodeType":"YulIdentifier","src":"8334:3:101"},"nativeSrc":"8334:82:101","nodeType":"YulFunctionCall","src":"8334:82:101"},"variableNames":[{"name":"value","nativeSrc":"8325:5:101","nodeType":"YulIdentifier","src":"8325:5:101"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"8295:3:101","nodeType":"YulIdentifier","src":"8295:3:101"},{"kind":"number","nativeSrc":"8300:1:101","nodeType":"YulLiteral","src":"8300:1:101","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"8292:2:101","nodeType":"YulIdentifier","src":"8292:2:101"},"nativeSrc":"8292:10:101","nodeType":"YulFunctionCall","src":"8292:10:101"},"nativeSrc":"8289:137:101","nodeType":"YulIf","src":"8289:137:101"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4","nativeSrc":"8094:338:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"8169:5:101","nodeType":"YulTypedName","src":"8169:5:101","type":""},{"name":"len","nativeSrc":"8176:3:101","nodeType":"YulTypedName","src":"8176:3:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"8184:5:101","nodeType":"YulTypedName","src":"8184:5:101","type":""}],"src":"8094:338:101"},{"body":{"nativeSrc":"8536:103:101","nodeType":"YulBlock","src":"8536:103:101","statements":[{"nativeSrc":"8546:26:101","nodeType":"YulAssignment","src":"8546:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8558:9:101","nodeType":"YulIdentifier","src":"8558:9:101"},{"kind":"number","nativeSrc":"8569:2:101","nodeType":"YulLiteral","src":"8569:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8554:3:101","nodeType":"YulIdentifier","src":"8554:3:101"},"nativeSrc":"8554:18:101","nodeType":"YulFunctionCall","src":"8554:18:101"},"variableNames":[{"name":"tail","nativeSrc":"8546:4:101","nodeType":"YulIdentifier","src":"8546:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8588:9:101","nodeType":"YulIdentifier","src":"8588:9:101"},{"arguments":[{"name":"value0","nativeSrc":"8603:6:101","nodeType":"YulIdentifier","src":"8603:6:101"},{"arguments":[{"kind":"number","nativeSrc":"8615:3:101","nodeType":"YulLiteral","src":"8615:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"8620:10:101","nodeType":"YulLiteral","src":"8620:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"8611:3:101","nodeType":"YulIdentifier","src":"8611:3:101"},"nativeSrc":"8611:20:101","nodeType":"YulFunctionCall","src":"8611:20:101"}],"functionName":{"name":"and","nativeSrc":"8599:3:101","nodeType":"YulIdentifier","src":"8599:3:101"},"nativeSrc":"8599:33:101","nodeType":"YulFunctionCall","src":"8599:33:101"}],"functionName":{"name":"mstore","nativeSrc":"8581:6:101","nodeType":"YulIdentifier","src":"8581:6:101"},"nativeSrc":"8581:52:101","nodeType":"YulFunctionCall","src":"8581:52:101"},"nativeSrc":"8581:52:101","nodeType":"YulExpressionStatement","src":"8581:52:101"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nativeSrc":"8437:202:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8505:9:101","nodeType":"YulTypedName","src":"8505:9:101","type":""},{"name":"value0","nativeSrc":"8516:6:101","nodeType":"YulTypedName","src":"8516:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8527:4:101","nodeType":"YulTypedName","src":"8527:4:101","type":""}],"src":"8437:202:101"},{"body":{"nativeSrc":"8676:95:101","nodeType":"YulBlock","src":"8676:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8693:1:101","nodeType":"YulLiteral","src":"8693:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"8700:3:101","nodeType":"YulLiteral","src":"8700:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"8705:10:101","nodeType":"YulLiteral","src":"8705:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"8696:3:101","nodeType":"YulIdentifier","src":"8696:3:101"},"nativeSrc":"8696:20:101","nodeType":"YulFunctionCall","src":"8696:20:101"}],"functionName":{"name":"mstore","nativeSrc":"8686:6:101","nodeType":"YulIdentifier","src":"8686:6:101"},"nativeSrc":"8686:31:101","nodeType":"YulFunctionCall","src":"8686:31:101"},"nativeSrc":"8686:31:101","nodeType":"YulExpressionStatement","src":"8686:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8733:1:101","nodeType":"YulLiteral","src":"8733:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"8736:4:101","nodeType":"YulLiteral","src":"8736:4:101","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"8726:6:101","nodeType":"YulIdentifier","src":"8726:6:101"},"nativeSrc":"8726:15:101","nodeType":"YulFunctionCall","src":"8726:15:101"},"nativeSrc":"8726:15:101","nodeType":"YulExpressionStatement","src":"8726:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8757:1:101","nodeType":"YulLiteral","src":"8757:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8760:4:101","nodeType":"YulLiteral","src":"8760:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"8750:6:101","nodeType":"YulIdentifier","src":"8750:6:101"},"nativeSrc":"8750:15:101","nodeType":"YulFunctionCall","src":"8750:15:101"},"nativeSrc":"8750:15:101","nodeType":"YulExpressionStatement","src":"8750:15:101"}]},"name":"panic_error_0x12","nativeSrc":"8644:127:101","nodeType":"YulFunctionDefinition","src":"8644:127:101"},{"body":{"nativeSrc":"8905:119:101","nodeType":"YulBlock","src":"8905:119:101","statements":[{"nativeSrc":"8915:26:101","nodeType":"YulAssignment","src":"8915:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8927:9:101","nodeType":"YulIdentifier","src":"8927:9:101"},{"kind":"number","nativeSrc":"8938:2:101","nodeType":"YulLiteral","src":"8938:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8923:3:101","nodeType":"YulIdentifier","src":"8923:3:101"},"nativeSrc":"8923:18:101","nodeType":"YulFunctionCall","src":"8923:18:101"},"variableNames":[{"name":"tail","nativeSrc":"8915:4:101","nodeType":"YulIdentifier","src":"8915:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8957:9:101","nodeType":"YulIdentifier","src":"8957:9:101"},{"name":"value0","nativeSrc":"8968:6:101","nodeType":"YulIdentifier","src":"8968:6:101"}],"functionName":{"name":"mstore","nativeSrc":"8950:6:101","nodeType":"YulIdentifier","src":"8950:6:101"},"nativeSrc":"8950:25:101","nodeType":"YulFunctionCall","src":"8950:25:101"},"nativeSrc":"8950:25:101","nodeType":"YulExpressionStatement","src":"8950:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8995:9:101","nodeType":"YulIdentifier","src":"8995:9:101"},{"kind":"number","nativeSrc":"9006:2:101","nodeType":"YulLiteral","src":"9006:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8991:3:101","nodeType":"YulIdentifier","src":"8991:3:101"},"nativeSrc":"8991:18:101","nodeType":"YulFunctionCall","src":"8991:18:101"},{"name":"value1","nativeSrc":"9011:6:101","nodeType":"YulIdentifier","src":"9011:6:101"}],"functionName":{"name":"mstore","nativeSrc":"8984:6:101","nodeType":"YulIdentifier","src":"8984:6:101"},"nativeSrc":"8984:34:101","nodeType":"YulFunctionCall","src":"8984:34:101"},"nativeSrc":"8984:34:101","nodeType":"YulExpressionStatement","src":"8984:34:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"8776:248:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8866:9:101","nodeType":"YulTypedName","src":"8866:9:101","type":""},{"name":"value1","nativeSrc":"8877:6:101","nodeType":"YulTypedName","src":"8877:6:101","type":""},{"name":"value0","nativeSrc":"8885:6:101","nodeType":"YulTypedName","src":"8885:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8896:4:101","nodeType":"YulTypedName","src":"8896:4:101","type":""}],"src":"8776:248:101"},{"body":{"nativeSrc":"9065:218:101","nodeType":"YulBlock","src":"9065:218:101","statements":[{"nativeSrc":"9075:23:101","nodeType":"YulVariableDeclaration","src":"9075:23:101","value":{"arguments":[{"name":"y","nativeSrc":"9090:1:101","nodeType":"YulIdentifier","src":"9090:1:101"},{"kind":"number","nativeSrc":"9093:4:101","nodeType":"YulLiteral","src":"9093:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"9086:3:101","nodeType":"YulIdentifier","src":"9086:3:101"},"nativeSrc":"9086:12:101","nodeType":"YulFunctionCall","src":"9086:12:101"},"variables":[{"name":"y_1","nativeSrc":"9079:3:101","nodeType":"YulTypedName","src":"9079:3:101","type":""}]},{"body":{"nativeSrc":"9130:111:101","nodeType":"YulBlock","src":"9130:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9151:1:101","nodeType":"YulLiteral","src":"9151:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"9158:3:101","nodeType":"YulLiteral","src":"9158:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"9163:10:101","nodeType":"YulLiteral","src":"9163:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"9154:3:101","nodeType":"YulIdentifier","src":"9154:3:101"},"nativeSrc":"9154:20:101","nodeType":"YulFunctionCall","src":"9154:20:101"}],"functionName":{"name":"mstore","nativeSrc":"9144:6:101","nodeType":"YulIdentifier","src":"9144:6:101"},"nativeSrc":"9144:31:101","nodeType":"YulFunctionCall","src":"9144:31:101"},"nativeSrc":"9144:31:101","nodeType":"YulExpressionStatement","src":"9144:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9195:1:101","nodeType":"YulLiteral","src":"9195:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"9198:4:101","nodeType":"YulLiteral","src":"9198:4:101","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"9188:6:101","nodeType":"YulIdentifier","src":"9188:6:101"},"nativeSrc":"9188:15:101","nodeType":"YulFunctionCall","src":"9188:15:101"},"nativeSrc":"9188:15:101","nodeType":"YulExpressionStatement","src":"9188:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9223:1:101","nodeType":"YulLiteral","src":"9223:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9226:4:101","nodeType":"YulLiteral","src":"9226:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"9216:6:101","nodeType":"YulIdentifier","src":"9216:6:101"},"nativeSrc":"9216:15:101","nodeType":"YulFunctionCall","src":"9216:15:101"},"nativeSrc":"9216:15:101","nodeType":"YulExpressionStatement","src":"9216:15:101"}]},"condition":{"arguments":[{"name":"y_1","nativeSrc":"9117:3:101","nodeType":"YulIdentifier","src":"9117:3:101"}],"functionName":{"name":"iszero","nativeSrc":"9110:6:101","nodeType":"YulIdentifier","src":"9110:6:101"},"nativeSrc":"9110:11:101","nodeType":"YulFunctionCall","src":"9110:11:101"},"nativeSrc":"9107:134:101","nodeType":"YulIf","src":"9107:134:101"},{"nativeSrc":"9250:27:101","nodeType":"YulAssignment","src":"9250:27:101","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"9263:1:101","nodeType":"YulIdentifier","src":"9263:1:101"},{"kind":"number","nativeSrc":"9266:4:101","nodeType":"YulLiteral","src":"9266:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"9259:3:101","nodeType":"YulIdentifier","src":"9259:3:101"},"nativeSrc":"9259:12:101","nodeType":"YulFunctionCall","src":"9259:12:101"},{"name":"y_1","nativeSrc":"9273:3:101","nodeType":"YulIdentifier","src":"9273:3:101"}],"functionName":{"name":"mod","nativeSrc":"9255:3:101","nodeType":"YulIdentifier","src":"9255:3:101"},"nativeSrc":"9255:22:101","nodeType":"YulFunctionCall","src":"9255:22:101"},"variableNames":[{"name":"r","nativeSrc":"9250:1:101","nodeType":"YulIdentifier","src":"9250:1:101"}]}]},"name":"mod_t_uint8","nativeSrc":"9029:254:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"9050:1:101","nodeType":"YulTypedName","src":"9050:1:101","type":""},{"name":"y","nativeSrc":"9053:1:101","nodeType":"YulTypedName","src":"9053:1:101","type":""}],"returnVariables":[{"name":"r","nativeSrc":"9059:1:101","nodeType":"YulTypedName","src":"9059:1:101","type":""}],"src":"9029:254:101"}]},"contents":"{\n    { }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        mcopy(add(headStart, 64), add(value0, 32), length)\n        mstore(add(add(headStart, length), 64), 0)\n        tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n    }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let value := 0\n        value := calldataload(add(headStart, 32))\n        value1 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_uint256t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bool(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256t_addresst_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := abi_decode_address(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_int256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_decode_tuple_t_enum$_OverrideOption_$713t_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(lt(value, 4)) { revert(0, 0) }\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_add_t_uint8(x, y) -> sum\n    {\n        sum := add(and(x, 0xff), and(y, 0xff))\n        if gt(sum, 0xff) { panic_error_0x11() }\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function negate_t_int256(value) -> ret\n    {\n        if eq(value, shl(255, 1)) { panic_error_0x11() }\n        ret := sub(0, value)\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function checked_exp_helper(_base, exponent, max) -> power, base\n    {\n        power := 1\n        base := _base\n        for { } gt(exponent, 1) { }\n        {\n            if gt(base, div(max, base)) { panic_error_0x11() }\n            if and(exponent, 1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(1, exponent)\n        }\n    }\n    function checked_exp_unsigned(base, exponent) -> power\n    {\n        if iszero(exponent)\n        {\n            power := 1\n            leave\n        }\n        if iszero(base)\n        {\n            power := 0\n            leave\n        }\n        switch base\n        case 1 {\n            power := 1\n            leave\n        }\n        case 2 {\n            if gt(exponent, 255) { panic_error_0x11() }\n            power := shl(exponent, 1)\n            let _1 := 0\n            _1 := 0\n            leave\n        }\n        if or(and(lt(base, 11), lt(exponent, 78)), and(lt(base, 307), lt(exponent, 32)))\n        {\n            power := exp(base, exponent)\n            let _2 := 0\n            _2 := 0\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent, not(0))\n        if gt(power_1, div(not(0), base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_exp_t_uint256_t_uint8(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, and(exponent, 0xff))\n    }\n    function calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n    {\n        if gt(startIndex, endIndex) { revert(0, 0) }\n        if gt(endIndex, length) { revert(0, 0) }\n        offsetOut := add(offset, startIndex)\n        lengthOut := sub(endIndex, startIndex)\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, shl(224, 0xffffffff))\n        if lt(len, 4)\n        {\n            value := and(and(_1, shl(shl(3, sub(4, len)), shl(224, 0xffffffff))), shl(224, 0xffffffff))\n        }\n    }\n    function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, shl(224, 0xffffffff)))\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function mod_t_uint8(x, y) -> r\n    {\n        let y_1 := and(y, 0xff)\n        if iszero(y_1)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := mod(and(x, 0xff), y_1)\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"8158":[{"length":32,"start":718},{"length":32,"start":1186},{"length":32,"start":2094},{"length":32,"start":2187},{"length":32,"start":3597},{"length":32,"start":3775}],"8160":[{"length":32,"start":1566}]},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b50600436106101fd575f3560e01c806386de9e4f11610114578063c6e6f592116100a9578063d6dd023411610079578063d6dd023414610439578063d905777e1461044c578063dd62ed3e1461045f578063ef8b30f7146103f7578063f3c0b89214610497575f5ffd5b8063c6e6f592146103f7578063c7361ed21461040a578063cc7fcc601461041d578063ce96cb7714610426575f5ffd5b8063b3d7f6b9116100e4578063b3d7f6b9146103ab578063b460af94146103be578063ba087652146103d1578063c63d75b6146103e4575f5ffd5b806386de9e4f1461035a57806394bf804d1461037d57806395d89b4114610390578063a9059cbb14610398575f5ffd5b8063313ce56711610195578063402d267d11610165578063402d267d146103015780634cdad5061461023a5780636e553f651461031457806370a08231146103275780637fb1ad621461034f575f5ffd5b8063313ce5671461029e57806338359018146102b857806338d52e0f146102c157806339d88aff146102f8575f5ffd5b8063095ea7b3116101d0578063095ea7b31461024d5780630a28a4771461027057806318160ddd1461028357806323b872dd1461028b575f5ffd5b806301e1d11414610201578063034548cd1461021c57806306fdde031461022557806307a2d13a1461023a575b5f5ffd5b61020961049f565b6040519081526020015b60405180910390f35b61020960075481565b61022d61052e565b60405161021391906111f7565b61020961024836600461122c565b6105be565b61026061025b36600461125e565b6105cf565b6040519015158152602001610213565b61020961027e36600461122c565b6105e6565b600254610209565b610260610299366004611286565b6105f2565b6102a6610617565b60405160ff9091168152602001610213565b61020960085481565b6040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602001610213565b61020960065481565b61020961030f3660046112c0565b610642565b6102096103223660046112d9565b610666565b6102096103353660046112c0565b6001600160a01b03165f9081526020819052604090205490565b60055460ff16610260565b61037b610368366004611303565b6005805460ff1916911515919091179055565b005b61020961038b3660046112d9565b6106c3565b61022d61070f565b6102606103a636600461125e565b61071e565b6102096103b936600461122c565b61072b565b6102096103cc366004611322565b610737565b6102096103df366004611322565b61078d565b6102096103f23660046112c0565b6107da565b61020961040536600461122c565b6107f7565b61037b61041836600461122c565b610802565b61020960095481565b6102096104343660046112c0565b6108f3565b61037b61044736600461135b565b610919565b61020961045a3660046112c0565b610998565b61020961046d36600461137a565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6102096109be565b5f7f00000000000000000000000000000000000000000000000000000000000000006040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015610505573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061052991906113a2565b905090565b60606003805461053d906113b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610569906113b9565b80156105b45780601f1061058b576101008083540402835291602001916105b4565b820191905f5260205f20905b81548152906001019060200180831161059757829003601f168201915b5050505050905090565b5f6105c9825f6109cd565b92915050565b5f336105dc818585610a05565b5060019392505050565b5f6105c9826001610a17565b5f336105ff858285610a46565b61060a858585610aaf565b60019150505b9392505050565b5f610529817f0000000000000000000000000000000000000000000000000000000000000000611405565b5f61064f60635f1961141e565b6006541461065f576006546105c9565b5f196105c9565b5f5f61067183610642565b9050808411156106a357828482604051633c8097d960e11b815260040161069a93929190611431565b60405180910390fd5b5f6106ad856107f7565b90506106bb33858784610b0c565b949350505050565b5f5f6106ce836107da565b9050808411156106f75782848260405163284ff66760e01b815260040161069a93929190611431565b5f6107018561072b565b90506106bb33858388610b0c565b60606004805461053d906113b9565b5f336105dc818585610aaf565b5f6105c98260016109cd565b5f5f610742836108f3565b90508085111561076b57828582604051633fa733bb60e21b815260040161069a93929190611431565b5f610775866105e6565b90506107843386868985610b61565b95945050505050565b5f5f61079883610998565b9050808511156107c157828582604051632e52afbb60e21b815260040161069a93929190611431565b5f6107cb866105be565b9050610784338686848a610b61565b5f6107e760635f1961141e565b6007541461065f576007546105c9565b5f6105c9825f610a17565b5f811315610889576040516340c10f1960e01b8152306004820152602481018290526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340c10f19906044015b5f604051808303815f87803b158015610870575f5ffd5b505af1158015610882573d5f5f3e3d5ffd5b5050505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316639dc29fac306108c284611452565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401610859565b5f61090060635f1961141e565b60085414610910576008546105c9565b6105c982610bb7565b5f82600381111561092c5761092c61146c565b036109375760068190555b600182600381111561094b5761094b61146c565b036109565760078190555b600282600381111561096a5761096a61146c565b036109755760088190555b60038260038111156109895761098961146c565b036109945760098190555b5050565b5f6109a560635f1961141e565b600954146109b5576009546105c9565b6105c982610bc4565b6109ca60635f1961141e565b81565b5f6106106109d961049f565b6109e4906001611480565b6109ef5f600a611576565b6002546109fc9190611480565b85919085610be1565b610a128383836001610c23565b505050565b5f610610610a2682600a611576565b600254610a339190611480565b610a3b61049f565b6109fc906001611480565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610aa95781811015610a9b57828183604051637dc7a0d960e11b815260040161069a93929190611431565b610aa984848484035f610c23565b50505050565b6001600160a01b038316610ad857604051634b637e8f60e11b81525f600482015260240161069a565b6001600160a01b038216610b015760405163ec442f0560e01b81525f600482015260240161069a565b610a12838383610cf5565b60055460ff1615610b2060045f3681611584565b610b29916115ab565b90610b54576040516340c2fd5360e11b81526001600160e01b0319909116600482015260240161069a565b50610aa984848484610e08565b60055460ff1615610b7560045f3681611584565b610b7e916115ab565b90610ba9576040516340c2fd5360e11b81526001600160e01b0319909116600482015260240161069a565b506108828585858585610e8c565b5f6105c961024883610998565b6001600160a01b0381165f908152602081905260408120546105c9565b5f610c0e610bee83610f4c565b8015610c0957505f8480610c0457610c046115e3565b868809115b151590565b610c19868686610f78565b6107849190611480565b6001600160a01b038416610c4c5760405163e602df0560e01b81525f600482015260240161069a565b6001600160a01b038316610c7557604051634a1406b160e11b81525f600482015260240161069a565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610aa957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ce791815260200190565b60405180910390a350505050565b6001600160a01b038316610d1f578060025f828254610d149190611480565b90915550610d7c9050565b6001600160a01b0383165f9081526020819052604090205481811015610d5e5783818360405163391434e360e21b815260040161069a93929190611431565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610d9857600280548290039055610db6565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dfb91815260200190565b60405180910390a3505050565b610e347f0000000000000000000000000000000000000000000000000000000000000000853085611028565b610e3e838261105e565b826001600160a01b0316846001600160a01b03167fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d78484604051610ce7929190918252602082015260400190565b826001600160a01b0316856001600160a01b031614610eb057610eb0838683610a46565b610eba8382611092565b610ee57f000000000000000000000000000000000000000000000000000000000000000085846110c6565b826001600160a01b0316846001600160a01b0316866001600160a01b03167ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db8585604051610f3d929190918252602082015260400190565b60405180910390a45050505050565b5f6002826003811115610f6157610f6161146c565b610f6b91906115f7565b60ff166001149050919050565b5f5f5f610f8586866110fb565b91509150815f03610fa957838181610f9f57610f9f6115e3565b0492505050610610565b818411610fc057610fc06003851502601118611117565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b611036848484846001611128565b610aa957604051635274afe760e01b81526001600160a01b038516600482015260240161069a565b6001600160a01b0382166110875760405163ec442f0560e01b81525f600482015260240161069a565b6109945f8383610cf5565b6001600160a01b0382166110bb57604051634b637e8f60e11b81525f600482015260240161069a565b610994825f83610cf5565b6110d38383836001611195565b610a1257604051635274afe760e01b81526001600160a01b038416600482015260240161069a565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f51148316611184578383151615611178573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f511483166111eb5783831516156111df573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f6020828403121561123c575f5ffd5b5035919050565b80356001600160a01b0381168114611259575f5ffd5b919050565b5f5f6040838503121561126f575f5ffd5b61127883611243565b946020939093013593505050565b5f5f5f60608486031215611298575f5ffd5b6112a184611243565b92506112af60208501611243565b929592945050506040919091013590565b5f602082840312156112d0575f5ffd5b61061082611243565b5f5f604083850312156112ea575f5ffd5b823591506112fa60208401611243565b90509250929050565b5f60208284031215611313575f5ffd5b81358015158114610610575f5ffd5b5f5f5f60608486031215611334575f5ffd5b8335925061134460208501611243565b915061135260408501611243565b90509250925092565b5f5f6040838503121561136c575f5ffd5b823560048110611278575f5ffd5b5f5f6040838503121561138b575f5ffd5b61139483611243565b91506112fa60208401611243565b5f602082840312156113b2575f5ffd5b5051919050565b600181811c908216806113cd57607f821691505b6020821081036113eb57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b60ff81811683821601908111156105c9576105c96113f1565b818103818111156105c9576105c96113f1565b6001600160a01b039390931683526020830191909152604082015260600190565b5f600160ff1b8201611466576114666113f1565b505f0390565b634e487b7160e01b5f52602160045260245ffd5b808201808211156105c9576105c96113f1565b6001815b60018411156114ce578085048111156114b2576114b26113f1565b60018416156114c057908102905b60019390931c928002611497565b935093915050565b5f826114e4575060016105c9565b816114f057505f6105c9565b816001811461150657600281146115105761152c565b60019150506105c9565b60ff841115611521576115216113f1565b50506001821b6105c9565b5060208310610133831016604e8410600b841016171561154f575081810a6105c9565b61155b5f198484611493565b805f190482111561156e5761156e6113f1565b029392505050565b5f61061060ff8416836114d6565b5f5f85851115611592575f5ffd5b8386111561159e575f5ffd5b5050820193919092039150565b80356001600160e01b031981169060048410156115dc576001600160e01b0319600485900360031b81901b82161691505b5092915050565b634e487b7160e01b5f52601260045260245ffd5b5f60ff83168061161557634e487b7160e01b5f52601260045260245ffd5b8060ff8416069150509291505056fea264697066735822122041a239773b0c4f47712d5277cd163f3256eb28220d6a600a22cf02fd0bf1a59064736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1FD JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x86DE9E4F GT PUSH2 0x114 JUMPI DUP1 PUSH4 0xC6E6F592 GT PUSH2 0xA9 JUMPI DUP1 PUSH4 0xD6DD0234 GT PUSH2 0x79 JUMPI DUP1 PUSH4 0xD6DD0234 EQ PUSH2 0x439 JUMPI DUP1 PUSH4 0xD905777E EQ PUSH2 0x44C JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x45F JUMPI DUP1 PUSH4 0xEF8B30F7 EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0xF3C0B892 EQ PUSH2 0x497 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC6E6F592 EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0xC7361ED2 EQ PUSH2 0x40A JUMPI DUP1 PUSH4 0xCC7FCC60 EQ PUSH2 0x41D JUMPI DUP1 PUSH4 0xCE96CB77 EQ PUSH2 0x426 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB3D7F6B9 GT PUSH2 0xE4 JUMPI DUP1 PUSH4 0xB3D7F6B9 EQ PUSH2 0x3AB JUMPI DUP1 PUSH4 0xB460AF94 EQ PUSH2 0x3BE JUMPI DUP1 PUSH4 0xBA087652 EQ PUSH2 0x3D1 JUMPI DUP1 PUSH4 0xC63D75B6 EQ PUSH2 0x3E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x86DE9E4F EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0x94BF804D EQ PUSH2 0x37D JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x390 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x398 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0x195 JUMPI DUP1 PUSH4 0x402D267D GT PUSH2 0x165 JUMPI DUP1 PUSH4 0x402D267D EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x23A JUMPI DUP1 PUSH4 0x6E553F65 EQ PUSH2 0x314 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x327 JUMPI DUP1 PUSH4 0x7FB1AD62 EQ PUSH2 0x34F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 EQ PUSH2 0x29E JUMPI DUP1 PUSH4 0x38359018 EQ PUSH2 0x2B8 JUMPI DUP1 PUSH4 0x38D52E0F EQ PUSH2 0x2C1 JUMPI DUP1 PUSH4 0x39D88AFF EQ PUSH2 0x2F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x1D0 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0xA28A477 EQ PUSH2 0x270 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x283 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x28B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1E1D114 EQ PUSH2 0x201 JUMPI DUP1 PUSH4 0x34548CD EQ PUSH2 0x21C JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0x7A2D13A EQ PUSH2 0x23A JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x209 PUSH2 0x49F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x209 PUSH1 0x7 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22D PUSH2 0x52E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x213 SWAP2 SWAP1 PUSH2 0x11F7 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x248 CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x5BE JUMP JUMPDEST PUSH2 0x260 PUSH2 0x25B CALLDATASIZE PUSH1 0x4 PUSH2 0x125E JUMP JUMPDEST PUSH2 0x5CF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x27E CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x5E6 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x209 JUMP JUMPDEST PUSH2 0x260 PUSH2 0x299 CALLDATASIZE PUSH1 0x4 PUSH2 0x1286 JUMP JUMPDEST PUSH2 0x5F2 JUMP JUMPDEST PUSH2 0x2A6 PUSH2 0x617 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x30F CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH2 0x642 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x322 CALLDATASIZE PUSH1 0x4 PUSH2 0x12D9 JUMP JUMPDEST PUSH2 0x666 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x335 CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND PUSH2 0x260 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x368 CALLDATASIZE PUSH1 0x4 PUSH2 0x1303 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x209 PUSH2 0x38B CALLDATASIZE PUSH1 0x4 PUSH2 0x12D9 JUMP JUMPDEST PUSH2 0x6C3 JUMP JUMPDEST PUSH2 0x22D PUSH2 0x70F JUMP JUMPDEST PUSH2 0x260 PUSH2 0x3A6 CALLDATASIZE PUSH1 0x4 PUSH2 0x125E JUMP JUMPDEST PUSH2 0x71E JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3B9 CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x72B JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3CC CALLDATASIZE PUSH1 0x4 PUSH2 0x1322 JUMP JUMPDEST PUSH2 0x737 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3DF CALLDATASIZE PUSH1 0x4 PUSH2 0x1322 JUMP JUMPDEST PUSH2 0x78D JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3F2 CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH2 0x7DA JUMP JUMPDEST PUSH2 0x209 PUSH2 0x405 CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x7F7 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x418 CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x802 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x434 CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH2 0x8F3 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x447 CALLDATASIZE PUSH1 0x4 PUSH2 0x135B JUMP JUMPDEST PUSH2 0x919 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x45A CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH2 0x998 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x46D CALLDATASIZE PUSH1 0x4 PUSH2 0x137A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x9BE JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x505 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x529 SWAP2 SWAP1 PUSH2 0x13A2 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x53D SWAP1 PUSH2 0x13B9 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x569 SWAP1 PUSH2 0x13B9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5B4 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x58B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5B4 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x597 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x5C9 DUP3 PUSH0 PUSH2 0x9CD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5DC DUP2 DUP6 DUP6 PUSH2 0xA05 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x5C9 DUP3 PUSH1 0x1 PUSH2 0xA17 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5FF DUP6 DUP3 DUP6 PUSH2 0xA46 JUMP JUMPDEST PUSH2 0x60A DUP6 DUP6 DUP6 PUSH2 0xAAF JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x529 DUP2 PUSH32 0x0 PUSH2 0x1405 JUMP JUMPDEST PUSH0 PUSH2 0x64F PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST PUSH1 0x6 SLOAD EQ PUSH2 0x65F JUMPI PUSH1 0x6 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH0 NOT PUSH2 0x5C9 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x671 DUP4 PUSH2 0x642 JUMP JUMPDEST SWAP1 POP DUP1 DUP5 GT ISZERO PUSH2 0x6A3 JUMPI DUP3 DUP5 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3C8097D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x6AD DUP6 PUSH2 0x7F7 JUMP JUMPDEST SWAP1 POP PUSH2 0x6BB CALLER DUP6 DUP8 DUP5 PUSH2 0xB0C JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x6CE DUP4 PUSH2 0x7DA JUMP JUMPDEST SWAP1 POP DUP1 DUP5 GT ISZERO PUSH2 0x6F7 JUMPI DUP3 DUP5 DUP3 PUSH1 0x40 MLOAD PUSH4 0x284FF667 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH0 PUSH2 0x701 DUP6 PUSH2 0x72B JUMP JUMPDEST SWAP1 POP PUSH2 0x6BB CALLER DUP6 DUP4 DUP9 PUSH2 0xB0C JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x53D SWAP1 PUSH2 0x13B9 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5DC DUP2 DUP6 DUP6 PUSH2 0xAAF JUMP JUMPDEST PUSH0 PUSH2 0x5C9 DUP3 PUSH1 0x1 PUSH2 0x9CD JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x742 DUP4 PUSH2 0x8F3 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x76B JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3FA733BB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH0 PUSH2 0x775 DUP7 PUSH2 0x5E6 JUMP JUMPDEST SWAP1 POP PUSH2 0x784 CALLER DUP7 DUP7 DUP10 DUP6 PUSH2 0xB61 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x798 DUP4 PUSH2 0x998 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x7C1 JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x2E52AFBB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH0 PUSH2 0x7CB DUP7 PUSH2 0x5BE JUMP JUMPDEST SWAP1 POP PUSH2 0x784 CALLER DUP7 DUP7 DUP5 DUP11 PUSH2 0xB61 JUMP JUMPDEST PUSH0 PUSH2 0x7E7 PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST PUSH1 0x7 SLOAD EQ PUSH2 0x65F JUMPI PUSH1 0x7 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH0 PUSH2 0x5C9 DUP3 PUSH0 PUSH2 0xA17 JUMP JUMPDEST PUSH0 DUP2 SGT ISZERO PUSH2 0x889 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C10F19 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x40C10F19 SWAP1 PUSH1 0x44 ADD JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x870 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x882 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x9DC29FAC ADDRESS PUSH2 0x8C2 DUP5 PUSH2 0x1452 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x859 JUMP JUMPDEST PUSH0 PUSH2 0x900 PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST PUSH1 0x8 SLOAD EQ PUSH2 0x910 JUMPI PUSH1 0x8 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH2 0x5C9 DUP3 PUSH2 0xBB7 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x92C JUMPI PUSH2 0x92C PUSH2 0x146C JUMP JUMPDEST SUB PUSH2 0x937 JUMPI PUSH1 0x6 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x94B JUMPI PUSH2 0x94B PUSH2 0x146C JUMP JUMPDEST SUB PUSH2 0x956 JUMPI PUSH1 0x7 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x96A JUMPI PUSH2 0x96A PUSH2 0x146C JUMP JUMPDEST SUB PUSH2 0x975 JUMPI PUSH1 0x8 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x989 JUMPI PUSH2 0x989 PUSH2 0x146C JUMP JUMPDEST SUB PUSH2 0x994 JUMPI PUSH1 0x9 DUP2 SWAP1 SSTORE JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x9A5 PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST PUSH1 0x9 SLOAD EQ PUSH2 0x9B5 JUMPI PUSH1 0x9 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH2 0x5C9 DUP3 PUSH2 0xBC4 JUMP JUMPDEST PUSH2 0x9CA PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST DUP2 JUMP JUMPDEST PUSH0 PUSH2 0x610 PUSH2 0x9D9 PUSH2 0x49F JUMP JUMPDEST PUSH2 0x9E4 SWAP1 PUSH1 0x1 PUSH2 0x1480 JUMP JUMPDEST PUSH2 0x9EF PUSH0 PUSH1 0xA PUSH2 0x1576 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x9FC SWAP2 SWAP1 PUSH2 0x1480 JUMP JUMPDEST DUP6 SWAP2 SWAP1 DUP6 PUSH2 0xBE1 JUMP JUMPDEST PUSH2 0xA12 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0xC23 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x610 PUSH2 0xA26 DUP3 PUSH1 0xA PUSH2 0x1576 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0xA33 SWAP2 SWAP1 PUSH2 0x1480 JUMP JUMPDEST PUSH2 0xA3B PUSH2 0x49F JUMP JUMPDEST PUSH2 0x9FC SWAP1 PUSH1 0x1 PUSH2 0x1480 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH0 NOT DUP2 LT ISZERO PUSH2 0xAA9 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xA9B JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH2 0xAA9 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0xC23 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xAD8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xB01 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH2 0xA12 DUP4 DUP4 DUP4 PUSH2 0xCF5 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0xB20 PUSH1 0x4 PUSH0 CALLDATASIZE DUP2 PUSH2 0x1584 JUMP JUMPDEST PUSH2 0xB29 SWAP2 PUSH2 0x15AB JUMP JUMPDEST SWAP1 PUSH2 0xB54 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C2FD53 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST POP PUSH2 0xAA9 DUP5 DUP5 DUP5 DUP5 PUSH2 0xE08 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0xB75 PUSH1 0x4 PUSH0 CALLDATASIZE DUP2 PUSH2 0x1584 JUMP JUMPDEST PUSH2 0xB7E SWAP2 PUSH2 0x15AB JUMP JUMPDEST SWAP1 PUSH2 0xBA9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C2FD53 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST POP PUSH2 0x882 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0xE8C JUMP JUMPDEST PUSH0 PUSH2 0x5C9 PUSH2 0x248 DUP4 PUSH2 0x998 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH0 PUSH2 0xC0E PUSH2 0xBEE DUP4 PUSH2 0xF4C JUMP JUMPDEST DUP1 ISZERO PUSH2 0xC09 JUMPI POP PUSH0 DUP5 DUP1 PUSH2 0xC04 JUMPI PUSH2 0xC04 PUSH2 0x15E3 JUMP JUMPDEST DUP7 DUP9 MULMOD GT JUMPDEST ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH2 0xC19 DUP7 DUP7 DUP7 PUSH2 0xF78 JUMP JUMPDEST PUSH2 0x784 SWAP2 SWAP1 PUSH2 0x1480 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0xC4C JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xC75 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0xAA9 JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0xCE7 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xD1F JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xD14 SWAP2 SWAP1 PUSH2 0x1480 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0xD7C SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xD5E JUMPI DUP4 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xD98 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0xDB6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xDFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0xE34 PUSH32 0x0 DUP6 ADDRESS DUP6 PUSH2 0x1028 JUMP JUMPDEST PUSH2 0xE3E DUP4 DUP3 PUSH2 0x105E JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDCBC1C05240F31FF3AD067EF1EE35CE4997762752E3A095284754544F4C709D7 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0xCE7 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xEB0 JUMPI PUSH2 0xEB0 DUP4 DUP7 DUP4 PUSH2 0xA46 JUMP JUMPDEST PUSH2 0xEBA DUP4 DUP3 PUSH2 0x1092 JUMP JUMPDEST PUSH2 0xEE5 PUSH32 0x0 DUP6 DUP5 PUSH2 0x10C6 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFBDE797D201C681B91056529119E0B02407C7BB96A4A2C75C01FC9667232C8DB DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0xF3D SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xF61 JUMPI PUSH2 0xF61 PUSH2 0x146C JUMP JUMPDEST PUSH2 0xF6B SWAP2 SWAP1 PUSH2 0x15F7 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x1 EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0xF85 DUP7 DUP7 PUSH2 0x10FB JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0xFA9 JUMPI DUP4 DUP2 DUP2 PUSH2 0xF9F JUMPI PUSH2 0xF9F PUSH2 0x15E3 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x610 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0xFC0 JUMPI PUSH2 0xFC0 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x1117 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1036 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x1128 JUMP JUMPDEST PUSH2 0xAA9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1087 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH2 0x994 PUSH0 DUP4 DUP4 PUSH2 0xCF5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x10BB JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH2 0x994 DUP3 PUSH0 DUP4 PUSH2 0xCF5 JUMP JUMPDEST PUSH2 0x10D3 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x1195 JUMP JUMPDEST PUSH2 0xA12 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x1184 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x1178 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x11EB JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x11DF JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x123C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1259 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x126F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1278 DUP4 PUSH2 0x1243 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1298 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x12A1 DUP5 PUSH2 0x1243 JUMP JUMPDEST SWAP3 POP PUSH2 0x12AF PUSH1 0x20 DUP6 ADD PUSH2 0x1243 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x12D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x610 DUP3 PUSH2 0x1243 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x12EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x12FA PUSH1 0x20 DUP5 ADD PUSH2 0x1243 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1313 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x610 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1334 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH2 0x1344 PUSH1 0x20 DUP6 ADD PUSH2 0x1243 JUMP JUMPDEST SWAP2 POP PUSH2 0x1352 PUSH1 0x40 DUP6 ADD PUSH2 0x1243 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x136C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x4 DUP2 LT PUSH2 0x1278 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x138B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1394 DUP4 PUSH2 0x1243 JUMP JUMPDEST SWAP2 POP PUSH2 0x12FA PUSH1 0x20 DUP5 ADD PUSH2 0x1243 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x13B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x13CD JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x13EB JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0xFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x5C9 JUMPI PUSH2 0x5C9 PUSH2 0x13F1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x5C9 JUMPI PUSH2 0x5C9 PUSH2 0x13F1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x1466 JUMPI PUSH2 0x1466 PUSH2 0x13F1 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x5C9 JUMPI PUSH2 0x5C9 PUSH2 0x13F1 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x14CE JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x14B2 JUMPI PUSH2 0x14B2 PUSH2 0x13F1 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x14C0 JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x1497 JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x14E4 JUMPI POP PUSH1 0x1 PUSH2 0x5C9 JUMP JUMPDEST DUP2 PUSH2 0x14F0 JUMPI POP PUSH0 PUSH2 0x5C9 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x1506 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x1510 JUMPI PUSH2 0x152C JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x5C9 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x1521 JUMPI PUSH2 0x1521 PUSH2 0x13F1 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x5C9 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x154F JUMPI POP DUP2 DUP2 EXP PUSH2 0x5C9 JUMP JUMPDEST PUSH2 0x155B PUSH0 NOT DUP5 DUP5 PUSH2 0x1493 JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x156E JUMPI PUSH2 0x156E PUSH2 0x13F1 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x610 PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x14D6 JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x1592 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x159E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x15DC JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x1615 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 PUSH1 0xFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 COINBASE LOG2 CODECOPY PUSH24 0x3B0C4F47712D5277CD163F3256EB28220D6A600A22CF02FD SIGNEXTEND CALL 0xA5 SWAP1 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"462:2711:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7192:125:37;;;:::i;:::-;;;160:25:101;;;148:2;133:18;7192:125:37;;;;;;;;561:30:6;;;;;;1760:89:34;;;:::i;:::-;;;;;;;:::i;7535:148:37:-;;;;;;:::i;:::-;;:::i;3902:186:34:-;;;;;;:::i;:::-;;:::i;:::-;;;1498:14:101;;1491:22;1473:41;;1461:2;1446:18;3902:186:34;1333:187:101;8672:147:37;;;;;;:::i;:::-;;:::i;2803:97:34:-;2881:12;;2803:97;;4680:244;;;;;;:::i;:::-;;:::i;6877:151:37:-;;;:::i;:::-;;;2076:4:101;2064:17;;;2046:36;;2034:2;2019:18;6877:151:37;1904:184:101;595:34:6;;;;;;7063:94:37;;;-1:-1:-1;;;;;7143:6:37;2257:32:101;2239:51;;2227:2;2212:18;7063:94:37;2093:203:101;524:33:6;;;;;;2105:175;;;;;;:::i;:::-;;:::i;9035:392:37:-;;;;;;:::i;:::-;;:::i;2933:116:34:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3024:18:34;2998:7;3024:18;;;;;;;;;;;;2933:116;2029:72:6;2089:7;;;;2029:72;;1955:70;;;;;;:::i;:::-;2003:7;:17;;-1:-1:-1;;2003:17:6;;;;;;;;;;1955:70;;;9462:380:37;;;;;;:::i;:::-;;:::i;1962:93:34:-;;;:::i;3244:178::-;;;;;;:::i;:::-;;:::i;8494:143:37:-;;;;;;:::i;:::-;;:::i;9877:413::-;;;;;;:::i;:::-;;:::i;10325:405::-;;;;;;:::i;:::-;;:::i;2284:163:6:-;;;;;;:::i;:::-;;:::i;7352:148:37:-;;;;;;:::i;:::-;;:::i;1729:222:6:-;;;;;;:::i;:::-;;:::i;633:32::-;;;;;;2451:179;;;;;;:::i;:::-;;:::i;2809:362::-;;;;;;:::i;:::-;;:::i;2634:171::-;;;;;;:::i;:::-;;:::i;3455:140:34:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3561:18:34;;;3535:7;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3455:140;670:63:6;;;:::i;7192:125:37:-;7244:7;7143:6;7270:40;;-1:-1:-1;;;7270:40:37;;7304:4;7270:40;;;2239:51:101;-1:-1:-1;;;;;7270:25:37;;;;;;;2212:18:101;;7270:40:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7263:47;;7192:125;:::o;1760:89:34:-;1805:13;1837:5;1830:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89;:::o;7535:148:37:-;7605:7;7631:45;7648:6;7656:19;7631:16;:45::i;:::-;7624:52;7535:148;-1:-1:-1;;7535:148:37:o;3902:186:34:-;3975:4;735:10:47;4029:31:34;735:10:47;4045:7:34;4054:5;4029:8;:31::i;:::-;-1:-1:-1;4077:4:34;;3902:186;-1:-1:-1;;;3902:186:34:o;8672:147:37:-;8742:7;8768:44;8785:6;8793:18;8768:16;:44::i;4680:244:34:-;4767:4;735:10:47;4823:37:34;4839:4;735:10:47;4854:5:34;4823:15;:37::i;:::-;4870:26;4880:4;4886:2;4890:5;4870:9;:26::i;:::-;4913:4;4906:11;;;4680:244;;;;;;:::o;6877:151:37:-;6958:5;6982:39;6958:5;6982:19;:39;:::i;2105:175:6:-;2170:7;711:22;731:2;-1:-1:-1;;711:22:6;:::i;:::-;2192:18;;:36;:83;;2257:18;;2192:83;;;-1:-1:-1;;2231:23:6;7718:108:37;9035:392;9110:7;9129:17;9149:20;9160:8;9149:10;:20::i;:::-;9129:40;;9192:9;9183:6;:18;9179:110;;;9250:8;9260:6;9268:9;9224:54;;-1:-1:-1;;;9224:54:37;;;;;;;;;;:::i;:::-;;;;;;;;9179:110;9299:14;9316:22;9331:6;9316:14;:22::i;:::-;9299:39;-1:-1:-1;9348:48:37;735:10:47;9371:8:37;9381:6;9389;9348:8;:48::i;:::-;9414:6;9035:392;-1:-1:-1;;;;9035:392:37:o;9462:380::-;9534:7;9553:17;9573;9581:8;9573:7;:17::i;:::-;9553:37;;9613:9;9604:6;:18;9600:107;;;9668:8;9678:6;9686:9;9645:51;;-1:-1:-1;;;9645:51:37;;;;;;;;;;:::i;9600:107::-;9717:14;9734:19;9746:6;9734:11;:19::i;:::-;9717:36;-1:-1:-1;9763:48:37;735:10:47;9786:8:37;9796:6;9804;9763:8;:48::i;1962:93:34:-;2009:13;2041:7;2034:14;;;;;:::i;3244:178::-;3313:4;735:10:47;3367:27:34;735:10:47;3384:2:34;3388:5;3367:9;:27::i;8494:143:37:-;8560:7;8586:44;8603:6;8611:18;8586:16;:44::i;9877:413::-;9968:7;9987:17;10007:18;10019:5;10007:11;:18::i;:::-;9987:38;;10048:9;10039:6;:18;10035:108;;;10107:5;10114:6;10122:9;10080:52;;-1:-1:-1;;;10080:52:37;;;;;;;;;;:::i;10035:108::-;10153:14;10170:23;10186:6;10170:15;:23::i;:::-;10153:40;-1:-1:-1;10203:56:37;735:10:47;10227:8:37;10237:5;10244:6;10252;10203:9;:56::i;:::-;10277:6;9877:413;-1:-1:-1;;;;;9877:413:37:o;10325:405::-;10414:7;10433:17;10453:16;10463:5;10453:9;:16::i;:::-;10433:36;;10492:9;10483:6;:18;10479:106;;;10549:5;10556:6;10564:9;10524:50;;-1:-1:-1;;;10524:50:37;;;;;;;;;;:::i;10479:106::-;10595:14;10612:21;10626:6;10612:13;:21::i;:::-;10595:38;-1:-1:-1;10643:56:37;735:10:47;10667:8:37;10677:5;10684:6;10692;10643:9;:56::i;2284:163:6:-;2346:7;711:22;731:2;-1:-1:-1;;711:22:6;:::i;:::-;2368:15;;:33;:74;;2427:15;;2368:74;;7352:148:37;7422:7;7448:45;7465:6;7473:19;7448:16;:45::i;1729:222:6:-;1797:1;1788:6;:10;1784:163;;;1808:55;;-1:-1:-1;;;1808:55:6;;1840:4;1808:55;;;5818:51:101;5885:18;;;5878:34;;;-1:-1:-1;;;;;7143:6:37;1808:23:6;;;;5791:18:101;;1808:55:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1729:222;:::o;1784:163::-;7143:6:37;-1:-1:-1;;;;;1884:23:6;;1916:4;1931:7;1932:6;1931:7;:::i;:::-;1884:56;;-1:-1:-1;;;;;;1884:56:6;;;;;;;-1:-1:-1;;;;;5836:32:101;;;1884:56:6;;;5818:51:101;5885:18;;;5878:34;5791:18;;1884:56:6;5644:274:101;2451:179:6;2517:7;711:22;731:2;-1:-1:-1;;711:22:6;:::i;:::-;2539:19;;:37;:86;;2606:19;;2539:86;;;2579:24;2597:5;2579:17;:24::i;2809:362::-;2900:22;2890:6;:32;;;;;;;;:::i;:::-;;2886:67;;2924:18;:29;;;2886:67;2973:19;2963:6;:29;;;;;;;;:::i;:::-;;2959:61;;2994:15;:26;;;2959:61;3040:23;3030:6;:33;;;;;;;;:::i;:::-;;3026:69;;3065:19;:30;;;3026:69;3115:21;3105:6;:31;;;;;;;;:::i;:::-;;3101:65;;3138:17;:28;;;3101:65;2809:362;;:::o;2634:171::-;2698:7;711:22;731:2;-1:-1:-1;;711:22:6;:::i;:::-;2720:17;;:35;:80;;2783:17;;2720:80;;;2758:22;2774:5;2758:15;:22::i;670:63::-;711:22;731:2;-1:-1:-1;;711:22:6;:::i;:::-;670:63;:::o;11191:213:37:-;11288:7;11314:83;11328:13;:11;:13::i;:::-;:17;;11344:1;11328:17;:::i;:::-;11363:23;13365:5;11363:2;:23;:::i;:::-;2881:12:34;;11347:39:37;;;;:::i;:::-;11314:6;;:83;11388:8;11314:13;:83::i;8630:128:34:-;8714:37;8723:5;8730:7;8739:5;8746:4;8714:8;:37::i;:::-;8630:128;;;:::o;10854:213:37:-;10951:7;10977:83;11007:23;10951:7;11007:2;:23;:::i;:::-;2881:12:34;;10991:39:37;;;;:::i;:::-;11032:13;:11;:13::i;:::-;:17;;11048:1;11032:17;:::i;10321:476:34:-;-1:-1:-1;;;;;3561:18:34;;;10420:24;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10486:36:34;;10482:309;;;10561:5;10542:16;:24;10538:130;;;10620:7;10629:16;10647:5;10593:60;;-1:-1:-1;;;10593:60:34;;;;;;;;;;:::i;10538:130::-;10709:57;10718:5;10725:7;10753:5;10734:16;:24;10760:5;10709:8;:57::i;:::-;10410:387;10321:476;;;:::o;5297:300::-;-1:-1:-1;;;;;5380:18:34;;5376:86;;5421:30;;-1:-1:-1;;;5421:30:34;;5448:1;5421:30;;;2239:51:101;2212:18;;5421:30:34;2093:203:101;5376:86:34;-1:-1:-1;;;;;5475:16:34;;5471:86;;5514:32;;-1:-1:-1;;;5514:32:34;;5543:1;5514:32;;;2239:51:101;2212:18;;5514:32:34;2093:203:101;5471:86:34;5566:24;5574:4;5580:2;5584:5;5566:7;:24::i;1180:198:6:-;891:7;;;;890:8;921:13;932:1;891:7;921:8;891:7;921:13;:::i;:::-;914:21;;;:::i;:::-;882:55;;;;;-1:-1:-1;;;882:55:6;;-1:-1:-1;;;;;;8599:33:101;;;882:55:6;;;8581:52:101;8554:18;;882:55:6;8437:202:101;882:55:6;;1325:48:::1;1340:6;1348:8;1358:6;1366;1325:14;:48::i;1382:226::-:0;891:7;;;;890:8;921:13;932:1;891:7;921:8;891:7;921:13;:::i;:::-;914:21;;;:::i;:::-;882:55;;;;;-1:-1:-1;;;882:55:6;;-1:-1:-1;;;;;;8599:33:101;;;882:55:6;;;8581:52:101;8554:18;;882:55:6;8437:202:101;882:55:6;;1547:56:::1;1563:6;1571:8;1581:5;1588:6;1596;1547:15;:56::i;8001:129:37:-:0;8066:7;8092:31;8106:16;8116:5;8106:9;:16::i;8165:112::-;-1:-1:-1;;;;;3024:18:34;;8228:7:37;3024:18:34;;;;;;;;;;;8254:16:37;2933:116:34;11070:238:63;11171:7;11225:76;11241:26;11258:8;11241:16;:26::i;:::-;:59;;;;;11299:1;11284:11;11271:25;;;;;:::i;:::-;11281:1;11278;11271:25;:29;11241:59;34914:9:64;34907:17;;34795:145;11225:76:63;11197:25;11204:1;11207;11210:11;11197:6;:25::i;:::-;:104;;;;:::i;9607:432:34:-;-1:-1:-1;;;;;9719:19:34;;9715:89;;9761:32;;-1:-1:-1;;;9761:32:34;;9790:1;9761:32;;;2239:51:101;2212:18;;9761:32:34;2093:203:101;9715:89:34;-1:-1:-1;;;;;9817:21:34;;9813:90;;9861:31;;-1:-1:-1;;;9861:31:34;;9889:1;9861:31;;;2239:51:101;2212:18;;9861:31:34;2093:203:101;9813:90:34;-1:-1:-1;;;;;9912:18:34;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;9957:76;;;;10007:7;-1:-1:-1;;;;;9991:31:34;10000:5;-1:-1:-1;;;;;9991:31:34;;10016:5;9991:31;;;;160:25:101;;148:2;133:18;;14:177;9991:31:34;;;;;;;;9607:432;;;;:::o;5912:1107::-;-1:-1:-1;;;;;6001:18:34;;5997:540;;6153:5;6137:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;5997:540:34;;-1:-1:-1;5997:540:34;;-1:-1:-1;;;;;6211:15:34;;6189:19;6211:15;;;;;;;;;;;6244:19;;;6240:115;;;6315:4;6321:11;6334:5;6290:50;;-1:-1:-1;;;6290:50:34;;;;;;;;;;:::i;6240:115::-;-1:-1:-1;;;;;6475:15:34;;:9;:15;;;;;;;;;;6493:19;;;;6475:37;;5997:540;-1:-1:-1;;;;;6551:16:34;;6547:425;;6714:12;:21;;;;;;;6547:425;;;-1:-1:-1;;;;;6925:13:34;;:9;:13;;;;;;;;;;:22;;;;;;6547:425;7002:2;-1:-1:-1;;;;;6987:25:34;6996:4;-1:-1:-1;;;;;6987:25:34;;7006:5;6987:25;;;;160::101;;148:2;133:18;;14:177;6987:25:34;;;;;;;;5912:1107;;;:::o;11468:841:37:-;12138:74;7143:6;12182;12198:4;12205:6;12138:26;:74::i;:::-;12222:23;12228:8;12238:6;12222:5;:23::i;:::-;12277:8;-1:-1:-1;;;;;12261:41:37;12269:6;-1:-1:-1;;;;;12261:41:37;;12287:6;12295;12261:41;;;;;;8950:25:101;;;9006:2;8991:18;;8984:34;8938:2;8923:18;;8776:248;12376:925:37;12563:5;-1:-1:-1;;;;;12553:15:37;:6;-1:-1:-1;;;;;12553:15:37;;12549:84;;12584:38;12600:5;12607:6;12615;12584:15;:38::i;:::-;13142:20;13148:5;13155:6;13142:5;:20::i;:::-;13172:57;7143:6;13212:8;13222:6;13172:22;:57::i;:::-;13272:5;-1:-1:-1;;;;;13245:49:37;13262:8;-1:-1:-1;;;;;13245:49:37;13254:6;-1:-1:-1;;;;;13245:49:37;;13279:6;13287;13245:49;;;;;;8950:25:101;;;9006:2;8991:18;;8984:34;8938:2;8923:18;;8776:248;13245:49:37;;;;;;;;12376:925;;;;;:::o;32036:122:63:-;32104:4;32145:1;32133:8;32127:15;;;;;;;;:::i;:::-;:19;;;;:::i;:::-;:24;;32150:1;32127:24;32120:31;;32036:122;;;:::o;7258:3683::-;7340:14;7391:12;7405:11;7420:12;7427:1;7430;7420:6;:12::i;:::-;7390:42;;;;7514:4;7522:1;7514:9;7510:365;;7849:11;7843:3;:17;;;;;:::i;:::-;;7836:24;;;;;;7510:365;8000:4;7985:11;:19;7981:142;;8024:84;5328:5;8044:16;;5327:36;940:4:53;5322:42:63;8024:11;:84::i;:::-;8375:17;8526:11;8523:1;8520;8513:25;8918:12;8948:15;;;8933:31;;9083:22;;;;;9816:1;9797;:15;;9796:21;;10049;;;10045:25;;10034:36;10119:21;;;10115:25;;10104:36;10191:21;;;10187:25;;10176:36;10262:21;;;10258:25;;10247:36;10335:21;;;10331:25;;10320:36;10409:21;;;10405:25;;;10394:36;9325:12;;;;9321:23;;;9346:1;9317:31;8638:18;;;8628:29;;;9432:11;;;;8681:19;;;;9176:14;;;;9425:18;;;;10884:13;;-1:-1:-1;;7258:3683:63;;;;;:::o;1662:232:40:-;1767:47;1785:5;1792:4;1798:2;1802:5;1809:4;1767:17;:47::i;:::-;1762:126;;1837:40;;-1:-1:-1;;;1837:40:40;;-1:-1:-1;;;;;2257:32:101;;1837:40:40;;;2239:51:101;2212:18;;1837:40:40;2093:203:101;7362:208:34;-1:-1:-1;;;;;7432:21:34;;7428:91;;7476:32;;-1:-1:-1;;;7476:32:34;;7505:1;7476:32;;;2239:51:101;2212:18;;7476:32:34;2093:203:101;7428:91:34;7528:35;7544:1;7548:7;7557:5;7528:7;:35::i;7888:206::-;-1:-1:-1;;;;;7958:21:34;;7954:89;;8002:30;;-1:-1:-1;;;8002:30:34;;8029:1;8002:30;;;2239:51:101;2212:18;;8002:30:34;2093:203:101;7954:89:34;8052:35;8060:7;8077:1;8081:5;8052:7;:35::i;1219:204:40:-;1306:37;1320:5;1327:2;1331:5;1338:4;1306:13;:37::i;:::-;1301:116;;1366:40;;-1:-1:-1;;;1366:40:40;;-1:-1:-1;;;;;2257:32:101;;1366:40:40;;;2239:51:101;2212:18;;1366:40:40;2093:203:101;1027:550:63;1088:12;;-1:-1:-1;;1471:1:63;1468;1461:20;1501:9;;;;1549:11;;;1535:12;;;;1531:30;;;;;1027:550;-1:-1:-1;;1027:550:63:o;1776:194:53:-;1881:10;1875:4;1868:24;1918:4;1912;1905:18;1949:4;1943;1936:18;10165:1393:40;10460:4;10454:11;-1:-1:-1;;;10323:12:40;10478:22;;;-1:-1:-1;;;;;10526:26:40;;;10520:4;10513:40;10579:24;;10573:4;10566:38;10624:4;10617:19;;;10323:12;10700:4;10323:12;10688:4;10323:12;;10672:5;10665;10660:45;10649:56;;10917:1;10910:4;10904:11;10901:18;10892:7;10888:32;10878:606;;11049:6;11039:7;11032:15;11028:28;11025:165;;;11105:16;11099:4;11094:3;11079:43;11155:16;11150:3;11143:29;11025:165;11466:1;11458:5;11446:18;11443:25;11424:16;11417:24;11413:56;11404:7;11400:70;11389:81;;10878:606;11504:4;11497:17;-1:-1:-1;11540:1:40;11534:4;11527:15;10165:1393;;-1:-1:-1;;;;;10165:1393:40:o;8373:1244::-;8600:4;8594:11;-1:-1:-1;;;8467:12:40;8618:22;;;-1:-1:-1;;;;;8666:24:40;;8660:4;8653:38;8711:4;8704:19;;;8467:12;8787:4;8467:12;8775:4;8467:12;;8759:5;8752;8747:45;8736:56;;9004:1;8997:4;8991:11;8988:18;8979:7;8975:32;8965:606;;9136:6;9126:7;9119:15;9115:28;9112:165;;;9192:16;9186:4;9181:3;9166:43;9242:16;9237:3;9230:29;9112:165;9553:1;9545:5;9533:18;9530:25;9511:16;9504:24;9500:56;9491:7;9487:70;9476:81;;8965:606;9591:4;9584:17;-1:-1:-1;8373:1244:40;;-1:-1:-1;;;;8373:1244:40:o;196:418:101:-;345:2;334:9;327:21;308:4;377:6;371:13;420:6;415:2;404:9;400:18;393:34;479:6;474:2;466:6;462:15;457:2;446:9;442:18;436:50;535:1;530:2;521:6;510:9;506:22;502:31;495:42;605:2;598;594:7;589:2;581:6;577:15;573:29;562:9;558:45;554:54;546:62;;;196:418;;;;:::o;619:226::-;678:6;731:2;719:9;710:7;706:23;702:32;699:52;;;747:1;744;737:12;699:52;-1:-1:-1;792:23:101;;619:226;-1:-1:-1;619:226:101:o;850:173::-;918:20;;-1:-1:-1;;;;;967:31:101;;957:42;;947:70;;1013:1;1010;1003:12;947:70;850:173;;;:::o;1028:300::-;1096:6;1104;1157:2;1145:9;1136:7;1132:23;1128:32;1125:52;;;1173:1;1170;1163:12;1125:52;1196:29;1215:9;1196:29;:::i;:::-;1186:39;1294:2;1279:18;;;;1266:32;;-1:-1:-1;;;1028:300:101:o;1525:374::-;1602:6;1610;1618;1671:2;1659:9;1650:7;1646:23;1642:32;1639:52;;;1687:1;1684;1677:12;1639:52;1710:29;1729:9;1710:29;:::i;:::-;1700:39;;1758:38;1792:2;1781:9;1777:18;1758:38;:::i;:::-;1525:374;;1748:48;;-1:-1:-1;;;1865:2:101;1850:18;;;;1837:32;;1525:374::o;2301:186::-;2360:6;2413:2;2401:9;2392:7;2388:23;2384:32;2381:52;;;2429:1;2426;2419:12;2381:52;2452:29;2471:9;2452:29;:::i;2492:300::-;2560:6;2568;2621:2;2609:9;2600:7;2596:23;2592:32;2589:52;;;2637:1;2634;2627:12;2589:52;2682:23;;;-1:-1:-1;2748:38:101;2782:2;2767:18;;2748:38;:::i;:::-;2738:48;;2492:300;;;;;:::o;2797:273::-;2853:6;2906:2;2894:9;2885:7;2881:23;2877:32;2874:52;;;2922:1;2919;2912:12;2874:52;2961:9;2948:23;3014:5;3007:13;3000:21;2993:5;2990:32;2980:60;;3036:1;3033;3026:12;3075:374;3152:6;3160;3168;3221:2;3209:9;3200:7;3196:23;3192:32;3189:52;;;3237:1;3234;3227:12;3189:52;3282:23;;;-1:-1:-1;3348:38:101;3382:2;3367:18;;3348:38;:::i;:::-;3338:48;;3405:38;3439:2;3428:9;3424:18;3405:38;:::i;:::-;3395:48;;3075:374;;;;;:::o;3638:394::-;3724:6;3732;3785:2;3773:9;3764:7;3760:23;3756:32;3753:52;;;3801:1;3798;3791:12;3753:52;3840:9;3827:23;3879:1;3872:5;3869:12;3859:40;;3895:1;3892;3885:12;4037:260;4105:6;4113;4166:2;4154:9;4145:7;4141:23;4137:32;4134:52;;;4182:1;4179;4172:12;4134:52;4205:29;4224:9;4205:29;:::i;:::-;4195:39;;4253:38;4287:2;4276:9;4272:18;4253:38;:::i;4302:184::-;4372:6;4425:2;4413:9;4404:7;4400:23;4396:32;4393:52;;;4441:1;4438;4431:12;4393:52;-1:-1:-1;4464:16:101;;4302:184;-1:-1:-1;4302:184:101:o;4491:380::-;4570:1;4566:12;;;;4613;;;4634:61;;4688:4;4680:6;4676:17;4666:27;;4634:61;4741:2;4733:6;4730:14;4710:18;4707:38;4704:161;;4787:10;4782:3;4778:20;4775:1;4768:31;4822:4;4819:1;4812:15;4850:4;4847:1;4840:15;4704:161;;4491:380;;;:::o;4876:127::-;4937:10;4932:3;4928:20;4925:1;4918:31;4968:4;4965:1;4958:15;4992:4;4989:1;4982:15;5008:148;5096:4;5075:12;;;5089;;;5071:31;;5114:13;;5111:39;;;5130:18;;:::i;5161:128::-;5228:9;;;5249:11;;;5246:37;;;5263:18;;:::i;5294:345::-;-1:-1:-1;;;;;5514:32:101;;;;5496:51;;5578:2;5563:18;;5556:34;;;;5621:2;5606:18;;5599:34;5484:2;5469:18;;5294:345::o;5923:136::-;5958:3;-1:-1:-1;;;5979:22:101;;5976:48;;6004:18;;:::i;:::-;-1:-1:-1;6044:1:101;6040:13;;5923:136::o;6064:127::-;6125:10;6120:3;6116:20;6113:1;6106:31;6156:4;6153:1;6146:15;6180:4;6177:1;6170:15;6196:125;6261:9;;;6282:10;;;6279:36;;;6295:18;;:::i;6326:375::-;6414:1;6432:5;6446:249;6467:1;6457:8;6454:15;6446:249;;;6517:4;6512:3;6508:14;6502:4;6499:24;6496:50;;;6526:18;;:::i;:::-;6576:1;6566:8;6562:16;6559:49;;;6590:16;;;;6559:49;6673:1;6669:16;;;;;6629:15;;6446:249;;;6326:375;;;;;;:::o;6706:902::-;6755:5;6785:8;6775:80;;-1:-1:-1;6826:1:101;6840:5;;6775:80;6874:4;6864:76;;-1:-1:-1;6911:1:101;6925:5;;6864:76;6956:4;6974:1;6969:59;;;;7042:1;7037:174;;;;6949:262;;6969:59;6999:1;6990:10;;7013:5;;;7037:174;7074:3;7064:8;7061:17;7058:43;;;7081:18;;:::i;:::-;-1:-1:-1;;7137:1:101;7123:16;;7196:5;;6949:262;;7295:2;7285:8;7282:16;7276:3;7270:4;7267:13;7263:36;7257:2;7247:8;7244:16;7239:2;7233:4;7230:12;7226:35;7223:77;7220:203;;;-1:-1:-1;7332:19:101;;;7408:5;;7220:203;7455:42;-1:-1:-1;;7480:8:101;7474:4;7455:42;:::i;:::-;7533:6;7529:1;7525:6;7521:19;7512:7;7509:32;7506:58;;;7544:18;;:::i;:::-;7582:20;;6706:902;-1:-1:-1;;;6706:902:101:o;7613:140::-;7671:5;7700:47;7741:4;7731:8;7727:19;7721:4;7700:47;:::i;7758:331::-;7863:9;7874;7916:8;7904:10;7901:24;7898:44;;;7938:1;7935;7928:12;7898:44;7967:6;7957:8;7954:20;7951:40;;;7987:1;7984;7977:12;7951:40;-1:-1:-1;;8013:23:101;;;8058:25;;;;;-1:-1:-1;7758:331:101:o;8094:338::-;8214:19;;-1:-1:-1;;;;;;8251:29:101;;;8300:1;8292:10;;8289:137;;;-1:-1:-1;;;;;;8361:1:101;8357:11;;;8354:1;8350:19;8346:46;;;8338:55;;8334:82;;-1:-1:-1;8289:137:101;;8094:338;;;;:::o;8644:127::-;8705:10;8700:3;8696:20;8693:1;8686:31;8736:4;8733:1;8726:15;8760:4;8757:1;8750:15;9029:254;9059:1;9093:4;9090:1;9086:12;9117:3;9107:134;;9163:10;9158:3;9154:20;9151:1;9144:31;9198:4;9195:1;9188:15;9226:4;9223:1;9216:15;9107:134;9273:3;9266:4;9263:1;9259:12;9255:22;9250:27;;;9029:254;;;;:::o"},"methodIdentifiers":{"OVERRIDE_UNSET()":"f3c0b892","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","asset()":"38d52e0f","balanceOf(address)":"70a08231","broken()":"7fb1ad62","convertToAssets(uint256)":"07a2d13a","convertToShares(uint256)":"c6e6f592","decimals()":"313ce567","deposit(uint256,address)":"6e553f65","discreteEarning(int256)":"c7361ed2","maxDeposit(address)":"402d267d","maxMint(address)":"c63d75b6","maxRedeem(address)":"d905777e","maxWithdraw(address)":"ce96cb77","mint(uint256,address)":"94bf804d","name()":"06fdde03","overrideMaxDeposit()":"39d88aff","overrideMaxMint()":"034548cd","overrideMaxRedeem()":"cc7fcc60","overrideMaxWithdraw()":"38359018","previewDeposit(uint256)":"ef8b30f7","previewMint(uint256)":"b3d7f6b9","previewRedeem(uint256)":"4cdad506","previewWithdraw(uint256)":"0a28a477","redeem(uint256,address,address)":"ba087652","setBroken(bool)":"86de9e4f","setOverride(uint8,uint256)":"d6dd0234","symbol()":"95d89b41","totalAssets()":"01e1d114","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","withdraw(uint256,address,address)":"b460af94"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"contract IERC20Metadata\",\"name\":\"asset_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"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\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxMint\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxRedeem\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxWithdraw\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"VaultIsBroken\",\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"OVERRIDE_UNSET\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"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\":[],\"name\":\"asset\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"broken\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"convertToAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"convertToShares\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"int256\",\"name\":\"assets\",\"type\":\"int256\"}],\"name\":\"discreteEarning\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"overrideMaxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"overrideMaxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"overrideMaxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"overrideMaxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"redeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"broken_\",\"type\":\"bool\"}],\"name\":\"setBroken\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"enum TestERC4626.OverrideOption\",\"name\":\"option\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"newValue\",\"type\":\"uint256\"}],\"name\":\"setOverride\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalAssets\",\"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\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"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.\"}}],\"ERC4626ExceededMaxDeposit(address,uint256,uint256)\":[{\"details\":\"Attempted to deposit more assets than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxMint(address,uint256,uint256)\":[{\"details\":\"Attempted to mint more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxRedeem(address,uint256,uint256)\":[{\"details\":\"Attempted to redeem more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxWithdraw(address,uint256,uint256)\":[{\"details\":\"Attempted to withdraw more assets than the max amount for `receiver`.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}]},\"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\":\"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.\"},\"asset()\":{\"details\":\"Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing. - MUST be an ERC-20 token contract. - MUST NOT revert.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"convertToAssets(uint256)\":{\"details\":\"Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"convertToShares(uint256)\":{\"details\":\"Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"decimals()\":{\"details\":\"Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This \\\"original\\\" value is cached during construction of the vault contract. If this read operation fails (e.g., the asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals. See {IERC20Metadata-decimals}.\"},\"deposit(uint256,address)\":{\"details\":\"Deposit `assets` underlying tokens and send the corresponding number of vault shares (`shares`) to `receiver`. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   deposit execution, and are accounted for during deposit. - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"maxRedeem(address)\":{\"details\":\"Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault, through a redeem call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock. - MUST NOT revert.\"},\"maxWithdraw(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the Vault, through a withdraw call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST NOT revert.\"},\"mint(uint256,address)\":{\"details\":\"Mints exactly `shares` vault shares to `receiver` in exchange for `assets` underlying tokens. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint   execution, and are accounted for during mint. - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"previewDeposit(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit   call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called   in the same transaction. - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the   deposit would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"previewMint(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call   in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the   same transaction. - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint   would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by minting.\"},\"previewRedeem(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their redemption at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call   in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the   same transaction. - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the   redemption would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by redeeming.\"},\"previewWithdraw(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw   call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if   called   in the same transaction. - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though   the withdrawal would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"redeem(uint256,address,address)\":{\"details\":\"Burns exactly shares from owner and sends assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   redeem execution, and are accounted for during redeem. - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalAssets()\":{\"details\":\"Returns the total amount of the underlying asset that is \\u201cmanaged\\u201d by Vault. - SHOULD include any compounding that occurs from yield. - MUST be inclusive of any fees that are charged against assets in the Vault. - MUST NOT revert.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"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`.\"},\"withdraw(uint256,address,address)\":{\"details\":\"Burns shares from owner and sends exactly assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   withdraw execution, and are accounted for during withdraw. - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/utils/contracts/TestERC4626.sol\":\"TestERC4626\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/utils/contracts/TestERC4626.sol\":{\"keccak256\":\"0x688032ec63b79e352f3eb8ceb1a358d9b61ff630a346807b1e9a017de0200150\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://6d40c7e350166b37b8f5301916939a752ffe296c30f7413b45b9c6b2c4c8e4ce\",\"dweb:/ipfs/QmWRG5CZsU1jeuoryJZP3Sg1cQU8Mu9C5bB7TwhF2M1ZaQ\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x669464167428061ee0f8618b73b3ee90aff8405683e7ddde8cd77dadaa1afe29\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0dda78587a7358b4fdf6b9fca0fde5a5e34930f36d5268a16028627fc0170195\",\"dweb:/ipfs/QmQ1b6cCceDRWNxti9HifsTCzmVP25Haxs1bWugm52vTqH\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol\":{\"keccak256\":\"0x8a6a0045f0bb52251a9a5d8bb5f4156f4eb3ba8521b1fca6a304befaab3e7d23\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ebd5125436dbb18ba3646cbdb4a8385a9e2bf28abc9d8178a9e7f31cca65f8b8\",\"dweb:/ipfs/QmPioMpycRKdAetJNYYfWCw36rQuyxNqhgHDFGRVLaPKnT\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Memory.sol\":{\"keccak256\":\"0x35feec480590c0ed9c1623df077ba9af406ad57cd9d149ff278c7316d6fe8fe0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://839967d079db4cd624c3f735a6e911953c0e2347418c016f6a0cc18ed1aa9603\",\"dweb:/ipfs/QmaWxNL8Ymkwerfvq1LNzpbq2PMzTGsnXzqsYExNyvKWka\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":7407,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":7413,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":7415,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":7417,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":7419,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"},{"astId":691,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_broken","offset":0,"slot":"5","type":"t_bool"},{"astId":693,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"overrideMaxDeposit","offset":0,"slot":"6","type":"t_uint256"},{"astId":695,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"overrideMaxMint","offset":0,"slot":"7","type":"t_uint256"},{"astId":697,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"overrideMaxWithdraw","offset":0,"slot":"8","type":"t_uint256"},{"astId":699,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"overrideMaxRedeem","offset":0,"slot":"9","type":"t_uint256"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol":{"ERC20Upgradeable":{"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"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","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":"uint64","name":"version","type":"uint64"}],"name":"Initialized","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.30+commit.73712a01\"},\"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\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"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\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"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.\"}}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"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.\"},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"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\":\"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\":\"Returns the value of tokens owned by `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}.\"},\"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\":\"Returns the value of tokens in existence.\"},\"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-upgradeable/token/ERC20/ERC20Upgradeable.sol\":\"ERC20Upgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\":{\"keccak256\":\"0xd518def45c722a6e803e1e26e625db25e01497f672ca566cca585d234ec903b0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6e7de3fccd96783244790cde282435ce0fd3a44ab4ccb10f17005c743202882f\",\"dweb:/ipfs/QmYSepstTqs5UPJvjeJXkWU5R659yReqrSgSGGh65hkbdK\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol":{"ERC20PermitUpgradeable":{"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"},{"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":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","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":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","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":"DOMAIN_SEPARATOR","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[],"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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","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":{"DOMAIN_SEPARATOR()":"3644e515","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","eip712Domain()":"84b0196e","name()":"06fdde03","nonces(address)":"7ecebe00","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\"},{\"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\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"ERC2612ExpiredSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC2612InvalidSigner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"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\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"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\":\"DOMAIN_SEPARATOR\",\"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\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"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\":[],\"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\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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 ERC-20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[ERC-2612]. Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't need to send a transaction, and thus is not required to hold Ether at all.\",\"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.\"}],\"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.\"}}],\"ERC2612ExpiredSignature(uint256)\":[{\"details\":\"Permit deadline has expired.\"}],\"ERC2612InvalidSigner(address,address)\":[{\"details\":\"Mismatched signature.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"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.\"},\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"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\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"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\":\"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\":\"Returns the value of tokens owned by `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}.\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"nonces(address)\":{\"details\":\"Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also applies here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section]. CAUTION: See Security Considerations above.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"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-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol\":\"ERC20PermitUpgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\":{\"keccak256\":\"0xd518def45c722a6e803e1e26e625db25e01497f672ca566cca585d234ec903b0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6e7de3fccd96783244790cde282435ce0fd3a44ab4ccb10f17005c743202882f\",\"dweb:/ipfs/QmYSepstTqs5UPJvjeJXkWU5R659yReqrSgSGGh65hkbdK\"]},\"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol\":{\"keccak256\":\"0x2abba89aa289a6c0e38404a5b2e0020ca133e1ae0c790bdfc4cc99a1e2af93ba\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://babdfa68f728f6063f378692ac75dc086d3a7d7a4c04f53779c4365d0b2d1124\",\"dweb:/ipfs/QmNZe3zu6FvpN9xBMadQsxip11VAUyqJWHTbrBGCqes9SC\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts-upgradeable/utils/NoncesUpgradeable.sol\":{\"keccak256\":\"0xe82a34ce4440f4c0a144fcd5c837c05bcd6bfbd947ba184f3e9904c14ed280ad\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f05905d8f1f2941589c625b74f2ca7fb3f2a8d8b9e55c0b31072404720a1cb95\",\"dweb:/ipfs/QmVCzDUqSaUYGLSqwkeEQHBMTrJQtUMjEsBBEsGYBdyazE\"]},\"@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol\":{\"keccak256\":\"0x5c9adc83ba1c3bed191e5c3d462737f02b48d8a6e4aecbad9e6df6ac257fe6c4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5d2cfe337601df0454355fc8e949db2840c7a8a305dfeb50c9c0041ea39d42b8\",\"dweb:/ipfs/QmeXh9iqjQ6t5t4NqUjmv8vaDV1jDrSwXQVkVdyDjk2ZUm\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0xfb223a85dd0b2175cfbbaa325a744e2cd74ecd17c3df2b77b0722f991d2725ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://84bf1dea0589ec49c8d15d559cc6d86ee493048a89b2d4adb60fbe705a3d89ae\",\"dweb:/ipfs/Qmd56n556d529wk2pRMhYhm5nhMDhviwereodDikjs68w1\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x53befc41288eaa87edcd3a7be7e8475a32e44c6a29f9bf52fae789781301d9ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a1d7fab53c4ceaf42391b83d9b36d7e9cc524a8da125cffdcd32c56560f9d1c9\",\"dweb:/ipfs/QmaRZdVhQdqNXofeimibkBG65q9GVcXVZEGpycwwX3znC6\"]},\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x360cf86214a764694dae1522a38200b1737fe90e46dcf56a0f89de143071cc20\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e393290a46ca6d1fa1addb40709d26e1d250638ab6acdd103b5af21768ebc7b\",\"dweb:/ipfs/QmPwT3tXwQ9NbGtZ99XRq7sr8LCQP8XaCrzw49JdXGn7us\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x6abeed5940e1da7bb329e458db9a1c5c4ea6f86d651b952af99c6bddcd6bbb94\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fe75e9a6b759c5d7fd82fb59bd4f58c672b36f0a69b84f4789b7c7895d3e61c\",\"dweb:/ipfs/QmX28wsir8w5sS3acfJMNHcBwoPsDpqCu7WDkPnUWLMNiZ\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol":{"ERC721Upgradeable":{"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"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","getApproved(uint256)":"081812fc","isApprovedForAll(address,address)":"e985e9c5","name()":"06fdde03","ownerOf(uint256)":"6352211e","safeTransferFrom(address,address,uint256)":"42842e0e","safeTransferFrom(address,address,uint256,bytes)":"b88d4fde","setApprovalForAll(address,bool)":"a22cb465","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","tokenURI(uint256)":"c87b56dd","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"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\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC-721] Non-Fungible Token Standard, including the Metadata extension, but not including the Enumerable extension, which is available separately as {ERC721Enumerable}.\",\"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-721. 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.\"}}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when `owner` enables `approved` to manage the `tokenId` token.\"},\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\"},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"}},\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"name()\":{\"details\":\"Returns the token collection name.\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC-721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must have been allowed to move this token by either {approve} or   {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the address zero. Emits an {ApprovalForAll} event.\"},\"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.\"},\"symbol()\":{\"details\":\"Returns the token collection symbol.\"},\"tokenURI(uint256)\":{\"details\":\"Returns the Uniform Resource Identifier (URI) for `tokenId` token.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721 or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must understand this adds an external call which potentially creates a reentrancy vulnerability. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol\":\"ERC721Upgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol\":{\"keccak256\":\"0xb813cb6a31231d48456f46d35a82ff89a643e03d015027e0a34dd3a611370b69\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6ac2aa7e379a6804c0814ad4354c8626bceac3c37d641fc0105f666ebdd1aea7\",\"dweb:/ipfs/QmQ1a69VXEfVKP3Vgwk9CGd5surx3YQX5eNDvXDSf6aspG\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol\":{\"keccak256\":\"0x16b88aca1f1c3aa38783416d86207ce6fe574fcd1993dfe54403b5c8b6c74224\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://29f3c5c687fe0d87742b013872f495e67656910530c916a69873860dc8fea812\",\"dweb:/ipfs/QmbspfQXmbhCANqqiunUFm9fiVVQwPet2YKQoJ58km442Y\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xf78f05f3b8c9f75570e85300d7b4600d7f6f6a198449273f31d44c1641adb46f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e28b872613b45e0e801d4995aa4380be2531147bfe2d85c1d6275f1de514fba3\",\"dweb:/ipfs/QmeeFcfShHYaS3BdgVj78nxR28ZaVUwbvr66ud8bT6kzw9\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0x88cd5e3bee2e8c36b8d9058fbcaa81ad5704281b25634122234b55ea853d8055\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8dc7e7ab5b8ea36c15027ab04221b05d1c970f47a53e9fd47ead8ca665d49c7e\",\"dweb:/ipfs/Qmeeph7fsDyfRr8vb2L8KcDEmKPb224TAayMvgqgGAnqpL\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0xf46268c37522320bb2119a5a394bc5c739a95c0c574c8d08e8c643f4d06e5c76\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://517e4b295f35b9947c72ad7379a6089439ece7bb6f4a2ea0a159da13046c039e\",\"dweb:/ipfs/QmZXzkSfLUbvujig3zVbpDHykpHhqLpvQtdiN3B5j4TA3u\"]},\"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol\":{\"keccak256\":\"0xc7efbc23214ad7dced8bf2249460f4bda114d57f6a0079f84040654280f455bd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1f5bd44efca8c8c0d74439e7b808d1f9c4af1df78f91fef8e8bbca8104645435\",\"dweb:/ipfs/Qmb42XSd8MKsEitp42sZkSFGqDRigk6QgGXtiJyJqUZJJ6\"]},\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol":{"ContextUpgradeable":{"abi":[{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"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.\",\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":\"ContextUpgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol":{"MulticallUpgradeable":{"abi":[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"multicall(bytes[])":"ac9650d8"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"multicall\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"results\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Provides a function to batch together multiple calls in a single external call. Consider any assumption about calldata validation performed by the sender may be violated if it's not especially careful about sending transactions invoking {multicall}. For example, a relay address that filters function selectors won't filter calls nested within a {multicall} operation. NOTE: Since 5.0.1 and 4.9.4, this contract identifies non-canonical contexts (i.e. `msg.sender` is not {Context-_msgSender}). If a non-canonical context is identified, the following self `delegatecall` appends the last bytes of `msg.data` to the subcall. This makes it safe to use with {ERC2771Context}. Contexts that don't affect the resolution of {Context-_msgSender} are not propagated to subcalls.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{\"multicall(bytes[])\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Receives and executes a batch of function calls on this contract.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol\":\"MulticallUpgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol\":{\"keccak256\":\"0x842cc1aad7ab31fce63200401deddce3a84f73fef96b3a4841b310b09ab9aa7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://90c6d93642c21475ba6240ad13a8d75f5df215e0363efc4cbe13f71e779d38d2\",\"dweb:/ipfs/QmXCGRb3aYGf9js21UfV7tATAo26o3gWRgM539WamvniP6\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/utils/NoncesUpgradeable.sol":{"NoncesUpgradeable":{"abi":[{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"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.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"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.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"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-upgradeable/utils/NoncesUpgradeable.sol\":\"NoncesUpgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/utils/NoncesUpgradeable.sol\":{\"keccak256\":\"0xe82a34ce4440f4c0a144fcd5c837c05bcd6bfbd947ba184f3e9904c14ed280ad\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f05905d8f1f2941589c625b74f2ca7fb3f2a8d8b9e55c0b31072404720a1cb95\",\"dweb:/ipfs/QmVCzDUqSaUYGLSqwkeEQHBMTrJQtUMjEsBBEsGYBdyazE\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol":{"PausableUpgradeable":{"abi":[{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"paused","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":{"paused()":"5c975abb"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"EnforcedPause\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ExpectedPause\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module which allows children to implement an emergency stop mechanism that can be triggered by an authorized account. This module is used through inheritance. It will make available the modifiers `whenNotPaused` and `whenPaused`, which can be applied to the functions of your contract. Note that they will not be pausable by simply including this module, only once the modifiers are put in place.\",\"errors\":{\"EnforcedPause()\":[{\"details\":\"The operation failed because the contract is paused.\"}],\"ExpectedPause()\":[{\"details\":\"The operation failed because the contract is not paused.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Paused(address)\":{\"details\":\"Emitted when the pause is triggered by `account`.\"},\"Unpaused(address)\":{\"details\":\"Emitted when the pause is lifted by `account`.\"}},\"kind\":\"dev\",\"methods\":{\"paused()\":{\"details\":\"Returns true if the contract is paused, and false otherwise.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol\":\"PausableUpgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol\":{\"keccak256\":\"0x1149f6c3445a564f5b9cd27c2dc85c6bcaed254c67cb57a416bc7ca1f667ad1f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8a72ecd1a82f8ece4d83280a4920a6269e83bec971a27d0ce2e3a21d2ae08450\",\"dweb:/ipfs/QmSn68D8stm6b7m4nZndhTqincMQdoTqNrRXmAReV9Xb2r\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol":{"EIP712Upgradeable":{"abi":[{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","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.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"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\":{\"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: The upgradeable version of this contract does not use an immutable cache and recomputes the domain separator each time {_domainSeparatorV4} is called. That is cheaper than accessing a cached version in cold storage.\",\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"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-upgradeable/utils/cryptography/EIP712Upgradeable.sol\":\"EIP712Upgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol\":{\"keccak256\":\"0x5c9adc83ba1c3bed191e5c3d462737f02b48d8a6e4aecbad9e6df6ac257fe6c4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5d2cfe337601df0454355fc8e949db2840c7a8a305dfeb50c9c0041ea39d42b8\",\"dweb:/ipfs/QmeXh9iqjQ6t5t4NqUjmv8vaDV1jDrSwXQVkVdyDjk2ZUm\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0xfb223a85dd0b2175cfbbaa325a744e2cd74ecd17c3df2b77b0722f991d2725ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://84bf1dea0589ec49c8d15d559cc6d86ee493048a89b2d4adb60fbe705a3d89ae\",\"dweb:/ipfs/Qmd56n556d529wk2pRMhYhm5nhMDhviwereodDikjs68w1\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x6abeed5940e1da7bb329e458db9a1c5c4ea6f86d651b952af99c6bddcd6bbb94\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fe75e9a6b759c5d7fd82fb59bd4f58c672b36f0a69b84f4789b7c7895d3e61c\",\"dweb:/ipfs/QmX28wsir8w5sS3acfJMNHcBwoPsDpqCu7WDkPnUWLMNiZ\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol":{"ERC165Upgradeable":{"abi":[{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"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.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"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); } ```\",\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"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-upgradeable/utils/introspection/ERC165Upgradeable.sol\":\"ERC165Upgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol\":{\"keccak256\":\"0x16b88aca1f1c3aa38783416d86207ce6fe574fcd1993dfe54403b5c8b6c74224\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://29f3c5c687fe0d87742b013872f495e67656910530c916a69873860dc8fea812\",\"dweb:/ipfs/QmbspfQXmbhCANqqiunUFm9fiVVQwPet2YKQoJ58km442Y\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@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.30+commit.73712a01\"},\"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 to signal 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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xbff9f59c84e5337689161ce7641c0ef8e872d6a7536fbc1f5133f128887aba3c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b308f882e796f7b79c9502deacb0a62983035c6f6f4e962b319ba6a1f4a77d3d\",\"dweb:/ipfs/QmaWCW7ahEQqFjwhSUhV7Ae7WhfNvzSpE7DQ58hvEooqPL\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/access/manager/AccessManager.sol":{"AccessManager":{"abi":[{"inputs":[{"internalType":"address","name":"initialAdmin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerAlreadyScheduled","type":"error"},{"inputs":[],"name":"AccessManagerBadConfirmation","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerExpired","type":"error"},{"inputs":[{"internalType":"address","name":"initialAdmin","type":"address"}],"name":"AccessManagerInvalidInitialAdmin","type":"error"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"AccessManagerLockedRole","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerNotReady","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerNotScheduled","type":"error"},{"inputs":[{"internalType":"address","name":"msgsender","type":"address"},{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"AccessManagerUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"AccessManagerUnauthorizedCall","type":"error"},{"inputs":[{"internalType":"address","name":"msgsender","type":"address"},{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"AccessManagerUnauthorizedCancel","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AccessManagerUnauthorizedConsume","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"}],"name":"OperationCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"}],"name":"OperationExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"schedule","type":"uint48"},{"indexed":false,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"OperationScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"uint64","name":"admin","type":"uint64"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"}],"name":"RoleGrantDelayChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"},{"indexed":false,"internalType":"bool","name":"newMember","type":"bool"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"uint64","name":"guardian","type":"uint64"}],"name":"RoleGuardianChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":false,"internalType":"string","name":"label","type":"string"}],"name":"RoleLabel","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"}],"name":"TargetAdminDelayUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bool","name":"closed","type":"bool"}],"name":"TargetClosed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes4","name":"selector","type":"bytes4"},{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"TargetFunctionRoleUpdated","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_ROLE","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"canCall","outputs":[{"internalType":"bool","name":"immediate","type":"bool"},{"internalType":"uint32","name":"delay","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"cancel","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"consumeScheduledOp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"execute","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"expiration","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"getAccess","outputs":[{"internalType":"uint48","name":"since","type":"uint48"},{"internalType":"uint32","name":"currentDelay","type":"uint32"},{"internalType":"uint32","name":"pendingDelay","type":"uint32"},{"internalType":"uint48","name":"effect","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getNonce","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleAdmin","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleGrantDelay","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleGuardian","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getSchedule","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"getTargetAdminDelay","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"getTargetFunctionRole","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"executionDelay","type":"uint32"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"isMember","type":"bool"},{"internalType":"uint32","name":"executionDelay","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"hashOperation","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"isTargetClosed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"string","name":"label","type":"string"}],"name":"labelRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minSetback","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint48","name":"when","type":"uint48"}],"name":"schedule","outputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"},{"internalType":"uint32","name":"nonce","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint32","name":"newDelay","type":"uint32"}],"name":"setGrantDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint64","name":"admin","type":"uint64"}],"name":"setRoleAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint64","name":"guardian","type":"uint64"}],"name":"setRoleGuardian","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"newDelay","type":"uint32"}],"name":"setTargetAdminDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"closed","type":"bool"}],"name":"setTargetClosed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4[]","name":"selectors","type":"bytes4[]"},{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"setTargetFunctionRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"address","name":"newAuthority","type":"address"}],"name":"updateAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_3881":{"entryPoint":null,"id":3881,"parameterSlots":1,"returnSlots":0},"@_getFullAt_17913":{"entryPoint":1016,"id":17913,"parameterSlots":2,"returnSlots":3},"@_grantRole_4385":{"entryPoint":111,"id":4385,"parameterSlots":4,"returnSlots":1},"@getFull_17933":{"entryPoint":983,"id":17933,"parameterSlots":1,"returnSlots":3},"@get_17951":{"entryPoint":937,"id":17951,"parameterSlots":1,"returnSlots":1},"@max_14580":{"entryPoint":967,"id":14580,"parameterSlots":2,"returnSlots":1},"@pack_18096":{"entryPoint":null,"id":18096,"parameterSlots":3,"returnSlots":1},"@ternary_14561":{"entryPoint":null,"id":14561,"parameterSlots":3,"returnSlots":1},"@timestamp_17845":{"entryPoint":693,"id":17845,"parameterSlots":0,"returnSlots":1},"@toDelay_17875":{"entryPoint":708,"id":17875,"parameterSlots":1,"returnSlots":1},"@toUint48_16669":{"entryPoint":883,"id":16669,"parameterSlots":1,"returnSlots":1},"@toUint_17678":{"entryPoint":null,"id":17678,"parameterSlots":1,"returnSlots":1},"@unpack_18058":{"entryPoint":null,"id":18058,"parameterSlots":1,"returnSlots":3},"@withUpdate_18007":{"entryPoint":717,"id":18007,"parameterSlots":3,"returnSlots":2},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":1089,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint48":{"entryPoint":1154,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint32":{"entryPoint":1184,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":1134,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:1849:101","nodeType":"YulBlock","src":"0:1849:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"95:209:101","nodeType":"YulBlock","src":"95:209:101","statements":[{"body":{"nativeSrc":"141:16:101","nodeType":"YulBlock","src":"141:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"150:1:101","nodeType":"YulLiteral","src":"150:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"153:1:101","nodeType":"YulLiteral","src":"153:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"143:6:101","nodeType":"YulIdentifier","src":"143:6:101"},"nativeSrc":"143:12:101","nodeType":"YulFunctionCall","src":"143:12:101"},"nativeSrc":"143:12:101","nodeType":"YulExpressionStatement","src":"143:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"116:7:101","nodeType":"YulIdentifier","src":"116:7:101"},{"name":"headStart","nativeSrc":"125:9:101","nodeType":"YulIdentifier","src":"125:9:101"}],"functionName":{"name":"sub","nativeSrc":"112:3:101","nodeType":"YulIdentifier","src":"112:3:101"},"nativeSrc":"112:23:101","nodeType":"YulFunctionCall","src":"112:23:101"},{"kind":"number","nativeSrc":"137:2:101","nodeType":"YulLiteral","src":"137:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"108:3:101","nodeType":"YulIdentifier","src":"108:3:101"},"nativeSrc":"108:32:101","nodeType":"YulFunctionCall","src":"108:32:101"},"nativeSrc":"105:52:101","nodeType":"YulIf","src":"105:52:101"},{"nativeSrc":"166:29:101","nodeType":"YulVariableDeclaration","src":"166:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"185:9:101","nodeType":"YulIdentifier","src":"185:9:101"}],"functionName":{"name":"mload","nativeSrc":"179:5:101","nodeType":"YulIdentifier","src":"179:5:101"},"nativeSrc":"179:16:101","nodeType":"YulFunctionCall","src":"179:16:101"},"variables":[{"name":"value","nativeSrc":"170:5:101","nodeType":"YulTypedName","src":"170:5:101","type":""}]},{"body":{"nativeSrc":"258:16:101","nodeType":"YulBlock","src":"258:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"267:1:101","nodeType":"YulLiteral","src":"267:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"270:1:101","nodeType":"YulLiteral","src":"270:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"260:6:101","nodeType":"YulIdentifier","src":"260:6:101"},"nativeSrc":"260:12:101","nodeType":"YulFunctionCall","src":"260:12:101"},"nativeSrc":"260:12:101","nodeType":"YulExpressionStatement","src":"260:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"217:5:101","nodeType":"YulIdentifier","src":"217:5:101"},{"arguments":[{"name":"value","nativeSrc":"228:5:101","nodeType":"YulIdentifier","src":"228:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"243:3:101","nodeType":"YulLiteral","src":"243:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"248:1:101","nodeType":"YulLiteral","src":"248:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"239:3:101","nodeType":"YulIdentifier","src":"239:3:101"},"nativeSrc":"239:11:101","nodeType":"YulFunctionCall","src":"239:11:101"},{"kind":"number","nativeSrc":"252:1:101","nodeType":"YulLiteral","src":"252:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"235:3:101","nodeType":"YulIdentifier","src":"235:3:101"},"nativeSrc":"235:19:101","nodeType":"YulFunctionCall","src":"235:19:101"}],"functionName":{"name":"and","nativeSrc":"224:3:101","nodeType":"YulIdentifier","src":"224:3:101"},"nativeSrc":"224:31:101","nodeType":"YulFunctionCall","src":"224:31:101"}],"functionName":{"name":"eq","nativeSrc":"214:2:101","nodeType":"YulIdentifier","src":"214:2:101"},"nativeSrc":"214:42:101","nodeType":"YulFunctionCall","src":"214:42:101"}],"functionName":{"name":"iszero","nativeSrc":"207:6:101","nodeType":"YulIdentifier","src":"207:6:101"},"nativeSrc":"207:50:101","nodeType":"YulFunctionCall","src":"207:50:101"},"nativeSrc":"204:70:101","nodeType":"YulIf","src":"204:70:101"},{"nativeSrc":"283:15:101","nodeType":"YulAssignment","src":"283:15:101","value":{"name":"value","nativeSrc":"293:5:101","nodeType":"YulIdentifier","src":"293:5:101"},"variableNames":[{"name":"value0","nativeSrc":"283:6:101","nodeType":"YulIdentifier","src":"283:6:101"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"14:290:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"61:9:101","nodeType":"YulTypedName","src":"61:9:101","type":""},{"name":"dataEnd","nativeSrc":"72:7:101","nodeType":"YulTypedName","src":"72:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"84:6:101","nodeType":"YulTypedName","src":"84:6:101","type":""}],"src":"14:290:101"},{"body":{"nativeSrc":"410:102:101","nodeType":"YulBlock","src":"410:102:101","statements":[{"nativeSrc":"420:26:101","nodeType":"YulAssignment","src":"420:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"432:9:101","nodeType":"YulIdentifier","src":"432:9:101"},{"kind":"number","nativeSrc":"443:2:101","nodeType":"YulLiteral","src":"443:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"428:3:101","nodeType":"YulIdentifier","src":"428:3:101"},"nativeSrc":"428:18:101","nodeType":"YulFunctionCall","src":"428:18:101"},"variableNames":[{"name":"tail","nativeSrc":"420:4:101","nodeType":"YulIdentifier","src":"420:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"462:9:101","nodeType":"YulIdentifier","src":"462:9:101"},{"arguments":[{"name":"value0","nativeSrc":"477:6:101","nodeType":"YulIdentifier","src":"477:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"493:3:101","nodeType":"YulLiteral","src":"493:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"498:1:101","nodeType":"YulLiteral","src":"498:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"489:3:101","nodeType":"YulIdentifier","src":"489:3:101"},"nativeSrc":"489:11:101","nodeType":"YulFunctionCall","src":"489:11:101"},{"kind":"number","nativeSrc":"502:1:101","nodeType":"YulLiteral","src":"502:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"485:3:101","nodeType":"YulIdentifier","src":"485:3:101"},"nativeSrc":"485:19:101","nodeType":"YulFunctionCall","src":"485:19:101"}],"functionName":{"name":"and","nativeSrc":"473:3:101","nodeType":"YulIdentifier","src":"473:3:101"},"nativeSrc":"473:32:101","nodeType":"YulFunctionCall","src":"473:32:101"}],"functionName":{"name":"mstore","nativeSrc":"455:6:101","nodeType":"YulIdentifier","src":"455:6:101"},"nativeSrc":"455:51:101","nodeType":"YulFunctionCall","src":"455:51:101"},"nativeSrc":"455:51:101","nodeType":"YulExpressionStatement","src":"455:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"309:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"379:9:101","nodeType":"YulTypedName","src":"379:9:101","type":""},{"name":"value0","nativeSrc":"390:6:101","nodeType":"YulTypedName","src":"390:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"401:4:101","nodeType":"YulTypedName","src":"401:4:101","type":""}],"src":"309:203:101"},{"body":{"nativeSrc":"616:101:101","nodeType":"YulBlock","src":"616:101:101","statements":[{"nativeSrc":"626:26:101","nodeType":"YulAssignment","src":"626:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"638:9:101","nodeType":"YulIdentifier","src":"638:9:101"},{"kind":"number","nativeSrc":"649:2:101","nodeType":"YulLiteral","src":"649:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"634:3:101","nodeType":"YulIdentifier","src":"634:3:101"},"nativeSrc":"634:18:101","nodeType":"YulFunctionCall","src":"634:18:101"},"variableNames":[{"name":"tail","nativeSrc":"626:4:101","nodeType":"YulIdentifier","src":"626:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"668:9:101","nodeType":"YulIdentifier","src":"668:9:101"},{"arguments":[{"name":"value0","nativeSrc":"683:6:101","nodeType":"YulIdentifier","src":"683:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"699:2:101","nodeType":"YulLiteral","src":"699:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"703:1:101","nodeType":"YulLiteral","src":"703:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"695:3:101","nodeType":"YulIdentifier","src":"695:3:101"},"nativeSrc":"695:10:101","nodeType":"YulFunctionCall","src":"695:10:101"},{"kind":"number","nativeSrc":"707:1:101","nodeType":"YulLiteral","src":"707:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"691:3:101","nodeType":"YulIdentifier","src":"691:3:101"},"nativeSrc":"691:18:101","nodeType":"YulFunctionCall","src":"691:18:101"}],"functionName":{"name":"and","nativeSrc":"679:3:101","nodeType":"YulIdentifier","src":"679:3:101"},"nativeSrc":"679:31:101","nodeType":"YulFunctionCall","src":"679:31:101"}],"functionName":{"name":"mstore","nativeSrc":"661:6:101","nodeType":"YulIdentifier","src":"661:6:101"},"nativeSrc":"661:50:101","nodeType":"YulFunctionCall","src":"661:50:101"},"nativeSrc":"661:50:101","nodeType":"YulExpressionStatement","src":"661:50:101"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"517:200:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"585:9:101","nodeType":"YulTypedName","src":"585:9:101","type":""},{"name":"value0","nativeSrc":"596:6:101","nodeType":"YulTypedName","src":"596:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"607:4:101","nodeType":"YulTypedName","src":"607:4:101","type":""}],"src":"517:200:101"},{"body":{"nativeSrc":"754:95:101","nodeType":"YulBlock","src":"754:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"771:1:101","nodeType":"YulLiteral","src":"771:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"778:3:101","nodeType":"YulLiteral","src":"778:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"783:10:101","nodeType":"YulLiteral","src":"783:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"774:3:101","nodeType":"YulIdentifier","src":"774:3:101"},"nativeSrc":"774:20:101","nodeType":"YulFunctionCall","src":"774:20:101"}],"functionName":{"name":"mstore","nativeSrc":"764:6:101","nodeType":"YulIdentifier","src":"764:6:101"},"nativeSrc":"764:31:101","nodeType":"YulFunctionCall","src":"764:31:101"},"nativeSrc":"764:31:101","nodeType":"YulExpressionStatement","src":"764:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"811:1:101","nodeType":"YulLiteral","src":"811:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"814:4:101","nodeType":"YulLiteral","src":"814:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"804:6:101","nodeType":"YulIdentifier","src":"804:6:101"},"nativeSrc":"804:15:101","nodeType":"YulFunctionCall","src":"804:15:101"},"nativeSrc":"804:15:101","nodeType":"YulExpressionStatement","src":"804:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"835:1:101","nodeType":"YulLiteral","src":"835:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"838:4:101","nodeType":"YulLiteral","src":"838:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"828:6:101","nodeType":"YulIdentifier","src":"828:6:101"},"nativeSrc":"828:15:101","nodeType":"YulFunctionCall","src":"828:15:101"},"nativeSrc":"828:15:101","nodeType":"YulExpressionStatement","src":"828:15:101"}]},"name":"panic_error_0x11","nativeSrc":"722:127:101","nodeType":"YulFunctionDefinition","src":"722:127:101"},{"body":{"nativeSrc":"901:132:101","nodeType":"YulBlock","src":"901:132:101","statements":[{"nativeSrc":"911:58:101","nodeType":"YulAssignment","src":"911:58:101","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"926:1:101","nodeType":"YulIdentifier","src":"926:1:101"},{"kind":"number","nativeSrc":"929:14:101","nodeType":"YulLiteral","src":"929:14:101","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"922:3:101","nodeType":"YulIdentifier","src":"922:3:101"},"nativeSrc":"922:22:101","nodeType":"YulFunctionCall","src":"922:22:101"},{"arguments":[{"name":"y","nativeSrc":"950:1:101","nodeType":"YulIdentifier","src":"950:1:101"},{"kind":"number","nativeSrc":"953:14:101","nodeType":"YulLiteral","src":"953:14:101","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"946:3:101","nodeType":"YulIdentifier","src":"946:3:101"},"nativeSrc":"946:22:101","nodeType":"YulFunctionCall","src":"946:22:101"}],"functionName":{"name":"add","nativeSrc":"918:3:101","nodeType":"YulIdentifier","src":"918:3:101"},"nativeSrc":"918:51:101","nodeType":"YulFunctionCall","src":"918:51:101"},"variableNames":[{"name":"sum","nativeSrc":"911:3:101","nodeType":"YulIdentifier","src":"911:3:101"}]},{"body":{"nativeSrc":"1005:22:101","nodeType":"YulBlock","src":"1005:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"1007:16:101","nodeType":"YulIdentifier","src":"1007:16:101"},"nativeSrc":"1007:18:101","nodeType":"YulFunctionCall","src":"1007:18:101"},"nativeSrc":"1007:18:101","nodeType":"YulExpressionStatement","src":"1007:18:101"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"984:3:101","nodeType":"YulIdentifier","src":"984:3:101"},{"kind":"number","nativeSrc":"989:14:101","nodeType":"YulLiteral","src":"989:14:101","type":"","value":"0xffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"981:2:101","nodeType":"YulIdentifier","src":"981:2:101"},"nativeSrc":"981:23:101","nodeType":"YulFunctionCall","src":"981:23:101"},"nativeSrc":"978:49:101","nodeType":"YulIf","src":"978:49:101"}]},"name":"checked_add_t_uint48","nativeSrc":"854:179:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"884:1:101","nodeType":"YulTypedName","src":"884:1:101","type":""},{"name":"y","nativeSrc":"887:1:101","nodeType":"YulTypedName","src":"887:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"893:3:101","nodeType":"YulTypedName","src":"893:3:101","type":""}],"src":"854:179:101"},{"body":{"nativeSrc":"1185:216:101","nodeType":"YulBlock","src":"1185:216:101","statements":[{"nativeSrc":"1195:26:101","nodeType":"YulAssignment","src":"1195:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1207:9:101","nodeType":"YulIdentifier","src":"1207:9:101"},{"kind":"number","nativeSrc":"1218:2:101","nodeType":"YulLiteral","src":"1218:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1203:3:101","nodeType":"YulIdentifier","src":"1203:3:101"},"nativeSrc":"1203:18:101","nodeType":"YulFunctionCall","src":"1203:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1195:4:101","nodeType":"YulIdentifier","src":"1195:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1237:9:101","nodeType":"YulIdentifier","src":"1237:9:101"},{"arguments":[{"name":"value0","nativeSrc":"1252:6:101","nodeType":"YulIdentifier","src":"1252:6:101"},{"kind":"number","nativeSrc":"1260:10:101","nodeType":"YulLiteral","src":"1260:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1248:3:101","nodeType":"YulIdentifier","src":"1248:3:101"},"nativeSrc":"1248:23:101","nodeType":"YulFunctionCall","src":"1248:23:101"}],"functionName":{"name":"mstore","nativeSrc":"1230:6:101","nodeType":"YulIdentifier","src":"1230:6:101"},"nativeSrc":"1230:42:101","nodeType":"YulFunctionCall","src":"1230:42:101"},"nativeSrc":"1230:42:101","nodeType":"YulExpressionStatement","src":"1230:42:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1292:9:101","nodeType":"YulIdentifier","src":"1292:9:101"},{"kind":"number","nativeSrc":"1303:2:101","nodeType":"YulLiteral","src":"1303:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1288:3:101","nodeType":"YulIdentifier","src":"1288:3:101"},"nativeSrc":"1288:18:101","nodeType":"YulFunctionCall","src":"1288:18:101"},{"arguments":[{"name":"value1","nativeSrc":"1312:6:101","nodeType":"YulIdentifier","src":"1312:6:101"},{"kind":"number","nativeSrc":"1320:14:101","nodeType":"YulLiteral","src":"1320:14:101","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"1308:3:101","nodeType":"YulIdentifier","src":"1308:3:101"},"nativeSrc":"1308:27:101","nodeType":"YulFunctionCall","src":"1308:27:101"}],"functionName":{"name":"mstore","nativeSrc":"1281:6:101","nodeType":"YulIdentifier","src":"1281:6:101"},"nativeSrc":"1281:55:101","nodeType":"YulFunctionCall","src":"1281:55:101"},"nativeSrc":"1281:55:101","nodeType":"YulExpressionStatement","src":"1281:55:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1356:9:101","nodeType":"YulIdentifier","src":"1356:9:101"},{"kind":"number","nativeSrc":"1367:2:101","nodeType":"YulLiteral","src":"1367:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1352:3:101","nodeType":"YulIdentifier","src":"1352:3:101"},"nativeSrc":"1352:18:101","nodeType":"YulFunctionCall","src":"1352:18:101"},{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"1386:6:101","nodeType":"YulIdentifier","src":"1386:6:101"}],"functionName":{"name":"iszero","nativeSrc":"1379:6:101","nodeType":"YulIdentifier","src":"1379:6:101"},"nativeSrc":"1379:14:101","nodeType":"YulFunctionCall","src":"1379:14:101"}],"functionName":{"name":"iszero","nativeSrc":"1372:6:101","nodeType":"YulIdentifier","src":"1372:6:101"},"nativeSrc":"1372:22:101","nodeType":"YulFunctionCall","src":"1372:22:101"}],"functionName":{"name":"mstore","nativeSrc":"1345:6:101","nodeType":"YulIdentifier","src":"1345:6:101"},"nativeSrc":"1345:50:101","nodeType":"YulFunctionCall","src":"1345:50:101"},"nativeSrc":"1345:50:101","nodeType":"YulExpressionStatement","src":"1345:50:101"}]},"name":"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed","nativeSrc":"1038:363:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1138:9:101","nodeType":"YulTypedName","src":"1138:9:101","type":""},{"name":"value2","nativeSrc":"1149:6:101","nodeType":"YulTypedName","src":"1149:6:101","type":""},{"name":"value1","nativeSrc":"1157:6:101","nodeType":"YulTypedName","src":"1157:6:101","type":""},{"name":"value0","nativeSrc":"1165:6:101","nodeType":"YulTypedName","src":"1165:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1176:4:101","nodeType":"YulTypedName","src":"1176:4:101","type":""}],"src":"1038:363:101"},{"body":{"nativeSrc":"1454:122:101","nodeType":"YulBlock","src":"1454:122:101","statements":[{"nativeSrc":"1464:51:101","nodeType":"YulAssignment","src":"1464:51:101","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"1480:1:101","nodeType":"YulIdentifier","src":"1480:1:101"},{"kind":"number","nativeSrc":"1483:10:101","nodeType":"YulLiteral","src":"1483:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1476:3:101","nodeType":"YulIdentifier","src":"1476:3:101"},"nativeSrc":"1476:18:101","nodeType":"YulFunctionCall","src":"1476:18:101"},{"arguments":[{"name":"y","nativeSrc":"1500:1:101","nodeType":"YulIdentifier","src":"1500:1:101"},{"kind":"number","nativeSrc":"1503:10:101","nodeType":"YulLiteral","src":"1503:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1496:3:101","nodeType":"YulIdentifier","src":"1496:3:101"},"nativeSrc":"1496:18:101","nodeType":"YulFunctionCall","src":"1496:18:101"}],"functionName":{"name":"sub","nativeSrc":"1472:3:101","nodeType":"YulIdentifier","src":"1472:3:101"},"nativeSrc":"1472:43:101","nodeType":"YulFunctionCall","src":"1472:43:101"},"variableNames":[{"name":"diff","nativeSrc":"1464:4:101","nodeType":"YulIdentifier","src":"1464:4:101"}]},{"body":{"nativeSrc":"1548:22:101","nodeType":"YulBlock","src":"1548:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"1550:16:101","nodeType":"YulIdentifier","src":"1550:16:101"},"nativeSrc":"1550:18:101","nodeType":"YulFunctionCall","src":"1550:18:101"},"nativeSrc":"1550:18:101","nodeType":"YulExpressionStatement","src":"1550:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"1530:4:101","nodeType":"YulIdentifier","src":"1530:4:101"},{"kind":"number","nativeSrc":"1536:10:101","nodeType":"YulLiteral","src":"1536:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"gt","nativeSrc":"1527:2:101","nodeType":"YulIdentifier","src":"1527:2:101"},"nativeSrc":"1527:20:101","nodeType":"YulFunctionCall","src":"1527:20:101"},"nativeSrc":"1524:46:101","nodeType":"YulIf","src":"1524:46:101"}]},"name":"checked_sub_t_uint32","nativeSrc":"1406:170:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"1436:1:101","nodeType":"YulTypedName","src":"1436:1:101","type":""},{"name":"y","nativeSrc":"1439:1:101","nodeType":"YulTypedName","src":"1439:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"1445:4:101","nodeType":"YulTypedName","src":"1445:4:101","type":""}],"src":"1406:170:101"},{"body":{"nativeSrc":"1717:130:101","nodeType":"YulBlock","src":"1717:130:101","statements":[{"nativeSrc":"1727:26:101","nodeType":"YulAssignment","src":"1727:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1739:9:101","nodeType":"YulIdentifier","src":"1739:9:101"},{"kind":"number","nativeSrc":"1750:2:101","nodeType":"YulLiteral","src":"1750:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1735:3:101","nodeType":"YulIdentifier","src":"1735:3:101"},"nativeSrc":"1735:18:101","nodeType":"YulFunctionCall","src":"1735:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1727:4:101","nodeType":"YulIdentifier","src":"1727:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1769:9:101","nodeType":"YulIdentifier","src":"1769:9:101"},{"arguments":[{"name":"value0","nativeSrc":"1784:6:101","nodeType":"YulIdentifier","src":"1784:6:101"},{"kind":"number","nativeSrc":"1792:4:101","nodeType":"YulLiteral","src":"1792:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"1780:3:101","nodeType":"YulIdentifier","src":"1780:3:101"},"nativeSrc":"1780:17:101","nodeType":"YulFunctionCall","src":"1780:17:101"}],"functionName":{"name":"mstore","nativeSrc":"1762:6:101","nodeType":"YulIdentifier","src":"1762:6:101"},"nativeSrc":"1762:36:101","nodeType":"YulFunctionCall","src":"1762:36:101"},"nativeSrc":"1762:36:101","nodeType":"YulExpressionStatement","src":"1762:36:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1818:9:101","nodeType":"YulIdentifier","src":"1818:9:101"},{"kind":"number","nativeSrc":"1829:2:101","nodeType":"YulLiteral","src":"1829:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1814:3:101","nodeType":"YulIdentifier","src":"1814:3:101"},"nativeSrc":"1814:18:101","nodeType":"YulFunctionCall","src":"1814:18:101"},{"name":"value1","nativeSrc":"1834:6:101","nodeType":"YulIdentifier","src":"1834:6:101"}],"functionName":{"name":"mstore","nativeSrc":"1807:6:101","nodeType":"YulIdentifier","src":"1807:6:101"},"nativeSrc":"1807:34:101","nodeType":"YulFunctionCall","src":"1807:34:101"},"nativeSrc":"1807:34:101","nodeType":"YulExpressionStatement","src":"1807:34:101"}]},"name":"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"1581:266:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1678:9:101","nodeType":"YulTypedName","src":"1678:9:101","type":""},{"name":"value1","nativeSrc":"1689:6:101","nodeType":"YulTypedName","src":"1689:6:101","type":""},{"name":"value0","nativeSrc":"1697:6:101","nodeType":"YulTypedName","src":"1697:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1708:4:101","nodeType":"YulTypedName","src":"1708:4:101","type":""}],"src":"1581:266:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(64, 1), 1)))\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_add_t_uint48(x, y) -> sum\n    {\n        sum := add(and(x, 0xffffffffffff), and(y, 0xffffffffffff))\n        if gt(sum, 0xffffffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffff))\n        mstore(add(headStart, 64), iszero(iszero(value2)))\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffff), and(y, 0xffffffff))\n        if gt(diff, 0xffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), value1)\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"608060405234801561000f575f5ffd5b50604051612ca3380380612ca383398101604081905261002e91610441565b6001600160a01b03811661005c57604051630409d6d160e11b81525f60048201526024015b60405180910390fd5b6100685f82818061006f565b50506104bc565b5f6002600160401b03196001600160401b038616016100ac5760405163061c6a4360e21b81526001600160401b0386166004820152602401610053565b6001600160401b0385165f9081526001602090815260408083206001600160a01b038816845290915281205465ffffffffffff16159081156101a15763ffffffff85166100f76102b5565b6101019190610482565b905060405180604001604052808265ffffffffffff1681526020016101318663ffffffff166102c460201b60201c565b6001600160701b039081169091526001600160401b0389165f9081526001602090815260408083206001600160a01b038c16845282529091208351815494909201519092166601000000000000026001600160a01b031990931665ffffffffffff90911617919091179055610247565b6001600160401b0387165f9081526001602090815260408083206001600160a01b038a1684529091528120546101ed9166010000000000009091046001600160701b03169086906102cd565b6001600160401b0389165f9081526001602090815260408083206001600160a01b038c168452909152902080546001600160701b03909316660100000000000002600160301b600160a01b03199093169290921790915590505b6040805163ffffffff8616815265ffffffffffff831660208201528315158183015290516001600160a01b038816916001600160401b038a16917ff98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf9181900360600190a35095945050505050565b5f6102bf42610373565b905090565b63ffffffff1690565b5f80806102e26001600160701b0387166103a9565b90505f61031d8563ffffffff168763ffffffff168463ffffffff1611610308575f610312565b61031288856104a0565b63ffffffff166103c7565b905063ffffffff811661032e6102b5565b6103389190610482565b925063ffffffff8616602083901b67ffffffff0000000016604085901b6dffffffffffff000000000000000016171793505050935093915050565b5f65ffffffffffff8211156103a5576040516306dfcc6560e41b81526030600482015260248101839052604401610053565b5090565b5f806103bd6001600160701b0384166103d7565b5090949350505050565b8082118183180281185b92915050565b5f80806103eb846103e66102b5565b6103f8565b9250925092509193909250565b6001600160501b03602083901c166001600160701b03831665ffffffffffff604085901c811690841681111561043057828282610434565b815f5f5b9250925092509250925092565b5f60208284031215610451575f5ffd5b81516001600160a01b0381168114610467575f5ffd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b65ffffffffffff81811683821601908111156103d1576103d161046e565b63ffffffff82811682821603908111156103d1576103d161046e565b6127da806104c95f395ff3fe6080604052600436106101db575f3560e01c80636d5115bd116100fd578063b700961311610092578063d22b598911610062578063d22b598914610636578063d6bb62c614610655578063f801a69814610674578063fe0776f5146106ad575f5ffd5b8063b7009613146105a8578063b7d2b162146105e3578063cc1b6c8114610602578063d1f856ee14610617575f5ffd5b8063a166aa89116100cd578063a166aa8914610501578063a64d95ce14610530578063abd9bd2a1461054f578063ac9650d81461057c575f5ffd5b80636d5115bd1461049157806375b238fc146104b0578063853551b8146104c357806394c7d7ee146104e2575f5ffd5b806330cae187116101735780634665096d116101435780634665096d146104035780634c1da1e2146104185780635296295214610437578063530dd45614610456575f5ffd5b806330cae1871461035c5780633adc277a1461037b5780633ca7c02a146103b15780634136a33c146103cb575f5ffd5b806318ff183c116101ae57806318ff183c146102b25780631cff79cd146102d157806325c471a0146102e45780633078f11414610303575f5ffd5b806308d6122d146101df5780630b0a93ba1461020057806312be87271461025f578063167bd39514610293575b5f5ffd5b3480156101ea575f5ffd5b506101fe6101f93660046120c0565b6106cc565b005b34801561020b575f5ffd5b5061024261021a366004612122565b6001600160401b039081165f9081526001602081905260409091200154600160401b90041690565b6040516001600160401b0390911681526020015b60405180910390f35b34801561026a575f5ffd5b5061027e610279366004612122565b61071e565b60405163ffffffff9091168152602001610256565b34801561029e575f5ffd5b506101fe6102ad36600461213b565b610758565b3480156102bd575f5ffd5b506101fe6102cc366004612176565b61076e565b61027e6102df3660046121df565b6107d0565b3480156102ef575f5ffd5b506101fe6102fe366004612242565b6108fc565b34801561030e575f5ffd5b5061032261031d366004612284565b61091e565b604051610256949392919065ffffffffffff948516815263ffffffff93841660208201529190921660408201529116606082015260800190565b348015610367575f5ffd5b506101fe61037636600461229e565b610982565b348015610386575f5ffd5b5061039a6103953660046122cf565b610994565b60405165ffffffffffff9091168152602001610256565b3480156103bc575f5ffd5b506102426001600160401b0381565b3480156103d6575f5ffd5b5061027e6103e53660046122cf565b5f90815260026020526040902054600160301b900463ffffffff1690565b34801561040e575f5ffd5b5062093a8061027e565b348015610423575f5ffd5b5061027e6104323660046122e6565b6109c5565b348015610442575f5ffd5b506101fe61045136600461229e565b6109f2565b348015610461575f5ffd5b50610242610470366004612122565b6001600160401b039081165f90815260016020819052604090912001541690565b34801561049c575f5ffd5b506102426104ab366004612316565b610a04565b3480156104bb575f5ffd5b506102425f81565b3480156104ce575f5ffd5b506101fe6104dd366004612342565b610a3e565b3480156104ed575f5ffd5b506101fe6104fc3660046121df565b610ad5565b34801561050c575f5ffd5b5061052061051b3660046122e6565b610b7f565b6040519015158152602001610256565b34801561053b575f5ffd5b506101fe61054a36600461235d565b610ba6565b34801561055a575f5ffd5b5061056e610569366004612385565b610bb8565b604051908152602001610256565b348015610587575f5ffd5b5061059b6105963660046123e5565b610bf0565b6040516102569190612423565b3480156105b3575f5ffd5b506105c76105c23660046124a7565b610cd5565b60408051921515835263ffffffff909116602083015201610256565b3480156105ee575f5ffd5b506101fe6105fd366004612284565b610d56565b34801561060d575f5ffd5b506206978061027e565b348015610622575f5ffd5b506105c7610631366004612284565b610d6d565b348015610641575f5ffd5b506101fe6106503660046124ef565b610de6565b348015610660575f5ffd5b5061027e61066f366004612385565b610df8565b34801561067f575f5ffd5b5061069361068e36600461250b565b610f4b565b6040805192835263ffffffff909116602083015201610256565b3480156106b8575f5ffd5b506101fe6106c7366004612284565b61108c565b6106d46110b5565b5f5b828110156107175761070f858585848181106106f4576106f4612578565b9050602002016020810190610709919061258c565b8461112c565b6001016106d6565b5050505050565b6001600160401b0381165f9081526001602081905260408220015461075290600160801b90046001600160701b03166111ad565b92915050565b6107606110b5565b61076a82826111cb565b5050565b6107766110b5565b604051637a9e5e4b60e01b81526001600160a01b038281166004830152831690637a9e5e4b906024015f604051808303815f87803b1580156107b6575f5ffd5b505af11580156107c8573d5f5f3e3d5ffd5b505050505050565b5f3381806107e08388888861123c565b91509150811580156107f6575063ffffffff8116155b15610849578287610807888861128d565b6040516381c6f24b60e01b81526001600160a01b0393841660048201529290911660248301526001600160e01b03191660448201526064015b60405180910390fd5b5f61085684898989610bb8565b90505f63ffffffff831615158061087c575061087182610994565b65ffffffffffff1615155b1561088d5761088a826112a4565b90505b6003546108a38a61089e8b8b61128d565b6113a2565b6003819055506108ea8a8a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152503492506113c7915050565b506003559450505050505b9392505050565b6109046110b5565b61091883836109128661071e565b84611493565b50505050565b6001600160401b0382165f9081526001602090815260408083206001600160a01b03851684529091528120805465ffffffffffff81169291829182919061097490600160301b90046001600160701b03166116d9565b969991985096509350505050565b61098a6110b5565b61076a82826116fa565b5f8181526002602052604081205465ffffffffffff166109b38161179d565b6109bd57806108f5565b5f9392505050565b6001600160a01b0381165f90815260208190526040812060010154610752906001600160701b03166111ad565b6109fa6110b5565b61076a82826117cb565b6001600160a01b0382165f908152602081815260408083206001600160e01b0319851684529091529020546001600160401b031692915050565b610a466110b5565b6001600160401b0383161580610a6457506001600160401b03838116145b15610a8d5760405163061c6a4360e21b81526001600160401b0384166004820152602401610840565b826001600160401b03167f1256f5b5ecb89caec12db449738f2fbcd1ba5806cf38f35413f4e5c15bf6a4508383604051610ac89291906125cf565b60405180910390a2505050565b60408051638fb3603760e01b80825291513392918391638fb36037916004808201926020929091908290030181865afa158015610b14573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3891906125ea565b6001600160e01b03191614610b6b57604051630641fee960e31b81526001600160a01b0382166004820152602401610840565b610717610b7a85838686610bb8565b6112a4565b6001600160a01b03165f90815260208190526040902060010154600160701b900460ff1690565b610bae6110b5565b61076a828261187c565b5f84848484604051602001610bd09493929190612605565b604051602081830303815290604052805190602001209050949350505050565b604080515f815260208101909152606090826001600160401b03811115610c1957610c19612676565b604051908082528060200260200182016040528015610c4c57816020015b6060815260200190600190039081610c375790505b5091505f5b83811015610ccd57610ca830868684818110610c6f57610c6f612578565b9050602002810190610c81919061268a565b85604051602001610c94939291906126cc565b60405160208183030381529060405261198b565b838281518110610cba57610cba612578565b6020908102919091010152600101610c51565b505092915050565b5f5f610ce084610b7f565b15610cef57505f905080610d4e565b306001600160a01b03861603610d1357610d098484611a0d565b5f91509150610d4e565b5f610d1e8585610a04565b90505f5f610d2c8389610d6d565b9150915081610d3c575f5f610d46565b63ffffffff811615815b945094505050505b935093915050565b610d5e6110b5565b610d688282611a23565b505050565b5f8067fffffffffffffffe196001600160401b03851601610d935750600190505f610ddf565b5f5f610d9f868661091e565b5050915091508165ffffffffffff165f14158015610dd45750610dc0611b0c565b65ffffffffffff168265ffffffffffff1611155b93509150610ddf9050565b9250929050565b610dee6110b5565b61076a8282611b1b565b5f3381610e05858561128d565b90505f610e1488888888610bb8565b5f8181526002602052604081205491925065ffffffffffff9091169003610e515760405163060a299b60e41b815260048101829052602401610840565b826001600160a01b0316886001600160a01b031614610eea575f610e755f85610d6d565b5090505f610e8f610e8961021a8b87610a04565b86610d6d565b50905081158015610e9e575080155b15610ee757604051630ff89d4760e21b81526001600160a01b038087166004830152808c1660248301528a1660448201526001600160e01b031985166064820152608401610840565b50505b5f81815260026020526040808220805465ffffffffffff1916908190559051600160301b90910463ffffffff1691829184917fbd9ac67a6e2f6463b80927326310338bcbb4bdb7936ce1365ea3e01067e7b9f791a398975050505050505050565b5f803381610f5b8289898961123c565b9150505f8163ffffffff16610f6e611b0c565b610f7891906126ef565b905063ffffffff82161580610fae57505f8665ffffffffffff16118015610fae57508065ffffffffffff168665ffffffffffff16105b15610fbf5782896108078a8a61128d565b610fd98665ffffffffffff168265ffffffffffff16611bd6565b9550610fe7838a8a8a610bb8565b9450610ff285611be5565b5f8581526002602052604090819020805465ffffffffffff891669ffffffffffffffffffff19821617600160301b9182900463ffffffff90811660010190811692830291909117909255915190955086907f82a2da5dee54ea8021c6545b4444620291e07ee83be6dd57edb175062715f3b490611078908a9088908f908f908f9061270d565b60405180910390a350505094509492505050565b6001600160a01b0381163314610d5e57604051635f159e6360e01b815260040160405180910390fd5b335f806110c3838236611c31565b9150915081610d68578063ffffffff165f0361111d575f6110e48136611cf4565b5060405163f07e038f60e01b81526001600160a01b03871660048201526001600160401b03821660248201529092506044019050610840565b610918610b7a84305f36610bb8565b6001600160a01b0383165f818152602081815260408083206001600160e01b0319871680855290835292819020805467ffffffffffffffff19166001600160401b038716908117909155905192835292917f9ea6790c7dadfd01c9f8b9762b3682607af2c7e79e05a9f9fdf5580dde949151910160405180910390a3505050565b5f5f6111c1836001600160701b03166116d9565b5090949350505050565b6001600160a01b0382165f81815260208190526040908190206001018054841515600160701b0260ff60701b19909116179055517f90d4e7bb7e5d933792b3562e1741306f8be94837e1348dacef9b6f1df56eb1389061123090841515815260200190565b60405180910390a25050565b5f80306001600160a01b0386160361126257611259868585611c31565b91509150611284565b6004831061127e5761127986866105c2878761128d565b611259565b505f9050805b94509492505050565b5f61129b600482848661264f565b6108f591612752565b5f8181526002602052604081205465ffffffffffff811690600160301b900463ffffffff168183036112ec5760405163060a299b60e41b815260048101859052602401610840565b6112f4611b0c565b65ffffffffffff168265ffffffffffff16111561132757604051630c65b5bd60e11b815260048101859052602401610840565b6113308261179d565b1561135157604051631e2975b960e21b815260048101859052602401610840565b5f84815260026020526040808220805465ffffffffffff191690555163ffffffff83169186917f76a2a46953689d4861a5d3f6ed883ad7e6af674a21f8e162707159fc9dde614d9190a39392505050565b6001600160a01b0382165f9081526001600160e01b03198216602052604081206108f5565b6060814710156113f35760405163cf47918160e01b815247600482015260248101839052604401610840565b5f6113ff858486611eda565b905080801561142057505f3d118061142057505f856001600160a01b03163b115b156114355761142d611eef565b9150506108f5565b801561145f57604051639996b31560e01b81526001600160a01b0386166004820152602401610840565b3d156114725761146d611f08565b61148b565b60405163d6bda27560e01b815260040160405180910390fd5b509392505050565b5f67fffffffffffffffe196001600160401b038616016114d15760405163061c6a4360e21b81526001600160401b0386166004820152602401610840565b6001600160401b0385165f9081526001602090815260408083206001600160a01b038816845290915281205465ffffffffffff16159081156115c1578463ffffffff1661151c611b0c565b61152691906126ef565b905060405180604001604052808265ffffffffffff1681526020016115548663ffffffff1663ffffffff1690565b6001600160701b039081169091526001600160401b0389165f9081526001602090815260408083206001600160a01b038c1684528252909120835181549490920151909216600160301b026001600160a01b031990931665ffffffffffff9091161791909117905561166b565b6001600160401b0387165f9081526001602090815260408083206001600160a01b038a16845290915281205461160a91600160301b9091046001600160701b0316908690611f13565b6001600160401b0389165f9081526001602090815260408083206001600160a01b038c168452909152902080546001600160701b03909316600160301b0273ffffffffffffffffffffffffffff000000000000199093169290921790915590505b6040805163ffffffff8616815265ffffffffffff831660208201528315158183015290516001600160a01b038816916001600160401b038a16917ff98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf9181900360600190a35095945050505050565b5f5f5f6116ed846116e8611b0c565b611fb9565b9250925092509193909250565b6001600160401b038216158061171857506001600160401b03828116145b156117415760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b038281165f818152600160208190526040808320909101805467ffffffffffffffff19169486169485179055517f1fd6dd7631312dfac2205b52913f99de03b4d7e381d5d27d3dbfe0713e6e63409190a35050565b5f6117a6611b0c565b65ffffffffffff166117bb62093a80846126ef565b65ffffffffffff16111592915050565b6001600160401b03821615806117e957506001600160401b03828116145b156118125760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b038281165f81815260016020819052604080832090910180546fffffffffffffffff00000000000000001916600160401b958716958602179055517f7a8059630b897b5de4c08ade69f8b90c3ead1f8596d62d10b6c4d14a0afb4ae29190a35050565b67fffffffffffffffe196001600160401b038316016118b95760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b0382165f908152600160208190526040822001546118f290600160801b90046001600160701b03168362069780611f13565b6001600160401b0385165f818152600160208190526040918290200180546001600160701b03909516600160801b026dffffffffffffffffffffffffffff60801b199095169490941790935591519092507ffeb69018ee8b8fd50ea86348f1267d07673379f72cffdeccec63853ee8ce8b4890610ac8908590859063ffffffff92909216825265ffffffffffff16602082015260400190565b60605f6119988484612005565b90508080156119b957505f3d11806119b957505f846001600160a01b03163b115b156119ce576119c6611eef565b915050610752565b80156119f857604051639996b31560e01b81526001600160a01b0385166004820152602401610840565b3d1561147257611a06611f08565b5092915050565b5f611a1883836113a2565b600354149392505050565b5f67fffffffffffffffe196001600160401b03841601611a615760405163061c6a4360e21b81526001600160401b0384166004820152602401610840565b6001600160401b0383165f9081526001602090815260408083206001600160a01b038616845290915281205465ffffffffffff169003611aa257505f610752565b6001600160401b0383165f8181526001602090815260408083206001600160a01b038716808552925280832080546001600160a01b0319169055519092917ff229baa593af28c41b1d16b748cd7688f0c83aaf92d4be41c44005defe84c16691a350600192915050565b5f611b1642612018565b905090565b6001600160a01b0382165f90815260208190526040812060010154611b4d906001600160701b03168362069780611f13565b6001600160a01b0385165f818152602081815260409182902060010180546dffffffffffffffffffffffffffff19166001600160701b039690961695909517909455805163ffffffff8716815265ffffffffffff841694810194909452919350917fa56b76017453f399ec2327ba00375dbfb1fd070ff854341ad6191e6a2e2de19c9101610ac8565b5f8282188284110282186108f5565b5f8181526002602052604090205465ffffffffffff168015801590611c105750611c0e8161179d565b155b1561076a5760405163813e945960e01b815260048101839052602401610840565b5f806004831015611c4657505f905080610d4e565b306001600160a01b03861603611c6957610d0930611c64868661128d565b611a0d565b5f5f5f611c768787611cf4565b92509250925082158015611c8e5750611c8e30610b7f565b15611ca1575f5f94509450505050610d4e565b5f5f611cad848b610d6d565b9150915081611cc6575f5f965096505050505050610d4e565b611cdc8363ffffffff168263ffffffff16611bd6565b63ffffffff8116159b909a5098505050505050505050565b5f80806004841015611d0d57505f915081905080611ed3565b5f611d18868661128d565b90506001600160e01b031981166310a6aa3760e31b1480611d4957506001600160e01b031981166330cae18760e01b145b80611d6457506001600160e01b0319811663294b14a960e11b145b80611d7f57506001600160e01b03198116635326cae760e11b145b80611d9a57506001600160e01b0319811663d22b598960e01b145b15611daf5760015f5f93509350935050611ed3565b6001600160e01b0319811663063fc60f60e21b1480611dde57506001600160e01b0319811663167bd39560e01b145b80611df957506001600160e01b031981166308d6122d60e01b145b15611e38575f611e0d60246004888a61264f565b810190611e1a91906122e6565b90505f611e26826109c5565b600196505f95509350611ed392505050565b6001600160e01b0319811663012e238d60e51b1480611e6757506001600160e01b03198116635be958b160e11b145b15611ebf575f611e7b60246004888a61264f565b810190611e889190612122565b90506001611eb1826001600160401b039081165f90815260016020819052604090912001541690565b5f9450945094505050611ed3565b5f611eca3083610a04565b5f935093509350505b9250925092565b5f5f5f83516020850186885af1949350505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f5f5f611f28866001600160701b03166111ad565b90505f611f638563ffffffff168763ffffffff168463ffffffff1611611f4e575f611f58565b611f588885612788565b63ffffffff16611bd6565b90508063ffffffff16611f74611b0c565b611f7e91906126ef565b925063ffffffff8616602083901b67ffffffff0000000016604085901b6dffffffffffff000000000000000016171793505050935093915050565b69ffffffffffffffffffff602083901c166001600160701b03831665ffffffffffff604085901c8116908416811115611ff457828282611ff8565b815f5f5b9250925092509250925092565b5f5f5f835160208501865af49392505050565b5f65ffffffffffff82111561204a576040516306dfcc6560e41b81526030600482015260248101839052604401610840565b5090565b6001600160a01b0381168114612062575f5ffd5b50565b5f5f83601f840112612075575f5ffd5b5081356001600160401b0381111561208b575f5ffd5b6020830191508360208260051b8501011115610ddf575f5ffd5b80356001600160401b03811681146120bb575f5ffd5b919050565b5f5f5f5f606085870312156120d3575f5ffd5b84356120de8161204e565b935060208501356001600160401b038111156120f8575f5ffd5b61210487828801612065565b90945092506121179050604086016120a5565b905092959194509250565b5f60208284031215612132575f5ffd5b6108f5826120a5565b5f5f6040838503121561214c575f5ffd5b82356121578161204e565b91506020830135801515811461216b575f5ffd5b809150509250929050565b5f5f60408385031215612187575f5ffd5b82356121928161204e565b9150602083013561216b8161204e565b5f5f83601f8401126121b2575f5ffd5b5081356001600160401b038111156121c8575f5ffd5b602083019150836020828501011115610ddf575f5ffd5b5f5f5f604084860312156121f1575f5ffd5b83356121fc8161204e565b925060208401356001600160401b03811115612216575f5ffd5b612222868287016121a2565b9497909650939450505050565b803563ffffffff811681146120bb575f5ffd5b5f5f5f60608486031215612254575f5ffd5b61225d846120a5565b9250602084013561226d8161204e565b915061227b6040850161222f565b90509250925092565b5f5f60408385031215612295575f5ffd5b612192836120a5565b5f5f604083850312156122af575f5ffd5b6122b8836120a5565b91506122c6602084016120a5565b90509250929050565b5f602082840312156122df575f5ffd5b5035919050565b5f602082840312156122f6575f5ffd5b81356108f58161204e565b6001600160e01b031981168114612062575f5ffd5b5f5f60408385031215612327575f5ffd5b82356123328161204e565b9150602083013561216b81612301565b5f5f5f60408486031215612354575f5ffd5b6121fc846120a5565b5f5f6040838503121561236e575f5ffd5b612377836120a5565b91506122c66020840161222f565b5f5f5f5f60608587031215612398575f5ffd5b84356123a38161204e565b935060208501356123b38161204e565b925060408501356001600160401b038111156123cd575f5ffd5b6123d9878288016121a2565b95989497509550505050565b5f5f602083850312156123f6575f5ffd5b82356001600160401b0381111561240b575f5ffd5b61241785828601612065565b90969095509350505050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b8281101561249b57603f19878603018452815180518087528060208301602089015e5f602082890101526020601f19601f83011688010196505050602082019150602084019350600181019050612449565b50929695505050505050565b5f5f5f606084860312156124b9575f5ffd5b83356124c48161204e565b925060208401356124d48161204e565b915060408401356124e481612301565b809150509250925092565b5f5f60408385031215612500575f5ffd5b82356123778161204e565b5f5f5f5f6060858703121561251e575f5ffd5b84356125298161204e565b935060208501356001600160401b03811115612543575f5ffd5b61254f878288016121a2565b909450925050604085013565ffffffffffff8116811461256d575f5ffd5b939692955090935050565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561259c575f5ffd5b81356108f581612301565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b602081525f6125e26020830184866125a7565b949350505050565b5f602082840312156125fa575f5ffd5b81516108f581612301565b6001600160a01b038581168252841660208201526060604082018190525f9061263190830184866125a7565b9695505050505050565b634e487b7160e01b5f52601160045260245ffd5b5f5f8585111561265d575f5ffd5b83861115612669575f5ffd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f5f8335601e1984360301811261269f575f5ffd5b8301803591506001600160401b038211156126b8575f5ffd5b602001915036819003821315610ddf575f5ffd5b828482375f8382015f815283518060208601835e5f910190815295945050505050565b65ffffffffffff81811683821601908111156107525761075261263b565b65ffffffffffff861681526001600160a01b038581166020830152841660408201526080606082018190525f9061274790830184866125a7565b979650505050505050565b80356001600160e01b03198116906004841015611a06576001600160e01b031960049490940360031b84901b1690921692915050565b63ffffffff82811682821603908111156107525761075261263b56fea26469706673582212209b3164b8cdeac6faaf8c03b8a27b787dcccb72987c31447c36cedc0e6df90b7364736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x2CA3 CODESIZE SUB DUP1 PUSH2 0x2CA3 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2E SWAP2 PUSH2 0x441 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x5C JUMPI PUSH1 0x40 MLOAD PUSH4 0x409D6D1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x68 PUSH0 DUP3 DUP2 DUP1 PUSH2 0x6F JUMP JUMPDEST POP POP PUSH2 0x4BC JUMP JUMPDEST PUSH0 PUSH1 0x2 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND ADD PUSH2 0xAC JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x53 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND ISZERO SWAP1 DUP2 ISZERO PUSH2 0x1A1 JUMPI PUSH4 0xFFFFFFFF DUP6 AND PUSH2 0xF7 PUSH2 0x2B5 JUMP JUMPDEST PUSH2 0x101 SWAP2 SWAP1 PUSH2 0x482 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH6 0xFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x131 DUP7 PUSH4 0xFFFFFFFF AND PUSH2 0x2C4 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 DUP2 AND SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE DUP3 MSTORE SWAP1 SWAP2 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP5 SWAP1 SWAP3 ADD MLOAD SWAP1 SWAP3 AND PUSH7 0x1000000000000 MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x247 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH2 0x1ED SWAP2 PUSH7 0x1000000000000 SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 DUP7 SWAP1 PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP4 AND PUSH7 0x1000000000000 MUL PUSH1 0x1 PUSH1 0x30 SHL PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE SWAP1 POP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP7 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE DUP4 ISZERO ISZERO DUP2 DUP4 ADD MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP11 AND SWAP2 PUSH32 0xF98448B987F1428E0E230E1F3C6E2CE15B5693EAF31827FBD0B1EC4B424AE7CF SWAP2 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG3 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2BF TIMESTAMP PUSH2 0x373 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0x2E2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP8 AND PUSH2 0x3A9 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x31D DUP6 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x308 JUMPI PUSH0 PUSH2 0x312 JUMP JUMPDEST PUSH2 0x312 DUP9 DUP6 PUSH2 0x4A0 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x3C7 JUMP JUMPDEST SWAP1 POP PUSH4 0xFFFFFFFF DUP2 AND PUSH2 0x32E PUSH2 0x2B5 JUMP JUMPDEST PUSH2 0x338 SWAP2 SWAP1 PUSH2 0x482 JUMP JUMPDEST SWAP3 POP PUSH4 0xFFFFFFFF DUP7 AND PUSH1 0x20 DUP4 SWAP1 SHL PUSH8 0xFFFFFFFF00000000 AND PUSH1 0x40 DUP6 SWAP1 SHL PUSH14 0xFFFFFFFFFFFF0000000000000000 AND OR OR SWAP4 POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH6 0xFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3A5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x30 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x53 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x3BD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP5 AND PUSH2 0x3D7 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 DUP3 GT DUP2 DUP4 XOR MUL DUP2 XOR JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0x3EB DUP5 PUSH2 0x3E6 PUSH2 0x2B5 JUMP JUMPDEST PUSH2 0x3F8 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x50 SHL SUB PUSH1 0x20 DUP4 SWAP1 SHR AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP4 AND PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 DUP6 SWAP1 SHR DUP2 AND SWAP1 DUP5 AND DUP2 GT ISZERO PUSH2 0x430 JUMPI DUP3 DUP3 DUP3 PUSH2 0x434 JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x451 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x467 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x3D1 JUMPI PUSH2 0x3D1 PUSH2 0x46E JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x3D1 JUMPI PUSH2 0x3D1 PUSH2 0x46E JUMP JUMPDEST PUSH2 0x27DA DUP1 PUSH2 0x4C9 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1DB JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6D5115BD GT PUSH2 0xFD JUMPI DUP1 PUSH4 0xB7009613 GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xD22B5989 GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xD22B5989 EQ PUSH2 0x636 JUMPI DUP1 PUSH4 0xD6BB62C6 EQ PUSH2 0x655 JUMPI DUP1 PUSH4 0xF801A698 EQ PUSH2 0x674 JUMPI DUP1 PUSH4 0xFE0776F5 EQ PUSH2 0x6AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB7009613 EQ PUSH2 0x5A8 JUMPI DUP1 PUSH4 0xB7D2B162 EQ PUSH2 0x5E3 JUMPI DUP1 PUSH4 0xCC1B6C81 EQ PUSH2 0x602 JUMPI DUP1 PUSH4 0xD1F856EE EQ PUSH2 0x617 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA166AA89 GT PUSH2 0xCD JUMPI DUP1 PUSH4 0xA166AA89 EQ PUSH2 0x501 JUMPI DUP1 PUSH4 0xA64D95CE EQ PUSH2 0x530 JUMPI DUP1 PUSH4 0xABD9BD2A EQ PUSH2 0x54F JUMPI DUP1 PUSH4 0xAC9650D8 EQ PUSH2 0x57C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6D5115BD EQ PUSH2 0x491 JUMPI DUP1 PUSH4 0x75B238FC EQ PUSH2 0x4B0 JUMPI DUP1 PUSH4 0x853551B8 EQ PUSH2 0x4C3 JUMPI DUP1 PUSH4 0x94C7D7EE EQ PUSH2 0x4E2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x30CAE187 GT PUSH2 0x173 JUMPI DUP1 PUSH4 0x4665096D GT PUSH2 0x143 JUMPI DUP1 PUSH4 0x4665096D EQ PUSH2 0x403 JUMPI DUP1 PUSH4 0x4C1DA1E2 EQ PUSH2 0x418 JUMPI DUP1 PUSH4 0x52962952 EQ PUSH2 0x437 JUMPI DUP1 PUSH4 0x530DD456 EQ PUSH2 0x456 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x30CAE187 EQ PUSH2 0x35C JUMPI DUP1 PUSH4 0x3ADC277A EQ PUSH2 0x37B JUMPI DUP1 PUSH4 0x3CA7C02A EQ PUSH2 0x3B1 JUMPI DUP1 PUSH4 0x4136A33C EQ PUSH2 0x3CB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18FF183C GT PUSH2 0x1AE JUMPI DUP1 PUSH4 0x18FF183C EQ PUSH2 0x2B2 JUMPI DUP1 PUSH4 0x1CFF79CD EQ PUSH2 0x2D1 JUMPI DUP1 PUSH4 0x25C471A0 EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0x3078F114 EQ PUSH2 0x303 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8D6122D EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0xB0A93BA EQ PUSH2 0x200 JUMPI DUP1 PUSH4 0x12BE8727 EQ PUSH2 0x25F JUMPI DUP1 PUSH4 0x167BD395 EQ PUSH2 0x293 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x1F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x20C0 JUMP JUMPDEST PUSH2 0x6CC JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x20B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x21A CALLDATASIZE PUSH1 0x4 PUSH2 0x2122 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x26A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x279 CALLDATASIZE PUSH1 0x4 PUSH2 0x2122 JUMP JUMPDEST PUSH2 0x71E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x29E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2AD CALLDATASIZE PUSH1 0x4 PUSH2 0x213B JUMP JUMPDEST PUSH2 0x758 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2CC CALLDATASIZE PUSH1 0x4 PUSH2 0x2176 JUMP JUMPDEST PUSH2 0x76E JUMP JUMPDEST PUSH2 0x27E PUSH2 0x2DF CALLDATASIZE PUSH1 0x4 PUSH2 0x21DF JUMP JUMPDEST PUSH2 0x7D0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2FE CALLDATASIZE PUSH1 0x4 PUSH2 0x2242 JUMP JUMPDEST PUSH2 0x8FC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x30E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x322 PUSH2 0x31D CALLDATASIZE PUSH1 0x4 PUSH2 0x2284 JUMP JUMPDEST PUSH2 0x91E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x256 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH6 0xFFFFFFFFFFFF SWAP5 DUP6 AND DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP4 DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x40 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x367 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x376 CALLDATASIZE PUSH1 0x4 PUSH2 0x229E JUMP JUMPDEST PUSH2 0x982 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x386 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x39A PUSH2 0x395 CALLDATASIZE PUSH1 0x4 PUSH2 0x22CF JUMP JUMPDEST PUSH2 0x994 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x3E5 CALLDATASIZE PUSH1 0x4 PUSH2 0x22CF JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x40E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x93A80 PUSH2 0x27E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x423 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x432 CALLDATASIZE PUSH1 0x4 PUSH2 0x22E6 JUMP JUMPDEST PUSH2 0x9C5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x442 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x451 CALLDATASIZE PUSH1 0x4 PUSH2 0x229E JUMP JUMPDEST PUSH2 0x9F2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x461 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x470 CALLDATASIZE PUSH1 0x4 PUSH2 0x2122 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x49C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x4AB CALLDATASIZE PUSH1 0x4 PUSH2 0x2316 JUMP JUMPDEST PUSH2 0xA04 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x4DD CALLDATASIZE PUSH1 0x4 PUSH2 0x2342 JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x4FC CALLDATASIZE PUSH1 0x4 PUSH2 0x21DF JUMP JUMPDEST PUSH2 0xAD5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x520 PUSH2 0x51B CALLDATASIZE PUSH1 0x4 PUSH2 0x22E6 JUMP JUMPDEST PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x54A CALLDATASIZE PUSH1 0x4 PUSH2 0x235D JUMP JUMPDEST PUSH2 0xBA6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x55A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x56E PUSH2 0x569 CALLDATASIZE PUSH1 0x4 PUSH2 0x2385 JUMP JUMPDEST PUSH2 0xBB8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x587 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x59B PUSH2 0x596 CALLDATASIZE PUSH1 0x4 PUSH2 0x23E5 JUMP JUMPDEST PUSH2 0xBF0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x256 SWAP2 SWAP1 PUSH2 0x2423 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5C7 PUSH2 0x5C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x24A7 JUMP JUMPDEST PUSH2 0xCD5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 ISZERO ISZERO DUP4 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x5FD CALLDATASIZE PUSH1 0x4 PUSH2 0x2284 JUMP JUMPDEST PUSH2 0xD56 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x60D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x69780 PUSH2 0x27E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x622 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5C7 PUSH2 0x631 CALLDATASIZE PUSH1 0x4 PUSH2 0x2284 JUMP JUMPDEST PUSH2 0xD6D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x641 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x650 CALLDATASIZE PUSH1 0x4 PUSH2 0x24EF JUMP JUMPDEST PUSH2 0xDE6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x660 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x66F CALLDATASIZE PUSH1 0x4 PUSH2 0x2385 JUMP JUMPDEST PUSH2 0xDF8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x67F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x693 PUSH2 0x68E CALLDATASIZE PUSH1 0x4 PUSH2 0x250B JUMP JUMPDEST PUSH2 0xF4B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x6C7 CALLDATASIZE PUSH1 0x4 PUSH2 0x2284 JUMP JUMPDEST PUSH2 0x108C JUMP JUMPDEST PUSH2 0x6D4 PUSH2 0x10B5 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x717 JUMPI PUSH2 0x70F DUP6 DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x6F4 JUMPI PUSH2 0x6F4 PUSH2 0x2578 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x709 SWAP2 SWAP1 PUSH2 0x258C JUMP JUMPDEST DUP5 PUSH2 0x112C JUMP JUMPDEST PUSH1 0x1 ADD PUSH2 0x6D6 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 KECCAK256 ADD SLOAD PUSH2 0x752 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11AD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x760 PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x11CB JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x776 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x7A9E5E4B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x7A9E5E4B SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x7B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x7C8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 CALLER DUP2 DUP1 PUSH2 0x7E0 DUP4 DUP9 DUP9 DUP9 PUSH2 0x123C JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x7F6 JUMPI POP PUSH4 0xFFFFFFFF DUP2 AND ISZERO JUMPDEST ISZERO PUSH2 0x849 JUMPI DUP3 DUP8 PUSH2 0x807 DUP9 DUP9 PUSH2 0x128D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x81C6F24B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x856 DUP5 DUP10 DUP10 DUP10 PUSH2 0xBB8 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH4 0xFFFFFFFF DUP4 AND ISZERO ISZERO DUP1 PUSH2 0x87C JUMPI POP PUSH2 0x871 DUP3 PUSH2 0x994 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x88D JUMPI PUSH2 0x88A DUP3 PUSH2 0x12A4 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x8A3 DUP11 PUSH2 0x89E DUP12 DUP12 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x13A2 JUMP JUMPDEST PUSH1 0x3 DUP2 SWAP1 SSTORE POP PUSH2 0x8EA DUP11 DUP11 DUP11 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP CALLVALUE SWAP3 POP PUSH2 0x13C7 SWAP2 POP POP JUMP JUMPDEST POP PUSH1 0x3 SSTORE SWAP5 POP POP POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x904 PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x918 DUP4 DUP4 PUSH2 0x912 DUP7 PUSH2 0x71E JUMP JUMPDEST DUP5 PUSH2 0x1493 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND SWAP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 SWAP1 PUSH2 0x974 SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x16D9 JUMP JUMPDEST SWAP7 SWAP10 SWAP2 SWAP9 POP SWAP7 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x98A PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x16FA JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x9B3 DUP2 PUSH2 0x179D JUMP JUMPDEST PUSH2 0x9BD JUMPI DUP1 PUSH2 0x8F5 JUMP JUMPDEST PUSH0 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x752 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11AD JUMP JUMPDEST PUSH2 0x9FA PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xA46 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ISZERO DUP1 PUSH2 0xA64 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0xA8D JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH32 0x1256F5B5ECB89CAEC12DB449738F2FBCD1BA5806CF38F35413F4E5C15BF6A450 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0xAC8 SWAP3 SWAP2 SWAP1 PUSH2 0x25CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0x8FB36037 PUSH1 0xE0 SHL DUP1 DUP3 MSTORE SWAP2 MLOAD CALLER SWAP3 SWAP2 DUP4 SWAP2 PUSH4 0x8FB36037 SWAP2 PUSH1 0x4 DUP1 DUP3 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP1 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB14 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xB38 SWAP2 SWAP1 PUSH2 0x25EA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND EQ PUSH2 0xB6B JUMPI PUSH1 0x40 MLOAD PUSH4 0x641FEE9 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x717 PUSH2 0xB7A DUP6 DUP4 DUP7 DUP7 PUSH2 0xBB8 JUMP JUMPDEST PUSH2 0x12A4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x70 SHL SWAP1 DIV PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0xBAE PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x187C JUMP JUMPDEST PUSH0 DUP5 DUP5 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xBD0 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 SWAP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xC19 JUMPI PUSH2 0xC19 PUSH2 0x2676 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xC4C JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xC37 JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xCCD JUMPI PUSH2 0xCA8 ADDRESS DUP7 DUP7 DUP5 DUP2 DUP2 LT PUSH2 0xC6F JUMPI PUSH2 0xC6F PUSH2 0x2578 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xC81 SWAP2 SWAP1 PUSH2 0x268A JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xC94 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x26CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x198B JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xCBA JUMPI PUSH2 0xCBA PUSH2 0x2578 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0xC51 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xCE0 DUP5 PUSH2 0xB7F JUMP JUMPDEST ISZERO PUSH2 0xCEF JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xD4E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0xD13 JUMPI PUSH2 0xD09 DUP5 DUP5 PUSH2 0x1A0D JUMP JUMPDEST PUSH0 SWAP2 POP SWAP2 POP PUSH2 0xD4E JUMP JUMPDEST PUSH0 PUSH2 0xD1E DUP6 DUP6 PUSH2 0xA04 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH0 PUSH2 0xD2C DUP4 DUP10 PUSH2 0xD6D JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xD3C JUMPI PUSH0 PUSH0 PUSH2 0xD46 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO DUP2 JUMPDEST SWAP5 POP SWAP5 POP POP POP POP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD5E PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0xD68 DUP3 DUP3 PUSH2 0x1A23 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND ADD PUSH2 0xD93 JUMPI POP PUSH1 0x1 SWAP1 POP PUSH0 PUSH2 0xDDF JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xD9F DUP7 DUP7 PUSH2 0x91E JUMP JUMPDEST POP POP SWAP2 POP SWAP2 POP DUP2 PUSH6 0xFFFFFFFFFFFF AND PUSH0 EQ ISZERO DUP1 ISZERO PUSH2 0xDD4 JUMPI POP PUSH2 0xDC0 PUSH2 0x1B0C JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO JUMPDEST SWAP4 POP SWAP2 POP PUSH2 0xDDF SWAP1 POP JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xDEE PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x1B1B JUMP JUMPDEST PUSH0 CALLER DUP2 PUSH2 0xE05 DUP6 DUP6 PUSH2 0x128D JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0xE14 DUP9 DUP9 DUP9 DUP9 PUSH2 0xBB8 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP2 SWAP3 POP PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 SUB PUSH2 0xE51 JUMPI PUSH1 0x40 MLOAD PUSH4 0x60A299B PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xEEA JUMPI PUSH0 PUSH2 0xE75 PUSH0 DUP6 PUSH2 0xD6D JUMP JUMPDEST POP SWAP1 POP PUSH0 PUSH2 0xE8F PUSH2 0xE89 PUSH2 0x21A DUP12 DUP8 PUSH2 0xA04 JUMP JUMPDEST DUP7 PUSH2 0xD6D JUMP JUMPDEST POP SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xE9E JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xEE7 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFF89D47 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND PUSH1 0x4 DUP4 ADD MSTORE DUP1 DUP13 AND PUSH1 0x24 DUP4 ADD MSTORE DUP11 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP6 AND PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x840 JUMP JUMPDEST POP POP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND SWAP1 DUP2 SWAP1 SSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP2 DUP3 SWAP2 DUP5 SWAP2 PUSH32 0xBD9AC67A6E2F6463B80927326310338BCBB4BDB7936CE1365EA3E01067E7B9F7 SWAP2 LOG3 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 CALLER DUP2 PUSH2 0xF5B DUP3 DUP10 DUP10 DUP10 PUSH2 0x123C JUMP JUMPDEST SWAP2 POP POP PUSH0 DUP2 PUSH4 0xFFFFFFFF AND PUSH2 0xF6E PUSH2 0x1B0C JUMP JUMPDEST PUSH2 0xF78 SWAP2 SWAP1 PUSH2 0x26EF JUMP JUMPDEST SWAP1 POP PUSH4 0xFFFFFFFF DUP3 AND ISZERO DUP1 PUSH2 0xFAE JUMPI POP PUSH0 DUP7 PUSH6 0xFFFFFFFFFFFF AND GT DUP1 ISZERO PUSH2 0xFAE JUMPI POP DUP1 PUSH6 0xFFFFFFFFFFFF AND DUP7 PUSH6 0xFFFFFFFFFFFF AND LT JUMPDEST ISZERO PUSH2 0xFBF JUMPI DUP3 DUP10 PUSH2 0x807 DUP11 DUP11 PUSH2 0x128D JUMP JUMPDEST PUSH2 0xFD9 DUP7 PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x1BD6 JUMP JUMPDEST SWAP6 POP PUSH2 0xFE7 DUP4 DUP11 DUP11 DUP11 PUSH2 0xBB8 JUMP JUMPDEST SWAP5 POP PUSH2 0xFF2 DUP6 PUSH2 0x1BE5 JUMP JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF DUP10 AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF NOT DUP3 AND OR PUSH1 0x1 PUSH1 0x30 SHL SWAP2 DUP3 SWAP1 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH1 0x1 ADD SWAP1 DUP2 AND SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD SWAP1 SWAP6 POP DUP7 SWAP1 PUSH32 0x82A2DA5DEE54EA8021C6545B4444620291E07EE83BE6DD57EDB175062715F3B4 SWAP1 PUSH2 0x1078 SWAP1 DUP11 SWAP1 DUP9 SWAP1 DUP16 SWAP1 DUP16 SWAP1 DUP16 SWAP1 PUSH2 0x270D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ PUSH2 0xD5E JUMPI PUSH1 0x40 MLOAD PUSH4 0x5F159E63 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH0 DUP1 PUSH2 0x10C3 DUP4 DUP3 CALLDATASIZE PUSH2 0x1C31 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xD68 JUMPI DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x111D JUMPI PUSH0 PUSH2 0x10E4 DUP2 CALLDATASIZE PUSH2 0x1CF4 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0xF07E038F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE SWAP1 SWAP3 POP PUSH1 0x44 ADD SWAP1 POP PUSH2 0x840 JUMP JUMPDEST PUSH2 0x918 PUSH2 0xB7A DUP5 ADDRESS PUSH0 CALLDATASIZE PUSH2 0xBB8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP3 DUP4 MSTORE SWAP3 SWAP2 PUSH32 0x9EA6790C7DADFD01C9F8B9762B3682607AF2C7E79E05A9F9FDF5580DDE949151 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x11C1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x16D9 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x1 ADD DUP1 SLOAD DUP5 ISZERO ISZERO PUSH1 0x1 PUSH1 0x70 SHL MUL PUSH1 0xFF PUSH1 0x70 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE MLOAD PUSH32 0x90D4E7BB7E5D933792B3562E1741306F8BE94837E1348DACEF9B6F1DF56EB138 SWAP1 PUSH2 0x1230 SWAP1 DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 DUP1 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x1262 JUMPI PUSH2 0x1259 DUP7 DUP6 DUP6 PUSH2 0x1C31 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1284 JUMP JUMPDEST PUSH1 0x4 DUP4 LT PUSH2 0x127E JUMPI PUSH2 0x1279 DUP7 DUP7 PUSH2 0x5C2 DUP8 DUP8 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x1259 JUMP JUMPDEST POP PUSH0 SWAP1 POP DUP1 JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x129B PUSH1 0x4 DUP3 DUP5 DUP7 PUSH2 0x264F JUMP JUMPDEST PUSH2 0x8F5 SWAP2 PUSH2 0x2752 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP2 DUP4 SUB PUSH2 0x12EC JUMPI PUSH1 0x40 MLOAD PUSH4 0x60A299B PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x12F4 PUSH2 0x1B0C JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO PUSH2 0x1327 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC65B5BD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x1330 DUP3 PUSH2 0x179D JUMP JUMPDEST ISZERO PUSH2 0x1351 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1E2975B9 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND SWAP1 SSTORE MLOAD PUSH4 0xFFFFFFFF DUP4 AND SWAP2 DUP7 SWAP2 PUSH32 0x76A2A46953689D4861A5D3F6ED883AD7E6AF674A21F8E162707159FC9DDE614D SWAP2 SWAP1 LOG3 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH2 0x8F5 JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x13F3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 PUSH2 0x13FF DUP6 DUP5 DUP7 PUSH2 0x1EDA JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1420 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x1420 JUMPI POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x1435 JUMPI PUSH2 0x142D PUSH2 0x1EEF JUMP JUMPDEST SWAP2 POP POP PUSH2 0x8F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x145F JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x1472 JUMPI PUSH2 0x146D PUSH2 0x1F08 JUMP JUMPDEST PUSH2 0x148B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND ADD PUSH2 0x14D1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND ISZERO SWAP1 DUP2 ISZERO PUSH2 0x15C1 JUMPI DUP5 PUSH4 0xFFFFFFFF AND PUSH2 0x151C PUSH2 0x1B0C JUMP JUMPDEST PUSH2 0x1526 SWAP2 SWAP1 PUSH2 0x26EF JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH6 0xFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1554 DUP7 PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 DUP2 AND SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE DUP3 MSTORE SWAP1 SWAP2 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP5 SWAP1 SWAP3 ADD MLOAD SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x166B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH2 0x160A SWAP2 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 DUP7 SWAP1 PUSH2 0x1F13 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000 NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE SWAP1 POP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP7 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE DUP4 ISZERO ISZERO DUP2 DUP4 ADD MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP11 AND SWAP2 PUSH32 0xF98448B987F1428E0E230E1F3C6E2CE15B5693EAF31827FBD0B1EC4B424AE7CF SWAP2 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG3 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x16ED DUP5 PUSH2 0x16E8 PUSH2 0x1B0C JUMP JUMPDEST PUSH2 0x1FB9 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x1718 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1741 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND SWAP5 DUP7 AND SWAP5 DUP6 OR SWAP1 SSTORE MLOAD PUSH32 0x1FD6DD7631312DFAC2205B52913F99DE03B4D7E381D5D27D3DBFE0713E6E6340 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x17A6 PUSH2 0x1B0C JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x17BB PUSH3 0x93A80 DUP5 PUSH2 0x26EF JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND GT ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x17E9 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1812 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH16 0xFFFFFFFFFFFFFFFF0000000000000000 NOT AND PUSH1 0x1 PUSH1 0x40 SHL SWAP6 DUP8 AND SWAP6 DUP7 MUL OR SWAP1 SSTORE MLOAD PUSH32 0x7A8059630B897B5DE4C08ADE69F8B90C3EAD1F8596D62D10B6C4D14A0AFB4AE2 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ADD PUSH2 0x18B9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 KECCAK256 ADD SLOAD PUSH2 0x18F2 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x1F13 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x80 SHL NOT SWAP1 SWAP6 AND SWAP5 SWAP1 SWAP5 OR SWAP1 SWAP4 SSTORE SWAP2 MLOAD SWAP1 SWAP3 POP PUSH32 0xFEB69018EE8B8FD50EA86348F1267D07673379F72CFFDECCEC63853EE8CE8B48 SWAP1 PUSH2 0xAC8 SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x1998 DUP5 DUP5 PUSH2 0x2005 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x19B9 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x19B9 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x19CE JUMPI PUSH2 0x19C6 PUSH2 0x1EEF JUMP JUMPDEST SWAP2 POP POP PUSH2 0x752 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x19F8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x1472 JUMPI PUSH2 0x1A06 PUSH2 0x1F08 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A18 DUP4 DUP4 PUSH2 0x13A2 JUMP JUMPDEST PUSH1 0x3 SLOAD EQ SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND ADD PUSH2 0x1A61 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP1 SUB PUSH2 0x1AA2 JUMPI POP PUSH0 PUSH2 0x752 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE MLOAD SWAP1 SWAP3 SWAP2 PUSH32 0xF229BAA593AF28C41B1D16B748CD7688F0C83AAF92D4BE41C44005DEFE84C166 SWAP2 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1B16 TIMESTAMP PUSH2 0x2018 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x1B4D SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x1F13 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x1 ADD DUP1 SLOAD PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP7 SWAP1 SWAP7 AND SWAP6 SWAP1 SWAP6 OR SWAP1 SWAP5 SSTORE DUP1 MLOAD PUSH4 0xFFFFFFFF DUP8 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP5 AND SWAP5 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE SWAP2 SWAP4 POP SWAP2 PUSH32 0xA56B76017453F399EC2327BA00375DBFB1FD070FF854341AD6191E6A2E2DE19C SWAP2 ADD PUSH2 0xAC8 JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 GT MUL DUP3 XOR PUSH2 0x8F5 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x1C10 JUMPI POP PUSH2 0x1C0E DUP2 PUSH2 0x179D JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x76A JUMPI PUSH1 0x40 MLOAD PUSH4 0x813E9459 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x4 DUP4 LT ISZERO PUSH2 0x1C46 JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xD4E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x1C69 JUMPI PUSH2 0xD09 ADDRESS PUSH2 0x1C64 DUP7 DUP7 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x1A0D JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1C76 DUP8 DUP8 PUSH2 0x1CF4 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP DUP3 ISZERO DUP1 ISZERO PUSH2 0x1C8E JUMPI POP PUSH2 0x1C8E ADDRESS PUSH2 0xB7F JUMP JUMPDEST ISZERO PUSH2 0x1CA1 JUMPI PUSH0 PUSH0 SWAP5 POP SWAP5 POP POP POP POP PUSH2 0xD4E JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1CAD DUP5 DUP12 PUSH2 0xD6D JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x1CC6 JUMPI PUSH0 PUSH0 SWAP7 POP SWAP7 POP POP POP POP POP POP PUSH2 0xD4E JUMP JUMPDEST PUSH2 0x1CDC DUP4 PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x1BD6 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO SWAP12 SWAP1 SWAP11 POP SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x1D0D JUMPI POP PUSH0 SWAP2 POP DUP2 SWAP1 POP DUP1 PUSH2 0x1ED3 JUMP JUMPDEST PUSH0 PUSH2 0x1D18 DUP7 DUP7 PUSH2 0x128D JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x10A6AA37 PUSH1 0xE3 SHL EQ DUP1 PUSH2 0x1D49 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x30CAE187 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1D64 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x294B14A9 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x1D7F JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5326CAE7 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x1D9A JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xD22B5989 PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x1DAF JUMPI PUSH1 0x1 PUSH0 PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP PUSH2 0x1ED3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x63FC60F PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x1DDE JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x167BD395 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1DF9 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x8D6122D PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x1E38 JUMPI PUSH0 PUSH2 0x1E0D PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x264F JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1E1A SWAP2 SWAP1 PUSH2 0x22E6 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1E26 DUP3 PUSH2 0x9C5 JUMP JUMPDEST PUSH1 0x1 SWAP7 POP PUSH0 SWAP6 POP SWAP4 POP PUSH2 0x1ED3 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x12E238D PUSH1 0xE5 SHL EQ DUP1 PUSH2 0x1E67 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5BE958B1 PUSH1 0xE1 SHL EQ JUMPDEST ISZERO PUSH2 0x1EBF JUMPI PUSH0 PUSH2 0x1E7B PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x264F JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1E88 SWAP2 SWAP1 PUSH2 0x2122 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH2 0x1EB1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD AND SWAP1 JUMP JUMPDEST PUSH0 SWAP5 POP SWAP5 POP SWAP5 POP POP POP PUSH2 0x1ED3 JUMP JUMPDEST PUSH0 PUSH2 0x1ECA ADDRESS DUP4 PUSH2 0xA04 JUMP JUMPDEST PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 DUP9 GAS CALL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1F28 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11AD JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1F63 DUP6 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1F4E JUMPI PUSH0 PUSH2 0x1F58 JUMP JUMPDEST PUSH2 0x1F58 DUP9 DUP6 PUSH2 0x2788 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x1BD6 JUMP JUMPDEST SWAP1 POP DUP1 PUSH4 0xFFFFFFFF AND PUSH2 0x1F74 PUSH2 0x1B0C JUMP JUMPDEST PUSH2 0x1F7E SWAP2 SWAP1 PUSH2 0x26EF JUMP JUMPDEST SWAP3 POP PUSH4 0xFFFFFFFF DUP7 AND PUSH1 0x20 DUP4 SWAP1 SHL PUSH8 0xFFFFFFFF00000000 AND PUSH1 0x40 DUP6 SWAP1 SHL PUSH14 0xFFFFFFFFFFFF0000000000000000 AND OR OR SWAP4 POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH10 0xFFFFFFFFFFFFFFFFFFFF PUSH1 0x20 DUP4 SWAP1 SHR AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP4 AND PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 DUP6 SWAP1 SHR DUP2 AND SWAP1 DUP5 AND DUP2 GT ISZERO PUSH2 0x1FF4 JUMPI DUP3 DUP3 DUP3 PUSH2 0x1FF8 JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH6 0xFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x204A JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x30 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x840 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2062 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2075 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x208B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x20BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x20D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x20DE DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x20F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2104 DUP8 DUP3 DUP9 ADD PUSH2 0x2065 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x2117 SWAP1 POP PUSH1 0x40 DUP7 ADD PUSH2 0x20A5 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2132 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x8F5 DUP3 PUSH2 0x20A5 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x214C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2157 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x216B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2187 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2192 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x216B DUP2 PUSH2 0x204E JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x21B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x21C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x21F1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x21FC DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2216 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2222 DUP7 DUP3 DUP8 ADD PUSH2 0x21A2 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x20BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2254 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x225D DUP5 PUSH2 0x20A5 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x226D DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH2 0x227B PUSH1 0x40 DUP6 ADD PUSH2 0x222F JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2295 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2192 DUP4 PUSH2 0x20A5 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x22AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x22B8 DUP4 PUSH2 0x20A5 JUMP JUMPDEST SWAP2 POP PUSH2 0x22C6 PUSH1 0x20 DUP5 ADD PUSH2 0x20A5 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22DF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8F5 DUP2 PUSH2 0x204E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x2062 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2327 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2332 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x216B DUP2 PUSH2 0x2301 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2354 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x21FC DUP5 PUSH2 0x20A5 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x236E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2377 DUP4 PUSH2 0x20A5 JUMP JUMPDEST SWAP2 POP PUSH2 0x22C6 PUSH1 0x20 DUP5 ADD PUSH2 0x222F JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2398 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x23A3 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x23B3 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x23CD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x23D9 DUP8 DUP3 DUP9 ADD PUSH2 0x21A2 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x23F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x240B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2417 DUP6 DUP3 DUP7 ADD PUSH2 0x2065 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD PUSH1 0x20 DUP4 MSTORE DUP1 DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP6 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP7 ADD ADD SWAP3 POP PUSH1 0x20 DUP7 ADD PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x249B JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE DUP2 MLOAD DUP1 MLOAD DUP1 DUP8 MSTORE DUP1 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP10 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP10 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP9 ADD ADD SWAP7 POP POP POP PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x2449 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x24B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x24C4 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x24D4 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x24E4 DUP2 PUSH2 0x2301 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2500 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2377 DUP2 PUSH2 0x204E JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x251E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2529 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2543 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x254F DUP8 DUP3 DUP9 ADD PUSH2 0x21A2 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x256D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x259C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8F5 DUP2 PUSH2 0x2301 JUMP JUMPDEST DUP2 DUP4 MSTORE DUP2 DUP2 PUSH1 0x20 DUP6 ADD CALLDATACOPY POP PUSH0 DUP3 DUP3 ADD PUSH1 0x20 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND SWAP1 SWAP2 ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x25E2 PUSH1 0x20 DUP4 ADD DUP5 DUP7 PUSH2 0x25A7 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x25FA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x8F5 DUP2 PUSH2 0x2301 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x2631 SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x25A7 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x265D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x2669 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x269F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x26B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH0 DUP4 DUP3 ADD PUSH0 DUP2 MSTORE DUP4 MLOAD DUP1 PUSH1 0x20 DUP7 ADD DUP4 MCOPY PUSH0 SWAP2 ADD SWAP1 DUP2 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x752 JUMPI PUSH2 0x752 PUSH2 0x263B JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP7 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE DUP5 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x2747 SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x25A7 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x1A06 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x752 JUMPI PUSH2 0x752 PUSH2 0x263B JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP12 BALANCE PUSH5 0xB8CDEAC6FA 0xAF DUP13 SUB 0xB8 LOG2 PUSH28 0x787DCCCB72987C31447C36CEDC0E6DF90B7364736F6C634300081E00 CALLER ","sourceMap":"3782:26184:17:-:0;;;6339:283;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;6387:26:17;;6383:108;;6436:44;;-1:-1:-1;;;6436:44:17;;6477:1;6436:44;;;455:51:101;428:18;;6436:44:17;;;;;;;;6383:108;6573:42;5493:16;6596:12;5493:16;;6573:10;:42::i;:::-;;6339:283;3782:26184;;11603:1061;11761:4;-1:-1:-1;;;;;;;;;;;11781:21:17;;;11777:90;;11825:31;;-1:-1:-1;;;11825:31:17;;-1:-1:-1;;;;;679:31:101;;11825::17;;;661:50:101;634:18;;11825:31:17;517:200:101;11777:90:17;-1:-1:-1;;;;;11894:14:17;;11877;11894;;;:6;:14;;;;;;;;-1:-1:-1;;;;;11894:31:17;;;;;;;;;:37;;;:42;;11969:585;;;;12006:29;;;:16;:14;:16::i;:::-;:29;;;;:::i;:::-;11998:37;;12083:55;;;;;;;;12098:5;12083:55;;;;;;12112:24;:14;:22;;;;;:24;;:::i;:::-;-1:-1:-1;;;;;12083:55:17;;;;;;-1:-1:-1;;;;;12049:14:17;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12049:31:17;;;;;;;;;:89;;;;;;;;;;;;;;-1:-1:-1;;;;;;12049:89:17;;;;;;;;;;;;;;11969:585;;;-1:-1:-1;;;;;12430:14:17;;12528:1;12430:14;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12430:31:17;;;;;;;;;:37;:113;;:37;;;;-1:-1:-1;;;;;12430:37:17;;12496:14;;12430:48;:113::i;:::-;-1:-1:-1;;;;;12382:14:17;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12382:31:17;;;;;;;;;12381:162;;-1:-1:-1;;;;;12381:162:17;;;;;-1:-1:-1;;;;;;;;12381:162:17;;;;;;;;;;;-1:-1:-1;11969:585:17;12569:62;;;1260:10:101;1248:23;;1230:42;;1320:14;1308:27;;1303:2;1288:18;;1281:55;1379:14;;1372:22;1352:18;;;1345:50;12569:62:17;;-1:-1:-1;;;;;12569:62:17;;;-1:-1:-1;;;;;12569:62:17;;;;;;;;1218:2:101;12569:62:17;;;-1:-1:-1;12648:9:17;11603:1061;-1:-1:-1;;;;;11603:1061:17:o;750:110:66:-;794:6;819:34;837:15;819:17;:34::i;:::-;812:41;;750:110;:::o;2507:108::-;2588:20;;;2507:108::o;4032:390::-;4153:18;;;4213:10;-1:-1:-1;;;;;4213:8:66;;;:10::i;:::-;4198:25;;4233:14;4257:61;4266:10;4257:61;;4286:8;4278:16;;:5;:16;;;:39;;4316:1;4278:39;;;4297:16;4305:8;4297:5;:16;:::i;:::-;4257:61;;:8;:61::i;:::-;4233:86;-1:-1:-1;4338:21:66;;;:11;:9;:11::i;:::-;:21;;;;:::i;:::-;4329:30;-1:-1:-1;5125:19:66;;;5119:2;5095:26;;;;;5088:2;5069:21;;;;;5068:54;:76;4369:46;;;;4032:390;;;;;;:::o;14296:213:64:-;14352:6;14382:16;14374:24;;14370:103;;;14421:41;;-1:-1:-1;;;14421:41:64;;14452:2;14421:41;;;1762:36:101;1814:18;;;1807:34;;;1735:18;;14421:41:64;1581:266:101;14370:103:64;-1:-1:-1;14496:5:64;14296:213::o;3608:130:66:-;3656:6;;3695:14;-1:-1:-1;;;;;3695:12:66;;;:14::i;:::-;-1:-1:-1;3674:35:66;;3608:130;-1:-1:-1;;;;3608:130:66:o;5451:111:63:-;5543:5;;;5328;;;5327:36;5322:42;;5451:111;;;;;:::o;3392:159:66:-;3444:18;;;3515:29;3526:4;3532:11;:9;:11::i;:::-;3515:10;:29::i;:::-;3508:36;;;;;;3392:159;;;;;:::o;2867:307::-;-1:-1:-1;;;;;4770:2:66;4763:9;;;;-1:-1:-1;;;;;3061:11:66;;4799:9;4806:2;4799:9;;;;;;3091:19;;;;;:76;;3135:11;3148:10;3160:6;3091:76;;;3114:10;3126:1;3129;3091:76;3084:83;;;;;;2867:307;;;;;:::o;14:290:101:-;84:6;137:2;125:9;116:7;112:23;108:32;105:52;;;153:1;150;143:12;105:52;179:16;;-1:-1:-1;;;;;224:31:101;;214:42;;204:70;;270:1;267;260:12;204:70;293:5;14:290;-1:-1:-1;;;14:290:101:o;722:127::-;783:10;778:3;774:20;771:1;764:31;814:4;811:1;804:15;838:4;835:1;828:15;854:179;953:14;922:22;;;946;;;918:51;;981:23;;978:49;;;1007:18;;:::i;1406:170::-;1503:10;1496:18;;;1476;;;1472:43;;1527:20;;1524:46;;;1550:18;;:::i;1581:266::-;3782:26184:17;;;;;;"},"deployedBytecode":{"functionDebugData":{"@ADMIN_ROLE_3820":{"entryPoint":null,"id":3820,"parameterSlots":0,"returnSlots":0},"@PUBLIC_ROLE_3828":{"entryPoint":null,"id":3828,"parameterSlots":0,"returnSlots":0},"@_canCallExtended_5467":{"entryPoint":4668,"id":5467,"parameterSlots":4,"returnSlots":2},"@_canCallSelf_5569":{"entryPoint":7217,"id":5569,"parameterSlots":3,"returnSlots":2},"@_checkAuthorized_5269":{"entryPoint":4277,"id":5269,"parameterSlots":0,"returnSlots":0},"@_checkNotScheduled_4873":{"entryPoint":7141,"id":4873,"parameterSlots":1,"returnSlots":0},"@_checkSelector_5622":{"entryPoint":4749,"id":5622,"parameterSlots":2,"returnSlots":1},"@_consumeScheduledOp_5175":{"entryPoint":4772,"id":5175,"parameterSlots":1,"returnSlots":1},"@_contextSuffixLength_10726":{"entryPoint":null,"id":10726,"parameterSlots":0,"returnSlots":1},"@_getAdminRestrictions_5422":{"entryPoint":7412,"id":5422,"parameterSlots":2,"returnSlots":3},"@_getFullAt_17913":{"entryPoint":8121,"id":17913,"parameterSlots":2,"returnSlots":3},"@_grantRole_4385":{"entryPoint":5267,"id":4385,"parameterSlots":4,"returnSlots":1},"@_hashExecutionId_5648":{"entryPoint":5026,"id":5648,"parameterSlots":2,"returnSlots":1},"@_isExecuting_5587":{"entryPoint":6669,"id":5587,"parameterSlots":2,"returnSlots":1},"@_isExpired_5605":{"entryPoint":6045,"id":5605,"parameterSlots":1,"returnSlots":1},"@_msgData_10718":{"entryPoint":null,"id":10718,"parameterSlots":0,"returnSlots":2},"@_msgSender_10709":{"entryPoint":null,"id":10709,"parameterSlots":0,"returnSlots":1},"@_revokeRole_4433":{"entryPoint":6691,"id":4433,"parameterSlots":2,"returnSlots":1},"@_setGrantDelay_4545":{"entryPoint":6268,"id":4545,"parameterSlots":2,"returnSlots":0},"@_setRoleAdmin_4467":{"entryPoint":5882,"id":4467,"parameterSlots":2,"returnSlots":0},"@_setRoleGuardian_4501":{"entryPoint":6091,"id":4501,"parameterSlots":2,"returnSlots":0},"@_setTargetAdminDelay_4657":{"entryPoint":6939,"id":4657,"parameterSlots":2,"returnSlots":0},"@_setTargetClosed_4694":{"entryPoint":4555,"id":4694,"parameterSlots":2,"returnSlots":0},"@_setTargetFunctionRole_4606":{"entryPoint":4396,"id":4606,"parameterSlots":3,"returnSlots":0},"@bubbleRevert_10900":{"entryPoint":7944,"id":10900,"parameterSlots":0,"returnSlots":0},"@callNoReturn_10783":{"entryPoint":7898,"id":10783,"parameterSlots":3,"returnSlots":1},"@canCall_3948":{"entryPoint":3285,"id":3948,"parameterSlots":3,"returnSlots":2},"@cancel_5073":{"entryPoint":3576,"id":5073,"parameterSlots":4,"returnSlots":1},"@consumeScheduledOp_5110":{"entryPoint":2773,"id":5110,"parameterSlots":3,"returnSlots":0},"@delegatecallNoReturn_10862":{"entryPoint":8197,"id":10862,"parameterSlots":2,"returnSlots":1},"@efficientKeccak256_13963":{"entryPoint":null,"id":13963,"parameterSlots":2,"returnSlots":1},"@execute_4971":{"entryPoint":2000,"id":4971,"parameterSlots":3,"returnSlots":1},"@expiration_3957":{"entryPoint":null,"id":3957,"parameterSlots":0,"returnSlots":1},"@functionCallWithValue_9766":{"entryPoint":5063,"id":9766,"parameterSlots":3,"returnSlots":1},"@functionDelegateCall_9894":{"entryPoint":6539,"id":9894,"parameterSlots":2,"returnSlots":1},"@getAccess_4106":{"entryPoint":2334,"id":4106,"parameterSlots":2,"returnSlots":4},"@getFull_17933":{"entryPoint":5849,"id":17933,"parameterSlots":1,"returnSlots":3},"@getNonce_4731":{"entryPoint":null,"id":4731,"parameterSlots":1,"returnSlots":1},"@getRoleAdmin_4028":{"entryPoint":null,"id":4028,"parameterSlots":1,"returnSlots":1},"@getRoleGrantDelay_4058":{"entryPoint":1822,"id":4058,"parameterSlots":1,"returnSlots":1},"@getRoleGuardian_4042":{"entryPoint":null,"id":4042,"parameterSlots":1,"returnSlots":1},"@getSchedule_4717":{"entryPoint":2452,"id":4717,"parameterSlots":1,"returnSlots":1},"@getTargetAdminDelay_4014":{"entryPoint":2501,"id":4014,"parameterSlots":1,"returnSlots":1},"@getTargetFunctionRole_3998":{"entryPoint":2564,"id":3998,"parameterSlots":2,"returnSlots":1},"@get_17951":{"entryPoint":4525,"id":17951,"parameterSlots":1,"returnSlots":1},"@grantRole_4201":{"entryPoint":2300,"id":4201,"parameterSlots":3,"returnSlots":0},"@hasRole_4150":{"entryPoint":3437,"id":4150,"parameterSlots":2,"returnSlots":2},"@hashOperation_5197":{"entryPoint":3000,"id":5197,"parameterSlots":4,"returnSlots":1},"@isTargetClosed_3980":{"entryPoint":2943,"id":3980,"parameterSlots":1,"returnSlots":1},"@labelRole_4179":{"entryPoint":2622,"id":4179,"parameterSlots":3,"returnSlots":0},"@max_14580":{"entryPoint":7126,"id":14580,"parameterSlots":2,"returnSlots":1},"@minSetback_3966":{"entryPoint":null,"id":3966,"parameterSlots":0,"returnSlots":1},"@multicall_11296":{"entryPoint":3056,"id":11296,"parameterSlots":2,"returnSlots":1},"@pack_18096":{"entryPoint":null,"id":18096,"parameterSlots":3,"returnSlots":1},"@renounceRole_4240":{"entryPoint":4236,"id":4240,"parameterSlots":2,"returnSlots":0},"@returnDataSize_10886":{"entryPoint":null,"id":10886,"parameterSlots":0,"returnSlots":1},"@returnData_10894":{"entryPoint":7919,"id":10894,"parameterSlots":0,"returnSlots":1},"@revokeRole_4217":{"entryPoint":3414,"id":4217,"parameterSlots":2,"returnSlots":0},"@schedule_4845":{"entryPoint":3915,"id":4845,"parameterSlots":4,"returnSlots":2},"@setGrantDelay_4288":{"entryPoint":2982,"id":4288,"parameterSlots":2,"returnSlots":0},"@setRoleAdmin_4256":{"entryPoint":2434,"id":4256,"parameterSlots":2,"returnSlots":0},"@setRoleGuardian_4272":{"entryPoint":2546,"id":4272,"parameterSlots":2,"returnSlots":0},"@setTargetAdminDelay_4622":{"entryPoint":3558,"id":4622,"parameterSlots":2,"returnSlots":0},"@setTargetClosed_4673":{"entryPoint":1880,"id":4673,"parameterSlots":2,"returnSlots":0},"@setTargetFunctionRole_4580":{"entryPoint":1740,"id":4580,"parameterSlots":4,"returnSlots":0},"@ternary_14561":{"entryPoint":null,"id":14561,"parameterSlots":3,"returnSlots":1},"@timestamp_17845":{"entryPoint":6924,"id":17845,"parameterSlots":0,"returnSlots":1},"@toDelay_17875":{"entryPoint":null,"id":17875,"parameterSlots":1,"returnSlots":1},"@toUint48_16669":{"entryPoint":8216,"id":16669,"parameterSlots":1,"returnSlots":1},"@toUint_17678":{"entryPoint":null,"id":17678,"parameterSlots":1,"returnSlots":1},"@unpack_18058":{"entryPoint":null,"id":18058,"parameterSlots":1,"returnSlots":3},"@updateAuthority_5215":{"entryPoint":1902,"id":5215,"parameterSlots":2,"returnSlots":0},"@withUpdate_18007":{"entryPoint":7955,"id":18007,"parameterSlots":3,"returnSlots":2},"abi_decode_array_bytes4_dyn_calldata":{"entryPoint":8293,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_bytes_calldata":{"entryPoint":8610,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_address":{"entryPoint":8934,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_payable":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":8566,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_bytes4":{"entryPoint":9383,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_bytes_calldata_ptr":{"entryPoint":9093,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_array$_t_bytes4_$dyn_calldata_ptrt_uint64":{"entryPoint":8384,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_bool":{"entryPoint":8507,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes4":{"entryPoint":8982,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes_calldata_ptr":{"entryPoint":8671,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_bytes_calldata_ptrt_uint48":{"entryPoint":9483,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_uint32":{"entryPoint":9455,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr":{"entryPoint":9189,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32":{"entryPoint":8911,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":9612,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4_fromMemory":{"entryPoint":9706,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint64":{"entryPoint":8482,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint64t_address":{"entryPoint":8836,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint64t_addresst_uint32":{"entryPoint":8770,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint64t_string_calldata_ptr":{"entryPoint":9026,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint64t_uint32":{"entryPoint":9053,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint64t_uint64":{"entryPoint":8862,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_uint32":{"entryPoint":8751,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint64":{"entryPoint":8357,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_string_calldata":{"entryPoint":9639,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":9932,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_address_t_bytes4__to_t_address_t_address_t_address_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_bytes_calldata_ptr__to_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":9733,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_address_t_uint64__to_t_address_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":9251,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool_t_uint32__to_t_bool_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_uint32__to_t_bytes32_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_string_calldata_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":9679,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint48__to_t_uint32_t_uint48__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint48__to_t_uint48__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint48_t_address_t_address_t_bytes_calldata_ptr__to_t_uint48_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":9997,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint48_t_uint32_t_uint32_t_uint48__to_t_uint48_t_uint32_t_uint32_t_uint48__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":9866,"id":null,"parameterSlots":2,"returnSlots":2},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":9807,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_uint48":{"entryPoint":9967,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint32":{"entryPoint":10120,"id":null,"parameterSlots":2,"returnSlots":1},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4":{"entryPoint":10066,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":9787,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":9592,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":9846,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":8270,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_bytes4":{"entryPoint":8961,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:19453:101","nodeType":"YulBlock","src":"0:19453:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"59:86:101","nodeType":"YulBlock","src":"59:86:101","statements":[{"body":{"nativeSrc":"123:16:101","nodeType":"YulBlock","src":"123:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:101","nodeType":"YulLiteral","src":"132:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:101","nodeType":"YulLiteral","src":"135:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:101","nodeType":"YulIdentifier","src":"125:6:101"},"nativeSrc":"125:12:101","nodeType":"YulFunctionCall","src":"125:12:101"},"nativeSrc":"125:12:101","nodeType":"YulExpressionStatement","src":"125:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"82:5:101","nodeType":"YulIdentifier","src":"82:5:101"},{"arguments":[{"name":"value","nativeSrc":"93:5:101","nodeType":"YulIdentifier","src":"93:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"108:3:101","nodeType":"YulLiteral","src":"108:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"113:1:101","nodeType":"YulLiteral","src":"113:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"104:3:101","nodeType":"YulIdentifier","src":"104:3:101"},"nativeSrc":"104:11:101","nodeType":"YulFunctionCall","src":"104:11:101"},{"kind":"number","nativeSrc":"117:1:101","nodeType":"YulLiteral","src":"117:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"100:3:101","nodeType":"YulIdentifier","src":"100:3:101"},"nativeSrc":"100:19:101","nodeType":"YulFunctionCall","src":"100:19:101"}],"functionName":{"name":"and","nativeSrc":"89:3:101","nodeType":"YulIdentifier","src":"89:3:101"},"nativeSrc":"89:31:101","nodeType":"YulFunctionCall","src":"89:31:101"}],"functionName":{"name":"eq","nativeSrc":"79:2:101","nodeType":"YulIdentifier","src":"79:2:101"},"nativeSrc":"79:42:101","nodeType":"YulFunctionCall","src":"79:42:101"}],"functionName":{"name":"iszero","nativeSrc":"72:6:101","nodeType":"YulIdentifier","src":"72:6:101"},"nativeSrc":"72:50:101","nodeType":"YulFunctionCall","src":"72:50:101"},"nativeSrc":"69:70:101","nodeType":"YulIf","src":"69:70:101"}]},"name":"validator_revert_address","nativeSrc":"14:131:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"48:5:101","nodeType":"YulTypedName","src":"48:5:101","type":""}],"src":"14:131:101"},{"body":{"nativeSrc":"233:283:101","nodeType":"YulBlock","src":"233:283:101","statements":[{"body":{"nativeSrc":"282:16:101","nodeType":"YulBlock","src":"282:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"291:1:101","nodeType":"YulLiteral","src":"291:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"294:1:101","nodeType":"YulLiteral","src":"294:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"284:6:101","nodeType":"YulIdentifier","src":"284:6:101"},"nativeSrc":"284:12:101","nodeType":"YulFunctionCall","src":"284:12:101"},"nativeSrc":"284:12:101","nodeType":"YulExpressionStatement","src":"284:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"261:6:101","nodeType":"YulIdentifier","src":"261:6:101"},{"kind":"number","nativeSrc":"269:4:101","nodeType":"YulLiteral","src":"269:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"257:3:101","nodeType":"YulIdentifier","src":"257:3:101"},"nativeSrc":"257:17:101","nodeType":"YulFunctionCall","src":"257:17:101"},{"name":"end","nativeSrc":"276:3:101","nodeType":"YulIdentifier","src":"276:3:101"}],"functionName":{"name":"slt","nativeSrc":"253:3:101","nodeType":"YulIdentifier","src":"253:3:101"},"nativeSrc":"253:27:101","nodeType":"YulFunctionCall","src":"253:27:101"}],"functionName":{"name":"iszero","nativeSrc":"246:6:101","nodeType":"YulIdentifier","src":"246:6:101"},"nativeSrc":"246:35:101","nodeType":"YulFunctionCall","src":"246:35:101"},"nativeSrc":"243:55:101","nodeType":"YulIf","src":"243:55:101"},{"nativeSrc":"307:30:101","nodeType":"YulAssignment","src":"307:30:101","value":{"arguments":[{"name":"offset","nativeSrc":"330:6:101","nodeType":"YulIdentifier","src":"330:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"317:12:101","nodeType":"YulIdentifier","src":"317:12:101"},"nativeSrc":"317:20:101","nodeType":"YulFunctionCall","src":"317:20:101"},"variableNames":[{"name":"length","nativeSrc":"307:6:101","nodeType":"YulIdentifier","src":"307:6:101"}]},{"body":{"nativeSrc":"380:16:101","nodeType":"YulBlock","src":"380:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"389:1:101","nodeType":"YulLiteral","src":"389:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"392:1:101","nodeType":"YulLiteral","src":"392:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"382:6:101","nodeType":"YulIdentifier","src":"382:6:101"},"nativeSrc":"382:12:101","nodeType":"YulFunctionCall","src":"382:12:101"},"nativeSrc":"382:12:101","nodeType":"YulExpressionStatement","src":"382:12:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"352:6:101","nodeType":"YulIdentifier","src":"352:6:101"},{"kind":"number","nativeSrc":"360:18:101","nodeType":"YulLiteral","src":"360:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"349:2:101","nodeType":"YulIdentifier","src":"349:2:101"},"nativeSrc":"349:30:101","nodeType":"YulFunctionCall","src":"349:30:101"},"nativeSrc":"346:50:101","nodeType":"YulIf","src":"346:50:101"},{"nativeSrc":"405:29:101","nodeType":"YulAssignment","src":"405:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"421:6:101","nodeType":"YulIdentifier","src":"421:6:101"},{"kind":"number","nativeSrc":"429:4:101","nodeType":"YulLiteral","src":"429:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"417:3:101","nodeType":"YulIdentifier","src":"417:3:101"},"nativeSrc":"417:17:101","nodeType":"YulFunctionCall","src":"417:17:101"},"variableNames":[{"name":"arrayPos","nativeSrc":"405:8:101","nodeType":"YulIdentifier","src":"405:8:101"}]},{"body":{"nativeSrc":"494:16:101","nodeType":"YulBlock","src":"494:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"503:1:101","nodeType":"YulLiteral","src":"503:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"506:1:101","nodeType":"YulLiteral","src":"506:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"496:6:101","nodeType":"YulIdentifier","src":"496:6:101"},"nativeSrc":"496:12:101","nodeType":"YulFunctionCall","src":"496:12:101"},"nativeSrc":"496:12:101","nodeType":"YulExpressionStatement","src":"496:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"457:6:101","nodeType":"YulIdentifier","src":"457:6:101"},{"arguments":[{"kind":"number","nativeSrc":"469:1:101","nodeType":"YulLiteral","src":"469:1:101","type":"","value":"5"},{"name":"length","nativeSrc":"472:6:101","nodeType":"YulIdentifier","src":"472:6:101"}],"functionName":{"name":"shl","nativeSrc":"465:3:101","nodeType":"YulIdentifier","src":"465:3:101"},"nativeSrc":"465:14:101","nodeType":"YulFunctionCall","src":"465:14:101"}],"functionName":{"name":"add","nativeSrc":"453:3:101","nodeType":"YulIdentifier","src":"453:3:101"},"nativeSrc":"453:27:101","nodeType":"YulFunctionCall","src":"453:27:101"},{"kind":"number","nativeSrc":"482:4:101","nodeType":"YulLiteral","src":"482:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"449:3:101","nodeType":"YulIdentifier","src":"449:3:101"},"nativeSrc":"449:38:101","nodeType":"YulFunctionCall","src":"449:38:101"},{"name":"end","nativeSrc":"489:3:101","nodeType":"YulIdentifier","src":"489:3:101"}],"functionName":{"name":"gt","nativeSrc":"446:2:101","nodeType":"YulIdentifier","src":"446:2:101"},"nativeSrc":"446:47:101","nodeType":"YulFunctionCall","src":"446:47:101"},"nativeSrc":"443:67:101","nodeType":"YulIf","src":"443:67:101"}]},"name":"abi_decode_array_bytes4_dyn_calldata","nativeSrc":"150:366:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"196:6:101","nodeType":"YulTypedName","src":"196:6:101","type":""},{"name":"end","nativeSrc":"204:3:101","nodeType":"YulTypedName","src":"204:3:101","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"212:8:101","nodeType":"YulTypedName","src":"212:8:101","type":""},{"name":"length","nativeSrc":"222:6:101","nodeType":"YulTypedName","src":"222:6:101","type":""}],"src":"150:366:101"},{"body":{"nativeSrc":"569:123:101","nodeType":"YulBlock","src":"569:123:101","statements":[{"nativeSrc":"579:29:101","nodeType":"YulAssignment","src":"579:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"601:6:101","nodeType":"YulIdentifier","src":"601:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"588:12:101","nodeType":"YulIdentifier","src":"588:12:101"},"nativeSrc":"588:20:101","nodeType":"YulFunctionCall","src":"588:20:101"},"variableNames":[{"name":"value","nativeSrc":"579:5:101","nodeType":"YulIdentifier","src":"579:5:101"}]},{"body":{"nativeSrc":"670:16:101","nodeType":"YulBlock","src":"670:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"679:1:101","nodeType":"YulLiteral","src":"679:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"682:1:101","nodeType":"YulLiteral","src":"682:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"672:6:101","nodeType":"YulIdentifier","src":"672:6:101"},"nativeSrc":"672:12:101","nodeType":"YulFunctionCall","src":"672:12:101"},"nativeSrc":"672:12:101","nodeType":"YulExpressionStatement","src":"672:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"630:5:101","nodeType":"YulIdentifier","src":"630:5:101"},{"arguments":[{"name":"value","nativeSrc":"641:5:101","nodeType":"YulIdentifier","src":"641:5:101"},{"kind":"number","nativeSrc":"648:18:101","nodeType":"YulLiteral","src":"648:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"637:3:101","nodeType":"YulIdentifier","src":"637:3:101"},"nativeSrc":"637:30:101","nodeType":"YulFunctionCall","src":"637:30:101"}],"functionName":{"name":"eq","nativeSrc":"627:2:101","nodeType":"YulIdentifier","src":"627:2:101"},"nativeSrc":"627:41:101","nodeType":"YulFunctionCall","src":"627:41:101"}],"functionName":{"name":"iszero","nativeSrc":"620:6:101","nodeType":"YulIdentifier","src":"620:6:101"},"nativeSrc":"620:49:101","nodeType":"YulFunctionCall","src":"620:49:101"},"nativeSrc":"617:69:101","nodeType":"YulIf","src":"617:69:101"}]},"name":"abi_decode_uint64","nativeSrc":"521:171:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"548:6:101","nodeType":"YulTypedName","src":"548:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"559:5:101","nodeType":"YulTypedName","src":"559:5:101","type":""}],"src":"521:171:101"},{"body":{"nativeSrc":"834:505:101","nodeType":"YulBlock","src":"834:505:101","statements":[{"body":{"nativeSrc":"880:16:101","nodeType":"YulBlock","src":"880:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"889:1:101","nodeType":"YulLiteral","src":"889:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"892:1:101","nodeType":"YulLiteral","src":"892:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"882:6:101","nodeType":"YulIdentifier","src":"882:6:101"},"nativeSrc":"882:12:101","nodeType":"YulFunctionCall","src":"882:12:101"},"nativeSrc":"882:12:101","nodeType":"YulExpressionStatement","src":"882:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"855:7:101","nodeType":"YulIdentifier","src":"855:7:101"},{"name":"headStart","nativeSrc":"864:9:101","nodeType":"YulIdentifier","src":"864:9:101"}],"functionName":{"name":"sub","nativeSrc":"851:3:101","nodeType":"YulIdentifier","src":"851:3:101"},"nativeSrc":"851:23:101","nodeType":"YulFunctionCall","src":"851:23:101"},{"kind":"number","nativeSrc":"876:2:101","nodeType":"YulLiteral","src":"876:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"847:3:101","nodeType":"YulIdentifier","src":"847:3:101"},"nativeSrc":"847:32:101","nodeType":"YulFunctionCall","src":"847:32:101"},"nativeSrc":"844:52:101","nodeType":"YulIf","src":"844:52:101"},{"nativeSrc":"905:36:101","nodeType":"YulVariableDeclaration","src":"905:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"931:9:101","nodeType":"YulIdentifier","src":"931:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"918:12:101","nodeType":"YulIdentifier","src":"918:12:101"},"nativeSrc":"918:23:101","nodeType":"YulFunctionCall","src":"918:23:101"},"variables":[{"name":"value","nativeSrc":"909:5:101","nodeType":"YulTypedName","src":"909:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"975:5:101","nodeType":"YulIdentifier","src":"975:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"950:24:101","nodeType":"YulIdentifier","src":"950:24:101"},"nativeSrc":"950:31:101","nodeType":"YulFunctionCall","src":"950:31:101"},"nativeSrc":"950:31:101","nodeType":"YulExpressionStatement","src":"950:31:101"},{"nativeSrc":"990:15:101","nodeType":"YulAssignment","src":"990:15:101","value":{"name":"value","nativeSrc":"1000:5:101","nodeType":"YulIdentifier","src":"1000:5:101"},"variableNames":[{"name":"value0","nativeSrc":"990:6:101","nodeType":"YulIdentifier","src":"990:6:101"}]},{"nativeSrc":"1014:46:101","nodeType":"YulVariableDeclaration","src":"1014:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1045:9:101","nodeType":"YulIdentifier","src":"1045:9:101"},{"kind":"number","nativeSrc":"1056:2:101","nodeType":"YulLiteral","src":"1056:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1041:3:101","nodeType":"YulIdentifier","src":"1041:3:101"},"nativeSrc":"1041:18:101","nodeType":"YulFunctionCall","src":"1041:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"1028:12:101","nodeType":"YulIdentifier","src":"1028:12:101"},"nativeSrc":"1028:32:101","nodeType":"YulFunctionCall","src":"1028:32:101"},"variables":[{"name":"offset","nativeSrc":"1018:6:101","nodeType":"YulTypedName","src":"1018:6:101","type":""}]},{"body":{"nativeSrc":"1103:16:101","nodeType":"YulBlock","src":"1103:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1112:1:101","nodeType":"YulLiteral","src":"1112:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1115:1:101","nodeType":"YulLiteral","src":"1115:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1105:6:101","nodeType":"YulIdentifier","src":"1105:6:101"},"nativeSrc":"1105:12:101","nodeType":"YulFunctionCall","src":"1105:12:101"},"nativeSrc":"1105:12:101","nodeType":"YulExpressionStatement","src":"1105:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1075:6:101","nodeType":"YulIdentifier","src":"1075:6:101"},{"kind":"number","nativeSrc":"1083:18:101","nodeType":"YulLiteral","src":"1083:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1072:2:101","nodeType":"YulIdentifier","src":"1072:2:101"},"nativeSrc":"1072:30:101","nodeType":"YulFunctionCall","src":"1072:30:101"},"nativeSrc":"1069:50:101","nodeType":"YulIf","src":"1069:50:101"},{"nativeSrc":"1128:95:101","nodeType":"YulVariableDeclaration","src":"1128:95:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1195:9:101","nodeType":"YulIdentifier","src":"1195:9:101"},{"name":"offset","nativeSrc":"1206:6:101","nodeType":"YulIdentifier","src":"1206:6:101"}],"functionName":{"name":"add","nativeSrc":"1191:3:101","nodeType":"YulIdentifier","src":"1191:3:101"},"nativeSrc":"1191:22:101","nodeType":"YulFunctionCall","src":"1191:22:101"},{"name":"dataEnd","nativeSrc":"1215:7:101","nodeType":"YulIdentifier","src":"1215:7:101"}],"functionName":{"name":"abi_decode_array_bytes4_dyn_calldata","nativeSrc":"1154:36:101","nodeType":"YulIdentifier","src":"1154:36:101"},"nativeSrc":"1154:69:101","nodeType":"YulFunctionCall","src":"1154:69:101"},"variables":[{"name":"value1_1","nativeSrc":"1132:8:101","nodeType":"YulTypedName","src":"1132:8:101","type":""},{"name":"value2_1","nativeSrc":"1142:8:101","nodeType":"YulTypedName","src":"1142:8:101","type":""}]},{"nativeSrc":"1232:18:101","nodeType":"YulAssignment","src":"1232:18:101","value":{"name":"value1_1","nativeSrc":"1242:8:101","nodeType":"YulIdentifier","src":"1242:8:101"},"variableNames":[{"name":"value1","nativeSrc":"1232:6:101","nodeType":"YulIdentifier","src":"1232:6:101"}]},{"nativeSrc":"1259:18:101","nodeType":"YulAssignment","src":"1259:18:101","value":{"name":"value2_1","nativeSrc":"1269:8:101","nodeType":"YulIdentifier","src":"1269:8:101"},"variableNames":[{"name":"value2","nativeSrc":"1259:6:101","nodeType":"YulIdentifier","src":"1259:6:101"}]},{"nativeSrc":"1286:47:101","nodeType":"YulAssignment","src":"1286:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1318:9:101","nodeType":"YulIdentifier","src":"1318:9:101"},{"kind":"number","nativeSrc":"1329:2:101","nodeType":"YulLiteral","src":"1329:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1314:3:101","nodeType":"YulIdentifier","src":"1314:3:101"},"nativeSrc":"1314:18:101","nodeType":"YulFunctionCall","src":"1314:18:101"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"1296:17:101","nodeType":"YulIdentifier","src":"1296:17:101"},"nativeSrc":"1296:37:101","nodeType":"YulFunctionCall","src":"1296:37:101"},"variableNames":[{"name":"value3","nativeSrc":"1286:6:101","nodeType":"YulIdentifier","src":"1286:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_array$_t_bytes4_$dyn_calldata_ptrt_uint64","nativeSrc":"697:642:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"776:9:101","nodeType":"YulTypedName","src":"776:9:101","type":""},{"name":"dataEnd","nativeSrc":"787:7:101","nodeType":"YulTypedName","src":"787:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"799:6:101","nodeType":"YulTypedName","src":"799:6:101","type":""},{"name":"value1","nativeSrc":"807:6:101","nodeType":"YulTypedName","src":"807:6:101","type":""},{"name":"value2","nativeSrc":"815:6:101","nodeType":"YulTypedName","src":"815:6:101","type":""},{"name":"value3","nativeSrc":"823:6:101","nodeType":"YulTypedName","src":"823:6:101","type":""}],"src":"697:642:101"},{"body":{"nativeSrc":"1413:115:101","nodeType":"YulBlock","src":"1413:115:101","statements":[{"body":{"nativeSrc":"1459:16:101","nodeType":"YulBlock","src":"1459:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1468:1:101","nodeType":"YulLiteral","src":"1468:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1471:1:101","nodeType":"YulLiteral","src":"1471:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1461:6:101","nodeType":"YulIdentifier","src":"1461:6:101"},"nativeSrc":"1461:12:101","nodeType":"YulFunctionCall","src":"1461:12:101"},"nativeSrc":"1461:12:101","nodeType":"YulExpressionStatement","src":"1461:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1434:7:101","nodeType":"YulIdentifier","src":"1434:7:101"},{"name":"headStart","nativeSrc":"1443:9:101","nodeType":"YulIdentifier","src":"1443:9:101"}],"functionName":{"name":"sub","nativeSrc":"1430:3:101","nodeType":"YulIdentifier","src":"1430:3:101"},"nativeSrc":"1430:23:101","nodeType":"YulFunctionCall","src":"1430:23:101"},{"kind":"number","nativeSrc":"1455:2:101","nodeType":"YulLiteral","src":"1455:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1426:3:101","nodeType":"YulIdentifier","src":"1426:3:101"},"nativeSrc":"1426:32:101","nodeType":"YulFunctionCall","src":"1426:32:101"},"nativeSrc":"1423:52:101","nodeType":"YulIf","src":"1423:52:101"},{"nativeSrc":"1484:38:101","nodeType":"YulAssignment","src":"1484:38:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1512:9:101","nodeType":"YulIdentifier","src":"1512:9:101"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"1494:17:101","nodeType":"YulIdentifier","src":"1494:17:101"},"nativeSrc":"1494:28:101","nodeType":"YulFunctionCall","src":"1494:28:101"},"variableNames":[{"name":"value0","nativeSrc":"1484:6:101","nodeType":"YulIdentifier","src":"1484:6:101"}]}]},"name":"abi_decode_tuple_t_uint64","nativeSrc":"1344:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1379:9:101","nodeType":"YulTypedName","src":"1379:9:101","type":""},{"name":"dataEnd","nativeSrc":"1390:7:101","nodeType":"YulTypedName","src":"1390:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1402:6:101","nodeType":"YulTypedName","src":"1402:6:101","type":""}],"src":"1344:184:101"},{"body":{"nativeSrc":"1632:101:101","nodeType":"YulBlock","src":"1632:101:101","statements":[{"nativeSrc":"1642:26:101","nodeType":"YulAssignment","src":"1642:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1654:9:101","nodeType":"YulIdentifier","src":"1654:9:101"},{"kind":"number","nativeSrc":"1665:2:101","nodeType":"YulLiteral","src":"1665:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1650:3:101","nodeType":"YulIdentifier","src":"1650:3:101"},"nativeSrc":"1650:18:101","nodeType":"YulFunctionCall","src":"1650:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1642:4:101","nodeType":"YulIdentifier","src":"1642:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1684:9:101","nodeType":"YulIdentifier","src":"1684:9:101"},{"arguments":[{"name":"value0","nativeSrc":"1699:6:101","nodeType":"YulIdentifier","src":"1699:6:101"},{"kind":"number","nativeSrc":"1707:18:101","nodeType":"YulLiteral","src":"1707:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"1695:3:101","nodeType":"YulIdentifier","src":"1695:3:101"},"nativeSrc":"1695:31:101","nodeType":"YulFunctionCall","src":"1695:31:101"}],"functionName":{"name":"mstore","nativeSrc":"1677:6:101","nodeType":"YulIdentifier","src":"1677:6:101"},"nativeSrc":"1677:50:101","nodeType":"YulFunctionCall","src":"1677:50:101"},"nativeSrc":"1677:50:101","nodeType":"YulExpressionStatement","src":"1677:50:101"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"1533:200:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1601:9:101","nodeType":"YulTypedName","src":"1601:9:101","type":""},{"name":"value0","nativeSrc":"1612:6:101","nodeType":"YulTypedName","src":"1612:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1623:4:101","nodeType":"YulTypedName","src":"1623:4:101","type":""}],"src":"1533:200:101"},{"body":{"nativeSrc":"1837:93:101","nodeType":"YulBlock","src":"1837:93:101","statements":[{"nativeSrc":"1847:26:101","nodeType":"YulAssignment","src":"1847:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1859:9:101","nodeType":"YulIdentifier","src":"1859:9:101"},{"kind":"number","nativeSrc":"1870:2:101","nodeType":"YulLiteral","src":"1870:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1855:3:101","nodeType":"YulIdentifier","src":"1855:3:101"},"nativeSrc":"1855:18:101","nodeType":"YulFunctionCall","src":"1855:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1847:4:101","nodeType":"YulIdentifier","src":"1847:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1889:9:101","nodeType":"YulIdentifier","src":"1889:9:101"},{"arguments":[{"name":"value0","nativeSrc":"1904:6:101","nodeType":"YulIdentifier","src":"1904:6:101"},{"kind":"number","nativeSrc":"1912:10:101","nodeType":"YulLiteral","src":"1912:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1900:3:101","nodeType":"YulIdentifier","src":"1900:3:101"},"nativeSrc":"1900:23:101","nodeType":"YulFunctionCall","src":"1900:23:101"}],"functionName":{"name":"mstore","nativeSrc":"1882:6:101","nodeType":"YulIdentifier","src":"1882:6:101"},"nativeSrc":"1882:42:101","nodeType":"YulFunctionCall","src":"1882:42:101"},"nativeSrc":"1882:42:101","nodeType":"YulExpressionStatement","src":"1882:42:101"}]},"name":"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed","nativeSrc":"1738:192:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1806:9:101","nodeType":"YulTypedName","src":"1806:9:101","type":""},{"name":"value0","nativeSrc":"1817:6:101","nodeType":"YulTypedName","src":"1817:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1828:4:101","nodeType":"YulTypedName","src":"1828:4:101","type":""}],"src":"1738:192:101"},{"body":{"nativeSrc":"2019:332:101","nodeType":"YulBlock","src":"2019:332:101","statements":[{"body":{"nativeSrc":"2065:16:101","nodeType":"YulBlock","src":"2065:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2074:1:101","nodeType":"YulLiteral","src":"2074:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2077:1:101","nodeType":"YulLiteral","src":"2077:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2067:6:101","nodeType":"YulIdentifier","src":"2067:6:101"},"nativeSrc":"2067:12:101","nodeType":"YulFunctionCall","src":"2067:12:101"},"nativeSrc":"2067:12:101","nodeType":"YulExpressionStatement","src":"2067:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2040:7:101","nodeType":"YulIdentifier","src":"2040:7:101"},{"name":"headStart","nativeSrc":"2049:9:101","nodeType":"YulIdentifier","src":"2049:9:101"}],"functionName":{"name":"sub","nativeSrc":"2036:3:101","nodeType":"YulIdentifier","src":"2036:3:101"},"nativeSrc":"2036:23:101","nodeType":"YulFunctionCall","src":"2036:23:101"},{"kind":"number","nativeSrc":"2061:2:101","nodeType":"YulLiteral","src":"2061:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2032:3:101","nodeType":"YulIdentifier","src":"2032:3:101"},"nativeSrc":"2032:32:101","nodeType":"YulFunctionCall","src":"2032:32:101"},"nativeSrc":"2029:52:101","nodeType":"YulIf","src":"2029:52:101"},{"nativeSrc":"2090:36:101","nodeType":"YulVariableDeclaration","src":"2090:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2116:9:101","nodeType":"YulIdentifier","src":"2116:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"2103:12:101","nodeType":"YulIdentifier","src":"2103:12:101"},"nativeSrc":"2103:23:101","nodeType":"YulFunctionCall","src":"2103:23:101"},"variables":[{"name":"value","nativeSrc":"2094:5:101","nodeType":"YulTypedName","src":"2094:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2160:5:101","nodeType":"YulIdentifier","src":"2160:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2135:24:101","nodeType":"YulIdentifier","src":"2135:24:101"},"nativeSrc":"2135:31:101","nodeType":"YulFunctionCall","src":"2135:31:101"},"nativeSrc":"2135:31:101","nodeType":"YulExpressionStatement","src":"2135:31:101"},{"nativeSrc":"2175:15:101","nodeType":"YulAssignment","src":"2175:15:101","value":{"name":"value","nativeSrc":"2185:5:101","nodeType":"YulIdentifier","src":"2185:5:101"},"variableNames":[{"name":"value0","nativeSrc":"2175:6:101","nodeType":"YulIdentifier","src":"2175:6:101"}]},{"nativeSrc":"2199:47:101","nodeType":"YulVariableDeclaration","src":"2199:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2231:9:101","nodeType":"YulIdentifier","src":"2231:9:101"},{"kind":"number","nativeSrc":"2242:2:101","nodeType":"YulLiteral","src":"2242:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2227:3:101","nodeType":"YulIdentifier","src":"2227:3:101"},"nativeSrc":"2227:18:101","nodeType":"YulFunctionCall","src":"2227:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"2214:12:101","nodeType":"YulIdentifier","src":"2214:12:101"},"nativeSrc":"2214:32:101","nodeType":"YulFunctionCall","src":"2214:32:101"},"variables":[{"name":"value_1","nativeSrc":"2203:7:101","nodeType":"YulTypedName","src":"2203:7:101","type":""}]},{"body":{"nativeSrc":"2303:16:101","nodeType":"YulBlock","src":"2303:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2312:1:101","nodeType":"YulLiteral","src":"2312:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2315:1:101","nodeType":"YulLiteral","src":"2315:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2305:6:101","nodeType":"YulIdentifier","src":"2305:6:101"},"nativeSrc":"2305:12:101","nodeType":"YulFunctionCall","src":"2305:12:101"},"nativeSrc":"2305:12:101","nodeType":"YulExpressionStatement","src":"2305:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2268:7:101","nodeType":"YulIdentifier","src":"2268:7:101"},{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2291:7:101","nodeType":"YulIdentifier","src":"2291:7:101"}],"functionName":{"name":"iszero","nativeSrc":"2284:6:101","nodeType":"YulIdentifier","src":"2284:6:101"},"nativeSrc":"2284:15:101","nodeType":"YulFunctionCall","src":"2284:15:101"}],"functionName":{"name":"iszero","nativeSrc":"2277:6:101","nodeType":"YulIdentifier","src":"2277:6:101"},"nativeSrc":"2277:23:101","nodeType":"YulFunctionCall","src":"2277:23:101"}],"functionName":{"name":"eq","nativeSrc":"2265:2:101","nodeType":"YulIdentifier","src":"2265:2:101"},"nativeSrc":"2265:36:101","nodeType":"YulFunctionCall","src":"2265:36:101"}],"functionName":{"name":"iszero","nativeSrc":"2258:6:101","nodeType":"YulIdentifier","src":"2258:6:101"},"nativeSrc":"2258:44:101","nodeType":"YulFunctionCall","src":"2258:44:101"},"nativeSrc":"2255:64:101","nodeType":"YulIf","src":"2255:64:101"},{"nativeSrc":"2328:17:101","nodeType":"YulAssignment","src":"2328:17:101","value":{"name":"value_1","nativeSrc":"2338:7:101","nodeType":"YulIdentifier","src":"2338:7:101"},"variableNames":[{"name":"value1","nativeSrc":"2328:6:101","nodeType":"YulIdentifier","src":"2328:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_bool","nativeSrc":"1935:416:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1977:9:101","nodeType":"YulTypedName","src":"1977:9:101","type":""},{"name":"dataEnd","nativeSrc":"1988:7:101","nodeType":"YulTypedName","src":"1988:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2000:6:101","nodeType":"YulTypedName","src":"2000:6:101","type":""},{"name":"value1","nativeSrc":"2008:6:101","nodeType":"YulTypedName","src":"2008:6:101","type":""}],"src":"1935:416:101"},{"body":{"nativeSrc":"2443:301:101","nodeType":"YulBlock","src":"2443:301:101","statements":[{"body":{"nativeSrc":"2489:16:101","nodeType":"YulBlock","src":"2489:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2498:1:101","nodeType":"YulLiteral","src":"2498:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2501:1:101","nodeType":"YulLiteral","src":"2501:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2491:6:101","nodeType":"YulIdentifier","src":"2491:6:101"},"nativeSrc":"2491:12:101","nodeType":"YulFunctionCall","src":"2491:12:101"},"nativeSrc":"2491:12:101","nodeType":"YulExpressionStatement","src":"2491:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2464:7:101","nodeType":"YulIdentifier","src":"2464:7:101"},{"name":"headStart","nativeSrc":"2473:9:101","nodeType":"YulIdentifier","src":"2473:9:101"}],"functionName":{"name":"sub","nativeSrc":"2460:3:101","nodeType":"YulIdentifier","src":"2460:3:101"},"nativeSrc":"2460:23:101","nodeType":"YulFunctionCall","src":"2460:23:101"},{"kind":"number","nativeSrc":"2485:2:101","nodeType":"YulLiteral","src":"2485:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2456:3:101","nodeType":"YulIdentifier","src":"2456:3:101"},"nativeSrc":"2456:32:101","nodeType":"YulFunctionCall","src":"2456:32:101"},"nativeSrc":"2453:52:101","nodeType":"YulIf","src":"2453:52:101"},{"nativeSrc":"2514:36:101","nodeType":"YulVariableDeclaration","src":"2514:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2540:9:101","nodeType":"YulIdentifier","src":"2540:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"2527:12:101","nodeType":"YulIdentifier","src":"2527:12:101"},"nativeSrc":"2527:23:101","nodeType":"YulFunctionCall","src":"2527:23:101"},"variables":[{"name":"value","nativeSrc":"2518:5:101","nodeType":"YulTypedName","src":"2518:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2584:5:101","nodeType":"YulIdentifier","src":"2584:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2559:24:101","nodeType":"YulIdentifier","src":"2559:24:101"},"nativeSrc":"2559:31:101","nodeType":"YulFunctionCall","src":"2559:31:101"},"nativeSrc":"2559:31:101","nodeType":"YulExpressionStatement","src":"2559:31:101"},{"nativeSrc":"2599:15:101","nodeType":"YulAssignment","src":"2599:15:101","value":{"name":"value","nativeSrc":"2609:5:101","nodeType":"YulIdentifier","src":"2609:5:101"},"variableNames":[{"name":"value0","nativeSrc":"2599:6:101","nodeType":"YulIdentifier","src":"2599:6:101"}]},{"nativeSrc":"2623:47:101","nodeType":"YulVariableDeclaration","src":"2623:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2655:9:101","nodeType":"YulIdentifier","src":"2655:9:101"},{"kind":"number","nativeSrc":"2666:2:101","nodeType":"YulLiteral","src":"2666:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2651:3:101","nodeType":"YulIdentifier","src":"2651:3:101"},"nativeSrc":"2651:18:101","nodeType":"YulFunctionCall","src":"2651:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"2638:12:101","nodeType":"YulIdentifier","src":"2638:12:101"},"nativeSrc":"2638:32:101","nodeType":"YulFunctionCall","src":"2638:32:101"},"variables":[{"name":"value_1","nativeSrc":"2627:7:101","nodeType":"YulTypedName","src":"2627:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"2704:7:101","nodeType":"YulIdentifier","src":"2704:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2679:24:101","nodeType":"YulIdentifier","src":"2679:24:101"},"nativeSrc":"2679:33:101","nodeType":"YulFunctionCall","src":"2679:33:101"},"nativeSrc":"2679:33:101","nodeType":"YulExpressionStatement","src":"2679:33:101"},{"nativeSrc":"2721:17:101","nodeType":"YulAssignment","src":"2721:17:101","value":{"name":"value_1","nativeSrc":"2731:7:101","nodeType":"YulIdentifier","src":"2731:7:101"},"variableNames":[{"name":"value1","nativeSrc":"2721:6:101","nodeType":"YulIdentifier","src":"2721:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"2356:388:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2401:9:101","nodeType":"YulTypedName","src":"2401:9:101","type":""},{"name":"dataEnd","nativeSrc":"2412:7:101","nodeType":"YulTypedName","src":"2412:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2424:6:101","nodeType":"YulTypedName","src":"2424:6:101","type":""},{"name":"value1","nativeSrc":"2432:6:101","nodeType":"YulTypedName","src":"2432:6:101","type":""}],"src":"2356:388:101"},{"body":{"nativeSrc":"2821:275:101","nodeType":"YulBlock","src":"2821:275:101","statements":[{"body":{"nativeSrc":"2870:16:101","nodeType":"YulBlock","src":"2870:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2879:1:101","nodeType":"YulLiteral","src":"2879:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2882:1:101","nodeType":"YulLiteral","src":"2882:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2872:6:101","nodeType":"YulIdentifier","src":"2872:6:101"},"nativeSrc":"2872:12:101","nodeType":"YulFunctionCall","src":"2872:12:101"},"nativeSrc":"2872:12:101","nodeType":"YulExpressionStatement","src":"2872:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2849:6:101","nodeType":"YulIdentifier","src":"2849:6:101"},{"kind":"number","nativeSrc":"2857:4:101","nodeType":"YulLiteral","src":"2857:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2845:3:101","nodeType":"YulIdentifier","src":"2845:3:101"},"nativeSrc":"2845:17:101","nodeType":"YulFunctionCall","src":"2845:17:101"},{"name":"end","nativeSrc":"2864:3:101","nodeType":"YulIdentifier","src":"2864:3:101"}],"functionName":{"name":"slt","nativeSrc":"2841:3:101","nodeType":"YulIdentifier","src":"2841:3:101"},"nativeSrc":"2841:27:101","nodeType":"YulFunctionCall","src":"2841:27:101"}],"functionName":{"name":"iszero","nativeSrc":"2834:6:101","nodeType":"YulIdentifier","src":"2834:6:101"},"nativeSrc":"2834:35:101","nodeType":"YulFunctionCall","src":"2834:35:101"},"nativeSrc":"2831:55:101","nodeType":"YulIf","src":"2831:55:101"},{"nativeSrc":"2895:30:101","nodeType":"YulAssignment","src":"2895:30:101","value":{"arguments":[{"name":"offset","nativeSrc":"2918:6:101","nodeType":"YulIdentifier","src":"2918:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"2905:12:101","nodeType":"YulIdentifier","src":"2905:12:101"},"nativeSrc":"2905:20:101","nodeType":"YulFunctionCall","src":"2905:20:101"},"variableNames":[{"name":"length","nativeSrc":"2895:6:101","nodeType":"YulIdentifier","src":"2895:6:101"}]},{"body":{"nativeSrc":"2968:16:101","nodeType":"YulBlock","src":"2968:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2977:1:101","nodeType":"YulLiteral","src":"2977:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2980:1:101","nodeType":"YulLiteral","src":"2980:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2970:6:101","nodeType":"YulIdentifier","src":"2970:6:101"},"nativeSrc":"2970:12:101","nodeType":"YulFunctionCall","src":"2970:12:101"},"nativeSrc":"2970:12:101","nodeType":"YulExpressionStatement","src":"2970:12:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"2940:6:101","nodeType":"YulIdentifier","src":"2940:6:101"},{"kind":"number","nativeSrc":"2948:18:101","nodeType":"YulLiteral","src":"2948:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2937:2:101","nodeType":"YulIdentifier","src":"2937:2:101"},"nativeSrc":"2937:30:101","nodeType":"YulFunctionCall","src":"2937:30:101"},"nativeSrc":"2934:50:101","nodeType":"YulIf","src":"2934:50:101"},{"nativeSrc":"2993:29:101","nodeType":"YulAssignment","src":"2993:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"3009:6:101","nodeType":"YulIdentifier","src":"3009:6:101"},{"kind":"number","nativeSrc":"3017:4:101","nodeType":"YulLiteral","src":"3017:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3005:3:101","nodeType":"YulIdentifier","src":"3005:3:101"},"nativeSrc":"3005:17:101","nodeType":"YulFunctionCall","src":"3005:17:101"},"variableNames":[{"name":"arrayPos","nativeSrc":"2993:8:101","nodeType":"YulIdentifier","src":"2993:8:101"}]},{"body":{"nativeSrc":"3074:16:101","nodeType":"YulBlock","src":"3074:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3083:1:101","nodeType":"YulLiteral","src":"3083:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3086:1:101","nodeType":"YulLiteral","src":"3086:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3076:6:101","nodeType":"YulIdentifier","src":"3076:6:101"},"nativeSrc":"3076:12:101","nodeType":"YulFunctionCall","src":"3076:12:101"},"nativeSrc":"3076:12:101","nodeType":"YulExpressionStatement","src":"3076:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"3045:6:101","nodeType":"YulIdentifier","src":"3045:6:101"},{"name":"length","nativeSrc":"3053:6:101","nodeType":"YulIdentifier","src":"3053:6:101"}],"functionName":{"name":"add","nativeSrc":"3041:3:101","nodeType":"YulIdentifier","src":"3041:3:101"},"nativeSrc":"3041:19:101","nodeType":"YulFunctionCall","src":"3041:19:101"},{"kind":"number","nativeSrc":"3062:4:101","nodeType":"YulLiteral","src":"3062:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3037:3:101","nodeType":"YulIdentifier","src":"3037:3:101"},"nativeSrc":"3037:30:101","nodeType":"YulFunctionCall","src":"3037:30:101"},{"name":"end","nativeSrc":"3069:3:101","nodeType":"YulIdentifier","src":"3069:3:101"}],"functionName":{"name":"gt","nativeSrc":"3034:2:101","nodeType":"YulIdentifier","src":"3034:2:101"},"nativeSrc":"3034:39:101","nodeType":"YulFunctionCall","src":"3034:39:101"},"nativeSrc":"3031:59:101","nodeType":"YulIf","src":"3031:59:101"}]},"name":"abi_decode_bytes_calldata","nativeSrc":"2749:347:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"2784:6:101","nodeType":"YulTypedName","src":"2784:6:101","type":""},{"name":"end","nativeSrc":"2792:3:101","nodeType":"YulTypedName","src":"2792:3:101","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"2800:8:101","nodeType":"YulTypedName","src":"2800:8:101","type":""},{"name":"length","nativeSrc":"2810:6:101","nodeType":"YulTypedName","src":"2810:6:101","type":""}],"src":"2749:347:101"},{"body":{"nativeSrc":"3207:438:101","nodeType":"YulBlock","src":"3207:438:101","statements":[{"body":{"nativeSrc":"3253:16:101","nodeType":"YulBlock","src":"3253:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3262:1:101","nodeType":"YulLiteral","src":"3262:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3265:1:101","nodeType":"YulLiteral","src":"3265:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3255:6:101","nodeType":"YulIdentifier","src":"3255:6:101"},"nativeSrc":"3255:12:101","nodeType":"YulFunctionCall","src":"3255:12:101"},"nativeSrc":"3255:12:101","nodeType":"YulExpressionStatement","src":"3255:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3228:7:101","nodeType":"YulIdentifier","src":"3228:7:101"},{"name":"headStart","nativeSrc":"3237:9:101","nodeType":"YulIdentifier","src":"3237:9:101"}],"functionName":{"name":"sub","nativeSrc":"3224:3:101","nodeType":"YulIdentifier","src":"3224:3:101"},"nativeSrc":"3224:23:101","nodeType":"YulFunctionCall","src":"3224:23:101"},{"kind":"number","nativeSrc":"3249:2:101","nodeType":"YulLiteral","src":"3249:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3220:3:101","nodeType":"YulIdentifier","src":"3220:3:101"},"nativeSrc":"3220:32:101","nodeType":"YulFunctionCall","src":"3220:32:101"},"nativeSrc":"3217:52:101","nodeType":"YulIf","src":"3217:52:101"},{"nativeSrc":"3278:36:101","nodeType":"YulVariableDeclaration","src":"3278:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3304:9:101","nodeType":"YulIdentifier","src":"3304:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"3291:12:101","nodeType":"YulIdentifier","src":"3291:12:101"},"nativeSrc":"3291:23:101","nodeType":"YulFunctionCall","src":"3291:23:101"},"variables":[{"name":"value","nativeSrc":"3282:5:101","nodeType":"YulTypedName","src":"3282:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3348:5:101","nodeType":"YulIdentifier","src":"3348:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3323:24:101","nodeType":"YulIdentifier","src":"3323:24:101"},"nativeSrc":"3323:31:101","nodeType":"YulFunctionCall","src":"3323:31:101"},"nativeSrc":"3323:31:101","nodeType":"YulExpressionStatement","src":"3323:31:101"},{"nativeSrc":"3363:15:101","nodeType":"YulAssignment","src":"3363:15:101","value":{"name":"value","nativeSrc":"3373:5:101","nodeType":"YulIdentifier","src":"3373:5:101"},"variableNames":[{"name":"value0","nativeSrc":"3363:6:101","nodeType":"YulIdentifier","src":"3363:6:101"}]},{"nativeSrc":"3387:46:101","nodeType":"YulVariableDeclaration","src":"3387:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3418:9:101","nodeType":"YulIdentifier","src":"3418:9:101"},{"kind":"number","nativeSrc":"3429:2:101","nodeType":"YulLiteral","src":"3429:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3414:3:101","nodeType":"YulIdentifier","src":"3414:3:101"},"nativeSrc":"3414:18:101","nodeType":"YulFunctionCall","src":"3414:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3401:12:101","nodeType":"YulIdentifier","src":"3401:12:101"},"nativeSrc":"3401:32:101","nodeType":"YulFunctionCall","src":"3401:32:101"},"variables":[{"name":"offset","nativeSrc":"3391:6:101","nodeType":"YulTypedName","src":"3391:6:101","type":""}]},{"body":{"nativeSrc":"3476:16:101","nodeType":"YulBlock","src":"3476:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3485:1:101","nodeType":"YulLiteral","src":"3485:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3488:1:101","nodeType":"YulLiteral","src":"3488:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3478:6:101","nodeType":"YulIdentifier","src":"3478:6:101"},"nativeSrc":"3478:12:101","nodeType":"YulFunctionCall","src":"3478:12:101"},"nativeSrc":"3478:12:101","nodeType":"YulExpressionStatement","src":"3478:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"3448:6:101","nodeType":"YulIdentifier","src":"3448:6:101"},{"kind":"number","nativeSrc":"3456:18:101","nodeType":"YulLiteral","src":"3456:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3445:2:101","nodeType":"YulIdentifier","src":"3445:2:101"},"nativeSrc":"3445:30:101","nodeType":"YulFunctionCall","src":"3445:30:101"},"nativeSrc":"3442:50:101","nodeType":"YulIf","src":"3442:50:101"},{"nativeSrc":"3501:84:101","nodeType":"YulVariableDeclaration","src":"3501:84:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3557:9:101","nodeType":"YulIdentifier","src":"3557:9:101"},{"name":"offset","nativeSrc":"3568:6:101","nodeType":"YulIdentifier","src":"3568:6:101"}],"functionName":{"name":"add","nativeSrc":"3553:3:101","nodeType":"YulIdentifier","src":"3553:3:101"},"nativeSrc":"3553:22:101","nodeType":"YulFunctionCall","src":"3553:22:101"},{"name":"dataEnd","nativeSrc":"3577:7:101","nodeType":"YulIdentifier","src":"3577:7:101"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"3527:25:101","nodeType":"YulIdentifier","src":"3527:25:101"},"nativeSrc":"3527:58:101","nodeType":"YulFunctionCall","src":"3527:58:101"},"variables":[{"name":"value1_1","nativeSrc":"3505:8:101","nodeType":"YulTypedName","src":"3505:8:101","type":""},{"name":"value2_1","nativeSrc":"3515:8:101","nodeType":"YulTypedName","src":"3515:8:101","type":""}]},{"nativeSrc":"3594:18:101","nodeType":"YulAssignment","src":"3594:18:101","value":{"name":"value1_1","nativeSrc":"3604:8:101","nodeType":"YulIdentifier","src":"3604:8:101"},"variableNames":[{"name":"value1","nativeSrc":"3594:6:101","nodeType":"YulIdentifier","src":"3594:6:101"}]},{"nativeSrc":"3621:18:101","nodeType":"YulAssignment","src":"3621:18:101","value":{"name":"value2_1","nativeSrc":"3631:8:101","nodeType":"YulIdentifier","src":"3631:8:101"},"variableNames":[{"name":"value2","nativeSrc":"3621:6:101","nodeType":"YulIdentifier","src":"3621:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptr","nativeSrc":"3101:544:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3157:9:101","nodeType":"YulTypedName","src":"3157:9:101","type":""},{"name":"dataEnd","nativeSrc":"3168:7:101","nodeType":"YulTypedName","src":"3168:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3180:6:101","nodeType":"YulTypedName","src":"3180:6:101","type":""},{"name":"value1","nativeSrc":"3188:6:101","nodeType":"YulTypedName","src":"3188:6:101","type":""},{"name":"value2","nativeSrc":"3196:6:101","nodeType":"YulTypedName","src":"3196:6:101","type":""}],"src":"3101:544:101"},{"body":{"nativeSrc":"3698:115:101","nodeType":"YulBlock","src":"3698:115:101","statements":[{"nativeSrc":"3708:29:101","nodeType":"YulAssignment","src":"3708:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"3730:6:101","nodeType":"YulIdentifier","src":"3730:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"3717:12:101","nodeType":"YulIdentifier","src":"3717:12:101"},"nativeSrc":"3717:20:101","nodeType":"YulFunctionCall","src":"3717:20:101"},"variableNames":[{"name":"value","nativeSrc":"3708:5:101","nodeType":"YulIdentifier","src":"3708:5:101"}]},{"body":{"nativeSrc":"3791:16:101","nodeType":"YulBlock","src":"3791:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3800:1:101","nodeType":"YulLiteral","src":"3800:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3803:1:101","nodeType":"YulLiteral","src":"3803:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3793:6:101","nodeType":"YulIdentifier","src":"3793:6:101"},"nativeSrc":"3793:12:101","nodeType":"YulFunctionCall","src":"3793:12:101"},"nativeSrc":"3793:12:101","nodeType":"YulExpressionStatement","src":"3793:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3759:5:101","nodeType":"YulIdentifier","src":"3759:5:101"},{"arguments":[{"name":"value","nativeSrc":"3770:5:101","nodeType":"YulIdentifier","src":"3770:5:101"},{"kind":"number","nativeSrc":"3777:10:101","nodeType":"YulLiteral","src":"3777:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"3766:3:101","nodeType":"YulIdentifier","src":"3766:3:101"},"nativeSrc":"3766:22:101","nodeType":"YulFunctionCall","src":"3766:22:101"}],"functionName":{"name":"eq","nativeSrc":"3756:2:101","nodeType":"YulIdentifier","src":"3756:2:101"},"nativeSrc":"3756:33:101","nodeType":"YulFunctionCall","src":"3756:33:101"}],"functionName":{"name":"iszero","nativeSrc":"3749:6:101","nodeType":"YulIdentifier","src":"3749:6:101"},"nativeSrc":"3749:41:101","nodeType":"YulFunctionCall","src":"3749:41:101"},"nativeSrc":"3746:61:101","nodeType":"YulIf","src":"3746:61:101"}]},"name":"abi_decode_uint32","nativeSrc":"3650:163:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"3677:6:101","nodeType":"YulTypedName","src":"3677:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"3688:5:101","nodeType":"YulTypedName","src":"3688:5:101","type":""}],"src":"3650:163:101"},{"body":{"nativeSrc":"3920:289:101","nodeType":"YulBlock","src":"3920:289:101","statements":[{"body":{"nativeSrc":"3966:16:101","nodeType":"YulBlock","src":"3966:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3975:1:101","nodeType":"YulLiteral","src":"3975:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3978:1:101","nodeType":"YulLiteral","src":"3978:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3968:6:101","nodeType":"YulIdentifier","src":"3968:6:101"},"nativeSrc":"3968:12:101","nodeType":"YulFunctionCall","src":"3968:12:101"},"nativeSrc":"3968:12:101","nodeType":"YulExpressionStatement","src":"3968:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3941:7:101","nodeType":"YulIdentifier","src":"3941:7:101"},{"name":"headStart","nativeSrc":"3950:9:101","nodeType":"YulIdentifier","src":"3950:9:101"}],"functionName":{"name":"sub","nativeSrc":"3937:3:101","nodeType":"YulIdentifier","src":"3937:3:101"},"nativeSrc":"3937:23:101","nodeType":"YulFunctionCall","src":"3937:23:101"},{"kind":"number","nativeSrc":"3962:2:101","nodeType":"YulLiteral","src":"3962:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"3933:3:101","nodeType":"YulIdentifier","src":"3933:3:101"},"nativeSrc":"3933:32:101","nodeType":"YulFunctionCall","src":"3933:32:101"},"nativeSrc":"3930:52:101","nodeType":"YulIf","src":"3930:52:101"},{"nativeSrc":"3991:38:101","nodeType":"YulAssignment","src":"3991:38:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4019:9:101","nodeType":"YulIdentifier","src":"4019:9:101"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"4001:17:101","nodeType":"YulIdentifier","src":"4001:17:101"},"nativeSrc":"4001:28:101","nodeType":"YulFunctionCall","src":"4001:28:101"},"variableNames":[{"name":"value0","nativeSrc":"3991:6:101","nodeType":"YulIdentifier","src":"3991:6:101"}]},{"nativeSrc":"4038:45:101","nodeType":"YulVariableDeclaration","src":"4038:45:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4068:9:101","nodeType":"YulIdentifier","src":"4068:9:101"},{"kind":"number","nativeSrc":"4079:2:101","nodeType":"YulLiteral","src":"4079:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4064:3:101","nodeType":"YulIdentifier","src":"4064:3:101"},"nativeSrc":"4064:18:101","nodeType":"YulFunctionCall","src":"4064:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"4051:12:101","nodeType":"YulIdentifier","src":"4051:12:101"},"nativeSrc":"4051:32:101","nodeType":"YulFunctionCall","src":"4051:32:101"},"variables":[{"name":"value","nativeSrc":"4042:5:101","nodeType":"YulTypedName","src":"4042:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4117:5:101","nodeType":"YulIdentifier","src":"4117:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4092:24:101","nodeType":"YulIdentifier","src":"4092:24:101"},"nativeSrc":"4092:31:101","nodeType":"YulFunctionCall","src":"4092:31:101"},"nativeSrc":"4092:31:101","nodeType":"YulExpressionStatement","src":"4092:31:101"},{"nativeSrc":"4132:15:101","nodeType":"YulAssignment","src":"4132:15:101","value":{"name":"value","nativeSrc":"4142:5:101","nodeType":"YulIdentifier","src":"4142:5:101"},"variableNames":[{"name":"value1","nativeSrc":"4132:6:101","nodeType":"YulIdentifier","src":"4132:6:101"}]},{"nativeSrc":"4156:47:101","nodeType":"YulAssignment","src":"4156:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4188:9:101","nodeType":"YulIdentifier","src":"4188:9:101"},{"kind":"number","nativeSrc":"4199:2:101","nodeType":"YulLiteral","src":"4199:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4184:3:101","nodeType":"YulIdentifier","src":"4184:3:101"},"nativeSrc":"4184:18:101","nodeType":"YulFunctionCall","src":"4184:18:101"}],"functionName":{"name":"abi_decode_uint32","nativeSrc":"4166:17:101","nodeType":"YulIdentifier","src":"4166:17:101"},"nativeSrc":"4166:37:101","nodeType":"YulFunctionCall","src":"4166:37:101"},"variableNames":[{"name":"value2","nativeSrc":"4156:6:101","nodeType":"YulIdentifier","src":"4156:6:101"}]}]},"name":"abi_decode_tuple_t_uint64t_addresst_uint32","nativeSrc":"3818:391:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3870:9:101","nodeType":"YulTypedName","src":"3870:9:101","type":""},{"name":"dataEnd","nativeSrc":"3881:7:101","nodeType":"YulTypedName","src":"3881:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3893:6:101","nodeType":"YulTypedName","src":"3893:6:101","type":""},{"name":"value1","nativeSrc":"3901:6:101","nodeType":"YulTypedName","src":"3901:6:101","type":""},{"name":"value2","nativeSrc":"3909:6:101","nodeType":"YulTypedName","src":"3909:6:101","type":""}],"src":"3818:391:101"},{"body":{"nativeSrc":"4300:233:101","nodeType":"YulBlock","src":"4300:233:101","statements":[{"body":{"nativeSrc":"4346:16:101","nodeType":"YulBlock","src":"4346:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4355:1:101","nodeType":"YulLiteral","src":"4355:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4358:1:101","nodeType":"YulLiteral","src":"4358:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4348:6:101","nodeType":"YulIdentifier","src":"4348:6:101"},"nativeSrc":"4348:12:101","nodeType":"YulFunctionCall","src":"4348:12:101"},"nativeSrc":"4348:12:101","nodeType":"YulExpressionStatement","src":"4348:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4321:7:101","nodeType":"YulIdentifier","src":"4321:7:101"},{"name":"headStart","nativeSrc":"4330:9:101","nodeType":"YulIdentifier","src":"4330:9:101"}],"functionName":{"name":"sub","nativeSrc":"4317:3:101","nodeType":"YulIdentifier","src":"4317:3:101"},"nativeSrc":"4317:23:101","nodeType":"YulFunctionCall","src":"4317:23:101"},{"kind":"number","nativeSrc":"4342:2:101","nodeType":"YulLiteral","src":"4342:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4313:3:101","nodeType":"YulIdentifier","src":"4313:3:101"},"nativeSrc":"4313:32:101","nodeType":"YulFunctionCall","src":"4313:32:101"},"nativeSrc":"4310:52:101","nodeType":"YulIf","src":"4310:52:101"},{"nativeSrc":"4371:38:101","nodeType":"YulAssignment","src":"4371:38:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4399:9:101","nodeType":"YulIdentifier","src":"4399:9:101"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"4381:17:101","nodeType":"YulIdentifier","src":"4381:17:101"},"nativeSrc":"4381:28:101","nodeType":"YulFunctionCall","src":"4381:28:101"},"variableNames":[{"name":"value0","nativeSrc":"4371:6:101","nodeType":"YulIdentifier","src":"4371:6:101"}]},{"nativeSrc":"4418:45:101","nodeType":"YulVariableDeclaration","src":"4418:45:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4448:9:101","nodeType":"YulIdentifier","src":"4448:9:101"},{"kind":"number","nativeSrc":"4459:2:101","nodeType":"YulLiteral","src":"4459:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4444:3:101","nodeType":"YulIdentifier","src":"4444:3:101"},"nativeSrc":"4444:18:101","nodeType":"YulFunctionCall","src":"4444:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"4431:12:101","nodeType":"YulIdentifier","src":"4431:12:101"},"nativeSrc":"4431:32:101","nodeType":"YulFunctionCall","src":"4431:32:101"},"variables":[{"name":"value","nativeSrc":"4422:5:101","nodeType":"YulTypedName","src":"4422:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4497:5:101","nodeType":"YulIdentifier","src":"4497:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4472:24:101","nodeType":"YulIdentifier","src":"4472:24:101"},"nativeSrc":"4472:31:101","nodeType":"YulFunctionCall","src":"4472:31:101"},"nativeSrc":"4472:31:101","nodeType":"YulExpressionStatement","src":"4472:31:101"},{"nativeSrc":"4512:15:101","nodeType":"YulAssignment","src":"4512:15:101","value":{"name":"value","nativeSrc":"4522:5:101","nodeType":"YulIdentifier","src":"4522:5:101"},"variableNames":[{"name":"value1","nativeSrc":"4512:6:101","nodeType":"YulIdentifier","src":"4512:6:101"}]}]},"name":"abi_decode_tuple_t_uint64t_address","nativeSrc":"4214:319:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4258:9:101","nodeType":"YulTypedName","src":"4258:9:101","type":""},{"name":"dataEnd","nativeSrc":"4269:7:101","nodeType":"YulTypedName","src":"4269:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4281:6:101","nodeType":"YulTypedName","src":"4281:6:101","type":""},{"name":"value1","nativeSrc":"4289:6:101","nodeType":"YulTypedName","src":"4289:6:101","type":""}],"src":"4214:319:101"},{"body":{"nativeSrc":"4715:282:101","nodeType":"YulBlock","src":"4715:282:101","statements":[{"nativeSrc":"4725:27:101","nodeType":"YulAssignment","src":"4725:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4737:9:101","nodeType":"YulIdentifier","src":"4737:9:101"},{"kind":"number","nativeSrc":"4748:3:101","nodeType":"YulLiteral","src":"4748:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4733:3:101","nodeType":"YulIdentifier","src":"4733:3:101"},"nativeSrc":"4733:19:101","nodeType":"YulFunctionCall","src":"4733:19:101"},"variableNames":[{"name":"tail","nativeSrc":"4725:4:101","nodeType":"YulIdentifier","src":"4725:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4768:9:101","nodeType":"YulIdentifier","src":"4768:9:101"},{"arguments":[{"name":"value0","nativeSrc":"4783:6:101","nodeType":"YulIdentifier","src":"4783:6:101"},{"kind":"number","nativeSrc":"4791:14:101","nodeType":"YulLiteral","src":"4791:14:101","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"4779:3:101","nodeType":"YulIdentifier","src":"4779:3:101"},"nativeSrc":"4779:27:101","nodeType":"YulFunctionCall","src":"4779:27:101"}],"functionName":{"name":"mstore","nativeSrc":"4761:6:101","nodeType":"YulIdentifier","src":"4761:6:101"},"nativeSrc":"4761:46:101","nodeType":"YulFunctionCall","src":"4761:46:101"},"nativeSrc":"4761:46:101","nodeType":"YulExpressionStatement","src":"4761:46:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4827:9:101","nodeType":"YulIdentifier","src":"4827:9:101"},{"kind":"number","nativeSrc":"4838:2:101","nodeType":"YulLiteral","src":"4838:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4823:3:101","nodeType":"YulIdentifier","src":"4823:3:101"},"nativeSrc":"4823:18:101","nodeType":"YulFunctionCall","src":"4823:18:101"},{"arguments":[{"name":"value1","nativeSrc":"4847:6:101","nodeType":"YulIdentifier","src":"4847:6:101"},{"kind":"number","nativeSrc":"4855:10:101","nodeType":"YulLiteral","src":"4855:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"4843:3:101","nodeType":"YulIdentifier","src":"4843:3:101"},"nativeSrc":"4843:23:101","nodeType":"YulFunctionCall","src":"4843:23:101"}],"functionName":{"name":"mstore","nativeSrc":"4816:6:101","nodeType":"YulIdentifier","src":"4816:6:101"},"nativeSrc":"4816:51:101","nodeType":"YulFunctionCall","src":"4816:51:101"},"nativeSrc":"4816:51:101","nodeType":"YulExpressionStatement","src":"4816:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4887:9:101","nodeType":"YulIdentifier","src":"4887:9:101"},{"kind":"number","nativeSrc":"4898:2:101","nodeType":"YulLiteral","src":"4898:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4883:3:101","nodeType":"YulIdentifier","src":"4883:3:101"},"nativeSrc":"4883:18:101","nodeType":"YulFunctionCall","src":"4883:18:101"},{"arguments":[{"name":"value2","nativeSrc":"4907:6:101","nodeType":"YulIdentifier","src":"4907:6:101"},{"kind":"number","nativeSrc":"4915:10:101","nodeType":"YulLiteral","src":"4915:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"4903:3:101","nodeType":"YulIdentifier","src":"4903:3:101"},"nativeSrc":"4903:23:101","nodeType":"YulFunctionCall","src":"4903:23:101"}],"functionName":{"name":"mstore","nativeSrc":"4876:6:101","nodeType":"YulIdentifier","src":"4876:6:101"},"nativeSrc":"4876:51:101","nodeType":"YulFunctionCall","src":"4876:51:101"},"nativeSrc":"4876:51:101","nodeType":"YulExpressionStatement","src":"4876:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4947:9:101","nodeType":"YulIdentifier","src":"4947:9:101"},{"kind":"number","nativeSrc":"4958:2:101","nodeType":"YulLiteral","src":"4958:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4943:3:101","nodeType":"YulIdentifier","src":"4943:3:101"},"nativeSrc":"4943:18:101","nodeType":"YulFunctionCall","src":"4943:18:101"},{"arguments":[{"name":"value3","nativeSrc":"4967:6:101","nodeType":"YulIdentifier","src":"4967:6:101"},{"kind":"number","nativeSrc":"4975:14:101","nodeType":"YulLiteral","src":"4975:14:101","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"4963:3:101","nodeType":"YulIdentifier","src":"4963:3:101"},"nativeSrc":"4963:27:101","nodeType":"YulFunctionCall","src":"4963:27:101"}],"functionName":{"name":"mstore","nativeSrc":"4936:6:101","nodeType":"YulIdentifier","src":"4936:6:101"},"nativeSrc":"4936:55:101","nodeType":"YulFunctionCall","src":"4936:55:101"},"nativeSrc":"4936:55:101","nodeType":"YulExpressionStatement","src":"4936:55:101"}]},"name":"abi_encode_tuple_t_uint48_t_uint32_t_uint32_t_uint48__to_t_uint48_t_uint32_t_uint32_t_uint48__fromStack_reversed","nativeSrc":"4538:459:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4660:9:101","nodeType":"YulTypedName","src":"4660:9:101","type":""},{"name":"value3","nativeSrc":"4671:6:101","nodeType":"YulTypedName","src":"4671:6:101","type":""},{"name":"value2","nativeSrc":"4679:6:101","nodeType":"YulTypedName","src":"4679:6:101","type":""},{"name":"value1","nativeSrc":"4687:6:101","nodeType":"YulTypedName","src":"4687:6:101","type":""},{"name":"value0","nativeSrc":"4695:6:101","nodeType":"YulTypedName","src":"4695:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4706:4:101","nodeType":"YulTypedName","src":"4706:4:101","type":""}],"src":"4538:459:101"},{"body":{"nativeSrc":"5087:171:101","nodeType":"YulBlock","src":"5087:171:101","statements":[{"body":{"nativeSrc":"5133:16:101","nodeType":"YulBlock","src":"5133:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5142:1:101","nodeType":"YulLiteral","src":"5142:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5145:1:101","nodeType":"YulLiteral","src":"5145:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5135:6:101","nodeType":"YulIdentifier","src":"5135:6:101"},"nativeSrc":"5135:12:101","nodeType":"YulFunctionCall","src":"5135:12:101"},"nativeSrc":"5135:12:101","nodeType":"YulExpressionStatement","src":"5135:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5108:7:101","nodeType":"YulIdentifier","src":"5108:7:101"},{"name":"headStart","nativeSrc":"5117:9:101","nodeType":"YulIdentifier","src":"5117:9:101"}],"functionName":{"name":"sub","nativeSrc":"5104:3:101","nodeType":"YulIdentifier","src":"5104:3:101"},"nativeSrc":"5104:23:101","nodeType":"YulFunctionCall","src":"5104:23:101"},{"kind":"number","nativeSrc":"5129:2:101","nodeType":"YulLiteral","src":"5129:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"5100:3:101","nodeType":"YulIdentifier","src":"5100:3:101"},"nativeSrc":"5100:32:101","nodeType":"YulFunctionCall","src":"5100:32:101"},"nativeSrc":"5097:52:101","nodeType":"YulIf","src":"5097:52:101"},{"nativeSrc":"5158:38:101","nodeType":"YulAssignment","src":"5158:38:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5186:9:101","nodeType":"YulIdentifier","src":"5186:9:101"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"5168:17:101","nodeType":"YulIdentifier","src":"5168:17:101"},"nativeSrc":"5168:28:101","nodeType":"YulFunctionCall","src":"5168:28:101"},"variableNames":[{"name":"value0","nativeSrc":"5158:6:101","nodeType":"YulIdentifier","src":"5158:6:101"}]},{"nativeSrc":"5205:47:101","nodeType":"YulAssignment","src":"5205:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5237:9:101","nodeType":"YulIdentifier","src":"5237:9:101"},{"kind":"number","nativeSrc":"5248:2:101","nodeType":"YulLiteral","src":"5248:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5233:3:101","nodeType":"YulIdentifier","src":"5233:3:101"},"nativeSrc":"5233:18:101","nodeType":"YulFunctionCall","src":"5233:18:101"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"5215:17:101","nodeType":"YulIdentifier","src":"5215:17:101"},"nativeSrc":"5215:37:101","nodeType":"YulFunctionCall","src":"5215:37:101"},"variableNames":[{"name":"value1","nativeSrc":"5205:6:101","nodeType":"YulIdentifier","src":"5205:6:101"}]}]},"name":"abi_decode_tuple_t_uint64t_uint64","nativeSrc":"5002:256:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5045:9:101","nodeType":"YulTypedName","src":"5045:9:101","type":""},{"name":"dataEnd","nativeSrc":"5056:7:101","nodeType":"YulTypedName","src":"5056:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5068:6:101","nodeType":"YulTypedName","src":"5068:6:101","type":""},{"name":"value1","nativeSrc":"5076:6:101","nodeType":"YulTypedName","src":"5076:6:101","type":""}],"src":"5002:256:101"},{"body":{"nativeSrc":"5333:110:101","nodeType":"YulBlock","src":"5333:110:101","statements":[{"body":{"nativeSrc":"5379:16:101","nodeType":"YulBlock","src":"5379:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5388:1:101","nodeType":"YulLiteral","src":"5388:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5391:1:101","nodeType":"YulLiteral","src":"5391:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5381:6:101","nodeType":"YulIdentifier","src":"5381:6:101"},"nativeSrc":"5381:12:101","nodeType":"YulFunctionCall","src":"5381:12:101"},"nativeSrc":"5381:12:101","nodeType":"YulExpressionStatement","src":"5381:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5354:7:101","nodeType":"YulIdentifier","src":"5354:7:101"},{"name":"headStart","nativeSrc":"5363:9:101","nodeType":"YulIdentifier","src":"5363:9:101"}],"functionName":{"name":"sub","nativeSrc":"5350:3:101","nodeType":"YulIdentifier","src":"5350:3:101"},"nativeSrc":"5350:23:101","nodeType":"YulFunctionCall","src":"5350:23:101"},{"kind":"number","nativeSrc":"5375:2:101","nodeType":"YulLiteral","src":"5375:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5346:3:101","nodeType":"YulIdentifier","src":"5346:3:101"},"nativeSrc":"5346:32:101","nodeType":"YulFunctionCall","src":"5346:32:101"},"nativeSrc":"5343:52:101","nodeType":"YulIf","src":"5343:52:101"},{"nativeSrc":"5404:33:101","nodeType":"YulAssignment","src":"5404:33:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5427:9:101","nodeType":"YulIdentifier","src":"5427:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"5414:12:101","nodeType":"YulIdentifier","src":"5414:12:101"},"nativeSrc":"5414:23:101","nodeType":"YulFunctionCall","src":"5414:23:101"},"variableNames":[{"name":"value0","nativeSrc":"5404:6:101","nodeType":"YulIdentifier","src":"5404:6:101"}]}]},"name":"abi_decode_tuple_t_bytes32","nativeSrc":"5263:180:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5299:9:101","nodeType":"YulTypedName","src":"5299:9:101","type":""},{"name":"dataEnd","nativeSrc":"5310:7:101","nodeType":"YulTypedName","src":"5310:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5322:6:101","nodeType":"YulTypedName","src":"5322:6:101","type":""}],"src":"5263:180:101"},{"body":{"nativeSrc":"5547:97:101","nodeType":"YulBlock","src":"5547:97:101","statements":[{"nativeSrc":"5557:26:101","nodeType":"YulAssignment","src":"5557:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5569:9:101","nodeType":"YulIdentifier","src":"5569:9:101"},{"kind":"number","nativeSrc":"5580:2:101","nodeType":"YulLiteral","src":"5580:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5565:3:101","nodeType":"YulIdentifier","src":"5565:3:101"},"nativeSrc":"5565:18:101","nodeType":"YulFunctionCall","src":"5565:18:101"},"variableNames":[{"name":"tail","nativeSrc":"5557:4:101","nodeType":"YulIdentifier","src":"5557:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5599:9:101","nodeType":"YulIdentifier","src":"5599:9:101"},{"arguments":[{"name":"value0","nativeSrc":"5614:6:101","nodeType":"YulIdentifier","src":"5614:6:101"},{"kind":"number","nativeSrc":"5622:14:101","nodeType":"YulLiteral","src":"5622:14:101","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"5610:3:101","nodeType":"YulIdentifier","src":"5610:3:101"},"nativeSrc":"5610:27:101","nodeType":"YulFunctionCall","src":"5610:27:101"}],"functionName":{"name":"mstore","nativeSrc":"5592:6:101","nodeType":"YulIdentifier","src":"5592:6:101"},"nativeSrc":"5592:46:101","nodeType":"YulFunctionCall","src":"5592:46:101"},"nativeSrc":"5592:46:101","nodeType":"YulExpressionStatement","src":"5592:46:101"}]},"name":"abi_encode_tuple_t_uint48__to_t_uint48__fromStack_reversed","nativeSrc":"5448:196:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5516:9:101","nodeType":"YulTypedName","src":"5516:9:101","type":""},{"name":"value0","nativeSrc":"5527:6:101","nodeType":"YulTypedName","src":"5527:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5538:4:101","nodeType":"YulTypedName","src":"5538:4:101","type":""}],"src":"5448:196:101"},{"body":{"nativeSrc":"5719:177:101","nodeType":"YulBlock","src":"5719:177:101","statements":[{"body":{"nativeSrc":"5765:16:101","nodeType":"YulBlock","src":"5765:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5774:1:101","nodeType":"YulLiteral","src":"5774:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5777:1:101","nodeType":"YulLiteral","src":"5777:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5767:6:101","nodeType":"YulIdentifier","src":"5767:6:101"},"nativeSrc":"5767:12:101","nodeType":"YulFunctionCall","src":"5767:12:101"},"nativeSrc":"5767:12:101","nodeType":"YulExpressionStatement","src":"5767:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5740:7:101","nodeType":"YulIdentifier","src":"5740:7:101"},{"name":"headStart","nativeSrc":"5749:9:101","nodeType":"YulIdentifier","src":"5749:9:101"}],"functionName":{"name":"sub","nativeSrc":"5736:3:101","nodeType":"YulIdentifier","src":"5736:3:101"},"nativeSrc":"5736:23:101","nodeType":"YulFunctionCall","src":"5736:23:101"},{"kind":"number","nativeSrc":"5761:2:101","nodeType":"YulLiteral","src":"5761:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5732:3:101","nodeType":"YulIdentifier","src":"5732:3:101"},"nativeSrc":"5732:32:101","nodeType":"YulFunctionCall","src":"5732:32:101"},"nativeSrc":"5729:52:101","nodeType":"YulIf","src":"5729:52:101"},{"nativeSrc":"5790:36:101","nodeType":"YulVariableDeclaration","src":"5790:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5816:9:101","nodeType":"YulIdentifier","src":"5816:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"5803:12:101","nodeType":"YulIdentifier","src":"5803:12:101"},"nativeSrc":"5803:23:101","nodeType":"YulFunctionCall","src":"5803:23:101"},"variables":[{"name":"value","nativeSrc":"5794:5:101","nodeType":"YulTypedName","src":"5794:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5860:5:101","nodeType":"YulIdentifier","src":"5860:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"5835:24:101","nodeType":"YulIdentifier","src":"5835:24:101"},"nativeSrc":"5835:31:101","nodeType":"YulFunctionCall","src":"5835:31:101"},"nativeSrc":"5835:31:101","nodeType":"YulExpressionStatement","src":"5835:31:101"},{"nativeSrc":"5875:15:101","nodeType":"YulAssignment","src":"5875:15:101","value":{"name":"value","nativeSrc":"5885:5:101","nodeType":"YulIdentifier","src":"5885:5:101"},"variableNames":[{"name":"value0","nativeSrc":"5875:6:101","nodeType":"YulIdentifier","src":"5875:6:101"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"5649:247:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5685:9:101","nodeType":"YulTypedName","src":"5685:9:101","type":""},{"name":"dataEnd","nativeSrc":"5696:7:101","nodeType":"YulTypedName","src":"5696:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5708:6:101","nodeType":"YulTypedName","src":"5708:6:101","type":""}],"src":"5649:247:101"},{"body":{"nativeSrc":"5945:87:101","nodeType":"YulBlock","src":"5945:87:101","statements":[{"body":{"nativeSrc":"6010:16:101","nodeType":"YulBlock","src":"6010:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6019:1:101","nodeType":"YulLiteral","src":"6019:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6022:1:101","nodeType":"YulLiteral","src":"6022:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6012:6:101","nodeType":"YulIdentifier","src":"6012:6:101"},"nativeSrc":"6012:12:101","nodeType":"YulFunctionCall","src":"6012:12:101"},"nativeSrc":"6012:12:101","nodeType":"YulExpressionStatement","src":"6012:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5968:5:101","nodeType":"YulIdentifier","src":"5968:5:101"},{"arguments":[{"name":"value","nativeSrc":"5979:5:101","nodeType":"YulIdentifier","src":"5979:5:101"},{"arguments":[{"kind":"number","nativeSrc":"5990:3:101","nodeType":"YulLiteral","src":"5990:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"5995:10:101","nodeType":"YulLiteral","src":"5995:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"5986:3:101","nodeType":"YulIdentifier","src":"5986:3:101"},"nativeSrc":"5986:20:101","nodeType":"YulFunctionCall","src":"5986:20:101"}],"functionName":{"name":"and","nativeSrc":"5975:3:101","nodeType":"YulIdentifier","src":"5975:3:101"},"nativeSrc":"5975:32:101","nodeType":"YulFunctionCall","src":"5975:32:101"}],"functionName":{"name":"eq","nativeSrc":"5965:2:101","nodeType":"YulIdentifier","src":"5965:2:101"},"nativeSrc":"5965:43:101","nodeType":"YulFunctionCall","src":"5965:43:101"}],"functionName":{"name":"iszero","nativeSrc":"5958:6:101","nodeType":"YulIdentifier","src":"5958:6:101"},"nativeSrc":"5958:51:101","nodeType":"YulFunctionCall","src":"5958:51:101"},"nativeSrc":"5955:71:101","nodeType":"YulIf","src":"5955:71:101"}]},"name":"validator_revert_bytes4","nativeSrc":"5901:131:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"5934:5:101","nodeType":"YulTypedName","src":"5934:5:101","type":""}],"src":"5901:131:101"},{"body":{"nativeSrc":"6123:300:101","nodeType":"YulBlock","src":"6123:300:101","statements":[{"body":{"nativeSrc":"6169:16:101","nodeType":"YulBlock","src":"6169:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6178:1:101","nodeType":"YulLiteral","src":"6178:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6181:1:101","nodeType":"YulLiteral","src":"6181:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6171:6:101","nodeType":"YulIdentifier","src":"6171:6:101"},"nativeSrc":"6171:12:101","nodeType":"YulFunctionCall","src":"6171:12:101"},"nativeSrc":"6171:12:101","nodeType":"YulExpressionStatement","src":"6171:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6144:7:101","nodeType":"YulIdentifier","src":"6144:7:101"},{"name":"headStart","nativeSrc":"6153:9:101","nodeType":"YulIdentifier","src":"6153:9:101"}],"functionName":{"name":"sub","nativeSrc":"6140:3:101","nodeType":"YulIdentifier","src":"6140:3:101"},"nativeSrc":"6140:23:101","nodeType":"YulFunctionCall","src":"6140:23:101"},{"kind":"number","nativeSrc":"6165:2:101","nodeType":"YulLiteral","src":"6165:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6136:3:101","nodeType":"YulIdentifier","src":"6136:3:101"},"nativeSrc":"6136:32:101","nodeType":"YulFunctionCall","src":"6136:32:101"},"nativeSrc":"6133:52:101","nodeType":"YulIf","src":"6133:52:101"},{"nativeSrc":"6194:36:101","nodeType":"YulVariableDeclaration","src":"6194:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6220:9:101","nodeType":"YulIdentifier","src":"6220:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"6207:12:101","nodeType":"YulIdentifier","src":"6207:12:101"},"nativeSrc":"6207:23:101","nodeType":"YulFunctionCall","src":"6207:23:101"},"variables":[{"name":"value","nativeSrc":"6198:5:101","nodeType":"YulTypedName","src":"6198:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6264:5:101","nodeType":"YulIdentifier","src":"6264:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6239:24:101","nodeType":"YulIdentifier","src":"6239:24:101"},"nativeSrc":"6239:31:101","nodeType":"YulFunctionCall","src":"6239:31:101"},"nativeSrc":"6239:31:101","nodeType":"YulExpressionStatement","src":"6239:31:101"},{"nativeSrc":"6279:15:101","nodeType":"YulAssignment","src":"6279:15:101","value":{"name":"value","nativeSrc":"6289:5:101","nodeType":"YulIdentifier","src":"6289:5:101"},"variableNames":[{"name":"value0","nativeSrc":"6279:6:101","nodeType":"YulIdentifier","src":"6279:6:101"}]},{"nativeSrc":"6303:47:101","nodeType":"YulVariableDeclaration","src":"6303:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6335:9:101","nodeType":"YulIdentifier","src":"6335:9:101"},{"kind":"number","nativeSrc":"6346:2:101","nodeType":"YulLiteral","src":"6346:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6331:3:101","nodeType":"YulIdentifier","src":"6331:3:101"},"nativeSrc":"6331:18:101","nodeType":"YulFunctionCall","src":"6331:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"6318:12:101","nodeType":"YulIdentifier","src":"6318:12:101"},"nativeSrc":"6318:32:101","nodeType":"YulFunctionCall","src":"6318:32:101"},"variables":[{"name":"value_1","nativeSrc":"6307:7:101","nodeType":"YulTypedName","src":"6307:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"6383:7:101","nodeType":"YulIdentifier","src":"6383:7:101"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"6359:23:101","nodeType":"YulIdentifier","src":"6359:23:101"},"nativeSrc":"6359:32:101","nodeType":"YulFunctionCall","src":"6359:32:101"},"nativeSrc":"6359:32:101","nodeType":"YulExpressionStatement","src":"6359:32:101"},{"nativeSrc":"6400:17:101","nodeType":"YulAssignment","src":"6400:17:101","value":{"name":"value_1","nativeSrc":"6410:7:101","nodeType":"YulIdentifier","src":"6410:7:101"},"variableNames":[{"name":"value1","nativeSrc":"6400:6:101","nodeType":"YulIdentifier","src":"6400:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_bytes4","nativeSrc":"6037:386:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6081:9:101","nodeType":"YulTypedName","src":"6081:9:101","type":""},{"name":"dataEnd","nativeSrc":"6092:7:101","nodeType":"YulTypedName","src":"6092:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6104:6:101","nodeType":"YulTypedName","src":"6104:6:101","type":""},{"name":"value1","nativeSrc":"6112:6:101","nodeType":"YulTypedName","src":"6112:6:101","type":""}],"src":"6037:386:101"},{"body":{"nativeSrc":"6534:376:101","nodeType":"YulBlock","src":"6534:376:101","statements":[{"body":{"nativeSrc":"6580:16:101","nodeType":"YulBlock","src":"6580:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6589:1:101","nodeType":"YulLiteral","src":"6589:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6592:1:101","nodeType":"YulLiteral","src":"6592:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6582:6:101","nodeType":"YulIdentifier","src":"6582:6:101"},"nativeSrc":"6582:12:101","nodeType":"YulFunctionCall","src":"6582:12:101"},"nativeSrc":"6582:12:101","nodeType":"YulExpressionStatement","src":"6582:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6555:7:101","nodeType":"YulIdentifier","src":"6555:7:101"},{"name":"headStart","nativeSrc":"6564:9:101","nodeType":"YulIdentifier","src":"6564:9:101"}],"functionName":{"name":"sub","nativeSrc":"6551:3:101","nodeType":"YulIdentifier","src":"6551:3:101"},"nativeSrc":"6551:23:101","nodeType":"YulFunctionCall","src":"6551:23:101"},{"kind":"number","nativeSrc":"6576:2:101","nodeType":"YulLiteral","src":"6576:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6547:3:101","nodeType":"YulIdentifier","src":"6547:3:101"},"nativeSrc":"6547:32:101","nodeType":"YulFunctionCall","src":"6547:32:101"},"nativeSrc":"6544:52:101","nodeType":"YulIf","src":"6544:52:101"},{"nativeSrc":"6605:38:101","nodeType":"YulAssignment","src":"6605:38:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6633:9:101","nodeType":"YulIdentifier","src":"6633:9:101"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"6615:17:101","nodeType":"YulIdentifier","src":"6615:17:101"},"nativeSrc":"6615:28:101","nodeType":"YulFunctionCall","src":"6615:28:101"},"variableNames":[{"name":"value0","nativeSrc":"6605:6:101","nodeType":"YulIdentifier","src":"6605:6:101"}]},{"nativeSrc":"6652:46:101","nodeType":"YulVariableDeclaration","src":"6652:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6683:9:101","nodeType":"YulIdentifier","src":"6683:9:101"},{"kind":"number","nativeSrc":"6694:2:101","nodeType":"YulLiteral","src":"6694:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6679:3:101","nodeType":"YulIdentifier","src":"6679:3:101"},"nativeSrc":"6679:18:101","nodeType":"YulFunctionCall","src":"6679:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"6666:12:101","nodeType":"YulIdentifier","src":"6666:12:101"},"nativeSrc":"6666:32:101","nodeType":"YulFunctionCall","src":"6666:32:101"},"variables":[{"name":"offset","nativeSrc":"6656:6:101","nodeType":"YulTypedName","src":"6656:6:101","type":""}]},{"body":{"nativeSrc":"6741:16:101","nodeType":"YulBlock","src":"6741:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6750:1:101","nodeType":"YulLiteral","src":"6750:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6753:1:101","nodeType":"YulLiteral","src":"6753:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6743:6:101","nodeType":"YulIdentifier","src":"6743:6:101"},"nativeSrc":"6743:12:101","nodeType":"YulFunctionCall","src":"6743:12:101"},"nativeSrc":"6743:12:101","nodeType":"YulExpressionStatement","src":"6743:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"6713:6:101","nodeType":"YulIdentifier","src":"6713:6:101"},{"kind":"number","nativeSrc":"6721:18:101","nodeType":"YulLiteral","src":"6721:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6710:2:101","nodeType":"YulIdentifier","src":"6710:2:101"},"nativeSrc":"6710:30:101","nodeType":"YulFunctionCall","src":"6710:30:101"},"nativeSrc":"6707:50:101","nodeType":"YulIf","src":"6707:50:101"},{"nativeSrc":"6766:84:101","nodeType":"YulVariableDeclaration","src":"6766:84:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6822:9:101","nodeType":"YulIdentifier","src":"6822:9:101"},{"name":"offset","nativeSrc":"6833:6:101","nodeType":"YulIdentifier","src":"6833:6:101"}],"functionName":{"name":"add","nativeSrc":"6818:3:101","nodeType":"YulIdentifier","src":"6818:3:101"},"nativeSrc":"6818:22:101","nodeType":"YulFunctionCall","src":"6818:22:101"},{"name":"dataEnd","nativeSrc":"6842:7:101","nodeType":"YulIdentifier","src":"6842:7:101"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"6792:25:101","nodeType":"YulIdentifier","src":"6792:25:101"},"nativeSrc":"6792:58:101","nodeType":"YulFunctionCall","src":"6792:58:101"},"variables":[{"name":"value1_1","nativeSrc":"6770:8:101","nodeType":"YulTypedName","src":"6770:8:101","type":""},{"name":"value2_1","nativeSrc":"6780:8:101","nodeType":"YulTypedName","src":"6780:8:101","type":""}]},{"nativeSrc":"6859:18:101","nodeType":"YulAssignment","src":"6859:18:101","value":{"name":"value1_1","nativeSrc":"6869:8:101","nodeType":"YulIdentifier","src":"6869:8:101"},"variableNames":[{"name":"value1","nativeSrc":"6859:6:101","nodeType":"YulIdentifier","src":"6859:6:101"}]},{"nativeSrc":"6886:18:101","nodeType":"YulAssignment","src":"6886:18:101","value":{"name":"value2_1","nativeSrc":"6896:8:101","nodeType":"YulIdentifier","src":"6896:8:101"},"variableNames":[{"name":"value2","nativeSrc":"6886:6:101","nodeType":"YulIdentifier","src":"6886:6:101"}]}]},"name":"abi_decode_tuple_t_uint64t_string_calldata_ptr","nativeSrc":"6428:482:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6484:9:101","nodeType":"YulTypedName","src":"6484:9:101","type":""},{"name":"dataEnd","nativeSrc":"6495:7:101","nodeType":"YulTypedName","src":"6495:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6507:6:101","nodeType":"YulTypedName","src":"6507:6:101","type":""},{"name":"value1","nativeSrc":"6515:6:101","nodeType":"YulTypedName","src":"6515:6:101","type":""},{"name":"value2","nativeSrc":"6523:6:101","nodeType":"YulTypedName","src":"6523:6:101","type":""}],"src":"6428:482:101"},{"body":{"nativeSrc":"7010:92:101","nodeType":"YulBlock","src":"7010:92:101","statements":[{"nativeSrc":"7020:26:101","nodeType":"YulAssignment","src":"7020:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7032:9:101","nodeType":"YulIdentifier","src":"7032:9:101"},{"kind":"number","nativeSrc":"7043:2:101","nodeType":"YulLiteral","src":"7043:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7028:3:101","nodeType":"YulIdentifier","src":"7028:3:101"},"nativeSrc":"7028:18:101","nodeType":"YulFunctionCall","src":"7028:18:101"},"variableNames":[{"name":"tail","nativeSrc":"7020:4:101","nodeType":"YulIdentifier","src":"7020:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7062:9:101","nodeType":"YulIdentifier","src":"7062:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"7087:6:101","nodeType":"YulIdentifier","src":"7087:6:101"}],"functionName":{"name":"iszero","nativeSrc":"7080:6:101","nodeType":"YulIdentifier","src":"7080:6:101"},"nativeSrc":"7080:14:101","nodeType":"YulFunctionCall","src":"7080:14:101"}],"functionName":{"name":"iszero","nativeSrc":"7073:6:101","nodeType":"YulIdentifier","src":"7073:6:101"},"nativeSrc":"7073:22:101","nodeType":"YulFunctionCall","src":"7073:22:101"}],"functionName":{"name":"mstore","nativeSrc":"7055:6:101","nodeType":"YulIdentifier","src":"7055:6:101"},"nativeSrc":"7055:41:101","nodeType":"YulFunctionCall","src":"7055:41:101"},"nativeSrc":"7055:41:101","nodeType":"YulExpressionStatement","src":"7055:41:101"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"6915:187:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6979:9:101","nodeType":"YulTypedName","src":"6979:9:101","type":""},{"name":"value0","nativeSrc":"6990:6:101","nodeType":"YulTypedName","src":"6990:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7001:4:101","nodeType":"YulTypedName","src":"7001:4:101","type":""}],"src":"6915:187:101"},{"body":{"nativeSrc":"7192:171:101","nodeType":"YulBlock","src":"7192:171:101","statements":[{"body":{"nativeSrc":"7238:16:101","nodeType":"YulBlock","src":"7238:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7247:1:101","nodeType":"YulLiteral","src":"7247:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7250:1:101","nodeType":"YulLiteral","src":"7250:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7240:6:101","nodeType":"YulIdentifier","src":"7240:6:101"},"nativeSrc":"7240:12:101","nodeType":"YulFunctionCall","src":"7240:12:101"},"nativeSrc":"7240:12:101","nodeType":"YulExpressionStatement","src":"7240:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7213:7:101","nodeType":"YulIdentifier","src":"7213:7:101"},{"name":"headStart","nativeSrc":"7222:9:101","nodeType":"YulIdentifier","src":"7222:9:101"}],"functionName":{"name":"sub","nativeSrc":"7209:3:101","nodeType":"YulIdentifier","src":"7209:3:101"},"nativeSrc":"7209:23:101","nodeType":"YulFunctionCall","src":"7209:23:101"},{"kind":"number","nativeSrc":"7234:2:101","nodeType":"YulLiteral","src":"7234:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"7205:3:101","nodeType":"YulIdentifier","src":"7205:3:101"},"nativeSrc":"7205:32:101","nodeType":"YulFunctionCall","src":"7205:32:101"},"nativeSrc":"7202:52:101","nodeType":"YulIf","src":"7202:52:101"},{"nativeSrc":"7263:38:101","nodeType":"YulAssignment","src":"7263:38:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7291:9:101","nodeType":"YulIdentifier","src":"7291:9:101"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"7273:17:101","nodeType":"YulIdentifier","src":"7273:17:101"},"nativeSrc":"7273:28:101","nodeType":"YulFunctionCall","src":"7273:28:101"},"variableNames":[{"name":"value0","nativeSrc":"7263:6:101","nodeType":"YulIdentifier","src":"7263:6:101"}]},{"nativeSrc":"7310:47:101","nodeType":"YulAssignment","src":"7310:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7342:9:101","nodeType":"YulIdentifier","src":"7342:9:101"},{"kind":"number","nativeSrc":"7353:2:101","nodeType":"YulLiteral","src":"7353:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7338:3:101","nodeType":"YulIdentifier","src":"7338:3:101"},"nativeSrc":"7338:18:101","nodeType":"YulFunctionCall","src":"7338:18:101"}],"functionName":{"name":"abi_decode_uint32","nativeSrc":"7320:17:101","nodeType":"YulIdentifier","src":"7320:17:101"},"nativeSrc":"7320:37:101","nodeType":"YulFunctionCall","src":"7320:37:101"},"variableNames":[{"name":"value1","nativeSrc":"7310:6:101","nodeType":"YulIdentifier","src":"7310:6:101"}]}]},"name":"abi_decode_tuple_t_uint64t_uint32","nativeSrc":"7107:256:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7150:9:101","nodeType":"YulTypedName","src":"7150:9:101","type":""},{"name":"dataEnd","nativeSrc":"7161:7:101","nodeType":"YulTypedName","src":"7161:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7173:6:101","nodeType":"YulTypedName","src":"7173:6:101","type":""},{"name":"value1","nativeSrc":"7181:6:101","nodeType":"YulTypedName","src":"7181:6:101","type":""}],"src":"7107:256:101"},{"body":{"nativeSrc":"7491:562:101","nodeType":"YulBlock","src":"7491:562:101","statements":[{"body":{"nativeSrc":"7537:16:101","nodeType":"YulBlock","src":"7537:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7546:1:101","nodeType":"YulLiteral","src":"7546:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7549:1:101","nodeType":"YulLiteral","src":"7549:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7539:6:101","nodeType":"YulIdentifier","src":"7539:6:101"},"nativeSrc":"7539:12:101","nodeType":"YulFunctionCall","src":"7539:12:101"},"nativeSrc":"7539:12:101","nodeType":"YulExpressionStatement","src":"7539:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7512:7:101","nodeType":"YulIdentifier","src":"7512:7:101"},{"name":"headStart","nativeSrc":"7521:9:101","nodeType":"YulIdentifier","src":"7521:9:101"}],"functionName":{"name":"sub","nativeSrc":"7508:3:101","nodeType":"YulIdentifier","src":"7508:3:101"},"nativeSrc":"7508:23:101","nodeType":"YulFunctionCall","src":"7508:23:101"},{"kind":"number","nativeSrc":"7533:2:101","nodeType":"YulLiteral","src":"7533:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"7504:3:101","nodeType":"YulIdentifier","src":"7504:3:101"},"nativeSrc":"7504:32:101","nodeType":"YulFunctionCall","src":"7504:32:101"},"nativeSrc":"7501:52:101","nodeType":"YulIf","src":"7501:52:101"},{"nativeSrc":"7562:36:101","nodeType":"YulVariableDeclaration","src":"7562:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7588:9:101","nodeType":"YulIdentifier","src":"7588:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"7575:12:101","nodeType":"YulIdentifier","src":"7575:12:101"},"nativeSrc":"7575:23:101","nodeType":"YulFunctionCall","src":"7575:23:101"},"variables":[{"name":"value","nativeSrc":"7566:5:101","nodeType":"YulTypedName","src":"7566:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7632:5:101","nodeType":"YulIdentifier","src":"7632:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"7607:24:101","nodeType":"YulIdentifier","src":"7607:24:101"},"nativeSrc":"7607:31:101","nodeType":"YulFunctionCall","src":"7607:31:101"},"nativeSrc":"7607:31:101","nodeType":"YulExpressionStatement","src":"7607:31:101"},{"nativeSrc":"7647:15:101","nodeType":"YulAssignment","src":"7647:15:101","value":{"name":"value","nativeSrc":"7657:5:101","nodeType":"YulIdentifier","src":"7657:5:101"},"variableNames":[{"name":"value0","nativeSrc":"7647:6:101","nodeType":"YulIdentifier","src":"7647:6:101"}]},{"nativeSrc":"7671:47:101","nodeType":"YulVariableDeclaration","src":"7671:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7703:9:101","nodeType":"YulIdentifier","src":"7703:9:101"},{"kind":"number","nativeSrc":"7714:2:101","nodeType":"YulLiteral","src":"7714:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7699:3:101","nodeType":"YulIdentifier","src":"7699:3:101"},"nativeSrc":"7699:18:101","nodeType":"YulFunctionCall","src":"7699:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"7686:12:101","nodeType":"YulIdentifier","src":"7686:12:101"},"nativeSrc":"7686:32:101","nodeType":"YulFunctionCall","src":"7686:32:101"},"variables":[{"name":"value_1","nativeSrc":"7675:7:101","nodeType":"YulTypedName","src":"7675:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"7752:7:101","nodeType":"YulIdentifier","src":"7752:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"7727:24:101","nodeType":"YulIdentifier","src":"7727:24:101"},"nativeSrc":"7727:33:101","nodeType":"YulFunctionCall","src":"7727:33:101"},"nativeSrc":"7727:33:101","nodeType":"YulExpressionStatement","src":"7727:33:101"},{"nativeSrc":"7769:17:101","nodeType":"YulAssignment","src":"7769:17:101","value":{"name":"value_1","nativeSrc":"7779:7:101","nodeType":"YulIdentifier","src":"7779:7:101"},"variableNames":[{"name":"value1","nativeSrc":"7769:6:101","nodeType":"YulIdentifier","src":"7769:6:101"}]},{"nativeSrc":"7795:46:101","nodeType":"YulVariableDeclaration","src":"7795:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7826:9:101","nodeType":"YulIdentifier","src":"7826:9:101"},{"kind":"number","nativeSrc":"7837:2:101","nodeType":"YulLiteral","src":"7837:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7822:3:101","nodeType":"YulIdentifier","src":"7822:3:101"},"nativeSrc":"7822:18:101","nodeType":"YulFunctionCall","src":"7822:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"7809:12:101","nodeType":"YulIdentifier","src":"7809:12:101"},"nativeSrc":"7809:32:101","nodeType":"YulFunctionCall","src":"7809:32:101"},"variables":[{"name":"offset","nativeSrc":"7799:6:101","nodeType":"YulTypedName","src":"7799:6:101","type":""}]},{"body":{"nativeSrc":"7884:16:101","nodeType":"YulBlock","src":"7884:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7893:1:101","nodeType":"YulLiteral","src":"7893:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7896:1:101","nodeType":"YulLiteral","src":"7896:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7886:6:101","nodeType":"YulIdentifier","src":"7886:6:101"},"nativeSrc":"7886:12:101","nodeType":"YulFunctionCall","src":"7886:12:101"},"nativeSrc":"7886:12:101","nodeType":"YulExpressionStatement","src":"7886:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"7856:6:101","nodeType":"YulIdentifier","src":"7856:6:101"},{"kind":"number","nativeSrc":"7864:18:101","nodeType":"YulLiteral","src":"7864:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7853:2:101","nodeType":"YulIdentifier","src":"7853:2:101"},"nativeSrc":"7853:30:101","nodeType":"YulFunctionCall","src":"7853:30:101"},"nativeSrc":"7850:50:101","nodeType":"YulIf","src":"7850:50:101"},{"nativeSrc":"7909:84:101","nodeType":"YulVariableDeclaration","src":"7909:84:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7965:9:101","nodeType":"YulIdentifier","src":"7965:9:101"},{"name":"offset","nativeSrc":"7976:6:101","nodeType":"YulIdentifier","src":"7976:6:101"}],"functionName":{"name":"add","nativeSrc":"7961:3:101","nodeType":"YulIdentifier","src":"7961:3:101"},"nativeSrc":"7961:22:101","nodeType":"YulFunctionCall","src":"7961:22:101"},{"name":"dataEnd","nativeSrc":"7985:7:101","nodeType":"YulIdentifier","src":"7985:7:101"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"7935:25:101","nodeType":"YulIdentifier","src":"7935:25:101"},"nativeSrc":"7935:58:101","nodeType":"YulFunctionCall","src":"7935:58:101"},"variables":[{"name":"value2_1","nativeSrc":"7913:8:101","nodeType":"YulTypedName","src":"7913:8:101","type":""},{"name":"value3_1","nativeSrc":"7923:8:101","nodeType":"YulTypedName","src":"7923:8:101","type":""}]},{"nativeSrc":"8002:18:101","nodeType":"YulAssignment","src":"8002:18:101","value":{"name":"value2_1","nativeSrc":"8012:8:101","nodeType":"YulIdentifier","src":"8012:8:101"},"variableNames":[{"name":"value2","nativeSrc":"8002:6:101","nodeType":"YulIdentifier","src":"8002:6:101"}]},{"nativeSrc":"8029:18:101","nodeType":"YulAssignment","src":"8029:18:101","value":{"name":"value3_1","nativeSrc":"8039:8:101","nodeType":"YulIdentifier","src":"8039:8:101"},"variableNames":[{"name":"value3","nativeSrc":"8029:6:101","nodeType":"YulIdentifier","src":"8029:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_bytes_calldata_ptr","nativeSrc":"7368:685:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7433:9:101","nodeType":"YulTypedName","src":"7433:9:101","type":""},{"name":"dataEnd","nativeSrc":"7444:7:101","nodeType":"YulTypedName","src":"7444:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7456:6:101","nodeType":"YulTypedName","src":"7456:6:101","type":""},{"name":"value1","nativeSrc":"7464:6:101","nodeType":"YulTypedName","src":"7464:6:101","type":""},{"name":"value2","nativeSrc":"7472:6:101","nodeType":"YulTypedName","src":"7472:6:101","type":""},{"name":"value3","nativeSrc":"7480:6:101","nodeType":"YulTypedName","src":"7480:6:101","type":""}],"src":"7368:685:101"},{"body":{"nativeSrc":"8159:76:101","nodeType":"YulBlock","src":"8159:76:101","statements":[{"nativeSrc":"8169:26:101","nodeType":"YulAssignment","src":"8169:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8181:9:101","nodeType":"YulIdentifier","src":"8181:9:101"},{"kind":"number","nativeSrc":"8192:2:101","nodeType":"YulLiteral","src":"8192:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8177:3:101","nodeType":"YulIdentifier","src":"8177:3:101"},"nativeSrc":"8177:18:101","nodeType":"YulFunctionCall","src":"8177:18:101"},"variableNames":[{"name":"tail","nativeSrc":"8169:4:101","nodeType":"YulIdentifier","src":"8169:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8211:9:101","nodeType":"YulIdentifier","src":"8211:9:101"},{"name":"value0","nativeSrc":"8222:6:101","nodeType":"YulIdentifier","src":"8222:6:101"}],"functionName":{"name":"mstore","nativeSrc":"8204:6:101","nodeType":"YulIdentifier","src":"8204:6:101"},"nativeSrc":"8204:25:101","nodeType":"YulFunctionCall","src":"8204:25:101"},"nativeSrc":"8204:25:101","nodeType":"YulExpressionStatement","src":"8204:25:101"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"8058:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8128:9:101","nodeType":"YulTypedName","src":"8128:9:101","type":""},{"name":"value0","nativeSrc":"8139:6:101","nodeType":"YulTypedName","src":"8139:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8150:4:101","nodeType":"YulTypedName","src":"8150:4:101","type":""}],"src":"8058:177:101"},{"body":{"nativeSrc":"8356:331:101","nodeType":"YulBlock","src":"8356:331:101","statements":[{"body":{"nativeSrc":"8402:16:101","nodeType":"YulBlock","src":"8402:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8411:1:101","nodeType":"YulLiteral","src":"8411:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8414:1:101","nodeType":"YulLiteral","src":"8414:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8404:6:101","nodeType":"YulIdentifier","src":"8404:6:101"},"nativeSrc":"8404:12:101","nodeType":"YulFunctionCall","src":"8404:12:101"},"nativeSrc":"8404:12:101","nodeType":"YulExpressionStatement","src":"8404:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8377:7:101","nodeType":"YulIdentifier","src":"8377:7:101"},{"name":"headStart","nativeSrc":"8386:9:101","nodeType":"YulIdentifier","src":"8386:9:101"}],"functionName":{"name":"sub","nativeSrc":"8373:3:101","nodeType":"YulIdentifier","src":"8373:3:101"},"nativeSrc":"8373:23:101","nodeType":"YulFunctionCall","src":"8373:23:101"},{"kind":"number","nativeSrc":"8398:2:101","nodeType":"YulLiteral","src":"8398:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"8369:3:101","nodeType":"YulIdentifier","src":"8369:3:101"},"nativeSrc":"8369:32:101","nodeType":"YulFunctionCall","src":"8369:32:101"},"nativeSrc":"8366:52:101","nodeType":"YulIf","src":"8366:52:101"},{"nativeSrc":"8427:37:101","nodeType":"YulVariableDeclaration","src":"8427:37:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8454:9:101","nodeType":"YulIdentifier","src":"8454:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"8441:12:101","nodeType":"YulIdentifier","src":"8441:12:101"},"nativeSrc":"8441:23:101","nodeType":"YulFunctionCall","src":"8441:23:101"},"variables":[{"name":"offset","nativeSrc":"8431:6:101","nodeType":"YulTypedName","src":"8431:6:101","type":""}]},{"body":{"nativeSrc":"8507:16:101","nodeType":"YulBlock","src":"8507:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8516:1:101","nodeType":"YulLiteral","src":"8516:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8519:1:101","nodeType":"YulLiteral","src":"8519:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8509:6:101","nodeType":"YulIdentifier","src":"8509:6:101"},"nativeSrc":"8509:12:101","nodeType":"YulFunctionCall","src":"8509:12:101"},"nativeSrc":"8509:12:101","nodeType":"YulExpressionStatement","src":"8509:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"8479:6:101","nodeType":"YulIdentifier","src":"8479:6:101"},{"kind":"number","nativeSrc":"8487:18:101","nodeType":"YulLiteral","src":"8487:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8476:2:101","nodeType":"YulIdentifier","src":"8476:2:101"},"nativeSrc":"8476:30:101","nodeType":"YulFunctionCall","src":"8476:30:101"},"nativeSrc":"8473:50:101","nodeType":"YulIf","src":"8473:50:101"},{"nativeSrc":"8532:95:101","nodeType":"YulVariableDeclaration","src":"8532:95:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8599:9:101","nodeType":"YulIdentifier","src":"8599:9:101"},{"name":"offset","nativeSrc":"8610:6:101","nodeType":"YulIdentifier","src":"8610:6:101"}],"functionName":{"name":"add","nativeSrc":"8595:3:101","nodeType":"YulIdentifier","src":"8595:3:101"},"nativeSrc":"8595:22:101","nodeType":"YulFunctionCall","src":"8595:22:101"},{"name":"dataEnd","nativeSrc":"8619:7:101","nodeType":"YulIdentifier","src":"8619:7:101"}],"functionName":{"name":"abi_decode_array_bytes4_dyn_calldata","nativeSrc":"8558:36:101","nodeType":"YulIdentifier","src":"8558:36:101"},"nativeSrc":"8558:69:101","nodeType":"YulFunctionCall","src":"8558:69:101"},"variables":[{"name":"value0_1","nativeSrc":"8536:8:101","nodeType":"YulTypedName","src":"8536:8:101","type":""},{"name":"value1_1","nativeSrc":"8546:8:101","nodeType":"YulTypedName","src":"8546:8:101","type":""}]},{"nativeSrc":"8636:18:101","nodeType":"YulAssignment","src":"8636:18:101","value":{"name":"value0_1","nativeSrc":"8646:8:101","nodeType":"YulIdentifier","src":"8646:8:101"},"variableNames":[{"name":"value0","nativeSrc":"8636:6:101","nodeType":"YulIdentifier","src":"8636:6:101"}]},{"nativeSrc":"8663:18:101","nodeType":"YulAssignment","src":"8663:18:101","value":{"name":"value1_1","nativeSrc":"8673:8:101","nodeType":"YulIdentifier","src":"8673:8:101"},"variableNames":[{"name":"value1","nativeSrc":"8663:6:101","nodeType":"YulIdentifier","src":"8663:6:101"}]}]},"name":"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","nativeSrc":"8240:447:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8314:9:101","nodeType":"YulTypedName","src":"8314:9:101","type":""},{"name":"dataEnd","nativeSrc":"8325:7:101","nodeType":"YulTypedName","src":"8325:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8337:6:101","nodeType":"YulTypedName","src":"8337:6:101","type":""},{"name":"value1","nativeSrc":"8345:6:101","nodeType":"YulTypedName","src":"8345:6:101","type":""}],"src":"8240:447:101"},{"body":{"nativeSrc":"8861:847:101","nodeType":"YulBlock","src":"8861:847:101","statements":[{"nativeSrc":"8871:32:101","nodeType":"YulVariableDeclaration","src":"8871:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8889:9:101","nodeType":"YulIdentifier","src":"8889:9:101"},{"kind":"number","nativeSrc":"8900:2:101","nodeType":"YulLiteral","src":"8900:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8885:3:101","nodeType":"YulIdentifier","src":"8885:3:101"},"nativeSrc":"8885:18:101","nodeType":"YulFunctionCall","src":"8885:18:101"},"variables":[{"name":"tail_1","nativeSrc":"8875:6:101","nodeType":"YulTypedName","src":"8875:6:101","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8919:9:101","nodeType":"YulIdentifier","src":"8919:9:101"},{"kind":"number","nativeSrc":"8930:2:101","nodeType":"YulLiteral","src":"8930:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"8912:6:101","nodeType":"YulIdentifier","src":"8912:6:101"},"nativeSrc":"8912:21:101","nodeType":"YulFunctionCall","src":"8912:21:101"},"nativeSrc":"8912:21:101","nodeType":"YulExpressionStatement","src":"8912:21:101"},{"nativeSrc":"8942:17:101","nodeType":"YulVariableDeclaration","src":"8942:17:101","value":{"name":"tail_1","nativeSrc":"8953:6:101","nodeType":"YulIdentifier","src":"8953:6:101"},"variables":[{"name":"pos","nativeSrc":"8946:3:101","nodeType":"YulTypedName","src":"8946:3:101","type":""}]},{"nativeSrc":"8968:27:101","nodeType":"YulVariableDeclaration","src":"8968:27:101","value":{"arguments":[{"name":"value0","nativeSrc":"8988:6:101","nodeType":"YulIdentifier","src":"8988:6:101"}],"functionName":{"name":"mload","nativeSrc":"8982:5:101","nodeType":"YulIdentifier","src":"8982:5:101"},"nativeSrc":"8982:13:101","nodeType":"YulFunctionCall","src":"8982:13:101"},"variables":[{"name":"length","nativeSrc":"8972:6:101","nodeType":"YulTypedName","src":"8972:6:101","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"9011:6:101","nodeType":"YulIdentifier","src":"9011:6:101"},{"name":"length","nativeSrc":"9019:6:101","nodeType":"YulIdentifier","src":"9019:6:101"}],"functionName":{"name":"mstore","nativeSrc":"9004:6:101","nodeType":"YulIdentifier","src":"9004:6:101"},"nativeSrc":"9004:22:101","nodeType":"YulFunctionCall","src":"9004:22:101"},"nativeSrc":"9004:22:101","nodeType":"YulExpressionStatement","src":"9004:22:101"},{"nativeSrc":"9035:25:101","nodeType":"YulAssignment","src":"9035:25:101","value":{"arguments":[{"name":"headStart","nativeSrc":"9046:9:101","nodeType":"YulIdentifier","src":"9046:9:101"},{"kind":"number","nativeSrc":"9057:2:101","nodeType":"YulLiteral","src":"9057:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9042:3:101","nodeType":"YulIdentifier","src":"9042:3:101"},"nativeSrc":"9042:18:101","nodeType":"YulFunctionCall","src":"9042:18:101"},"variableNames":[{"name":"pos","nativeSrc":"9035:3:101","nodeType":"YulIdentifier","src":"9035:3:101"}]},{"nativeSrc":"9069:53:101","nodeType":"YulVariableDeclaration","src":"9069:53:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9091:9:101","nodeType":"YulIdentifier","src":"9091:9:101"},{"arguments":[{"kind":"number","nativeSrc":"9106:1:101","nodeType":"YulLiteral","src":"9106:1:101","type":"","value":"5"},{"name":"length","nativeSrc":"9109:6:101","nodeType":"YulIdentifier","src":"9109:6:101"}],"functionName":{"name":"shl","nativeSrc":"9102:3:101","nodeType":"YulIdentifier","src":"9102:3:101"},"nativeSrc":"9102:14:101","nodeType":"YulFunctionCall","src":"9102:14:101"}],"functionName":{"name":"add","nativeSrc":"9087:3:101","nodeType":"YulIdentifier","src":"9087:3:101"},"nativeSrc":"9087:30:101","nodeType":"YulFunctionCall","src":"9087:30:101"},{"kind":"number","nativeSrc":"9119:2:101","nodeType":"YulLiteral","src":"9119:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9083:3:101","nodeType":"YulIdentifier","src":"9083:3:101"},"nativeSrc":"9083:39:101","nodeType":"YulFunctionCall","src":"9083:39:101"},"variables":[{"name":"tail_2","nativeSrc":"9073:6:101","nodeType":"YulTypedName","src":"9073:6:101","type":""}]},{"nativeSrc":"9131:29:101","nodeType":"YulVariableDeclaration","src":"9131:29:101","value":{"arguments":[{"name":"value0","nativeSrc":"9149:6:101","nodeType":"YulIdentifier","src":"9149:6:101"},{"kind":"number","nativeSrc":"9157:2:101","nodeType":"YulLiteral","src":"9157:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9145:3:101","nodeType":"YulIdentifier","src":"9145:3:101"},"nativeSrc":"9145:15:101","nodeType":"YulFunctionCall","src":"9145:15:101"},"variables":[{"name":"srcPtr","nativeSrc":"9135:6:101","nodeType":"YulTypedName","src":"9135:6:101","type":""}]},{"nativeSrc":"9169:10:101","nodeType":"YulVariableDeclaration","src":"9169:10:101","value":{"kind":"number","nativeSrc":"9178:1:101","nodeType":"YulLiteral","src":"9178:1:101","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"9173:1:101","nodeType":"YulTypedName","src":"9173:1:101","type":""}]},{"body":{"nativeSrc":"9237:442:101","nodeType":"YulBlock","src":"9237:442:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"9258:3:101","nodeType":"YulIdentifier","src":"9258:3:101"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"9271:6:101","nodeType":"YulIdentifier","src":"9271:6:101"},{"name":"headStart","nativeSrc":"9279:9:101","nodeType":"YulIdentifier","src":"9279:9:101"}],"functionName":{"name":"sub","nativeSrc":"9267:3:101","nodeType":"YulIdentifier","src":"9267:3:101"},"nativeSrc":"9267:22:101","nodeType":"YulFunctionCall","src":"9267:22:101"},{"arguments":[{"kind":"number","nativeSrc":"9295:2:101","nodeType":"YulLiteral","src":"9295:2:101","type":"","value":"63"}],"functionName":{"name":"not","nativeSrc":"9291:3:101","nodeType":"YulIdentifier","src":"9291:3:101"},"nativeSrc":"9291:7:101","nodeType":"YulFunctionCall","src":"9291:7:101"}],"functionName":{"name":"add","nativeSrc":"9263:3:101","nodeType":"YulIdentifier","src":"9263:3:101"},"nativeSrc":"9263:36:101","nodeType":"YulFunctionCall","src":"9263:36:101"}],"functionName":{"name":"mstore","nativeSrc":"9251:6:101","nodeType":"YulIdentifier","src":"9251:6:101"},"nativeSrc":"9251:49:101","nodeType":"YulFunctionCall","src":"9251:49:101"},"nativeSrc":"9251:49:101","nodeType":"YulExpressionStatement","src":"9251:49:101"},{"nativeSrc":"9313:23:101","nodeType":"YulVariableDeclaration","src":"9313:23:101","value":{"arguments":[{"name":"srcPtr","nativeSrc":"9329:6:101","nodeType":"YulIdentifier","src":"9329:6:101"}],"functionName":{"name":"mload","nativeSrc":"9323:5:101","nodeType":"YulIdentifier","src":"9323:5:101"},"nativeSrc":"9323:13:101","nodeType":"YulFunctionCall","src":"9323:13:101"},"variables":[{"name":"_1","nativeSrc":"9317:2:101","nodeType":"YulTypedName","src":"9317:2:101","type":""}]},{"nativeSrc":"9349:25:101","nodeType":"YulVariableDeclaration","src":"9349:25:101","value":{"arguments":[{"name":"_1","nativeSrc":"9371:2:101","nodeType":"YulIdentifier","src":"9371:2:101"}],"functionName":{"name":"mload","nativeSrc":"9365:5:101","nodeType":"YulIdentifier","src":"9365:5:101"},"nativeSrc":"9365:9:101","nodeType":"YulFunctionCall","src":"9365:9:101"},"variables":[{"name":"length_1","nativeSrc":"9353:8:101","nodeType":"YulTypedName","src":"9353:8:101","type":""}]},{"expression":{"arguments":[{"name":"tail_2","nativeSrc":"9394:6:101","nodeType":"YulIdentifier","src":"9394:6:101"},{"name":"length_1","nativeSrc":"9402:8:101","nodeType":"YulIdentifier","src":"9402:8:101"}],"functionName":{"name":"mstore","nativeSrc":"9387:6:101","nodeType":"YulIdentifier","src":"9387:6:101"},"nativeSrc":"9387:24:101","nodeType":"YulFunctionCall","src":"9387:24:101"},"nativeSrc":"9387:24:101","nodeType":"YulExpressionStatement","src":"9387:24:101"},{"expression":{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"9434:6:101","nodeType":"YulIdentifier","src":"9434:6:101"},{"kind":"number","nativeSrc":"9442:2:101","nodeType":"YulLiteral","src":"9442:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9430:3:101","nodeType":"YulIdentifier","src":"9430:3:101"},"nativeSrc":"9430:15:101","nodeType":"YulFunctionCall","src":"9430:15:101"},{"arguments":[{"name":"_1","nativeSrc":"9451:2:101","nodeType":"YulIdentifier","src":"9451:2:101"},{"kind":"number","nativeSrc":"9455:2:101","nodeType":"YulLiteral","src":"9455:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9447:3:101","nodeType":"YulIdentifier","src":"9447:3:101"},"nativeSrc":"9447:11:101","nodeType":"YulFunctionCall","src":"9447:11:101"},{"name":"length_1","nativeSrc":"9460:8:101","nodeType":"YulIdentifier","src":"9460:8:101"}],"functionName":{"name":"mcopy","nativeSrc":"9424:5:101","nodeType":"YulIdentifier","src":"9424:5:101"},"nativeSrc":"9424:45:101","nodeType":"YulFunctionCall","src":"9424:45:101"},"nativeSrc":"9424:45:101","nodeType":"YulExpressionStatement","src":"9424:45:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"9497:6:101","nodeType":"YulIdentifier","src":"9497:6:101"},{"name":"length_1","nativeSrc":"9505:8:101","nodeType":"YulIdentifier","src":"9505:8:101"}],"functionName":{"name":"add","nativeSrc":"9493:3:101","nodeType":"YulIdentifier","src":"9493:3:101"},"nativeSrc":"9493:21:101","nodeType":"YulFunctionCall","src":"9493:21:101"},{"kind":"number","nativeSrc":"9516:2:101","nodeType":"YulLiteral","src":"9516:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9489:3:101","nodeType":"YulIdentifier","src":"9489:3:101"},"nativeSrc":"9489:30:101","nodeType":"YulFunctionCall","src":"9489:30:101"},{"kind":"number","nativeSrc":"9521:1:101","nodeType":"YulLiteral","src":"9521:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"9482:6:101","nodeType":"YulIdentifier","src":"9482:6:101"},"nativeSrc":"9482:41:101","nodeType":"YulFunctionCall","src":"9482:41:101"},"nativeSrc":"9482:41:101","nodeType":"YulExpressionStatement","src":"9482:41:101"},{"nativeSrc":"9536:63:101","nodeType":"YulAssignment","src":"9536:63:101","value":{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"9554:6:101","nodeType":"YulIdentifier","src":"9554:6:101"},{"arguments":[{"arguments":[{"name":"length_1","nativeSrc":"9570:8:101","nodeType":"YulIdentifier","src":"9570:8:101"},{"kind":"number","nativeSrc":"9580:2:101","nodeType":"YulLiteral","src":"9580:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"9566:3:101","nodeType":"YulIdentifier","src":"9566:3:101"},"nativeSrc":"9566:17:101","nodeType":"YulFunctionCall","src":"9566:17:101"},{"arguments":[{"kind":"number","nativeSrc":"9589:2:101","nodeType":"YulLiteral","src":"9589:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"9585:3:101","nodeType":"YulIdentifier","src":"9585:3:101"},"nativeSrc":"9585:7:101","nodeType":"YulFunctionCall","src":"9585:7:101"}],"functionName":{"name":"and","nativeSrc":"9562:3:101","nodeType":"YulIdentifier","src":"9562:3:101"},"nativeSrc":"9562:31:101","nodeType":"YulFunctionCall","src":"9562:31:101"}],"functionName":{"name":"add","nativeSrc":"9550:3:101","nodeType":"YulIdentifier","src":"9550:3:101"},"nativeSrc":"9550:44:101","nodeType":"YulFunctionCall","src":"9550:44:101"},{"kind":"number","nativeSrc":"9596:2:101","nodeType":"YulLiteral","src":"9596:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9546:3:101","nodeType":"YulIdentifier","src":"9546:3:101"},"nativeSrc":"9546:53:101","nodeType":"YulFunctionCall","src":"9546:53:101"},"variableNames":[{"name":"tail_2","nativeSrc":"9536:6:101","nodeType":"YulIdentifier","src":"9536:6:101"}]},{"nativeSrc":"9612:25:101","nodeType":"YulAssignment","src":"9612:25:101","value":{"arguments":[{"name":"srcPtr","nativeSrc":"9626:6:101","nodeType":"YulIdentifier","src":"9626:6:101"},{"kind":"number","nativeSrc":"9634:2:101","nodeType":"YulLiteral","src":"9634:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9622:3:101","nodeType":"YulIdentifier","src":"9622:3:101"},"nativeSrc":"9622:15:101","nodeType":"YulFunctionCall","src":"9622:15:101"},"variableNames":[{"name":"srcPtr","nativeSrc":"9612:6:101","nodeType":"YulIdentifier","src":"9612:6:101"}]},{"nativeSrc":"9650:19:101","nodeType":"YulAssignment","src":"9650:19:101","value":{"arguments":[{"name":"pos","nativeSrc":"9661:3:101","nodeType":"YulIdentifier","src":"9661:3:101"},{"kind":"number","nativeSrc":"9666:2:101","nodeType":"YulLiteral","src":"9666:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9657:3:101","nodeType":"YulIdentifier","src":"9657:3:101"},"nativeSrc":"9657:12:101","nodeType":"YulFunctionCall","src":"9657:12:101"},"variableNames":[{"name":"pos","nativeSrc":"9650:3:101","nodeType":"YulIdentifier","src":"9650:3:101"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"9199:1:101","nodeType":"YulIdentifier","src":"9199:1:101"},{"name":"length","nativeSrc":"9202:6:101","nodeType":"YulIdentifier","src":"9202:6:101"}],"functionName":{"name":"lt","nativeSrc":"9196:2:101","nodeType":"YulIdentifier","src":"9196:2:101"},"nativeSrc":"9196:13:101","nodeType":"YulFunctionCall","src":"9196:13:101"},"nativeSrc":"9188:491:101","nodeType":"YulForLoop","post":{"nativeSrc":"9210:18:101","nodeType":"YulBlock","src":"9210:18:101","statements":[{"nativeSrc":"9212:14:101","nodeType":"YulAssignment","src":"9212:14:101","value":{"arguments":[{"name":"i","nativeSrc":"9221:1:101","nodeType":"YulIdentifier","src":"9221:1:101"},{"kind":"number","nativeSrc":"9224:1:101","nodeType":"YulLiteral","src":"9224:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"9217:3:101","nodeType":"YulIdentifier","src":"9217:3:101"},"nativeSrc":"9217:9:101","nodeType":"YulFunctionCall","src":"9217:9:101"},"variableNames":[{"name":"i","nativeSrc":"9212:1:101","nodeType":"YulIdentifier","src":"9212:1:101"}]}]},"pre":{"nativeSrc":"9192:3:101","nodeType":"YulBlock","src":"9192:3:101","statements":[]},"src":"9188:491:101"},{"nativeSrc":"9688:14:101","nodeType":"YulAssignment","src":"9688:14:101","value":{"name":"tail_2","nativeSrc":"9696:6:101","nodeType":"YulIdentifier","src":"9696:6:101"},"variableNames":[{"name":"tail","nativeSrc":"9688:4:101","nodeType":"YulIdentifier","src":"9688:4:101"}]}]},"name":"abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"8692:1016:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8830:9:101","nodeType":"YulTypedName","src":"8830:9:101","type":""},{"name":"value0","nativeSrc":"8841:6:101","nodeType":"YulTypedName","src":"8841:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8852:4:101","nodeType":"YulTypedName","src":"8852:4:101","type":""}],"src":"8692:1016:101"},{"body":{"nativeSrc":"9816:424:101","nodeType":"YulBlock","src":"9816:424:101","statements":[{"body":{"nativeSrc":"9862:16:101","nodeType":"YulBlock","src":"9862:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9871:1:101","nodeType":"YulLiteral","src":"9871:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9874:1:101","nodeType":"YulLiteral","src":"9874:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9864:6:101","nodeType":"YulIdentifier","src":"9864:6:101"},"nativeSrc":"9864:12:101","nodeType":"YulFunctionCall","src":"9864:12:101"},"nativeSrc":"9864:12:101","nodeType":"YulExpressionStatement","src":"9864:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9837:7:101","nodeType":"YulIdentifier","src":"9837:7:101"},{"name":"headStart","nativeSrc":"9846:9:101","nodeType":"YulIdentifier","src":"9846:9:101"}],"functionName":{"name":"sub","nativeSrc":"9833:3:101","nodeType":"YulIdentifier","src":"9833:3:101"},"nativeSrc":"9833:23:101","nodeType":"YulFunctionCall","src":"9833:23:101"},{"kind":"number","nativeSrc":"9858:2:101","nodeType":"YulLiteral","src":"9858:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"9829:3:101","nodeType":"YulIdentifier","src":"9829:3:101"},"nativeSrc":"9829:32:101","nodeType":"YulFunctionCall","src":"9829:32:101"},"nativeSrc":"9826:52:101","nodeType":"YulIf","src":"9826:52:101"},{"nativeSrc":"9887:36:101","nodeType":"YulVariableDeclaration","src":"9887:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"9913:9:101","nodeType":"YulIdentifier","src":"9913:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"9900:12:101","nodeType":"YulIdentifier","src":"9900:12:101"},"nativeSrc":"9900:23:101","nodeType":"YulFunctionCall","src":"9900:23:101"},"variables":[{"name":"value","nativeSrc":"9891:5:101","nodeType":"YulTypedName","src":"9891:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"9957:5:101","nodeType":"YulIdentifier","src":"9957:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"9932:24:101","nodeType":"YulIdentifier","src":"9932:24:101"},"nativeSrc":"9932:31:101","nodeType":"YulFunctionCall","src":"9932:31:101"},"nativeSrc":"9932:31:101","nodeType":"YulExpressionStatement","src":"9932:31:101"},{"nativeSrc":"9972:15:101","nodeType":"YulAssignment","src":"9972:15:101","value":{"name":"value","nativeSrc":"9982:5:101","nodeType":"YulIdentifier","src":"9982:5:101"},"variableNames":[{"name":"value0","nativeSrc":"9972:6:101","nodeType":"YulIdentifier","src":"9972:6:101"}]},{"nativeSrc":"9996:47:101","nodeType":"YulVariableDeclaration","src":"9996:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10028:9:101","nodeType":"YulIdentifier","src":"10028:9:101"},{"kind":"number","nativeSrc":"10039:2:101","nodeType":"YulLiteral","src":"10039:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10024:3:101","nodeType":"YulIdentifier","src":"10024:3:101"},"nativeSrc":"10024:18:101","nodeType":"YulFunctionCall","src":"10024:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"10011:12:101","nodeType":"YulIdentifier","src":"10011:12:101"},"nativeSrc":"10011:32:101","nodeType":"YulFunctionCall","src":"10011:32:101"},"variables":[{"name":"value_1","nativeSrc":"10000:7:101","nodeType":"YulTypedName","src":"10000:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"10077:7:101","nodeType":"YulIdentifier","src":"10077:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10052:24:101","nodeType":"YulIdentifier","src":"10052:24:101"},"nativeSrc":"10052:33:101","nodeType":"YulFunctionCall","src":"10052:33:101"},"nativeSrc":"10052:33:101","nodeType":"YulExpressionStatement","src":"10052:33:101"},{"nativeSrc":"10094:17:101","nodeType":"YulAssignment","src":"10094:17:101","value":{"name":"value_1","nativeSrc":"10104:7:101","nodeType":"YulIdentifier","src":"10104:7:101"},"variableNames":[{"name":"value1","nativeSrc":"10094:6:101","nodeType":"YulIdentifier","src":"10094:6:101"}]},{"nativeSrc":"10120:47:101","nodeType":"YulVariableDeclaration","src":"10120:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10152:9:101","nodeType":"YulIdentifier","src":"10152:9:101"},{"kind":"number","nativeSrc":"10163:2:101","nodeType":"YulLiteral","src":"10163:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10148:3:101","nodeType":"YulIdentifier","src":"10148:3:101"},"nativeSrc":"10148:18:101","nodeType":"YulFunctionCall","src":"10148:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"10135:12:101","nodeType":"YulIdentifier","src":"10135:12:101"},"nativeSrc":"10135:32:101","nodeType":"YulFunctionCall","src":"10135:32:101"},"variables":[{"name":"value_2","nativeSrc":"10124:7:101","nodeType":"YulTypedName","src":"10124:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"10200:7:101","nodeType":"YulIdentifier","src":"10200:7:101"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"10176:23:101","nodeType":"YulIdentifier","src":"10176:23:101"},"nativeSrc":"10176:32:101","nodeType":"YulFunctionCall","src":"10176:32:101"},"nativeSrc":"10176:32:101","nodeType":"YulExpressionStatement","src":"10176:32:101"},{"nativeSrc":"10217:17:101","nodeType":"YulAssignment","src":"10217:17:101","value":{"name":"value_2","nativeSrc":"10227:7:101","nodeType":"YulIdentifier","src":"10227:7:101"},"variableNames":[{"name":"value2","nativeSrc":"10217:6:101","nodeType":"YulIdentifier","src":"10217:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_bytes4","nativeSrc":"9713:527:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9766:9:101","nodeType":"YulTypedName","src":"9766:9:101","type":""},{"name":"dataEnd","nativeSrc":"9777:7:101","nodeType":"YulTypedName","src":"9777:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9789:6:101","nodeType":"YulTypedName","src":"9789:6:101","type":""},{"name":"value1","nativeSrc":"9797:6:101","nodeType":"YulTypedName","src":"9797:6:101","type":""},{"name":"value2","nativeSrc":"9805:6:101","nodeType":"YulTypedName","src":"9805:6:101","type":""}],"src":"9713:527:101"},{"body":{"nativeSrc":"10366:152:101","nodeType":"YulBlock","src":"10366:152:101","statements":[{"nativeSrc":"10376:26:101","nodeType":"YulAssignment","src":"10376:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10388:9:101","nodeType":"YulIdentifier","src":"10388:9:101"},{"kind":"number","nativeSrc":"10399:2:101","nodeType":"YulLiteral","src":"10399:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10384:3:101","nodeType":"YulIdentifier","src":"10384:3:101"},"nativeSrc":"10384:18:101","nodeType":"YulFunctionCall","src":"10384:18:101"},"variableNames":[{"name":"tail","nativeSrc":"10376:4:101","nodeType":"YulIdentifier","src":"10376:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10418:9:101","nodeType":"YulIdentifier","src":"10418:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"10443:6:101","nodeType":"YulIdentifier","src":"10443:6:101"}],"functionName":{"name":"iszero","nativeSrc":"10436:6:101","nodeType":"YulIdentifier","src":"10436:6:101"},"nativeSrc":"10436:14:101","nodeType":"YulFunctionCall","src":"10436:14:101"}],"functionName":{"name":"iszero","nativeSrc":"10429:6:101","nodeType":"YulIdentifier","src":"10429:6:101"},"nativeSrc":"10429:22:101","nodeType":"YulFunctionCall","src":"10429:22:101"}],"functionName":{"name":"mstore","nativeSrc":"10411:6:101","nodeType":"YulIdentifier","src":"10411:6:101"},"nativeSrc":"10411:41:101","nodeType":"YulFunctionCall","src":"10411:41:101"},"nativeSrc":"10411:41:101","nodeType":"YulExpressionStatement","src":"10411:41:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10472:9:101","nodeType":"YulIdentifier","src":"10472:9:101"},{"kind":"number","nativeSrc":"10483:2:101","nodeType":"YulLiteral","src":"10483:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10468:3:101","nodeType":"YulIdentifier","src":"10468:3:101"},"nativeSrc":"10468:18:101","nodeType":"YulFunctionCall","src":"10468:18:101"},{"arguments":[{"name":"value1","nativeSrc":"10492:6:101","nodeType":"YulIdentifier","src":"10492:6:101"},{"kind":"number","nativeSrc":"10500:10:101","nodeType":"YulLiteral","src":"10500:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"10488:3:101","nodeType":"YulIdentifier","src":"10488:3:101"},"nativeSrc":"10488:23:101","nodeType":"YulFunctionCall","src":"10488:23:101"}],"functionName":{"name":"mstore","nativeSrc":"10461:6:101","nodeType":"YulIdentifier","src":"10461:6:101"},"nativeSrc":"10461:51:101","nodeType":"YulFunctionCall","src":"10461:51:101"},"nativeSrc":"10461:51:101","nodeType":"YulExpressionStatement","src":"10461:51:101"}]},"name":"abi_encode_tuple_t_bool_t_uint32__to_t_bool_t_uint32__fromStack_reversed","nativeSrc":"10245:273:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10327:9:101","nodeType":"YulTypedName","src":"10327:9:101","type":""},{"name":"value1","nativeSrc":"10338:6:101","nodeType":"YulTypedName","src":"10338:6:101","type":""},{"name":"value0","nativeSrc":"10346:6:101","nodeType":"YulTypedName","src":"10346:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10357:4:101","nodeType":"YulTypedName","src":"10357:4:101","type":""}],"src":"10245:273:101"},{"body":{"nativeSrc":"10609:233:101","nodeType":"YulBlock","src":"10609:233:101","statements":[{"body":{"nativeSrc":"10655:16:101","nodeType":"YulBlock","src":"10655:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10664:1:101","nodeType":"YulLiteral","src":"10664:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"10667:1:101","nodeType":"YulLiteral","src":"10667:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10657:6:101","nodeType":"YulIdentifier","src":"10657:6:101"},"nativeSrc":"10657:12:101","nodeType":"YulFunctionCall","src":"10657:12:101"},"nativeSrc":"10657:12:101","nodeType":"YulExpressionStatement","src":"10657:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10630:7:101","nodeType":"YulIdentifier","src":"10630:7:101"},{"name":"headStart","nativeSrc":"10639:9:101","nodeType":"YulIdentifier","src":"10639:9:101"}],"functionName":{"name":"sub","nativeSrc":"10626:3:101","nodeType":"YulIdentifier","src":"10626:3:101"},"nativeSrc":"10626:23:101","nodeType":"YulFunctionCall","src":"10626:23:101"},{"kind":"number","nativeSrc":"10651:2:101","nodeType":"YulLiteral","src":"10651:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"10622:3:101","nodeType":"YulIdentifier","src":"10622:3:101"},"nativeSrc":"10622:32:101","nodeType":"YulFunctionCall","src":"10622:32:101"},"nativeSrc":"10619:52:101","nodeType":"YulIf","src":"10619:52:101"},{"nativeSrc":"10680:36:101","nodeType":"YulVariableDeclaration","src":"10680:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10706:9:101","nodeType":"YulIdentifier","src":"10706:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"10693:12:101","nodeType":"YulIdentifier","src":"10693:12:101"},"nativeSrc":"10693:23:101","nodeType":"YulFunctionCall","src":"10693:23:101"},"variables":[{"name":"value","nativeSrc":"10684:5:101","nodeType":"YulTypedName","src":"10684:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10750:5:101","nodeType":"YulIdentifier","src":"10750:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10725:24:101","nodeType":"YulIdentifier","src":"10725:24:101"},"nativeSrc":"10725:31:101","nodeType":"YulFunctionCall","src":"10725:31:101"},"nativeSrc":"10725:31:101","nodeType":"YulExpressionStatement","src":"10725:31:101"},{"nativeSrc":"10765:15:101","nodeType":"YulAssignment","src":"10765:15:101","value":{"name":"value","nativeSrc":"10775:5:101","nodeType":"YulIdentifier","src":"10775:5:101"},"variableNames":[{"name":"value0","nativeSrc":"10765:6:101","nodeType":"YulIdentifier","src":"10765:6:101"}]},{"nativeSrc":"10789:47:101","nodeType":"YulAssignment","src":"10789:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10821:9:101","nodeType":"YulIdentifier","src":"10821:9:101"},{"kind":"number","nativeSrc":"10832:2:101","nodeType":"YulLiteral","src":"10832:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10817:3:101","nodeType":"YulIdentifier","src":"10817:3:101"},"nativeSrc":"10817:18:101","nodeType":"YulFunctionCall","src":"10817:18:101"}],"functionName":{"name":"abi_decode_uint32","nativeSrc":"10799:17:101","nodeType":"YulIdentifier","src":"10799:17:101"},"nativeSrc":"10799:37:101","nodeType":"YulFunctionCall","src":"10799:37:101"},"variableNames":[{"name":"value1","nativeSrc":"10789:6:101","nodeType":"YulIdentifier","src":"10789:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_uint32","nativeSrc":"10523:319:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10567:9:101","nodeType":"YulTypedName","src":"10567:9:101","type":""},{"name":"dataEnd","nativeSrc":"10578:7:101","nodeType":"YulTypedName","src":"10578:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10590:6:101","nodeType":"YulTypedName","src":"10590:6:101","type":""},{"name":"value1","nativeSrc":"10598:6:101","nodeType":"YulTypedName","src":"10598:6:101","type":""}],"src":"10523:319:101"},{"body":{"nativeSrc":"10969:598:101","nodeType":"YulBlock","src":"10969:598:101","statements":[{"body":{"nativeSrc":"11015:16:101","nodeType":"YulBlock","src":"11015:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11024:1:101","nodeType":"YulLiteral","src":"11024:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11027:1:101","nodeType":"YulLiteral","src":"11027:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11017:6:101","nodeType":"YulIdentifier","src":"11017:6:101"},"nativeSrc":"11017:12:101","nodeType":"YulFunctionCall","src":"11017:12:101"},"nativeSrc":"11017:12:101","nodeType":"YulExpressionStatement","src":"11017:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10990:7:101","nodeType":"YulIdentifier","src":"10990:7:101"},{"name":"headStart","nativeSrc":"10999:9:101","nodeType":"YulIdentifier","src":"10999:9:101"}],"functionName":{"name":"sub","nativeSrc":"10986:3:101","nodeType":"YulIdentifier","src":"10986:3:101"},"nativeSrc":"10986:23:101","nodeType":"YulFunctionCall","src":"10986:23:101"},{"kind":"number","nativeSrc":"11011:2:101","nodeType":"YulLiteral","src":"11011:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"10982:3:101","nodeType":"YulIdentifier","src":"10982:3:101"},"nativeSrc":"10982:32:101","nodeType":"YulFunctionCall","src":"10982:32:101"},"nativeSrc":"10979:52:101","nodeType":"YulIf","src":"10979:52:101"},{"nativeSrc":"11040:36:101","nodeType":"YulVariableDeclaration","src":"11040:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"11066:9:101","nodeType":"YulIdentifier","src":"11066:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"11053:12:101","nodeType":"YulIdentifier","src":"11053:12:101"},"nativeSrc":"11053:23:101","nodeType":"YulFunctionCall","src":"11053:23:101"},"variables":[{"name":"value","nativeSrc":"11044:5:101","nodeType":"YulTypedName","src":"11044:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"11110:5:101","nodeType":"YulIdentifier","src":"11110:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"11085:24:101","nodeType":"YulIdentifier","src":"11085:24:101"},"nativeSrc":"11085:31:101","nodeType":"YulFunctionCall","src":"11085:31:101"},"nativeSrc":"11085:31:101","nodeType":"YulExpressionStatement","src":"11085:31:101"},{"nativeSrc":"11125:15:101","nodeType":"YulAssignment","src":"11125:15:101","value":{"name":"value","nativeSrc":"11135:5:101","nodeType":"YulIdentifier","src":"11135:5:101"},"variableNames":[{"name":"value0","nativeSrc":"11125:6:101","nodeType":"YulIdentifier","src":"11125:6:101"}]},{"nativeSrc":"11149:46:101","nodeType":"YulVariableDeclaration","src":"11149:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11180:9:101","nodeType":"YulIdentifier","src":"11180:9:101"},{"kind":"number","nativeSrc":"11191:2:101","nodeType":"YulLiteral","src":"11191:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11176:3:101","nodeType":"YulIdentifier","src":"11176:3:101"},"nativeSrc":"11176:18:101","nodeType":"YulFunctionCall","src":"11176:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"11163:12:101","nodeType":"YulIdentifier","src":"11163:12:101"},"nativeSrc":"11163:32:101","nodeType":"YulFunctionCall","src":"11163:32:101"},"variables":[{"name":"offset","nativeSrc":"11153:6:101","nodeType":"YulTypedName","src":"11153:6:101","type":""}]},{"body":{"nativeSrc":"11238:16:101","nodeType":"YulBlock","src":"11238:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11247:1:101","nodeType":"YulLiteral","src":"11247:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11250:1:101","nodeType":"YulLiteral","src":"11250:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11240:6:101","nodeType":"YulIdentifier","src":"11240:6:101"},"nativeSrc":"11240:12:101","nodeType":"YulFunctionCall","src":"11240:12:101"},"nativeSrc":"11240:12:101","nodeType":"YulExpressionStatement","src":"11240:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"11210:6:101","nodeType":"YulIdentifier","src":"11210:6:101"},{"kind":"number","nativeSrc":"11218:18:101","nodeType":"YulLiteral","src":"11218:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"11207:2:101","nodeType":"YulIdentifier","src":"11207:2:101"},"nativeSrc":"11207:30:101","nodeType":"YulFunctionCall","src":"11207:30:101"},"nativeSrc":"11204:50:101","nodeType":"YulIf","src":"11204:50:101"},{"nativeSrc":"11263:84:101","nodeType":"YulVariableDeclaration","src":"11263:84:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11319:9:101","nodeType":"YulIdentifier","src":"11319:9:101"},{"name":"offset","nativeSrc":"11330:6:101","nodeType":"YulIdentifier","src":"11330:6:101"}],"functionName":{"name":"add","nativeSrc":"11315:3:101","nodeType":"YulIdentifier","src":"11315:3:101"},"nativeSrc":"11315:22:101","nodeType":"YulFunctionCall","src":"11315:22:101"},{"name":"dataEnd","nativeSrc":"11339:7:101","nodeType":"YulIdentifier","src":"11339:7:101"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"11289:25:101","nodeType":"YulIdentifier","src":"11289:25:101"},"nativeSrc":"11289:58:101","nodeType":"YulFunctionCall","src":"11289:58:101"},"variables":[{"name":"value1_1","nativeSrc":"11267:8:101","nodeType":"YulTypedName","src":"11267:8:101","type":""},{"name":"value2_1","nativeSrc":"11277:8:101","nodeType":"YulTypedName","src":"11277:8:101","type":""}]},{"nativeSrc":"11356:18:101","nodeType":"YulAssignment","src":"11356:18:101","value":{"name":"value1_1","nativeSrc":"11366:8:101","nodeType":"YulIdentifier","src":"11366:8:101"},"variableNames":[{"name":"value1","nativeSrc":"11356:6:101","nodeType":"YulIdentifier","src":"11356:6:101"}]},{"nativeSrc":"11383:18:101","nodeType":"YulAssignment","src":"11383:18:101","value":{"name":"value2_1","nativeSrc":"11393:8:101","nodeType":"YulIdentifier","src":"11393:8:101"},"variableNames":[{"name":"value2","nativeSrc":"11383:6:101","nodeType":"YulIdentifier","src":"11383:6:101"}]},{"nativeSrc":"11410:47:101","nodeType":"YulVariableDeclaration","src":"11410:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11442:9:101","nodeType":"YulIdentifier","src":"11442:9:101"},{"kind":"number","nativeSrc":"11453:2:101","nodeType":"YulLiteral","src":"11453:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11438:3:101","nodeType":"YulIdentifier","src":"11438:3:101"},"nativeSrc":"11438:18:101","nodeType":"YulFunctionCall","src":"11438:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"11425:12:101","nodeType":"YulIdentifier","src":"11425:12:101"},"nativeSrc":"11425:32:101","nodeType":"YulFunctionCall","src":"11425:32:101"},"variables":[{"name":"value_1","nativeSrc":"11414:7:101","nodeType":"YulTypedName","src":"11414:7:101","type":""}]},{"body":{"nativeSrc":"11519:16:101","nodeType":"YulBlock","src":"11519:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11528:1:101","nodeType":"YulLiteral","src":"11528:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11531:1:101","nodeType":"YulLiteral","src":"11531:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11521:6:101","nodeType":"YulIdentifier","src":"11521:6:101"},"nativeSrc":"11521:12:101","nodeType":"YulFunctionCall","src":"11521:12:101"},"nativeSrc":"11521:12:101","nodeType":"YulExpressionStatement","src":"11521:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"11479:7:101","nodeType":"YulIdentifier","src":"11479:7:101"},{"arguments":[{"name":"value_1","nativeSrc":"11492:7:101","nodeType":"YulIdentifier","src":"11492:7:101"},{"kind":"number","nativeSrc":"11501:14:101","nodeType":"YulLiteral","src":"11501:14:101","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"11488:3:101","nodeType":"YulIdentifier","src":"11488:3:101"},"nativeSrc":"11488:28:101","nodeType":"YulFunctionCall","src":"11488:28:101"}],"functionName":{"name":"eq","nativeSrc":"11476:2:101","nodeType":"YulIdentifier","src":"11476:2:101"},"nativeSrc":"11476:41:101","nodeType":"YulFunctionCall","src":"11476:41:101"}],"functionName":{"name":"iszero","nativeSrc":"11469:6:101","nodeType":"YulIdentifier","src":"11469:6:101"},"nativeSrc":"11469:49:101","nodeType":"YulFunctionCall","src":"11469:49:101"},"nativeSrc":"11466:69:101","nodeType":"YulIf","src":"11466:69:101"},{"nativeSrc":"11544:17:101","nodeType":"YulAssignment","src":"11544:17:101","value":{"name":"value_1","nativeSrc":"11554:7:101","nodeType":"YulIdentifier","src":"11554:7:101"},"variableNames":[{"name":"value3","nativeSrc":"11544:6:101","nodeType":"YulIdentifier","src":"11544:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptrt_uint48","nativeSrc":"10847:720:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10911:9:101","nodeType":"YulTypedName","src":"10911:9:101","type":""},{"name":"dataEnd","nativeSrc":"10922:7:101","nodeType":"YulTypedName","src":"10922:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10934:6:101","nodeType":"YulTypedName","src":"10934:6:101","type":""},{"name":"value1","nativeSrc":"10942:6:101","nodeType":"YulTypedName","src":"10942:6:101","type":""},{"name":"value2","nativeSrc":"10950:6:101","nodeType":"YulTypedName","src":"10950:6:101","type":""},{"name":"value3","nativeSrc":"10958:6:101","nodeType":"YulTypedName","src":"10958:6:101","type":""}],"src":"10847:720:101"},{"body":{"nativeSrc":"11699:136:101","nodeType":"YulBlock","src":"11699:136:101","statements":[{"nativeSrc":"11709:26:101","nodeType":"YulAssignment","src":"11709:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"11721:9:101","nodeType":"YulIdentifier","src":"11721:9:101"},{"kind":"number","nativeSrc":"11732:2:101","nodeType":"YulLiteral","src":"11732:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11717:3:101","nodeType":"YulIdentifier","src":"11717:3:101"},"nativeSrc":"11717:18:101","nodeType":"YulFunctionCall","src":"11717:18:101"},"variableNames":[{"name":"tail","nativeSrc":"11709:4:101","nodeType":"YulIdentifier","src":"11709:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11751:9:101","nodeType":"YulIdentifier","src":"11751:9:101"},{"name":"value0","nativeSrc":"11762:6:101","nodeType":"YulIdentifier","src":"11762:6:101"}],"functionName":{"name":"mstore","nativeSrc":"11744:6:101","nodeType":"YulIdentifier","src":"11744:6:101"},"nativeSrc":"11744:25:101","nodeType":"YulFunctionCall","src":"11744:25:101"},"nativeSrc":"11744:25:101","nodeType":"YulExpressionStatement","src":"11744:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11789:9:101","nodeType":"YulIdentifier","src":"11789:9:101"},{"kind":"number","nativeSrc":"11800:2:101","nodeType":"YulLiteral","src":"11800:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11785:3:101","nodeType":"YulIdentifier","src":"11785:3:101"},"nativeSrc":"11785:18:101","nodeType":"YulFunctionCall","src":"11785:18:101"},{"arguments":[{"name":"value1","nativeSrc":"11809:6:101","nodeType":"YulIdentifier","src":"11809:6:101"},{"kind":"number","nativeSrc":"11817:10:101","nodeType":"YulLiteral","src":"11817:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"11805:3:101","nodeType":"YulIdentifier","src":"11805:3:101"},"nativeSrc":"11805:23:101","nodeType":"YulFunctionCall","src":"11805:23:101"}],"functionName":{"name":"mstore","nativeSrc":"11778:6:101","nodeType":"YulIdentifier","src":"11778:6:101"},"nativeSrc":"11778:51:101","nodeType":"YulFunctionCall","src":"11778:51:101"},"nativeSrc":"11778:51:101","nodeType":"YulExpressionStatement","src":"11778:51:101"}]},"name":"abi_encode_tuple_t_bytes32_t_uint32__to_t_bytes32_t_uint32__fromStack_reversed","nativeSrc":"11572:263:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11660:9:101","nodeType":"YulTypedName","src":"11660:9:101","type":""},{"name":"value1","nativeSrc":"11671:6:101","nodeType":"YulTypedName","src":"11671:6:101","type":""},{"name":"value0","nativeSrc":"11679:6:101","nodeType":"YulTypedName","src":"11679:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11690:4:101","nodeType":"YulTypedName","src":"11690:4:101","type":""}],"src":"11572:263:101"},{"body":{"nativeSrc":"11872:95:101","nodeType":"YulBlock","src":"11872:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11889:1:101","nodeType":"YulLiteral","src":"11889:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"11896:3:101","nodeType":"YulLiteral","src":"11896:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"11901:10:101","nodeType":"YulLiteral","src":"11901:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"11892:3:101","nodeType":"YulIdentifier","src":"11892:3:101"},"nativeSrc":"11892:20:101","nodeType":"YulFunctionCall","src":"11892:20:101"}],"functionName":{"name":"mstore","nativeSrc":"11882:6:101","nodeType":"YulIdentifier","src":"11882:6:101"},"nativeSrc":"11882:31:101","nodeType":"YulFunctionCall","src":"11882:31:101"},"nativeSrc":"11882:31:101","nodeType":"YulExpressionStatement","src":"11882:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11929:1:101","nodeType":"YulLiteral","src":"11929:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"11932:4:101","nodeType":"YulLiteral","src":"11932:4:101","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"11922:6:101","nodeType":"YulIdentifier","src":"11922:6:101"},"nativeSrc":"11922:15:101","nodeType":"YulFunctionCall","src":"11922:15:101"},"nativeSrc":"11922:15:101","nodeType":"YulExpressionStatement","src":"11922:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11953:1:101","nodeType":"YulLiteral","src":"11953:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11956:4:101","nodeType":"YulLiteral","src":"11956:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"11946:6:101","nodeType":"YulIdentifier","src":"11946:6:101"},"nativeSrc":"11946:15:101","nodeType":"YulFunctionCall","src":"11946:15:101"},"nativeSrc":"11946:15:101","nodeType":"YulExpressionStatement","src":"11946:15:101"}]},"name":"panic_error_0x32","nativeSrc":"11840:127:101","nodeType":"YulFunctionDefinition","src":"11840:127:101"},{"body":{"nativeSrc":"12041:176:101","nodeType":"YulBlock","src":"12041:176:101","statements":[{"body":{"nativeSrc":"12087:16:101","nodeType":"YulBlock","src":"12087:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12096:1:101","nodeType":"YulLiteral","src":"12096:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"12099:1:101","nodeType":"YulLiteral","src":"12099:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12089:6:101","nodeType":"YulIdentifier","src":"12089:6:101"},"nativeSrc":"12089:12:101","nodeType":"YulFunctionCall","src":"12089:12:101"},"nativeSrc":"12089:12:101","nodeType":"YulExpressionStatement","src":"12089:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12062:7:101","nodeType":"YulIdentifier","src":"12062:7:101"},{"name":"headStart","nativeSrc":"12071:9:101","nodeType":"YulIdentifier","src":"12071:9:101"}],"functionName":{"name":"sub","nativeSrc":"12058:3:101","nodeType":"YulIdentifier","src":"12058:3:101"},"nativeSrc":"12058:23:101","nodeType":"YulFunctionCall","src":"12058:23:101"},{"kind":"number","nativeSrc":"12083:2:101","nodeType":"YulLiteral","src":"12083:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"12054:3:101","nodeType":"YulIdentifier","src":"12054:3:101"},"nativeSrc":"12054:32:101","nodeType":"YulFunctionCall","src":"12054:32:101"},"nativeSrc":"12051:52:101","nodeType":"YulIf","src":"12051:52:101"},{"nativeSrc":"12112:36:101","nodeType":"YulVariableDeclaration","src":"12112:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12138:9:101","nodeType":"YulIdentifier","src":"12138:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"12125:12:101","nodeType":"YulIdentifier","src":"12125:12:101"},"nativeSrc":"12125:23:101","nodeType":"YulFunctionCall","src":"12125:23:101"},"variables":[{"name":"value","nativeSrc":"12116:5:101","nodeType":"YulTypedName","src":"12116:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12181:5:101","nodeType":"YulIdentifier","src":"12181:5:101"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"12157:23:101","nodeType":"YulIdentifier","src":"12157:23:101"},"nativeSrc":"12157:30:101","nodeType":"YulFunctionCall","src":"12157:30:101"},"nativeSrc":"12157:30:101","nodeType":"YulExpressionStatement","src":"12157:30:101"},{"nativeSrc":"12196:15:101","nodeType":"YulAssignment","src":"12196:15:101","value":{"name":"value","nativeSrc":"12206:5:101","nodeType":"YulIdentifier","src":"12206:5:101"},"variableNames":[{"name":"value0","nativeSrc":"12196:6:101","nodeType":"YulIdentifier","src":"12196:6:101"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"11972:245:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12007:9:101","nodeType":"YulTypedName","src":"12007:9:101","type":""},{"name":"dataEnd","nativeSrc":"12018:7:101","nodeType":"YulTypedName","src":"12018:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12030:6:101","nodeType":"YulTypedName","src":"12030:6:101","type":""}],"src":"11972:245:101"},{"body":{"nativeSrc":"12323:102:101","nodeType":"YulBlock","src":"12323:102:101","statements":[{"nativeSrc":"12333:26:101","nodeType":"YulAssignment","src":"12333:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12345:9:101","nodeType":"YulIdentifier","src":"12345:9:101"},{"kind":"number","nativeSrc":"12356:2:101","nodeType":"YulLiteral","src":"12356:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12341:3:101","nodeType":"YulIdentifier","src":"12341:3:101"},"nativeSrc":"12341:18:101","nodeType":"YulFunctionCall","src":"12341:18:101"},"variableNames":[{"name":"tail","nativeSrc":"12333:4:101","nodeType":"YulIdentifier","src":"12333:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12375:9:101","nodeType":"YulIdentifier","src":"12375:9:101"},{"arguments":[{"name":"value0","nativeSrc":"12390:6:101","nodeType":"YulIdentifier","src":"12390:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12406:3:101","nodeType":"YulLiteral","src":"12406:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"12411:1:101","nodeType":"YulLiteral","src":"12411:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12402:3:101","nodeType":"YulIdentifier","src":"12402:3:101"},"nativeSrc":"12402:11:101","nodeType":"YulFunctionCall","src":"12402:11:101"},{"kind":"number","nativeSrc":"12415:1:101","nodeType":"YulLiteral","src":"12415:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12398:3:101","nodeType":"YulIdentifier","src":"12398:3:101"},"nativeSrc":"12398:19:101","nodeType":"YulFunctionCall","src":"12398:19:101"}],"functionName":{"name":"and","nativeSrc":"12386:3:101","nodeType":"YulIdentifier","src":"12386:3:101"},"nativeSrc":"12386:32:101","nodeType":"YulFunctionCall","src":"12386:32:101"}],"functionName":{"name":"mstore","nativeSrc":"12368:6:101","nodeType":"YulIdentifier","src":"12368:6:101"},"nativeSrc":"12368:51:101","nodeType":"YulFunctionCall","src":"12368:51:101"},"nativeSrc":"12368:51:101","nodeType":"YulExpressionStatement","src":"12368:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"12222:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12292:9:101","nodeType":"YulTypedName","src":"12292:9:101","type":""},{"name":"value0","nativeSrc":"12303:6:101","nodeType":"YulTypedName","src":"12303:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12314:4:101","nodeType":"YulTypedName","src":"12314:4:101","type":""}],"src":"12222:203:101"},{"body":{"nativeSrc":"12585:241:101","nodeType":"YulBlock","src":"12585:241:101","statements":[{"nativeSrc":"12595:26:101","nodeType":"YulAssignment","src":"12595:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12607:9:101","nodeType":"YulIdentifier","src":"12607:9:101"},{"kind":"number","nativeSrc":"12618:2:101","nodeType":"YulLiteral","src":"12618:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12603:3:101","nodeType":"YulIdentifier","src":"12603:3:101"},"nativeSrc":"12603:18:101","nodeType":"YulFunctionCall","src":"12603:18:101"},"variableNames":[{"name":"tail","nativeSrc":"12595:4:101","nodeType":"YulIdentifier","src":"12595:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12637:9:101","nodeType":"YulIdentifier","src":"12637:9:101"},{"arguments":[{"name":"value0","nativeSrc":"12652:6:101","nodeType":"YulIdentifier","src":"12652:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12668:3:101","nodeType":"YulLiteral","src":"12668:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"12673:1:101","nodeType":"YulLiteral","src":"12673:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12664:3:101","nodeType":"YulIdentifier","src":"12664:3:101"},"nativeSrc":"12664:11:101","nodeType":"YulFunctionCall","src":"12664:11:101"},{"kind":"number","nativeSrc":"12677:1:101","nodeType":"YulLiteral","src":"12677:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12660:3:101","nodeType":"YulIdentifier","src":"12660:3:101"},"nativeSrc":"12660:19:101","nodeType":"YulFunctionCall","src":"12660:19:101"}],"functionName":{"name":"and","nativeSrc":"12648:3:101","nodeType":"YulIdentifier","src":"12648:3:101"},"nativeSrc":"12648:32:101","nodeType":"YulFunctionCall","src":"12648:32:101"}],"functionName":{"name":"mstore","nativeSrc":"12630:6:101","nodeType":"YulIdentifier","src":"12630:6:101"},"nativeSrc":"12630:51:101","nodeType":"YulFunctionCall","src":"12630:51:101"},"nativeSrc":"12630:51:101","nodeType":"YulExpressionStatement","src":"12630:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12701:9:101","nodeType":"YulIdentifier","src":"12701:9:101"},{"kind":"number","nativeSrc":"12712:2:101","nodeType":"YulLiteral","src":"12712:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12697:3:101","nodeType":"YulIdentifier","src":"12697:3:101"},"nativeSrc":"12697:18:101","nodeType":"YulFunctionCall","src":"12697:18:101"},{"arguments":[{"name":"value1","nativeSrc":"12721:6:101","nodeType":"YulIdentifier","src":"12721:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12737:3:101","nodeType":"YulLiteral","src":"12737:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"12742:1:101","nodeType":"YulLiteral","src":"12742:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12733:3:101","nodeType":"YulIdentifier","src":"12733:3:101"},"nativeSrc":"12733:11:101","nodeType":"YulFunctionCall","src":"12733:11:101"},{"kind":"number","nativeSrc":"12746:1:101","nodeType":"YulLiteral","src":"12746:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12729:3:101","nodeType":"YulIdentifier","src":"12729:3:101"},"nativeSrc":"12729:19:101","nodeType":"YulFunctionCall","src":"12729:19:101"}],"functionName":{"name":"and","nativeSrc":"12717:3:101","nodeType":"YulIdentifier","src":"12717:3:101"},"nativeSrc":"12717:32:101","nodeType":"YulFunctionCall","src":"12717:32:101"}],"functionName":{"name":"mstore","nativeSrc":"12690:6:101","nodeType":"YulIdentifier","src":"12690:6:101"},"nativeSrc":"12690:60:101","nodeType":"YulFunctionCall","src":"12690:60:101"},"nativeSrc":"12690:60:101","nodeType":"YulExpressionStatement","src":"12690:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12770:9:101","nodeType":"YulIdentifier","src":"12770:9:101"},{"kind":"number","nativeSrc":"12781:2:101","nodeType":"YulLiteral","src":"12781:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12766:3:101","nodeType":"YulIdentifier","src":"12766:3:101"},"nativeSrc":"12766:18:101","nodeType":"YulFunctionCall","src":"12766:18:101"},{"arguments":[{"name":"value2","nativeSrc":"12790:6:101","nodeType":"YulIdentifier","src":"12790:6:101"},{"arguments":[{"kind":"number","nativeSrc":"12802:3:101","nodeType":"YulLiteral","src":"12802:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"12807:10:101","nodeType":"YulLiteral","src":"12807:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"12798:3:101","nodeType":"YulIdentifier","src":"12798:3:101"},"nativeSrc":"12798:20:101","nodeType":"YulFunctionCall","src":"12798:20:101"}],"functionName":{"name":"and","nativeSrc":"12786:3:101","nodeType":"YulIdentifier","src":"12786:3:101"},"nativeSrc":"12786:33:101","nodeType":"YulFunctionCall","src":"12786:33:101"}],"functionName":{"name":"mstore","nativeSrc":"12759:6:101","nodeType":"YulIdentifier","src":"12759:6:101"},"nativeSrc":"12759:61:101","nodeType":"YulFunctionCall","src":"12759:61:101"},"nativeSrc":"12759:61:101","nodeType":"YulExpressionStatement","src":"12759:61:101"}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"12430:396:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12538:9:101","nodeType":"YulTypedName","src":"12538:9:101","type":""},{"name":"value2","nativeSrc":"12549:6:101","nodeType":"YulTypedName","src":"12549:6:101","type":""},{"name":"value1","nativeSrc":"12557:6:101","nodeType":"YulTypedName","src":"12557:6:101","type":""},{"name":"value0","nativeSrc":"12565:6:101","nodeType":"YulTypedName","src":"12565:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12576:4:101","nodeType":"YulTypedName","src":"12576:4:101","type":""}],"src":"12430:396:101"},{"body":{"nativeSrc":"12898:200:101","nodeType":"YulBlock","src":"12898:200:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"12915:3:101","nodeType":"YulIdentifier","src":"12915:3:101"},{"name":"length","nativeSrc":"12920:6:101","nodeType":"YulIdentifier","src":"12920:6:101"}],"functionName":{"name":"mstore","nativeSrc":"12908:6:101","nodeType":"YulIdentifier","src":"12908:6:101"},"nativeSrc":"12908:19:101","nodeType":"YulFunctionCall","src":"12908:19:101"},"nativeSrc":"12908:19:101","nodeType":"YulExpressionStatement","src":"12908:19:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"12953:3:101","nodeType":"YulIdentifier","src":"12953:3:101"},{"kind":"number","nativeSrc":"12958:4:101","nodeType":"YulLiteral","src":"12958:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12949:3:101","nodeType":"YulIdentifier","src":"12949:3:101"},"nativeSrc":"12949:14:101","nodeType":"YulFunctionCall","src":"12949:14:101"},{"name":"start","nativeSrc":"12965:5:101","nodeType":"YulIdentifier","src":"12965:5:101"},{"name":"length","nativeSrc":"12972:6:101","nodeType":"YulIdentifier","src":"12972:6:101"}],"functionName":{"name":"calldatacopy","nativeSrc":"12936:12:101","nodeType":"YulIdentifier","src":"12936:12:101"},"nativeSrc":"12936:43:101","nodeType":"YulFunctionCall","src":"12936:43:101"},"nativeSrc":"12936:43:101","nodeType":"YulExpressionStatement","src":"12936:43:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"13003:3:101","nodeType":"YulIdentifier","src":"13003:3:101"},{"name":"length","nativeSrc":"13008:6:101","nodeType":"YulIdentifier","src":"13008:6:101"}],"functionName":{"name":"add","nativeSrc":"12999:3:101","nodeType":"YulIdentifier","src":"12999:3:101"},"nativeSrc":"12999:16:101","nodeType":"YulFunctionCall","src":"12999:16:101"},{"kind":"number","nativeSrc":"13017:4:101","nodeType":"YulLiteral","src":"13017:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12995:3:101","nodeType":"YulIdentifier","src":"12995:3:101"},"nativeSrc":"12995:27:101","nodeType":"YulFunctionCall","src":"12995:27:101"},{"kind":"number","nativeSrc":"13024:1:101","nodeType":"YulLiteral","src":"13024:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"12988:6:101","nodeType":"YulIdentifier","src":"12988:6:101"},"nativeSrc":"12988:38:101","nodeType":"YulFunctionCall","src":"12988:38:101"},"nativeSrc":"12988:38:101","nodeType":"YulExpressionStatement","src":"12988:38:101"},{"nativeSrc":"13035:57:101","nodeType":"YulAssignment","src":"13035:57:101","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"13050:3:101","nodeType":"YulIdentifier","src":"13050:3:101"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"13063:6:101","nodeType":"YulIdentifier","src":"13063:6:101"},{"kind":"number","nativeSrc":"13071:2:101","nodeType":"YulLiteral","src":"13071:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"13059:3:101","nodeType":"YulIdentifier","src":"13059:3:101"},"nativeSrc":"13059:15:101","nodeType":"YulFunctionCall","src":"13059:15:101"},{"arguments":[{"kind":"number","nativeSrc":"13080:2:101","nodeType":"YulLiteral","src":"13080:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"13076:3:101","nodeType":"YulIdentifier","src":"13076:3:101"},"nativeSrc":"13076:7:101","nodeType":"YulFunctionCall","src":"13076:7:101"}],"functionName":{"name":"and","nativeSrc":"13055:3:101","nodeType":"YulIdentifier","src":"13055:3:101"},"nativeSrc":"13055:29:101","nodeType":"YulFunctionCall","src":"13055:29:101"}],"functionName":{"name":"add","nativeSrc":"13046:3:101","nodeType":"YulIdentifier","src":"13046:3:101"},"nativeSrc":"13046:39:101","nodeType":"YulFunctionCall","src":"13046:39:101"},{"kind":"number","nativeSrc":"13087:4:101","nodeType":"YulLiteral","src":"13087:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"13042:3:101","nodeType":"YulIdentifier","src":"13042:3:101"},"nativeSrc":"13042:50:101","nodeType":"YulFunctionCall","src":"13042:50:101"},"variableNames":[{"name":"end","nativeSrc":"13035:3:101","nodeType":"YulIdentifier","src":"13035:3:101"}]}]},"name":"abi_encode_string_calldata","nativeSrc":"12831:267:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nativeSrc":"12867:5:101","nodeType":"YulTypedName","src":"12867:5:101","type":""},{"name":"length","nativeSrc":"12874:6:101","nodeType":"YulTypedName","src":"12874:6:101","type":""},{"name":"pos","nativeSrc":"12882:3:101","nodeType":"YulTypedName","src":"12882:3:101","type":""}],"returnVariables":[{"name":"end","nativeSrc":"12890:3:101","nodeType":"YulTypedName","src":"12890:3:101","type":""}],"src":"12831:267:101"},{"body":{"nativeSrc":"13234:116:101","nodeType":"YulBlock","src":"13234:116:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13251:9:101","nodeType":"YulIdentifier","src":"13251:9:101"},{"kind":"number","nativeSrc":"13262:2:101","nodeType":"YulLiteral","src":"13262:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13244:6:101","nodeType":"YulIdentifier","src":"13244:6:101"},"nativeSrc":"13244:21:101","nodeType":"YulFunctionCall","src":"13244:21:101"},"nativeSrc":"13244:21:101","nodeType":"YulExpressionStatement","src":"13244:21:101"},{"nativeSrc":"13274:70:101","nodeType":"YulAssignment","src":"13274:70:101","value":{"arguments":[{"name":"value0","nativeSrc":"13309:6:101","nodeType":"YulIdentifier","src":"13309:6:101"},{"name":"value1","nativeSrc":"13317:6:101","nodeType":"YulIdentifier","src":"13317:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"13329:9:101","nodeType":"YulIdentifier","src":"13329:9:101"},{"kind":"number","nativeSrc":"13340:2:101","nodeType":"YulLiteral","src":"13340:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13325:3:101","nodeType":"YulIdentifier","src":"13325:3:101"},"nativeSrc":"13325:18:101","nodeType":"YulFunctionCall","src":"13325:18:101"}],"functionName":{"name":"abi_encode_string_calldata","nativeSrc":"13282:26:101","nodeType":"YulIdentifier","src":"13282:26:101"},"nativeSrc":"13282:62:101","nodeType":"YulFunctionCall","src":"13282:62:101"},"variableNames":[{"name":"tail","nativeSrc":"13274:4:101","nodeType":"YulIdentifier","src":"13274:4:101"}]}]},"name":"abi_encode_tuple_t_string_calldata_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"13103:247:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13195:9:101","nodeType":"YulTypedName","src":"13195:9:101","type":""},{"name":"value1","nativeSrc":"13206:6:101","nodeType":"YulTypedName","src":"13206:6:101","type":""},{"name":"value0","nativeSrc":"13214:6:101","nodeType":"YulTypedName","src":"13214:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13225:4:101","nodeType":"YulTypedName","src":"13225:4:101","type":""}],"src":"13103:247:101"},{"body":{"nativeSrc":"13435:169:101","nodeType":"YulBlock","src":"13435:169:101","statements":[{"body":{"nativeSrc":"13481:16:101","nodeType":"YulBlock","src":"13481:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13490:1:101","nodeType":"YulLiteral","src":"13490:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"13493:1:101","nodeType":"YulLiteral","src":"13493:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13483:6:101","nodeType":"YulIdentifier","src":"13483:6:101"},"nativeSrc":"13483:12:101","nodeType":"YulFunctionCall","src":"13483:12:101"},"nativeSrc":"13483:12:101","nodeType":"YulExpressionStatement","src":"13483:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13456:7:101","nodeType":"YulIdentifier","src":"13456:7:101"},{"name":"headStart","nativeSrc":"13465:9:101","nodeType":"YulIdentifier","src":"13465:9:101"}],"functionName":{"name":"sub","nativeSrc":"13452:3:101","nodeType":"YulIdentifier","src":"13452:3:101"},"nativeSrc":"13452:23:101","nodeType":"YulFunctionCall","src":"13452:23:101"},{"kind":"number","nativeSrc":"13477:2:101","nodeType":"YulLiteral","src":"13477:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"13448:3:101","nodeType":"YulIdentifier","src":"13448:3:101"},"nativeSrc":"13448:32:101","nodeType":"YulFunctionCall","src":"13448:32:101"},"nativeSrc":"13445:52:101","nodeType":"YulIf","src":"13445:52:101"},{"nativeSrc":"13506:29:101","nodeType":"YulVariableDeclaration","src":"13506:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"13525:9:101","nodeType":"YulIdentifier","src":"13525:9:101"}],"functionName":{"name":"mload","nativeSrc":"13519:5:101","nodeType":"YulIdentifier","src":"13519:5:101"},"nativeSrc":"13519:16:101","nodeType":"YulFunctionCall","src":"13519:16:101"},"variables":[{"name":"value","nativeSrc":"13510:5:101","nodeType":"YulTypedName","src":"13510:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13568:5:101","nodeType":"YulIdentifier","src":"13568:5:101"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"13544:23:101","nodeType":"YulIdentifier","src":"13544:23:101"},"nativeSrc":"13544:30:101","nodeType":"YulFunctionCall","src":"13544:30:101"},"nativeSrc":"13544:30:101","nodeType":"YulExpressionStatement","src":"13544:30:101"},{"nativeSrc":"13583:15:101","nodeType":"YulAssignment","src":"13583:15:101","value":{"name":"value","nativeSrc":"13593:5:101","nodeType":"YulIdentifier","src":"13593:5:101"},"variableNames":[{"name":"value0","nativeSrc":"13583:6:101","nodeType":"YulIdentifier","src":"13583:6:101"}]}]},"name":"abi_decode_tuple_t_bytes4_fromMemory","nativeSrc":"13355:249:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13401:9:101","nodeType":"YulTypedName","src":"13401:9:101","type":""},{"name":"dataEnd","nativeSrc":"13412:7:101","nodeType":"YulTypedName","src":"13412:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13424:6:101","nodeType":"YulTypedName","src":"13424:6:101","type":""}],"src":"13355:249:101"},{"body":{"nativeSrc":"13794:254:101","nodeType":"YulBlock","src":"13794:254:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13811:9:101","nodeType":"YulIdentifier","src":"13811:9:101"},{"arguments":[{"name":"value0","nativeSrc":"13826:6:101","nodeType":"YulIdentifier","src":"13826:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"13842:3:101","nodeType":"YulLiteral","src":"13842:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"13847:1:101","nodeType":"YulLiteral","src":"13847:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"13838:3:101","nodeType":"YulIdentifier","src":"13838:3:101"},"nativeSrc":"13838:11:101","nodeType":"YulFunctionCall","src":"13838:11:101"},{"kind":"number","nativeSrc":"13851:1:101","nodeType":"YulLiteral","src":"13851:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"13834:3:101","nodeType":"YulIdentifier","src":"13834:3:101"},"nativeSrc":"13834:19:101","nodeType":"YulFunctionCall","src":"13834:19:101"}],"functionName":{"name":"and","nativeSrc":"13822:3:101","nodeType":"YulIdentifier","src":"13822:3:101"},"nativeSrc":"13822:32:101","nodeType":"YulFunctionCall","src":"13822:32:101"}],"functionName":{"name":"mstore","nativeSrc":"13804:6:101","nodeType":"YulIdentifier","src":"13804:6:101"},"nativeSrc":"13804:51:101","nodeType":"YulFunctionCall","src":"13804:51:101"},"nativeSrc":"13804:51:101","nodeType":"YulExpressionStatement","src":"13804:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13875:9:101","nodeType":"YulIdentifier","src":"13875:9:101"},{"kind":"number","nativeSrc":"13886:2:101","nodeType":"YulLiteral","src":"13886:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13871:3:101","nodeType":"YulIdentifier","src":"13871:3:101"},"nativeSrc":"13871:18:101","nodeType":"YulFunctionCall","src":"13871:18:101"},{"arguments":[{"name":"value1","nativeSrc":"13895:6:101","nodeType":"YulIdentifier","src":"13895:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"13911:3:101","nodeType":"YulLiteral","src":"13911:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"13916:1:101","nodeType":"YulLiteral","src":"13916:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"13907:3:101","nodeType":"YulIdentifier","src":"13907:3:101"},"nativeSrc":"13907:11:101","nodeType":"YulFunctionCall","src":"13907:11:101"},{"kind":"number","nativeSrc":"13920:1:101","nodeType":"YulLiteral","src":"13920:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"13903:3:101","nodeType":"YulIdentifier","src":"13903:3:101"},"nativeSrc":"13903:19:101","nodeType":"YulFunctionCall","src":"13903:19:101"}],"functionName":{"name":"and","nativeSrc":"13891:3:101","nodeType":"YulIdentifier","src":"13891:3:101"},"nativeSrc":"13891:32:101","nodeType":"YulFunctionCall","src":"13891:32:101"}],"functionName":{"name":"mstore","nativeSrc":"13864:6:101","nodeType":"YulIdentifier","src":"13864:6:101"},"nativeSrc":"13864:60:101","nodeType":"YulFunctionCall","src":"13864:60:101"},"nativeSrc":"13864:60:101","nodeType":"YulExpressionStatement","src":"13864:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13944:9:101","nodeType":"YulIdentifier","src":"13944:9:101"},{"kind":"number","nativeSrc":"13955:2:101","nodeType":"YulLiteral","src":"13955:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13940:3:101","nodeType":"YulIdentifier","src":"13940:3:101"},"nativeSrc":"13940:18:101","nodeType":"YulFunctionCall","src":"13940:18:101"},{"kind":"number","nativeSrc":"13960:2:101","nodeType":"YulLiteral","src":"13960:2:101","type":"","value":"96"}],"functionName":{"name":"mstore","nativeSrc":"13933:6:101","nodeType":"YulIdentifier","src":"13933:6:101"},"nativeSrc":"13933:30:101","nodeType":"YulFunctionCall","src":"13933:30:101"},"nativeSrc":"13933:30:101","nodeType":"YulExpressionStatement","src":"13933:30:101"},{"nativeSrc":"13972:70:101","nodeType":"YulAssignment","src":"13972:70:101","value":{"arguments":[{"name":"value2","nativeSrc":"14007:6:101","nodeType":"YulIdentifier","src":"14007:6:101"},{"name":"value3","nativeSrc":"14015:6:101","nodeType":"YulIdentifier","src":"14015:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"14027:9:101","nodeType":"YulIdentifier","src":"14027:9:101"},{"kind":"number","nativeSrc":"14038:2:101","nodeType":"YulLiteral","src":"14038:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14023:3:101","nodeType":"YulIdentifier","src":"14023:3:101"},"nativeSrc":"14023:18:101","nodeType":"YulFunctionCall","src":"14023:18:101"}],"functionName":{"name":"abi_encode_string_calldata","nativeSrc":"13980:26:101","nodeType":"YulIdentifier","src":"13980:26:101"},"nativeSrc":"13980:62:101","nodeType":"YulFunctionCall","src":"13980:62:101"},"variableNames":[{"name":"tail","nativeSrc":"13972:4:101","nodeType":"YulIdentifier","src":"13972:4:101"}]}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes_calldata_ptr__to_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"13609:439:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13739:9:101","nodeType":"YulTypedName","src":"13739:9:101","type":""},{"name":"value3","nativeSrc":"13750:6:101","nodeType":"YulTypedName","src":"13750:6:101","type":""},{"name":"value2","nativeSrc":"13758:6:101","nodeType":"YulTypedName","src":"13758:6:101","type":""},{"name":"value1","nativeSrc":"13766:6:101","nodeType":"YulTypedName","src":"13766:6:101","type":""},{"name":"value0","nativeSrc":"13774:6:101","nodeType":"YulTypedName","src":"13774:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13785:4:101","nodeType":"YulTypedName","src":"13785:4:101","type":""}],"src":"13609:439:101"},{"body":{"nativeSrc":"14085:95:101","nodeType":"YulBlock","src":"14085:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14102:1:101","nodeType":"YulLiteral","src":"14102:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"14109:3:101","nodeType":"YulLiteral","src":"14109:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"14114:10:101","nodeType":"YulLiteral","src":"14114:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"14105:3:101","nodeType":"YulIdentifier","src":"14105:3:101"},"nativeSrc":"14105:20:101","nodeType":"YulFunctionCall","src":"14105:20:101"}],"functionName":{"name":"mstore","nativeSrc":"14095:6:101","nodeType":"YulIdentifier","src":"14095:6:101"},"nativeSrc":"14095:31:101","nodeType":"YulFunctionCall","src":"14095:31:101"},"nativeSrc":"14095:31:101","nodeType":"YulExpressionStatement","src":"14095:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14142:1:101","nodeType":"YulLiteral","src":"14142:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"14145:4:101","nodeType":"YulLiteral","src":"14145:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"14135:6:101","nodeType":"YulIdentifier","src":"14135:6:101"},"nativeSrc":"14135:15:101","nodeType":"YulFunctionCall","src":"14135:15:101"},"nativeSrc":"14135:15:101","nodeType":"YulExpressionStatement","src":"14135:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14166:1:101","nodeType":"YulLiteral","src":"14166:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"14169:4:101","nodeType":"YulLiteral","src":"14169:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"14159:6:101","nodeType":"YulIdentifier","src":"14159:6:101"},"nativeSrc":"14159:15:101","nodeType":"YulFunctionCall","src":"14159:15:101"},"nativeSrc":"14159:15:101","nodeType":"YulExpressionStatement","src":"14159:15:101"}]},"name":"panic_error_0x11","nativeSrc":"14053:127:101","nodeType":"YulFunctionDefinition","src":"14053:127:101"},{"body":{"nativeSrc":"14234:79:101","nodeType":"YulBlock","src":"14234:79:101","statements":[{"nativeSrc":"14244:17:101","nodeType":"YulAssignment","src":"14244:17:101","value":{"arguments":[{"name":"x","nativeSrc":"14256:1:101","nodeType":"YulIdentifier","src":"14256:1:101"},{"name":"y","nativeSrc":"14259:1:101","nodeType":"YulIdentifier","src":"14259:1:101"}],"functionName":{"name":"sub","nativeSrc":"14252:3:101","nodeType":"YulIdentifier","src":"14252:3:101"},"nativeSrc":"14252:9:101","nodeType":"YulFunctionCall","src":"14252:9:101"},"variableNames":[{"name":"diff","nativeSrc":"14244:4:101","nodeType":"YulIdentifier","src":"14244:4:101"}]},{"body":{"nativeSrc":"14285:22:101","nodeType":"YulBlock","src":"14285:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"14287:16:101","nodeType":"YulIdentifier","src":"14287:16:101"},"nativeSrc":"14287:18:101","nodeType":"YulFunctionCall","src":"14287:18:101"},"nativeSrc":"14287:18:101","nodeType":"YulExpressionStatement","src":"14287:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"14276:4:101","nodeType":"YulIdentifier","src":"14276:4:101"},{"name":"x","nativeSrc":"14282:1:101","nodeType":"YulIdentifier","src":"14282:1:101"}],"functionName":{"name":"gt","nativeSrc":"14273:2:101","nodeType":"YulIdentifier","src":"14273:2:101"},"nativeSrc":"14273:11:101","nodeType":"YulFunctionCall","src":"14273:11:101"},"nativeSrc":"14270:37:101","nodeType":"YulIf","src":"14270:37:101"}]},"name":"checked_sub_t_uint256","nativeSrc":"14185:128:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"14216:1:101","nodeType":"YulTypedName","src":"14216:1:101","type":""},{"name":"y","nativeSrc":"14219:1:101","nodeType":"YulTypedName","src":"14219:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"14225:4:101","nodeType":"YulTypedName","src":"14225:4:101","type":""}],"src":"14185:128:101"},{"body":{"nativeSrc":"14448:201:101","nodeType":"YulBlock","src":"14448:201:101","statements":[{"body":{"nativeSrc":"14486:16:101","nodeType":"YulBlock","src":"14486:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14495:1:101","nodeType":"YulLiteral","src":"14495:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"14498:1:101","nodeType":"YulLiteral","src":"14498:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14488:6:101","nodeType":"YulIdentifier","src":"14488:6:101"},"nativeSrc":"14488:12:101","nodeType":"YulFunctionCall","src":"14488:12:101"},"nativeSrc":"14488:12:101","nodeType":"YulExpressionStatement","src":"14488:12:101"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"14464:10:101","nodeType":"YulIdentifier","src":"14464:10:101"},{"name":"endIndex","nativeSrc":"14476:8:101","nodeType":"YulIdentifier","src":"14476:8:101"}],"functionName":{"name":"gt","nativeSrc":"14461:2:101","nodeType":"YulIdentifier","src":"14461:2:101"},"nativeSrc":"14461:24:101","nodeType":"YulFunctionCall","src":"14461:24:101"},"nativeSrc":"14458:44:101","nodeType":"YulIf","src":"14458:44:101"},{"body":{"nativeSrc":"14535:16:101","nodeType":"YulBlock","src":"14535:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14544:1:101","nodeType":"YulLiteral","src":"14544:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"14547:1:101","nodeType":"YulLiteral","src":"14547:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14537:6:101","nodeType":"YulIdentifier","src":"14537:6:101"},"nativeSrc":"14537:12:101","nodeType":"YulFunctionCall","src":"14537:12:101"},"nativeSrc":"14537:12:101","nodeType":"YulExpressionStatement","src":"14537:12:101"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"14517:8:101","nodeType":"YulIdentifier","src":"14517:8:101"},{"name":"length","nativeSrc":"14527:6:101","nodeType":"YulIdentifier","src":"14527:6:101"}],"functionName":{"name":"gt","nativeSrc":"14514:2:101","nodeType":"YulIdentifier","src":"14514:2:101"},"nativeSrc":"14514:20:101","nodeType":"YulFunctionCall","src":"14514:20:101"},"nativeSrc":"14511:40:101","nodeType":"YulIf","src":"14511:40:101"},{"nativeSrc":"14560:36:101","nodeType":"YulAssignment","src":"14560:36:101","value":{"arguments":[{"name":"offset","nativeSrc":"14577:6:101","nodeType":"YulIdentifier","src":"14577:6:101"},{"name":"startIndex","nativeSrc":"14585:10:101","nodeType":"YulIdentifier","src":"14585:10:101"}],"functionName":{"name":"add","nativeSrc":"14573:3:101","nodeType":"YulIdentifier","src":"14573:3:101"},"nativeSrc":"14573:23:101","nodeType":"YulFunctionCall","src":"14573:23:101"},"variableNames":[{"name":"offsetOut","nativeSrc":"14560:9:101","nodeType":"YulIdentifier","src":"14560:9:101"}]},{"nativeSrc":"14605:38:101","nodeType":"YulAssignment","src":"14605:38:101","value":{"arguments":[{"name":"endIndex","nativeSrc":"14622:8:101","nodeType":"YulIdentifier","src":"14622:8:101"},{"name":"startIndex","nativeSrc":"14632:10:101","nodeType":"YulIdentifier","src":"14632:10:101"}],"functionName":{"name":"sub","nativeSrc":"14618:3:101","nodeType":"YulIdentifier","src":"14618:3:101"},"nativeSrc":"14618:25:101","nodeType":"YulFunctionCall","src":"14618:25:101"},"variableNames":[{"name":"lengthOut","nativeSrc":"14605:9:101","nodeType":"YulIdentifier","src":"14605:9:101"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"14318:331:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"14382:6:101","nodeType":"YulTypedName","src":"14382:6:101","type":""},{"name":"length","nativeSrc":"14390:6:101","nodeType":"YulTypedName","src":"14390:6:101","type":""},{"name":"startIndex","nativeSrc":"14398:10:101","nodeType":"YulTypedName","src":"14398:10:101","type":""},{"name":"endIndex","nativeSrc":"14410:8:101","nodeType":"YulTypedName","src":"14410:8:101","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"14423:9:101","nodeType":"YulTypedName","src":"14423:9:101","type":""},{"name":"lengthOut","nativeSrc":"14434:9:101","nodeType":"YulTypedName","src":"14434:9:101","type":""}],"src":"14318:331:101"},{"body":{"nativeSrc":"14686:95:101","nodeType":"YulBlock","src":"14686:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14703:1:101","nodeType":"YulLiteral","src":"14703:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"14710:3:101","nodeType":"YulLiteral","src":"14710:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"14715:10:101","nodeType":"YulLiteral","src":"14715:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"14706:3:101","nodeType":"YulIdentifier","src":"14706:3:101"},"nativeSrc":"14706:20:101","nodeType":"YulFunctionCall","src":"14706:20:101"}],"functionName":{"name":"mstore","nativeSrc":"14696:6:101","nodeType":"YulIdentifier","src":"14696:6:101"},"nativeSrc":"14696:31:101","nodeType":"YulFunctionCall","src":"14696:31:101"},"nativeSrc":"14696:31:101","nodeType":"YulExpressionStatement","src":"14696:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14743:1:101","nodeType":"YulLiteral","src":"14743:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"14746:4:101","nodeType":"YulLiteral","src":"14746:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"14736:6:101","nodeType":"YulIdentifier","src":"14736:6:101"},"nativeSrc":"14736:15:101","nodeType":"YulFunctionCall","src":"14736:15:101"},"nativeSrc":"14736:15:101","nodeType":"YulExpressionStatement","src":"14736:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14767:1:101","nodeType":"YulLiteral","src":"14767:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"14770:4:101","nodeType":"YulLiteral","src":"14770:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"14760:6:101","nodeType":"YulIdentifier","src":"14760:6:101"},"nativeSrc":"14760:15:101","nodeType":"YulFunctionCall","src":"14760:15:101"},"nativeSrc":"14760:15:101","nodeType":"YulExpressionStatement","src":"14760:15:101"}]},"name":"panic_error_0x41","nativeSrc":"14654:127:101","nodeType":"YulFunctionDefinition","src":"14654:127:101"},{"body":{"nativeSrc":"14880:427:101","nodeType":"YulBlock","src":"14880:427:101","statements":[{"nativeSrc":"14890:51:101","nodeType":"YulVariableDeclaration","src":"14890:51:101","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"14929:11:101","nodeType":"YulIdentifier","src":"14929:11:101"}],"functionName":{"name":"calldataload","nativeSrc":"14916:12:101","nodeType":"YulIdentifier","src":"14916:12:101"},"nativeSrc":"14916:25:101","nodeType":"YulFunctionCall","src":"14916:25:101"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"14894:18:101","nodeType":"YulTypedName","src":"14894:18:101","type":""}]},{"body":{"nativeSrc":"15030:16:101","nodeType":"YulBlock","src":"15030:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15039:1:101","nodeType":"YulLiteral","src":"15039:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"15042:1:101","nodeType":"YulLiteral","src":"15042:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15032:6:101","nodeType":"YulIdentifier","src":"15032:6:101"},"nativeSrc":"15032:12:101","nodeType":"YulFunctionCall","src":"15032:12:101"},"nativeSrc":"15032:12:101","nodeType":"YulExpressionStatement","src":"15032:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"14964:18:101","nodeType":"YulIdentifier","src":"14964:18:101"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"14992:12:101","nodeType":"YulIdentifier","src":"14992:12:101"},"nativeSrc":"14992:14:101","nodeType":"YulFunctionCall","src":"14992:14:101"},{"name":"base_ref","nativeSrc":"15008:8:101","nodeType":"YulIdentifier","src":"15008:8:101"}],"functionName":{"name":"sub","nativeSrc":"14988:3:101","nodeType":"YulIdentifier","src":"14988:3:101"},"nativeSrc":"14988:29:101","nodeType":"YulFunctionCall","src":"14988:29:101"},{"arguments":[{"kind":"number","nativeSrc":"15023:2:101","nodeType":"YulLiteral","src":"15023:2:101","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"15019:3:101","nodeType":"YulIdentifier","src":"15019:3:101"},"nativeSrc":"15019:7:101","nodeType":"YulFunctionCall","src":"15019:7:101"}],"functionName":{"name":"add","nativeSrc":"14984:3:101","nodeType":"YulIdentifier","src":"14984:3:101"},"nativeSrc":"14984:43:101","nodeType":"YulFunctionCall","src":"14984:43:101"}],"functionName":{"name":"slt","nativeSrc":"14960:3:101","nodeType":"YulIdentifier","src":"14960:3:101"},"nativeSrc":"14960:68:101","nodeType":"YulFunctionCall","src":"14960:68:101"}],"functionName":{"name":"iszero","nativeSrc":"14953:6:101","nodeType":"YulIdentifier","src":"14953:6:101"},"nativeSrc":"14953:76:101","nodeType":"YulFunctionCall","src":"14953:76:101"},"nativeSrc":"14950:96:101","nodeType":"YulIf","src":"14950:96:101"},{"nativeSrc":"15055:47:101","nodeType":"YulVariableDeclaration","src":"15055:47:101","value":{"arguments":[{"name":"base_ref","nativeSrc":"15073:8:101","nodeType":"YulIdentifier","src":"15073:8:101"},{"name":"rel_offset_of_tail","nativeSrc":"15083:18:101","nodeType":"YulIdentifier","src":"15083:18:101"}],"functionName":{"name":"add","nativeSrc":"15069:3:101","nodeType":"YulIdentifier","src":"15069:3:101"},"nativeSrc":"15069:33:101","nodeType":"YulFunctionCall","src":"15069:33:101"},"variables":[{"name":"addr_1","nativeSrc":"15059:6:101","nodeType":"YulTypedName","src":"15059:6:101","type":""}]},{"nativeSrc":"15111:30:101","nodeType":"YulAssignment","src":"15111:30:101","value":{"arguments":[{"name":"addr_1","nativeSrc":"15134:6:101","nodeType":"YulIdentifier","src":"15134:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"15121:12:101","nodeType":"YulIdentifier","src":"15121:12:101"},"nativeSrc":"15121:20:101","nodeType":"YulFunctionCall","src":"15121:20:101"},"variableNames":[{"name":"length","nativeSrc":"15111:6:101","nodeType":"YulIdentifier","src":"15111:6:101"}]},{"body":{"nativeSrc":"15184:16:101","nodeType":"YulBlock","src":"15184:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15193:1:101","nodeType":"YulLiteral","src":"15193:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"15196:1:101","nodeType":"YulLiteral","src":"15196:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15186:6:101","nodeType":"YulIdentifier","src":"15186:6:101"},"nativeSrc":"15186:12:101","nodeType":"YulFunctionCall","src":"15186:12:101"},"nativeSrc":"15186:12:101","nodeType":"YulExpressionStatement","src":"15186:12:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"15156:6:101","nodeType":"YulIdentifier","src":"15156:6:101"},{"kind":"number","nativeSrc":"15164:18:101","nodeType":"YulLiteral","src":"15164:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"15153:2:101","nodeType":"YulIdentifier","src":"15153:2:101"},"nativeSrc":"15153:30:101","nodeType":"YulFunctionCall","src":"15153:30:101"},"nativeSrc":"15150:50:101","nodeType":"YulIf","src":"15150:50:101"},{"nativeSrc":"15209:25:101","nodeType":"YulAssignment","src":"15209:25:101","value":{"arguments":[{"name":"addr_1","nativeSrc":"15221:6:101","nodeType":"YulIdentifier","src":"15221:6:101"},{"kind":"number","nativeSrc":"15229:4:101","nodeType":"YulLiteral","src":"15229:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15217:3:101","nodeType":"YulIdentifier","src":"15217:3:101"},"nativeSrc":"15217:17:101","nodeType":"YulFunctionCall","src":"15217:17:101"},"variableNames":[{"name":"addr","nativeSrc":"15209:4:101","nodeType":"YulIdentifier","src":"15209:4:101"}]},{"body":{"nativeSrc":"15285:16:101","nodeType":"YulBlock","src":"15285:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15294:1:101","nodeType":"YulLiteral","src":"15294:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"15297:1:101","nodeType":"YulLiteral","src":"15297:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15287:6:101","nodeType":"YulIdentifier","src":"15287:6:101"},"nativeSrc":"15287:12:101","nodeType":"YulFunctionCall","src":"15287:12:101"},"nativeSrc":"15287:12:101","nodeType":"YulExpressionStatement","src":"15287:12:101"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"15250:4:101","nodeType":"YulIdentifier","src":"15250:4:101"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"15260:12:101","nodeType":"YulIdentifier","src":"15260:12:101"},"nativeSrc":"15260:14:101","nodeType":"YulFunctionCall","src":"15260:14:101"},{"name":"length","nativeSrc":"15276:6:101","nodeType":"YulIdentifier","src":"15276:6:101"}],"functionName":{"name":"sub","nativeSrc":"15256:3:101","nodeType":"YulIdentifier","src":"15256:3:101"},"nativeSrc":"15256:27:101","nodeType":"YulFunctionCall","src":"15256:27:101"}],"functionName":{"name":"sgt","nativeSrc":"15246:3:101","nodeType":"YulIdentifier","src":"15246:3:101"},"nativeSrc":"15246:38:101","nodeType":"YulFunctionCall","src":"15246:38:101"},"nativeSrc":"15243:58:101","nodeType":"YulIf","src":"15243:58:101"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"14786:521:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"14837:8:101","nodeType":"YulTypedName","src":"14837:8:101","type":""},{"name":"ptr_to_tail","nativeSrc":"14847:11:101","nodeType":"YulTypedName","src":"14847:11:101","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"14863:4:101","nodeType":"YulTypedName","src":"14863:4:101","type":""},{"name":"length","nativeSrc":"14869:6:101","nodeType":"YulTypedName","src":"14869:6:101","type":""}],"src":"14786:521:101"},{"body":{"nativeSrc":"15505:261:101","nodeType":"YulBlock","src":"15505:261:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"15528:3:101","nodeType":"YulIdentifier","src":"15528:3:101"},{"name":"value0","nativeSrc":"15533:6:101","nodeType":"YulIdentifier","src":"15533:6:101"},{"name":"value1","nativeSrc":"15541:6:101","nodeType":"YulIdentifier","src":"15541:6:101"}],"functionName":{"name":"calldatacopy","nativeSrc":"15515:12:101","nodeType":"YulIdentifier","src":"15515:12:101"},"nativeSrc":"15515:33:101","nodeType":"YulFunctionCall","src":"15515:33:101"},"nativeSrc":"15515:33:101","nodeType":"YulExpressionStatement","src":"15515:33:101"},{"nativeSrc":"15557:26:101","nodeType":"YulVariableDeclaration","src":"15557:26:101","value":{"arguments":[{"name":"pos","nativeSrc":"15571:3:101","nodeType":"YulIdentifier","src":"15571:3:101"},{"name":"value1","nativeSrc":"15576:6:101","nodeType":"YulIdentifier","src":"15576:6:101"}],"functionName":{"name":"add","nativeSrc":"15567:3:101","nodeType":"YulIdentifier","src":"15567:3:101"},"nativeSrc":"15567:16:101","nodeType":"YulFunctionCall","src":"15567:16:101"},"variables":[{"name":"_1","nativeSrc":"15561:2:101","nodeType":"YulTypedName","src":"15561:2:101","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"15599:2:101","nodeType":"YulIdentifier","src":"15599:2:101"},{"kind":"number","nativeSrc":"15603:1:101","nodeType":"YulLiteral","src":"15603:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"15592:6:101","nodeType":"YulIdentifier","src":"15592:6:101"},"nativeSrc":"15592:13:101","nodeType":"YulFunctionCall","src":"15592:13:101"},"nativeSrc":"15592:13:101","nodeType":"YulExpressionStatement","src":"15592:13:101"},{"nativeSrc":"15614:27:101","nodeType":"YulVariableDeclaration","src":"15614:27:101","value":{"arguments":[{"name":"value2","nativeSrc":"15634:6:101","nodeType":"YulIdentifier","src":"15634:6:101"}],"functionName":{"name":"mload","nativeSrc":"15628:5:101","nodeType":"YulIdentifier","src":"15628:5:101"},"nativeSrc":"15628:13:101","nodeType":"YulFunctionCall","src":"15628:13:101"},"variables":[{"name":"length","nativeSrc":"15618:6:101","nodeType":"YulTypedName","src":"15618:6:101","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"15656:2:101","nodeType":"YulIdentifier","src":"15656:2:101"},{"arguments":[{"name":"value2","nativeSrc":"15664:6:101","nodeType":"YulIdentifier","src":"15664:6:101"},{"kind":"number","nativeSrc":"15672:4:101","nodeType":"YulLiteral","src":"15672:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15660:3:101","nodeType":"YulIdentifier","src":"15660:3:101"},"nativeSrc":"15660:17:101","nodeType":"YulFunctionCall","src":"15660:17:101"},{"name":"length","nativeSrc":"15679:6:101","nodeType":"YulIdentifier","src":"15679:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"15650:5:101","nodeType":"YulIdentifier","src":"15650:5:101"},"nativeSrc":"15650:36:101","nodeType":"YulFunctionCall","src":"15650:36:101"},"nativeSrc":"15650:36:101","nodeType":"YulExpressionStatement","src":"15650:36:101"},{"nativeSrc":"15695:25:101","nodeType":"YulVariableDeclaration","src":"15695:25:101","value":{"arguments":[{"name":"_1","nativeSrc":"15709:2:101","nodeType":"YulIdentifier","src":"15709:2:101"},{"name":"length","nativeSrc":"15713:6:101","nodeType":"YulIdentifier","src":"15713:6:101"}],"functionName":{"name":"add","nativeSrc":"15705:3:101","nodeType":"YulIdentifier","src":"15705:3:101"},"nativeSrc":"15705:15:101","nodeType":"YulFunctionCall","src":"15705:15:101"},"variables":[{"name":"_2","nativeSrc":"15699:2:101","nodeType":"YulTypedName","src":"15699:2:101","type":""}]},{"expression":{"arguments":[{"name":"_2","nativeSrc":"15736:2:101","nodeType":"YulIdentifier","src":"15736:2:101"},{"kind":"number","nativeSrc":"15740:1:101","nodeType":"YulLiteral","src":"15740:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"15729:6:101","nodeType":"YulIdentifier","src":"15729:6:101"},"nativeSrc":"15729:13:101","nodeType":"YulFunctionCall","src":"15729:13:101"},"nativeSrc":"15729:13:101","nodeType":"YulExpressionStatement","src":"15729:13:101"},{"nativeSrc":"15751:9:101","nodeType":"YulAssignment","src":"15751:9:101","value":{"name":"_2","nativeSrc":"15758:2:101","nodeType":"YulIdentifier","src":"15758:2:101"},"variableNames":[{"name":"end","nativeSrc":"15751:3:101","nodeType":"YulIdentifier","src":"15751:3:101"}]}]},"name":"abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"15312:454:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"15465:3:101","nodeType":"YulTypedName","src":"15465:3:101","type":""},{"name":"value2","nativeSrc":"15470:6:101","nodeType":"YulTypedName","src":"15470:6:101","type":""},{"name":"value1","nativeSrc":"15478:6:101","nodeType":"YulTypedName","src":"15478:6:101","type":""},{"name":"value0","nativeSrc":"15486:6:101","nodeType":"YulTypedName","src":"15486:6:101","type":""}],"returnVariables":[{"name":"end","nativeSrc":"15497:3:101","nodeType":"YulTypedName","src":"15497:3:101","type":""}],"src":"15312:454:101"},{"body":{"nativeSrc":"15954:311:101","nodeType":"YulBlock","src":"15954:311:101","statements":[{"nativeSrc":"15964:27:101","nodeType":"YulAssignment","src":"15964:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"15976:9:101","nodeType":"YulIdentifier","src":"15976:9:101"},{"kind":"number","nativeSrc":"15987:3:101","nodeType":"YulLiteral","src":"15987:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"15972:3:101","nodeType":"YulIdentifier","src":"15972:3:101"},"nativeSrc":"15972:19:101","nodeType":"YulFunctionCall","src":"15972:19:101"},"variableNames":[{"name":"tail","nativeSrc":"15964:4:101","nodeType":"YulIdentifier","src":"15964:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16007:9:101","nodeType":"YulIdentifier","src":"16007:9:101"},{"arguments":[{"name":"value0","nativeSrc":"16022:6:101","nodeType":"YulIdentifier","src":"16022:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16038:3:101","nodeType":"YulLiteral","src":"16038:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"16043:1:101","nodeType":"YulLiteral","src":"16043:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16034:3:101","nodeType":"YulIdentifier","src":"16034:3:101"},"nativeSrc":"16034:11:101","nodeType":"YulFunctionCall","src":"16034:11:101"},{"kind":"number","nativeSrc":"16047:1:101","nodeType":"YulLiteral","src":"16047:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16030:3:101","nodeType":"YulIdentifier","src":"16030:3:101"},"nativeSrc":"16030:19:101","nodeType":"YulFunctionCall","src":"16030:19:101"}],"functionName":{"name":"and","nativeSrc":"16018:3:101","nodeType":"YulIdentifier","src":"16018:3:101"},"nativeSrc":"16018:32:101","nodeType":"YulFunctionCall","src":"16018:32:101"}],"functionName":{"name":"mstore","nativeSrc":"16000:6:101","nodeType":"YulIdentifier","src":"16000:6:101"},"nativeSrc":"16000:51:101","nodeType":"YulFunctionCall","src":"16000:51:101"},"nativeSrc":"16000:51:101","nodeType":"YulExpressionStatement","src":"16000:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16071:9:101","nodeType":"YulIdentifier","src":"16071:9:101"},{"kind":"number","nativeSrc":"16082:2:101","nodeType":"YulLiteral","src":"16082:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16067:3:101","nodeType":"YulIdentifier","src":"16067:3:101"},"nativeSrc":"16067:18:101","nodeType":"YulFunctionCall","src":"16067:18:101"},{"arguments":[{"name":"value1","nativeSrc":"16091:6:101","nodeType":"YulIdentifier","src":"16091:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16107:3:101","nodeType":"YulLiteral","src":"16107:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"16112:1:101","nodeType":"YulLiteral","src":"16112:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16103:3:101","nodeType":"YulIdentifier","src":"16103:3:101"},"nativeSrc":"16103:11:101","nodeType":"YulFunctionCall","src":"16103:11:101"},{"kind":"number","nativeSrc":"16116:1:101","nodeType":"YulLiteral","src":"16116:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16099:3:101","nodeType":"YulIdentifier","src":"16099:3:101"},"nativeSrc":"16099:19:101","nodeType":"YulFunctionCall","src":"16099:19:101"}],"functionName":{"name":"and","nativeSrc":"16087:3:101","nodeType":"YulIdentifier","src":"16087:3:101"},"nativeSrc":"16087:32:101","nodeType":"YulFunctionCall","src":"16087:32:101"}],"functionName":{"name":"mstore","nativeSrc":"16060:6:101","nodeType":"YulIdentifier","src":"16060:6:101"},"nativeSrc":"16060:60:101","nodeType":"YulFunctionCall","src":"16060:60:101"},"nativeSrc":"16060:60:101","nodeType":"YulExpressionStatement","src":"16060:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16140:9:101","nodeType":"YulIdentifier","src":"16140:9:101"},{"kind":"number","nativeSrc":"16151:2:101","nodeType":"YulLiteral","src":"16151:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16136:3:101","nodeType":"YulIdentifier","src":"16136:3:101"},"nativeSrc":"16136:18:101","nodeType":"YulFunctionCall","src":"16136:18:101"},{"arguments":[{"name":"value2","nativeSrc":"16160:6:101","nodeType":"YulIdentifier","src":"16160:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16176:3:101","nodeType":"YulLiteral","src":"16176:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"16181:1:101","nodeType":"YulLiteral","src":"16181:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16172:3:101","nodeType":"YulIdentifier","src":"16172:3:101"},"nativeSrc":"16172:11:101","nodeType":"YulFunctionCall","src":"16172:11:101"},{"kind":"number","nativeSrc":"16185:1:101","nodeType":"YulLiteral","src":"16185:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16168:3:101","nodeType":"YulIdentifier","src":"16168:3:101"},"nativeSrc":"16168:19:101","nodeType":"YulFunctionCall","src":"16168:19:101"}],"functionName":{"name":"and","nativeSrc":"16156:3:101","nodeType":"YulIdentifier","src":"16156:3:101"},"nativeSrc":"16156:32:101","nodeType":"YulFunctionCall","src":"16156:32:101"}],"functionName":{"name":"mstore","nativeSrc":"16129:6:101","nodeType":"YulIdentifier","src":"16129:6:101"},"nativeSrc":"16129:60:101","nodeType":"YulFunctionCall","src":"16129:60:101"},"nativeSrc":"16129:60:101","nodeType":"YulExpressionStatement","src":"16129:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16209:9:101","nodeType":"YulIdentifier","src":"16209:9:101"},{"kind":"number","nativeSrc":"16220:2:101","nodeType":"YulLiteral","src":"16220:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16205:3:101","nodeType":"YulIdentifier","src":"16205:3:101"},"nativeSrc":"16205:18:101","nodeType":"YulFunctionCall","src":"16205:18:101"},{"arguments":[{"name":"value3","nativeSrc":"16229:6:101","nodeType":"YulIdentifier","src":"16229:6:101"},{"arguments":[{"kind":"number","nativeSrc":"16241:3:101","nodeType":"YulLiteral","src":"16241:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"16246:10:101","nodeType":"YulLiteral","src":"16246:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"16237:3:101","nodeType":"YulIdentifier","src":"16237:3:101"},"nativeSrc":"16237:20:101","nodeType":"YulFunctionCall","src":"16237:20:101"}],"functionName":{"name":"and","nativeSrc":"16225:3:101","nodeType":"YulIdentifier","src":"16225:3:101"},"nativeSrc":"16225:33:101","nodeType":"YulFunctionCall","src":"16225:33:101"}],"functionName":{"name":"mstore","nativeSrc":"16198:6:101","nodeType":"YulIdentifier","src":"16198:6:101"},"nativeSrc":"16198:61:101","nodeType":"YulFunctionCall","src":"16198:61:101"},"nativeSrc":"16198:61:101","nodeType":"YulExpressionStatement","src":"16198:61:101"}]},"name":"abi_encode_tuple_t_address_t_address_t_address_t_bytes4__to_t_address_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"15771:494:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15899:9:101","nodeType":"YulTypedName","src":"15899:9:101","type":""},{"name":"value3","nativeSrc":"15910:6:101","nodeType":"YulTypedName","src":"15910:6:101","type":""},{"name":"value2","nativeSrc":"15918:6:101","nodeType":"YulTypedName","src":"15918:6:101","type":""},{"name":"value1","nativeSrc":"15926:6:101","nodeType":"YulTypedName","src":"15926:6:101","type":""},{"name":"value0","nativeSrc":"15934:6:101","nodeType":"YulTypedName","src":"15934:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15945:4:101","nodeType":"YulTypedName","src":"15945:4:101","type":""}],"src":"15771:494:101"},{"body":{"nativeSrc":"16317:132:101","nodeType":"YulBlock","src":"16317:132:101","statements":[{"nativeSrc":"16327:58:101","nodeType":"YulAssignment","src":"16327:58:101","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"16342:1:101","nodeType":"YulIdentifier","src":"16342:1:101"},{"kind":"number","nativeSrc":"16345:14:101","nodeType":"YulLiteral","src":"16345:14:101","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"16338:3:101","nodeType":"YulIdentifier","src":"16338:3:101"},"nativeSrc":"16338:22:101","nodeType":"YulFunctionCall","src":"16338:22:101"},{"arguments":[{"name":"y","nativeSrc":"16366:1:101","nodeType":"YulIdentifier","src":"16366:1:101"},{"kind":"number","nativeSrc":"16369:14:101","nodeType":"YulLiteral","src":"16369:14:101","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"16362:3:101","nodeType":"YulIdentifier","src":"16362:3:101"},"nativeSrc":"16362:22:101","nodeType":"YulFunctionCall","src":"16362:22:101"}],"functionName":{"name":"add","nativeSrc":"16334:3:101","nodeType":"YulIdentifier","src":"16334:3:101"},"nativeSrc":"16334:51:101","nodeType":"YulFunctionCall","src":"16334:51:101"},"variableNames":[{"name":"sum","nativeSrc":"16327:3:101","nodeType":"YulIdentifier","src":"16327:3:101"}]},{"body":{"nativeSrc":"16421:22:101","nodeType":"YulBlock","src":"16421:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"16423:16:101","nodeType":"YulIdentifier","src":"16423:16:101"},"nativeSrc":"16423:18:101","nodeType":"YulFunctionCall","src":"16423:18:101"},"nativeSrc":"16423:18:101","nodeType":"YulExpressionStatement","src":"16423:18:101"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"16400:3:101","nodeType":"YulIdentifier","src":"16400:3:101"},{"kind":"number","nativeSrc":"16405:14:101","nodeType":"YulLiteral","src":"16405:14:101","type":"","value":"0xffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"16397:2:101","nodeType":"YulIdentifier","src":"16397:2:101"},"nativeSrc":"16397:23:101","nodeType":"YulFunctionCall","src":"16397:23:101"},"nativeSrc":"16394:49:101","nodeType":"YulIf","src":"16394:49:101"}]},"name":"checked_add_t_uint48","nativeSrc":"16270:179:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"16300:1:101","nodeType":"YulTypedName","src":"16300:1:101","type":""},{"name":"y","nativeSrc":"16303:1:101","nodeType":"YulTypedName","src":"16303:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"16309:3:101","nodeType":"YulTypedName","src":"16309:3:101","type":""}],"src":"16270:179:101"},{"body":{"nativeSrc":"16665:320:101","nodeType":"YulBlock","src":"16665:320:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16682:9:101","nodeType":"YulIdentifier","src":"16682:9:101"},{"arguments":[{"name":"value0","nativeSrc":"16697:6:101","nodeType":"YulIdentifier","src":"16697:6:101"},{"kind":"number","nativeSrc":"16705:14:101","nodeType":"YulLiteral","src":"16705:14:101","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"16693:3:101","nodeType":"YulIdentifier","src":"16693:3:101"},"nativeSrc":"16693:27:101","nodeType":"YulFunctionCall","src":"16693:27:101"}],"functionName":{"name":"mstore","nativeSrc":"16675:6:101","nodeType":"YulIdentifier","src":"16675:6:101"},"nativeSrc":"16675:46:101","nodeType":"YulFunctionCall","src":"16675:46:101"},"nativeSrc":"16675:46:101","nodeType":"YulExpressionStatement","src":"16675:46:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16741:9:101","nodeType":"YulIdentifier","src":"16741:9:101"},{"kind":"number","nativeSrc":"16752:2:101","nodeType":"YulLiteral","src":"16752:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16737:3:101","nodeType":"YulIdentifier","src":"16737:3:101"},"nativeSrc":"16737:18:101","nodeType":"YulFunctionCall","src":"16737:18:101"},{"arguments":[{"name":"value1","nativeSrc":"16761:6:101","nodeType":"YulIdentifier","src":"16761:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16777:3:101","nodeType":"YulLiteral","src":"16777:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"16782:1:101","nodeType":"YulLiteral","src":"16782:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16773:3:101","nodeType":"YulIdentifier","src":"16773:3:101"},"nativeSrc":"16773:11:101","nodeType":"YulFunctionCall","src":"16773:11:101"},{"kind":"number","nativeSrc":"16786:1:101","nodeType":"YulLiteral","src":"16786:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16769:3:101","nodeType":"YulIdentifier","src":"16769:3:101"},"nativeSrc":"16769:19:101","nodeType":"YulFunctionCall","src":"16769:19:101"}],"functionName":{"name":"and","nativeSrc":"16757:3:101","nodeType":"YulIdentifier","src":"16757:3:101"},"nativeSrc":"16757:32:101","nodeType":"YulFunctionCall","src":"16757:32:101"}],"functionName":{"name":"mstore","nativeSrc":"16730:6:101","nodeType":"YulIdentifier","src":"16730:6:101"},"nativeSrc":"16730:60:101","nodeType":"YulFunctionCall","src":"16730:60:101"},"nativeSrc":"16730:60:101","nodeType":"YulExpressionStatement","src":"16730:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16810:9:101","nodeType":"YulIdentifier","src":"16810:9:101"},{"kind":"number","nativeSrc":"16821:2:101","nodeType":"YulLiteral","src":"16821:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16806:3:101","nodeType":"YulIdentifier","src":"16806:3:101"},"nativeSrc":"16806:18:101","nodeType":"YulFunctionCall","src":"16806:18:101"},{"arguments":[{"name":"value2","nativeSrc":"16830:6:101","nodeType":"YulIdentifier","src":"16830:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16846:3:101","nodeType":"YulLiteral","src":"16846:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"16851:1:101","nodeType":"YulLiteral","src":"16851:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16842:3:101","nodeType":"YulIdentifier","src":"16842:3:101"},"nativeSrc":"16842:11:101","nodeType":"YulFunctionCall","src":"16842:11:101"},{"kind":"number","nativeSrc":"16855:1:101","nodeType":"YulLiteral","src":"16855:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16838:3:101","nodeType":"YulIdentifier","src":"16838:3:101"},"nativeSrc":"16838:19:101","nodeType":"YulFunctionCall","src":"16838:19:101"}],"functionName":{"name":"and","nativeSrc":"16826:3:101","nodeType":"YulIdentifier","src":"16826:3:101"},"nativeSrc":"16826:32:101","nodeType":"YulFunctionCall","src":"16826:32:101"}],"functionName":{"name":"mstore","nativeSrc":"16799:6:101","nodeType":"YulIdentifier","src":"16799:6:101"},"nativeSrc":"16799:60:101","nodeType":"YulFunctionCall","src":"16799:60:101"},"nativeSrc":"16799:60:101","nodeType":"YulExpressionStatement","src":"16799:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16879:9:101","nodeType":"YulIdentifier","src":"16879:9:101"},{"kind":"number","nativeSrc":"16890:2:101","nodeType":"YulLiteral","src":"16890:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16875:3:101","nodeType":"YulIdentifier","src":"16875:3:101"},"nativeSrc":"16875:18:101","nodeType":"YulFunctionCall","src":"16875:18:101"},{"kind":"number","nativeSrc":"16895:3:101","nodeType":"YulLiteral","src":"16895:3:101","type":"","value":"128"}],"functionName":{"name":"mstore","nativeSrc":"16868:6:101","nodeType":"YulIdentifier","src":"16868:6:101"},"nativeSrc":"16868:31:101","nodeType":"YulFunctionCall","src":"16868:31:101"},"nativeSrc":"16868:31:101","nodeType":"YulExpressionStatement","src":"16868:31:101"},{"nativeSrc":"16908:71:101","nodeType":"YulAssignment","src":"16908:71:101","value":{"arguments":[{"name":"value3","nativeSrc":"16943:6:101","nodeType":"YulIdentifier","src":"16943:6:101"},{"name":"value4","nativeSrc":"16951:6:101","nodeType":"YulIdentifier","src":"16951:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"16963:9:101","nodeType":"YulIdentifier","src":"16963:9:101"},{"kind":"number","nativeSrc":"16974:3:101","nodeType":"YulLiteral","src":"16974:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"16959:3:101","nodeType":"YulIdentifier","src":"16959:3:101"},"nativeSrc":"16959:19:101","nodeType":"YulFunctionCall","src":"16959:19:101"}],"functionName":{"name":"abi_encode_string_calldata","nativeSrc":"16916:26:101","nodeType":"YulIdentifier","src":"16916:26:101"},"nativeSrc":"16916:63:101","nodeType":"YulFunctionCall","src":"16916:63:101"},"variableNames":[{"name":"tail","nativeSrc":"16908:4:101","nodeType":"YulIdentifier","src":"16908:4:101"}]}]},"name":"abi_encode_tuple_t_uint48_t_address_t_address_t_bytes_calldata_ptr__to_t_uint48_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"16454:531:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16602:9:101","nodeType":"YulTypedName","src":"16602:9:101","type":""},{"name":"value4","nativeSrc":"16613:6:101","nodeType":"YulTypedName","src":"16613:6:101","type":""},{"name":"value3","nativeSrc":"16621:6:101","nodeType":"YulTypedName","src":"16621:6:101","type":""},{"name":"value2","nativeSrc":"16629:6:101","nodeType":"YulTypedName","src":"16629:6:101","type":""},{"name":"value1","nativeSrc":"16637:6:101","nodeType":"YulTypedName","src":"16637:6:101","type":""},{"name":"value0","nativeSrc":"16645:6:101","nodeType":"YulTypedName","src":"16645:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16656:4:101","nodeType":"YulTypedName","src":"16656:4:101","type":""}],"src":"16454:531:101"},{"body":{"nativeSrc":"17117:170:101","nodeType":"YulBlock","src":"17117:170:101","statements":[{"nativeSrc":"17127:26:101","nodeType":"YulAssignment","src":"17127:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"17139:9:101","nodeType":"YulIdentifier","src":"17139:9:101"},{"kind":"number","nativeSrc":"17150:2:101","nodeType":"YulLiteral","src":"17150:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17135:3:101","nodeType":"YulIdentifier","src":"17135:3:101"},"nativeSrc":"17135:18:101","nodeType":"YulFunctionCall","src":"17135:18:101"},"variableNames":[{"name":"tail","nativeSrc":"17127:4:101","nodeType":"YulIdentifier","src":"17127:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17169:9:101","nodeType":"YulIdentifier","src":"17169:9:101"},{"arguments":[{"name":"value0","nativeSrc":"17184:6:101","nodeType":"YulIdentifier","src":"17184:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17200:3:101","nodeType":"YulLiteral","src":"17200:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"17205:1:101","nodeType":"YulLiteral","src":"17205:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"17196:3:101","nodeType":"YulIdentifier","src":"17196:3:101"},"nativeSrc":"17196:11:101","nodeType":"YulFunctionCall","src":"17196:11:101"},{"kind":"number","nativeSrc":"17209:1:101","nodeType":"YulLiteral","src":"17209:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"17192:3:101","nodeType":"YulIdentifier","src":"17192:3:101"},"nativeSrc":"17192:19:101","nodeType":"YulFunctionCall","src":"17192:19:101"}],"functionName":{"name":"and","nativeSrc":"17180:3:101","nodeType":"YulIdentifier","src":"17180:3:101"},"nativeSrc":"17180:32:101","nodeType":"YulFunctionCall","src":"17180:32:101"}],"functionName":{"name":"mstore","nativeSrc":"17162:6:101","nodeType":"YulIdentifier","src":"17162:6:101"},"nativeSrc":"17162:51:101","nodeType":"YulFunctionCall","src":"17162:51:101"},"nativeSrc":"17162:51:101","nodeType":"YulExpressionStatement","src":"17162:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17233:9:101","nodeType":"YulIdentifier","src":"17233:9:101"},{"kind":"number","nativeSrc":"17244:2:101","nodeType":"YulLiteral","src":"17244:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17229:3:101","nodeType":"YulIdentifier","src":"17229:3:101"},"nativeSrc":"17229:18:101","nodeType":"YulFunctionCall","src":"17229:18:101"},{"arguments":[{"name":"value1","nativeSrc":"17253:6:101","nodeType":"YulIdentifier","src":"17253:6:101"},{"kind":"number","nativeSrc":"17261:18:101","nodeType":"YulLiteral","src":"17261:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"17249:3:101","nodeType":"YulIdentifier","src":"17249:3:101"},"nativeSrc":"17249:31:101","nodeType":"YulFunctionCall","src":"17249:31:101"}],"functionName":{"name":"mstore","nativeSrc":"17222:6:101","nodeType":"YulIdentifier","src":"17222:6:101"},"nativeSrc":"17222:59:101","nodeType":"YulFunctionCall","src":"17222:59:101"},"nativeSrc":"17222:59:101","nodeType":"YulExpressionStatement","src":"17222:59:101"}]},"name":"abi_encode_tuple_t_address_t_uint64__to_t_address_t_uint64__fromStack_reversed","nativeSrc":"16990:297:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17078:9:101","nodeType":"YulTypedName","src":"17078:9:101","type":""},{"name":"value1","nativeSrc":"17089:6:101","nodeType":"YulTypedName","src":"17089:6:101","type":""},{"name":"value0","nativeSrc":"17097:6:101","nodeType":"YulTypedName","src":"17097:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17108:4:101","nodeType":"YulTypedName","src":"17108:4:101","type":""}],"src":"16990:297:101"},{"body":{"nativeSrc":"17391:103:101","nodeType":"YulBlock","src":"17391:103:101","statements":[{"nativeSrc":"17401:26:101","nodeType":"YulAssignment","src":"17401:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"17413:9:101","nodeType":"YulIdentifier","src":"17413:9:101"},{"kind":"number","nativeSrc":"17424:2:101","nodeType":"YulLiteral","src":"17424:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17409:3:101","nodeType":"YulIdentifier","src":"17409:3:101"},"nativeSrc":"17409:18:101","nodeType":"YulFunctionCall","src":"17409:18:101"},"variableNames":[{"name":"tail","nativeSrc":"17401:4:101","nodeType":"YulIdentifier","src":"17401:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17443:9:101","nodeType":"YulIdentifier","src":"17443:9:101"},{"arguments":[{"name":"value0","nativeSrc":"17458:6:101","nodeType":"YulIdentifier","src":"17458:6:101"},{"arguments":[{"kind":"number","nativeSrc":"17470:3:101","nodeType":"YulLiteral","src":"17470:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"17475:10:101","nodeType":"YulLiteral","src":"17475:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"17466:3:101","nodeType":"YulIdentifier","src":"17466:3:101"},"nativeSrc":"17466:20:101","nodeType":"YulFunctionCall","src":"17466:20:101"}],"functionName":{"name":"and","nativeSrc":"17454:3:101","nodeType":"YulIdentifier","src":"17454:3:101"},"nativeSrc":"17454:33:101","nodeType":"YulFunctionCall","src":"17454:33:101"}],"functionName":{"name":"mstore","nativeSrc":"17436:6:101","nodeType":"YulIdentifier","src":"17436:6:101"},"nativeSrc":"17436:52:101","nodeType":"YulFunctionCall","src":"17436:52:101"},"nativeSrc":"17436:52:101","nodeType":"YulExpressionStatement","src":"17436:52:101"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nativeSrc":"17292:202:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17360:9:101","nodeType":"YulTypedName","src":"17360:9:101","type":""},{"name":"value0","nativeSrc":"17371:6:101","nodeType":"YulTypedName","src":"17371:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17382:4:101","nodeType":"YulTypedName","src":"17382:4:101","type":""}],"src":"17292:202:101"},{"body":{"nativeSrc":"17599:238:101","nodeType":"YulBlock","src":"17599:238:101","statements":[{"nativeSrc":"17609:29:101","nodeType":"YulVariableDeclaration","src":"17609:29:101","value":{"arguments":[{"name":"array","nativeSrc":"17632:5:101","nodeType":"YulIdentifier","src":"17632:5:101"}],"functionName":{"name":"calldataload","nativeSrc":"17619:12:101","nodeType":"YulIdentifier","src":"17619:12:101"},"nativeSrc":"17619:19:101","nodeType":"YulFunctionCall","src":"17619:19:101"},"variables":[{"name":"_1","nativeSrc":"17613:2:101","nodeType":"YulTypedName","src":"17613:2:101","type":""}]},{"nativeSrc":"17647:38:101","nodeType":"YulAssignment","src":"17647:38:101","value":{"arguments":[{"name":"_1","nativeSrc":"17660:2:101","nodeType":"YulIdentifier","src":"17660:2:101"},{"arguments":[{"kind":"number","nativeSrc":"17668:3:101","nodeType":"YulLiteral","src":"17668:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"17673:10:101","nodeType":"YulLiteral","src":"17673:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"17664:3:101","nodeType":"YulIdentifier","src":"17664:3:101"},"nativeSrc":"17664:20:101","nodeType":"YulFunctionCall","src":"17664:20:101"}],"functionName":{"name":"and","nativeSrc":"17656:3:101","nodeType":"YulIdentifier","src":"17656:3:101"},"nativeSrc":"17656:29:101","nodeType":"YulFunctionCall","src":"17656:29:101"},"variableNames":[{"name":"value","nativeSrc":"17647:5:101","nodeType":"YulIdentifier","src":"17647:5:101"}]},{"body":{"nativeSrc":"17716:115:101","nodeType":"YulBlock","src":"17716:115:101","statements":[{"nativeSrc":"17730:91:101","nodeType":"YulAssignment","src":"17730:91:101","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"17747:2:101","nodeType":"YulIdentifier","src":"17747:2:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17759:1:101","nodeType":"YulLiteral","src":"17759:1:101","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"17766:1:101","nodeType":"YulLiteral","src":"17766:1:101","type":"","value":"4"},{"name":"len","nativeSrc":"17769:3:101","nodeType":"YulIdentifier","src":"17769:3:101"}],"functionName":{"name":"sub","nativeSrc":"17762:3:101","nodeType":"YulIdentifier","src":"17762:3:101"},"nativeSrc":"17762:11:101","nodeType":"YulFunctionCall","src":"17762:11:101"}],"functionName":{"name":"shl","nativeSrc":"17755:3:101","nodeType":"YulIdentifier","src":"17755:3:101"},"nativeSrc":"17755:19:101","nodeType":"YulFunctionCall","src":"17755:19:101"},{"arguments":[{"kind":"number","nativeSrc":"17780:3:101","nodeType":"YulLiteral","src":"17780:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"17785:10:101","nodeType":"YulLiteral","src":"17785:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"17776:3:101","nodeType":"YulIdentifier","src":"17776:3:101"},"nativeSrc":"17776:20:101","nodeType":"YulFunctionCall","src":"17776:20:101"}],"functionName":{"name":"shl","nativeSrc":"17751:3:101","nodeType":"YulIdentifier","src":"17751:3:101"},"nativeSrc":"17751:46:101","nodeType":"YulFunctionCall","src":"17751:46:101"}],"functionName":{"name":"and","nativeSrc":"17743:3:101","nodeType":"YulIdentifier","src":"17743:3:101"},"nativeSrc":"17743:55:101","nodeType":"YulFunctionCall","src":"17743:55:101"},{"arguments":[{"kind":"number","nativeSrc":"17804:3:101","nodeType":"YulLiteral","src":"17804:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"17809:10:101","nodeType":"YulLiteral","src":"17809:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"17800:3:101","nodeType":"YulIdentifier","src":"17800:3:101"},"nativeSrc":"17800:20:101","nodeType":"YulFunctionCall","src":"17800:20:101"}],"functionName":{"name":"and","nativeSrc":"17739:3:101","nodeType":"YulIdentifier","src":"17739:3:101"},"nativeSrc":"17739:82:101","nodeType":"YulFunctionCall","src":"17739:82:101"},"variableNames":[{"name":"value","nativeSrc":"17730:5:101","nodeType":"YulIdentifier","src":"17730:5:101"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"17700:3:101","nodeType":"YulIdentifier","src":"17700:3:101"},{"kind":"number","nativeSrc":"17705:1:101","nodeType":"YulLiteral","src":"17705:1:101","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"17697:2:101","nodeType":"YulIdentifier","src":"17697:2:101"},"nativeSrc":"17697:10:101","nodeType":"YulFunctionCall","src":"17697:10:101"},"nativeSrc":"17694:137:101","nodeType":"YulIf","src":"17694:137:101"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4","nativeSrc":"17499:338:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"17574:5:101","nodeType":"YulTypedName","src":"17574:5:101","type":""},{"name":"len","nativeSrc":"17581:3:101","nodeType":"YulTypedName","src":"17581:3:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"17589:5:101","nodeType":"YulTypedName","src":"17589:5:101","type":""}],"src":"17499:338:101"},{"body":{"nativeSrc":"17971:119:101","nodeType":"YulBlock","src":"17971:119:101","statements":[{"nativeSrc":"17981:26:101","nodeType":"YulAssignment","src":"17981:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"17993:9:101","nodeType":"YulIdentifier","src":"17993:9:101"},{"kind":"number","nativeSrc":"18004:2:101","nodeType":"YulLiteral","src":"18004:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17989:3:101","nodeType":"YulIdentifier","src":"17989:3:101"},"nativeSrc":"17989:18:101","nodeType":"YulFunctionCall","src":"17989:18:101"},"variableNames":[{"name":"tail","nativeSrc":"17981:4:101","nodeType":"YulIdentifier","src":"17981:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18023:9:101","nodeType":"YulIdentifier","src":"18023:9:101"},{"name":"value0","nativeSrc":"18034:6:101","nodeType":"YulIdentifier","src":"18034:6:101"}],"functionName":{"name":"mstore","nativeSrc":"18016:6:101","nodeType":"YulIdentifier","src":"18016:6:101"},"nativeSrc":"18016:25:101","nodeType":"YulFunctionCall","src":"18016:25:101"},"nativeSrc":"18016:25:101","nodeType":"YulExpressionStatement","src":"18016:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18061:9:101","nodeType":"YulIdentifier","src":"18061:9:101"},{"kind":"number","nativeSrc":"18072:2:101","nodeType":"YulLiteral","src":"18072:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18057:3:101","nodeType":"YulIdentifier","src":"18057:3:101"},"nativeSrc":"18057:18:101","nodeType":"YulFunctionCall","src":"18057:18:101"},{"name":"value1","nativeSrc":"18077:6:101","nodeType":"YulIdentifier","src":"18077:6:101"}],"functionName":{"name":"mstore","nativeSrc":"18050:6:101","nodeType":"YulIdentifier","src":"18050:6:101"},"nativeSrc":"18050:34:101","nodeType":"YulFunctionCall","src":"18050:34:101"},"nativeSrc":"18050:34:101","nodeType":"YulExpressionStatement","src":"18050:34:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"17842:248:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17932:9:101","nodeType":"YulTypedName","src":"17932:9:101","type":""},{"name":"value1","nativeSrc":"17943:6:101","nodeType":"YulTypedName","src":"17943:6:101","type":""},{"name":"value0","nativeSrc":"17951:6:101","nodeType":"YulTypedName","src":"17951:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17962:4:101","nodeType":"YulTypedName","src":"17962:4:101","type":""}],"src":"17842:248:101"},{"body":{"nativeSrc":"18242:216:101","nodeType":"YulBlock","src":"18242:216:101","statements":[{"nativeSrc":"18252:26:101","nodeType":"YulAssignment","src":"18252:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"18264:9:101","nodeType":"YulIdentifier","src":"18264:9:101"},{"kind":"number","nativeSrc":"18275:2:101","nodeType":"YulLiteral","src":"18275:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"18260:3:101","nodeType":"YulIdentifier","src":"18260:3:101"},"nativeSrc":"18260:18:101","nodeType":"YulFunctionCall","src":"18260:18:101"},"variableNames":[{"name":"tail","nativeSrc":"18252:4:101","nodeType":"YulIdentifier","src":"18252:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18294:9:101","nodeType":"YulIdentifier","src":"18294:9:101"},{"arguments":[{"name":"value0","nativeSrc":"18309:6:101","nodeType":"YulIdentifier","src":"18309:6:101"},{"kind":"number","nativeSrc":"18317:10:101","nodeType":"YulLiteral","src":"18317:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"18305:3:101","nodeType":"YulIdentifier","src":"18305:3:101"},"nativeSrc":"18305:23:101","nodeType":"YulFunctionCall","src":"18305:23:101"}],"functionName":{"name":"mstore","nativeSrc":"18287:6:101","nodeType":"YulIdentifier","src":"18287:6:101"},"nativeSrc":"18287:42:101","nodeType":"YulFunctionCall","src":"18287:42:101"},"nativeSrc":"18287:42:101","nodeType":"YulExpressionStatement","src":"18287:42:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18349:9:101","nodeType":"YulIdentifier","src":"18349:9:101"},{"kind":"number","nativeSrc":"18360:2:101","nodeType":"YulLiteral","src":"18360:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18345:3:101","nodeType":"YulIdentifier","src":"18345:3:101"},"nativeSrc":"18345:18:101","nodeType":"YulFunctionCall","src":"18345:18:101"},{"arguments":[{"name":"value1","nativeSrc":"18369:6:101","nodeType":"YulIdentifier","src":"18369:6:101"},{"kind":"number","nativeSrc":"18377:14:101","nodeType":"YulLiteral","src":"18377:14:101","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"18365:3:101","nodeType":"YulIdentifier","src":"18365:3:101"},"nativeSrc":"18365:27:101","nodeType":"YulFunctionCall","src":"18365:27:101"}],"functionName":{"name":"mstore","nativeSrc":"18338:6:101","nodeType":"YulIdentifier","src":"18338:6:101"},"nativeSrc":"18338:55:101","nodeType":"YulFunctionCall","src":"18338:55:101"},"nativeSrc":"18338:55:101","nodeType":"YulExpressionStatement","src":"18338:55:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18413:9:101","nodeType":"YulIdentifier","src":"18413:9:101"},{"kind":"number","nativeSrc":"18424:2:101","nodeType":"YulLiteral","src":"18424:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18409:3:101","nodeType":"YulIdentifier","src":"18409:3:101"},"nativeSrc":"18409:18:101","nodeType":"YulFunctionCall","src":"18409:18:101"},{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"18443:6:101","nodeType":"YulIdentifier","src":"18443:6:101"}],"functionName":{"name":"iszero","nativeSrc":"18436:6:101","nodeType":"YulIdentifier","src":"18436:6:101"},"nativeSrc":"18436:14:101","nodeType":"YulFunctionCall","src":"18436:14:101"}],"functionName":{"name":"iszero","nativeSrc":"18429:6:101","nodeType":"YulIdentifier","src":"18429:6:101"},"nativeSrc":"18429:22:101","nodeType":"YulFunctionCall","src":"18429:22:101"}],"functionName":{"name":"mstore","nativeSrc":"18402:6:101","nodeType":"YulIdentifier","src":"18402:6:101"},"nativeSrc":"18402:50:101","nodeType":"YulFunctionCall","src":"18402:50:101"},"nativeSrc":"18402:50:101","nodeType":"YulExpressionStatement","src":"18402:50:101"}]},"name":"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed","nativeSrc":"18095:363:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18195:9:101","nodeType":"YulTypedName","src":"18195:9:101","type":""},{"name":"value2","nativeSrc":"18206:6:101","nodeType":"YulTypedName","src":"18206:6:101","type":""},{"name":"value1","nativeSrc":"18214:6:101","nodeType":"YulTypedName","src":"18214:6:101","type":""},{"name":"value0","nativeSrc":"18222:6:101","nodeType":"YulTypedName","src":"18222:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18233:4:101","nodeType":"YulTypedName","src":"18233:4:101","type":""}],"src":"18095:363:101"},{"body":{"nativeSrc":"18588:157:101","nodeType":"YulBlock","src":"18588:157:101","statements":[{"nativeSrc":"18598:26:101","nodeType":"YulAssignment","src":"18598:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"18610:9:101","nodeType":"YulIdentifier","src":"18610:9:101"},{"kind":"number","nativeSrc":"18621:2:101","nodeType":"YulLiteral","src":"18621:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18606:3:101","nodeType":"YulIdentifier","src":"18606:3:101"},"nativeSrc":"18606:18:101","nodeType":"YulFunctionCall","src":"18606:18:101"},"variableNames":[{"name":"tail","nativeSrc":"18598:4:101","nodeType":"YulIdentifier","src":"18598:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18640:9:101","nodeType":"YulIdentifier","src":"18640:9:101"},{"arguments":[{"name":"value0","nativeSrc":"18655:6:101","nodeType":"YulIdentifier","src":"18655:6:101"},{"kind":"number","nativeSrc":"18663:10:101","nodeType":"YulLiteral","src":"18663:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"18651:3:101","nodeType":"YulIdentifier","src":"18651:3:101"},"nativeSrc":"18651:23:101","nodeType":"YulFunctionCall","src":"18651:23:101"}],"functionName":{"name":"mstore","nativeSrc":"18633:6:101","nodeType":"YulIdentifier","src":"18633:6:101"},"nativeSrc":"18633:42:101","nodeType":"YulFunctionCall","src":"18633:42:101"},"nativeSrc":"18633:42:101","nodeType":"YulExpressionStatement","src":"18633:42:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18695:9:101","nodeType":"YulIdentifier","src":"18695:9:101"},{"kind":"number","nativeSrc":"18706:2:101","nodeType":"YulLiteral","src":"18706:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18691:3:101","nodeType":"YulIdentifier","src":"18691:3:101"},"nativeSrc":"18691:18:101","nodeType":"YulFunctionCall","src":"18691:18:101"},{"arguments":[{"name":"value1","nativeSrc":"18715:6:101","nodeType":"YulIdentifier","src":"18715:6:101"},{"kind":"number","nativeSrc":"18723:14:101","nodeType":"YulLiteral","src":"18723:14:101","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"18711:3:101","nodeType":"YulIdentifier","src":"18711:3:101"},"nativeSrc":"18711:27:101","nodeType":"YulFunctionCall","src":"18711:27:101"}],"functionName":{"name":"mstore","nativeSrc":"18684:6:101","nodeType":"YulIdentifier","src":"18684:6:101"},"nativeSrc":"18684:55:101","nodeType":"YulFunctionCall","src":"18684:55:101"},"nativeSrc":"18684:55:101","nodeType":"YulExpressionStatement","src":"18684:55:101"}]},"name":"abi_encode_tuple_t_uint32_t_uint48__to_t_uint32_t_uint48__fromStack_reversed","nativeSrc":"18463:282:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18549:9:101","nodeType":"YulTypedName","src":"18549:9:101","type":""},{"name":"value1","nativeSrc":"18560:6:101","nodeType":"YulTypedName","src":"18560:6:101","type":""},{"name":"value0","nativeSrc":"18568:6:101","nodeType":"YulTypedName","src":"18568:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18579:4:101","nodeType":"YulTypedName","src":"18579:4:101","type":""}],"src":"18463:282:101"},{"body":{"nativeSrc":"18828:177:101","nodeType":"YulBlock","src":"18828:177:101","statements":[{"body":{"nativeSrc":"18874:16:101","nodeType":"YulBlock","src":"18874:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18883:1:101","nodeType":"YulLiteral","src":"18883:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"18886:1:101","nodeType":"YulLiteral","src":"18886:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18876:6:101","nodeType":"YulIdentifier","src":"18876:6:101"},"nativeSrc":"18876:12:101","nodeType":"YulFunctionCall","src":"18876:12:101"},"nativeSrc":"18876:12:101","nodeType":"YulExpressionStatement","src":"18876:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18849:7:101","nodeType":"YulIdentifier","src":"18849:7:101"},{"name":"headStart","nativeSrc":"18858:9:101","nodeType":"YulIdentifier","src":"18858:9:101"}],"functionName":{"name":"sub","nativeSrc":"18845:3:101","nodeType":"YulIdentifier","src":"18845:3:101"},"nativeSrc":"18845:23:101","nodeType":"YulFunctionCall","src":"18845:23:101"},{"kind":"number","nativeSrc":"18870:2:101","nodeType":"YulLiteral","src":"18870:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"18841:3:101","nodeType":"YulIdentifier","src":"18841:3:101"},"nativeSrc":"18841:32:101","nodeType":"YulFunctionCall","src":"18841:32:101"},"nativeSrc":"18838:52:101","nodeType":"YulIf","src":"18838:52:101"},{"nativeSrc":"18899:36:101","nodeType":"YulVariableDeclaration","src":"18899:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"18925:9:101","nodeType":"YulIdentifier","src":"18925:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"18912:12:101","nodeType":"YulIdentifier","src":"18912:12:101"},"nativeSrc":"18912:23:101","nodeType":"YulFunctionCall","src":"18912:23:101"},"variables":[{"name":"value","nativeSrc":"18903:5:101","nodeType":"YulTypedName","src":"18903:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"18969:5:101","nodeType":"YulIdentifier","src":"18969:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"18944:24:101","nodeType":"YulIdentifier","src":"18944:24:101"},"nativeSrc":"18944:31:101","nodeType":"YulFunctionCall","src":"18944:31:101"},"nativeSrc":"18944:31:101","nodeType":"YulExpressionStatement","src":"18944:31:101"},{"nativeSrc":"18984:15:101","nodeType":"YulAssignment","src":"18984:15:101","value":{"name":"value","nativeSrc":"18994:5:101","nodeType":"YulIdentifier","src":"18994:5:101"},"variableNames":[{"name":"value0","nativeSrc":"18984:6:101","nodeType":"YulIdentifier","src":"18984:6:101"}]}]},"name":"abi_decode_tuple_t_address_payable","nativeSrc":"18750:255:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18794:9:101","nodeType":"YulTypedName","src":"18794:9:101","type":""},{"name":"dataEnd","nativeSrc":"18805:7:101","nodeType":"YulTypedName","src":"18805:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18817:6:101","nodeType":"YulTypedName","src":"18817:6:101","type":""}],"src":"18750:255:101"},{"body":{"nativeSrc":"19058:122:101","nodeType":"YulBlock","src":"19058:122:101","statements":[{"nativeSrc":"19068:51:101","nodeType":"YulAssignment","src":"19068:51:101","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"19084:1:101","nodeType":"YulIdentifier","src":"19084:1:101"},{"kind":"number","nativeSrc":"19087:10:101","nodeType":"YulLiteral","src":"19087:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"19080:3:101","nodeType":"YulIdentifier","src":"19080:3:101"},"nativeSrc":"19080:18:101","nodeType":"YulFunctionCall","src":"19080:18:101"},{"arguments":[{"name":"y","nativeSrc":"19104:1:101","nodeType":"YulIdentifier","src":"19104:1:101"},{"kind":"number","nativeSrc":"19107:10:101","nodeType":"YulLiteral","src":"19107:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"19100:3:101","nodeType":"YulIdentifier","src":"19100:3:101"},"nativeSrc":"19100:18:101","nodeType":"YulFunctionCall","src":"19100:18:101"}],"functionName":{"name":"sub","nativeSrc":"19076:3:101","nodeType":"YulIdentifier","src":"19076:3:101"},"nativeSrc":"19076:43:101","nodeType":"YulFunctionCall","src":"19076:43:101"},"variableNames":[{"name":"diff","nativeSrc":"19068:4:101","nodeType":"YulIdentifier","src":"19068:4:101"}]},{"body":{"nativeSrc":"19152:22:101","nodeType":"YulBlock","src":"19152:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"19154:16:101","nodeType":"YulIdentifier","src":"19154:16:101"},"nativeSrc":"19154:18:101","nodeType":"YulFunctionCall","src":"19154:18:101"},"nativeSrc":"19154:18:101","nodeType":"YulExpressionStatement","src":"19154:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"19134:4:101","nodeType":"YulIdentifier","src":"19134:4:101"},{"kind":"number","nativeSrc":"19140:10:101","nodeType":"YulLiteral","src":"19140:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"gt","nativeSrc":"19131:2:101","nodeType":"YulIdentifier","src":"19131:2:101"},"nativeSrc":"19131:20:101","nodeType":"YulFunctionCall","src":"19131:20:101"},"nativeSrc":"19128:46:101","nodeType":"YulIf","src":"19128:46:101"}]},"name":"checked_sub_t_uint32","nativeSrc":"19010:170:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"19040:1:101","nodeType":"YulTypedName","src":"19040:1:101","type":""},{"name":"y","nativeSrc":"19043:1:101","nodeType":"YulTypedName","src":"19043:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"19049:4:101","nodeType":"YulTypedName","src":"19049:4:101","type":""}],"src":"19010:170:101"},{"body":{"nativeSrc":"19321:130:101","nodeType":"YulBlock","src":"19321:130:101","statements":[{"nativeSrc":"19331:26:101","nodeType":"YulAssignment","src":"19331:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"19343:9:101","nodeType":"YulIdentifier","src":"19343:9:101"},{"kind":"number","nativeSrc":"19354:2:101","nodeType":"YulLiteral","src":"19354:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19339:3:101","nodeType":"YulIdentifier","src":"19339:3:101"},"nativeSrc":"19339:18:101","nodeType":"YulFunctionCall","src":"19339:18:101"},"variableNames":[{"name":"tail","nativeSrc":"19331:4:101","nodeType":"YulIdentifier","src":"19331:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19373:9:101","nodeType":"YulIdentifier","src":"19373:9:101"},{"arguments":[{"name":"value0","nativeSrc":"19388:6:101","nodeType":"YulIdentifier","src":"19388:6:101"},{"kind":"number","nativeSrc":"19396:4:101","nodeType":"YulLiteral","src":"19396:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"19384:3:101","nodeType":"YulIdentifier","src":"19384:3:101"},"nativeSrc":"19384:17:101","nodeType":"YulFunctionCall","src":"19384:17:101"}],"functionName":{"name":"mstore","nativeSrc":"19366:6:101","nodeType":"YulIdentifier","src":"19366:6:101"},"nativeSrc":"19366:36:101","nodeType":"YulFunctionCall","src":"19366:36:101"},"nativeSrc":"19366:36:101","nodeType":"YulExpressionStatement","src":"19366:36:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19422:9:101","nodeType":"YulIdentifier","src":"19422:9:101"},{"kind":"number","nativeSrc":"19433:2:101","nodeType":"YulLiteral","src":"19433:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19418:3:101","nodeType":"YulIdentifier","src":"19418:3:101"},"nativeSrc":"19418:18:101","nodeType":"YulFunctionCall","src":"19418:18:101"},{"name":"value1","nativeSrc":"19438:6:101","nodeType":"YulIdentifier","src":"19438:6:101"}],"functionName":{"name":"mstore","nativeSrc":"19411:6:101","nodeType":"YulIdentifier","src":"19411:6:101"},"nativeSrc":"19411:34:101","nodeType":"YulFunctionCall","src":"19411:34:101"},"nativeSrc":"19411:34:101","nodeType":"YulExpressionStatement","src":"19411:34:101"}]},"name":"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"19185:266:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19282:9:101","nodeType":"YulTypedName","src":"19282:9:101","type":""},{"name":"value1","nativeSrc":"19293:6:101","nodeType":"YulTypedName","src":"19293:6:101","type":""},{"name":"value0","nativeSrc":"19301:6:101","nodeType":"YulTypedName","src":"19301:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19312:4:101","nodeType":"YulTypedName","src":"19312:4:101","type":""}],"src":"19185:266:101"}]},"contents":"{\n    { }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_array_bytes4_dyn_calldata(offset, end) -> arrayPos, length\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        length := calldataload(offset)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        arrayPos := add(offset, 0x20)\n        if gt(add(add(offset, shl(5, length)), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_uint64(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_array$_t_bytes4_$dyn_calldata_ptrt_uint64(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_bytes4_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        value3 := abi_decode_uint64(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_uint64(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        if iszero(eq(value_1, iszero(iszero(value_1)))) { revert(0, 0) }\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_decode_bytes_calldata(offset, end) -> arrayPos, length\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        length := calldataload(offset)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        arrayPos := add(offset, 0x20)\n        if gt(add(add(offset, length), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_uint64t_addresst_uint32(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        let value := calldataload(add(headStart, 32))\n        validator_revert_address(value)\n        value1 := value\n        value2 := abi_decode_uint32(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_uint64t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        let value := calldataload(add(headStart, 32))\n        validator_revert_address(value)\n        value1 := value\n    }\n    function abi_encode_tuple_t_uint48_t_uint32_t_uint32_t_uint48__to_t_uint48_t_uint32_t_uint32_t_uint48__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(value0, 0xffffffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n        mstore(add(headStart, 64), and(value2, 0xffffffff))\n        mstore(add(headStart, 96), and(value3, 0xffffffffffff))\n    }\n    function abi_decode_tuple_t_uint64t_uint64(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        value1 := abi_decode_uint64(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bytes32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_encode_tuple_t_uint48__to_t_uint48__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffff))\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function validator_revert_bytes4(value)\n    {\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_bytes4(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_bytes4(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_uint64t_string_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_decode_tuple_t_uint64t_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        value1 := abi_decode_uint32(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let offset := calldataload(add(headStart, 64))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value2_1, value3_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_array_bytes4_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n    }\n    function abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let tail_1 := add(headStart, 32)\n        mstore(headStart, 32)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let tail_2 := add(add(headStart, shl(5, length)), 64)\n        let srcPtr := add(value0, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, headStart), not(63)))\n            let _1 := mload(srcPtr)\n            let length_1 := mload(_1)\n            mstore(tail_2, length_1)\n            mcopy(add(tail_2, 32), add(_1, 32), length_1)\n            mstore(add(add(tail_2, length_1), 32), 0)\n            tail_2 := add(add(tail_2, and(add(length_1, 31), not(31))), 32)\n            srcPtr := add(srcPtr, 32)\n            pos := add(pos, 32)\n        }\n        tail := tail_2\n    }\n    function abi_decode_tuple_t_addresst_addresst_bytes4(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_bytes4(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_bool_t_uint32__to_t_bool_t_uint32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, iszero(iszero(value0)))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n    }\n    function abi_decode_tuple_t_addresst_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := abi_decode_uint32(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_bytes_calldata_ptrt_uint48(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        let value_1 := calldataload(add(headStart, 64))\n        if iszero(eq(value_1, and(value_1, 0xffffffffffff))) { revert(0, 0) }\n        value3 := value_1\n    }\n    function abi_encode_tuple_t_bytes32_t_uint32__to_t_bytes32_t_uint32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_bytes4(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, shl(224, 0xffffffff)))\n    }\n    function abi_encode_string_calldata(start, length, pos) -> end\n    {\n        mstore(pos, length)\n        calldatacopy(add(pos, 0x20), start, length)\n        mstore(add(add(pos, length), 0x20), 0)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_string_calldata_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string_calldata(value0, value1, add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bytes4(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_address_t_bytes_calldata_ptr__to_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), 96)\n        tail := abi_encode_string_calldata(value2, value3, add(headStart, 96))\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n    {\n        if gt(startIndex, endIndex) { revert(0, 0) }\n        if gt(endIndex, length) { revert(0, 0) }\n        offsetOut := add(offset, startIndex)\n        lengthOut := sub(endIndex, startIndex)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function access_calldata_tail_t_bytes_calldata_ptr(base_ref, ptr_to_tail) -> addr, length\n    {\n        let rel_offset_of_tail := calldataload(ptr_to_tail)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(30)))) { revert(0, 0) }\n        let addr_1 := add(base_ref, rel_offset_of_tail)\n        length := calldataload(addr_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        addr := add(addr_1, 0x20)\n        if sgt(addr, sub(calldatasize(), length)) { revert(0, 0) }\n    }\n    function abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value2, value1, value0) -> end\n    {\n        calldatacopy(pos, value0, value1)\n        let _1 := add(pos, value1)\n        mstore(_1, 0)\n        let length := mload(value2)\n        mcopy(_1, add(value2, 0x20), length)\n        let _2 := add(_1, length)\n        mstore(_2, 0)\n        end := _2\n    }\n    function abi_encode_tuple_t_address_t_address_t_address_t_bytes4__to_t_address_t_address_t_address_t_bytes4__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 96), and(value3, shl(224, 0xffffffff)))\n    }\n    function checked_add_t_uint48(x, y) -> sum\n    {\n        sum := add(and(x, 0xffffffffffff), and(y, 0xffffffffffff))\n        if gt(sum, 0xffffffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_uint48_t_address_t_address_t_bytes_calldata_ptr__to_t_uint48_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, 0xffffffffffff))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 96), 128)\n        tail := abi_encode_string_calldata(value3, value4, add(headStart, 128))\n    }\n    function abi_encode_tuple_t_address_t_uint64__to_t_address_t_uint64__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, shl(224, 0xffffffff)))\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, shl(224, 0xffffffff))\n        if lt(len, 4)\n        {\n            value := and(and(_1, shl(shl(3, sub(4, len)), shl(224, 0xffffffff))), shl(224, 0xffffffff))\n        }\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffff))\n        mstore(add(headStart, 64), iszero(iszero(value2)))\n    }\n    function abi_encode_tuple_t_uint32_t_uint48__to_t_uint32_t_uint48__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffff))\n    }\n    function abi_decode_tuple_t_address_payable(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffff), and(y, 0xffffffff))\n        if gt(diff, 0xffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), value1)\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"6080604052600436106101db575f3560e01c80636d5115bd116100fd578063b700961311610092578063d22b598911610062578063d22b598914610636578063d6bb62c614610655578063f801a69814610674578063fe0776f5146106ad575f5ffd5b8063b7009613146105a8578063b7d2b162146105e3578063cc1b6c8114610602578063d1f856ee14610617575f5ffd5b8063a166aa89116100cd578063a166aa8914610501578063a64d95ce14610530578063abd9bd2a1461054f578063ac9650d81461057c575f5ffd5b80636d5115bd1461049157806375b238fc146104b0578063853551b8146104c357806394c7d7ee146104e2575f5ffd5b806330cae187116101735780634665096d116101435780634665096d146104035780634c1da1e2146104185780635296295214610437578063530dd45614610456575f5ffd5b806330cae1871461035c5780633adc277a1461037b5780633ca7c02a146103b15780634136a33c146103cb575f5ffd5b806318ff183c116101ae57806318ff183c146102b25780631cff79cd146102d157806325c471a0146102e45780633078f11414610303575f5ffd5b806308d6122d146101df5780630b0a93ba1461020057806312be87271461025f578063167bd39514610293575b5f5ffd5b3480156101ea575f5ffd5b506101fe6101f93660046120c0565b6106cc565b005b34801561020b575f5ffd5b5061024261021a366004612122565b6001600160401b039081165f9081526001602081905260409091200154600160401b90041690565b6040516001600160401b0390911681526020015b60405180910390f35b34801561026a575f5ffd5b5061027e610279366004612122565b61071e565b60405163ffffffff9091168152602001610256565b34801561029e575f5ffd5b506101fe6102ad36600461213b565b610758565b3480156102bd575f5ffd5b506101fe6102cc366004612176565b61076e565b61027e6102df3660046121df565b6107d0565b3480156102ef575f5ffd5b506101fe6102fe366004612242565b6108fc565b34801561030e575f5ffd5b5061032261031d366004612284565b61091e565b604051610256949392919065ffffffffffff948516815263ffffffff93841660208201529190921660408201529116606082015260800190565b348015610367575f5ffd5b506101fe61037636600461229e565b610982565b348015610386575f5ffd5b5061039a6103953660046122cf565b610994565b60405165ffffffffffff9091168152602001610256565b3480156103bc575f5ffd5b506102426001600160401b0381565b3480156103d6575f5ffd5b5061027e6103e53660046122cf565b5f90815260026020526040902054600160301b900463ffffffff1690565b34801561040e575f5ffd5b5062093a8061027e565b348015610423575f5ffd5b5061027e6104323660046122e6565b6109c5565b348015610442575f5ffd5b506101fe61045136600461229e565b6109f2565b348015610461575f5ffd5b50610242610470366004612122565b6001600160401b039081165f90815260016020819052604090912001541690565b34801561049c575f5ffd5b506102426104ab366004612316565b610a04565b3480156104bb575f5ffd5b506102425f81565b3480156104ce575f5ffd5b506101fe6104dd366004612342565b610a3e565b3480156104ed575f5ffd5b506101fe6104fc3660046121df565b610ad5565b34801561050c575f5ffd5b5061052061051b3660046122e6565b610b7f565b6040519015158152602001610256565b34801561053b575f5ffd5b506101fe61054a36600461235d565b610ba6565b34801561055a575f5ffd5b5061056e610569366004612385565b610bb8565b604051908152602001610256565b348015610587575f5ffd5b5061059b6105963660046123e5565b610bf0565b6040516102569190612423565b3480156105b3575f5ffd5b506105c76105c23660046124a7565b610cd5565b60408051921515835263ffffffff909116602083015201610256565b3480156105ee575f5ffd5b506101fe6105fd366004612284565b610d56565b34801561060d575f5ffd5b506206978061027e565b348015610622575f5ffd5b506105c7610631366004612284565b610d6d565b348015610641575f5ffd5b506101fe6106503660046124ef565b610de6565b348015610660575f5ffd5b5061027e61066f366004612385565b610df8565b34801561067f575f5ffd5b5061069361068e36600461250b565b610f4b565b6040805192835263ffffffff909116602083015201610256565b3480156106b8575f5ffd5b506101fe6106c7366004612284565b61108c565b6106d46110b5565b5f5b828110156107175761070f858585848181106106f4576106f4612578565b9050602002016020810190610709919061258c565b8461112c565b6001016106d6565b5050505050565b6001600160401b0381165f9081526001602081905260408220015461075290600160801b90046001600160701b03166111ad565b92915050565b6107606110b5565b61076a82826111cb565b5050565b6107766110b5565b604051637a9e5e4b60e01b81526001600160a01b038281166004830152831690637a9e5e4b906024015f604051808303815f87803b1580156107b6575f5ffd5b505af11580156107c8573d5f5f3e3d5ffd5b505050505050565b5f3381806107e08388888861123c565b91509150811580156107f6575063ffffffff8116155b15610849578287610807888861128d565b6040516381c6f24b60e01b81526001600160a01b0393841660048201529290911660248301526001600160e01b03191660448201526064015b60405180910390fd5b5f61085684898989610bb8565b90505f63ffffffff831615158061087c575061087182610994565b65ffffffffffff1615155b1561088d5761088a826112a4565b90505b6003546108a38a61089e8b8b61128d565b6113a2565b6003819055506108ea8a8a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152503492506113c7915050565b506003559450505050505b9392505050565b6109046110b5565b61091883836109128661071e565b84611493565b50505050565b6001600160401b0382165f9081526001602090815260408083206001600160a01b03851684529091528120805465ffffffffffff81169291829182919061097490600160301b90046001600160701b03166116d9565b969991985096509350505050565b61098a6110b5565b61076a82826116fa565b5f8181526002602052604081205465ffffffffffff166109b38161179d565b6109bd57806108f5565b5f9392505050565b6001600160a01b0381165f90815260208190526040812060010154610752906001600160701b03166111ad565b6109fa6110b5565b61076a82826117cb565b6001600160a01b0382165f908152602081815260408083206001600160e01b0319851684529091529020546001600160401b031692915050565b610a466110b5565b6001600160401b0383161580610a6457506001600160401b03838116145b15610a8d5760405163061c6a4360e21b81526001600160401b0384166004820152602401610840565b826001600160401b03167f1256f5b5ecb89caec12db449738f2fbcd1ba5806cf38f35413f4e5c15bf6a4508383604051610ac89291906125cf565b60405180910390a2505050565b60408051638fb3603760e01b80825291513392918391638fb36037916004808201926020929091908290030181865afa158015610b14573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3891906125ea565b6001600160e01b03191614610b6b57604051630641fee960e31b81526001600160a01b0382166004820152602401610840565b610717610b7a85838686610bb8565b6112a4565b6001600160a01b03165f90815260208190526040902060010154600160701b900460ff1690565b610bae6110b5565b61076a828261187c565b5f84848484604051602001610bd09493929190612605565b604051602081830303815290604052805190602001209050949350505050565b604080515f815260208101909152606090826001600160401b03811115610c1957610c19612676565b604051908082528060200260200182016040528015610c4c57816020015b6060815260200190600190039081610c375790505b5091505f5b83811015610ccd57610ca830868684818110610c6f57610c6f612578565b9050602002810190610c81919061268a565b85604051602001610c94939291906126cc565b60405160208183030381529060405261198b565b838281518110610cba57610cba612578565b6020908102919091010152600101610c51565b505092915050565b5f5f610ce084610b7f565b15610cef57505f905080610d4e565b306001600160a01b03861603610d1357610d098484611a0d565b5f91509150610d4e565b5f610d1e8585610a04565b90505f5f610d2c8389610d6d565b9150915081610d3c575f5f610d46565b63ffffffff811615815b945094505050505b935093915050565b610d5e6110b5565b610d688282611a23565b505050565b5f8067fffffffffffffffe196001600160401b03851601610d935750600190505f610ddf565b5f5f610d9f868661091e565b5050915091508165ffffffffffff165f14158015610dd45750610dc0611b0c565b65ffffffffffff168265ffffffffffff1611155b93509150610ddf9050565b9250929050565b610dee6110b5565b61076a8282611b1b565b5f3381610e05858561128d565b90505f610e1488888888610bb8565b5f8181526002602052604081205491925065ffffffffffff9091169003610e515760405163060a299b60e41b815260048101829052602401610840565b826001600160a01b0316886001600160a01b031614610eea575f610e755f85610d6d565b5090505f610e8f610e8961021a8b87610a04565b86610d6d565b50905081158015610e9e575080155b15610ee757604051630ff89d4760e21b81526001600160a01b038087166004830152808c1660248301528a1660448201526001600160e01b031985166064820152608401610840565b50505b5f81815260026020526040808220805465ffffffffffff1916908190559051600160301b90910463ffffffff1691829184917fbd9ac67a6e2f6463b80927326310338bcbb4bdb7936ce1365ea3e01067e7b9f791a398975050505050505050565b5f803381610f5b8289898961123c565b9150505f8163ffffffff16610f6e611b0c565b610f7891906126ef565b905063ffffffff82161580610fae57505f8665ffffffffffff16118015610fae57508065ffffffffffff168665ffffffffffff16105b15610fbf5782896108078a8a61128d565b610fd98665ffffffffffff168265ffffffffffff16611bd6565b9550610fe7838a8a8a610bb8565b9450610ff285611be5565b5f8581526002602052604090819020805465ffffffffffff891669ffffffffffffffffffff19821617600160301b9182900463ffffffff90811660010190811692830291909117909255915190955086907f82a2da5dee54ea8021c6545b4444620291e07ee83be6dd57edb175062715f3b490611078908a9088908f908f908f9061270d565b60405180910390a350505094509492505050565b6001600160a01b0381163314610d5e57604051635f159e6360e01b815260040160405180910390fd5b335f806110c3838236611c31565b9150915081610d68578063ffffffff165f0361111d575f6110e48136611cf4565b5060405163f07e038f60e01b81526001600160a01b03871660048201526001600160401b03821660248201529092506044019050610840565b610918610b7a84305f36610bb8565b6001600160a01b0383165f818152602081815260408083206001600160e01b0319871680855290835292819020805467ffffffffffffffff19166001600160401b038716908117909155905192835292917f9ea6790c7dadfd01c9f8b9762b3682607af2c7e79e05a9f9fdf5580dde949151910160405180910390a3505050565b5f5f6111c1836001600160701b03166116d9565b5090949350505050565b6001600160a01b0382165f81815260208190526040908190206001018054841515600160701b0260ff60701b19909116179055517f90d4e7bb7e5d933792b3562e1741306f8be94837e1348dacef9b6f1df56eb1389061123090841515815260200190565b60405180910390a25050565b5f80306001600160a01b0386160361126257611259868585611c31565b91509150611284565b6004831061127e5761127986866105c2878761128d565b611259565b505f9050805b94509492505050565b5f61129b600482848661264f565b6108f591612752565b5f8181526002602052604081205465ffffffffffff811690600160301b900463ffffffff168183036112ec5760405163060a299b60e41b815260048101859052602401610840565b6112f4611b0c565b65ffffffffffff168265ffffffffffff16111561132757604051630c65b5bd60e11b815260048101859052602401610840565b6113308261179d565b1561135157604051631e2975b960e21b815260048101859052602401610840565b5f84815260026020526040808220805465ffffffffffff191690555163ffffffff83169186917f76a2a46953689d4861a5d3f6ed883ad7e6af674a21f8e162707159fc9dde614d9190a39392505050565b6001600160a01b0382165f9081526001600160e01b03198216602052604081206108f5565b6060814710156113f35760405163cf47918160e01b815247600482015260248101839052604401610840565b5f6113ff858486611eda565b905080801561142057505f3d118061142057505f856001600160a01b03163b115b156114355761142d611eef565b9150506108f5565b801561145f57604051639996b31560e01b81526001600160a01b0386166004820152602401610840565b3d156114725761146d611f08565b61148b565b60405163d6bda27560e01b815260040160405180910390fd5b509392505050565b5f67fffffffffffffffe196001600160401b038616016114d15760405163061c6a4360e21b81526001600160401b0386166004820152602401610840565b6001600160401b0385165f9081526001602090815260408083206001600160a01b038816845290915281205465ffffffffffff16159081156115c1578463ffffffff1661151c611b0c565b61152691906126ef565b905060405180604001604052808265ffffffffffff1681526020016115548663ffffffff1663ffffffff1690565b6001600160701b039081169091526001600160401b0389165f9081526001602090815260408083206001600160a01b038c1684528252909120835181549490920151909216600160301b026001600160a01b031990931665ffffffffffff9091161791909117905561166b565b6001600160401b0387165f9081526001602090815260408083206001600160a01b038a16845290915281205461160a91600160301b9091046001600160701b0316908690611f13565b6001600160401b0389165f9081526001602090815260408083206001600160a01b038c168452909152902080546001600160701b03909316600160301b0273ffffffffffffffffffffffffffff000000000000199093169290921790915590505b6040805163ffffffff8616815265ffffffffffff831660208201528315158183015290516001600160a01b038816916001600160401b038a16917ff98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf9181900360600190a35095945050505050565b5f5f5f6116ed846116e8611b0c565b611fb9565b9250925092509193909250565b6001600160401b038216158061171857506001600160401b03828116145b156117415760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b038281165f818152600160208190526040808320909101805467ffffffffffffffff19169486169485179055517f1fd6dd7631312dfac2205b52913f99de03b4d7e381d5d27d3dbfe0713e6e63409190a35050565b5f6117a6611b0c565b65ffffffffffff166117bb62093a80846126ef565b65ffffffffffff16111592915050565b6001600160401b03821615806117e957506001600160401b03828116145b156118125760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b038281165f81815260016020819052604080832090910180546fffffffffffffffff00000000000000001916600160401b958716958602179055517f7a8059630b897b5de4c08ade69f8b90c3ead1f8596d62d10b6c4d14a0afb4ae29190a35050565b67fffffffffffffffe196001600160401b038316016118b95760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b0382165f908152600160208190526040822001546118f290600160801b90046001600160701b03168362069780611f13565b6001600160401b0385165f818152600160208190526040918290200180546001600160701b03909516600160801b026dffffffffffffffffffffffffffff60801b199095169490941790935591519092507ffeb69018ee8b8fd50ea86348f1267d07673379f72cffdeccec63853ee8ce8b4890610ac8908590859063ffffffff92909216825265ffffffffffff16602082015260400190565b60605f6119988484612005565b90508080156119b957505f3d11806119b957505f846001600160a01b03163b115b156119ce576119c6611eef565b915050610752565b80156119f857604051639996b31560e01b81526001600160a01b0385166004820152602401610840565b3d1561147257611a06611f08565b5092915050565b5f611a1883836113a2565b600354149392505050565b5f67fffffffffffffffe196001600160401b03841601611a615760405163061c6a4360e21b81526001600160401b0384166004820152602401610840565b6001600160401b0383165f9081526001602090815260408083206001600160a01b038616845290915281205465ffffffffffff169003611aa257505f610752565b6001600160401b0383165f8181526001602090815260408083206001600160a01b038716808552925280832080546001600160a01b0319169055519092917ff229baa593af28c41b1d16b748cd7688f0c83aaf92d4be41c44005defe84c16691a350600192915050565b5f611b1642612018565b905090565b6001600160a01b0382165f90815260208190526040812060010154611b4d906001600160701b03168362069780611f13565b6001600160a01b0385165f818152602081815260409182902060010180546dffffffffffffffffffffffffffff19166001600160701b039690961695909517909455805163ffffffff8716815265ffffffffffff841694810194909452919350917fa56b76017453f399ec2327ba00375dbfb1fd070ff854341ad6191e6a2e2de19c9101610ac8565b5f8282188284110282186108f5565b5f8181526002602052604090205465ffffffffffff168015801590611c105750611c0e8161179d565b155b1561076a5760405163813e945960e01b815260048101839052602401610840565b5f806004831015611c4657505f905080610d4e565b306001600160a01b03861603611c6957610d0930611c64868661128d565b611a0d565b5f5f5f611c768787611cf4565b92509250925082158015611c8e5750611c8e30610b7f565b15611ca1575f5f94509450505050610d4e565b5f5f611cad848b610d6d565b9150915081611cc6575f5f965096505050505050610d4e565b611cdc8363ffffffff168263ffffffff16611bd6565b63ffffffff8116159b909a5098505050505050505050565b5f80806004841015611d0d57505f915081905080611ed3565b5f611d18868661128d565b90506001600160e01b031981166310a6aa3760e31b1480611d4957506001600160e01b031981166330cae18760e01b145b80611d6457506001600160e01b0319811663294b14a960e11b145b80611d7f57506001600160e01b03198116635326cae760e11b145b80611d9a57506001600160e01b0319811663d22b598960e01b145b15611daf5760015f5f93509350935050611ed3565b6001600160e01b0319811663063fc60f60e21b1480611dde57506001600160e01b0319811663167bd39560e01b145b80611df957506001600160e01b031981166308d6122d60e01b145b15611e38575f611e0d60246004888a61264f565b810190611e1a91906122e6565b90505f611e26826109c5565b600196505f95509350611ed392505050565b6001600160e01b0319811663012e238d60e51b1480611e6757506001600160e01b03198116635be958b160e11b145b15611ebf575f611e7b60246004888a61264f565b810190611e889190612122565b90506001611eb1826001600160401b039081165f90815260016020819052604090912001541690565b5f9450945094505050611ed3565b5f611eca3083610a04565b5f935093509350505b9250925092565b5f5f5f83516020850186885af1949350505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f5f5f611f28866001600160701b03166111ad565b90505f611f638563ffffffff168763ffffffff168463ffffffff1611611f4e575f611f58565b611f588885612788565b63ffffffff16611bd6565b90508063ffffffff16611f74611b0c565b611f7e91906126ef565b925063ffffffff8616602083901b67ffffffff0000000016604085901b6dffffffffffff000000000000000016171793505050935093915050565b69ffffffffffffffffffff602083901c166001600160701b03831665ffffffffffff604085901c8116908416811115611ff457828282611ff8565b815f5f5b9250925092509250925092565b5f5f5f835160208501865af49392505050565b5f65ffffffffffff82111561204a576040516306dfcc6560e41b81526030600482015260248101839052604401610840565b5090565b6001600160a01b0381168114612062575f5ffd5b50565b5f5f83601f840112612075575f5ffd5b5081356001600160401b0381111561208b575f5ffd5b6020830191508360208260051b8501011115610ddf575f5ffd5b80356001600160401b03811681146120bb575f5ffd5b919050565b5f5f5f5f606085870312156120d3575f5ffd5b84356120de8161204e565b935060208501356001600160401b038111156120f8575f5ffd5b61210487828801612065565b90945092506121179050604086016120a5565b905092959194509250565b5f60208284031215612132575f5ffd5b6108f5826120a5565b5f5f6040838503121561214c575f5ffd5b82356121578161204e565b91506020830135801515811461216b575f5ffd5b809150509250929050565b5f5f60408385031215612187575f5ffd5b82356121928161204e565b9150602083013561216b8161204e565b5f5f83601f8401126121b2575f5ffd5b5081356001600160401b038111156121c8575f5ffd5b602083019150836020828501011115610ddf575f5ffd5b5f5f5f604084860312156121f1575f5ffd5b83356121fc8161204e565b925060208401356001600160401b03811115612216575f5ffd5b612222868287016121a2565b9497909650939450505050565b803563ffffffff811681146120bb575f5ffd5b5f5f5f60608486031215612254575f5ffd5b61225d846120a5565b9250602084013561226d8161204e565b915061227b6040850161222f565b90509250925092565b5f5f60408385031215612295575f5ffd5b612192836120a5565b5f5f604083850312156122af575f5ffd5b6122b8836120a5565b91506122c6602084016120a5565b90509250929050565b5f602082840312156122df575f5ffd5b5035919050565b5f602082840312156122f6575f5ffd5b81356108f58161204e565b6001600160e01b031981168114612062575f5ffd5b5f5f60408385031215612327575f5ffd5b82356123328161204e565b9150602083013561216b81612301565b5f5f5f60408486031215612354575f5ffd5b6121fc846120a5565b5f5f6040838503121561236e575f5ffd5b612377836120a5565b91506122c66020840161222f565b5f5f5f5f60608587031215612398575f5ffd5b84356123a38161204e565b935060208501356123b38161204e565b925060408501356001600160401b038111156123cd575f5ffd5b6123d9878288016121a2565b95989497509550505050565b5f5f602083850312156123f6575f5ffd5b82356001600160401b0381111561240b575f5ffd5b61241785828601612065565b90969095509350505050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b8281101561249b57603f19878603018452815180518087528060208301602089015e5f602082890101526020601f19601f83011688010196505050602082019150602084019350600181019050612449565b50929695505050505050565b5f5f5f606084860312156124b9575f5ffd5b83356124c48161204e565b925060208401356124d48161204e565b915060408401356124e481612301565b809150509250925092565b5f5f60408385031215612500575f5ffd5b82356123778161204e565b5f5f5f5f6060858703121561251e575f5ffd5b84356125298161204e565b935060208501356001600160401b03811115612543575f5ffd5b61254f878288016121a2565b909450925050604085013565ffffffffffff8116811461256d575f5ffd5b939692955090935050565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561259c575f5ffd5b81356108f581612301565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b602081525f6125e26020830184866125a7565b949350505050565b5f602082840312156125fa575f5ffd5b81516108f581612301565b6001600160a01b038581168252841660208201526060604082018190525f9061263190830184866125a7565b9695505050505050565b634e487b7160e01b5f52601160045260245ffd5b5f5f8585111561265d575f5ffd5b83861115612669575f5ffd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f5f8335601e1984360301811261269f575f5ffd5b8301803591506001600160401b038211156126b8575f5ffd5b602001915036819003821315610ddf575f5ffd5b828482375f8382015f815283518060208601835e5f910190815295945050505050565b65ffffffffffff81811683821601908111156107525761075261263b565b65ffffffffffff861681526001600160a01b038581166020830152841660408201526080606082018190525f9061274790830184866125a7565b979650505050505050565b80356001600160e01b03198116906004841015611a06576001600160e01b031960049490940360031b84901b1690921692915050565b63ffffffff82811682821603908111156107525761075261263b56fea26469706673582212209b3164b8cdeac6faaf8c03b8a27b787dcccb72987c31447c36cedc0e6df90b7364736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1DB JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6D5115BD GT PUSH2 0xFD JUMPI DUP1 PUSH4 0xB7009613 GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xD22B5989 GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xD22B5989 EQ PUSH2 0x636 JUMPI DUP1 PUSH4 0xD6BB62C6 EQ PUSH2 0x655 JUMPI DUP1 PUSH4 0xF801A698 EQ PUSH2 0x674 JUMPI DUP1 PUSH4 0xFE0776F5 EQ PUSH2 0x6AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB7009613 EQ PUSH2 0x5A8 JUMPI DUP1 PUSH4 0xB7D2B162 EQ PUSH2 0x5E3 JUMPI DUP1 PUSH4 0xCC1B6C81 EQ PUSH2 0x602 JUMPI DUP1 PUSH4 0xD1F856EE EQ PUSH2 0x617 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA166AA89 GT PUSH2 0xCD JUMPI DUP1 PUSH4 0xA166AA89 EQ PUSH2 0x501 JUMPI DUP1 PUSH4 0xA64D95CE EQ PUSH2 0x530 JUMPI DUP1 PUSH4 0xABD9BD2A EQ PUSH2 0x54F JUMPI DUP1 PUSH4 0xAC9650D8 EQ PUSH2 0x57C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6D5115BD EQ PUSH2 0x491 JUMPI DUP1 PUSH4 0x75B238FC EQ PUSH2 0x4B0 JUMPI DUP1 PUSH4 0x853551B8 EQ PUSH2 0x4C3 JUMPI DUP1 PUSH4 0x94C7D7EE EQ PUSH2 0x4E2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x30CAE187 GT PUSH2 0x173 JUMPI DUP1 PUSH4 0x4665096D GT PUSH2 0x143 JUMPI DUP1 PUSH4 0x4665096D EQ PUSH2 0x403 JUMPI DUP1 PUSH4 0x4C1DA1E2 EQ PUSH2 0x418 JUMPI DUP1 PUSH4 0x52962952 EQ PUSH2 0x437 JUMPI DUP1 PUSH4 0x530DD456 EQ PUSH2 0x456 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x30CAE187 EQ PUSH2 0x35C JUMPI DUP1 PUSH4 0x3ADC277A EQ PUSH2 0x37B JUMPI DUP1 PUSH4 0x3CA7C02A EQ PUSH2 0x3B1 JUMPI DUP1 PUSH4 0x4136A33C EQ PUSH2 0x3CB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18FF183C GT PUSH2 0x1AE JUMPI DUP1 PUSH4 0x18FF183C EQ PUSH2 0x2B2 JUMPI DUP1 PUSH4 0x1CFF79CD EQ PUSH2 0x2D1 JUMPI DUP1 PUSH4 0x25C471A0 EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0x3078F114 EQ PUSH2 0x303 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8D6122D EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0xB0A93BA EQ PUSH2 0x200 JUMPI DUP1 PUSH4 0x12BE8727 EQ PUSH2 0x25F JUMPI DUP1 PUSH4 0x167BD395 EQ PUSH2 0x293 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x1F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x20C0 JUMP JUMPDEST PUSH2 0x6CC JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x20B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x21A CALLDATASIZE PUSH1 0x4 PUSH2 0x2122 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x26A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x279 CALLDATASIZE PUSH1 0x4 PUSH2 0x2122 JUMP JUMPDEST PUSH2 0x71E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x29E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2AD CALLDATASIZE PUSH1 0x4 PUSH2 0x213B JUMP JUMPDEST PUSH2 0x758 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2CC CALLDATASIZE PUSH1 0x4 PUSH2 0x2176 JUMP JUMPDEST PUSH2 0x76E JUMP JUMPDEST PUSH2 0x27E PUSH2 0x2DF CALLDATASIZE PUSH1 0x4 PUSH2 0x21DF JUMP JUMPDEST PUSH2 0x7D0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2FE CALLDATASIZE PUSH1 0x4 PUSH2 0x2242 JUMP JUMPDEST PUSH2 0x8FC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x30E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x322 PUSH2 0x31D CALLDATASIZE PUSH1 0x4 PUSH2 0x2284 JUMP JUMPDEST PUSH2 0x91E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x256 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH6 0xFFFFFFFFFFFF SWAP5 DUP6 AND DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP4 DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x40 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x367 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x376 CALLDATASIZE PUSH1 0x4 PUSH2 0x229E JUMP JUMPDEST PUSH2 0x982 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x386 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x39A PUSH2 0x395 CALLDATASIZE PUSH1 0x4 PUSH2 0x22CF JUMP JUMPDEST PUSH2 0x994 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x3E5 CALLDATASIZE PUSH1 0x4 PUSH2 0x22CF JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x40E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x93A80 PUSH2 0x27E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x423 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x432 CALLDATASIZE PUSH1 0x4 PUSH2 0x22E6 JUMP JUMPDEST PUSH2 0x9C5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x442 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x451 CALLDATASIZE PUSH1 0x4 PUSH2 0x229E JUMP JUMPDEST PUSH2 0x9F2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x461 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x470 CALLDATASIZE PUSH1 0x4 PUSH2 0x2122 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x49C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x4AB CALLDATASIZE PUSH1 0x4 PUSH2 0x2316 JUMP JUMPDEST PUSH2 0xA04 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x4DD CALLDATASIZE PUSH1 0x4 PUSH2 0x2342 JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x4FC CALLDATASIZE PUSH1 0x4 PUSH2 0x21DF JUMP JUMPDEST PUSH2 0xAD5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x520 PUSH2 0x51B CALLDATASIZE PUSH1 0x4 PUSH2 0x22E6 JUMP JUMPDEST PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x54A CALLDATASIZE PUSH1 0x4 PUSH2 0x235D JUMP JUMPDEST PUSH2 0xBA6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x55A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x56E PUSH2 0x569 CALLDATASIZE PUSH1 0x4 PUSH2 0x2385 JUMP JUMPDEST PUSH2 0xBB8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x587 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x59B PUSH2 0x596 CALLDATASIZE PUSH1 0x4 PUSH2 0x23E5 JUMP JUMPDEST PUSH2 0xBF0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x256 SWAP2 SWAP1 PUSH2 0x2423 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5C7 PUSH2 0x5C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x24A7 JUMP JUMPDEST PUSH2 0xCD5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 ISZERO ISZERO DUP4 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x5FD CALLDATASIZE PUSH1 0x4 PUSH2 0x2284 JUMP JUMPDEST PUSH2 0xD56 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x60D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x69780 PUSH2 0x27E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x622 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5C7 PUSH2 0x631 CALLDATASIZE PUSH1 0x4 PUSH2 0x2284 JUMP JUMPDEST PUSH2 0xD6D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x641 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x650 CALLDATASIZE PUSH1 0x4 PUSH2 0x24EF JUMP JUMPDEST PUSH2 0xDE6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x660 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x66F CALLDATASIZE PUSH1 0x4 PUSH2 0x2385 JUMP JUMPDEST PUSH2 0xDF8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x67F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x693 PUSH2 0x68E CALLDATASIZE PUSH1 0x4 PUSH2 0x250B JUMP JUMPDEST PUSH2 0xF4B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x6C7 CALLDATASIZE PUSH1 0x4 PUSH2 0x2284 JUMP JUMPDEST PUSH2 0x108C JUMP JUMPDEST PUSH2 0x6D4 PUSH2 0x10B5 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x717 JUMPI PUSH2 0x70F DUP6 DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x6F4 JUMPI PUSH2 0x6F4 PUSH2 0x2578 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x709 SWAP2 SWAP1 PUSH2 0x258C JUMP JUMPDEST DUP5 PUSH2 0x112C JUMP JUMPDEST PUSH1 0x1 ADD PUSH2 0x6D6 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 KECCAK256 ADD SLOAD PUSH2 0x752 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11AD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x760 PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x11CB JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x776 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x7A9E5E4B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x7A9E5E4B SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x7B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x7C8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 CALLER DUP2 DUP1 PUSH2 0x7E0 DUP4 DUP9 DUP9 DUP9 PUSH2 0x123C JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x7F6 JUMPI POP PUSH4 0xFFFFFFFF DUP2 AND ISZERO JUMPDEST ISZERO PUSH2 0x849 JUMPI DUP3 DUP8 PUSH2 0x807 DUP9 DUP9 PUSH2 0x128D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x81C6F24B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x856 DUP5 DUP10 DUP10 DUP10 PUSH2 0xBB8 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH4 0xFFFFFFFF DUP4 AND ISZERO ISZERO DUP1 PUSH2 0x87C JUMPI POP PUSH2 0x871 DUP3 PUSH2 0x994 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x88D JUMPI PUSH2 0x88A DUP3 PUSH2 0x12A4 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x8A3 DUP11 PUSH2 0x89E DUP12 DUP12 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x13A2 JUMP JUMPDEST PUSH1 0x3 DUP2 SWAP1 SSTORE POP PUSH2 0x8EA DUP11 DUP11 DUP11 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP CALLVALUE SWAP3 POP PUSH2 0x13C7 SWAP2 POP POP JUMP JUMPDEST POP PUSH1 0x3 SSTORE SWAP5 POP POP POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x904 PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x918 DUP4 DUP4 PUSH2 0x912 DUP7 PUSH2 0x71E JUMP JUMPDEST DUP5 PUSH2 0x1493 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND SWAP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 SWAP1 PUSH2 0x974 SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x16D9 JUMP JUMPDEST SWAP7 SWAP10 SWAP2 SWAP9 POP SWAP7 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x98A PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x16FA JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x9B3 DUP2 PUSH2 0x179D JUMP JUMPDEST PUSH2 0x9BD JUMPI DUP1 PUSH2 0x8F5 JUMP JUMPDEST PUSH0 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x752 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11AD JUMP JUMPDEST PUSH2 0x9FA PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xA46 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ISZERO DUP1 PUSH2 0xA64 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0xA8D JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH32 0x1256F5B5ECB89CAEC12DB449738F2FBCD1BA5806CF38F35413F4E5C15BF6A450 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0xAC8 SWAP3 SWAP2 SWAP1 PUSH2 0x25CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0x8FB36037 PUSH1 0xE0 SHL DUP1 DUP3 MSTORE SWAP2 MLOAD CALLER SWAP3 SWAP2 DUP4 SWAP2 PUSH4 0x8FB36037 SWAP2 PUSH1 0x4 DUP1 DUP3 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP1 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB14 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xB38 SWAP2 SWAP1 PUSH2 0x25EA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND EQ PUSH2 0xB6B JUMPI PUSH1 0x40 MLOAD PUSH4 0x641FEE9 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x717 PUSH2 0xB7A DUP6 DUP4 DUP7 DUP7 PUSH2 0xBB8 JUMP JUMPDEST PUSH2 0x12A4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x70 SHL SWAP1 DIV PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0xBAE PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x187C JUMP JUMPDEST PUSH0 DUP5 DUP5 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xBD0 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 SWAP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xC19 JUMPI PUSH2 0xC19 PUSH2 0x2676 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xC4C JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xC37 JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xCCD JUMPI PUSH2 0xCA8 ADDRESS DUP7 DUP7 DUP5 DUP2 DUP2 LT PUSH2 0xC6F JUMPI PUSH2 0xC6F PUSH2 0x2578 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xC81 SWAP2 SWAP1 PUSH2 0x268A JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xC94 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x26CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x198B JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xCBA JUMPI PUSH2 0xCBA PUSH2 0x2578 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0xC51 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xCE0 DUP5 PUSH2 0xB7F JUMP JUMPDEST ISZERO PUSH2 0xCEF JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xD4E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0xD13 JUMPI PUSH2 0xD09 DUP5 DUP5 PUSH2 0x1A0D JUMP JUMPDEST PUSH0 SWAP2 POP SWAP2 POP PUSH2 0xD4E JUMP JUMPDEST PUSH0 PUSH2 0xD1E DUP6 DUP6 PUSH2 0xA04 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH0 PUSH2 0xD2C DUP4 DUP10 PUSH2 0xD6D JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xD3C JUMPI PUSH0 PUSH0 PUSH2 0xD46 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO DUP2 JUMPDEST SWAP5 POP SWAP5 POP POP POP POP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD5E PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0xD68 DUP3 DUP3 PUSH2 0x1A23 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND ADD PUSH2 0xD93 JUMPI POP PUSH1 0x1 SWAP1 POP PUSH0 PUSH2 0xDDF JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xD9F DUP7 DUP7 PUSH2 0x91E JUMP JUMPDEST POP POP SWAP2 POP SWAP2 POP DUP2 PUSH6 0xFFFFFFFFFFFF AND PUSH0 EQ ISZERO DUP1 ISZERO PUSH2 0xDD4 JUMPI POP PUSH2 0xDC0 PUSH2 0x1B0C JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO JUMPDEST SWAP4 POP SWAP2 POP PUSH2 0xDDF SWAP1 POP JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xDEE PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x1B1B JUMP JUMPDEST PUSH0 CALLER DUP2 PUSH2 0xE05 DUP6 DUP6 PUSH2 0x128D JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0xE14 DUP9 DUP9 DUP9 DUP9 PUSH2 0xBB8 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP2 SWAP3 POP PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 SUB PUSH2 0xE51 JUMPI PUSH1 0x40 MLOAD PUSH4 0x60A299B PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xEEA JUMPI PUSH0 PUSH2 0xE75 PUSH0 DUP6 PUSH2 0xD6D JUMP JUMPDEST POP SWAP1 POP PUSH0 PUSH2 0xE8F PUSH2 0xE89 PUSH2 0x21A DUP12 DUP8 PUSH2 0xA04 JUMP JUMPDEST DUP7 PUSH2 0xD6D JUMP JUMPDEST POP SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xE9E JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xEE7 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFF89D47 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND PUSH1 0x4 DUP4 ADD MSTORE DUP1 DUP13 AND PUSH1 0x24 DUP4 ADD MSTORE DUP11 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP6 AND PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x840 JUMP JUMPDEST POP POP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND SWAP1 DUP2 SWAP1 SSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP2 DUP3 SWAP2 DUP5 SWAP2 PUSH32 0xBD9AC67A6E2F6463B80927326310338BCBB4BDB7936CE1365EA3E01067E7B9F7 SWAP2 LOG3 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 CALLER DUP2 PUSH2 0xF5B DUP3 DUP10 DUP10 DUP10 PUSH2 0x123C JUMP JUMPDEST SWAP2 POP POP PUSH0 DUP2 PUSH4 0xFFFFFFFF AND PUSH2 0xF6E PUSH2 0x1B0C JUMP JUMPDEST PUSH2 0xF78 SWAP2 SWAP1 PUSH2 0x26EF JUMP JUMPDEST SWAP1 POP PUSH4 0xFFFFFFFF DUP3 AND ISZERO DUP1 PUSH2 0xFAE JUMPI POP PUSH0 DUP7 PUSH6 0xFFFFFFFFFFFF AND GT DUP1 ISZERO PUSH2 0xFAE JUMPI POP DUP1 PUSH6 0xFFFFFFFFFFFF AND DUP7 PUSH6 0xFFFFFFFFFFFF AND LT JUMPDEST ISZERO PUSH2 0xFBF JUMPI DUP3 DUP10 PUSH2 0x807 DUP11 DUP11 PUSH2 0x128D JUMP JUMPDEST PUSH2 0xFD9 DUP7 PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x1BD6 JUMP JUMPDEST SWAP6 POP PUSH2 0xFE7 DUP4 DUP11 DUP11 DUP11 PUSH2 0xBB8 JUMP JUMPDEST SWAP5 POP PUSH2 0xFF2 DUP6 PUSH2 0x1BE5 JUMP JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF DUP10 AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF NOT DUP3 AND OR PUSH1 0x1 PUSH1 0x30 SHL SWAP2 DUP3 SWAP1 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH1 0x1 ADD SWAP1 DUP2 AND SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD SWAP1 SWAP6 POP DUP7 SWAP1 PUSH32 0x82A2DA5DEE54EA8021C6545B4444620291E07EE83BE6DD57EDB175062715F3B4 SWAP1 PUSH2 0x1078 SWAP1 DUP11 SWAP1 DUP9 SWAP1 DUP16 SWAP1 DUP16 SWAP1 DUP16 SWAP1 PUSH2 0x270D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ PUSH2 0xD5E JUMPI PUSH1 0x40 MLOAD PUSH4 0x5F159E63 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH0 DUP1 PUSH2 0x10C3 DUP4 DUP3 CALLDATASIZE PUSH2 0x1C31 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xD68 JUMPI DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x111D JUMPI PUSH0 PUSH2 0x10E4 DUP2 CALLDATASIZE PUSH2 0x1CF4 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0xF07E038F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE SWAP1 SWAP3 POP PUSH1 0x44 ADD SWAP1 POP PUSH2 0x840 JUMP JUMPDEST PUSH2 0x918 PUSH2 0xB7A DUP5 ADDRESS PUSH0 CALLDATASIZE PUSH2 0xBB8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP3 DUP4 MSTORE SWAP3 SWAP2 PUSH32 0x9EA6790C7DADFD01C9F8B9762B3682607AF2C7E79E05A9F9FDF5580DDE949151 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x11C1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x16D9 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x1 ADD DUP1 SLOAD DUP5 ISZERO ISZERO PUSH1 0x1 PUSH1 0x70 SHL MUL PUSH1 0xFF PUSH1 0x70 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE MLOAD PUSH32 0x90D4E7BB7E5D933792B3562E1741306F8BE94837E1348DACEF9B6F1DF56EB138 SWAP1 PUSH2 0x1230 SWAP1 DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 DUP1 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x1262 JUMPI PUSH2 0x1259 DUP7 DUP6 DUP6 PUSH2 0x1C31 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1284 JUMP JUMPDEST PUSH1 0x4 DUP4 LT PUSH2 0x127E JUMPI PUSH2 0x1279 DUP7 DUP7 PUSH2 0x5C2 DUP8 DUP8 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x1259 JUMP JUMPDEST POP PUSH0 SWAP1 POP DUP1 JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x129B PUSH1 0x4 DUP3 DUP5 DUP7 PUSH2 0x264F JUMP JUMPDEST PUSH2 0x8F5 SWAP2 PUSH2 0x2752 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP2 DUP4 SUB PUSH2 0x12EC JUMPI PUSH1 0x40 MLOAD PUSH4 0x60A299B PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x12F4 PUSH2 0x1B0C JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO PUSH2 0x1327 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC65B5BD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x1330 DUP3 PUSH2 0x179D JUMP JUMPDEST ISZERO PUSH2 0x1351 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1E2975B9 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND SWAP1 SSTORE MLOAD PUSH4 0xFFFFFFFF DUP4 AND SWAP2 DUP7 SWAP2 PUSH32 0x76A2A46953689D4861A5D3F6ED883AD7E6AF674A21F8E162707159FC9DDE614D SWAP2 SWAP1 LOG3 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH2 0x8F5 JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x13F3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 PUSH2 0x13FF DUP6 DUP5 DUP7 PUSH2 0x1EDA JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1420 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x1420 JUMPI POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x1435 JUMPI PUSH2 0x142D PUSH2 0x1EEF JUMP JUMPDEST SWAP2 POP POP PUSH2 0x8F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x145F JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x1472 JUMPI PUSH2 0x146D PUSH2 0x1F08 JUMP JUMPDEST PUSH2 0x148B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND ADD PUSH2 0x14D1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND ISZERO SWAP1 DUP2 ISZERO PUSH2 0x15C1 JUMPI DUP5 PUSH4 0xFFFFFFFF AND PUSH2 0x151C PUSH2 0x1B0C JUMP JUMPDEST PUSH2 0x1526 SWAP2 SWAP1 PUSH2 0x26EF JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH6 0xFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1554 DUP7 PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 DUP2 AND SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE DUP3 MSTORE SWAP1 SWAP2 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP5 SWAP1 SWAP3 ADD MLOAD SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x166B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH2 0x160A SWAP2 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 DUP7 SWAP1 PUSH2 0x1F13 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000 NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE SWAP1 POP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP7 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE DUP4 ISZERO ISZERO DUP2 DUP4 ADD MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP11 AND SWAP2 PUSH32 0xF98448B987F1428E0E230E1F3C6E2CE15B5693EAF31827FBD0B1EC4B424AE7CF SWAP2 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG3 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x16ED DUP5 PUSH2 0x16E8 PUSH2 0x1B0C JUMP JUMPDEST PUSH2 0x1FB9 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x1718 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1741 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND SWAP5 DUP7 AND SWAP5 DUP6 OR SWAP1 SSTORE MLOAD PUSH32 0x1FD6DD7631312DFAC2205B52913F99DE03B4D7E381D5D27D3DBFE0713E6E6340 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x17A6 PUSH2 0x1B0C JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x17BB PUSH3 0x93A80 DUP5 PUSH2 0x26EF JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND GT ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x17E9 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1812 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH16 0xFFFFFFFFFFFFFFFF0000000000000000 NOT AND PUSH1 0x1 PUSH1 0x40 SHL SWAP6 DUP8 AND SWAP6 DUP7 MUL OR SWAP1 SSTORE MLOAD PUSH32 0x7A8059630B897B5DE4C08ADE69F8B90C3EAD1F8596D62D10B6C4D14A0AFB4AE2 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ADD PUSH2 0x18B9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 KECCAK256 ADD SLOAD PUSH2 0x18F2 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x1F13 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x80 SHL NOT SWAP1 SWAP6 AND SWAP5 SWAP1 SWAP5 OR SWAP1 SWAP4 SSTORE SWAP2 MLOAD SWAP1 SWAP3 POP PUSH32 0xFEB69018EE8B8FD50EA86348F1267D07673379F72CFFDECCEC63853EE8CE8B48 SWAP1 PUSH2 0xAC8 SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x1998 DUP5 DUP5 PUSH2 0x2005 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x19B9 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x19B9 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x19CE JUMPI PUSH2 0x19C6 PUSH2 0x1EEF JUMP JUMPDEST SWAP2 POP POP PUSH2 0x752 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x19F8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x1472 JUMPI PUSH2 0x1A06 PUSH2 0x1F08 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A18 DUP4 DUP4 PUSH2 0x13A2 JUMP JUMPDEST PUSH1 0x3 SLOAD EQ SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND ADD PUSH2 0x1A61 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP1 SUB PUSH2 0x1AA2 JUMPI POP PUSH0 PUSH2 0x752 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE MLOAD SWAP1 SWAP3 SWAP2 PUSH32 0xF229BAA593AF28C41B1D16B748CD7688F0C83AAF92D4BE41C44005DEFE84C166 SWAP2 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1B16 TIMESTAMP PUSH2 0x2018 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x1B4D SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x1F13 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x1 ADD DUP1 SLOAD PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP7 SWAP1 SWAP7 AND SWAP6 SWAP1 SWAP6 OR SWAP1 SWAP5 SSTORE DUP1 MLOAD PUSH4 0xFFFFFFFF DUP8 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP5 AND SWAP5 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE SWAP2 SWAP4 POP SWAP2 PUSH32 0xA56B76017453F399EC2327BA00375DBFB1FD070FF854341AD6191E6A2E2DE19C SWAP2 ADD PUSH2 0xAC8 JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 GT MUL DUP3 XOR PUSH2 0x8F5 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x1C10 JUMPI POP PUSH2 0x1C0E DUP2 PUSH2 0x179D JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x76A JUMPI PUSH1 0x40 MLOAD PUSH4 0x813E9459 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x4 DUP4 LT ISZERO PUSH2 0x1C46 JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xD4E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x1C69 JUMPI PUSH2 0xD09 ADDRESS PUSH2 0x1C64 DUP7 DUP7 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x1A0D JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1C76 DUP8 DUP8 PUSH2 0x1CF4 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP DUP3 ISZERO DUP1 ISZERO PUSH2 0x1C8E JUMPI POP PUSH2 0x1C8E ADDRESS PUSH2 0xB7F JUMP JUMPDEST ISZERO PUSH2 0x1CA1 JUMPI PUSH0 PUSH0 SWAP5 POP SWAP5 POP POP POP POP PUSH2 0xD4E JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1CAD DUP5 DUP12 PUSH2 0xD6D JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x1CC6 JUMPI PUSH0 PUSH0 SWAP7 POP SWAP7 POP POP POP POP POP POP PUSH2 0xD4E JUMP JUMPDEST PUSH2 0x1CDC DUP4 PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x1BD6 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO SWAP12 SWAP1 SWAP11 POP SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x1D0D JUMPI POP PUSH0 SWAP2 POP DUP2 SWAP1 POP DUP1 PUSH2 0x1ED3 JUMP JUMPDEST PUSH0 PUSH2 0x1D18 DUP7 DUP7 PUSH2 0x128D JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x10A6AA37 PUSH1 0xE3 SHL EQ DUP1 PUSH2 0x1D49 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x30CAE187 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1D64 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x294B14A9 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x1D7F JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5326CAE7 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x1D9A JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xD22B5989 PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x1DAF JUMPI PUSH1 0x1 PUSH0 PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP PUSH2 0x1ED3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x63FC60F PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x1DDE JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x167BD395 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1DF9 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x8D6122D PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x1E38 JUMPI PUSH0 PUSH2 0x1E0D PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x264F JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1E1A SWAP2 SWAP1 PUSH2 0x22E6 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1E26 DUP3 PUSH2 0x9C5 JUMP JUMPDEST PUSH1 0x1 SWAP7 POP PUSH0 SWAP6 POP SWAP4 POP PUSH2 0x1ED3 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x12E238D PUSH1 0xE5 SHL EQ DUP1 PUSH2 0x1E67 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5BE958B1 PUSH1 0xE1 SHL EQ JUMPDEST ISZERO PUSH2 0x1EBF JUMPI PUSH0 PUSH2 0x1E7B PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x264F JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1E88 SWAP2 SWAP1 PUSH2 0x2122 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH2 0x1EB1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD AND SWAP1 JUMP JUMPDEST PUSH0 SWAP5 POP SWAP5 POP SWAP5 POP POP POP PUSH2 0x1ED3 JUMP JUMPDEST PUSH0 PUSH2 0x1ECA ADDRESS DUP4 PUSH2 0xA04 JUMP JUMPDEST PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 DUP9 GAS CALL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1F28 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11AD JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1F63 DUP6 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1F4E JUMPI PUSH0 PUSH2 0x1F58 JUMP JUMPDEST PUSH2 0x1F58 DUP9 DUP6 PUSH2 0x2788 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x1BD6 JUMP JUMPDEST SWAP1 POP DUP1 PUSH4 0xFFFFFFFF AND PUSH2 0x1F74 PUSH2 0x1B0C JUMP JUMPDEST PUSH2 0x1F7E SWAP2 SWAP1 PUSH2 0x26EF JUMP JUMPDEST SWAP3 POP PUSH4 0xFFFFFFFF DUP7 AND PUSH1 0x20 DUP4 SWAP1 SHL PUSH8 0xFFFFFFFF00000000 AND PUSH1 0x40 DUP6 SWAP1 SHL PUSH14 0xFFFFFFFFFFFF0000000000000000 AND OR OR SWAP4 POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH10 0xFFFFFFFFFFFFFFFFFFFF PUSH1 0x20 DUP4 SWAP1 SHR AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP4 AND PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 DUP6 SWAP1 SHR DUP2 AND SWAP1 DUP5 AND DUP2 GT ISZERO PUSH2 0x1FF4 JUMPI DUP3 DUP3 DUP3 PUSH2 0x1FF8 JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH6 0xFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x204A JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x30 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x840 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2062 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2075 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x208B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x20BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x20D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x20DE DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x20F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2104 DUP8 DUP3 DUP9 ADD PUSH2 0x2065 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x2117 SWAP1 POP PUSH1 0x40 DUP7 ADD PUSH2 0x20A5 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2132 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x8F5 DUP3 PUSH2 0x20A5 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x214C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2157 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x216B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2187 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2192 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x216B DUP2 PUSH2 0x204E JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x21B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x21C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x21F1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x21FC DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2216 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2222 DUP7 DUP3 DUP8 ADD PUSH2 0x21A2 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x20BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2254 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x225D DUP5 PUSH2 0x20A5 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x226D DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH2 0x227B PUSH1 0x40 DUP6 ADD PUSH2 0x222F JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2295 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2192 DUP4 PUSH2 0x20A5 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x22AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x22B8 DUP4 PUSH2 0x20A5 JUMP JUMPDEST SWAP2 POP PUSH2 0x22C6 PUSH1 0x20 DUP5 ADD PUSH2 0x20A5 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22DF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8F5 DUP2 PUSH2 0x204E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x2062 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2327 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2332 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x216B DUP2 PUSH2 0x2301 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2354 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x21FC DUP5 PUSH2 0x20A5 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x236E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2377 DUP4 PUSH2 0x20A5 JUMP JUMPDEST SWAP2 POP PUSH2 0x22C6 PUSH1 0x20 DUP5 ADD PUSH2 0x222F JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2398 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x23A3 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x23B3 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x23CD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x23D9 DUP8 DUP3 DUP9 ADD PUSH2 0x21A2 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x23F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x240B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2417 DUP6 DUP3 DUP7 ADD PUSH2 0x2065 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD PUSH1 0x20 DUP4 MSTORE DUP1 DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP6 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP7 ADD ADD SWAP3 POP PUSH1 0x20 DUP7 ADD PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x249B JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE DUP2 MLOAD DUP1 MLOAD DUP1 DUP8 MSTORE DUP1 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP10 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP10 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP9 ADD ADD SWAP7 POP POP POP PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x2449 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x24B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x24C4 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x24D4 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x24E4 DUP2 PUSH2 0x2301 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2500 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2377 DUP2 PUSH2 0x204E JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x251E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2529 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2543 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x254F DUP8 DUP3 DUP9 ADD PUSH2 0x21A2 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x256D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x259C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8F5 DUP2 PUSH2 0x2301 JUMP JUMPDEST DUP2 DUP4 MSTORE DUP2 DUP2 PUSH1 0x20 DUP6 ADD CALLDATACOPY POP PUSH0 DUP3 DUP3 ADD PUSH1 0x20 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND SWAP1 SWAP2 ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x25E2 PUSH1 0x20 DUP4 ADD DUP5 DUP7 PUSH2 0x25A7 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x25FA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x8F5 DUP2 PUSH2 0x2301 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x2631 SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x25A7 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x265D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x2669 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x269F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x26B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH0 DUP4 DUP3 ADD PUSH0 DUP2 MSTORE DUP4 MLOAD DUP1 PUSH1 0x20 DUP7 ADD DUP4 MCOPY PUSH0 SWAP2 ADD SWAP1 DUP2 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x752 JUMPI PUSH2 0x752 PUSH2 0x263B JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP7 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE DUP5 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x2747 SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x25A7 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x1A06 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x752 JUMPI PUSH2 0x752 PUSH2 0x263B JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP12 BALANCE PUSH5 0xB8CDEAC6FA 0xAF DUP13 SUB 0xB8 LOG2 PUSH28 0x787DCCCB72987C31447C36CEDC0E6DF90B7364736F6C634300081E00 CALLER ","sourceMap":"3782:26184:17:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15209:291;;;;;;;;;;-1:-1:-1;15209:291:17;;;;;:::i;:::-;;:::i;:::-;;8594:124;;;;;;;;;;-1:-1:-1;8594:124:17;;;;;:::i;:::-;-1:-1:-1;;;;;8688:14:17;;;8663:6;8688:14;;;:6;:14;;;;;;;;:23;;-1:-1:-1;;;8688:23:17;;;;8594:124;;;;-1:-1:-1;;;;;1695:31:101;;;1677:50;;1665:2;1650:18;8594:124:17;;;;;;;;8759:134;;;;;;;;;;-1:-1:-1;8759:134:17;;;;;:::i;:::-;;:::i;:::-;;;1912:10:101;1900:23;;;1882:42;;1870:2;1855:18;8759:134:17;1738:192:101;16678:133:17;;;;;;;;;;-1:-1:-1;16678:133:17;;;;;:::i;:::-;;:::i;23845:159::-;;;;;;;;;;-1:-1:-1;23845:159:17;;;;;:::i;:::-;;:::i;19792:1238::-;;;;;;:::i;:::-;;:::i;10258:191::-;;;;;;;;;;-1:-1:-1;10258:191:17;;;;;:::i;:::-;;:::i;8934:408::-;;;;;;;;;;-1:-1:-1;8934:408:17;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;4791:14:101;4779:27;;;4761:46;;4855:10;4843:23;;;4838:2;4823:18;;4816:51;4903:23;;;;4898:2;4883:18;;4876:51;4963:27;;4958:2;4943:18;;4936:55;4748:3;4733:19;;4538:459;10946:126:17;;;;;;;;;;-1:-1:-1;10946:126:17;;;;;:::i;:::-;;:::i;17306:184::-;;;;;;;;;;-1:-1:-1;17306:184:17;;;;;:::i;:::-;;:::i;:::-;;;5622:14:101;5610:27;;;5592:46;;5580:2;5565:18;17306:184:17;5448:196:101;5638:53:17;;;;;;;;;;;;-1:-1:-1;;;;;5638:53:17;;17531:111;;;;;;;;;;-1:-1:-1;17531:111:17;;;;;:::i;:::-;17590:6;17615:14;;;:10;:14;;;;;:20;-1:-1:-1;;;17615:20:17;;;;;17531:111;7626:90;;;;;;;;;;-1:-1:-1;7702:7:17;7626:90;;8255:139;;;;;;;;;;-1:-1:-1;8255:139:17;;;;;:::i;:::-;;:::i;11113:138::-;;;;;;;;;;-1:-1:-1;11113:138:17;;;;;:::i;:::-;;:::i;8435:118::-;;;;;;;;;;-1:-1:-1;8435:118:17;;;;;:::i;:::-;-1:-1:-1;;;;;8526:14:17;;;8501:6;8526:14;;;:6;:14;;;;;;;;:20;;;;8435:118;8050:164;;;;;;;;;;-1:-1:-1;8050:164:17;;;;;:::i;:::-;;:::i;5457:52::-;;;;;;;;;;;;5493:16;5457:52;;9961:256;;;;;;;;;;-1:-1:-1;9961:256:17;;;;;:::i;:::-;;:::i;22220:376::-;;;;;;;;;;-1:-1:-1;22220:376:17;;;;;:::i;:::-;;:::i;7887:122::-;;;;;;;;;;-1:-1:-1;7887:122:17;;;;;:::i;:::-;;:::i;:::-;;;7080:14:101;;7073:22;7055:41;;7043:2;7028:18;7887:122:17;6915:187:101;11292:134:17;;;;;;;;;;-1:-1:-1;11292:134:17;;;;;:::i;:::-;;:::i;23503:181::-;;;;;;;;;;-1:-1:-1;23503:181:17;;;;;:::i;:::-;;:::i;:::-;;;8204:25:101;;;8192:2;8177:18;23503:181:17;8058:177:101;1224:482:51;;;;;;;;;;-1:-1:-1;1224:482:51;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6783:802:17:-;;;;;;;;;;-1:-1:-1;6783:802:17;;;;;:::i;:::-;;:::i;:::-;;;;10436:14:101;;10429:22;10411:41;;10500:10;10488:23;;;10483:2;10468:18;;10461:51;10384:18;6783:802:17;10245:273:101;10490:127:17;;;;;;;;;;-1:-1:-1;10490:127:17;;;;;:::i;:::-;;:::i;7757:89::-;;;;;;;;;;-1:-1:-1;7833:6:17;7757:89;;9383:418;;;;;;;;;;-1:-1:-1;9383:418:17;;;;;:::i;:::-;;:::i;15928:147::-;;;;;;;;;;-1:-1:-1;15928:147:17;;;;;:::i;:::-;;:::i;21071:1108::-;;;;;;;;;;-1:-1:-1;21071:1108:17;;;;;:::i;:::-;;:::i;17683:1373::-;;;;;;;;;;-1:-1:-1;17683:1373:17;;;;;:::i;:::-;;:::i;:::-;;;;11744:25:101;;;11817:10;11805:23;;;11800:2;11785:18;;11778:51;11717:18;17683:1373:17;11572:263:101;10658:247:17;;;;;;;;;;-1:-1:-1;10658:247:17;;;;;:::i;:::-;;:::i;15209:291::-;6297:18;:16;:18::i;:::-;15375:9:::1;15370:124;15390:20:::0;;::::1;15370:124;;;15431:52;15454:6;15462:9;;15472:1;15462:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;15476:6;15431:22;:52::i;:::-;15412:3;;15370:124;;;;15209:291:::0;;;;:::o;8759:134::-;-1:-1:-1;;;;;8855:14:17;;8830:6;8855:14;;;:6;:14;;;;;;;:25;;:31;;-1:-1:-1;;;8855:25:17;;-1:-1:-1;;;;;8855:25:17;:29;:31::i;:::-;8848:38;8759:134;-1:-1:-1;;8759:134:17:o;16678:133::-;6297:18;:16;:18::i;:::-;16772:32:::1;16789:6;16797;16772:16;:32::i;:::-;16678:133:::0;;:::o;23845:159::-;6297:18;:16;:18::i;:::-;23948:49:::1;::::0;-1:-1:-1;;;23948:49:17;;-1:-1:-1;;;;;12386:32:101;;;23948:49:17::1;::::0;::::1;12368:51:101::0;23948:35:17;::::1;::::0;::::1;::::0;12341:18:101;;23948:49:17::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23845:159:::0;;:::o;19792:1238::-;19878:6;735:10:47;19878:6:17;;20051:38;735:10:47;20076:6:17;20084:4;;20051:16;:38::i;:::-;20016:73;;;;20150:9;20149:10;:26;;;;-1:-1:-1;20163:12:17;;;;20149:26;20145:131;;;20228:6;20236;20244:20;20259:4;;20244:14;:20::i;:::-;20198:67;;-1:-1:-1;;;20198:67:17;;-1:-1:-1;;;;;12648:32:101;;;20198:67:17;;;12630:51:101;12717:32;;;;12697:18;;;12690:60;-1:-1:-1;;;;;;12786:33:101;12766:18;;;12759:61;12603:18;;20198:67:17;;;;;;;;20145:131;20286:19;20308:35;20322:6;20330;20338:4;;20308:13;:35::i;:::-;20286:57;-1:-1:-1;20353:12:17;20545;;;;;;:45;;;20561:24;20573:11;20561;:24::i;:::-;:29;;;;20545:45;20541:116;;;20614:32;20634:11;20614:19;:32::i;:::-;20606:40;;20541:116;20749:12;;20786:46;20803:6;20811:20;20826:4;;20811:14;:20::i;:::-;20786:16;:46::i;:::-;20771:12;:61;;;;20867:54;20897:6;20905:4;;20867:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20911:9:17;;-1:-1:-1;20867:29:17;;-1:-1:-1;;20867:54:17:i;:::-;-1:-1:-1;20968:12:17;:32;21018:5;-1:-1:-1;;;;;19792:1238:17;;;;;;:::o;10258:191::-;6297:18;:16;:18::i;:::-;10372:70:::1;10383:6;10391:7;10400:25;10418:6;10400:17;:25::i;:::-;10427:14;10372:10;:70::i;:::-;;10258:191:::0;;;:::o;8934:408::-;-1:-1:-1;;;;;9141:14:17;;9036:12;9141:14;;;:6;:14;;;;;;;;-1:-1:-1;;;;;9141:31:17;;;;;;;;;9191:12;;;;;;9036;;;;;9141:31;9252:22;;-1:-1:-1;;;9252:12:17;;-1:-1:-1;;;;;9252:12:17;:20;:22::i;:::-;8934:408;;9213:61;;-1:-1:-1;9213:61:17;-1:-1:-1;8934:408:17;-1:-1:-1;;;;8934:408:17:o;10946:126::-;6297:18;:16;:18::i;:::-;11037:28:::1;11051:6;11059:5;11037:13;:28::i;17306:184::-:0;17368:6;17405:14;;;:10;:14;;;;;:24;;;17446:21;17405:24;17446:10;:21::i;:::-;:37;;17474:9;17446:37;;;17470:1;17439:44;17306:184;-1:-1:-1;;;17306:184:17:o;8255:139::-;-1:-1:-1;;;;;8354:16:17;;8329:6;8354:16;;;;;;;;;;:27;;;:33;;-1:-1:-1;;;;;8354:27:17;:31;:33::i;11113:138::-;6297:18;:16;:18::i;:::-;11210:34:::1;11227:6;11235:8;11210:16;:34::i;8050:164::-:0;-1:-1:-1;;;;;8168:16:17;;8143:6;8168:16;;;;;;;;;;;-1:-1:-1;;;;;;8168:39:17;;;;;;;;;;-1:-1:-1;;;;;8168:39:17;8050:164;;;;:::o;9961:256::-;6297:18;:16;:18::i;:::-;-1:-1:-1;;;;;10062:20:17;::::1;::::0;;:45:::1;;-1:-1:-1::0;;;;;;10086:21:17;;::::1;;10062:45;10058:114;;;10130:31;::::0;-1:-1:-1;;;10130:31:17;;-1:-1:-1;;;;;1695:31:101;;10130::17::1;::::0;::::1;1677:50:101::0;1650:18;;10130:31:17::1;1533:200:101::0;10058:114:17::1;10196:6;-1:-1:-1::0;;;;;10186:24:17::1;;10204:5;;10186:24;;;;;;;:::i;:::-;;;;;;;;9961:256:::0;;;:::o;22220:376::-;22353:47;;;-1:-1:-1;;;22353:47:17;;;;;735:10:47;;22404:46:17;735:10:47;;22404:46:17;;22353:47;;;;;;;;;;;;;;;735:10:47;22353:47:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22353:97:17;;22349:175;;22473:40;;-1:-1:-1;;;22473:40:17;;-1:-1:-1;;;;;12386:32:101;;22473:40:17;;;12368:51:101;12341:18;;22473:40:17;12222:203:101;22349:175:17;22533:56;22553:35;22567:6;22575;22583:4;;22553:13;:35::i;:::-;22533:19;:56::i;7887:122::-;-1:-1:-1;;;;;7979:16:17;7956:4;7979:16;;;;;;;;;;:23;;;-1:-1:-1;;;7979:23:17;;;;;7887:122::o;11292:134::-;6297:18;:16;:18::i;:::-;11387:32:::1;11402:6;11410:8;11387:14;:32::i;23503:181::-:0;23608:7;23655:6;23663;23671:4;;23644:32;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23634:43;;;;;;23627:50;;23503:181;;;;;;:::o;1224:482:51:-;1388:12;;;1324:20;1388:12;;;;;;;;1290:22;;1499:4;-1:-1:-1;;;;;1487:24:51;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1477:34:51;-1:-1:-1;1526:9:51;1521:155;1541:15;;;1521:155;;;1590:75;1627:4;1647;;1652:1;1647:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;1656;1634:30;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1590:28;:75::i;:::-;1577:7;1585:1;1577:10;;;;;;;;:::i;:::-;;;;;;;;;;:88;1558:3;;1521:155;;;;1685:14;1224:482;;;;:::o;6783:802:17:-;6908:14;6924:12;6952:22;6967:6;6952:14;:22::i;:::-;6948:631;;;-1:-1:-1;6998:5:17;;-1:-1:-1;6998:5:17;6990:17;;6948:631;7046:4;-1:-1:-1;;;;;7028:23:17;;;7024:555;;7294:30;7307:6;7315:8;7294:12;:30::i;:::-;7326:1;7286:42;;;;;;7024:555;7359:13;7375:39;7397:6;7405:8;7375:21;:39::i;:::-;7359:55;;7429:13;7444:19;7467:23;7475:6;7483;7467:7;:23::i;:::-;7428:62;;;;7511:8;:57;;7559:5;7566:1;7511:57;;;7523:17;;;;:12;7511:57;7504:64;;;;;;;7024:555;6783:802;;;;;;:::o;10490:127::-;6297:18;:16;:18::i;:::-;10582:28:::1;10594:6;10602:7;10582:11;:28::i;:::-;;10490:127:::0;;:::o;9383:418::-;9483:13;;-1:-1:-1;;;;;;;9535:21:17;;;9531:264;;-1:-1:-1;9580:4:17;;-1:-1:-1;9586:1:17;9572:16;;9531:264;9620:19;9641;9668:26;9678:6;9686:7;9668:9;:26::i;:::-;9619:75;;;;;;9716:12;:17;;9732:1;9716:17;;:53;;;;;9753:16;:14;:16::i;:::-;9737:32;;:12;:32;;;;9716:53;9708:76;-1:-1:-1;9771:12:17;-1:-1:-1;9708:76:17;;-1:-1:-1;9708:76:17;9531:264;9383:418;;;;;:::o;15928:147::-;6297:18;:16;:18::i;:::-;16030:38:::1;16051:6;16059:8;16030:20;:38::i;21071:1108::-:0;21164:6;735:10:47;21164:6:17;21242:20;21257:4;;21242:14;:20::i;:::-;21224:38;;21273:19;21295:35;21309:6;21317;21325:4;;21295:13;:35::i;:::-;21344:23;;;;:10;:23;;;;;:33;21273:57;;-1:-1:-1;21344:33:17;;;;:38;;21340:614;;21405:38;;-1:-1:-1;;;21405:38:17;;;;;8204:25:101;;;8177:18;;21405:38:17;8058:177:101;21340:614:17;21474:9;-1:-1:-1;;;;;21464:19:17;:6;-1:-1:-1;;;;;21464:19:17;;21460:494;;21633:12;21651:30;5493:16;21671:9;21651:7;:30::i;:::-;21632:49;;;21696:15;21717:76;21725:56;21741:39;21763:6;21771:8;21741:21;:39::i;21725:56::-;21783:9;21717:7;:76::i;:::-;21695:98;;;21812:7;21811:8;:23;;;;;21824:10;21823:11;21811:23;21807:137;;;21861:68;;-1:-1:-1;;;21861:68:17;;-1:-1:-1;;;;;16018:32:101;;;21861:68:17;;;16000:51:101;16087:32;;;16067:18;;;16060:60;16156:32;;16136:18;;;16129:60;-1:-1:-1;;;;;;16225:33:101;;16205:18;;;16198:61;15972:19;;21861:68:17;15771:494:101;21807:137:17;21485:469;;21460:494;21971:23;;;;:10;:23;;;;;;21964:40;;-1:-1:-1;;21964:40:17;;;;;22112:37;;-1:-1:-1;;;22068:29:17;;;;;;;;21971:23;;22112:37;;;22167:5;21071:1108;-1:-1:-1;;;;;;;;21071:1108:17:o;17683:1373::-;17805:19;;735:10:47;17805:19:17;17991:38;735:10:47;18016:6:17;18024:4;;17991:16;:38::i;:::-;17970:59;;;18040:14;18076:7;18057:26;;:16;:14;:16::i;:::-;:26;;;;:::i;:::-;18040:43;-1:-1:-1;18190:12:17;;;;;:44;;;18214:1;18207:4;:8;;;:26;;;;;18226:7;18219:14;;:4;:14;;;18207:26;18186:149;;;18287:6;18295;18303:20;18318:4;;18303:14;:20::i;18186:149::-;18407:23;18416:4;18407:23;;18422:7;18407:23;;:8;:23::i;:::-;18393:38;;18551:35;18565:6;18573;18581:4;;18551:13;:35::i;:::-;18537:49;;18597:31;18616:11;18597:18;:31::i;:::-;18750:23;;;;:10;:23;;;;;;;:29;;18803:40;;;-1:-1:-1;;18853:37:17;;;-1:-1:-1;;;18750:29:17;;;;;;;;18782:1;18750:33;18853:37;;;;;;;;;;;;;18905:66;;18750:33;;-1:-1:-1;18750:23:17;;18905:66;;;;18803:40;;18950:6;;18958;;18966:4;;;;18905:66;:::i;:::-;;;;;;;;17840:1216;;;17683:1373;;;;;;;:::o;10658:247::-;-1:-1:-1;;;;;10752:34:17;;735:10:47;10752:34:17;10748:102;;10809:30;;-1:-1:-1;;;10809:30:17;;;;;;;;;;;24358:503;735:10:47;24404:14:17;;24476:32;735:10:47;24404:14:17;809::47;24476:12:17;:32::i;:::-;24443:65;;;;24523:9;24518:337;;24552:5;:10;;24561:1;24552:10;24548:297;;24585:19;24610:33;24585:19;809:14:47;24610:21:17;:33::i;:::-;-1:-1:-1;24668:54:17;;-1:-1:-1;;;24668:54:17;;-1:-1:-1;;;;;17180:32:101;;24668:54:17;;;17162:51:101;-1:-1:-1;;;;;17249:31:101;;17229:18;;;17222:59;24582:61:17;;-1:-1:-1;17135:18:101;;;-1:-1:-1;24668:54:17;16990:297:101;24548::17;24761:69;24781:48;24795:6;24811:4;809:14:47;;23503:181:17;:::i;15659:228::-;-1:-1:-1;;;;;15766:16:17;;:8;:16;;;;;;;;;;;-1:-1:-1;;;;;;15766:39:17;;;;;;;;;;;;:48;;-1:-1:-1;;15766:48:17;-1:-1:-1;;;;;15766:48:17;;;;;;;;15829:51;;17436:52:101;;;15766:48:17;:16;15829:51;;17409:18:101;15829:51:17;;;;;;;15659:228;;;:::o;3608:130:66:-;3656:6;3675:12;3695:14;:4;-1:-1:-1;;;;;3695:12:66;;:14::i;:::-;-1:-1:-1;3674:35:66;;3608:130;-1:-1:-1;;;;3608:130:66:o;16981:164:17:-;-1:-1:-1;;;;;17063:16:17;;:8;:16;;;;;;;;;;;;:23;;:32;;;;;-1:-1:-1;;;17063:32:17;-1:-1:-1;;;;17063:32:17;;;;;;17110:28;;;;;17089:6;7080:14:101;7073:22;7055:41;;7043:2;7028:18;;6915:187;17110:28:17;;;;;;;;16981:164;;:::o;27376:378::-;27507:14;;27569:4;-1:-1:-1;;;;;27551:23:17;;;27547:201;;27597:26;27610:6;27618:4;;27597:12;:26::i;:::-;27590:33;;;;;;27547:201;27675:1;27661:15;;:76;;27692:45;27700:6;27708;27716:20;27731:4;;27716:14;:20::i;27692:45::-;27661:76;;;-1:-1:-1;27680:5:17;;-1:-1:-1;27680:5:17;27547:201;27376:378;;;;;;;:::o;29590:116::-;29657:6;29689:9;29696:1;29657:6;29689:4;;:9;:::i;:::-;29682:17;;;:::i;22786:676::-;22862:6;22899:23;;;:10;:23;;;;;:33;;;;;-1:-1:-1;;;22957:29:17;;;;23001:14;;;22997:294;;23038:38;;-1:-1:-1;;;23038:38:17;;;;;8204:25:101;;;8177:18;;23038:38:17;8058:177:101;22997:294:17;23109:16;:14;:16::i;:::-;23097:28;;:9;:28;;;23093:198;;;23148:34;;-1:-1:-1;;;23148:34:17;;;;;8204:25:101;;;8177:18;;23148:34:17;8058:177:101;23093:198:17;23203:21;23214:9;23203:10;:21::i;:::-;23199:92;;;23247:33;;-1:-1:-1;;;23247:33:17;;;;;8204:25:101;;;8177:18;;23247:33:17;8058:177:101;23199:92:17;23308:23;;;;:10;:23;;;;;;23301:40;;-1:-1:-1;;23301:40:17;;;23395:37;;;;;23319:11;;23395:37;;23308:23;23395:37;23450:5;22786:676;-1:-1:-1;;;22786:676:17:o;29780:184::-;-1:-1:-1;;;;;29921:24:17;;29861:7;928:15:59;;;-1:-1:-1;;;;;;29887:70:17;;963:4:59;956:15;1009:4;993:21;;29887:70:17;791:239:59;3165:696:45;3264:12;3316:5;3292:21;:29;3288:123;;;3344:56;;-1:-1:-1;;;3344:56:45;;3371:21;3344:56;;;18016:25:101;18057:18;;;18050:34;;;17989:18;;3344:56:45;17842:248:101;3288:123:45;3420:12;3435:46;3461:6;3469:5;3476:4;3435:25;:46::i;:::-;3420:61;;3495:7;:72;;;;-1:-1:-1;3539:1:45;4583:16:49;3507:33:45;:59;;;;3565:1;3544:6;-1:-1:-1;;;;;3544:18:45;;:22;3507:59;3491:364;;;3590:25;:23;:25::i;:::-;3583:32;;;;;3491:364;3636:7;3632:223;;;3666:24;;-1:-1:-1;;;3666:24:45;;-1:-1:-1;;;;;12386:32:101;;3666:24:45;;;12368:51:101;12341:18;;3666:24:45;12222:203:101;3632:223:45;4583:16:49;3711:33:45;3707:148;;3760:27;:25;:27::i;:::-;3707:148;;;3825:19;;-1:-1:-1;;;3825:19:45;;;;;;;;;;;3707:148;3278:583;3165:696;;;;;:::o;11603:1061:17:-;11761:4;-1:-1:-1;;;;;;;11781:21:17;;;11777:90;;11825:31;;-1:-1:-1;;;11825:31:17;;-1:-1:-1;;;;;1695:31:101;;11825::17;;;1677:50:101;1650:18;;11825:31:17;1533:200:101;11777:90:17;-1:-1:-1;;;;;11894:14:17;;11877;11894;;;:6;:14;;;;;;;;-1:-1:-1;;;;;11894:31:17;;;;;;;;;:37;;;:42;;11969:585;;;;12025:10;12006:29;;:16;:14;:16::i;:::-;:29;;;;:::i;:::-;11998:37;;12083:55;;;;;;;;12098:5;12083:55;;;;;;12112:24;:14;:22;;2588:20:66;;;2507:108;12112:24:17;-1:-1:-1;;;;;12083:55:17;;;;;;-1:-1:-1;;;;;12049:14:17;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12049:31:17;;;;;;;;;:89;;;;;;;;;;;;-1:-1:-1;;;12049:89:17;-1:-1:-1;;;;;;12049:89:17;;;;;;;;;;;;;;11969:585;;;-1:-1:-1;;;;;12430:14:17;;12528:1;12430:14;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12430:31:17;;;;;;;;;:37;:113;;-1:-1:-1;;;12430:37:17;;;-1:-1:-1;;;;;12430:37:17;;12496:14;;12430:48;:113::i;:::-;-1:-1:-1;;;;;12382:14:17;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12382:31:17;;;;;;;;;12381:162;;-1:-1:-1;;;;;12381:162:17;;;-1:-1:-1;;;12381:162:17;-1:-1:-1;;12381:162:17;;;;;;;;;;;-1:-1:-1;11969:585:17;12569:62;;;18317:10:101;18305:23;;18287:42;;18377:14;18365:27;;18360:2;18345:18;;18338:55;18436:14;;18429:22;18409:18;;;18402:50;12569:62:17;;-1:-1:-1;;;;;12569:62:17;;;-1:-1:-1;;;;;12569:62:17;;;;;;;;18275:2:101;12569:62:17;;;-1:-1:-1;12648:9:17;11603:1061;-1:-1:-1;;;;;11603:1061:17:o;3392:159:66:-;3444:18;3464:17;3483:13;3515:29;3526:4;3532:11;:9;:11::i;:::-;3515:10;:29::i;:::-;3508:36;;;;;;3392:159;;;;;:::o;13620:285:17:-;-1:-1:-1;;;;;13703:20:17;;;;:45;;-1:-1:-1;;;;;;13727:21:17;;;;13703:45;13699:114;;;13771:31;;-1:-1:-1;;;13771:31:17;;-1:-1:-1;;;;;1695:31:101;;13771::17;;;1677:50:101;1650:18;;13771:31:17;1533:200:101;13699:114:17;-1:-1:-1;;;;;13823:14:17;;;;;;;:6;:14;;;;;;;;:20;;;:28;;-1:-1:-1;;13823:28:17;;;;;;;;;13867:31;;;13823:14;13867:31;13620:285;;:::o;29346:134::-;29406:4;29457:16;:14;:16::i;:::-;29429:44;;:24;7702:7;29429:9;:24;:::i;:::-;:44;;;;;29346:134;-1:-1:-1;;29346:134:17:o;14224:303::-;-1:-1:-1;;;;;14313:20:17;;;;:45;;-1:-1:-1;;;;;;14337:21:17;;;;14313:45;14309:114;;;14381:31;;-1:-1:-1;;;14381:31:17;;-1:-1:-1;;;;;1695:31:101;;14381::17;;;1677:50:101;1650:18;;14381:31:17;1533:200:101;14309:114:17;-1:-1:-1;;;;;14433:14:17;;;;;;;:6;:14;;;;;;;;:23;;;:34;;-1:-1:-1;;14433:34:17;-1:-1:-1;;;14433:34:17;;;;;;;;;14483:37;;;14433:14;14483:37;14224:303;;:::o;14674:374::-;-1:-1:-1;;;;;;;14761:21:17;;;14757:90;;14805:31;;-1:-1:-1;;;14805:31:17;;-1:-1:-1;;;;;1695:31:101;;14805::17;;;1677:50:101;1650:18;;14805:31:17;1533:200:101;14757:90:17;-1:-1:-1;;;;;14918:14:17;;14857:13;14918:14;;;:6;:14;;;;;;;:25;;:60;;-1:-1:-1;;;14918:25:17;;-1:-1:-1;;;;;14918:25:17;14955:8;7833:6;14918:36;:60::i;:::-;-1:-1:-1;;;;;14881:14:17;;;;;;:6;:14;;;;;;;;;:25;14880:98;;-1:-1:-1;;;;;14880:98:17;;;-1:-1:-1;;;14880:98:17;-1:-1:-1;;;;14880:98:17;;;;;;;;;;14994:47;;14880:98;;-1:-1:-1;14994:47:17;;;;15024:8;;14880:98;;18663:10:101;18651:23;;;;18633:42;;18723:14;18711:27;18706:2;18691:18;;18684:55;18621:2;18606:18;;18463:282;4691:549:45;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:45;4583:16:49;4886:33:45;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:45;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;:::-;4962:32;;;;;4870:364;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:45;;-1:-1:-1;;;;;12386:32:101;;5045:24:45;;;12368:51:101;12341:18;;5045:24:45;12222:203:101;5011:223:45;4583:16:49;5090:33:45;5086:148;;5139:27;:25;:27::i;:::-;4788:452;4691:549;;;;:::o;29085:157:17:-;29162:4;29201:34;29218:6;29226:8;29201:16;:34::i;:::-;29185:12;;:50;;29085:157;-1:-1:-1;;;29085:157:17:o;12925:400::-;13004:4;-1:-1:-1;;;;;;;13024:21:17;;;13020:90;;13068:31;;-1:-1:-1;;;13068:31:17;;-1:-1:-1;;;;;1695:31:101;;13068::17;;;1677:50:101;1650:18;;13068:31:17;1533:200:101;13020:90:17;-1:-1:-1;;;;;13124:14:17;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;13124:31:17;;;;;;;;;:37;;;:42;;13120:85;;-1:-1:-1;13189:5:17;13182:12;;13120:85;-1:-1:-1;;;;;13222:14:17;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;13222:31:17;;;;;;;;;;13215:38;;-1:-1:-1;;;;;;13215:38:17;;;13269:28;13222:31;;:14;13269:28;;;-1:-1:-1;13314:4:17;12925:400;;;;:::o;750:110:66:-;794:6;819:34;837:15;819:17;:34::i;:::-;812:41;;750:110;:::o;16230:287:17:-;-1:-1:-1;;;;;16383:16:17;;16320:13;16383:16;;;;;;;;;;:27;;;:62;;-1:-1:-1;;;;;16383:27:17;16422:8;7833:6;16383:38;:62::i;:::-;-1:-1:-1;;;;;16344:16:17;;:8;:16;;;;;;;;;;;;:27;;16343:102;;-1:-1:-1;;16343:102:17;-1:-1:-1;;;;;16343:102:17;;;;;;;;;;;16461:49;;18663:10:101;18651:23;;18633:42;;18723:14;18711:27;;18691:18;;;18684:55;;;;16343:102:17;;-1:-1:-1;16344:16:17;16461:49;;18606:18:101;16461:49:17;18463:282:101;5451:111:63;5509:7;5328:5;;;5543;;;5327:36;5322:42;;5535:20;5087:294;19250:272:17;19322:20;19345:23;;;:10;:23;;;;;:33;;;19392:18;;;;;:48;;;19415:25;19426:13;19415:10;:25::i;:::-;19414:26;19392:48;19388:128;;;19463:42;;-1:-1:-1;;;19463:42:17;;;;;8204:25:101;;;8177:18;;19463:42:17;8058:177:101;27858:1107:17;27939:14;;27997:1;27983:15;;27979:63;;;-1:-1:-1;28022:5:17;;-1:-1:-1;28022:5:17;28014:17;;27979:63;28074:4;-1:-1:-1;;;;;28056:23:17;;;28052:334;;28322:49;28343:4;28350:20;28365:4;;28350:14;:20::i;:::-;28322:12;:49::i;28052:334::-;28397:20;28419:13;28434:21;28459:27;28481:4;;28459:21;:27::i;:::-;28396:90;;;;;;28567:15;28566:16;:49;;;;;28586:29;28609:4;28586:14;:29::i;:::-;28562:97;;;28639:5;28646:1;28631:17;;;;;;;;;28562:97;28670:11;28683:21;28708:23;28716:6;28724;28708:7;:23::i;:::-;28669:62;;;;28746:6;28741:55;;28776:5;28783:1;28768:17;;;;;;;;;;;28741:55;28881:40;28890:14;28881:40;;28906:14;28881:40;;:8;:40::i;:::-;28940:10;;;;;;;-1:-1:-1;27858:1107:17;-1:-1:-1;;;;;;;;;27858:1107:17:o;25267:1678::-;25355:20;;;25448:1;25434:15;;25430:66;;;-1:-1:-1;25473:5:17;;-1:-1:-1;25473:5:17;;-1:-1:-1;25473:5:17;25465:20;;25430:66;25506:15;25524:20;25539:4;;25524:14;:20::i;:::-;25506:38;-1:-1:-1;;;;;;;25664:35:17;;-1:-1:-1;;;25664:35:17;;:89;;-1:-1:-1;;;;;;;25715:38:17;;-1:-1:-1;;;25715:38:17;25664:89;:146;;;-1:-1:-1;;;;;;;25769:41:17;;-1:-1:-1;;;25769:41:17;25664:146;:201;;;-1:-1:-1;;;;;;;25826:39:17;;-1:-1:-1;;;25826:39:17;25664:201;:262;;;-1:-1:-1;;;;;;;25881:45:17;;-1:-1:-1;;;25881:45:17;25664:262;25647:343;;;25959:4;5493:16;25977:1;25951:28;;;;;;;;;25647:343;-1:-1:-1;;;;;;26097:41:17;;-1:-1:-1;;;26097:41:17;;:98;;-1:-1:-1;;;;;;;26154:41:17;;-1:-1:-1;;;26154:41:17;26097:98;:161;;;-1:-1:-1;;;;;;;26211:47:17;;-1:-1:-1;;;26211:47:17;26097:161;26080:414;;;26326:14;26354:15;26364:4;26359;26354;;:15;:::i;:::-;26343:38;;;;;;;:::i;:::-;26326:55;;26395:12;26410:27;26430:6;26410:19;:27::i;:::-;26459:4;;-1:-1:-1;5493:16:17;;-1:-1:-1;26395:42:17;-1:-1:-1;26451:32:17;;-1:-1:-1;;;26451:32:17;26080:414;-1:-1:-1;;;;;;26613:35:17;;-1:-1:-1;;;26613:35:17;;:75;;-1:-1:-1;;;;;;;26652:36:17;;-1:-1:-1;;;26652:36:17;26613:75;26609:254;;;26747:13;26774:15;26784:4;26779;26774;;:15;:::i;:::-;26763:37;;;;;;;:::i;:::-;26747:53;;26822:4;26828:20;26841:6;-1:-1:-1;;;;;8526:14:17;;;8501:6;8526:14;;;:6;:14;;;;;;;;:20;;;;8435:118;26828:20;26850:1;26814:38;;;;;;;;;;26609:254;26881:5;26888:46;26918:4;26925:8;26888:21;:46::i;:::-;26936:1;26873:65;;;;;;;25267:1678;;;;;;:::o;791:248:49:-;881:12;1018:4;1012;1005;999:11;992:4;986;982:15;975:5;967:6;960:5;955:68;944:79;791:248;-1:-1:-1;;;;791:248:49:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;4032:390:66;4153:18;4173:13;4198:12;4213:10;:4;-1:-1:-1;;;;;4213:8:66;;:10::i;:::-;4198:25;;4233:14;4257:61;4266:10;4257:61;;4286:8;4278:16;;:5;:16;;;:39;;4316:1;4278:39;;;4297:16;4305:8;4297:5;:16;:::i;:::-;4257:61;;:8;:61::i;:::-;4233:86;;4352:7;4338:21;;:11;:9;:11::i;:::-;:21;;;;:::i;:::-;4329:30;-1:-1:-1;5125:19:66;;;5119:2;5095:26;;;;;5088:2;5069:21;;;;;5068:54;:76;4369:46;;;;4032:390;;;;;;:::o;2867:307::-;4763:9;4770:2;4763:9;;;;-1:-1:-1;;;;;3061:11:66;;4799:9;4806:2;4799:9;;;;;;3091:19;;;;;:76;;3135:11;3148:10;3160:6;3091:76;;;3114:10;3126:1;3129;3091:76;3084:83;;;;;;2867:307;;;;;:::o;3383:242:49:-;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:49:o;14296:213:64:-;14352:6;14382:16;14374:24;;14370:103;;;14421:41;;-1:-1:-1;;;14421:41:64;;14452:2;14421:41;;;19366:36:101;19418:18;;;19411:34;;;19339:18;;14421:41:64;19185:266:101;14370:103:64;-1:-1:-1;14496:5:64;14296:213::o;14:131:101:-;-1:-1:-1;;;;;89:31:101;;79:42;;69:70;;135:1;132;125:12;69:70;14:131;:::o;150:366::-;212:8;222:6;276:3;269:4;261:6;257:17;253:27;243:55;;294:1;291;284:12;243:55;-1:-1:-1;317:20:101;;-1:-1:-1;;;;;349:30:101;;346:50;;;392:1;389;382:12;346:50;429:4;421:6;417:17;405:29;;489:3;482:4;472:6;469:1;465:14;457:6;453:27;449:38;446:47;443:67;;;506:1;503;496:12;521:171;588:20;;-1:-1:-1;;;;;637:30:101;;627:41;;617:69;;682:1;679;672:12;617:69;521:171;;;:::o;697:642::-;799:6;807;815;823;876:2;864:9;855:7;851:23;847:32;844:52;;;892:1;889;882:12;844:52;931:9;918:23;950:31;975:5;950:31;:::i;:::-;1000:5;-1:-1:-1;1056:2:101;1041:18;;1028:32;-1:-1:-1;;;;;1072:30:101;;1069:50;;;1115:1;1112;1105:12;1069:50;1154:69;1215:7;1206:6;1195:9;1191:22;1154:69;:::i;:::-;1242:8;;-1:-1:-1;1128:95:101;-1:-1:-1;1296:37:101;;-1:-1:-1;1329:2:101;1314:18;;1296:37;:::i;:::-;1286:47;;697:642;;;;;;;:::o;1344:184::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;1494:28;1512:9;1494:28;:::i;1935:416::-;2000:6;2008;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2116:9;2103:23;2135:31;2160:5;2135:31;:::i;:::-;2185:5;-1:-1:-1;2242:2:101;2227:18;;2214:32;2284:15;;2277:23;2265:36;;2255:64;;2315:1;2312;2305:12;2255:64;2338:7;2328:17;;;1935:416;;;;;:::o;2356:388::-;2424:6;2432;2485:2;2473:9;2464:7;2460:23;2456:32;2453:52;;;2501:1;2498;2491:12;2453:52;2540:9;2527:23;2559:31;2584:5;2559:31;:::i;:::-;2609:5;-1:-1:-1;2666:2:101;2651:18;;2638:32;2679:33;2638:32;2679:33;:::i;2749:347::-;2800:8;2810:6;2864:3;2857:4;2849:6;2845:17;2841:27;2831:55;;2882:1;2879;2872:12;2831:55;-1:-1:-1;2905:20:101;;-1:-1:-1;;;;;2937:30:101;;2934:50;;;2980:1;2977;2970:12;2934:50;3017:4;3009:6;3005:17;2993:29;;3069:3;3062:4;3053:6;3045;3041:19;3037:30;3034:39;3031:59;;;3086:1;3083;3076:12;3101:544;3180:6;3188;3196;3249:2;3237:9;3228:7;3224:23;3220:32;3217:52;;;3265:1;3262;3255:12;3217:52;3304:9;3291:23;3323:31;3348:5;3323:31;:::i;:::-;3373:5;-1:-1:-1;3429:2:101;3414:18;;3401:32;-1:-1:-1;;;;;3445:30:101;;3442:50;;;3488:1;3485;3478:12;3442:50;3527:58;3577:7;3568:6;3557:9;3553:22;3527:58;:::i;:::-;3101:544;;3604:8;;-1:-1:-1;3501:84:101;;-1:-1:-1;;;;3101:544:101:o;3650:163::-;3717:20;;3777:10;3766:22;;3756:33;;3746:61;;3803:1;3800;3793:12;3818:391;3893:6;3901;3909;3962:2;3950:9;3941:7;3937:23;3933:32;3930:52;;;3978:1;3975;3968:12;3930:52;4001:28;4019:9;4001:28;:::i;:::-;3991:38;;4079:2;4068:9;4064:18;4051:32;4092:31;4117:5;4092:31;:::i;:::-;4142:5;-1:-1:-1;4166:37:101;4199:2;4184:18;;4166:37;:::i;:::-;4156:47;;3818:391;;;;;:::o;4214:319::-;4281:6;4289;4342:2;4330:9;4321:7;4317:23;4313:32;4310:52;;;4358:1;4355;4348:12;4310:52;4381:28;4399:9;4381:28;:::i;5002:256::-;5068:6;5076;5129:2;5117:9;5108:7;5104:23;5100:32;5097:52;;;5145:1;5142;5135:12;5097:52;5168:28;5186:9;5168:28;:::i;:::-;5158:38;;5215:37;5248:2;5237:9;5233:18;5215:37;:::i;:::-;5205:47;;5002:256;;;;;:::o;5263:180::-;5322:6;5375:2;5363:9;5354:7;5350:23;5346:32;5343:52;;;5391:1;5388;5381:12;5343:52;-1:-1:-1;5414:23:101;;5263:180;-1:-1:-1;5263:180:101:o;5649:247::-;5708:6;5761:2;5749:9;5740:7;5736:23;5732:32;5729:52;;;5777:1;5774;5767:12;5729:52;5816:9;5803:23;5835:31;5860:5;5835:31;:::i;5901:131::-;-1:-1:-1;;;;;;5975:32:101;;5965:43;;5955:71;;6022:1;6019;6012:12;6037:386;6104:6;6112;6165:2;6153:9;6144:7;6140:23;6136:32;6133:52;;;6181:1;6178;6171:12;6133:52;6220:9;6207:23;6239:31;6264:5;6239:31;:::i;:::-;6289:5;-1:-1:-1;6346:2:101;6331:18;;6318:32;6359;6318;6359;:::i;6428:482::-;6507:6;6515;6523;6576:2;6564:9;6555:7;6551:23;6547:32;6544:52;;;6592:1;6589;6582:12;6544:52;6615:28;6633:9;6615:28;:::i;7107:256::-;7173:6;7181;7234:2;7222:9;7213:7;7209:23;7205:32;7202:52;;;7250:1;7247;7240:12;7202:52;7273:28;7291:9;7273:28;:::i;:::-;7263:38;;7320:37;7353:2;7342:9;7338:18;7320:37;:::i;7368:685::-;7456:6;7464;7472;7480;7533:2;7521:9;7512:7;7508:23;7504:32;7501:52;;;7549:1;7546;7539:12;7501:52;7588:9;7575:23;7607:31;7632:5;7607:31;:::i;:::-;7657:5;-1:-1:-1;7714:2:101;7699:18;;7686:32;7727:33;7686:32;7727:33;:::i;:::-;7779:7;-1:-1:-1;7837:2:101;7822:18;;7809:32;-1:-1:-1;;;;;7853:30:101;;7850:50;;;7896:1;7893;7886:12;7850:50;7935:58;7985:7;7976:6;7965:9;7961:22;7935:58;:::i;:::-;7368:685;;;;-1:-1:-1;8012:8:101;-1:-1:-1;;;;7368:685:101:o;8240:447::-;8337:6;8345;8398:2;8386:9;8377:7;8373:23;8369:32;8366:52;;;8414:1;8411;8404:12;8366:52;8454:9;8441:23;-1:-1:-1;;;;;8479:6:101;8476:30;8473:50;;;8519:1;8516;8509:12;8473:50;8558:69;8619:7;8610:6;8599:9;8595:22;8558:69;:::i;:::-;8646:8;;8532:95;;-1:-1:-1;8240:447:101;-1:-1:-1;;;;8240:447:101:o;8692:1016::-;8852:4;8900:2;8889:9;8885:18;8930:2;8919:9;8912:21;8953:6;8988;8982:13;9019:6;9011;9004:22;9057:2;9046:9;9042:18;9035:25;;9119:2;9109:6;9106:1;9102:14;9091:9;9087:30;9083:39;9069:53;;9157:2;9149:6;9145:15;9178:1;9188:491;9202:6;9199:1;9196:13;9188:491;;;9295:2;9291:7;9279:9;9271:6;9267:22;9263:36;9258:3;9251:49;9329:6;9323:13;9371:2;9365:9;9402:8;9394:6;9387:24;9460:8;9455:2;9451;9447:11;9442:2;9434:6;9430:15;9424:45;9521:1;9516:2;9505:8;9497:6;9493:21;9489:30;9482:41;9596:2;9589;9585:7;9580:2;9570:8;9566:17;9562:31;9554:6;9550:44;9546:53;9536:63;;;;9634:2;9626:6;9622:15;9612:25;;9666:2;9661:3;9657:12;9650:19;;9224:1;9221;9217:9;9212:14;;9188:491;;;-1:-1:-1;9696:6:101;;8692:1016;-1:-1:-1;;;;;;8692:1016:101:o;9713:527::-;9789:6;9797;9805;9858:2;9846:9;9837:7;9833:23;9829:32;9826:52;;;9874:1;9871;9864:12;9826:52;9913:9;9900:23;9932:31;9957:5;9932:31;:::i;:::-;9982:5;-1:-1:-1;10039:2:101;10024:18;;10011:32;10052:33;10011:32;10052:33;:::i;:::-;10104:7;-1:-1:-1;10163:2:101;10148:18;;10135:32;10176;10135;10176;:::i;:::-;10227:7;10217:17;;;9713:527;;;;;:::o;10523:319::-;10590:6;10598;10651:2;10639:9;10630:7;10626:23;10622:32;10619:52;;;10667:1;10664;10657:12;10619:52;10706:9;10693:23;10725:31;10750:5;10725:31;:::i;10847:720::-;10934:6;10942;10950;10958;11011:2;10999:9;10990:7;10986:23;10982:32;10979:52;;;11027:1;11024;11017:12;10979:52;11066:9;11053:23;11085:31;11110:5;11085:31;:::i;:::-;11135:5;-1:-1:-1;11191:2:101;11176:18;;11163:32;-1:-1:-1;;;;;11207:30:101;;11204:50;;;11250:1;11247;11240:12;11204:50;11289:58;11339:7;11330:6;11319:9;11315:22;11289:58;:::i;:::-;11366:8;;-1:-1:-1;11263:84:101;-1:-1:-1;;11453:2:101;11438:18;;11425:32;11501:14;11488:28;;11476:41;;11466:69;;11531:1;11528;11521:12;11466:69;10847:720;;;;-1:-1:-1;10847:720:101;;-1:-1:-1;;10847:720:101:o;11840:127::-;11901:10;11896:3;11892:20;11889:1;11882:31;11932:4;11929:1;11922:15;11956:4;11953:1;11946:15;11972:245;12030:6;12083:2;12071:9;12062:7;12058:23;12054:32;12051:52;;;12099:1;12096;12089:12;12051:52;12138:9;12125:23;12157:30;12181:5;12157:30;:::i;12831:267::-;12920:6;12915:3;12908:19;12972:6;12965:5;12958:4;12953:3;12949:14;12936:43;-1:-1:-1;13024:1:101;12999:16;;;13017:4;12995:27;;;12988:38;;;;13080:2;13059:15;;;-1:-1:-1;;13055:29:101;13046:39;;;13042:50;;12831:267::o;13103:247::-;13262:2;13251:9;13244:21;13225:4;13282:62;13340:2;13329:9;13325:18;13317:6;13309;13282:62;:::i;:::-;13274:70;13103:247;-1:-1:-1;;;;13103:247:101:o;13355:249::-;13424:6;13477:2;13465:9;13456:7;13452:23;13448:32;13445:52;;;13493:1;13490;13483:12;13445:52;13525:9;13519:16;13544:30;13568:5;13544:30;:::i;13609:439::-;-1:-1:-1;;;;;13822:32:101;;;13804:51;;13891:32;;13886:2;13871:18;;13864:60;13960:2;13955;13940:18;;13933:30;;;-1:-1:-1;;13980:62:101;;14023:18;;14015:6;14007;13980:62;:::i;:::-;13972:70;13609:439;-1:-1:-1;;;;;;13609:439:101:o;14053:127::-;14114:10;14109:3;14105:20;14102:1;14095:31;14145:4;14142:1;14135:15;14169:4;14166:1;14159:15;14318:331;14423:9;14434;14476:8;14464:10;14461:24;14458:44;;;14498:1;14495;14488:12;14458:44;14527:6;14517:8;14514:20;14511:40;;;14547:1;14544;14537:12;14511:40;-1:-1:-1;;14573:23:101;;;14618:25;;;;;-1:-1:-1;14318:331:101:o;14654:127::-;14715:10;14710:3;14706:20;14703:1;14696:31;14746:4;14743:1;14736:15;14770:4;14767:1;14760:15;14786:521;14863:4;14869:6;14929:11;14916:25;15023:2;15019:7;15008:8;14992:14;14988:29;14984:43;14964:18;14960:68;14950:96;;15042:1;15039;15032:12;14950:96;15069:33;;15121:20;;;-1:-1:-1;;;;;;15153:30:101;;15150:50;;;15196:1;15193;15186:12;15150:50;15229:4;15217:17;;-1:-1:-1;15260:14:101;15256:27;;;15246:38;;15243:58;;;15297:1;15294;15287:12;15312:454;15541:6;15533;15528:3;15515:33;15497:3;15576:6;15571:3;15567:16;15603:1;15599:2;15592:13;15634:6;15628:13;15679:6;15672:4;15664:6;15660:17;15656:2;15650:36;15740:1;15705:15;;15729:13;;;15705:15;15312:454;-1:-1:-1;;;;;15312:454:101:o;16270:179::-;16369:14;16338:22;;;16362;;;16334:51;;16397:23;;16394:49;;;16423:18;;:::i;16454:531::-;16705:14;16693:27;;16675:46;;-1:-1:-1;;;;;16757:32:101;;;16752:2;16737:18;;16730:60;16826:32;;16821:2;16806:18;;16799:60;16895:3;16890:2;16875:18;;16868:31;;;-1:-1:-1;;16916:63:101;;16959:19;;16951:6;16943;16916:63;:::i;:::-;16908:71;16454:531;-1:-1:-1;;;;;;;16454:531:101:o;17499:338::-;17619:19;;-1:-1:-1;;;;;;17656:29:101;;;17705:1;17697:10;;17694:137;;;-1:-1:-1;;;;;;17766:1:101;17762:11;;;;17759:1;17755:19;17751:46;;;17743:55;17739:82;;;;17499:338;-1:-1:-1;;17499:338:101:o;19010:170::-;19107:10;19100:18;;;19080;;;19076:43;;19131:20;;19128:46;;;19154:18;;:::i"},"methodIdentifiers":{"ADMIN_ROLE()":"75b238fc","PUBLIC_ROLE()":"3ca7c02a","canCall(address,address,bytes4)":"b7009613","cancel(address,address,bytes)":"d6bb62c6","consumeScheduledOp(address,bytes)":"94c7d7ee","execute(address,bytes)":"1cff79cd","expiration()":"4665096d","getAccess(uint64,address)":"3078f114","getNonce(bytes32)":"4136a33c","getRoleAdmin(uint64)":"530dd456","getRoleGrantDelay(uint64)":"12be8727","getRoleGuardian(uint64)":"0b0a93ba","getSchedule(bytes32)":"3adc277a","getTargetAdminDelay(address)":"4c1da1e2","getTargetFunctionRole(address,bytes4)":"6d5115bd","grantRole(uint64,address,uint32)":"25c471a0","hasRole(uint64,address)":"d1f856ee","hashOperation(address,address,bytes)":"abd9bd2a","isTargetClosed(address)":"a166aa89","labelRole(uint64,string)":"853551b8","minSetback()":"cc1b6c81","multicall(bytes[])":"ac9650d8","renounceRole(uint64,address)":"fe0776f5","revokeRole(uint64,address)":"b7d2b162","schedule(address,bytes,uint48)":"f801a698","setGrantDelay(uint64,uint32)":"a64d95ce","setRoleAdmin(uint64,uint64)":"30cae187","setRoleGuardian(uint64,uint64)":"52962952","setTargetAdminDelay(address,uint32)":"d22b5989","setTargetClosed(address,bool)":"167bd395","setTargetFunctionRole(address,bytes4[],uint64)":"08d6122d","updateAuthority(address,address)":"18ff183c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"initialAdmin\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerAlreadyScheduled\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"AccessManagerBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerExpired\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"initialAdmin\",\"type\":\"address\"}],\"name\":\"AccessManagerInvalidInitialAdmin\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"AccessManagerLockedRole\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerNotReady\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerNotScheduled\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"msgsender\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"AccessManagerUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"AccessManagerUnauthorizedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"msgsender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"AccessManagerUnauthorizedCancel\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AccessManagerUnauthorizedConsume\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"name\":\"OperationCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"name\":\"OperationExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"schedule\",\"type\":\"uint48\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"OperationScheduled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"admin\",\"type\":\"uint64\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"}],\"name\":\"RoleGrantDelayChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"newMember\",\"type\":\"bool\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"guardian\",\"type\":\"uint64\"}],\"name\":\"RoleGuardianChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"label\",\"type\":\"string\"}],\"name\":\"RoleLabel\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"}],\"name\":\"TargetAdminDelayUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"closed\",\"type\":\"bool\"}],\"name\":\"TargetClosed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"TargetFunctionRoleUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PUBLIC_ROLE\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"canCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"immediate\",\"type\":\"bool\"},{\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"consumeScheduledOp\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"expiration\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getAccess\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"},{\"internalType\":\"uint32\",\"name\":\"currentDelay\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"pendingDelay\",\"type\":\"uint32\"},{\"internalType\":\"uint48\",\"name\":\"effect\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleGrantDelay\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleGuardian\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getSchedule\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"getTargetAdminDelay\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"getTargetFunctionRole\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"executionDelay\",\"type\":\"uint32\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"isMember\",\"type\":\"bool\"},{\"internalType\":\"uint32\",\"name\":\"executionDelay\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"hashOperation\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"isTargetClosed\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"string\",\"name\":\"label\",\"type\":\"string\"}],\"name\":\"labelRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"minSetback\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"multicall\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"results\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"uint48\",\"name\":\"when\",\"type\":\"uint48\"}],\"name\":\"schedule\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"newDelay\",\"type\":\"uint32\"}],\"name\":\"setGrantDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"admin\",\"type\":\"uint64\"}],\"name\":\"setRoleAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"guardian\",\"type\":\"uint64\"}],\"name\":\"setRoleGuardian\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"newDelay\",\"type\":\"uint32\"}],\"name\":\"setTargetAdminDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"closed\",\"type\":\"bool\"}],\"name\":\"setTargetClosed\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4[]\",\"name\":\"selectors\",\"type\":\"bytes4[]\"},{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"setTargetFunctionRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"newAuthority\",\"type\":\"address\"}],\"name\":\"updateAuthority\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"AccessManager is a central contract to store the permissions of a system. A smart contract under the control of an AccessManager instance is known as a target, and will inherit from the {AccessManaged} contract, be connected to this contract as its manager and implement the {AccessManaged-restricted} modifier on a set of functions selected to be permissioned. Note that any function without this setup won't be effectively restricted. The restriction rules for such functions are defined in terms of \\\"roles\\\" identified by an `uint64` and scoped by target (`address`) and function selectors (`bytes4`). These roles are stored in this contract and can be configured by admins (`ADMIN_ROLE` members) after a delay (see {getTargetAdminDelay}). For each target contract, admins can configure the following without any delay: * The target's {AccessManaged-authority} via {updateAuthority}. * Close or open a target via {setTargetClosed} keeping the permissions intact. * The roles that are allowed (or disallowed) to call a given function (identified by its selector) through {setTargetFunctionRole}. By default every address is member of the `PUBLIC_ROLE` and every target function is restricted to the `ADMIN_ROLE` until configured otherwise. Additionally, each role has the following configuration options restricted to this manager's admins: * A role's admin role via {setRoleAdmin} who can grant or revoke roles. * A role's guardian role via {setRoleGuardian} who's allowed to cancel operations. * A delay in which a role takes effect after being granted through {setGrantDelay}. * A delay of any target's admin action via {setTargetAdminDelay}. * A role label for discoverability purposes with {labelRole}. Any account can be added and removed into any number of these roles by using the {grantRole} and {revokeRole} functions restricted to each role's admin (see {getRoleAdmin}). Since all the permissions of the managed system can be modified by the admins of this instance, it is expected that they will be highly secured (e.g., a multisig or a well-configured DAO). NOTE: This contract implements a form of the {IAuthority} interface, but {canCall} has additional return data so it doesn't inherit `IAuthority`. It is however compatible with the `IAuthority` interface since the first 32 bytes of the return data are a boolean as expected by that interface. NOTE: Systems that implement other access control mechanisms (for example using {Ownable}) can be paired with an {AccessManager} by transferring permissions (ownership in the case of {Ownable}) directly to the {AccessManager}. Users will be able to interact with these contracts through the {execute} function, following the access rules registered in the {AccessManager}. Keep in mind that in that context, the msg.sender seen by restricted functions will be {AccessManager} itself. WARNING: When granting permissions over an {Ownable} or {AccessControl} contract to an {AccessManager}, be very mindful of the danger associated with functions such as {Ownable-renounceOwnership} or {AccessControl-renounceRole}.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InsufficientBalance(uint256,uint256)\":[{\"details\":\"The ETH balance of the account is not enough to perform the operation.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}]},\"events\":{\"OperationCanceled(bytes32,uint32)\":{\"details\":\"A scheduled operation was canceled.\"},\"OperationExecuted(bytes32,uint32)\":{\"details\":\"A scheduled operation was executed.\"},\"OperationScheduled(bytes32,uint32,uint48,address,address,bytes)\":{\"details\":\"A delayed operation was scheduled.\"},\"RoleAdminChanged(uint64,uint64)\":{\"details\":\"Role acting as admin over a given `roleId` is updated.\"},\"RoleGrantDelayChanged(uint64,uint32,uint48)\":{\"details\":\"Grant delay for a given `roleId` will be updated to `delay` when `since` is reached.\"},\"RoleGranted(uint64,address,uint32,uint48,bool)\":{\"details\":\"Emitted when `account` is granted `roleId`. NOTE: The meaning of the `since` argument depends on the `newMember` argument. If the role is granted to a new member, the `since` argument indicates when the account becomes a member of the role, otherwise it indicates the execution delay for this account and roleId is updated.\"},\"RoleGuardianChanged(uint64,uint64)\":{\"details\":\"Role acting as guardian over a given `roleId` is updated.\"},\"RoleLabel(uint64,string)\":{\"details\":\"Informational labelling for a roleId.\"},\"RoleRevoked(uint64,address)\":{\"details\":\"Emitted when `account` membership or `roleId` is revoked. Unlike granting, revoking is instantaneous.\"},\"TargetAdminDelayUpdated(address,uint32,uint48)\":{\"details\":\"Admin delay for a given `target` will be updated to `delay` when `since` is reached.\"},\"TargetClosed(address,bool)\":{\"details\":\"Target mode is updated (true = closed, false = open).\"},\"TargetFunctionRoleUpdated(address,bytes4,uint64)\":{\"details\":\"Role required to invoke `selector` on `target` is updated to `roleId`.\"}},\"kind\":\"dev\",\"methods\":{\"canCall(address,address,bytes4)\":{\"details\":\"Check if an address (`caller`) is authorised to call a given function on a given contract directly (with no restriction). Additionally, it returns the delay needed to perform the call indirectly through the {schedule} & {execute} workflow. This function is usually called by the targeted contract to control immediate execution of restricted functions. Therefore we only return true if the call can be performed without any delay. If the call is subject to a previously set delay (not zero), then the function should return false and the caller should schedule the operation for future execution. If `allowed` is true, the delay can be disregarded and the operation can be immediately executed, otherwise the operation can be executed if and only if delay is greater than 0. NOTE: The IAuthority interface does not include the `uint32` delay. This is an extension of that interface that is backward compatible. Some contracts may thus ignore the second return argument. In that case they will fail to identify the indirect workflow, and will consider calls that require a delay to be forbidden. NOTE: This function does not report the permissions of the admin functions in the manager itself. These are defined by the {AccessManager} documentation.\"},\"cancel(address,address,bytes)\":{\"details\":\"Cancel a scheduled (delayed) operation. Returns the nonce that identifies the previously scheduled operation that is cancelled. Requirements: - the caller must be the proposer, a guardian of the targeted function, or a global admin Emits a {OperationCanceled} event.\"},\"consumeScheduledOp(address,bytes)\":{\"details\":\"Consume a scheduled operation targeting the caller. If such an operation exists, mark it as consumed (emit an {OperationExecuted} event and clean the state). Otherwise, throw an error. This is useful for contracts that want to enforce that calls targeting them were scheduled on the manager, with all the verifications that it implies. Emit a {OperationExecuted} event.\"},\"execute(address,bytes)\":{\"details\":\"Execute a function that is delay restricted, provided it was properly scheduled beforehand, or the execution delay is 0. Returns the nonce that identifies the previously scheduled operation that is executed, or 0 if the operation wasn't previously scheduled (if the caller doesn't have an execution delay). Emits an {OperationExecuted} event only if the call was scheduled and delayed.\"},\"expiration()\":{\"details\":\"Expiration delay for scheduled proposals. Defaults to 1 week. IMPORTANT: Avoid overriding the expiration with 0. Otherwise every contract proposal will be expired immediately, disabling any scheduling usage.\"},\"getAccess(uint64,address)\":{\"details\":\"Get the access details for a given account for a given role. These details include the timepoint at which membership becomes active, and the delay applied to all operations by this user that requires this permission level. Returns: [0] Timestamp at which the account membership becomes valid. 0 means role is not granted. [1] Current execution delay for the account. [2] Pending execution delay for the account. [3] Timestamp at which the pending execution delay will become active. 0 means no delay update is scheduled.\"},\"getNonce(bytes32)\":{\"details\":\"Return the nonce for the latest scheduled operation with a given id. Returns 0 if the operation has never been scheduled.\"},\"getRoleAdmin(uint64)\":{\"details\":\"Get the id of the role that acts as an admin for the given role. The admin permission is required to grant the role, revoke the role and update the execution delay to execute an operation that is restricted to this role.\"},\"getRoleGrantDelay(uint64)\":{\"details\":\"Get the role current grant delay. Its value may change at any point without an event emitted following a call to {setGrantDelay}. Changes to this value, including effect timepoint are notified in advance by the {RoleGrantDelayChanged} event.\"},\"getRoleGuardian(uint64)\":{\"details\":\"Get the role that acts as a guardian for a given role. The guardian permission allows canceling operations that have been scheduled under the role.\"},\"getSchedule(bytes32)\":{\"details\":\"Return the timepoint at which a scheduled operation will be ready for execution. This returns 0 if the operation is not yet scheduled, has expired, was executed, or was canceled.\"},\"getTargetAdminDelay(address)\":{\"details\":\"Get the admin delay for a target contract. Changes to contract configuration are subject to this delay.\"},\"getTargetFunctionRole(address,bytes4)\":{\"details\":\"Get the role required to call a function.\"},\"grantRole(uint64,address,uint32)\":{\"details\":\"Add `account` to `roleId`, or change its execution delay. This gives the account the authorization to call any function that is restricted to this role. An optional execution delay (in seconds) can be set. If that delay is non 0, the user is required to schedule any operation that is restricted to members of this role. The user will only be able to execute the operation after the delay has passed, before it has expired. During this period, admin and guardians can cancel the operation (see {cancel}). If the account has already been granted this role, the execution delay will be updated. This update is not immediate and follows the delay rules. For example, if a user currently has a delay of 3 hours, and this is called to reduce that delay to 1 hour, the new delay will take some time to take effect, enforcing that any operation executed in the 3 hours that follows this update was indeed scheduled before this update. Requirements: - the caller must be an admin for the role (see {getRoleAdmin}) - granted role must not be the `PUBLIC_ROLE` Emits a {RoleGranted} event.\"},\"hasRole(uint64,address)\":{\"details\":\"Check if a given account currently has the permission level corresponding to a given role. Note that this permission might be associated with an execution delay. {getAccess} can provide more details.\"},\"hashOperation(address,address,bytes)\":{\"details\":\"Hashing function for delayed operations.\"},\"isTargetClosed(address)\":{\"details\":\"Get whether the contract is closed disabling any access. Otherwise role permissions are applied. NOTE: When the manager itself is closed, admin functions are still accessible to avoid locking the contract.\"},\"labelRole(uint64,string)\":{\"details\":\"Give a label to a role, for improved role discoverability by UIs. Requirements: - the caller must be a global admin Emits a {RoleLabel} event.\"},\"minSetback()\":{\"details\":\"Minimum setback for all delay updates, with the exception of execution delays. It can be increased without setback (and reset via {revokeRole} in the event of an accidental increase). Defaults to 5 days.\"},\"multicall(bytes[])\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Receives and executes a batch of function calls on this contract.\"},\"renounceRole(uint64,address)\":{\"details\":\"Renounce role permissions for the calling account with immediate effect. If the sender is not in the role this call has no effect. Requirements: - the caller must be `callerConfirmation`. Emits a {RoleRevoked} event if the account had the role.\"},\"revokeRole(uint64,address)\":{\"details\":\"Remove an account from a role, with immediate effect. If the account does not have the role, this call has no effect. Requirements: - the caller must be an admin for the role (see {getRoleAdmin}) - revoked role must not be the `PUBLIC_ROLE` Emits a {RoleRevoked} event if the account had the role.\"},\"schedule(address,bytes,uint48)\":{\"details\":\"Schedule a delayed operation for future execution, and return the operation identifier. It is possible to choose the timestamp at which the operation becomes executable as long as it satisfies the execution delays required for the caller. The special value zero will automatically set the earliest possible time. Returns the `operationId` that was scheduled. Since this value is a hash of the parameters, it can reoccur when the same parameters are used; if this is relevant, the returned `nonce` can be used to uniquely identify this scheduled operation from other occurrences of the same `operationId` in invocations of {execute} and {cancel}. Emits a {OperationScheduled} event. NOTE: It is not possible to concurrently schedule more than one operation with the same `target` and `data`. If this is necessary, a random byte can be appended to `data` to act as a salt that will be ignored by the target contract if it is using standard Solidity ABI encoding.\"},\"setGrantDelay(uint64,uint32)\":{\"details\":\"Update the delay for granting a `roleId`. Requirements: - the caller must be a global admin Emits a {RoleGrantDelayChanged} event.\"},\"setRoleAdmin(uint64,uint64)\":{\"details\":\"Change admin role for a given role. Requirements: - the caller must be a global admin Emits a {RoleAdminChanged} event\"},\"setRoleGuardian(uint64,uint64)\":{\"details\":\"Change guardian role for a given role. Requirements: - the caller must be a global admin Emits a {RoleGuardianChanged} event\"},\"setTargetAdminDelay(address,uint32)\":{\"details\":\"Set the delay for changing the configuration of a given target contract. Requirements: - the caller must be a global admin Emits a {TargetAdminDelayUpdated} event.\"},\"setTargetClosed(address,bool)\":{\"details\":\"Set the closed flag for a contract. Closing the manager itself won't disable access to admin methods to avoid locking the contract. Requirements: - the caller must be a global admin Emits a {TargetClosed} event.\"},\"setTargetFunctionRole(address,bytes4[],uint64)\":{\"details\":\"Set the role required to call functions identified by the `selectors` in the `target` contract. Requirements: - the caller must be a global admin Emits a {TargetFunctionRoleUpdated} event per selector.\"},\"updateAuthority(address,address)\":{\"details\":\"Changes the authority of a target managed by this manager instance. Requirements: - the caller must be a global admin\"}},\"stateVariables\":{\"ADMIN_ROLE\":{\"details\":\"The identifier of the admin role. Required to perform most configuration operations including other roles' management and target restrictions.\"},\"PUBLIC_ROLE\":{\"details\":\"The identifier of the public role. Automatically granted to all addresses with no delay.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/manager/AccessManager.sol\":\"AccessManager\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/manager/AccessManager.sol\":{\"keccak256\":\"0xb3c26f8cf9921ba0e73cbe23346d5cf3b765ff3933f89e0684e03667aeb54523\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://335bbeb612a6db2f2b41d9f8b282fef5711540dbdc68920ee500a75796397f2c\",\"dweb:/ipfs/QmZSAzYsCu3HTQikU6tvMAurvdkQV2rDvpJoskSegwmNEE\"]},\"@openzeppelin/contracts/access/manager/IAccessManaged.sol\":{\"keccak256\":\"0x1121e070554cffc6d536f658332a1a3d65fb2ea5573cd774f4ecbd02a2fcf4b7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6913b339d10018d60322c56faa6d6455e707b3c46a15261b639389a710a42ff3\",\"dweb:/ipfs/QmXrKvfnS5hnXACEzu1Kd4DBBW2gJm2Tg2tFpLynhvuTUM\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x71e3e350e83af0018a1683cc2ce4c13893cc01f78e5c9c305f6828608ffcfa18\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a7b521c9999007715c9bdedffaad2ef7d2ccfa07bca2a39ba9e0c2e8a944a63\",\"dweb:/ipfs/QmamPG6Y1p7iZh4cF8Hfp3oufowSRyB3S3DisTKkmVWSai\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@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/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Multicall.sol\":{\"keccak256\":\"0x72a5499dfae7676e4298a7299bccd3b27438ba1a4c72df5cd69c1c343c7ea20d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://de0fb51ccae3a0ff377ed185d187440fc612a71bf8e42fdb0e032ce747fa3eef\",\"dweb:/ipfs/QmPNBaiVsAiUhz8qfXcSy27S7CqBbtSd8rPqmaykKBhw7Q\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/cryptography/Hashes.sol\":{\"keccak256\":\"0x8cbd338f083224b4b6f0ff42cbda641a0a6c31ffcdca197452b97fe4d0918269\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f517dec5ba0c6491395acbf7f1d621f4e89e8f218bf5303c867b1c5ad70c6b11\",\"dweb:/ipfs/QmWmXHRLEw8W6ckth7NyYTU88YfvuS7xSsfae5ksL8qNUe\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x3765cc1833212456000f02d5de0478c2055b5f318e27032537c6d47c91e68b05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e77d9fd11b604fb3820ba6794f1e2516deb1093dada1c7225da6c46def95256\",\"dweb:/ipfs/QmcqQo9mmD5kekxFtJcvZTyCPaEgxQsSVfp7wLiE91fdAc\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":3833,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"_targets","offset":0,"slot":"0","type":"t_mapping(t_address,t_struct(TargetConfig)3788_storage)"},{"astId":3838,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"_roles","offset":0,"slot":"1","type":"t_mapping(t_uint64,t_struct(Role)3807_storage)"},{"astId":3843,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"_schedules","offset":0,"slot":"2","type":"t_mapping(t_bytes32,t_struct(Schedule)3812_storage)"},{"astId":3845,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"_executionId","offset":0,"slot":"3","type":"t_bytes32"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_bytes4":{"encoding":"inplace","label":"bytes4","numberOfBytes":"4"},"t_mapping(t_address,t_struct(Access)3794_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct AccessManager.Access)","numberOfBytes":"32","value":"t_struct(Access)3794_storage"},"t_mapping(t_address,t_struct(TargetConfig)3788_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct AccessManager.TargetConfig)","numberOfBytes":"32","value":"t_struct(TargetConfig)3788_storage"},"t_mapping(t_bytes32,t_struct(Schedule)3812_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct AccessManager.Schedule)","numberOfBytes":"32","value":"t_struct(Schedule)3812_storage"},"t_mapping(t_bytes4,t_uint64)":{"encoding":"mapping","key":"t_bytes4","label":"mapping(bytes4 => uint64)","numberOfBytes":"32","value":"t_uint64"},"t_mapping(t_uint64,t_struct(Role)3807_storage)":{"encoding":"mapping","key":"t_uint64","label":"mapping(uint64 => struct AccessManager.Role)","numberOfBytes":"32","value":"t_struct(Role)3807_storage"},"t_struct(Access)3794_storage":{"encoding":"inplace","label":"struct AccessManager.Access","members":[{"astId":3790,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"since","offset":0,"slot":"0","type":"t_uint48"},{"astId":3793,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"delay","offset":6,"slot":"0","type":"t_userDefinedValueType(Delay)17860"}],"numberOfBytes":"32"},"t_struct(Role)3807_storage":{"encoding":"inplace","label":"struct AccessManager.Role","members":[{"astId":3799,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"members","offset":0,"slot":"0","type":"t_mapping(t_address,t_struct(Access)3794_storage)"},{"astId":3801,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"admin","offset":0,"slot":"1","type":"t_uint64"},{"astId":3803,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"guardian","offset":8,"slot":"1","type":"t_uint64"},{"astId":3806,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"grantDelay","offset":16,"slot":"1","type":"t_userDefinedValueType(Delay)17860"}],"numberOfBytes":"64"},"t_struct(Schedule)3812_storage":{"encoding":"inplace","label":"struct AccessManager.Schedule","members":[{"astId":3809,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"timepoint","offset":0,"slot":"0","type":"t_uint48"},{"astId":3811,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"nonce","offset":6,"slot":"0","type":"t_uint32"}],"numberOfBytes":"32"},"t_struct(TargetConfig)3788_storage":{"encoding":"inplace","label":"struct AccessManager.TargetConfig","members":[{"astId":3782,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"allowedRoles","offset":0,"slot":"0","type":"t_mapping(t_bytes4,t_uint64)"},{"astId":3785,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"adminDelay","offset":0,"slot":"1","type":"t_userDefinedValueType(Delay)17860"},{"astId":3787,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"closed","offset":14,"slot":"1","type":"t_bool"}],"numberOfBytes":"64"},"t_uint32":{"encoding":"inplace","label":"uint32","numberOfBytes":"4"},"t_uint48":{"encoding":"inplace","label":"uint48","numberOfBytes":"6"},"t_uint64":{"encoding":"inplace","label":"uint64","numberOfBytes":"8"},"t_userDefinedValueType(Delay)17860":{"encoding":"inplace","label":"Time.Delay","numberOfBytes":"14"}}}}},"@openzeppelin/contracts/access/manager/IAccessManaged.sol":{"IAccessManaged":{"abi":[{"inputs":[{"internalType":"address","name":"authority","type":"address"}],"name":"AccessManagedInvalidAuthority","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"uint32","name":"delay","type":"uint32"}],"name":"AccessManagedRequiredDelay","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"AccessManagedUnauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"authority","type":"address"}],"name":"AuthorityUpdated","type":"event"},{"inputs":[],"name":"authority","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isConsumingScheduledOp","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"setAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"authority()":"bf7e214f","isConsumingScheduledOp()":"8fb36037","setAuthority(address)":"7a9e5e4b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"authority\",\"type\":\"address\"}],\"name\":\"AccessManagedInvalidAuthority\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"}],\"name\":\"AccessManagedRequiredDelay\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"AccessManagedUnauthorized\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"authority\",\"type\":\"address\"}],\"name\":\"AuthorityUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"authority\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isConsumingScheduledOp\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"setAuthority\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"AuthorityUpdated(address)\":{\"details\":\"Authority that manages this contract was updated.\"}},\"kind\":\"dev\",\"methods\":{\"authority()\":{\"details\":\"Returns the current authority.\"},\"isConsumingScheduledOp()\":{\"details\":\"Returns true only in the context of a delayed restricted call, at the moment that the scheduled operation is being consumed. Prevents denial of service for delayed restricted calls in the case that the contract performs attacker controlled calls.\"},\"setAuthority(address)\":{\"details\":\"Transfers control to a new authority. The caller must be the current authority.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/manager/IAccessManaged.sol\":\"IAccessManaged\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/manager/IAccessManaged.sol\":{\"keccak256\":\"0x1121e070554cffc6d536f658332a1a3d65fb2ea5573cd774f4ecbd02a2fcf4b7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6913b339d10018d60322c56faa6d6455e707b3c46a15261b639389a710a42ff3\",\"dweb:/ipfs/QmXrKvfnS5hnXACEzu1Kd4DBBW2gJm2Tg2tFpLynhvuTUM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/access/manager/IAccessManager.sol":{"IAccessManager":{"abi":[{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerAlreadyScheduled","type":"error"},{"inputs":[],"name":"AccessManagerBadConfirmation","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerExpired","type":"error"},{"inputs":[{"internalType":"address","name":"initialAdmin","type":"address"}],"name":"AccessManagerInvalidInitialAdmin","type":"error"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"AccessManagerLockedRole","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerNotReady","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerNotScheduled","type":"error"},{"inputs":[{"internalType":"address","name":"msgsender","type":"address"},{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"AccessManagerUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"AccessManagerUnauthorizedCall","type":"error"},{"inputs":[{"internalType":"address","name":"msgsender","type":"address"},{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"AccessManagerUnauthorizedCancel","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AccessManagerUnauthorizedConsume","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"}],"name":"OperationCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"}],"name":"OperationExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"schedule","type":"uint48"},{"indexed":false,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"OperationScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"uint64","name":"admin","type":"uint64"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"}],"name":"RoleGrantDelayChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"},{"indexed":false,"internalType":"bool","name":"newMember","type":"bool"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"uint64","name":"guardian","type":"uint64"}],"name":"RoleGuardianChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":false,"internalType":"string","name":"label","type":"string"}],"name":"RoleLabel","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"}],"name":"TargetAdminDelayUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bool","name":"closed","type":"bool"}],"name":"TargetClosed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes4","name":"selector","type":"bytes4"},{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"TargetFunctionRoleUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"canCall","outputs":[{"internalType":"bool","name":"allowed","type":"bool"},{"internalType":"uint32","name":"delay","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"cancel","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"consumeScheduledOp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"execute","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"expiration","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"getAccess","outputs":[{"internalType":"uint48","name":"since","type":"uint48"},{"internalType":"uint32","name":"currentDelay","type":"uint32"},{"internalType":"uint32","name":"pendingDelay","type":"uint32"},{"internalType":"uint48","name":"effect","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getNonce","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleAdmin","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleGrantDelay","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleGuardian","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getSchedule","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"getTargetAdminDelay","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"getTargetFunctionRole","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"executionDelay","type":"uint32"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"isMember","type":"bool"},{"internalType":"uint32","name":"executionDelay","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"hashOperation","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"isTargetClosed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"string","name":"label","type":"string"}],"name":"labelRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minSetback","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint48","name":"when","type":"uint48"}],"name":"schedule","outputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"},{"internalType":"uint32","name":"nonce","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint32","name":"newDelay","type":"uint32"}],"name":"setGrantDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint64","name":"admin","type":"uint64"}],"name":"setRoleAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint64","name":"guardian","type":"uint64"}],"name":"setRoleGuardian","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"newDelay","type":"uint32"}],"name":"setTargetAdminDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"closed","type":"bool"}],"name":"setTargetClosed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4[]","name":"selectors","type":"bytes4[]"},{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"setTargetFunctionRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"address","name":"newAuthority","type":"address"}],"name":"updateAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"canCall(address,address,bytes4)":"b7009613","cancel(address,address,bytes)":"d6bb62c6","consumeScheduledOp(address,bytes)":"94c7d7ee","execute(address,bytes)":"1cff79cd","expiration()":"4665096d","getAccess(uint64,address)":"3078f114","getNonce(bytes32)":"4136a33c","getRoleAdmin(uint64)":"530dd456","getRoleGrantDelay(uint64)":"12be8727","getRoleGuardian(uint64)":"0b0a93ba","getSchedule(bytes32)":"3adc277a","getTargetAdminDelay(address)":"4c1da1e2","getTargetFunctionRole(address,bytes4)":"6d5115bd","grantRole(uint64,address,uint32)":"25c471a0","hasRole(uint64,address)":"d1f856ee","hashOperation(address,address,bytes)":"abd9bd2a","isTargetClosed(address)":"a166aa89","labelRole(uint64,string)":"853551b8","minSetback()":"cc1b6c81","renounceRole(uint64,address)":"fe0776f5","revokeRole(uint64,address)":"b7d2b162","schedule(address,bytes,uint48)":"f801a698","setGrantDelay(uint64,uint32)":"a64d95ce","setRoleAdmin(uint64,uint64)":"30cae187","setRoleGuardian(uint64,uint64)":"52962952","setTargetAdminDelay(address,uint32)":"d22b5989","setTargetClosed(address,bool)":"167bd395","setTargetFunctionRole(address,bytes4[],uint64)":"08d6122d","updateAuthority(address,address)":"18ff183c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerAlreadyScheduled\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"AccessManagerBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerExpired\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"initialAdmin\",\"type\":\"address\"}],\"name\":\"AccessManagerInvalidInitialAdmin\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"AccessManagerLockedRole\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerNotReady\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerNotScheduled\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"msgsender\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"AccessManagerUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"AccessManagerUnauthorizedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"msgsender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"AccessManagerUnauthorizedCancel\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AccessManagerUnauthorizedConsume\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"name\":\"OperationCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"name\":\"OperationExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"schedule\",\"type\":\"uint48\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"OperationScheduled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"admin\",\"type\":\"uint64\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"}],\"name\":\"RoleGrantDelayChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"newMember\",\"type\":\"bool\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"guardian\",\"type\":\"uint64\"}],\"name\":\"RoleGuardianChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"label\",\"type\":\"string\"}],\"name\":\"RoleLabel\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"}],\"name\":\"TargetAdminDelayUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"closed\",\"type\":\"bool\"}],\"name\":\"TargetClosed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"TargetFunctionRoleUpdated\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"canCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"allowed\",\"type\":\"bool\"},{\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"consumeScheduledOp\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"expiration\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getAccess\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"},{\"internalType\":\"uint32\",\"name\":\"currentDelay\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"pendingDelay\",\"type\":\"uint32\"},{\"internalType\":\"uint48\",\"name\":\"effect\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleGrantDelay\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleGuardian\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getSchedule\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"getTargetAdminDelay\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"getTargetFunctionRole\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"executionDelay\",\"type\":\"uint32\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"isMember\",\"type\":\"bool\"},{\"internalType\":\"uint32\",\"name\":\"executionDelay\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"hashOperation\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"isTargetClosed\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"string\",\"name\":\"label\",\"type\":\"string\"}],\"name\":\"labelRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"minSetback\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"uint48\",\"name\":\"when\",\"type\":\"uint48\"}],\"name\":\"schedule\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"newDelay\",\"type\":\"uint32\"}],\"name\":\"setGrantDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"admin\",\"type\":\"uint64\"}],\"name\":\"setRoleAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"guardian\",\"type\":\"uint64\"}],\"name\":\"setRoleGuardian\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"newDelay\",\"type\":\"uint32\"}],\"name\":\"setTargetAdminDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"closed\",\"type\":\"bool\"}],\"name\":\"setTargetClosed\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4[]\",\"name\":\"selectors\",\"type\":\"bytes4[]\"},{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"setTargetFunctionRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"newAuthority\",\"type\":\"address\"}],\"name\":\"updateAuthority\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"OperationCanceled(bytes32,uint32)\":{\"details\":\"A scheduled operation was canceled.\"},\"OperationExecuted(bytes32,uint32)\":{\"details\":\"A scheduled operation was executed.\"},\"OperationScheduled(bytes32,uint32,uint48,address,address,bytes)\":{\"details\":\"A delayed operation was scheduled.\"},\"RoleAdminChanged(uint64,uint64)\":{\"details\":\"Role acting as admin over a given `roleId` is updated.\"},\"RoleGrantDelayChanged(uint64,uint32,uint48)\":{\"details\":\"Grant delay for a given `roleId` will be updated to `delay` when `since` is reached.\"},\"RoleGranted(uint64,address,uint32,uint48,bool)\":{\"details\":\"Emitted when `account` is granted `roleId`. NOTE: The meaning of the `since` argument depends on the `newMember` argument. If the role is granted to a new member, the `since` argument indicates when the account becomes a member of the role, otherwise it indicates the execution delay for this account and roleId is updated.\"},\"RoleGuardianChanged(uint64,uint64)\":{\"details\":\"Role acting as guardian over a given `roleId` is updated.\"},\"RoleLabel(uint64,string)\":{\"details\":\"Informational labelling for a roleId.\"},\"RoleRevoked(uint64,address)\":{\"details\":\"Emitted when `account` membership or `roleId` is revoked. Unlike granting, revoking is instantaneous.\"},\"TargetAdminDelayUpdated(address,uint32,uint48)\":{\"details\":\"Admin delay for a given `target` will be updated to `delay` when `since` is reached.\"},\"TargetClosed(address,bool)\":{\"details\":\"Target mode is updated (true = closed, false = open).\"},\"TargetFunctionRoleUpdated(address,bytes4,uint64)\":{\"details\":\"Role required to invoke `selector` on `target` is updated to `roleId`.\"}},\"kind\":\"dev\",\"methods\":{\"canCall(address,address,bytes4)\":{\"details\":\"Check if an address (`caller`) is authorised to call a given function on a given contract directly (with no restriction). Additionally, it returns the delay needed to perform the call indirectly through the {schedule} & {execute} workflow. This function is usually called by the targeted contract to control immediate execution of restricted functions. Therefore we only return true if the call can be performed without any delay. If the call is subject to a previously set delay (not zero), then the function should return false and the caller should schedule the operation for future execution. If `allowed` is true, the delay can be disregarded and the operation can be immediately executed, otherwise the operation can be executed if and only if delay is greater than 0. NOTE: The IAuthority interface does not include the `uint32` delay. This is an extension of that interface that is backward compatible. Some contracts may thus ignore the second return argument. In that case they will fail to identify the indirect workflow, and will consider calls that require a delay to be forbidden. NOTE: This function does not report the permissions of the admin functions in the manager itself. These are defined by the {AccessManager} documentation.\"},\"cancel(address,address,bytes)\":{\"details\":\"Cancel a scheduled (delayed) operation. Returns the nonce that identifies the previously scheduled operation that is cancelled. Requirements: - the caller must be the proposer, a guardian of the targeted function, or a global admin Emits a {OperationCanceled} event.\"},\"consumeScheduledOp(address,bytes)\":{\"details\":\"Consume a scheduled operation targeting the caller. If such an operation exists, mark it as consumed (emit an {OperationExecuted} event and clean the state). Otherwise, throw an error. This is useful for contracts that want to enforce that calls targeting them were scheduled on the manager, with all the verifications that it implies. Emit a {OperationExecuted} event.\"},\"execute(address,bytes)\":{\"details\":\"Execute a function that is delay restricted, provided it was properly scheduled beforehand, or the execution delay is 0. Returns the nonce that identifies the previously scheduled operation that is executed, or 0 if the operation wasn't previously scheduled (if the caller doesn't have an execution delay). Emits an {OperationExecuted} event only if the call was scheduled and delayed.\"},\"expiration()\":{\"details\":\"Expiration delay for scheduled proposals. Defaults to 1 week. IMPORTANT: Avoid overriding the expiration with 0. Otherwise every contract proposal will be expired immediately, disabling any scheduling usage.\"},\"getAccess(uint64,address)\":{\"details\":\"Get the access details for a given account for a given role. These details include the timepoint at which membership becomes active, and the delay applied to all operations by this user that requires this permission level. Returns: [0] Timestamp at which the account membership becomes valid. 0 means role is not granted. [1] Current execution delay for the account. [2] Pending execution delay for the account. [3] Timestamp at which the pending execution delay will become active. 0 means no delay update is scheduled.\"},\"getNonce(bytes32)\":{\"details\":\"Return the nonce for the latest scheduled operation with a given id. Returns 0 if the operation has never been scheduled.\"},\"getRoleAdmin(uint64)\":{\"details\":\"Get the id of the role that acts as an admin for the given role. The admin permission is required to grant the role, revoke the role and update the execution delay to execute an operation that is restricted to this role.\"},\"getRoleGrantDelay(uint64)\":{\"details\":\"Get the role current grant delay. Its value may change at any point without an event emitted following a call to {setGrantDelay}. Changes to this value, including effect timepoint are notified in advance by the {RoleGrantDelayChanged} event.\"},\"getRoleGuardian(uint64)\":{\"details\":\"Get the role that acts as a guardian for a given role. The guardian permission allows canceling operations that have been scheduled under the role.\"},\"getSchedule(bytes32)\":{\"details\":\"Return the timepoint at which a scheduled operation will be ready for execution. This returns 0 if the operation is not yet scheduled, has expired, was executed, or was canceled.\"},\"getTargetAdminDelay(address)\":{\"details\":\"Get the admin delay for a target contract. Changes to contract configuration are subject to this delay.\"},\"getTargetFunctionRole(address,bytes4)\":{\"details\":\"Get the role required to call a function.\"},\"grantRole(uint64,address,uint32)\":{\"details\":\"Add `account` to `roleId`, or change its execution delay. This gives the account the authorization to call any function that is restricted to this role. An optional execution delay (in seconds) can be set. If that delay is non 0, the user is required to schedule any operation that is restricted to members of this role. The user will only be able to execute the operation after the delay has passed, before it has expired. During this period, admin and guardians can cancel the operation (see {cancel}). If the account has already been granted this role, the execution delay will be updated. This update is not immediate and follows the delay rules. For example, if a user currently has a delay of 3 hours, and this is called to reduce that delay to 1 hour, the new delay will take some time to take effect, enforcing that any operation executed in the 3 hours that follows this update was indeed scheduled before this update. Requirements: - the caller must be an admin for the role (see {getRoleAdmin}) - granted role must not be the `PUBLIC_ROLE` Emits a {RoleGranted} event.\"},\"hasRole(uint64,address)\":{\"details\":\"Check if a given account currently has the permission level corresponding to a given role. Note that this permission might be associated with an execution delay. {getAccess} can provide more details.\"},\"hashOperation(address,address,bytes)\":{\"details\":\"Hashing function for delayed operations.\"},\"isTargetClosed(address)\":{\"details\":\"Get whether the contract is closed disabling any access. Otherwise role permissions are applied. NOTE: When the manager itself is closed, admin functions are still accessible to avoid locking the contract.\"},\"labelRole(uint64,string)\":{\"details\":\"Give a label to a role, for improved role discoverability by UIs. Requirements: - the caller must be a global admin Emits a {RoleLabel} event.\"},\"minSetback()\":{\"details\":\"Minimum setback for all delay updates, with the exception of execution delays. It can be increased without setback (and reset via {revokeRole} in the event of an accidental increase). Defaults to 5 days.\"},\"renounceRole(uint64,address)\":{\"details\":\"Renounce role permissions for the calling account with immediate effect. If the sender is not in the role this call has no effect. Requirements: - the caller must be `callerConfirmation`. Emits a {RoleRevoked} event if the account had the role.\"},\"revokeRole(uint64,address)\":{\"details\":\"Remove an account from a role, with immediate effect. If the account does not have the role, this call has no effect. Requirements: - the caller must be an admin for the role (see {getRoleAdmin}) - revoked role must not be the `PUBLIC_ROLE` Emits a {RoleRevoked} event if the account had the role.\"},\"schedule(address,bytes,uint48)\":{\"details\":\"Schedule a delayed operation for future execution, and return the operation identifier. It is possible to choose the timestamp at which the operation becomes executable as long as it satisfies the execution delays required for the caller. The special value zero will automatically set the earliest possible time. Returns the `operationId` that was scheduled. Since this value is a hash of the parameters, it can reoccur when the same parameters are used; if this is relevant, the returned `nonce` can be used to uniquely identify this scheduled operation from other occurrences of the same `operationId` in invocations of {execute} and {cancel}. Emits a {OperationScheduled} event. NOTE: It is not possible to concurrently schedule more than one operation with the same `target` and `data`. If this is necessary, a random byte can be appended to `data` to act as a salt that will be ignored by the target contract if it is using standard Solidity ABI encoding.\"},\"setGrantDelay(uint64,uint32)\":{\"details\":\"Update the delay for granting a `roleId`. Requirements: - the caller must be a global admin Emits a {RoleGrantDelayChanged} event.\"},\"setRoleAdmin(uint64,uint64)\":{\"details\":\"Change admin role for a given role. Requirements: - the caller must be a global admin Emits a {RoleAdminChanged} event\"},\"setRoleGuardian(uint64,uint64)\":{\"details\":\"Change guardian role for a given role. Requirements: - the caller must be a global admin Emits a {RoleGuardianChanged} event\"},\"setTargetAdminDelay(address,uint32)\":{\"details\":\"Set the delay for changing the configuration of a given target contract. Requirements: - the caller must be a global admin Emits a {TargetAdminDelayUpdated} event.\"},\"setTargetClosed(address,bool)\":{\"details\":\"Set the closed flag for a contract. Closing the manager itself won't disable access to admin methods to avoid locking the contract. Requirements: - the caller must be a global admin Emits a {TargetClosed} event.\"},\"setTargetFunctionRole(address,bytes4[],uint64)\":{\"details\":\"Set the role required to call functions identified by the `selectors` in the `target` contract. Requirements: - the caller must be a global admin Emits a {TargetFunctionRoleUpdated} event per selector.\"},\"updateAuthority(address,address)\":{\"details\":\"Changes the authority of a target managed by this manager instance. Requirements: - the caller must be a global admin\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":\"IAccessManager\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x71e3e350e83af0018a1683cc2ce4c13893cc01f78e5c9c305f6828608ffcfa18\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a7b521c9999007715c9bdedffaad2ef7d2ccfa07bca2a39ba9e0c2e8a944a63\",\"dweb:/ipfs/QmamPG6Y1p7iZh4cF8Hfp3oufowSRyB3S3DisTKkmVWSai\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/interfaces/IERC1363.sol":{"IERC1363":{"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":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveAndCall","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferFromAndCall","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":"transferFromAndCall","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","approveAndCall(address,uint256)":"3177029f","approveAndCall(address,uint256,bytes)":"cae9ca51","balanceOf(address)":"70a08231","supportsInterface(bytes4)":"01ffc9a7","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferAndCall(address,uint256)":"1296ee62","transferAndCall(address,uint256,bytes)":"4000aea0","transferFrom(address,address,uint256)":"23b872dd","transferFromAndCall(address,address,uint256)":"d8fbe994","transferFromAndCall(address,address,uint256,bytes)":"c1d34b89"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approveAndCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"approveAndCall\",\"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\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"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\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferAndCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"transferAndCall\",\"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\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"transferFromAndCall\",\"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\":\"transferFromAndCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363]. Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.\",\"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.\"},\"approveAndCall(address,uint256)\":{\"details\":\"Sets a `value` amount of tokens as the allowance of `spender` over the caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\",\"params\":{\"spender\":\"The address which will spend the funds.\",\"value\":\"The amount of tokens to be spent.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"approveAndCall(address,uint256,bytes)\":{\"details\":\"Sets a `value` amount of tokens as the allowance of `spender` over the caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\",\"params\":{\"data\":\"Additional data with no specified format, sent in call to `spender`.\",\"spender\":\"The address which will spend the funds.\",\"value\":\"The amount of tokens to be spent.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"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.\"},\"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.\"},\"transferAndCall(address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to` and then calls {IERC1363Receiver-onTransferReceived} on `to`.\",\"params\":{\"to\":\"The address which you want to transfer to.\",\"value\":\"The amount of tokens to be transferred.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"transferAndCall(address,uint256,bytes)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to` and then calls {IERC1363Receiver-onTransferReceived} on `to`.\",\"params\":{\"data\":\"Additional data with no specified format, sent in call to `to`.\",\"to\":\"The address which you want to transfer to.\",\"value\":\"The amount of tokens to be transferred.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"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.\"},\"transferFromAndCall(address,address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism and then calls {IERC1363Receiver-onTransferReceived} on `to`.\",\"params\":{\"from\":\"The address which you want to send tokens from.\",\"to\":\"The address which you want to transfer to.\",\"value\":\"The amount of tokens to be transferred.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"transferFromAndCall(address,address,uint256,bytes)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism and then calls {IERC1363Receiver-onTransferReceived} on `to`.\",\"params\":{\"data\":\"Additional data with no specified format, sent in call to `to`.\",\"from\":\"The address which you want to send tokens from.\",\"to\":\"The address which you want to transfer to.\",\"value\":\"The amount of tokens to be transferred.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}}},\"title\":\"IERC1363\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":\"IERC1363\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/interfaces/IERC1967.sol":{"IERC1967":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"previousAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"}],\"name\":\"AdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"BeaconUpgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"}],\"devdoc\":{\"details\":\"ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.\",\"events\":{\"AdminChanged(address,address)\":{\"details\":\"Emitted when the admin account has changed.\"},\"BeaconUpgraded(address)\":{\"details\":\"Emitted when the beacon is changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":\"IERC1967\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/interfaces/IERC4626.sol":{"IERC4626":{"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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","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":[],"name":"asset","outputs":[{"internalType":"address","name":"assetTokenAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"maxAssets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"maxShares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"maxShares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"maxAssets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewWithdraw","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"totalManagedAssets","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"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"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","asset()":"38d52e0f","balanceOf(address)":"70a08231","convertToAssets(uint256)":"07a2d13a","convertToShares(uint256)":"c6e6f592","decimals()":"313ce567","deposit(uint256,address)":"6e553f65","maxDeposit(address)":"402d267d","maxMint(address)":"c63d75b6","maxRedeem(address)":"d905777e","maxWithdraw(address)":"ce96cb77","mint(uint256,address)":"94bf804d","name()":"06fdde03","previewDeposit(uint256)":"ef8b30f7","previewMint(uint256)":"b3d7f6b9","previewRedeem(uint256)":"4cdad506","previewWithdraw(uint256)":"0a28a477","redeem(uint256,address,address)":"ba087652","symbol()":"95d89b41","totalAssets()":"01e1d114","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","withdraw(uint256,address,address)":"b460af94"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"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\":[],\"name\":\"asset\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"assetTokenAddress\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"convertToAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"convertToShares\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"maxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"maxAssets\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"maxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"maxShares\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"maxShares\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"maxAssets\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"redeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"totalManagedAssets\",\"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\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-4626 \\\"Tokenized Vault Standard\\\", as defined in https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].\",\"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.\"},\"asset()\":{\"details\":\"Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing. - MUST be an ERC-20 token contract. - MUST NOT revert.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"convertToAssets(uint256)\":{\"details\":\"Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"convertToShares(uint256)\":{\"details\":\"Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"decimals()\":{\"details\":\"Returns the decimals places of the token.\"},\"deposit(uint256,address)\":{\"details\":\"Deposit `assets` underlying tokens and send the corresponding number of vault shares (`shares`) to `receiver`. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   deposit execution, and are accounted for during deposit. - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"maxDeposit(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver, through a deposit call. - MUST return a limited value if receiver is subject to some deposit limit. - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited. - MUST NOT revert.\"},\"maxMint(address)\":{\"details\":\"Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call. - MUST return a limited value if receiver is subject to some mint limit. - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted. - MUST NOT revert.\"},\"maxRedeem(address)\":{\"details\":\"Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault, through a redeem call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock. - MUST NOT revert.\"},\"maxWithdraw(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the Vault, through a withdraw call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST NOT revert.\"},\"mint(uint256,address)\":{\"details\":\"Mints exactly `shares` vault shares to `receiver` in exchange for `assets` underlying tokens. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint   execution, and are accounted for during mint. - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"previewDeposit(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit   call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called   in the same transaction. - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the   deposit would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"previewMint(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call   in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the   same transaction. - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint   would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by minting.\"},\"previewRedeem(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their redemption at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call   in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the   same transaction. - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the   redemption would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by redeeming.\"},\"previewWithdraw(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw   call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if   called   in the same transaction. - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though   the withdrawal would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"redeem(uint256,address,address)\":{\"details\":\"Burns exactly shares from owner and sends assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   redeem execution, and are accounted for during redeem. - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token.\"},\"totalAssets()\":{\"details\":\"Returns the total amount of the underlying asset that is \\u201cmanaged\\u201d by Vault. - SHOULD include any compounding that occurs from yield. - MUST be inclusive of any fees that are charged against assets in the Vault. - MUST NOT revert.\"},\"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.\"},\"withdraw(uint256,address,address)\":{\"details\":\"Burns shares from owner and sends exactly assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   withdraw execution, and are accounted for during withdraw. - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC4626.sol\":\"IERC4626\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@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.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0xfb223a85dd0b2175cfbbaa325a744e2cd74ecd17c3df2b77b0722f991d2725ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://84bf1dea0589ec49c8d15d559cc6d86ee493048a89b2d4adb60fbe705a3d89ae\",\"dweb:/ipfs/Qmd56n556d529wk2pRMhYhm5nhMDhviwereodDikjs68w1\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/interfaces/draft-IERC1822.sol":{"IERC1822Proxiable":{"abi":[{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"proxiableUUID()":"52d1902d"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"ERC-1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified proxy whose upgrades are fully controlled by the current implementation.\",\"kind\":\"dev\",\"methods\":{\"proxiableUUID()\":{\"details\":\"Returns the storage slot that the proxiable contract assumes is being used to store the implementation address. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":\"IERC1822Proxiable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@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.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}},"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.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}},"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.30+commit.73712a01\"},\"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-721. 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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol":{"ERC1967Proxy":{"abi":[{"inputs":[{"internalType":"address","name":"implementation","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"}],"evm":{"bytecode":{"functionDebugData":{"@_6597":{"entryPoint":null,"id":6597,"parameterSlots":2,"returnSlots":0},"@_checkNonPayable_6903":{"entryPoint":429,"id":6903,"parameterSlots":0,"returnSlots":0},"@_setImplementation_6683":{"entryPoint":145,"id":6683,"parameterSlots":1,"returnSlots":0},"@bubbleRevert_10900":{"entryPoint":506,"id":10900,"parameterSlots":0,"returnSlots":0},"@delegatecallNoReturn_10862":{"entryPoint":462,"id":10862,"parameterSlots":2,"returnSlots":1},"@functionDelegateCall_9894":{"entryPoint":268,"id":9894,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_11669":{"entryPoint":null,"id":11669,"parameterSlots":1,"returnSlots":1},"@returnDataSize_10886":{"entryPoint":null,"id":10886,"parameterSlots":0,"returnSlots":1},"@returnData_10894":{"entryPoint":481,"id":10894,"parameterSlots":0,"returnSlots":1},"@upgradeToAndCall_6719":{"entryPoint":51,"id":6719,"parameterSlots":2,"returnSlots":0},"abi_decode_tuple_t_addresst_bytes_memory_ptr_fromMemory":{"entryPoint":537,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x41":{"entryPoint":517,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:1457:101","nodeType":"YulBlock","src":"0:1457:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"46:95:101","nodeType":"YulBlock","src":"46:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"63:1:101","nodeType":"YulLiteral","src":"63:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"70:3:101","nodeType":"YulLiteral","src":"70:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"75:10:101","nodeType":"YulLiteral","src":"75:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"66:3:101","nodeType":"YulIdentifier","src":"66:3:101"},"nativeSrc":"66:20:101","nodeType":"YulFunctionCall","src":"66:20:101"}],"functionName":{"name":"mstore","nativeSrc":"56:6:101","nodeType":"YulIdentifier","src":"56:6:101"},"nativeSrc":"56:31:101","nodeType":"YulFunctionCall","src":"56:31:101"},"nativeSrc":"56:31:101","nodeType":"YulExpressionStatement","src":"56:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"103:1:101","nodeType":"YulLiteral","src":"103:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"106:4:101","nodeType":"YulLiteral","src":"106:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"96:6:101","nodeType":"YulIdentifier","src":"96:6:101"},"nativeSrc":"96:15:101","nodeType":"YulFunctionCall","src":"96:15:101"},"nativeSrc":"96:15:101","nodeType":"YulExpressionStatement","src":"96:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"127:1:101","nodeType":"YulLiteral","src":"127:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"130:4:101","nodeType":"YulLiteral","src":"130:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"120:6:101","nodeType":"YulIdentifier","src":"120:6:101"},"nativeSrc":"120:15:101","nodeType":"YulFunctionCall","src":"120:15:101"},"nativeSrc":"120:15:101","nodeType":"YulExpressionStatement","src":"120:15:101"}]},"name":"panic_error_0x41","nativeSrc":"14:127:101","nodeType":"YulFunctionDefinition","src":"14:127:101"},{"body":{"nativeSrc":"253:994:101","nodeType":"YulBlock","src":"253:994:101","statements":[{"body":{"nativeSrc":"299:16:101","nodeType":"YulBlock","src":"299:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"308:1:101","nodeType":"YulLiteral","src":"308:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"311:1:101","nodeType":"YulLiteral","src":"311:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"301:6:101","nodeType":"YulIdentifier","src":"301:6:101"},"nativeSrc":"301:12:101","nodeType":"YulFunctionCall","src":"301:12:101"},"nativeSrc":"301:12:101","nodeType":"YulExpressionStatement","src":"301:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"274:7:101","nodeType":"YulIdentifier","src":"274:7:101"},{"name":"headStart","nativeSrc":"283:9:101","nodeType":"YulIdentifier","src":"283:9:101"}],"functionName":{"name":"sub","nativeSrc":"270:3:101","nodeType":"YulIdentifier","src":"270:3:101"},"nativeSrc":"270:23:101","nodeType":"YulFunctionCall","src":"270:23:101"},{"kind":"number","nativeSrc":"295:2:101","nodeType":"YulLiteral","src":"295:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"266:3:101","nodeType":"YulIdentifier","src":"266:3:101"},"nativeSrc":"266:32:101","nodeType":"YulFunctionCall","src":"266:32:101"},"nativeSrc":"263:52:101","nodeType":"YulIf","src":"263:52:101"},{"nativeSrc":"324:29:101","nodeType":"YulVariableDeclaration","src":"324:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"343:9:101","nodeType":"YulIdentifier","src":"343:9:101"}],"functionName":{"name":"mload","nativeSrc":"337:5:101","nodeType":"YulIdentifier","src":"337:5:101"},"nativeSrc":"337:16:101","nodeType":"YulFunctionCall","src":"337:16:101"},"variables":[{"name":"value","nativeSrc":"328:5:101","nodeType":"YulTypedName","src":"328:5:101","type":""}]},{"body":{"nativeSrc":"416:16:101","nodeType":"YulBlock","src":"416:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"425:1:101","nodeType":"YulLiteral","src":"425:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"428:1:101","nodeType":"YulLiteral","src":"428:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"418:6:101","nodeType":"YulIdentifier","src":"418:6:101"},"nativeSrc":"418:12:101","nodeType":"YulFunctionCall","src":"418:12:101"},"nativeSrc":"418:12:101","nodeType":"YulExpressionStatement","src":"418:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"375:5:101","nodeType":"YulIdentifier","src":"375:5:101"},{"arguments":[{"name":"value","nativeSrc":"386:5:101","nodeType":"YulIdentifier","src":"386:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"401:3:101","nodeType":"YulLiteral","src":"401:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"406:1:101","nodeType":"YulLiteral","src":"406:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"397:3:101","nodeType":"YulIdentifier","src":"397:3:101"},"nativeSrc":"397:11:101","nodeType":"YulFunctionCall","src":"397:11:101"},{"kind":"number","nativeSrc":"410:1:101","nodeType":"YulLiteral","src":"410:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"393:3:101","nodeType":"YulIdentifier","src":"393:3:101"},"nativeSrc":"393:19:101","nodeType":"YulFunctionCall","src":"393:19:101"}],"functionName":{"name":"and","nativeSrc":"382:3:101","nodeType":"YulIdentifier","src":"382:3:101"},"nativeSrc":"382:31:101","nodeType":"YulFunctionCall","src":"382:31:101"}],"functionName":{"name":"eq","nativeSrc":"372:2:101","nodeType":"YulIdentifier","src":"372:2:101"},"nativeSrc":"372:42:101","nodeType":"YulFunctionCall","src":"372:42:101"}],"functionName":{"name":"iszero","nativeSrc":"365:6:101","nodeType":"YulIdentifier","src":"365:6:101"},"nativeSrc":"365:50:101","nodeType":"YulFunctionCall","src":"365:50:101"},"nativeSrc":"362:70:101","nodeType":"YulIf","src":"362:70:101"},{"nativeSrc":"441:15:101","nodeType":"YulAssignment","src":"441:15:101","value":{"name":"value","nativeSrc":"451:5:101","nodeType":"YulIdentifier","src":"451:5:101"},"variableNames":[{"name":"value0","nativeSrc":"441:6:101","nodeType":"YulIdentifier","src":"441:6:101"}]},{"nativeSrc":"465:39:101","nodeType":"YulVariableDeclaration","src":"465:39:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"489:9:101","nodeType":"YulIdentifier","src":"489:9:101"},{"kind":"number","nativeSrc":"500:2:101","nodeType":"YulLiteral","src":"500:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"485:3:101","nodeType":"YulIdentifier","src":"485:3:101"},"nativeSrc":"485:18:101","nodeType":"YulFunctionCall","src":"485:18:101"}],"functionName":{"name":"mload","nativeSrc":"479:5:101","nodeType":"YulIdentifier","src":"479:5:101"},"nativeSrc":"479:25:101","nodeType":"YulFunctionCall","src":"479:25:101"},"variables":[{"name":"offset","nativeSrc":"469:6:101","nodeType":"YulTypedName","src":"469:6:101","type":""}]},{"body":{"nativeSrc":"547:16:101","nodeType":"YulBlock","src":"547:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"556:1:101","nodeType":"YulLiteral","src":"556:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"559:1:101","nodeType":"YulLiteral","src":"559:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"549:6:101","nodeType":"YulIdentifier","src":"549:6:101"},"nativeSrc":"549:12:101","nodeType":"YulFunctionCall","src":"549:12:101"},"nativeSrc":"549:12:101","nodeType":"YulExpressionStatement","src":"549:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"519:6:101","nodeType":"YulIdentifier","src":"519:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"535:2:101","nodeType":"YulLiteral","src":"535:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"539:1:101","nodeType":"YulLiteral","src":"539:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"531:3:101","nodeType":"YulIdentifier","src":"531:3:101"},"nativeSrc":"531:10:101","nodeType":"YulFunctionCall","src":"531:10:101"},{"kind":"number","nativeSrc":"543:1:101","nodeType":"YulLiteral","src":"543:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"527:3:101","nodeType":"YulIdentifier","src":"527:3:101"},"nativeSrc":"527:18:101","nodeType":"YulFunctionCall","src":"527:18:101"}],"functionName":{"name":"gt","nativeSrc":"516:2:101","nodeType":"YulIdentifier","src":"516:2:101"},"nativeSrc":"516:30:101","nodeType":"YulFunctionCall","src":"516:30:101"},"nativeSrc":"513:50:101","nodeType":"YulIf","src":"513:50:101"},{"nativeSrc":"572:32:101","nodeType":"YulVariableDeclaration","src":"572:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"586:9:101","nodeType":"YulIdentifier","src":"586:9:101"},{"name":"offset","nativeSrc":"597:6:101","nodeType":"YulIdentifier","src":"597:6:101"}],"functionName":{"name":"add","nativeSrc":"582:3:101","nodeType":"YulIdentifier","src":"582:3:101"},"nativeSrc":"582:22:101","nodeType":"YulFunctionCall","src":"582:22:101"},"variables":[{"name":"_1","nativeSrc":"576:2:101","nodeType":"YulTypedName","src":"576:2:101","type":""}]},{"body":{"nativeSrc":"652:16:101","nodeType":"YulBlock","src":"652:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"661:1:101","nodeType":"YulLiteral","src":"661:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"664:1:101","nodeType":"YulLiteral","src":"664:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"654:6:101","nodeType":"YulIdentifier","src":"654:6:101"},"nativeSrc":"654:12:101","nodeType":"YulFunctionCall","src":"654:12:101"},"nativeSrc":"654:12:101","nodeType":"YulExpressionStatement","src":"654:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"631:2:101","nodeType":"YulIdentifier","src":"631:2:101"},{"kind":"number","nativeSrc":"635:4:101","nodeType":"YulLiteral","src":"635:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"627:3:101","nodeType":"YulIdentifier","src":"627:3:101"},"nativeSrc":"627:13:101","nodeType":"YulFunctionCall","src":"627:13:101"},{"name":"dataEnd","nativeSrc":"642:7:101","nodeType":"YulIdentifier","src":"642:7:101"}],"functionName":{"name":"slt","nativeSrc":"623:3:101","nodeType":"YulIdentifier","src":"623:3:101"},"nativeSrc":"623:27:101","nodeType":"YulFunctionCall","src":"623:27:101"}],"functionName":{"name":"iszero","nativeSrc":"616:6:101","nodeType":"YulIdentifier","src":"616:6:101"},"nativeSrc":"616:35:101","nodeType":"YulFunctionCall","src":"616:35:101"},"nativeSrc":"613:55:101","nodeType":"YulIf","src":"613:55:101"},{"nativeSrc":"677:23:101","nodeType":"YulVariableDeclaration","src":"677:23:101","value":{"arguments":[{"name":"_1","nativeSrc":"697:2:101","nodeType":"YulIdentifier","src":"697:2:101"}],"functionName":{"name":"mload","nativeSrc":"691:5:101","nodeType":"YulIdentifier","src":"691:5:101"},"nativeSrc":"691:9:101","nodeType":"YulFunctionCall","src":"691:9:101"},"variables":[{"name":"length","nativeSrc":"681:6:101","nodeType":"YulTypedName","src":"681:6:101","type":""}]},{"body":{"nativeSrc":"743:22:101","nodeType":"YulBlock","src":"743:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"745:16:101","nodeType":"YulIdentifier","src":"745:16:101"},"nativeSrc":"745:18:101","nodeType":"YulFunctionCall","src":"745:18:101"},"nativeSrc":"745:18:101","nodeType":"YulExpressionStatement","src":"745:18:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"715:6:101","nodeType":"YulIdentifier","src":"715:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"731:2:101","nodeType":"YulLiteral","src":"731:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"735:1:101","nodeType":"YulLiteral","src":"735:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"727:3:101","nodeType":"YulIdentifier","src":"727:3:101"},"nativeSrc":"727:10:101","nodeType":"YulFunctionCall","src":"727:10:101"},{"kind":"number","nativeSrc":"739:1:101","nodeType":"YulLiteral","src":"739:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"723:3:101","nodeType":"YulIdentifier","src":"723:3:101"},"nativeSrc":"723:18:101","nodeType":"YulFunctionCall","src":"723:18:101"}],"functionName":{"name":"gt","nativeSrc":"712:2:101","nodeType":"YulIdentifier","src":"712:2:101"},"nativeSrc":"712:30:101","nodeType":"YulFunctionCall","src":"712:30:101"},"nativeSrc":"709:56:101","nodeType":"YulIf","src":"709:56:101"},{"nativeSrc":"774:23:101","nodeType":"YulVariableDeclaration","src":"774:23:101","value":{"arguments":[{"kind":"number","nativeSrc":"794:2:101","nodeType":"YulLiteral","src":"794:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"788:5:101","nodeType":"YulIdentifier","src":"788:5:101"},"nativeSrc":"788:9:101","nodeType":"YulFunctionCall","src":"788:9:101"},"variables":[{"name":"memPtr","nativeSrc":"778:6:101","nodeType":"YulTypedName","src":"778:6:101","type":""}]},{"nativeSrc":"806:85:101","nodeType":"YulVariableDeclaration","src":"806:85:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"828:6:101","nodeType":"YulIdentifier","src":"828:6:101"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"852:6:101","nodeType":"YulIdentifier","src":"852:6:101"},{"kind":"number","nativeSrc":"860:4:101","nodeType":"YulLiteral","src":"860:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"848:3:101","nodeType":"YulIdentifier","src":"848:3:101"},"nativeSrc":"848:17:101","nodeType":"YulFunctionCall","src":"848:17:101"},{"arguments":[{"kind":"number","nativeSrc":"871:2:101","nodeType":"YulLiteral","src":"871:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"867:3:101","nodeType":"YulIdentifier","src":"867:3:101"},"nativeSrc":"867:7:101","nodeType":"YulFunctionCall","src":"867:7:101"}],"functionName":{"name":"and","nativeSrc":"844:3:101","nodeType":"YulIdentifier","src":"844:3:101"},"nativeSrc":"844:31:101","nodeType":"YulFunctionCall","src":"844:31:101"},{"kind":"number","nativeSrc":"877:2:101","nodeType":"YulLiteral","src":"877:2:101","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"840:3:101","nodeType":"YulIdentifier","src":"840:3:101"},"nativeSrc":"840:40:101","nodeType":"YulFunctionCall","src":"840:40:101"},{"arguments":[{"kind":"number","nativeSrc":"886:2:101","nodeType":"YulLiteral","src":"886:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"882:3:101","nodeType":"YulIdentifier","src":"882:3:101"},"nativeSrc":"882:7:101","nodeType":"YulFunctionCall","src":"882:7:101"}],"functionName":{"name":"and","nativeSrc":"836:3:101","nodeType":"YulIdentifier","src":"836:3:101"},"nativeSrc":"836:54:101","nodeType":"YulFunctionCall","src":"836:54:101"}],"functionName":{"name":"add","nativeSrc":"824:3:101","nodeType":"YulIdentifier","src":"824:3:101"},"nativeSrc":"824:67:101","nodeType":"YulFunctionCall","src":"824:67:101"},"variables":[{"name":"newFreePtr","nativeSrc":"810:10:101","nodeType":"YulTypedName","src":"810:10:101","type":""}]},{"body":{"nativeSrc":"966:22:101","nodeType":"YulBlock","src":"966:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"968:16:101","nodeType":"YulIdentifier","src":"968:16:101"},"nativeSrc":"968:18:101","nodeType":"YulFunctionCall","src":"968:18:101"},"nativeSrc":"968:18:101","nodeType":"YulExpressionStatement","src":"968:18:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"909:10:101","nodeType":"YulIdentifier","src":"909:10:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"929:2:101","nodeType":"YulLiteral","src":"929:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"933:1:101","nodeType":"YulLiteral","src":"933:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"925:3:101","nodeType":"YulIdentifier","src":"925:3:101"},"nativeSrc":"925:10:101","nodeType":"YulFunctionCall","src":"925:10:101"},{"kind":"number","nativeSrc":"937:1:101","nodeType":"YulLiteral","src":"937:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"921:3:101","nodeType":"YulIdentifier","src":"921:3:101"},"nativeSrc":"921:18:101","nodeType":"YulFunctionCall","src":"921:18:101"}],"functionName":{"name":"gt","nativeSrc":"906:2:101","nodeType":"YulIdentifier","src":"906:2:101"},"nativeSrc":"906:34:101","nodeType":"YulFunctionCall","src":"906:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"945:10:101","nodeType":"YulIdentifier","src":"945:10:101"},{"name":"memPtr","nativeSrc":"957:6:101","nodeType":"YulIdentifier","src":"957:6:101"}],"functionName":{"name":"lt","nativeSrc":"942:2:101","nodeType":"YulIdentifier","src":"942:2:101"},"nativeSrc":"942:22:101","nodeType":"YulFunctionCall","src":"942:22:101"}],"functionName":{"name":"or","nativeSrc":"903:2:101","nodeType":"YulIdentifier","src":"903:2:101"},"nativeSrc":"903:62:101","nodeType":"YulFunctionCall","src":"903:62:101"},"nativeSrc":"900:88:101","nodeType":"YulIf","src":"900:88:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1004:2:101","nodeType":"YulLiteral","src":"1004:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"1008:10:101","nodeType":"YulIdentifier","src":"1008:10:101"}],"functionName":{"name":"mstore","nativeSrc":"997:6:101","nodeType":"YulIdentifier","src":"997:6:101"},"nativeSrc":"997:22:101","nodeType":"YulFunctionCall","src":"997:22:101"},"nativeSrc":"997:22:101","nodeType":"YulExpressionStatement","src":"997:22:101"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"1035:6:101","nodeType":"YulIdentifier","src":"1035:6:101"},{"name":"length","nativeSrc":"1043:6:101","nodeType":"YulIdentifier","src":"1043:6:101"}],"functionName":{"name":"mstore","nativeSrc":"1028:6:101","nodeType":"YulIdentifier","src":"1028:6:101"},"nativeSrc":"1028:22:101","nodeType":"YulFunctionCall","src":"1028:22:101"},"nativeSrc":"1028:22:101","nodeType":"YulExpressionStatement","src":"1028:22:101"},{"body":{"nativeSrc":"1100:16:101","nodeType":"YulBlock","src":"1100:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1109:1:101","nodeType":"YulLiteral","src":"1109:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1112:1:101","nodeType":"YulLiteral","src":"1112:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1102:6:101","nodeType":"YulIdentifier","src":"1102:6:101"},"nativeSrc":"1102:12:101","nodeType":"YulFunctionCall","src":"1102:12:101"},"nativeSrc":"1102:12:101","nodeType":"YulExpressionStatement","src":"1102:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1073:2:101","nodeType":"YulIdentifier","src":"1073:2:101"},{"name":"length","nativeSrc":"1077:6:101","nodeType":"YulIdentifier","src":"1077:6:101"}],"functionName":{"name":"add","nativeSrc":"1069:3:101","nodeType":"YulIdentifier","src":"1069:3:101"},"nativeSrc":"1069:15:101","nodeType":"YulFunctionCall","src":"1069:15:101"},{"kind":"number","nativeSrc":"1086:2:101","nodeType":"YulLiteral","src":"1086:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1065:3:101","nodeType":"YulIdentifier","src":"1065:3:101"},"nativeSrc":"1065:24:101","nodeType":"YulFunctionCall","src":"1065:24:101"},{"name":"dataEnd","nativeSrc":"1091:7:101","nodeType":"YulIdentifier","src":"1091:7:101"}],"functionName":{"name":"gt","nativeSrc":"1062:2:101","nodeType":"YulIdentifier","src":"1062:2:101"},"nativeSrc":"1062:37:101","nodeType":"YulFunctionCall","src":"1062:37:101"},"nativeSrc":"1059:57:101","nodeType":"YulIf","src":"1059:57:101"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"1135:6:101","nodeType":"YulIdentifier","src":"1135:6:101"},{"kind":"number","nativeSrc":"1143:2:101","nodeType":"YulLiteral","src":"1143:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1131:3:101","nodeType":"YulIdentifier","src":"1131:3:101"},"nativeSrc":"1131:15:101","nodeType":"YulFunctionCall","src":"1131:15:101"},{"arguments":[{"name":"_1","nativeSrc":"1152:2:101","nodeType":"YulIdentifier","src":"1152:2:101"},{"kind":"number","nativeSrc":"1156:2:101","nodeType":"YulLiteral","src":"1156:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1148:3:101","nodeType":"YulIdentifier","src":"1148:3:101"},"nativeSrc":"1148:11:101","nodeType":"YulFunctionCall","src":"1148:11:101"},{"name":"length","nativeSrc":"1161:6:101","nodeType":"YulIdentifier","src":"1161:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"1125:5:101","nodeType":"YulIdentifier","src":"1125:5:101"},"nativeSrc":"1125:43:101","nodeType":"YulFunctionCall","src":"1125:43:101"},"nativeSrc":"1125:43:101","nodeType":"YulExpressionStatement","src":"1125:43:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"1192:6:101","nodeType":"YulIdentifier","src":"1192:6:101"},{"name":"length","nativeSrc":"1200:6:101","nodeType":"YulIdentifier","src":"1200:6:101"}],"functionName":{"name":"add","nativeSrc":"1188:3:101","nodeType":"YulIdentifier","src":"1188:3:101"},"nativeSrc":"1188:19:101","nodeType":"YulFunctionCall","src":"1188:19:101"},{"kind":"number","nativeSrc":"1209:2:101","nodeType":"YulLiteral","src":"1209:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1184:3:101","nodeType":"YulIdentifier","src":"1184:3:101"},"nativeSrc":"1184:28:101","nodeType":"YulFunctionCall","src":"1184:28:101"},{"kind":"number","nativeSrc":"1214:1:101","nodeType":"YulLiteral","src":"1214:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"1177:6:101","nodeType":"YulIdentifier","src":"1177:6:101"},"nativeSrc":"1177:39:101","nodeType":"YulFunctionCall","src":"1177:39:101"},"nativeSrc":"1177:39:101","nodeType":"YulExpressionStatement","src":"1177:39:101"},{"nativeSrc":"1225:16:101","nodeType":"YulAssignment","src":"1225:16:101","value":{"name":"memPtr","nativeSrc":"1235:6:101","nodeType":"YulIdentifier","src":"1235:6:101"},"variableNames":[{"name":"value1","nativeSrc":"1225:6:101","nodeType":"YulIdentifier","src":"1225:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr_fromMemory","nativeSrc":"146:1101:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"211:9:101","nodeType":"YulTypedName","src":"211:9:101","type":""},{"name":"dataEnd","nativeSrc":"222:7:101","nodeType":"YulTypedName","src":"222:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"234:6:101","nodeType":"YulTypedName","src":"234:6:101","type":""},{"name":"value1","nativeSrc":"242:6:101","nodeType":"YulTypedName","src":"242:6:101","type":""}],"src":"146:1101:101"},{"body":{"nativeSrc":"1353:102:101","nodeType":"YulBlock","src":"1353:102:101","statements":[{"nativeSrc":"1363:26:101","nodeType":"YulAssignment","src":"1363:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1375:9:101","nodeType":"YulIdentifier","src":"1375:9:101"},{"kind":"number","nativeSrc":"1386:2:101","nodeType":"YulLiteral","src":"1386:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1371:3:101","nodeType":"YulIdentifier","src":"1371:3:101"},"nativeSrc":"1371:18:101","nodeType":"YulFunctionCall","src":"1371:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1363:4:101","nodeType":"YulIdentifier","src":"1363:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1405:9:101","nodeType":"YulIdentifier","src":"1405:9:101"},{"arguments":[{"name":"value0","nativeSrc":"1420:6:101","nodeType":"YulIdentifier","src":"1420:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1436:3:101","nodeType":"YulLiteral","src":"1436:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"1441:1:101","nodeType":"YulLiteral","src":"1441:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1432:3:101","nodeType":"YulIdentifier","src":"1432:3:101"},"nativeSrc":"1432:11:101","nodeType":"YulFunctionCall","src":"1432:11:101"},{"kind":"number","nativeSrc":"1445:1:101","nodeType":"YulLiteral","src":"1445:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1428:3:101","nodeType":"YulIdentifier","src":"1428:3:101"},"nativeSrc":"1428:19:101","nodeType":"YulFunctionCall","src":"1428:19:101"}],"functionName":{"name":"and","nativeSrc":"1416:3:101","nodeType":"YulIdentifier","src":"1416:3:101"},"nativeSrc":"1416:32:101","nodeType":"YulFunctionCall","src":"1416:32:101"}],"functionName":{"name":"mstore","nativeSrc":"1398:6:101","nodeType":"YulIdentifier","src":"1398:6:101"},"nativeSrc":"1398:51:101","nodeType":"YulFunctionCall","src":"1398:51:101"},"nativeSrc":"1398:51:101","nodeType":"YulExpressionStatement","src":"1398:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"1252:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1322:9:101","nodeType":"YulTypedName","src":"1322:9:101","type":""},{"name":"value0","nativeSrc":"1333:6:101","nodeType":"YulTypedName","src":"1333:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1344:4:101","nodeType":"YulTypedName","src":"1344:4:101","type":""}],"src":"1252:203:101"}]},"contents":"{\n    { }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n        let offset := mload(add(headStart, 32))\n        if gt(offset, sub(shl(64, 1), 1)) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := mload(_1)\n        if gt(length, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(length, 0x1f), not(31)), 63), not(31)))\n        if or(gt(newFreePtr, sub(shl(64, 1), 1)), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, length)\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        mcopy(add(memPtr, 32), add(_1, 32), length)\n        mstore(add(add(memPtr, length), 32), 0)\n        value1 := memPtr\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"608060405260405161039738038061039783398101604081905261002291610219565b61002c8282610033565b50506102e8565b61003c82610091565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561008557610080828261010c565b505050565b61008d6101ad565b5050565b806001600160a01b03163b5f036100cb57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f61011984846101ce565b905080801561013a57505f3d118061013a57505f846001600160a01b03163b115b1561014f576101476101e1565b9150506101a7565b801561017957604051639996b31560e01b81526001600160a01b03851660048201526024016100c2565b3d1561018c576101876101fa565b6101a5565b60405163d6bda27560e01b815260040160405180910390fd5b505b92915050565b34156101cc5760405163b398979f60e01b815260040160405180910390fd5b565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b634e487b7160e01b5f52604160045260245ffd5b5f5f6040838503121561022a575f5ffd5b82516001600160a01b0381168114610240575f5ffd5b60208401519092506001600160401b0381111561025b575f5ffd5b8301601f8101851361026b575f5ffd5b80516001600160401b0381111561028457610284610205565b604051601f8201601f19908116603f011681016001600160401b03811182821017156102b2576102b2610205565b6040528181528282016020018710156102c9575f5ffd5b8160208401602083015e5f602083830101528093505050509250929050565b60a3806102f45f395ff3fe6080604052600a600c565b005b60186014601a565b6050565b565b5f604b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b365f5f375f5f365f845af43d5f5f3e8080156069573d5ff35b3d5ffdfea264697066735822122032820715615b6af5eebbd7375e360eb7f78faaa705e7b7a0dba4041b79e7a22564736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH2 0x397 CODESIZE SUB DUP1 PUSH2 0x397 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x22 SWAP2 PUSH2 0x219 JUMP JUMPDEST PUSH2 0x2C DUP3 DUP3 PUSH2 0x33 JUMP JUMPDEST POP POP PUSH2 0x2E8 JUMP JUMPDEST PUSH2 0x3C DUP3 PUSH2 0x91 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x85 JUMPI PUSH2 0x80 DUP3 DUP3 PUSH2 0x10C JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x8D PUSH2 0x1AD JUMP JUMPDEST POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0xCB JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x119 DUP5 DUP5 PUSH2 0x1CE JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x13A JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x13A JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x14F JUMPI PUSH2 0x147 PUSH2 0x1E1 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1A7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x179 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC2 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x18C JUMPI PUSH2 0x187 PUSH2 0x1FA JUMP JUMPDEST PUSH2 0x1A5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x1CC JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x22A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x240 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x25B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x26B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x284 JUMPI PUSH2 0x284 PUSH2 0x205 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2B2 JUMPI PUSH2 0x2B2 PUSH2 0x205 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP3 DUP3 ADD PUSH1 0x20 ADD DUP8 LT ISZERO PUSH2 0x2C9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD MCOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP4 POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0xA3 DUP1 PUSH2 0x2F4 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0xA PUSH1 0xC JUMP JUMPDEST STOP JUMPDEST PUSH1 0x18 PUSH1 0x14 PUSH1 0x1A JUMP JUMPDEST PUSH1 0x50 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x4B PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH1 0x69 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ORIGIN DUP3 SMOD ISZERO PUSH2 0x5B6A CREATE2 RETURNCONTRACT 0xBB 0xD7 CALLDATACOPY MCOPY CALLDATASIZE 0xE 0xB7 0xF7 DUP16 0xAA 0xA7 SDIV SWAPN 0xB7 LOG0 0xDB LOG4 DIV SHL PUSH26 0xE7A22564736F6C634300081E0033000000000000000000000000 ","sourceMap":"600:1117:28:-:0;;;1081:133;;;;;;;;;;;;;;;;;;:::i;:::-;1155:52;1185:14;1201:5;1155:29;:52::i;:::-;1081:133;;600:1117;;2264:344:29;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:29;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;:::-;;2264:344;;:::o;2454:148::-;2573:18;:16;:18::i;:::-;2264:344;;:::o;1671:281::-;1748:17;-1:-1:-1;;;;;1748:29:29;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:29;;-1:-1:-1;;;;;1416:32:101;;1805:47:29;;;1398:51:101;1371:18;;1805:47:29;;;;;;;;1744:119;811:66;1872:73;;-1:-1:-1;;;;;;1872:73:29;-1:-1:-1;;;;;1872:73:29;;;;;;;;;;1671:281::o;4691:549:45:-;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:45;4583:16:49;4886:33:45;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:45;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;:::-;4962:32;;;;;4870:364;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:45;;-1:-1:-1;;;;;1416:32:101;;5045:24:45;;;1398:51:101;1371:18;;5045:24:45;1252:203:101;5011:223:45;4583:16:49;5090:33:45;5086:148;;5139:27;:25;:27::i;:::-;5086:148;;;5204:19;;-1:-1:-1;;;5204:19:45;;;;;;;;;;;5086:148;4788:452;4691:549;;;;;:::o;6113:122:29:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:29;;;;;;;;;;;6159:70;6113:122::o;3383:242:49:-;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:49:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;14:127:101;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:1101;234:6;242;295:2;283:9;274:7;270:23;266:32;263:52;;;311:1;308;301:12;263:52;337:16;;-1:-1:-1;;;;;382:31:101;;372:42;;362:70;;428:1;425;418:12;362:70;500:2;485:18;;479:25;451:5;;-1:-1:-1;;;;;;516:30:101;;513:50;;;559:1;556;549:12;513:50;582:22;;635:4;627:13;;623:27;-1:-1:-1;613:55:101;;664:1;661;654:12;613:55;691:9;;-1:-1:-1;;;;;712:30:101;;709:56;;;745:18;;:::i;:::-;794:2;788:9;886:2;848:17;;-1:-1:-1;;844:31:101;;;877:2;840:40;836:54;824:67;;-1:-1:-1;;;;;906:34:101;;942:22;;;903:62;900:88;;;968:18;;:::i;:::-;1004:2;997:22;1028;;;1069:15;;;1086:2;1065:24;1062:37;-1:-1:-1;1059:57:101;;;1112:1;1109;1102:12;1059:57;1161:6;1156:2;1152;1148:11;1143:2;1135:6;1131:15;1125:43;1214:1;1209:2;1200:6;1192;1188:19;1184:28;1177:39;1235:6;1225:16;;;;;146:1101;;;;;:::o;1252:203::-;600:1117:28;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_6939":{"entryPoint":null,"id":6939,"parameterSlots":0,"returnSlots":0},"@_delegate_6915":{"entryPoint":80,"id":6915,"parameterSlots":1,"returnSlots":0},"@_fallback_6931":{"entryPoint":12,"id":6931,"parameterSlots":0,"returnSlots":0},"@_implementation_6609":{"entryPoint":26,"id":6609,"parameterSlots":0,"returnSlots":1},"@getAddressSlot_11669":{"entryPoint":null,"id":11669,"parameterSlots":1,"returnSlots":1},"@getImplementation_6656":{"entryPoint":null,"id":6656,"parameterSlots":0,"returnSlots":1}},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"6080604052600a600c565b005b60186014601a565b6050565b565b5f604b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b365f5f375f5f365f845af43d5f5f3e8080156069573d5ff35b3d5ffdfea264697066735822122032820715615b6af5eebbd7375e360eb7f78faaa705e7b7a0dba4041b79e7a22564736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0xA PUSH1 0xC JUMP JUMPDEST STOP JUMPDEST PUSH1 0x18 PUSH1 0x14 PUSH1 0x1A JUMP JUMPDEST PUSH1 0x50 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x4B PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH1 0x69 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ORIGIN DUP3 SMOD ISZERO PUSH2 0x5B6A CREATE2 RETURNCONTRACT 0xBB 0xD7 CALLDATACOPY MCOPY CALLDATASIZE 0xE 0xB7 0xF7 DUP16 0xAA 0xA7 SDIV SWAPN 0xB7 LOG0 0xDB LOG4 DIV SHL PUSH26 0xE7A22564736F6C634300081E0033000000000000000000000000 ","sourceMap":"600:1117:28:-:0;;;2676:11:30;:9;:11::i;:::-;600:1117:28;2350:83:30;2398:28;2408:17;:15;:17::i;:::-;2398:9;:28::i;:::-;2350:83::o;1583:132:28:-;1650:7;1676:32;811:66:29;1519:53;-1:-1:-1;;;;;1519:53:29;;1441:138;1676:32:28;1669:39;;1583:132;:::o;949:922:30:-;1293:14;1287:4;1281;1268:40;1513:4;1507;1491:14;1485:4;1469:14;1462:5;1449:69;1598:16;1592:4;1586;1571:44;1636:6;1703:69;;;;1824:16;1818:4;1811:30;1703:69;1741:16;1735:4;1728:30"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"}],\"devdoc\":{\"details\":\"This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an implementation address that can be changed. This address is stored in storage in the location specified by https://eips.ethereum.org/EIPS/eip-1967[ERC-1967], so that it doesn't conflict with the storage layout of the implementation behind the proxy.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}]},\"events\":{\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the upgradeable proxy with an initial implementation specified by `implementation`. If `_data` is nonempty, it's used as data in a delegate call to `implementation`. This will typically be an encoded function call, and allows initializing the storage of the proxy like a Solidity constructor. Requirements: - If `data` is empty, `msg.value` must be zero.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":\"ERC1967Proxy\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa3066ff86b94128a9d3956a63a0511fa1aae41bd455772ab587b32ff322acb2e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bf7b192fd82acf6187970c80548f624b1b9c80425b62fa49e7fdb538a52de049\",\"dweb:/ipfs/QmWXG1YCde1tqDYTbNwjkZDWVgPEjzaQGSDqWkyKLzaNua\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0x80935e4fae2c414f4e7789e13a820d06901182a5733ab006f8d68b5b09db993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://752d991d6ca1087587b48103bc623f74888054f58581ff29166d90889c4765c5\",\"dweb:/ipfs/QmRBsa6K2ChKxVWYY54YiyYhDBPbmY5HyKCtij5LoWh56o\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol":{"ERC1967Utils":{"abi":[{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"ERC1967InvalidAdmin","type":"error"},{"inputs":[{"internalType":"address","name":"beacon","type":"address"}],"name":"ERC1967InvalidBeacon","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220099b886f4a3f10aa1f29dbd42fb99a9fa5e789379cddc4e070792f24212ad86164736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MULMOD SWAP12 DUP9 PUSH16 0x4A3F10AA1F29DBD42FB99A9FA5E78937 SWAP13 0xDD 0xC4 RJUMP 0x7079 0x2F 0x24 0x21 0x2A 0xD8 PUSH2 0x6473 PUSH16 0x6C634300081E00330000000000000000 ","sourceMap":"496:5741:29:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;496:5741:29;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220099b886f4a3f10aa1f29dbd42fb99a9fa5e789379cddc4e070792f24212ad86164736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MULMOD SWAP12 DUP9 PUSH16 0x4A3F10AA1F29DBD42FB99A9FA5E78937 SWAP13 0xDD 0xC4 RJUMP 0x7079 0x2F 0x24 0x21 0x2A 0xD8 PUSH2 0x6473 PUSH16 0x6C634300081E00330000000000000000 ","sourceMap":"496:5741:29:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"admin\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidAdmin\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidBeacon\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"This library provides getters and event emitting update functions for https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.\",\"errors\":{\"ERC1967InvalidAdmin(address)\":[{\"details\":\"The `admin` of the proxy is invalid.\"}],\"ERC1967InvalidBeacon(address)\":[{\"details\":\"The `beacon` of the proxy is invalid.\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}]},\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"ADMIN_SLOT\":{\"details\":\"Storage slot with the admin of the contract. This is the keccak-256 hash of \\\"eip1967.proxy.admin\\\" subtracted by 1.\"},\"BEACON_SLOT\":{\"details\":\"The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. This is the keccak-256 hash of \\\"eip1967.proxy.beacon\\\" subtracted by 1.\"},\"IMPLEMENTATION_SLOT\":{\"details\":\"Storage slot with the address of the current implementation. This is the keccak-256 hash of \\\"eip1967.proxy.implementation\\\" subtracted by 1.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":\"ERC1967Utils\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/proxy/Proxy.sol":{"Proxy":{"abi":[{"stateMutability":"payable","type":"fallback"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"stateMutability\":\"payable\",\"type\":\"fallback\"}],\"devdoc\":{\"details\":\"This abstract contract provides a fallback function that delegates all calls to another contract using the EVM instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to be specified by overriding the virtual {_implementation} function. Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a different contract through the {_delegate} function. The success and return data of the delegated call will be returned back to the caller of the proxy.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/Proxy.sol\":\"Proxy\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0x80935e4fae2c414f4e7789e13a820d06901182a5733ab006f8d68b5b09db993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://752d991d6ca1087587b48103bc623f74888054f58581ff29166d90889c4765c5\",\"dweb:/ipfs/QmRBsa6K2ChKxVWYY54YiyYhDBPbmY5HyKCtij5LoWh56o\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/proxy/beacon/IBeacon.sol":{"IBeacon":{"abi":[{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"implementation()":"5c60da1b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"implementation\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"This is the interface that {BeaconProxy} expects of its beacon.\",\"kind\":\"dev\",\"methods\":{\"implementation()\":{\"details\":\"Must return an address that can be used as a delegate call target. {UpgradeableBeacon} will check that this address is a contract.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":\"IBeacon\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/proxy/utils/Initializable.sol":{"Initializable":{"abi":[{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"devdoc\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor constructor() {     _disableInitializers(); } ``` ====\",\"details\":\"This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. The initialization functions use a version number. Once a version number is used, it is consumed and cannot be reused. This mechanism prevents re-execution of each \\\"step\\\" but allows the creation of new initialization steps in case an upgrade adds a module that needs to be initialized. For example: [.hljs-theme-light.nopadding] ```solidity contract MyToken is ERC20Upgradeable {     function initialize() initializer public {         __ERC20_init(\\\"MyToken\\\", \\\"MTK\\\");     } } contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {     function initializeV2() reinitializer(2) public {         __ERC20Permit_init(\\\"MyToken\\\");     } } ``` TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. [CAUTION] ==== Avoid leaving a contract uninitialized. An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: [.hljs-theme-light.nopadding] ```\",\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":\"Initializable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol":{"UUPSUpgradeable":{"abi":[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","proxiableUUID()":"52d1902d","upgradeToAndCall(address,bytes)":"4f1ef286"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"custom:stateless\":\"\",\"details\":\"An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy. A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing `UUPSUpgradeable` with a custom implementation of upgrades. The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"events\":{\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"}},\"stateVariables\":{\"UPGRADE_INTERFACE_VERSION\":{\"details\":\"The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)` and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called, while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string. If the getter returns `\\\"5.0.0\\\"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must be the empty byte string if no function should be called, making it impossible to invoke the `receive` function during an upgrade.\"},\"__self\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":\"UUPSUpgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@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.30+commit.73712a01\"},\"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\":\"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\":\"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\":\"Returns the value of tokens owned by `account`.\"},\"constructor\":{\"details\":\"Sets the values for {name} and {symbol}. Both 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\":\"Returns the value of tokens in existence.\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x669464167428061ee0f8618b73b3ee90aff8405683e7ddde8cd77dadaa1afe29\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0dda78587a7358b4fdf6b9fca0fde5a5e34930f36d5268a16028627fc0170195\",\"dweb:/ipfs/QmQ1b6cCceDRWNxti9HifsTCzmVP25Haxs1bWugm52vTqH\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":7407,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":7413,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":7415,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":7417,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":7419,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@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.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol":{"ERC20Permit":{"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"},{"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":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","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":"string","name":"str","type":"string"}],"name":"StringTooLong","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":[],"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":"DOMAIN_SEPARATOR","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[],"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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","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":{"DOMAIN_SEPARATOR()":"3644e515","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","eip712Domain()":"84b0196e","name()":"06fdde03","nonces(address)":"7ecebe00","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\"},{\"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\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"ERC2612ExpiredSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC2612InvalidSigner\",\"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\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"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\":[],\"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\":\"DOMAIN_SEPARATOR\",\"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\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"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\":[],\"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\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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 ERC-20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[ERC-2612]. Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't need to send a transaction, and thus is not required to hold Ether at all.\",\"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.\"}],\"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.\"}}],\"ERC2612ExpiredSignature(uint256)\":[{\"details\":\"Permit deadline has expired.\"}],\"ERC2612InvalidSigner(address,address)\":[{\"details\":\"Mismatched signature.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}]},\"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.\"},\"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\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"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\":\"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\":\"Returns the value of tokens owned by `account`.\"},\"constructor\":{\"details\":\"Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\\\"1\\\"`. It's a good idea to use the same `name` that is defined as the ERC-20 token name.\"},\"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}.\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"nonces(address)\":{\"details\":\"Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also applies here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section]. CAUTION: See Security Considerations above.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"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/ERC20Permit.sol\":\"ERC20Permit\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0xfb223a85dd0b2175cfbbaa325a744e2cd74ecd17c3df2b77b0722f991d2725ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://84bf1dea0589ec49c8d15d559cc6d86ee493048a89b2d4adb60fbe705a3d89ae\",\"dweb:/ipfs/Qmd56n556d529wk2pRMhYhm5nhMDhviwereodDikjs68w1\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x669464167428061ee0f8618b73b3ee90aff8405683e7ddde8cd77dadaa1afe29\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0dda78587a7358b4fdf6b9fca0fde5a5e34930f36d5268a16028627fc0170195\",\"dweb:/ipfs/QmQ1b6cCceDRWNxti9HifsTCzmVP25Haxs1bWugm52vTqH\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol\":{\"keccak256\":\"0x73d9dc25e0edb50767d29665bea0092e29b68776feb39c3f48781e4bab7cdda5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://242e910e44f0569e2cd8f5282556c790f15b2b3e4112290346d72cfbb9fb5e78\",\"dweb:/ipfs/QmYejCe3DRxzXaxcZaW1JNbFDJyhHnYhPSLaVxjE3jBLSC\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x53befc41288eaa87edcd3a7be7e8475a32e44c6a29f9bf52fae789781301d9ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a1d7fab53c4ceaf42391b83d9b36d7e9cc524a8da125cffdcd32c56560f9d1c9\",\"dweb:/ipfs/QmaRZdVhQdqNXofeimibkBG65q9GVcXVZEGpycwwX3znC6\"]},\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@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\":\"0x0768b3bdb701fe4994b3be932ca8635551dfebe04c645f77500322741bebf57c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a2059f9ca8d3c11c49ca49fc9c5fb070f18cc85d12a7688e45322ed0e2a1cb99\",\"dweb:/ipfs/QmS2gwX51RAvSw4tYbjHccY2CKbh2uvDzqHLAFXdsddgia\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x360cf86214a764694dae1522a38200b1737fe90e46dcf56a0f89de143071cc20\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e393290a46ca6d1fa1addb40709d26e1d250638ab6acdd103b5af21768ebc7b\",\"dweb:/ipfs/QmPwT3tXwQ9NbGtZ99XRq7sr8LCQP8XaCrzw49JdXGn7us\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x8440117ea216b97a7bad690a67449fd372c840d073c8375822667e14702782b4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ebb6645995b8290d0b9121825e2533e4e28977b2c6befee76e15e58f0feb61d4\",\"dweb:/ipfs/QmVR72j6kL5R2txuihieDev1FeTi4KWJS1Z6ABbwL3Qtph\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x6abeed5940e1da7bb329e458db9a1c5c4ea6f86d651b952af99c6bddcd6bbb94\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fe75e9a6b759c5d7fd82fb59bd4f58c672b36f0a69b84f4789b7c7895d3e61c\",\"dweb:/ipfs/QmX28wsir8w5sS3acfJMNHcBwoPsDpqCu7WDkPnUWLMNiZ\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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}","storageLayout":{"storage":[{"astId":7407,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol:ERC20Permit","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":7413,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol:ERC20Permit","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":7415,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol:ERC20Permit","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":7417,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol:ERC20Permit","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":7419,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol:ERC20Permit","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"},{"astId":13734,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol:ERC20Permit","label":"_nameFallback","offset":0,"slot":"5","type":"t_string_storage"},{"astId":13736,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol:ERC20Permit","label":"_versionFallback","offset":0,"slot":"6","type":"t_string_storage"},{"astId":11311,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol:ERC20Permit","label":"_nonces","offset":0,"slot":"7","type":"t_mapping(t_address,t_uint256)"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol":{"ERC4626":{"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"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxMint","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxRedeem","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxWithdraw","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","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":[],"name":"asset","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","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"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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","asset()":"38d52e0f","balanceOf(address)":"70a08231","convertToAssets(uint256)":"07a2d13a","convertToShares(uint256)":"c6e6f592","decimals()":"313ce567","deposit(uint256,address)":"6e553f65","maxDeposit(address)":"402d267d","maxMint(address)":"c63d75b6","maxRedeem(address)":"d905777e","maxWithdraw(address)":"ce96cb77","mint(uint256,address)":"94bf804d","name()":"06fdde03","previewDeposit(uint256)":"ef8b30f7","previewMint(uint256)":"b3d7f6b9","previewRedeem(uint256)":"4cdad506","previewWithdraw(uint256)":"0a28a477","redeem(uint256,address,address)":"ba087652","symbol()":"95d89b41","totalAssets()":"01e1d114","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","withdraw(uint256,address,address)":"b460af94"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxMint\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxRedeem\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxWithdraw\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"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\":[],\"name\":\"asset\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"convertToAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"convertToShares\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"redeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalAssets\",\"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\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the ERC-4626 \\\"Tokenized Vault Standard\\\" as defined in https://eips.ethereum.org/EIPS/eip-4626[ERC-4626]. This extension allows the minting and burning of \\\"shares\\\" (represented using the ERC-20 inheritance) in exchange for underlying \\\"assets\\\" through standardized {deposit}, {mint}, {redeem} and {burn} workflows. This contract extends the ERC-20 standard. Any additional extensions included along it would affect the \\\"shares\\\" token represented by this contract and not the \\\"assets\\\" token which is an independent contract. [CAUTION] ==== In empty (or nearly empty) ERC-4626 vaults, deposits are at high risk of being stolen through frontrunning with a \\\"donation\\\" to the vault that inflates the price of a share. This is variously known as a donation or inflation attack and is essentially a problem of slippage. Vault deployers can protect against this attack by making an initial deposit of a non-trivial amount of the asset, such that price manipulation becomes infeasible. Withdrawals may similarly be affected by slippage. Users can protect against this attack as well as unexpected slippage in general by verifying the amount received is as expected, using a wrapper that performs these checks such as https://github.com/fei-protocol/ERC4626#erc4626router-and-base[ERC4626Router]. Since v4.9, this implementation introduces configurable virtual assets and shares to help developers mitigate that risk. The `_decimalsOffset()` corresponds to an offset in the decimal representation between the underlying asset's decimals and the vault decimals. This offset also determines the rate of virtual shares to virtual assets in the vault, which itself determines the initial exchange rate. While not fully preventing the attack, analysis shows that the default offset (0) makes it non-profitable even if an attacker is able to capture value from multiple user deposits, as a result of the value being captured by the virtual shares (out of the attacker's donation) matching the attacker's expected gains. With a larger offset, the attack becomes orders of magnitude more expensive than it is profitable. More details about the underlying math can be found xref:ROOT:erc4626.adoc#inflation-attack[here]. The drawback of this approach is that the virtual shares do capture (a very small) part of the value being accrued to the vault. Also, if the vault experiences losses, the users try to exit the vault, the virtual shares and assets will cause the first user to exit to experience reduced losses in detriment to the last users that will experience bigger losses. Developers willing to revert back to the pre-v4.9 behavior just need to override the `_convertToShares` and `_convertToAssets` functions. To learn more, check out our xref:ROOT:erc4626.adoc[ERC-4626 guide]. ==== [NOTE] ==== When overriding this contract, some elements must be considered: * When overriding the behavior of the deposit or withdraw mechanisms, it is recommended to override the internal functions. Overriding {_deposit} automatically affects both {deposit} and {mint}. Similarly, overriding {_withdraw} automatically affects both {withdraw} and {redeem}. Overall it is not recommended to override the public facing functions since that could lead to inconsistent behaviors between the {deposit} and {mint} or between {withdraw} and {redeem}, which is documented to have lead to loss of funds. * Overrides to the deposit or withdraw mechanism must be reflected in the preview functions as well. * {maxWithdraw} depends on {maxRedeem}. Therefore, overriding {maxRedeem} only is enough. On the other hand, overriding {maxWithdraw} only would have no effect on {maxRedeem}, and could create an inconsistency between the two functions. * If {previewRedeem} is overridden to revert, {maxWithdraw} must be overridden as necessary to ensure it always return successfully. ====\",\"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.\"}}],\"ERC4626ExceededMaxDeposit(address,uint256,uint256)\":[{\"details\":\"Attempted to deposit more assets than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxMint(address,uint256,uint256)\":[{\"details\":\"Attempted to mint more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxRedeem(address,uint256,uint256)\":[{\"details\":\"Attempted to redeem more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxWithdraw(address,uint256,uint256)\":[{\"details\":\"Attempted to withdraw more assets than the max amount for `receiver`.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}]},\"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\":\"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.\"},\"asset()\":{\"details\":\"Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing. - MUST be an ERC-20 token contract. - MUST NOT revert.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"constructor\":{\"details\":\"Set the underlying asset contract. This must be an ERC20-compatible contract (ERC-20 or ERC-777).\"},\"convertToAssets(uint256)\":{\"details\":\"Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"convertToShares(uint256)\":{\"details\":\"Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"decimals()\":{\"details\":\"Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This \\\"original\\\" value is cached during construction of the vault contract. If this read operation fails (e.g., the asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals. See {IERC20Metadata-decimals}.\"},\"deposit(uint256,address)\":{\"details\":\"Deposit `assets` underlying tokens and send the corresponding number of vault shares (`shares`) to `receiver`. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   deposit execution, and are accounted for during deposit. - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"maxDeposit(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver, through a deposit call. - MUST return a limited value if receiver is subject to some deposit limit. - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited. - MUST NOT revert.\"},\"maxMint(address)\":{\"details\":\"Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call. - MUST return a limited value if receiver is subject to some mint limit. - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted. - MUST NOT revert.\"},\"maxRedeem(address)\":{\"details\":\"Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault, through a redeem call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock. - MUST NOT revert.\"},\"maxWithdraw(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the Vault, through a withdraw call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST NOT revert.\"},\"mint(uint256,address)\":{\"details\":\"Mints exactly `shares` vault shares to `receiver` in exchange for `assets` underlying tokens. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint   execution, and are accounted for during mint. - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"previewDeposit(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit   call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called   in the same transaction. - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the   deposit would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"previewMint(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call   in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the   same transaction. - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint   would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by minting.\"},\"previewRedeem(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their redemption at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call   in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the   same transaction. - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the   redemption would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by redeeming.\"},\"previewWithdraw(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw   call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if   called   in the same transaction. - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though   the withdrawal would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"redeem(uint256,address,address)\":{\"details\":\"Burns exactly shares from owner and sends assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   redeem execution, and are accounted for during redeem. - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalAssets()\":{\"details\":\"Returns the total amount of the underlying asset that is \\u201cmanaged\\u201d by Vault. - SHOULD include any compounding that occurs from yield. - MUST be inclusive of any fees that are charged against assets in the Vault. - MUST NOT revert.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"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`.\"},\"withdraw(uint256,address,address)\":{\"details\":\"Burns shares from owner and sends exactly assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   withdraw execution, and are accounted for during withdraw. - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol\":\"ERC4626\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x669464167428061ee0f8618b73b3ee90aff8405683e7ddde8cd77dadaa1afe29\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0dda78587a7358b4fdf6b9fca0fde5a5e34930f36d5268a16028627fc0170195\",\"dweb:/ipfs/QmQ1b6cCceDRWNxti9HifsTCzmVP25Haxs1bWugm52vTqH\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol\":{\"keccak256\":\"0x8a6a0045f0bb52251a9a5d8bb5f4156f4eb3ba8521b1fca6a304befaab3e7d23\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ebd5125436dbb18ba3646cbdb4a8385a9e2bf28abc9d8178a9e7f31cca65f8b8\",\"dweb:/ipfs/QmPioMpycRKdAetJNYYfWCw36rQuyxNqhgHDFGRVLaPKnT\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Memory.sol\":{\"keccak256\":\"0x35feec480590c0ed9c1623df077ba9af406ad57cd9d149ff278c7316d6fe8fe0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://839967d079db4cd624c3f735a6e911953c0e2347418c016f6a0cc18ed1aa9603\",\"dweb:/ipfs/QmaWxNL8Ymkwerfvq1LNzpbq2PMzTGsnXzqsYExNyvKWka\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":7407,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol:ERC4626","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":7413,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol:ERC4626","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":7415,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol:ERC4626","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":7417,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol:ERC4626","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":7419,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol:ERC4626","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@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.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol":{"IERC20Permit":{"abi":[{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"DOMAIN_SEPARATOR()":"3644e515","nonces(address)":"7ecebe00","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"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\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[ERC-2612]. Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't need to send a transaction, and thus is not required to hold Ether at all. ==== Security Considerations There are two important considerations concerning the use of `permit`. The first is that a valid permit signature expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be considered as an intention to spend the allowance in any specific way. The second is that because permits have built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be generally recommended is: ```solidity function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}     doThing(..., value); } function doThing(..., uint256 value) public {     token.safeTransferFrom(msg.sender, address(this), value);     ... } ``` Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also {SafeERC20-safeTransferFrom}). Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so contracts should have entry points that don't rely on permit.\",\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"nonces(address)\":{\"details\":\"Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also applies here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section]. CAUTION: See Security Considerations above.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":\"IERC20Permit\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x53befc41288eaa87edcd3a7be7e8475a32e44c6a29f9bf52fae789781301d9ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a1d7fab53c4ceaf42391b83d9b36d7e9cc524a8da125cffdcd32c56560f9d1c9\",\"dweb:/ipfs/QmaRZdVhQdqNXofeimibkBG65q9GVcXVZEGpycwwX3znC6\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol":{"SafeERC20":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"SafeERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e99680b39fae04dde6f92a5e69ffb12d93cbdb1c92a80af8b102e502387f140364736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE9 SWAP7 DUP1 0xB3 SWAP16 0xAE DIV 0xDD DUPN 0xF9 0x2A MCOPY PUSH10 0xFFB12D93CBDB1C92A80A EXTCALL 0xB1 MUL JUMPF 0x238 PUSH32 0x140364736F6C634300081E003300000000000000000000000000000000000000 ","sourceMap":"698:12615:40:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;698:12615:40;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e99680b39fae04dde6f92a5e69ffb12d93cbdb1c92a80af8b102e502387f140364736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE9 SWAP7 DUP1 0xB3 SWAP16 0xAE DIV 0xDD DUPN 0xF9 0x2A MCOPY PUSH10 0xFFB12D93CBDB1C92A80A EXTCALL 0xB1 MUL JUMPF 0x238 PUSH32 0x140364736F6C634300081E003300000000000000000000000000000000000000 ","sourceMap":"698:12615:40:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentAllowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"requestedDecrease\",\"type\":\"uint256\"}],\"name\":\"SafeERC20FailedDecreaseAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Wrappers around ERC-20 operations that throw on failure (when the token contract returns false). Tokens that return no value (and instead revert or throw on failure) are also supported, non-reverting calls are assumed to be successful. To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\",\"errors\":{\"SafeERC20FailedDecreaseAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failed `decreaseAllowance` request.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}]},\"kind\":\"dev\",\"methods\":{},\"title\":\"SafeERC20\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":\"SafeERC20\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC721/IERC721.sol":{"IERC721":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"operator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","getApproved(uint256)":"081812fc","isApprovedForAll(address,address)":"e985e9c5","ownerOf(uint256)":"6352211e","safeTransferFrom(address,address,uint256)":"42842e0e","safeTransferFrom(address,address,uint256,bytes)":"b88d4fde","setApprovalForAll(address,bool)":"a22cb465","supportsInterface(bytes4)":"01ffc9a7","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"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\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Required interface of an ERC-721 compliant contract.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when `owner` enables `approved` to manage the `tokenId` token.\"},\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"}},\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC-721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must have been allowed to move this token by either {approve} or   {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the address zero. Emits an {ApprovalForAll} event.\"},\"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.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721 or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must understand this adds an external call which potentially creates a reentrancy vulnerability. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":\"IERC721\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xf78f05f3b8c9f75570e85300d7b4600d7f6f6a198449273f31d44c1641adb46f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e28b872613b45e0e801d4995aa4380be2531147bfe2d85c1d6275f1de514fba3\",\"dweb:/ipfs/QmeeFcfShHYaS3BdgVj78nxR28ZaVUwbvr66ud8bT6kzw9\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@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.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0x88cd5e3bee2e8c36b8d9058fbcaa81ad5704281b25634122234b55ea853d8055\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8dc7e7ab5b8ea36c15027ab04221b05d1c970f47a53e9fd47ead8ca665d49c7e\",\"dweb:/ipfs/Qmeeph7fsDyfRr8vb2L8KcDEmKPb224TAayMvgqgGAnqpL\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol":{"IERC721Metadata":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"operator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","getApproved(uint256)":"081812fc","isApprovedForAll(address,address)":"e985e9c5","name()":"06fdde03","ownerOf(uint256)":"6352211e","safeTransferFrom(address,address,uint256)":"42842e0e","safeTransferFrom(address,address,uint256,bytes)":"b88d4fde","setApprovalForAll(address,bool)":"a22cb465","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","tokenURI(uint256)":"c87b56dd","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"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\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"See https://eips.ethereum.org/EIPS/eip-721\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when `owner` enables `approved` to manage the `tokenId` token.\"},\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"}},\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"name()\":{\"details\":\"Returns the token collection name.\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC-721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must have been allowed to move this token by either {approve} or   {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the address zero. Emits an {ApprovalForAll} event.\"},\"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.\"},\"symbol()\":{\"details\":\"Returns the token collection symbol.\"},\"tokenURI(uint256)\":{\"details\":\"Returns the Uniform Resource Identifier (URI) for `tokenId` token.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721 or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must understand this adds an external call which potentially creates a reentrancy vulnerability. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"title\":\"ERC-721 Non-Fungible Token Standard, optional metadata extension\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":\"IERC721Metadata\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xf78f05f3b8c9f75570e85300d7b4600d7f6f6a198449273f31d44c1641adb46f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e28b872613b45e0e801d4995aa4380be2531147bfe2d85c1d6275f1de514fba3\",\"dweb:/ipfs/QmeeFcfShHYaS3BdgVj78nxR28ZaVUwbvr66ud8bT6kzw9\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0xf46268c37522320bb2119a5a394bc5c739a95c0c574c8d08e8c643f4d06e5c76\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://517e4b295f35b9947c72ad7379a6089439ece7bb6f4a2ea0a159da13046c039e\",\"dweb:/ipfs/QmZXzkSfLUbvujig3zVbpDHykpHhqLpvQtdiN3B5j4TA3u\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol":{"ERC721Utils":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220538e2fa0a615d30251d081871d0f2a1e2f7b01daa47b1a2fd42078eb861feb4f64736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MSTORE8 DUP15 0x2F LOG0 0xA6 ISZERO 0xD3 MUL MLOAD 0xD0 DUP2 DUP8 SAR 0xF 0x2A 0x1E 0x2F PUSH28 0x1DAA47B1A2FD42078EB861FEB4F64736F6C634300081E0033000000 ","sourceMap":"432:1490:44:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;432:1490:44;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220538e2fa0a615d30251d081871d0f2a1e2f7b01daa47b1a2fd42078eb861feb4f64736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MSTORE8 DUP15 0x2F LOG0 0xA6 ISZERO 0xD3 MUL MLOAD 0xD0 DUP2 DUP8 SAR 0xF 0x2A 0x1E 0x2F PUSH28 0x1DAA47B1A2FD42078EB861FEB4F64736F6C634300081E0033000000 ","sourceMap":"432:1490:44:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Library that provides common ERC-721 utility functions. See https://eips.ethereum.org/EIPS/eip-721[ERC-721]. _Available since v5.1._\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol\":\"ERC721Utils\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0x88cd5e3bee2e8c36b8d9058fbcaa81ad5704281b25634122234b55ea853d8055\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8dc7e7ab5b8ea36c15027ab04221b05d1c970f47a53e9fd47ead8ca665d49c7e\",\"dweb:/ipfs/Qmeeph7fsDyfRr8vb2L8KcDEmKPb224TAayMvgqgGAnqpL\"]},\"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol\":{\"keccak256\":\"0xc7efbc23214ad7dced8bf2249460f4bda114d57f6a0079f84040654280f455bd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1f5bd44efca8c8c0d74439e7b808d1f9c4af1df78f91fef8e8bbca8104645435\",\"dweb:/ipfs/Qmb42XSd8MKsEitp42sZkSFGqDRigk6QgGXtiJyJqUZJJ6\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Address.sol":{"Address":{"abi":[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e655924432b9f921c67aeb5e2b82e42dfea967d21b6cb314bbeb99c9b7b8c9c364736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUPN 0x55 SWAP3 PREVRANDAO ORIGIN 0xB9 EXTDELEGATECALL 0x21 0xC6 PUSH27 0xEB5E2B82E42DFEA967D21B6CB314BBEB99C9B7B8C9C364736F6C63 NUMBER STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"282:6520:45:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;282:6520:45;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e655924432b9f921c67aeb5e2b82e42dfea967d21b6cb314bbeb99c9b7b8c9c364736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUPN 0x55 SWAP3 PREVRANDAO ORIGIN 0xB9 EXTDELEGATECALL 0x21 0xC6 PUSH27 0xEB5E2B82E42DFEA967D21B6CB314BBEB99C9B7B8C9C364736F6C63 NUMBER STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"282:6520:45:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Bytes.sol":{"Bytes":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e01aaf043d4a64b0cd5e7fb3d679755fbf037c2aaaf4a7ef69986c1f3aa2095364736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 RJUMP 0x1AAF DIV RETURNDATASIZE BLOBBASEFEE PUSH5 0xB0CD5E7FB3 0xD6 PUSH26 0x755FBF037C2AAAF4A7EF69986C1F3AA2095364736F6C63430008 0x1E STOP CALLER ","sourceMap":"198:11145:46:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;198:11145:46;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e01aaf043d4a64b0cd5e7fb3d679755fbf037c2aaaf4a7ef69986c1f3aa2095364736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 RJUMP 0x1AAF DIV RETURNDATASIZE BLOBBASEFEE PUSH5 0xB0CD5E7FB3 0xD6 PUSH26 0x755FBF037C2AAAF4A7EF69986C1F3AA2095364736F6C63430008 0x1E STOP CALLER ","sourceMap":"198:11145:46:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Bytes operations.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Bytes.sol\":\"Bytes\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@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.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212201e832bc7389b9b61623663bf55ec6dfd56cbf5e8534cdc6bec8916c83a4e082d64736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x1E DUP4 0x2B 0xC7 CODESIZE SWAP12 SWAP12 PUSH2 0x6236 PUSH4 0xBF55EC6D REVERT JUMP 0xCB CREATE2 0xE8 MSTORE8 0x4C 0xDC PUSH12 0xEC8916C83A4E082D64736F6C PUSH4 0x4300081E STOP CALLER ","sourceMap":"411:484:48:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;411:484:48;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212201e832bc7389b9b61623663bf55ec6dfd56cbf5e8534cdc6bec8916c83a4e082d64736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x1E DUP4 0x2B 0xC7 CODESIZE SWAP12 SWAP12 PUSH2 0x6236 PUSH4 0xBF55EC6D REVERT JUMP 0xCB CREATE2 0xE8 MSTORE8 0x4C 0xDC PUSH12 0xEC8916C83A4E082D64736F6C PUSH4 0x4300081E STOP CALLER ","sourceMap":"411:484:48:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/LowLevelCall.sol":{"LowLevelCall":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212208ed074db20ff99bdc7bf3b87f9f0e089be8ae4f28acd31da148f2e1d8c090d0f64736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP15 0xD0 PUSH21 0xDB20FF99BDC7BF3B87F9F0E089BE8AE4F28ACD31DA EQ DUP16 0x2E SAR DUP13 MULMOD 0xD 0xF PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"421:5083:49:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;421:5083:49;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212208ed074db20ff99bdc7bf3b87f9f0e089be8ae4f28acd31da148f2e1d8c090d0f64736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP15 0xD0 PUSH21 0xDB20FF99BDC7BF3B87F9F0E089BE8AE4F28ACD31DA EQ DUP16 0x2E SAR DUP13 MULMOD 0xD 0xF PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"421:5083:49:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Library of low level call functions that implement different calling strategies to deal with the return data. WARNING: Using this library requires an advanced understanding of Solidity and how the EVM works. It is recommended to use the {Address} library instead.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/LowLevelCall.sol\":\"LowLevelCall\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Memory.sol":{"Memory":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212206cc09b2f6dca6b44547511bc21f983d38eb6384904d58edb0222bb14f9fd14e564736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH13 0xC09B2F6DCA6B44547511BC21F9 DUP4 0xD3 DUP15 0xB6 CODESIZE BLOBHASH DIV 0xD5 DUP15 0xDB MUL 0x22 0xBB EQ EXTDELEGATECALL REVERT EQ JUMPF 0x6473 PUSH16 0x6C634300081E00330000000000000000 ","sourceMap":"780:4634:50:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;780:4634:50;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212206cc09b2f6dca6b44547511bc21f983d38eb6384904d58edb0222bb14f9fd14e564736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH13 0xC09B2F6DCA6B44547511BC21F9 DUP4 0xD3 DUP15 0xB6 CODESIZE BLOBHASH DIV 0xD5 DUP15 0xDB MUL 0x22 0xBB EQ EXTDELEGATECALL REVERT EQ JUMPF 0x6473 PUSH16 0x6C634300081E00330000000000000000 ","sourceMap":"780:4634:50:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Utilities to manipulate memory. Memory is a contiguous and dynamic byte array in which Solidity stores non-primitive types. This library provides functions to manipulate pointers to this dynamic array and work with slices of it. Slices provide a view into a portion of memory without copying data, enabling efficient substring operations. WARNING: When manipulating memory pointers or slices, make sure to follow the Solidity documentation guidelines for https://docs.soliditylang.org/en/v0.8.20/assembly.html#memory-safety[Memory Safety].\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Memory.sol\":\"Memory\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Memory.sol\":{\"keccak256\":\"0x35feec480590c0ed9c1623df077ba9af406ad57cd9d149ff278c7316d6fe8fe0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://839967d079db4cd624c3f735a6e911953c0e2347418c016f6a0cc18ed1aa9603\",\"dweb:/ipfs/QmaWxNL8Ymkwerfvq1LNzpbq2PMzTGsnXzqsYExNyvKWka\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Multicall.sol":{"Multicall":{"abi":[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"multicall(bytes[])":"ac9650d8"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"multicall\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"results\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Provides a function to batch together multiple calls in a single external call. Consider any assumption about calldata validation performed by the sender may be violated if it's not especially careful about sending transactions invoking {multicall}. For example, a relay address that filters function selectors won't filter calls nested within a {multicall} operation. NOTE: Since 5.0.1 and 4.9.4, this contract identifies non-canonical contexts (i.e. `msg.sender` is not {Context-_msgSender}). If a non-canonical context is identified, the following self `delegatecall` appends the last bytes of `msg.data` to the subcall. This makes it safe to use with {ERC2771Context}. Contexts that don't affect the resolution of {Context-_msgSender} are not propagated to subcalls.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}]},\"kind\":\"dev\",\"methods\":{\"multicall(bytes[])\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Receives and executes a batch of function calls on this contract.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Multicall.sol\":\"Multicall\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@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/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Multicall.sol\":{\"keccak256\":\"0x72a5499dfae7676e4298a7299bccd3b27438ba1a4c72df5cd69c1c343c7ea20d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://de0fb51ccae3a0ff377ed185d187440fc612a71bf8e42fdb0e032ce747fa3eef\",\"dweb:/ipfs/QmPNBaiVsAiUhz8qfXcSy27S7CqBbtSd8rPqmaykKBhw7Q\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@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.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":11311,"contract":"@openzeppelin/contracts/utils/Nonces.sol:Nonces","label":"_nonces","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@openzeppelin/contracts/utils/Panic.sol":{"Panic":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122061b36661da90b87345825985ba821999b58f7def490800742b0e993e53299a3064736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH2 0xB366 PUSH2 0xDA90 0xB8 PUSH20 0x45825985BA821999B58F7DEF490800742B0E993E MSTORE8 0x29 SWAP11 ADDRESS PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"657:1315:53:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;657:1315:53;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122061b36661da90b87345825985ba821999b58f7def490800742b0e993e53299a3064736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH2 0xB366 PUSH2 0xDA90 0xB8 PUSH20 0x45825985BA821999B58F7DEF490800742B0E993E MSTORE8 0x29 SWAP11 ADDRESS PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"657:1315:53:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e6799491c23c9747faee3fa50dfdbab15991e9cbc2a491b0be8dca15c09740ce64736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUPN 0x79 SWAP5 SWAP2 0xC2 EXTCODECOPY SWAP8 SELFBALANCE STATICCALL RETURNCONTRACT 0x3F 0xA5 0xD REVERT 0xBA 0xB1 MSIZE SWAP2 0xE9 0xCB 0xC2 LOG4 SWAP2 0xB0 0xBE DUP14 0xCA ISZERO 0xC0 SWAP8 BLOCKHASH 0xCE PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"1255:3054:54:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;1255:3054:54;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e6799491c23c9747faee3fa50dfdbab15991e9cbc2a491b0be8dca15c09740ce64736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUPN 0x79 SWAP5 SWAP2 0xC2 EXTCODECOPY SWAP8 SELFBALANCE STATICCALL RETURNCONTRACT 0x3F 0xA5 0xD REVERT 0xBA 0xB1 MSIZE SWAP2 0xE9 0xCB 0xC2 LOG4 SWAP2 0xB0 0xBE DUP14 0xCA ISZERO 0xC0 SWAP8 BLOCKHASH 0xCE PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"1255:3054:54:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x0768b3bdb701fe4994b3be932ca8635551dfebe04c645f77500322741bebf57c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a2059f9ca8d3c11c49ca49fc9c5fb070f18cc85d12a7688e45322ed0e2a1cb99\",\"dweb:/ipfs/QmS2gwX51RAvSw4tYbjHccY2CKbh2uvDzqHLAFXdsddgia\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/StorageSlot.sol":{"StorageSlot":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220c5b25bc7e25b3a72f2d49562c0f1867acb24cd8f54fcb3e7733989e54e66433764736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC5 0xB2 JUMPDEST 0xC7 0xE2 JUMPDEST GASPRICE PUSH19 0xF2D49562C0F1867ACB24CD8F54FCB3E7733989 JUMPF 0x4E66 NUMBER CALLDATACOPY PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"1407:2774:55:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;1407:2774:55;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220c5b25bc7e25b3a72f2d49562c0f1867acb24cd8f54fcb3e7733989e54e66433764736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC5 0xB2 JUMPDEST 0xC7 0xE2 JUMPDEST GASPRICE PUSH19 0xF2D49562C0F1867ACB24CD8F54FCB3E7733989 JUMPF 0x4E66 NUMBER CALLDATACOPY PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"1407:2774:55:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122061fb076a48f7992d713c92d2a1ced0d01eb2457df4f58ea23a910bdd396cf72964736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH2 0xFB07 PUSH11 0x48F7992D713C92D2A1CED0 0xD0 0x1E 0xB2 GASLIMIT PUSH30 0xF4F58EA23A910BDD396CF72964736F6C634300081E003300000000000000 ","sourceMap":"332:19550:56:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;332:19550:56;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122061fb076a48f7992d713c92d2a1ced0d01eb2457df4f58ea23a910bdd396cf72964736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH2 0xFB07 PUSH11 0x48F7992D713C92D2A1CED0 0xD0 0x1E 0xB2 GASLIMIT PUSH30 0xF4F58EA23A910BDD396CF72964736F6C634300081E003300000000000000 ","sourceMap":"332:19550:56:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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}","storageLayout":{"storage":[],"types":null}}},"@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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212202397628b3650b08ace0abb3ddab2b2fc3f82594b7e30809f076df9d8f2de3fc764736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x23 SWAP8 PUSH3 0x8B3650 0xB0 DUP11 0xCE EXP 0xBB RETURNDATASIZE 0xDA 0xB2 0xB2 0xFC EXTCODEHASH DUP3 MSIZE 0x4B PUSH31 0x30809F076DF9D8F2DE3FC764736F6C634300081E0033000000000000000000 ","sourceMap":"344:11820:57:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;344:11820:57;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212202397628b3650b08ace0abb3ddab2b2fc3f82594b7e30809f076df9d8f2de3fc764736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x23 SWAP8 PUSH3 0x8B3650 0xB0 DUP11 0xCE EXP 0xBB RETURNDATASIZE 0xDA 0xB2 0xB2 0xFC EXTCODEHASH DUP3 MSIZE 0x4B PUSH31 0x30809F076DF9D8F2DE3FC764736F6C634300081E0033000000000000000000 ","sourceMap":"344:11820:57:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x360cf86214a764694dae1522a38200b1737fe90e46dcf56a0f89de143071cc20\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e393290a46ca6d1fa1addb40709d26e1d250638ab6acdd103b5af21768ebc7b\",\"dweb:/ipfs/QmPwT3tXwQ9NbGtZ99XRq7sr8LCQP8XaCrzw49JdXGn7us\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@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.30+commit.73712a01\"},\"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\":\"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/utils/cryptography/EIP712.sol\":\"EIP712\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0xfb223a85dd0b2175cfbbaa325a744e2cd74ecd17c3df2b77b0722f991d2725ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://84bf1dea0589ec49c8d15d559cc6d86ee493048a89b2d4adb60fbe705a3d89ae\",\"dweb:/ipfs/Qmd56n556d529wk2pRMhYhm5nhMDhviwereodDikjs68w1\"]},\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x0768b3bdb701fe4994b3be932ca8635551dfebe04c645f77500322741bebf57c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a2059f9ca8d3c11c49ca49fc9c5fb070f18cc85d12a7688e45322ed0e2a1cb99\",\"dweb:/ipfs/QmS2gwX51RAvSw4tYbjHccY2CKbh2uvDzqHLAFXdsddgia\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x8440117ea216b97a7bad690a67449fd372c840d073c8375822667e14702782b4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ebb6645995b8290d0b9121825e2533e4e28977b2c6befee76e15e58f0feb61d4\",\"dweb:/ipfs/QmVR72j6kL5R2txuihieDev1FeTi4KWJS1Z6ABbwL3Qtph\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x6abeed5940e1da7bb329e458db9a1c5c4ea6f86d651b952af99c6bddcd6bbb94\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fe75e9a6b759c5d7fd82fb59bd4f58c672b36f0a69b84f4789b7c7895d3e61c\",\"dweb:/ipfs/QmX28wsir8w5sS3acfJMNHcBwoPsDpqCu7WDkPnUWLMNiZ\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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}","storageLayout":{"storage":[{"astId":13734,"contract":"@openzeppelin/contracts/utils/cryptography/EIP712.sol:EIP712","label":"_nameFallback","offset":0,"slot":"0","type":"t_string_storage"},{"astId":13736,"contract":"@openzeppelin/contracts/utils/cryptography/EIP712.sol:EIP712","label":"_versionFallback","offset":0,"slot":"1","type":"t_string_storage"}],"types":{"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"}}}}},"@openzeppelin/contracts/utils/cryptography/Hashes.sol":{"Hashes":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122017ca67139330a008d50bd086b01f0cac66bacbb843fc40b6072091ab3efa731a64736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 OR 0xCA PUSH8 0x139330A008D50BD0 DUP7 0xB0 0x1F 0xC 0xAC PUSH7 0xBACBB843FC40B6 SMOD KECCAK256 SWAP2 0xAB RETURNDATACOPY STATICCALL PUSH20 0x1A64736F6C634300081E00330000000000000000 ","sourceMap":"221:811:59:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;221:811:59;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122017ca67139330a008d50bd086b01f0cac66bacbb843fc40b6072091ab3efa731a64736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 OR 0xCA PUSH8 0x139330A008D50BD0 DUP7 0xB0 0x1F 0xC 0xAC PUSH7 0xBACBB843FC40B6 SMOD KECCAK256 SWAP2 0xAB RETURNDATACOPY STATICCALL PUSH20 0x1A64736F6C634300081E00330000000000000000 ","sourceMap":"221:811:59:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Library of standard hash functions. _Available since v5.1._\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/Hashes.sol\":\"Hashes\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/cryptography/Hashes.sol\":{\"keccak256\":\"0x8cbd338f083224b4b6f0ff42cbda641a0a6c31ffcdca197452b97fe4d0918269\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f517dec5ba0c6491395acbf7f1d621f4e89e8f218bf5303c867b1c5ad70c6b11\",\"dweb:/ipfs/QmWmXHRLEw8W6ckth7NyYTU88YfvuS7xSsfae5ksL8qNUe\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"MessageHashUtils":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122009de9782d8e895448d9ad785a6925f586f148ef0bc468d01d9b41cd2a92a4b0664736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MULMOD 0xDE SWAP8 DUP3 0xD8 0xE8 SWAP6 PREVRANDAO DUP14 SWAP11 0xD7 DUP6 0xA6 SWAP3 PUSH0 PC PUSH16 0x148EF0BC468D01D9B41CD2A92A4B0664 PUSH20 0x6F6C634300081E00330000000000000000000000 ","sourceMap":"521:3729:60:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;521:3729:60;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122009de9782d8e895448d9ad785a6925f586f148ef0bc468d01d9b41cd2a92a4b0664736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MULMOD 0xDE SWAP8 DUP3 0xD8 0xE8 SWAP6 PREVRANDAO DUP14 SWAP11 0xD7 DUP6 0xA6 SWAP3 PUSH0 PC PUSH16 0x148EF0BC468D01D9B41CD2A92A4B0664 PUSH20 0x6F6C634300081E00330000000000000000000000 ","sourceMap":"521:3729:60:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x6abeed5940e1da7bb329e458db9a1c5c4ea6f86d651b952af99c6bddcd6bbb94\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fe75e9a6b759c5d7fd82fb59bd4f58c672b36f0a69b84f4789b7c7895d3e61c\",\"dweb:/ipfs/QmX28wsir8w5sS3acfJMNHcBwoPsDpqCu7WDkPnUWLMNiZ\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol":{"ERC165Checker":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122068ecd846015d25e5770bb9a9568023d9e959939671a760d503b569d816a217ed64736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH9 0xECD846015D25E5770B 0xB9 0xA9 JUMP DUP1 0x23 0xD9 0xE9 MSIZE SWAP4 SWAP7 PUSH18 0xA760D503B569D816A217ED64736F6C634300 ADDMOD 0x1E STOP CALLER ","sourceMap":"465:5382:61:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;465:5382:61;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122068ecd846015d25e5770bb9a9568023d9e959939671a760d503b569d816a217ed64736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH9 0xECD846015D25E5770B 0xB9 0xA9 JUMP DUP1 0x23 0xD9 0xE9 MSIZE SWAP4 SWAP7 PUSH18 0xA760D503B569D816A217ED64736F6C634300 ADDMOD 0x1E STOP CALLER ","sourceMap":"465:5382:61:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Library used to query support of an interface declared via {IERC165}. Note that these functions return the actual result of the query: they do not `revert` if an interface is not supported. It is up to the caller to decide what to do in these cases.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\":\"ERC165Checker\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\":{\"keccak256\":\"0xc4c674aab142650b93c3fdf27452a07c0284aed63a86b54b4c4792e8f0f333fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://47778fa8fbb0bd759b5859b65193de857778c6112af8d5421acb11e68ed04d62\",\"dweb:/ipfs/QmakrnC3iS3t4UeRReEvWfhxgB3sAyPoz6LSkdK63UxiYb\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@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.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/math/Math.sol":{"Math":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220d603671a8850d836e0100ea6939de2b91d82a3097ea692a1d2348f2ba075be3864736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD6 SUB PUSH8 0x1A8850D836E0100E 0xA6 SWAP4 SWAP14 0xE2 0xB9 SAR DUP3 LOG3 MULMOD PUSH31 0xA692A1D2348F2BA075BE3864736F6C634300081E0033000000000000000000 ","sourceMap":"281:32081:63:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;281:32081:63;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220d603671a8850d836e0100ea6939de2b91d82a3097ea692a1d2348f2ba075be3864736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD6 SUB PUSH8 0x1A8850D836E0100E 0xA6 SWAP4 SWAP14 0xE2 0xB9 SAR DUP3 LOG3 MULMOD PUSH31 0xA692A1D2348F2BA075BE3864736F6C634300081E0033000000000000000000 ","sourceMap":"281:32081:63:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220fa9d6728c7f1dba733ed459f5d1d52f48b15c4d0bc788df1878a8baa4b26db1a64736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 STATICCALL SWAP14 PUSH8 0x28C7F1DBA733ED45 SWAP16 TSTORE SAR MSTORE DELEGATECALL DUP12 ISZERO 0xC4 0xD0 0xBC PUSH25 0x8DF1878A8BAA4B26DB1A64736F6C634300081E003300000000 ","sourceMap":"769:34173:64:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;769:34173:64;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220fa9d6728c7f1dba733ed459f5d1d52f48b15c4d0bc788df1878a8baa4b26db1a64736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 STATICCALL SWAP14 PUSH8 0x28C7F1DBA733ED45 SWAP16 TSTORE SAR MSTORE DELEGATECALL DUP12 ISZERO 0xC4 0xD0 0xBC PUSH25 0x8DF1878A8BAA4B26DB1A64736F6C634300081E003300000000 ","sourceMap":"769:34173:64:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"SignedMath":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122026876793ecd5879ccd95025ff26cce65580ce3c58eb4b35b8945e902635830d364736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x26 DUP8 PUSH8 0x93ECD5879CCD9502 PUSH0 CALLCODE PUSH13 0xCE65580CE3C58EB4B35B8945E9 MUL PUSH4 0x5830D364 PUSH20 0x6F6C634300081E00330000000000000000000000 ","sourceMap":"258:2354:65:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;258:2354:65;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122026876793ecd5879ccd95025ff26cce65580ce3c58eb4b35b8945e902635830d364736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x26 DUP8 PUSH8 0x93ECD5879CCD9502 PUSH0 CALLCODE PUSH13 0xCE65580CE3C58EB4B35B8945E9 MUL PUSH4 0x5830D364 PUSH20 0x6F6C634300081E00330000000000000000000000 ","sourceMap":"258:2354:65:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"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}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/types/Time.sol":{"Time":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212204b9b3776ade6d5f34ab3b2c043b7a8c5acf4f4d42551803eec69aa9248daef1364736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4B SWAP12 CALLDATACOPY PUSH23 0xADE6D5F34AB3B2C043B7A8C5ACF4F4D42551803EEC69AA SWAP3 BASEFEE 0xDA 0xEF SGT PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"640:4514:66:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;640:4514:66;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212204b9b3776ade6d5f34ab3b2c043b7a8c5acf4f4d42551803eec69aa9248daef1364736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4B SWAP12 CALLDATACOPY PUSH23 0xADE6D5F34AB3B2C043B7A8C5ACF4F4D42551803EEC69AA SWAP3 BASEFEE 0xDA 0xEF SGT PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"640:4514:66:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x3765cc1833212456000f02d5de0478c2055b5f318e27032537c6d47c91e68b05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e77d9fd11b604fb3820ba6794f1e2516deb1093dada1c7225da6c46def95256\",\"dweb:/ipfs/QmcqQo9mmD5kekxFtJcvZTyCPaEgxQsSVfp7wLiE91fdAc\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/Cooler.sol":{"Cooler":{"abi":[{"inputs":[{"internalType":"contract IPolicyPool","name":"policyPool_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[],"name":"CannotDoZeroWithdrawals","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"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"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"}],"name":"InvalidEToken","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"InvalidWithdrawalRequest","type":"error"},{"inputs":[],"name":"NoZeroPolicyPool","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"OnlyPolicyPool","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[],"name":"UpgradeCannotChangePolicyPool","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"name":"WithdrawalNotReady","type":"error"},{"inputs":[{"internalType":"uint40","name":"minRequestTime","type":"uint40"},{"internalType":"uint40","name":"timeRequested","type":"uint40"}],"name":"WithdrawalRequestEarlierThanMin","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IEToken","name":"eToken","type":"address"},{"indexed":false,"internalType":"uint40","name":"oldCooldownPeriod","type":"uint40"},{"indexed":false,"internalType":"uint40","name":"newCooldownPeriod","type":"uint40"}],"name":"CooldownPeriodChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IEToken","name":"eToken","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountRequested","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountWithdrawn","type":"uint256"}],"name":"WithdrawalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IEToken","name":"eToken","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint40","name":"when","type":"uint40"},{"indexed":false,"internalType":"ETKLib.Scale","name":"scaleAtRequest","type":"uint96"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawalRequested","type":"event"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"cooldownPeriod","outputs":[{"internalType":"uint40","name":"","type":"uint40"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"executeWithdrawal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCurrentValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getWithdrawalRequestInfo","outputs":[{"components":[{"internalType":"ETKLib.Scale","name":"scaleAtRequest","type":"uint96"},{"internalType":"contract IEToken","name":"etk","type":"address"},{"internalType":"uint128","name":"requestedAmount","type":"uint128"},{"internalType":"uint40","name":"requestedAt","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Cooler.WithdrawalRequest","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"}],"name":"pendingWithdrawals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"uint40","name":"when","type":"uint40"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"scheduleWithdrawal","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"uint40","name":"when","type":"uint40"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"scheduleWithdrawalWithPermit","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"uint40","name":"newCooldownPeriod","type":"uint40"}],"name":"setCooldownPeriod","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_18257":{"entryPoint":null,"id":18257,"parameterSlots":1,"returnSlots":0},"@_25524":{"entryPoint":null,"id":25524,"parameterSlots":1,"returnSlots":0},"@_disableInitializers_7172":{"entryPoint":116,"id":7172,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_7217":{"entryPoint":null,"id":7217,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_7203":{"entryPoint":null,"id":7203,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory":{"entryPoint":294,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:532:101","nodeType":"YulBlock","src":"0:532:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"116:209:101","nodeType":"YulBlock","src":"116:209:101","statements":[{"body":{"nativeSrc":"162:16:101","nodeType":"YulBlock","src":"162:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"171:1:101","nodeType":"YulLiteral","src":"171:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"174:1:101","nodeType":"YulLiteral","src":"174:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"164:6:101","nodeType":"YulIdentifier","src":"164:6:101"},"nativeSrc":"164:12:101","nodeType":"YulFunctionCall","src":"164:12:101"},"nativeSrc":"164:12:101","nodeType":"YulExpressionStatement","src":"164:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"137:7:101","nodeType":"YulIdentifier","src":"137:7:101"},{"name":"headStart","nativeSrc":"146:9:101","nodeType":"YulIdentifier","src":"146:9:101"}],"functionName":{"name":"sub","nativeSrc":"133:3:101","nodeType":"YulIdentifier","src":"133:3:101"},"nativeSrc":"133:23:101","nodeType":"YulFunctionCall","src":"133:23:101"},{"kind":"number","nativeSrc":"158:2:101","nodeType":"YulLiteral","src":"158:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"129:3:101","nodeType":"YulIdentifier","src":"129:3:101"},"nativeSrc":"129:32:101","nodeType":"YulFunctionCall","src":"129:32:101"},"nativeSrc":"126:52:101","nodeType":"YulIf","src":"126:52:101"},{"nativeSrc":"187:29:101","nodeType":"YulVariableDeclaration","src":"187:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"206:9:101","nodeType":"YulIdentifier","src":"206:9:101"}],"functionName":{"name":"mload","nativeSrc":"200:5:101","nodeType":"YulIdentifier","src":"200:5:101"},"nativeSrc":"200:16:101","nodeType":"YulFunctionCall","src":"200:16:101"},"variables":[{"name":"value","nativeSrc":"191:5:101","nodeType":"YulTypedName","src":"191:5:101","type":""}]},{"body":{"nativeSrc":"279:16:101","nodeType":"YulBlock","src":"279:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"288:1:101","nodeType":"YulLiteral","src":"288:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"291:1:101","nodeType":"YulLiteral","src":"291:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"281:6:101","nodeType":"YulIdentifier","src":"281:6:101"},"nativeSrc":"281:12:101","nodeType":"YulFunctionCall","src":"281:12:101"},"nativeSrc":"281:12:101","nodeType":"YulExpressionStatement","src":"281:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"238:5:101","nodeType":"YulIdentifier","src":"238:5:101"},{"arguments":[{"name":"value","nativeSrc":"249:5:101","nodeType":"YulIdentifier","src":"249:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"264:3:101","nodeType":"YulLiteral","src":"264:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"269:1:101","nodeType":"YulLiteral","src":"269:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"260:3:101","nodeType":"YulIdentifier","src":"260:3:101"},"nativeSrc":"260:11:101","nodeType":"YulFunctionCall","src":"260:11:101"},{"kind":"number","nativeSrc":"273:1:101","nodeType":"YulLiteral","src":"273:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"256:3:101","nodeType":"YulIdentifier","src":"256:3:101"},"nativeSrc":"256:19:101","nodeType":"YulFunctionCall","src":"256:19:101"}],"functionName":{"name":"and","nativeSrc":"245:3:101","nodeType":"YulIdentifier","src":"245:3:101"},"nativeSrc":"245:31:101","nodeType":"YulFunctionCall","src":"245:31:101"}],"functionName":{"name":"eq","nativeSrc":"235:2:101","nodeType":"YulIdentifier","src":"235:2:101"},"nativeSrc":"235:42:101","nodeType":"YulFunctionCall","src":"235:42:101"}],"functionName":{"name":"iszero","nativeSrc":"228:6:101","nodeType":"YulIdentifier","src":"228:6:101"},"nativeSrc":"228:50:101","nodeType":"YulFunctionCall","src":"228:50:101"},"nativeSrc":"225:70:101","nodeType":"YulIf","src":"225:70:101"},{"nativeSrc":"304:15:101","nodeType":"YulAssignment","src":"304:15:101","value":{"name":"value","nativeSrc":"314:5:101","nodeType":"YulIdentifier","src":"314:5:101"},"variableNames":[{"name":"value0","nativeSrc":"304:6:101","nodeType":"YulIdentifier","src":"304:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory","nativeSrc":"14:311:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"82:9:101","nodeType":"YulTypedName","src":"82:9:101","type":""},{"name":"dataEnd","nativeSrc":"93:7:101","nodeType":"YulTypedName","src":"93:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"105:6:101","nodeType":"YulTypedName","src":"105:6:101","type":""}],"src":"14:311:101"},{"body":{"nativeSrc":"429:101:101","nodeType":"YulBlock","src":"429:101:101","statements":[{"nativeSrc":"439:26:101","nodeType":"YulAssignment","src":"439:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"451:9:101","nodeType":"YulIdentifier","src":"451:9:101"},{"kind":"number","nativeSrc":"462:2:101","nodeType":"YulLiteral","src":"462:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"447:3:101","nodeType":"YulIdentifier","src":"447:3:101"},"nativeSrc":"447:18:101","nodeType":"YulFunctionCall","src":"447:18:101"},"variableNames":[{"name":"tail","nativeSrc":"439:4:101","nodeType":"YulIdentifier","src":"439:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"481:9:101","nodeType":"YulIdentifier","src":"481:9:101"},{"arguments":[{"name":"value0","nativeSrc":"496:6:101","nodeType":"YulIdentifier","src":"496:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"512:2:101","nodeType":"YulLiteral","src":"512:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"516:1:101","nodeType":"YulLiteral","src":"516:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"508:3:101","nodeType":"YulIdentifier","src":"508:3:101"},"nativeSrc":"508:10:101","nodeType":"YulFunctionCall","src":"508:10:101"},{"kind":"number","nativeSrc":"520:1:101","nodeType":"YulLiteral","src":"520:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"504:3:101","nodeType":"YulIdentifier","src":"504:3:101"},"nativeSrc":"504:18:101","nodeType":"YulFunctionCall","src":"504:18:101"}],"functionName":{"name":"and","nativeSrc":"492:3:101","nodeType":"YulIdentifier","src":"492:3:101"},"nativeSrc":"492:31:101","nodeType":"YulFunctionCall","src":"492:31:101"}],"functionName":{"name":"mstore","nativeSrc":"474:6:101","nodeType":"YulIdentifier","src":"474:6:101"},"nativeSrc":"474:50:101","nodeType":"YulFunctionCall","src":"474:50:101"},"nativeSrc":"474:50:101","nodeType":"YulExpressionStatement","src":"474:50:101"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"330:200:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"398:9:101","nodeType":"YulTypedName","src":"398:9:101","type":""},{"name":"value0","nativeSrc":"409:6:101","nodeType":"YulTypedName","src":"409:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"420:4:101","nodeType":"YulTypedName","src":"420:4:101","type":""}],"src":"330:200:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(64, 1), 1)))\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60c060405230608052348015610013575f5ffd5b50604051612c29380380612c2983398101604081905261003291610126565b806001600160a01b03811661005a57604051636b23cf0160e01b815260040160405180910390fd5b610062610074565b6001600160a01b031660a05250610153565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100c45760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101235780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b5f60208284031215610136575f5ffd5b81516001600160a01b038116811461014c575f5ffd5b9392505050565b60805160a051612a926101975f395f81816102fd0152818161095301528181610ea60152611e3a01525f81816113340152818161135d01526114a20152612a925ff3fe608060405260043610610195575f3560e01c80636352211e116100e7578063b88d4fde11610087578063e5a6b10f11610062578063e5a6b10f146105e1578063e985e9c5146105f5578063f3f4370314610614578063f630ffe714610648575f5ffd5b8063b88d4fde14610584578063c87b56dd146105a3578063d3b59bf4146105c2575f5ffd5b806399a904b5116100c257806399a904b5146103ed578063a035807714610516578063a22cb46514610535578063ad3cb1cc14610554575f5ffd5b80636352211e1461039b57806370a08231146103ba57806395d89b41146103d9575f5ffd5b80633fcad964116101525780634d15eb031161012d5780634d15eb03146102ef5780634f1ef2861461032157806352d1902d146103345780635ce095ee14610348575f5ffd5b80633fcad9641461028457806342842e0e146102b15780634cd88b76146102d0575f5ffd5b806301ffc9a71461019957806306fdde03146101cd578063081812fc146101ee578063095ea7b31461022557806323b872dd1461024657806324f13a7614610265575b5f5ffd5b3480156101a4575f5ffd5b506101b86101b33660046123af565b610667565b60405190151581526020015b60405180910390f35b3480156101d8575f5ffd5b506101e16106a1565b6040516101c491906123f8565b3480156101f9575f5ffd5b5061020d61020836600461240a565b610742565b6040516001600160a01b0390911681526020016101c4565b348015610230575f5ffd5b5061024461023f366004612435565b610756565b005b348015610251575f5ffd5b5061024461026036600461245f565b610765565b348015610270575f5ffd5b5061024461027f36600461240a565b6107f3565b34801561028f575f5ffd5b506102a361029e36600461240a565b610b15565b6040519081526020016101c4565b3480156102bc575f5ffd5b506102446102cb36600461245f565b610b69565b3480156102db575f5ffd5b506102446102ea366004612542565b610b88565b3480156102fa575f5ffd5b507f000000000000000000000000000000000000000000000000000000000000000061020d565b61024461032f3660046125a7565b610c83565b34801561033f575f5ffd5b506102a3610c9e565b348015610353575f5ffd5b5061038561036236600461245f565b50506001600160a01b03165f9081526033602052604090205464ffffffffff1690565b60405164ffffffffff90911681526020016101c4565b3480156103a6575f5ffd5b5061020d6103b536600461240a565b610cb9565b3480156103c5575f5ffd5b506102a36103d43660046125de565b610cc3565b3480156103e4575f5ffd5b506101e1610d1b565b3480156103f8575f5ffd5b506104ad61040736600461240a565b6040805160a0810182525f80825260208201819052918101829052606081018290526080810191909152505f90815260326020908152604091829020825160a08101845281546001600160601b03811682526001600160a01b03600160601b9091041692810192909252600101546001600160801b0381169282019290925264ffffffffff600160801b830481166060830152600160a81b909204909116608082015290565b6040516101c491905f60a0820190506001600160601b03835116825260018060a01b0360208401511660208301526001600160801b03604084015116604083015264ffffffffff606084015116606083015264ffffffffff608084015116608083015292915050565b348015610521575f5ffd5b506102a3610530366004612612565b610d59565b348015610540575f5ffd5b5061024461054f36600461263d565b610d6d565b34801561055f575f5ffd5b506101e1604051806040016040528060058152602001640352e302e360dc1b81525081565b34801561058f575f5ffd5b5061024461059e366004612678565b610d78565b3480156105ae575f5ffd5b506101e16105bd36600461240a565b610d90565b3480156105cd575f5ffd5b506102a36105dc3660046126e0565b610e00565b3480156105ec575f5ffd5b5061020d610ea3565b348015610600575f5ffd5b506101b861060f36600461274f565b610f29565b34801561061f575f5ffd5b506102a361062e3660046125de565b6001600160a01b03165f9081526034602052604090205490565b348015610653575f5ffd5b5061024461066236600461277b565b610f75565b5f61067182611007565b80610680575061068082611056565b8061069b57506001600160e01b0319821663af14a2ed60e01b145b92915050565b5f516020612a1d5f395f51905f5280546060919081906106c0906127ae565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec906127ae565b80156107375780601f1061070e57610100808354040283529160200191610737565b820191905f5260205f20905b81548152906001019060200180831161071a57829003601f168201915b505050505091505090565b5f61074c8261108b565b5061069b826110c2565b6107618282336110fb565b5050565b6001600160a01b03821661079357604051633250574960e11b81525f60048201526024015b60405180910390fd5b5f61079f838333611108565b9050836001600160a01b0316816001600160a01b0316146107ed576040516364283d7b60e01b81526001600160a01b038086166004830152602482018490528216604482015260640161078a565b50505050565b5f81815260326020526040902060018101548290600160801b900464ffffffffff16610835576040516347f23c9760e11b815260040161078a91815260200190565b5060018101548290600160a81b900464ffffffffff164281111561087c5760405163234d921f60e21b8152600481019290925264ffffffffff16602482015260440161078a565b50505f61088883610cb9565b90505f6108948361120a565b60018401549091505f906108b29083906001600160801b03166112a0565b60018501805464ffffffffff60801b1916905590506108d0856112af565b60018401548454600160601b90046001600160a01b03165f90815260346020526040812080546001600160801b03909316929091906109109084906127fa565b90915550508354604051636fe6a09760e11b8152600160601b9091046001600160a01b0390811660048301526024820183905284811660448301523060648301527f0000000000000000000000000000000000000000000000000000000000000000169063dfcd412e906084016020604051808303815f875af1158015610999573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109bd919061280d565b5080821115610aaa578354600160601b90046001600160a01b031663a0ce552d610a5e6109ea84866127fa565b87546040516370a0823160e01b8152306004820152600160601b9091046001600160a01b0316906370a0823190602401602060405180830381865afa158015610a35573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a59919061280d565b6112a0565b6040518263ffffffff1660e01b8152600401610a7c91815260200190565b5f604051808303815f87803b158015610a93575f5ffd5b505af1158015610aa5573d5f5f3e3d5ffd5b505050505b83546001850154604080516001600160801b039092168252602082018490526001600160a01b03868116938993600160601b909104909116917f5c7b80d3b1a3296ffcd888e34c2c2eccd66bb3edb1d128e65a384a38115cb582910160405180910390a45050505050565b5f8181526032602052604081206001810154600160801b900464ffffffffff168203610b4357505f92915050565b610b62610b4f8261120a565b60018301546001600160801b03166112a0565b9392505050565b610b8383838360405180602001604052805f815250610d78565b505050565b5f610b916112e7565b805490915060ff600160401b820416159067ffffffffffffffff165f81158015610bb85750825b90505f8267ffffffffffffffff166001148015610bd45750303b155b905081158015610be2575080155b15610c005760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610c2a57845460ff60401b1916600160401b1785555b610c34878761130f565b8315610c7a57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b610c8b611329565b610c94826113cf565b61076182826113db565b5f610ca7611497565b505f516020612a3d5f395f51905f5290565b5f61069b8261108b565b5f5f516020612a1d5f395f51905f526001600160a01b038316610cfb576040516322718ad960e21b81525f600482015260240161078a565b6001600160a01b039092165f908152600390920160205250604090205490565b7f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930180546060915f516020612a1d5f395f51905f52916106c0906127ae565b5f610d658484846114e0565b949350505050565b610761338383611932565b610d83848484610765565b6107ed33858585856119e1565b6060610d9b8261108b565b505f610db160408051602081019091525f815290565b90505f815111610dcf5760405180602001604052805f815250610b62565b80610dd984611b09565b604051602001610dea92919061283b565b6040516020818303038152906040529392505050565b5f6001600160a01b03881663d505accf336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604481018990526064810188905260ff8716608482015260a4810186905260c4810185905260e4015f604051808303815f87803b158015610e7a575f5ffd5b505af1925050508015610e8b575060015b50610e978888886114e0565b98975050505050505050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f00573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f24919061284f565b905090565b6001600160a01b039182165f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab00793056020908152604080832093909416825291909152205460ff1690565b6001600160a01b0382165f8181526033602090815260409182902054825164ffffffffff9182168152908516918101919091527f08dfa5493c453115ee7c83f7c1ecb7bf389adaaeade84190f2a6dca91ccaabbd910160405180910390a26001600160a01b03919091165f908152603360205260409020805464ffffffffff191664ffffffffff909216919091179055565b5f6001600160e01b031982166380ac58cd60e01b148061103757506001600160e01b03198216635b5e139f60e01b145b8061069b57506301ffc9a760e01b6001600160e01b031983161461069b565b5f6001600160e01b031982166301ffc9a760e01b148061069b57506001600160e01b03198216634d15eb0360e01b1492915050565b5f5f61109683611b99565b90506001600160a01b03811661069b57604051637e27328960e01b81526004810184905260240161078a565b5f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930460205260409020546001600160a01b031690565b610b838383836001611bd2565b5f5f516020612a1d5f395f51905f528161112185611b99565b90506001600160a01b0384161561113d5761113d818587611ce5565b6001600160a01b03811615611179576111585f865f5f611bd2565b6001600160a01b0381165f908152600383016020526040902080545f190190555b6001600160a01b038616156111a9576001600160a01b0386165f9081526003830160205260409020805460010190555b5f85815260028301602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a495945050505050565b80546040516379d989fb60e01b8152600160048201525f9161069b91600160601b9091046001600160a01b0316906379d989fb90602401602060405180830381865afa15801561125c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611280919061280d565b835460018501546001600160801b031691906001600160601b0316611d49565b5f828218828410028218610b62565b5f6112bb5f835f611108565b90506001600160a01b03811661076157604051637e27328960e01b81526004810183905260240161078a565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0061069b565b611317611df9565b61131f611e1e565b6107618282611e26565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806113af57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166113a35f516020612a3d5f395f51905f52546001600160a01b031690565b6001600160a01b031614155b156113cd5760405163703e46dd60e11b815260040160405180910390fd5b565b6113d881611e38565b50565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611435575060408051601f3d908101601f191682019092526114329181019061280d565b60015b61145d57604051634c9c8ce360e01b81526001600160a01b038316600482015260240161078a565b5f516020612a3d5f395f51905f52811461148d57604051632a87526960e21b81526004810182905260240161078a565b610b838383611ee9565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146113cd5760405163703e46dd60e11b815260040160405180910390fd5b5f306001600160a01b0316846001600160a01b031663cf6a9a946040518163ffffffff1660e01b8152600401602060405180830381865afa158015611527573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061154b919061284f565b6001600160a01b03161484906115805760405163f1b1ee5d60e01b81526001600160a01b03909116600482015260240161078a565b505f198203611602576001600160a01b0384166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156115db573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115ff919061280d565b91505b5f8211611622576040516390633d3160e01b815260040160405180910390fd5b6001600160a01b0384165f9081526033602052604081205464ffffffffff1661164b904261286a565b90508364ffffffffff165f03611663578093506116a3565b8064ffffffffff168464ffffffffff1610156116a3576040516380be8b5960e01b815264ffffffffff80831660048301528516602482015260440161078a565b60355f81546116b190612887565b91829055506040516379d989fb60e01b8152600160048201529092505f906001600160a01b038716906379d989fb90602401602060405180830381865afa1580156116fe573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611722919061280d565b90506040518060a00160405280826001600160601b03168152602001876001600160a01b0316815260200161175686611f3e565b6001600160801b0390811682524264ffffffffff9081166020808501919091528982166040948501525f888152603282528481208651878401516001600160601b03909116600160601b6001600160a01b0392831602178255878701516001909201805460608a01516080909a0151939097166001600160a81b031990971696909617600160801b988616989098029790971764ffffffffff60a81b1916600160a81b9190941602929092179092559289168352603490528120805486929061182090849061289f565b9091555061183b90506001600160a01b038716333087611f75565b6118ca338460325f8781526020019081526020015f206040516020016118b691905f60a08201905082546001600160601b03811683528060601c60208401525060018301546001600160801b038116604084015264ffffffffff8160801c16606084015264ffffffffff8160a81c1660808401525092915050565b604051602081830303815290604052611fab565b6040805164ffffffffff871681526001600160601b03831660208201528082018690529051339185916001600160a01b038a16917feb35eeca4c5d42d89fa3326185659928510d45c4e520668ad306241d7e288315919081900360600190a450509392505050565b5f516020612a1d5f395f51905f526001600160a01b03831661197257604051630b61174360e31b81526001600160a01b038416600482015260240161078a565b6001600160a01b038481165f818152600584016020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a350505050565b6001600160a01b0383163b15611b0257604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290611a239088908890879087906004016128b2565b6020604051808303815f875af1925050508015611a5d575060408051601f3d908101601f19168201909252611a5a918101906128ee565b60015b611ac4573d808015611a8a576040519150601f19603f3d011682016040523d82523d5f602084013e611a8f565b606091505b5080515f03611abc57604051633250574960e11b81526001600160a01b038516600482015260240161078a565b805160208201fd5b6001600160e01b03198116630a85bd0160e11b14611b0057604051633250574960e11b81526001600160a01b038516600482015260240161078a565b505b5050505050565b60605f611b1583611fc2565b60010190505f8167ffffffffffffffff811115611b3457611b3461249d565b6040519080825280601f01601f191660200182016040528015611b5e576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611b6857509392505050565b5f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930260205260409020546001600160a01b031690565b5f516020612a1d5f395f51905f528180611bf457506001600160a01b03831615155b15611cb5575f611c038561108b565b90506001600160a01b03841615801590611c2f5750836001600160a01b0316816001600160a01b031614155b8015611c425750611c408185610f29565b155b15611c6b5760405163a9fbf51f60e01b81526001600160a01b038516600482015260240161078a565b8215611cb35784866001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5f93845260040160205250506040902080546001600160a01b0319166001600160a01b0392909216919091179055565b611cf0838383612099565b610b83576001600160a01b038316611d1e57604051637e27328960e01b81526004810182905260240161078a565b60405163177e802f60e01b81526001600160a01b03831660048201526024810182905260440161078a565b5f5f5f611d5686866120fd565b91509150815f03611d7a57838181611d7057611d70612909565b0492505050610b62565b818411611d9157611d916003851502601118612119565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b611e0161212a565b6113cd57604051631afcd79f60e31b815260040160405180910390fd5b6113cd611df9565b611e2e611df9565b6107618282612143565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e9e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ec2919061284f565b6001600160a01b0316146113d85760405163d2b3d33f60e01b815260040160405180910390fd5b611ef282612173565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115611f3657610b8382826121d6565b610761612276565b5f6001600160801b03821115611f71576040516306dfcc6560e41b8152608060048201526024810183905260440161078a565b5090565b611f83848484846001612295565b6107ed57604051635274afe760e01b81526001600160a01b038516600482015260240161078a565b611fb58383612302565b610b83335f8585856119e1565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106120005772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061202c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061204a57662386f26fc10000830492506010015b6305f5e1008310612062576305f5e100830492506008015b612710831061207657612710830492506004015b60648310612088576064830492506002015b600a831061069b5760010192915050565b5f6001600160a01b03831615801590610d655750826001600160a01b0316846001600160a01b031614806120d257506120d28484610f29565b80610d655750826001600160a01b03166120eb836110c2565b6001600160a01b031614949350505050565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f6121336112e7565b54600160401b900460ff16919050565b61214b611df9565b5f516020612a1d5f395f51905f52806121648482612961565b50600181016107ed8382612961565b806001600160a01b03163b5f036121a857604051634c9c8ce360e01b81526001600160a01b038216600482015260240161078a565b5f516020612a3d5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f6121e38484612363565b905080801561220457505f3d118061220457505f846001600160a01b03163b115b1561221957612211612376565b91505061069b565b801561224357604051639996b31560e01b81526001600160a01b038516600482015260240161078a565b3d156122565761225161238f565b61226f565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b34156113cd5760405163b398979f60e01b815260040160405180910390fd5b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f511483166122f15783831516156122e5573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b6001600160a01b03821661232b57604051633250574960e11b81525f600482015260240161078a565b5f61233783835f611108565b90506001600160a01b03811615610b83576040516339e3563760e11b81525f600482015260240161078a565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b6001600160e01b0319811681146113d8575f5ffd5b5f602082840312156123bf575f5ffd5b8135610b628161239a565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610b6260208301846123ca565b5f6020828403121561241a575f5ffd5b5035919050565b6001600160a01b03811681146113d8575f5ffd5b5f5f60408385031215612446575f5ffd5b823561245181612421565b946020939093013593505050565b5f5f5f60608486031215612471575f5ffd5b833561247c81612421565b9250602084013561248c81612421565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126124c0575f5ffd5b8135602083015f5f67ffffffffffffffff8411156124e0576124e061249d565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff8211171561250f5761250f61249d565b604052838152905080828401871015612526575f5ffd5b838360208301375f602085830101528094505050505092915050565b5f5f60408385031215612553575f5ffd5b823567ffffffffffffffff811115612569575f5ffd5b612575858286016124b1565b925050602083013567ffffffffffffffff811115612591575f5ffd5b61259d858286016124b1565b9150509250929050565b5f5f604083850312156125b8575f5ffd5b82356125c381612421565b9150602083013567ffffffffffffffff811115612591575f5ffd5b5f602082840312156125ee575f5ffd5b8135610b6281612421565b803564ffffffffff8116811461260d575f5ffd5b919050565b5f5f5f60608486031215612624575f5ffd5b833561262f81612421565b925061248c602085016125f9565b5f5f6040838503121561264e575f5ffd5b823561265981612421565b91506020830135801515811461266d575f5ffd5b809150509250929050565b5f5f5f5f6080858703121561268b575f5ffd5b843561269681612421565b935060208501356126a681612421565b925060408501359150606085013567ffffffffffffffff8111156126c8575f5ffd5b6126d4878288016124b1565b91505092959194509250565b5f5f5f5f5f5f5f60e0888a0312156126f6575f5ffd5b873561270181612421565b965061270f602089016125f9565b95506040880135945060608801359350608088013560ff81168114612732575f5ffd5b9699959850939692959460a0840135945060c09093013592915050565b5f5f60408385031215612760575f5ffd5b823561276b81612421565b9150602083013561266d81612421565b5f5f6040838503121561278c575f5ffd5b823561279781612421565b91506127a5602084016125f9565b90509250929050565b600181811c908216806127c257607f821691505b6020821081036127e057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561069b5761069b6127e6565b5f6020828403121561281d575f5ffd5b5051919050565b5f81518060208401855e5f93019283525090919050565b5f610d656128498386612824565b84612824565b5f6020828403121561285f575f5ffd5b8151610b6281612421565b64ffffffffff818116838216019081111561069b5761069b6127e6565b5f60018201612898576128986127e6565b5060010190565b8082018082111561069b5761069b6127e6565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906128e4908301846123ca565b9695505050505050565b5f602082840312156128fe575f5ffd5b8151610b628161239a565b634e487b7160e01b5f52601260045260245ffd5b601f821115610b8357805f5260205f20601f840160051c810160208510156129425750805b601f840160051c820191505b81811015611b02575f815560010161294e565b815167ffffffffffffffff81111561297b5761297b61249d565b61298f8161298984546127ae565b8461291d565b6020601f8211600181146129c1575f83156129aa5750848201515b5f19600385901b1c1916600184901b178455611b02565b5f84815260208120601f198516915b828110156129f057878501518255602094850194600190920191016129d0565b5084821015612a0d57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca264697066735822122004aa152a925cdf753087f90fcc9cb207eb0313b5aa4b3fb4c0946677e83b1f2264736f6c634300081e0033","opcodes":"PUSH1 0xC0 PUSH1 0x40 MSTORE ADDRESS PUSH1 0x80 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x13 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x2C29 CODESIZE SUB DUP1 PUSH2 0x2C29 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x32 SWAP2 PUSH2 0x126 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x5A JUMPI PUSH1 0x40 MLOAD PUSH4 0x6B23CF01 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x62 PUSH2 0x74 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xA0 MSTORE POP PUSH2 0x153 JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xC4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0x123 JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x136 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x14C JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH2 0x2A92 PUSH2 0x197 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x2FD ADD MSTORE DUP2 DUP2 PUSH2 0x953 ADD MSTORE DUP2 DUP2 PUSH2 0xEA6 ADD MSTORE PUSH2 0x1E3A ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x1334 ADD MSTORE DUP2 DUP2 PUSH2 0x135D ADD MSTORE PUSH2 0x14A2 ADD MSTORE PUSH2 0x2A92 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x195 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0xE7 JUMPI DUP1 PUSH4 0xB88D4FDE GT PUSH2 0x87 JUMPI DUP1 PUSH4 0xE5A6B10F GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x5E1 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x5F5 JUMPI DUP1 PUSH4 0xF3F43703 EQ PUSH2 0x614 JUMPI DUP1 PUSH4 0xF630FFE7 EQ PUSH2 0x648 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x584 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x5A3 JUMPI DUP1 PUSH4 0xD3B59BF4 EQ PUSH2 0x5C2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x99A904B5 GT PUSH2 0xC2 JUMPI DUP1 PUSH4 0x99A904B5 EQ PUSH2 0x3ED JUMPI DUP1 PUSH4 0xA0358077 EQ PUSH2 0x516 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x535 JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x554 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x39B JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x3BA JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x3D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x3FCAD964 GT PUSH2 0x152 JUMPI DUP1 PUSH4 0x4D15EB03 GT PUSH2 0x12D JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x2EF JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x321 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x334 JUMPI DUP1 PUSH4 0x5CE095EE EQ PUSH2 0x348 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x3FCAD964 EQ PUSH2 0x284 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0x4CD88B76 EQ PUSH2 0x2D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x199 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1CD JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x1EE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x246 JUMPI DUP1 PUSH4 0x24F13A76 EQ PUSH2 0x265 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1A4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1B8 PUSH2 0x1B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x23AF JUMP JUMPDEST PUSH2 0x667 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1D8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E1 PUSH2 0x6A1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C4 SWAP2 SWAP1 PUSH2 0x23F8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1F9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x20D PUSH2 0x208 CALLDATASIZE PUSH1 0x4 PUSH2 0x240A JUMP JUMPDEST PUSH2 0x742 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1C4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x230 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x23F CALLDATASIZE PUSH1 0x4 PUSH2 0x2435 JUMP JUMPDEST PUSH2 0x756 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x251 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x260 CALLDATASIZE PUSH1 0x4 PUSH2 0x245F JUMP JUMPDEST PUSH2 0x765 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x270 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x27F CALLDATASIZE PUSH1 0x4 PUSH2 0x240A JUMP JUMPDEST PUSH2 0x7F3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A3 PUSH2 0x29E CALLDATASIZE PUSH1 0x4 PUSH2 0x240A JUMP JUMPDEST PUSH2 0xB15 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1C4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x2CB CALLDATASIZE PUSH1 0x4 PUSH2 0x245F JUMP JUMPDEST PUSH2 0xB69 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2DB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x2EA CALLDATASIZE PUSH1 0x4 PUSH2 0x2542 JUMP JUMPDEST PUSH2 0xB88 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2FA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x20D JUMP JUMPDEST PUSH2 0x244 PUSH2 0x32F CALLDATASIZE PUSH1 0x4 PUSH2 0x25A7 JUMP JUMPDEST PUSH2 0xC83 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x33F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A3 PUSH2 0xC9E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x353 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x385 PUSH2 0x362 CALLDATASIZE PUSH1 0x4 PUSH2 0x245F JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x33 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH5 0xFFFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH5 0xFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1C4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x20D PUSH2 0x3B5 CALLDATASIZE PUSH1 0x4 PUSH2 0x240A JUMP JUMPDEST PUSH2 0xCB9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A3 PUSH2 0x3D4 CALLDATASIZE PUSH1 0x4 PUSH2 0x25DE JUMP JUMPDEST PUSH2 0xCC3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E1 PUSH2 0xD1B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x4AD PUSH2 0x407 CALLDATASIZE PUSH1 0x4 PUSH2 0x240A JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x32 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0xA0 DUP2 ADD DUP5 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP2 DIV AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH5 0xFFFFFFFFFF PUSH1 0x1 PUSH1 0x80 SHL DUP4 DIV DUP2 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA8 SHL SWAP1 SWAP3 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C4 SWAP2 SWAP1 PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP4 MLOAD AND DUP3 MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x20 DUP5 ADD MLOAD AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB PUSH1 0x40 DUP5 ADD MLOAD AND PUSH1 0x40 DUP4 ADD MSTORE PUSH5 0xFFFFFFFFFF PUSH1 0x60 DUP5 ADD MLOAD AND PUSH1 0x60 DUP4 ADD MSTORE PUSH5 0xFFFFFFFFFF PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP4 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x521 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A3 PUSH2 0x530 CALLDATASIZE PUSH1 0x4 PUSH2 0x2612 JUMP JUMPDEST PUSH2 0xD59 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x540 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x54F CALLDATASIZE PUSH1 0x4 PUSH2 0x263D JUMP JUMPDEST PUSH2 0xD6D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x55F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x58F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x59E CALLDATASIZE PUSH1 0x4 PUSH2 0x2678 JUMP JUMPDEST PUSH2 0xD78 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5AE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E1 PUSH2 0x5BD CALLDATASIZE PUSH1 0x4 PUSH2 0x240A JUMP JUMPDEST PUSH2 0xD90 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5CD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A3 PUSH2 0x5DC CALLDATASIZE PUSH1 0x4 PUSH2 0x26E0 JUMP JUMPDEST PUSH2 0xE00 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5EC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x20D PUSH2 0xEA3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x600 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1B8 PUSH2 0x60F CALLDATASIZE PUSH1 0x4 PUSH2 0x274F JUMP JUMPDEST PUSH2 0xF29 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x61F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A3 PUSH2 0x62E CALLDATASIZE PUSH1 0x4 PUSH2 0x25DE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x34 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x653 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x662 CALLDATASIZE PUSH1 0x4 PUSH2 0x277B JUMP JUMPDEST PUSH2 0xF75 JUMP JUMPDEST PUSH0 PUSH2 0x671 DUP3 PUSH2 0x1007 JUMP JUMPDEST DUP1 PUSH2 0x680 JUMPI POP PUSH2 0x680 DUP3 PUSH2 0x1056 JUMP JUMPDEST DUP1 PUSH2 0x69B JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xAF14A2ED PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A1D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x60 SWAP2 SWAP1 DUP2 SWAP1 PUSH2 0x6C0 SWAP1 PUSH2 0x27AE JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x6EC SWAP1 PUSH2 0x27AE JUMP JUMPDEST DUP1 ISZERO PUSH2 0x737 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x70E JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x737 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x71A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x74C DUP3 PUSH2 0x108B JUMP JUMPDEST POP PUSH2 0x69B DUP3 PUSH2 0x10C2 JUMP JUMPDEST PUSH2 0x761 DUP3 DUP3 CALLER PUSH2 0x10FB JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x793 JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x79F DUP4 DUP4 CALLER PUSH2 0x1108 JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7ED JUMPI PUSH1 0x40 MLOAD PUSH4 0x64283D7B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x78A JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH5 0xFFFFFFFFFF AND PUSH2 0x835 JUMPI PUSH1 0x40 MLOAD PUSH4 0x47F23C97 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x78A SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP PUSH1 0x1 DUP2 ADD SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0xA8 SHL SWAP1 DIV PUSH5 0xFFFFFFFFFF AND TIMESTAMP DUP2 GT ISZERO PUSH2 0x87C JUMPI PUSH1 0x40 MLOAD PUSH4 0x234D921F PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH5 0xFFFFFFFFFF AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x78A JUMP JUMPDEST POP POP PUSH0 PUSH2 0x888 DUP4 PUSH2 0xCB9 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x894 DUP4 PUSH2 0x120A JUMP JUMPDEST PUSH1 0x1 DUP5 ADD SLOAD SWAP1 SWAP2 POP PUSH0 SWAP1 PUSH2 0x8B2 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x12A0 JUMP JUMPDEST PUSH1 0x1 DUP6 ADD DUP1 SLOAD PUSH5 0xFFFFFFFFFF PUSH1 0x80 SHL NOT AND SWAP1 SSTORE SWAP1 POP PUSH2 0x8D0 DUP6 PUSH2 0x12AF JUMP JUMPDEST PUSH1 0x1 DUP5 ADD SLOAD DUP5 SLOAD PUSH1 0x1 PUSH1 0x60 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x34 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP2 SWAP1 PUSH2 0x910 SWAP1 DUP5 SWAP1 PUSH2 0x27FA JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP DUP4 SLOAD PUSH1 0x40 MLOAD PUSH4 0x6FE6A097 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP4 SWAP1 MSTORE DUP5 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE ADDRESS PUSH1 0x64 DUP4 ADD MSTORE PUSH32 0x0 AND SWAP1 PUSH4 0xDFCD412E SWAP1 PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x999 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9BD SWAP2 SWAP1 PUSH2 0x280D JUMP JUMPDEST POP DUP1 DUP3 GT ISZERO PUSH2 0xAAA JUMPI DUP4 SLOAD PUSH1 0x1 PUSH1 0x60 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xA0CE552D PUSH2 0xA5E PUSH2 0x9EA DUP5 DUP7 PUSH2 0x27FA JUMP JUMPDEST DUP8 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xA35 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xA59 SWAP2 SWAP1 PUSH2 0x280D JUMP JUMPDEST PUSH2 0x12A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA7C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xA93 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xAA5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST DUP4 SLOAD PUSH1 0x1 DUP6 ADD SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP3 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP5 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP4 DUP10 SWAP4 PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP2 DIV SWAP1 SWAP2 AND SWAP2 PUSH32 0x5C7B80D3B1A3296FFCD888E34C2C2ECCD66BB3EDB1D128E65A384A38115CB582 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH5 0xFFFFFFFFFF AND DUP3 SUB PUSH2 0xB43 JUMPI POP PUSH0 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xB62 PUSH2 0xB4F DUP3 PUSH2 0x120A JUMP JUMPDEST PUSH1 0x1 DUP4 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x12A0 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0xB83 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0xD78 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xB91 PUSH2 0x12E7 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0xBB8 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0xBD4 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xBE2 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xC00 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0xC2A JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0xC34 DUP8 DUP8 PUSH2 0x130F JUMP JUMPDEST DUP4 ISZERO PUSH2 0xC7A JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0xC8B PUSH2 0x1329 JUMP JUMPDEST PUSH2 0xC94 DUP3 PUSH2 0x13CF JUMP JUMPDEST PUSH2 0x761 DUP3 DUP3 PUSH2 0x13DB JUMP JUMPDEST PUSH0 PUSH2 0xCA7 PUSH2 0x1497 JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A3D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x69B DUP3 PUSH2 0x108B JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A1D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xCFB JUMPI PUSH1 0x40 MLOAD PUSH4 0x22718AD9 PUSH1 0xE2 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 SWAP1 SWAP3 ADD PUSH1 0x20 MSTORE POP PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079301 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A1D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x6C0 SWAP1 PUSH2 0x27AE JUMP JUMPDEST PUSH0 PUSH2 0xD65 DUP5 DUP5 DUP5 PUSH2 0x14E0 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x761 CALLER DUP4 DUP4 PUSH2 0x1932 JUMP JUMPDEST PUSH2 0xD83 DUP5 DUP5 DUP5 PUSH2 0x765 JUMP JUMPDEST PUSH2 0x7ED CALLER DUP6 DUP6 DUP6 DUP6 PUSH2 0x19E1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0xD9B DUP3 PUSH2 0x108B JUMP JUMPDEST POP PUSH0 PUSH2 0xDB1 PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP2 MSTORE SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 MLOAD GT PUSH2 0xDCF JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0xB62 JUMP JUMPDEST DUP1 PUSH2 0xDD9 DUP5 PUSH2 0x1B09 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xDEA SWAP3 SWAP2 SWAP1 PUSH2 0x283B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH4 0xD505ACCF CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP10 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP9 SWAP1 MSTORE PUSH1 0xFF DUP8 AND PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xC4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xE4 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xE7A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xE8B JUMPI POP PUSH1 0x1 JUMPDEST POP PUSH2 0xE97 DUP9 DUP9 DUP9 PUSH2 0x14E0 JUMP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xF00 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xF24 SWAP2 SWAP1 PUSH2 0x284F JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079305 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x33 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD PUSH5 0xFFFFFFFFFF SWAP2 DUP3 AND DUP2 MSTORE SWAP1 DUP6 AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x8DFA5493C453115EE7C83F7C1ECB7BF389ADAAEADE84190F2A6DCA91CCAABBD SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x33 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH5 0xFFFFFFFFFF NOT AND PUSH5 0xFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x1037 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x69B JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0x69B JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x69B JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1096 DUP4 PUSH2 0x1B99 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x69B JUMPI PUSH1 0x40 MLOAD PUSH4 0x7E273289 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079304 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0xB83 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x1BD2 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A1D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x1121 DUP6 PUSH2 0x1B99 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x113D JUMPI PUSH2 0x113D DUP2 DUP6 DUP8 PUSH2 0x1CE5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x1179 JUMPI PUSH2 0x1158 PUSH0 DUP7 PUSH0 PUSH0 PUSH2 0x1BD2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH0 NOT ADD SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND ISZERO PUSH2 0x11A9 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0x2 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP9 SWAP4 SWAP2 DUP6 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x79D989FB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP2 PUSH2 0x69B SWAP2 PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x79D989FB SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x125C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1280 SWAP2 SWAP1 PUSH2 0x280D JUMP JUMPDEST DUP4 SLOAD PUSH1 0x1 DUP6 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x1D49 JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0xB62 JUMP JUMPDEST PUSH0 PUSH2 0x12BB PUSH0 DUP4 PUSH0 PUSH2 0x1108 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x761 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7E273289 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x69B JUMP JUMPDEST PUSH2 0x1317 PUSH2 0x1DF9 JUMP JUMPDEST PUSH2 0x131F PUSH2 0x1E1E JUMP JUMPDEST PUSH2 0x761 DUP3 DUP3 PUSH2 0x1E26 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x13AF JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x13A3 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A3D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x13CD JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x13D8 DUP2 PUSH2 0x1E38 JUMP JUMPDEST POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1435 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1432 SWAP2 DUP2 ADD SWAP1 PUSH2 0x280D JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x145D JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A3D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x148D JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH2 0xB83 DUP4 DUP4 PUSH2 0x1EE9 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x13CD JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xCF6A9A94 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1527 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x154B SWAP2 SWAP1 PUSH2 0x284F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP5 SWAP1 PUSH2 0x1580 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF1B1EE5D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST POP PUSH0 NOT DUP3 SUB PUSH2 0x1602 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH4 0x70A08231 CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x15DB JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x15FF SWAP2 SWAP1 PUSH2 0x280D JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH0 DUP3 GT PUSH2 0x1622 JUMPI PUSH1 0x40 MLOAD PUSH4 0x90633D31 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x33 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH5 0xFFFFFFFFFF AND PUSH2 0x164B SWAP1 TIMESTAMP PUSH2 0x286A JUMP JUMPDEST SWAP1 POP DUP4 PUSH5 0xFFFFFFFFFF AND PUSH0 SUB PUSH2 0x1663 JUMPI DUP1 SWAP4 POP PUSH2 0x16A3 JUMP JUMPDEST DUP1 PUSH5 0xFFFFFFFFFF AND DUP5 PUSH5 0xFFFFFFFFFF AND LT ISZERO PUSH2 0x16A3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x80BE8B59 PUSH1 0xE0 SHL DUP2 MSTORE PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x4 DUP4 ADD MSTORE DUP6 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x78A JUMP JUMPDEST PUSH1 0x35 PUSH0 DUP2 SLOAD PUSH2 0x16B1 SWAP1 PUSH2 0x2887 JUMP JUMPDEST SWAP2 DUP3 SWAP1 SSTORE POP PUSH1 0x40 MLOAD PUSH4 0x79D989FB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x4 DUP3 ADD MSTORE SWAP1 SWAP3 POP PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP1 PUSH4 0x79D989FB SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x16FE JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1722 SWAP2 SWAP1 PUSH2 0x280D JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1756 DUP7 PUSH2 0x1F3E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND DUP3 MSTORE TIMESTAMP PUSH5 0xFFFFFFFFFF SWAP1 DUP2 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP10 DUP3 AND PUSH1 0x40 SWAP5 DUP6 ADD MSTORE PUSH0 DUP9 DUP2 MSTORE PUSH1 0x32 DUP3 MSTORE DUP5 DUP2 KECCAK256 DUP7 MLOAD DUP8 DUP5 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x60 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND MUL OR DUP3 SSTORE DUP8 DUP8 ADD MLOAD PUSH1 0x1 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0x60 DUP11 ADD MLOAD PUSH1 0x80 SWAP1 SWAP11 ADD MLOAD SWAP4 SWAP1 SWAP8 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA8 SHL SUB NOT SWAP1 SWAP8 AND SWAP7 SWAP1 SWAP7 OR PUSH1 0x1 PUSH1 0x80 SHL SWAP9 DUP7 AND SWAP9 SWAP1 SWAP9 MUL SWAP8 SWAP1 SWAP8 OR PUSH5 0xFFFFFFFFFF PUSH1 0xA8 SHL NOT AND PUSH1 0x1 PUSH1 0xA8 SHL SWAP2 SWAP1 SWAP5 AND MUL SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP3 SSTORE SWAP3 DUP10 AND DUP4 MSTORE PUSH1 0x34 SWAP1 MSTORE DUP2 KECCAK256 DUP1 SLOAD DUP7 SWAP3 SWAP1 PUSH2 0x1820 SWAP1 DUP5 SWAP1 PUSH2 0x289F JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x183B SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND CALLER ADDRESS DUP8 PUSH2 0x1F75 JUMP JUMPDEST PUSH2 0x18CA CALLER DUP5 PUSH1 0x32 PUSH0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x18B6 SWAP2 SWAP1 PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP DUP3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP4 MSTORE DUP1 PUSH1 0x60 SHR PUSH1 0x20 DUP5 ADD MSTORE POP PUSH1 0x1 DUP4 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND PUSH1 0x40 DUP5 ADD MSTORE PUSH5 0xFFFFFFFFFF DUP2 PUSH1 0x80 SHR AND PUSH1 0x60 DUP5 ADD MSTORE PUSH5 0xFFFFFFFFFF DUP2 PUSH1 0xA8 SHR AND PUSH1 0x80 DUP5 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x1FAB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH5 0xFFFFFFFFFF DUP8 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE DUP1 DUP3 ADD DUP7 SWAP1 MSTORE SWAP1 MLOAD CALLER SWAP2 DUP6 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND SWAP2 PUSH32 0xEB35EECA4C5D42D89FA3326185659928510D45C4E520668AD306241D7E288315 SWAP2 SWAP1 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG4 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A1D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1972 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB611743 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x5 DUP5 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP9 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP8 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD SWAP2 DUP3 MSTORE PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND EXTCODESIZE ISZERO PUSH2 0x1B02 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x1A23 SWAP1 DUP9 SWAP1 DUP9 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x28B2 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1A5D JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1A5A SWAP2 DUP2 ADD SWAP1 PUSH2 0x28EE JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1AC4 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x1A8A JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1A8F JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH0 SUB PUSH2 0x1ABC JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP3 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ PUSH2 0x1B00 JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST POP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x1B15 DUP4 PUSH2 0x1FC2 JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1B34 JUMPI PUSH2 0x1B34 PUSH2 0x249D JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1B5E JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH2 0x1B68 JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079302 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A1D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 DUP1 PUSH2 0x1BF4 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x1CB5 JUMPI PUSH0 PUSH2 0x1C03 DUP6 PUSH2 0x108B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x1C2F JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1C42 JUMPI POP PUSH2 0x1C40 DUP2 DUP6 PUSH2 0xF29 JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x1C6B JUMPI PUSH1 0x40 MLOAD PUSH4 0xA9FBF51F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST DUP3 ISZERO PUSH2 0x1CB3 JUMPI DUP5 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP JUMPDEST PUSH0 SWAP4 DUP5 MSTORE PUSH1 0x4 ADD PUSH1 0x20 MSTORE POP POP PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x1CF0 DUP4 DUP4 DUP4 PUSH2 0x2099 JUMP JUMPDEST PUSH2 0xB83 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1D1E JUMPI PUSH1 0x40 MLOAD PUSH4 0x7E273289 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x177E802F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x78A JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1D56 DUP7 DUP7 PUSH2 0x20FD JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x1D7A JUMPI DUP4 DUP2 DUP2 PUSH2 0x1D70 JUMPI PUSH2 0x1D70 PUSH2 0x2909 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0xB62 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x1D91 JUMPI PUSH2 0x1D91 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x2119 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1E01 PUSH2 0x212A JUMP JUMPDEST PUSH2 0x13CD JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x13CD PUSH2 0x1DF9 JUMP JUMPDEST PUSH2 0x1E2E PUSH2 0x1DF9 JUMP JUMPDEST PUSH2 0x761 DUP3 DUP3 PUSH2 0x2143 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1E9E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1EC2 SWAP2 SWAP1 PUSH2 0x284F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x13D8 JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1EF2 DUP3 PUSH2 0x2173 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x1F36 JUMPI PUSH2 0xB83 DUP3 DUP3 PUSH2 0x21D6 JUMP JUMPDEST PUSH2 0x761 PUSH2 0x2276 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 GT ISZERO PUSH2 0x1F71 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x80 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x78A JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x1F83 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x2295 JUMP JUMPDEST PUSH2 0x7ED JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH2 0x1FB5 DUP4 DUP4 PUSH2 0x2302 JUMP JUMPDEST PUSH2 0xB83 CALLER PUSH0 DUP6 DUP6 DUP6 PUSH2 0x19E1 JUMP JUMPDEST PUSH0 DUP1 PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 LT PUSH2 0x2000 JUMPI PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x202C JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x204A JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x2062 JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x2076 JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x2088 JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x69B JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0xD65 JUMPI POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x20D2 JUMPI POP PUSH2 0x20D2 DUP5 DUP5 PUSH2 0xF29 JUMP JUMPDEST DUP1 PUSH2 0xD65 JUMPI POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x20EB DUP4 PUSH2 0x10C2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 PUSH2 0x2133 PUSH2 0x12E7 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x214B PUSH2 0x1DF9 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A1D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 PUSH2 0x2164 DUP5 DUP3 PUSH2 0x2961 JUMP JUMPDEST POP PUSH1 0x1 DUP2 ADD PUSH2 0x7ED DUP4 DUP3 PUSH2 0x2961 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x21A8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A3D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x21E3 DUP5 DUP5 PUSH2 0x2363 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x2204 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x2204 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x2219 JUMPI PUSH2 0x2211 PUSH2 0x2376 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x69B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2243 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x2256 JUMPI PUSH2 0x2251 PUSH2 0x238F JUMP JUMPDEST PUSH2 0x226F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x13CD JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x22F1 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x22E5 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x232B JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH0 PUSH2 0x2337 DUP4 DUP4 PUSH0 PUSH2 0x1108 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0xB83 JUMPI PUSH1 0x40 MLOAD PUSH4 0x39E35637 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x13D8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23BF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xB62 DUP2 PUSH2 0x239A JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP1 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP7 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0xB62 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x23CA JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x241A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x13D8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2446 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2451 DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2471 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x247C DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x248C DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x24C0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 DUP4 ADD PUSH0 PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP5 GT ISZERO PUSH2 0x24E0 JUMPI PUSH2 0x24E0 PUSH2 0x249D JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x250F JUMPI PUSH2 0x250F PUSH2 0x249D JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP8 LT ISZERO PUSH2 0x2526 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE DUP1 SWAP5 POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2553 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2569 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2575 DUP6 DUP3 DUP7 ADD PUSH2 0x24B1 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2591 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x259D DUP6 DUP3 DUP7 ADD PUSH2 0x24B1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x25B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x25C3 DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2591 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x25EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xB62 DUP2 PUSH2 0x2421 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x260D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2624 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x262F DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP3 POP PUSH2 0x248C PUSH1 0x20 DUP6 ADD PUSH2 0x25F9 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x264E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2659 DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x266D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x268B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2696 DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x26A6 DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x26C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x26D4 DUP8 DUP3 DUP9 ADD PUSH2 0x24B1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x26F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x2701 DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP7 POP PUSH2 0x270F PUSH1 0x20 DUP10 ADD PUSH2 0x25F9 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x2732 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2760 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x276B DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x266D DUP2 PUSH2 0x2421 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x278C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2797 DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP2 POP PUSH2 0x27A5 PUSH1 0x20 DUP5 ADD PUSH2 0x25F9 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x27C2 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x27E0 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x69B JUMPI PUSH2 0x69B PUSH2 0x27E6 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x281D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 PUSH1 0x20 DUP5 ADD DUP6 MCOPY PUSH0 SWAP4 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xD65 PUSH2 0x2849 DUP4 DUP7 PUSH2 0x2824 JUMP JUMPDEST DUP5 PUSH2 0x2824 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x285F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xB62 DUP2 PUSH2 0x2421 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x69B JUMPI PUSH2 0x69B PUSH2 0x27E6 JUMP JUMPDEST PUSH0 PUSH1 0x1 DUP3 ADD PUSH2 0x2898 JUMPI PUSH2 0x2898 PUSH2 0x27E6 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x69B JUMPI PUSH2 0x69B PUSH2 0x27E6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x28E4 SWAP1 DUP4 ADD DUP5 PUSH2 0x23CA JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x28FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xB62 DUP2 PUSH2 0x239A JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0xB83 JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x2942 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1B02 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x294E JUMP JUMPDEST DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x297B JUMPI PUSH2 0x297B PUSH2 0x249D JUMP JUMPDEST PUSH2 0x298F DUP2 PUSH2 0x2989 DUP5 SLOAD PUSH2 0x27AE JUMP JUMPDEST DUP5 PUSH2 0x291D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x29C1 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x29AA JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x1B02 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x29F0 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x29D0 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x2A0D JUMPI DUP7 DUP5 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP INVALID DUP1 0xBB 0x2B PUSH4 0x8CC20BC4 0xD0 0xA6 0xD PUSH7 0x940F3AB4A00C1D PUSH28 0x313497CA82FB0B4AB0079300360894A13BA1A3210667C828492DB98D 0xCA RETURNDATACOPY KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCA264697066735822122004 0xAA ISZERO 0x2A SWAP3 TLOAD 0xDF PUSH22 0x3087F90FCC9CB207EB0313B5AA4B3FB4C0946677E83B 0x1F 0x22 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"1740:12397:67:-:0;;;1084:4:33;1041:48;;5724:72:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5781:11;-1:-1:-1;;;;;1540:34:73;;1536:65;;1583:18;;-1:-1:-1;;;1583:18:73;;;;;;;;;;;1536:65;1607:22;:20;:22::i;:::-;-1:-1:-1;;;;;1635:25:73;;;-1:-1:-1;1740:12397:67;;7709:422:32;3147:66;7898:15;;;;;;;7894:76;;;7936:23;;-1:-1:-1;;;7936:23:32;;;;;;;;;;;7894:76;7983:14;;-1:-1:-1;;;;;7983:14:32;;;:34;7979:146;;8033:33;;-1:-1:-1;;;;;;8033:33:32;-1:-1:-1;;;;;8033:33:32;;;;;8085:29;;474:50:101;;;8085:29:32;;462:2:101;447:18;8085:29:32;;;;;;;7979:146;7758:373;7709:422::o;14:311:101:-;105:6;158:2;146:9;137:7;133:23;129:32;126:52;;;174:1;171;164:12;126:52;200:16;;-1:-1:-1;;;;;245:31:101;;235:42;;225:70;;291:1;288;281:12;225:70;314:5;14:311;-1:-1:-1;;;14:311:101:o;330:200::-;1740:12397:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@UPGRADE_INTERFACE_VERSION_7238":{"entryPoint":null,"id":7238,"parameterSlots":0,"returnSlots":0},"@__Cooler_init_18291":{"entryPoint":4879,"id":18291,"parameterSlots":2,"returnSlots":0},"@__ERC721_init_1871":{"entryPoint":7718,"id":1871,"parameterSlots":2,"returnSlots":0},"@__ERC721_init_unchained_1899":{"entryPoint":8515,"id":1899,"parameterSlots":2,"returnSlots":0},"@__PolicyPoolComponent_init_25530":{"entryPoint":7710,"id":25530,"parameterSlots":0,"returnSlots":0},"@_approve_2715":{"entryPoint":4347,"id":2715,"parameterSlots":3,"returnSlots":0},"@_approve_2789":{"entryPoint":7122,"id":2789,"parameterSlots":4,"returnSlots":0},"@_authorizeUpgrade_25541":{"entryPoint":5071,"id":25541,"parameterSlots":1,"returnSlots":0},"@_baseURI_2055":{"entryPoint":null,"id":2055,"parameterSlots":0,"returnSlots":1},"@_burn_2589":{"entryPoint":4783,"id":2589,"parameterSlots":1,"returnSlots":0},"@_checkAuthorized_2335":{"entryPoint":7397,"id":2335,"parameterSlots":3,"returnSlots":0},"@_checkInitializing_7126":{"entryPoint":7673,"id":7126,"parameterSlots":0,"returnSlots":0},"@_checkNonPayable_6903":{"entryPoint":8822,"id":6903,"parameterSlots":0,"returnSlots":0},"@_checkNotDelegated_7332":{"entryPoint":5271,"id":7332,"parameterSlots":0,"returnSlots":0},"@_checkProxy_7316":{"entryPoint":4905,"id":7316,"parameterSlots":0,"returnSlots":0},"@_computeCurrentValue_18786":{"entryPoint":4618,"id":18786,"parameterSlots":1,"returnSlots":1},"@_getApproved_2262":{"entryPoint":4290,"id":2262,"parameterSlots":1,"returnSlots":1},"@_getERC721Storage_1855":{"entryPoint":null,"id":1855,"parameterSlots":0,"returnSlots":1},"@_getInitializableStorage_7217":{"entryPoint":4839,"id":7217,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_7203":{"entryPoint":null,"id":7203,"parameterSlots":0,"returnSlots":1},"@_isAuthorized_2298":{"entryPoint":8345,"id":2298,"parameterSlots":3,"returnSlots":1},"@_isInitializing_7194":{"entryPoint":8490,"id":7194,"parameterSlots":0,"returnSlots":1},"@_mint_2511":{"entryPoint":8962,"id":2511,"parameterSlots":2,"returnSlots":0},"@_msgSender_2892":{"entryPoint":null,"id":2892,"parameterSlots":0,"returnSlots":1},"@_ownerOf_2242":{"entryPoint":7065,"id":2242,"parameterSlots":1,"returnSlots":1},"@_requireOwned_2863":{"entryPoint":4235,"id":2863,"parameterSlots":1,"returnSlots":1},"@_safeMint_2556":{"entryPoint":8107,"id":2556,"parameterSlots":3,"returnSlots":0},"@_safeTransferFrom_9330":{"entryPoint":8853,"id":9330,"parameterSlots":5,"returnSlots":1},"@_scheduleWithdrawal_18624":{"entryPoint":5344,"id":18624,"parameterSlots":3,"returnSlots":1},"@_setApprovalForAll_2834":{"entryPoint":6450,"id":2834,"parameterSlots":3,"returnSlots":0},"@_setImplementation_6683":{"entryPoint":8563,"id":6683,"parameterSlots":1,"returnSlots":0},"@_update_2461":{"entryPoint":4360,"id":2461,"parameterSlots":3,"returnSlots":1},"@_upgradeToAndCallUUPS_7383":{"entryPoint":5083,"id":7383,"parameterSlots":2,"returnSlots":0},"@_upgradeValidations_25558":{"entryPoint":7736,"id":25558,"parameterSlots":1,"returnSlots":0},"@approve_2071":{"entryPoint":1878,"id":2071,"parameterSlots":2,"returnSlots":0},"@balanceOf_1965":{"entryPoint":3267,"id":1965,"parameterSlots":1,"returnSlots":1},"@bubbleRevert_10900":{"entryPoint":9103,"id":10900,"parameterSlots":0,"returnSlots":0},"@checkOnERC721Received_9593":{"entryPoint":6625,"id":9593,"parameterSlots":5,"returnSlots":0},"@cooldownPeriod_18354":{"entryPoint":null,"id":18354,"parameterSlots":3,"returnSlots":1},"@currency_25603":{"entryPoint":3747,"id":25603,"parameterSlots":0,"returnSlots":1},"@delegatecallNoReturn_10862":{"entryPoint":9059,"id":10862,"parameterSlots":2,"returnSlots":1},"@executeWithdrawal_18758":{"entryPoint":2035,"id":18758,"parameterSlots":1,"returnSlots":0},"@functionDelegateCall_9894":{"entryPoint":8662,"id":9894,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_11669":{"entryPoint":null,"id":11669,"parameterSlots":1,"returnSlots":1},"@getApproved_2088":{"entryPoint":1858,"id":2088,"parameterSlots":1,"returnSlots":1},"@getCurrentValue_18818":{"entryPoint":2837,"id":18818,"parameterSlots":1,"returnSlots":1},"@getImplementation_6656":{"entryPoint":null,"id":6656,"parameterSlots":0,"returnSlots":1},"@getWithdrawalRequestInfo_18832":{"entryPoint":null,"id":18832,"parameterSlots":1,"returnSlots":1},"@initialize_18273":{"entryPoint":2952,"id":18273,"parameterSlots":2,"returnSlots":0},"@isApprovedForAll_2128":{"entryPoint":3881,"id":2128,"parameterSlots":2,"returnSlots":1},"@log10_15725":{"entryPoint":8130,"id":15725,"parameterSlots":1,"returnSlots":1},"@min_14599":{"entryPoint":4768,"id":14599,"parameterSlots":2,"returnSlots":1},"@mul512_14312":{"entryPoint":8445,"id":14312,"parameterSlots":2,"returnSlots":2},"@mulDiv_14799":{"entryPoint":7497,"id":14799,"parameterSlots":3,"returnSlots":1},"@name_1994":{"entryPoint":1697,"id":1994,"parameterSlots":0,"returnSlots":1},"@ownerOf_1978":{"entryPoint":3257,"id":1978,"parameterSlots":1,"returnSlots":1},"@panic_11416":{"entryPoint":8473,"id":11416,"parameterSlots":1,"returnSlots":0},"@pendingWithdrawals_18335":{"entryPoint":null,"id":18335,"parameterSlots":1,"returnSlots":1},"@policyPool_25592":{"entryPoint":null,"id":25592,"parameterSlots":0,"returnSlots":1},"@proxiableUUID_7274":{"entryPoint":3230,"id":7274,"parameterSlots":0,"returnSlots":1},"@returnDataSize_10886":{"entryPoint":null,"id":10886,"parameterSlots":0,"returnSlots":1},"@returnData_10894":{"entryPoint":9078,"id":10894,"parameterSlots":0,"returnSlots":1},"@safeTransferFrom_2192":{"entryPoint":2921,"id":2192,"parameterSlots":3,"returnSlots":0},"@safeTransferFrom_2222":{"entryPoint":3448,"id":2222,"parameterSlots":4,"returnSlots":0},"@safeTransferFrom_8979":{"entryPoint":8053,"id":8979,"parameterSlots":4,"returnSlots":0},"@scheduleWithdrawalWithPermit_18430":{"entryPoint":3584,"id":18430,"parameterSlots":7,"returnSlots":1},"@scheduleWithdrawal_18450":{"entryPoint":3417,"id":18450,"parameterSlots":3,"returnSlots":1},"@setApprovalForAll_2104":{"entryPoint":3437,"id":2104,"parameterSlots":2,"returnSlots":0},"@setCooldownPeriod_18378":{"entryPoint":3957,"id":18378,"parameterSlots":2,"returnSlots":0},"@supportsInterface_18320":{"entryPoint":1639,"id":18320,"parameterSlots":1,"returnSlots":1},"@supportsInterface_1930":{"entryPoint":4103,"id":1930,"parameterSlots":1,"returnSlots":1},"@supportsInterface_25582":{"entryPoint":4182,"id":25582,"parameterSlots":1,"returnSlots":1},"@supportsInterface_3667":{"entryPoint":null,"id":3667,"parameterSlots":1,"returnSlots":1},"@symbol_2010":{"entryPoint":3355,"id":2010,"parameterSlots":0,"returnSlots":1},"@ternary_14561":{"entryPoint":null,"id":14561,"parameterSlots":3,"returnSlots":1},"@toString_11874":{"entryPoint":6921,"id":11874,"parameterSlots":1,"returnSlots":1},"@toUint128_16389":{"entryPoint":7998,"id":16389,"parameterSlots":1,"returnSlots":1},"@toUint_17678":{"entryPoint":null,"id":17678,"parameterSlots":1,"returnSlots":1},"@tokenURI_2046":{"entryPoint":3472,"id":2046,"parameterSlots":1,"returnSlots":1},"@transferFrom_2174":{"entryPoint":1893,"id":2174,"parameterSlots":3,"returnSlots":0},"@upgradeToAndCall_6719":{"entryPoint":7913,"id":6719,"parameterSlots":2,"returnSlots":0},"@upgradeToAndCall_7294":{"entryPoint":3203,"id":7294,"parameterSlots":2,"returnSlots":0},"abi_decode_string":{"entryPoint":9393,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":9694,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":10063,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":9311,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr":{"entryPoint":9848,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_bool":{"entryPoint":9789,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes_memory_ptr":{"entryPoint":9639,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":9269,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":9135,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4_fromMemory":{"entryPoint":10478,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory":{"entryPoint":10319,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IEToken_$28869":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IEToken_$28869t_addresst_uint256":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_contract$_IEToken_$28869t_uint40":{"entryPoint":10107,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IEToken_$28869t_uint40t_uint256":{"entryPoint":9746,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_contract$_IEToken_$28869t_uint40t_uint256t_uint256t_uint8t_bytes32t_bytes32":{"entryPoint":9952,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr":{"entryPoint":9538,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256":{"entryPoint":9226,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":10253,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint40":{"entryPoint":9721,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_string":{"entryPoint":10276,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string_memory_ptr":{"entryPoint":9162,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":10299,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":10418,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":8,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_address__to_t_address_t_uint256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IEToken_$28869__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IEToken_$28869_t_uint256_t_address_t_address__to_t_address_t_uint256_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_128_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":9208,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_WithdrawalRequest_$18156_memory_ptr__to_t_struct$_WithdrawalRequest_$18156_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_WithdrawalRequest_$18156_storage__to_t_struct$_WithdrawalRequest_$18156_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint128_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint40__to_t_uint256_t_uint40__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint40__to_t_uint40__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint40_t_uint40__to_t_uint40_t_uint40__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint40_t_userDefinedValueType$_Scale_$18847_t_uint256__to_t_uint40_t_uint96_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":10399,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint40":{"entryPoint":10346,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":10234,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":10525,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":10593,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":10158,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"increment_t_uint256":{"entryPoint":10375,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":10214,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":10505,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":9373,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":9249,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_bytes4":{"entryPoint":9114,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:21094:101","nodeType":"YulBlock","src":"0:21094:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"58:87:101","nodeType":"YulBlock","src":"58:87:101","statements":[{"body":{"nativeSrc":"123:16:101","nodeType":"YulBlock","src":"123:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:101","nodeType":"YulLiteral","src":"132:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:101","nodeType":"YulLiteral","src":"135:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:101","nodeType":"YulIdentifier","src":"125:6:101"},"nativeSrc":"125:12:101","nodeType":"YulFunctionCall","src":"125:12:101"},"nativeSrc":"125:12:101","nodeType":"YulExpressionStatement","src":"125:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"81:5:101","nodeType":"YulIdentifier","src":"81:5:101"},{"arguments":[{"name":"value","nativeSrc":"92:5:101","nodeType":"YulIdentifier","src":"92:5:101"},{"arguments":[{"kind":"number","nativeSrc":"103:3:101","nodeType":"YulLiteral","src":"103:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"108:10:101","nodeType":"YulLiteral","src":"108:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"99:3:101","nodeType":"YulIdentifier","src":"99:3:101"},"nativeSrc":"99:20:101","nodeType":"YulFunctionCall","src":"99:20:101"}],"functionName":{"name":"and","nativeSrc":"88:3:101","nodeType":"YulIdentifier","src":"88:3:101"},"nativeSrc":"88:32:101","nodeType":"YulFunctionCall","src":"88:32:101"}],"functionName":{"name":"eq","nativeSrc":"78:2:101","nodeType":"YulIdentifier","src":"78:2:101"},"nativeSrc":"78:43:101","nodeType":"YulFunctionCall","src":"78:43:101"}],"functionName":{"name":"iszero","nativeSrc":"71:6:101","nodeType":"YulIdentifier","src":"71:6:101"},"nativeSrc":"71:51:101","nodeType":"YulFunctionCall","src":"71:51:101"},"nativeSrc":"68:71:101","nodeType":"YulIf","src":"68:71:101"}]},"name":"validator_revert_bytes4","nativeSrc":"14:131:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"47:5:101","nodeType":"YulTypedName","src":"47:5:101","type":""}],"src":"14:131:101"},{"body":{"nativeSrc":"219:176:101","nodeType":"YulBlock","src":"219:176:101","statements":[{"body":{"nativeSrc":"265:16:101","nodeType":"YulBlock","src":"265:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"274:1:101","nodeType":"YulLiteral","src":"274:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"277:1:101","nodeType":"YulLiteral","src":"277:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"267:6:101","nodeType":"YulIdentifier","src":"267:6:101"},"nativeSrc":"267:12:101","nodeType":"YulFunctionCall","src":"267:12:101"},"nativeSrc":"267:12:101","nodeType":"YulExpressionStatement","src":"267:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"240:7:101","nodeType":"YulIdentifier","src":"240:7:101"},{"name":"headStart","nativeSrc":"249:9:101","nodeType":"YulIdentifier","src":"249:9:101"}],"functionName":{"name":"sub","nativeSrc":"236:3:101","nodeType":"YulIdentifier","src":"236:3:101"},"nativeSrc":"236:23:101","nodeType":"YulFunctionCall","src":"236:23:101"},{"kind":"number","nativeSrc":"261:2:101","nodeType":"YulLiteral","src":"261:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"232:3:101","nodeType":"YulIdentifier","src":"232:3:101"},"nativeSrc":"232:32:101","nodeType":"YulFunctionCall","src":"232:32:101"},"nativeSrc":"229:52:101","nodeType":"YulIf","src":"229:52:101"},{"nativeSrc":"290:36:101","nodeType":"YulVariableDeclaration","src":"290:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"316:9:101","nodeType":"YulIdentifier","src":"316:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"303:12:101","nodeType":"YulIdentifier","src":"303:12:101"},"nativeSrc":"303:23:101","nodeType":"YulFunctionCall","src":"303:23:101"},"variables":[{"name":"value","nativeSrc":"294:5:101","nodeType":"YulTypedName","src":"294:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"359:5:101","nodeType":"YulIdentifier","src":"359:5:101"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"335:23:101","nodeType":"YulIdentifier","src":"335:23:101"},"nativeSrc":"335:30:101","nodeType":"YulFunctionCall","src":"335:30:101"},"nativeSrc":"335:30:101","nodeType":"YulExpressionStatement","src":"335:30:101"},{"nativeSrc":"374:15:101","nodeType":"YulAssignment","src":"374:15:101","value":{"name":"value","nativeSrc":"384:5:101","nodeType":"YulIdentifier","src":"384:5:101"},"variableNames":[{"name":"value0","nativeSrc":"374:6:101","nodeType":"YulIdentifier","src":"374:6:101"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"150:245:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"185:9:101","nodeType":"YulTypedName","src":"185:9:101","type":""},{"name":"dataEnd","nativeSrc":"196:7:101","nodeType":"YulTypedName","src":"196:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"208:6:101","nodeType":"YulTypedName","src":"208:6:101","type":""}],"src":"150:245:101"},{"body":{"nativeSrc":"495:92:101","nodeType":"YulBlock","src":"495:92:101","statements":[{"nativeSrc":"505:26:101","nodeType":"YulAssignment","src":"505:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"517:9:101","nodeType":"YulIdentifier","src":"517:9:101"},{"kind":"number","nativeSrc":"528:2:101","nodeType":"YulLiteral","src":"528:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"513:3:101","nodeType":"YulIdentifier","src":"513:3:101"},"nativeSrc":"513:18:101","nodeType":"YulFunctionCall","src":"513:18:101"},"variableNames":[{"name":"tail","nativeSrc":"505:4:101","nodeType":"YulIdentifier","src":"505:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"547:9:101","nodeType":"YulIdentifier","src":"547:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"572:6:101","nodeType":"YulIdentifier","src":"572:6:101"}],"functionName":{"name":"iszero","nativeSrc":"565:6:101","nodeType":"YulIdentifier","src":"565:6:101"},"nativeSrc":"565:14:101","nodeType":"YulFunctionCall","src":"565:14:101"}],"functionName":{"name":"iszero","nativeSrc":"558:6:101","nodeType":"YulIdentifier","src":"558:6:101"},"nativeSrc":"558:22:101","nodeType":"YulFunctionCall","src":"558:22:101"}],"functionName":{"name":"mstore","nativeSrc":"540:6:101","nodeType":"YulIdentifier","src":"540:6:101"},"nativeSrc":"540:41:101","nodeType":"YulFunctionCall","src":"540:41:101"},"nativeSrc":"540:41:101","nodeType":"YulExpressionStatement","src":"540:41:101"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"400:187:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"464:9:101","nodeType":"YulTypedName","src":"464:9:101","type":""},{"name":"value0","nativeSrc":"475:6:101","nodeType":"YulTypedName","src":"475:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"486:4:101","nodeType":"YulTypedName","src":"486:4:101","type":""}],"src":"400:187:101"},{"body":{"nativeSrc":"653:239:101","nodeType":"YulBlock","src":"653:239:101","statements":[{"nativeSrc":"663:26:101","nodeType":"YulVariableDeclaration","src":"663:26:101","value":{"arguments":[{"name":"value","nativeSrc":"683:5:101","nodeType":"YulIdentifier","src":"683:5:101"}],"functionName":{"name":"mload","nativeSrc":"677:5:101","nodeType":"YulIdentifier","src":"677:5:101"},"nativeSrc":"677:12:101","nodeType":"YulFunctionCall","src":"677:12:101"},"variables":[{"name":"length","nativeSrc":"667:6:101","nodeType":"YulTypedName","src":"667:6:101","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"705:3:101","nodeType":"YulIdentifier","src":"705:3:101"},{"name":"length","nativeSrc":"710:6:101","nodeType":"YulIdentifier","src":"710:6:101"}],"functionName":{"name":"mstore","nativeSrc":"698:6:101","nodeType":"YulIdentifier","src":"698:6:101"},"nativeSrc":"698:19:101","nodeType":"YulFunctionCall","src":"698:19:101"},"nativeSrc":"698:19:101","nodeType":"YulExpressionStatement","src":"698:19:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"736:3:101","nodeType":"YulIdentifier","src":"736:3:101"},{"kind":"number","nativeSrc":"741:4:101","nodeType":"YulLiteral","src":"741:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"732:3:101","nodeType":"YulIdentifier","src":"732:3:101"},"nativeSrc":"732:14:101","nodeType":"YulFunctionCall","src":"732:14:101"},{"arguments":[{"name":"value","nativeSrc":"752:5:101","nodeType":"YulIdentifier","src":"752:5:101"},{"kind":"number","nativeSrc":"759:4:101","nodeType":"YulLiteral","src":"759:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"748:3:101","nodeType":"YulIdentifier","src":"748:3:101"},"nativeSrc":"748:16:101","nodeType":"YulFunctionCall","src":"748:16:101"},{"name":"length","nativeSrc":"766:6:101","nodeType":"YulIdentifier","src":"766:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"726:5:101","nodeType":"YulIdentifier","src":"726:5:101"},"nativeSrc":"726:47:101","nodeType":"YulFunctionCall","src":"726:47:101"},"nativeSrc":"726:47:101","nodeType":"YulExpressionStatement","src":"726:47:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"797:3:101","nodeType":"YulIdentifier","src":"797:3:101"},{"name":"length","nativeSrc":"802:6:101","nodeType":"YulIdentifier","src":"802:6:101"}],"functionName":{"name":"add","nativeSrc":"793:3:101","nodeType":"YulIdentifier","src":"793:3:101"},"nativeSrc":"793:16:101","nodeType":"YulFunctionCall","src":"793:16:101"},{"kind":"number","nativeSrc":"811:4:101","nodeType":"YulLiteral","src":"811:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"789:3:101","nodeType":"YulIdentifier","src":"789:3:101"},"nativeSrc":"789:27:101","nodeType":"YulFunctionCall","src":"789:27:101"},{"kind":"number","nativeSrc":"818:1:101","nodeType":"YulLiteral","src":"818:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"782:6:101","nodeType":"YulIdentifier","src":"782:6:101"},"nativeSrc":"782:38:101","nodeType":"YulFunctionCall","src":"782:38:101"},"nativeSrc":"782:38:101","nodeType":"YulExpressionStatement","src":"782:38:101"},{"nativeSrc":"829:57:101","nodeType":"YulAssignment","src":"829:57:101","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"844:3:101","nodeType":"YulIdentifier","src":"844:3:101"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"857:6:101","nodeType":"YulIdentifier","src":"857:6:101"},{"kind":"number","nativeSrc":"865:2:101","nodeType":"YulLiteral","src":"865:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"853:3:101","nodeType":"YulIdentifier","src":"853:3:101"},"nativeSrc":"853:15:101","nodeType":"YulFunctionCall","src":"853:15:101"},{"arguments":[{"kind":"number","nativeSrc":"874:2:101","nodeType":"YulLiteral","src":"874:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"870:3:101","nodeType":"YulIdentifier","src":"870:3:101"},"nativeSrc":"870:7:101","nodeType":"YulFunctionCall","src":"870:7:101"}],"functionName":{"name":"and","nativeSrc":"849:3:101","nodeType":"YulIdentifier","src":"849:3:101"},"nativeSrc":"849:29:101","nodeType":"YulFunctionCall","src":"849:29:101"}],"functionName":{"name":"add","nativeSrc":"840:3:101","nodeType":"YulIdentifier","src":"840:3:101"},"nativeSrc":"840:39:101","nodeType":"YulFunctionCall","src":"840:39:101"},{"kind":"number","nativeSrc":"881:4:101","nodeType":"YulLiteral","src":"881:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"836:3:101","nodeType":"YulIdentifier","src":"836:3:101"},"nativeSrc":"836:50:101","nodeType":"YulFunctionCall","src":"836:50:101"},"variableNames":[{"name":"end","nativeSrc":"829:3:101","nodeType":"YulIdentifier","src":"829:3:101"}]}]},"name":"abi_encode_string_memory_ptr","nativeSrc":"592:300:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"630:5:101","nodeType":"YulTypedName","src":"630:5:101","type":""},{"name":"pos","nativeSrc":"637:3:101","nodeType":"YulTypedName","src":"637:3:101","type":""}],"returnVariables":[{"name":"end","nativeSrc":"645:3:101","nodeType":"YulTypedName","src":"645:3:101","type":""}],"src":"592:300:101"},{"body":{"nativeSrc":"1018:110:101","nodeType":"YulBlock","src":"1018:110:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1035:9:101","nodeType":"YulIdentifier","src":"1035:9:101"},{"kind":"number","nativeSrc":"1046:2:101","nodeType":"YulLiteral","src":"1046:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"1028:6:101","nodeType":"YulIdentifier","src":"1028:6:101"},"nativeSrc":"1028:21:101","nodeType":"YulFunctionCall","src":"1028:21:101"},"nativeSrc":"1028:21:101","nodeType":"YulExpressionStatement","src":"1028:21:101"},{"nativeSrc":"1058:64:101","nodeType":"YulAssignment","src":"1058:64:101","value":{"arguments":[{"name":"value0","nativeSrc":"1095:6:101","nodeType":"YulIdentifier","src":"1095:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"1107:9:101","nodeType":"YulIdentifier","src":"1107:9:101"},{"kind":"number","nativeSrc":"1118:2:101","nodeType":"YulLiteral","src":"1118:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1103:3:101","nodeType":"YulIdentifier","src":"1103:3:101"},"nativeSrc":"1103:18:101","nodeType":"YulFunctionCall","src":"1103:18:101"}],"functionName":{"name":"abi_encode_string_memory_ptr","nativeSrc":"1066:28:101","nodeType":"YulIdentifier","src":"1066:28:101"},"nativeSrc":"1066:56:101","nodeType":"YulFunctionCall","src":"1066:56:101"},"variableNames":[{"name":"tail","nativeSrc":"1058:4:101","nodeType":"YulIdentifier","src":"1058:4:101"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"897:231:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"987:9:101","nodeType":"YulTypedName","src":"987:9:101","type":""},{"name":"value0","nativeSrc":"998:6:101","nodeType":"YulTypedName","src":"998:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1009:4:101","nodeType":"YulTypedName","src":"1009:4:101","type":""}],"src":"897:231:101"},{"body":{"nativeSrc":"1203:156:101","nodeType":"YulBlock","src":"1203:156:101","statements":[{"body":{"nativeSrc":"1249:16:101","nodeType":"YulBlock","src":"1249:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1258:1:101","nodeType":"YulLiteral","src":"1258:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1261:1:101","nodeType":"YulLiteral","src":"1261:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1251:6:101","nodeType":"YulIdentifier","src":"1251:6:101"},"nativeSrc":"1251:12:101","nodeType":"YulFunctionCall","src":"1251:12:101"},"nativeSrc":"1251:12:101","nodeType":"YulExpressionStatement","src":"1251:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1224:7:101","nodeType":"YulIdentifier","src":"1224:7:101"},{"name":"headStart","nativeSrc":"1233:9:101","nodeType":"YulIdentifier","src":"1233:9:101"}],"functionName":{"name":"sub","nativeSrc":"1220:3:101","nodeType":"YulIdentifier","src":"1220:3:101"},"nativeSrc":"1220:23:101","nodeType":"YulFunctionCall","src":"1220:23:101"},{"kind":"number","nativeSrc":"1245:2:101","nodeType":"YulLiteral","src":"1245:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1216:3:101","nodeType":"YulIdentifier","src":"1216:3:101"},"nativeSrc":"1216:32:101","nodeType":"YulFunctionCall","src":"1216:32:101"},"nativeSrc":"1213:52:101","nodeType":"YulIf","src":"1213:52:101"},{"nativeSrc":"1274:14:101","nodeType":"YulVariableDeclaration","src":"1274:14:101","value":{"kind":"number","nativeSrc":"1287:1:101","nodeType":"YulLiteral","src":"1287:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1278:5:101","nodeType":"YulTypedName","src":"1278:5:101","type":""}]},{"nativeSrc":"1297:32:101","nodeType":"YulAssignment","src":"1297:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1319:9:101","nodeType":"YulIdentifier","src":"1319:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"1306:12:101","nodeType":"YulIdentifier","src":"1306:12:101"},"nativeSrc":"1306:23:101","nodeType":"YulFunctionCall","src":"1306:23:101"},"variableNames":[{"name":"value","nativeSrc":"1297:5:101","nodeType":"YulIdentifier","src":"1297:5:101"}]},{"nativeSrc":"1338:15:101","nodeType":"YulAssignment","src":"1338:15:101","value":{"name":"value","nativeSrc":"1348:5:101","nodeType":"YulIdentifier","src":"1348:5:101"},"variableNames":[{"name":"value0","nativeSrc":"1338:6:101","nodeType":"YulIdentifier","src":"1338:6:101"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"1133:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1169:9:101","nodeType":"YulTypedName","src":"1169:9:101","type":""},{"name":"dataEnd","nativeSrc":"1180:7:101","nodeType":"YulTypedName","src":"1180:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1192:6:101","nodeType":"YulTypedName","src":"1192:6:101","type":""}],"src":"1133:226:101"},{"body":{"nativeSrc":"1465:102:101","nodeType":"YulBlock","src":"1465:102:101","statements":[{"nativeSrc":"1475:26:101","nodeType":"YulAssignment","src":"1475:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1487:9:101","nodeType":"YulIdentifier","src":"1487:9:101"},{"kind":"number","nativeSrc":"1498:2:101","nodeType":"YulLiteral","src":"1498:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1483:3:101","nodeType":"YulIdentifier","src":"1483:3:101"},"nativeSrc":"1483:18:101","nodeType":"YulFunctionCall","src":"1483:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1475:4:101","nodeType":"YulIdentifier","src":"1475:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1517:9:101","nodeType":"YulIdentifier","src":"1517:9:101"},{"arguments":[{"name":"value0","nativeSrc":"1532:6:101","nodeType":"YulIdentifier","src":"1532:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1548:3:101","nodeType":"YulLiteral","src":"1548:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"1553:1:101","nodeType":"YulLiteral","src":"1553:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1544:3:101","nodeType":"YulIdentifier","src":"1544:3:101"},"nativeSrc":"1544:11:101","nodeType":"YulFunctionCall","src":"1544:11:101"},{"kind":"number","nativeSrc":"1557:1:101","nodeType":"YulLiteral","src":"1557:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1540:3:101","nodeType":"YulIdentifier","src":"1540:3:101"},"nativeSrc":"1540:19:101","nodeType":"YulFunctionCall","src":"1540:19:101"}],"functionName":{"name":"and","nativeSrc":"1528:3:101","nodeType":"YulIdentifier","src":"1528:3:101"},"nativeSrc":"1528:32:101","nodeType":"YulFunctionCall","src":"1528:32:101"}],"functionName":{"name":"mstore","nativeSrc":"1510:6:101","nodeType":"YulIdentifier","src":"1510:6:101"},"nativeSrc":"1510:51:101","nodeType":"YulFunctionCall","src":"1510:51:101"},"nativeSrc":"1510:51:101","nodeType":"YulExpressionStatement","src":"1510:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"1364:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1434:9:101","nodeType":"YulTypedName","src":"1434:9:101","type":""},{"name":"value0","nativeSrc":"1445:6:101","nodeType":"YulTypedName","src":"1445:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1456:4:101","nodeType":"YulTypedName","src":"1456:4:101","type":""}],"src":"1364:203:101"},{"body":{"nativeSrc":"1617:86:101","nodeType":"YulBlock","src":"1617:86:101","statements":[{"body":{"nativeSrc":"1681:16:101","nodeType":"YulBlock","src":"1681:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1690:1:101","nodeType":"YulLiteral","src":"1690:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1693:1:101","nodeType":"YulLiteral","src":"1693:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1683:6:101","nodeType":"YulIdentifier","src":"1683:6:101"},"nativeSrc":"1683:12:101","nodeType":"YulFunctionCall","src":"1683:12:101"},"nativeSrc":"1683:12:101","nodeType":"YulExpressionStatement","src":"1683:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1640:5:101","nodeType":"YulIdentifier","src":"1640:5:101"},{"arguments":[{"name":"value","nativeSrc":"1651:5:101","nodeType":"YulIdentifier","src":"1651:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1666:3:101","nodeType":"YulLiteral","src":"1666:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"1671:1:101","nodeType":"YulLiteral","src":"1671:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1662:3:101","nodeType":"YulIdentifier","src":"1662:3:101"},"nativeSrc":"1662:11:101","nodeType":"YulFunctionCall","src":"1662:11:101"},{"kind":"number","nativeSrc":"1675:1:101","nodeType":"YulLiteral","src":"1675:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1658:3:101","nodeType":"YulIdentifier","src":"1658:3:101"},"nativeSrc":"1658:19:101","nodeType":"YulFunctionCall","src":"1658:19:101"}],"functionName":{"name":"and","nativeSrc":"1647:3:101","nodeType":"YulIdentifier","src":"1647:3:101"},"nativeSrc":"1647:31:101","nodeType":"YulFunctionCall","src":"1647:31:101"}],"functionName":{"name":"eq","nativeSrc":"1637:2:101","nodeType":"YulIdentifier","src":"1637:2:101"},"nativeSrc":"1637:42:101","nodeType":"YulFunctionCall","src":"1637:42:101"}],"functionName":{"name":"iszero","nativeSrc":"1630:6:101","nodeType":"YulIdentifier","src":"1630:6:101"},"nativeSrc":"1630:50:101","nodeType":"YulFunctionCall","src":"1630:50:101"},"nativeSrc":"1627:70:101","nodeType":"YulIf","src":"1627:70:101"}]},"name":"validator_revert_address","nativeSrc":"1572:131:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"1606:5:101","nodeType":"YulTypedName","src":"1606:5:101","type":""}],"src":"1572:131:101"},{"body":{"nativeSrc":"1795:280:101","nodeType":"YulBlock","src":"1795:280:101","statements":[{"body":{"nativeSrc":"1841:16:101","nodeType":"YulBlock","src":"1841:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1850:1:101","nodeType":"YulLiteral","src":"1850:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1853:1:101","nodeType":"YulLiteral","src":"1853:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1843:6:101","nodeType":"YulIdentifier","src":"1843:6:101"},"nativeSrc":"1843:12:101","nodeType":"YulFunctionCall","src":"1843:12:101"},"nativeSrc":"1843:12:101","nodeType":"YulExpressionStatement","src":"1843:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1816:7:101","nodeType":"YulIdentifier","src":"1816:7:101"},{"name":"headStart","nativeSrc":"1825:9:101","nodeType":"YulIdentifier","src":"1825:9:101"}],"functionName":{"name":"sub","nativeSrc":"1812:3:101","nodeType":"YulIdentifier","src":"1812:3:101"},"nativeSrc":"1812:23:101","nodeType":"YulFunctionCall","src":"1812:23:101"},{"kind":"number","nativeSrc":"1837:2:101","nodeType":"YulLiteral","src":"1837:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1808:3:101","nodeType":"YulIdentifier","src":"1808:3:101"},"nativeSrc":"1808:32:101","nodeType":"YulFunctionCall","src":"1808:32:101"},"nativeSrc":"1805:52:101","nodeType":"YulIf","src":"1805:52:101"},{"nativeSrc":"1866:36:101","nodeType":"YulVariableDeclaration","src":"1866:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1892:9:101","nodeType":"YulIdentifier","src":"1892:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"1879:12:101","nodeType":"YulIdentifier","src":"1879:12:101"},"nativeSrc":"1879:23:101","nodeType":"YulFunctionCall","src":"1879:23:101"},"variables":[{"name":"value","nativeSrc":"1870:5:101","nodeType":"YulTypedName","src":"1870:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1936:5:101","nodeType":"YulIdentifier","src":"1936:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"1911:24:101","nodeType":"YulIdentifier","src":"1911:24:101"},"nativeSrc":"1911:31:101","nodeType":"YulFunctionCall","src":"1911:31:101"},"nativeSrc":"1911:31:101","nodeType":"YulExpressionStatement","src":"1911:31:101"},{"nativeSrc":"1951:15:101","nodeType":"YulAssignment","src":"1951:15:101","value":{"name":"value","nativeSrc":"1961:5:101","nodeType":"YulIdentifier","src":"1961:5:101"},"variableNames":[{"name":"value0","nativeSrc":"1951:6:101","nodeType":"YulIdentifier","src":"1951:6:101"}]},{"nativeSrc":"1975:16:101","nodeType":"YulVariableDeclaration","src":"1975:16:101","value":{"kind":"number","nativeSrc":"1990:1:101","nodeType":"YulLiteral","src":"1990:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"1979:7:101","nodeType":"YulTypedName","src":"1979:7:101","type":""}]},{"nativeSrc":"2000:43:101","nodeType":"YulAssignment","src":"2000:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2028:9:101","nodeType":"YulIdentifier","src":"2028:9:101"},{"kind":"number","nativeSrc":"2039:2:101","nodeType":"YulLiteral","src":"2039:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2024:3:101","nodeType":"YulIdentifier","src":"2024:3:101"},"nativeSrc":"2024:18:101","nodeType":"YulFunctionCall","src":"2024:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"2011:12:101","nodeType":"YulIdentifier","src":"2011:12:101"},"nativeSrc":"2011:32:101","nodeType":"YulFunctionCall","src":"2011:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"2000:7:101","nodeType":"YulIdentifier","src":"2000:7:101"}]},{"nativeSrc":"2052:17:101","nodeType":"YulAssignment","src":"2052:17:101","value":{"name":"value_1","nativeSrc":"2062:7:101","nodeType":"YulIdentifier","src":"2062:7:101"},"variableNames":[{"name":"value1","nativeSrc":"2052:6:101","nodeType":"YulIdentifier","src":"2052:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"1708:367:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1753:9:101","nodeType":"YulTypedName","src":"1753:9:101","type":""},{"name":"dataEnd","nativeSrc":"1764:7:101","nodeType":"YulTypedName","src":"1764:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1776:6:101","nodeType":"YulTypedName","src":"1776:6:101","type":""},{"name":"value1","nativeSrc":"1784:6:101","nodeType":"YulTypedName","src":"1784:6:101","type":""}],"src":"1708:367:101"},{"body":{"nativeSrc":"2184:404:101","nodeType":"YulBlock","src":"2184:404:101","statements":[{"body":{"nativeSrc":"2230:16:101","nodeType":"YulBlock","src":"2230:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2239:1:101","nodeType":"YulLiteral","src":"2239:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2242:1:101","nodeType":"YulLiteral","src":"2242:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2232:6:101","nodeType":"YulIdentifier","src":"2232:6:101"},"nativeSrc":"2232:12:101","nodeType":"YulFunctionCall","src":"2232:12:101"},"nativeSrc":"2232:12:101","nodeType":"YulExpressionStatement","src":"2232:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2205:7:101","nodeType":"YulIdentifier","src":"2205:7:101"},{"name":"headStart","nativeSrc":"2214:9:101","nodeType":"YulIdentifier","src":"2214:9:101"}],"functionName":{"name":"sub","nativeSrc":"2201:3:101","nodeType":"YulIdentifier","src":"2201:3:101"},"nativeSrc":"2201:23:101","nodeType":"YulFunctionCall","src":"2201:23:101"},{"kind":"number","nativeSrc":"2226:2:101","nodeType":"YulLiteral","src":"2226:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"2197:3:101","nodeType":"YulIdentifier","src":"2197:3:101"},"nativeSrc":"2197:32:101","nodeType":"YulFunctionCall","src":"2197:32:101"},"nativeSrc":"2194:52:101","nodeType":"YulIf","src":"2194:52:101"},{"nativeSrc":"2255:36:101","nodeType":"YulVariableDeclaration","src":"2255:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2281:9:101","nodeType":"YulIdentifier","src":"2281:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"2268:12:101","nodeType":"YulIdentifier","src":"2268:12:101"},"nativeSrc":"2268:23:101","nodeType":"YulFunctionCall","src":"2268:23:101"},"variables":[{"name":"value","nativeSrc":"2259:5:101","nodeType":"YulTypedName","src":"2259:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2325:5:101","nodeType":"YulIdentifier","src":"2325:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2300:24:101","nodeType":"YulIdentifier","src":"2300:24:101"},"nativeSrc":"2300:31:101","nodeType":"YulFunctionCall","src":"2300:31:101"},"nativeSrc":"2300:31:101","nodeType":"YulExpressionStatement","src":"2300:31:101"},{"nativeSrc":"2340:15:101","nodeType":"YulAssignment","src":"2340:15:101","value":{"name":"value","nativeSrc":"2350:5:101","nodeType":"YulIdentifier","src":"2350:5:101"},"variableNames":[{"name":"value0","nativeSrc":"2340:6:101","nodeType":"YulIdentifier","src":"2340:6:101"}]},{"nativeSrc":"2364:47:101","nodeType":"YulVariableDeclaration","src":"2364:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2396:9:101","nodeType":"YulIdentifier","src":"2396:9:101"},{"kind":"number","nativeSrc":"2407:2:101","nodeType":"YulLiteral","src":"2407:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2392:3:101","nodeType":"YulIdentifier","src":"2392:3:101"},"nativeSrc":"2392:18:101","nodeType":"YulFunctionCall","src":"2392:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"2379:12:101","nodeType":"YulIdentifier","src":"2379:12:101"},"nativeSrc":"2379:32:101","nodeType":"YulFunctionCall","src":"2379:32:101"},"variables":[{"name":"value_1","nativeSrc":"2368:7:101","nodeType":"YulTypedName","src":"2368:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"2445:7:101","nodeType":"YulIdentifier","src":"2445:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2420:24:101","nodeType":"YulIdentifier","src":"2420:24:101"},"nativeSrc":"2420:33:101","nodeType":"YulFunctionCall","src":"2420:33:101"},"nativeSrc":"2420:33:101","nodeType":"YulExpressionStatement","src":"2420:33:101"},{"nativeSrc":"2462:17:101","nodeType":"YulAssignment","src":"2462:17:101","value":{"name":"value_1","nativeSrc":"2472:7:101","nodeType":"YulIdentifier","src":"2472:7:101"},"variableNames":[{"name":"value1","nativeSrc":"2462:6:101","nodeType":"YulIdentifier","src":"2462:6:101"}]},{"nativeSrc":"2488:16:101","nodeType":"YulVariableDeclaration","src":"2488:16:101","value":{"kind":"number","nativeSrc":"2503:1:101","nodeType":"YulLiteral","src":"2503:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"2492:7:101","nodeType":"YulTypedName","src":"2492:7:101","type":""}]},{"nativeSrc":"2513:43:101","nodeType":"YulAssignment","src":"2513:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2541:9:101","nodeType":"YulIdentifier","src":"2541:9:101"},{"kind":"number","nativeSrc":"2552:2:101","nodeType":"YulLiteral","src":"2552:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"2537:3:101","nodeType":"YulIdentifier","src":"2537:3:101"},"nativeSrc":"2537:18:101","nodeType":"YulFunctionCall","src":"2537:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"2524:12:101","nodeType":"YulIdentifier","src":"2524:12:101"},"nativeSrc":"2524:32:101","nodeType":"YulFunctionCall","src":"2524:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"2513:7:101","nodeType":"YulIdentifier","src":"2513:7:101"}]},{"nativeSrc":"2565:17:101","nodeType":"YulAssignment","src":"2565:17:101","value":{"name":"value_2","nativeSrc":"2575:7:101","nodeType":"YulIdentifier","src":"2575:7:101"},"variableNames":[{"name":"value2","nativeSrc":"2565:6:101","nodeType":"YulIdentifier","src":"2565:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"2080:508:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2134:9:101","nodeType":"YulTypedName","src":"2134:9:101","type":""},{"name":"dataEnd","nativeSrc":"2145:7:101","nodeType":"YulTypedName","src":"2145:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2157:6:101","nodeType":"YulTypedName","src":"2157:6:101","type":""},{"name":"value1","nativeSrc":"2165:6:101","nodeType":"YulTypedName","src":"2165:6:101","type":""},{"name":"value2","nativeSrc":"2173:6:101","nodeType":"YulTypedName","src":"2173:6:101","type":""}],"src":"2080:508:101"},{"body":{"nativeSrc":"2694:76:101","nodeType":"YulBlock","src":"2694:76:101","statements":[{"nativeSrc":"2704:26:101","nodeType":"YulAssignment","src":"2704:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2716:9:101","nodeType":"YulIdentifier","src":"2716:9:101"},{"kind":"number","nativeSrc":"2727:2:101","nodeType":"YulLiteral","src":"2727:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2712:3:101","nodeType":"YulIdentifier","src":"2712:3:101"},"nativeSrc":"2712:18:101","nodeType":"YulFunctionCall","src":"2712:18:101"},"variableNames":[{"name":"tail","nativeSrc":"2704:4:101","nodeType":"YulIdentifier","src":"2704:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2746:9:101","nodeType":"YulIdentifier","src":"2746:9:101"},{"name":"value0","nativeSrc":"2757:6:101","nodeType":"YulIdentifier","src":"2757:6:101"}],"functionName":{"name":"mstore","nativeSrc":"2739:6:101","nodeType":"YulIdentifier","src":"2739:6:101"},"nativeSrc":"2739:25:101","nodeType":"YulFunctionCall","src":"2739:25:101"},"nativeSrc":"2739:25:101","nodeType":"YulExpressionStatement","src":"2739:25:101"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"2593:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2663:9:101","nodeType":"YulTypedName","src":"2663:9:101","type":""},{"name":"value0","nativeSrc":"2674:6:101","nodeType":"YulTypedName","src":"2674:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2685:4:101","nodeType":"YulTypedName","src":"2685:4:101","type":""}],"src":"2593:177:101"},{"body":{"nativeSrc":"2807:95:101","nodeType":"YulBlock","src":"2807:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2824:1:101","nodeType":"YulLiteral","src":"2824:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"2831:3:101","nodeType":"YulLiteral","src":"2831:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"2836:10:101","nodeType":"YulLiteral","src":"2836:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"2827:3:101","nodeType":"YulIdentifier","src":"2827:3:101"},"nativeSrc":"2827:20:101","nodeType":"YulFunctionCall","src":"2827:20:101"}],"functionName":{"name":"mstore","nativeSrc":"2817:6:101","nodeType":"YulIdentifier","src":"2817:6:101"},"nativeSrc":"2817:31:101","nodeType":"YulFunctionCall","src":"2817:31:101"},"nativeSrc":"2817:31:101","nodeType":"YulExpressionStatement","src":"2817:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2864:1:101","nodeType":"YulLiteral","src":"2864:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"2867:4:101","nodeType":"YulLiteral","src":"2867:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"2857:6:101","nodeType":"YulIdentifier","src":"2857:6:101"},"nativeSrc":"2857:15:101","nodeType":"YulFunctionCall","src":"2857:15:101"},"nativeSrc":"2857:15:101","nodeType":"YulExpressionStatement","src":"2857:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2888:1:101","nodeType":"YulLiteral","src":"2888:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2891:4:101","nodeType":"YulLiteral","src":"2891:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"2881:6:101","nodeType":"YulIdentifier","src":"2881:6:101"},"nativeSrc":"2881:15:101","nodeType":"YulFunctionCall","src":"2881:15:101"},"nativeSrc":"2881:15:101","nodeType":"YulExpressionStatement","src":"2881:15:101"}]},"name":"panic_error_0x41","nativeSrc":"2775:127:101","nodeType":"YulFunctionDefinition","src":"2775:127:101"},{"body":{"nativeSrc":"2960:836:101","nodeType":"YulBlock","src":"2960:836:101","statements":[{"body":{"nativeSrc":"3009:16:101","nodeType":"YulBlock","src":"3009:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3018:1:101","nodeType":"YulLiteral","src":"3018:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3021:1:101","nodeType":"YulLiteral","src":"3021:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3011:6:101","nodeType":"YulIdentifier","src":"3011:6:101"},"nativeSrc":"3011:12:101","nodeType":"YulFunctionCall","src":"3011:12:101"},"nativeSrc":"3011:12:101","nodeType":"YulExpressionStatement","src":"3011:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2988:6:101","nodeType":"YulIdentifier","src":"2988:6:101"},{"kind":"number","nativeSrc":"2996:4:101","nodeType":"YulLiteral","src":"2996:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2984:3:101","nodeType":"YulIdentifier","src":"2984:3:101"},"nativeSrc":"2984:17:101","nodeType":"YulFunctionCall","src":"2984:17:101"},{"name":"end","nativeSrc":"3003:3:101","nodeType":"YulIdentifier","src":"3003:3:101"}],"functionName":{"name":"slt","nativeSrc":"2980:3:101","nodeType":"YulIdentifier","src":"2980:3:101"},"nativeSrc":"2980:27:101","nodeType":"YulFunctionCall","src":"2980:27:101"}],"functionName":{"name":"iszero","nativeSrc":"2973:6:101","nodeType":"YulIdentifier","src":"2973:6:101"},"nativeSrc":"2973:35:101","nodeType":"YulFunctionCall","src":"2973:35:101"},"nativeSrc":"2970:55:101","nodeType":"YulIf","src":"2970:55:101"},{"nativeSrc":"3034:34:101","nodeType":"YulVariableDeclaration","src":"3034:34:101","value":{"arguments":[{"name":"offset","nativeSrc":"3061:6:101","nodeType":"YulIdentifier","src":"3061:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"3048:12:101","nodeType":"YulIdentifier","src":"3048:12:101"},"nativeSrc":"3048:20:101","nodeType":"YulFunctionCall","src":"3048:20:101"},"variables":[{"name":"length","nativeSrc":"3038:6:101","nodeType":"YulTypedName","src":"3038:6:101","type":""}]},{"nativeSrc":"3077:28:101","nodeType":"YulVariableDeclaration","src":"3077:28:101","value":{"arguments":[{"name":"offset","nativeSrc":"3092:6:101","nodeType":"YulIdentifier","src":"3092:6:101"},{"kind":"number","nativeSrc":"3100:4:101","nodeType":"YulLiteral","src":"3100:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3088:3:101","nodeType":"YulIdentifier","src":"3088:3:101"},"nativeSrc":"3088:17:101","nodeType":"YulFunctionCall","src":"3088:17:101"},"variables":[{"name":"src","nativeSrc":"3081:3:101","nodeType":"YulTypedName","src":"3081:3:101","type":""}]},{"nativeSrc":"3114:16:101","nodeType":"YulVariableDeclaration","src":"3114:16:101","value":{"kind":"number","nativeSrc":"3129:1:101","nodeType":"YulLiteral","src":"3129:1:101","type":"","value":"0"},"variables":[{"name":"array_1","nativeSrc":"3118:7:101","nodeType":"YulTypedName","src":"3118:7:101","type":""}]},{"nativeSrc":"3139:13:101","nodeType":"YulVariableDeclaration","src":"3139:13:101","value":{"kind":"number","nativeSrc":"3151:1:101","nodeType":"YulLiteral","src":"3151:1:101","type":"","value":"0"},"variables":[{"name":"size","nativeSrc":"3143:4:101","nodeType":"YulTypedName","src":"3143:4:101","type":""}]},{"body":{"nativeSrc":"3195:22:101","nodeType":"YulBlock","src":"3195:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3197:16:101","nodeType":"YulIdentifier","src":"3197:16:101"},"nativeSrc":"3197:18:101","nodeType":"YulFunctionCall","src":"3197:18:101"},"nativeSrc":"3197:18:101","nodeType":"YulExpressionStatement","src":"3197:18:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"3167:6:101","nodeType":"YulIdentifier","src":"3167:6:101"},{"kind":"number","nativeSrc":"3175:18:101","nodeType":"YulLiteral","src":"3175:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3164:2:101","nodeType":"YulIdentifier","src":"3164:2:101"},"nativeSrc":"3164:30:101","nodeType":"YulFunctionCall","src":"3164:30:101"},"nativeSrc":"3161:56:101","nodeType":"YulIf","src":"3161:56:101"},{"nativeSrc":"3226:43:101","nodeType":"YulVariableDeclaration","src":"3226:43:101","value":{"arguments":[{"arguments":[{"name":"length","nativeSrc":"3248:6:101","nodeType":"YulIdentifier","src":"3248:6:101"},{"kind":"number","nativeSrc":"3256:2:101","nodeType":"YulLiteral","src":"3256:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"3244:3:101","nodeType":"YulIdentifier","src":"3244:3:101"},"nativeSrc":"3244:15:101","nodeType":"YulFunctionCall","src":"3244:15:101"},{"arguments":[{"kind":"number","nativeSrc":"3265:2:101","nodeType":"YulLiteral","src":"3265:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"3261:3:101","nodeType":"YulIdentifier","src":"3261:3:101"},"nativeSrc":"3261:7:101","nodeType":"YulFunctionCall","src":"3261:7:101"}],"functionName":{"name":"and","nativeSrc":"3240:3:101","nodeType":"YulIdentifier","src":"3240:3:101"},"nativeSrc":"3240:29:101","nodeType":"YulFunctionCall","src":"3240:29:101"},"variables":[{"name":"result","nativeSrc":"3230:6:101","nodeType":"YulTypedName","src":"3230:6:101","type":""}]},{"nativeSrc":"3278:25:101","nodeType":"YulAssignment","src":"3278:25:101","value":{"arguments":[{"name":"result","nativeSrc":"3290:6:101","nodeType":"YulIdentifier","src":"3290:6:101"},{"kind":"number","nativeSrc":"3298:4:101","nodeType":"YulLiteral","src":"3298:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3286:3:101","nodeType":"YulIdentifier","src":"3286:3:101"},"nativeSrc":"3286:17:101","nodeType":"YulFunctionCall","src":"3286:17:101"},"variableNames":[{"name":"size","nativeSrc":"3278:4:101","nodeType":"YulIdentifier","src":"3278:4:101"}]},{"nativeSrc":"3312:15:101","nodeType":"YulVariableDeclaration","src":"3312:15:101","value":{"kind":"number","nativeSrc":"3326:1:101","nodeType":"YulLiteral","src":"3326:1:101","type":"","value":"0"},"variables":[{"name":"memPtr","nativeSrc":"3316:6:101","nodeType":"YulTypedName","src":"3316:6:101","type":""}]},{"nativeSrc":"3336:19:101","nodeType":"YulAssignment","src":"3336:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"3352:2:101","nodeType":"YulLiteral","src":"3352:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"3346:5:101","nodeType":"YulIdentifier","src":"3346:5:101"},"nativeSrc":"3346:9:101","nodeType":"YulFunctionCall","src":"3346:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"3336:6:101","nodeType":"YulIdentifier","src":"3336:6:101"}]},{"nativeSrc":"3364:60:101","nodeType":"YulVariableDeclaration","src":"3364:60:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"3386:6:101","nodeType":"YulIdentifier","src":"3386:6:101"},{"arguments":[{"arguments":[{"name":"result","nativeSrc":"3402:6:101","nodeType":"YulIdentifier","src":"3402:6:101"},{"kind":"number","nativeSrc":"3410:2:101","nodeType":"YulLiteral","src":"3410:2:101","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"3398:3:101","nodeType":"YulIdentifier","src":"3398:3:101"},"nativeSrc":"3398:15:101","nodeType":"YulFunctionCall","src":"3398:15:101"},{"arguments":[{"kind":"number","nativeSrc":"3419:2:101","nodeType":"YulLiteral","src":"3419:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"3415:3:101","nodeType":"YulIdentifier","src":"3415:3:101"},"nativeSrc":"3415:7:101","nodeType":"YulFunctionCall","src":"3415:7:101"}],"functionName":{"name":"and","nativeSrc":"3394:3:101","nodeType":"YulIdentifier","src":"3394:3:101"},"nativeSrc":"3394:29:101","nodeType":"YulFunctionCall","src":"3394:29:101"}],"functionName":{"name":"add","nativeSrc":"3382:3:101","nodeType":"YulIdentifier","src":"3382:3:101"},"nativeSrc":"3382:42:101","nodeType":"YulFunctionCall","src":"3382:42:101"},"variables":[{"name":"newFreePtr","nativeSrc":"3368:10:101","nodeType":"YulTypedName","src":"3368:10:101","type":""}]},{"body":{"nativeSrc":"3499:22:101","nodeType":"YulBlock","src":"3499:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3501:16:101","nodeType":"YulIdentifier","src":"3501:16:101"},"nativeSrc":"3501:18:101","nodeType":"YulFunctionCall","src":"3501:18:101"},"nativeSrc":"3501:18:101","nodeType":"YulExpressionStatement","src":"3501:18:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"3442:10:101","nodeType":"YulIdentifier","src":"3442:10:101"},{"kind":"number","nativeSrc":"3454:18:101","nodeType":"YulLiteral","src":"3454:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3439:2:101","nodeType":"YulIdentifier","src":"3439:2:101"},"nativeSrc":"3439:34:101","nodeType":"YulFunctionCall","src":"3439:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"3478:10:101","nodeType":"YulIdentifier","src":"3478:10:101"},{"name":"memPtr","nativeSrc":"3490:6:101","nodeType":"YulIdentifier","src":"3490:6:101"}],"functionName":{"name":"lt","nativeSrc":"3475:2:101","nodeType":"YulIdentifier","src":"3475:2:101"},"nativeSrc":"3475:22:101","nodeType":"YulFunctionCall","src":"3475:22:101"}],"functionName":{"name":"or","nativeSrc":"3436:2:101","nodeType":"YulIdentifier","src":"3436:2:101"},"nativeSrc":"3436:62:101","nodeType":"YulFunctionCall","src":"3436:62:101"},"nativeSrc":"3433:88:101","nodeType":"YulIf","src":"3433:88:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3537:2:101","nodeType":"YulLiteral","src":"3537:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"3541:10:101","nodeType":"YulIdentifier","src":"3541:10:101"}],"functionName":{"name":"mstore","nativeSrc":"3530:6:101","nodeType":"YulIdentifier","src":"3530:6:101"},"nativeSrc":"3530:22:101","nodeType":"YulFunctionCall","src":"3530:22:101"},"nativeSrc":"3530:22:101","nodeType":"YulExpressionStatement","src":"3530:22:101"},{"nativeSrc":"3561:17:101","nodeType":"YulAssignment","src":"3561:17:101","value":{"name":"memPtr","nativeSrc":"3572:6:101","nodeType":"YulIdentifier","src":"3572:6:101"},"variableNames":[{"name":"array_1","nativeSrc":"3561:7:101","nodeType":"YulIdentifier","src":"3561:7:101"}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"3594:6:101","nodeType":"YulIdentifier","src":"3594:6:101"},{"name":"length","nativeSrc":"3602:6:101","nodeType":"YulIdentifier","src":"3602:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3587:6:101","nodeType":"YulIdentifier","src":"3587:6:101"},"nativeSrc":"3587:22:101","nodeType":"YulFunctionCall","src":"3587:22:101"},"nativeSrc":"3587:22:101","nodeType":"YulExpressionStatement","src":"3587:22:101"},{"body":{"nativeSrc":"3647:16:101","nodeType":"YulBlock","src":"3647:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3656:1:101","nodeType":"YulLiteral","src":"3656:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3659:1:101","nodeType":"YulLiteral","src":"3659:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3649:6:101","nodeType":"YulIdentifier","src":"3649:6:101"},"nativeSrc":"3649:12:101","nodeType":"YulFunctionCall","src":"3649:12:101"},"nativeSrc":"3649:12:101","nodeType":"YulExpressionStatement","src":"3649:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3628:3:101","nodeType":"YulIdentifier","src":"3628:3:101"},{"name":"length","nativeSrc":"3633:6:101","nodeType":"YulIdentifier","src":"3633:6:101"}],"functionName":{"name":"add","nativeSrc":"3624:3:101","nodeType":"YulIdentifier","src":"3624:3:101"},"nativeSrc":"3624:16:101","nodeType":"YulFunctionCall","src":"3624:16:101"},{"name":"end","nativeSrc":"3642:3:101","nodeType":"YulIdentifier","src":"3642:3:101"}],"functionName":{"name":"gt","nativeSrc":"3621:2:101","nodeType":"YulIdentifier","src":"3621:2:101"},"nativeSrc":"3621:25:101","nodeType":"YulFunctionCall","src":"3621:25:101"},"nativeSrc":"3618:45:101","nodeType":"YulIf","src":"3618:45:101"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"3689:6:101","nodeType":"YulIdentifier","src":"3689:6:101"},{"kind":"number","nativeSrc":"3697:4:101","nodeType":"YulLiteral","src":"3697:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3685:3:101","nodeType":"YulIdentifier","src":"3685:3:101"},"nativeSrc":"3685:17:101","nodeType":"YulFunctionCall","src":"3685:17:101"},{"name":"src","nativeSrc":"3704:3:101","nodeType":"YulIdentifier","src":"3704:3:101"},{"name":"length","nativeSrc":"3709:6:101","nodeType":"YulIdentifier","src":"3709:6:101"}],"functionName":{"name":"calldatacopy","nativeSrc":"3672:12:101","nodeType":"YulIdentifier","src":"3672:12:101"},"nativeSrc":"3672:44:101","nodeType":"YulFunctionCall","src":"3672:44:101"},"nativeSrc":"3672:44:101","nodeType":"YulExpressionStatement","src":"3672:44:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"3740:6:101","nodeType":"YulIdentifier","src":"3740:6:101"},{"name":"length","nativeSrc":"3748:6:101","nodeType":"YulIdentifier","src":"3748:6:101"}],"functionName":{"name":"add","nativeSrc":"3736:3:101","nodeType":"YulIdentifier","src":"3736:3:101"},"nativeSrc":"3736:19:101","nodeType":"YulFunctionCall","src":"3736:19:101"},{"kind":"number","nativeSrc":"3757:4:101","nodeType":"YulLiteral","src":"3757:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3732:3:101","nodeType":"YulIdentifier","src":"3732:3:101"},"nativeSrc":"3732:30:101","nodeType":"YulFunctionCall","src":"3732:30:101"},{"kind":"number","nativeSrc":"3764:1:101","nodeType":"YulLiteral","src":"3764:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"3725:6:101","nodeType":"YulIdentifier","src":"3725:6:101"},"nativeSrc":"3725:41:101","nodeType":"YulFunctionCall","src":"3725:41:101"},"nativeSrc":"3725:41:101","nodeType":"YulExpressionStatement","src":"3725:41:101"},{"nativeSrc":"3775:15:101","nodeType":"YulAssignment","src":"3775:15:101","value":{"name":"memPtr","nativeSrc":"3784:6:101","nodeType":"YulIdentifier","src":"3784:6:101"},"variableNames":[{"name":"array","nativeSrc":"3775:5:101","nodeType":"YulIdentifier","src":"3775:5:101"}]}]},"name":"abi_decode_string","nativeSrc":"2907:889:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"2934:6:101","nodeType":"YulTypedName","src":"2934:6:101","type":""},{"name":"end","nativeSrc":"2942:3:101","nodeType":"YulTypedName","src":"2942:3:101","type":""}],"returnVariables":[{"name":"array","nativeSrc":"2950:5:101","nodeType":"YulTypedName","src":"2950:5:101","type":""}],"src":"2907:889:101"},{"body":{"nativeSrc":"3908:431:101","nodeType":"YulBlock","src":"3908:431:101","statements":[{"body":{"nativeSrc":"3954:16:101","nodeType":"YulBlock","src":"3954:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3963:1:101","nodeType":"YulLiteral","src":"3963:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3966:1:101","nodeType":"YulLiteral","src":"3966:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3956:6:101","nodeType":"YulIdentifier","src":"3956:6:101"},"nativeSrc":"3956:12:101","nodeType":"YulFunctionCall","src":"3956:12:101"},"nativeSrc":"3956:12:101","nodeType":"YulExpressionStatement","src":"3956:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3929:7:101","nodeType":"YulIdentifier","src":"3929:7:101"},{"name":"headStart","nativeSrc":"3938:9:101","nodeType":"YulIdentifier","src":"3938:9:101"}],"functionName":{"name":"sub","nativeSrc":"3925:3:101","nodeType":"YulIdentifier","src":"3925:3:101"},"nativeSrc":"3925:23:101","nodeType":"YulFunctionCall","src":"3925:23:101"},{"kind":"number","nativeSrc":"3950:2:101","nodeType":"YulLiteral","src":"3950:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3921:3:101","nodeType":"YulIdentifier","src":"3921:3:101"},"nativeSrc":"3921:32:101","nodeType":"YulFunctionCall","src":"3921:32:101"},"nativeSrc":"3918:52:101","nodeType":"YulIf","src":"3918:52:101"},{"nativeSrc":"3979:37:101","nodeType":"YulVariableDeclaration","src":"3979:37:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4006:9:101","nodeType":"YulIdentifier","src":"4006:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"3993:12:101","nodeType":"YulIdentifier","src":"3993:12:101"},"nativeSrc":"3993:23:101","nodeType":"YulFunctionCall","src":"3993:23:101"},"variables":[{"name":"offset","nativeSrc":"3983:6:101","nodeType":"YulTypedName","src":"3983:6:101","type":""}]},{"body":{"nativeSrc":"4059:16:101","nodeType":"YulBlock","src":"4059:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4068:1:101","nodeType":"YulLiteral","src":"4068:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4071:1:101","nodeType":"YulLiteral","src":"4071:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4061:6:101","nodeType":"YulIdentifier","src":"4061:6:101"},"nativeSrc":"4061:12:101","nodeType":"YulFunctionCall","src":"4061:12:101"},"nativeSrc":"4061:12:101","nodeType":"YulExpressionStatement","src":"4061:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"4031:6:101","nodeType":"YulIdentifier","src":"4031:6:101"},{"kind":"number","nativeSrc":"4039:18:101","nodeType":"YulLiteral","src":"4039:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4028:2:101","nodeType":"YulIdentifier","src":"4028:2:101"},"nativeSrc":"4028:30:101","nodeType":"YulFunctionCall","src":"4028:30:101"},"nativeSrc":"4025:50:101","nodeType":"YulIf","src":"4025:50:101"},{"nativeSrc":"4084:60:101","nodeType":"YulAssignment","src":"4084:60:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4116:9:101","nodeType":"YulIdentifier","src":"4116:9:101"},{"name":"offset","nativeSrc":"4127:6:101","nodeType":"YulIdentifier","src":"4127:6:101"}],"functionName":{"name":"add","nativeSrc":"4112:3:101","nodeType":"YulIdentifier","src":"4112:3:101"},"nativeSrc":"4112:22:101","nodeType":"YulFunctionCall","src":"4112:22:101"},{"name":"dataEnd","nativeSrc":"4136:7:101","nodeType":"YulIdentifier","src":"4136:7:101"}],"functionName":{"name":"abi_decode_string","nativeSrc":"4094:17:101","nodeType":"YulIdentifier","src":"4094:17:101"},"nativeSrc":"4094:50:101","nodeType":"YulFunctionCall","src":"4094:50:101"},"variableNames":[{"name":"value0","nativeSrc":"4084:6:101","nodeType":"YulIdentifier","src":"4084:6:101"}]},{"nativeSrc":"4153:48:101","nodeType":"YulVariableDeclaration","src":"4153:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4186:9:101","nodeType":"YulIdentifier","src":"4186:9:101"},{"kind":"number","nativeSrc":"4197:2:101","nodeType":"YulLiteral","src":"4197:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4182:3:101","nodeType":"YulIdentifier","src":"4182:3:101"},"nativeSrc":"4182:18:101","nodeType":"YulFunctionCall","src":"4182:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"4169:12:101","nodeType":"YulIdentifier","src":"4169:12:101"},"nativeSrc":"4169:32:101","nodeType":"YulFunctionCall","src":"4169:32:101"},"variables":[{"name":"offset_1","nativeSrc":"4157:8:101","nodeType":"YulTypedName","src":"4157:8:101","type":""}]},{"body":{"nativeSrc":"4246:16:101","nodeType":"YulBlock","src":"4246:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4255:1:101","nodeType":"YulLiteral","src":"4255:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4258:1:101","nodeType":"YulLiteral","src":"4258:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4248:6:101","nodeType":"YulIdentifier","src":"4248:6:101"},"nativeSrc":"4248:12:101","nodeType":"YulFunctionCall","src":"4248:12:101"},"nativeSrc":"4248:12:101","nodeType":"YulExpressionStatement","src":"4248:12:101"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"4216:8:101","nodeType":"YulIdentifier","src":"4216:8:101"},{"kind":"number","nativeSrc":"4226:18:101","nodeType":"YulLiteral","src":"4226:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4213:2:101","nodeType":"YulIdentifier","src":"4213:2:101"},"nativeSrc":"4213:32:101","nodeType":"YulFunctionCall","src":"4213:32:101"},"nativeSrc":"4210:52:101","nodeType":"YulIf","src":"4210:52:101"},{"nativeSrc":"4271:62:101","nodeType":"YulAssignment","src":"4271:62:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4303:9:101","nodeType":"YulIdentifier","src":"4303:9:101"},{"name":"offset_1","nativeSrc":"4314:8:101","nodeType":"YulIdentifier","src":"4314:8:101"}],"functionName":{"name":"add","nativeSrc":"4299:3:101","nodeType":"YulIdentifier","src":"4299:3:101"},"nativeSrc":"4299:24:101","nodeType":"YulFunctionCall","src":"4299:24:101"},{"name":"dataEnd","nativeSrc":"4325:7:101","nodeType":"YulIdentifier","src":"4325:7:101"}],"functionName":{"name":"abi_decode_string","nativeSrc":"4281:17:101","nodeType":"YulIdentifier","src":"4281:17:101"},"nativeSrc":"4281:52:101","nodeType":"YulFunctionCall","src":"4281:52:101"},"variableNames":[{"name":"value1","nativeSrc":"4271:6:101","nodeType":"YulIdentifier","src":"4271:6:101"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr","nativeSrc":"3801:538:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3866:9:101","nodeType":"YulTypedName","src":"3866:9:101","type":""},{"name":"dataEnd","nativeSrc":"3877:7:101","nodeType":"YulTypedName","src":"3877:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3889:6:101","nodeType":"YulTypedName","src":"3889:6:101","type":""},{"name":"value1","nativeSrc":"3897:6:101","nodeType":"YulTypedName","src":"3897:6:101","type":""}],"src":"3801:538:101"},{"body":{"nativeSrc":"4466:102:101","nodeType":"YulBlock","src":"4466:102:101","statements":[{"nativeSrc":"4476:26:101","nodeType":"YulAssignment","src":"4476:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4488:9:101","nodeType":"YulIdentifier","src":"4488:9:101"},{"kind":"number","nativeSrc":"4499:2:101","nodeType":"YulLiteral","src":"4499:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4484:3:101","nodeType":"YulIdentifier","src":"4484:3:101"},"nativeSrc":"4484:18:101","nodeType":"YulFunctionCall","src":"4484:18:101"},"variableNames":[{"name":"tail","nativeSrc":"4476:4:101","nodeType":"YulIdentifier","src":"4476:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4518:9:101","nodeType":"YulIdentifier","src":"4518:9:101"},{"arguments":[{"name":"value0","nativeSrc":"4533:6:101","nodeType":"YulIdentifier","src":"4533:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4549:3:101","nodeType":"YulLiteral","src":"4549:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"4554:1:101","nodeType":"YulLiteral","src":"4554:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4545:3:101","nodeType":"YulIdentifier","src":"4545:3:101"},"nativeSrc":"4545:11:101","nodeType":"YulFunctionCall","src":"4545:11:101"},{"kind":"number","nativeSrc":"4558:1:101","nodeType":"YulLiteral","src":"4558:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4541:3:101","nodeType":"YulIdentifier","src":"4541:3:101"},"nativeSrc":"4541:19:101","nodeType":"YulFunctionCall","src":"4541:19:101"}],"functionName":{"name":"and","nativeSrc":"4529:3:101","nodeType":"YulIdentifier","src":"4529:3:101"},"nativeSrc":"4529:32:101","nodeType":"YulFunctionCall","src":"4529:32:101"}],"functionName":{"name":"mstore","nativeSrc":"4511:6:101","nodeType":"YulIdentifier","src":"4511:6:101"},"nativeSrc":"4511:51:101","nodeType":"YulFunctionCall","src":"4511:51:101"},"nativeSrc":"4511:51:101","nodeType":"YulExpressionStatement","src":"4511:51:101"}]},"name":"abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed","nativeSrc":"4344:224:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4435:9:101","nodeType":"YulTypedName","src":"4435:9:101","type":""},{"name":"value0","nativeSrc":"4446:6:101","nodeType":"YulTypedName","src":"4446:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4457:4:101","nodeType":"YulTypedName","src":"4457:4:101","type":""}],"src":"4344:224:101"},{"body":{"nativeSrc":"4669:360:101","nodeType":"YulBlock","src":"4669:360:101","statements":[{"body":{"nativeSrc":"4715:16:101","nodeType":"YulBlock","src":"4715:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4724:1:101","nodeType":"YulLiteral","src":"4724:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4727:1:101","nodeType":"YulLiteral","src":"4727:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4717:6:101","nodeType":"YulIdentifier","src":"4717:6:101"},"nativeSrc":"4717:12:101","nodeType":"YulFunctionCall","src":"4717:12:101"},"nativeSrc":"4717:12:101","nodeType":"YulExpressionStatement","src":"4717:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4690:7:101","nodeType":"YulIdentifier","src":"4690:7:101"},{"name":"headStart","nativeSrc":"4699:9:101","nodeType":"YulIdentifier","src":"4699:9:101"}],"functionName":{"name":"sub","nativeSrc":"4686:3:101","nodeType":"YulIdentifier","src":"4686:3:101"},"nativeSrc":"4686:23:101","nodeType":"YulFunctionCall","src":"4686:23:101"},{"kind":"number","nativeSrc":"4711:2:101","nodeType":"YulLiteral","src":"4711:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4682:3:101","nodeType":"YulIdentifier","src":"4682:3:101"},"nativeSrc":"4682:32:101","nodeType":"YulFunctionCall","src":"4682:32:101"},"nativeSrc":"4679:52:101","nodeType":"YulIf","src":"4679:52:101"},{"nativeSrc":"4740:36:101","nodeType":"YulVariableDeclaration","src":"4740:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4766:9:101","nodeType":"YulIdentifier","src":"4766:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"4753:12:101","nodeType":"YulIdentifier","src":"4753:12:101"},"nativeSrc":"4753:23:101","nodeType":"YulFunctionCall","src":"4753:23:101"},"variables":[{"name":"value","nativeSrc":"4744:5:101","nodeType":"YulTypedName","src":"4744:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4810:5:101","nodeType":"YulIdentifier","src":"4810:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4785:24:101","nodeType":"YulIdentifier","src":"4785:24:101"},"nativeSrc":"4785:31:101","nodeType":"YulFunctionCall","src":"4785:31:101"},"nativeSrc":"4785:31:101","nodeType":"YulExpressionStatement","src":"4785:31:101"},{"nativeSrc":"4825:15:101","nodeType":"YulAssignment","src":"4825:15:101","value":{"name":"value","nativeSrc":"4835:5:101","nodeType":"YulIdentifier","src":"4835:5:101"},"variableNames":[{"name":"value0","nativeSrc":"4825:6:101","nodeType":"YulIdentifier","src":"4825:6:101"}]},{"nativeSrc":"4849:46:101","nodeType":"YulVariableDeclaration","src":"4849:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4880:9:101","nodeType":"YulIdentifier","src":"4880:9:101"},{"kind":"number","nativeSrc":"4891:2:101","nodeType":"YulLiteral","src":"4891:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4876:3:101","nodeType":"YulIdentifier","src":"4876:3:101"},"nativeSrc":"4876:18:101","nodeType":"YulFunctionCall","src":"4876:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"4863:12:101","nodeType":"YulIdentifier","src":"4863:12:101"},"nativeSrc":"4863:32:101","nodeType":"YulFunctionCall","src":"4863:32:101"},"variables":[{"name":"offset","nativeSrc":"4853:6:101","nodeType":"YulTypedName","src":"4853:6:101","type":""}]},{"body":{"nativeSrc":"4938:16:101","nodeType":"YulBlock","src":"4938:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4947:1:101","nodeType":"YulLiteral","src":"4947:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4950:1:101","nodeType":"YulLiteral","src":"4950:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4940:6:101","nodeType":"YulIdentifier","src":"4940:6:101"},"nativeSrc":"4940:12:101","nodeType":"YulFunctionCall","src":"4940:12:101"},"nativeSrc":"4940:12:101","nodeType":"YulExpressionStatement","src":"4940:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"4910:6:101","nodeType":"YulIdentifier","src":"4910:6:101"},{"kind":"number","nativeSrc":"4918:18:101","nodeType":"YulLiteral","src":"4918:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4907:2:101","nodeType":"YulIdentifier","src":"4907:2:101"},"nativeSrc":"4907:30:101","nodeType":"YulFunctionCall","src":"4907:30:101"},"nativeSrc":"4904:50:101","nodeType":"YulIf","src":"4904:50:101"},{"nativeSrc":"4963:60:101","nodeType":"YulAssignment","src":"4963:60:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4995:9:101","nodeType":"YulIdentifier","src":"4995:9:101"},{"name":"offset","nativeSrc":"5006:6:101","nodeType":"YulIdentifier","src":"5006:6:101"}],"functionName":{"name":"add","nativeSrc":"4991:3:101","nodeType":"YulIdentifier","src":"4991:3:101"},"nativeSrc":"4991:22:101","nodeType":"YulFunctionCall","src":"4991:22:101"},{"name":"dataEnd","nativeSrc":"5015:7:101","nodeType":"YulIdentifier","src":"5015:7:101"}],"functionName":{"name":"abi_decode_string","nativeSrc":"4973:17:101","nodeType":"YulIdentifier","src":"4973:17:101"},"nativeSrc":"4973:50:101","nodeType":"YulFunctionCall","src":"4973:50:101"},"variableNames":[{"name":"value1","nativeSrc":"4963:6:101","nodeType":"YulIdentifier","src":"4963:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr","nativeSrc":"4573:456:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4627:9:101","nodeType":"YulTypedName","src":"4627:9:101","type":""},{"name":"dataEnd","nativeSrc":"4638:7:101","nodeType":"YulTypedName","src":"4638:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4650:6:101","nodeType":"YulTypedName","src":"4650:6:101","type":""},{"name":"value1","nativeSrc":"4658:6:101","nodeType":"YulTypedName","src":"4658:6:101","type":""}],"src":"4573:456:101"},{"body":{"nativeSrc":"5135:76:101","nodeType":"YulBlock","src":"5135:76:101","statements":[{"nativeSrc":"5145:26:101","nodeType":"YulAssignment","src":"5145:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5157:9:101","nodeType":"YulIdentifier","src":"5157:9:101"},{"kind":"number","nativeSrc":"5168:2:101","nodeType":"YulLiteral","src":"5168:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5153:3:101","nodeType":"YulIdentifier","src":"5153:3:101"},"nativeSrc":"5153:18:101","nodeType":"YulFunctionCall","src":"5153:18:101"},"variableNames":[{"name":"tail","nativeSrc":"5145:4:101","nodeType":"YulIdentifier","src":"5145:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5187:9:101","nodeType":"YulIdentifier","src":"5187:9:101"},{"name":"value0","nativeSrc":"5198:6:101","nodeType":"YulIdentifier","src":"5198:6:101"}],"functionName":{"name":"mstore","nativeSrc":"5180:6:101","nodeType":"YulIdentifier","src":"5180:6:101"},"nativeSrc":"5180:25:101","nodeType":"YulFunctionCall","src":"5180:25:101"},"nativeSrc":"5180:25:101","nodeType":"YulExpressionStatement","src":"5180:25:101"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"5034:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5104:9:101","nodeType":"YulTypedName","src":"5104:9:101","type":""},{"name":"value0","nativeSrc":"5115:6:101","nodeType":"YulTypedName","src":"5115:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5126:4:101","nodeType":"YulTypedName","src":"5126:4:101","type":""}],"src":"5034:177:101"},{"body":{"nativeSrc":"5337:404:101","nodeType":"YulBlock","src":"5337:404:101","statements":[{"body":{"nativeSrc":"5383:16:101","nodeType":"YulBlock","src":"5383:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5392:1:101","nodeType":"YulLiteral","src":"5392:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5395:1:101","nodeType":"YulLiteral","src":"5395:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5385:6:101","nodeType":"YulIdentifier","src":"5385:6:101"},"nativeSrc":"5385:12:101","nodeType":"YulFunctionCall","src":"5385:12:101"},"nativeSrc":"5385:12:101","nodeType":"YulExpressionStatement","src":"5385:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5358:7:101","nodeType":"YulIdentifier","src":"5358:7:101"},{"name":"headStart","nativeSrc":"5367:9:101","nodeType":"YulIdentifier","src":"5367:9:101"}],"functionName":{"name":"sub","nativeSrc":"5354:3:101","nodeType":"YulIdentifier","src":"5354:3:101"},"nativeSrc":"5354:23:101","nodeType":"YulFunctionCall","src":"5354:23:101"},{"kind":"number","nativeSrc":"5379:2:101","nodeType":"YulLiteral","src":"5379:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"5350:3:101","nodeType":"YulIdentifier","src":"5350:3:101"},"nativeSrc":"5350:32:101","nodeType":"YulFunctionCall","src":"5350:32:101"},"nativeSrc":"5347:52:101","nodeType":"YulIf","src":"5347:52:101"},{"nativeSrc":"5408:36:101","nodeType":"YulVariableDeclaration","src":"5408:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5434:9:101","nodeType":"YulIdentifier","src":"5434:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"5421:12:101","nodeType":"YulIdentifier","src":"5421:12:101"},"nativeSrc":"5421:23:101","nodeType":"YulFunctionCall","src":"5421:23:101"},"variables":[{"name":"value","nativeSrc":"5412:5:101","nodeType":"YulTypedName","src":"5412:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5478:5:101","nodeType":"YulIdentifier","src":"5478:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"5453:24:101","nodeType":"YulIdentifier","src":"5453:24:101"},"nativeSrc":"5453:31:101","nodeType":"YulFunctionCall","src":"5453:31:101"},"nativeSrc":"5453:31:101","nodeType":"YulExpressionStatement","src":"5453:31:101"},{"nativeSrc":"5493:15:101","nodeType":"YulAssignment","src":"5493:15:101","value":{"name":"value","nativeSrc":"5503:5:101","nodeType":"YulIdentifier","src":"5503:5:101"},"variableNames":[{"name":"value0","nativeSrc":"5493:6:101","nodeType":"YulIdentifier","src":"5493:6:101"}]},{"nativeSrc":"5517:47:101","nodeType":"YulVariableDeclaration","src":"5517:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5549:9:101","nodeType":"YulIdentifier","src":"5549:9:101"},{"kind":"number","nativeSrc":"5560:2:101","nodeType":"YulLiteral","src":"5560:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5545:3:101","nodeType":"YulIdentifier","src":"5545:3:101"},"nativeSrc":"5545:18:101","nodeType":"YulFunctionCall","src":"5545:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"5532:12:101","nodeType":"YulIdentifier","src":"5532:12:101"},"nativeSrc":"5532:32:101","nodeType":"YulFunctionCall","src":"5532:32:101"},"variables":[{"name":"value_1","nativeSrc":"5521:7:101","nodeType":"YulTypedName","src":"5521:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"5598:7:101","nodeType":"YulIdentifier","src":"5598:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"5573:24:101","nodeType":"YulIdentifier","src":"5573:24:101"},"nativeSrc":"5573:33:101","nodeType":"YulFunctionCall","src":"5573:33:101"},"nativeSrc":"5573:33:101","nodeType":"YulExpressionStatement","src":"5573:33:101"},{"nativeSrc":"5615:17:101","nodeType":"YulAssignment","src":"5615:17:101","value":{"name":"value_1","nativeSrc":"5625:7:101","nodeType":"YulIdentifier","src":"5625:7:101"},"variableNames":[{"name":"value1","nativeSrc":"5615:6:101","nodeType":"YulIdentifier","src":"5615:6:101"}]},{"nativeSrc":"5641:16:101","nodeType":"YulVariableDeclaration","src":"5641:16:101","value":{"kind":"number","nativeSrc":"5656:1:101","nodeType":"YulLiteral","src":"5656:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"5645:7:101","nodeType":"YulTypedName","src":"5645:7:101","type":""}]},{"nativeSrc":"5666:43:101","nodeType":"YulAssignment","src":"5666:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5694:9:101","nodeType":"YulIdentifier","src":"5694:9:101"},{"kind":"number","nativeSrc":"5705:2:101","nodeType":"YulLiteral","src":"5705:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5690:3:101","nodeType":"YulIdentifier","src":"5690:3:101"},"nativeSrc":"5690:18:101","nodeType":"YulFunctionCall","src":"5690:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"5677:12:101","nodeType":"YulIdentifier","src":"5677:12:101"},"nativeSrc":"5677:32:101","nodeType":"YulFunctionCall","src":"5677:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"5666:7:101","nodeType":"YulIdentifier","src":"5666:7:101"}]},{"nativeSrc":"5718:17:101","nodeType":"YulAssignment","src":"5718:17:101","value":{"name":"value_2","nativeSrc":"5728:7:101","nodeType":"YulIdentifier","src":"5728:7:101"},"variableNames":[{"name":"value2","nativeSrc":"5718:6:101","nodeType":"YulIdentifier","src":"5718:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$28869t_addresst_uint256","nativeSrc":"5216:525:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5287:9:101","nodeType":"YulTypedName","src":"5287:9:101","type":""},{"name":"dataEnd","nativeSrc":"5298:7:101","nodeType":"YulTypedName","src":"5298:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5310:6:101","nodeType":"YulTypedName","src":"5310:6:101","type":""},{"name":"value1","nativeSrc":"5318:6:101","nodeType":"YulTypedName","src":"5318:6:101","type":""},{"name":"value2","nativeSrc":"5326:6:101","nodeType":"YulTypedName","src":"5326:6:101","type":""}],"src":"5216:525:101"},{"body":{"nativeSrc":"5845:95:101","nodeType":"YulBlock","src":"5845:95:101","statements":[{"nativeSrc":"5855:26:101","nodeType":"YulAssignment","src":"5855:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5867:9:101","nodeType":"YulIdentifier","src":"5867:9:101"},{"kind":"number","nativeSrc":"5878:2:101","nodeType":"YulLiteral","src":"5878:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5863:3:101","nodeType":"YulIdentifier","src":"5863:3:101"},"nativeSrc":"5863:18:101","nodeType":"YulFunctionCall","src":"5863:18:101"},"variableNames":[{"name":"tail","nativeSrc":"5855:4:101","nodeType":"YulIdentifier","src":"5855:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5897:9:101","nodeType":"YulIdentifier","src":"5897:9:101"},{"arguments":[{"name":"value0","nativeSrc":"5912:6:101","nodeType":"YulIdentifier","src":"5912:6:101"},{"kind":"number","nativeSrc":"5920:12:101","nodeType":"YulLiteral","src":"5920:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"5908:3:101","nodeType":"YulIdentifier","src":"5908:3:101"},"nativeSrc":"5908:25:101","nodeType":"YulFunctionCall","src":"5908:25:101"}],"functionName":{"name":"mstore","nativeSrc":"5890:6:101","nodeType":"YulIdentifier","src":"5890:6:101"},"nativeSrc":"5890:44:101","nodeType":"YulFunctionCall","src":"5890:44:101"},"nativeSrc":"5890:44:101","nodeType":"YulExpressionStatement","src":"5890:44:101"}]},"name":"abi_encode_tuple_t_uint40__to_t_uint40__fromStack_reversed","nativeSrc":"5746:194:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5814:9:101","nodeType":"YulTypedName","src":"5814:9:101","type":""},{"name":"value0","nativeSrc":"5825:6:101","nodeType":"YulTypedName","src":"5825:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5836:4:101","nodeType":"YulTypedName","src":"5836:4:101","type":""}],"src":"5746:194:101"},{"body":{"nativeSrc":"6015:177:101","nodeType":"YulBlock","src":"6015:177:101","statements":[{"body":{"nativeSrc":"6061:16:101","nodeType":"YulBlock","src":"6061:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6070:1:101","nodeType":"YulLiteral","src":"6070:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6073:1:101","nodeType":"YulLiteral","src":"6073:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6063:6:101","nodeType":"YulIdentifier","src":"6063:6:101"},"nativeSrc":"6063:12:101","nodeType":"YulFunctionCall","src":"6063:12:101"},"nativeSrc":"6063:12:101","nodeType":"YulExpressionStatement","src":"6063:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6036:7:101","nodeType":"YulIdentifier","src":"6036:7:101"},{"name":"headStart","nativeSrc":"6045:9:101","nodeType":"YulIdentifier","src":"6045:9:101"}],"functionName":{"name":"sub","nativeSrc":"6032:3:101","nodeType":"YulIdentifier","src":"6032:3:101"},"nativeSrc":"6032:23:101","nodeType":"YulFunctionCall","src":"6032:23:101"},{"kind":"number","nativeSrc":"6057:2:101","nodeType":"YulLiteral","src":"6057:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"6028:3:101","nodeType":"YulIdentifier","src":"6028:3:101"},"nativeSrc":"6028:32:101","nodeType":"YulFunctionCall","src":"6028:32:101"},"nativeSrc":"6025:52:101","nodeType":"YulIf","src":"6025:52:101"},{"nativeSrc":"6086:36:101","nodeType":"YulVariableDeclaration","src":"6086:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6112:9:101","nodeType":"YulIdentifier","src":"6112:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"6099:12:101","nodeType":"YulIdentifier","src":"6099:12:101"},"nativeSrc":"6099:23:101","nodeType":"YulFunctionCall","src":"6099:23:101"},"variables":[{"name":"value","nativeSrc":"6090:5:101","nodeType":"YulTypedName","src":"6090:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6156:5:101","nodeType":"YulIdentifier","src":"6156:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6131:24:101","nodeType":"YulIdentifier","src":"6131:24:101"},"nativeSrc":"6131:31:101","nodeType":"YulFunctionCall","src":"6131:31:101"},"nativeSrc":"6131:31:101","nodeType":"YulExpressionStatement","src":"6131:31:101"},{"nativeSrc":"6171:15:101","nodeType":"YulAssignment","src":"6171:15:101","value":{"name":"value","nativeSrc":"6181:5:101","nodeType":"YulIdentifier","src":"6181:5:101"},"variableNames":[{"name":"value0","nativeSrc":"6171:6:101","nodeType":"YulIdentifier","src":"6171:6:101"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"5945:247:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5981:9:101","nodeType":"YulTypedName","src":"5981:9:101","type":""},{"name":"dataEnd","nativeSrc":"5992:7:101","nodeType":"YulTypedName","src":"5992:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6004:6:101","nodeType":"YulTypedName","src":"6004:6:101","type":""}],"src":"5945:247:101"},{"body":{"nativeSrc":"6370:474:101","nodeType":"YulBlock","src":"6370:474:101","statements":[{"nativeSrc":"6380:27:101","nodeType":"YulAssignment","src":"6380:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6392:9:101","nodeType":"YulIdentifier","src":"6392:9:101"},{"kind":"number","nativeSrc":"6403:3:101","nodeType":"YulLiteral","src":"6403:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"6388:3:101","nodeType":"YulIdentifier","src":"6388:3:101"},"nativeSrc":"6388:19:101","nodeType":"YulFunctionCall","src":"6388:19:101"},"variableNames":[{"name":"tail","nativeSrc":"6380:4:101","nodeType":"YulIdentifier","src":"6380:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6423:9:101","nodeType":"YulIdentifier","src":"6423:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"6444:6:101","nodeType":"YulIdentifier","src":"6444:6:101"}],"functionName":{"name":"mload","nativeSrc":"6438:5:101","nodeType":"YulIdentifier","src":"6438:5:101"},"nativeSrc":"6438:13:101","nodeType":"YulFunctionCall","src":"6438:13:101"},{"kind":"number","nativeSrc":"6453:26:101","nodeType":"YulLiteral","src":"6453:26:101","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"6434:3:101","nodeType":"YulIdentifier","src":"6434:3:101"},"nativeSrc":"6434:46:101","nodeType":"YulFunctionCall","src":"6434:46:101"}],"functionName":{"name":"mstore","nativeSrc":"6416:6:101","nodeType":"YulIdentifier","src":"6416:6:101"},"nativeSrc":"6416:65:101","nodeType":"YulFunctionCall","src":"6416:65:101"},"nativeSrc":"6416:65:101","nodeType":"YulExpressionStatement","src":"6416:65:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6501:9:101","nodeType":"YulIdentifier","src":"6501:9:101"},{"kind":"number","nativeSrc":"6512:4:101","nodeType":"YulLiteral","src":"6512:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6497:3:101","nodeType":"YulIdentifier","src":"6497:3:101"},"nativeSrc":"6497:20:101","nodeType":"YulFunctionCall","src":"6497:20:101"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"6533:6:101","nodeType":"YulIdentifier","src":"6533:6:101"},{"kind":"number","nativeSrc":"6541:4:101","nodeType":"YulLiteral","src":"6541:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6529:3:101","nodeType":"YulIdentifier","src":"6529:3:101"},"nativeSrc":"6529:17:101","nodeType":"YulFunctionCall","src":"6529:17:101"}],"functionName":{"name":"mload","nativeSrc":"6523:5:101","nodeType":"YulIdentifier","src":"6523:5:101"},"nativeSrc":"6523:24:101","nodeType":"YulFunctionCall","src":"6523:24:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6557:3:101","nodeType":"YulLiteral","src":"6557:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"6562:1:101","nodeType":"YulLiteral","src":"6562:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6553:3:101","nodeType":"YulIdentifier","src":"6553:3:101"},"nativeSrc":"6553:11:101","nodeType":"YulFunctionCall","src":"6553:11:101"},{"kind":"number","nativeSrc":"6566:1:101","nodeType":"YulLiteral","src":"6566:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6549:3:101","nodeType":"YulIdentifier","src":"6549:3:101"},"nativeSrc":"6549:19:101","nodeType":"YulFunctionCall","src":"6549:19:101"}],"functionName":{"name":"and","nativeSrc":"6519:3:101","nodeType":"YulIdentifier","src":"6519:3:101"},"nativeSrc":"6519:50:101","nodeType":"YulFunctionCall","src":"6519:50:101"}],"functionName":{"name":"mstore","nativeSrc":"6490:6:101","nodeType":"YulIdentifier","src":"6490:6:101"},"nativeSrc":"6490:80:101","nodeType":"YulFunctionCall","src":"6490:80:101"},"nativeSrc":"6490:80:101","nodeType":"YulExpressionStatement","src":"6490:80:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6590:9:101","nodeType":"YulIdentifier","src":"6590:9:101"},{"kind":"number","nativeSrc":"6601:4:101","nodeType":"YulLiteral","src":"6601:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"6586:3:101","nodeType":"YulIdentifier","src":"6586:3:101"},"nativeSrc":"6586:20:101","nodeType":"YulFunctionCall","src":"6586:20:101"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"6622:6:101","nodeType":"YulIdentifier","src":"6622:6:101"},{"kind":"number","nativeSrc":"6630:4:101","nodeType":"YulLiteral","src":"6630:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"6618:3:101","nodeType":"YulIdentifier","src":"6618:3:101"},"nativeSrc":"6618:17:101","nodeType":"YulFunctionCall","src":"6618:17:101"}],"functionName":{"name":"mload","nativeSrc":"6612:5:101","nodeType":"YulIdentifier","src":"6612:5:101"},"nativeSrc":"6612:24:101","nodeType":"YulFunctionCall","src":"6612:24:101"},{"kind":"number","nativeSrc":"6638:34:101","nodeType":"YulLiteral","src":"6638:34:101","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"6608:3:101","nodeType":"YulIdentifier","src":"6608:3:101"},"nativeSrc":"6608:65:101","nodeType":"YulFunctionCall","src":"6608:65:101"}],"functionName":{"name":"mstore","nativeSrc":"6579:6:101","nodeType":"YulIdentifier","src":"6579:6:101"},"nativeSrc":"6579:95:101","nodeType":"YulFunctionCall","src":"6579:95:101"},"nativeSrc":"6579:95:101","nodeType":"YulExpressionStatement","src":"6579:95:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6694:9:101","nodeType":"YulIdentifier","src":"6694:9:101"},{"kind":"number","nativeSrc":"6705:4:101","nodeType":"YulLiteral","src":"6705:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"6690:3:101","nodeType":"YulIdentifier","src":"6690:3:101"},"nativeSrc":"6690:20:101","nodeType":"YulFunctionCall","src":"6690:20:101"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"6726:6:101","nodeType":"YulIdentifier","src":"6726:6:101"},{"kind":"number","nativeSrc":"6734:4:101","nodeType":"YulLiteral","src":"6734:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"6722:3:101","nodeType":"YulIdentifier","src":"6722:3:101"},"nativeSrc":"6722:17:101","nodeType":"YulFunctionCall","src":"6722:17:101"}],"functionName":{"name":"mload","nativeSrc":"6716:5:101","nodeType":"YulIdentifier","src":"6716:5:101"},"nativeSrc":"6716:24:101","nodeType":"YulFunctionCall","src":"6716:24:101"},{"kind":"number","nativeSrc":"6742:12:101","nodeType":"YulLiteral","src":"6742:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"6712:3:101","nodeType":"YulIdentifier","src":"6712:3:101"},"nativeSrc":"6712:43:101","nodeType":"YulFunctionCall","src":"6712:43:101"}],"functionName":{"name":"mstore","nativeSrc":"6683:6:101","nodeType":"YulIdentifier","src":"6683:6:101"},"nativeSrc":"6683:73:101","nodeType":"YulFunctionCall","src":"6683:73:101"},"nativeSrc":"6683:73:101","nodeType":"YulExpressionStatement","src":"6683:73:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6776:9:101","nodeType":"YulIdentifier","src":"6776:9:101"},{"kind":"number","nativeSrc":"6787:4:101","nodeType":"YulLiteral","src":"6787:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"6772:3:101","nodeType":"YulIdentifier","src":"6772:3:101"},"nativeSrc":"6772:20:101","nodeType":"YulFunctionCall","src":"6772:20:101"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"6808:6:101","nodeType":"YulIdentifier","src":"6808:6:101"},{"kind":"number","nativeSrc":"6816:4:101","nodeType":"YulLiteral","src":"6816:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"6804:3:101","nodeType":"YulIdentifier","src":"6804:3:101"},"nativeSrc":"6804:17:101","nodeType":"YulFunctionCall","src":"6804:17:101"}],"functionName":{"name":"mload","nativeSrc":"6798:5:101","nodeType":"YulIdentifier","src":"6798:5:101"},"nativeSrc":"6798:24:101","nodeType":"YulFunctionCall","src":"6798:24:101"},{"kind":"number","nativeSrc":"6824:12:101","nodeType":"YulLiteral","src":"6824:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"6794:3:101","nodeType":"YulIdentifier","src":"6794:3:101"},"nativeSrc":"6794:43:101","nodeType":"YulFunctionCall","src":"6794:43:101"}],"functionName":{"name":"mstore","nativeSrc":"6765:6:101","nodeType":"YulIdentifier","src":"6765:6:101"},"nativeSrc":"6765:73:101","nodeType":"YulFunctionCall","src":"6765:73:101"},"nativeSrc":"6765:73:101","nodeType":"YulExpressionStatement","src":"6765:73:101"}]},"name":"abi_encode_tuple_t_struct$_WithdrawalRequest_$18156_memory_ptr__to_t_struct$_WithdrawalRequest_$18156_memory_ptr__fromStack_reversed","nativeSrc":"6197:647:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6339:9:101","nodeType":"YulTypedName","src":"6339:9:101","type":""},{"name":"value0","nativeSrc":"6350:6:101","nodeType":"YulTypedName","src":"6350:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6361:4:101","nodeType":"YulTypedName","src":"6361:4:101","type":""}],"src":"6197:647:101"},{"body":{"nativeSrc":"6897:117:101","nodeType":"YulBlock","src":"6897:117:101","statements":[{"nativeSrc":"6907:29:101","nodeType":"YulAssignment","src":"6907:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"6929:6:101","nodeType":"YulIdentifier","src":"6929:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"6916:12:101","nodeType":"YulIdentifier","src":"6916:12:101"},"nativeSrc":"6916:20:101","nodeType":"YulFunctionCall","src":"6916:20:101"},"variableNames":[{"name":"value","nativeSrc":"6907:5:101","nodeType":"YulIdentifier","src":"6907:5:101"}]},{"body":{"nativeSrc":"6992:16:101","nodeType":"YulBlock","src":"6992:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7001:1:101","nodeType":"YulLiteral","src":"7001:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7004:1:101","nodeType":"YulLiteral","src":"7004:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6994:6:101","nodeType":"YulIdentifier","src":"6994:6:101"},"nativeSrc":"6994:12:101","nodeType":"YulFunctionCall","src":"6994:12:101"},"nativeSrc":"6994:12:101","nodeType":"YulExpressionStatement","src":"6994:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6958:5:101","nodeType":"YulIdentifier","src":"6958:5:101"},{"arguments":[{"name":"value","nativeSrc":"6969:5:101","nodeType":"YulIdentifier","src":"6969:5:101"},{"kind":"number","nativeSrc":"6976:12:101","nodeType":"YulLiteral","src":"6976:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"6965:3:101","nodeType":"YulIdentifier","src":"6965:3:101"},"nativeSrc":"6965:24:101","nodeType":"YulFunctionCall","src":"6965:24:101"}],"functionName":{"name":"eq","nativeSrc":"6955:2:101","nodeType":"YulIdentifier","src":"6955:2:101"},"nativeSrc":"6955:35:101","nodeType":"YulFunctionCall","src":"6955:35:101"}],"functionName":{"name":"iszero","nativeSrc":"6948:6:101","nodeType":"YulIdentifier","src":"6948:6:101"},"nativeSrc":"6948:43:101","nodeType":"YulFunctionCall","src":"6948:43:101"},"nativeSrc":"6945:63:101","nodeType":"YulIf","src":"6945:63:101"}]},"name":"abi_decode_uint40","nativeSrc":"6849:165:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"6876:6:101","nodeType":"YulTypedName","src":"6876:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"6887:5:101","nodeType":"YulTypedName","src":"6887:5:101","type":""}],"src":"6849:165:101"},{"body":{"nativeSrc":"7139:336:101","nodeType":"YulBlock","src":"7139:336:101","statements":[{"body":{"nativeSrc":"7185:16:101","nodeType":"YulBlock","src":"7185:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7194:1:101","nodeType":"YulLiteral","src":"7194:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7197:1:101","nodeType":"YulLiteral","src":"7197:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7187:6:101","nodeType":"YulIdentifier","src":"7187:6:101"},"nativeSrc":"7187:12:101","nodeType":"YulFunctionCall","src":"7187:12:101"},"nativeSrc":"7187:12:101","nodeType":"YulExpressionStatement","src":"7187:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7160:7:101","nodeType":"YulIdentifier","src":"7160:7:101"},{"name":"headStart","nativeSrc":"7169:9:101","nodeType":"YulIdentifier","src":"7169:9:101"}],"functionName":{"name":"sub","nativeSrc":"7156:3:101","nodeType":"YulIdentifier","src":"7156:3:101"},"nativeSrc":"7156:23:101","nodeType":"YulFunctionCall","src":"7156:23:101"},{"kind":"number","nativeSrc":"7181:2:101","nodeType":"YulLiteral","src":"7181:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"7152:3:101","nodeType":"YulIdentifier","src":"7152:3:101"},"nativeSrc":"7152:32:101","nodeType":"YulFunctionCall","src":"7152:32:101"},"nativeSrc":"7149:52:101","nodeType":"YulIf","src":"7149:52:101"},{"nativeSrc":"7210:36:101","nodeType":"YulVariableDeclaration","src":"7210:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7236:9:101","nodeType":"YulIdentifier","src":"7236:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"7223:12:101","nodeType":"YulIdentifier","src":"7223:12:101"},"nativeSrc":"7223:23:101","nodeType":"YulFunctionCall","src":"7223:23:101"},"variables":[{"name":"value","nativeSrc":"7214:5:101","nodeType":"YulTypedName","src":"7214:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7280:5:101","nodeType":"YulIdentifier","src":"7280:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"7255:24:101","nodeType":"YulIdentifier","src":"7255:24:101"},"nativeSrc":"7255:31:101","nodeType":"YulFunctionCall","src":"7255:31:101"},"nativeSrc":"7255:31:101","nodeType":"YulExpressionStatement","src":"7255:31:101"},{"nativeSrc":"7295:15:101","nodeType":"YulAssignment","src":"7295:15:101","value":{"name":"value","nativeSrc":"7305:5:101","nodeType":"YulIdentifier","src":"7305:5:101"},"variableNames":[{"name":"value0","nativeSrc":"7295:6:101","nodeType":"YulIdentifier","src":"7295:6:101"}]},{"nativeSrc":"7319:47:101","nodeType":"YulAssignment","src":"7319:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7351:9:101","nodeType":"YulIdentifier","src":"7351:9:101"},{"kind":"number","nativeSrc":"7362:2:101","nodeType":"YulLiteral","src":"7362:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7347:3:101","nodeType":"YulIdentifier","src":"7347:3:101"},"nativeSrc":"7347:18:101","nodeType":"YulFunctionCall","src":"7347:18:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"7329:17:101","nodeType":"YulIdentifier","src":"7329:17:101"},"nativeSrc":"7329:37:101","nodeType":"YulFunctionCall","src":"7329:37:101"},"variableNames":[{"name":"value1","nativeSrc":"7319:6:101","nodeType":"YulIdentifier","src":"7319:6:101"}]},{"nativeSrc":"7375:16:101","nodeType":"YulVariableDeclaration","src":"7375:16:101","value":{"kind":"number","nativeSrc":"7390:1:101","nodeType":"YulLiteral","src":"7390:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"7379:7:101","nodeType":"YulTypedName","src":"7379:7:101","type":""}]},{"nativeSrc":"7400:43:101","nodeType":"YulAssignment","src":"7400:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7428:9:101","nodeType":"YulIdentifier","src":"7428:9:101"},{"kind":"number","nativeSrc":"7439:2:101","nodeType":"YulLiteral","src":"7439:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7424:3:101","nodeType":"YulIdentifier","src":"7424:3:101"},"nativeSrc":"7424:18:101","nodeType":"YulFunctionCall","src":"7424:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"7411:12:101","nodeType":"YulIdentifier","src":"7411:12:101"},"nativeSrc":"7411:32:101","nodeType":"YulFunctionCall","src":"7411:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"7400:7:101","nodeType":"YulIdentifier","src":"7400:7:101"}]},{"nativeSrc":"7452:17:101","nodeType":"YulAssignment","src":"7452:17:101","value":{"name":"value_1","nativeSrc":"7462:7:101","nodeType":"YulIdentifier","src":"7462:7:101"},"variableNames":[{"name":"value2","nativeSrc":"7452:6:101","nodeType":"YulIdentifier","src":"7452:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$28869t_uint40t_uint256","nativeSrc":"7019:456:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7089:9:101","nodeType":"YulTypedName","src":"7089:9:101","type":""},{"name":"dataEnd","nativeSrc":"7100:7:101","nodeType":"YulTypedName","src":"7100:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7112:6:101","nodeType":"YulTypedName","src":"7112:6:101","type":""},{"name":"value1","nativeSrc":"7120:6:101","nodeType":"YulTypedName","src":"7120:6:101","type":""},{"name":"value2","nativeSrc":"7128:6:101","nodeType":"YulTypedName","src":"7128:6:101","type":""}],"src":"7019:456:101"},{"body":{"nativeSrc":"7564:332:101","nodeType":"YulBlock","src":"7564:332:101","statements":[{"body":{"nativeSrc":"7610:16:101","nodeType":"YulBlock","src":"7610:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7619:1:101","nodeType":"YulLiteral","src":"7619:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7622:1:101","nodeType":"YulLiteral","src":"7622:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7612:6:101","nodeType":"YulIdentifier","src":"7612:6:101"},"nativeSrc":"7612:12:101","nodeType":"YulFunctionCall","src":"7612:12:101"},"nativeSrc":"7612:12:101","nodeType":"YulExpressionStatement","src":"7612:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7585:7:101","nodeType":"YulIdentifier","src":"7585:7:101"},{"name":"headStart","nativeSrc":"7594:9:101","nodeType":"YulIdentifier","src":"7594:9:101"}],"functionName":{"name":"sub","nativeSrc":"7581:3:101","nodeType":"YulIdentifier","src":"7581:3:101"},"nativeSrc":"7581:23:101","nodeType":"YulFunctionCall","src":"7581:23:101"},{"kind":"number","nativeSrc":"7606:2:101","nodeType":"YulLiteral","src":"7606:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"7577:3:101","nodeType":"YulIdentifier","src":"7577:3:101"},"nativeSrc":"7577:32:101","nodeType":"YulFunctionCall","src":"7577:32:101"},"nativeSrc":"7574:52:101","nodeType":"YulIf","src":"7574:52:101"},{"nativeSrc":"7635:36:101","nodeType":"YulVariableDeclaration","src":"7635:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7661:9:101","nodeType":"YulIdentifier","src":"7661:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"7648:12:101","nodeType":"YulIdentifier","src":"7648:12:101"},"nativeSrc":"7648:23:101","nodeType":"YulFunctionCall","src":"7648:23:101"},"variables":[{"name":"value","nativeSrc":"7639:5:101","nodeType":"YulTypedName","src":"7639:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7705:5:101","nodeType":"YulIdentifier","src":"7705:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"7680:24:101","nodeType":"YulIdentifier","src":"7680:24:101"},"nativeSrc":"7680:31:101","nodeType":"YulFunctionCall","src":"7680:31:101"},"nativeSrc":"7680:31:101","nodeType":"YulExpressionStatement","src":"7680:31:101"},{"nativeSrc":"7720:15:101","nodeType":"YulAssignment","src":"7720:15:101","value":{"name":"value","nativeSrc":"7730:5:101","nodeType":"YulIdentifier","src":"7730:5:101"},"variableNames":[{"name":"value0","nativeSrc":"7720:6:101","nodeType":"YulIdentifier","src":"7720:6:101"}]},{"nativeSrc":"7744:47:101","nodeType":"YulVariableDeclaration","src":"7744:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7776:9:101","nodeType":"YulIdentifier","src":"7776:9:101"},{"kind":"number","nativeSrc":"7787:2:101","nodeType":"YulLiteral","src":"7787:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7772:3:101","nodeType":"YulIdentifier","src":"7772:3:101"},"nativeSrc":"7772:18:101","nodeType":"YulFunctionCall","src":"7772:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"7759:12:101","nodeType":"YulIdentifier","src":"7759:12:101"},"nativeSrc":"7759:32:101","nodeType":"YulFunctionCall","src":"7759:32:101"},"variables":[{"name":"value_1","nativeSrc":"7748:7:101","nodeType":"YulTypedName","src":"7748:7:101","type":""}]},{"body":{"nativeSrc":"7848:16:101","nodeType":"YulBlock","src":"7848:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7857:1:101","nodeType":"YulLiteral","src":"7857:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7860:1:101","nodeType":"YulLiteral","src":"7860:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7850:6:101","nodeType":"YulIdentifier","src":"7850:6:101"},"nativeSrc":"7850:12:101","nodeType":"YulFunctionCall","src":"7850:12:101"},"nativeSrc":"7850:12:101","nodeType":"YulExpressionStatement","src":"7850:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"7813:7:101","nodeType":"YulIdentifier","src":"7813:7:101"},{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"7836:7:101","nodeType":"YulIdentifier","src":"7836:7:101"}],"functionName":{"name":"iszero","nativeSrc":"7829:6:101","nodeType":"YulIdentifier","src":"7829:6:101"},"nativeSrc":"7829:15:101","nodeType":"YulFunctionCall","src":"7829:15:101"}],"functionName":{"name":"iszero","nativeSrc":"7822:6:101","nodeType":"YulIdentifier","src":"7822:6:101"},"nativeSrc":"7822:23:101","nodeType":"YulFunctionCall","src":"7822:23:101"}],"functionName":{"name":"eq","nativeSrc":"7810:2:101","nodeType":"YulIdentifier","src":"7810:2:101"},"nativeSrc":"7810:36:101","nodeType":"YulFunctionCall","src":"7810:36:101"}],"functionName":{"name":"iszero","nativeSrc":"7803:6:101","nodeType":"YulIdentifier","src":"7803:6:101"},"nativeSrc":"7803:44:101","nodeType":"YulFunctionCall","src":"7803:44:101"},"nativeSrc":"7800:64:101","nodeType":"YulIf","src":"7800:64:101"},{"nativeSrc":"7873:17:101","nodeType":"YulAssignment","src":"7873:17:101","value":{"name":"value_1","nativeSrc":"7883:7:101","nodeType":"YulIdentifier","src":"7883:7:101"},"variableNames":[{"name":"value1","nativeSrc":"7873:6:101","nodeType":"YulIdentifier","src":"7873:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_bool","nativeSrc":"7480:416:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7522:9:101","nodeType":"YulTypedName","src":"7522:9:101","type":""},{"name":"dataEnd","nativeSrc":"7533:7:101","nodeType":"YulTypedName","src":"7533:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7545:6:101","nodeType":"YulTypedName","src":"7545:6:101","type":""},{"name":"value1","nativeSrc":"7553:6:101","nodeType":"YulTypedName","src":"7553:6:101","type":""}],"src":"7480:416:101"},{"body":{"nativeSrc":"8031:588:101","nodeType":"YulBlock","src":"8031:588:101","statements":[{"body":{"nativeSrc":"8078:16:101","nodeType":"YulBlock","src":"8078:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8087:1:101","nodeType":"YulLiteral","src":"8087:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8090:1:101","nodeType":"YulLiteral","src":"8090:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8080:6:101","nodeType":"YulIdentifier","src":"8080:6:101"},"nativeSrc":"8080:12:101","nodeType":"YulFunctionCall","src":"8080:12:101"},"nativeSrc":"8080:12:101","nodeType":"YulExpressionStatement","src":"8080:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8052:7:101","nodeType":"YulIdentifier","src":"8052:7:101"},{"name":"headStart","nativeSrc":"8061:9:101","nodeType":"YulIdentifier","src":"8061:9:101"}],"functionName":{"name":"sub","nativeSrc":"8048:3:101","nodeType":"YulIdentifier","src":"8048:3:101"},"nativeSrc":"8048:23:101","nodeType":"YulFunctionCall","src":"8048:23:101"},{"kind":"number","nativeSrc":"8073:3:101","nodeType":"YulLiteral","src":"8073:3:101","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"8044:3:101","nodeType":"YulIdentifier","src":"8044:3:101"},"nativeSrc":"8044:33:101","nodeType":"YulFunctionCall","src":"8044:33:101"},"nativeSrc":"8041:53:101","nodeType":"YulIf","src":"8041:53:101"},{"nativeSrc":"8103:36:101","nodeType":"YulVariableDeclaration","src":"8103:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8129:9:101","nodeType":"YulIdentifier","src":"8129:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"8116:12:101","nodeType":"YulIdentifier","src":"8116:12:101"},"nativeSrc":"8116:23:101","nodeType":"YulFunctionCall","src":"8116:23:101"},"variables":[{"name":"value","nativeSrc":"8107:5:101","nodeType":"YulTypedName","src":"8107:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8173:5:101","nodeType":"YulIdentifier","src":"8173:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"8148:24:101","nodeType":"YulIdentifier","src":"8148:24:101"},"nativeSrc":"8148:31:101","nodeType":"YulFunctionCall","src":"8148:31:101"},"nativeSrc":"8148:31:101","nodeType":"YulExpressionStatement","src":"8148:31:101"},{"nativeSrc":"8188:15:101","nodeType":"YulAssignment","src":"8188:15:101","value":{"name":"value","nativeSrc":"8198:5:101","nodeType":"YulIdentifier","src":"8198:5:101"},"variableNames":[{"name":"value0","nativeSrc":"8188:6:101","nodeType":"YulIdentifier","src":"8188:6:101"}]},{"nativeSrc":"8212:47:101","nodeType":"YulVariableDeclaration","src":"8212:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8244:9:101","nodeType":"YulIdentifier","src":"8244:9:101"},{"kind":"number","nativeSrc":"8255:2:101","nodeType":"YulLiteral","src":"8255:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8240:3:101","nodeType":"YulIdentifier","src":"8240:3:101"},"nativeSrc":"8240:18:101","nodeType":"YulFunctionCall","src":"8240:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"8227:12:101","nodeType":"YulIdentifier","src":"8227:12:101"},"nativeSrc":"8227:32:101","nodeType":"YulFunctionCall","src":"8227:32:101"},"variables":[{"name":"value_1","nativeSrc":"8216:7:101","nodeType":"YulTypedName","src":"8216:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"8293:7:101","nodeType":"YulIdentifier","src":"8293:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"8268:24:101","nodeType":"YulIdentifier","src":"8268:24:101"},"nativeSrc":"8268:33:101","nodeType":"YulFunctionCall","src":"8268:33:101"},"nativeSrc":"8268:33:101","nodeType":"YulExpressionStatement","src":"8268:33:101"},{"nativeSrc":"8310:17:101","nodeType":"YulAssignment","src":"8310:17:101","value":{"name":"value_1","nativeSrc":"8320:7:101","nodeType":"YulIdentifier","src":"8320:7:101"},"variableNames":[{"name":"value1","nativeSrc":"8310:6:101","nodeType":"YulIdentifier","src":"8310:6:101"}]},{"nativeSrc":"8336:16:101","nodeType":"YulVariableDeclaration","src":"8336:16:101","value":{"kind":"number","nativeSrc":"8351:1:101","nodeType":"YulLiteral","src":"8351:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"8340:7:101","nodeType":"YulTypedName","src":"8340:7:101","type":""}]},{"nativeSrc":"8361:43:101","nodeType":"YulAssignment","src":"8361:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8389:9:101","nodeType":"YulIdentifier","src":"8389:9:101"},{"kind":"number","nativeSrc":"8400:2:101","nodeType":"YulLiteral","src":"8400:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8385:3:101","nodeType":"YulIdentifier","src":"8385:3:101"},"nativeSrc":"8385:18:101","nodeType":"YulFunctionCall","src":"8385:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"8372:12:101","nodeType":"YulIdentifier","src":"8372:12:101"},"nativeSrc":"8372:32:101","nodeType":"YulFunctionCall","src":"8372:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"8361:7:101","nodeType":"YulIdentifier","src":"8361:7:101"}]},{"nativeSrc":"8413:17:101","nodeType":"YulAssignment","src":"8413:17:101","value":{"name":"value_2","nativeSrc":"8423:7:101","nodeType":"YulIdentifier","src":"8423:7:101"},"variableNames":[{"name":"value2","nativeSrc":"8413:6:101","nodeType":"YulIdentifier","src":"8413:6:101"}]},{"nativeSrc":"8439:46:101","nodeType":"YulVariableDeclaration","src":"8439:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8470:9:101","nodeType":"YulIdentifier","src":"8470:9:101"},{"kind":"number","nativeSrc":"8481:2:101","nodeType":"YulLiteral","src":"8481:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8466:3:101","nodeType":"YulIdentifier","src":"8466:3:101"},"nativeSrc":"8466:18:101","nodeType":"YulFunctionCall","src":"8466:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"8453:12:101","nodeType":"YulIdentifier","src":"8453:12:101"},"nativeSrc":"8453:32:101","nodeType":"YulFunctionCall","src":"8453:32:101"},"variables":[{"name":"offset","nativeSrc":"8443:6:101","nodeType":"YulTypedName","src":"8443:6:101","type":""}]},{"body":{"nativeSrc":"8528:16:101","nodeType":"YulBlock","src":"8528:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8537:1:101","nodeType":"YulLiteral","src":"8537:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8540:1:101","nodeType":"YulLiteral","src":"8540:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8530:6:101","nodeType":"YulIdentifier","src":"8530:6:101"},"nativeSrc":"8530:12:101","nodeType":"YulFunctionCall","src":"8530:12:101"},"nativeSrc":"8530:12:101","nodeType":"YulExpressionStatement","src":"8530:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"8500:6:101","nodeType":"YulIdentifier","src":"8500:6:101"},{"kind":"number","nativeSrc":"8508:18:101","nodeType":"YulLiteral","src":"8508:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8497:2:101","nodeType":"YulIdentifier","src":"8497:2:101"},"nativeSrc":"8497:30:101","nodeType":"YulFunctionCall","src":"8497:30:101"},"nativeSrc":"8494:50:101","nodeType":"YulIf","src":"8494:50:101"},{"nativeSrc":"8553:60:101","nodeType":"YulAssignment","src":"8553:60:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8585:9:101","nodeType":"YulIdentifier","src":"8585:9:101"},{"name":"offset","nativeSrc":"8596:6:101","nodeType":"YulIdentifier","src":"8596:6:101"}],"functionName":{"name":"add","nativeSrc":"8581:3:101","nodeType":"YulIdentifier","src":"8581:3:101"},"nativeSrc":"8581:22:101","nodeType":"YulFunctionCall","src":"8581:22:101"},{"name":"dataEnd","nativeSrc":"8605:7:101","nodeType":"YulIdentifier","src":"8605:7:101"}],"functionName":{"name":"abi_decode_string","nativeSrc":"8563:17:101","nodeType":"YulIdentifier","src":"8563:17:101"},"nativeSrc":"8563:50:101","nodeType":"YulFunctionCall","src":"8563:50:101"},"variableNames":[{"name":"value3","nativeSrc":"8553:6:101","nodeType":"YulIdentifier","src":"8553:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr","nativeSrc":"7901:718:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7973:9:101","nodeType":"YulTypedName","src":"7973:9:101","type":""},{"name":"dataEnd","nativeSrc":"7984:7:101","nodeType":"YulTypedName","src":"7984:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7996:6:101","nodeType":"YulTypedName","src":"7996:6:101","type":""},{"name":"value1","nativeSrc":"8004:6:101","nodeType":"YulTypedName","src":"8004:6:101","type":""},{"name":"value2","nativeSrc":"8012:6:101","nodeType":"YulTypedName","src":"8012:6:101","type":""},{"name":"value3","nativeSrc":"8020:6:101","nodeType":"YulTypedName","src":"8020:6:101","type":""}],"src":"7901:718:101"},{"body":{"nativeSrc":"8810:799:101","nodeType":"YulBlock","src":"8810:799:101","statements":[{"body":{"nativeSrc":"8857:16:101","nodeType":"YulBlock","src":"8857:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8866:1:101","nodeType":"YulLiteral","src":"8866:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8869:1:101","nodeType":"YulLiteral","src":"8869:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8859:6:101","nodeType":"YulIdentifier","src":"8859:6:101"},"nativeSrc":"8859:12:101","nodeType":"YulFunctionCall","src":"8859:12:101"},"nativeSrc":"8859:12:101","nodeType":"YulExpressionStatement","src":"8859:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8831:7:101","nodeType":"YulIdentifier","src":"8831:7:101"},{"name":"headStart","nativeSrc":"8840:9:101","nodeType":"YulIdentifier","src":"8840:9:101"}],"functionName":{"name":"sub","nativeSrc":"8827:3:101","nodeType":"YulIdentifier","src":"8827:3:101"},"nativeSrc":"8827:23:101","nodeType":"YulFunctionCall","src":"8827:23:101"},{"kind":"number","nativeSrc":"8852:3:101","nodeType":"YulLiteral","src":"8852:3:101","type":"","value":"224"}],"functionName":{"name":"slt","nativeSrc":"8823:3:101","nodeType":"YulIdentifier","src":"8823:3:101"},"nativeSrc":"8823:33:101","nodeType":"YulFunctionCall","src":"8823:33:101"},"nativeSrc":"8820:53:101","nodeType":"YulIf","src":"8820:53:101"},{"nativeSrc":"8882:36:101","nodeType":"YulVariableDeclaration","src":"8882:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8908:9:101","nodeType":"YulIdentifier","src":"8908:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"8895:12:101","nodeType":"YulIdentifier","src":"8895:12:101"},"nativeSrc":"8895:23:101","nodeType":"YulFunctionCall","src":"8895:23:101"},"variables":[{"name":"value","nativeSrc":"8886:5:101","nodeType":"YulTypedName","src":"8886:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8952:5:101","nodeType":"YulIdentifier","src":"8952:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"8927:24:101","nodeType":"YulIdentifier","src":"8927:24:101"},"nativeSrc":"8927:31:101","nodeType":"YulFunctionCall","src":"8927:31:101"},"nativeSrc":"8927:31:101","nodeType":"YulExpressionStatement","src":"8927:31:101"},{"nativeSrc":"8967:15:101","nodeType":"YulAssignment","src":"8967:15:101","value":{"name":"value","nativeSrc":"8977:5:101","nodeType":"YulIdentifier","src":"8977:5:101"},"variableNames":[{"name":"value0","nativeSrc":"8967:6:101","nodeType":"YulIdentifier","src":"8967:6:101"}]},{"nativeSrc":"8991:47:101","nodeType":"YulAssignment","src":"8991:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9023:9:101","nodeType":"YulIdentifier","src":"9023:9:101"},{"kind":"number","nativeSrc":"9034:2:101","nodeType":"YulLiteral","src":"9034:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9019:3:101","nodeType":"YulIdentifier","src":"9019:3:101"},"nativeSrc":"9019:18:101","nodeType":"YulFunctionCall","src":"9019:18:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"9001:17:101","nodeType":"YulIdentifier","src":"9001:17:101"},"nativeSrc":"9001:37:101","nodeType":"YulFunctionCall","src":"9001:37:101"},"variableNames":[{"name":"value1","nativeSrc":"8991:6:101","nodeType":"YulIdentifier","src":"8991:6:101"}]},{"nativeSrc":"9047:16:101","nodeType":"YulVariableDeclaration","src":"9047:16:101","value":{"kind":"number","nativeSrc":"9062:1:101","nodeType":"YulLiteral","src":"9062:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"9051:7:101","nodeType":"YulTypedName","src":"9051:7:101","type":""}]},{"nativeSrc":"9072:43:101","nodeType":"YulAssignment","src":"9072:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9100:9:101","nodeType":"YulIdentifier","src":"9100:9:101"},{"kind":"number","nativeSrc":"9111:2:101","nodeType":"YulLiteral","src":"9111:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9096:3:101","nodeType":"YulIdentifier","src":"9096:3:101"},"nativeSrc":"9096:18:101","nodeType":"YulFunctionCall","src":"9096:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"9083:12:101","nodeType":"YulIdentifier","src":"9083:12:101"},"nativeSrc":"9083:32:101","nodeType":"YulFunctionCall","src":"9083:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"9072:7:101","nodeType":"YulIdentifier","src":"9072:7:101"}]},{"nativeSrc":"9124:17:101","nodeType":"YulAssignment","src":"9124:17:101","value":{"name":"value_1","nativeSrc":"9134:7:101","nodeType":"YulIdentifier","src":"9134:7:101"},"variableNames":[{"name":"value2","nativeSrc":"9124:6:101","nodeType":"YulIdentifier","src":"9124:6:101"}]},{"nativeSrc":"9150:16:101","nodeType":"YulVariableDeclaration","src":"9150:16:101","value":{"kind":"number","nativeSrc":"9165:1:101","nodeType":"YulLiteral","src":"9165:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"9154:7:101","nodeType":"YulTypedName","src":"9154:7:101","type":""}]},{"nativeSrc":"9175:43:101","nodeType":"YulAssignment","src":"9175:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9203:9:101","nodeType":"YulIdentifier","src":"9203:9:101"},{"kind":"number","nativeSrc":"9214:2:101","nodeType":"YulLiteral","src":"9214:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"9199:3:101","nodeType":"YulIdentifier","src":"9199:3:101"},"nativeSrc":"9199:18:101","nodeType":"YulFunctionCall","src":"9199:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"9186:12:101","nodeType":"YulIdentifier","src":"9186:12:101"},"nativeSrc":"9186:32:101","nodeType":"YulFunctionCall","src":"9186:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"9175:7:101","nodeType":"YulIdentifier","src":"9175:7:101"}]},{"nativeSrc":"9227:17:101","nodeType":"YulAssignment","src":"9227:17:101","value":{"name":"value_2","nativeSrc":"9237:7:101","nodeType":"YulIdentifier","src":"9237:7:101"},"variableNames":[{"name":"value3","nativeSrc":"9227:6:101","nodeType":"YulIdentifier","src":"9227:6:101"}]},{"nativeSrc":"9253:48:101","nodeType":"YulVariableDeclaration","src":"9253:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9285:9:101","nodeType":"YulIdentifier","src":"9285:9:101"},{"kind":"number","nativeSrc":"9296:3:101","nodeType":"YulLiteral","src":"9296:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"9281:3:101","nodeType":"YulIdentifier","src":"9281:3:101"},"nativeSrc":"9281:19:101","nodeType":"YulFunctionCall","src":"9281:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"9268:12:101","nodeType":"YulIdentifier","src":"9268:12:101"},"nativeSrc":"9268:33:101","nodeType":"YulFunctionCall","src":"9268:33:101"},"variables":[{"name":"value_3","nativeSrc":"9257:7:101","nodeType":"YulTypedName","src":"9257:7:101","type":""}]},{"body":{"nativeSrc":"9353:16:101","nodeType":"YulBlock","src":"9353:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9362:1:101","nodeType":"YulLiteral","src":"9362:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9365:1:101","nodeType":"YulLiteral","src":"9365:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9355:6:101","nodeType":"YulIdentifier","src":"9355:6:101"},"nativeSrc":"9355:12:101","nodeType":"YulFunctionCall","src":"9355:12:101"},"nativeSrc":"9355:12:101","nodeType":"YulExpressionStatement","src":"9355:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value_3","nativeSrc":"9323:7:101","nodeType":"YulIdentifier","src":"9323:7:101"},{"arguments":[{"name":"value_3","nativeSrc":"9336:7:101","nodeType":"YulIdentifier","src":"9336:7:101"},{"kind":"number","nativeSrc":"9345:4:101","nodeType":"YulLiteral","src":"9345:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"9332:3:101","nodeType":"YulIdentifier","src":"9332:3:101"},"nativeSrc":"9332:18:101","nodeType":"YulFunctionCall","src":"9332:18:101"}],"functionName":{"name":"eq","nativeSrc":"9320:2:101","nodeType":"YulIdentifier","src":"9320:2:101"},"nativeSrc":"9320:31:101","nodeType":"YulFunctionCall","src":"9320:31:101"}],"functionName":{"name":"iszero","nativeSrc":"9313:6:101","nodeType":"YulIdentifier","src":"9313:6:101"},"nativeSrc":"9313:39:101","nodeType":"YulFunctionCall","src":"9313:39:101"},"nativeSrc":"9310:59:101","nodeType":"YulIf","src":"9310:59:101"},{"nativeSrc":"9378:17:101","nodeType":"YulAssignment","src":"9378:17:101","value":{"name":"value_3","nativeSrc":"9388:7:101","nodeType":"YulIdentifier","src":"9388:7:101"},"variableNames":[{"name":"value4","nativeSrc":"9378:6:101","nodeType":"YulIdentifier","src":"9378:6:101"}]},{"nativeSrc":"9404:16:101","nodeType":"YulVariableDeclaration","src":"9404:16:101","value":{"kind":"number","nativeSrc":"9419:1:101","nodeType":"YulLiteral","src":"9419:1:101","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"9408:7:101","nodeType":"YulTypedName","src":"9408:7:101","type":""}]},{"nativeSrc":"9429:44:101","nodeType":"YulAssignment","src":"9429:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9457:9:101","nodeType":"YulIdentifier","src":"9457:9:101"},{"kind":"number","nativeSrc":"9468:3:101","nodeType":"YulLiteral","src":"9468:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"9453:3:101","nodeType":"YulIdentifier","src":"9453:3:101"},"nativeSrc":"9453:19:101","nodeType":"YulFunctionCall","src":"9453:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"9440:12:101","nodeType":"YulIdentifier","src":"9440:12:101"},"nativeSrc":"9440:33:101","nodeType":"YulFunctionCall","src":"9440:33:101"},"variableNames":[{"name":"value_4","nativeSrc":"9429:7:101","nodeType":"YulIdentifier","src":"9429:7:101"}]},{"nativeSrc":"9482:17:101","nodeType":"YulAssignment","src":"9482:17:101","value":{"name":"value_4","nativeSrc":"9492:7:101","nodeType":"YulIdentifier","src":"9492:7:101"},"variableNames":[{"name":"value5","nativeSrc":"9482:6:101","nodeType":"YulIdentifier","src":"9482:6:101"}]},{"nativeSrc":"9508:16:101","nodeType":"YulVariableDeclaration","src":"9508:16:101","value":{"kind":"number","nativeSrc":"9523:1:101","nodeType":"YulLiteral","src":"9523:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"9512:7:101","nodeType":"YulTypedName","src":"9512:7:101","type":""}]},{"nativeSrc":"9533:44:101","nodeType":"YulAssignment","src":"9533:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9561:9:101","nodeType":"YulIdentifier","src":"9561:9:101"},{"kind":"number","nativeSrc":"9572:3:101","nodeType":"YulLiteral","src":"9572:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"9557:3:101","nodeType":"YulIdentifier","src":"9557:3:101"},"nativeSrc":"9557:19:101","nodeType":"YulFunctionCall","src":"9557:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"9544:12:101","nodeType":"YulIdentifier","src":"9544:12:101"},"nativeSrc":"9544:33:101","nodeType":"YulFunctionCall","src":"9544:33:101"},"variableNames":[{"name":"value_5","nativeSrc":"9533:7:101","nodeType":"YulIdentifier","src":"9533:7:101"}]},{"nativeSrc":"9586:17:101","nodeType":"YulAssignment","src":"9586:17:101","value":{"name":"value_5","nativeSrc":"9596:7:101","nodeType":"YulIdentifier","src":"9596:7:101"},"variableNames":[{"name":"value6","nativeSrc":"9586:6:101","nodeType":"YulIdentifier","src":"9586:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$28869t_uint40t_uint256t_uint256t_uint8t_bytes32t_bytes32","nativeSrc":"8624:985:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8728:9:101","nodeType":"YulTypedName","src":"8728:9:101","type":""},{"name":"dataEnd","nativeSrc":"8739:7:101","nodeType":"YulTypedName","src":"8739:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8751:6:101","nodeType":"YulTypedName","src":"8751:6:101","type":""},{"name":"value1","nativeSrc":"8759:6:101","nodeType":"YulTypedName","src":"8759:6:101","type":""},{"name":"value2","nativeSrc":"8767:6:101","nodeType":"YulTypedName","src":"8767:6:101","type":""},{"name":"value3","nativeSrc":"8775:6:101","nodeType":"YulTypedName","src":"8775:6:101","type":""},{"name":"value4","nativeSrc":"8783:6:101","nodeType":"YulTypedName","src":"8783:6:101","type":""},{"name":"value5","nativeSrc":"8791:6:101","nodeType":"YulTypedName","src":"8791:6:101","type":""},{"name":"value6","nativeSrc":"8799:6:101","nodeType":"YulTypedName","src":"8799:6:101","type":""}],"src":"8624:985:101"},{"body":{"nativeSrc":"9738:102:101","nodeType":"YulBlock","src":"9738:102:101","statements":[{"nativeSrc":"9748:26:101","nodeType":"YulAssignment","src":"9748:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"9760:9:101","nodeType":"YulIdentifier","src":"9760:9:101"},{"kind":"number","nativeSrc":"9771:2:101","nodeType":"YulLiteral","src":"9771:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9756:3:101","nodeType":"YulIdentifier","src":"9756:3:101"},"nativeSrc":"9756:18:101","nodeType":"YulFunctionCall","src":"9756:18:101"},"variableNames":[{"name":"tail","nativeSrc":"9748:4:101","nodeType":"YulIdentifier","src":"9748:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9790:9:101","nodeType":"YulIdentifier","src":"9790:9:101"},{"arguments":[{"name":"value0","nativeSrc":"9805:6:101","nodeType":"YulIdentifier","src":"9805:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9821:3:101","nodeType":"YulLiteral","src":"9821:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"9826:1:101","nodeType":"YulLiteral","src":"9826:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"9817:3:101","nodeType":"YulIdentifier","src":"9817:3:101"},"nativeSrc":"9817:11:101","nodeType":"YulFunctionCall","src":"9817:11:101"},{"kind":"number","nativeSrc":"9830:1:101","nodeType":"YulLiteral","src":"9830:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"9813:3:101","nodeType":"YulIdentifier","src":"9813:3:101"},"nativeSrc":"9813:19:101","nodeType":"YulFunctionCall","src":"9813:19:101"}],"functionName":{"name":"and","nativeSrc":"9801:3:101","nodeType":"YulIdentifier","src":"9801:3:101"},"nativeSrc":"9801:32:101","nodeType":"YulFunctionCall","src":"9801:32:101"}],"functionName":{"name":"mstore","nativeSrc":"9783:6:101","nodeType":"YulIdentifier","src":"9783:6:101"},"nativeSrc":"9783:51:101","nodeType":"YulFunctionCall","src":"9783:51:101"},"nativeSrc":"9783:51:101","nodeType":"YulExpressionStatement","src":"9783:51:101"}]},"name":"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed","nativeSrc":"9614:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9707:9:101","nodeType":"YulTypedName","src":"9707:9:101","type":""},{"name":"value0","nativeSrc":"9718:6:101","nodeType":"YulTypedName","src":"9718:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9729:4:101","nodeType":"YulTypedName","src":"9729:4:101","type":""}],"src":"9614:226:101"},{"body":{"nativeSrc":"9932:301:101","nodeType":"YulBlock","src":"9932:301:101","statements":[{"body":{"nativeSrc":"9978:16:101","nodeType":"YulBlock","src":"9978:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9987:1:101","nodeType":"YulLiteral","src":"9987:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9990:1:101","nodeType":"YulLiteral","src":"9990:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9980:6:101","nodeType":"YulIdentifier","src":"9980:6:101"},"nativeSrc":"9980:12:101","nodeType":"YulFunctionCall","src":"9980:12:101"},"nativeSrc":"9980:12:101","nodeType":"YulExpressionStatement","src":"9980:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9953:7:101","nodeType":"YulIdentifier","src":"9953:7:101"},{"name":"headStart","nativeSrc":"9962:9:101","nodeType":"YulIdentifier","src":"9962:9:101"}],"functionName":{"name":"sub","nativeSrc":"9949:3:101","nodeType":"YulIdentifier","src":"9949:3:101"},"nativeSrc":"9949:23:101","nodeType":"YulFunctionCall","src":"9949:23:101"},{"kind":"number","nativeSrc":"9974:2:101","nodeType":"YulLiteral","src":"9974:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"9945:3:101","nodeType":"YulIdentifier","src":"9945:3:101"},"nativeSrc":"9945:32:101","nodeType":"YulFunctionCall","src":"9945:32:101"},"nativeSrc":"9942:52:101","nodeType":"YulIf","src":"9942:52:101"},{"nativeSrc":"10003:36:101","nodeType":"YulVariableDeclaration","src":"10003:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10029:9:101","nodeType":"YulIdentifier","src":"10029:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"10016:12:101","nodeType":"YulIdentifier","src":"10016:12:101"},"nativeSrc":"10016:23:101","nodeType":"YulFunctionCall","src":"10016:23:101"},"variables":[{"name":"value","nativeSrc":"10007:5:101","nodeType":"YulTypedName","src":"10007:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10073:5:101","nodeType":"YulIdentifier","src":"10073:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10048:24:101","nodeType":"YulIdentifier","src":"10048:24:101"},"nativeSrc":"10048:31:101","nodeType":"YulFunctionCall","src":"10048:31:101"},"nativeSrc":"10048:31:101","nodeType":"YulExpressionStatement","src":"10048:31:101"},{"nativeSrc":"10088:15:101","nodeType":"YulAssignment","src":"10088:15:101","value":{"name":"value","nativeSrc":"10098:5:101","nodeType":"YulIdentifier","src":"10098:5:101"},"variableNames":[{"name":"value0","nativeSrc":"10088:6:101","nodeType":"YulIdentifier","src":"10088:6:101"}]},{"nativeSrc":"10112:47:101","nodeType":"YulVariableDeclaration","src":"10112:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10144:9:101","nodeType":"YulIdentifier","src":"10144:9:101"},{"kind":"number","nativeSrc":"10155:2:101","nodeType":"YulLiteral","src":"10155:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10140:3:101","nodeType":"YulIdentifier","src":"10140:3:101"},"nativeSrc":"10140:18:101","nodeType":"YulFunctionCall","src":"10140:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"10127:12:101","nodeType":"YulIdentifier","src":"10127:12:101"},"nativeSrc":"10127:32:101","nodeType":"YulFunctionCall","src":"10127:32:101"},"variables":[{"name":"value_1","nativeSrc":"10116:7:101","nodeType":"YulTypedName","src":"10116:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"10193:7:101","nodeType":"YulIdentifier","src":"10193:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10168:24:101","nodeType":"YulIdentifier","src":"10168:24:101"},"nativeSrc":"10168:33:101","nodeType":"YulFunctionCall","src":"10168:33:101"},"nativeSrc":"10168:33:101","nodeType":"YulExpressionStatement","src":"10168:33:101"},{"nativeSrc":"10210:17:101","nodeType":"YulAssignment","src":"10210:17:101","value":{"name":"value_1","nativeSrc":"10220:7:101","nodeType":"YulIdentifier","src":"10220:7:101"},"variableNames":[{"name":"value1","nativeSrc":"10210:6:101","nodeType":"YulIdentifier","src":"10210:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"9845:388:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9890:9:101","nodeType":"YulTypedName","src":"9890:9:101","type":""},{"name":"dataEnd","nativeSrc":"9901:7:101","nodeType":"YulTypedName","src":"9901:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9913:6:101","nodeType":"YulTypedName","src":"9913:6:101","type":""},{"name":"value1","nativeSrc":"9921:6:101","nodeType":"YulTypedName","src":"9921:6:101","type":""}],"src":"9845:388:101"},{"body":{"nativeSrc":"10325:177:101","nodeType":"YulBlock","src":"10325:177:101","statements":[{"body":{"nativeSrc":"10371:16:101","nodeType":"YulBlock","src":"10371:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10380:1:101","nodeType":"YulLiteral","src":"10380:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"10383:1:101","nodeType":"YulLiteral","src":"10383:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10373:6:101","nodeType":"YulIdentifier","src":"10373:6:101"},"nativeSrc":"10373:12:101","nodeType":"YulFunctionCall","src":"10373:12:101"},"nativeSrc":"10373:12:101","nodeType":"YulExpressionStatement","src":"10373:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10346:7:101","nodeType":"YulIdentifier","src":"10346:7:101"},{"name":"headStart","nativeSrc":"10355:9:101","nodeType":"YulIdentifier","src":"10355:9:101"}],"functionName":{"name":"sub","nativeSrc":"10342:3:101","nodeType":"YulIdentifier","src":"10342:3:101"},"nativeSrc":"10342:23:101","nodeType":"YulFunctionCall","src":"10342:23:101"},{"kind":"number","nativeSrc":"10367:2:101","nodeType":"YulLiteral","src":"10367:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"10338:3:101","nodeType":"YulIdentifier","src":"10338:3:101"},"nativeSrc":"10338:32:101","nodeType":"YulFunctionCall","src":"10338:32:101"},"nativeSrc":"10335:52:101","nodeType":"YulIf","src":"10335:52:101"},{"nativeSrc":"10396:36:101","nodeType":"YulVariableDeclaration","src":"10396:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10422:9:101","nodeType":"YulIdentifier","src":"10422:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"10409:12:101","nodeType":"YulIdentifier","src":"10409:12:101"},"nativeSrc":"10409:23:101","nodeType":"YulFunctionCall","src":"10409:23:101"},"variables":[{"name":"value","nativeSrc":"10400:5:101","nodeType":"YulTypedName","src":"10400:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10466:5:101","nodeType":"YulIdentifier","src":"10466:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10441:24:101","nodeType":"YulIdentifier","src":"10441:24:101"},"nativeSrc":"10441:31:101","nodeType":"YulFunctionCall","src":"10441:31:101"},"nativeSrc":"10441:31:101","nodeType":"YulExpressionStatement","src":"10441:31:101"},{"nativeSrc":"10481:15:101","nodeType":"YulAssignment","src":"10481:15:101","value":{"name":"value","nativeSrc":"10491:5:101","nodeType":"YulIdentifier","src":"10491:5:101"},"variableNames":[{"name":"value0","nativeSrc":"10481:6:101","nodeType":"YulIdentifier","src":"10481:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$28869","nativeSrc":"10238:264:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10291:9:101","nodeType":"YulTypedName","src":"10291:9:101","type":""},{"name":"dataEnd","nativeSrc":"10302:7:101","nodeType":"YulTypedName","src":"10302:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10314:6:101","nodeType":"YulTypedName","src":"10314:6:101","type":""}],"src":"10238:264:101"},{"body":{"nativeSrc":"10610:233:101","nodeType":"YulBlock","src":"10610:233:101","statements":[{"body":{"nativeSrc":"10656:16:101","nodeType":"YulBlock","src":"10656:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10665:1:101","nodeType":"YulLiteral","src":"10665:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"10668:1:101","nodeType":"YulLiteral","src":"10668:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10658:6:101","nodeType":"YulIdentifier","src":"10658:6:101"},"nativeSrc":"10658:12:101","nodeType":"YulFunctionCall","src":"10658:12:101"},"nativeSrc":"10658:12:101","nodeType":"YulExpressionStatement","src":"10658:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10631:7:101","nodeType":"YulIdentifier","src":"10631:7:101"},{"name":"headStart","nativeSrc":"10640:9:101","nodeType":"YulIdentifier","src":"10640:9:101"}],"functionName":{"name":"sub","nativeSrc":"10627:3:101","nodeType":"YulIdentifier","src":"10627:3:101"},"nativeSrc":"10627:23:101","nodeType":"YulFunctionCall","src":"10627:23:101"},{"kind":"number","nativeSrc":"10652:2:101","nodeType":"YulLiteral","src":"10652:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"10623:3:101","nodeType":"YulIdentifier","src":"10623:3:101"},"nativeSrc":"10623:32:101","nodeType":"YulFunctionCall","src":"10623:32:101"},"nativeSrc":"10620:52:101","nodeType":"YulIf","src":"10620:52:101"},{"nativeSrc":"10681:36:101","nodeType":"YulVariableDeclaration","src":"10681:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10707:9:101","nodeType":"YulIdentifier","src":"10707:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"10694:12:101","nodeType":"YulIdentifier","src":"10694:12:101"},"nativeSrc":"10694:23:101","nodeType":"YulFunctionCall","src":"10694:23:101"},"variables":[{"name":"value","nativeSrc":"10685:5:101","nodeType":"YulTypedName","src":"10685:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10751:5:101","nodeType":"YulIdentifier","src":"10751:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10726:24:101","nodeType":"YulIdentifier","src":"10726:24:101"},"nativeSrc":"10726:31:101","nodeType":"YulFunctionCall","src":"10726:31:101"},"nativeSrc":"10726:31:101","nodeType":"YulExpressionStatement","src":"10726:31:101"},{"nativeSrc":"10766:15:101","nodeType":"YulAssignment","src":"10766:15:101","value":{"name":"value","nativeSrc":"10776:5:101","nodeType":"YulIdentifier","src":"10776:5:101"},"variableNames":[{"name":"value0","nativeSrc":"10766:6:101","nodeType":"YulIdentifier","src":"10766:6:101"}]},{"nativeSrc":"10790:47:101","nodeType":"YulAssignment","src":"10790:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10822:9:101","nodeType":"YulIdentifier","src":"10822:9:101"},{"kind":"number","nativeSrc":"10833:2:101","nodeType":"YulLiteral","src":"10833:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10818:3:101","nodeType":"YulIdentifier","src":"10818:3:101"},"nativeSrc":"10818:18:101","nodeType":"YulFunctionCall","src":"10818:18:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"10800:17:101","nodeType":"YulIdentifier","src":"10800:17:101"},"nativeSrc":"10800:37:101","nodeType":"YulFunctionCall","src":"10800:37:101"},"variableNames":[{"name":"value1","nativeSrc":"10790:6:101","nodeType":"YulIdentifier","src":"10790:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$28869t_uint40","nativeSrc":"10507:336:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10568:9:101","nodeType":"YulTypedName","src":"10568:9:101","type":""},{"name":"dataEnd","nativeSrc":"10579:7:101","nodeType":"YulTypedName","src":"10579:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10591:6:101","nodeType":"YulTypedName","src":"10591:6:101","type":""},{"name":"value1","nativeSrc":"10599:6:101","nodeType":"YulTypedName","src":"10599:6:101","type":""}],"src":"10507:336:101"},{"body":{"nativeSrc":"10903:325:101","nodeType":"YulBlock","src":"10903:325:101","statements":[{"nativeSrc":"10913:22:101","nodeType":"YulAssignment","src":"10913:22:101","value":{"arguments":[{"kind":"number","nativeSrc":"10927:1:101","nodeType":"YulLiteral","src":"10927:1:101","type":"","value":"1"},{"name":"data","nativeSrc":"10930:4:101","nodeType":"YulIdentifier","src":"10930:4:101"}],"functionName":{"name":"shr","nativeSrc":"10923:3:101","nodeType":"YulIdentifier","src":"10923:3:101"},"nativeSrc":"10923:12:101","nodeType":"YulFunctionCall","src":"10923:12:101"},"variableNames":[{"name":"length","nativeSrc":"10913:6:101","nodeType":"YulIdentifier","src":"10913:6:101"}]},{"nativeSrc":"10944:38:101","nodeType":"YulVariableDeclaration","src":"10944:38:101","value":{"arguments":[{"name":"data","nativeSrc":"10974:4:101","nodeType":"YulIdentifier","src":"10974:4:101"},{"kind":"number","nativeSrc":"10980:1:101","nodeType":"YulLiteral","src":"10980:1:101","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"10970:3:101","nodeType":"YulIdentifier","src":"10970:3:101"},"nativeSrc":"10970:12:101","nodeType":"YulFunctionCall","src":"10970:12:101"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"10948:18:101","nodeType":"YulTypedName","src":"10948:18:101","type":""}]},{"body":{"nativeSrc":"11021:31:101","nodeType":"YulBlock","src":"11021:31:101","statements":[{"nativeSrc":"11023:27:101","nodeType":"YulAssignment","src":"11023:27:101","value":{"arguments":[{"name":"length","nativeSrc":"11037:6:101","nodeType":"YulIdentifier","src":"11037:6:101"},{"kind":"number","nativeSrc":"11045:4:101","nodeType":"YulLiteral","src":"11045:4:101","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"11033:3:101","nodeType":"YulIdentifier","src":"11033:3:101"},"nativeSrc":"11033:17:101","nodeType":"YulFunctionCall","src":"11033:17:101"},"variableNames":[{"name":"length","nativeSrc":"11023:6:101","nodeType":"YulIdentifier","src":"11023:6:101"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"11001:18:101","nodeType":"YulIdentifier","src":"11001:18:101"}],"functionName":{"name":"iszero","nativeSrc":"10994:6:101","nodeType":"YulIdentifier","src":"10994:6:101"},"nativeSrc":"10994:26:101","nodeType":"YulFunctionCall","src":"10994:26:101"},"nativeSrc":"10991:61:101","nodeType":"YulIf","src":"10991:61:101"},{"body":{"nativeSrc":"11111:111:101","nodeType":"YulBlock","src":"11111:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11132:1:101","nodeType":"YulLiteral","src":"11132:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"11139:3:101","nodeType":"YulLiteral","src":"11139:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"11144:10:101","nodeType":"YulLiteral","src":"11144:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"11135:3:101","nodeType":"YulIdentifier","src":"11135:3:101"},"nativeSrc":"11135:20:101","nodeType":"YulFunctionCall","src":"11135:20:101"}],"functionName":{"name":"mstore","nativeSrc":"11125:6:101","nodeType":"YulIdentifier","src":"11125:6:101"},"nativeSrc":"11125:31:101","nodeType":"YulFunctionCall","src":"11125:31:101"},"nativeSrc":"11125:31:101","nodeType":"YulExpressionStatement","src":"11125:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11176:1:101","nodeType":"YulLiteral","src":"11176:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"11179:4:101","nodeType":"YulLiteral","src":"11179:4:101","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"11169:6:101","nodeType":"YulIdentifier","src":"11169:6:101"},"nativeSrc":"11169:15:101","nodeType":"YulFunctionCall","src":"11169:15:101"},"nativeSrc":"11169:15:101","nodeType":"YulExpressionStatement","src":"11169:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11204:1:101","nodeType":"YulLiteral","src":"11204:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11207:4:101","nodeType":"YulLiteral","src":"11207:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"11197:6:101","nodeType":"YulIdentifier","src":"11197:6:101"},"nativeSrc":"11197:15:101","nodeType":"YulFunctionCall","src":"11197:15:101"},"nativeSrc":"11197:15:101","nodeType":"YulExpressionStatement","src":"11197:15:101"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"11067:18:101","nodeType":"YulIdentifier","src":"11067:18:101"},{"arguments":[{"name":"length","nativeSrc":"11090:6:101","nodeType":"YulIdentifier","src":"11090:6:101"},{"kind":"number","nativeSrc":"11098:2:101","nodeType":"YulLiteral","src":"11098:2:101","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"11087:2:101","nodeType":"YulIdentifier","src":"11087:2:101"},"nativeSrc":"11087:14:101","nodeType":"YulFunctionCall","src":"11087:14:101"}],"functionName":{"name":"eq","nativeSrc":"11064:2:101","nodeType":"YulIdentifier","src":"11064:2:101"},"nativeSrc":"11064:38:101","nodeType":"YulFunctionCall","src":"11064:38:101"},"nativeSrc":"11061:161:101","nodeType":"YulIf","src":"11061:161:101"}]},"name":"extract_byte_array_length","nativeSrc":"10848:380:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"10883:4:101","nodeType":"YulTypedName","src":"10883:4:101","type":""}],"returnVariables":[{"name":"length","nativeSrc":"10892:6:101","nodeType":"YulTypedName","src":"10892:6:101","type":""}],"src":"10848:380:101"},{"body":{"nativeSrc":"11390:214:101","nodeType":"YulBlock","src":"11390:214:101","statements":[{"nativeSrc":"11400:26:101","nodeType":"YulAssignment","src":"11400:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"11412:9:101","nodeType":"YulIdentifier","src":"11412:9:101"},{"kind":"number","nativeSrc":"11423:2:101","nodeType":"YulLiteral","src":"11423:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"11408:3:101","nodeType":"YulIdentifier","src":"11408:3:101"},"nativeSrc":"11408:18:101","nodeType":"YulFunctionCall","src":"11408:18:101"},"variableNames":[{"name":"tail","nativeSrc":"11400:4:101","nodeType":"YulIdentifier","src":"11400:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11442:9:101","nodeType":"YulIdentifier","src":"11442:9:101"},{"arguments":[{"name":"value0","nativeSrc":"11457:6:101","nodeType":"YulIdentifier","src":"11457:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11473:3:101","nodeType":"YulLiteral","src":"11473:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"11478:1:101","nodeType":"YulLiteral","src":"11478:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11469:3:101","nodeType":"YulIdentifier","src":"11469:3:101"},"nativeSrc":"11469:11:101","nodeType":"YulFunctionCall","src":"11469:11:101"},{"kind":"number","nativeSrc":"11482:1:101","nodeType":"YulLiteral","src":"11482:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11465:3:101","nodeType":"YulIdentifier","src":"11465:3:101"},"nativeSrc":"11465:19:101","nodeType":"YulFunctionCall","src":"11465:19:101"}],"functionName":{"name":"and","nativeSrc":"11453:3:101","nodeType":"YulIdentifier","src":"11453:3:101"},"nativeSrc":"11453:32:101","nodeType":"YulFunctionCall","src":"11453:32:101"}],"functionName":{"name":"mstore","nativeSrc":"11435:6:101","nodeType":"YulIdentifier","src":"11435:6:101"},"nativeSrc":"11435:51:101","nodeType":"YulFunctionCall","src":"11435:51:101"},"nativeSrc":"11435:51:101","nodeType":"YulExpressionStatement","src":"11435:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11506:9:101","nodeType":"YulIdentifier","src":"11506:9:101"},{"kind":"number","nativeSrc":"11517:2:101","nodeType":"YulLiteral","src":"11517:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11502:3:101","nodeType":"YulIdentifier","src":"11502:3:101"},"nativeSrc":"11502:18:101","nodeType":"YulFunctionCall","src":"11502:18:101"},{"name":"value1","nativeSrc":"11522:6:101","nodeType":"YulIdentifier","src":"11522:6:101"}],"functionName":{"name":"mstore","nativeSrc":"11495:6:101","nodeType":"YulIdentifier","src":"11495:6:101"},"nativeSrc":"11495:34:101","nodeType":"YulFunctionCall","src":"11495:34:101"},"nativeSrc":"11495:34:101","nodeType":"YulExpressionStatement","src":"11495:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11549:9:101","nodeType":"YulIdentifier","src":"11549:9:101"},{"kind":"number","nativeSrc":"11560:2:101","nodeType":"YulLiteral","src":"11560:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11545:3:101","nodeType":"YulIdentifier","src":"11545:3:101"},"nativeSrc":"11545:18:101","nodeType":"YulFunctionCall","src":"11545:18:101"},{"arguments":[{"name":"value2","nativeSrc":"11569:6:101","nodeType":"YulIdentifier","src":"11569:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11585:3:101","nodeType":"YulLiteral","src":"11585:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"11590:1:101","nodeType":"YulLiteral","src":"11590:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11581:3:101","nodeType":"YulIdentifier","src":"11581:3:101"},"nativeSrc":"11581:11:101","nodeType":"YulFunctionCall","src":"11581:11:101"},{"kind":"number","nativeSrc":"11594:1:101","nodeType":"YulLiteral","src":"11594:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11577:3:101","nodeType":"YulIdentifier","src":"11577:3:101"},"nativeSrc":"11577:19:101","nodeType":"YulFunctionCall","src":"11577:19:101"}],"functionName":{"name":"and","nativeSrc":"11565:3:101","nodeType":"YulIdentifier","src":"11565:3:101"},"nativeSrc":"11565:32:101","nodeType":"YulFunctionCall","src":"11565:32:101"}],"functionName":{"name":"mstore","nativeSrc":"11538:6:101","nodeType":"YulIdentifier","src":"11538:6:101"},"nativeSrc":"11538:60:101","nodeType":"YulFunctionCall","src":"11538:60:101"},"nativeSrc":"11538:60:101","nodeType":"YulExpressionStatement","src":"11538:60:101"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_address__to_t_address_t_uint256_t_address__fromStack_reversed","nativeSrc":"11233:371:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11343:9:101","nodeType":"YulTypedName","src":"11343:9:101","type":""},{"name":"value2","nativeSrc":"11354:6:101","nodeType":"YulTypedName","src":"11354:6:101","type":""},{"name":"value1","nativeSrc":"11362:6:101","nodeType":"YulTypedName","src":"11362:6:101","type":""},{"name":"value0","nativeSrc":"11370:6:101","nodeType":"YulTypedName","src":"11370:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11381:4:101","nodeType":"YulTypedName","src":"11381:4:101","type":""}],"src":"11233:371:101"},{"body":{"nativeSrc":"11736:138:101","nodeType":"YulBlock","src":"11736:138:101","statements":[{"nativeSrc":"11746:26:101","nodeType":"YulAssignment","src":"11746:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"11758:9:101","nodeType":"YulIdentifier","src":"11758:9:101"},{"kind":"number","nativeSrc":"11769:2:101","nodeType":"YulLiteral","src":"11769:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11754:3:101","nodeType":"YulIdentifier","src":"11754:3:101"},"nativeSrc":"11754:18:101","nodeType":"YulFunctionCall","src":"11754:18:101"},"variableNames":[{"name":"tail","nativeSrc":"11746:4:101","nodeType":"YulIdentifier","src":"11746:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11788:9:101","nodeType":"YulIdentifier","src":"11788:9:101"},{"name":"value0","nativeSrc":"11799:6:101","nodeType":"YulIdentifier","src":"11799:6:101"}],"functionName":{"name":"mstore","nativeSrc":"11781:6:101","nodeType":"YulIdentifier","src":"11781:6:101"},"nativeSrc":"11781:25:101","nodeType":"YulFunctionCall","src":"11781:25:101"},"nativeSrc":"11781:25:101","nodeType":"YulExpressionStatement","src":"11781:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11826:9:101","nodeType":"YulIdentifier","src":"11826:9:101"},{"kind":"number","nativeSrc":"11837:2:101","nodeType":"YulLiteral","src":"11837:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11822:3:101","nodeType":"YulIdentifier","src":"11822:3:101"},"nativeSrc":"11822:18:101","nodeType":"YulFunctionCall","src":"11822:18:101"},{"arguments":[{"name":"value1","nativeSrc":"11846:6:101","nodeType":"YulIdentifier","src":"11846:6:101"},{"kind":"number","nativeSrc":"11854:12:101","nodeType":"YulLiteral","src":"11854:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"11842:3:101","nodeType":"YulIdentifier","src":"11842:3:101"},"nativeSrc":"11842:25:101","nodeType":"YulFunctionCall","src":"11842:25:101"}],"functionName":{"name":"mstore","nativeSrc":"11815:6:101","nodeType":"YulIdentifier","src":"11815:6:101"},"nativeSrc":"11815:53:101","nodeType":"YulFunctionCall","src":"11815:53:101"},"nativeSrc":"11815:53:101","nodeType":"YulExpressionStatement","src":"11815:53:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint40__to_t_uint256_t_uint40__fromStack_reversed","nativeSrc":"11609:265:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11697:9:101","nodeType":"YulTypedName","src":"11697:9:101","type":""},{"name":"value1","nativeSrc":"11708:6:101","nodeType":"YulTypedName","src":"11708:6:101","type":""},{"name":"value0","nativeSrc":"11716:6:101","nodeType":"YulTypedName","src":"11716:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11727:4:101","nodeType":"YulTypedName","src":"11727:4:101","type":""}],"src":"11609:265:101"},{"body":{"nativeSrc":"11911:95:101","nodeType":"YulBlock","src":"11911:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11928:1:101","nodeType":"YulLiteral","src":"11928:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"11935:3:101","nodeType":"YulLiteral","src":"11935:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"11940:10:101","nodeType":"YulLiteral","src":"11940:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"11931:3:101","nodeType":"YulIdentifier","src":"11931:3:101"},"nativeSrc":"11931:20:101","nodeType":"YulFunctionCall","src":"11931:20:101"}],"functionName":{"name":"mstore","nativeSrc":"11921:6:101","nodeType":"YulIdentifier","src":"11921:6:101"},"nativeSrc":"11921:31:101","nodeType":"YulFunctionCall","src":"11921:31:101"},"nativeSrc":"11921:31:101","nodeType":"YulExpressionStatement","src":"11921:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11968:1:101","nodeType":"YulLiteral","src":"11968:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"11971:4:101","nodeType":"YulLiteral","src":"11971:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"11961:6:101","nodeType":"YulIdentifier","src":"11961:6:101"},"nativeSrc":"11961:15:101","nodeType":"YulFunctionCall","src":"11961:15:101"},"nativeSrc":"11961:15:101","nodeType":"YulExpressionStatement","src":"11961:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11992:1:101","nodeType":"YulLiteral","src":"11992:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11995:4:101","nodeType":"YulLiteral","src":"11995:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"11985:6:101","nodeType":"YulIdentifier","src":"11985:6:101"},"nativeSrc":"11985:15:101","nodeType":"YulFunctionCall","src":"11985:15:101"},"nativeSrc":"11985:15:101","nodeType":"YulExpressionStatement","src":"11985:15:101"}]},"name":"panic_error_0x11","nativeSrc":"11879:127:101","nodeType":"YulFunctionDefinition","src":"11879:127:101"},{"body":{"nativeSrc":"12060:79:101","nodeType":"YulBlock","src":"12060:79:101","statements":[{"nativeSrc":"12070:17:101","nodeType":"YulAssignment","src":"12070:17:101","value":{"arguments":[{"name":"x","nativeSrc":"12082:1:101","nodeType":"YulIdentifier","src":"12082:1:101"},{"name":"y","nativeSrc":"12085:1:101","nodeType":"YulIdentifier","src":"12085:1:101"}],"functionName":{"name":"sub","nativeSrc":"12078:3:101","nodeType":"YulIdentifier","src":"12078:3:101"},"nativeSrc":"12078:9:101","nodeType":"YulFunctionCall","src":"12078:9:101"},"variableNames":[{"name":"diff","nativeSrc":"12070:4:101","nodeType":"YulIdentifier","src":"12070:4:101"}]},{"body":{"nativeSrc":"12111:22:101","nodeType":"YulBlock","src":"12111:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"12113:16:101","nodeType":"YulIdentifier","src":"12113:16:101"},"nativeSrc":"12113:18:101","nodeType":"YulFunctionCall","src":"12113:18:101"},"nativeSrc":"12113:18:101","nodeType":"YulExpressionStatement","src":"12113:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"12102:4:101","nodeType":"YulIdentifier","src":"12102:4:101"},{"name":"x","nativeSrc":"12108:1:101","nodeType":"YulIdentifier","src":"12108:1:101"}],"functionName":{"name":"gt","nativeSrc":"12099:2:101","nodeType":"YulIdentifier","src":"12099:2:101"},"nativeSrc":"12099:11:101","nodeType":"YulFunctionCall","src":"12099:11:101"},"nativeSrc":"12096:37:101","nodeType":"YulIf","src":"12096:37:101"}]},"name":"checked_sub_t_uint256","nativeSrc":"12011:128:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"12042:1:101","nodeType":"YulTypedName","src":"12042:1:101","type":""},{"name":"y","nativeSrc":"12045:1:101","nodeType":"YulTypedName","src":"12045:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"12051:4:101","nodeType":"YulTypedName","src":"12051:4:101","type":""}],"src":"12011:128:101"},{"body":{"nativeSrc":"12346:284:101","nodeType":"YulBlock","src":"12346:284:101","statements":[{"nativeSrc":"12356:27:101","nodeType":"YulAssignment","src":"12356:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12368:9:101","nodeType":"YulIdentifier","src":"12368:9:101"},{"kind":"number","nativeSrc":"12379:3:101","nodeType":"YulLiteral","src":"12379:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"12364:3:101","nodeType":"YulIdentifier","src":"12364:3:101"},"nativeSrc":"12364:19:101","nodeType":"YulFunctionCall","src":"12364:19:101"},"variableNames":[{"name":"tail","nativeSrc":"12356:4:101","nodeType":"YulIdentifier","src":"12356:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12399:9:101","nodeType":"YulIdentifier","src":"12399:9:101"},{"arguments":[{"name":"value0","nativeSrc":"12414:6:101","nodeType":"YulIdentifier","src":"12414:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12430:3:101","nodeType":"YulLiteral","src":"12430:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"12435:1:101","nodeType":"YulLiteral","src":"12435:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12426:3:101","nodeType":"YulIdentifier","src":"12426:3:101"},"nativeSrc":"12426:11:101","nodeType":"YulFunctionCall","src":"12426:11:101"},{"kind":"number","nativeSrc":"12439:1:101","nodeType":"YulLiteral","src":"12439:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12422:3:101","nodeType":"YulIdentifier","src":"12422:3:101"},"nativeSrc":"12422:19:101","nodeType":"YulFunctionCall","src":"12422:19:101"}],"functionName":{"name":"and","nativeSrc":"12410:3:101","nodeType":"YulIdentifier","src":"12410:3:101"},"nativeSrc":"12410:32:101","nodeType":"YulFunctionCall","src":"12410:32:101"}],"functionName":{"name":"mstore","nativeSrc":"12392:6:101","nodeType":"YulIdentifier","src":"12392:6:101"},"nativeSrc":"12392:51:101","nodeType":"YulFunctionCall","src":"12392:51:101"},"nativeSrc":"12392:51:101","nodeType":"YulExpressionStatement","src":"12392:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12463:9:101","nodeType":"YulIdentifier","src":"12463:9:101"},{"kind":"number","nativeSrc":"12474:2:101","nodeType":"YulLiteral","src":"12474:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12459:3:101","nodeType":"YulIdentifier","src":"12459:3:101"},"nativeSrc":"12459:18:101","nodeType":"YulFunctionCall","src":"12459:18:101"},{"name":"value1","nativeSrc":"12479:6:101","nodeType":"YulIdentifier","src":"12479:6:101"}],"functionName":{"name":"mstore","nativeSrc":"12452:6:101","nodeType":"YulIdentifier","src":"12452:6:101"},"nativeSrc":"12452:34:101","nodeType":"YulFunctionCall","src":"12452:34:101"},"nativeSrc":"12452:34:101","nodeType":"YulExpressionStatement","src":"12452:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12506:9:101","nodeType":"YulIdentifier","src":"12506:9:101"},{"kind":"number","nativeSrc":"12517:2:101","nodeType":"YulLiteral","src":"12517:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12502:3:101","nodeType":"YulIdentifier","src":"12502:3:101"},"nativeSrc":"12502:18:101","nodeType":"YulFunctionCall","src":"12502:18:101"},{"arguments":[{"name":"value2","nativeSrc":"12526:6:101","nodeType":"YulIdentifier","src":"12526:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12542:3:101","nodeType":"YulLiteral","src":"12542:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"12547:1:101","nodeType":"YulLiteral","src":"12547:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12538:3:101","nodeType":"YulIdentifier","src":"12538:3:101"},"nativeSrc":"12538:11:101","nodeType":"YulFunctionCall","src":"12538:11:101"},{"kind":"number","nativeSrc":"12551:1:101","nodeType":"YulLiteral","src":"12551:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12534:3:101","nodeType":"YulIdentifier","src":"12534:3:101"},"nativeSrc":"12534:19:101","nodeType":"YulFunctionCall","src":"12534:19:101"}],"functionName":{"name":"and","nativeSrc":"12522:3:101","nodeType":"YulIdentifier","src":"12522:3:101"},"nativeSrc":"12522:32:101","nodeType":"YulFunctionCall","src":"12522:32:101"}],"functionName":{"name":"mstore","nativeSrc":"12495:6:101","nodeType":"YulIdentifier","src":"12495:6:101"},"nativeSrc":"12495:60:101","nodeType":"YulFunctionCall","src":"12495:60:101"},"nativeSrc":"12495:60:101","nodeType":"YulExpressionStatement","src":"12495:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12575:9:101","nodeType":"YulIdentifier","src":"12575:9:101"},{"kind":"number","nativeSrc":"12586:2:101","nodeType":"YulLiteral","src":"12586:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12571:3:101","nodeType":"YulIdentifier","src":"12571:3:101"},"nativeSrc":"12571:18:101","nodeType":"YulFunctionCall","src":"12571:18:101"},{"arguments":[{"name":"value3","nativeSrc":"12595:6:101","nodeType":"YulIdentifier","src":"12595:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12611:3:101","nodeType":"YulLiteral","src":"12611:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"12616:1:101","nodeType":"YulLiteral","src":"12616:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12607:3:101","nodeType":"YulIdentifier","src":"12607:3:101"},"nativeSrc":"12607:11:101","nodeType":"YulFunctionCall","src":"12607:11:101"},{"kind":"number","nativeSrc":"12620:1:101","nodeType":"YulLiteral","src":"12620:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12603:3:101","nodeType":"YulIdentifier","src":"12603:3:101"},"nativeSrc":"12603:19:101","nodeType":"YulFunctionCall","src":"12603:19:101"}],"functionName":{"name":"and","nativeSrc":"12591:3:101","nodeType":"YulIdentifier","src":"12591:3:101"},"nativeSrc":"12591:32:101","nodeType":"YulFunctionCall","src":"12591:32:101"}],"functionName":{"name":"mstore","nativeSrc":"12564:6:101","nodeType":"YulIdentifier","src":"12564:6:101"},"nativeSrc":"12564:60:101","nodeType":"YulFunctionCall","src":"12564:60:101"},"nativeSrc":"12564:60:101","nodeType":"YulExpressionStatement","src":"12564:60:101"}]},"name":"abi_encode_tuple_t_contract$_IEToken_$28869_t_uint256_t_address_t_address__to_t_address_t_uint256_t_address_t_address__fromStack_reversed","nativeSrc":"12144:486:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12291:9:101","nodeType":"YulTypedName","src":"12291:9:101","type":""},{"name":"value3","nativeSrc":"12302:6:101","nodeType":"YulTypedName","src":"12302:6:101","type":""},{"name":"value2","nativeSrc":"12310:6:101","nodeType":"YulTypedName","src":"12310:6:101","type":""},{"name":"value1","nativeSrc":"12318:6:101","nodeType":"YulTypedName","src":"12318:6:101","type":""},{"name":"value0","nativeSrc":"12326:6:101","nodeType":"YulTypedName","src":"12326:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12337:4:101","nodeType":"YulTypedName","src":"12337:4:101","type":""}],"src":"12144:486:101"},{"body":{"nativeSrc":"12716:103:101","nodeType":"YulBlock","src":"12716:103:101","statements":[{"body":{"nativeSrc":"12762:16:101","nodeType":"YulBlock","src":"12762:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12771:1:101","nodeType":"YulLiteral","src":"12771:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"12774:1:101","nodeType":"YulLiteral","src":"12774:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12764:6:101","nodeType":"YulIdentifier","src":"12764:6:101"},"nativeSrc":"12764:12:101","nodeType":"YulFunctionCall","src":"12764:12:101"},"nativeSrc":"12764:12:101","nodeType":"YulExpressionStatement","src":"12764:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12737:7:101","nodeType":"YulIdentifier","src":"12737:7:101"},{"name":"headStart","nativeSrc":"12746:9:101","nodeType":"YulIdentifier","src":"12746:9:101"}],"functionName":{"name":"sub","nativeSrc":"12733:3:101","nodeType":"YulIdentifier","src":"12733:3:101"},"nativeSrc":"12733:23:101","nodeType":"YulFunctionCall","src":"12733:23:101"},{"kind":"number","nativeSrc":"12758:2:101","nodeType":"YulLiteral","src":"12758:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"12729:3:101","nodeType":"YulIdentifier","src":"12729:3:101"},"nativeSrc":"12729:32:101","nodeType":"YulFunctionCall","src":"12729:32:101"},"nativeSrc":"12726:52:101","nodeType":"YulIf","src":"12726:52:101"},{"nativeSrc":"12787:26:101","nodeType":"YulAssignment","src":"12787:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12803:9:101","nodeType":"YulIdentifier","src":"12803:9:101"}],"functionName":{"name":"mload","nativeSrc":"12797:5:101","nodeType":"YulIdentifier","src":"12797:5:101"},"nativeSrc":"12797:16:101","nodeType":"YulFunctionCall","src":"12797:16:101"},"variableNames":[{"name":"value0","nativeSrc":"12787:6:101","nodeType":"YulIdentifier","src":"12787:6:101"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"12635:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12682:9:101","nodeType":"YulTypedName","src":"12682:9:101","type":""},{"name":"dataEnd","nativeSrc":"12693:7:101","nodeType":"YulTypedName","src":"12693:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12705:6:101","nodeType":"YulTypedName","src":"12705:6:101","type":""}],"src":"12635:184:101"},{"body":{"nativeSrc":"12953:160:101","nodeType":"YulBlock","src":"12953:160:101","statements":[{"nativeSrc":"12963:26:101","nodeType":"YulAssignment","src":"12963:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12975:9:101","nodeType":"YulIdentifier","src":"12975:9:101"},{"kind":"number","nativeSrc":"12986:2:101","nodeType":"YulLiteral","src":"12986:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12971:3:101","nodeType":"YulIdentifier","src":"12971:3:101"},"nativeSrc":"12971:18:101","nodeType":"YulFunctionCall","src":"12971:18:101"},"variableNames":[{"name":"tail","nativeSrc":"12963:4:101","nodeType":"YulIdentifier","src":"12963:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13005:9:101","nodeType":"YulIdentifier","src":"13005:9:101"},{"arguments":[{"name":"value0","nativeSrc":"13020:6:101","nodeType":"YulIdentifier","src":"13020:6:101"},{"kind":"number","nativeSrc":"13028:34:101","nodeType":"YulLiteral","src":"13028:34:101","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"13016:3:101","nodeType":"YulIdentifier","src":"13016:3:101"},"nativeSrc":"13016:47:101","nodeType":"YulFunctionCall","src":"13016:47:101"}],"functionName":{"name":"mstore","nativeSrc":"12998:6:101","nodeType":"YulIdentifier","src":"12998:6:101"},"nativeSrc":"12998:66:101","nodeType":"YulFunctionCall","src":"12998:66:101"},"nativeSrc":"12998:66:101","nodeType":"YulExpressionStatement","src":"12998:66:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13084:9:101","nodeType":"YulIdentifier","src":"13084:9:101"},{"kind":"number","nativeSrc":"13095:2:101","nodeType":"YulLiteral","src":"13095:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13080:3:101","nodeType":"YulIdentifier","src":"13080:3:101"},"nativeSrc":"13080:18:101","nodeType":"YulFunctionCall","src":"13080:18:101"},{"name":"value1","nativeSrc":"13100:6:101","nodeType":"YulIdentifier","src":"13100:6:101"}],"functionName":{"name":"mstore","nativeSrc":"13073:6:101","nodeType":"YulIdentifier","src":"13073:6:101"},"nativeSrc":"13073:34:101","nodeType":"YulFunctionCall","src":"13073:34:101"},"nativeSrc":"13073:34:101","nodeType":"YulExpressionStatement","src":"13073:34:101"}]},"name":"abi_encode_tuple_t_uint128_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"12824:289:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12914:9:101","nodeType":"YulTypedName","src":"12914:9:101","type":""},{"name":"value1","nativeSrc":"12925:6:101","nodeType":"YulTypedName","src":"12925:6:101","type":""},{"name":"value0","nativeSrc":"12933:6:101","nodeType":"YulTypedName","src":"12933:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12944:4:101","nodeType":"YulTypedName","src":"12944:4:101","type":""}],"src":"12824:289:101"},{"body":{"nativeSrc":"13226:101:101","nodeType":"YulBlock","src":"13226:101:101","statements":[{"nativeSrc":"13236:26:101","nodeType":"YulAssignment","src":"13236:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"13248:9:101","nodeType":"YulIdentifier","src":"13248:9:101"},{"kind":"number","nativeSrc":"13259:2:101","nodeType":"YulLiteral","src":"13259:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13244:3:101","nodeType":"YulIdentifier","src":"13244:3:101"},"nativeSrc":"13244:18:101","nodeType":"YulFunctionCall","src":"13244:18:101"},"variableNames":[{"name":"tail","nativeSrc":"13236:4:101","nodeType":"YulIdentifier","src":"13236:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13278:9:101","nodeType":"YulIdentifier","src":"13278:9:101"},{"arguments":[{"name":"value0","nativeSrc":"13293:6:101","nodeType":"YulIdentifier","src":"13293:6:101"},{"kind":"number","nativeSrc":"13301:18:101","nodeType":"YulLiteral","src":"13301:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"13289:3:101","nodeType":"YulIdentifier","src":"13289:3:101"},"nativeSrc":"13289:31:101","nodeType":"YulFunctionCall","src":"13289:31:101"}],"functionName":{"name":"mstore","nativeSrc":"13271:6:101","nodeType":"YulIdentifier","src":"13271:6:101"},"nativeSrc":"13271:50:101","nodeType":"YulFunctionCall","src":"13271:50:101"},"nativeSrc":"13271:50:101","nodeType":"YulExpressionStatement","src":"13271:50:101"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nativeSrc":"13118:209:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13195:9:101","nodeType":"YulTypedName","src":"13195:9:101","type":""},{"name":"value0","nativeSrc":"13206:6:101","nodeType":"YulTypedName","src":"13206:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13217:4:101","nodeType":"YulTypedName","src":"13217:4:101","type":""}],"src":"13118:209:101"},{"body":{"nativeSrc":"13382:162:101","nodeType":"YulBlock","src":"13382:162:101","statements":[{"nativeSrc":"13392:26:101","nodeType":"YulVariableDeclaration","src":"13392:26:101","value":{"arguments":[{"name":"value","nativeSrc":"13412:5:101","nodeType":"YulIdentifier","src":"13412:5:101"}],"functionName":{"name":"mload","nativeSrc":"13406:5:101","nodeType":"YulIdentifier","src":"13406:5:101"},"nativeSrc":"13406:12:101","nodeType":"YulFunctionCall","src":"13406:12:101"},"variables":[{"name":"length","nativeSrc":"13396:6:101","nodeType":"YulTypedName","src":"13396:6:101","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"13433:3:101","nodeType":"YulIdentifier","src":"13433:3:101"},{"arguments":[{"name":"value","nativeSrc":"13442:5:101","nodeType":"YulIdentifier","src":"13442:5:101"},{"kind":"number","nativeSrc":"13449:4:101","nodeType":"YulLiteral","src":"13449:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"13438:3:101","nodeType":"YulIdentifier","src":"13438:3:101"},"nativeSrc":"13438:16:101","nodeType":"YulFunctionCall","src":"13438:16:101"},{"name":"length","nativeSrc":"13456:6:101","nodeType":"YulIdentifier","src":"13456:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"13427:5:101","nodeType":"YulIdentifier","src":"13427:5:101"},"nativeSrc":"13427:36:101","nodeType":"YulFunctionCall","src":"13427:36:101"},"nativeSrc":"13427:36:101","nodeType":"YulExpressionStatement","src":"13427:36:101"},{"nativeSrc":"13472:26:101","nodeType":"YulVariableDeclaration","src":"13472:26:101","value":{"arguments":[{"name":"pos","nativeSrc":"13486:3:101","nodeType":"YulIdentifier","src":"13486:3:101"},{"name":"length","nativeSrc":"13491:6:101","nodeType":"YulIdentifier","src":"13491:6:101"}],"functionName":{"name":"add","nativeSrc":"13482:3:101","nodeType":"YulIdentifier","src":"13482:3:101"},"nativeSrc":"13482:16:101","nodeType":"YulFunctionCall","src":"13482:16:101"},"variables":[{"name":"_1","nativeSrc":"13476:2:101","nodeType":"YulTypedName","src":"13476:2:101","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"13514:2:101","nodeType":"YulIdentifier","src":"13514:2:101"},{"kind":"number","nativeSrc":"13518:1:101","nodeType":"YulLiteral","src":"13518:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"13507:6:101","nodeType":"YulIdentifier","src":"13507:6:101"},"nativeSrc":"13507:13:101","nodeType":"YulFunctionCall","src":"13507:13:101"},"nativeSrc":"13507:13:101","nodeType":"YulExpressionStatement","src":"13507:13:101"},{"nativeSrc":"13529:9:101","nodeType":"YulAssignment","src":"13529:9:101","value":{"name":"_1","nativeSrc":"13536:2:101","nodeType":"YulIdentifier","src":"13536:2:101"},"variableNames":[{"name":"end","nativeSrc":"13529:3:101","nodeType":"YulIdentifier","src":"13529:3:101"}]}]},"name":"abi_encode_string","nativeSrc":"13332:212:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"13359:5:101","nodeType":"YulTypedName","src":"13359:5:101","type":""},{"name":"pos","nativeSrc":"13366:3:101","nodeType":"YulTypedName","src":"13366:3:101","type":""}],"returnVariables":[{"name":"end","nativeSrc":"13374:3:101","nodeType":"YulTypedName","src":"13374:3:101","type":""}],"src":"13332:212:101"},{"body":{"nativeSrc":"13736:80:101","nodeType":"YulBlock","src":"13736:80:101","statements":[{"nativeSrc":"13746:64:101","nodeType":"YulAssignment","src":"13746:64:101","value":{"arguments":[{"name":"value1","nativeSrc":"13771:6:101","nodeType":"YulIdentifier","src":"13771:6:101"},{"arguments":[{"name":"value0","nativeSrc":"13797:6:101","nodeType":"YulIdentifier","src":"13797:6:101"},{"name":"pos","nativeSrc":"13805:3:101","nodeType":"YulIdentifier","src":"13805:3:101"}],"functionName":{"name":"abi_encode_string","nativeSrc":"13779:17:101","nodeType":"YulIdentifier","src":"13779:17:101"},"nativeSrc":"13779:30:101","nodeType":"YulFunctionCall","src":"13779:30:101"}],"functionName":{"name":"abi_encode_string","nativeSrc":"13753:17:101","nodeType":"YulIdentifier","src":"13753:17:101"},"nativeSrc":"13753:57:101","nodeType":"YulFunctionCall","src":"13753:57:101"},"variableNames":[{"name":"end","nativeSrc":"13746:3:101","nodeType":"YulIdentifier","src":"13746:3:101"}]}]},"name":"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"13549:267:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"13704:3:101","nodeType":"YulTypedName","src":"13704:3:101","type":""},{"name":"value1","nativeSrc":"13709:6:101","nodeType":"YulTypedName","src":"13709:6:101","type":""},{"name":"value0","nativeSrc":"13717:6:101","nodeType":"YulTypedName","src":"13717:6:101","type":""}],"returnVariables":[{"name":"end","nativeSrc":"13728:3:101","nodeType":"YulTypedName","src":"13728:3:101","type":""}],"src":"13549:267:101"},{"body":{"nativeSrc":"14086:401:101","nodeType":"YulBlock","src":"14086:401:101","statements":[{"nativeSrc":"14096:27:101","nodeType":"YulAssignment","src":"14096:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"14108:9:101","nodeType":"YulIdentifier","src":"14108:9:101"},{"kind":"number","nativeSrc":"14119:3:101","nodeType":"YulLiteral","src":"14119:3:101","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"14104:3:101","nodeType":"YulIdentifier","src":"14104:3:101"},"nativeSrc":"14104:19:101","nodeType":"YulFunctionCall","src":"14104:19:101"},"variableNames":[{"name":"tail","nativeSrc":"14096:4:101","nodeType":"YulIdentifier","src":"14096:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14139:9:101","nodeType":"YulIdentifier","src":"14139:9:101"},{"arguments":[{"name":"value0","nativeSrc":"14154:6:101","nodeType":"YulIdentifier","src":"14154:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"14170:3:101","nodeType":"YulLiteral","src":"14170:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"14175:1:101","nodeType":"YulLiteral","src":"14175:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"14166:3:101","nodeType":"YulIdentifier","src":"14166:3:101"},"nativeSrc":"14166:11:101","nodeType":"YulFunctionCall","src":"14166:11:101"},{"kind":"number","nativeSrc":"14179:1:101","nodeType":"YulLiteral","src":"14179:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"14162:3:101","nodeType":"YulIdentifier","src":"14162:3:101"},"nativeSrc":"14162:19:101","nodeType":"YulFunctionCall","src":"14162:19:101"}],"functionName":{"name":"and","nativeSrc":"14150:3:101","nodeType":"YulIdentifier","src":"14150:3:101"},"nativeSrc":"14150:32:101","nodeType":"YulFunctionCall","src":"14150:32:101"}],"functionName":{"name":"mstore","nativeSrc":"14132:6:101","nodeType":"YulIdentifier","src":"14132:6:101"},"nativeSrc":"14132:51:101","nodeType":"YulFunctionCall","src":"14132:51:101"},"nativeSrc":"14132:51:101","nodeType":"YulExpressionStatement","src":"14132:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14203:9:101","nodeType":"YulIdentifier","src":"14203:9:101"},{"kind":"number","nativeSrc":"14214:2:101","nodeType":"YulLiteral","src":"14214:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14199:3:101","nodeType":"YulIdentifier","src":"14199:3:101"},"nativeSrc":"14199:18:101","nodeType":"YulFunctionCall","src":"14199:18:101"},{"arguments":[{"name":"value1","nativeSrc":"14223:6:101","nodeType":"YulIdentifier","src":"14223:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"14239:3:101","nodeType":"YulLiteral","src":"14239:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"14244:1:101","nodeType":"YulLiteral","src":"14244:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"14235:3:101","nodeType":"YulIdentifier","src":"14235:3:101"},"nativeSrc":"14235:11:101","nodeType":"YulFunctionCall","src":"14235:11:101"},{"kind":"number","nativeSrc":"14248:1:101","nodeType":"YulLiteral","src":"14248:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"14231:3:101","nodeType":"YulIdentifier","src":"14231:3:101"},"nativeSrc":"14231:19:101","nodeType":"YulFunctionCall","src":"14231:19:101"}],"functionName":{"name":"and","nativeSrc":"14219:3:101","nodeType":"YulIdentifier","src":"14219:3:101"},"nativeSrc":"14219:32:101","nodeType":"YulFunctionCall","src":"14219:32:101"}],"functionName":{"name":"mstore","nativeSrc":"14192:6:101","nodeType":"YulIdentifier","src":"14192:6:101"},"nativeSrc":"14192:60:101","nodeType":"YulFunctionCall","src":"14192:60:101"},"nativeSrc":"14192:60:101","nodeType":"YulExpressionStatement","src":"14192:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14272:9:101","nodeType":"YulIdentifier","src":"14272:9:101"},{"kind":"number","nativeSrc":"14283:2:101","nodeType":"YulLiteral","src":"14283:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14268:3:101","nodeType":"YulIdentifier","src":"14268:3:101"},"nativeSrc":"14268:18:101","nodeType":"YulFunctionCall","src":"14268:18:101"},{"name":"value2","nativeSrc":"14288:6:101","nodeType":"YulIdentifier","src":"14288:6:101"}],"functionName":{"name":"mstore","nativeSrc":"14261:6:101","nodeType":"YulIdentifier","src":"14261:6:101"},"nativeSrc":"14261:34:101","nodeType":"YulFunctionCall","src":"14261:34:101"},"nativeSrc":"14261:34:101","nodeType":"YulExpressionStatement","src":"14261:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14315:9:101","nodeType":"YulIdentifier","src":"14315:9:101"},{"kind":"number","nativeSrc":"14326:2:101","nodeType":"YulLiteral","src":"14326:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14311:3:101","nodeType":"YulIdentifier","src":"14311:3:101"},"nativeSrc":"14311:18:101","nodeType":"YulFunctionCall","src":"14311:18:101"},{"name":"value3","nativeSrc":"14331:6:101","nodeType":"YulIdentifier","src":"14331:6:101"}],"functionName":{"name":"mstore","nativeSrc":"14304:6:101","nodeType":"YulIdentifier","src":"14304:6:101"},"nativeSrc":"14304:34:101","nodeType":"YulFunctionCall","src":"14304:34:101"},"nativeSrc":"14304:34:101","nodeType":"YulExpressionStatement","src":"14304:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14358:9:101","nodeType":"YulIdentifier","src":"14358:9:101"},{"kind":"number","nativeSrc":"14369:3:101","nodeType":"YulLiteral","src":"14369:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"14354:3:101","nodeType":"YulIdentifier","src":"14354:3:101"},"nativeSrc":"14354:19:101","nodeType":"YulFunctionCall","src":"14354:19:101"},{"arguments":[{"name":"value4","nativeSrc":"14379:6:101","nodeType":"YulIdentifier","src":"14379:6:101"},{"kind":"number","nativeSrc":"14387:4:101","nodeType":"YulLiteral","src":"14387:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"14375:3:101","nodeType":"YulIdentifier","src":"14375:3:101"},"nativeSrc":"14375:17:101","nodeType":"YulFunctionCall","src":"14375:17:101"}],"functionName":{"name":"mstore","nativeSrc":"14347:6:101","nodeType":"YulIdentifier","src":"14347:6:101"},"nativeSrc":"14347:46:101","nodeType":"YulFunctionCall","src":"14347:46:101"},"nativeSrc":"14347:46:101","nodeType":"YulExpressionStatement","src":"14347:46:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14413:9:101","nodeType":"YulIdentifier","src":"14413:9:101"},{"kind":"number","nativeSrc":"14424:3:101","nodeType":"YulLiteral","src":"14424:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"14409:3:101","nodeType":"YulIdentifier","src":"14409:3:101"},"nativeSrc":"14409:19:101","nodeType":"YulFunctionCall","src":"14409:19:101"},{"name":"value5","nativeSrc":"14430:6:101","nodeType":"YulIdentifier","src":"14430:6:101"}],"functionName":{"name":"mstore","nativeSrc":"14402:6:101","nodeType":"YulIdentifier","src":"14402:6:101"},"nativeSrc":"14402:35:101","nodeType":"YulFunctionCall","src":"14402:35:101"},"nativeSrc":"14402:35:101","nodeType":"YulExpressionStatement","src":"14402:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14457:9:101","nodeType":"YulIdentifier","src":"14457:9:101"},{"kind":"number","nativeSrc":"14468:3:101","nodeType":"YulLiteral","src":"14468:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"14453:3:101","nodeType":"YulIdentifier","src":"14453:3:101"},"nativeSrc":"14453:19:101","nodeType":"YulFunctionCall","src":"14453:19:101"},{"name":"value6","nativeSrc":"14474:6:101","nodeType":"YulIdentifier","src":"14474:6:101"}],"functionName":{"name":"mstore","nativeSrc":"14446:6:101","nodeType":"YulIdentifier","src":"14446:6:101"},"nativeSrc":"14446:35:101","nodeType":"YulFunctionCall","src":"14446:35:101"},"nativeSrc":"14446:35:101","nodeType":"YulExpressionStatement","src":"14446:35:101"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"13821:666:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14007:9:101","nodeType":"YulTypedName","src":"14007:9:101","type":""},{"name":"value6","nativeSrc":"14018:6:101","nodeType":"YulTypedName","src":"14018:6:101","type":""},{"name":"value5","nativeSrc":"14026:6:101","nodeType":"YulTypedName","src":"14026:6:101","type":""},{"name":"value4","nativeSrc":"14034:6:101","nodeType":"YulTypedName","src":"14034:6:101","type":""},{"name":"value3","nativeSrc":"14042:6:101","nodeType":"YulTypedName","src":"14042:6:101","type":""},{"name":"value2","nativeSrc":"14050:6:101","nodeType":"YulTypedName","src":"14050:6:101","type":""},{"name":"value1","nativeSrc":"14058:6:101","nodeType":"YulTypedName","src":"14058:6:101","type":""},{"name":"value0","nativeSrc":"14066:6:101","nodeType":"YulTypedName","src":"14066:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14077:4:101","nodeType":"YulTypedName","src":"14077:4:101","type":""}],"src":"13821:666:101"},{"body":{"nativeSrc":"14596:170:101","nodeType":"YulBlock","src":"14596:170:101","statements":[{"body":{"nativeSrc":"14642:16:101","nodeType":"YulBlock","src":"14642:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14651:1:101","nodeType":"YulLiteral","src":"14651:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"14654:1:101","nodeType":"YulLiteral","src":"14654:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14644:6:101","nodeType":"YulIdentifier","src":"14644:6:101"},"nativeSrc":"14644:12:101","nodeType":"YulFunctionCall","src":"14644:12:101"},"nativeSrc":"14644:12:101","nodeType":"YulExpressionStatement","src":"14644:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"14617:7:101","nodeType":"YulIdentifier","src":"14617:7:101"},{"name":"headStart","nativeSrc":"14626:9:101","nodeType":"YulIdentifier","src":"14626:9:101"}],"functionName":{"name":"sub","nativeSrc":"14613:3:101","nodeType":"YulIdentifier","src":"14613:3:101"},"nativeSrc":"14613:23:101","nodeType":"YulFunctionCall","src":"14613:23:101"},{"kind":"number","nativeSrc":"14638:2:101","nodeType":"YulLiteral","src":"14638:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"14609:3:101","nodeType":"YulIdentifier","src":"14609:3:101"},"nativeSrc":"14609:32:101","nodeType":"YulFunctionCall","src":"14609:32:101"},"nativeSrc":"14606:52:101","nodeType":"YulIf","src":"14606:52:101"},{"nativeSrc":"14667:29:101","nodeType":"YulVariableDeclaration","src":"14667:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"14686:9:101","nodeType":"YulIdentifier","src":"14686:9:101"}],"functionName":{"name":"mload","nativeSrc":"14680:5:101","nodeType":"YulIdentifier","src":"14680:5:101"},"nativeSrc":"14680:16:101","nodeType":"YulFunctionCall","src":"14680:16:101"},"variables":[{"name":"value","nativeSrc":"14671:5:101","nodeType":"YulTypedName","src":"14671:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"14730:5:101","nodeType":"YulIdentifier","src":"14730:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"14705:24:101","nodeType":"YulIdentifier","src":"14705:24:101"},"nativeSrc":"14705:31:101","nodeType":"YulFunctionCall","src":"14705:31:101"},"nativeSrc":"14705:31:101","nodeType":"YulExpressionStatement","src":"14705:31:101"},{"nativeSrc":"14745:15:101","nodeType":"YulAssignment","src":"14745:15:101","value":{"name":"value","nativeSrc":"14755:5:101","nodeType":"YulIdentifier","src":"14755:5:101"},"variableNames":[{"name":"value0","nativeSrc":"14745:6:101","nodeType":"YulIdentifier","src":"14745:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory","nativeSrc":"14492:274:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14562:9:101","nodeType":"YulTypedName","src":"14562:9:101","type":""},{"name":"dataEnd","nativeSrc":"14573:7:101","nodeType":"YulTypedName","src":"14573:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"14585:6:101","nodeType":"YulTypedName","src":"14585:6:101","type":""}],"src":"14492:274:101"},{"body":{"nativeSrc":"14896:157:101","nodeType":"YulBlock","src":"14896:157:101","statements":[{"nativeSrc":"14906:26:101","nodeType":"YulAssignment","src":"14906:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"14918:9:101","nodeType":"YulIdentifier","src":"14918:9:101"},{"kind":"number","nativeSrc":"14929:2:101","nodeType":"YulLiteral","src":"14929:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14914:3:101","nodeType":"YulIdentifier","src":"14914:3:101"},"nativeSrc":"14914:18:101","nodeType":"YulFunctionCall","src":"14914:18:101"},"variableNames":[{"name":"tail","nativeSrc":"14906:4:101","nodeType":"YulIdentifier","src":"14906:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14948:9:101","nodeType":"YulIdentifier","src":"14948:9:101"},{"arguments":[{"name":"value0","nativeSrc":"14963:6:101","nodeType":"YulIdentifier","src":"14963:6:101"},{"kind":"number","nativeSrc":"14971:12:101","nodeType":"YulLiteral","src":"14971:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"14959:3:101","nodeType":"YulIdentifier","src":"14959:3:101"},"nativeSrc":"14959:25:101","nodeType":"YulFunctionCall","src":"14959:25:101"}],"functionName":{"name":"mstore","nativeSrc":"14941:6:101","nodeType":"YulIdentifier","src":"14941:6:101"},"nativeSrc":"14941:44:101","nodeType":"YulFunctionCall","src":"14941:44:101"},"nativeSrc":"14941:44:101","nodeType":"YulExpressionStatement","src":"14941:44:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15005:9:101","nodeType":"YulIdentifier","src":"15005:9:101"},{"kind":"number","nativeSrc":"15016:2:101","nodeType":"YulLiteral","src":"15016:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15001:3:101","nodeType":"YulIdentifier","src":"15001:3:101"},"nativeSrc":"15001:18:101","nodeType":"YulFunctionCall","src":"15001:18:101"},{"arguments":[{"name":"value1","nativeSrc":"15025:6:101","nodeType":"YulIdentifier","src":"15025:6:101"},{"kind":"number","nativeSrc":"15033:12:101","nodeType":"YulLiteral","src":"15033:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"15021:3:101","nodeType":"YulIdentifier","src":"15021:3:101"},"nativeSrc":"15021:25:101","nodeType":"YulFunctionCall","src":"15021:25:101"}],"functionName":{"name":"mstore","nativeSrc":"14994:6:101","nodeType":"YulIdentifier","src":"14994:6:101"},"nativeSrc":"14994:53:101","nodeType":"YulFunctionCall","src":"14994:53:101"},"nativeSrc":"14994:53:101","nodeType":"YulExpressionStatement","src":"14994:53:101"}]},"name":"abi_encode_tuple_t_uint40_t_uint40__to_t_uint40_t_uint40__fromStack_reversed","nativeSrc":"14771:282:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14857:9:101","nodeType":"YulTypedName","src":"14857:9:101","type":""},{"name":"value1","nativeSrc":"14868:6:101","nodeType":"YulTypedName","src":"14868:6:101","type":""},{"name":"value0","nativeSrc":"14876:6:101","nodeType":"YulTypedName","src":"14876:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14887:4:101","nodeType":"YulTypedName","src":"14887:4:101","type":""}],"src":"14771:282:101"},{"body":{"nativeSrc":"15139:103:101","nodeType":"YulBlock","src":"15139:103:101","statements":[{"body":{"nativeSrc":"15185:16:101","nodeType":"YulBlock","src":"15185:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15194:1:101","nodeType":"YulLiteral","src":"15194:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"15197:1:101","nodeType":"YulLiteral","src":"15197:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15187:6:101","nodeType":"YulIdentifier","src":"15187:6:101"},"nativeSrc":"15187:12:101","nodeType":"YulFunctionCall","src":"15187:12:101"},"nativeSrc":"15187:12:101","nodeType":"YulExpressionStatement","src":"15187:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15160:7:101","nodeType":"YulIdentifier","src":"15160:7:101"},{"name":"headStart","nativeSrc":"15169:9:101","nodeType":"YulIdentifier","src":"15169:9:101"}],"functionName":{"name":"sub","nativeSrc":"15156:3:101","nodeType":"YulIdentifier","src":"15156:3:101"},"nativeSrc":"15156:23:101","nodeType":"YulFunctionCall","src":"15156:23:101"},{"kind":"number","nativeSrc":"15181:2:101","nodeType":"YulLiteral","src":"15181:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"15152:3:101","nodeType":"YulIdentifier","src":"15152:3:101"},"nativeSrc":"15152:32:101","nodeType":"YulFunctionCall","src":"15152:32:101"},"nativeSrc":"15149:52:101","nodeType":"YulIf","src":"15149:52:101"},{"nativeSrc":"15210:26:101","nodeType":"YulAssignment","src":"15210:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"15226:9:101","nodeType":"YulIdentifier","src":"15226:9:101"}],"functionName":{"name":"mload","nativeSrc":"15220:5:101","nodeType":"YulIdentifier","src":"15220:5:101"},"nativeSrc":"15220:16:101","nodeType":"YulFunctionCall","src":"15220:16:101"},"variableNames":[{"name":"value0","nativeSrc":"15210:6:101","nodeType":"YulIdentifier","src":"15210:6:101"}]}]},"name":"abi_decode_tuple_t_bytes32_fromMemory","nativeSrc":"15058:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15105:9:101","nodeType":"YulTypedName","src":"15105:9:101","type":""},{"name":"dataEnd","nativeSrc":"15116:7:101","nodeType":"YulTypedName","src":"15116:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15128:6:101","nodeType":"YulTypedName","src":"15128:6:101","type":""}],"src":"15058:184:101"},{"body":{"nativeSrc":"15328:170:101","nodeType":"YulBlock","src":"15328:170:101","statements":[{"body":{"nativeSrc":"15374:16:101","nodeType":"YulBlock","src":"15374:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15383:1:101","nodeType":"YulLiteral","src":"15383:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"15386:1:101","nodeType":"YulLiteral","src":"15386:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15376:6:101","nodeType":"YulIdentifier","src":"15376:6:101"},"nativeSrc":"15376:12:101","nodeType":"YulFunctionCall","src":"15376:12:101"},"nativeSrc":"15376:12:101","nodeType":"YulExpressionStatement","src":"15376:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15349:7:101","nodeType":"YulIdentifier","src":"15349:7:101"},{"name":"headStart","nativeSrc":"15358:9:101","nodeType":"YulIdentifier","src":"15358:9:101"}],"functionName":{"name":"sub","nativeSrc":"15345:3:101","nodeType":"YulIdentifier","src":"15345:3:101"},"nativeSrc":"15345:23:101","nodeType":"YulFunctionCall","src":"15345:23:101"},{"kind":"number","nativeSrc":"15370:2:101","nodeType":"YulLiteral","src":"15370:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"15341:3:101","nodeType":"YulIdentifier","src":"15341:3:101"},"nativeSrc":"15341:32:101","nodeType":"YulFunctionCall","src":"15341:32:101"},"nativeSrc":"15338:52:101","nodeType":"YulIf","src":"15338:52:101"},{"nativeSrc":"15399:29:101","nodeType":"YulVariableDeclaration","src":"15399:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"15418:9:101","nodeType":"YulIdentifier","src":"15418:9:101"}],"functionName":{"name":"mload","nativeSrc":"15412:5:101","nodeType":"YulIdentifier","src":"15412:5:101"},"nativeSrc":"15412:16:101","nodeType":"YulFunctionCall","src":"15412:16:101"},"variables":[{"name":"value","nativeSrc":"15403:5:101","nodeType":"YulTypedName","src":"15403:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"15462:5:101","nodeType":"YulIdentifier","src":"15462:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"15437:24:101","nodeType":"YulIdentifier","src":"15437:24:101"},"nativeSrc":"15437:31:101","nodeType":"YulFunctionCall","src":"15437:31:101"},"nativeSrc":"15437:31:101","nodeType":"YulExpressionStatement","src":"15437:31:101"},{"nativeSrc":"15477:15:101","nodeType":"YulAssignment","src":"15477:15:101","value":{"name":"value","nativeSrc":"15487:5:101","nodeType":"YulIdentifier","src":"15487:5:101"},"variableNames":[{"name":"value0","nativeSrc":"15477:6:101","nodeType":"YulIdentifier","src":"15477:6:101"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"15247:251:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15294:9:101","nodeType":"YulTypedName","src":"15294:9:101","type":""},{"name":"dataEnd","nativeSrc":"15305:7:101","nodeType":"YulTypedName","src":"15305:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15317:6:101","nodeType":"YulTypedName","src":"15317:6:101","type":""}],"src":"15247:251:101"},{"body":{"nativeSrc":"15621:102:101","nodeType":"YulBlock","src":"15621:102:101","statements":[{"nativeSrc":"15631:26:101","nodeType":"YulAssignment","src":"15631:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"15643:9:101","nodeType":"YulIdentifier","src":"15643:9:101"},{"kind":"number","nativeSrc":"15654:2:101","nodeType":"YulLiteral","src":"15654:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15639:3:101","nodeType":"YulIdentifier","src":"15639:3:101"},"nativeSrc":"15639:18:101","nodeType":"YulFunctionCall","src":"15639:18:101"},"variableNames":[{"name":"tail","nativeSrc":"15631:4:101","nodeType":"YulIdentifier","src":"15631:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15673:9:101","nodeType":"YulIdentifier","src":"15673:9:101"},{"arguments":[{"name":"value0","nativeSrc":"15688:6:101","nodeType":"YulIdentifier","src":"15688:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"15704:3:101","nodeType":"YulLiteral","src":"15704:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"15709:1:101","nodeType":"YulLiteral","src":"15709:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"15700:3:101","nodeType":"YulIdentifier","src":"15700:3:101"},"nativeSrc":"15700:11:101","nodeType":"YulFunctionCall","src":"15700:11:101"},{"kind":"number","nativeSrc":"15713:1:101","nodeType":"YulLiteral","src":"15713:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"15696:3:101","nodeType":"YulIdentifier","src":"15696:3:101"},"nativeSrc":"15696:19:101","nodeType":"YulFunctionCall","src":"15696:19:101"}],"functionName":{"name":"and","nativeSrc":"15684:3:101","nodeType":"YulIdentifier","src":"15684:3:101"},"nativeSrc":"15684:32:101","nodeType":"YulFunctionCall","src":"15684:32:101"}],"functionName":{"name":"mstore","nativeSrc":"15666:6:101","nodeType":"YulIdentifier","src":"15666:6:101"},"nativeSrc":"15666:51:101","nodeType":"YulFunctionCall","src":"15666:51:101"},"nativeSrc":"15666:51:101","nodeType":"YulExpressionStatement","src":"15666:51:101"}]},"name":"abi_encode_tuple_t_contract$_IEToken_$28869__to_t_address__fromStack_reversed","nativeSrc":"15503:220:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15590:9:101","nodeType":"YulTypedName","src":"15590:9:101","type":""},{"name":"value0","nativeSrc":"15601:6:101","nodeType":"YulTypedName","src":"15601:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15612:4:101","nodeType":"YulTypedName","src":"15612:4:101","type":""}],"src":"15503:220:101"},{"body":{"nativeSrc":"15775:126:101","nodeType":"YulBlock","src":"15775:126:101","statements":[{"nativeSrc":"15785:54:101","nodeType":"YulAssignment","src":"15785:54:101","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"15800:1:101","nodeType":"YulIdentifier","src":"15800:1:101"},{"kind":"number","nativeSrc":"15803:12:101","nodeType":"YulLiteral","src":"15803:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"15796:3:101","nodeType":"YulIdentifier","src":"15796:3:101"},"nativeSrc":"15796:20:101","nodeType":"YulFunctionCall","src":"15796:20:101"},{"arguments":[{"name":"y","nativeSrc":"15822:1:101","nodeType":"YulIdentifier","src":"15822:1:101"},{"kind":"number","nativeSrc":"15825:12:101","nodeType":"YulLiteral","src":"15825:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"15818:3:101","nodeType":"YulIdentifier","src":"15818:3:101"},"nativeSrc":"15818:20:101","nodeType":"YulFunctionCall","src":"15818:20:101"}],"functionName":{"name":"add","nativeSrc":"15792:3:101","nodeType":"YulIdentifier","src":"15792:3:101"},"nativeSrc":"15792:47:101","nodeType":"YulFunctionCall","src":"15792:47:101"},"variableNames":[{"name":"sum","nativeSrc":"15785:3:101","nodeType":"YulIdentifier","src":"15785:3:101"}]},{"body":{"nativeSrc":"15873:22:101","nodeType":"YulBlock","src":"15873:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"15875:16:101","nodeType":"YulIdentifier","src":"15875:16:101"},"nativeSrc":"15875:18:101","nodeType":"YulFunctionCall","src":"15875:18:101"},"nativeSrc":"15875:18:101","nodeType":"YulExpressionStatement","src":"15875:18:101"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"15854:3:101","nodeType":"YulIdentifier","src":"15854:3:101"},{"kind":"number","nativeSrc":"15859:12:101","nodeType":"YulLiteral","src":"15859:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"gt","nativeSrc":"15851:2:101","nodeType":"YulIdentifier","src":"15851:2:101"},"nativeSrc":"15851:21:101","nodeType":"YulFunctionCall","src":"15851:21:101"},"nativeSrc":"15848:47:101","nodeType":"YulIf","src":"15848:47:101"}]},"name":"checked_add_t_uint40","nativeSrc":"15728:173:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"15758:1:101","nodeType":"YulTypedName","src":"15758:1:101","type":""},{"name":"y","nativeSrc":"15761:1:101","nodeType":"YulTypedName","src":"15761:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"15767:3:101","nodeType":"YulTypedName","src":"15767:3:101","type":""}],"src":"15728:173:101"},{"body":{"nativeSrc":"15953:88:101","nodeType":"YulBlock","src":"15953:88:101","statements":[{"body":{"nativeSrc":"15984:22:101","nodeType":"YulBlock","src":"15984:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"15986:16:101","nodeType":"YulIdentifier","src":"15986:16:101"},"nativeSrc":"15986:18:101","nodeType":"YulFunctionCall","src":"15986:18:101"},"nativeSrc":"15986:18:101","nodeType":"YulExpressionStatement","src":"15986:18:101"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"15969:5:101","nodeType":"YulIdentifier","src":"15969:5:101"},{"arguments":[{"kind":"number","nativeSrc":"15980:1:101","nodeType":"YulLiteral","src":"15980:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"15976:3:101","nodeType":"YulIdentifier","src":"15976:3:101"},"nativeSrc":"15976:6:101","nodeType":"YulFunctionCall","src":"15976:6:101"}],"functionName":{"name":"eq","nativeSrc":"15966:2:101","nodeType":"YulIdentifier","src":"15966:2:101"},"nativeSrc":"15966:17:101","nodeType":"YulFunctionCall","src":"15966:17:101"},"nativeSrc":"15963:43:101","nodeType":"YulIf","src":"15963:43:101"},{"nativeSrc":"16015:20:101","nodeType":"YulAssignment","src":"16015:20:101","value":{"arguments":[{"name":"value","nativeSrc":"16026:5:101","nodeType":"YulIdentifier","src":"16026:5:101"},{"kind":"number","nativeSrc":"16033:1:101","nodeType":"YulLiteral","src":"16033:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"16022:3:101","nodeType":"YulIdentifier","src":"16022:3:101"},"nativeSrc":"16022:13:101","nodeType":"YulFunctionCall","src":"16022:13:101"},"variableNames":[{"name":"ret","nativeSrc":"16015:3:101","nodeType":"YulIdentifier","src":"16015:3:101"}]}]},"name":"increment_t_uint256","nativeSrc":"15906:135:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"15935:5:101","nodeType":"YulTypedName","src":"15935:5:101","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"15945:3:101","nodeType":"YulTypedName","src":"15945:3:101","type":""}],"src":"15906:135:101"},{"body":{"nativeSrc":"16094:77:101","nodeType":"YulBlock","src":"16094:77:101","statements":[{"nativeSrc":"16104:16:101","nodeType":"YulAssignment","src":"16104:16:101","value":{"arguments":[{"name":"x","nativeSrc":"16115:1:101","nodeType":"YulIdentifier","src":"16115:1:101"},{"name":"y","nativeSrc":"16118:1:101","nodeType":"YulIdentifier","src":"16118:1:101"}],"functionName":{"name":"add","nativeSrc":"16111:3:101","nodeType":"YulIdentifier","src":"16111:3:101"},"nativeSrc":"16111:9:101","nodeType":"YulFunctionCall","src":"16111:9:101"},"variableNames":[{"name":"sum","nativeSrc":"16104:3:101","nodeType":"YulIdentifier","src":"16104:3:101"}]},{"body":{"nativeSrc":"16143:22:101","nodeType":"YulBlock","src":"16143:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"16145:16:101","nodeType":"YulIdentifier","src":"16145:16:101"},"nativeSrc":"16145:18:101","nodeType":"YulFunctionCall","src":"16145:18:101"},"nativeSrc":"16145:18:101","nodeType":"YulExpressionStatement","src":"16145:18:101"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"16135:1:101","nodeType":"YulIdentifier","src":"16135:1:101"},{"name":"sum","nativeSrc":"16138:3:101","nodeType":"YulIdentifier","src":"16138:3:101"}],"functionName":{"name":"gt","nativeSrc":"16132:2:101","nodeType":"YulIdentifier","src":"16132:2:101"},"nativeSrc":"16132:10:101","nodeType":"YulFunctionCall","src":"16132:10:101"},"nativeSrc":"16129:36:101","nodeType":"YulIf","src":"16129:36:101"}]},"name":"checked_add_t_uint256","nativeSrc":"16046:125:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"16077:1:101","nodeType":"YulTypedName","src":"16077:1:101","type":""},{"name":"y","nativeSrc":"16080:1:101","nodeType":"YulTypedName","src":"16080:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"16086:3:101","nodeType":"YulTypedName","src":"16086:3:101","type":""}],"src":"16046:125:101"},{"body":{"nativeSrc":"16346:507:101","nodeType":"YulBlock","src":"16346:507:101","statements":[{"nativeSrc":"16356:27:101","nodeType":"YulAssignment","src":"16356:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"16368:9:101","nodeType":"YulIdentifier","src":"16368:9:101"},{"kind":"number","nativeSrc":"16379:3:101","nodeType":"YulLiteral","src":"16379:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"16364:3:101","nodeType":"YulIdentifier","src":"16364:3:101"},"nativeSrc":"16364:19:101","nodeType":"YulFunctionCall","src":"16364:19:101"},"variableNames":[{"name":"tail","nativeSrc":"16356:4:101","nodeType":"YulIdentifier","src":"16356:4:101"}]},{"nativeSrc":"16392:30:101","nodeType":"YulVariableDeclaration","src":"16392:30:101","value":{"arguments":[{"name":"value0","nativeSrc":"16415:6:101","nodeType":"YulIdentifier","src":"16415:6:101"}],"functionName":{"name":"sload","nativeSrc":"16409:5:101","nodeType":"YulIdentifier","src":"16409:5:101"},"nativeSrc":"16409:13:101","nodeType":"YulFunctionCall","src":"16409:13:101"},"variables":[{"name":"slotValue","nativeSrc":"16396:9:101","nodeType":"YulTypedName","src":"16396:9:101","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16438:9:101","nodeType":"YulIdentifier","src":"16438:9:101"},{"arguments":[{"name":"slotValue","nativeSrc":"16453:9:101","nodeType":"YulIdentifier","src":"16453:9:101"},{"kind":"number","nativeSrc":"16464:26:101","nodeType":"YulLiteral","src":"16464:26:101","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"16449:3:101","nodeType":"YulIdentifier","src":"16449:3:101"},"nativeSrc":"16449:42:101","nodeType":"YulFunctionCall","src":"16449:42:101"}],"functionName":{"name":"mstore","nativeSrc":"16431:6:101","nodeType":"YulIdentifier","src":"16431:6:101"},"nativeSrc":"16431:61:101","nodeType":"YulFunctionCall","src":"16431:61:101"},"nativeSrc":"16431:61:101","nodeType":"YulExpressionStatement","src":"16431:61:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16512:9:101","nodeType":"YulIdentifier","src":"16512:9:101"},{"kind":"number","nativeSrc":"16523:4:101","nodeType":"YulLiteral","src":"16523:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"16508:3:101","nodeType":"YulIdentifier","src":"16508:3:101"},"nativeSrc":"16508:20:101","nodeType":"YulFunctionCall","src":"16508:20:101"},{"arguments":[{"kind":"number","nativeSrc":"16534:2:101","nodeType":"YulLiteral","src":"16534:2:101","type":"","value":"96"},{"name":"slotValue","nativeSrc":"16538:9:101","nodeType":"YulIdentifier","src":"16538:9:101"}],"functionName":{"name":"shr","nativeSrc":"16530:3:101","nodeType":"YulIdentifier","src":"16530:3:101"},"nativeSrc":"16530:18:101","nodeType":"YulFunctionCall","src":"16530:18:101"}],"functionName":{"name":"mstore","nativeSrc":"16501:6:101","nodeType":"YulIdentifier","src":"16501:6:101"},"nativeSrc":"16501:48:101","nodeType":"YulFunctionCall","src":"16501:48:101"},"nativeSrc":"16501:48:101","nodeType":"YulExpressionStatement","src":"16501:48:101"},{"nativeSrc":"16558:43:101","nodeType":"YulVariableDeclaration","src":"16558:43:101","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"16587:6:101","nodeType":"YulIdentifier","src":"16587:6:101"},{"kind":"number","nativeSrc":"16595:4:101","nodeType":"YulLiteral","src":"16595:4:101","type":"","value":"0x01"}],"functionName":{"name":"add","nativeSrc":"16583:3:101","nodeType":"YulIdentifier","src":"16583:3:101"},"nativeSrc":"16583:17:101","nodeType":"YulFunctionCall","src":"16583:17:101"}],"functionName":{"name":"sload","nativeSrc":"16577:5:101","nodeType":"YulIdentifier","src":"16577:5:101"},"nativeSrc":"16577:24:101","nodeType":"YulFunctionCall","src":"16577:24:101"},"variables":[{"name":"slotValue_1","nativeSrc":"16562:11:101","nodeType":"YulTypedName","src":"16562:11:101","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16621:9:101","nodeType":"YulIdentifier","src":"16621:9:101"},{"kind":"number","nativeSrc":"16632:4:101","nodeType":"YulLiteral","src":"16632:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"16617:3:101","nodeType":"YulIdentifier","src":"16617:3:101"},"nativeSrc":"16617:20:101","nodeType":"YulFunctionCall","src":"16617:20:101"},{"arguments":[{"name":"slotValue_1","nativeSrc":"16643:11:101","nodeType":"YulIdentifier","src":"16643:11:101"},{"kind":"number","nativeSrc":"16656:34:101","nodeType":"YulLiteral","src":"16656:34:101","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"16639:3:101","nodeType":"YulIdentifier","src":"16639:3:101"},"nativeSrc":"16639:52:101","nodeType":"YulFunctionCall","src":"16639:52:101"}],"functionName":{"name":"mstore","nativeSrc":"16610:6:101","nodeType":"YulIdentifier","src":"16610:6:101"},"nativeSrc":"16610:82:101","nodeType":"YulFunctionCall","src":"16610:82:101"},"nativeSrc":"16610:82:101","nodeType":"YulExpressionStatement","src":"16610:82:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16712:9:101","nodeType":"YulIdentifier","src":"16712:9:101"},{"kind":"number","nativeSrc":"16723:2:101","nodeType":"YulLiteral","src":"16723:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16708:3:101","nodeType":"YulIdentifier","src":"16708:3:101"},"nativeSrc":"16708:18:101","nodeType":"YulFunctionCall","src":"16708:18:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16736:3:101","nodeType":"YulLiteral","src":"16736:3:101","type":"","value":"128"},{"name":"slotValue_1","nativeSrc":"16741:11:101","nodeType":"YulIdentifier","src":"16741:11:101"}],"functionName":{"name":"shr","nativeSrc":"16732:3:101","nodeType":"YulIdentifier","src":"16732:3:101"},"nativeSrc":"16732:21:101","nodeType":"YulFunctionCall","src":"16732:21:101"},{"kind":"number","nativeSrc":"16755:12:101","nodeType":"YulLiteral","src":"16755:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"16728:3:101","nodeType":"YulIdentifier","src":"16728:3:101"},"nativeSrc":"16728:40:101","nodeType":"YulFunctionCall","src":"16728:40:101"}],"functionName":{"name":"mstore","nativeSrc":"16701:6:101","nodeType":"YulIdentifier","src":"16701:6:101"},"nativeSrc":"16701:68:101","nodeType":"YulFunctionCall","src":"16701:68:101"},"nativeSrc":"16701:68:101","nodeType":"YulExpressionStatement","src":"16701:68:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16789:9:101","nodeType":"YulIdentifier","src":"16789:9:101"},{"kind":"number","nativeSrc":"16800:3:101","nodeType":"YulLiteral","src":"16800:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"16785:3:101","nodeType":"YulIdentifier","src":"16785:3:101"},"nativeSrc":"16785:19:101","nodeType":"YulFunctionCall","src":"16785:19:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16814:3:101","nodeType":"YulLiteral","src":"16814:3:101","type":"","value":"168"},{"name":"slotValue_1","nativeSrc":"16819:11:101","nodeType":"YulIdentifier","src":"16819:11:101"}],"functionName":{"name":"shr","nativeSrc":"16810:3:101","nodeType":"YulIdentifier","src":"16810:3:101"},"nativeSrc":"16810:21:101","nodeType":"YulFunctionCall","src":"16810:21:101"},{"kind":"number","nativeSrc":"16833:12:101","nodeType":"YulLiteral","src":"16833:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"16806:3:101","nodeType":"YulIdentifier","src":"16806:3:101"},"nativeSrc":"16806:40:101","nodeType":"YulFunctionCall","src":"16806:40:101"}],"functionName":{"name":"mstore","nativeSrc":"16778:6:101","nodeType":"YulIdentifier","src":"16778:6:101"},"nativeSrc":"16778:69:101","nodeType":"YulFunctionCall","src":"16778:69:101"},"nativeSrc":"16778:69:101","nodeType":"YulExpressionStatement","src":"16778:69:101"}]},"name":"abi_encode_tuple_t_struct$_WithdrawalRequest_$18156_storage__to_t_struct$_WithdrawalRequest_$18156_memory_ptr__fromStack_reversed","nativeSrc":"16176:677:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16315:9:101","nodeType":"YulTypedName","src":"16315:9:101","type":""},{"name":"value0","nativeSrc":"16326:6:101","nodeType":"YulTypedName","src":"16326:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16337:4:101","nodeType":"YulTypedName","src":"16337:4:101","type":""}],"src":"16176:677:101"},{"body":{"nativeSrc":"17039:214:101","nodeType":"YulBlock","src":"17039:214:101","statements":[{"nativeSrc":"17049:26:101","nodeType":"YulAssignment","src":"17049:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"17061:9:101","nodeType":"YulIdentifier","src":"17061:9:101"},{"kind":"number","nativeSrc":"17072:2:101","nodeType":"YulLiteral","src":"17072:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"17057:3:101","nodeType":"YulIdentifier","src":"17057:3:101"},"nativeSrc":"17057:18:101","nodeType":"YulFunctionCall","src":"17057:18:101"},"variableNames":[{"name":"tail","nativeSrc":"17049:4:101","nodeType":"YulIdentifier","src":"17049:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17091:9:101","nodeType":"YulIdentifier","src":"17091:9:101"},{"arguments":[{"name":"value0","nativeSrc":"17106:6:101","nodeType":"YulIdentifier","src":"17106:6:101"},{"kind":"number","nativeSrc":"17114:12:101","nodeType":"YulLiteral","src":"17114:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"17102:3:101","nodeType":"YulIdentifier","src":"17102:3:101"},"nativeSrc":"17102:25:101","nodeType":"YulFunctionCall","src":"17102:25:101"}],"functionName":{"name":"mstore","nativeSrc":"17084:6:101","nodeType":"YulIdentifier","src":"17084:6:101"},"nativeSrc":"17084:44:101","nodeType":"YulFunctionCall","src":"17084:44:101"},"nativeSrc":"17084:44:101","nodeType":"YulExpressionStatement","src":"17084:44:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17148:9:101","nodeType":"YulIdentifier","src":"17148:9:101"},{"kind":"number","nativeSrc":"17159:2:101","nodeType":"YulLiteral","src":"17159:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17144:3:101","nodeType":"YulIdentifier","src":"17144:3:101"},"nativeSrc":"17144:18:101","nodeType":"YulFunctionCall","src":"17144:18:101"},{"arguments":[{"name":"value1","nativeSrc":"17168:6:101","nodeType":"YulIdentifier","src":"17168:6:101"},{"kind":"number","nativeSrc":"17176:26:101","nodeType":"YulLiteral","src":"17176:26:101","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"17164:3:101","nodeType":"YulIdentifier","src":"17164:3:101"},"nativeSrc":"17164:39:101","nodeType":"YulFunctionCall","src":"17164:39:101"}],"functionName":{"name":"mstore","nativeSrc":"17137:6:101","nodeType":"YulIdentifier","src":"17137:6:101"},"nativeSrc":"17137:67:101","nodeType":"YulFunctionCall","src":"17137:67:101"},"nativeSrc":"17137:67:101","nodeType":"YulExpressionStatement","src":"17137:67:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17224:9:101","nodeType":"YulIdentifier","src":"17224:9:101"},{"kind":"number","nativeSrc":"17235:2:101","nodeType":"YulLiteral","src":"17235:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17220:3:101","nodeType":"YulIdentifier","src":"17220:3:101"},"nativeSrc":"17220:18:101","nodeType":"YulFunctionCall","src":"17220:18:101"},{"name":"value2","nativeSrc":"17240:6:101","nodeType":"YulIdentifier","src":"17240:6:101"}],"functionName":{"name":"mstore","nativeSrc":"17213:6:101","nodeType":"YulIdentifier","src":"17213:6:101"},"nativeSrc":"17213:34:101","nodeType":"YulFunctionCall","src":"17213:34:101"},"nativeSrc":"17213:34:101","nodeType":"YulExpressionStatement","src":"17213:34:101"}]},"name":"abi_encode_tuple_t_uint40_t_userDefinedValueType$_Scale_$18847_t_uint256__to_t_uint40_t_uint96_t_uint256__fromStack_reversed","nativeSrc":"16858:395:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16992:9:101","nodeType":"YulTypedName","src":"16992:9:101","type":""},{"name":"value2","nativeSrc":"17003:6:101","nodeType":"YulTypedName","src":"17003:6:101","type":""},{"name":"value1","nativeSrc":"17011:6:101","nodeType":"YulTypedName","src":"17011:6:101","type":""},{"name":"value0","nativeSrc":"17019:6:101","nodeType":"YulTypedName","src":"17019:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17030:4:101","nodeType":"YulTypedName","src":"17030:4:101","type":""}],"src":"16858:395:101"},{"body":{"nativeSrc":"17461:293:101","nodeType":"YulBlock","src":"17461:293:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17478:9:101","nodeType":"YulIdentifier","src":"17478:9:101"},{"arguments":[{"name":"value0","nativeSrc":"17493:6:101","nodeType":"YulIdentifier","src":"17493:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17509:3:101","nodeType":"YulLiteral","src":"17509:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"17514:1:101","nodeType":"YulLiteral","src":"17514:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"17505:3:101","nodeType":"YulIdentifier","src":"17505:3:101"},"nativeSrc":"17505:11:101","nodeType":"YulFunctionCall","src":"17505:11:101"},{"kind":"number","nativeSrc":"17518:1:101","nodeType":"YulLiteral","src":"17518:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"17501:3:101","nodeType":"YulIdentifier","src":"17501:3:101"},"nativeSrc":"17501:19:101","nodeType":"YulFunctionCall","src":"17501:19:101"}],"functionName":{"name":"and","nativeSrc":"17489:3:101","nodeType":"YulIdentifier","src":"17489:3:101"},"nativeSrc":"17489:32:101","nodeType":"YulFunctionCall","src":"17489:32:101"}],"functionName":{"name":"mstore","nativeSrc":"17471:6:101","nodeType":"YulIdentifier","src":"17471:6:101"},"nativeSrc":"17471:51:101","nodeType":"YulFunctionCall","src":"17471:51:101"},"nativeSrc":"17471:51:101","nodeType":"YulExpressionStatement","src":"17471:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17542:9:101","nodeType":"YulIdentifier","src":"17542:9:101"},{"kind":"number","nativeSrc":"17553:2:101","nodeType":"YulLiteral","src":"17553:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17538:3:101","nodeType":"YulIdentifier","src":"17538:3:101"},"nativeSrc":"17538:18:101","nodeType":"YulFunctionCall","src":"17538:18:101"},{"arguments":[{"name":"value1","nativeSrc":"17562:6:101","nodeType":"YulIdentifier","src":"17562:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17578:3:101","nodeType":"YulLiteral","src":"17578:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"17583:1:101","nodeType":"YulLiteral","src":"17583:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"17574:3:101","nodeType":"YulIdentifier","src":"17574:3:101"},"nativeSrc":"17574:11:101","nodeType":"YulFunctionCall","src":"17574:11:101"},{"kind":"number","nativeSrc":"17587:1:101","nodeType":"YulLiteral","src":"17587:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"17570:3:101","nodeType":"YulIdentifier","src":"17570:3:101"},"nativeSrc":"17570:19:101","nodeType":"YulFunctionCall","src":"17570:19:101"}],"functionName":{"name":"and","nativeSrc":"17558:3:101","nodeType":"YulIdentifier","src":"17558:3:101"},"nativeSrc":"17558:32:101","nodeType":"YulFunctionCall","src":"17558:32:101"}],"functionName":{"name":"mstore","nativeSrc":"17531:6:101","nodeType":"YulIdentifier","src":"17531:6:101"},"nativeSrc":"17531:60:101","nodeType":"YulFunctionCall","src":"17531:60:101"},"nativeSrc":"17531:60:101","nodeType":"YulExpressionStatement","src":"17531:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17611:9:101","nodeType":"YulIdentifier","src":"17611:9:101"},{"kind":"number","nativeSrc":"17622:2:101","nodeType":"YulLiteral","src":"17622:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17607:3:101","nodeType":"YulIdentifier","src":"17607:3:101"},"nativeSrc":"17607:18:101","nodeType":"YulFunctionCall","src":"17607:18:101"},{"name":"value2","nativeSrc":"17627:6:101","nodeType":"YulIdentifier","src":"17627:6:101"}],"functionName":{"name":"mstore","nativeSrc":"17600:6:101","nodeType":"YulIdentifier","src":"17600:6:101"},"nativeSrc":"17600:34:101","nodeType":"YulFunctionCall","src":"17600:34:101"},"nativeSrc":"17600:34:101","nodeType":"YulExpressionStatement","src":"17600:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17654:9:101","nodeType":"YulIdentifier","src":"17654:9:101"},{"kind":"number","nativeSrc":"17665:2:101","nodeType":"YulLiteral","src":"17665:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"17650:3:101","nodeType":"YulIdentifier","src":"17650:3:101"},"nativeSrc":"17650:18:101","nodeType":"YulFunctionCall","src":"17650:18:101"},{"kind":"number","nativeSrc":"17670:3:101","nodeType":"YulLiteral","src":"17670:3:101","type":"","value":"128"}],"functionName":{"name":"mstore","nativeSrc":"17643:6:101","nodeType":"YulIdentifier","src":"17643:6:101"},"nativeSrc":"17643:31:101","nodeType":"YulFunctionCall","src":"17643:31:101"},"nativeSrc":"17643:31:101","nodeType":"YulExpressionStatement","src":"17643:31:101"},{"nativeSrc":"17683:65:101","nodeType":"YulAssignment","src":"17683:65:101","value":{"arguments":[{"name":"value3","nativeSrc":"17720:6:101","nodeType":"YulIdentifier","src":"17720:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"17732:9:101","nodeType":"YulIdentifier","src":"17732:9:101"},{"kind":"number","nativeSrc":"17743:3:101","nodeType":"YulLiteral","src":"17743:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"17728:3:101","nodeType":"YulIdentifier","src":"17728:3:101"},"nativeSrc":"17728:19:101","nodeType":"YulFunctionCall","src":"17728:19:101"}],"functionName":{"name":"abi_encode_string_memory_ptr","nativeSrc":"17691:28:101","nodeType":"YulIdentifier","src":"17691:28:101"},"nativeSrc":"17691:57:101","nodeType":"YulFunctionCall","src":"17691:57:101"},"variableNames":[{"name":"tail","nativeSrc":"17683:4:101","nodeType":"YulIdentifier","src":"17683:4:101"}]}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"17258:496:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17406:9:101","nodeType":"YulTypedName","src":"17406:9:101","type":""},{"name":"value3","nativeSrc":"17417:6:101","nodeType":"YulTypedName","src":"17417:6:101","type":""},{"name":"value2","nativeSrc":"17425:6:101","nodeType":"YulTypedName","src":"17425:6:101","type":""},{"name":"value1","nativeSrc":"17433:6:101","nodeType":"YulTypedName","src":"17433:6:101","type":""},{"name":"value0","nativeSrc":"17441:6:101","nodeType":"YulTypedName","src":"17441:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17452:4:101","nodeType":"YulTypedName","src":"17452:4:101","type":""}],"src":"17258:496:101"},{"body":{"nativeSrc":"17839:169:101","nodeType":"YulBlock","src":"17839:169:101","statements":[{"body":{"nativeSrc":"17885:16:101","nodeType":"YulBlock","src":"17885:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17894:1:101","nodeType":"YulLiteral","src":"17894:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"17897:1:101","nodeType":"YulLiteral","src":"17897:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17887:6:101","nodeType":"YulIdentifier","src":"17887:6:101"},"nativeSrc":"17887:12:101","nodeType":"YulFunctionCall","src":"17887:12:101"},"nativeSrc":"17887:12:101","nodeType":"YulExpressionStatement","src":"17887:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17860:7:101","nodeType":"YulIdentifier","src":"17860:7:101"},{"name":"headStart","nativeSrc":"17869:9:101","nodeType":"YulIdentifier","src":"17869:9:101"}],"functionName":{"name":"sub","nativeSrc":"17856:3:101","nodeType":"YulIdentifier","src":"17856:3:101"},"nativeSrc":"17856:23:101","nodeType":"YulFunctionCall","src":"17856:23:101"},{"kind":"number","nativeSrc":"17881:2:101","nodeType":"YulLiteral","src":"17881:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"17852:3:101","nodeType":"YulIdentifier","src":"17852:3:101"},"nativeSrc":"17852:32:101","nodeType":"YulFunctionCall","src":"17852:32:101"},"nativeSrc":"17849:52:101","nodeType":"YulIf","src":"17849:52:101"},{"nativeSrc":"17910:29:101","nodeType":"YulVariableDeclaration","src":"17910:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"17929:9:101","nodeType":"YulIdentifier","src":"17929:9:101"}],"functionName":{"name":"mload","nativeSrc":"17923:5:101","nodeType":"YulIdentifier","src":"17923:5:101"},"nativeSrc":"17923:16:101","nodeType":"YulFunctionCall","src":"17923:16:101"},"variables":[{"name":"value","nativeSrc":"17914:5:101","nodeType":"YulTypedName","src":"17914:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"17972:5:101","nodeType":"YulIdentifier","src":"17972:5:101"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"17948:23:101","nodeType":"YulIdentifier","src":"17948:23:101"},"nativeSrc":"17948:30:101","nodeType":"YulFunctionCall","src":"17948:30:101"},"nativeSrc":"17948:30:101","nodeType":"YulExpressionStatement","src":"17948:30:101"},{"nativeSrc":"17987:15:101","nodeType":"YulAssignment","src":"17987:15:101","value":{"name":"value","nativeSrc":"17997:5:101","nodeType":"YulIdentifier","src":"17997:5:101"},"variableNames":[{"name":"value0","nativeSrc":"17987:6:101","nodeType":"YulIdentifier","src":"17987:6:101"}]}]},"name":"abi_decode_tuple_t_bytes4_fromMemory","nativeSrc":"17759:249:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17805:9:101","nodeType":"YulTypedName","src":"17805:9:101","type":""},{"name":"dataEnd","nativeSrc":"17816:7:101","nodeType":"YulTypedName","src":"17816:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17828:6:101","nodeType":"YulTypedName","src":"17828:6:101","type":""}],"src":"17759:249:101"},{"body":{"nativeSrc":"18045:95:101","nodeType":"YulBlock","src":"18045:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18062:1:101","nodeType":"YulLiteral","src":"18062:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"18069:3:101","nodeType":"YulLiteral","src":"18069:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"18074:10:101","nodeType":"YulLiteral","src":"18074:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"18065:3:101","nodeType":"YulIdentifier","src":"18065:3:101"},"nativeSrc":"18065:20:101","nodeType":"YulFunctionCall","src":"18065:20:101"}],"functionName":{"name":"mstore","nativeSrc":"18055:6:101","nodeType":"YulIdentifier","src":"18055:6:101"},"nativeSrc":"18055:31:101","nodeType":"YulFunctionCall","src":"18055:31:101"},"nativeSrc":"18055:31:101","nodeType":"YulExpressionStatement","src":"18055:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"18102:1:101","nodeType":"YulLiteral","src":"18102:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"18105:4:101","nodeType":"YulLiteral","src":"18105:4:101","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"18095:6:101","nodeType":"YulIdentifier","src":"18095:6:101"},"nativeSrc":"18095:15:101","nodeType":"YulFunctionCall","src":"18095:15:101"},"nativeSrc":"18095:15:101","nodeType":"YulExpressionStatement","src":"18095:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"18126:1:101","nodeType":"YulLiteral","src":"18126:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"18129:4:101","nodeType":"YulLiteral","src":"18129:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"18119:6:101","nodeType":"YulIdentifier","src":"18119:6:101"},"nativeSrc":"18119:15:101","nodeType":"YulFunctionCall","src":"18119:15:101"},"nativeSrc":"18119:15:101","nodeType":"YulExpressionStatement","src":"18119:15:101"}]},"name":"panic_error_0x12","nativeSrc":"18013:127:101","nodeType":"YulFunctionDefinition","src":"18013:127:101"},{"body":{"nativeSrc":"18274:145:101","nodeType":"YulBlock","src":"18274:145:101","statements":[{"nativeSrc":"18284:26:101","nodeType":"YulAssignment","src":"18284:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"18296:9:101","nodeType":"YulIdentifier","src":"18296:9:101"},{"kind":"number","nativeSrc":"18307:2:101","nodeType":"YulLiteral","src":"18307:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18292:3:101","nodeType":"YulIdentifier","src":"18292:3:101"},"nativeSrc":"18292:18:101","nodeType":"YulFunctionCall","src":"18292:18:101"},"variableNames":[{"name":"tail","nativeSrc":"18284:4:101","nodeType":"YulIdentifier","src":"18284:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18326:9:101","nodeType":"YulIdentifier","src":"18326:9:101"},{"arguments":[{"name":"value0","nativeSrc":"18341:6:101","nodeType":"YulIdentifier","src":"18341:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18357:3:101","nodeType":"YulLiteral","src":"18357:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"18362:1:101","nodeType":"YulLiteral","src":"18362:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18353:3:101","nodeType":"YulIdentifier","src":"18353:3:101"},"nativeSrc":"18353:11:101","nodeType":"YulFunctionCall","src":"18353:11:101"},{"kind":"number","nativeSrc":"18366:1:101","nodeType":"YulLiteral","src":"18366:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18349:3:101","nodeType":"YulIdentifier","src":"18349:3:101"},"nativeSrc":"18349:19:101","nodeType":"YulFunctionCall","src":"18349:19:101"}],"functionName":{"name":"and","nativeSrc":"18337:3:101","nodeType":"YulIdentifier","src":"18337:3:101"},"nativeSrc":"18337:32:101","nodeType":"YulFunctionCall","src":"18337:32:101"}],"functionName":{"name":"mstore","nativeSrc":"18319:6:101","nodeType":"YulIdentifier","src":"18319:6:101"},"nativeSrc":"18319:51:101","nodeType":"YulFunctionCall","src":"18319:51:101"},"nativeSrc":"18319:51:101","nodeType":"YulExpressionStatement","src":"18319:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18390:9:101","nodeType":"YulIdentifier","src":"18390:9:101"},{"kind":"number","nativeSrc":"18401:2:101","nodeType":"YulLiteral","src":"18401:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18386:3:101","nodeType":"YulIdentifier","src":"18386:3:101"},"nativeSrc":"18386:18:101","nodeType":"YulFunctionCall","src":"18386:18:101"},{"name":"value1","nativeSrc":"18406:6:101","nodeType":"YulIdentifier","src":"18406:6:101"}],"functionName":{"name":"mstore","nativeSrc":"18379:6:101","nodeType":"YulIdentifier","src":"18379:6:101"},"nativeSrc":"18379:34:101","nodeType":"YulFunctionCall","src":"18379:34:101"},"nativeSrc":"18379:34:101","nodeType":"YulExpressionStatement","src":"18379:34:101"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"18145:274:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18235:9:101","nodeType":"YulTypedName","src":"18235:9:101","type":""},{"name":"value1","nativeSrc":"18246:6:101","nodeType":"YulTypedName","src":"18246:6:101","type":""},{"name":"value0","nativeSrc":"18254:6:101","nodeType":"YulTypedName","src":"18254:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18265:4:101","nodeType":"YulTypedName","src":"18265:4:101","type":""}],"src":"18145:274:101"},{"body":{"nativeSrc":"18526:170:101","nodeType":"YulBlock","src":"18526:170:101","statements":[{"body":{"nativeSrc":"18572:16:101","nodeType":"YulBlock","src":"18572:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18581:1:101","nodeType":"YulLiteral","src":"18581:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"18584:1:101","nodeType":"YulLiteral","src":"18584:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18574:6:101","nodeType":"YulIdentifier","src":"18574:6:101"},"nativeSrc":"18574:12:101","nodeType":"YulFunctionCall","src":"18574:12:101"},"nativeSrc":"18574:12:101","nodeType":"YulExpressionStatement","src":"18574:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18547:7:101","nodeType":"YulIdentifier","src":"18547:7:101"},{"name":"headStart","nativeSrc":"18556:9:101","nodeType":"YulIdentifier","src":"18556:9:101"}],"functionName":{"name":"sub","nativeSrc":"18543:3:101","nodeType":"YulIdentifier","src":"18543:3:101"},"nativeSrc":"18543:23:101","nodeType":"YulFunctionCall","src":"18543:23:101"},{"kind":"number","nativeSrc":"18568:2:101","nodeType":"YulLiteral","src":"18568:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"18539:3:101","nodeType":"YulIdentifier","src":"18539:3:101"},"nativeSrc":"18539:32:101","nodeType":"YulFunctionCall","src":"18539:32:101"},"nativeSrc":"18536:52:101","nodeType":"YulIf","src":"18536:52:101"},{"nativeSrc":"18597:29:101","nodeType":"YulVariableDeclaration","src":"18597:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"18616:9:101","nodeType":"YulIdentifier","src":"18616:9:101"}],"functionName":{"name":"mload","nativeSrc":"18610:5:101","nodeType":"YulIdentifier","src":"18610:5:101"},"nativeSrc":"18610:16:101","nodeType":"YulFunctionCall","src":"18610:16:101"},"variables":[{"name":"value","nativeSrc":"18601:5:101","nodeType":"YulTypedName","src":"18601:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"18660:5:101","nodeType":"YulIdentifier","src":"18660:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"18635:24:101","nodeType":"YulIdentifier","src":"18635:24:101"},"nativeSrc":"18635:31:101","nodeType":"YulFunctionCall","src":"18635:31:101"},"nativeSrc":"18635:31:101","nodeType":"YulExpressionStatement","src":"18635:31:101"},{"nativeSrc":"18675:15:101","nodeType":"YulAssignment","src":"18675:15:101","value":{"name":"value","nativeSrc":"18685:5:101","nodeType":"YulIdentifier","src":"18685:5:101"},"variableNames":[{"name":"value0","nativeSrc":"18675:6:101","nodeType":"YulIdentifier","src":"18675:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory","nativeSrc":"18424:272:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18492:9:101","nodeType":"YulTypedName","src":"18492:9:101","type":""},{"name":"dataEnd","nativeSrc":"18503:7:101","nodeType":"YulTypedName","src":"18503:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18515:6:101","nodeType":"YulTypedName","src":"18515:6:101","type":""}],"src":"18424:272:101"},{"body":{"nativeSrc":"18838:130:101","nodeType":"YulBlock","src":"18838:130:101","statements":[{"nativeSrc":"18848:26:101","nodeType":"YulAssignment","src":"18848:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"18860:9:101","nodeType":"YulIdentifier","src":"18860:9:101"},{"kind":"number","nativeSrc":"18871:2:101","nodeType":"YulLiteral","src":"18871:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18856:3:101","nodeType":"YulIdentifier","src":"18856:3:101"},"nativeSrc":"18856:18:101","nodeType":"YulFunctionCall","src":"18856:18:101"},"variableNames":[{"name":"tail","nativeSrc":"18848:4:101","nodeType":"YulIdentifier","src":"18848:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18890:9:101","nodeType":"YulIdentifier","src":"18890:9:101"},{"arguments":[{"name":"value0","nativeSrc":"18905:6:101","nodeType":"YulIdentifier","src":"18905:6:101"},{"kind":"number","nativeSrc":"18913:4:101","nodeType":"YulLiteral","src":"18913:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"18901:3:101","nodeType":"YulIdentifier","src":"18901:3:101"},"nativeSrc":"18901:17:101","nodeType":"YulFunctionCall","src":"18901:17:101"}],"functionName":{"name":"mstore","nativeSrc":"18883:6:101","nodeType":"YulIdentifier","src":"18883:6:101"},"nativeSrc":"18883:36:101","nodeType":"YulFunctionCall","src":"18883:36:101"},"nativeSrc":"18883:36:101","nodeType":"YulExpressionStatement","src":"18883:36:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18939:9:101","nodeType":"YulIdentifier","src":"18939:9:101"},{"kind":"number","nativeSrc":"18950:2:101","nodeType":"YulLiteral","src":"18950:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18935:3:101","nodeType":"YulIdentifier","src":"18935:3:101"},"nativeSrc":"18935:18:101","nodeType":"YulFunctionCall","src":"18935:18:101"},{"name":"value1","nativeSrc":"18955:6:101","nodeType":"YulIdentifier","src":"18955:6:101"}],"functionName":{"name":"mstore","nativeSrc":"18928:6:101","nodeType":"YulIdentifier","src":"18928:6:101"},"nativeSrc":"18928:34:101","nodeType":"YulFunctionCall","src":"18928:34:101"},"nativeSrc":"18928:34:101","nodeType":"YulExpressionStatement","src":"18928:34:101"}]},"name":"abi_encode_tuple_t_rational_128_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"18701:267:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18799:9:101","nodeType":"YulTypedName","src":"18799:9:101","type":""},{"name":"value1","nativeSrc":"18810:6:101","nodeType":"YulTypedName","src":"18810:6:101","type":""},{"name":"value0","nativeSrc":"18818:6:101","nodeType":"YulTypedName","src":"18818:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18829:4:101","nodeType":"YulTypedName","src":"18829:4:101","type":""}],"src":"18701:267:101"},{"body":{"nativeSrc":"19029:65:101","nodeType":"YulBlock","src":"19029:65:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19046:1:101","nodeType":"YulLiteral","src":"19046:1:101","type":"","value":"0"},{"name":"ptr","nativeSrc":"19049:3:101","nodeType":"YulIdentifier","src":"19049:3:101"}],"functionName":{"name":"mstore","nativeSrc":"19039:6:101","nodeType":"YulIdentifier","src":"19039:6:101"},"nativeSrc":"19039:14:101","nodeType":"YulFunctionCall","src":"19039:14:101"},"nativeSrc":"19039:14:101","nodeType":"YulExpressionStatement","src":"19039:14:101"},{"nativeSrc":"19062:26:101","nodeType":"YulAssignment","src":"19062:26:101","value":{"arguments":[{"kind":"number","nativeSrc":"19080:1:101","nodeType":"YulLiteral","src":"19080:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"19083:4:101","nodeType":"YulLiteral","src":"19083:4:101","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"19070:9:101","nodeType":"YulIdentifier","src":"19070:9:101"},"nativeSrc":"19070:18:101","nodeType":"YulFunctionCall","src":"19070:18:101"},"variableNames":[{"name":"data","nativeSrc":"19062:4:101","nodeType":"YulIdentifier","src":"19062:4:101"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"18973:121:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"19012:3:101","nodeType":"YulTypedName","src":"19012:3:101","type":""}],"returnVariables":[{"name":"data","nativeSrc":"19020:4:101","nodeType":"YulTypedName","src":"19020:4:101","type":""}],"src":"18973:121:101"},{"body":{"nativeSrc":"19180:437:101","nodeType":"YulBlock","src":"19180:437:101","statements":[{"body":{"nativeSrc":"19213:398:101","nodeType":"YulBlock","src":"19213:398:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19234:1:101","nodeType":"YulLiteral","src":"19234:1:101","type":"","value":"0"},{"name":"array","nativeSrc":"19237:5:101","nodeType":"YulIdentifier","src":"19237:5:101"}],"functionName":{"name":"mstore","nativeSrc":"19227:6:101","nodeType":"YulIdentifier","src":"19227:6:101"},"nativeSrc":"19227:16:101","nodeType":"YulFunctionCall","src":"19227:16:101"},"nativeSrc":"19227:16:101","nodeType":"YulExpressionStatement","src":"19227:16:101"},{"nativeSrc":"19256:30:101","nodeType":"YulVariableDeclaration","src":"19256:30:101","value":{"arguments":[{"kind":"number","nativeSrc":"19278:1:101","nodeType":"YulLiteral","src":"19278:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"19281:4:101","nodeType":"YulLiteral","src":"19281:4:101","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"19268:9:101","nodeType":"YulIdentifier","src":"19268:9:101"},"nativeSrc":"19268:18:101","nodeType":"YulFunctionCall","src":"19268:18:101"},"variables":[{"name":"data","nativeSrc":"19260:4:101","nodeType":"YulTypedName","src":"19260:4:101","type":""}]},{"nativeSrc":"19299:57:101","nodeType":"YulVariableDeclaration","src":"19299:57:101","value":{"arguments":[{"name":"data","nativeSrc":"19322:4:101","nodeType":"YulIdentifier","src":"19322:4:101"},{"arguments":[{"kind":"number","nativeSrc":"19332:1:101","nodeType":"YulLiteral","src":"19332:1:101","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"19339:10:101","nodeType":"YulIdentifier","src":"19339:10:101"},{"kind":"number","nativeSrc":"19351:2:101","nodeType":"YulLiteral","src":"19351:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"19335:3:101","nodeType":"YulIdentifier","src":"19335:3:101"},"nativeSrc":"19335:19:101","nodeType":"YulFunctionCall","src":"19335:19:101"}],"functionName":{"name":"shr","nativeSrc":"19328:3:101","nodeType":"YulIdentifier","src":"19328:3:101"},"nativeSrc":"19328:27:101","nodeType":"YulFunctionCall","src":"19328:27:101"}],"functionName":{"name":"add","nativeSrc":"19318:3:101","nodeType":"YulIdentifier","src":"19318:3:101"},"nativeSrc":"19318:38:101","nodeType":"YulFunctionCall","src":"19318:38:101"},"variables":[{"name":"deleteStart","nativeSrc":"19303:11:101","nodeType":"YulTypedName","src":"19303:11:101","type":""}]},{"body":{"nativeSrc":"19393:23:101","nodeType":"YulBlock","src":"19393:23:101","statements":[{"nativeSrc":"19395:19:101","nodeType":"YulAssignment","src":"19395:19:101","value":{"name":"data","nativeSrc":"19410:4:101","nodeType":"YulIdentifier","src":"19410:4:101"},"variableNames":[{"name":"deleteStart","nativeSrc":"19395:11:101","nodeType":"YulIdentifier","src":"19395:11:101"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"19375:10:101","nodeType":"YulIdentifier","src":"19375:10:101"},{"kind":"number","nativeSrc":"19387:4:101","nodeType":"YulLiteral","src":"19387:4:101","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"19372:2:101","nodeType":"YulIdentifier","src":"19372:2:101"},"nativeSrc":"19372:20:101","nodeType":"YulFunctionCall","src":"19372:20:101"},"nativeSrc":"19369:47:101","nodeType":"YulIf","src":"19369:47:101"},{"nativeSrc":"19429:41:101","nodeType":"YulVariableDeclaration","src":"19429:41:101","value":{"arguments":[{"name":"data","nativeSrc":"19443:4:101","nodeType":"YulIdentifier","src":"19443:4:101"},{"arguments":[{"kind":"number","nativeSrc":"19453:1:101","nodeType":"YulLiteral","src":"19453:1:101","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"19460:3:101","nodeType":"YulIdentifier","src":"19460:3:101"},{"kind":"number","nativeSrc":"19465:2:101","nodeType":"YulLiteral","src":"19465:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"19456:3:101","nodeType":"YulIdentifier","src":"19456:3:101"},"nativeSrc":"19456:12:101","nodeType":"YulFunctionCall","src":"19456:12:101"}],"functionName":{"name":"shr","nativeSrc":"19449:3:101","nodeType":"YulIdentifier","src":"19449:3:101"},"nativeSrc":"19449:20:101","nodeType":"YulFunctionCall","src":"19449:20:101"}],"functionName":{"name":"add","nativeSrc":"19439:3:101","nodeType":"YulIdentifier","src":"19439:3:101"},"nativeSrc":"19439:31:101","nodeType":"YulFunctionCall","src":"19439:31:101"},"variables":[{"name":"_1","nativeSrc":"19433:2:101","nodeType":"YulTypedName","src":"19433:2:101","type":""}]},{"nativeSrc":"19483:24:101","nodeType":"YulVariableDeclaration","src":"19483:24:101","value":{"name":"deleteStart","nativeSrc":"19496:11:101","nodeType":"YulIdentifier","src":"19496:11:101"},"variables":[{"name":"start","nativeSrc":"19487:5:101","nodeType":"YulTypedName","src":"19487:5:101","type":""}]},{"body":{"nativeSrc":"19581:20:101","nodeType":"YulBlock","src":"19581:20:101","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"19590:5:101","nodeType":"YulIdentifier","src":"19590:5:101"},{"kind":"number","nativeSrc":"19597:1:101","nodeType":"YulLiteral","src":"19597:1:101","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"19583:6:101","nodeType":"YulIdentifier","src":"19583:6:101"},"nativeSrc":"19583:16:101","nodeType":"YulFunctionCall","src":"19583:16:101"},"nativeSrc":"19583:16:101","nodeType":"YulExpressionStatement","src":"19583:16:101"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"19531:5:101","nodeType":"YulIdentifier","src":"19531:5:101"},{"name":"_1","nativeSrc":"19538:2:101","nodeType":"YulIdentifier","src":"19538:2:101"}],"functionName":{"name":"lt","nativeSrc":"19528:2:101","nodeType":"YulIdentifier","src":"19528:2:101"},"nativeSrc":"19528:13:101","nodeType":"YulFunctionCall","src":"19528:13:101"},"nativeSrc":"19520:81:101","nodeType":"YulForLoop","post":{"nativeSrc":"19542:26:101","nodeType":"YulBlock","src":"19542:26:101","statements":[{"nativeSrc":"19544:22:101","nodeType":"YulAssignment","src":"19544:22:101","value":{"arguments":[{"name":"start","nativeSrc":"19557:5:101","nodeType":"YulIdentifier","src":"19557:5:101"},{"kind":"number","nativeSrc":"19564:1:101","nodeType":"YulLiteral","src":"19564:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"19553:3:101","nodeType":"YulIdentifier","src":"19553:3:101"},"nativeSrc":"19553:13:101","nodeType":"YulFunctionCall","src":"19553:13:101"},"variableNames":[{"name":"start","nativeSrc":"19544:5:101","nodeType":"YulIdentifier","src":"19544:5:101"}]}]},"pre":{"nativeSrc":"19524:3:101","nodeType":"YulBlock","src":"19524:3:101","statements":[]},"src":"19520:81:101"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"19196:3:101","nodeType":"YulIdentifier","src":"19196:3:101"},{"kind":"number","nativeSrc":"19201:2:101","nodeType":"YulLiteral","src":"19201:2:101","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"19193:2:101","nodeType":"YulIdentifier","src":"19193:2:101"},"nativeSrc":"19193:11:101","nodeType":"YulFunctionCall","src":"19193:11:101"},"nativeSrc":"19190:421:101","nodeType":"YulIf","src":"19190:421:101"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"19099:518:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"19152:5:101","nodeType":"YulTypedName","src":"19152:5:101","type":""},{"name":"len","nativeSrc":"19159:3:101","nodeType":"YulTypedName","src":"19159:3:101","type":""},{"name":"startIndex","nativeSrc":"19164:10:101","nodeType":"YulTypedName","src":"19164:10:101","type":""}],"src":"19099:518:101"},{"body":{"nativeSrc":"19707:81:101","nodeType":"YulBlock","src":"19707:81:101","statements":[{"nativeSrc":"19717:65:101","nodeType":"YulAssignment","src":"19717:65:101","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"19732:4:101","nodeType":"YulIdentifier","src":"19732:4:101"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19750:1:101","nodeType":"YulLiteral","src":"19750:1:101","type":"","value":"3"},{"name":"len","nativeSrc":"19753:3:101","nodeType":"YulIdentifier","src":"19753:3:101"}],"functionName":{"name":"shl","nativeSrc":"19746:3:101","nodeType":"YulIdentifier","src":"19746:3:101"},"nativeSrc":"19746:11:101","nodeType":"YulFunctionCall","src":"19746:11:101"},{"arguments":[{"kind":"number","nativeSrc":"19763:1:101","nodeType":"YulLiteral","src":"19763:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"19759:3:101","nodeType":"YulIdentifier","src":"19759:3:101"},"nativeSrc":"19759:6:101","nodeType":"YulFunctionCall","src":"19759:6:101"}],"functionName":{"name":"shr","nativeSrc":"19742:3:101","nodeType":"YulIdentifier","src":"19742:3:101"},"nativeSrc":"19742:24:101","nodeType":"YulFunctionCall","src":"19742:24:101"}],"functionName":{"name":"not","nativeSrc":"19738:3:101","nodeType":"YulIdentifier","src":"19738:3:101"},"nativeSrc":"19738:29:101","nodeType":"YulFunctionCall","src":"19738:29:101"}],"functionName":{"name":"and","nativeSrc":"19728:3:101","nodeType":"YulIdentifier","src":"19728:3:101"},"nativeSrc":"19728:40:101","nodeType":"YulFunctionCall","src":"19728:40:101"},{"arguments":[{"kind":"number","nativeSrc":"19774:1:101","nodeType":"YulLiteral","src":"19774:1:101","type":"","value":"1"},{"name":"len","nativeSrc":"19777:3:101","nodeType":"YulIdentifier","src":"19777:3:101"}],"functionName":{"name":"shl","nativeSrc":"19770:3:101","nodeType":"YulIdentifier","src":"19770:3:101"},"nativeSrc":"19770:11:101","nodeType":"YulFunctionCall","src":"19770:11:101"}],"functionName":{"name":"or","nativeSrc":"19725:2:101","nodeType":"YulIdentifier","src":"19725:2:101"},"nativeSrc":"19725:57:101","nodeType":"YulFunctionCall","src":"19725:57:101"},"variableNames":[{"name":"used","nativeSrc":"19717:4:101","nodeType":"YulIdentifier","src":"19717:4:101"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"19622:166:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"19684:4:101","nodeType":"YulTypedName","src":"19684:4:101","type":""},{"name":"len","nativeSrc":"19690:3:101","nodeType":"YulTypedName","src":"19690:3:101","type":""}],"returnVariables":[{"name":"used","nativeSrc":"19698:4:101","nodeType":"YulTypedName","src":"19698:4:101","type":""}],"src":"19622:166:101"},{"body":{"nativeSrc":"19889:1203:101","nodeType":"YulBlock","src":"19889:1203:101","statements":[{"nativeSrc":"19899:24:101","nodeType":"YulVariableDeclaration","src":"19899:24:101","value":{"arguments":[{"name":"src","nativeSrc":"19919:3:101","nodeType":"YulIdentifier","src":"19919:3:101"}],"functionName":{"name":"mload","nativeSrc":"19913:5:101","nodeType":"YulIdentifier","src":"19913:5:101"},"nativeSrc":"19913:10:101","nodeType":"YulFunctionCall","src":"19913:10:101"},"variables":[{"name":"newLen","nativeSrc":"19903:6:101","nodeType":"YulTypedName","src":"19903:6:101","type":""}]},{"body":{"nativeSrc":"19966:22:101","nodeType":"YulBlock","src":"19966:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"19968:16:101","nodeType":"YulIdentifier","src":"19968:16:101"},"nativeSrc":"19968:18:101","nodeType":"YulFunctionCall","src":"19968:18:101"},"nativeSrc":"19968:18:101","nodeType":"YulExpressionStatement","src":"19968:18:101"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"19938:6:101","nodeType":"YulIdentifier","src":"19938:6:101"},{"kind":"number","nativeSrc":"19946:18:101","nodeType":"YulLiteral","src":"19946:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"19935:2:101","nodeType":"YulIdentifier","src":"19935:2:101"},"nativeSrc":"19935:30:101","nodeType":"YulFunctionCall","src":"19935:30:101"},"nativeSrc":"19932:56:101","nodeType":"YulIf","src":"19932:56:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"20041:4:101","nodeType":"YulIdentifier","src":"20041:4:101"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"20079:4:101","nodeType":"YulIdentifier","src":"20079:4:101"}],"functionName":{"name":"sload","nativeSrc":"20073:5:101","nodeType":"YulIdentifier","src":"20073:5:101"},"nativeSrc":"20073:11:101","nodeType":"YulFunctionCall","src":"20073:11:101"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"20047:25:101","nodeType":"YulIdentifier","src":"20047:25:101"},"nativeSrc":"20047:38:101","nodeType":"YulFunctionCall","src":"20047:38:101"},{"name":"newLen","nativeSrc":"20087:6:101","nodeType":"YulIdentifier","src":"20087:6:101"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"19997:43:101","nodeType":"YulIdentifier","src":"19997:43:101"},"nativeSrc":"19997:97:101","nodeType":"YulFunctionCall","src":"19997:97:101"},"nativeSrc":"19997:97:101","nodeType":"YulExpressionStatement","src":"19997:97:101"},{"nativeSrc":"20103:18:101","nodeType":"YulVariableDeclaration","src":"20103:18:101","value":{"kind":"number","nativeSrc":"20120:1:101","nodeType":"YulLiteral","src":"20120:1:101","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"20107:9:101","nodeType":"YulTypedName","src":"20107:9:101","type":""}]},{"nativeSrc":"20130:17:101","nodeType":"YulAssignment","src":"20130:17:101","value":{"kind":"number","nativeSrc":"20143:4:101","nodeType":"YulLiteral","src":"20143:4:101","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"20130:9:101","nodeType":"YulIdentifier","src":"20130:9:101"}]},{"cases":[{"body":{"nativeSrc":"20193:642:101","nodeType":"YulBlock","src":"20193:642:101","statements":[{"nativeSrc":"20207:35:101","nodeType":"YulVariableDeclaration","src":"20207:35:101","value":{"arguments":[{"name":"newLen","nativeSrc":"20226:6:101","nodeType":"YulIdentifier","src":"20226:6:101"},{"arguments":[{"kind":"number","nativeSrc":"20238:2:101","nodeType":"YulLiteral","src":"20238:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"20234:3:101","nodeType":"YulIdentifier","src":"20234:3:101"},"nativeSrc":"20234:7:101","nodeType":"YulFunctionCall","src":"20234:7:101"}],"functionName":{"name":"and","nativeSrc":"20222:3:101","nodeType":"YulIdentifier","src":"20222:3:101"},"nativeSrc":"20222:20:101","nodeType":"YulFunctionCall","src":"20222:20:101"},"variables":[{"name":"loopEnd","nativeSrc":"20211:7:101","nodeType":"YulTypedName","src":"20211:7:101","type":""}]},{"nativeSrc":"20255:49:101","nodeType":"YulVariableDeclaration","src":"20255:49:101","value":{"arguments":[{"name":"slot","nativeSrc":"20299:4:101","nodeType":"YulIdentifier","src":"20299:4:101"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"20269:29:101","nodeType":"YulIdentifier","src":"20269:29:101"},"nativeSrc":"20269:35:101","nodeType":"YulFunctionCall","src":"20269:35:101"},"variables":[{"name":"dstPtr","nativeSrc":"20259:6:101","nodeType":"YulTypedName","src":"20259:6:101","type":""}]},{"nativeSrc":"20317:10:101","nodeType":"YulVariableDeclaration","src":"20317:10:101","value":{"kind":"number","nativeSrc":"20326:1:101","nodeType":"YulLiteral","src":"20326:1:101","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"20321:1:101","nodeType":"YulTypedName","src":"20321:1:101","type":""}]},{"body":{"nativeSrc":"20397:165:101","nodeType":"YulBlock","src":"20397:165:101","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"20422:6:101","nodeType":"YulIdentifier","src":"20422:6:101"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"20440:3:101","nodeType":"YulIdentifier","src":"20440:3:101"},{"name":"srcOffset","nativeSrc":"20445:9:101","nodeType":"YulIdentifier","src":"20445:9:101"}],"functionName":{"name":"add","nativeSrc":"20436:3:101","nodeType":"YulIdentifier","src":"20436:3:101"},"nativeSrc":"20436:19:101","nodeType":"YulFunctionCall","src":"20436:19:101"}],"functionName":{"name":"mload","nativeSrc":"20430:5:101","nodeType":"YulIdentifier","src":"20430:5:101"},"nativeSrc":"20430:26:101","nodeType":"YulFunctionCall","src":"20430:26:101"}],"functionName":{"name":"sstore","nativeSrc":"20415:6:101","nodeType":"YulIdentifier","src":"20415:6:101"},"nativeSrc":"20415:42:101","nodeType":"YulFunctionCall","src":"20415:42:101"},"nativeSrc":"20415:42:101","nodeType":"YulExpressionStatement","src":"20415:42:101"},{"nativeSrc":"20474:24:101","nodeType":"YulAssignment","src":"20474:24:101","value":{"arguments":[{"name":"dstPtr","nativeSrc":"20488:6:101","nodeType":"YulIdentifier","src":"20488:6:101"},{"kind":"number","nativeSrc":"20496:1:101","nodeType":"YulLiteral","src":"20496:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"20484:3:101","nodeType":"YulIdentifier","src":"20484:3:101"},"nativeSrc":"20484:14:101","nodeType":"YulFunctionCall","src":"20484:14:101"},"variableNames":[{"name":"dstPtr","nativeSrc":"20474:6:101","nodeType":"YulIdentifier","src":"20474:6:101"}]},{"nativeSrc":"20515:33:101","nodeType":"YulAssignment","src":"20515:33:101","value":{"arguments":[{"name":"srcOffset","nativeSrc":"20532:9:101","nodeType":"YulIdentifier","src":"20532:9:101"},{"kind":"number","nativeSrc":"20543:4:101","nodeType":"YulLiteral","src":"20543:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"20528:3:101","nodeType":"YulIdentifier","src":"20528:3:101"},"nativeSrc":"20528:20:101","nodeType":"YulFunctionCall","src":"20528:20:101"},"variableNames":[{"name":"srcOffset","nativeSrc":"20515:9:101","nodeType":"YulIdentifier","src":"20515:9:101"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"20351:1:101","nodeType":"YulIdentifier","src":"20351:1:101"},{"name":"loopEnd","nativeSrc":"20354:7:101","nodeType":"YulIdentifier","src":"20354:7:101"}],"functionName":{"name":"lt","nativeSrc":"20348:2:101","nodeType":"YulIdentifier","src":"20348:2:101"},"nativeSrc":"20348:14:101","nodeType":"YulFunctionCall","src":"20348:14:101"},"nativeSrc":"20340:222:101","nodeType":"YulForLoop","post":{"nativeSrc":"20363:21:101","nodeType":"YulBlock","src":"20363:21:101","statements":[{"nativeSrc":"20365:17:101","nodeType":"YulAssignment","src":"20365:17:101","value":{"arguments":[{"name":"i","nativeSrc":"20374:1:101","nodeType":"YulIdentifier","src":"20374:1:101"},{"kind":"number","nativeSrc":"20377:4:101","nodeType":"YulLiteral","src":"20377:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"20370:3:101","nodeType":"YulIdentifier","src":"20370:3:101"},"nativeSrc":"20370:12:101","nodeType":"YulFunctionCall","src":"20370:12:101"},"variableNames":[{"name":"i","nativeSrc":"20365:1:101","nodeType":"YulIdentifier","src":"20365:1:101"}]}]},"pre":{"nativeSrc":"20344:3:101","nodeType":"YulBlock","src":"20344:3:101","statements":[]},"src":"20340:222:101"},{"body":{"nativeSrc":"20610:166:101","nodeType":"YulBlock","src":"20610:166:101","statements":[{"nativeSrc":"20628:43:101","nodeType":"YulVariableDeclaration","src":"20628:43:101","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"20655:3:101","nodeType":"YulIdentifier","src":"20655:3:101"},{"name":"srcOffset","nativeSrc":"20660:9:101","nodeType":"YulIdentifier","src":"20660:9:101"}],"functionName":{"name":"add","nativeSrc":"20651:3:101","nodeType":"YulIdentifier","src":"20651:3:101"},"nativeSrc":"20651:19:101","nodeType":"YulFunctionCall","src":"20651:19:101"}],"functionName":{"name":"mload","nativeSrc":"20645:5:101","nodeType":"YulIdentifier","src":"20645:5:101"},"nativeSrc":"20645:26:101","nodeType":"YulFunctionCall","src":"20645:26:101"},"variables":[{"name":"lastValue","nativeSrc":"20632:9:101","nodeType":"YulTypedName","src":"20632:9:101","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"20695:6:101","nodeType":"YulIdentifier","src":"20695:6:101"},{"arguments":[{"name":"lastValue","nativeSrc":"20707:9:101","nodeType":"YulIdentifier","src":"20707:9:101"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20734:1:101","nodeType":"YulLiteral","src":"20734:1:101","type":"","value":"3"},{"name":"newLen","nativeSrc":"20737:6:101","nodeType":"YulIdentifier","src":"20737:6:101"}],"functionName":{"name":"shl","nativeSrc":"20730:3:101","nodeType":"YulIdentifier","src":"20730:3:101"},"nativeSrc":"20730:14:101","nodeType":"YulFunctionCall","src":"20730:14:101"},{"kind":"number","nativeSrc":"20746:3:101","nodeType":"YulLiteral","src":"20746:3:101","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"20726:3:101","nodeType":"YulIdentifier","src":"20726:3:101"},"nativeSrc":"20726:24:101","nodeType":"YulFunctionCall","src":"20726:24:101"},{"arguments":[{"kind":"number","nativeSrc":"20756:1:101","nodeType":"YulLiteral","src":"20756:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"20752:3:101","nodeType":"YulIdentifier","src":"20752:3:101"},"nativeSrc":"20752:6:101","nodeType":"YulFunctionCall","src":"20752:6:101"}],"functionName":{"name":"shr","nativeSrc":"20722:3:101","nodeType":"YulIdentifier","src":"20722:3:101"},"nativeSrc":"20722:37:101","nodeType":"YulFunctionCall","src":"20722:37:101"}],"functionName":{"name":"not","nativeSrc":"20718:3:101","nodeType":"YulIdentifier","src":"20718:3:101"},"nativeSrc":"20718:42:101","nodeType":"YulFunctionCall","src":"20718:42:101"}],"functionName":{"name":"and","nativeSrc":"20703:3:101","nodeType":"YulIdentifier","src":"20703:3:101"},"nativeSrc":"20703:58:101","nodeType":"YulFunctionCall","src":"20703:58:101"}],"functionName":{"name":"sstore","nativeSrc":"20688:6:101","nodeType":"YulIdentifier","src":"20688:6:101"},"nativeSrc":"20688:74:101","nodeType":"YulFunctionCall","src":"20688:74:101"},"nativeSrc":"20688:74:101","nodeType":"YulExpressionStatement","src":"20688:74:101"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"20581:7:101","nodeType":"YulIdentifier","src":"20581:7:101"},{"name":"newLen","nativeSrc":"20590:6:101","nodeType":"YulIdentifier","src":"20590:6:101"}],"functionName":{"name":"lt","nativeSrc":"20578:2:101","nodeType":"YulIdentifier","src":"20578:2:101"},"nativeSrc":"20578:19:101","nodeType":"YulFunctionCall","src":"20578:19:101"},"nativeSrc":"20575:201:101","nodeType":"YulIf","src":"20575:201:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"20796:4:101","nodeType":"YulIdentifier","src":"20796:4:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20810:1:101","nodeType":"YulLiteral","src":"20810:1:101","type":"","value":"1"},{"name":"newLen","nativeSrc":"20813:6:101","nodeType":"YulIdentifier","src":"20813:6:101"}],"functionName":{"name":"shl","nativeSrc":"20806:3:101","nodeType":"YulIdentifier","src":"20806:3:101"},"nativeSrc":"20806:14:101","nodeType":"YulFunctionCall","src":"20806:14:101"},{"kind":"number","nativeSrc":"20822:1:101","nodeType":"YulLiteral","src":"20822:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"20802:3:101","nodeType":"YulIdentifier","src":"20802:3:101"},"nativeSrc":"20802:22:101","nodeType":"YulFunctionCall","src":"20802:22:101"}],"functionName":{"name":"sstore","nativeSrc":"20789:6:101","nodeType":"YulIdentifier","src":"20789:6:101"},"nativeSrc":"20789:36:101","nodeType":"YulFunctionCall","src":"20789:36:101"},"nativeSrc":"20789:36:101","nodeType":"YulExpressionStatement","src":"20789:36:101"}]},"nativeSrc":"20186:649:101","nodeType":"YulCase","src":"20186:649:101","value":{"kind":"number","nativeSrc":"20191:1:101","nodeType":"YulLiteral","src":"20191:1:101","type":"","value":"1"}},{"body":{"nativeSrc":"20852:234:101","nodeType":"YulBlock","src":"20852:234:101","statements":[{"nativeSrc":"20866:14:101","nodeType":"YulVariableDeclaration","src":"20866:14:101","value":{"kind":"number","nativeSrc":"20879:1:101","nodeType":"YulLiteral","src":"20879:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"20870:5:101","nodeType":"YulTypedName","src":"20870:5:101","type":""}]},{"body":{"nativeSrc":"20915:67:101","nodeType":"YulBlock","src":"20915:67:101","statements":[{"nativeSrc":"20933:35:101","nodeType":"YulAssignment","src":"20933:35:101","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"20952:3:101","nodeType":"YulIdentifier","src":"20952:3:101"},{"name":"srcOffset","nativeSrc":"20957:9:101","nodeType":"YulIdentifier","src":"20957:9:101"}],"functionName":{"name":"add","nativeSrc":"20948:3:101","nodeType":"YulIdentifier","src":"20948:3:101"},"nativeSrc":"20948:19:101","nodeType":"YulFunctionCall","src":"20948:19:101"}],"functionName":{"name":"mload","nativeSrc":"20942:5:101","nodeType":"YulIdentifier","src":"20942:5:101"},"nativeSrc":"20942:26:101","nodeType":"YulFunctionCall","src":"20942:26:101"},"variableNames":[{"name":"value","nativeSrc":"20933:5:101","nodeType":"YulIdentifier","src":"20933:5:101"}]}]},"condition":{"name":"newLen","nativeSrc":"20896:6:101","nodeType":"YulIdentifier","src":"20896:6:101"},"nativeSrc":"20893:89:101","nodeType":"YulIf","src":"20893:89:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"21002:4:101","nodeType":"YulIdentifier","src":"21002:4:101"},{"arguments":[{"name":"value","nativeSrc":"21061:5:101","nodeType":"YulIdentifier","src":"21061:5:101"},{"name":"newLen","nativeSrc":"21068:6:101","nodeType":"YulIdentifier","src":"21068:6:101"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"21008:52:101","nodeType":"YulIdentifier","src":"21008:52:101"},"nativeSrc":"21008:67:101","nodeType":"YulFunctionCall","src":"21008:67:101"}],"functionName":{"name":"sstore","nativeSrc":"20995:6:101","nodeType":"YulIdentifier","src":"20995:6:101"},"nativeSrc":"20995:81:101","nodeType":"YulFunctionCall","src":"20995:81:101"},"nativeSrc":"20995:81:101","nodeType":"YulExpressionStatement","src":"20995:81:101"}]},"nativeSrc":"20844:242:101","nodeType":"YulCase","src":"20844:242:101","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"20166:6:101","nodeType":"YulIdentifier","src":"20166:6:101"},{"kind":"number","nativeSrc":"20174:2:101","nodeType":"YulLiteral","src":"20174:2:101","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"20163:2:101","nodeType":"YulIdentifier","src":"20163:2:101"},"nativeSrc":"20163:14:101","nodeType":"YulFunctionCall","src":"20163:14:101"},"nativeSrc":"20156:930:101","nodeType":"YulSwitch","src":"20156:930:101"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"19793:1299:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"19874:4:101","nodeType":"YulTypedName","src":"19874:4:101","type":""},{"name":"src","nativeSrc":"19880:3:101","nodeType":"YulTypedName","src":"19880:3:101","type":""}],"src":"19793:1299:101"}]},"contents":"{\n    { }\n    function validator_revert_bytes4(value)\n    {\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_bytes4(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_string_memory_ptr(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        mcopy(add(pos, 0x20), add(value, 0x20), length)\n        mstore(add(add(pos, length), 0x20), 0)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string_memory_ptr(value0, add(headStart, 32))\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function abi_decode_string(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let length := calldataload(offset)\n        let src := add(offset, 0x20)\n        let array_1 := 0\n        let size := 0\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let result := and(add(length, 31), not(31))\n        size := add(result, 0x20)\n        let memPtr := 0\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(result, 63), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        array_1 := memPtr\n        mstore(memPtr, length)\n        if gt(add(src, length), end) { revert(0, 0) }\n        calldatacopy(add(memPtr, 0x20), src, length)\n        mstore(add(add(memPtr, length), 0x20), 0)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        value0 := abi_decode_string(add(headStart, offset), dataEnd)\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        value1 := abi_decode_string(add(headStart, offset_1), dataEnd)\n    }\n    function abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        value1 := abi_decode_string(add(headStart, offset), dataEnd)\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$28869t_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_uint40__to_t_uint40__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffff))\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_struct$_WithdrawalRequest_$18156_memory_ptr__to_t_struct$_WithdrawalRequest_$18156_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, and(mload(value0), 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 0x20), and(mload(add(value0, 0x20)), sub(shl(160, 1), 1)))\n        mstore(add(headStart, 0x40), and(mload(add(value0, 0x40)), 0xffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 0x60), and(mload(add(value0, 0x60)), 0xffffffffff))\n        mstore(add(headStart, 0x80), and(mload(add(value0, 0x80)), 0xffffffffff))\n    }\n    function abi_decode_uint40(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$28869t_uint40t_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := abi_decode_uint40(add(headStart, 32))\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 64))\n        value2 := value_1\n    }\n    function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        if iszero(eq(value_1, iszero(iszero(value_1)))) { revert(0, 0) }\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let offset := calldataload(add(headStart, 96))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        value3 := abi_decode_string(add(headStart, offset), dataEnd)\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$28869t_uint40t_uint256t_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := abi_decode_uint40(add(headStart, 32))\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 64))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 96))\n        value3 := value_2\n        let value_3 := calldataload(add(headStart, 128))\n        if iszero(eq(value_3, and(value_3, 0xff))) { revert(0, 0) }\n        value4 := value_3\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 160))\n        value5 := value_4\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 192))\n        value6 := value_5\n    }\n    function abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$28869(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$28869t_uint40(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := abi_decode_uint40(add(headStart, 32))\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_address__to_t_address_t_uint256_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_uint256_t_uint40__to_t_uint256_t_uint40__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffff))\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_contract$_IEToken_$28869_t_uint256_t_address_t_address__to_t_address_t_uint256_t_address_t_address__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 96), and(value3, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_uint128_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mcopy(pos, add(value, 0x20), length)\n        let _1 := add(pos, length)\n        mstore(_1, 0)\n        end := _1\n    }\n    function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        end := abi_encode_string(value1, abi_encode_string(value0, pos))\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value6, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 224)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, 0xff))\n        mstore(add(headStart, 160), value5)\n        mstore(add(headStart, 192), value6)\n    }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_uint40_t_uint40__to_t_uint40_t_uint40__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffff))\n    }\n    function abi_decode_tuple_t_bytes32_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_contract$_IEToken_$28869__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function checked_add_t_uint40(x, y) -> sum\n    {\n        sum := add(and(x, 0xffffffffff), and(y, 0xffffffffff))\n        if gt(sum, 0xffffffffff) { panic_error_0x11() }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, not(0)) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_struct$_WithdrawalRequest_$18156_storage__to_t_struct$_WithdrawalRequest_$18156_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        let slotValue := sload(value0)\n        mstore(headStart, and(slotValue, 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 0x20), shr(96, slotValue))\n        let slotValue_1 := sload(add(value0, 0x01))\n        mstore(add(headStart, 0x40), and(slotValue_1, 0xffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 96), and(shr(128, slotValue_1), 0xffffffffff))\n        mstore(add(headStart, 128), and(shr(168, slotValue_1), 0xffffffffff))\n    }\n    function abi_encode_tuple_t_uint40_t_userDefinedValueType$_Scale_$18847_t_uint256__to_t_uint40_t_uint96_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), 128)\n        tail := abi_encode_string_memory_ptr(value3, add(headStart, 128))\n    }\n    function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bytes4(value)\n        value0 := value\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_rational_128_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), value1)\n    }\n    function array_dataslot_string_storage(ptr) -> data\n    {\n        mstore(0, ptr)\n        data := keccak256(0, 0x20)\n    }\n    function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n    {\n        if gt(len, 31)\n        {\n            mstore(0, array)\n            let data := keccak256(0, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _1 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _1) { start := add(start, 1) }\n            { sstore(start, 0) }\n        }\n    }\n    function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used\n    {\n        used := or(and(data, not(shr(shl(3, len), not(0)))), shl(1, len))\n    }\n    function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src)\n    {\n        let newLen := mload(src)\n        if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n        clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), newLen)\n        let srcOffset := 0\n        srcOffset := 0x20\n        switch gt(newLen, 31)\n        case 1 {\n            let loopEnd := and(newLen, not(31))\n            let dstPtr := array_dataslot_string_storage(slot)\n            let i := 0\n            for { } lt(i, loopEnd) { i := add(i, 0x20) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, 0x20)\n            }\n            if lt(loopEnd, newLen)\n            {\n                let lastValue := mload(add(src, srcOffset))\n                sstore(dstPtr, and(lastValue, not(shr(and(shl(3, newLen), 248), not(0)))))\n            }\n            sstore(slot, add(shl(1, newLen), 1))\n        }\n        default {\n            let value := 0\n            if newLen\n            {\n                value := mload(add(src, srcOffset))\n            }\n            sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n        }\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"7234":[{"length":32,"start":4916},{"length":32,"start":4957},{"length":32,"start":5282}],"25474":[{"length":32,"start":765},{"length":32,"start":2387},{"length":32,"start":3750},{"length":32,"start":7738}]},"linkReferences":{},"object":"608060405260043610610195575f3560e01c80636352211e116100e7578063b88d4fde11610087578063e5a6b10f11610062578063e5a6b10f146105e1578063e985e9c5146105f5578063f3f4370314610614578063f630ffe714610648575f5ffd5b8063b88d4fde14610584578063c87b56dd146105a3578063d3b59bf4146105c2575f5ffd5b806399a904b5116100c257806399a904b5146103ed578063a035807714610516578063a22cb46514610535578063ad3cb1cc14610554575f5ffd5b80636352211e1461039b57806370a08231146103ba57806395d89b41146103d9575f5ffd5b80633fcad964116101525780634d15eb031161012d5780634d15eb03146102ef5780634f1ef2861461032157806352d1902d146103345780635ce095ee14610348575f5ffd5b80633fcad9641461028457806342842e0e146102b15780634cd88b76146102d0575f5ffd5b806301ffc9a71461019957806306fdde03146101cd578063081812fc146101ee578063095ea7b31461022557806323b872dd1461024657806324f13a7614610265575b5f5ffd5b3480156101a4575f5ffd5b506101b86101b33660046123af565b610667565b60405190151581526020015b60405180910390f35b3480156101d8575f5ffd5b506101e16106a1565b6040516101c491906123f8565b3480156101f9575f5ffd5b5061020d61020836600461240a565b610742565b6040516001600160a01b0390911681526020016101c4565b348015610230575f5ffd5b5061024461023f366004612435565b610756565b005b348015610251575f5ffd5b5061024461026036600461245f565b610765565b348015610270575f5ffd5b5061024461027f36600461240a565b6107f3565b34801561028f575f5ffd5b506102a361029e36600461240a565b610b15565b6040519081526020016101c4565b3480156102bc575f5ffd5b506102446102cb36600461245f565b610b69565b3480156102db575f5ffd5b506102446102ea366004612542565b610b88565b3480156102fa575f5ffd5b507f000000000000000000000000000000000000000000000000000000000000000061020d565b61024461032f3660046125a7565b610c83565b34801561033f575f5ffd5b506102a3610c9e565b348015610353575f5ffd5b5061038561036236600461245f565b50506001600160a01b03165f9081526033602052604090205464ffffffffff1690565b60405164ffffffffff90911681526020016101c4565b3480156103a6575f5ffd5b5061020d6103b536600461240a565b610cb9565b3480156103c5575f5ffd5b506102a36103d43660046125de565b610cc3565b3480156103e4575f5ffd5b506101e1610d1b565b3480156103f8575f5ffd5b506104ad61040736600461240a565b6040805160a0810182525f80825260208201819052918101829052606081018290526080810191909152505f90815260326020908152604091829020825160a08101845281546001600160601b03811682526001600160a01b03600160601b9091041692810192909252600101546001600160801b0381169282019290925264ffffffffff600160801b830481166060830152600160a81b909204909116608082015290565b6040516101c491905f60a0820190506001600160601b03835116825260018060a01b0360208401511660208301526001600160801b03604084015116604083015264ffffffffff606084015116606083015264ffffffffff608084015116608083015292915050565b348015610521575f5ffd5b506102a3610530366004612612565b610d59565b348015610540575f5ffd5b5061024461054f36600461263d565b610d6d565b34801561055f575f5ffd5b506101e1604051806040016040528060058152602001640352e302e360dc1b81525081565b34801561058f575f5ffd5b5061024461059e366004612678565b610d78565b3480156105ae575f5ffd5b506101e16105bd36600461240a565b610d90565b3480156105cd575f5ffd5b506102a36105dc3660046126e0565b610e00565b3480156105ec575f5ffd5b5061020d610ea3565b348015610600575f5ffd5b506101b861060f36600461274f565b610f29565b34801561061f575f5ffd5b506102a361062e3660046125de565b6001600160a01b03165f9081526034602052604090205490565b348015610653575f5ffd5b5061024461066236600461277b565b610f75565b5f61067182611007565b80610680575061068082611056565b8061069b57506001600160e01b0319821663af14a2ed60e01b145b92915050565b5f516020612a1d5f395f51905f5280546060919081906106c0906127ae565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec906127ae565b80156107375780601f1061070e57610100808354040283529160200191610737565b820191905f5260205f20905b81548152906001019060200180831161071a57829003601f168201915b505050505091505090565b5f61074c8261108b565b5061069b826110c2565b6107618282336110fb565b5050565b6001600160a01b03821661079357604051633250574960e11b81525f60048201526024015b60405180910390fd5b5f61079f838333611108565b9050836001600160a01b0316816001600160a01b0316146107ed576040516364283d7b60e01b81526001600160a01b038086166004830152602482018490528216604482015260640161078a565b50505050565b5f81815260326020526040902060018101548290600160801b900464ffffffffff16610835576040516347f23c9760e11b815260040161078a91815260200190565b5060018101548290600160a81b900464ffffffffff164281111561087c5760405163234d921f60e21b8152600481019290925264ffffffffff16602482015260440161078a565b50505f61088883610cb9565b90505f6108948361120a565b60018401549091505f906108b29083906001600160801b03166112a0565b60018501805464ffffffffff60801b1916905590506108d0856112af565b60018401548454600160601b90046001600160a01b03165f90815260346020526040812080546001600160801b03909316929091906109109084906127fa565b90915550508354604051636fe6a09760e11b8152600160601b9091046001600160a01b0390811660048301526024820183905284811660448301523060648301527f0000000000000000000000000000000000000000000000000000000000000000169063dfcd412e906084016020604051808303815f875af1158015610999573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109bd919061280d565b5080821115610aaa578354600160601b90046001600160a01b031663a0ce552d610a5e6109ea84866127fa565b87546040516370a0823160e01b8152306004820152600160601b9091046001600160a01b0316906370a0823190602401602060405180830381865afa158015610a35573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a59919061280d565b6112a0565b6040518263ffffffff1660e01b8152600401610a7c91815260200190565b5f604051808303815f87803b158015610a93575f5ffd5b505af1158015610aa5573d5f5f3e3d5ffd5b505050505b83546001850154604080516001600160801b039092168252602082018490526001600160a01b03868116938993600160601b909104909116917f5c7b80d3b1a3296ffcd888e34c2c2eccd66bb3edb1d128e65a384a38115cb582910160405180910390a45050505050565b5f8181526032602052604081206001810154600160801b900464ffffffffff168203610b4357505f92915050565b610b62610b4f8261120a565b60018301546001600160801b03166112a0565b9392505050565b610b8383838360405180602001604052805f815250610d78565b505050565b5f610b916112e7565b805490915060ff600160401b820416159067ffffffffffffffff165f81158015610bb85750825b90505f8267ffffffffffffffff166001148015610bd45750303b155b905081158015610be2575080155b15610c005760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610c2a57845460ff60401b1916600160401b1785555b610c34878761130f565b8315610c7a57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b610c8b611329565b610c94826113cf565b61076182826113db565b5f610ca7611497565b505f516020612a3d5f395f51905f5290565b5f61069b8261108b565b5f5f516020612a1d5f395f51905f526001600160a01b038316610cfb576040516322718ad960e21b81525f600482015260240161078a565b6001600160a01b039092165f908152600390920160205250604090205490565b7f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930180546060915f516020612a1d5f395f51905f52916106c0906127ae565b5f610d658484846114e0565b949350505050565b610761338383611932565b610d83848484610765565b6107ed33858585856119e1565b6060610d9b8261108b565b505f610db160408051602081019091525f815290565b90505f815111610dcf5760405180602001604052805f815250610b62565b80610dd984611b09565b604051602001610dea92919061283b565b6040516020818303038152906040529392505050565b5f6001600160a01b03881663d505accf336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604481018990526064810188905260ff8716608482015260a4810186905260c4810185905260e4015f604051808303815f87803b158015610e7a575f5ffd5b505af1925050508015610e8b575060015b50610e978888886114e0565b98975050505050505050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f00573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f24919061284f565b905090565b6001600160a01b039182165f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab00793056020908152604080832093909416825291909152205460ff1690565b6001600160a01b0382165f8181526033602090815260409182902054825164ffffffffff9182168152908516918101919091527f08dfa5493c453115ee7c83f7c1ecb7bf389adaaeade84190f2a6dca91ccaabbd910160405180910390a26001600160a01b03919091165f908152603360205260409020805464ffffffffff191664ffffffffff909216919091179055565b5f6001600160e01b031982166380ac58cd60e01b148061103757506001600160e01b03198216635b5e139f60e01b145b8061069b57506301ffc9a760e01b6001600160e01b031983161461069b565b5f6001600160e01b031982166301ffc9a760e01b148061069b57506001600160e01b03198216634d15eb0360e01b1492915050565b5f5f61109683611b99565b90506001600160a01b03811661069b57604051637e27328960e01b81526004810184905260240161078a565b5f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930460205260409020546001600160a01b031690565b610b838383836001611bd2565b5f5f516020612a1d5f395f51905f528161112185611b99565b90506001600160a01b0384161561113d5761113d818587611ce5565b6001600160a01b03811615611179576111585f865f5f611bd2565b6001600160a01b0381165f908152600383016020526040902080545f190190555b6001600160a01b038616156111a9576001600160a01b0386165f9081526003830160205260409020805460010190555b5f85815260028301602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a495945050505050565b80546040516379d989fb60e01b8152600160048201525f9161069b91600160601b9091046001600160a01b0316906379d989fb90602401602060405180830381865afa15801561125c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611280919061280d565b835460018501546001600160801b031691906001600160601b0316611d49565b5f828218828410028218610b62565b5f6112bb5f835f611108565b90506001600160a01b03811661076157604051637e27328960e01b81526004810183905260240161078a565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0061069b565b611317611df9565b61131f611e1e565b6107618282611e26565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806113af57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166113a35f516020612a3d5f395f51905f52546001600160a01b031690565b6001600160a01b031614155b156113cd5760405163703e46dd60e11b815260040160405180910390fd5b565b6113d881611e38565b50565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611435575060408051601f3d908101601f191682019092526114329181019061280d565b60015b61145d57604051634c9c8ce360e01b81526001600160a01b038316600482015260240161078a565b5f516020612a3d5f395f51905f52811461148d57604051632a87526960e21b81526004810182905260240161078a565b610b838383611ee9565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146113cd5760405163703e46dd60e11b815260040160405180910390fd5b5f306001600160a01b0316846001600160a01b031663cf6a9a946040518163ffffffff1660e01b8152600401602060405180830381865afa158015611527573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061154b919061284f565b6001600160a01b03161484906115805760405163f1b1ee5d60e01b81526001600160a01b03909116600482015260240161078a565b505f198203611602576001600160a01b0384166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156115db573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115ff919061280d565b91505b5f8211611622576040516390633d3160e01b815260040160405180910390fd5b6001600160a01b0384165f9081526033602052604081205464ffffffffff1661164b904261286a565b90508364ffffffffff165f03611663578093506116a3565b8064ffffffffff168464ffffffffff1610156116a3576040516380be8b5960e01b815264ffffffffff80831660048301528516602482015260440161078a565b60355f81546116b190612887565b91829055506040516379d989fb60e01b8152600160048201529092505f906001600160a01b038716906379d989fb90602401602060405180830381865afa1580156116fe573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611722919061280d565b90506040518060a00160405280826001600160601b03168152602001876001600160a01b0316815260200161175686611f3e565b6001600160801b0390811682524264ffffffffff9081166020808501919091528982166040948501525f888152603282528481208651878401516001600160601b03909116600160601b6001600160a01b0392831602178255878701516001909201805460608a01516080909a0151939097166001600160a81b031990971696909617600160801b988616989098029790971764ffffffffff60a81b1916600160a81b9190941602929092179092559289168352603490528120805486929061182090849061289f565b9091555061183b90506001600160a01b038716333087611f75565b6118ca338460325f8781526020019081526020015f206040516020016118b691905f60a08201905082546001600160601b03811683528060601c60208401525060018301546001600160801b038116604084015264ffffffffff8160801c16606084015264ffffffffff8160a81c1660808401525092915050565b604051602081830303815290604052611fab565b6040805164ffffffffff871681526001600160601b03831660208201528082018690529051339185916001600160a01b038a16917feb35eeca4c5d42d89fa3326185659928510d45c4e520668ad306241d7e288315919081900360600190a450509392505050565b5f516020612a1d5f395f51905f526001600160a01b03831661197257604051630b61174360e31b81526001600160a01b038416600482015260240161078a565b6001600160a01b038481165f818152600584016020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a350505050565b6001600160a01b0383163b15611b0257604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290611a239088908890879087906004016128b2565b6020604051808303815f875af1925050508015611a5d575060408051601f3d908101601f19168201909252611a5a918101906128ee565b60015b611ac4573d808015611a8a576040519150601f19603f3d011682016040523d82523d5f602084013e611a8f565b606091505b5080515f03611abc57604051633250574960e11b81526001600160a01b038516600482015260240161078a565b805160208201fd5b6001600160e01b03198116630a85bd0160e11b14611b0057604051633250574960e11b81526001600160a01b038516600482015260240161078a565b505b5050505050565b60605f611b1583611fc2565b60010190505f8167ffffffffffffffff811115611b3457611b3461249d565b6040519080825280601f01601f191660200182016040528015611b5e576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611b6857509392505050565b5f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930260205260409020546001600160a01b031690565b5f516020612a1d5f395f51905f528180611bf457506001600160a01b03831615155b15611cb5575f611c038561108b565b90506001600160a01b03841615801590611c2f5750836001600160a01b0316816001600160a01b031614155b8015611c425750611c408185610f29565b155b15611c6b5760405163a9fbf51f60e01b81526001600160a01b038516600482015260240161078a565b8215611cb35784866001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5f93845260040160205250506040902080546001600160a01b0319166001600160a01b0392909216919091179055565b611cf0838383612099565b610b83576001600160a01b038316611d1e57604051637e27328960e01b81526004810182905260240161078a565b60405163177e802f60e01b81526001600160a01b03831660048201526024810182905260440161078a565b5f5f5f611d5686866120fd565b91509150815f03611d7a57838181611d7057611d70612909565b0492505050610b62565b818411611d9157611d916003851502601118612119565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b611e0161212a565b6113cd57604051631afcd79f60e31b815260040160405180910390fd5b6113cd611df9565b611e2e611df9565b6107618282612143565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e9e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ec2919061284f565b6001600160a01b0316146113d85760405163d2b3d33f60e01b815260040160405180910390fd5b611ef282612173565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115611f3657610b8382826121d6565b610761612276565b5f6001600160801b03821115611f71576040516306dfcc6560e41b8152608060048201526024810183905260440161078a565b5090565b611f83848484846001612295565b6107ed57604051635274afe760e01b81526001600160a01b038516600482015260240161078a565b611fb58383612302565b610b83335f8585856119e1565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106120005772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061202c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061204a57662386f26fc10000830492506010015b6305f5e1008310612062576305f5e100830492506008015b612710831061207657612710830492506004015b60648310612088576064830492506002015b600a831061069b5760010192915050565b5f6001600160a01b03831615801590610d655750826001600160a01b0316846001600160a01b031614806120d257506120d28484610f29565b80610d655750826001600160a01b03166120eb836110c2565b6001600160a01b031614949350505050565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f6121336112e7565b54600160401b900460ff16919050565b61214b611df9565b5f516020612a1d5f395f51905f52806121648482612961565b50600181016107ed8382612961565b806001600160a01b03163b5f036121a857604051634c9c8ce360e01b81526001600160a01b038216600482015260240161078a565b5f516020612a3d5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f6121e38484612363565b905080801561220457505f3d118061220457505f846001600160a01b03163b115b1561221957612211612376565b91505061069b565b801561224357604051639996b31560e01b81526001600160a01b038516600482015260240161078a565b3d156122565761225161238f565b61226f565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b34156113cd5760405163b398979f60e01b815260040160405180910390fd5b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f511483166122f15783831516156122e5573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b6001600160a01b03821661232b57604051633250574960e11b81525f600482015260240161078a565b5f61233783835f611108565b90506001600160a01b03811615610b83576040516339e3563760e11b81525f600482015260240161078a565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b6001600160e01b0319811681146113d8575f5ffd5b5f602082840312156123bf575f5ffd5b8135610b628161239a565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610b6260208301846123ca565b5f6020828403121561241a575f5ffd5b5035919050565b6001600160a01b03811681146113d8575f5ffd5b5f5f60408385031215612446575f5ffd5b823561245181612421565b946020939093013593505050565b5f5f5f60608486031215612471575f5ffd5b833561247c81612421565b9250602084013561248c81612421565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126124c0575f5ffd5b8135602083015f5f67ffffffffffffffff8411156124e0576124e061249d565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff8211171561250f5761250f61249d565b604052838152905080828401871015612526575f5ffd5b838360208301375f602085830101528094505050505092915050565b5f5f60408385031215612553575f5ffd5b823567ffffffffffffffff811115612569575f5ffd5b612575858286016124b1565b925050602083013567ffffffffffffffff811115612591575f5ffd5b61259d858286016124b1565b9150509250929050565b5f5f604083850312156125b8575f5ffd5b82356125c381612421565b9150602083013567ffffffffffffffff811115612591575f5ffd5b5f602082840312156125ee575f5ffd5b8135610b6281612421565b803564ffffffffff8116811461260d575f5ffd5b919050565b5f5f5f60608486031215612624575f5ffd5b833561262f81612421565b925061248c602085016125f9565b5f5f6040838503121561264e575f5ffd5b823561265981612421565b91506020830135801515811461266d575f5ffd5b809150509250929050565b5f5f5f5f6080858703121561268b575f5ffd5b843561269681612421565b935060208501356126a681612421565b925060408501359150606085013567ffffffffffffffff8111156126c8575f5ffd5b6126d4878288016124b1565b91505092959194509250565b5f5f5f5f5f5f5f60e0888a0312156126f6575f5ffd5b873561270181612421565b965061270f602089016125f9565b95506040880135945060608801359350608088013560ff81168114612732575f5ffd5b9699959850939692959460a0840135945060c09093013592915050565b5f5f60408385031215612760575f5ffd5b823561276b81612421565b9150602083013561266d81612421565b5f5f6040838503121561278c575f5ffd5b823561279781612421565b91506127a5602084016125f9565b90509250929050565b600181811c908216806127c257607f821691505b6020821081036127e057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561069b5761069b6127e6565b5f6020828403121561281d575f5ffd5b5051919050565b5f81518060208401855e5f93019283525090919050565b5f610d656128498386612824565b84612824565b5f6020828403121561285f575f5ffd5b8151610b6281612421565b64ffffffffff818116838216019081111561069b5761069b6127e6565b5f60018201612898576128986127e6565b5060010190565b8082018082111561069b5761069b6127e6565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906128e4908301846123ca565b9695505050505050565b5f602082840312156128fe575f5ffd5b8151610b628161239a565b634e487b7160e01b5f52601260045260245ffd5b601f821115610b8357805f5260205f20601f840160051c810160208510156129425750805b601f840160051c820191505b81811015611b02575f815560010161294e565b815167ffffffffffffffff81111561297b5761297b61249d565b61298f8161298984546127ae565b8461291d565b6020601f8211600181146129c1575f83156129aa5750848201515b5f19600385901b1c1916600184901b178455611b02565b5f84815260208120601f198516915b828110156129f057878501518255602094850194600190920191016129d0565b5084821015612a0d57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca264697066735822122004aa152a925cdf753087f90fcc9cb207eb0313b5aa4b3fb4c0946677e83b1f2264736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x195 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0xE7 JUMPI DUP1 PUSH4 0xB88D4FDE GT PUSH2 0x87 JUMPI DUP1 PUSH4 0xE5A6B10F GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x5E1 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x5F5 JUMPI DUP1 PUSH4 0xF3F43703 EQ PUSH2 0x614 JUMPI DUP1 PUSH4 0xF630FFE7 EQ PUSH2 0x648 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x584 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x5A3 JUMPI DUP1 PUSH4 0xD3B59BF4 EQ PUSH2 0x5C2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x99A904B5 GT PUSH2 0xC2 JUMPI DUP1 PUSH4 0x99A904B5 EQ PUSH2 0x3ED JUMPI DUP1 PUSH4 0xA0358077 EQ PUSH2 0x516 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x535 JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x554 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x39B JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x3BA JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x3D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x3FCAD964 GT PUSH2 0x152 JUMPI DUP1 PUSH4 0x4D15EB03 GT PUSH2 0x12D JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x2EF JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x321 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x334 JUMPI DUP1 PUSH4 0x5CE095EE EQ PUSH2 0x348 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x3FCAD964 EQ PUSH2 0x284 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0x4CD88B76 EQ PUSH2 0x2D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x199 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1CD JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x1EE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x246 JUMPI DUP1 PUSH4 0x24F13A76 EQ PUSH2 0x265 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1A4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1B8 PUSH2 0x1B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x23AF JUMP JUMPDEST PUSH2 0x667 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1D8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E1 PUSH2 0x6A1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C4 SWAP2 SWAP1 PUSH2 0x23F8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1F9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x20D PUSH2 0x208 CALLDATASIZE PUSH1 0x4 PUSH2 0x240A JUMP JUMPDEST PUSH2 0x742 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1C4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x230 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x23F CALLDATASIZE PUSH1 0x4 PUSH2 0x2435 JUMP JUMPDEST PUSH2 0x756 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x251 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x260 CALLDATASIZE PUSH1 0x4 PUSH2 0x245F JUMP JUMPDEST PUSH2 0x765 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x270 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x27F CALLDATASIZE PUSH1 0x4 PUSH2 0x240A JUMP JUMPDEST PUSH2 0x7F3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A3 PUSH2 0x29E CALLDATASIZE PUSH1 0x4 PUSH2 0x240A JUMP JUMPDEST PUSH2 0xB15 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1C4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x2CB CALLDATASIZE PUSH1 0x4 PUSH2 0x245F JUMP JUMPDEST PUSH2 0xB69 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2DB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x2EA CALLDATASIZE PUSH1 0x4 PUSH2 0x2542 JUMP JUMPDEST PUSH2 0xB88 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2FA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x20D JUMP JUMPDEST PUSH2 0x244 PUSH2 0x32F CALLDATASIZE PUSH1 0x4 PUSH2 0x25A7 JUMP JUMPDEST PUSH2 0xC83 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x33F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A3 PUSH2 0xC9E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x353 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x385 PUSH2 0x362 CALLDATASIZE PUSH1 0x4 PUSH2 0x245F JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x33 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH5 0xFFFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH5 0xFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1C4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x20D PUSH2 0x3B5 CALLDATASIZE PUSH1 0x4 PUSH2 0x240A JUMP JUMPDEST PUSH2 0xCB9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A3 PUSH2 0x3D4 CALLDATASIZE PUSH1 0x4 PUSH2 0x25DE JUMP JUMPDEST PUSH2 0xCC3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E1 PUSH2 0xD1B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x4AD PUSH2 0x407 CALLDATASIZE PUSH1 0x4 PUSH2 0x240A JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x32 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0xA0 DUP2 ADD DUP5 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP2 DIV AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH5 0xFFFFFFFFFF PUSH1 0x1 PUSH1 0x80 SHL DUP4 DIV DUP2 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA8 SHL SWAP1 SWAP3 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C4 SWAP2 SWAP1 PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP4 MLOAD AND DUP3 MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x20 DUP5 ADD MLOAD AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB PUSH1 0x40 DUP5 ADD MLOAD AND PUSH1 0x40 DUP4 ADD MSTORE PUSH5 0xFFFFFFFFFF PUSH1 0x60 DUP5 ADD MLOAD AND PUSH1 0x60 DUP4 ADD MSTORE PUSH5 0xFFFFFFFFFF PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP4 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x521 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A3 PUSH2 0x530 CALLDATASIZE PUSH1 0x4 PUSH2 0x2612 JUMP JUMPDEST PUSH2 0xD59 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x540 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x54F CALLDATASIZE PUSH1 0x4 PUSH2 0x263D JUMP JUMPDEST PUSH2 0xD6D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x55F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x58F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x59E CALLDATASIZE PUSH1 0x4 PUSH2 0x2678 JUMP JUMPDEST PUSH2 0xD78 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5AE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E1 PUSH2 0x5BD CALLDATASIZE PUSH1 0x4 PUSH2 0x240A JUMP JUMPDEST PUSH2 0xD90 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5CD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A3 PUSH2 0x5DC CALLDATASIZE PUSH1 0x4 PUSH2 0x26E0 JUMP JUMPDEST PUSH2 0xE00 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5EC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x20D PUSH2 0xEA3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x600 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1B8 PUSH2 0x60F CALLDATASIZE PUSH1 0x4 PUSH2 0x274F JUMP JUMPDEST PUSH2 0xF29 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x61F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A3 PUSH2 0x62E CALLDATASIZE PUSH1 0x4 PUSH2 0x25DE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x34 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x653 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x662 CALLDATASIZE PUSH1 0x4 PUSH2 0x277B JUMP JUMPDEST PUSH2 0xF75 JUMP JUMPDEST PUSH0 PUSH2 0x671 DUP3 PUSH2 0x1007 JUMP JUMPDEST DUP1 PUSH2 0x680 JUMPI POP PUSH2 0x680 DUP3 PUSH2 0x1056 JUMP JUMPDEST DUP1 PUSH2 0x69B JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xAF14A2ED PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A1D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x60 SWAP2 SWAP1 DUP2 SWAP1 PUSH2 0x6C0 SWAP1 PUSH2 0x27AE JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x6EC SWAP1 PUSH2 0x27AE JUMP JUMPDEST DUP1 ISZERO PUSH2 0x737 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x70E JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x737 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x71A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x74C DUP3 PUSH2 0x108B JUMP JUMPDEST POP PUSH2 0x69B DUP3 PUSH2 0x10C2 JUMP JUMPDEST PUSH2 0x761 DUP3 DUP3 CALLER PUSH2 0x10FB JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x793 JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x79F DUP4 DUP4 CALLER PUSH2 0x1108 JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7ED JUMPI PUSH1 0x40 MLOAD PUSH4 0x64283D7B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x78A JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH5 0xFFFFFFFFFF AND PUSH2 0x835 JUMPI PUSH1 0x40 MLOAD PUSH4 0x47F23C97 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x78A SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP PUSH1 0x1 DUP2 ADD SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0xA8 SHL SWAP1 DIV PUSH5 0xFFFFFFFFFF AND TIMESTAMP DUP2 GT ISZERO PUSH2 0x87C JUMPI PUSH1 0x40 MLOAD PUSH4 0x234D921F PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH5 0xFFFFFFFFFF AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x78A JUMP JUMPDEST POP POP PUSH0 PUSH2 0x888 DUP4 PUSH2 0xCB9 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x894 DUP4 PUSH2 0x120A JUMP JUMPDEST PUSH1 0x1 DUP5 ADD SLOAD SWAP1 SWAP2 POP PUSH0 SWAP1 PUSH2 0x8B2 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x12A0 JUMP JUMPDEST PUSH1 0x1 DUP6 ADD DUP1 SLOAD PUSH5 0xFFFFFFFFFF PUSH1 0x80 SHL NOT AND SWAP1 SSTORE SWAP1 POP PUSH2 0x8D0 DUP6 PUSH2 0x12AF JUMP JUMPDEST PUSH1 0x1 DUP5 ADD SLOAD DUP5 SLOAD PUSH1 0x1 PUSH1 0x60 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x34 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP2 SWAP1 PUSH2 0x910 SWAP1 DUP5 SWAP1 PUSH2 0x27FA JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP DUP4 SLOAD PUSH1 0x40 MLOAD PUSH4 0x6FE6A097 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP4 SWAP1 MSTORE DUP5 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE ADDRESS PUSH1 0x64 DUP4 ADD MSTORE PUSH32 0x0 AND SWAP1 PUSH4 0xDFCD412E SWAP1 PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x999 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9BD SWAP2 SWAP1 PUSH2 0x280D JUMP JUMPDEST POP DUP1 DUP3 GT ISZERO PUSH2 0xAAA JUMPI DUP4 SLOAD PUSH1 0x1 PUSH1 0x60 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xA0CE552D PUSH2 0xA5E PUSH2 0x9EA DUP5 DUP7 PUSH2 0x27FA JUMP JUMPDEST DUP8 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xA35 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xA59 SWAP2 SWAP1 PUSH2 0x280D JUMP JUMPDEST PUSH2 0x12A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA7C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xA93 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xAA5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST DUP4 SLOAD PUSH1 0x1 DUP6 ADD SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP3 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP5 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP4 DUP10 SWAP4 PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP2 DIV SWAP1 SWAP2 AND SWAP2 PUSH32 0x5C7B80D3B1A3296FFCD888E34C2C2ECCD66BB3EDB1D128E65A384A38115CB582 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH5 0xFFFFFFFFFF AND DUP3 SUB PUSH2 0xB43 JUMPI POP PUSH0 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xB62 PUSH2 0xB4F DUP3 PUSH2 0x120A JUMP JUMPDEST PUSH1 0x1 DUP4 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x12A0 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0xB83 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0xD78 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xB91 PUSH2 0x12E7 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0xBB8 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0xBD4 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xBE2 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xC00 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0xC2A JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0xC34 DUP8 DUP8 PUSH2 0x130F JUMP JUMPDEST DUP4 ISZERO PUSH2 0xC7A JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0xC8B PUSH2 0x1329 JUMP JUMPDEST PUSH2 0xC94 DUP3 PUSH2 0x13CF JUMP JUMPDEST PUSH2 0x761 DUP3 DUP3 PUSH2 0x13DB JUMP JUMPDEST PUSH0 PUSH2 0xCA7 PUSH2 0x1497 JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A3D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x69B DUP3 PUSH2 0x108B JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A1D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xCFB JUMPI PUSH1 0x40 MLOAD PUSH4 0x22718AD9 PUSH1 0xE2 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 SWAP1 SWAP3 ADD PUSH1 0x20 MSTORE POP PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079301 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A1D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x6C0 SWAP1 PUSH2 0x27AE JUMP JUMPDEST PUSH0 PUSH2 0xD65 DUP5 DUP5 DUP5 PUSH2 0x14E0 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x761 CALLER DUP4 DUP4 PUSH2 0x1932 JUMP JUMPDEST PUSH2 0xD83 DUP5 DUP5 DUP5 PUSH2 0x765 JUMP JUMPDEST PUSH2 0x7ED CALLER DUP6 DUP6 DUP6 DUP6 PUSH2 0x19E1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0xD9B DUP3 PUSH2 0x108B JUMP JUMPDEST POP PUSH0 PUSH2 0xDB1 PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP2 MSTORE SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 MLOAD GT PUSH2 0xDCF JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0xB62 JUMP JUMPDEST DUP1 PUSH2 0xDD9 DUP5 PUSH2 0x1B09 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xDEA SWAP3 SWAP2 SWAP1 PUSH2 0x283B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH4 0xD505ACCF CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP10 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP9 SWAP1 MSTORE PUSH1 0xFF DUP8 AND PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xC4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xE4 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xE7A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xE8B JUMPI POP PUSH1 0x1 JUMPDEST POP PUSH2 0xE97 DUP9 DUP9 DUP9 PUSH2 0x14E0 JUMP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xF00 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xF24 SWAP2 SWAP1 PUSH2 0x284F JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079305 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x33 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD PUSH5 0xFFFFFFFFFF SWAP2 DUP3 AND DUP2 MSTORE SWAP1 DUP6 AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x8DFA5493C453115EE7C83F7C1ECB7BF389ADAAEADE84190F2A6DCA91CCAABBD SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x33 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH5 0xFFFFFFFFFF NOT AND PUSH5 0xFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x1037 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x69B JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0x69B JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x69B JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1096 DUP4 PUSH2 0x1B99 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x69B JUMPI PUSH1 0x40 MLOAD PUSH4 0x7E273289 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079304 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0xB83 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x1BD2 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A1D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x1121 DUP6 PUSH2 0x1B99 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x113D JUMPI PUSH2 0x113D DUP2 DUP6 DUP8 PUSH2 0x1CE5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x1179 JUMPI PUSH2 0x1158 PUSH0 DUP7 PUSH0 PUSH0 PUSH2 0x1BD2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH0 NOT ADD SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND ISZERO PUSH2 0x11A9 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0x2 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP9 SWAP4 SWAP2 DUP6 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x79D989FB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP2 PUSH2 0x69B SWAP2 PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x79D989FB SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x125C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1280 SWAP2 SWAP1 PUSH2 0x280D JUMP JUMPDEST DUP4 SLOAD PUSH1 0x1 DUP6 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x1D49 JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0xB62 JUMP JUMPDEST PUSH0 PUSH2 0x12BB PUSH0 DUP4 PUSH0 PUSH2 0x1108 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x761 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7E273289 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x69B JUMP JUMPDEST PUSH2 0x1317 PUSH2 0x1DF9 JUMP JUMPDEST PUSH2 0x131F PUSH2 0x1E1E JUMP JUMPDEST PUSH2 0x761 DUP3 DUP3 PUSH2 0x1E26 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x13AF JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x13A3 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A3D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x13CD JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x13D8 DUP2 PUSH2 0x1E38 JUMP JUMPDEST POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1435 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1432 SWAP2 DUP2 ADD SWAP1 PUSH2 0x280D JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x145D JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A3D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x148D JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH2 0xB83 DUP4 DUP4 PUSH2 0x1EE9 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x13CD JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xCF6A9A94 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1527 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x154B SWAP2 SWAP1 PUSH2 0x284F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP5 SWAP1 PUSH2 0x1580 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF1B1EE5D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST POP PUSH0 NOT DUP3 SUB PUSH2 0x1602 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH4 0x70A08231 CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x15DB JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x15FF SWAP2 SWAP1 PUSH2 0x280D JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH0 DUP3 GT PUSH2 0x1622 JUMPI PUSH1 0x40 MLOAD PUSH4 0x90633D31 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x33 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH5 0xFFFFFFFFFF AND PUSH2 0x164B SWAP1 TIMESTAMP PUSH2 0x286A JUMP JUMPDEST SWAP1 POP DUP4 PUSH5 0xFFFFFFFFFF AND PUSH0 SUB PUSH2 0x1663 JUMPI DUP1 SWAP4 POP PUSH2 0x16A3 JUMP JUMPDEST DUP1 PUSH5 0xFFFFFFFFFF AND DUP5 PUSH5 0xFFFFFFFFFF AND LT ISZERO PUSH2 0x16A3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x80BE8B59 PUSH1 0xE0 SHL DUP2 MSTORE PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x4 DUP4 ADD MSTORE DUP6 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x78A JUMP JUMPDEST PUSH1 0x35 PUSH0 DUP2 SLOAD PUSH2 0x16B1 SWAP1 PUSH2 0x2887 JUMP JUMPDEST SWAP2 DUP3 SWAP1 SSTORE POP PUSH1 0x40 MLOAD PUSH4 0x79D989FB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x4 DUP3 ADD MSTORE SWAP1 SWAP3 POP PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP1 PUSH4 0x79D989FB SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x16FE JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1722 SWAP2 SWAP1 PUSH2 0x280D JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1756 DUP7 PUSH2 0x1F3E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND DUP3 MSTORE TIMESTAMP PUSH5 0xFFFFFFFFFF SWAP1 DUP2 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP10 DUP3 AND PUSH1 0x40 SWAP5 DUP6 ADD MSTORE PUSH0 DUP9 DUP2 MSTORE PUSH1 0x32 DUP3 MSTORE DUP5 DUP2 KECCAK256 DUP7 MLOAD DUP8 DUP5 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x60 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND MUL OR DUP3 SSTORE DUP8 DUP8 ADD MLOAD PUSH1 0x1 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0x60 DUP11 ADD MLOAD PUSH1 0x80 SWAP1 SWAP11 ADD MLOAD SWAP4 SWAP1 SWAP8 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA8 SHL SUB NOT SWAP1 SWAP8 AND SWAP7 SWAP1 SWAP7 OR PUSH1 0x1 PUSH1 0x80 SHL SWAP9 DUP7 AND SWAP9 SWAP1 SWAP9 MUL SWAP8 SWAP1 SWAP8 OR PUSH5 0xFFFFFFFFFF PUSH1 0xA8 SHL NOT AND PUSH1 0x1 PUSH1 0xA8 SHL SWAP2 SWAP1 SWAP5 AND MUL SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP3 SSTORE SWAP3 DUP10 AND DUP4 MSTORE PUSH1 0x34 SWAP1 MSTORE DUP2 KECCAK256 DUP1 SLOAD DUP7 SWAP3 SWAP1 PUSH2 0x1820 SWAP1 DUP5 SWAP1 PUSH2 0x289F JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x183B SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND CALLER ADDRESS DUP8 PUSH2 0x1F75 JUMP JUMPDEST PUSH2 0x18CA CALLER DUP5 PUSH1 0x32 PUSH0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x18B6 SWAP2 SWAP1 PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP DUP3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP4 MSTORE DUP1 PUSH1 0x60 SHR PUSH1 0x20 DUP5 ADD MSTORE POP PUSH1 0x1 DUP4 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND PUSH1 0x40 DUP5 ADD MSTORE PUSH5 0xFFFFFFFFFF DUP2 PUSH1 0x80 SHR AND PUSH1 0x60 DUP5 ADD MSTORE PUSH5 0xFFFFFFFFFF DUP2 PUSH1 0xA8 SHR AND PUSH1 0x80 DUP5 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x1FAB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH5 0xFFFFFFFFFF DUP8 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE DUP1 DUP3 ADD DUP7 SWAP1 MSTORE SWAP1 MLOAD CALLER SWAP2 DUP6 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND SWAP2 PUSH32 0xEB35EECA4C5D42D89FA3326185659928510D45C4E520668AD306241D7E288315 SWAP2 SWAP1 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG4 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A1D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1972 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB611743 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x5 DUP5 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP9 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP8 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD SWAP2 DUP3 MSTORE PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND EXTCODESIZE ISZERO PUSH2 0x1B02 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x1A23 SWAP1 DUP9 SWAP1 DUP9 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x28B2 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1A5D JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1A5A SWAP2 DUP2 ADD SWAP1 PUSH2 0x28EE JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1AC4 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x1A8A JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1A8F JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH0 SUB PUSH2 0x1ABC JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP3 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ PUSH2 0x1B00 JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST POP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x1B15 DUP4 PUSH2 0x1FC2 JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1B34 JUMPI PUSH2 0x1B34 PUSH2 0x249D JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1B5E JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH2 0x1B68 JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079302 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A1D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 DUP1 PUSH2 0x1BF4 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x1CB5 JUMPI PUSH0 PUSH2 0x1C03 DUP6 PUSH2 0x108B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x1C2F JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1C42 JUMPI POP PUSH2 0x1C40 DUP2 DUP6 PUSH2 0xF29 JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x1C6B JUMPI PUSH1 0x40 MLOAD PUSH4 0xA9FBF51F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST DUP3 ISZERO PUSH2 0x1CB3 JUMPI DUP5 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP JUMPDEST PUSH0 SWAP4 DUP5 MSTORE PUSH1 0x4 ADD PUSH1 0x20 MSTORE POP POP PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x1CF0 DUP4 DUP4 DUP4 PUSH2 0x2099 JUMP JUMPDEST PUSH2 0xB83 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1D1E JUMPI PUSH1 0x40 MLOAD PUSH4 0x7E273289 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x177E802F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x78A JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1D56 DUP7 DUP7 PUSH2 0x20FD JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x1D7A JUMPI DUP4 DUP2 DUP2 PUSH2 0x1D70 JUMPI PUSH2 0x1D70 PUSH2 0x2909 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0xB62 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x1D91 JUMPI PUSH2 0x1D91 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x2119 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1E01 PUSH2 0x212A JUMP JUMPDEST PUSH2 0x13CD JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x13CD PUSH2 0x1DF9 JUMP JUMPDEST PUSH2 0x1E2E PUSH2 0x1DF9 JUMP JUMPDEST PUSH2 0x761 DUP3 DUP3 PUSH2 0x2143 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1E9E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1EC2 SWAP2 SWAP1 PUSH2 0x284F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x13D8 JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1EF2 DUP3 PUSH2 0x2173 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x1F36 JUMPI PUSH2 0xB83 DUP3 DUP3 PUSH2 0x21D6 JUMP JUMPDEST PUSH2 0x761 PUSH2 0x2276 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 GT ISZERO PUSH2 0x1F71 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x80 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x78A JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x1F83 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x2295 JUMP JUMPDEST PUSH2 0x7ED JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH2 0x1FB5 DUP4 DUP4 PUSH2 0x2302 JUMP JUMPDEST PUSH2 0xB83 CALLER PUSH0 DUP6 DUP6 DUP6 PUSH2 0x19E1 JUMP JUMPDEST PUSH0 DUP1 PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 LT PUSH2 0x2000 JUMPI PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x202C JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x204A JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x2062 JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x2076 JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x2088 JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x69B JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0xD65 JUMPI POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x20D2 JUMPI POP PUSH2 0x20D2 DUP5 DUP5 PUSH2 0xF29 JUMP JUMPDEST DUP1 PUSH2 0xD65 JUMPI POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x20EB DUP4 PUSH2 0x10C2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 PUSH2 0x2133 PUSH2 0x12E7 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x214B PUSH2 0x1DF9 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A1D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 PUSH2 0x2164 DUP5 DUP3 PUSH2 0x2961 JUMP JUMPDEST POP PUSH1 0x1 DUP2 ADD PUSH2 0x7ED DUP4 DUP3 PUSH2 0x2961 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x21A8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2A3D PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x21E3 DUP5 DUP5 PUSH2 0x2363 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x2204 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x2204 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x2219 JUMPI PUSH2 0x2211 PUSH2 0x2376 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x69B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2243 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x2256 JUMPI PUSH2 0x2251 PUSH2 0x238F JUMP JUMPDEST PUSH2 0x226F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x13CD JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x22F1 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x22E5 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x232B JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH0 PUSH2 0x2337 DUP4 DUP4 PUSH0 PUSH2 0x1108 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0xB83 JUMPI PUSH1 0x40 MLOAD PUSH4 0x39E35637 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x78A JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x13D8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23BF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xB62 DUP2 PUSH2 0x239A JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP1 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP7 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0xB62 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x23CA JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x241A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x13D8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2446 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2451 DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2471 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x247C DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x248C DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x24C0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 DUP4 ADD PUSH0 PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP5 GT ISZERO PUSH2 0x24E0 JUMPI PUSH2 0x24E0 PUSH2 0x249D JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x250F JUMPI PUSH2 0x250F PUSH2 0x249D JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP8 LT ISZERO PUSH2 0x2526 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE DUP1 SWAP5 POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2553 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2569 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2575 DUP6 DUP3 DUP7 ADD PUSH2 0x24B1 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2591 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x259D DUP6 DUP3 DUP7 ADD PUSH2 0x24B1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x25B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x25C3 DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2591 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x25EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xB62 DUP2 PUSH2 0x2421 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x260D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2624 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x262F DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP3 POP PUSH2 0x248C PUSH1 0x20 DUP6 ADD PUSH2 0x25F9 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x264E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2659 DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x266D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x268B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2696 DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x26A6 DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x26C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x26D4 DUP8 DUP3 DUP9 ADD PUSH2 0x24B1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x26F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x2701 DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP7 POP PUSH2 0x270F PUSH1 0x20 DUP10 ADD PUSH2 0x25F9 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x2732 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2760 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x276B DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x266D DUP2 PUSH2 0x2421 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x278C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2797 DUP2 PUSH2 0x2421 JUMP JUMPDEST SWAP2 POP PUSH2 0x27A5 PUSH1 0x20 DUP5 ADD PUSH2 0x25F9 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x27C2 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x27E0 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x69B JUMPI PUSH2 0x69B PUSH2 0x27E6 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x281D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 PUSH1 0x20 DUP5 ADD DUP6 MCOPY PUSH0 SWAP4 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xD65 PUSH2 0x2849 DUP4 DUP7 PUSH2 0x2824 JUMP JUMPDEST DUP5 PUSH2 0x2824 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x285F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xB62 DUP2 PUSH2 0x2421 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x69B JUMPI PUSH2 0x69B PUSH2 0x27E6 JUMP JUMPDEST PUSH0 PUSH1 0x1 DUP3 ADD PUSH2 0x2898 JUMPI PUSH2 0x2898 PUSH2 0x27E6 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x69B JUMPI PUSH2 0x69B PUSH2 0x27E6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x28E4 SWAP1 DUP4 ADD DUP5 PUSH2 0x23CA JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x28FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xB62 DUP2 PUSH2 0x239A JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0xB83 JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x2942 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1B02 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x294E JUMP JUMPDEST DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x297B JUMPI PUSH2 0x297B PUSH2 0x249D JUMP JUMPDEST PUSH2 0x298F DUP2 PUSH2 0x2989 DUP5 SLOAD PUSH2 0x27AE JUMP JUMPDEST DUP5 PUSH2 0x291D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x29C1 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x29AA JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x1B02 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x29F0 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x29D0 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x2A0D JUMPI DUP7 DUP5 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP INVALID DUP1 0xBB 0x2B PUSH4 0x8CC20BC4 0xD0 0xA6 0xD PUSH7 0x940F3AB4A00C1D PUSH28 0x313497CA82FB0B4AB0079300360894A13BA1A3210667C828492DB98D 0xCA RETURNDATACOPY KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCA264697066735822122004 0xAA ISZERO 0x2A SWAP3 TLOAD 0xDF PUSH22 0x3087F90FCC9CB207EB0313B5AA4B3FB4C0946677E83B 0x1F 0x22 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"1740:12397:67:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6373:321;;;;;;;;;;-1:-1:-1;6373:321:67;;;;;:::i;:::-;;:::i;:::-;;;565:14:101;;558:22;540:41;;528:2;513:18;6373:321:67;;;;;;;;3462:146:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4612:154::-;;;;;;;;;;-1:-1:-1;4612:154:9;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1528:32:101;;;1510:51;;1498:2;1483:18;4612:154:9;1364:203:101;4465:113:9;;;;;;;;;;-1:-1:-1;4465:113:9;;;;;:::i;:::-;;:::i;:::-;;5222:578;;;;;;;;;;-1:-1:-1;5222:578:9;;;;;:::i;:::-;;:::i;11654:1304:67:-;;;;;;;;;;-1:-1:-1;11654:1304:67;;;;;:::i;:::-;;:::i;13494:270::-;;;;;;;;;;-1:-1:-1;13494:270:67;;;;;:::i;:::-;;:::i;:::-;;;2739:25:101;;;2727:2;2712:18;13494:270:67;2593:177:101;5834:132:9;;;;;;;;;;-1:-1:-1;5834:132:9;;;;;:::i;:::-;;:::i;5990:131:67:-;;;;;;;;;;-1:-1:-1;5990:131:67;;;;;:::i;:::-;;:::i;2366:94:73:-;;;;;;;;;;-1:-1:-1;2444:11:73;2366:94;;3911:214:33;;;;;;:::i;:::-;;:::i;3466:126::-;;;;;;;;;;;;;:::i;6884:179:67:-;;;;;;;;;;-1:-1:-1;6884:179:67;;;;;:::i;:::-;-1:-1:-1;;;;;;;7034:24:67;7013:6;7034:24;;;:16;:24;;;;;;;;;6884:179;;;;5920:12:101;5908:25;;;5890:44;;5878:2;5863:18;6884:179:67;5746:194:101;3302:118:9;;;;;;;;;;-1:-1:-1;3302:118:9;;;;;:::i;:::-;;:::i;3003:265::-;;;;;;;;;;-1:-1:-1;3003:265:9;;;;;:::i;:::-;;:::i;3650:150::-;;;;;;;;;;;;;:::i;13989:146:67:-;;;;;;;;;;-1:-1:-1;13989:146:67;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14102:28:67;;;;:19;:28;;;;;;;;;14095:35;;;;;;;;;-1:-1:-1;;;;;14095:35:67;;;;-1:-1:-1;;;;;;;;14095:35:67;;;;;;;;;;;;;;-1:-1:-1;;;;;14095:35:67;;;;;;;;;;-1:-1:-1;;;14095:35:67;;;;;;;;-1:-1:-1;;;14095:35:67;;;;;;;;;;;13989:146;;;;;;;6361:4:101;6403:3;6392:9;6388:19;6380:27;;-1:-1:-1;;;;;6444:6:101;6438:13;6434:46;6423:9;6416:65;6566:1;6562;6557:3;6553:11;6549:19;6541:4;6533:6;6529:17;6523:24;6519:50;6512:4;6501:9;6497:20;6490:80;-1:-1:-1;;;;;6630:4:101;6622:6;6618:17;6612:24;6608:65;6601:4;6590:9;6586:20;6579:95;6742:12;6734:4;6726:6;6722:17;6716:24;6712:43;6705:4;6694:9;6690:20;6683:73;6824:12;6816:4;6808:6;6804:17;6798:24;6794:43;6787:4;6776:9;6772:20;6765:73;6197:647;;;;;9492:167:67;;;;;;;;;;-1:-1:-1;9492:167:67;;;;;:::i;:::-;;:::i;4800:144:9:-;;;;;;;;;;-1:-1:-1;4800:144:9;;;;;:::i;:::-;;:::i;1732:58:33:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1732:58:33;;;;;6000:233:9;;;;;;;;;;-1:-1:-1;6000:233:9;;;;;:::i;:::-;;:::i;3842:255::-;;;;;;;;;;-1:-1:-1;3842:255:9;;;;;:::i;:::-;;:::i;8442:637:67:-;;;;;;;;;;-1:-1:-1;8442:637:67;;;;;:::i;:::-;;:::i;2464:97:73:-;;;;;;;;;;;;;:::i;4978:210:9:-;;;;;;;;;;-1:-1:-1;4978:210:9;;;;;:::i;:::-;;:::i;6724:130:67:-;;;;;;;;;;-1:-1:-1;6724:130:67;;;;;:::i;:::-;-1:-1:-1;;;;;6822:27:67;6800:7;6822:27;;;:19;:27;;;;;;;6724:130;7392:218;;;;;;;;;;-1:-1:-1;7392:218:67;;;;;:::i;:::-;;:::i;6373:321::-;6506:4;6531:48;6567:11;6531:35;:48::i;:::-;:108;;;;6589:50;6627:11;6589:37;:50::i;:::-;6531:158;;;-1:-1:-1;;;;;;;6649:40:67;;-1:-1:-1;;;6649:40:67;6531:158;6518:171;6373:321;-1:-1:-1;;6373:321:67:o;3462:146:9:-;-1:-1:-1;;;;;;;;;;;3587:14:9;;3507:13;;2094:21;;;3587:14;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3462:146;:::o;4612:154::-;4679:7;4698:22;4712:7;4698:13;:22::i;:::-;;4738:21;4751:7;4738:12;:21::i;4465:113::-;4536:35;4545:2;4549:7;987:10:10;4536:8:9;:35::i;:::-;4465:113;;:::o;5222:578::-;-1:-1:-1;;;;;5316:16:9;;5312:87;;5355:33;;-1:-1:-1;;;5355:33:9;;5385:1;5355:33;;;1510:51:101;1483:18;;5355:33:9;;;;;;;;5312:87;5617:21;5641:34;5649:2;5653:7;987:10:10;5641:7:9;:34::i;:::-;5617:58;;5706:4;-1:-1:-1;;;;;5689:21:9;:13;-1:-1:-1;;;;;5689:21:9;;5685:109;;5733:50;;-1:-1:-1;;;5733:50:9;;-1:-1:-1;;;;;11453:32:101;;;5733:50:9;;;11435:51:101;11502:18;;;11495:34;;;11565:32;;11545:18;;;11538:60;11408:18;;5733:50:9;11233:371:101;5685:109:9;5302:498;5222:578;;;:::o;11654:1304:67:-;11713:33;11749:28;;;:19;:28;;;;;11791:19;;;;11749:28;;-1:-1:-1;;;11791:19:67;;;;11783:68;;;;-1:-1:-1;;;11783:68:67;;;;;;2739:25:101;;2727:2;2712:18;;2593:177;11783:68:67;-1:-1:-1;11884:18:67;;;;11923:7;;-1:-1:-1;;;11884:18:67;;;;11865:15;-1:-1:-1;;11865:37:67;11857:95;;;;-1:-1:-1;;;11857:95:67;;;;;11781:25:101;;;;11854:12;11842:25;11822:18;;;11815:53;11754:18;;11857:95:67;11609:265:101;11857:95:67;;;11959:16;11978;11986:7;11978;:16::i;:::-;11959:35;;12000:25;12028:29;12049:7;12028:20;:29::i;:::-;12116:23;;;;12000:57;;-1:-1:-1;12063:22:67;;12088:52;;12000:57;;-1:-1:-1;;;;;12116:23:67;12088:8;:52::i;:::-;12202:19;;;:23;;-1:-1:-1;;;;12202:23:67;;;12063:77;-1:-1:-1;12253:14:67;12259:7;12253:5;:14::i;:::-;12309:23;;;;12293:11;;-1:-1:-1;;;12293:11:67;;-1:-1:-1;;;;;12293:11:67;12309:23;12273:32;;;:19;:32;;;;;:59;;-1:-1:-1;;;;;12309:23:67;;;;12273:32;;12309:23;12273:59;;12309:23;;12273:59;:::i;:::-;;;;-1:-1:-1;;12381:11:67;;12339:95;;-1:-1:-1;;;12339:95:67;;-1:-1:-1;;;12381:11:67;;;-1:-1:-1;;;;;12381:11:67;;;12339:95;;;12392:51:101;12459:18;;;12452:34;;;12522:32;;;12502:18;;;12495:60;12428:4:67;12571:18:101;;;12564:60;12358:11:67;12339:41;;;;12364:19:101;;12339:95:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12464:14;12444:17;:34;12440:412;;;12704:11;;-1:-1:-1;;;12704:11:67;;-1:-1:-1;;;;;12704:11:67;:24;12738:99;12747:34;12767:14;12747:17;:34;:::i;:::-;12798:11;;12783:53;;-1:-1:-1;;;12783:53:67;;12830:4;12783:53;;;1510:51:101;-1:-1:-1;;;12798:11:67;;;-1:-1:-1;;;;;12798:11:67;;12783:38;;1483:18:101;;12783:53:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12738:8;:99::i;:::-;12704:141;;;;;;;;;;;;;2739:25:101;;2727:2;2712:18;;2593:177;12704:141:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12440:412;12881:11;;12913:23;;;;12862:91;;;-1:-1:-1;;;;;12913:23:67;;;12998:66:101;;13095:2;13080:18;;13073:34;;;-1:-1:-1;;;;;12862:91:67;;;;12894:7;;-1:-1:-1;;;12881:11:67;;;;;;;12862:91;;12971:18:101;12862:91:67;;;;;;;11707:1251;;;;11654:1304;:::o;13494:270::-;13559:7;13610:28;;;:19;:28;;;;;13648:19;;;;-1:-1:-1;;;13648:19:67;;;;:24;;13644:38;;-1:-1:-1;13681:1:67;;13494:270;-1:-1:-1;;13494:270:67:o;13644:38::-;13695:64;13704:29;13725:7;13704:20;:29::i;:::-;13735:23;;;;-1:-1:-1;;;;;13735:23:67;13695:8;:64::i;:::-;13688:71;13494:270;-1:-1:-1;;;13494:270:67:o;5834:132:9:-;5920:39;5937:4;5943:2;5947:7;5920:39;;;;;;;;;;;;:16;:39::i;:::-;5834:132;;;:::o;5990:131:67:-;4158:30:32;4191:26;:24;:26::i;:::-;4302:15;;4158:59;;-1:-1:-1;4302:15:32;-1:-1:-1;;;4302:15:32;;;4301:16;;4348:14;;4279:19;4724:16;;:34;;;;;4744:14;4724:34;4704:54;;4768:17;4788:11;:16;;4803:1;4788:16;:50;;;;-1:-1:-1;4816:4:32;4808:25;:30;4788:50;4768:70;;4854:12;4853:13;:30;;;;;4871:12;4870:13;4853:30;4849:91;;;4906:23;;-1:-1:-1;;;4906:23:32;;;;;;;;;;;4849:91;4949:18;;-1:-1:-1;;4949:18:32;4966:1;4949:18;;;4977:67;;;;5011:22;;-1:-1:-1;;;;5011:22:32;-1:-1:-1;;;5011:22:32;;;4977:67;6087:29:67::1;6101:5;6108:7;6087:13;:29::i;:::-;5068:14:32::0;5064:101;;;5098:23;;-1:-1:-1;;;;5098:23:32;;;5140:14;;-1:-1:-1;13271:50:101;;5140:14:32;;13259:2:101;13244:18;5140:14:32;;;;;;;5064:101;4092:1079;;;;;5990:131:67;;:::o;3911:214:33:-;2568:13;:11;:13::i;:::-;4026:36:::1;4044:17;4026;:36::i;:::-;4072:46;4094:17;4113:4;4072:21;:46::i;3466:126::-:0;3527:7;2839:20;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;;3466:126:33;:::o;3302:118:9:-;3365:7;3391:22;3405:7;3391:13;:22::i;3003:265::-;3066:7;-1:-1:-1;;;;;;;;;;;;;;;;3144:19:9;;3140:87;;3186:30;;-1:-1:-1;;;3186:30:9;;3213:1;3186:30;;;1510:51:101;1483:18;;3186:30:9;1364:203:101;3140:87:9;-1:-1:-1;;;;;3243:18:9;;;;;;;:11;;;;:18;;-1:-1:-1;3243:18:9;;;;;3003:265::o;3650:150::-;3784:9;3777:16;;3697:13;;-1:-1:-1;;;;;;;;;;;2094:21:9;3777:16;;;:::i;9492:167:67:-;9583:15;9613:41;9633:6;9641:4;9647:6;9613:19;:41::i;:::-;9606:48;9492:167;-1:-1:-1;;;;9492:167:67:o;4800:144:9:-;4885:52;987:10:10;4918:8:9;4928;4885:18;:52::i;6000:233::-;6113:31;6126:4;6132:2;6136:7;6113:12;:31::i;:::-;6154:72;987:10:10;6202:4:9;6208:2;6212:7;6221:4;6154:33;:72::i;3842:255::-;3906:13;3931:22;3945:7;3931:13;:22::i;:::-;;3964:21;3988:10;4415:9;;;;;;;;;-1:-1:-1;4415:9:9;;;4339:92;3988:10;3964:34;;4039:1;4021:7;4015:21;:25;:75;;;;;;;;;;;;;;;;;4057:7;4066:18;:7;:16;:18::i;:::-;4043:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4008:82;3842:255;-1:-1:-1;;;3842:255:9:o;8442:637:67:-;8624:15;-1:-1:-1;;;;;8700:36:67;;;987:10:10;8700:92:67;;-1:-1:-1;;;;;;8700:92:67;;;;;;;-1:-1:-1;;;;;14150:32:101;;;8700:92:67;;;14132:51:101;8759:4:67;14199:18:101;;;14192:60;14268:18;;;14261:34;;;14311:18;;;14304:34;;;14387:4;14375:17;;14354:19;;;14347:46;14409:19;;;14402:35;;;14453:19;;;14446:35;;;14104:19;;8700:92:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8696:108;9033:41;9053:6;9061:4;9067:6;9033:19;:41::i;:::-;9026:48;8442:637;-1:-1:-1;;;;;;;;8442:637:67:o;2464:97:73:-;2505:14;2534:11;-1:-1:-1;;;;;2534:20:73;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2527:29;;2464:97;:::o;4978:210:9:-;-1:-1:-1;;;;;5144:27:9;;;5066:4;5144:27;;;:20;:27;;;;;;;;:37;;;;;;;;;;;;;;;4978:210::o;7392:218:67:-;-1:-1:-1;;;;;7481:74:67;;7511:24;;;;:16;:24;;;;;;;;;;7481:74;;7511:24;;;;14941:44:101;;15021:25;;;15001:18;;;14994:53;;;;7481:74:67;;14914:18:101;7481:74:67;;;;;;;-1:-1:-1;;;;;7561:24:67;;;;;;;;:16;:24;;;;;:44;;-1:-1:-1;;7561:44:67;;;;;;;;;;;7392:218::o;2658:311:9:-;2771:4;-1:-1:-1;;;;;;2806:40:9;;-1:-1:-1;;;2806:40:9;;:104;;-1:-1:-1;;;;;;;2862:48:9;;-1:-1:-1;;;2862:48:9;2806:104;:156;;;-1:-1:-1;;;;;;;;;;1119:40:15;;;2926:36:9;1020:146:15;2156:206:73;2241:4;-1:-1:-1;;;;;;2260:40:73;;-1:-1:-1;;;2260:40:73;;:97;;-1:-1:-1;;;;;;;2304:53:73;;-1:-1:-1;;;2304:53:73;2253:104;2156:206;-1:-1:-1;;2156:206:73:o;17574:241:9:-;17637:7;17656:13;17672:17;17681:7;17672:8;:17::i;:::-;17656:33;-1:-1:-1;;;;;;17703:19:9;;17699:88;;17745:31;;-1:-1:-1;;;17745:31:9;;;;;2739:25:101;;;2712:18;;17745:31:9;2593:177:101;7036:184:9;7106:7;7187:26;;;:17;:26;;;;;;-1:-1:-1;;;;;7187:26:9;;7036:184::o;15740:120::-;15820:33;15829:2;15833:7;15842:4;15848;15820:8;:33::i;10048:856::-;10134:7;-1:-1:-1;;;;;;;;;;;10134:7:9;10223:17;10232:7;10223:8;:17::i;:::-;10208:32;-1:-1:-1;;;;;;10300:18:9;;;10296:86;;10334:37;10351:4;10357;10363:7;10334:16;:37::i;:::-;-1:-1:-1;;;;;10426:18:9;;;10422:258;;10542:48;10559:1;10563:7;10580:1;10584:5;10542:8;:48::i;:::-;-1:-1:-1;;;;;10633:17:9;;;;;;:11;;;:17;;;;;:22;;-1:-1:-1;;10633:22:9;;;10422:258;-1:-1:-1;;;;;10694:16:9;;;10690:109;;-1:-1:-1;;;;;10754:15:9;;;;;;:11;;;:15;;;;;:20;;10773:1;10754:20;;;10690:109;10809:18;;;;:9;;;:18;;;;;;:23;;-1:-1:-1;;;;;;10809:23:9;-1:-1:-1;;;;;10809:23:9;;;;;;;;;10848:27;;10809:18;;10848:27;;;;;;;10893:4;10048:856;-1:-1:-1;;;;;10048:856:9:o;12962:284:67:-;13127:11;;:33;;-1:-1:-1;;;13127:33:67;;13155:4;13127:33;;;540:41:101;13050:7:67;;13078:163;;-1:-1:-1;;;13127:11:67;;;-1:-1:-1;;;;;13127:11:67;;:27;;513:18:101;;13127:33:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13210:22;;;13086:23;;;-1:-1:-1;;;;;13086:23:67;;13078:163;-1:-1:-1;;;;;13210:22:67;13078:39;:163::i;5633:111:63:-;5691:7;5328:5;;;5725;;;5327:36;5322:42;;5717:20;5087:294;12758:227:9;12809:21;12833:40;12849:1;12853:7;12870:1;12833:7;:40::i;:::-;12809:64;-1:-1:-1;;;;;;12887:27:9;;12883:96;;12937:31;;-1:-1:-1;;;12937:31:9;;;;;2739:25:101;;;2712:18;;12937:31:9;2593:177:101;9071:205:32;9129:30;;3147:66;9186:27;8819:122;6176:167:67;6929:20:32;:18;:20::i;:::-;6275:28:67::1;:26;:28::i;:::-;6309:29;6323:5;6330:7;6309:13;:29::i;4328:312:33:-:0;4408:4;-1:-1:-1;;;;;4417:6:33;4400:23;;;:120;;;4514:6;-1:-1:-1;;;;;4478:42:33;:32;-1:-1:-1;;;;;;;;;;;1519:53:29;-1:-1:-1;;;;;1519:53:29;;1441:138;4478:32:33;-1:-1:-1;;;;;4478:42:33;;;4400:120;4383:251;;;4594:29;;-1:-1:-1;;;4594:29:33;;;;;;;;;;;4383:251;4328:312::o;1807:106:73:-;1880:28;1900:7;1880:19;:28::i;:::-;1807:106;:::o;5782:538:33:-;5899:17;-1:-1:-1;;;;;5881:50:33;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5881:52:33;;;;;;;;-1:-1:-1;;5881:52:33;;;;;;;;;;;;:::i;:::-;;;5877:437;;6243:60;;-1:-1:-1;;;6243:60:33;;-1:-1:-1;;;;;1528:32:101;;6243:60:33;;;1510:51:101;1483:18;;6243:60:33;1364:203:101;5877:437:33;-1:-1:-1;;;;;;;;;;;5975:40:33;;5971:120;;6042:34;;-1:-1:-1;;;6042:34:33;;;;;2739:25:101;;;2712:18;;6042:34:33;2593:177:101;5971:120:33;6104:54;6134:17;6153:4;6104:29;:54::i;4757:213::-;4831:4;-1:-1:-1;;;;;4840:6:33;4823:23;;4819:145;;4924:29;;-1:-1:-1;;;4924:29:33;;;;;;;;;;;9663:1323:67;9755:15;9813:4;-1:-1:-1;;;;;9786:32:67;:6;-1:-1:-1;;;;;9786:13:67;;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;9786:32:67;;9834:6;9778:64;;;;;-1:-1:-1;;;9778:64:67;;-1:-1:-1;;;;;1528:32:101;;;9778:64:67;;;1510:51:101;1483:18;;9778:64:67;1364:203:101;9778:64:67;;-1:-1:-1;;9852:6:67;:27;9848:89;;-1:-1:-1;;;;;9890:33:67;;;987:10:10;9890:47:67;;-1:-1:-1;;;;;;9890:47:67;;;;;;;-1:-1:-1;;;;;1528:32:101;;;9890:47:67;;;1510:51:101;1483:18;;9890:47:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9881:56;;9848:89;9960:1;9951:6;:10;9943:46;;;;-1:-1:-1;;;9943:46:67;;;;;;;;;;;;-1:-1:-1;;;;;7034:24:67;;10039:22;7034:24;;;:16;:24;;;;;;;;10064:70;;10071:15;10064:70;:::i;:::-;10039:95;;10144:4;:9;;10152:1;10144:9;10140:162;;10170:15;10163:22;;10140:162;;;10209:15;10202:22;;:4;:22;;;10198:104;;;10241:54;;-1:-1:-1;;;10241:54:67;;14971:12:101;14959:25;;;10241:54:67;;;14941:44:101;15021:25;;15001:18;;;14994:53;14914:18;;10241:54:67;14771:282:101;10198:104:67;10351:12;;10349:14;;;;;:::i;:::-;;;;;-1:-1:-1;10424:28:67;;-1:-1:-1;;;10424:28:67;;10447:4;10424:28;;;540:41:101;10349:14:67;;-1:-1:-1;10369:27:67;;-1:-1:-1;;;;;10424:22:67;;;;;513:18:101;;10424:28:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10369:85;;10491:193;;;;;;;;10552:14;-1:-1:-1;;;;;10491:193:67;;;;;10522:6;-1:-1:-1;;;;;10491:193:67;;;;;10659:18;:6;:16;:18::i;:::-;-1:-1:-1;;;;;10491:193:67;;;;;10594:15;10491:193;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10460:28:67;;;:19;:28;;;;;:224;;;;;;-1:-1:-1;;;;;10460:224:67;;;-1:-1:-1;;;;;;;;10460:224:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;10460:224:67;;;;;;;-1:-1:-1;;;10460:224:67;;;;;;;;;;;-1:-1:-1;;;;10460:224:67;-1:-1:-1;;;10460:224:67;;;;;;;;;;;;10690:27;;;;;:19;:27;;;;:37;;10721:6;;-1:-1:-1;10690:37:67;;10721:6;;10690:37;:::i;:::-;;;;-1:-1:-1;10733:77:67;;-1:-1:-1;;;;;;10733:40:67;;987:10:10;10796:4:67;10803:6;10733:40;:77::i;:::-;10816:74;987:10:10;10840:7:67;10860:19;:28;10880:7;10860:28;;;;;;;;;;;10849:40;;;;;;;16337:4:101;16379:3;16368:9;16364:19;16356:27;;16415:6;16409:13;-1:-1:-1;;;;;16453:9:101;16449:42;16438:9;16431:61;16538:9;16534:2;16530:18;16523:4;16512:9;16508:20;16501:48;;16595:4;16587:6;16583:17;16577:24;-1:-1:-1;;;;;16643:11:101;16639:52;16632:4;16621:9;16617:20;16610:82;16755:12;16741:11;16736:3;16732:21;16728:40;16723:2;16712:9;16708:18;16701:68;16833:12;16819:11;16814:3;16810:21;16806:40;16800:3;16789:9;16785:19;16778:69;;16176:677;;;;;10849:40:67;;;;;;;;;;;;;10816:9;:74::i;:::-;10901:80;;;17114:12:101;17102:25;;17084:44;;-1:-1:-1;;;;;17164:39:101;;17159:2;17144:18;;17137:67;17220:18;;;17213:34;;;10901:80:67;;987:10:10;;10929:7:67;;-1:-1:-1;;;;;10901:80:67;;;;;;;;;17072:2:101;10901:80:67;;;9772:1214;;9663:1323;;;;;:::o;16970:369:9:-;-1:-1:-1;;;;;;;;;;;;;;;;17132:22:9;;17128:91;;17177:31;;-1:-1:-1;;;17177:31:9;;-1:-1:-1;;;;;1528:32:101;;17177:31:9;;;1510:51:101;1483:18;;17177:31:9;1364:203:101;17128:91:9;-1:-1:-1;;;;;17228:27:9;;;;;;;:20;;;:27;;;;;;;;:37;;;;;;;;;;;;;:48;;-1:-1:-1;;17228:48:9;;;;;;;;;;17291:41;;540::101;;;17291::9;;513:18:101;17291:41:9;;;;;;;17063:276;16970:369;;;:::o;994:926:44:-;-1:-1:-1;;;;;1174:14:44;;;:18;1170:744;;1212:67;;-1:-1:-1;;;1212:67:44;;-1:-1:-1;;;;;1212:36:44;;;;;:67;;1249:8;;1259:4;;1265:7;;1274:4;;1212:67;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1212:67:44;;;;;;;;-1:-1:-1;;1212:67:44;;;;;;;;;;;;:::i;:::-;;;1208:696;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1569:6;:13;1586:1;1569:18;1565:325;;1673:39;;-1:-1:-1;;;1673:39:44;;-1:-1:-1;;;;;1528:32:101;;1673:39:44;;;1510:51:101;1483:18;;1673:39:44;1364:203:101;1565:325:44;1842:6;1836:13;1829:4;1821:6;1817:17;1810:40;1208:696;-1:-1:-1;;;;;;1326:51:44;;-1:-1:-1;;;1326:51:44;1322:182;;1446:39;;-1:-1:-1;;;1446:39:44;;-1:-1:-1;;;;;1528:32:101;;1446:39:44;;;1510:51:101;1483:18;;1446:39:44;1364:203:101;1322:182:44;1280:238;1208:696;994:926;;;;;:::o;1343:634:56:-;1399:13;1448:14;1465:17;1476:5;1465:10;:17::i;:::-;1485:1;1465:21;1448:38;;1500:20;1534:6;1523:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1523:18:56;-1:-1:-1;1500:41:56;-1:-1:-1;1630:30:56;;;1646:4;1630:30;1687:247;-1:-1:-1;;1718:5:56;-1:-1:-1;;;1817:2:56;1806:14;;1801:32;1718:5;1788:46;1878:2;1869:11;;;-1:-1:-1;1898:21:56;1687:247;1898:21;-1:-1:-1;1954:6:56;1343:634;-1:-1:-1;;;1343:634:56:o;6748:172:9:-;6814:7;6895:18;;;:9;:18;;;;;;-1:-1:-1;;;;;6895:18:9;;6748:172::o;16042:719::-;-1:-1:-1;;;;;;;;;;;16257:9:9;;:31;;-1:-1:-1;;;;;;16270:18:9;;;;16257:31;16253:460;;;16304:13;16320:22;16334:7;16320:13;:22::i;:::-;16304:38;-1:-1:-1;;;;;;16470:18:9;;;;;;:35;;;16501:4;-1:-1:-1;;;;;16492:13:9;:5;-1:-1:-1;;;;;16492:13:9;;;16470:35;:69;;;;;16510:29;16527:5;16534:4;16510:16;:29::i;:::-;16509:30;16470:69;16466:142;;;16566:27;;-1:-1:-1;;;16566:27:9;;-1:-1:-1;;;;;1528:32:101;;16566:27:9;;;1510:51:101;1483:18;;16566:27:9;1364:203:101;16466:142:9;16626:9;16622:81;;;16680:7;16676:2;-1:-1:-1;;;;;16660:28:9;16669:5;-1:-1:-1;;;;;16660:28:9;;;;;;;;;;;16622:81;16290:423;16253:460;16723:26;;;;:17;;:26;;-1:-1:-1;;16723:26:9;;;:31;;-1:-1:-1;;;;;;16723:31:9;-1:-1:-1;;;;;16723:31:9;;;;;;;;;;16042:719::o;8235:368::-;8347:38;8361:5;8368:7;8377;8347:13;:38::i;:::-;8342:255;;-1:-1:-1;;;;;8405:19:9;;8401:186;;8451:31;;-1:-1:-1;;;8451:31:9;;;;;2739:25:101;;;2712:18;;8451:31:9;2593:177:101;8401:186:9;8528:44;;-1:-1:-1;;;8528:44:9;;-1:-1:-1;;;;;18337:32:101;;8528:44:9;;;18319:51:101;18386:18;;;18379:34;;;18292:18;;8528:44:9;18145:274:101;7258:3683:63;7340:14;7391:12;7405:11;7420:12;7427:1;7430;7420:6;:12::i;:::-;7390:42;;;;7514:4;7522:1;7514:9;7510:365;;7849:11;7843:3;:17;;;;;:::i;:::-;;7836:24;;;;;;7510:365;8000:4;7985:11;:19;7981:142;;8024:84;5328:5;8044:16;;5327:36;940:4:53;5322:42:63;8024:11;:84::i;:::-;8375:17;8526:11;8523:1;8520;8513:25;8918:12;8948:15;;;8933:31;;9083:22;;;;;9816:1;9797;:15;;9796:21;;10049;;;10045:25;;10034:36;10119:21;;;10115:25;;10104:36;10191:21;;;10187:25;;10176:36;10262:21;;;10258:25;;10247:36;10335:21;;;10331:25;;10320:36;10409:21;;;10405:25;;;10394:36;9325:12;;;;9321:23;;;9346:1;9317:31;8638:18;;;8628:29;;;9432:11;;;;8681:19;;;;9176:14;;;;9425:18;;;;10884:13;;-1:-1:-1;;7258:3683:63;;;;;:::o;7082:141:32:-;7149:17;:15;:17::i;:::-;7144:73;;7189:17;;-1:-1:-1;;;7189:17:32;;;;;;;;;;;1737:66:73;6929:20:32;:18;:20::i;2250:149:9:-;6929:20:32;:18;:20::i;:::-;2353:39:9::1;2377:5;2384:7;2353:23;:39::i;1917:180:73:-:0;2041:11;-1:-1:-1;;;;;1995:57:73;2016:7;-1:-1:-1;;;;;1995:40:73;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1995:57:73;;1991:101;;2061:31;;-1:-1:-1;;;2061:31:73;;;;;;;;;;;2264:344:29;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:29;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;2454:148::-;2573:18;:16;:18::i;9264:218:64:-;9321:7;-1:-1:-1;;;;;9344:25:64;;9340:105;;;9392:42;;-1:-1:-1;;;9392:42:64;;9423:3;9392:42;;;18883:36:101;18935:18;;;18928:34;;;18856:18;;9392:42:64;18701:267:101;9340:105:64;-1:-1:-1;9469:5:64;9264:218::o;1662:232:40:-;1767:47;1785:5;1792:4;1798:2;1802:5;1809:4;1767:17;:47::i;:::-;1762:126;;1837:40;;-1:-1:-1;;;1837:40:40;;-1:-1:-1;;;;;1528:32:101;;1837:40:40;;;1510:51:101;1483:18;;1837:40:40;1364:203:101;12225:207:9;12319:18;12325:2;12329:7;12319:5;:18::i;:::-;12347:78;987:10:10;12403:1:9;12407:2;12411:7;12420:4;12347:33;:78::i;29170:916:63:-;29223:7;;-1:-1:-1;;;29298:17:63;;29294:103;;-1:-1:-1;;;29335:17:63;;;-1:-1:-1;29380:2:63;29370:12;29294:103;29423:8;29414:5;:17;29410:103;;29460:8;29451:17;;;-1:-1:-1;29496:2:63;29486:12;29410:103;29539:8;29530:5;:17;29526:103;;29576:8;29567:17;;;-1:-1:-1;29612:2:63;29602:12;29526:103;29655:7;29646:5;:16;29642:100;;29691:7;29682:16;;;-1:-1:-1;29726:1:63;29716:11;29642:100;29768:7;29759:5;:16;29755:100;;29804:7;29795:16;;;-1:-1:-1;29839:1:63;29829:11;29755:100;29881:7;29872:5;:16;29868:100;;29917:7;29908:16;;;-1:-1:-1;29952:1:63;29942:11;29868:100;29994:7;29985:5;:16;29981:66;;30031:1;30021:11;30073:6;29170:916;-1:-1:-1;;29170:916:63:o;7531:272:9:-;7634:4;-1:-1:-1;;;;;7669:21:9;;;;;;:127;;;7716:7;-1:-1:-1;;;;;7707:16:9;:5;-1:-1:-1;;;;;7707:16:9;;:52;;;;7727:32;7744:5;7751:7;7727:16;:32::i;:::-;7707:88;;;;7788:7;-1:-1:-1;;;;;7763:32:9;:21;7776:7;7763:12;:21::i;:::-;-1:-1:-1;;;;;7763:32:9;;;7531:272;-1:-1:-1;;;;7531:272:9:o;1027:550:63:-;1088:12;;-1:-1:-1;;1471:1:63;1468;1461:20;1501:9;;;;1549:11;;;1535:12;;;;1531:30;;;;;1027:550;-1:-1:-1;;1027:550:63:o;1776:194:53:-;1881:10;1875:4;1868:24;1918:4;1912;1905:18;1949:4;1943;1936:18;8485:120:32;8535:4;8558:26;:24;:26::i;:::-;:40;-1:-1:-1;;;8558:40:32;;;;;;-1:-1:-1;8485:120:32:o;2405:219:9:-;6929:20:32;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;2094:21:9;2573:15:::1;2583:5:::0;2094:21;2573:15:::1;:::i;:::-;-1:-1:-1::0;2598:9:9::1;::::0;::::1;:19;2610:7:::0;2598:9;:19:::1;:::i;1671:281:29:-:0;1748:17;-1:-1:-1;;;;;1748:29:29;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:29;;-1:-1:-1;;;;;1528:32:101;;1805:47:29;;;1510:51:101;1483:18;;1805:47:29;1364:203:101;1744:119:29;-1:-1:-1;;;;;;;;;;;1872:73:29;;-1:-1:-1;;;;;;1872:73:29;-1:-1:-1;;;;;1872:73:29;;;;;;;;;;1671:281::o;4691:549:45:-;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:45;4583:16:49;4886:33:45;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:45;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;:::-;4962:32;;;;;4870:364;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:45;;-1:-1:-1;;;;;1528:32:101;;5045:24:45;;;1510:51:101;1483:18;;5045:24:45;1364:203:101;5011:223:45;4583:16:49;5090:33:45;5086:148;;5139:27;:25;:27::i;:::-;5086:148;;;5204:19;;-1:-1:-1;;;5204:19:45;;;;;;;;;;;5086:148;4788:452;4691:549;;;;:::o;6113:122:29:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:29;;;;;;;;;;;10165:1393:40;10460:4;10454:11;-1:-1:-1;;;10323:12:40;10478:22;;;-1:-1:-1;;;;;10526:26:40;;;10520:4;10513:40;10579:24;;10573:4;10566:38;10624:4;10617:19;;;10323:12;10700:4;10323:12;10688:4;10323:12;;10672:5;10665;10660:45;10649:56;;10917:1;10910:4;10904:11;10901:18;10892:7;10888:32;10878:606;;11049:6;11039:7;11032:15;11028:28;11025:165;;;11105:16;11099:4;11094:3;11079:43;11155:16;11150:3;11143:29;11025:165;11466:1;11458:5;11446:18;11443:25;11424:16;11417:24;11413:56;11404:7;11400:70;11389:81;;10878:606;11504:4;11497:17;-1:-1:-1;11540:1:40;11534:4;11527:15;10165:1393;;-1:-1:-1;;;;;10165:1393:40:o;11226:327:9:-;-1:-1:-1;;;;;11293:16:9;;11289:87;;11332:33;;-1:-1:-1;;;11332:33:9;;11362:1;11332:33;;;1510:51:101;1483:18;;11332:33:9;1364:203:101;11289:87:9;11385:21;11409:32;11417:2;11421:7;11438:1;11409:7;:32::i;:::-;11385:56;-1:-1:-1;;;;;;11455:27:9;;;11451:96;;11505:31;;-1:-1:-1;;;11505:31:9;;11533:1;11505:31;;;1510:51:101;1483:18;;11505:31:9;1364:203:101;3383:242:49;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:49:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;14:131:101;-1:-1:-1;;;;;;88:32:101;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:300::-;645:3;683:5;677:12;710:6;705:3;698:19;766:6;759:4;752:5;748:16;741:4;736:3;732:14;726:47;818:1;811:4;802:6;797:3;793:16;789:27;782:38;881:4;874:2;870:7;865:2;857:6;853:15;849:29;844:3;840:39;836:50;829:57;;;592:300;;;;:::o;897:231::-;1046:2;1035:9;1028:21;1009:4;1066:56;1118:2;1107:9;1103:18;1095:6;1066:56;:::i;1133:226::-;1192:6;1245:2;1233:9;1224:7;1220:23;1216:32;1213:52;;;1261:1;1258;1251:12;1213:52;-1:-1:-1;1306:23:101;;1133:226;-1:-1:-1;1133:226:101:o;1572:131::-;-1:-1:-1;;;;;1647:31:101;;1637:42;;1627:70;;1693:1;1690;1683:12;1708:367;1776:6;1784;1837:2;1825:9;1816:7;1812:23;1808:32;1805:52;;;1853:1;1850;1843:12;1805:52;1892:9;1879:23;1911:31;1936:5;1911:31;:::i;:::-;1961:5;2039:2;2024:18;;;;2011:32;;-1:-1:-1;;;1708:367:101:o;2080:508::-;2157:6;2165;2173;2226:2;2214:9;2205:7;2201:23;2197:32;2194:52;;;2242:1;2239;2232:12;2194:52;2281:9;2268:23;2300:31;2325:5;2300:31;:::i;:::-;2350:5;-1:-1:-1;2407:2:101;2392:18;;2379:32;2420:33;2379:32;2420:33;:::i;:::-;2080:508;;2472:7;;-1:-1:-1;;;2552:2:101;2537:18;;;;2524:32;;2080:508::o;2775:127::-;2836:10;2831:3;2827:20;2824:1;2817:31;2867:4;2864:1;2857:15;2891:4;2888:1;2881:15;2907:889;2950:5;3003:3;2996:4;2988:6;2984:17;2980:27;2970:55;;3021:1;3018;3011:12;2970:55;3061:6;3048:20;3100:4;3092:6;3088:17;3129:1;3151;3175:18;3167:6;3164:30;3161:56;;;3197:18;;:::i;:::-;-1:-1:-1;3352:2:101;3346:9;-1:-1:-1;;3265:2:101;3244:15;;3240:29;;3410:2;3398:15;3394:29;3382:42;;3475:22;;;3454:18;3439:34;;3436:62;3433:88;;;3501:18;;:::i;:::-;3537:2;3530:22;3587;;;3572:6;-1:-1:-1;3572:6:101;3624:16;;;3621:25;-1:-1:-1;3618:45:101;;;3659:1;3656;3649:12;3618:45;3709:6;3704:3;3697:4;3689:6;3685:17;3672:44;3764:1;3757:4;3748:6;3740;3736:19;3732:30;3725:41;3784:6;3775:15;;;;;;2907:889;;;;:::o;3801:538::-;3889:6;3897;3950:2;3938:9;3929:7;3925:23;3921:32;3918:52;;;3966:1;3963;3956:12;3918:52;4006:9;3993:23;4039:18;4031:6;4028:30;4025:50;;;4071:1;4068;4061:12;4025:50;4094;4136:7;4127:6;4116:9;4112:22;4094:50;:::i;:::-;4084:60;;;4197:2;4186:9;4182:18;4169:32;4226:18;4216:8;4213:32;4210:52;;;4258:1;4255;4248:12;4210:52;4281;4325:7;4314:8;4303:9;4299:24;4281:52;:::i;:::-;4271:62;;;3801:538;;;;;:::o;4573:456::-;4650:6;4658;4711:2;4699:9;4690:7;4686:23;4682:32;4679:52;;;4727:1;4724;4717:12;4679:52;4766:9;4753:23;4785:31;4810:5;4785:31;:::i;:::-;4835:5;-1:-1:-1;4891:2:101;4876:18;;4863:32;4918:18;4907:30;;4904:50;;;4950:1;4947;4940:12;5945:247;6004:6;6057:2;6045:9;6036:7;6032:23;6028:32;6025:52;;;6073:1;6070;6063:12;6025:52;6112:9;6099:23;6131:31;6156:5;6131:31;:::i;6849:165::-;6916:20;;6976:12;6965:24;;6955:35;;6945:63;;7004:1;7001;6994:12;6945:63;6849:165;;;:::o;7019:456::-;7112:6;7120;7128;7181:2;7169:9;7160:7;7156:23;7152:32;7149:52;;;7197:1;7194;7187:12;7149:52;7236:9;7223:23;7255:31;7280:5;7255:31;:::i;:::-;7305:5;-1:-1:-1;7329:37:101;7362:2;7347:18;;7329:37;:::i;7480:416::-;7545:6;7553;7606:2;7594:9;7585:7;7581:23;7577:32;7574:52;;;7622:1;7619;7612:12;7574:52;7661:9;7648:23;7680:31;7705:5;7680:31;:::i;:::-;7730:5;-1:-1:-1;7787:2:101;7772:18;;7759:32;7829:15;;7822:23;7810:36;;7800:64;;7860:1;7857;7850:12;7800:64;7883:7;7873:17;;;7480:416;;;;;:::o;7901:718::-;7996:6;8004;8012;8020;8073:3;8061:9;8052:7;8048:23;8044:33;8041:53;;;8090:1;8087;8080:12;8041:53;8129:9;8116:23;8148:31;8173:5;8148:31;:::i;:::-;8198:5;-1:-1:-1;8255:2:101;8240:18;;8227:32;8268:33;8227:32;8268:33;:::i;:::-;8320:7;-1:-1:-1;8400:2:101;8385:18;;8372:32;;-1:-1:-1;8481:2:101;8466:18;;8453:32;8508:18;8497:30;;8494:50;;;8540:1;8537;8530:12;8494:50;8563;8605:7;8596:6;8585:9;8581:22;8563:50;:::i;:::-;8553:60;;;7901:718;;;;;;;:::o;8624:985::-;8751:6;8759;8767;8775;8783;8791;8799;8852:3;8840:9;8831:7;8827:23;8823:33;8820:53;;;8869:1;8866;8859:12;8820:53;8908:9;8895:23;8927:31;8952:5;8927:31;:::i;:::-;8977:5;-1:-1:-1;9001:37:101;9034:2;9019:18;;9001:37;:::i;:::-;8991:47;-1:-1:-1;9111:2:101;9096:18;;9083:32;;-1:-1:-1;9214:2:101;9199:18;;9186:32;;-1:-1:-1;9296:3:101;9281:19;;9268:33;9345:4;9332:18;;9320:31;;9310:59;;9365:1;9362;9355:12;9310:59;8624:985;;;;-1:-1:-1;8624:985:101;;;;9388:7;9468:3;9453:19;;9440:33;;-1:-1:-1;9572:3:101;9557:19;;;9544:33;;8624:985;-1:-1:-1;;8624:985:101:o;9845:388::-;9913:6;9921;9974:2;9962:9;9953:7;9949:23;9945:32;9942:52;;;9990:1;9987;9980:12;9942:52;10029:9;10016:23;10048:31;10073:5;10048:31;:::i;:::-;10098:5;-1:-1:-1;10155:2:101;10140:18;;10127:32;10168:33;10127:32;10168:33;:::i;10507:336::-;10591:6;10599;10652:2;10640:9;10631:7;10627:23;10623:32;10620:52;;;10668:1;10665;10658:12;10620:52;10707:9;10694:23;10726:31;10751:5;10726:31;:::i;:::-;10776:5;-1:-1:-1;10800:37:101;10833:2;10818:18;;10800:37;:::i;:::-;10790:47;;10507:336;;;;;:::o;10848:380::-;10927:1;10923:12;;;;10970;;;10991:61;;11045:4;11037:6;11033:17;11023:27;;10991:61;11098:2;11090:6;11087:14;11067:18;11064:38;11061:161;;11144:10;11139:3;11135:20;11132:1;11125:31;11179:4;11176:1;11169:15;11207:4;11204:1;11197:15;11061:161;;10848:380;;;:::o;11879:127::-;11940:10;11935:3;11931:20;11928:1;11921:31;11971:4;11968:1;11961:15;11995:4;11992:1;11985:15;12011:128;12078:9;;;12099:11;;;12096:37;;;12113:18;;:::i;12635:184::-;12705:6;12758:2;12746:9;12737:7;12733:23;12729:32;12726:52;;;12774:1;12771;12764:12;12726:52;-1:-1:-1;12797:16:101;;12635:184;-1:-1:-1;12635:184:101:o;13332:212::-;13374:3;13412:5;13406:12;13456:6;13449:4;13442:5;13438:16;13433:3;13427:36;13518:1;13482:16;;13507:13;;;-1:-1:-1;13482:16:101;;13332:212;-1:-1:-1;13332:212:101:o;13549:267::-;13728:3;13753:57;13779:30;13805:3;13797:6;13779:30;:::i;:::-;13771:6;13753:57;:::i;14492:274::-;14585:6;14638:2;14626:9;14617:7;14613:23;14609:32;14606:52;;;14654:1;14651;14644:12;14606:52;14686:9;14680:16;14705:31;14730:5;14705:31;:::i;15728:173::-;15825:12;15796:20;;;15818;;;15792:47;;15851:21;;15848:47;;;15875:18;;:::i;15906:135::-;15945:3;15966:17;;;15963:43;;15986:18;;:::i;:::-;-1:-1:-1;16033:1:101;16022:13;;15906:135::o;16046:125::-;16111:9;;;16132:10;;;16129:36;;;16145:18;;:::i;17258:496::-;-1:-1:-1;;;;;17489:32:101;;;17471:51;;17558:32;;17553:2;17538:18;;17531:60;17622:2;17607:18;;17600:34;;;17670:3;17665:2;17650:18;;17643:31;;;-1:-1:-1;;17691:57:101;;17728:19;;17720:6;17691:57;:::i;:::-;17683:65;17258:496;-1:-1:-1;;;;;;17258:496:101:o;17759:249::-;17828:6;17881:2;17869:9;17860:7;17856:23;17852:32;17849:52;;;17897:1;17894;17887:12;17849:52;17929:9;17923:16;17948:30;17972:5;17948:30;:::i;18013:127::-;18074:10;18069:3;18065:20;18062:1;18055:31;18105:4;18102:1;18095:15;18129:4;18126:1;18119:15;19099:518;19201:2;19196:3;19193:11;19190:421;;;19237:5;19234:1;19227:16;19281:4;19278:1;19268:18;19351:2;19339:10;19335:19;19332:1;19328:27;19322:4;19318:38;19387:4;19375:10;19372:20;19369:47;;;-1:-1:-1;19410:4:101;19369:47;19465:2;19460:3;19456:12;19453:1;19449:20;19443:4;19439:31;19429:41;;19520:81;19538:2;19531:5;19528:13;19520:81;;;19597:1;19583:16;;19564:1;19553:13;19520:81;;19793:1299;19919:3;19913:10;19946:18;19938:6;19935:30;19932:56;;;19968:18;;:::i;:::-;19997:97;20087:6;20047:38;20079:4;20073:11;20047:38;:::i;:::-;20041:4;19997:97;:::i;:::-;20143:4;20174:2;20163:14;;20191:1;20186:649;;;;20879:1;20896:6;20893:89;;;-1:-1:-1;20948:19:101;;;20942:26;20893:89;-1:-1:-1;;19750:1:101;19746:11;;;19742:24;19738:29;19728:40;19774:1;19770:11;;;19725:57;20995:81;;20156:930;;20186:649;19046:1;19039:14;;;19083:4;19070:18;;-1:-1:-1;;20222:20:101;;;20340:222;20354:7;20351:1;20348:14;20340:222;;;20436:19;;;20430:26;20415:42;;20543:4;20528:20;;;;20496:1;20484:14;;;;20370:12;20340:222;;;20344:3;20590:6;20581:7;20578:19;20575:201;;;20651:19;;;20645:26;-1:-1:-1;;20734:1:101;20730:14;;;20746:3;20726:24;20722:37;20718:42;20703:58;20688:74;;20575:201;-1:-1:-1;;;;20822:1:101;20806:14;;;20802:22;20789:36;;-1:-1:-1;19793:1299:101:o"},"methodIdentifiers":{"UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","cooldownPeriod(address,address,uint256)":"5ce095ee","currency()":"e5a6b10f","executeWithdrawal(uint256)":"24f13a76","getApproved(uint256)":"081812fc","getCurrentValue(uint256)":"3fcad964","getWithdrawalRequestInfo(uint256)":"99a904b5","initialize(string,string)":"4cd88b76","isApprovedForAll(address,address)":"e985e9c5","name()":"06fdde03","ownerOf(uint256)":"6352211e","pendingWithdrawals(address)":"f3f43703","policyPool()":"4d15eb03","proxiableUUID()":"52d1902d","safeTransferFrom(address,address,uint256)":"42842e0e","safeTransferFrom(address,address,uint256,bytes)":"b88d4fde","scheduleWithdrawal(address,uint40,uint256)":"a0358077","scheduleWithdrawalWithPermit(address,uint40,uint256,uint256,uint8,bytes32,bytes32)":"d3b59bf4","setApprovalForAll(address,bool)":"a22cb465","setCooldownPeriod(address,uint40)":"f630ffe7","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","tokenURI(uint256)":"c87b56dd","transferFrom(address,address,uint256)":"23b872dd","upgradeToAndCall(address,bytes)":"4f1ef286"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"policyPool_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"CannotDoZeroWithdrawals\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"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\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"}],\"name\":\"InvalidEToken\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"InvalidWithdrawalRequest\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroPolicyPool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OnlyPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UpgradeCannotChangePolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"name\":\"WithdrawalNotReady\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint40\",\"name\":\"minRequestTime\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"timeRequested\",\"type\":\"uint40\"}],\"name\":\"WithdrawalRequestEarlierThanMin\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint40\",\"name\":\"oldCooldownPeriod\",\"type\":\"uint40\"},{\"indexed\":false,\"internalType\":\"uint40\",\"name\":\"newCooldownPeriod\",\"type\":\"uint40\"}],\"name\":\"CooldownPeriodChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountRequested\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountWithdrawn\",\"type\":\"uint256\"}],\"name\":\"WithdrawalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint40\",\"name\":\"when\",\"type\":\"uint40\"},{\"indexed\":false,\"internalType\":\"ETKLib.Scale\",\"name\":\"scaleAtRequest\",\"type\":\"uint96\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"WithdrawalRequested\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"cooldownPeriod\",\"outputs\":[{\"internalType\":\"uint40\",\"name\":\"\",\"type\":\"uint40\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"executeWithdrawal\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getCurrentValue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getWithdrawalRequestInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"ETKLib.Scale\",\"name\":\"scaleAtRequest\",\"type\":\"uint96\"},{\"internalType\":\"contract IEToken\",\"name\":\"etk\",\"type\":\"address\"},{\"internalType\":\"uint128\",\"name\":\"requestedAmount\",\"type\":\"uint128\"},{\"internalType\":\"uint40\",\"name\":\"requestedAt\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Cooler.WithdrawalRequest\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"}],\"name\":\"pendingWithdrawals\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"uint40\",\"name\":\"when\",\"type\":\"uint40\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"scheduleWithdrawal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"uint40\",\"name\":\"when\",\"type\":\"uint40\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"scheduleWithdrawalWithPermit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"uint40\",\"name\":\"newCooldownPeriod\",\"type\":\"uint40\"}],\"name\":\"setCooldownPeriod\",\"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\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"For each withdrawal position it mints an NFT. The owner of the NFT is who receives the funds when the withdrawal is executed. The value of the eTokens at the execution time can be higher or lower than the value of the eTokens when the withdrawal was scheduled, due to earnings and losses during the cooldown period. If the resulting amount is lower, the LP (owner of the NFT) will receive less. If the value is higher than the value at the schedule period, the LP will receive ONLY the value at the schedule time, and the difference will be distributed to the remaining LPs of the token.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"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-721. 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.\"}}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when `owner` enables `approved` to manage the `tokenId` token.\"},\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\"},\"CooldownPeriodChanged(address,uint40,uint40)\":{\"params\":{\"eToken\":\"The EToken contract address for which the cooldown period was modified\",\"newCooldownPeriod\":\"The new cooldown period value (in seconds)\",\"oldCooldownPeriod\":\"The previous cooldown period value (in seconds)\"}},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"},\"WithdrawalExecuted(address,uint256,address,uint256,uint256)\":{\"params\":{\"amountRequested\":\"The original amount of eTokens requested for withdrawal\",\"amountWithdrawn\":\"The actual amount withdrawn to the receiver\",\"eToken\":\"The EToken contract from which the withdrawal was processed\",\"receiver\":\"The address that received the withdrawn funds\",\"tokenId\":\"The unique identifier of the token position that was withdrawn\"}},\"WithdrawalRequested(address,uint256,address,uint40,uint96,uint256)\":{\"params\":{\"amount\":\"The amount of eTokens being requested for withdrawal\",\"eToken\":\"The EToken contract from which the withdrawal is being requested\",\"owner\":\"The owner initiating the withdrawal request\",\"scaleAtRequest\":\"The token scale (see {EToken.getCurrentScale(true)}) at the time of the withdrawal request\",\"tokenId\":\"The NFT id of the withdrawal position created\",\"when\":\"The timestamp when the withdrawal can be executed\"}}},\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"cooldownPeriod(address,address,uint256)\":{\"params\":{\"amount\":\"The amount requested to withdraw\",\"eToken\":\"The eToken (see {EToken})\",\"owner\":\"The owner of the tokens requested to withdraw\"},\"returns\":{\"_0\":\"The cooldown period in seconds\"}},\"executeWithdrawal(uint256)\":{\"custom:emits\":\"WithdrawalExecuted with the requested and actual withdrawn amounts\",\"custom:pre\":\"The withdrawal request must exist (`request.requestedAt != 0`)The cooldown period must have elapsed (`block.timestamp >= request.expiration`)\",\"details\":\"This function processes a withdrawal request that has completed its cooldown period, transferring the underlying tokens to the token owner and cleaning up the withdrawal state.\",\"params\":{\"tokenId\":\"The ID of the token representing the withdrawal position to execute\"}},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"getCurrentValue(uint256)\":{\"params\":{\"tokenId\":\"The ID of the token representing the withdrawal position\"},\"returns\":{\"_0\":\"The current withdrawable amount in underlying tokens\"}},\"getWithdrawalRequestInfo(uint256)\":{\"params\":{\"tokenId\":\"The ID of the token representing the withdrawal position\"},\"returns\":{\"_0\":\"The information about the withdrawal request\"}},\"initialize(string,string)\":{\"params\":{\"name_\":\"ERC721 name attribute of the NFT collection\",\"symbol_\":\"ERC721 symbol attribute of the NFT collection\"}},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"name()\":{\"details\":\"Returns the token collection name.\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"pendingWithdrawals(address)\":{\"params\":{\"eToken\":\"The eToken (see {EToken})\"},\"returns\":{\"_0\":\"The amount in currency that is pending\"}},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC-721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must have been allowed to move this token by either {approve} or   {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"scheduleWithdrawal(address,uint40,uint256)\":{\"custom:emits\":\"WithdrawalRequested\",\"params\":{\"amount\":\"The amount of eTokens to withdraw\",\"eToken\":\"The EToken contract from which to withdraw\",\"when\":\"The timestamp when the withdrawal should be executable (when =0 uses the minimum cooldown period)\"},\"returns\":{\"tokenId\":\"The NFT ID of the token representing the withdrawal position\"}},\"scheduleWithdrawalWithPermit(address,uint40,uint256,uint256,uint8,bytes32,bytes32)\":{\"custom:emits\":\"WithdrawalRequested\",\"details\":\"This function allows users to schedule withdrawals without prior ERC20 approvals by using EIP-2612 permit signatures for gasless transactions\",\"params\":{\"amount\":\"The amount of eTokens to withdraw\",\"deadline\":\"The expiration timestamp for the permit signature\",\"eToken\":\"The EToken contract from which to withdraw\",\"r\":\"The R component of the signature\",\"s\":\"The S component of the signature\",\"v\":\"The recovery byte of the signature\",\"when\":\"The timestamp when the withdrawal should be executable (when =0 uses the minimum cooldown period)\"},\"returns\":{\"tokenId\":\"The NFT ID of the token representing the withdrawal position\"}},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the address zero. Emits an {ApprovalForAll} event.\"},\"setCooldownPeriod(address,uint40)\":{\"custom:emits\":\"CooldownPeriodChanged event with the old and new cooldown periods\",\"params\":{\"eToken\":\"The EToken contract address to configure the cooldown period for\",\"newCooldownPeriod\":\"The new cooldown period duration in seconds\"}},\"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.\"},\"symbol()\":{\"details\":\"Returns the token collection symbol.\"},\"tokenURI(uint256)\":{\"details\":\"Returns the Uniform Resource Identifier (URI) for `tokenId` token.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721 or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must understand this adds an external call which potentially creates a reentrancy vulnerability. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"}},\"title\":\"Cooler contract\",\"version\":1},\"userdoc\":{\"errors\":{\"CannotDoZeroWithdrawals()\":[{\"notice\":\"Error produced when trying to schedule a withdrawal with zero amount\"}],\"InvalidEToken(address)\":[{\"notice\":\"Error produced when requesting a withdrawal from an eToken that doesn't have address(this) as cooler\"}],\"InvalidWithdrawalRequest(uint256)\":[{\"notice\":\"Error produced when trying to execute a withdrawal of an non-existent or already used NFT\"}],\"WithdrawalNotReady(uint256,uint40)\":[{\"notice\":\"Error produced when trying to execute a withdrawal ahead of time (WithdrawalRequest.when)\"}],\"WithdrawalRequestEarlierThanMin(uint40,uint40)\":[{\"notice\":\"Error produced when requesting a withdrawal earlier than the minimum withdrawal period\"}]},\"events\":{\"CooldownPeriodChanged(address,uint40,uint40)\":{\"notice\":\"Event emitted when the cooldown period is changed\"},\"WithdrawalExecuted(address,uint256,address,uint256,uint256)\":{\"notice\":\"Event emitted when a withdrawal is executed\"},\"WithdrawalRequested(address,uint256,address,uint40,uint96,uint256)\":{\"notice\":\"Event emitted when a withdrawal is requested\"}},\"kind\":\"user\",\"methods\":{\"cooldownPeriod(address,address,uint256)\":{\"notice\":\"Returns the cooldown period in seconds required for withdrawals in a given eToken\"},\"executeWithdrawal(uint256)\":{\"notice\":\"Executes a previously scheduled withdrawal after the cooldown period has elapsed\"},\"getCurrentValue(uint256)\":{\"notice\":\"Returns the current withdrawable value for a given withdrawal position\"},\"getWithdrawalRequestInfo(uint256)\":{\"notice\":\"Returns the information of a pending withdrawal request\"},\"initialize(string,string)\":{\"notice\":\"Initializes the Cooler contract\"},\"pendingWithdrawals(address)\":{\"notice\":\"Returns the amount of pending (scheduled) withdrawals for a given eToken\"},\"policyPool()\":{\"notice\":\"Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\"},\"scheduleWithdrawal(address,uint40,uint256)\":{\"notice\":\"Schedules a withdrawal\"},\"scheduleWithdrawalWithPermit(address,uint40,uint256,uint256,uint8,bytes32,bytes32)\":{\"notice\":\"Schedules a withdrawal using EIP-2612 permit for gasless approval\"},\"setCooldownPeriod(address,uint40)\":{\"notice\":\"Sets the cooldown period for a specific EToken\"}},\"notice\":\"This contract handles the cooldown required before withdrawal of eTokens\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/Cooler.sol\":\"Cooler\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol\":{\"keccak256\":\"0xb813cb6a31231d48456f46d35a82ff89a643e03d015027e0a34dd3a611370b69\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6ac2aa7e379a6804c0814ad4354c8626bceac3c37d641fc0105f666ebdd1aea7\",\"dweb:/ipfs/QmQ1a69VXEfVKP3Vgwk9CGd5surx3YQX5eNDvXDSf6aspG\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol\":{\"keccak256\":\"0x842cc1aad7ab31fce63200401deddce3a84f73fef96b3a4841b310b09ab9aa7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://90c6d93642c21475ba6240ad13a8d75f5df215e0363efc4cbe13f71e779d38d2\",\"dweb:/ipfs/QmXCGRb3aYGf9js21UfV7tATAo26o3gWRgM539WamvniP6\"]},\"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol\":{\"keccak256\":\"0x1149f6c3445a564f5b9cd27c2dc85c6bcaed254c67cb57a416bc7ca1f667ad1f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8a72ecd1a82f8ece4d83280a4920a6269e83bec971a27d0ce2e3a21d2ae08450\",\"dweb:/ipfs/QmSn68D8stm6b7m4nZndhTqincMQdoTqNrRXmAReV9Xb2r\"]},\"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol\":{\"keccak256\":\"0x16b88aca1f1c3aa38783416d86207ce6fe574fcd1993dfe54403b5c8b6c74224\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://29f3c5c687fe0d87742b013872f495e67656910530c916a69873860dc8fea812\",\"dweb:/ipfs/QmbspfQXmbhCANqqiunUFm9fiVVQwPet2YKQoJ58km442Y\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x53befc41288eaa87edcd3a7be7e8475a32e44c6a29f9bf52fae789781301d9ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a1d7fab53c4ceaf42391b83d9b36d7e9cc524a8da125cffdcd32c56560f9d1c9\",\"dweb:/ipfs/QmaRZdVhQdqNXofeimibkBG65q9GVcXVZEGpycwwX3znC6\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xf78f05f3b8c9f75570e85300d7b4600d7f6f6a198449273f31d44c1641adb46f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e28b872613b45e0e801d4995aa4380be2531147bfe2d85c1d6275f1de514fba3\",\"dweb:/ipfs/QmeeFcfShHYaS3BdgVj78nxR28ZaVUwbvr66ud8bT6kzw9\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0x88cd5e3bee2e8c36b8d9058fbcaa81ad5704281b25634122234b55ea853d8055\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8dc7e7ab5b8ea36c15027ab04221b05d1c970f47a53e9fd47ead8ca665d49c7e\",\"dweb:/ipfs/Qmeeph7fsDyfRr8vb2L8KcDEmKPb224TAayMvgqgGAnqpL\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0xf46268c37522320bb2119a5a394bc5c739a95c0c574c8d08e8c643f4d06e5c76\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://517e4b295f35b9947c72ad7379a6089439ece7bb6f4a2ea0a159da13046c039e\",\"dweb:/ipfs/QmZXzkSfLUbvujig3zVbpDHykpHhqLpvQtdiN3B5j4TA3u\"]},\"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol\":{\"keccak256\":\"0xc7efbc23214ad7dced8bf2249460f4bda114d57f6a0079f84040654280f455bd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1f5bd44efca8c8c0d74439e7b808d1f9c4af1df78f91fef8e8bbca8104645435\",\"dweb:/ipfs/Qmb42XSd8MKsEitp42sZkSFGqDRigk6QgGXtiJyJqUZJJ6\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\":{\"keccak256\":\"0xc4c674aab142650b93c3fdf27452a07c0284aed63a86b54b4c4792e8f0f333fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://47778fa8fbb0bd759b5859b65193de857778c6112af8d5421acb11e68ed04d62\",\"dweb:/ipfs/QmakrnC3iS3t4UeRReEvWfhxgB3sAyPoz6LSkdK63UxiYb\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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\"]},\"contracts/Cooler.sol\":{\"keccak256\":\"0xf4a859cae3424c71f1cb6684be90c02d94185881718565af79cb8a53f6b0b5d3\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://ce4408c68dd440798bcf5996e27e648db817389058cf0998bb93a4da29be25b6\",\"dweb:/ipfs/Qmbho4ETgA2ctZT1euvmGhCgZEyzZhTsx5sraAzwb9XUfg\"]},\"contracts/ETKLib.sol\":{\"keccak256\":\"0x1f2c5adf2d5b9fca6f7301665626ae376b5ade24e7045c45dfaacd14017c2bf8\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://74004d07838e749bb55a27225238e977186b7629c3a0d2fb3e129e6e2ec7d912\",\"dweb:/ipfs/QmXyMY8CnZaL9eDMYiYbQLhQpiWp4qrypXF9xgUVyx9mxr\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/PolicyPool.sol\":{\"keccak256\":\"0x861be196cac3ce38853eeb91c87dd6b12234f2da892761ffe3703d7762772594\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://802ebcb018ae898c1686109ea96bb45f0f64e83df9a4c090d49b425e95a4424d\",\"dweb:/ipfs/QmUQUZo6XxoFgrjoBRSa7sUhJJMawq8PXXagWjAcHNenv1\"]},\"contracts/PolicyPoolComponent.sol\":{\"keccak256\":\"0x59be0e577af81ab215ac850da84692d6ae7a465917701260f390bc92240c4707\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://c55648f183f32e74d6d83cfc2a8eb606c75a6c3bc598e8ec2a38f9fb3b676f8c\",\"dweb:/ipfs/QmdDFuZz6cn9ywUuxv4bTY3STMWQMWTAzitbocywFMoByb\"]},\"contracts/interfaces/ICooler.sol\":{\"keccak256\":\"0xd2f546d8a15bbc201e1811a050fce315eb72016c4360bf31066a8041f4159cae\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://3a974feacac260a76883322b18e3f0251aa3430f24bab1b7b4c21853a3498a9a\",\"dweb:/ipfs/QmQFixSYSFiJem2UYPJa2ky2eorFNXBncDZ1yrxPMRK66F\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/IPolicyHolder.sol\":{\"keccak256\":\"0xedfdb90379573eaab3213424a517042dd7f015cdb4ee734859609a019275797e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://321e424f1c9afd92e0cb38e4131ce30aaf7df551388b6d1d1abe60ea9dcd0e8a\",\"dweb:/ipfs/QmfFraGLbyy67ugA373JcZfPf7J34uzMHXbyBjoH9enWsK\"]},\"contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":25608,"contract":"contracts/Cooler.sol:Cooler","label":"__gap","offset":0,"slot":"0","type":"t_array(t_uint256)50_storage"},{"astId":18162,"contract":"contracts/Cooler.sol:Cooler","label":"_withdrawalRequests","offset":0,"slot":"50","type":"t_mapping(t_uint256,t_struct(WithdrawalRequest)18156_storage)"},{"astId":18168,"contract":"contracts/Cooler.sol:Cooler","label":"_cooldownPeriods","offset":0,"slot":"51","type":"t_mapping(t_contract(IEToken)28869,t_uint40)"},{"astId":18174,"contract":"contracts/Cooler.sol:Cooler","label":"_pendingWithdrawals","offset":0,"slot":"52","type":"t_mapping(t_contract(IEToken)28869,t_uint256)"},{"astId":18177,"contract":"contracts/Cooler.sol:Cooler","label":"_nextTokenId","offset":0,"slot":"53","type":"t_uint256"}],"types":{"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_contract(IEToken)28869":{"encoding":"inplace","label":"contract IEToken","numberOfBytes":"20"},"t_mapping(t_contract(IEToken)28869,t_uint256)":{"encoding":"mapping","key":"t_contract(IEToken)28869","label":"mapping(contract IEToken => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_mapping(t_contract(IEToken)28869,t_uint40)":{"encoding":"mapping","key":"t_contract(IEToken)28869","label":"mapping(contract IEToken => uint40)","numberOfBytes":"32","value":"t_uint40"},"t_mapping(t_uint256,t_struct(WithdrawalRequest)18156_storage)":{"encoding":"mapping","key":"t_uint256","label":"mapping(uint256 => struct Cooler.WithdrawalRequest)","numberOfBytes":"32","value":"t_struct(WithdrawalRequest)18156_storage"},"t_struct(WithdrawalRequest)18156_storage":{"encoding":"inplace","label":"struct Cooler.WithdrawalRequest","members":[{"astId":18146,"contract":"contracts/Cooler.sol:Cooler","label":"scaleAtRequest","offset":0,"slot":"0","type":"t_userDefinedValueType(Scale)18847"},{"astId":18149,"contract":"contracts/Cooler.sol:Cooler","label":"etk","offset":12,"slot":"0","type":"t_contract(IEToken)28869"},{"astId":18151,"contract":"contracts/Cooler.sol:Cooler","label":"requestedAmount","offset":0,"slot":"1","type":"t_uint128"},{"astId":18153,"contract":"contracts/Cooler.sol:Cooler","label":"requestedAt","offset":16,"slot":"1","type":"t_uint40"},{"astId":18155,"contract":"contracts/Cooler.sol:Cooler","label":"expiration","offset":21,"slot":"1","type":"t_uint40"}],"numberOfBytes":"64"},"t_uint128":{"encoding":"inplace","label":"uint128","numberOfBytes":"16"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint40":{"encoding":"inplace","label":"uint40","numberOfBytes":"5"},"t_userDefinedValueType(Scale)18847":{"encoding":"inplace","label":"ETKLib.Scale","numberOfBytes":"12"}}}}},"contracts/ETKLib.sol":{"ETKLib":{"abi":[{"inputs":[{"internalType":"uint256","name":"rejectedScale","type":"uint256"}],"name":"ScaleTooSmall","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212200081ad1efec09061fa58e2c3fe4e918f86dc38508e78d99ce9595546f993a49e64736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 STOP DUP2 0xAD 0x1E INVALID 0xC0 SWAP1 PUSH2 0xFA58 0xE2 0xC3 INVALID 0x4E SWAP2 DUP16 DUP7 0xDC CODESIZE POP DUP15 PUSH25 0xD99CE9595546F993A49E64736F6C634300081E003300000000 ","sourceMap":"313:15273:68:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;313:15273:68;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212200081ad1efec09061fa58e2c3fe4e918f86dc38508e78d99ce9595546f993a49e64736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 STOP DUP2 0xAD 0x1E INVALID 0xC0 SWAP1 PUSH2 0xFA58 0xE2 0xC3 INVALID 0x4E SWAP2 DUP16 DUP7 0xDC CODESIZE POP DUP15 PUSH25 0xD99CE9595546F993A49E64736F6C634300081E003300000000 ","sourceMap":"313:15273:68:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"rejectedScale\",\"type\":\"uint256\"}],\"name\":\"ScaleTooSmall\",\"type\":\"error\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"kind\":\"dev\",\"methods\":{},\"title\":\"ETKLib\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"Library with different datatypes and utils used by the eToken contract\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/ETKLib.sol\":\"ETKLib\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/ETKLib.sol\":{\"keccak256\":\"0x1f2c5adf2d5b9fca6f7301665626ae376b5ade24e7045c45dfaacd14017c2bf8\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://74004d07838e749bb55a27225238e977186b7629c3a0d2fb3e129e6e2ec7d912\",\"dweb:/ipfs/QmXyMY8CnZaL9eDMYiYbQLhQpiWp4qrypXF9xgUVyx9mxr\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/EToken.sol":{"EToken":{"abi":[{"inputs":[{"internalType":"contract IPolicyPool","name":"policyPool_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"BorrowerAlreadyAdded","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"DepositNotWhitelisted","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":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","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":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"uint256","name":"requested","type":"uint256"},{"internalType":"uint256","name":"maxWithdraw","type":"uint256"}],"name":"ExceedsMaxWithdraw","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"InvalidBorrower","type":"error"},{"inputs":[{"internalType":"contract ICooler","name":"cooler","type":"address"}],"name":"InvalidCooler","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[{"internalType":"enum IEToken.Parameter","name":"parameter","type":"uint8"}],"name":"InvalidParameter","type":"error"},{"inputs":[{"internalType":"contract ILPWhitelist","name":"whitelist","type":"address"}],"name":"InvalidWhitelist","type":"error"},{"inputs":[],"name":"InvalidYieldVault","type":"error"},{"inputs":[],"name":"NoZeroPolicyPool","type":"error"},{"inputs":[{"internalType":"uint256","name":"required","type":"uint256"},{"internalType":"uint256","name":"available","type":"uint256"}],"name":"NotEnoughCash","type":"error"},{"inputs":[{"internalType":"uint256","name":"required","type":"uint256"},{"internalType":"uint256","name":"available","type":"uint256"}],"name":"NotEnoughScrFunds","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"OnlyBorrower","type":"error"},{"inputs":[],"name":"OnlyPolicyPool","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ReserveInvalidReceiver","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"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[{"internalType":"uint256","name":"rejectedScale","type":"uint256"}],"name":"ScaleTooSmall","type":"error"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferNotWhitelisted","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[],"name":"UpgradeCannotChangePolicyPool","type":"error"},{"inputs":[{"internalType":"uint256","name":"actualUtilization","type":"uint256"},{"internalType":"uint256","name":"minUtilization","type":"uint256"}],"name":"UtilizationRateTooLow","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"WithdrawalNotWhitelisted","type":"error"},{"inputs":[{"internalType":"contract ICooler","name":"cooler","type":"address"}],"name":"WithdrawalsRequireCooldown","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":"uint256","name":"policyId","type":"uint256"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CoCRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract ICooler","name":"oldCooler","type":"address"},{"indexed":false,"internalType":"contract ICooler","name":"newCooler","type":"address"}],"name":"CoolerChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"distributedProfit","type":"uint256"}],"name":"ETokensRedistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"int256","name":"earnings","type":"int256"}],"name":"EarningsRecorded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"ErrorIgnoredDeinvestingVault","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"borrower","type":"address"}],"name":"InternalBorrowerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"defaultedDebt","type":"uint256"}],"name":"InternalBorrowerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountAsked","type":"uint256"}],"name":"InternalLoan","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"InternalLoanRepaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum IEToken.Parameter","name":"param","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"ParameterChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"policyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"SCRLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"policyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"int256","name":"adjustment","type":"int256"}],"name":"SCRUnlocked","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":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract ILPWhitelist","name":"oldWhitelist","type":"address"},{"indexed":false,"internalType":"contract ILPWhitelist","name":"newWhitelist","type":"address"}],"name":"WhitelistChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":true,"internalType":"contract IERC4626","name":"newVault","type":"address"},{"indexed":false,"internalType":"bool","name":"forced","type":"bool"}],"name":"YieldVaultChanged","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"addBorrower","outputs":[],"stateMutability":"nonpayable","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":[],"name":"cooler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositIntoYieldVault","outputs":[],"stateMutability":"nonpayable","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":[],"name":"fundsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundsAvailableToLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"updated","type":"bool"}],"name":"getCurrentScale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"getLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getScaledUserBalanceAndSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"maxUtilizationRate_","type":"uint256"},{"internalType":"uint256","name":"internalLoanInterestRate_","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"internalLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"internalLoanInterestRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"investedInYV","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityRequirement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"},{"internalType":"uint256","name":"scrAmount","type":"uint256"},{"internalType":"uint256","name":"policyInterestRate","type":"uint256"}],"name":"lockScr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxNegativeAdjustment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxUtilizationRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minUtilizationRate","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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recordEarnings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redistribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"removeBorrower","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"onBehalfOf","type":"address"}],"name":"repayLoan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"scaledBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"scaledTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"scr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"scrInterestRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ICooler","name":"newCooler","type":"address"}],"name":"setCooler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum IEToken.Parameter","name":"param","type":"uint8"},{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setParam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ILPWhitelist","name":"lpWhitelist_","type":"address"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC4626","name":"newYieldVault","type":"address"},{"internalType":"bool","name":"force","type":"bool"}],"name":"setYieldVault","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenInterestRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalWithdrawable","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":"policyId","type":"uint256"},{"internalType":"uint256","name":"scrAmount","type":"uint256"},{"internalType":"uint256","name":"policyInterestRate","type":"uint256"},{"internalType":"int256","name":"adjustment","type":"int256"}],"name":"unlockScr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"},{"internalType":"uint256","name":"scrAmount","type":"uint256"},{"internalType":"uint256","name":"policyInterestRate","type":"uint256"},{"internalType":"int256","name":"adjustment","type":"int256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"refundAmount","type":"uint256"}],"name":"unlockScrWithRefund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"utilizationRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelist","outputs":[{"internalType":"contract ILPWhitelist","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"receiver","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFromYieldVault","outputs":[{"internalType":"uint256","name":"deinvested","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yieldVault","outputs":[{"internalType":"contract IERC4626","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_20121":{"entryPoint":null,"id":20121,"parameterSlots":1,"returnSlots":0},"@_25524":{"entryPoint":null,"id":25524,"parameterSlots":1,"returnSlots":0},"@_27434":{"entryPoint":null,"id":27434,"parameterSlots":1,"returnSlots":0},"@_disableInitializers_7172":{"entryPoint":119,"id":7172,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_7217":{"entryPoint":null,"id":7217,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_7203":{"entryPoint":null,"id":7203,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory":{"entryPoint":297,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:532:101","nodeType":"YulBlock","src":"0:532:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"116:209:101","nodeType":"YulBlock","src":"116:209:101","statements":[{"body":{"nativeSrc":"162:16:101","nodeType":"YulBlock","src":"162:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"171:1:101","nodeType":"YulLiteral","src":"171:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"174:1:101","nodeType":"YulLiteral","src":"174:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"164:6:101","nodeType":"YulIdentifier","src":"164:6:101"},"nativeSrc":"164:12:101","nodeType":"YulFunctionCall","src":"164:12:101"},"nativeSrc":"164:12:101","nodeType":"YulExpressionStatement","src":"164:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"137:7:101","nodeType":"YulIdentifier","src":"137:7:101"},{"name":"headStart","nativeSrc":"146:9:101","nodeType":"YulIdentifier","src":"146:9:101"}],"functionName":{"name":"sub","nativeSrc":"133:3:101","nodeType":"YulIdentifier","src":"133:3:101"},"nativeSrc":"133:23:101","nodeType":"YulFunctionCall","src":"133:23:101"},{"kind":"number","nativeSrc":"158:2:101","nodeType":"YulLiteral","src":"158:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"129:3:101","nodeType":"YulIdentifier","src":"129:3:101"},"nativeSrc":"129:32:101","nodeType":"YulFunctionCall","src":"129:32:101"},"nativeSrc":"126:52:101","nodeType":"YulIf","src":"126:52:101"},{"nativeSrc":"187:29:101","nodeType":"YulVariableDeclaration","src":"187:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"206:9:101","nodeType":"YulIdentifier","src":"206:9:101"}],"functionName":{"name":"mload","nativeSrc":"200:5:101","nodeType":"YulIdentifier","src":"200:5:101"},"nativeSrc":"200:16:101","nodeType":"YulFunctionCall","src":"200:16:101"},"variables":[{"name":"value","nativeSrc":"191:5:101","nodeType":"YulTypedName","src":"191:5:101","type":""}]},{"body":{"nativeSrc":"279:16:101","nodeType":"YulBlock","src":"279:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"288:1:101","nodeType":"YulLiteral","src":"288:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"291:1:101","nodeType":"YulLiteral","src":"291:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"281:6:101","nodeType":"YulIdentifier","src":"281:6:101"},"nativeSrc":"281:12:101","nodeType":"YulFunctionCall","src":"281:12:101"},"nativeSrc":"281:12:101","nodeType":"YulExpressionStatement","src":"281:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"238:5:101","nodeType":"YulIdentifier","src":"238:5:101"},{"arguments":[{"name":"value","nativeSrc":"249:5:101","nodeType":"YulIdentifier","src":"249:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"264:3:101","nodeType":"YulLiteral","src":"264:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"269:1:101","nodeType":"YulLiteral","src":"269:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"260:3:101","nodeType":"YulIdentifier","src":"260:3:101"},"nativeSrc":"260:11:101","nodeType":"YulFunctionCall","src":"260:11:101"},{"kind":"number","nativeSrc":"273:1:101","nodeType":"YulLiteral","src":"273:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"256:3:101","nodeType":"YulIdentifier","src":"256:3:101"},"nativeSrc":"256:19:101","nodeType":"YulFunctionCall","src":"256:19:101"}],"functionName":{"name":"and","nativeSrc":"245:3:101","nodeType":"YulIdentifier","src":"245:3:101"},"nativeSrc":"245:31:101","nodeType":"YulFunctionCall","src":"245:31:101"}],"functionName":{"name":"eq","nativeSrc":"235:2:101","nodeType":"YulIdentifier","src":"235:2:101"},"nativeSrc":"235:42:101","nodeType":"YulFunctionCall","src":"235:42:101"}],"functionName":{"name":"iszero","nativeSrc":"228:6:101","nodeType":"YulIdentifier","src":"228:6:101"},"nativeSrc":"228:50:101","nodeType":"YulFunctionCall","src":"228:50:101"},"nativeSrc":"225:70:101","nodeType":"YulIf","src":"225:70:101"},{"nativeSrc":"304:15:101","nodeType":"YulAssignment","src":"304:15:101","value":{"name":"value","nativeSrc":"314:5:101","nodeType":"YulIdentifier","src":"314:5:101"},"variableNames":[{"name":"value0","nativeSrc":"304:6:101","nodeType":"YulIdentifier","src":"304:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory","nativeSrc":"14:311:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"82:9:101","nodeType":"YulTypedName","src":"82:9:101","type":""},{"name":"dataEnd","nativeSrc":"93:7:101","nodeType":"YulTypedName","src":"93:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"105:6:101","nodeType":"YulTypedName","src":"105:6:101","type":""}],"src":"14:311:101"},{"body":{"nativeSrc":"429:101:101","nodeType":"YulBlock","src":"429:101:101","statements":[{"nativeSrc":"439:26:101","nodeType":"YulAssignment","src":"439:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"451:9:101","nodeType":"YulIdentifier","src":"451:9:101"},{"kind":"number","nativeSrc":"462:2:101","nodeType":"YulLiteral","src":"462:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"447:3:101","nodeType":"YulIdentifier","src":"447:3:101"},"nativeSrc":"447:18:101","nodeType":"YulFunctionCall","src":"447:18:101"},"variableNames":[{"name":"tail","nativeSrc":"439:4:101","nodeType":"YulIdentifier","src":"439:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"481:9:101","nodeType":"YulIdentifier","src":"481:9:101"},{"arguments":[{"name":"value0","nativeSrc":"496:6:101","nodeType":"YulIdentifier","src":"496:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"512:2:101","nodeType":"YulLiteral","src":"512:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"516:1:101","nodeType":"YulLiteral","src":"516:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"508:3:101","nodeType":"YulIdentifier","src":"508:3:101"},"nativeSrc":"508:10:101","nodeType":"YulFunctionCall","src":"508:10:101"},{"kind":"number","nativeSrc":"520:1:101","nodeType":"YulLiteral","src":"520:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"504:3:101","nodeType":"YulIdentifier","src":"504:3:101"},"nativeSrc":"504:18:101","nodeType":"YulFunctionCall","src":"504:18:101"}],"functionName":{"name":"and","nativeSrc":"492:3:101","nodeType":"YulIdentifier","src":"492:3:101"},"nativeSrc":"492:31:101","nodeType":"YulFunctionCall","src":"492:31:101"}],"functionName":{"name":"mstore","nativeSrc":"474:6:101","nodeType":"YulIdentifier","src":"474:6:101"},"nativeSrc":"474:50:101","nodeType":"YulFunctionCall","src":"474:50:101"},"nativeSrc":"474:50:101","nodeType":"YulExpressionStatement","src":"474:50:101"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"330:200:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"398:9:101","nodeType":"YulTypedName","src":"398:9:101","type":""},{"name":"value0","nativeSrc":"409:6:101","nodeType":"YulTypedName","src":"409:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"420:4:101","nodeType":"YulTypedName","src":"420:4:101","type":""}],"src":"330:200:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(64, 1), 1)))\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60c060405230608052348015610013575f5ffd5b506040516153a03803806153a083398101604081905261003291610129565b80806001600160a01b03811661005b57604051636b23cf0160e01b815260040160405180910390fd5b610063610077565b6001600160a01b031660a052506101569050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100c75760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101265780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b5f60208284031215610139575f5ffd5b81516001600160a01b038116811461014f575f5ffd5b9392505050565b60805160a0516151dc6101c45f395f818161059e01528181610ee7015281816111a10152818161139601528181611a0501528181611bde0152818161254f015281816128d9015281816129e20152613f6501525f81816131460152818161316f01526134e001526151dc5ff3fe608060405260043610610371575f3560e01c80637d919a97116101c8578063ad3cb1cc116100fd578063d17e6c931161009d578063dfcb48bd1161006d578063dfcb48bd146109ce578063e3a8e29c146109e2578063e5a6b10f14610a01578063ee01a18314610a15575f5ffd5b8063d17e6c9314610952578063d336078c14610971578063d505accf14610990578063dd62ed3e146109af575f5ffd5b8063c1cca2b3116100d8578063c1cca2b3146108e3578063c3df9dac14610902578063cda4bcc214610921578063cf6a9a9414610935575f5ffd5b8063ad3cb1cc14610882578063b1bf962d146108b2578063ba4e8df5146108cf575f5ffd5b80639d90724d11610168578063a227dc4111610143578063a227dc4114610808578063a7f8a5e214610827578063a9059cbb14610844578063ac860f7414610863575f5ffd5b80639d90724d146107b1578063a08f2203146107d5578063a0ce552d146107e9575f5ffd5b8063854cff2f116101a3578063854cff2f14610742578063918344d31461076157806393e59dc11461078057806395d89b411461079d575f5ffd5b80637d919a97146106e85780637ecebe00146106fc57806384b0196e1461071b575f5ffd5b806333481fc9116102a95780634ffcda8c116102495780636fe0e395116102195780636fe0e3951461066c57806370a082311461068b57806376c7fc55146106aa57806379d989fb146106c9575f5ffd5b80634ffcda8c1461061157806352d1902d146106305780636c321c8a146106445780636c6f454214610658575f5ffd5b80634d15eb03116102845780634d15eb03146105905780634eb978a4146105d65780634f1ef286146105ea5780634fe0bd1e146105fd575f5ffd5b806333481fc91461053e5780633644e5151461055d5780633ad2820b14610571575f5ffd5b806318160ddd1161031457806323b872dd116102ef57806323b872dd146104bb57806323e103a8146104da5780632e2d2984146104f9578063313ce56714610518575f5ffd5b806318160ddd14610467578063194448e51461047b5780631da24f3e1461049c575f5ffd5b8063095ea7b31161034f578063095ea7b3146103ec5780630afbcdc91461040b578063159ec2df1461043f57806316db000f14610453575f5ffd5b806301ffc9a7146103755780630600a865146103a957806306fdde03146103cb575b5f5ffd5b348015610380575f5ffd5b5061039461038f36600461485b565b610a29565b60405190151581526020015b60405180910390f35b3480156103b4575f5ffd5b506103bd610a8a565b6040519081526020016103a0565b3480156103d6575f5ffd5b506103df610ae5565b6040516103a091906148b0565b3480156103f7575f5ffd5b506103946104063660046148d6565b610b8a565b348015610416575f5ffd5b5061042a610425366004614900565b610ba1565b604080519283526020830191909152016103a0565b34801561044a575f5ffd5b506103bd610bc3565b34801561045e575f5ffd5b506103bd610c02565b348015610472575f5ffd5b506103bd610c24565b348015610486575f5ffd5b5061049a610495366004614928565b610c52565b005b3480156104a7575f5ffd5b506103bd6104b6366004614900565b610eac565b3480156104c6575f5ffd5b506103946104d536600461495f565b610eb6565b3480156104e5575f5ffd5b506103bd6104f436600461499d565b610edb565b348015610504575f5ffd5b5061049a6105133660046149ed565b611196565b348015610523575f5ffd5b5061052c611393565b60405160ff90911681526020016103a0565b348015610549575f5ffd5b506103bd610558366004614900565b611473565b348015610568575f5ffd5b506103bd6114f5565b34801561057c575f5ffd5b5061049a61058b366004614a2c565b6114fe565b34801561059b575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020016103a0565b3480156105e1575f5ffd5b5061049a6115a4565b61049a6105f8366004614b08565b6116d4565b348015610608575f5ffd5b506103bd6116f3565b34801561061c575f5ffd5b5061049a61062b366004614b68565b611707565b34801561063b575f5ffd5b506103bd61186a565b34801561064f575f5ffd5b506103bd611885565b348015610663575f5ffd5b506103bd6118b6565b348015610677575f5ffd5b5061049a610686366004614baf565b6118c9565b348015610696575f5ffd5b506103bd6106a5366004614900565b6119e1565b3480156106b5575f5ffd5b5061049a6106c4366004614900565b6119fa565b3480156106d4575f5ffd5b506103bd6106e3366004614c23565b611ade565b3480156106f3575f5ffd5b506032546103bd565b348015610707575f5ffd5b506103bd610716366004614900565b611b18565b348015610726575f5ffd5b5061072f611b22565b6040516103a09796959493929190614c3e565b34801561074d575f5ffd5b5061049a61075c366004614900565b611bcb565b34801561076c575f5ffd5b5061049a61077b366004614cd4565b611d06565b34801561078b575f5ffd5b506067546001600160a01b03166105be565b3480156107a8575f5ffd5b506103df611e50565b3480156107bc575f5ffd5b50606554600160801b90046001600160801b03166103bd565b3480156107e0575f5ffd5b506103bd611e8e565b3480156107f4575f5ffd5b5061049a610803366004614cf7565b611f81565b348015610813575f5ffd5b5061049a610822366004614d0e565b611fd4565b348015610832575f5ffd5b506068546001600160a01b03166105be565b34801561084f575f5ffd5b5061039461085e3660046148d6565b612026565b34801561086e575f5ffd5b5061049a61087d366004614cf7565b612033565b34801561088d575f5ffd5b506103df604051806040016040528060058152602001640352e302e360dc1b81525081565b3480156108bd575f5ffd5b506064546001600160801b03166103bd565b3480156108da575f5ffd5b506103bd6121b9565b3480156108ee575f5ffd5b5061049a6108fd366004614d3d565b6121d2565b34801561090d575f5ffd5b506103bd61091c366004614cd4565b6123d6565b34801561092c575f5ffd5b506103bd612523565b348015610940575f5ffd5b506069546001600160a01b03166105be565b34801561095d575f5ffd5b5061049a61096c366004614900565b61253c565b34801561097c575f5ffd5b506103bd61098b366004614cf7565b612677565b34801561099b575f5ffd5b5061049a6109aa366004614d6a565b612717565b3480156109ba575f5ffd5b506103bd6109c9366004614dd6565b61286c565b3480156109d9575f5ffd5b506103bd6128b5565b3480156109ed575f5ffd5b5061049a6109fc366004614900565b6128ce565b348015610a0c575f5ffd5b506105be6129df565b348015610a20575f5ffd5b506103bd612a60565b5f610a3382612a79565b80610a4e57506001600160e01b031982166336372b0760e01b145b80610a6957506001600160e01b0319821663a219a02560e01b145b80610a8457506001600160e01b03198216636d5136b160e11b145b92915050565b5f5f610ab9610a976121b9565b670de0b6b3a7640000610ab26065546001600160801b031690565b9190612aae565b90505f610ac4610c24565b905081811015610ad4575f610ade565b610ade8282614e16565b9250505090565b60605f5f5160206151475f395f51905f525b9050806003018054610b0890614e29565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3490614e29565b8015610b7f5780601f10610b5657610100808354040283529160200191610b7f565b820191905f5260205f20905b815481529060010190602001808311610b6257829003601f168201915b505050505091505090565b5f33610b97818585612b5e565b5060019392505050565b5f5f610bac83612b6b565b60645490946001600160801b039091169350915050565b5f5f610bcd610c24565b90508015610bfa57606554610bf5906001600160801b03600160801b82048116911683612aae565b610bfc565b5f5b91505090565b5f610c0d6064612b9b565b610c15610c24565b610c1f9190614e16565b905090565b606480545f91610c1f916001600160801b031690610c43906065612bbe565b6001600160601b031690612c3a565b5f5f610c5c6129df565b90506001600160a01b0384161580610ce45750806001600160a01b0316846001600160a01b03166338d52e0f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cb5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd99190614e61565b6001600160a01b0316145b610d0157604051638959269160e01b815260040160405180910390fd5b5f610d146068546001600160a01b031690565b90505f6001600160a01b03821615610e29576040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610d6a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d8e9190614e7c565b90508015610e27578515610daf57610da68382612c58565b95509150610e27565b604051635d043b2960e11b815260048101829052306024820181905260448201526001600160a01b0384169063ba087652906064016020604051808303815f875af1158015610e00573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e249190614e7c565b91505b505b606880546001600160a01b0319166001600160a01b038816179055610e5a60325482610e559190614e93565b612d9b565b5f60325560405184151581526001600160a01b0380881691908416907f243f9479bbdaf9f3395e726975293ee3724f3819f4322a018c98afb9de70a1e0906020015b60405180910390a3505050505050565b5f610a8482612b6b565b5f33610ec3858285612db0565b610ece858585612e0e565b60019150505b9392505050565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f255760405163799e780f60e01b815260040160405180910390fd5b5f610f386068546001600160a01b031690565b6001600160a01b031614610f4e57610f4e6115a4565b5f610f68610f5b856119e1565b610f63610a8a565b612e6b565b90505f198603610f76578095505b855f03610f86575f91505061118e565b6069546001600160a01b03161580610fab57506069546001600160a01b038681169116145b8061102d5750606954604051632e704af760e11b81526001600160a01b0390911690635ce095ee90610fe590309088908b90600401614eb2565b602060405180830381865afa158015611000573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110249190614ed6565b64ffffffffff16155b6069546001600160a01b03169061106857604051632bc34ba360e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b508581808211156110955760405163087da9fd60e01b81526004810192909252602482015260440161105f565b50506067546001600160a01b0316158061111d5750606754604051639051c76360e01b81526001600160a01b0390911690639051c763906110de90309088908b90600401614eb2565b602060405180830381865afa1580156110f9573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061111d9190614efa565b8487909161114f5760405163d38a933960e01b81526001600160a01b039092166004830152602482015260440161105f565b5050836001600160a01b0316856001600160a01b03161461117557611175848688612db0565b61117f8487612e7a565b6111898387612eae565b859150505b949350505050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146111df5760405163799e780f60e01b815260040160405180910390fd5b6067546001600160a01b0316158061130857506067546040516337ee20dd60e01b81526001600160a01b03909116906337ee20dd9061122690309086908890600401614eb2565b602060405180830381865afa158015611241573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112659190614efa565b80156113085750806001600160a01b0316826001600160a01b031614806113085750606754604051635fcdca3760e01b81523060048201526001600160a01b03848116602483015283811660448301526064820186905290911690635fcdca3790608401602060405180830381865afa1580156112e4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113089190614efa565b8284909161133a576040516306d6c99360e51b81526001600160a01b039092166004830152602482015260440161105f565b50506113468184612f67565b61134e612a60565b611356611885565b101561138e57611364611885565b61136c612a60565b6040516362464ab760e01b81526004810192909252602482015260440161105f565b505050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114149190614e61565b6001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561144f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c1f9190614f15565b6001600160a01b0381165f90815260666020526040812080548390600160e01b900463ffffffff166114c457604051633d56093960e21b81526001600160a01b03909116600482015260240161105f565b508054610ed4906001600160801b03166114e66114df612523565b8490612f9b565b6001600160601b031690613035565b5f610c1f613052565b335f81815260666020526040902054600160e01b900463ffffffff1661154357604051634e63eda360e11b81526001600160a01b03909116600482015260240161105f565b506115508686868661305b565b801561159c576115608282612eae565b816001600160a01b0316867fc8e60e828d888d5921f45ececd1bc138a29c2b6aacc8ab8a762f3f096492c56183604051610e9c91815260200190565b505050505050565b5f6115b76068546001600160a01b031690565b90506001600160a01b0381166115e057604051638959269160e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201525f906001600160a01b038316906307a2d13a9082906370a0823190602401602060405180830381865afa15801561162c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116509190614e7c565b6040518263ffffffff1660e01b815260040161166e91815260200190565b602060405180830381865afa158015611689573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116ad9190614e7c565b90505f603254826116be9190614e93565b9050801561138e57603282905561138e81612d9b565b6116dc61313b565b6116e5826131e1565b6116ef82826131ea565b5050565b5f610c1f6116ff610c24565b6065906132a6565b335f81815260666020526040902054600160e01b900463ffffffff1661174c57604051634e63eda360e11b81526001600160a01b03909116600482015260240161105f565b50611755611e8e565b8211156117875781611765611e8e565b6040516308f31df360e01b81526004810192909252602482015260440161105f565b61179460645f60656132ce565b80516064805460208401516040909401516001600160801b039093166001600160e01b031990911617600160801b6001600160601b0390941693909302929092176001600160e01b0316600160e01b63ffffffff928316021790915561180190606590849084906133c416565b80516020909101516001600160801b03908116600160801b0291161760655560405183907f266dc24a75ea4c7d7c74f89a78dc3a44307babf0b588230497189fc46d71693d9061185d9084908690918252602082015260400190565b60405180910390a2505050565b5f6118736134d5565b505f5160206151875f395f51905f5290565b5f5f61188f610c24565b90508015610bfa57610bf5670de0b6b3a764000082610ab26065546001600160801b031690565b5f610c1f6065546001600160801b031690565b5f6118d261351e565b805490915060ff600160401b820416159067ffffffffffffffff165f811580156118f95750825b90505f8267ffffffffffffffff1660011480156119155750303b155b905081158015611923575080155b156119415760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561196b57845460ff60401b1916600160401b1785555b611973613546565b61197d8989613556565b61198689613568565b6119908787613593565b83156119d657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050565b5f610a846119ee83612b6b565b610c4360646065612bbe565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611a435760405163799e780f60e01b815260040160405180910390fd5b806001600160a01b038116611a7757604051633d56093960e21b81526001600160a01b03909116600482015260240161105f565b505f611a8282611473565b6001600160a01b0383165f818152606660205260408082209190915551919250907fe2ebfbed0df9004eae018a4ae91b24baa0cd1d83f495fab6dde3a1493f9dc6c690611ad29084815260200190565b60405180910390a25050565b5f8115611b0057610a84611af460646065612bbe565b6001600160601b031690565b606454600160801b90046001600160601b0316610a84565b5f610a84826135f9565b5f60608082808083815f5160206151675f395f51905f528054909150158015611b4d57506001810154155b611b915760405162461bcd60e51b81526020600482015260156024820152741152540dcc4c8e88155b9a5b9a5d1a585b1a5e9959605a1b604482015260640161105f565b611b99613621565b611ba161365f565b604080515f80825260208201909252600f60f81b9c939b5091995046985030975095509350915050565b6001600160a01b0381161580611c7157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c42573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c669190614e61565b6001600160a01b0316145b8190611c9c57604051637ef0808b60e01b81526001600160a01b03909116600482015260240161105f565b50606754604080516001600160a01b03928316815291831660208301527fdb0a396bdd47d29c2b55a6631f0b286785ea8ed9f585d34c8e32cdb022c3bc82910160405180910390a1606780546001600160a01b0319166001600160a01b0392909216919091179055565b5f611d1082611473565b6001600160a01b0383165f908152606660205260409020909150838211611d4957819350815f14611d4457611d4481613675565b611dd2565b611d5d84611d55612523565b839190613690565b506001600160a01b0384165f908152606660209081526040918290208351815492850151949093015163ffffffff16600160e01b026001600160e01b036001600160601b03909516600160801b026001600160e01b03199093166001600160801b039094169390931791909117929092161790555b835f03611ddf5750505050565b611de8846136cc565b826001600160a01b03167fa1aeb41f04a9a2aa1450e8edd0fa1a0a7971ff65c7bbb7b2ca0379b9327edbaf85604051611e2391815260200190565b60405180910390a2611e4a333086611e396129df565b6001600160a01b0316929190613735565b50505050565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0480546060915f5160206151475f395f51905f5291610b0890614e29565b5f5f611e98610c24565b6069549091506001600160a01b031615611f585760695460405163f3f4370360e01b81523060048201525f916001600160a01b03169063f3f4370390602401602060405180830381865afa158015611ef2573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f169190614e7c565b9050818110611f27575f9150611f52565b611f4f611f348284614e16565b610f63611f3f6128b5565b8590670de0b6b3a7640000612aae565b91505b50611f76565b611f73611f636128b5565b8290670de0b6b3a7640000612aae565b90505b610bfc6065826132a6565b611f8b3382612e7a565b611f9c611f978261376b565b6136cc565b60405181815233907fa17978b5145b36c8c694b15cd193ab32fac45fbb1b2378e56ca71b11a5bc57229060200160405180910390a250565b335f81815260666020526040902054600160e01b900463ffffffff1661201957604051634e63eda360e11b81526001600160a01b03909116600482015260240161105f565b50611e4a8484848461305b565b5f33610b97818585612e0e565b5f6120466068546001600160a01b031690565b90506001600160a01b03811661206f57604051638959269160e01b815260040160405180910390fd5b5f61207861379b565b90505f19830361208a578092506120b9565b8281808211156120b65760405163531309fb60e11b81526004810192909252602482015260440161105f565b50505b8260325f8282546120ca9190614f30565b909155506120d890506129df565b60405163095ea7b360e01b81526001600160a01b03848116600483015260248201869052919091169063095ea7b3906044016020604051808303815f875af1158015612126573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061214a9190614efa565b50604051636e553f6560e01b8152600481018490523060248201526001600160a01b03831690636e553f65906044016020604051808303815f875af1158015612195573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e4a9190614e7c565b6067545f90610c1f90600160a01b900461ffff1661380c565b5f8260038111156121e5576121e5614f43565b0361225a57670b1a2bc2ec500000811015801561220a575067120a871cc00200008111155b829061222a5760405163f8f0178560e01b815260040161105f9190614f77565b5061223481613821565b6067805461ffff92909216600160a01b0261ffff60a01b19909216919091179055612399565b600182600381111561226e5761226e614f43565b036122ce5781670de0b6b3a764000082111561229e5760405163f8f0178560e01b815260040161105f9190614f77565b506122a881613821565b6067805461ffff92909216600160b01b0261ffff60b01b19909216919091179055612399565b60028260038111156122e2576122e2614f43565b036123425781670de0b6b3a76400008211156123125760405163f8f0178560e01b815260040161105f9190614f77565b5061231c81613821565b6067805461ffff92909216600160c01b0261ffff60c01b19909216919091179055612399565b816706f05b59d3b2000082111561236d5760405163f8f0178560e01b815260040161105f9190614f77565b5061237781613821565b6067805461ffff92909216600160d01b0261ffff60d01b199092169190911790555b7feeeae4504d4c033c7da36bf41d8ece7c21842071ca9f9b423f8e8e36483dcd9682826040516123ca929190614f85565b60405180910390a15050565b335f81815260666020526040812054909190600160e01b900463ffffffff1661241e57604051634e63eda360e11b81526001600160a01b03909116600482015260240161105f565b508261242c81610f63610c02565b9350835f0361243c579050610a84565b61245d84612448612523565b335f908152606660205260409020919061383a565b50335f908152606660209081526040918290208351815492850151949093015163ffffffff16600160e01b026001600160e01b036001600160601b03909516600160801b026001600160e01b03199093166001600160801b039094169390931791909117929092161790556124d4611f9785614fa0565b6124de8385612eae565b604080518581526020810183905233917f98697a4799dbd9db66c7168304c43cba77a27a50d2785625e09072e0d91fdd53910160405180910390a261118e8482614e16565b6067545f90610c1f90600160d01b900461ffff1661380c565b6001600160a01b03811615806125e257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125b3573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125d79190614e61565b6001600160a01b0316145b819061260d5760405163f4ae198760e01b81526001600160a01b03909116600482015260240161105f565b50606954604080516001600160a01b03928316815291831660208301527ff9f12db81524e0e7d35f2779daf818e6824509f85b09470f5c1c4d29304a756b910160405180910390a1606980546001600160a01b0319166001600160a01b0392909216919091179055565b5f6126806115a4565b5f6126936068546001600160a01b031690565b90505f1983036127065760405163ce96cb7760e01b81523060048201526001600160a01b0382169063ce96cb7790602401602060405180830381865afa1580156126df573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127039190614e7c565b92505b612710818461386a565b5090919050565b8342111561273b5760405163313c898160e11b81526004810185905260240161105f565b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886127a58c6001600160a01b03165f9081527f5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb006020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090505f6127ff8261391d565b90505f61280e82878787613949565b9050896001600160a01b0316816001600160a01b031614612855576040516325c0072360e11b81526001600160a01b0380831660048301528b16602482015260440161105f565b6128608a8a8a612b5e565b50505050505050505050565b6001600160a01b039182165f9081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b6067545f90610c1f90600160c01b900461ffff1661380c565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146129175760405163799e780f60e01b815260040160405180910390fd5b806001600160a01b03811661294b57604051633d56093960e21b81526001600160a01b03909116600482015260240161105f565b506001600160a01b0381165f90815260666020526040902080548290600160e01b900463ffffffff161561299e57604051630a3e8f9b60e11b81526001600160a01b03909116600482015260240161105f565b506129a881613675565b6040516001600160a01b038316907f66c0f28249c4fc4db79872a4405be78a93f19c65ac9ef2f173867a149065bcf2905f90a25050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a3c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c1f9190614e61565b6067545f90610c1f90600160b01b900461ffff1661380c565b5f6001600160e01b031982166301ffc9a760e01b1480610a8457506001600160e01b03198216634d15eb0360e01b1492915050565b5f5f5f612abb8686613975565b91509150815f03612adf57838181612ad557612ad5614fba565b0492505050610ed4565b818411612af657612af66003851502601118613991565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b61138e83838360016139a2565b5f805f5160206151475f395f51905f525b6001600160a01b039093165f9081526020939093525050604090205490565b80545f90610a84906001600160801b0316620f4240670de0b6b3a7640000613a86565b81545f908190612bdc908490600160e01b900463ffffffff16613abb565b9050805f03612bfe5750508154600160801b90046001600160601b0316610a84565b835461118e90612c22908390670de0b6b3a7640000906001600160801b0316613b07565b8554600160801b90046001600160601b031690613b22565b5f610ed4826001600160601b0385165b670de0b6b3a7640000613b07565b604051636c82bbbf60e11b81523060048201525f9081906001600160a01b0385169063d905777e90602401602060405180830381865afa925050508015612cbc575060408051601f3d908101601f19168201909252612cb991810190614e7c565b60015b15612cd35783811015612cd157600191508093505b505b604051635d043b2960e11b815260048101849052306024820181905260448201526001600160a01b0385169063ba087652906064016020604051808303815f875af1925050508015612d42575060408051601f3d908101601f19168201909252612d3f91810190614e7c565b60015b612d9157836001600160a01b03167f25bce30047860a48c9d8830dbf31873be5434f4d28f14a5808a4ea8e35d0829684604051612d8191815260200190565b60405180910390a2506001612d94565b91505b9250929050565b612da4816136cc565b612dad81613b3e565b50565b5f612dbb848461286c565b90505f19811015611e4a5781811015612e0057604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161105f565b611e4a84848484035f6139a2565b6001600160a01b038316612e3757604051634b637e8f60e11b81525f600482015260240161105f565b6001600160a01b038216612e605760405163ec442f0560e01b81525f600482015260240161105f565b61138e838383613b74565b5f828218828410028218610ed4565b6001600160a01b038216612ea357604051634b637e8f60e11b81525f600482015260240161105f565b6116ef825f83613b74565b816001600160a01b038116612ee257604051636427f27360e11b81526001600160a01b03909116600482015260240161105f565b50805f03612eee575050565b5f612ef761379b565b905081811015612f3a575f612f146068546001600160a01b031690565b90506001600160a01b03811615612f3857612f3881612f338486614e16565b61386a565b505b6001600160a01b038316301461138e5761138e8383612f576129df565b6001600160a01b03169190613dfc565b6001600160a01b038216612f905760405163ec442f0560e01b81525f600482015260240161105f565b6116ef5f8383613b74565b81545f90429063ffffffff808316600160e01b90920416101561301557835461300d906301e1338090612fdb90600160e01b900463ffffffff1684614fce565b612feb9063ffffffff1686614fea565b612ff59190615001565b8554600160801b90046001600160601b031690613e31565b915050610a84565b50508154600160801b90046001600160601b0316610a84565b5092915050565b5f610ed4826001600160601b038516670de0b6b3a7640000613a86565b5f610c1f613e54565b61306860648260656132ce565b80516064805460208401516040909401516001600160801b039093166001600160e01b031990911617600160801b6001600160601b0390941693909302929092176001600160e01b0316600160e01b63ffffffff92831602179091556130d59060659085908590613ec716565b80516020918201516001600160801b03908116600160801b0291161760655560408051848152918201859052810182905284907f82e3211b2071ba731d809bc922f607d914d7cb7d76b03e72acbe7753613e21f39060600160405180910390a250505050565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806131c157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166131b55f5160206151875f395f51905f52546001600160a01b031690565b6001600160a01b031614155b156131df5760405163703e46dd60e11b815260040160405180910390fd5b565b612dad81613f63565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015613244575060408051601f3d908101601f1916820190925261324191810190614e7c565b60015b61326c57604051634c9c8ce360e01b81526001600160a01b038316600482015260240161105f565b5f5160206151875f395f51905f52811461329c57604051632a87526960e21b81526004810182905260240161105f565b61138e8383614014565b81545f906001600160801b0316808311156132c55761300d8184614e16565b5f915050610a84565b604080516060810182525f80825260208201819052918101919091528354613304908390600160e01b900463ffffffff16613abb565b61330e9084615020565b84549093505f9061334f90613337908690670de0b6b3a7640000906001600160801b0316614069565b8654600160801b90046001600160601b031690614084565b9050620f4240816001600160601b0316101561338957604051636c53fb2b60e01b81526001600160601b038216600482015260240161105f565b6040805160608101825286546001600160801b031681526001600160601b03909216602083015263ffffffff42169082015290509392505050565b604080518082019091525f808252602082015283546001600160801b03165f036134255760405180604001604052806133fc856140cd565b6001600160801b03168152602001613413846140cd565b6001600160801b031690529050610ed4565b83546001600160801b03165f61343b8583614f30565b90505f6134926134548688670de0b6b3a7640000613b07565b885461347990600160801b90046001600160801b031686670de0b6b3a7640000613b07565b6134839190614f30565b670de0b6b3a764000084613b07565b905060405180604001604052806134a8846140cd565b6001600160801b031681526020016134bf836140cd565b6001600160801b03168152509350505050610ed4565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146131df5760405163703e46dd60e11b815260040160405180910390fd5b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610a84565b61354e614100565b6131df614125565b61355e614100565b6116ef828261412d565b613570614100565b612dad81604051806040016040528060018152602001603160f81b81525061417d565b61359b614100565b6135a56064613675565b6040805160a0810182525f80825261271060208301529181018290526060810182905260800152606780546001600160e01b03191661027160a41b1790556135ee6002836121d2565b6116ef6003826121d2565b5f807f5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb00612b7c565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10280546060915f5160206151675f395f51905f5291610b0890614e29565b60605f5f5160206151675f395f51905f52610af7565b63ffffffff4216600160e01b0264016bcc41e9608e1b179055565b604080516060810182525f80825260208201819052918101829052906136c085856136bb8287612f9b565b6141dc565b91509150935093915050565b6136d960648260656132ce565b805160648054602084015160409094015163ffffffff16600160e01b026001600160e01b036001600160601b03909516600160801b026001600160e01b03199092166001600160801b0390941693909317179290921617905550565b61374384848484600161427e565b611e4a57604051635274afe760e01b81526001600160a01b038516600482015260240161105f565b5f6001600160ff1b038211156137975760405163123baf0360e11b81526004810183905260240161105f565b5090565b5f6137a46129df565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa1580156137e8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c1f9190614e7c565b5f610a84655af3107a400061ffff8416614fea565b5f610a84613835655af3107a400084615001565b6142eb565b604080516060810182525f80825260208201819052918101829052906136c085856138658287612f9b565b614319565b604051632d182be560e21b815260048101829052306024820181905260448201526001600160a01b0383169063b460af94906064016020604051808303815f875af11580156138bb573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138df9190614e7c565b50603254811115613903576138fb60325482610e559190614e16565b5f6032555050565b8060325f8282546139149190614e16565b90915550505050565b5f610a84613929613052565b8360405161190160f01b8152600281019290925260228201526042902090565b5f5f5f5f613959888888886143a9565b9250925092506139698282614471565b50909695505050505050565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f5160206151475f395f51905f526001600160a01b0385166139d95760405163e602df0560e01b81525f600482015260240161105f565b6001600160a01b038416613a0257604051634a1406b160e11b81525f600482015260240161105f565b6001600160a01b038086165f90815260018301602090815260408083209388168352929052208390558115613a7f57836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051613a7691815260200190565b60405180910390a35b5050505050565b5f613aa05f8380613a9957613a99614fba565b8587091190565b8284860281613ab157613ab1614fba565b0401949350505050565b81545f90610ed4906001600160801b03166301e13380613ae163ffffffff861642614e16565b8654613afd9190600160801b90046001600160801b0316614fea565b612c4a9190615001565b5f8183850281613b1957613b19614fba565b04949350505050565b5f610ed4613b39836001600160601b038616614f30565b614529565b6040518181527f731c439c5bae15be1344eec709967e046b4f7d3f7e37abeffc5247f448fa18bf9060200160405180910390a150565b5f6001600160a01b038416613bf157613b90606483606561455c565b815160648054602085015160409095015163ffffffff16600160e01b026001600160e01b036001600160601b03909616600160801b026001600160e01b03199092166001600160801b03909416939093171793909316179091559050613ced565b6001600160a01b038316613c0c57613b906064836065614587565b6067546001600160a01b03161580613ca05750606754604051635fcdca3760e01b81523060048201526001600160a01b03868116602483015285811660448301526064820185905290911690635fcdca3790608401602060405180830381865afa158015613c7c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ca09190614efa565b848484909192613cc6576040516325cff2d360e11b815260040161105f93929190614eb2565b50613cea9150839050613cdb60646065612bbe565b6001600160601b0316906145b2565b90505b5f5160206151475f395f51905f526001600160a01b03851615613d8a576001600160a01b0385165f9081526020829052604090205482811015613d6c5785613d3b82610c4360646065612bbe565b60405163391434e360e21b81526001600160a01b03909216600483015260248201526044810185905260640161105f565b6001600160a01b0386165f9081526020839052604090209083900390555b6001600160a01b03841615613db7576001600160a01b0384165f9081526020829052604090208054830190555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613a7691815260200190565b613e0983838360016145cf565b61138e57604051635274afe760e01b81526001600160a01b038416600482015260240161105f565b5f610ed4613b396001600160601b038516612c4a670de0b6b3a764000086614f30565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f613e7e614631565b613e86614699565b60408051602081019490945283019190915260608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b604080518082019091525f808252602082015283546001600160801b0316839003613f055750604080518082019091525f8082526020820152610ed4565b83546001600160801b03165f613f1b8583614e16565b90505f613492613f348688670de0b6b3a7640000613b07565b8854613f5990600160801b90046001600160801b031686670de0b6b3a7640000613b07565b6134839190614e16565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015613fc9573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fed9190614e61565b6001600160a01b031614612dad5760405163d2b3d33f60e01b815260040160405180910390fd5b61401d826146db565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156140615761138e828261473e565b6116ef6147cf565b5f818385028161407b5761407b614fba565b05949350505050565b5f80614099836001600160601b038616615020565b905080620f42408110156140c357604051636c53fb2b60e01b815260040161105f91815260200190565b5061118e81614529565b5f6001600160801b03821115613797576040516306dfcc6560e41b8152608060048201526024810183905260440161105f565b6141086147ee565b6131df57604051631afcd79f60e31b815260040160405180910390fd5b6131df614100565b614135614100565b5f5160206151475f395f51905f527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0361416e848261508b565b5060048101611e4a838261508b565b614185614100565b5f5160206151675f395f51905f527fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1026141be848261508b565b50600381016141cd838261508b565b505f8082556001909101555050565b604080516060810182525f808252602082018190529181018290529061420b6001600160601b038416856145b2565b85549091506001600160801b03165f6142248383614e16565b9050805f0361423757655af3107a400094505b604051806060016040528061424b836140cd565b6001600160801b03168152602001866001600160601b031681526020014263ffffffff1681525093505050935093915050565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f511483166142da5783831516156142ce573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b5f61ffff821115613797576040516306dfcc6560e41b8152601060048201526024810183905260440161105f565b604080516060810182525f80825260208201819052918101829052906143486001600160601b03841685614807565b60408051606081019091528654919250908190614378906143739085906001600160801b0316614f30565b6140cd565b6001600160801b03168152602001846001600160601b031681526020014263ffffffff168152509150935093915050565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411156143e257505f91506003905082614467565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015614433573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b03811661445e57505f925060019150829050614467565b92505f91508190505b9450945094915050565b5f82600381111561448457614484614f43565b0361448d575050565b60018260038111156144a1576144a1614f43565b036144bf5760405163f645eedf60e01b815260040160405180910390fd5b60028260038111156144d3576144d3614f43565b036144f45760405163fce698f760e01b81526004810182905260240161105f565b600382600381111561450857614508614f43565b036116ef576040516335e2f38360e21b81526004810182905260240161105f565b5f6001600160601b03821115613797576040516306dfcc6560e41b8152606060048201526024810183905260440161105f565b604080516060810182525f80825260208201819052918101829052906136c085856138658287612bbe565b604080516060810182525f80825260208201819052918101829052906136c085856136bb8287612bbe565b5f610ed482670de0b6b3a76400006001600160601b038616613a86565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f51148316614625578383151615614619573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b5f5f5160206151675f395f51905f5281614649613621565b80519091501561466157805160209091012092915050565b81548015614670579392505050565b7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470935050505090565b5f5f5160206151675f395f51905f52816146b161365f565b8051909150156146c957805160209091012092915050565b60018201548015614670579392505050565b806001600160a01b03163b5f0361471057604051634c9c8ce360e01b81526001600160a01b038216600482015260240161105f565b5f5160206151875f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f61474b8484614824565b905080801561476c57505f3d118061476c57505f846001600160a01b03163b115b156147795761300d614837565b80156147a357604051639996b31560e01b81526001600160a01b038516600482015260240161105f565b3d156147b6576147b1614850565b61302e565b60405163d6bda27560e01b815260040160405180910390fd5b34156131df5760405163b398979f60e01b815260040160405180910390fd5b5f6147f761351e565b54600160401b900460ff16919050565b5f610ed482670de0b6b3a76400006001600160601b038616613b07565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f6020828403121561486b575f5ffd5b81356001600160e01b031981168114610ed4575f5ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610ed46020830184614882565b6001600160a01b0381168114612dad575f5ffd5b5f5f604083850312156148e7575f5ffd5b82356148f2816148c2565b946020939093013593505050565b5f60208284031215614910575f5ffd5b8135610ed4816148c2565b8015158114612dad575f5ffd5b5f5f60408385031215614939575f5ffd5b8235614944816148c2565b915060208301356149548161491b565b809150509250929050565b5f5f5f60608486031215614971575f5ffd5b833561497c816148c2565b9250602084013561498c816148c2565b929592945050506040919091013590565b5f5f5f5f608085870312156149b0575f5ffd5b8435935060208501356149c2816148c2565b925060408501356149d2816148c2565b915060608501356149e2816148c2565b939692955090935050565b5f5f5f606084860312156149ff575f5ffd5b833592506020840135614a11816148c2565b91506040840135614a21816148c2565b809150509250925092565b5f5f5f5f5f5f60c08789031215614a41575f5ffd5b863595506020870135945060408701359350606087013592506080870135614a68816148c2565b9598949750929591949360a090920135925050565b634e487b7160e01b5f52604160045260245ffd5b5f5f67ffffffffffffffff841115614aab57614aab614a7d565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff82111715614ada57614ada614a7d565b604052838152905080828401851015614af1575f5ffd5b838360208301375f60208583010152509392505050565b5f5f60408385031215614b19575f5ffd5b8235614b24816148c2565b9150602083013567ffffffffffffffff811115614b3f575f5ffd5b8301601f81018513614b4f575f5ffd5b614b5e85823560208401614a91565b9150509250929050565b5f5f5f60608486031215614b7a575f5ffd5b505081359360208301359350604090920135919050565b5f82601f830112614ba0575f5ffd5b610ed483833560208501614a91565b5f5f5f5f60808587031215614bc2575f5ffd5b843567ffffffffffffffff811115614bd8575f5ffd5b614be487828801614b91565b945050602085013567ffffffffffffffff811115614c00575f5ffd5b614c0c87828801614b91565b949794965050505060408301359260600135919050565b5f60208284031215614c33575f5ffd5b8135610ed48161491b565b60ff60f81b8816815260e060208201525f614c5c60e0830189614882565b8281036040840152614c6e8189614882565b606084018890526001600160a01b038716608085015260a0840186905283810360c0850152845180825260208087019350909101905f5b81811015614cc3578351835260209384019390920191600101614ca5565b50909b9a5050505050505050505050565b5f5f60408385031215614ce5575f5ffd5b823591506020830135614954816148c2565b5f60208284031215614d07575f5ffd5b5035919050565b5f5f5f5f60808587031215614d21575f5ffd5b5050823594602084013594506040840135936060013592509050565b5f5f60408385031215614d4e575f5ffd5b8235600481106148f2575f5ffd5b60ff81168114612dad575f5ffd5b5f5f5f5f5f5f5f60e0888a031215614d80575f5ffd5b8735614d8b816148c2565b96506020880135614d9b816148c2565b955060408801359450606088013593506080880135614db981614d5c565b9699959850939692959460a0840135945060c09093013592915050565b5f5f60408385031215614de7575f5ffd5b8235614df2816148c2565b91506020830135614954816148c2565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610a8457610a84614e02565b600181811c90821680614e3d57607f821691505b602082108103614e5b57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215614e71575f5ffd5b8151610ed4816148c2565b5f60208284031215614e8c575f5ffd5b5051919050565b8181035f83128015838313168383128216171561302e5761302e614e02565b6001600160a01b039384168152919092166020820152604081019190915260600190565b5f60208284031215614ee6575f5ffd5b815164ffffffffff81168114610ed4575f5ffd5b5f60208284031215614f0a575f5ffd5b8151610ed48161491b565b5f60208284031215614f25575f5ffd5b8151610ed481614d5c565b80820180821115610a8457610a84614e02565b634e487b7160e01b5f52602160045260245ffd5b60048110614f7357634e487b7160e01b5f52602160045260245ffd5b9052565b60208101610a848284614f57565b60408101614f938285614f57565b8260208301529392505050565b5f600160ff1b8201614fb457614fb4614e02565b505f0390565b634e487b7160e01b5f52601260045260245ffd5b63ffffffff8281168282160390811115610a8457610a84614e02565b8082028115828204841417610a8457610a84614e02565b5f8261501b57634e487b7160e01b5f52601260045260245ffd5b500490565b8082018281125f83128015821682158216171561503f5761503f614e02565b505092915050565b601f82111561138e57805f5260205f20601f840160051c8101602085101561506c5750805b601f840160051c820191505b81811015613a7f575f8155600101615078565b815167ffffffffffffffff8111156150a5576150a5614a7d565b6150b9816150b38454614e29565b84615047565b6020601f8211600181146150eb575f83156150d45750848201515b5f19600385901b1c1916600184901b178455613a7f565b5f84815260208120601f198516915b8281101561511a57878501518255602094850194600190920191016150fa565b508482101561513757868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00a16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d100360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca264697066735822122083959412083e505e664f9984245542df2ea1600883e552d1e7f4809cfd90f06564736f6c634300081e0033","opcodes":"PUSH1 0xC0 PUSH1 0x40 MSTORE ADDRESS PUSH1 0x80 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x13 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x53A0 CODESIZE SUB DUP1 PUSH2 0x53A0 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x32 SWAP2 PUSH2 0x129 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x5B JUMPI PUSH1 0x40 MLOAD PUSH4 0x6B23CF01 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x63 PUSH2 0x77 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xA0 MSTORE POP PUSH2 0x156 SWAP1 POP JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xC7 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0x126 JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x139 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x14F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH2 0x51DC PUSH2 0x1C4 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x59E ADD MSTORE DUP2 DUP2 PUSH2 0xEE7 ADD MSTORE DUP2 DUP2 PUSH2 0x11A1 ADD MSTORE DUP2 DUP2 PUSH2 0x1396 ADD MSTORE DUP2 DUP2 PUSH2 0x1A05 ADD MSTORE DUP2 DUP2 PUSH2 0x1BDE ADD MSTORE DUP2 DUP2 PUSH2 0x254F ADD MSTORE DUP2 DUP2 PUSH2 0x28D9 ADD MSTORE DUP2 DUP2 PUSH2 0x29E2 ADD MSTORE PUSH2 0x3F65 ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x3146 ADD MSTORE DUP2 DUP2 PUSH2 0x316F ADD MSTORE PUSH2 0x34E0 ADD MSTORE PUSH2 0x51DC PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x371 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7D919A97 GT PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0xFD JUMPI DUP1 PUSH4 0xD17E6C93 GT PUSH2 0x9D JUMPI DUP1 PUSH4 0xDFCB48BD GT PUSH2 0x6D JUMPI DUP1 PUSH4 0xDFCB48BD EQ PUSH2 0x9CE JUMPI DUP1 PUSH4 0xE3A8E29C EQ PUSH2 0x9E2 JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0xA01 JUMPI DUP1 PUSH4 0xEE01A183 EQ PUSH2 0xA15 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xD17E6C93 EQ PUSH2 0x952 JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0x971 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x990 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x9AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC1CCA2B3 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0xC1CCA2B3 EQ PUSH2 0x8E3 JUMPI DUP1 PUSH4 0xC3DF9DAC EQ PUSH2 0x902 JUMPI DUP1 PUSH4 0xCDA4BCC2 EQ PUSH2 0x921 JUMPI DUP1 PUSH4 0xCF6A9A94 EQ PUSH2 0x935 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x882 JUMPI DUP1 PUSH4 0xB1BF962D EQ PUSH2 0x8B2 JUMPI DUP1 PUSH4 0xBA4E8DF5 EQ PUSH2 0x8CF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x9D90724D GT PUSH2 0x168 JUMPI DUP1 PUSH4 0xA227DC41 GT PUSH2 0x143 JUMPI DUP1 PUSH4 0xA227DC41 EQ PUSH2 0x808 JUMPI DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0x827 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x844 JUMPI DUP1 PUSH4 0xAC860F74 EQ PUSH2 0x863 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x9D90724D EQ PUSH2 0x7B1 JUMPI DUP1 PUSH4 0xA08F2203 EQ PUSH2 0x7D5 JUMPI DUP1 PUSH4 0xA0CE552D EQ PUSH2 0x7E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x854CFF2F GT PUSH2 0x1A3 JUMPI DUP1 PUSH4 0x854CFF2F EQ PUSH2 0x742 JUMPI DUP1 PUSH4 0x918344D3 EQ PUSH2 0x761 JUMPI DUP1 PUSH4 0x93E59DC1 EQ PUSH2 0x780 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x79D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x7D919A97 EQ PUSH2 0x6E8 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x6FC JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x71B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x33481FC9 GT PUSH2 0x2A9 JUMPI DUP1 PUSH4 0x4FFCDA8C GT PUSH2 0x249 JUMPI DUP1 PUSH4 0x6FE0E395 GT PUSH2 0x219 JUMPI DUP1 PUSH4 0x6FE0E395 EQ PUSH2 0x66C JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x68B JUMPI DUP1 PUSH4 0x76C7FC55 EQ PUSH2 0x6AA JUMPI DUP1 PUSH4 0x79D989FB EQ PUSH2 0x6C9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4FFCDA8C EQ PUSH2 0x611 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x630 JUMPI DUP1 PUSH4 0x6C321C8A EQ PUSH2 0x644 JUMPI DUP1 PUSH4 0x6C6F4542 EQ PUSH2 0x658 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D15EB03 GT PUSH2 0x284 JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x590 JUMPI DUP1 PUSH4 0x4EB978A4 EQ PUSH2 0x5D6 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x5EA JUMPI DUP1 PUSH4 0x4FE0BD1E EQ PUSH2 0x5FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x33481FC9 EQ PUSH2 0x53E JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x55D JUMPI DUP1 PUSH4 0x3AD2820B EQ PUSH2 0x571 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0x314 JUMPI DUP1 PUSH4 0x23B872DD GT PUSH2 0x2EF JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x4BB JUMPI DUP1 PUSH4 0x23E103A8 EQ PUSH2 0x4DA JUMPI DUP1 PUSH4 0x2E2D2984 EQ PUSH2 0x4F9 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x518 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD EQ PUSH2 0x467 JUMPI DUP1 PUSH4 0x194448E5 EQ PUSH2 0x47B JUMPI DUP1 PUSH4 0x1DA24F3E EQ PUSH2 0x49C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x34F JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x3EC JUMPI DUP1 PUSH4 0xAFBCDC9 EQ PUSH2 0x40B JUMPI DUP1 PUSH4 0x159EC2DF EQ PUSH2 0x43F JUMPI DUP1 PUSH4 0x16DB000F EQ PUSH2 0x453 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x375 JUMPI DUP1 PUSH4 0x600A865 EQ PUSH2 0x3A9 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x3CB JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x380 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x38F CALLDATASIZE PUSH1 0x4 PUSH2 0x485B JUMP JUMPDEST PUSH2 0xA29 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3B4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0xA8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DF PUSH2 0xAE5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3A0 SWAP2 SWAP1 PUSH2 0x48B0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3F7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x406 CALLDATASIZE PUSH1 0x4 PUSH2 0x48D6 JUMP JUMPDEST PUSH2 0xB8A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x416 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42A PUSH2 0x425 CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0xBA1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x3A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x44A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0xBC3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x45E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0xC02 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x472 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0xC24 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x486 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x495 CALLDATASIZE PUSH1 0x4 PUSH2 0x4928 JUMP JUMPDEST PUSH2 0xC52 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x4B6 CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0xEAC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4C6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x4D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x495F JUMP JUMPDEST PUSH2 0xEB6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4E5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x4F4 CALLDATASIZE PUSH1 0x4 PUSH2 0x499D JUMP JUMPDEST PUSH2 0xEDB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x504 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x513 CALLDATASIZE PUSH1 0x4 PUSH2 0x49ED JUMP JUMPDEST PUSH2 0x1196 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x523 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x52C PUSH2 0x1393 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x549 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x558 CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0x1473 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x568 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x14F5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x57C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x58B CALLDATASIZE PUSH1 0x4 PUSH2 0x4A2C JUMP JUMPDEST PUSH2 0x14FE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x59B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5E1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x15A4 JUMP JUMPDEST PUSH2 0x49A PUSH2 0x5F8 CALLDATASIZE PUSH1 0x4 PUSH2 0x4B08 JUMP JUMPDEST PUSH2 0x16D4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x608 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x16F3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x61C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x62B CALLDATASIZE PUSH1 0x4 PUSH2 0x4B68 JUMP JUMPDEST PUSH2 0x1707 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x63B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x186A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x64F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x1885 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x663 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x18B6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x677 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x686 CALLDATASIZE PUSH1 0x4 PUSH2 0x4BAF JUMP JUMPDEST PUSH2 0x18C9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x696 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x6A5 CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0x19E1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x6C4 CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0x19FA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6D4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x6E3 CALLDATASIZE PUSH1 0x4 PUSH2 0x4C23 JUMP JUMPDEST PUSH2 0x1ADE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x32 SLOAD PUSH2 0x3BD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x707 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x716 CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0x1B18 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x726 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x72F PUSH2 0x1B22 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3A0 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4C3E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x74D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x75C CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0x1BCB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x76C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x77B CALLDATASIZE PUSH1 0x4 PUSH2 0x4CD4 JUMP JUMPDEST PUSH2 0x1D06 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x78B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x67 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x5BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7A8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DF PUSH2 0x1E50 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x3BD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7E0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x1E8E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7F4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x803 CALLDATASIZE PUSH1 0x4 PUSH2 0x4CF7 JUMP JUMPDEST PUSH2 0x1F81 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x813 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x822 CALLDATASIZE PUSH1 0x4 PUSH2 0x4D0E JUMP JUMPDEST PUSH2 0x1FD4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x832 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x5BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x84F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x85E CALLDATASIZE PUSH1 0x4 PUSH2 0x48D6 JUMP JUMPDEST PUSH2 0x2026 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x86E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x87D CALLDATASIZE PUSH1 0x4 PUSH2 0x4CF7 JUMP JUMPDEST PUSH2 0x2033 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x88D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DF PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x3BD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8DA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x21B9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x8FD CALLDATASIZE PUSH1 0x4 PUSH2 0x4D3D JUMP JUMPDEST PUSH2 0x21D2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x90D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x91C CALLDATASIZE PUSH1 0x4 PUSH2 0x4CD4 JUMP JUMPDEST PUSH2 0x23D6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x92C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x2523 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x940 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x69 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x5BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x95D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x96C CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0x253C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x97C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x98B CALLDATASIZE PUSH1 0x4 PUSH2 0x4CF7 JUMP JUMPDEST PUSH2 0x2677 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x99B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x9AA CALLDATASIZE PUSH1 0x4 PUSH2 0x4D6A JUMP JUMPDEST PUSH2 0x2717 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x9C9 CALLDATASIZE PUSH1 0x4 PUSH2 0x4DD6 JUMP JUMPDEST PUSH2 0x286C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x28B5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x9FC CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0x28CE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA0C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5BE PUSH2 0x29DF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA20 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x2A60 JUMP JUMPDEST PUSH0 PUSH2 0xA33 DUP3 PUSH2 0x2A79 JUMP JUMPDEST DUP1 PUSH2 0xA4E JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x36372B07 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xA69 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA219A025 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xA84 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x6D5136B1 PUSH1 0xE1 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xAB9 PUSH2 0xA97 PUSH2 0x21B9 JUMP JUMPDEST PUSH8 0xDE0B6B3A7640000 PUSH2 0xAB2 PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x2AAE JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0xAC4 PUSH2 0xC24 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xAD4 JUMPI PUSH0 PUSH2 0xADE JUMP JUMPDEST PUSH2 0xADE DUP3 DUP3 PUSH2 0x4E16 JUMP JUMPDEST SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5147 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST SWAP1 POP DUP1 PUSH1 0x3 ADD DUP1 SLOAD PUSH2 0xB08 SWAP1 PUSH2 0x4E29 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xB34 SWAP1 PUSH2 0x4E29 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xB7F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xB56 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xB7F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xB62 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0xB97 DUP2 DUP6 DUP6 PUSH2 0x2B5E JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xBAC DUP4 PUSH2 0x2B6B JUMP JUMPDEST PUSH1 0x64 SLOAD SWAP1 SWAP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP2 AND SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xBCD PUSH2 0xC24 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0xBFA JUMPI PUSH1 0x65 SLOAD PUSH2 0xBF5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB PUSH1 0x1 PUSH1 0x80 SHL DUP3 DIV DUP2 AND SWAP2 AND DUP4 PUSH2 0x2AAE JUMP JUMPDEST PUSH2 0xBFC JUMP JUMPDEST PUSH0 JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xC0D PUSH1 0x64 PUSH2 0x2B9B JUMP JUMPDEST PUSH2 0xC15 PUSH2 0xC24 JUMP JUMPDEST PUSH2 0xC1F SWAP2 SWAP1 PUSH2 0x4E16 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x64 DUP1 SLOAD PUSH0 SWAP2 PUSH2 0xC1F SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 PUSH2 0xC43 SWAP1 PUSH1 0x65 PUSH2 0x2BBE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x2C3A JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xC5C PUSH2 0x29DF JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO DUP1 PUSH2 0xCE4 JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x38D52E0F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xCB5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xCD9 SWAP2 SWAP1 PUSH2 0x4E61 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0xD01 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0xD14 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0xE29 JUMPI PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD6A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD8E SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0xE27 JUMPI DUP6 ISZERO PUSH2 0xDAF JUMPI PUSH2 0xDA6 DUP4 DUP3 PUSH2 0x2C58 JUMP JUMPDEST SWAP6 POP SWAP2 POP PUSH2 0xE27 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xE00 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xE24 SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST SWAP2 POP JUMPDEST POP JUMPDEST PUSH1 0x68 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND OR SWAP1 SSTORE PUSH2 0xE5A PUSH1 0x32 SLOAD DUP3 PUSH2 0xE55 SWAP2 SWAP1 PUSH2 0x4E93 JUMP JUMPDEST PUSH2 0x2D9B JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE PUSH1 0x40 MLOAD DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND SWAP2 SWAP1 DUP5 AND SWAP1 PUSH32 0x243F9479BBDAF9F3395E726975293EE3724F3819F4322A018C98AFB9DE70A1E0 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA84 DUP3 PUSH2 0x2B6B JUMP JUMPDEST PUSH0 CALLER PUSH2 0xEC3 DUP6 DUP3 DUP6 PUSH2 0x2DB0 JUMP JUMPDEST PUSH2 0xECE DUP6 DUP6 DUP6 PUSH2 0x2E0E JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xF25 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0xF38 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF4E JUMPI PUSH2 0xF4E PUSH2 0x15A4 JUMP JUMPDEST PUSH0 PUSH2 0xF68 PUSH2 0xF5B DUP6 PUSH2 0x19E1 JUMP JUMPDEST PUSH2 0xF63 PUSH2 0xA8A JUMP JUMPDEST PUSH2 0x2E6B JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP7 SUB PUSH2 0xF76 JUMPI DUP1 SWAP6 POP JUMPDEST DUP6 PUSH0 SUB PUSH2 0xF86 JUMPI PUSH0 SWAP2 POP POP PUSH2 0x118E JUMP JUMPDEST PUSH1 0x69 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 PUSH2 0xFAB JUMPI POP PUSH1 0x69 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 AND EQ JUMPDEST DUP1 PUSH2 0x102D JUMPI POP PUSH1 0x69 SLOAD PUSH1 0x40 MLOAD PUSH4 0x2E704AF7 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x5CE095EE SWAP1 PUSH2 0xFE5 SWAP1 ADDRESS SWAP1 DUP9 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x4EB2 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1000 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1024 SWAP2 SWAP1 PUSH2 0x4ED6 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND ISZERO JUMPDEST PUSH1 0x69 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH2 0x1068 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2BC34BA3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP DUP6 DUP2 DUP1 DUP3 GT ISZERO PUSH2 0x1095 JUMPI PUSH1 0x40 MLOAD PUSH4 0x87DA9FD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST POP POP PUSH1 0x67 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 PUSH2 0x111D JUMPI POP PUSH1 0x67 SLOAD PUSH1 0x40 MLOAD PUSH4 0x9051C763 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x9051C763 SWAP1 PUSH2 0x10DE SWAP1 ADDRESS SWAP1 DUP9 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x4EB2 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x10F9 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x111D SWAP2 SWAP1 PUSH2 0x4EFA JUMP JUMPDEST DUP5 DUP8 SWAP1 SWAP2 PUSH2 0x114F JUMPI PUSH1 0x40 MLOAD PUSH4 0xD38A9339 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST POP POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1175 JUMPI PUSH2 0x1175 DUP5 DUP7 DUP9 PUSH2 0x2DB0 JUMP JUMPDEST PUSH2 0x117F DUP5 DUP8 PUSH2 0x2E7A JUMP JUMPDEST PUSH2 0x1189 DUP4 DUP8 PUSH2 0x2EAE JUMP JUMPDEST DUP6 SWAP2 POP POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x11DF JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x67 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 PUSH2 0x1308 JUMPI POP PUSH1 0x67 SLOAD PUSH1 0x40 MLOAD PUSH4 0x37EE20DD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x37EE20DD SWAP1 PUSH2 0x1226 SWAP1 ADDRESS SWAP1 DUP7 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x4EB2 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1241 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1265 SWAP2 SWAP1 PUSH2 0x4EFA JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1308 JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x1308 JUMPI POP PUSH1 0x67 SLOAD PUSH1 0x40 MLOAD PUSH4 0x5FCDCA37 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD DUP7 SWAP1 MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x5FCDCA37 SWAP1 PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x12E4 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1308 SWAP2 SWAP1 PUSH2 0x4EFA JUMP JUMPDEST DUP3 DUP5 SWAP1 SWAP2 PUSH2 0x133A JUMPI PUSH1 0x40 MLOAD PUSH4 0x6D6C993 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST POP POP PUSH2 0x1346 DUP2 DUP5 PUSH2 0x2F67 JUMP JUMPDEST PUSH2 0x134E PUSH2 0x2A60 JUMP JUMPDEST PUSH2 0x1356 PUSH2 0x1885 JUMP JUMPDEST LT ISZERO PUSH2 0x138E JUMPI PUSH2 0x1364 PUSH2 0x1885 JUMP JUMPDEST PUSH2 0x136C PUSH2 0x2A60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x62464AB7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13F0 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1414 SWAP2 SWAP1 PUSH2 0x4E61 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x144F JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC1F SWAP2 SWAP1 PUSH2 0x4F15 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x14C4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3D560939 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP DUP1 SLOAD PUSH2 0xED4 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x14E6 PUSH2 0x14DF PUSH2 0x2523 JUMP JUMPDEST DUP5 SWAP1 PUSH2 0x2F9B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x3035 JUMP JUMPDEST PUSH0 PUSH2 0xC1F PUSH2 0x3052 JUMP JUMPDEST CALLER PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x1543 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4E63EDA3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP PUSH2 0x1550 DUP7 DUP7 DUP7 DUP7 PUSH2 0x305B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x159C JUMPI PUSH2 0x1560 DUP3 DUP3 PUSH2 0x2EAE JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH32 0xC8E60E828D888D5921F45ECECD1BC138A29C2B6AACC8AB8A762F3F096492C561 DUP4 PUSH1 0x40 MLOAD PUSH2 0xE9C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x15B7 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x15E0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x162C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1650 SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x166E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1689 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x16AD SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x32 SLOAD DUP3 PUSH2 0x16BE SWAP2 SWAP1 PUSH2 0x4E93 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x138E JUMPI PUSH1 0x32 DUP3 SWAP1 SSTORE PUSH2 0x138E DUP2 PUSH2 0x2D9B JUMP JUMPDEST PUSH2 0x16DC PUSH2 0x313B JUMP JUMPDEST PUSH2 0x16E5 DUP3 PUSH2 0x31E1 JUMP JUMPDEST PUSH2 0x16EF DUP3 DUP3 PUSH2 0x31EA JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0xC1F PUSH2 0x16FF PUSH2 0xC24 JUMP JUMPDEST PUSH1 0x65 SWAP1 PUSH2 0x32A6 JUMP JUMPDEST CALLER PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x174C JUMPI PUSH1 0x40 MLOAD PUSH4 0x4E63EDA3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP PUSH2 0x1755 PUSH2 0x1E8E JUMP JUMPDEST DUP3 GT ISZERO PUSH2 0x1787 JUMPI DUP2 PUSH2 0x1765 PUSH2 0x1E8E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x8F31DF3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x1794 PUSH1 0x64 PUSH0 PUSH1 0x65 PUSH2 0x32CE JUMP JUMPDEST DUP1 MLOAD PUSH1 0x64 DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP1 SWAP5 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND OR PUSH1 0x1 PUSH1 0x80 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 MUL SWAP3 SWAP1 SWAP3 OR PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x1 PUSH1 0xE0 SHL PUSH4 0xFFFFFFFF SWAP3 DUP4 AND MUL OR SWAP1 SWAP2 SSTORE PUSH2 0x1801 SWAP1 PUSH1 0x65 SWAP1 DUP5 SWAP1 DUP5 SWAP1 PUSH2 0x33C4 AND JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP2 AND OR PUSH1 0x65 SSTORE PUSH1 0x40 MLOAD DUP4 SWAP1 PUSH32 0x266DC24A75EA4C7D7C74F89A78DC3A44307BABF0B588230497189FC46D71693D SWAP1 PUSH2 0x185D SWAP1 DUP5 SWAP1 DUP7 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1873 PUSH2 0x34D5 JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5187 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x188F PUSH2 0xC24 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0xBFA JUMPI PUSH2 0xBF5 PUSH8 0xDE0B6B3A7640000 DUP3 PUSH2 0xAB2 PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xC1F PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x18D2 PUSH2 0x351E JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x18F9 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x1915 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x1923 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x1941 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x196B JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x1973 PUSH2 0x3546 JUMP JUMPDEST PUSH2 0x197D DUP10 DUP10 PUSH2 0x3556 JUMP JUMPDEST PUSH2 0x1986 DUP10 PUSH2 0x3568 JUMP JUMPDEST PUSH2 0x1990 DUP8 DUP8 PUSH2 0x3593 JUMP JUMPDEST DUP4 ISZERO PUSH2 0x19D6 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA84 PUSH2 0x19EE DUP4 PUSH2 0x2B6B JUMP JUMPDEST PUSH2 0xC43 PUSH1 0x64 PUSH1 0x65 PUSH2 0x2BBE JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x1A43 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1A77 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3D560939 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP PUSH0 PUSH2 0x1A82 DUP3 PUSH2 0x1473 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE MLOAD SWAP2 SWAP3 POP SWAP1 PUSH32 0xE2EBFBED0DF9004EAE018A4AE91B24BAA0CD1D83F495FAB6DDE3A1493F9DC6C6 SWAP1 PUSH2 0x1AD2 SWAP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 DUP2 ISZERO PUSH2 0x1B00 JUMPI PUSH2 0xA84 PUSH2 0x1AF4 PUSH1 0x64 PUSH1 0x65 PUSH2 0x2BBE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0xA84 JUMP JUMPDEST PUSH0 PUSH2 0xA84 DUP3 PUSH2 0x35F9 JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP1 DUP3 DUP1 DUP1 DUP4 DUP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5167 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD SWAP1 SWAP2 POP ISZERO DUP1 ISZERO PUSH2 0x1B4D JUMPI POP PUSH1 0x1 DUP2 ADD SLOAD ISZERO JUMPDEST PUSH2 0x1B91 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x1152540DCC4C8E88155B9A5B9A5D1A585B1A5E9959 PUSH1 0x5A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x1B99 PUSH2 0x3621 JUMP JUMPDEST PUSH2 0x1BA1 PUSH2 0x365F JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0xF PUSH1 0xF8 SHL SWAP13 SWAP4 SWAP12 POP SWAP2 SWAP10 POP CHAINID SWAP9 POP ADDRESS SWAP8 POP SWAP6 POP SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO DUP1 PUSH2 0x1C71 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1C42 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1C66 SWAP2 SWAP1 PUSH2 0x4E61 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP2 SWAP1 PUSH2 0x1C9C JUMPI PUSH1 0x40 MLOAD PUSH4 0x7EF0808B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP PUSH1 0x67 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0xDB0A396BDD47D29C2B55A6631F0B286785EA8ED9F585D34C8E32CDB022C3BC82 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x67 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 PUSH2 0x1D10 DUP3 PUSH2 0x1473 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 SWAP2 POP DUP4 DUP3 GT PUSH2 0x1D49 JUMPI DUP2 SWAP4 POP DUP2 PUSH0 EQ PUSH2 0x1D44 JUMPI PUSH2 0x1D44 DUP2 PUSH2 0x3675 JUMP JUMPDEST PUSH2 0x1DD2 JUMP JUMPDEST PUSH2 0x1D5D DUP5 PUSH2 0x1D55 PUSH2 0x2523 JUMP JUMPDEST DUP4 SWAP2 SWAP1 PUSH2 0x3690 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP3 DUP6 ADD MLOAD SWAP5 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP2 SWAP1 SWAP2 OR SWAP3 SWAP1 SWAP3 AND OR SWAP1 SSTORE JUMPDEST DUP4 PUSH0 SUB PUSH2 0x1DDF JUMPI POP POP POP POP JUMP JUMPDEST PUSH2 0x1DE8 DUP5 PUSH2 0x36CC JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xA1AEB41F04A9A2AA1450E8EDD0FA1A0A7971FF65C7BBB7B2CA0379B9327EDBAF DUP6 PUSH1 0x40 MLOAD PUSH2 0x1E23 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x1E4A CALLER ADDRESS DUP7 PUSH2 0x1E39 PUSH2 0x29DF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x3735 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE04 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5147 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0xB08 SWAP1 PUSH2 0x4E29 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1E98 PUSH2 0xC24 JUMP JUMPDEST PUSH1 0x69 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1F58 JUMPI PUSH1 0x69 SLOAD PUSH1 0x40 MLOAD PUSH4 0xF3F43703 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xF3F43703 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1EF2 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1F16 SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT PUSH2 0x1F27 JUMPI PUSH0 SWAP2 POP PUSH2 0x1F52 JUMP JUMPDEST PUSH2 0x1F4F PUSH2 0x1F34 DUP3 DUP5 PUSH2 0x4E16 JUMP JUMPDEST PUSH2 0xF63 PUSH2 0x1F3F PUSH2 0x28B5 JUMP JUMPDEST DUP6 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x2AAE JUMP JUMPDEST SWAP2 POP JUMPDEST POP PUSH2 0x1F76 JUMP JUMPDEST PUSH2 0x1F73 PUSH2 0x1F63 PUSH2 0x28B5 JUMP JUMPDEST DUP3 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x2AAE JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH2 0xBFC PUSH1 0x65 DUP3 PUSH2 0x32A6 JUMP JUMPDEST PUSH2 0x1F8B CALLER DUP3 PUSH2 0x2E7A JUMP JUMPDEST PUSH2 0x1F9C PUSH2 0x1F97 DUP3 PUSH2 0x376B JUMP JUMPDEST PUSH2 0x36CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE CALLER SWAP1 PUSH32 0xA17978B5145B36C8C694B15CD193AB32FAC45FBB1B2378E56CA71B11A5BC5722 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMP JUMPDEST CALLER PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x2019 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4E63EDA3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP PUSH2 0x1E4A DUP5 DUP5 DUP5 DUP5 PUSH2 0x305B JUMP JUMPDEST PUSH0 CALLER PUSH2 0xB97 DUP2 DUP6 DUP6 PUSH2 0x2E0E JUMP JUMPDEST PUSH0 PUSH2 0x2046 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x206F JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x2078 PUSH2 0x379B JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x208A JUMPI DUP1 SWAP3 POP PUSH2 0x20B9 JUMP JUMPDEST DUP3 DUP2 DUP1 DUP3 GT ISZERO PUSH2 0x20B6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x531309FB PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x20CA SWAP2 SWAP1 PUSH2 0x4F30 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x20D8 SWAP1 POP PUSH2 0x29DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP7 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2126 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x214A SWAP2 SWAP1 PUSH2 0x4EFA JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2195 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1E4A SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH0 SWAP1 PUSH2 0xC1F SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x380C JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x21E5 JUMPI PUSH2 0x21E5 PUSH2 0x4F43 JUMP JUMPDEST SUB PUSH2 0x225A JUMPI PUSH8 0xB1A2BC2EC500000 DUP2 LT ISZERO DUP1 ISZERO PUSH2 0x220A JUMPI POP PUSH8 0x120A871CC0020000 DUP2 GT ISZERO JUMPDEST DUP3 SWAP1 PUSH2 0x222A JUMPI PUSH1 0x40 MLOAD PUSH4 0xF8F01785 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x105F SWAP2 SWAP1 PUSH2 0x4F77 JUMP JUMPDEST POP PUSH2 0x2234 DUP2 PUSH2 0x3821 JUMP JUMPDEST PUSH1 0x67 DUP1 SLOAD PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH2 0xFFFF PUSH1 0xA0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x2399 JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x226E JUMPI PUSH2 0x226E PUSH2 0x4F43 JUMP JUMPDEST SUB PUSH2 0x22CE JUMPI DUP2 PUSH8 0xDE0B6B3A7640000 DUP3 GT ISZERO PUSH2 0x229E JUMPI PUSH1 0x40 MLOAD PUSH4 0xF8F01785 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x105F SWAP2 SWAP1 PUSH2 0x4F77 JUMP JUMPDEST POP PUSH2 0x22A8 DUP2 PUSH2 0x3821 JUMP JUMPDEST PUSH1 0x67 DUP1 SLOAD PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xB0 SHL MUL PUSH2 0xFFFF PUSH1 0xB0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x2399 JUMP JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x22E2 JUMPI PUSH2 0x22E2 PUSH2 0x4F43 JUMP JUMPDEST SUB PUSH2 0x2342 JUMPI DUP2 PUSH8 0xDE0B6B3A7640000 DUP3 GT ISZERO PUSH2 0x2312 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF8F01785 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x105F SWAP2 SWAP1 PUSH2 0x4F77 JUMP JUMPDEST POP PUSH2 0x231C DUP2 PUSH2 0x3821 JUMP JUMPDEST PUSH1 0x67 DUP1 SLOAD PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xC0 SHL MUL PUSH2 0xFFFF PUSH1 0xC0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x2399 JUMP JUMPDEST DUP2 PUSH8 0x6F05B59D3B20000 DUP3 GT ISZERO PUSH2 0x236D JUMPI PUSH1 0x40 MLOAD PUSH4 0xF8F01785 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x105F SWAP2 SWAP1 PUSH2 0x4F77 JUMP JUMPDEST POP PUSH2 0x2377 DUP2 PUSH2 0x3821 JUMP JUMPDEST PUSH1 0x67 DUP1 SLOAD PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xD0 SHL MUL PUSH2 0xFFFF PUSH1 0xD0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMPDEST PUSH32 0xEEEAE4504D4C033C7DA36BF41D8ECE7C21842071CA9F9B423F8E8E36483DCD96 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH2 0x23CA SWAP3 SWAP2 SWAP1 PUSH2 0x4F85 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST CALLER PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x241E JUMPI PUSH1 0x40 MLOAD PUSH4 0x4E63EDA3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP DUP3 PUSH2 0x242C DUP2 PUSH2 0xF63 PUSH2 0xC02 JUMP JUMPDEST SWAP4 POP DUP4 PUSH0 SUB PUSH2 0x243C JUMPI SWAP1 POP PUSH2 0xA84 JUMP JUMPDEST PUSH2 0x245D DUP5 PUSH2 0x2448 PUSH2 0x2523 JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP2 SWAP1 PUSH2 0x383A JUMP JUMPDEST POP CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP3 DUP6 ADD MLOAD SWAP5 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP2 SWAP1 SWAP2 OR SWAP3 SWAP1 SWAP3 AND OR SWAP1 SSTORE PUSH2 0x24D4 PUSH2 0x1F97 DUP6 PUSH2 0x4FA0 JUMP JUMPDEST PUSH2 0x24DE DUP4 DUP6 PUSH2 0x2EAE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE CALLER SWAP2 PUSH32 0x98697A4799DBD9DB66C7168304C43CBA77A27A50D2785625E09072E0D91FDD53 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x118E DUP5 DUP3 PUSH2 0x4E16 JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH0 SWAP1 PUSH2 0xC1F SWAP1 PUSH1 0x1 PUSH1 0xD0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x380C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO DUP1 PUSH2 0x25E2 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x25B3 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x25D7 SWAP2 SWAP1 PUSH2 0x4E61 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP2 SWAP1 PUSH2 0x260D JUMPI PUSH1 0x40 MLOAD PUSH4 0xF4AE1987 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP PUSH1 0x69 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0xF9F12DB81524E0E7D35F2779DAF818E6824509F85B09470F5C1C4D29304A756B SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x69 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 PUSH2 0x2680 PUSH2 0x15A4 JUMP JUMPDEST PUSH0 PUSH2 0x2693 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x2706 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x26DF JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2703 SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST SWAP3 POP JUMPDEST PUSH2 0x2710 DUP2 DUP5 PUSH2 0x386A JUMP JUMPDEST POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x273B JUMPI PUSH1 0x40 MLOAD PUSH4 0x313C8981 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0x27A5 DUP13 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x5AB42CED628888259C08AC98DB1EB0CF702FC1501344311D8B100CD1BFE4BB00 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH0 PUSH2 0x27FF DUP3 PUSH2 0x391D JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x280E DUP3 DUP8 DUP8 DUP8 PUSH2 0x3949 JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2855 JUMPI PUSH1 0x40 MLOAD PUSH4 0x25C00723 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x4 DUP4 ADD MSTORE DUP12 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x2860 DUP11 DUP11 DUP11 PUSH2 0x2B5E JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE01 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH0 SWAP1 PUSH2 0xC1F SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x380C JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x2917 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x294B JUMPI PUSH1 0x40 MLOAD PUSH4 0x3D560939 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0x299E JUMPI PUSH1 0x40 MLOAD PUSH4 0xA3E8F9B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP PUSH2 0x29A8 DUP2 PUSH2 0x3675 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0x66C0F28249C4FC4DB79872A4405BE78A93F19C65AC9EF2F173867A149065BCF2 SWAP1 PUSH0 SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2A3C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC1F SWAP2 SWAP1 PUSH2 0x4E61 JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH0 SWAP1 PUSH2 0xC1F SWAP1 PUSH1 0x1 PUSH1 0xB0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x380C JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0xA84 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x2ABB DUP7 DUP7 PUSH2 0x3975 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x2ADF JUMPI DUP4 DUP2 DUP2 PUSH2 0x2AD5 JUMPI PUSH2 0x2AD5 PUSH2 0x4FBA JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0xED4 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x2AF6 JUMPI PUSH2 0x2AF6 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x3991 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x138E DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x39A2 JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5147 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP4 SWAP1 SWAP4 MSTORE POP POP PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH0 SWAP1 PUSH2 0xA84 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH3 0xF4240 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3A86 JUMP JUMPDEST DUP2 SLOAD PUSH0 SWAP1 DUP2 SWAP1 PUSH2 0x2BDC SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x3ABB JUMP JUMPDEST SWAP1 POP DUP1 PUSH0 SUB PUSH2 0x2BFE JUMPI POP POP DUP2 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0xA84 JUMP JUMPDEST DUP4 SLOAD PUSH2 0x118E SWAP1 PUSH2 0x2C22 SWAP1 DUP4 SWAP1 PUSH8 0xDE0B6B3A7640000 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x3B07 JUMP JUMPDEST DUP6 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x3B22 JUMP JUMPDEST PUSH0 PUSH2 0xED4 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP6 AND JUMPDEST PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B07 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6C82BBBF PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xD905777E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2CBC JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x2CB9 SWAP2 DUP2 ADD SWAP1 PUSH2 0x4E7C JUMP JUMPDEST PUSH1 0x1 JUMPDEST ISZERO PUSH2 0x2CD3 JUMPI DUP4 DUP2 LT ISZERO PUSH2 0x2CD1 JUMPI PUSH1 0x1 SWAP2 POP DUP1 SWAP4 POP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2D42 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x2D3F SWAP2 DUP2 ADD SWAP1 PUSH2 0x4E7C JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2D91 JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x25BCE30047860A48C9D8830DBF31873BE5434F4D28F14A5808A4EA8E35D08296 DUP5 PUSH1 0x40 MLOAD PUSH2 0x2D81 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 PUSH2 0x2D94 JUMP JUMPDEST SWAP2 POP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x2DA4 DUP2 PUSH2 0x36CC JUMP JUMPDEST PUSH2 0x2DAD DUP2 PUSH2 0x3B3E JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x2DBB DUP5 DUP5 PUSH2 0x286C JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 LT ISZERO PUSH2 0x1E4A JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x2E00 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x1E4A DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x39A2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x2E37 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2E60 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x138E DUP4 DUP4 DUP4 PUSH2 0x3B74 JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0xED4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2EA3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x16EF DUP3 PUSH0 DUP4 PUSH2 0x3B74 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x2EE2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6427F273 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP DUP1 PUSH0 SUB PUSH2 0x2EEE JUMPI POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2EF7 PUSH2 0x379B JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x2F3A JUMPI PUSH0 PUSH2 0x2F14 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x2F38 JUMPI PUSH2 0x2F38 DUP2 PUSH2 0x2F33 DUP5 DUP7 PUSH2 0x4E16 JUMP JUMPDEST PUSH2 0x386A JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ADDRESS EQ PUSH2 0x138E JUMPI PUSH2 0x138E DUP4 DUP4 PUSH2 0x2F57 PUSH2 0x29DF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x3DFC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2F90 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x16EF PUSH0 DUP4 DUP4 PUSH2 0x3B74 JUMP JUMPDEST DUP2 SLOAD PUSH0 SWAP1 TIMESTAMP SWAP1 PUSH4 0xFFFFFFFF DUP1 DUP4 AND PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP3 DIV AND LT ISZERO PUSH2 0x3015 JUMPI DUP4 SLOAD PUSH2 0x300D SWAP1 PUSH4 0x1E13380 SWAP1 PUSH2 0x2FDB SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP5 PUSH2 0x4FCE JUMP JUMPDEST PUSH2 0x2FEB SWAP1 PUSH4 0xFFFFFFFF AND DUP7 PUSH2 0x4FEA JUMP JUMPDEST PUSH2 0x2FF5 SWAP2 SWAP1 PUSH2 0x5001 JUMP JUMPDEST DUP6 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x3E31 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xA84 JUMP JUMPDEST POP POP DUP2 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0xA84 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xED4 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP6 AND PUSH8 0xDE0B6B3A7640000 PUSH2 0x3A86 JUMP JUMPDEST PUSH0 PUSH2 0xC1F PUSH2 0x3E54 JUMP JUMPDEST PUSH2 0x3068 PUSH1 0x64 DUP3 PUSH1 0x65 PUSH2 0x32CE JUMP JUMPDEST DUP1 MLOAD PUSH1 0x64 DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP1 SWAP5 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND OR PUSH1 0x1 PUSH1 0x80 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 MUL SWAP3 SWAP1 SWAP3 OR PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x1 PUSH1 0xE0 SHL PUSH4 0xFFFFFFFF SWAP3 DUP4 AND MUL OR SWAP1 SWAP2 SSTORE PUSH2 0x30D5 SWAP1 PUSH1 0x65 SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH2 0x3EC7 AND JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 SWAP2 DUP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP2 AND OR PUSH1 0x65 SSTORE PUSH1 0x40 DUP1 MLOAD DUP5 DUP2 MSTORE SWAP2 DUP3 ADD DUP6 SWAP1 MSTORE DUP2 ADD DUP3 SWAP1 MSTORE DUP5 SWAP1 PUSH32 0x82E3211B2071BA731D809BC922F607D914D7CB7D76B03E72ACBE7753613E21F3 SWAP1 PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x31C1 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x31B5 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5187 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x31DF JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x2DAD DUP2 PUSH2 0x3F63 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x3244 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x3241 SWAP2 DUP2 ADD SWAP1 PUSH2 0x4E7C JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x326C JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5187 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x329C JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x138E DUP4 DUP4 PUSH2 0x4014 JUMP JUMPDEST DUP2 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP1 DUP4 GT ISZERO PUSH2 0x32C5 JUMPI PUSH2 0x300D DUP2 DUP5 PUSH2 0x4E16 JUMP JUMPDEST PUSH0 SWAP2 POP POP PUSH2 0xA84 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 SLOAD PUSH2 0x3304 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x3ABB JUMP JUMPDEST PUSH2 0x330E SWAP1 DUP5 PUSH2 0x5020 JUMP JUMPDEST DUP5 SLOAD SWAP1 SWAP4 POP PUSH0 SWAP1 PUSH2 0x334F SWAP1 PUSH2 0x3337 SWAP1 DUP7 SWAP1 PUSH8 0xDE0B6B3A7640000 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x4069 JUMP JUMPDEST DUP7 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x4084 JUMP JUMPDEST SWAP1 POP PUSH3 0xF4240 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND LT ISZERO PUSH2 0x3389 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6C53FB2B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP3 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH4 0xFFFFFFFF TIMESTAMP AND SWAP1 DUP3 ADD MSTORE SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH0 SUB PUSH2 0x3425 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x33FC DUP6 PUSH2 0x40CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3413 DUP5 PUSH2 0x40CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 MSTORE SWAP1 POP PUSH2 0xED4 JUMP JUMPDEST DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH0 PUSH2 0x343B DUP6 DUP4 PUSH2 0x4F30 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x3492 PUSH2 0x3454 DUP7 DUP9 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B07 JUMP JUMPDEST DUP9 SLOAD PUSH2 0x3479 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP7 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B07 JUMP JUMPDEST PUSH2 0x3483 SWAP2 SWAP1 PUSH2 0x4F30 JUMP JUMPDEST PUSH8 0xDE0B6B3A7640000 DUP5 PUSH2 0x3B07 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x34A8 DUP5 PUSH2 0x40CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x34BF DUP4 PUSH2 0x40CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE POP SWAP4 POP POP POP POP PUSH2 0xED4 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x31DF JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0xA84 JUMP JUMPDEST PUSH2 0x354E PUSH2 0x4100 JUMP JUMPDEST PUSH2 0x31DF PUSH2 0x4125 JUMP JUMPDEST PUSH2 0x355E PUSH2 0x4100 JUMP JUMPDEST PUSH2 0x16EF DUP3 DUP3 PUSH2 0x412D JUMP JUMPDEST PUSH2 0x3570 PUSH2 0x4100 JUMP JUMPDEST PUSH2 0x2DAD DUP2 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x31 PUSH1 0xF8 SHL DUP2 MSTORE POP PUSH2 0x417D JUMP JUMPDEST PUSH2 0x359B PUSH2 0x4100 JUMP JUMPDEST PUSH2 0x35A5 PUSH1 0x64 PUSH2 0x3675 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH2 0x2710 PUSH1 0x20 DUP4 ADD MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 ADD MSTORE PUSH1 0x67 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH2 0x271 PUSH1 0xA4 SHL OR SWAP1 SSTORE PUSH2 0x35EE PUSH1 0x2 DUP4 PUSH2 0x21D2 JUMP JUMPDEST PUSH2 0x16EF PUSH1 0x3 DUP3 PUSH2 0x21D2 JUMP JUMPDEST PUSH0 DUP1 PUSH32 0x5AB42CED628888259C08AC98DB1EB0CF702FC1501344311D8B100CD1BFE4BB00 PUSH2 0x2B7C JUMP JUMPDEST PUSH32 0xA16A46D94261C7517CC8FF89F61C0CE93598E3C849801011DEE649A6A557D102 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5167 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0xB08 SWAP1 PUSH2 0x4E29 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5167 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0xAF7 JUMP JUMPDEST PUSH4 0xFFFFFFFF TIMESTAMP AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH5 0x16BCC41E9 PUSH1 0x8E SHL OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x36C0 DUP6 DUP6 PUSH2 0x36BB DUP3 DUP8 PUSH2 0x2F9B JUMP JUMPDEST PUSH2 0x41DC JUMP JUMPDEST SWAP2 POP SWAP2 POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x36D9 PUSH1 0x64 DUP3 PUSH1 0x65 PUSH2 0x32CE JUMP JUMPDEST DUP1 MLOAD PUSH1 0x64 DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP1 SWAP5 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR OR SWAP3 SWAP1 SWAP3 AND OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0x3743 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x427E JUMP JUMPDEST PUSH2 0x1E4A JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFF SHL SUB DUP3 GT ISZERO PUSH2 0x3797 JUMPI PUSH1 0x40 MLOAD PUSH4 0x123BAF03 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x37A4 PUSH2 0x29DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x37E8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC1F SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST PUSH0 PUSH2 0xA84 PUSH6 0x5AF3107A4000 PUSH2 0xFFFF DUP5 AND PUSH2 0x4FEA JUMP JUMPDEST PUSH0 PUSH2 0xA84 PUSH2 0x3835 PUSH6 0x5AF3107A4000 DUP5 PUSH2 0x5001 JUMP JUMPDEST PUSH2 0x42EB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x36C0 DUP6 DUP6 PUSH2 0x3865 DUP3 DUP8 PUSH2 0x2F9B JUMP JUMPDEST PUSH2 0x4319 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x38BB JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x38DF SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST POP PUSH1 0x32 SLOAD DUP2 GT ISZERO PUSH2 0x3903 JUMPI PUSH2 0x38FB PUSH1 0x32 SLOAD DUP3 PUSH2 0xE55 SWAP2 SWAP1 PUSH2 0x4E16 JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE POP POP JUMP JUMPDEST DUP1 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x3914 SWAP2 SWAP1 PUSH2 0x4E16 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA84 PUSH2 0x3929 PUSH2 0x3052 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH2 0x1901 PUSH1 0xF0 SHL DUP2 MSTORE PUSH1 0x2 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x22 DUP3 ADD MSTORE PUSH1 0x42 SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x3959 DUP9 DUP9 DUP9 DUP9 PUSH2 0x43A9 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x3969 DUP3 DUP3 PUSH2 0x4471 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5147 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH2 0x39D9 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3A02 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP4 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP4 SWAP1 SSTORE DUP2 ISZERO PUSH2 0x3A7F JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3A76 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3AA0 PUSH0 DUP4 DUP1 PUSH2 0x3A99 JUMPI PUSH2 0x3A99 PUSH2 0x4FBA JUMP JUMPDEST DUP6 DUP8 MULMOD GT SWAP1 JUMP JUMPDEST DUP3 DUP5 DUP7 MUL DUP2 PUSH2 0x3AB1 JUMPI PUSH2 0x3AB1 PUSH2 0x4FBA JUMP JUMPDEST DIV ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 SLOAD PUSH0 SWAP1 PUSH2 0xED4 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH4 0x1E13380 PUSH2 0x3AE1 PUSH4 0xFFFFFFFF DUP7 AND TIMESTAMP PUSH2 0x4E16 JUMP JUMPDEST DUP7 SLOAD PUSH2 0x3AFD SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x4FEA JUMP JUMPDEST PUSH2 0x2C4A SWAP2 SWAP1 PUSH2 0x5001 JUMP JUMPDEST PUSH0 DUP2 DUP4 DUP6 MUL DUP2 PUSH2 0x3B19 JUMPI PUSH2 0x3B19 PUSH2 0x4FBA JUMP JUMPDEST DIV SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xED4 PUSH2 0x3B39 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH2 0x4F30 JUMP JUMPDEST PUSH2 0x4529 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x731C439C5BAE15BE1344EEC709967E046B4F7D3F7E37ABEFFC5247F448FA18BF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3BF1 JUMPI PUSH2 0x3B90 PUSH1 0x64 DUP4 PUSH1 0x65 PUSH2 0x455C JUMP JUMPDEST DUP2 MLOAD PUSH1 0x64 DUP1 SLOAD PUSH1 0x20 DUP6 ADD MLOAD PUSH1 0x40 SWAP1 SWAP6 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP7 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR OR SWAP4 SWAP1 SWAP4 AND OR SWAP1 SWAP2 SSTORE SWAP1 POP PUSH2 0x3CED JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3C0C JUMPI PUSH2 0x3B90 PUSH1 0x64 DUP4 PUSH1 0x65 PUSH2 0x4587 JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 PUSH2 0x3CA0 JUMPI POP PUSH1 0x67 SLOAD PUSH1 0x40 MLOAD PUSH4 0x5FCDCA37 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP6 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD DUP6 SWAP1 MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x5FCDCA37 SWAP1 PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3C7C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x3CA0 SWAP2 SWAP1 PUSH2 0x4EFA JUMP JUMPDEST DUP5 DUP5 DUP5 SWAP1 SWAP2 SWAP3 PUSH2 0x3CC6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x25CFF2D3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x105F SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4EB2 JUMP JUMPDEST POP PUSH2 0x3CEA SWAP2 POP DUP4 SWAP1 POP PUSH2 0x3CDB PUSH1 0x64 PUSH1 0x65 PUSH2 0x2BBE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x45B2 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5147 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND ISZERO PUSH2 0x3D8A JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3D6C JUMPI DUP6 PUSH2 0x3D3B DUP3 PUSH2 0xC43 PUSH1 0x64 PUSH1 0x65 PUSH2 0x2BBE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x105F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP4 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP4 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x3DB7 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP4 ADD SWAP1 SSTORE JUMPDEST DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP6 PUSH1 0x40 MLOAD PUSH2 0x3A76 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH2 0x3E09 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x45CF JUMP JUMPDEST PUSH2 0x138E JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH0 PUSH2 0xED4 PUSH2 0x3B39 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP6 AND PUSH2 0x2C4A PUSH8 0xDE0B6B3A7640000 DUP7 PUSH2 0x4F30 JUMP JUMPDEST PUSH0 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH2 0x3E7E PUSH2 0x4631 JUMP JUMPDEST PUSH2 0x3E86 PUSH2 0x4699 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP4 SWAP1 SUB PUSH2 0x3F05 JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xED4 JUMP JUMPDEST DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH0 PUSH2 0x3F1B DUP6 DUP4 PUSH2 0x4E16 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x3492 PUSH2 0x3F34 DUP7 DUP9 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B07 JUMP JUMPDEST DUP9 SLOAD PUSH2 0x3F59 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP7 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B07 JUMP JUMPDEST PUSH2 0x3483 SWAP2 SWAP1 PUSH2 0x4E16 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3FC9 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x3FED SWAP2 SWAP1 PUSH2 0x4E61 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2DAD JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x401D DUP3 PUSH2 0x46DB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x4061 JUMPI PUSH2 0x138E DUP3 DUP3 PUSH2 0x473E JUMP JUMPDEST PUSH2 0x16EF PUSH2 0x47CF JUMP JUMPDEST PUSH0 DUP2 DUP4 DUP6 MUL DUP2 PUSH2 0x407B JUMPI PUSH2 0x407B PUSH2 0x4FBA JUMP JUMPDEST SDIV SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x4099 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH2 0x5020 JUMP JUMPDEST SWAP1 POP DUP1 PUSH3 0xF4240 DUP2 LT ISZERO PUSH2 0x40C3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6C53FB2B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x105F SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP PUSH2 0x118E DUP2 PUSH2 0x4529 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 GT ISZERO PUSH2 0x3797 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x80 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x4108 PUSH2 0x47EE JUMP JUMPDEST PUSH2 0x31DF JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x31DF PUSH2 0x4100 JUMP JUMPDEST PUSH2 0x4135 PUSH2 0x4100 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5147 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 PUSH2 0x416E DUP5 DUP3 PUSH2 0x508B JUMP JUMPDEST POP PUSH1 0x4 DUP2 ADD PUSH2 0x1E4A DUP4 DUP3 PUSH2 0x508B JUMP JUMPDEST PUSH2 0x4185 PUSH2 0x4100 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5167 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0xA16A46D94261C7517CC8FF89F61C0CE93598E3C849801011DEE649A6A557D102 PUSH2 0x41BE DUP5 DUP3 PUSH2 0x508B JUMP JUMPDEST POP PUSH1 0x3 DUP2 ADD PUSH2 0x41CD DUP4 DUP3 PUSH2 0x508B JUMP JUMPDEST POP PUSH0 DUP1 DUP3 SSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SSTORE POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x420B PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP5 AND DUP6 PUSH2 0x45B2 JUMP JUMPDEST DUP6 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH0 PUSH2 0x4224 DUP4 DUP4 PUSH2 0x4E16 JUMP JUMPDEST SWAP1 POP DUP1 PUSH0 SUB PUSH2 0x4237 JUMPI PUSH6 0x5AF3107A4000 SWAP5 POP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x424B DUP4 PUSH2 0x40CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP4 POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x42DA JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x42CE JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xFFFF DUP3 GT ISZERO PUSH2 0x3797 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x10 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x4348 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP5 AND DUP6 PUSH2 0x4807 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD SWAP1 SWAP2 MSTORE DUP7 SLOAD SWAP2 SWAP3 POP SWAP1 DUP2 SWAP1 PUSH2 0x4378 SWAP1 PUSH2 0x4373 SWAP1 DUP6 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x4F30 JUMP JUMPDEST PUSH2 0x40CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP2 POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0x43E2 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x4467 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x4433 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x445E JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x4467 JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x4484 JUMPI PUSH2 0x4484 PUSH2 0x4F43 JUMP JUMPDEST SUB PUSH2 0x448D JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x44A1 JUMPI PUSH2 0x44A1 PUSH2 0x4F43 JUMP JUMPDEST SUB PUSH2 0x44BF JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x44D3 JUMPI PUSH2 0x44D3 PUSH2 0x4F43 JUMP JUMPDEST SUB PUSH2 0x44F4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x4508 JUMPI PUSH2 0x4508 PUSH2 0x4F43 JUMP JUMPDEST SUB PUSH2 0x16EF JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP3 GT ISZERO PUSH2 0x3797 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x60 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x36C0 DUP6 DUP6 PUSH2 0x3865 DUP3 DUP8 PUSH2 0x2BBE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x36C0 DUP6 DUP6 PUSH2 0x36BB DUP3 DUP8 PUSH2 0x2BBE JUMP JUMPDEST PUSH0 PUSH2 0xED4 DUP3 PUSH8 0xDE0B6B3A7640000 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH2 0x3A86 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x4625 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x4619 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5167 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x4649 PUSH2 0x3621 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x4661 JUMPI DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP2 SLOAD DUP1 ISZERO PUSH2 0x4670 JUMPI SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0xC5D2460186F7233C927E7DB2DCC703C0E500B653CA82273B7BFAD8045D85A470 SWAP4 POP POP POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5167 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x46B1 PUSH2 0x365F JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x46C9 JUMPI DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SLOAD DUP1 ISZERO PUSH2 0x4670 JUMPI SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x4710 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5187 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x474B DUP5 DUP5 PUSH2 0x4824 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x476C JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x476C JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x4779 JUMPI PUSH2 0x300D PUSH2 0x4837 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x47A3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x47B6 JUMPI PUSH2 0x47B1 PUSH2 0x4850 JUMP JUMPDEST PUSH2 0x302E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLVALUE ISZERO PUSH2 0x31DF JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x47F7 PUSH2 0x351E JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xED4 DUP3 PUSH8 0xDE0B6B3A7640000 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH2 0x3B07 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x486B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xED4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP1 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP7 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0xED4 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4882 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2DAD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x48E7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x48F2 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4910 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xED4 DUP2 PUSH2 0x48C2 JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x2DAD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4939 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4944 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4954 DUP2 PUSH2 0x491B JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4971 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x497C DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x498C DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x49B0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x49C2 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x49D2 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x49E2 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x49FF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x4A11 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x4A21 DUP2 PUSH2 0x48C2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x4A41 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH1 0x60 DUP8 ADD CALLDATALOAD SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD PUSH2 0x4A68 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP3 SWAP6 SWAP2 SWAP5 SWAP4 PUSH1 0xA0 SWAP1 SWAP3 ADD CALLDATALOAD SWAP3 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP5 GT ISZERO PUSH2 0x4AAB JUMPI PUSH2 0x4AAB PUSH2 0x4A7D JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x4ADA JUMPI PUSH2 0x4ADA PUSH2 0x4A7D JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP6 LT ISZERO PUSH2 0x4AF1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4B19 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4B24 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4B3F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x4B4F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4B5E DUP6 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x4A91 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4B7A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP2 CALLDATALOAD SWAP4 PUSH1 0x20 DUP4 ADD CALLDATALOAD SWAP4 POP PUSH1 0x40 SWAP1 SWAP3 ADD CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x4BA0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xED4 DUP4 DUP4 CALLDATALOAD PUSH1 0x20 DUP6 ADD PUSH2 0x4A91 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4BC2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4BD8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4BE4 DUP8 DUP3 DUP9 ADD PUSH2 0x4B91 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4C00 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4C0C DUP8 DUP3 DUP9 ADD PUSH2 0x4B91 JUMP JUMPDEST SWAP5 SWAP8 SWAP5 SWAP7 POP POP POP POP PUSH1 0x40 DUP4 ADD CALLDATALOAD SWAP3 PUSH1 0x60 ADD CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4C33 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xED4 DUP2 PUSH2 0x491B JUMP JUMPDEST PUSH1 0xFF PUSH1 0xF8 SHL DUP9 AND DUP2 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0x4C5C PUSH1 0xE0 DUP4 ADD DUP10 PUSH2 0x4882 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x4C6E DUP2 DUP10 PUSH2 0x4882 JUMP JUMPDEST PUSH1 0x60 DUP5 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD DUP7 SWAP1 MSTORE DUP4 DUP2 SUB PUSH1 0xC0 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP8 ADD SWAP4 POP SWAP1 SWAP2 ADD SWAP1 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x4CC3 JUMPI DUP4 MLOAD DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x4CA5 JUMP JUMPDEST POP SWAP1 SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4CE5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4954 DUP2 PUSH2 0x48C2 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4D07 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4D21 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 CALLDATALOAD SWAP5 PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP4 PUSH1 0x60 ADD CALLDATALOAD SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4D4E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x4 DUP2 LT PUSH2 0x48F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x2DAD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x4D80 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x4D8B DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD PUSH2 0x4D9B DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH2 0x4DB9 DUP2 PUSH2 0x4D5C JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4DE7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4DF2 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4954 DUP2 PUSH2 0x48C2 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xA84 JUMPI PUSH2 0xA84 PUSH2 0x4E02 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x4E3D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x4E5B JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4E71 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xED4 DUP2 PUSH2 0x48C2 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4E8C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP2 DUP2 SUB PUSH0 DUP4 SLT DUP1 ISZERO DUP4 DUP4 SGT AND DUP4 DUP4 SLT DUP3 AND OR ISZERO PUSH2 0x302E JUMPI PUSH2 0x302E PUSH2 0x4E02 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4EE6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xED4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4F0A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xED4 DUP2 PUSH2 0x491B JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4F25 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xED4 DUP2 PUSH2 0x4D5C JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xA84 JUMPI PUSH2 0xA84 PUSH2 0x4E02 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x4F73 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0xA84 DUP3 DUP5 PUSH2 0x4F57 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4F93 DUP3 DUP6 PUSH2 0x4F57 JUMP JUMPDEST DUP3 PUSH1 0x20 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x4FB4 JUMPI PUSH2 0x4FB4 PUSH2 0x4E02 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0xA84 JUMPI PUSH2 0xA84 PUSH2 0x4E02 JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0xA84 JUMPI PUSH2 0xA84 PUSH2 0x4E02 JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x501B JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x503F JUMPI PUSH2 0x503F PUSH2 0x4E02 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x138E JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x506C JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3A7F JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x5078 JUMP JUMPDEST DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x50A5 JUMPI PUSH2 0x50A5 PUSH2 0x4A7D JUMP JUMPDEST PUSH2 0x50B9 DUP2 PUSH2 0x50B3 DUP5 SLOAD PUSH2 0x4E29 JUMP JUMPDEST DUP5 PUSH2 0x5047 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x50EB JUMPI PUSH0 DUP4 ISZERO PUSH2 0x50D4 JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x3A7F JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x511A JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x50FA JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x5137 JUMPI DUP7 DUP5 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP INVALID MSTORE 0xC6 ORIGIN SELFBALANCE RJUMPI 0xF47D 0xB1 SWAP14 TLOAD RJUMP 0x4600 ADDRESS 0xC4 SWAP8 CREATE PUSH8 0xCA4CEBF71BA98EEA 0xDA 0xBE KECCAK256 0xBA 0xCE STOP LOG1 PUSH11 0x46D94261C7517CC8FF89F6 SHR 0xC 0xE9 CALLDATALOAD SWAP9 CALLF 0xC849 DUP1 LT GT 0xDE DUPN 0x49 0xA6 0xA5 JUMPI DATALOADN 0x36 ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCA264697066735822122083 SWAP6 SWAP5 SLT ADDMOD RETURNDATACOPY POP MCOPY PUSH7 0x4F9984245542DF 0x2E LOG1 PUSH1 0x8 DUP4 JUMPF 0x52D1 SWAPN 0xF4 DUP1 SWAP13 REVERT SWAP1 CREATE PUSH6 0x64736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"1883:26361:69:-:0;;;1084:4:33;1041:48;;9320:60:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9365:11;;-1:-1:-1;;;;;1540:34:73;;1536:65;;1583:18;;-1:-1:-1;;;1583:18:73;;;;;;;;;;;1536:65;1607:22;:20;:22::i;:::-;-1:-1:-1;;;;;1635:25:73;;;-1:-1:-1;1883:26361:69;;-1:-1:-1;1883:26361:69;7709:422:32;3147:66;7898:15;;;;;;;7894:76;;;7936:23;;-1:-1:-1;;;7936:23:32;;;;;;;;;;;7894:76;7983:14;;-1:-1:-1;;;;;7983:14:32;;;:34;7979:146;;8033:33;;-1:-1:-1;;;;;;8033:33:32;-1:-1:-1;;;;;8033:33:32;;;;;8085:29;;474:50:101;;;8085:29:32;;462:2:101;447:18;8085:29:32;;;;;;;7979:146;7758:373;7709:422::o;14:311:101:-;105:6;158:2;146:9;137:7;133:23;129:32;126:52;;;174:1;171;164:12;126:52;200:16;;-1:-1:-1;;;;;245:31:101;;235:42;;225:70;;291:1;288;281:12;225:70;314:5;14:311;-1:-1:-1;;;14:311:101:o;330:200::-;1883:26361:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@DOMAIN_SEPARATOR_1783":{"entryPoint":5365,"id":1783,"parameterSlots":0,"returnSlots":1},"@UPGRADE_INTERFACE_VERSION_7238":{"entryPoint":null,"id":7238,"parameterSlots":0,"returnSlots":0},"@_4toWad_20638":{"entryPoint":14348,"id":20638,"parameterSlots":1,"returnSlots":1},"@_EIP712NameHash_3575":{"entryPoint":17969,"id":3575,"parameterSlots":0,"returnSlots":1},"@_EIP712Name_3507":{"entryPoint":13857,"id":3507,"parameterSlots":0,"returnSlots":1},"@_EIP712VersionHash_3627":{"entryPoint":18073,"id":3627,"parameterSlots":0,"returnSlots":1},"@_EIP712Version_3523":{"entryPoint":13919,"id":3523,"parameterSlots":0,"returnSlots":1},"@__EIP712_init_unchained_3381":{"entryPoint":16765,"id":3381,"parameterSlots":2,"returnSlots":0},"@__ERC20Permit_init_1671":{"entryPoint":13672,"id":1671,"parameterSlots":1,"returnSlots":0},"@__ERC20_init_1066":{"entryPoint":13654,"id":1066,"parameterSlots":2,"returnSlots":0},"@__ERC20_init_unchained_1094":{"entryPoint":16685,"id":1094,"parameterSlots":2,"returnSlots":0},"@__EToken_init_unchained_20195":{"entryPoint":13715,"id":20195,"parameterSlots":2,"returnSlots":0},"@__PolicyPoolComponent_init_25530":{"entryPoint":16677,"id":25530,"parameterSlots":0,"returnSlots":0},"@__Reserve_init_27444":{"entryPoint":13638,"id":27444,"parameterSlots":0,"returnSlots":0},"@_add_19316":{"entryPoint":17177,"id":19316,"parameterSlots":3,"returnSlots":2},"@_approve_1498":{"entryPoint":11102,"id":1498,"parameterSlots":3,"returnSlots":0},"@_approve_1566":{"entryPoint":14754,"id":1566,"parameterSlots":4,"returnSlots":0},"@_authorizeUpgrade_25541":{"entryPoint":12769,"id":25541,"parameterSlots":1,"returnSlots":0},"@_balance_27823":{"entryPoint":14235,"id":27823,"parameterSlots":0,"returnSlots":1},"@_buildDomainSeparator_3414":{"entryPoint":15956,"id":3414,"parameterSlots":0,"returnSlots":1},"@_burn_1480":{"entryPoint":11898,"id":1480,"parameterSlots":2,"returnSlots":0},"@_checkInitializing_7126":{"entryPoint":16640,"id":7126,"parameterSlots":0,"returnSlots":0},"@_checkNonPayable_6903":{"entryPoint":18383,"id":6903,"parameterSlots":0,"returnSlots":0},"@_checkNotDelegated_7332":{"entryPoint":13525,"id":7332,"parameterSlots":0,"returnSlots":0},"@_checkProxy_7316":{"entryPoint":12603,"id":7316,"parameterSlots":0,"returnSlots":0},"@_deinvest_27730":{"entryPoint":14442,"id":27730,"parameterSlots":2,"returnSlots":0},"@_discreteChange_20945":{"entryPoint":14028,"id":20945,"parameterSlots":1,"returnSlots":0},"@_domainSeparatorV4_3391":{"entryPoint":12370,"id":3391,"parameterSlots":0,"returnSlots":1},"@_getEIP712Storage_3325":{"entryPoint":null,"id":3325,"parameterSlots":0,"returnSlots":1},"@_getERC20StorageFromEToken_20110":{"entryPoint":null,"id":20110,"parameterSlots":0,"returnSlots":1},"@_getERC20Storage_1050":{"entryPoint":null,"id":1050,"parameterSlots":0,"returnSlots":1},"@_getInitializableStorage_7217":{"entryPoint":13598,"id":7217,"parameterSlots":0,"returnSlots":1},"@_getNoncesStorage_3044":{"entryPoint":null,"id":3044,"parameterSlots":0,"returnSlots":1},"@_hashTypedDataV4_3430":{"entryPoint":14621,"id":3430,"parameterSlots":1,"returnSlots":1},"@_initializableStorageSlot_7203":{"entryPoint":null,"id":7203,"parameterSlots":0,"returnSlots":1},"@_isInitializing_7194":{"entryPoint":18414,"id":7194,"parameterSlots":0,"returnSlots":1},"@_mint_1447":{"entryPoint":12135,"id":1447,"parameterSlots":2,"returnSlots":0},"@_msgSender_2892":{"entryPoint":null,"id":2892,"parameterSlots":0,"returnSlots":1},"@_mulDivCeil_18957":{"entryPoint":14982,"id":18957,"parameterSlots":3,"returnSlots":1},"@_mulDiv_18904":{"entryPoint":15111,"id":18904,"parameterSlots":3,"returnSlots":1},"@_mulDiv_18925":{"entryPoint":16489,"id":18925,"parameterSlots":3,"returnSlots":1},"@_safeDeInvestAll_27805":{"entryPoint":11352,"id":27805,"parameterSlots":2,"returnSlots":2},"@_safeTransferFrom_9330":{"entryPoint":17022,"id":9330,"parameterSlots":5,"returnSlots":1},"@_safeTransfer_9305":{"entryPoint":17871,"id":9305,"parameterSlots":4,"returnSlots":1},"@_setImplementation_6683":{"entryPoint":18139,"id":6683,"parameterSlots":1,"returnSlots":0},"@_setYieldVault_20623":{"entryPoint":null,"id":20623,"parameterSlots":1,"returnSlots":0},"@_spendAllowance_1614":{"entryPoint":11696,"id":1614,"parameterSlots":3,"returnSlots":0},"@_sub_19378":{"entryPoint":16860,"id":19378,"parameterSlots":3,"returnSlots":2},"@_throwError_13696":{"entryPoint":17521,"id":13696,"parameterSlots":2,"returnSlots":0},"@_transferTo_27518":{"entryPoint":11950,"id":27518,"parameterSlots":2,"returnSlots":0},"@_transfer_1322":{"entryPoint":11790,"id":1322,"parameterSlots":3,"returnSlots":0},"@_unlockScr_20850":{"entryPoint":12379,"id":20850,"parameterSlots":4,"returnSlots":0},"@_update_20444":{"entryPoint":15220,"id":20444,"parameterSlots":3,"returnSlots":0},"@_upgradeToAndCallUUPS_7383":{"entryPoint":12778,"id":7383,"parameterSlots":2,"returnSlots":0},"@_upgradeValidations_25558":{"entryPoint":16227,"id":25558,"parameterSlots":1,"returnSlots":0},"@_useNonce_3098":{"entryPoint":null,"id":3098,"parameterSlots":1,"returnSlots":1},"@_wadTo4_20653":{"entryPoint":14369,"id":20653,"parameterSlots":1,"returnSlots":1},"@_yieldEarnings_20931":{"entryPoint":11675,"id":20931,"parameterSlots":1,"returnSlots":0},"@_yieldEarnings_27552":{"entryPoint":15166,"id":27552,"parameterSlots":1,"returnSlots":0},"@addBorrower_21274":{"entryPoint":10446,"id":21274,"parameterSlots":1,"returnSlots":0},"@add_19090":{"entryPoint":15138,"id":19090,"parameterSlots":2,"returnSlots":1},"@add_19133":{"entryPoint":16516,"id":19133,"parameterSlots":2,"returnSlots":1},"@add_19404":{"entryPoint":14394,"id":19404,"parameterSlots":3,"returnSlots":2},"@add_19457":{"entryPoint":17756,"id":19457,"parameterSlots":3,"returnSlots":2},"@add_19652":{"entryPoint":13252,"id":19652,"parameterSlots":3,"returnSlots":1},"@allowance_1219":{"entryPoint":10348,"id":1219,"parameterSlots":2,"returnSlots":1},"@approve_1243":{"entryPoint":2954,"id":1243,"parameterSlots":2,"returnSlots":1},"@balanceOf_1171":{"entryPoint":11115,"id":1171,"parameterSlots":1,"returnSlots":1},"@balanceOf_20283":{"entryPoint":6625,"id":20283,"parameterSlots":1,"returnSlots":1},"@bubbleRevert_10900":{"entryPoint":18512,"id":10900,"parameterSlots":0,"returnSlots":0},"@cooler_21749":{"entryPoint":null,"id":21749,"parameterSlots":0,"returnSlots":1},"@currency_25603":{"entryPoint":10719,"id":25603,"parameterSlots":0,"returnSlots":1},"@decimals_20245":{"entryPoint":5011,"id":20245,"parameterSlots":0,"returnSlots":1},"@delegatecallNoReturn_10862":{"entryPoint":18468,"id":10862,"parameterSlots":2,"returnSlots":1},"@depositIntoYieldVault_27946":{"entryPoint":8243,"id":27946,"parameterSlots":1,"returnSlots":0},"@deposit_21016":{"entryPoint":4502,"id":21016,"parameterSlots":3,"returnSlots":0},"@discreteChange_19556":{"entryPoint":13006,"id":19556,"parameterSlots":3,"returnSlots":1},"@earnings_19762":{"entryPoint":15035,"id":19762,"parameterSlots":2,"returnSlots":1},"@eip712Domain_3491":{"entryPoint":6946,"id":3491,"parameterSlots":0,"returnSlots":7},"@functionDelegateCall_9894":{"entryPoint":18238,"id":9894,"parameterSlots":2,"returnSlots":1},"@fundsAvailableToLock_20600":{"entryPoint":7822,"id":20600,"parameterSlots":0,"returnSlots":1},"@fundsAvailable_19792":{"entryPoint":12966,"id":19792,"parameterSlots":2,"returnSlots":1},"@fundsAvailable_20530":{"entryPoint":5875,"id":20530,"parameterSlots":0,"returnSlots":1},"@getAddressSlot_11669":{"entryPoint":null,"id":11669,"parameterSlots":1,"returnSlots":1},"@getCurrentScale_20517":{"entryPoint":6878,"id":20517,"parameterSlots":1,"returnSlots":1},"@getImplementation_6656":{"entryPoint":null,"id":6656,"parameterSlots":0,"returnSlots":1},"@getLoan_21523":{"entryPoint":5235,"id":21523,"parameterSlots":1,"returnSlots":1},"@getScaledUserBalanceAndSupply_20480":{"entryPoint":2977,"id":20480,"parameterSlots":1,"returnSlots":2},"@grow_19065":{"entryPoint":15921,"id":19065,"parameterSlots":2,"returnSlots":1},"@init_19270":{"entryPoint":13941,"id":19270,"parameterSlots":1,"returnSlots":0},"@initialize_20153":{"entryPoint":6345,"id":20153,"parameterSlots":4,"returnSlots":0},"@internalLoanInterestRate_21535":{"entryPoint":9507,"id":21535,"parameterSlots":0,"returnSlots":1},"@internalLoan_21397":{"entryPoint":9174,"id":21397,"parameterSlots":2,"returnSlots":1},"@investedInYV_27541":{"entryPoint":null,"id":27541,"parameterSlots":0,"returnSlots":1},"@liquidityRequirement_20720":{"entryPoint":8633,"id":20720,"parameterSlots":0,"returnSlots":1},"@lockScr_20815":{"entryPoint":5895,"id":20815,"parameterSlots":3,"returnSlots":0},"@maxNegativeAdjustment_21325":{"entryPoint":3074,"id":21325,"parameterSlots":0,"returnSlots":1},"@maxUtilizationRate_20732":{"entryPoint":10421,"id":20732,"parameterSlots":0,"returnSlots":1},"@minUtilizationRate_20744":{"entryPoint":10848,"id":20744,"parameterSlots":0,"returnSlots":1},"@minValue_19576":{"entryPoint":11163,"id":19576,"parameterSlots":1,"returnSlots":1},"@min_14599":{"entryPoint":11883,"id":14599,"parameterSlots":2,"returnSlots":1},"@mul512_14312":{"entryPoint":14709,"id":14312,"parameterSlots":2,"returnSlots":2},"@mulDiv_14799":{"entryPoint":10926,"id":14799,"parameterSlots":3,"returnSlots":1},"@name_1110":{"entryPoint":2789,"id":1110,"parameterSlots":0,"returnSlots":1},"@nonces_1773":{"entryPoint":6936,"id":1773,"parameterSlots":1,"returnSlots":1},"@nonces_3076":{"entryPoint":13817,"id":3076,"parameterSlots":1,"returnSlots":1},"@panic_11416":{"entryPoint":14737,"id":11416,"parameterSlots":1,"returnSlots":0},"@permit_1756":{"entryPoint":10007,"id":1756,"parameterSlots":7,"returnSlots":0},"@policyPool_25592":{"entryPoint":null,"id":25592,"parameterSlots":0,"returnSlots":1},"@projectScale_19196":{"entryPoint":12187,"id":19196,"parameterSlots":2,"returnSlots":1},"@projectScale_19241":{"entryPoint":11198,"id":19241,"parameterSlots":2,"returnSlots":1},"@proxiableUUID_7274":{"entryPoint":6250,"id":7274,"parameterSlots":0,"returnSlots":1},"@recordEarnings_28009":{"entryPoint":5540,"id":28009,"parameterSlots":0,"returnSlots":0},"@recover_13619":{"entryPoint":14665,"id":13619,"parameterSlots":4,"returnSlots":1},"@redistribute_21225":{"entryPoint":8065,"id":21225,"parameterSlots":1,"returnSlots":0},"@removeBorrower_21311":{"entryPoint":6650,"id":21311,"parameterSlots":1,"returnSlots":0},"@repayLoan_21481":{"entryPoint":7430,"id":21481,"parameterSlots":2,"returnSlots":0},"@returnDataSize_10886":{"entryPoint":null,"id":10886,"parameterSlots":0,"returnSlots":1},"@returnData_10894":{"entryPoint":18487,"id":10894,"parameterSlots":0,"returnSlots":1},"@safeTransferFrom_8979":{"entryPoint":14133,"id":8979,"parameterSlots":4,"returnSlots":0},"@safeTransfer_8948":{"entryPoint":15868,"id":8948,"parameterSlots":3,"returnSlots":0},"@scaledBalanceOf_20458":{"entryPoint":3756,"id":20458,"parameterSlots":1,"returnSlots":1},"@scaledTotalSupply_20493":{"entryPoint":null,"id":20493,"parameterSlots":0,"returnSlots":1},"@scrAmount_19808":{"entryPoint":null,"id":19808,"parameterSlots":1,"returnSlots":1},"@scrInterestRate_20679":{"entryPoint":null,"id":20679,"parameterSlots":0,"returnSlots":1},"@scr_20665":{"entryPoint":6326,"id":20665,"parameterSlots":0,"returnSlots":1},"@setCooler_21737":{"entryPoint":9532,"id":21737,"parameterSlots":1,"returnSlots":0},"@setParam_21640":{"entryPoint":8658,"id":21640,"parameterSlots":2,"returnSlots":0},"@setWhitelist_21685":{"entryPoint":7115,"id":21685,"parameterSlots":1,"returnSlots":0},"@setYieldVault_27683":{"entryPoint":3154,"id":27683,"parameterSlots":2,"returnSlots":0},"@sub_19430":{"entryPoint":13968,"id":19430,"parameterSlots":3,"returnSlots":2},"@sub_19484":{"entryPoint":17799,"id":19484,"parameterSlots":3,"returnSlots":2},"@sub_19724":{"entryPoint":16071,"id":19724,"parameterSlots":3,"returnSlots":1},"@supportsInterface_20231":{"entryPoint":2601,"id":20231,"parameterSlots":1,"returnSlots":1},"@supportsInterface_25582":{"entryPoint":10873,"id":25582,"parameterSlots":1,"returnSlots":1},"@symbol_1126":{"entryPoint":7760,"id":1126,"parameterSlots":0,"returnSlots":1},"@ternary_14561":{"entryPoint":null,"id":14561,"parameterSlots":3,"returnSlots":1},"@toCurrentCeil_18997":{"entryPoint":12341,"id":18997,"parameterSlots":2,"returnSlots":1},"@toCurrent_18977":{"entryPoint":11322,"id":18977,"parameterSlots":2,"returnSlots":1},"@toInt256_17668":{"entryPoint":14187,"id":17668,"parameterSlots":1,"returnSlots":1},"@toScaledCeil_19037":{"entryPoint":17842,"id":19037,"parameterSlots":2,"returnSlots":1},"@toScaled_19017":{"entryPoint":18439,"id":19017,"parameterSlots":2,"returnSlots":1},"@toTypedDataHash_14049":{"entryPoint":null,"id":14049,"parameterSlots":2,"returnSlots":1},"@toUint128_16389":{"entryPoint":16589,"id":16389,"parameterSlots":1,"returnSlots":1},"@toUint16_16781":{"entryPoint":17131,"id":16781,"parameterSlots":1,"returnSlots":1},"@toUint256_19148":{"entryPoint":null,"id":19148,"parameterSlots":1,"returnSlots":1},"@toUint96_16501":{"entryPoint":17705,"id":16501,"parameterSlots":1,"returnSlots":1},"@toUint_17678":{"entryPoint":null,"id":17678,"parameterSlots":1,"returnSlots":1},"@tokenInterestRate_20708":{"entryPoint":3011,"id":20708,"parameterSlots":0,"returnSlots":1},"@totalSupply_20262":{"entryPoint":3108,"id":20262,"parameterSlots":0,"returnSlots":1},"@totalWithdrawable_21050":{"entryPoint":2698,"id":21050,"parameterSlots":0,"returnSlots":1},"@transferFrom_1275":{"entryPoint":3766,"id":1275,"parameterSlots":3,"returnSlots":1},"@transfer_1195":{"entryPoint":8230,"id":1195,"parameterSlots":2,"returnSlots":1},"@tryRecover_13583":{"entryPoint":17321,"id":13583,"parameterSlots":4,"returnSlots":3},"@unlockScrWithRefund_20914":{"entryPoint":5374,"id":20914,"parameterSlots":6,"returnSlots":0},"@unlockScr_20872":{"entryPoint":8148,"id":20872,"parameterSlots":4,"returnSlots":0},"@upgradeToAndCall_6719":{"entryPoint":16404,"id":6719,"parameterSlots":2,"returnSlots":0},"@upgradeToAndCall_7294":{"entryPoint":5844,"id":7294,"parameterSlots":2,"returnSlots":0},"@utilizationRate_20769":{"entryPoint":6277,"id":20769,"parameterSlots":0,"returnSlots":1},"@whitelist_21695":{"entryPoint":null,"id":21695,"parameterSlots":0,"returnSlots":1},"@withdrawFromYieldVault_27866":{"entryPoint":9847,"id":27866,"parameterSlots":1,"returnSlots":1},"@withdraw_21200":{"entryPoint":3803,"id":21200,"parameterSlots":4,"returnSlots":1},"@yieldVault_20611":{"entryPoint":null,"id":20611,"parameterSlots":0,"returnSlots":1},"abi_decode_available_length_bytes":{"entryPoint":19089,"id":null,"parameterSlots":3,"returnSlots":1},"abi_decode_string":{"entryPoint":19345,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":18688,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":20065,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":19926,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":18783,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32":{"entryPoint":19818,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_addresst_bytes_memory_ptr":{"entryPoint":19208,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":18646,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bool":{"entryPoint":19491,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":20218,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":18523,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_ICooler_$28695":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC4626_$6400t_bool":{"entryPoint":18728,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_ILPWhitelist_$28916":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_enum$_Parameter_$28704t_uint256":{"entryPoint":19773,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint256":{"entryPoint":19375,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_uint256":{"entryPoint":19703,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":20092,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_address":{"entryPoint":19668,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_addresst_address":{"entryPoint":18925,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint256t_addresst_addresst_address":{"entryPoint":18845,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_uint256t_uint256t_uint256":{"entryPoint":19304,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint256t_uint256t_uint256t_int256":{"entryPoint":19726,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_uint256t_uint256t_uint256t_int256t_addresst_uint256":{"entryPoint":18988,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_uint40_fromMemory":{"entryPoint":20182,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint8_fromMemory":{"entryPoint":20245,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_enum_Parameter":{"entryPoint":20311,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_string":{"entryPoint":18562,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":19518,"id":null,"parameterSlots":8,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":7,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_contract$_EToken_$21755__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_EToken_$21755_t_address_t_address_t_uint256__to_t_address_t_address_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_contract$_EToken_$21755_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed":{"entryPoint":20146,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_contract$_ICooler_$28695__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_ICooler_$28695_t_contract$_ICooler_$28695__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC4626_$6400__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_ILPWhitelist_$28916__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_ILPWhitelist_$28916_t_contract$_ILPWhitelist_$28916__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_enum$_Parameter_$28704__to_t_uint8__fromStack_reversed":{"entryPoint":20343,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_enum$_Parameter_$28704_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":20357,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_128_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_16_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_96_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":18608,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_2e5045ff73280aa8e8acd8c82710f23812497f87f7f576e2220a2ddd0d45eade__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_int256__to_t_uint256_t_uint256_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint96__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"checked_add_t_int256":{"entryPoint":20512,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":20272,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":20481,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":20458,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_int256":{"entryPoint":20115,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":19990,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint32":{"entryPoint":20430,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":20551,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":20619,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":20009,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"negate_t_int256":{"entryPoint":20384,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":19970,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":20410,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":20291,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":19069,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":18626,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_bool":{"entryPoint":18715,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_uint8":{"entryPoint":19804,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:29420:101","nodeType":"YulBlock","src":"0:29420:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"83:217:101","nodeType":"YulBlock","src":"83:217:101","statements":[{"body":{"nativeSrc":"129:16:101","nodeType":"YulBlock","src":"129:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"138:1:101","nodeType":"YulLiteral","src":"138:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"141:1:101","nodeType":"YulLiteral","src":"141:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"131:6:101","nodeType":"YulIdentifier","src":"131:6:101"},"nativeSrc":"131:12:101","nodeType":"YulFunctionCall","src":"131:12:101"},"nativeSrc":"131:12:101","nodeType":"YulExpressionStatement","src":"131:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"104:7:101","nodeType":"YulIdentifier","src":"104:7:101"},{"name":"headStart","nativeSrc":"113:9:101","nodeType":"YulIdentifier","src":"113:9:101"}],"functionName":{"name":"sub","nativeSrc":"100:3:101","nodeType":"YulIdentifier","src":"100:3:101"},"nativeSrc":"100:23:101","nodeType":"YulFunctionCall","src":"100:23:101"},{"kind":"number","nativeSrc":"125:2:101","nodeType":"YulLiteral","src":"125:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"96:3:101","nodeType":"YulIdentifier","src":"96:3:101"},"nativeSrc":"96:32:101","nodeType":"YulFunctionCall","src":"96:32:101"},"nativeSrc":"93:52:101","nodeType":"YulIf","src":"93:52:101"},{"nativeSrc":"154:36:101","nodeType":"YulVariableDeclaration","src":"154:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"180:9:101","nodeType":"YulIdentifier","src":"180:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"167:12:101","nodeType":"YulIdentifier","src":"167:12:101"},"nativeSrc":"167:23:101","nodeType":"YulFunctionCall","src":"167:23:101"},"variables":[{"name":"value","nativeSrc":"158:5:101","nodeType":"YulTypedName","src":"158:5:101","type":""}]},{"body":{"nativeSrc":"254:16:101","nodeType":"YulBlock","src":"254:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:101","nodeType":"YulLiteral","src":"263:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:101","nodeType":"YulLiteral","src":"266:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:101","nodeType":"YulIdentifier","src":"256:6:101"},"nativeSrc":"256:12:101","nodeType":"YulFunctionCall","src":"256:12:101"},"nativeSrc":"256:12:101","nodeType":"YulExpressionStatement","src":"256:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"212:5:101","nodeType":"YulIdentifier","src":"212:5:101"},{"arguments":[{"name":"value","nativeSrc":"223:5:101","nodeType":"YulIdentifier","src":"223:5:101"},{"arguments":[{"kind":"number","nativeSrc":"234:3:101","nodeType":"YulLiteral","src":"234:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"239:10:101","nodeType":"YulLiteral","src":"239:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"230:3:101","nodeType":"YulIdentifier","src":"230:3:101"},"nativeSrc":"230:20:101","nodeType":"YulFunctionCall","src":"230:20:101"}],"functionName":{"name":"and","nativeSrc":"219:3:101","nodeType":"YulIdentifier","src":"219:3:101"},"nativeSrc":"219:32:101","nodeType":"YulFunctionCall","src":"219:32:101"}],"functionName":{"name":"eq","nativeSrc":"209:2:101","nodeType":"YulIdentifier","src":"209:2:101"},"nativeSrc":"209:43:101","nodeType":"YulFunctionCall","src":"209:43:101"}],"functionName":{"name":"iszero","nativeSrc":"202:6:101","nodeType":"YulIdentifier","src":"202:6:101"},"nativeSrc":"202:51:101","nodeType":"YulFunctionCall","src":"202:51:101"},"nativeSrc":"199:71:101","nodeType":"YulIf","src":"199:71:101"},{"nativeSrc":"279:15:101","nodeType":"YulAssignment","src":"279:15:101","value":{"name":"value","nativeSrc":"289:5:101","nodeType":"YulIdentifier","src":"289:5:101"},"variableNames":[{"name":"value0","nativeSrc":"279:6:101","nodeType":"YulIdentifier","src":"279:6:101"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14:286:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"49:9:101","nodeType":"YulTypedName","src":"49:9:101","type":""},{"name":"dataEnd","nativeSrc":"60:7:101","nodeType":"YulTypedName","src":"60:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"72:6:101","nodeType":"YulTypedName","src":"72:6:101","type":""}],"src":"14:286:101"},{"body":{"nativeSrc":"400:92:101","nodeType":"YulBlock","src":"400:92:101","statements":[{"nativeSrc":"410:26:101","nodeType":"YulAssignment","src":"410:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:101","nodeType":"YulIdentifier","src":"422:9:101"},{"kind":"number","nativeSrc":"433:2:101","nodeType":"YulLiteral","src":"433:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"418:3:101","nodeType":"YulIdentifier","src":"418:3:101"},"nativeSrc":"418:18:101","nodeType":"YulFunctionCall","src":"418:18:101"},"variableNames":[{"name":"tail","nativeSrc":"410:4:101","nodeType":"YulIdentifier","src":"410:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"452:9:101","nodeType":"YulIdentifier","src":"452:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"477:6:101","nodeType":"YulIdentifier","src":"477:6:101"}],"functionName":{"name":"iszero","nativeSrc":"470:6:101","nodeType":"YulIdentifier","src":"470:6:101"},"nativeSrc":"470:14:101","nodeType":"YulFunctionCall","src":"470:14:101"}],"functionName":{"name":"iszero","nativeSrc":"463:6:101","nodeType":"YulIdentifier","src":"463:6:101"},"nativeSrc":"463:22:101","nodeType":"YulFunctionCall","src":"463:22:101"}],"functionName":{"name":"mstore","nativeSrc":"445:6:101","nodeType":"YulIdentifier","src":"445:6:101"},"nativeSrc":"445:41:101","nodeType":"YulFunctionCall","src":"445:41:101"},"nativeSrc":"445:41:101","nodeType":"YulExpressionStatement","src":"445:41:101"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"305:187:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"369:9:101","nodeType":"YulTypedName","src":"369:9:101","type":""},{"name":"value0","nativeSrc":"380:6:101","nodeType":"YulTypedName","src":"380:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"391:4:101","nodeType":"YulTypedName","src":"391:4:101","type":""}],"src":"305:187:101"},{"body":{"nativeSrc":"598:76:101","nodeType":"YulBlock","src":"598:76:101","statements":[{"nativeSrc":"608:26:101","nodeType":"YulAssignment","src":"608:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"620:9:101","nodeType":"YulIdentifier","src":"620:9:101"},{"kind":"number","nativeSrc":"631:2:101","nodeType":"YulLiteral","src":"631:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"616:3:101","nodeType":"YulIdentifier","src":"616:3:101"},"nativeSrc":"616:18:101","nodeType":"YulFunctionCall","src":"616:18:101"},"variableNames":[{"name":"tail","nativeSrc":"608:4:101","nodeType":"YulIdentifier","src":"608:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"650:9:101","nodeType":"YulIdentifier","src":"650:9:101"},{"name":"value0","nativeSrc":"661:6:101","nodeType":"YulIdentifier","src":"661:6:101"}],"functionName":{"name":"mstore","nativeSrc":"643:6:101","nodeType":"YulIdentifier","src":"643:6:101"},"nativeSrc":"643:25:101","nodeType":"YulFunctionCall","src":"643:25:101"},"nativeSrc":"643:25:101","nodeType":"YulExpressionStatement","src":"643:25:101"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"497:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"567:9:101","nodeType":"YulTypedName","src":"567:9:101","type":""},{"name":"value0","nativeSrc":"578:6:101","nodeType":"YulTypedName","src":"578:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"589:4:101","nodeType":"YulTypedName","src":"589:4:101","type":""}],"src":"497:177:101"},{"body":{"nativeSrc":"729:239:101","nodeType":"YulBlock","src":"729:239:101","statements":[{"nativeSrc":"739:26:101","nodeType":"YulVariableDeclaration","src":"739:26:101","value":{"arguments":[{"name":"value","nativeSrc":"759:5:101","nodeType":"YulIdentifier","src":"759:5:101"}],"functionName":{"name":"mload","nativeSrc":"753:5:101","nodeType":"YulIdentifier","src":"753:5:101"},"nativeSrc":"753:12:101","nodeType":"YulFunctionCall","src":"753:12:101"},"variables":[{"name":"length","nativeSrc":"743:6:101","nodeType":"YulTypedName","src":"743:6:101","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"781:3:101","nodeType":"YulIdentifier","src":"781:3:101"},{"name":"length","nativeSrc":"786:6:101","nodeType":"YulIdentifier","src":"786:6:101"}],"functionName":{"name":"mstore","nativeSrc":"774:6:101","nodeType":"YulIdentifier","src":"774:6:101"},"nativeSrc":"774:19:101","nodeType":"YulFunctionCall","src":"774:19:101"},"nativeSrc":"774:19:101","nodeType":"YulExpressionStatement","src":"774:19:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"812:3:101","nodeType":"YulIdentifier","src":"812:3:101"},{"kind":"number","nativeSrc":"817:4:101","nodeType":"YulLiteral","src":"817:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"808:3:101","nodeType":"YulIdentifier","src":"808:3:101"},"nativeSrc":"808:14:101","nodeType":"YulFunctionCall","src":"808:14:101"},{"arguments":[{"name":"value","nativeSrc":"828:5:101","nodeType":"YulIdentifier","src":"828:5:101"},{"kind":"number","nativeSrc":"835:4:101","nodeType":"YulLiteral","src":"835:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"824:3:101","nodeType":"YulIdentifier","src":"824:3:101"},"nativeSrc":"824:16:101","nodeType":"YulFunctionCall","src":"824:16:101"},{"name":"length","nativeSrc":"842:6:101","nodeType":"YulIdentifier","src":"842:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"802:5:101","nodeType":"YulIdentifier","src":"802:5:101"},"nativeSrc":"802:47:101","nodeType":"YulFunctionCall","src":"802:47:101"},"nativeSrc":"802:47:101","nodeType":"YulExpressionStatement","src":"802:47:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"873:3:101","nodeType":"YulIdentifier","src":"873:3:101"},{"name":"length","nativeSrc":"878:6:101","nodeType":"YulIdentifier","src":"878:6:101"}],"functionName":{"name":"add","nativeSrc":"869:3:101","nodeType":"YulIdentifier","src":"869:3:101"},"nativeSrc":"869:16:101","nodeType":"YulFunctionCall","src":"869:16:101"},{"kind":"number","nativeSrc":"887:4:101","nodeType":"YulLiteral","src":"887:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"865:3:101","nodeType":"YulIdentifier","src":"865:3:101"},"nativeSrc":"865:27:101","nodeType":"YulFunctionCall","src":"865:27:101"},{"kind":"number","nativeSrc":"894:1:101","nodeType":"YulLiteral","src":"894:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"858:6:101","nodeType":"YulIdentifier","src":"858:6:101"},"nativeSrc":"858:38:101","nodeType":"YulFunctionCall","src":"858:38:101"},"nativeSrc":"858:38:101","nodeType":"YulExpressionStatement","src":"858:38:101"},{"nativeSrc":"905:57:101","nodeType":"YulAssignment","src":"905:57:101","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"920:3:101","nodeType":"YulIdentifier","src":"920:3:101"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"933:6:101","nodeType":"YulIdentifier","src":"933:6:101"},{"kind":"number","nativeSrc":"941:2:101","nodeType":"YulLiteral","src":"941:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"929:3:101","nodeType":"YulIdentifier","src":"929:3:101"},"nativeSrc":"929:15:101","nodeType":"YulFunctionCall","src":"929:15:101"},{"arguments":[{"kind":"number","nativeSrc":"950:2:101","nodeType":"YulLiteral","src":"950:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"946:3:101","nodeType":"YulIdentifier","src":"946:3:101"},"nativeSrc":"946:7:101","nodeType":"YulFunctionCall","src":"946:7:101"}],"functionName":{"name":"and","nativeSrc":"925:3:101","nodeType":"YulIdentifier","src":"925:3:101"},"nativeSrc":"925:29:101","nodeType":"YulFunctionCall","src":"925:29:101"}],"functionName":{"name":"add","nativeSrc":"916:3:101","nodeType":"YulIdentifier","src":"916:3:101"},"nativeSrc":"916:39:101","nodeType":"YulFunctionCall","src":"916:39:101"},{"kind":"number","nativeSrc":"957:4:101","nodeType":"YulLiteral","src":"957:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"912:3:101","nodeType":"YulIdentifier","src":"912:3:101"},"nativeSrc":"912:50:101","nodeType":"YulFunctionCall","src":"912:50:101"},"variableNames":[{"name":"end","nativeSrc":"905:3:101","nodeType":"YulIdentifier","src":"905:3:101"}]}]},"name":"abi_encode_string","nativeSrc":"679:289:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"706:5:101","nodeType":"YulTypedName","src":"706:5:101","type":""},{"name":"pos","nativeSrc":"713:3:101","nodeType":"YulTypedName","src":"713:3:101","type":""}],"returnVariables":[{"name":"end","nativeSrc":"721:3:101","nodeType":"YulTypedName","src":"721:3:101","type":""}],"src":"679:289:101"},{"body":{"nativeSrc":"1094:99:101","nodeType":"YulBlock","src":"1094:99:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1111:9:101","nodeType":"YulIdentifier","src":"1111:9:101"},{"kind":"number","nativeSrc":"1122:2:101","nodeType":"YulLiteral","src":"1122:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"1104:6:101","nodeType":"YulIdentifier","src":"1104:6:101"},"nativeSrc":"1104:21:101","nodeType":"YulFunctionCall","src":"1104:21:101"},"nativeSrc":"1104:21:101","nodeType":"YulExpressionStatement","src":"1104:21:101"},{"nativeSrc":"1134:53:101","nodeType":"YulAssignment","src":"1134:53:101","value":{"arguments":[{"name":"value0","nativeSrc":"1160:6:101","nodeType":"YulIdentifier","src":"1160:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"1172:9:101","nodeType":"YulIdentifier","src":"1172:9:101"},{"kind":"number","nativeSrc":"1183:2:101","nodeType":"YulLiteral","src":"1183:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1168:3:101","nodeType":"YulIdentifier","src":"1168:3:101"},"nativeSrc":"1168:18:101","nodeType":"YulFunctionCall","src":"1168:18:101"}],"functionName":{"name":"abi_encode_string","nativeSrc":"1142:17:101","nodeType":"YulIdentifier","src":"1142:17:101"},"nativeSrc":"1142:45:101","nodeType":"YulFunctionCall","src":"1142:45:101"},"variableNames":[{"name":"tail","nativeSrc":"1134:4:101","nodeType":"YulIdentifier","src":"1134:4:101"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"973:220:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1063:9:101","nodeType":"YulTypedName","src":"1063:9:101","type":""},{"name":"value0","nativeSrc":"1074:6:101","nodeType":"YulTypedName","src":"1074:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1085:4:101","nodeType":"YulTypedName","src":"1085:4:101","type":""}],"src":"973:220:101"},{"body":{"nativeSrc":"1243:86:101","nodeType":"YulBlock","src":"1243:86:101","statements":[{"body":{"nativeSrc":"1307:16:101","nodeType":"YulBlock","src":"1307:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1316:1:101","nodeType":"YulLiteral","src":"1316:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1319:1:101","nodeType":"YulLiteral","src":"1319:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1309:6:101","nodeType":"YulIdentifier","src":"1309:6:101"},"nativeSrc":"1309:12:101","nodeType":"YulFunctionCall","src":"1309:12:101"},"nativeSrc":"1309:12:101","nodeType":"YulExpressionStatement","src":"1309:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1266:5:101","nodeType":"YulIdentifier","src":"1266:5:101"},{"arguments":[{"name":"value","nativeSrc":"1277:5:101","nodeType":"YulIdentifier","src":"1277:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1292:3:101","nodeType":"YulLiteral","src":"1292:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"1297:1:101","nodeType":"YulLiteral","src":"1297:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1288:3:101","nodeType":"YulIdentifier","src":"1288:3:101"},"nativeSrc":"1288:11:101","nodeType":"YulFunctionCall","src":"1288:11:101"},{"kind":"number","nativeSrc":"1301:1:101","nodeType":"YulLiteral","src":"1301:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1284:3:101","nodeType":"YulIdentifier","src":"1284:3:101"},"nativeSrc":"1284:19:101","nodeType":"YulFunctionCall","src":"1284:19:101"}],"functionName":{"name":"and","nativeSrc":"1273:3:101","nodeType":"YulIdentifier","src":"1273:3:101"},"nativeSrc":"1273:31:101","nodeType":"YulFunctionCall","src":"1273:31:101"}],"functionName":{"name":"eq","nativeSrc":"1263:2:101","nodeType":"YulIdentifier","src":"1263:2:101"},"nativeSrc":"1263:42:101","nodeType":"YulFunctionCall","src":"1263:42:101"}],"functionName":{"name":"iszero","nativeSrc":"1256:6:101","nodeType":"YulIdentifier","src":"1256:6:101"},"nativeSrc":"1256:50:101","nodeType":"YulFunctionCall","src":"1256:50:101"},"nativeSrc":"1253:70:101","nodeType":"YulIf","src":"1253:70:101"}]},"name":"validator_revert_address","nativeSrc":"1198:131:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"1232:5:101","nodeType":"YulTypedName","src":"1232:5:101","type":""}],"src":"1198:131:101"},{"body":{"nativeSrc":"1421:280:101","nodeType":"YulBlock","src":"1421:280:101","statements":[{"body":{"nativeSrc":"1467:16:101","nodeType":"YulBlock","src":"1467:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1476:1:101","nodeType":"YulLiteral","src":"1476:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1479:1:101","nodeType":"YulLiteral","src":"1479:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1469:6:101","nodeType":"YulIdentifier","src":"1469:6:101"},"nativeSrc":"1469:12:101","nodeType":"YulFunctionCall","src":"1469:12:101"},"nativeSrc":"1469:12:101","nodeType":"YulExpressionStatement","src":"1469:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1442:7:101","nodeType":"YulIdentifier","src":"1442:7:101"},{"name":"headStart","nativeSrc":"1451:9:101","nodeType":"YulIdentifier","src":"1451:9:101"}],"functionName":{"name":"sub","nativeSrc":"1438:3:101","nodeType":"YulIdentifier","src":"1438:3:101"},"nativeSrc":"1438:23:101","nodeType":"YulFunctionCall","src":"1438:23:101"},{"kind":"number","nativeSrc":"1463:2:101","nodeType":"YulLiteral","src":"1463:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1434:3:101","nodeType":"YulIdentifier","src":"1434:3:101"},"nativeSrc":"1434:32:101","nodeType":"YulFunctionCall","src":"1434:32:101"},"nativeSrc":"1431:52:101","nodeType":"YulIf","src":"1431:52:101"},{"nativeSrc":"1492:36:101","nodeType":"YulVariableDeclaration","src":"1492:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1518:9:101","nodeType":"YulIdentifier","src":"1518:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"1505:12:101","nodeType":"YulIdentifier","src":"1505:12:101"},"nativeSrc":"1505:23:101","nodeType":"YulFunctionCall","src":"1505:23:101"},"variables":[{"name":"value","nativeSrc":"1496:5:101","nodeType":"YulTypedName","src":"1496:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1562:5:101","nodeType":"YulIdentifier","src":"1562:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"1537:24:101","nodeType":"YulIdentifier","src":"1537:24:101"},"nativeSrc":"1537:31:101","nodeType":"YulFunctionCall","src":"1537:31:101"},"nativeSrc":"1537:31:101","nodeType":"YulExpressionStatement","src":"1537:31:101"},{"nativeSrc":"1577:15:101","nodeType":"YulAssignment","src":"1577:15:101","value":{"name":"value","nativeSrc":"1587:5:101","nodeType":"YulIdentifier","src":"1587:5:101"},"variableNames":[{"name":"value0","nativeSrc":"1577:6:101","nodeType":"YulIdentifier","src":"1577:6:101"}]},{"nativeSrc":"1601:16:101","nodeType":"YulVariableDeclaration","src":"1601:16:101","value":{"kind":"number","nativeSrc":"1616:1:101","nodeType":"YulLiteral","src":"1616:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"1605:7:101","nodeType":"YulTypedName","src":"1605:7:101","type":""}]},{"nativeSrc":"1626:43:101","nodeType":"YulAssignment","src":"1626:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1654:9:101","nodeType":"YulIdentifier","src":"1654:9:101"},{"kind":"number","nativeSrc":"1665:2:101","nodeType":"YulLiteral","src":"1665:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1650:3:101","nodeType":"YulIdentifier","src":"1650:3:101"},"nativeSrc":"1650:18:101","nodeType":"YulFunctionCall","src":"1650:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"1637:12:101","nodeType":"YulIdentifier","src":"1637:12:101"},"nativeSrc":"1637:32:101","nodeType":"YulFunctionCall","src":"1637:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"1626:7:101","nodeType":"YulIdentifier","src":"1626:7:101"}]},{"nativeSrc":"1678:17:101","nodeType":"YulAssignment","src":"1678:17:101","value":{"name":"value_1","nativeSrc":"1688:7:101","nodeType":"YulIdentifier","src":"1688:7:101"},"variableNames":[{"name":"value1","nativeSrc":"1678:6:101","nodeType":"YulIdentifier","src":"1678:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"1334:367:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1379:9:101","nodeType":"YulTypedName","src":"1379:9:101","type":""},{"name":"dataEnd","nativeSrc":"1390:7:101","nodeType":"YulTypedName","src":"1390:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1402:6:101","nodeType":"YulTypedName","src":"1402:6:101","type":""},{"name":"value1","nativeSrc":"1410:6:101","nodeType":"YulTypedName","src":"1410:6:101","type":""}],"src":"1334:367:101"},{"body":{"nativeSrc":"1776:177:101","nodeType":"YulBlock","src":"1776:177:101","statements":[{"body":{"nativeSrc":"1822:16:101","nodeType":"YulBlock","src":"1822:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1831:1:101","nodeType":"YulLiteral","src":"1831:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1834:1:101","nodeType":"YulLiteral","src":"1834:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1824:6:101","nodeType":"YulIdentifier","src":"1824:6:101"},"nativeSrc":"1824:12:101","nodeType":"YulFunctionCall","src":"1824:12:101"},"nativeSrc":"1824:12:101","nodeType":"YulExpressionStatement","src":"1824:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1797:7:101","nodeType":"YulIdentifier","src":"1797:7:101"},{"name":"headStart","nativeSrc":"1806:9:101","nodeType":"YulIdentifier","src":"1806:9:101"}],"functionName":{"name":"sub","nativeSrc":"1793:3:101","nodeType":"YulIdentifier","src":"1793:3:101"},"nativeSrc":"1793:23:101","nodeType":"YulFunctionCall","src":"1793:23:101"},{"kind":"number","nativeSrc":"1818:2:101","nodeType":"YulLiteral","src":"1818:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1789:3:101","nodeType":"YulIdentifier","src":"1789:3:101"},"nativeSrc":"1789:32:101","nodeType":"YulFunctionCall","src":"1789:32:101"},"nativeSrc":"1786:52:101","nodeType":"YulIf","src":"1786:52:101"},{"nativeSrc":"1847:36:101","nodeType":"YulVariableDeclaration","src":"1847:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1873:9:101","nodeType":"YulIdentifier","src":"1873:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"1860:12:101","nodeType":"YulIdentifier","src":"1860:12:101"},"nativeSrc":"1860:23:101","nodeType":"YulFunctionCall","src":"1860:23:101"},"variables":[{"name":"value","nativeSrc":"1851:5:101","nodeType":"YulTypedName","src":"1851:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1917:5:101","nodeType":"YulIdentifier","src":"1917:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"1892:24:101","nodeType":"YulIdentifier","src":"1892:24:101"},"nativeSrc":"1892:31:101","nodeType":"YulFunctionCall","src":"1892:31:101"},"nativeSrc":"1892:31:101","nodeType":"YulExpressionStatement","src":"1892:31:101"},{"nativeSrc":"1932:15:101","nodeType":"YulAssignment","src":"1932:15:101","value":{"name":"value","nativeSrc":"1942:5:101","nodeType":"YulIdentifier","src":"1942:5:101"},"variableNames":[{"name":"value0","nativeSrc":"1932:6:101","nodeType":"YulIdentifier","src":"1932:6:101"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"1706:247:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1742:9:101","nodeType":"YulTypedName","src":"1742:9:101","type":""},{"name":"dataEnd","nativeSrc":"1753:7:101","nodeType":"YulTypedName","src":"1753:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1765:6:101","nodeType":"YulTypedName","src":"1765:6:101","type":""}],"src":"1706:247:101"},{"body":{"nativeSrc":"2087:119:101","nodeType":"YulBlock","src":"2087:119:101","statements":[{"nativeSrc":"2097:26:101","nodeType":"YulAssignment","src":"2097:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2109:9:101","nodeType":"YulIdentifier","src":"2109:9:101"},{"kind":"number","nativeSrc":"2120:2:101","nodeType":"YulLiteral","src":"2120:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"2105:3:101","nodeType":"YulIdentifier","src":"2105:3:101"},"nativeSrc":"2105:18:101","nodeType":"YulFunctionCall","src":"2105:18:101"},"variableNames":[{"name":"tail","nativeSrc":"2097:4:101","nodeType":"YulIdentifier","src":"2097:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2139:9:101","nodeType":"YulIdentifier","src":"2139:9:101"},{"name":"value0","nativeSrc":"2150:6:101","nodeType":"YulIdentifier","src":"2150:6:101"}],"functionName":{"name":"mstore","nativeSrc":"2132:6:101","nodeType":"YulIdentifier","src":"2132:6:101"},"nativeSrc":"2132:25:101","nodeType":"YulFunctionCall","src":"2132:25:101"},"nativeSrc":"2132:25:101","nodeType":"YulExpressionStatement","src":"2132:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2177:9:101","nodeType":"YulIdentifier","src":"2177:9:101"},{"kind":"number","nativeSrc":"2188:2:101","nodeType":"YulLiteral","src":"2188:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2173:3:101","nodeType":"YulIdentifier","src":"2173:3:101"},"nativeSrc":"2173:18:101","nodeType":"YulFunctionCall","src":"2173:18:101"},{"name":"value1","nativeSrc":"2193:6:101","nodeType":"YulIdentifier","src":"2193:6:101"}],"functionName":{"name":"mstore","nativeSrc":"2166:6:101","nodeType":"YulIdentifier","src":"2166:6:101"},"nativeSrc":"2166:34:101","nodeType":"YulFunctionCall","src":"2166:34:101"},"nativeSrc":"2166:34:101","nodeType":"YulExpressionStatement","src":"2166:34:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"1958:248:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2048:9:101","nodeType":"YulTypedName","src":"2048:9:101","type":""},{"name":"value1","nativeSrc":"2059:6:101","nodeType":"YulTypedName","src":"2059:6:101","type":""},{"name":"value0","nativeSrc":"2067:6:101","nodeType":"YulTypedName","src":"2067:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2078:4:101","nodeType":"YulTypedName","src":"2078:4:101","type":""}],"src":"1958:248:101"},{"body":{"nativeSrc":"2253:76:101","nodeType":"YulBlock","src":"2253:76:101","statements":[{"body":{"nativeSrc":"2307:16:101","nodeType":"YulBlock","src":"2307:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2316:1:101","nodeType":"YulLiteral","src":"2316:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2319:1:101","nodeType":"YulLiteral","src":"2319:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2309:6:101","nodeType":"YulIdentifier","src":"2309:6:101"},"nativeSrc":"2309:12:101","nodeType":"YulFunctionCall","src":"2309:12:101"},"nativeSrc":"2309:12:101","nodeType":"YulExpressionStatement","src":"2309:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2276:5:101","nodeType":"YulIdentifier","src":"2276:5:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2297:5:101","nodeType":"YulIdentifier","src":"2297:5:101"}],"functionName":{"name":"iszero","nativeSrc":"2290:6:101","nodeType":"YulIdentifier","src":"2290:6:101"},"nativeSrc":"2290:13:101","nodeType":"YulFunctionCall","src":"2290:13:101"}],"functionName":{"name":"iszero","nativeSrc":"2283:6:101","nodeType":"YulIdentifier","src":"2283:6:101"},"nativeSrc":"2283:21:101","nodeType":"YulFunctionCall","src":"2283:21:101"}],"functionName":{"name":"eq","nativeSrc":"2273:2:101","nodeType":"YulIdentifier","src":"2273:2:101"},"nativeSrc":"2273:32:101","nodeType":"YulFunctionCall","src":"2273:32:101"}],"functionName":{"name":"iszero","nativeSrc":"2266:6:101","nodeType":"YulIdentifier","src":"2266:6:101"},"nativeSrc":"2266:40:101","nodeType":"YulFunctionCall","src":"2266:40:101"},"nativeSrc":"2263:60:101","nodeType":"YulIf","src":"2263:60:101"}]},"name":"validator_revert_bool","nativeSrc":"2211:118:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"2242:5:101","nodeType":"YulTypedName","src":"2242:5:101","type":""}],"src":"2211:118:101"},{"body":{"nativeSrc":"2435:298:101","nodeType":"YulBlock","src":"2435:298:101","statements":[{"body":{"nativeSrc":"2481:16:101","nodeType":"YulBlock","src":"2481:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2490:1:101","nodeType":"YulLiteral","src":"2490:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2493:1:101","nodeType":"YulLiteral","src":"2493:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2483:6:101","nodeType":"YulIdentifier","src":"2483:6:101"},"nativeSrc":"2483:12:101","nodeType":"YulFunctionCall","src":"2483:12:101"},"nativeSrc":"2483:12:101","nodeType":"YulExpressionStatement","src":"2483:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2456:7:101","nodeType":"YulIdentifier","src":"2456:7:101"},{"name":"headStart","nativeSrc":"2465:9:101","nodeType":"YulIdentifier","src":"2465:9:101"}],"functionName":{"name":"sub","nativeSrc":"2452:3:101","nodeType":"YulIdentifier","src":"2452:3:101"},"nativeSrc":"2452:23:101","nodeType":"YulFunctionCall","src":"2452:23:101"},{"kind":"number","nativeSrc":"2477:2:101","nodeType":"YulLiteral","src":"2477:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2448:3:101","nodeType":"YulIdentifier","src":"2448:3:101"},"nativeSrc":"2448:32:101","nodeType":"YulFunctionCall","src":"2448:32:101"},"nativeSrc":"2445:52:101","nodeType":"YulIf","src":"2445:52:101"},{"nativeSrc":"2506:36:101","nodeType":"YulVariableDeclaration","src":"2506:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2532:9:101","nodeType":"YulIdentifier","src":"2532:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"2519:12:101","nodeType":"YulIdentifier","src":"2519:12:101"},"nativeSrc":"2519:23:101","nodeType":"YulFunctionCall","src":"2519:23:101"},"variables":[{"name":"value","nativeSrc":"2510:5:101","nodeType":"YulTypedName","src":"2510:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2576:5:101","nodeType":"YulIdentifier","src":"2576:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2551:24:101","nodeType":"YulIdentifier","src":"2551:24:101"},"nativeSrc":"2551:31:101","nodeType":"YulFunctionCall","src":"2551:31:101"},"nativeSrc":"2551:31:101","nodeType":"YulExpressionStatement","src":"2551:31:101"},{"nativeSrc":"2591:15:101","nodeType":"YulAssignment","src":"2591:15:101","value":{"name":"value","nativeSrc":"2601:5:101","nodeType":"YulIdentifier","src":"2601:5:101"},"variableNames":[{"name":"value0","nativeSrc":"2591:6:101","nodeType":"YulIdentifier","src":"2591:6:101"}]},{"nativeSrc":"2615:47:101","nodeType":"YulVariableDeclaration","src":"2615:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2647:9:101","nodeType":"YulIdentifier","src":"2647:9:101"},{"kind":"number","nativeSrc":"2658:2:101","nodeType":"YulLiteral","src":"2658:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2643:3:101","nodeType":"YulIdentifier","src":"2643:3:101"},"nativeSrc":"2643:18:101","nodeType":"YulFunctionCall","src":"2643:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"2630:12:101","nodeType":"YulIdentifier","src":"2630:12:101"},"nativeSrc":"2630:32:101","nodeType":"YulFunctionCall","src":"2630:32:101"},"variables":[{"name":"value_1","nativeSrc":"2619:7:101","nodeType":"YulTypedName","src":"2619:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"2693:7:101","nodeType":"YulIdentifier","src":"2693:7:101"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"2671:21:101","nodeType":"YulIdentifier","src":"2671:21:101"},"nativeSrc":"2671:30:101","nodeType":"YulFunctionCall","src":"2671:30:101"},"nativeSrc":"2671:30:101","nodeType":"YulExpressionStatement","src":"2671:30:101"},{"nativeSrc":"2710:17:101","nodeType":"YulAssignment","src":"2710:17:101","value":{"name":"value_1","nativeSrc":"2720:7:101","nodeType":"YulIdentifier","src":"2720:7:101"},"variableNames":[{"name":"value1","nativeSrc":"2710:6:101","nodeType":"YulIdentifier","src":"2710:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IERC4626_$6400t_bool","nativeSrc":"2334:399:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2393:9:101","nodeType":"YulTypedName","src":"2393:9:101","type":""},{"name":"dataEnd","nativeSrc":"2404:7:101","nodeType":"YulTypedName","src":"2404:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2416:6:101","nodeType":"YulTypedName","src":"2416:6:101","type":""},{"name":"value1","nativeSrc":"2424:6:101","nodeType":"YulTypedName","src":"2424:6:101","type":""}],"src":"2334:399:101"},{"body":{"nativeSrc":"2842:404:101","nodeType":"YulBlock","src":"2842:404:101","statements":[{"body":{"nativeSrc":"2888:16:101","nodeType":"YulBlock","src":"2888:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2897:1:101","nodeType":"YulLiteral","src":"2897:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2900:1:101","nodeType":"YulLiteral","src":"2900:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2890:6:101","nodeType":"YulIdentifier","src":"2890:6:101"},"nativeSrc":"2890:12:101","nodeType":"YulFunctionCall","src":"2890:12:101"},"nativeSrc":"2890:12:101","nodeType":"YulExpressionStatement","src":"2890:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2863:7:101","nodeType":"YulIdentifier","src":"2863:7:101"},{"name":"headStart","nativeSrc":"2872:9:101","nodeType":"YulIdentifier","src":"2872:9:101"}],"functionName":{"name":"sub","nativeSrc":"2859:3:101","nodeType":"YulIdentifier","src":"2859:3:101"},"nativeSrc":"2859:23:101","nodeType":"YulFunctionCall","src":"2859:23:101"},{"kind":"number","nativeSrc":"2884:2:101","nodeType":"YulLiteral","src":"2884:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"2855:3:101","nodeType":"YulIdentifier","src":"2855:3:101"},"nativeSrc":"2855:32:101","nodeType":"YulFunctionCall","src":"2855:32:101"},"nativeSrc":"2852:52:101","nodeType":"YulIf","src":"2852:52:101"},{"nativeSrc":"2913:36:101","nodeType":"YulVariableDeclaration","src":"2913:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2939:9:101","nodeType":"YulIdentifier","src":"2939:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"2926:12:101","nodeType":"YulIdentifier","src":"2926:12:101"},"nativeSrc":"2926:23:101","nodeType":"YulFunctionCall","src":"2926:23:101"},"variables":[{"name":"value","nativeSrc":"2917:5:101","nodeType":"YulTypedName","src":"2917:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2983:5:101","nodeType":"YulIdentifier","src":"2983:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2958:24:101","nodeType":"YulIdentifier","src":"2958:24:101"},"nativeSrc":"2958:31:101","nodeType":"YulFunctionCall","src":"2958:31:101"},"nativeSrc":"2958:31:101","nodeType":"YulExpressionStatement","src":"2958:31:101"},{"nativeSrc":"2998:15:101","nodeType":"YulAssignment","src":"2998:15:101","value":{"name":"value","nativeSrc":"3008:5:101","nodeType":"YulIdentifier","src":"3008:5:101"},"variableNames":[{"name":"value0","nativeSrc":"2998:6:101","nodeType":"YulIdentifier","src":"2998:6:101"}]},{"nativeSrc":"3022:47:101","nodeType":"YulVariableDeclaration","src":"3022:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3054:9:101","nodeType":"YulIdentifier","src":"3054:9:101"},{"kind":"number","nativeSrc":"3065:2:101","nodeType":"YulLiteral","src":"3065:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3050:3:101","nodeType":"YulIdentifier","src":"3050:3:101"},"nativeSrc":"3050:18:101","nodeType":"YulFunctionCall","src":"3050:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3037:12:101","nodeType":"YulIdentifier","src":"3037:12:101"},"nativeSrc":"3037:32:101","nodeType":"YulFunctionCall","src":"3037:32:101"},"variables":[{"name":"value_1","nativeSrc":"3026:7:101","nodeType":"YulTypedName","src":"3026:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"3103:7:101","nodeType":"YulIdentifier","src":"3103:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3078:24:101","nodeType":"YulIdentifier","src":"3078:24:101"},"nativeSrc":"3078:33:101","nodeType":"YulFunctionCall","src":"3078:33:101"},"nativeSrc":"3078:33:101","nodeType":"YulExpressionStatement","src":"3078:33:101"},{"nativeSrc":"3120:17:101","nodeType":"YulAssignment","src":"3120:17:101","value":{"name":"value_1","nativeSrc":"3130:7:101","nodeType":"YulIdentifier","src":"3130:7:101"},"variableNames":[{"name":"value1","nativeSrc":"3120:6:101","nodeType":"YulIdentifier","src":"3120:6:101"}]},{"nativeSrc":"3146:16:101","nodeType":"YulVariableDeclaration","src":"3146:16:101","value":{"kind":"number","nativeSrc":"3161:1:101","nodeType":"YulLiteral","src":"3161:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"3150:7:101","nodeType":"YulTypedName","src":"3150:7:101","type":""}]},{"nativeSrc":"3171:43:101","nodeType":"YulAssignment","src":"3171:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3199:9:101","nodeType":"YulIdentifier","src":"3199:9:101"},{"kind":"number","nativeSrc":"3210:2:101","nodeType":"YulLiteral","src":"3210:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3195:3:101","nodeType":"YulIdentifier","src":"3195:3:101"},"nativeSrc":"3195:18:101","nodeType":"YulFunctionCall","src":"3195:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3182:12:101","nodeType":"YulIdentifier","src":"3182:12:101"},"nativeSrc":"3182:32:101","nodeType":"YulFunctionCall","src":"3182:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"3171:7:101","nodeType":"YulIdentifier","src":"3171:7:101"}]},{"nativeSrc":"3223:17:101","nodeType":"YulAssignment","src":"3223:17:101","value":{"name":"value_2","nativeSrc":"3233:7:101","nodeType":"YulIdentifier","src":"3233:7:101"},"variableNames":[{"name":"value2","nativeSrc":"3223:6:101","nodeType":"YulIdentifier","src":"3223:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"2738:508:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2792:9:101","nodeType":"YulTypedName","src":"2792:9:101","type":""},{"name":"dataEnd","nativeSrc":"2803:7:101","nodeType":"YulTypedName","src":"2803:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2815:6:101","nodeType":"YulTypedName","src":"2815:6:101","type":""},{"name":"value1","nativeSrc":"2823:6:101","nodeType":"YulTypedName","src":"2823:6:101","type":""},{"name":"value2","nativeSrc":"2831:6:101","nodeType":"YulTypedName","src":"2831:6:101","type":""}],"src":"2738:508:101"},{"body":{"nativeSrc":"3372:529:101","nodeType":"YulBlock","src":"3372:529:101","statements":[{"body":{"nativeSrc":"3419:16:101","nodeType":"YulBlock","src":"3419:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3428:1:101","nodeType":"YulLiteral","src":"3428:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3431:1:101","nodeType":"YulLiteral","src":"3431:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3421:6:101","nodeType":"YulIdentifier","src":"3421:6:101"},"nativeSrc":"3421:12:101","nodeType":"YulFunctionCall","src":"3421:12:101"},"nativeSrc":"3421:12:101","nodeType":"YulExpressionStatement","src":"3421:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3393:7:101","nodeType":"YulIdentifier","src":"3393:7:101"},{"name":"headStart","nativeSrc":"3402:9:101","nodeType":"YulIdentifier","src":"3402:9:101"}],"functionName":{"name":"sub","nativeSrc":"3389:3:101","nodeType":"YulIdentifier","src":"3389:3:101"},"nativeSrc":"3389:23:101","nodeType":"YulFunctionCall","src":"3389:23:101"},{"kind":"number","nativeSrc":"3414:3:101","nodeType":"YulLiteral","src":"3414:3:101","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"3385:3:101","nodeType":"YulIdentifier","src":"3385:3:101"},"nativeSrc":"3385:33:101","nodeType":"YulFunctionCall","src":"3385:33:101"},"nativeSrc":"3382:53:101","nodeType":"YulIf","src":"3382:53:101"},{"nativeSrc":"3444:14:101","nodeType":"YulVariableDeclaration","src":"3444:14:101","value":{"kind":"number","nativeSrc":"3457:1:101","nodeType":"YulLiteral","src":"3457:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3448:5:101","nodeType":"YulTypedName","src":"3448:5:101","type":""}]},{"nativeSrc":"3467:32:101","nodeType":"YulAssignment","src":"3467:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3489:9:101","nodeType":"YulIdentifier","src":"3489:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"3476:12:101","nodeType":"YulIdentifier","src":"3476:12:101"},"nativeSrc":"3476:23:101","nodeType":"YulFunctionCall","src":"3476:23:101"},"variableNames":[{"name":"value","nativeSrc":"3467:5:101","nodeType":"YulIdentifier","src":"3467:5:101"}]},{"nativeSrc":"3508:15:101","nodeType":"YulAssignment","src":"3508:15:101","value":{"name":"value","nativeSrc":"3518:5:101","nodeType":"YulIdentifier","src":"3518:5:101"},"variableNames":[{"name":"value0","nativeSrc":"3508:6:101","nodeType":"YulIdentifier","src":"3508:6:101"}]},{"nativeSrc":"3532:47:101","nodeType":"YulVariableDeclaration","src":"3532:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3564:9:101","nodeType":"YulIdentifier","src":"3564:9:101"},{"kind":"number","nativeSrc":"3575:2:101","nodeType":"YulLiteral","src":"3575:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3560:3:101","nodeType":"YulIdentifier","src":"3560:3:101"},"nativeSrc":"3560:18:101","nodeType":"YulFunctionCall","src":"3560:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3547:12:101","nodeType":"YulIdentifier","src":"3547:12:101"},"nativeSrc":"3547:32:101","nodeType":"YulFunctionCall","src":"3547:32:101"},"variables":[{"name":"value_1","nativeSrc":"3536:7:101","nodeType":"YulTypedName","src":"3536:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"3613:7:101","nodeType":"YulIdentifier","src":"3613:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3588:24:101","nodeType":"YulIdentifier","src":"3588:24:101"},"nativeSrc":"3588:33:101","nodeType":"YulFunctionCall","src":"3588:33:101"},"nativeSrc":"3588:33:101","nodeType":"YulExpressionStatement","src":"3588:33:101"},{"nativeSrc":"3630:17:101","nodeType":"YulAssignment","src":"3630:17:101","value":{"name":"value_1","nativeSrc":"3640:7:101","nodeType":"YulIdentifier","src":"3640:7:101"},"variableNames":[{"name":"value1","nativeSrc":"3630:6:101","nodeType":"YulIdentifier","src":"3630:6:101"}]},{"nativeSrc":"3656:47:101","nodeType":"YulVariableDeclaration","src":"3656:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3688:9:101","nodeType":"YulIdentifier","src":"3688:9:101"},{"kind":"number","nativeSrc":"3699:2:101","nodeType":"YulLiteral","src":"3699:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3684:3:101","nodeType":"YulIdentifier","src":"3684:3:101"},"nativeSrc":"3684:18:101","nodeType":"YulFunctionCall","src":"3684:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3671:12:101","nodeType":"YulIdentifier","src":"3671:12:101"},"nativeSrc":"3671:32:101","nodeType":"YulFunctionCall","src":"3671:32:101"},"variables":[{"name":"value_2","nativeSrc":"3660:7:101","nodeType":"YulTypedName","src":"3660:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"3737:7:101","nodeType":"YulIdentifier","src":"3737:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3712:24:101","nodeType":"YulIdentifier","src":"3712:24:101"},"nativeSrc":"3712:33:101","nodeType":"YulFunctionCall","src":"3712:33:101"},"nativeSrc":"3712:33:101","nodeType":"YulExpressionStatement","src":"3712:33:101"},{"nativeSrc":"3754:17:101","nodeType":"YulAssignment","src":"3754:17:101","value":{"name":"value_2","nativeSrc":"3764:7:101","nodeType":"YulIdentifier","src":"3764:7:101"},"variableNames":[{"name":"value2","nativeSrc":"3754:6:101","nodeType":"YulIdentifier","src":"3754:6:101"}]},{"nativeSrc":"3780:47:101","nodeType":"YulVariableDeclaration","src":"3780:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3812:9:101","nodeType":"YulIdentifier","src":"3812:9:101"},{"kind":"number","nativeSrc":"3823:2:101","nodeType":"YulLiteral","src":"3823:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3808:3:101","nodeType":"YulIdentifier","src":"3808:3:101"},"nativeSrc":"3808:18:101","nodeType":"YulFunctionCall","src":"3808:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3795:12:101","nodeType":"YulIdentifier","src":"3795:12:101"},"nativeSrc":"3795:32:101","nodeType":"YulFunctionCall","src":"3795:32:101"},"variables":[{"name":"value_3","nativeSrc":"3784:7:101","nodeType":"YulTypedName","src":"3784:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"3861:7:101","nodeType":"YulIdentifier","src":"3861:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3836:24:101","nodeType":"YulIdentifier","src":"3836:24:101"},"nativeSrc":"3836:33:101","nodeType":"YulFunctionCall","src":"3836:33:101"},"nativeSrc":"3836:33:101","nodeType":"YulExpressionStatement","src":"3836:33:101"},{"nativeSrc":"3878:17:101","nodeType":"YulAssignment","src":"3878:17:101","value":{"name":"value_3","nativeSrc":"3888:7:101","nodeType":"YulIdentifier","src":"3888:7:101"},"variableNames":[{"name":"value3","nativeSrc":"3878:6:101","nodeType":"YulIdentifier","src":"3878:6:101"}]}]},"name":"abi_decode_tuple_t_uint256t_addresst_addresst_address","nativeSrc":"3251:650:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3314:9:101","nodeType":"YulTypedName","src":"3314:9:101","type":""},{"name":"dataEnd","nativeSrc":"3325:7:101","nodeType":"YulTypedName","src":"3325:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3337:6:101","nodeType":"YulTypedName","src":"3337:6:101","type":""},{"name":"value1","nativeSrc":"3345:6:101","nodeType":"YulTypedName","src":"3345:6:101","type":""},{"name":"value2","nativeSrc":"3353:6:101","nodeType":"YulTypedName","src":"3353:6:101","type":""},{"name":"value3","nativeSrc":"3361:6:101","nodeType":"YulTypedName","src":"3361:6:101","type":""}],"src":"3251:650:101"},{"body":{"nativeSrc":"4010:404:101","nodeType":"YulBlock","src":"4010:404:101","statements":[{"body":{"nativeSrc":"4056:16:101","nodeType":"YulBlock","src":"4056:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4065:1:101","nodeType":"YulLiteral","src":"4065:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4068:1:101","nodeType":"YulLiteral","src":"4068:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4058:6:101","nodeType":"YulIdentifier","src":"4058:6:101"},"nativeSrc":"4058:12:101","nodeType":"YulFunctionCall","src":"4058:12:101"},"nativeSrc":"4058:12:101","nodeType":"YulExpressionStatement","src":"4058:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4031:7:101","nodeType":"YulIdentifier","src":"4031:7:101"},{"name":"headStart","nativeSrc":"4040:9:101","nodeType":"YulIdentifier","src":"4040:9:101"}],"functionName":{"name":"sub","nativeSrc":"4027:3:101","nodeType":"YulIdentifier","src":"4027:3:101"},"nativeSrc":"4027:23:101","nodeType":"YulFunctionCall","src":"4027:23:101"},{"kind":"number","nativeSrc":"4052:2:101","nodeType":"YulLiteral","src":"4052:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"4023:3:101","nodeType":"YulIdentifier","src":"4023:3:101"},"nativeSrc":"4023:32:101","nodeType":"YulFunctionCall","src":"4023:32:101"},"nativeSrc":"4020:52:101","nodeType":"YulIf","src":"4020:52:101"},{"nativeSrc":"4081:14:101","nodeType":"YulVariableDeclaration","src":"4081:14:101","value":{"kind":"number","nativeSrc":"4094:1:101","nodeType":"YulLiteral","src":"4094:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"4085:5:101","nodeType":"YulTypedName","src":"4085:5:101","type":""}]},{"nativeSrc":"4104:32:101","nodeType":"YulAssignment","src":"4104:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4126:9:101","nodeType":"YulIdentifier","src":"4126:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"4113:12:101","nodeType":"YulIdentifier","src":"4113:12:101"},"nativeSrc":"4113:23:101","nodeType":"YulFunctionCall","src":"4113:23:101"},"variableNames":[{"name":"value","nativeSrc":"4104:5:101","nodeType":"YulIdentifier","src":"4104:5:101"}]},{"nativeSrc":"4145:15:101","nodeType":"YulAssignment","src":"4145:15:101","value":{"name":"value","nativeSrc":"4155:5:101","nodeType":"YulIdentifier","src":"4155:5:101"},"variableNames":[{"name":"value0","nativeSrc":"4145:6:101","nodeType":"YulIdentifier","src":"4145:6:101"}]},{"nativeSrc":"4169:47:101","nodeType":"YulVariableDeclaration","src":"4169:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4201:9:101","nodeType":"YulIdentifier","src":"4201:9:101"},{"kind":"number","nativeSrc":"4212:2:101","nodeType":"YulLiteral","src":"4212:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4197:3:101","nodeType":"YulIdentifier","src":"4197:3:101"},"nativeSrc":"4197:18:101","nodeType":"YulFunctionCall","src":"4197:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"4184:12:101","nodeType":"YulIdentifier","src":"4184:12:101"},"nativeSrc":"4184:32:101","nodeType":"YulFunctionCall","src":"4184:32:101"},"variables":[{"name":"value_1","nativeSrc":"4173:7:101","nodeType":"YulTypedName","src":"4173:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"4250:7:101","nodeType":"YulIdentifier","src":"4250:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4225:24:101","nodeType":"YulIdentifier","src":"4225:24:101"},"nativeSrc":"4225:33:101","nodeType":"YulFunctionCall","src":"4225:33:101"},"nativeSrc":"4225:33:101","nodeType":"YulExpressionStatement","src":"4225:33:101"},{"nativeSrc":"4267:17:101","nodeType":"YulAssignment","src":"4267:17:101","value":{"name":"value_1","nativeSrc":"4277:7:101","nodeType":"YulIdentifier","src":"4277:7:101"},"variableNames":[{"name":"value1","nativeSrc":"4267:6:101","nodeType":"YulIdentifier","src":"4267:6:101"}]},{"nativeSrc":"4293:47:101","nodeType":"YulVariableDeclaration","src":"4293:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4325:9:101","nodeType":"YulIdentifier","src":"4325:9:101"},{"kind":"number","nativeSrc":"4336:2:101","nodeType":"YulLiteral","src":"4336:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4321:3:101","nodeType":"YulIdentifier","src":"4321:3:101"},"nativeSrc":"4321:18:101","nodeType":"YulFunctionCall","src":"4321:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"4308:12:101","nodeType":"YulIdentifier","src":"4308:12:101"},"nativeSrc":"4308:32:101","nodeType":"YulFunctionCall","src":"4308:32:101"},"variables":[{"name":"value_2","nativeSrc":"4297:7:101","nodeType":"YulTypedName","src":"4297:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"4374:7:101","nodeType":"YulIdentifier","src":"4374:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4349:24:101","nodeType":"YulIdentifier","src":"4349:24:101"},"nativeSrc":"4349:33:101","nodeType":"YulFunctionCall","src":"4349:33:101"},"nativeSrc":"4349:33:101","nodeType":"YulExpressionStatement","src":"4349:33:101"},{"nativeSrc":"4391:17:101","nodeType":"YulAssignment","src":"4391:17:101","value":{"name":"value_2","nativeSrc":"4401:7:101","nodeType":"YulIdentifier","src":"4401:7:101"},"variableNames":[{"name":"value2","nativeSrc":"4391:6:101","nodeType":"YulIdentifier","src":"4391:6:101"}]}]},"name":"abi_decode_tuple_t_uint256t_addresst_address","nativeSrc":"3906:508:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3960:9:101","nodeType":"YulTypedName","src":"3960:9:101","type":""},{"name":"dataEnd","nativeSrc":"3971:7:101","nodeType":"YulTypedName","src":"3971:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3983:6:101","nodeType":"YulTypedName","src":"3983:6:101","type":""},{"name":"value1","nativeSrc":"3991:6:101","nodeType":"YulTypedName","src":"3991:6:101","type":""},{"name":"value2","nativeSrc":"3999:6:101","nodeType":"YulTypedName","src":"3999:6:101","type":""}],"src":"3906:508:101"},{"body":{"nativeSrc":"4516:87:101","nodeType":"YulBlock","src":"4516:87:101","statements":[{"nativeSrc":"4526:26:101","nodeType":"YulAssignment","src":"4526:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4538:9:101","nodeType":"YulIdentifier","src":"4538:9:101"},{"kind":"number","nativeSrc":"4549:2:101","nodeType":"YulLiteral","src":"4549:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4534:3:101","nodeType":"YulIdentifier","src":"4534:3:101"},"nativeSrc":"4534:18:101","nodeType":"YulFunctionCall","src":"4534:18:101"},"variableNames":[{"name":"tail","nativeSrc":"4526:4:101","nodeType":"YulIdentifier","src":"4526:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4568:9:101","nodeType":"YulIdentifier","src":"4568:9:101"},{"arguments":[{"name":"value0","nativeSrc":"4583:6:101","nodeType":"YulIdentifier","src":"4583:6:101"},{"kind":"number","nativeSrc":"4591:4:101","nodeType":"YulLiteral","src":"4591:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"4579:3:101","nodeType":"YulIdentifier","src":"4579:3:101"},"nativeSrc":"4579:17:101","nodeType":"YulFunctionCall","src":"4579:17:101"}],"functionName":{"name":"mstore","nativeSrc":"4561:6:101","nodeType":"YulIdentifier","src":"4561:6:101"},"nativeSrc":"4561:36:101","nodeType":"YulFunctionCall","src":"4561:36:101"},"nativeSrc":"4561:36:101","nodeType":"YulExpressionStatement","src":"4561:36:101"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"4419:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4485:9:101","nodeType":"YulTypedName","src":"4485:9:101","type":""},{"name":"value0","nativeSrc":"4496:6:101","nodeType":"YulTypedName","src":"4496:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4507:4:101","nodeType":"YulTypedName","src":"4507:4:101","type":""}],"src":"4419:184:101"},{"body":{"nativeSrc":"4709:76:101","nodeType":"YulBlock","src":"4709:76:101","statements":[{"nativeSrc":"4719:26:101","nodeType":"YulAssignment","src":"4719:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4731:9:101","nodeType":"YulIdentifier","src":"4731:9:101"},{"kind":"number","nativeSrc":"4742:2:101","nodeType":"YulLiteral","src":"4742:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4727:3:101","nodeType":"YulIdentifier","src":"4727:3:101"},"nativeSrc":"4727:18:101","nodeType":"YulFunctionCall","src":"4727:18:101"},"variableNames":[{"name":"tail","nativeSrc":"4719:4:101","nodeType":"YulIdentifier","src":"4719:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4761:9:101","nodeType":"YulIdentifier","src":"4761:9:101"},{"name":"value0","nativeSrc":"4772:6:101","nodeType":"YulIdentifier","src":"4772:6:101"}],"functionName":{"name":"mstore","nativeSrc":"4754:6:101","nodeType":"YulIdentifier","src":"4754:6:101"},"nativeSrc":"4754:25:101","nodeType":"YulFunctionCall","src":"4754:25:101"},"nativeSrc":"4754:25:101","nodeType":"YulExpressionStatement","src":"4754:25:101"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"4608:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4678:9:101","nodeType":"YulTypedName","src":"4678:9:101","type":""},{"name":"value0","nativeSrc":"4689:6:101","nodeType":"YulTypedName","src":"4689:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4700:4:101","nodeType":"YulTypedName","src":"4700:4:101","type":""}],"src":"4608:177:101"},{"body":{"nativeSrc":"4944:695:101","nodeType":"YulBlock","src":"4944:695:101","statements":[{"body":{"nativeSrc":"4991:16:101","nodeType":"YulBlock","src":"4991:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5000:1:101","nodeType":"YulLiteral","src":"5000:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5003:1:101","nodeType":"YulLiteral","src":"5003:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4993:6:101","nodeType":"YulIdentifier","src":"4993:6:101"},"nativeSrc":"4993:12:101","nodeType":"YulFunctionCall","src":"4993:12:101"},"nativeSrc":"4993:12:101","nodeType":"YulExpressionStatement","src":"4993:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4965:7:101","nodeType":"YulIdentifier","src":"4965:7:101"},{"name":"headStart","nativeSrc":"4974:9:101","nodeType":"YulIdentifier","src":"4974:9:101"}],"functionName":{"name":"sub","nativeSrc":"4961:3:101","nodeType":"YulIdentifier","src":"4961:3:101"},"nativeSrc":"4961:23:101","nodeType":"YulFunctionCall","src":"4961:23:101"},{"kind":"number","nativeSrc":"4986:3:101","nodeType":"YulLiteral","src":"4986:3:101","type":"","value":"192"}],"functionName":{"name":"slt","nativeSrc":"4957:3:101","nodeType":"YulIdentifier","src":"4957:3:101"},"nativeSrc":"4957:33:101","nodeType":"YulFunctionCall","src":"4957:33:101"},"nativeSrc":"4954:53:101","nodeType":"YulIf","src":"4954:53:101"},{"nativeSrc":"5016:14:101","nodeType":"YulVariableDeclaration","src":"5016:14:101","value":{"kind":"number","nativeSrc":"5029:1:101","nodeType":"YulLiteral","src":"5029:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"5020:5:101","nodeType":"YulTypedName","src":"5020:5:101","type":""}]},{"nativeSrc":"5039:32:101","nodeType":"YulAssignment","src":"5039:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5061:9:101","nodeType":"YulIdentifier","src":"5061:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"5048:12:101","nodeType":"YulIdentifier","src":"5048:12:101"},"nativeSrc":"5048:23:101","nodeType":"YulFunctionCall","src":"5048:23:101"},"variableNames":[{"name":"value","nativeSrc":"5039:5:101","nodeType":"YulIdentifier","src":"5039:5:101"}]},{"nativeSrc":"5080:15:101","nodeType":"YulAssignment","src":"5080:15:101","value":{"name":"value","nativeSrc":"5090:5:101","nodeType":"YulIdentifier","src":"5090:5:101"},"variableNames":[{"name":"value0","nativeSrc":"5080:6:101","nodeType":"YulIdentifier","src":"5080:6:101"}]},{"nativeSrc":"5104:16:101","nodeType":"YulVariableDeclaration","src":"5104:16:101","value":{"kind":"number","nativeSrc":"5119:1:101","nodeType":"YulLiteral","src":"5119:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"5108:7:101","nodeType":"YulTypedName","src":"5108:7:101","type":""}]},{"nativeSrc":"5129:43:101","nodeType":"YulAssignment","src":"5129:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5157:9:101","nodeType":"YulIdentifier","src":"5157:9:101"},{"kind":"number","nativeSrc":"5168:2:101","nodeType":"YulLiteral","src":"5168:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5153:3:101","nodeType":"YulIdentifier","src":"5153:3:101"},"nativeSrc":"5153:18:101","nodeType":"YulFunctionCall","src":"5153:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"5140:12:101","nodeType":"YulIdentifier","src":"5140:12:101"},"nativeSrc":"5140:32:101","nodeType":"YulFunctionCall","src":"5140:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"5129:7:101","nodeType":"YulIdentifier","src":"5129:7:101"}]},{"nativeSrc":"5181:17:101","nodeType":"YulAssignment","src":"5181:17:101","value":{"name":"value_1","nativeSrc":"5191:7:101","nodeType":"YulIdentifier","src":"5191:7:101"},"variableNames":[{"name":"value1","nativeSrc":"5181:6:101","nodeType":"YulIdentifier","src":"5181:6:101"}]},{"nativeSrc":"5207:16:101","nodeType":"YulVariableDeclaration","src":"5207:16:101","value":{"kind":"number","nativeSrc":"5222:1:101","nodeType":"YulLiteral","src":"5222:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"5211:7:101","nodeType":"YulTypedName","src":"5211:7:101","type":""}]},{"nativeSrc":"5232:43:101","nodeType":"YulAssignment","src":"5232:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5260:9:101","nodeType":"YulIdentifier","src":"5260:9:101"},{"kind":"number","nativeSrc":"5271:2:101","nodeType":"YulLiteral","src":"5271:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5256:3:101","nodeType":"YulIdentifier","src":"5256:3:101"},"nativeSrc":"5256:18:101","nodeType":"YulFunctionCall","src":"5256:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"5243:12:101","nodeType":"YulIdentifier","src":"5243:12:101"},"nativeSrc":"5243:32:101","nodeType":"YulFunctionCall","src":"5243:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"5232:7:101","nodeType":"YulIdentifier","src":"5232:7:101"}]},{"nativeSrc":"5284:17:101","nodeType":"YulAssignment","src":"5284:17:101","value":{"name":"value_2","nativeSrc":"5294:7:101","nodeType":"YulIdentifier","src":"5294:7:101"},"variableNames":[{"name":"value2","nativeSrc":"5284:6:101","nodeType":"YulIdentifier","src":"5284:6:101"}]},{"nativeSrc":"5310:16:101","nodeType":"YulVariableDeclaration","src":"5310:16:101","value":{"kind":"number","nativeSrc":"5325:1:101","nodeType":"YulLiteral","src":"5325:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"5314:7:101","nodeType":"YulTypedName","src":"5314:7:101","type":""}]},{"nativeSrc":"5335:43:101","nodeType":"YulAssignment","src":"5335:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5363:9:101","nodeType":"YulIdentifier","src":"5363:9:101"},{"kind":"number","nativeSrc":"5374:2:101","nodeType":"YulLiteral","src":"5374:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5359:3:101","nodeType":"YulIdentifier","src":"5359:3:101"},"nativeSrc":"5359:18:101","nodeType":"YulFunctionCall","src":"5359:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"5346:12:101","nodeType":"YulIdentifier","src":"5346:12:101"},"nativeSrc":"5346:32:101","nodeType":"YulFunctionCall","src":"5346:32:101"},"variableNames":[{"name":"value_3","nativeSrc":"5335:7:101","nodeType":"YulIdentifier","src":"5335:7:101"}]},{"nativeSrc":"5387:17:101","nodeType":"YulAssignment","src":"5387:17:101","value":{"name":"value_3","nativeSrc":"5397:7:101","nodeType":"YulIdentifier","src":"5397:7:101"},"variableNames":[{"name":"value3","nativeSrc":"5387:6:101","nodeType":"YulIdentifier","src":"5387:6:101"}]},{"nativeSrc":"5413:48:101","nodeType":"YulVariableDeclaration","src":"5413:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5445:9:101","nodeType":"YulIdentifier","src":"5445:9:101"},{"kind":"number","nativeSrc":"5456:3:101","nodeType":"YulLiteral","src":"5456:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"5441:3:101","nodeType":"YulIdentifier","src":"5441:3:101"},"nativeSrc":"5441:19:101","nodeType":"YulFunctionCall","src":"5441:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"5428:12:101","nodeType":"YulIdentifier","src":"5428:12:101"},"nativeSrc":"5428:33:101","nodeType":"YulFunctionCall","src":"5428:33:101"},"variables":[{"name":"value_4","nativeSrc":"5417:7:101","nodeType":"YulTypedName","src":"5417:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_4","nativeSrc":"5495:7:101","nodeType":"YulIdentifier","src":"5495:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"5470:24:101","nodeType":"YulIdentifier","src":"5470:24:101"},"nativeSrc":"5470:33:101","nodeType":"YulFunctionCall","src":"5470:33:101"},"nativeSrc":"5470:33:101","nodeType":"YulExpressionStatement","src":"5470:33:101"},{"nativeSrc":"5512:17:101","nodeType":"YulAssignment","src":"5512:17:101","value":{"name":"value_4","nativeSrc":"5522:7:101","nodeType":"YulIdentifier","src":"5522:7:101"},"variableNames":[{"name":"value4","nativeSrc":"5512:6:101","nodeType":"YulIdentifier","src":"5512:6:101"}]},{"nativeSrc":"5538:16:101","nodeType":"YulVariableDeclaration","src":"5538:16:101","value":{"kind":"number","nativeSrc":"5553:1:101","nodeType":"YulLiteral","src":"5553:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"5542:7:101","nodeType":"YulTypedName","src":"5542:7:101","type":""}]},{"nativeSrc":"5563:44:101","nodeType":"YulAssignment","src":"5563:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5591:9:101","nodeType":"YulIdentifier","src":"5591:9:101"},{"kind":"number","nativeSrc":"5602:3:101","nodeType":"YulLiteral","src":"5602:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"5587:3:101","nodeType":"YulIdentifier","src":"5587:3:101"},"nativeSrc":"5587:19:101","nodeType":"YulFunctionCall","src":"5587:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"5574:12:101","nodeType":"YulIdentifier","src":"5574:12:101"},"nativeSrc":"5574:33:101","nodeType":"YulFunctionCall","src":"5574:33:101"},"variableNames":[{"name":"value_5","nativeSrc":"5563:7:101","nodeType":"YulIdentifier","src":"5563:7:101"}]},{"nativeSrc":"5616:17:101","nodeType":"YulAssignment","src":"5616:17:101","value":{"name":"value_5","nativeSrc":"5626:7:101","nodeType":"YulIdentifier","src":"5626:7:101"},"variableNames":[{"name":"value5","nativeSrc":"5616:6:101","nodeType":"YulIdentifier","src":"5616:6:101"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256t_uint256t_int256t_addresst_uint256","nativeSrc":"4790:849:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4870:9:101","nodeType":"YulTypedName","src":"4870:9:101","type":""},{"name":"dataEnd","nativeSrc":"4881:7:101","nodeType":"YulTypedName","src":"4881:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4893:6:101","nodeType":"YulTypedName","src":"4893:6:101","type":""},{"name":"value1","nativeSrc":"4901:6:101","nodeType":"YulTypedName","src":"4901:6:101","type":""},{"name":"value2","nativeSrc":"4909:6:101","nodeType":"YulTypedName","src":"4909:6:101","type":""},{"name":"value3","nativeSrc":"4917:6:101","nodeType":"YulTypedName","src":"4917:6:101","type":""},{"name":"value4","nativeSrc":"4925:6:101","nodeType":"YulTypedName","src":"4925:6:101","type":""},{"name":"value5","nativeSrc":"4933:6:101","nodeType":"YulTypedName","src":"4933:6:101","type":""}],"src":"4790:849:101"},{"body":{"nativeSrc":"5766:102:101","nodeType":"YulBlock","src":"5766:102:101","statements":[{"nativeSrc":"5776:26:101","nodeType":"YulAssignment","src":"5776:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5788:9:101","nodeType":"YulIdentifier","src":"5788:9:101"},{"kind":"number","nativeSrc":"5799:2:101","nodeType":"YulLiteral","src":"5799:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5784:3:101","nodeType":"YulIdentifier","src":"5784:3:101"},"nativeSrc":"5784:18:101","nodeType":"YulFunctionCall","src":"5784:18:101"},"variableNames":[{"name":"tail","nativeSrc":"5776:4:101","nodeType":"YulIdentifier","src":"5776:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5818:9:101","nodeType":"YulIdentifier","src":"5818:9:101"},{"arguments":[{"name":"value0","nativeSrc":"5833:6:101","nodeType":"YulIdentifier","src":"5833:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5849:3:101","nodeType":"YulLiteral","src":"5849:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"5854:1:101","nodeType":"YulLiteral","src":"5854:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5845:3:101","nodeType":"YulIdentifier","src":"5845:3:101"},"nativeSrc":"5845:11:101","nodeType":"YulFunctionCall","src":"5845:11:101"},{"kind":"number","nativeSrc":"5858:1:101","nodeType":"YulLiteral","src":"5858:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5841:3:101","nodeType":"YulIdentifier","src":"5841:3:101"},"nativeSrc":"5841:19:101","nodeType":"YulFunctionCall","src":"5841:19:101"}],"functionName":{"name":"and","nativeSrc":"5829:3:101","nodeType":"YulIdentifier","src":"5829:3:101"},"nativeSrc":"5829:32:101","nodeType":"YulFunctionCall","src":"5829:32:101"}],"functionName":{"name":"mstore","nativeSrc":"5811:6:101","nodeType":"YulIdentifier","src":"5811:6:101"},"nativeSrc":"5811:51:101","nodeType":"YulFunctionCall","src":"5811:51:101"},"nativeSrc":"5811:51:101","nodeType":"YulExpressionStatement","src":"5811:51:101"}]},"name":"abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed","nativeSrc":"5644:224:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5735:9:101","nodeType":"YulTypedName","src":"5735:9:101","type":""},{"name":"value0","nativeSrc":"5746:6:101","nodeType":"YulTypedName","src":"5746:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5757:4:101","nodeType":"YulTypedName","src":"5757:4:101","type":""}],"src":"5644:224:101"},{"body":{"nativeSrc":"5905:95:101","nodeType":"YulBlock","src":"5905:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5922:1:101","nodeType":"YulLiteral","src":"5922:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5929:3:101","nodeType":"YulLiteral","src":"5929:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"5934:10:101","nodeType":"YulLiteral","src":"5934:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5925:3:101","nodeType":"YulIdentifier","src":"5925:3:101"},"nativeSrc":"5925:20:101","nodeType":"YulFunctionCall","src":"5925:20:101"}],"functionName":{"name":"mstore","nativeSrc":"5915:6:101","nodeType":"YulIdentifier","src":"5915:6:101"},"nativeSrc":"5915:31:101","nodeType":"YulFunctionCall","src":"5915:31:101"},"nativeSrc":"5915:31:101","nodeType":"YulExpressionStatement","src":"5915:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5962:1:101","nodeType":"YulLiteral","src":"5962:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"5965:4:101","nodeType":"YulLiteral","src":"5965:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"5955:6:101","nodeType":"YulIdentifier","src":"5955:6:101"},"nativeSrc":"5955:15:101","nodeType":"YulFunctionCall","src":"5955:15:101"},"nativeSrc":"5955:15:101","nodeType":"YulExpressionStatement","src":"5955:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5986:1:101","nodeType":"YulLiteral","src":"5986:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5989:4:101","nodeType":"YulLiteral","src":"5989:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5979:6:101","nodeType":"YulIdentifier","src":"5979:6:101"},"nativeSrc":"5979:15:101","nodeType":"YulFunctionCall","src":"5979:15:101"},"nativeSrc":"5979:15:101","nodeType":"YulExpressionStatement","src":"5979:15:101"}]},"name":"panic_error_0x41","nativeSrc":"5873:127:101","nodeType":"YulFunctionDefinition","src":"5873:127:101"},{"body":{"nativeSrc":"6079:641:101","nodeType":"YulBlock","src":"6079:641:101","statements":[{"nativeSrc":"6089:13:101","nodeType":"YulVariableDeclaration","src":"6089:13:101","value":{"kind":"number","nativeSrc":"6101:1:101","nodeType":"YulLiteral","src":"6101:1:101","type":"","value":"0"},"variables":[{"name":"size","nativeSrc":"6093:4:101","nodeType":"YulTypedName","src":"6093:4:101","type":""}]},{"body":{"nativeSrc":"6145:22:101","nodeType":"YulBlock","src":"6145:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"6147:16:101","nodeType":"YulIdentifier","src":"6147:16:101"},"nativeSrc":"6147:18:101","nodeType":"YulFunctionCall","src":"6147:18:101"},"nativeSrc":"6147:18:101","nodeType":"YulExpressionStatement","src":"6147:18:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"6117:6:101","nodeType":"YulIdentifier","src":"6117:6:101"},{"kind":"number","nativeSrc":"6125:18:101","nodeType":"YulLiteral","src":"6125:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6114:2:101","nodeType":"YulIdentifier","src":"6114:2:101"},"nativeSrc":"6114:30:101","nodeType":"YulFunctionCall","src":"6114:30:101"},"nativeSrc":"6111:56:101","nodeType":"YulIf","src":"6111:56:101"},{"nativeSrc":"6176:43:101","nodeType":"YulVariableDeclaration","src":"6176:43:101","value":{"arguments":[{"arguments":[{"name":"length","nativeSrc":"6198:6:101","nodeType":"YulIdentifier","src":"6198:6:101"},{"kind":"number","nativeSrc":"6206:2:101","nodeType":"YulLiteral","src":"6206:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"6194:3:101","nodeType":"YulIdentifier","src":"6194:3:101"},"nativeSrc":"6194:15:101","nodeType":"YulFunctionCall","src":"6194:15:101"},{"arguments":[{"kind":"number","nativeSrc":"6215:2:101","nodeType":"YulLiteral","src":"6215:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"6211:3:101","nodeType":"YulIdentifier","src":"6211:3:101"},"nativeSrc":"6211:7:101","nodeType":"YulFunctionCall","src":"6211:7:101"}],"functionName":{"name":"and","nativeSrc":"6190:3:101","nodeType":"YulIdentifier","src":"6190:3:101"},"nativeSrc":"6190:29:101","nodeType":"YulFunctionCall","src":"6190:29:101"},"variables":[{"name":"result","nativeSrc":"6180:6:101","nodeType":"YulTypedName","src":"6180:6:101","type":""}]},{"nativeSrc":"6228:25:101","nodeType":"YulAssignment","src":"6228:25:101","value":{"arguments":[{"name":"result","nativeSrc":"6240:6:101","nodeType":"YulIdentifier","src":"6240:6:101"},{"kind":"number","nativeSrc":"6248:4:101","nodeType":"YulLiteral","src":"6248:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6236:3:101","nodeType":"YulIdentifier","src":"6236:3:101"},"nativeSrc":"6236:17:101","nodeType":"YulFunctionCall","src":"6236:17:101"},"variableNames":[{"name":"size","nativeSrc":"6228:4:101","nodeType":"YulIdentifier","src":"6228:4:101"}]},{"nativeSrc":"6262:15:101","nodeType":"YulVariableDeclaration","src":"6262:15:101","value":{"kind":"number","nativeSrc":"6276:1:101","nodeType":"YulLiteral","src":"6276:1:101","type":"","value":"0"},"variables":[{"name":"memPtr","nativeSrc":"6266:6:101","nodeType":"YulTypedName","src":"6266:6:101","type":""}]},{"nativeSrc":"6286:19:101","nodeType":"YulAssignment","src":"6286:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"6302:2:101","nodeType":"YulLiteral","src":"6302:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"6296:5:101","nodeType":"YulIdentifier","src":"6296:5:101"},"nativeSrc":"6296:9:101","nodeType":"YulFunctionCall","src":"6296:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"6286:6:101","nodeType":"YulIdentifier","src":"6286:6:101"}]},{"nativeSrc":"6314:60:101","nodeType":"YulVariableDeclaration","src":"6314:60:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"6336:6:101","nodeType":"YulIdentifier","src":"6336:6:101"},{"arguments":[{"arguments":[{"name":"result","nativeSrc":"6352:6:101","nodeType":"YulIdentifier","src":"6352:6:101"},{"kind":"number","nativeSrc":"6360:2:101","nodeType":"YulLiteral","src":"6360:2:101","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"6348:3:101","nodeType":"YulIdentifier","src":"6348:3:101"},"nativeSrc":"6348:15:101","nodeType":"YulFunctionCall","src":"6348:15:101"},{"arguments":[{"kind":"number","nativeSrc":"6369:2:101","nodeType":"YulLiteral","src":"6369:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"6365:3:101","nodeType":"YulIdentifier","src":"6365:3:101"},"nativeSrc":"6365:7:101","nodeType":"YulFunctionCall","src":"6365:7:101"}],"functionName":{"name":"and","nativeSrc":"6344:3:101","nodeType":"YulIdentifier","src":"6344:3:101"},"nativeSrc":"6344:29:101","nodeType":"YulFunctionCall","src":"6344:29:101"}],"functionName":{"name":"add","nativeSrc":"6332:3:101","nodeType":"YulIdentifier","src":"6332:3:101"},"nativeSrc":"6332:42:101","nodeType":"YulFunctionCall","src":"6332:42:101"},"variables":[{"name":"newFreePtr","nativeSrc":"6318:10:101","nodeType":"YulTypedName","src":"6318:10:101","type":""}]},{"body":{"nativeSrc":"6449:22:101","nodeType":"YulBlock","src":"6449:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"6451:16:101","nodeType":"YulIdentifier","src":"6451:16:101"},"nativeSrc":"6451:18:101","nodeType":"YulFunctionCall","src":"6451:18:101"},"nativeSrc":"6451:18:101","nodeType":"YulExpressionStatement","src":"6451:18:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"6392:10:101","nodeType":"YulIdentifier","src":"6392:10:101"},{"kind":"number","nativeSrc":"6404:18:101","nodeType":"YulLiteral","src":"6404:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6389:2:101","nodeType":"YulIdentifier","src":"6389:2:101"},"nativeSrc":"6389:34:101","nodeType":"YulFunctionCall","src":"6389:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"6428:10:101","nodeType":"YulIdentifier","src":"6428:10:101"},{"name":"memPtr","nativeSrc":"6440:6:101","nodeType":"YulIdentifier","src":"6440:6:101"}],"functionName":{"name":"lt","nativeSrc":"6425:2:101","nodeType":"YulIdentifier","src":"6425:2:101"},"nativeSrc":"6425:22:101","nodeType":"YulFunctionCall","src":"6425:22:101"}],"functionName":{"name":"or","nativeSrc":"6386:2:101","nodeType":"YulIdentifier","src":"6386:2:101"},"nativeSrc":"6386:62:101","nodeType":"YulFunctionCall","src":"6386:62:101"},"nativeSrc":"6383:88:101","nodeType":"YulIf","src":"6383:88:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6487:2:101","nodeType":"YulLiteral","src":"6487:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"6491:10:101","nodeType":"YulIdentifier","src":"6491:10:101"}],"functionName":{"name":"mstore","nativeSrc":"6480:6:101","nodeType":"YulIdentifier","src":"6480:6:101"},"nativeSrc":"6480:22:101","nodeType":"YulFunctionCall","src":"6480:22:101"},"nativeSrc":"6480:22:101","nodeType":"YulExpressionStatement","src":"6480:22:101"},{"nativeSrc":"6511:15:101","nodeType":"YulAssignment","src":"6511:15:101","value":{"name":"memPtr","nativeSrc":"6520:6:101","nodeType":"YulIdentifier","src":"6520:6:101"},"variableNames":[{"name":"array","nativeSrc":"6511:5:101","nodeType":"YulIdentifier","src":"6511:5:101"}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"6542:6:101","nodeType":"YulIdentifier","src":"6542:6:101"},{"name":"length","nativeSrc":"6550:6:101","nodeType":"YulIdentifier","src":"6550:6:101"}],"functionName":{"name":"mstore","nativeSrc":"6535:6:101","nodeType":"YulIdentifier","src":"6535:6:101"},"nativeSrc":"6535:22:101","nodeType":"YulFunctionCall","src":"6535:22:101"},"nativeSrc":"6535:22:101","nodeType":"YulExpressionStatement","src":"6535:22:101"},{"body":{"nativeSrc":"6595:16:101","nodeType":"YulBlock","src":"6595:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6604:1:101","nodeType":"YulLiteral","src":"6604:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6607:1:101","nodeType":"YulLiteral","src":"6607:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6597:6:101","nodeType":"YulIdentifier","src":"6597:6:101"},"nativeSrc":"6597:12:101","nodeType":"YulFunctionCall","src":"6597:12:101"},"nativeSrc":"6597:12:101","nodeType":"YulExpressionStatement","src":"6597:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"6576:3:101","nodeType":"YulIdentifier","src":"6576:3:101"},{"name":"length","nativeSrc":"6581:6:101","nodeType":"YulIdentifier","src":"6581:6:101"}],"functionName":{"name":"add","nativeSrc":"6572:3:101","nodeType":"YulIdentifier","src":"6572:3:101"},"nativeSrc":"6572:16:101","nodeType":"YulFunctionCall","src":"6572:16:101"},{"name":"end","nativeSrc":"6590:3:101","nodeType":"YulIdentifier","src":"6590:3:101"}],"functionName":{"name":"gt","nativeSrc":"6569:2:101","nodeType":"YulIdentifier","src":"6569:2:101"},"nativeSrc":"6569:25:101","nodeType":"YulFunctionCall","src":"6569:25:101"},"nativeSrc":"6566:45:101","nodeType":"YulIf","src":"6566:45:101"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"6637:6:101","nodeType":"YulIdentifier","src":"6637:6:101"},{"kind":"number","nativeSrc":"6645:4:101","nodeType":"YulLiteral","src":"6645:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6633:3:101","nodeType":"YulIdentifier","src":"6633:3:101"},"nativeSrc":"6633:17:101","nodeType":"YulFunctionCall","src":"6633:17:101"},{"name":"src","nativeSrc":"6652:3:101","nodeType":"YulIdentifier","src":"6652:3:101"},{"name":"length","nativeSrc":"6657:6:101","nodeType":"YulIdentifier","src":"6657:6:101"}],"functionName":{"name":"calldatacopy","nativeSrc":"6620:12:101","nodeType":"YulIdentifier","src":"6620:12:101"},"nativeSrc":"6620:44:101","nodeType":"YulFunctionCall","src":"6620:44:101"},"nativeSrc":"6620:44:101","nodeType":"YulExpressionStatement","src":"6620:44:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"6688:6:101","nodeType":"YulIdentifier","src":"6688:6:101"},{"name":"length","nativeSrc":"6696:6:101","nodeType":"YulIdentifier","src":"6696:6:101"}],"functionName":{"name":"add","nativeSrc":"6684:3:101","nodeType":"YulIdentifier","src":"6684:3:101"},"nativeSrc":"6684:19:101","nodeType":"YulFunctionCall","src":"6684:19:101"},{"kind":"number","nativeSrc":"6705:4:101","nodeType":"YulLiteral","src":"6705:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6680:3:101","nodeType":"YulIdentifier","src":"6680:3:101"},"nativeSrc":"6680:30:101","nodeType":"YulFunctionCall","src":"6680:30:101"},{"kind":"number","nativeSrc":"6712:1:101","nodeType":"YulLiteral","src":"6712:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"6673:6:101","nodeType":"YulIdentifier","src":"6673:6:101"},"nativeSrc":"6673:41:101","nodeType":"YulFunctionCall","src":"6673:41:101"},"nativeSrc":"6673:41:101","nodeType":"YulExpressionStatement","src":"6673:41:101"}]},"name":"abi_decode_available_length_bytes","nativeSrc":"6005:715:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nativeSrc":"6048:3:101","nodeType":"YulTypedName","src":"6048:3:101","type":""},{"name":"length","nativeSrc":"6053:6:101","nodeType":"YulTypedName","src":"6053:6:101","type":""},{"name":"end","nativeSrc":"6061:3:101","nodeType":"YulTypedName","src":"6061:3:101","type":""}],"returnVariables":[{"name":"array","nativeSrc":"6069:5:101","nodeType":"YulTypedName","src":"6069:5:101","type":""}],"src":"6005:715:101"},{"body":{"nativeSrc":"6821:488:101","nodeType":"YulBlock","src":"6821:488:101","statements":[{"body":{"nativeSrc":"6867:16:101","nodeType":"YulBlock","src":"6867:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6876:1:101","nodeType":"YulLiteral","src":"6876:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6879:1:101","nodeType":"YulLiteral","src":"6879:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6869:6:101","nodeType":"YulIdentifier","src":"6869:6:101"},"nativeSrc":"6869:12:101","nodeType":"YulFunctionCall","src":"6869:12:101"},"nativeSrc":"6869:12:101","nodeType":"YulExpressionStatement","src":"6869:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6842:7:101","nodeType":"YulIdentifier","src":"6842:7:101"},{"name":"headStart","nativeSrc":"6851:9:101","nodeType":"YulIdentifier","src":"6851:9:101"}],"functionName":{"name":"sub","nativeSrc":"6838:3:101","nodeType":"YulIdentifier","src":"6838:3:101"},"nativeSrc":"6838:23:101","nodeType":"YulFunctionCall","src":"6838:23:101"},{"kind":"number","nativeSrc":"6863:2:101","nodeType":"YulLiteral","src":"6863:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6834:3:101","nodeType":"YulIdentifier","src":"6834:3:101"},"nativeSrc":"6834:32:101","nodeType":"YulFunctionCall","src":"6834:32:101"},"nativeSrc":"6831:52:101","nodeType":"YulIf","src":"6831:52:101"},{"nativeSrc":"6892:36:101","nodeType":"YulVariableDeclaration","src":"6892:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6918:9:101","nodeType":"YulIdentifier","src":"6918:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"6905:12:101","nodeType":"YulIdentifier","src":"6905:12:101"},"nativeSrc":"6905:23:101","nodeType":"YulFunctionCall","src":"6905:23:101"},"variables":[{"name":"value","nativeSrc":"6896:5:101","nodeType":"YulTypedName","src":"6896:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6962:5:101","nodeType":"YulIdentifier","src":"6962:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6937:24:101","nodeType":"YulIdentifier","src":"6937:24:101"},"nativeSrc":"6937:31:101","nodeType":"YulFunctionCall","src":"6937:31:101"},"nativeSrc":"6937:31:101","nodeType":"YulExpressionStatement","src":"6937:31:101"},{"nativeSrc":"6977:15:101","nodeType":"YulAssignment","src":"6977:15:101","value":{"name":"value","nativeSrc":"6987:5:101","nodeType":"YulIdentifier","src":"6987:5:101"},"variableNames":[{"name":"value0","nativeSrc":"6977:6:101","nodeType":"YulIdentifier","src":"6977:6:101"}]},{"nativeSrc":"7001:46:101","nodeType":"YulVariableDeclaration","src":"7001:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7032:9:101","nodeType":"YulIdentifier","src":"7032:9:101"},{"kind":"number","nativeSrc":"7043:2:101","nodeType":"YulLiteral","src":"7043:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7028:3:101","nodeType":"YulIdentifier","src":"7028:3:101"},"nativeSrc":"7028:18:101","nodeType":"YulFunctionCall","src":"7028:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"7015:12:101","nodeType":"YulIdentifier","src":"7015:12:101"},"nativeSrc":"7015:32:101","nodeType":"YulFunctionCall","src":"7015:32:101"},"variables":[{"name":"offset","nativeSrc":"7005:6:101","nodeType":"YulTypedName","src":"7005:6:101","type":""}]},{"body":{"nativeSrc":"7090:16:101","nodeType":"YulBlock","src":"7090:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7099:1:101","nodeType":"YulLiteral","src":"7099:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7102:1:101","nodeType":"YulLiteral","src":"7102:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7092:6:101","nodeType":"YulIdentifier","src":"7092:6:101"},"nativeSrc":"7092:12:101","nodeType":"YulFunctionCall","src":"7092:12:101"},"nativeSrc":"7092:12:101","nodeType":"YulExpressionStatement","src":"7092:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"7062:6:101","nodeType":"YulIdentifier","src":"7062:6:101"},{"kind":"number","nativeSrc":"7070:18:101","nodeType":"YulLiteral","src":"7070:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7059:2:101","nodeType":"YulIdentifier","src":"7059:2:101"},"nativeSrc":"7059:30:101","nodeType":"YulFunctionCall","src":"7059:30:101"},"nativeSrc":"7056:50:101","nodeType":"YulIf","src":"7056:50:101"},{"nativeSrc":"7115:32:101","nodeType":"YulVariableDeclaration","src":"7115:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7129:9:101","nodeType":"YulIdentifier","src":"7129:9:101"},{"name":"offset","nativeSrc":"7140:6:101","nodeType":"YulIdentifier","src":"7140:6:101"}],"functionName":{"name":"add","nativeSrc":"7125:3:101","nodeType":"YulIdentifier","src":"7125:3:101"},"nativeSrc":"7125:22:101","nodeType":"YulFunctionCall","src":"7125:22:101"},"variables":[{"name":"_1","nativeSrc":"7119:2:101","nodeType":"YulTypedName","src":"7119:2:101","type":""}]},{"body":{"nativeSrc":"7195:16:101","nodeType":"YulBlock","src":"7195:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7204:1:101","nodeType":"YulLiteral","src":"7204:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7207:1:101","nodeType":"YulLiteral","src":"7207:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7197:6:101","nodeType":"YulIdentifier","src":"7197:6:101"},"nativeSrc":"7197:12:101","nodeType":"YulFunctionCall","src":"7197:12:101"},"nativeSrc":"7197:12:101","nodeType":"YulExpressionStatement","src":"7197:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"7174:2:101","nodeType":"YulIdentifier","src":"7174:2:101"},{"kind":"number","nativeSrc":"7178:4:101","nodeType":"YulLiteral","src":"7178:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"7170:3:101","nodeType":"YulIdentifier","src":"7170:3:101"},"nativeSrc":"7170:13:101","nodeType":"YulFunctionCall","src":"7170:13:101"},{"name":"dataEnd","nativeSrc":"7185:7:101","nodeType":"YulIdentifier","src":"7185:7:101"}],"functionName":{"name":"slt","nativeSrc":"7166:3:101","nodeType":"YulIdentifier","src":"7166:3:101"},"nativeSrc":"7166:27:101","nodeType":"YulFunctionCall","src":"7166:27:101"}],"functionName":{"name":"iszero","nativeSrc":"7159:6:101","nodeType":"YulIdentifier","src":"7159:6:101"},"nativeSrc":"7159:35:101","nodeType":"YulFunctionCall","src":"7159:35:101"},"nativeSrc":"7156:55:101","nodeType":"YulIf","src":"7156:55:101"},{"nativeSrc":"7220:83:101","nodeType":"YulAssignment","src":"7220:83:101","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"7268:2:101","nodeType":"YulIdentifier","src":"7268:2:101"},{"kind":"number","nativeSrc":"7272:2:101","nodeType":"YulLiteral","src":"7272:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7264:3:101","nodeType":"YulIdentifier","src":"7264:3:101"},"nativeSrc":"7264:11:101","nodeType":"YulFunctionCall","src":"7264:11:101"},{"arguments":[{"name":"_1","nativeSrc":"7290:2:101","nodeType":"YulIdentifier","src":"7290:2:101"}],"functionName":{"name":"calldataload","nativeSrc":"7277:12:101","nodeType":"YulIdentifier","src":"7277:12:101"},"nativeSrc":"7277:16:101","nodeType":"YulFunctionCall","src":"7277:16:101"},{"name":"dataEnd","nativeSrc":"7295:7:101","nodeType":"YulIdentifier","src":"7295:7:101"}],"functionName":{"name":"abi_decode_available_length_bytes","nativeSrc":"7230:33:101","nodeType":"YulIdentifier","src":"7230:33:101"},"nativeSrc":"7230:73:101","nodeType":"YulFunctionCall","src":"7230:73:101"},"variableNames":[{"name":"value1","nativeSrc":"7220:6:101","nodeType":"YulIdentifier","src":"7220:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr","nativeSrc":"6725:584:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6779:9:101","nodeType":"YulTypedName","src":"6779:9:101","type":""},{"name":"dataEnd","nativeSrc":"6790:7:101","nodeType":"YulTypedName","src":"6790:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6802:6:101","nodeType":"YulTypedName","src":"6802:6:101","type":""},{"name":"value1","nativeSrc":"6810:6:101","nodeType":"YulTypedName","src":"6810:6:101","type":""}],"src":"6725:584:101"},{"body":{"nativeSrc":"7418:362:101","nodeType":"YulBlock","src":"7418:362:101","statements":[{"body":{"nativeSrc":"7464:16:101","nodeType":"YulBlock","src":"7464:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7473:1:101","nodeType":"YulLiteral","src":"7473:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7476:1:101","nodeType":"YulLiteral","src":"7476:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7466:6:101","nodeType":"YulIdentifier","src":"7466:6:101"},"nativeSrc":"7466:12:101","nodeType":"YulFunctionCall","src":"7466:12:101"},"nativeSrc":"7466:12:101","nodeType":"YulExpressionStatement","src":"7466:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7439:7:101","nodeType":"YulIdentifier","src":"7439:7:101"},{"name":"headStart","nativeSrc":"7448:9:101","nodeType":"YulIdentifier","src":"7448:9:101"}],"functionName":{"name":"sub","nativeSrc":"7435:3:101","nodeType":"YulIdentifier","src":"7435:3:101"},"nativeSrc":"7435:23:101","nodeType":"YulFunctionCall","src":"7435:23:101"},{"kind":"number","nativeSrc":"7460:2:101","nodeType":"YulLiteral","src":"7460:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"7431:3:101","nodeType":"YulIdentifier","src":"7431:3:101"},"nativeSrc":"7431:32:101","nodeType":"YulFunctionCall","src":"7431:32:101"},"nativeSrc":"7428:52:101","nodeType":"YulIf","src":"7428:52:101"},{"nativeSrc":"7489:14:101","nodeType":"YulVariableDeclaration","src":"7489:14:101","value":{"kind":"number","nativeSrc":"7502:1:101","nodeType":"YulLiteral","src":"7502:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"7493:5:101","nodeType":"YulTypedName","src":"7493:5:101","type":""}]},{"nativeSrc":"7512:32:101","nodeType":"YulAssignment","src":"7512:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7534:9:101","nodeType":"YulIdentifier","src":"7534:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"7521:12:101","nodeType":"YulIdentifier","src":"7521:12:101"},"nativeSrc":"7521:23:101","nodeType":"YulFunctionCall","src":"7521:23:101"},"variableNames":[{"name":"value","nativeSrc":"7512:5:101","nodeType":"YulIdentifier","src":"7512:5:101"}]},{"nativeSrc":"7553:15:101","nodeType":"YulAssignment","src":"7553:15:101","value":{"name":"value","nativeSrc":"7563:5:101","nodeType":"YulIdentifier","src":"7563:5:101"},"variableNames":[{"name":"value0","nativeSrc":"7553:6:101","nodeType":"YulIdentifier","src":"7553:6:101"}]},{"nativeSrc":"7577:16:101","nodeType":"YulVariableDeclaration","src":"7577:16:101","value":{"kind":"number","nativeSrc":"7592:1:101","nodeType":"YulLiteral","src":"7592:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"7581:7:101","nodeType":"YulTypedName","src":"7581:7:101","type":""}]},{"nativeSrc":"7602:43:101","nodeType":"YulAssignment","src":"7602:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7630:9:101","nodeType":"YulIdentifier","src":"7630:9:101"},{"kind":"number","nativeSrc":"7641:2:101","nodeType":"YulLiteral","src":"7641:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7626:3:101","nodeType":"YulIdentifier","src":"7626:3:101"},"nativeSrc":"7626:18:101","nodeType":"YulFunctionCall","src":"7626:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"7613:12:101","nodeType":"YulIdentifier","src":"7613:12:101"},"nativeSrc":"7613:32:101","nodeType":"YulFunctionCall","src":"7613:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"7602:7:101","nodeType":"YulIdentifier","src":"7602:7:101"}]},{"nativeSrc":"7654:17:101","nodeType":"YulAssignment","src":"7654:17:101","value":{"name":"value_1","nativeSrc":"7664:7:101","nodeType":"YulIdentifier","src":"7664:7:101"},"variableNames":[{"name":"value1","nativeSrc":"7654:6:101","nodeType":"YulIdentifier","src":"7654:6:101"}]},{"nativeSrc":"7680:16:101","nodeType":"YulVariableDeclaration","src":"7680:16:101","value":{"kind":"number","nativeSrc":"7695:1:101","nodeType":"YulLiteral","src":"7695:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"7684:7:101","nodeType":"YulTypedName","src":"7684:7:101","type":""}]},{"nativeSrc":"7705:43:101","nodeType":"YulAssignment","src":"7705:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7733:9:101","nodeType":"YulIdentifier","src":"7733:9:101"},{"kind":"number","nativeSrc":"7744:2:101","nodeType":"YulLiteral","src":"7744:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7729:3:101","nodeType":"YulIdentifier","src":"7729:3:101"},"nativeSrc":"7729:18:101","nodeType":"YulFunctionCall","src":"7729:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"7716:12:101","nodeType":"YulIdentifier","src":"7716:12:101"},"nativeSrc":"7716:32:101","nodeType":"YulFunctionCall","src":"7716:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"7705:7:101","nodeType":"YulIdentifier","src":"7705:7:101"}]},{"nativeSrc":"7757:17:101","nodeType":"YulAssignment","src":"7757:17:101","value":{"name":"value_2","nativeSrc":"7767:7:101","nodeType":"YulIdentifier","src":"7767:7:101"},"variableNames":[{"name":"value2","nativeSrc":"7757:6:101","nodeType":"YulIdentifier","src":"7757:6:101"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256t_uint256","nativeSrc":"7314:466:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7368:9:101","nodeType":"YulTypedName","src":"7368:9:101","type":""},{"name":"dataEnd","nativeSrc":"7379:7:101","nodeType":"YulTypedName","src":"7379:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7391:6:101","nodeType":"YulTypedName","src":"7391:6:101","type":""},{"name":"value1","nativeSrc":"7399:6:101","nodeType":"YulTypedName","src":"7399:6:101","type":""},{"name":"value2","nativeSrc":"7407:6:101","nodeType":"YulTypedName","src":"7407:6:101","type":""}],"src":"7314:466:101"},{"body":{"nativeSrc":"7838:168:101","nodeType":"YulBlock","src":"7838:168:101","statements":[{"body":{"nativeSrc":"7887:16:101","nodeType":"YulBlock","src":"7887:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7896:1:101","nodeType":"YulLiteral","src":"7896:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7899:1:101","nodeType":"YulLiteral","src":"7899:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7889:6:101","nodeType":"YulIdentifier","src":"7889:6:101"},"nativeSrc":"7889:12:101","nodeType":"YulFunctionCall","src":"7889:12:101"},"nativeSrc":"7889:12:101","nodeType":"YulExpressionStatement","src":"7889:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"7866:6:101","nodeType":"YulIdentifier","src":"7866:6:101"},{"kind":"number","nativeSrc":"7874:4:101","nodeType":"YulLiteral","src":"7874:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"7862:3:101","nodeType":"YulIdentifier","src":"7862:3:101"},"nativeSrc":"7862:17:101","nodeType":"YulFunctionCall","src":"7862:17:101"},{"name":"end","nativeSrc":"7881:3:101","nodeType":"YulIdentifier","src":"7881:3:101"}],"functionName":{"name":"slt","nativeSrc":"7858:3:101","nodeType":"YulIdentifier","src":"7858:3:101"},"nativeSrc":"7858:27:101","nodeType":"YulFunctionCall","src":"7858:27:101"}],"functionName":{"name":"iszero","nativeSrc":"7851:6:101","nodeType":"YulIdentifier","src":"7851:6:101"},"nativeSrc":"7851:35:101","nodeType":"YulFunctionCall","src":"7851:35:101"},"nativeSrc":"7848:55:101","nodeType":"YulIf","src":"7848:55:101"},{"nativeSrc":"7912:88:101","nodeType":"YulAssignment","src":"7912:88:101","value":{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"7959:6:101","nodeType":"YulIdentifier","src":"7959:6:101"},{"kind":"number","nativeSrc":"7967:4:101","nodeType":"YulLiteral","src":"7967:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7955:3:101","nodeType":"YulIdentifier","src":"7955:3:101"},"nativeSrc":"7955:17:101","nodeType":"YulFunctionCall","src":"7955:17:101"},{"arguments":[{"name":"offset","nativeSrc":"7987:6:101","nodeType":"YulIdentifier","src":"7987:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"7974:12:101","nodeType":"YulIdentifier","src":"7974:12:101"},"nativeSrc":"7974:20:101","nodeType":"YulFunctionCall","src":"7974:20:101"},{"name":"end","nativeSrc":"7996:3:101","nodeType":"YulIdentifier","src":"7996:3:101"}],"functionName":{"name":"abi_decode_available_length_bytes","nativeSrc":"7921:33:101","nodeType":"YulIdentifier","src":"7921:33:101"},"nativeSrc":"7921:79:101","nodeType":"YulFunctionCall","src":"7921:79:101"},"variableNames":[{"name":"array","nativeSrc":"7912:5:101","nodeType":"YulIdentifier","src":"7912:5:101"}]}]},"name":"abi_decode_string","nativeSrc":"7785:221:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"7812:6:101","nodeType":"YulTypedName","src":"7812:6:101","type":""},{"name":"end","nativeSrc":"7820:3:101","nodeType":"YulTypedName","src":"7820:3:101","type":""}],"returnVariables":[{"name":"array","nativeSrc":"7828:5:101","nodeType":"YulTypedName","src":"7828:5:101","type":""}],"src":"7785:221:101"},{"body":{"nativeSrc":"8152:632:101","nodeType":"YulBlock","src":"8152:632:101","statements":[{"body":{"nativeSrc":"8199:16:101","nodeType":"YulBlock","src":"8199:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8208:1:101","nodeType":"YulLiteral","src":"8208:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8211:1:101","nodeType":"YulLiteral","src":"8211:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8201:6:101","nodeType":"YulIdentifier","src":"8201:6:101"},"nativeSrc":"8201:12:101","nodeType":"YulFunctionCall","src":"8201:12:101"},"nativeSrc":"8201:12:101","nodeType":"YulExpressionStatement","src":"8201:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8173:7:101","nodeType":"YulIdentifier","src":"8173:7:101"},{"name":"headStart","nativeSrc":"8182:9:101","nodeType":"YulIdentifier","src":"8182:9:101"}],"functionName":{"name":"sub","nativeSrc":"8169:3:101","nodeType":"YulIdentifier","src":"8169:3:101"},"nativeSrc":"8169:23:101","nodeType":"YulFunctionCall","src":"8169:23:101"},{"kind":"number","nativeSrc":"8194:3:101","nodeType":"YulLiteral","src":"8194:3:101","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"8165:3:101","nodeType":"YulIdentifier","src":"8165:3:101"},"nativeSrc":"8165:33:101","nodeType":"YulFunctionCall","src":"8165:33:101"},"nativeSrc":"8162:53:101","nodeType":"YulIf","src":"8162:53:101"},{"nativeSrc":"8224:37:101","nodeType":"YulVariableDeclaration","src":"8224:37:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8251:9:101","nodeType":"YulIdentifier","src":"8251:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"8238:12:101","nodeType":"YulIdentifier","src":"8238:12:101"},"nativeSrc":"8238:23:101","nodeType":"YulFunctionCall","src":"8238:23:101"},"variables":[{"name":"offset","nativeSrc":"8228:6:101","nodeType":"YulTypedName","src":"8228:6:101","type":""}]},{"body":{"nativeSrc":"8304:16:101","nodeType":"YulBlock","src":"8304:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8313:1:101","nodeType":"YulLiteral","src":"8313:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8316:1:101","nodeType":"YulLiteral","src":"8316:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8306:6:101","nodeType":"YulIdentifier","src":"8306:6:101"},"nativeSrc":"8306:12:101","nodeType":"YulFunctionCall","src":"8306:12:101"},"nativeSrc":"8306:12:101","nodeType":"YulExpressionStatement","src":"8306:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"8276:6:101","nodeType":"YulIdentifier","src":"8276:6:101"},{"kind":"number","nativeSrc":"8284:18:101","nodeType":"YulLiteral","src":"8284:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8273:2:101","nodeType":"YulIdentifier","src":"8273:2:101"},"nativeSrc":"8273:30:101","nodeType":"YulFunctionCall","src":"8273:30:101"},"nativeSrc":"8270:50:101","nodeType":"YulIf","src":"8270:50:101"},{"nativeSrc":"8329:60:101","nodeType":"YulAssignment","src":"8329:60:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8361:9:101","nodeType":"YulIdentifier","src":"8361:9:101"},{"name":"offset","nativeSrc":"8372:6:101","nodeType":"YulIdentifier","src":"8372:6:101"}],"functionName":{"name":"add","nativeSrc":"8357:3:101","nodeType":"YulIdentifier","src":"8357:3:101"},"nativeSrc":"8357:22:101","nodeType":"YulFunctionCall","src":"8357:22:101"},{"name":"dataEnd","nativeSrc":"8381:7:101","nodeType":"YulIdentifier","src":"8381:7:101"}],"functionName":{"name":"abi_decode_string","nativeSrc":"8339:17:101","nodeType":"YulIdentifier","src":"8339:17:101"},"nativeSrc":"8339:50:101","nodeType":"YulFunctionCall","src":"8339:50:101"},"variableNames":[{"name":"value0","nativeSrc":"8329:6:101","nodeType":"YulIdentifier","src":"8329:6:101"}]},{"nativeSrc":"8398:48:101","nodeType":"YulVariableDeclaration","src":"8398:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8431:9:101","nodeType":"YulIdentifier","src":"8431:9:101"},{"kind":"number","nativeSrc":"8442:2:101","nodeType":"YulLiteral","src":"8442:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8427:3:101","nodeType":"YulIdentifier","src":"8427:3:101"},"nativeSrc":"8427:18:101","nodeType":"YulFunctionCall","src":"8427:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"8414:12:101","nodeType":"YulIdentifier","src":"8414:12:101"},"nativeSrc":"8414:32:101","nodeType":"YulFunctionCall","src":"8414:32:101"},"variables":[{"name":"offset_1","nativeSrc":"8402:8:101","nodeType":"YulTypedName","src":"8402:8:101","type":""}]},{"body":{"nativeSrc":"8491:16:101","nodeType":"YulBlock","src":"8491:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8500:1:101","nodeType":"YulLiteral","src":"8500:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8503:1:101","nodeType":"YulLiteral","src":"8503:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8493:6:101","nodeType":"YulIdentifier","src":"8493:6:101"},"nativeSrc":"8493:12:101","nodeType":"YulFunctionCall","src":"8493:12:101"},"nativeSrc":"8493:12:101","nodeType":"YulExpressionStatement","src":"8493:12:101"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"8461:8:101","nodeType":"YulIdentifier","src":"8461:8:101"},{"kind":"number","nativeSrc":"8471:18:101","nodeType":"YulLiteral","src":"8471:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8458:2:101","nodeType":"YulIdentifier","src":"8458:2:101"},"nativeSrc":"8458:32:101","nodeType":"YulFunctionCall","src":"8458:32:101"},"nativeSrc":"8455:52:101","nodeType":"YulIf","src":"8455:52:101"},{"nativeSrc":"8516:62:101","nodeType":"YulAssignment","src":"8516:62:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8548:9:101","nodeType":"YulIdentifier","src":"8548:9:101"},{"name":"offset_1","nativeSrc":"8559:8:101","nodeType":"YulIdentifier","src":"8559:8:101"}],"functionName":{"name":"add","nativeSrc":"8544:3:101","nodeType":"YulIdentifier","src":"8544:3:101"},"nativeSrc":"8544:24:101","nodeType":"YulFunctionCall","src":"8544:24:101"},{"name":"dataEnd","nativeSrc":"8570:7:101","nodeType":"YulIdentifier","src":"8570:7:101"}],"functionName":{"name":"abi_decode_string","nativeSrc":"8526:17:101","nodeType":"YulIdentifier","src":"8526:17:101"},"nativeSrc":"8526:52:101","nodeType":"YulFunctionCall","src":"8526:52:101"},"variableNames":[{"name":"value1","nativeSrc":"8516:6:101","nodeType":"YulIdentifier","src":"8516:6:101"}]},{"nativeSrc":"8587:14:101","nodeType":"YulVariableDeclaration","src":"8587:14:101","value":{"kind":"number","nativeSrc":"8600:1:101","nodeType":"YulLiteral","src":"8600:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"8591:5:101","nodeType":"YulTypedName","src":"8591:5:101","type":""}]},{"nativeSrc":"8610:41:101","nodeType":"YulAssignment","src":"8610:41:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8636:9:101","nodeType":"YulIdentifier","src":"8636:9:101"},{"kind":"number","nativeSrc":"8647:2:101","nodeType":"YulLiteral","src":"8647:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8632:3:101","nodeType":"YulIdentifier","src":"8632:3:101"},"nativeSrc":"8632:18:101","nodeType":"YulFunctionCall","src":"8632:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"8619:12:101","nodeType":"YulIdentifier","src":"8619:12:101"},"nativeSrc":"8619:32:101","nodeType":"YulFunctionCall","src":"8619:32:101"},"variableNames":[{"name":"value","nativeSrc":"8610:5:101","nodeType":"YulIdentifier","src":"8610:5:101"}]},{"nativeSrc":"8660:15:101","nodeType":"YulAssignment","src":"8660:15:101","value":{"name":"value","nativeSrc":"8670:5:101","nodeType":"YulIdentifier","src":"8670:5:101"},"variableNames":[{"name":"value2","nativeSrc":"8660:6:101","nodeType":"YulIdentifier","src":"8660:6:101"}]},{"nativeSrc":"8684:16:101","nodeType":"YulVariableDeclaration","src":"8684:16:101","value":{"kind":"number","nativeSrc":"8699:1:101","nodeType":"YulLiteral","src":"8699:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"8688:7:101","nodeType":"YulTypedName","src":"8688:7:101","type":""}]},{"nativeSrc":"8709:43:101","nodeType":"YulAssignment","src":"8709:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8737:9:101","nodeType":"YulIdentifier","src":"8737:9:101"},{"kind":"number","nativeSrc":"8748:2:101","nodeType":"YulLiteral","src":"8748:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8733:3:101","nodeType":"YulIdentifier","src":"8733:3:101"},"nativeSrc":"8733:18:101","nodeType":"YulFunctionCall","src":"8733:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"8720:12:101","nodeType":"YulIdentifier","src":"8720:12:101"},"nativeSrc":"8720:32:101","nodeType":"YulFunctionCall","src":"8720:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"8709:7:101","nodeType":"YulIdentifier","src":"8709:7:101"}]},{"nativeSrc":"8761:17:101","nodeType":"YulAssignment","src":"8761:17:101","value":{"name":"value_1","nativeSrc":"8771:7:101","nodeType":"YulIdentifier","src":"8771:7:101"},"variableNames":[{"name":"value3","nativeSrc":"8761:6:101","nodeType":"YulIdentifier","src":"8761:6:101"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint256","nativeSrc":"8011:773:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8094:9:101","nodeType":"YulTypedName","src":"8094:9:101","type":""},{"name":"dataEnd","nativeSrc":"8105:7:101","nodeType":"YulTypedName","src":"8105:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8117:6:101","nodeType":"YulTypedName","src":"8117:6:101","type":""},{"name":"value1","nativeSrc":"8125:6:101","nodeType":"YulTypedName","src":"8125:6:101","type":""},{"name":"value2","nativeSrc":"8133:6:101","nodeType":"YulTypedName","src":"8133:6:101","type":""},{"name":"value3","nativeSrc":"8141:6:101","nodeType":"YulTypedName","src":"8141:6:101","type":""}],"src":"8011:773:101"},{"body":{"nativeSrc":"8856:174:101","nodeType":"YulBlock","src":"8856:174:101","statements":[{"body":{"nativeSrc":"8902:16:101","nodeType":"YulBlock","src":"8902:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8911:1:101","nodeType":"YulLiteral","src":"8911:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8914:1:101","nodeType":"YulLiteral","src":"8914:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8904:6:101","nodeType":"YulIdentifier","src":"8904:6:101"},"nativeSrc":"8904:12:101","nodeType":"YulFunctionCall","src":"8904:12:101"},"nativeSrc":"8904:12:101","nodeType":"YulExpressionStatement","src":"8904:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8877:7:101","nodeType":"YulIdentifier","src":"8877:7:101"},{"name":"headStart","nativeSrc":"8886:9:101","nodeType":"YulIdentifier","src":"8886:9:101"}],"functionName":{"name":"sub","nativeSrc":"8873:3:101","nodeType":"YulIdentifier","src":"8873:3:101"},"nativeSrc":"8873:23:101","nodeType":"YulFunctionCall","src":"8873:23:101"},{"kind":"number","nativeSrc":"8898:2:101","nodeType":"YulLiteral","src":"8898:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"8869:3:101","nodeType":"YulIdentifier","src":"8869:3:101"},"nativeSrc":"8869:32:101","nodeType":"YulFunctionCall","src":"8869:32:101"},"nativeSrc":"8866:52:101","nodeType":"YulIf","src":"8866:52:101"},{"nativeSrc":"8927:36:101","nodeType":"YulVariableDeclaration","src":"8927:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8953:9:101","nodeType":"YulIdentifier","src":"8953:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"8940:12:101","nodeType":"YulIdentifier","src":"8940:12:101"},"nativeSrc":"8940:23:101","nodeType":"YulFunctionCall","src":"8940:23:101"},"variables":[{"name":"value","nativeSrc":"8931:5:101","nodeType":"YulTypedName","src":"8931:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8994:5:101","nodeType":"YulIdentifier","src":"8994:5:101"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"8972:21:101","nodeType":"YulIdentifier","src":"8972:21:101"},"nativeSrc":"8972:28:101","nodeType":"YulFunctionCall","src":"8972:28:101"},"nativeSrc":"8972:28:101","nodeType":"YulExpressionStatement","src":"8972:28:101"},{"nativeSrc":"9009:15:101","nodeType":"YulAssignment","src":"9009:15:101","value":{"name":"value","nativeSrc":"9019:5:101","nodeType":"YulIdentifier","src":"9019:5:101"},"variableNames":[{"name":"value0","nativeSrc":"9009:6:101","nodeType":"YulIdentifier","src":"9009:6:101"}]}]},"name":"abi_decode_tuple_t_bool","nativeSrc":"8789:241:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8822:9:101","nodeType":"YulTypedName","src":"8822:9:101","type":""},{"name":"dataEnd","nativeSrc":"8833:7:101","nodeType":"YulTypedName","src":"8833:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8845:6:101","nodeType":"YulTypedName","src":"8845:6:101","type":""}],"src":"8789:241:101"},{"body":{"nativeSrc":"9392:881:101","nodeType":"YulBlock","src":"9392:881:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9409:9:101","nodeType":"YulIdentifier","src":"9409:9:101"},{"arguments":[{"name":"value0","nativeSrc":"9424:6:101","nodeType":"YulIdentifier","src":"9424:6:101"},{"arguments":[{"kind":"number","nativeSrc":"9436:3:101","nodeType":"YulLiteral","src":"9436:3:101","type":"","value":"248"},{"kind":"number","nativeSrc":"9441:3:101","nodeType":"YulLiteral","src":"9441:3:101","type":"","value":"255"}],"functionName":{"name":"shl","nativeSrc":"9432:3:101","nodeType":"YulIdentifier","src":"9432:3:101"},"nativeSrc":"9432:13:101","nodeType":"YulFunctionCall","src":"9432:13:101"}],"functionName":{"name":"and","nativeSrc":"9420:3:101","nodeType":"YulIdentifier","src":"9420:3:101"},"nativeSrc":"9420:26:101","nodeType":"YulFunctionCall","src":"9420:26:101"}],"functionName":{"name":"mstore","nativeSrc":"9402:6:101","nodeType":"YulIdentifier","src":"9402:6:101"},"nativeSrc":"9402:45:101","nodeType":"YulFunctionCall","src":"9402:45:101"},"nativeSrc":"9402:45:101","nodeType":"YulExpressionStatement","src":"9402:45:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9467:9:101","nodeType":"YulIdentifier","src":"9467:9:101"},{"kind":"number","nativeSrc":"9478:2:101","nodeType":"YulLiteral","src":"9478:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9463:3:101","nodeType":"YulIdentifier","src":"9463:3:101"},"nativeSrc":"9463:18:101","nodeType":"YulFunctionCall","src":"9463:18:101"},{"kind":"number","nativeSrc":"9483:3:101","nodeType":"YulLiteral","src":"9483:3:101","type":"","value":"224"}],"functionName":{"name":"mstore","nativeSrc":"9456:6:101","nodeType":"YulIdentifier","src":"9456:6:101"},"nativeSrc":"9456:31:101","nodeType":"YulFunctionCall","src":"9456:31:101"},"nativeSrc":"9456:31:101","nodeType":"YulExpressionStatement","src":"9456:31:101"},{"nativeSrc":"9496:60:101","nodeType":"YulVariableDeclaration","src":"9496:60:101","value":{"arguments":[{"name":"value1","nativeSrc":"9528:6:101","nodeType":"YulIdentifier","src":"9528:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"9540:9:101","nodeType":"YulIdentifier","src":"9540:9:101"},{"kind":"number","nativeSrc":"9551:3:101","nodeType":"YulLiteral","src":"9551:3:101","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"9536:3:101","nodeType":"YulIdentifier","src":"9536:3:101"},"nativeSrc":"9536:19:101","nodeType":"YulFunctionCall","src":"9536:19:101"}],"functionName":{"name":"abi_encode_string","nativeSrc":"9510:17:101","nodeType":"YulIdentifier","src":"9510:17:101"},"nativeSrc":"9510:46:101","nodeType":"YulFunctionCall","src":"9510:46:101"},"variables":[{"name":"tail_1","nativeSrc":"9500:6:101","nodeType":"YulTypedName","src":"9500:6:101","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9576:9:101","nodeType":"YulIdentifier","src":"9576:9:101"},{"kind":"number","nativeSrc":"9587:2:101","nodeType":"YulLiteral","src":"9587:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9572:3:101","nodeType":"YulIdentifier","src":"9572:3:101"},"nativeSrc":"9572:18:101","nodeType":"YulFunctionCall","src":"9572:18:101"},{"arguments":[{"name":"tail_1","nativeSrc":"9596:6:101","nodeType":"YulIdentifier","src":"9596:6:101"},{"name":"headStart","nativeSrc":"9604:9:101","nodeType":"YulIdentifier","src":"9604:9:101"}],"functionName":{"name":"sub","nativeSrc":"9592:3:101","nodeType":"YulIdentifier","src":"9592:3:101"},"nativeSrc":"9592:22:101","nodeType":"YulFunctionCall","src":"9592:22:101"}],"functionName":{"name":"mstore","nativeSrc":"9565:6:101","nodeType":"YulIdentifier","src":"9565:6:101"},"nativeSrc":"9565:50:101","nodeType":"YulFunctionCall","src":"9565:50:101"},"nativeSrc":"9565:50:101","nodeType":"YulExpressionStatement","src":"9565:50:101"},{"nativeSrc":"9624:47:101","nodeType":"YulVariableDeclaration","src":"9624:47:101","value":{"arguments":[{"name":"value2","nativeSrc":"9656:6:101","nodeType":"YulIdentifier","src":"9656:6:101"},{"name":"tail_1","nativeSrc":"9664:6:101","nodeType":"YulIdentifier","src":"9664:6:101"}],"functionName":{"name":"abi_encode_string","nativeSrc":"9638:17:101","nodeType":"YulIdentifier","src":"9638:17:101"},"nativeSrc":"9638:33:101","nodeType":"YulFunctionCall","src":"9638:33:101"},"variables":[{"name":"tail_2","nativeSrc":"9628:6:101","nodeType":"YulTypedName","src":"9628:6:101","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9691:9:101","nodeType":"YulIdentifier","src":"9691:9:101"},{"kind":"number","nativeSrc":"9702:2:101","nodeType":"YulLiteral","src":"9702:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"9687:3:101","nodeType":"YulIdentifier","src":"9687:3:101"},"nativeSrc":"9687:18:101","nodeType":"YulFunctionCall","src":"9687:18:101"},{"name":"value3","nativeSrc":"9707:6:101","nodeType":"YulIdentifier","src":"9707:6:101"}],"functionName":{"name":"mstore","nativeSrc":"9680:6:101","nodeType":"YulIdentifier","src":"9680:6:101"},"nativeSrc":"9680:34:101","nodeType":"YulFunctionCall","src":"9680:34:101"},"nativeSrc":"9680:34:101","nodeType":"YulExpressionStatement","src":"9680:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9734:9:101","nodeType":"YulIdentifier","src":"9734:9:101"},{"kind":"number","nativeSrc":"9745:3:101","nodeType":"YulLiteral","src":"9745:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"9730:3:101","nodeType":"YulIdentifier","src":"9730:3:101"},"nativeSrc":"9730:19:101","nodeType":"YulFunctionCall","src":"9730:19:101"},{"arguments":[{"name":"value4","nativeSrc":"9755:6:101","nodeType":"YulIdentifier","src":"9755:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9771:3:101","nodeType":"YulLiteral","src":"9771:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"9776:1:101","nodeType":"YulLiteral","src":"9776:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"9767:3:101","nodeType":"YulIdentifier","src":"9767:3:101"},"nativeSrc":"9767:11:101","nodeType":"YulFunctionCall","src":"9767:11:101"},{"kind":"number","nativeSrc":"9780:1:101","nodeType":"YulLiteral","src":"9780:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"9763:3:101","nodeType":"YulIdentifier","src":"9763:3:101"},"nativeSrc":"9763:19:101","nodeType":"YulFunctionCall","src":"9763:19:101"}],"functionName":{"name":"and","nativeSrc":"9751:3:101","nodeType":"YulIdentifier","src":"9751:3:101"},"nativeSrc":"9751:32:101","nodeType":"YulFunctionCall","src":"9751:32:101"}],"functionName":{"name":"mstore","nativeSrc":"9723:6:101","nodeType":"YulIdentifier","src":"9723:6:101"},"nativeSrc":"9723:61:101","nodeType":"YulFunctionCall","src":"9723:61:101"},"nativeSrc":"9723:61:101","nodeType":"YulExpressionStatement","src":"9723:61:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9804:9:101","nodeType":"YulIdentifier","src":"9804:9:101"},{"kind":"number","nativeSrc":"9815:3:101","nodeType":"YulLiteral","src":"9815:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"9800:3:101","nodeType":"YulIdentifier","src":"9800:3:101"},"nativeSrc":"9800:19:101","nodeType":"YulFunctionCall","src":"9800:19:101"},{"name":"value5","nativeSrc":"9821:6:101","nodeType":"YulIdentifier","src":"9821:6:101"}],"functionName":{"name":"mstore","nativeSrc":"9793:6:101","nodeType":"YulIdentifier","src":"9793:6:101"},"nativeSrc":"9793:35:101","nodeType":"YulFunctionCall","src":"9793:35:101"},"nativeSrc":"9793:35:101","nodeType":"YulExpressionStatement","src":"9793:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9848:9:101","nodeType":"YulIdentifier","src":"9848:9:101"},{"kind":"number","nativeSrc":"9859:3:101","nodeType":"YulLiteral","src":"9859:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"9844:3:101","nodeType":"YulIdentifier","src":"9844:3:101"},"nativeSrc":"9844:19:101","nodeType":"YulFunctionCall","src":"9844:19:101"},{"arguments":[{"name":"tail_2","nativeSrc":"9869:6:101","nodeType":"YulIdentifier","src":"9869:6:101"},{"name":"headStart","nativeSrc":"9877:9:101","nodeType":"YulIdentifier","src":"9877:9:101"}],"functionName":{"name":"sub","nativeSrc":"9865:3:101","nodeType":"YulIdentifier","src":"9865:3:101"},"nativeSrc":"9865:22:101","nodeType":"YulFunctionCall","src":"9865:22:101"}],"functionName":{"name":"mstore","nativeSrc":"9837:6:101","nodeType":"YulIdentifier","src":"9837:6:101"},"nativeSrc":"9837:51:101","nodeType":"YulFunctionCall","src":"9837:51:101"},"nativeSrc":"9837:51:101","nodeType":"YulExpressionStatement","src":"9837:51:101"},{"nativeSrc":"9897:17:101","nodeType":"YulVariableDeclaration","src":"9897:17:101","value":{"name":"tail_2","nativeSrc":"9908:6:101","nodeType":"YulIdentifier","src":"9908:6:101"},"variables":[{"name":"pos","nativeSrc":"9901:3:101","nodeType":"YulTypedName","src":"9901:3:101","type":""}]},{"nativeSrc":"9923:27:101","nodeType":"YulVariableDeclaration","src":"9923:27:101","value":{"arguments":[{"name":"value6","nativeSrc":"9943:6:101","nodeType":"YulIdentifier","src":"9943:6:101"}],"functionName":{"name":"mload","nativeSrc":"9937:5:101","nodeType":"YulIdentifier","src":"9937:5:101"},"nativeSrc":"9937:13:101","nodeType":"YulFunctionCall","src":"9937:13:101"},"variables":[{"name":"length","nativeSrc":"9927:6:101","nodeType":"YulTypedName","src":"9927:6:101","type":""}]},{"expression":{"arguments":[{"name":"tail_2","nativeSrc":"9966:6:101","nodeType":"YulIdentifier","src":"9966:6:101"},{"name":"length","nativeSrc":"9974:6:101","nodeType":"YulIdentifier","src":"9974:6:101"}],"functionName":{"name":"mstore","nativeSrc":"9959:6:101","nodeType":"YulIdentifier","src":"9959:6:101"},"nativeSrc":"9959:22:101","nodeType":"YulFunctionCall","src":"9959:22:101"},"nativeSrc":"9959:22:101","nodeType":"YulExpressionStatement","src":"9959:22:101"},{"nativeSrc":"9990:22:101","nodeType":"YulAssignment","src":"9990:22:101","value":{"arguments":[{"name":"tail_2","nativeSrc":"10001:6:101","nodeType":"YulIdentifier","src":"10001:6:101"},{"kind":"number","nativeSrc":"10009:2:101","nodeType":"YulLiteral","src":"10009:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9997:3:101","nodeType":"YulIdentifier","src":"9997:3:101"},"nativeSrc":"9997:15:101","nodeType":"YulFunctionCall","src":"9997:15:101"},"variableNames":[{"name":"pos","nativeSrc":"9990:3:101","nodeType":"YulIdentifier","src":"9990:3:101"}]},{"nativeSrc":"10021:29:101","nodeType":"YulVariableDeclaration","src":"10021:29:101","value":{"arguments":[{"name":"value6","nativeSrc":"10039:6:101","nodeType":"YulIdentifier","src":"10039:6:101"},{"kind":"number","nativeSrc":"10047:2:101","nodeType":"YulLiteral","src":"10047:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10035:3:101","nodeType":"YulIdentifier","src":"10035:3:101"},"nativeSrc":"10035:15:101","nodeType":"YulFunctionCall","src":"10035:15:101"},"variables":[{"name":"srcPtr","nativeSrc":"10025:6:101","nodeType":"YulTypedName","src":"10025:6:101","type":""}]},{"nativeSrc":"10059:10:101","nodeType":"YulVariableDeclaration","src":"10059:10:101","value":{"kind":"number","nativeSrc":"10068:1:101","nodeType":"YulLiteral","src":"10068:1:101","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"10063:1:101","nodeType":"YulTypedName","src":"10063:1:101","type":""}]},{"body":{"nativeSrc":"10127:120:101","nodeType":"YulBlock","src":"10127:120:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"10148:3:101","nodeType":"YulIdentifier","src":"10148:3:101"},{"arguments":[{"name":"srcPtr","nativeSrc":"10159:6:101","nodeType":"YulIdentifier","src":"10159:6:101"}],"functionName":{"name":"mload","nativeSrc":"10153:5:101","nodeType":"YulIdentifier","src":"10153:5:101"},"nativeSrc":"10153:13:101","nodeType":"YulFunctionCall","src":"10153:13:101"}],"functionName":{"name":"mstore","nativeSrc":"10141:6:101","nodeType":"YulIdentifier","src":"10141:6:101"},"nativeSrc":"10141:26:101","nodeType":"YulFunctionCall","src":"10141:26:101"},"nativeSrc":"10141:26:101","nodeType":"YulExpressionStatement","src":"10141:26:101"},{"nativeSrc":"10180:19:101","nodeType":"YulAssignment","src":"10180:19:101","value":{"arguments":[{"name":"pos","nativeSrc":"10191:3:101","nodeType":"YulIdentifier","src":"10191:3:101"},{"kind":"number","nativeSrc":"10196:2:101","nodeType":"YulLiteral","src":"10196:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10187:3:101","nodeType":"YulIdentifier","src":"10187:3:101"},"nativeSrc":"10187:12:101","nodeType":"YulFunctionCall","src":"10187:12:101"},"variableNames":[{"name":"pos","nativeSrc":"10180:3:101","nodeType":"YulIdentifier","src":"10180:3:101"}]},{"nativeSrc":"10212:25:101","nodeType":"YulAssignment","src":"10212:25:101","value":{"arguments":[{"name":"srcPtr","nativeSrc":"10226:6:101","nodeType":"YulIdentifier","src":"10226:6:101"},{"kind":"number","nativeSrc":"10234:2:101","nodeType":"YulLiteral","src":"10234:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10222:3:101","nodeType":"YulIdentifier","src":"10222:3:101"},"nativeSrc":"10222:15:101","nodeType":"YulFunctionCall","src":"10222:15:101"},"variableNames":[{"name":"srcPtr","nativeSrc":"10212:6:101","nodeType":"YulIdentifier","src":"10212:6:101"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"10089:1:101","nodeType":"YulIdentifier","src":"10089:1:101"},{"name":"length","nativeSrc":"10092:6:101","nodeType":"YulIdentifier","src":"10092:6:101"}],"functionName":{"name":"lt","nativeSrc":"10086:2:101","nodeType":"YulIdentifier","src":"10086:2:101"},"nativeSrc":"10086:13:101","nodeType":"YulFunctionCall","src":"10086:13:101"},"nativeSrc":"10078:169:101","nodeType":"YulForLoop","post":{"nativeSrc":"10100:18:101","nodeType":"YulBlock","src":"10100:18:101","statements":[{"nativeSrc":"10102:14:101","nodeType":"YulAssignment","src":"10102:14:101","value":{"arguments":[{"name":"i","nativeSrc":"10111:1:101","nodeType":"YulIdentifier","src":"10111:1:101"},{"kind":"number","nativeSrc":"10114:1:101","nodeType":"YulLiteral","src":"10114:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"10107:3:101","nodeType":"YulIdentifier","src":"10107:3:101"},"nativeSrc":"10107:9:101","nodeType":"YulFunctionCall","src":"10107:9:101"},"variableNames":[{"name":"i","nativeSrc":"10102:1:101","nodeType":"YulIdentifier","src":"10102:1:101"}]}]},"pre":{"nativeSrc":"10082:3:101","nodeType":"YulBlock","src":"10082:3:101","statements":[]},"src":"10078:169:101"},{"nativeSrc":"10256:11:101","nodeType":"YulAssignment","src":"10256:11:101","value":{"name":"pos","nativeSrc":"10264:3:101","nodeType":"YulIdentifier","src":"10264:3:101"},"variableNames":[{"name":"tail","nativeSrc":"10256:4:101","nodeType":"YulIdentifier","src":"10256:4:101"}]}]},"name":"abi_encode_tuple_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"9035:1238:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9313:9:101","nodeType":"YulTypedName","src":"9313:9:101","type":""},{"name":"value6","nativeSrc":"9324:6:101","nodeType":"YulTypedName","src":"9324:6:101","type":""},{"name":"value5","nativeSrc":"9332:6:101","nodeType":"YulTypedName","src":"9332:6:101","type":""},{"name":"value4","nativeSrc":"9340:6:101","nodeType":"YulTypedName","src":"9340:6:101","type":""},{"name":"value3","nativeSrc":"9348:6:101","nodeType":"YulTypedName","src":"9348:6:101","type":""},{"name":"value2","nativeSrc":"9356:6:101","nodeType":"YulTypedName","src":"9356:6:101","type":""},{"name":"value1","nativeSrc":"9364:6:101","nodeType":"YulTypedName","src":"9364:6:101","type":""},{"name":"value0","nativeSrc":"9372:6:101","nodeType":"YulTypedName","src":"9372:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9383:4:101","nodeType":"YulTypedName","src":"9383:4:101","type":""}],"src":"9035:1238:101"},{"body":{"nativeSrc":"10370:177:101","nodeType":"YulBlock","src":"10370:177:101","statements":[{"body":{"nativeSrc":"10416:16:101","nodeType":"YulBlock","src":"10416:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10425:1:101","nodeType":"YulLiteral","src":"10425:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"10428:1:101","nodeType":"YulLiteral","src":"10428:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10418:6:101","nodeType":"YulIdentifier","src":"10418:6:101"},"nativeSrc":"10418:12:101","nodeType":"YulFunctionCall","src":"10418:12:101"},"nativeSrc":"10418:12:101","nodeType":"YulExpressionStatement","src":"10418:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10391:7:101","nodeType":"YulIdentifier","src":"10391:7:101"},{"name":"headStart","nativeSrc":"10400:9:101","nodeType":"YulIdentifier","src":"10400:9:101"}],"functionName":{"name":"sub","nativeSrc":"10387:3:101","nodeType":"YulIdentifier","src":"10387:3:101"},"nativeSrc":"10387:23:101","nodeType":"YulFunctionCall","src":"10387:23:101"},{"kind":"number","nativeSrc":"10412:2:101","nodeType":"YulLiteral","src":"10412:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"10383:3:101","nodeType":"YulIdentifier","src":"10383:3:101"},"nativeSrc":"10383:32:101","nodeType":"YulFunctionCall","src":"10383:32:101"},"nativeSrc":"10380:52:101","nodeType":"YulIf","src":"10380:52:101"},{"nativeSrc":"10441:36:101","nodeType":"YulVariableDeclaration","src":"10441:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10467:9:101","nodeType":"YulIdentifier","src":"10467:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"10454:12:101","nodeType":"YulIdentifier","src":"10454:12:101"},"nativeSrc":"10454:23:101","nodeType":"YulFunctionCall","src":"10454:23:101"},"variables":[{"name":"value","nativeSrc":"10445:5:101","nodeType":"YulTypedName","src":"10445:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10511:5:101","nodeType":"YulIdentifier","src":"10511:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10486:24:101","nodeType":"YulIdentifier","src":"10486:24:101"},"nativeSrc":"10486:31:101","nodeType":"YulFunctionCall","src":"10486:31:101"},"nativeSrc":"10486:31:101","nodeType":"YulExpressionStatement","src":"10486:31:101"},{"nativeSrc":"10526:15:101","nodeType":"YulAssignment","src":"10526:15:101","value":{"name":"value","nativeSrc":"10536:5:101","nodeType":"YulIdentifier","src":"10536:5:101"},"variableNames":[{"name":"value0","nativeSrc":"10526:6:101","nodeType":"YulIdentifier","src":"10526:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_ILPWhitelist_$28916","nativeSrc":"10278:269:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10336:9:101","nodeType":"YulTypedName","src":"10336:9:101","type":""},{"name":"dataEnd","nativeSrc":"10347:7:101","nodeType":"YulTypedName","src":"10347:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10359:6:101","nodeType":"YulTypedName","src":"10359:6:101","type":""}],"src":"10278:269:101"},{"body":{"nativeSrc":"10639:280:101","nodeType":"YulBlock","src":"10639:280:101","statements":[{"body":{"nativeSrc":"10685:16:101","nodeType":"YulBlock","src":"10685:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10694:1:101","nodeType":"YulLiteral","src":"10694:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"10697:1:101","nodeType":"YulLiteral","src":"10697:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10687:6:101","nodeType":"YulIdentifier","src":"10687:6:101"},"nativeSrc":"10687:12:101","nodeType":"YulFunctionCall","src":"10687:12:101"},"nativeSrc":"10687:12:101","nodeType":"YulExpressionStatement","src":"10687:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10660:7:101","nodeType":"YulIdentifier","src":"10660:7:101"},{"name":"headStart","nativeSrc":"10669:9:101","nodeType":"YulIdentifier","src":"10669:9:101"}],"functionName":{"name":"sub","nativeSrc":"10656:3:101","nodeType":"YulIdentifier","src":"10656:3:101"},"nativeSrc":"10656:23:101","nodeType":"YulFunctionCall","src":"10656:23:101"},{"kind":"number","nativeSrc":"10681:2:101","nodeType":"YulLiteral","src":"10681:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"10652:3:101","nodeType":"YulIdentifier","src":"10652:3:101"},"nativeSrc":"10652:32:101","nodeType":"YulFunctionCall","src":"10652:32:101"},"nativeSrc":"10649:52:101","nodeType":"YulIf","src":"10649:52:101"},{"nativeSrc":"10710:14:101","nodeType":"YulVariableDeclaration","src":"10710:14:101","value":{"kind":"number","nativeSrc":"10723:1:101","nodeType":"YulLiteral","src":"10723:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"10714:5:101","nodeType":"YulTypedName","src":"10714:5:101","type":""}]},{"nativeSrc":"10733:32:101","nodeType":"YulAssignment","src":"10733:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10755:9:101","nodeType":"YulIdentifier","src":"10755:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"10742:12:101","nodeType":"YulIdentifier","src":"10742:12:101"},"nativeSrc":"10742:23:101","nodeType":"YulFunctionCall","src":"10742:23:101"},"variableNames":[{"name":"value","nativeSrc":"10733:5:101","nodeType":"YulIdentifier","src":"10733:5:101"}]},{"nativeSrc":"10774:15:101","nodeType":"YulAssignment","src":"10774:15:101","value":{"name":"value","nativeSrc":"10784:5:101","nodeType":"YulIdentifier","src":"10784:5:101"},"variableNames":[{"name":"value0","nativeSrc":"10774:6:101","nodeType":"YulIdentifier","src":"10774:6:101"}]},{"nativeSrc":"10798:47:101","nodeType":"YulVariableDeclaration","src":"10798:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10830:9:101","nodeType":"YulIdentifier","src":"10830:9:101"},{"kind":"number","nativeSrc":"10841:2:101","nodeType":"YulLiteral","src":"10841:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10826:3:101","nodeType":"YulIdentifier","src":"10826:3:101"},"nativeSrc":"10826:18:101","nodeType":"YulFunctionCall","src":"10826:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"10813:12:101","nodeType":"YulIdentifier","src":"10813:12:101"},"nativeSrc":"10813:32:101","nodeType":"YulFunctionCall","src":"10813:32:101"},"variables":[{"name":"value_1","nativeSrc":"10802:7:101","nodeType":"YulTypedName","src":"10802:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"10879:7:101","nodeType":"YulIdentifier","src":"10879:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10854:24:101","nodeType":"YulIdentifier","src":"10854:24:101"},"nativeSrc":"10854:33:101","nodeType":"YulFunctionCall","src":"10854:33:101"},"nativeSrc":"10854:33:101","nodeType":"YulExpressionStatement","src":"10854:33:101"},{"nativeSrc":"10896:17:101","nodeType":"YulAssignment","src":"10896:17:101","value":{"name":"value_1","nativeSrc":"10906:7:101","nodeType":"YulIdentifier","src":"10906:7:101"},"variableNames":[{"name":"value1","nativeSrc":"10896:6:101","nodeType":"YulIdentifier","src":"10896:6:101"}]}]},"name":"abi_decode_tuple_t_uint256t_address","nativeSrc":"10552:367:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10597:9:101","nodeType":"YulTypedName","src":"10597:9:101","type":""},{"name":"dataEnd","nativeSrc":"10608:7:101","nodeType":"YulTypedName","src":"10608:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10620:6:101","nodeType":"YulTypedName","src":"10620:6:101","type":""},{"name":"value1","nativeSrc":"10628:6:101","nodeType":"YulTypedName","src":"10628:6:101","type":""}],"src":"10552:367:101"},{"body":{"nativeSrc":"11047:102:101","nodeType":"YulBlock","src":"11047:102:101","statements":[{"nativeSrc":"11057:26:101","nodeType":"YulAssignment","src":"11057:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"11069:9:101","nodeType":"YulIdentifier","src":"11069:9:101"},{"kind":"number","nativeSrc":"11080:2:101","nodeType":"YulLiteral","src":"11080:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11065:3:101","nodeType":"YulIdentifier","src":"11065:3:101"},"nativeSrc":"11065:18:101","nodeType":"YulFunctionCall","src":"11065:18:101"},"variableNames":[{"name":"tail","nativeSrc":"11057:4:101","nodeType":"YulIdentifier","src":"11057:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11099:9:101","nodeType":"YulIdentifier","src":"11099:9:101"},{"arguments":[{"name":"value0","nativeSrc":"11114:6:101","nodeType":"YulIdentifier","src":"11114:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11130:3:101","nodeType":"YulLiteral","src":"11130:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"11135:1:101","nodeType":"YulLiteral","src":"11135:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11126:3:101","nodeType":"YulIdentifier","src":"11126:3:101"},"nativeSrc":"11126:11:101","nodeType":"YulFunctionCall","src":"11126:11:101"},{"kind":"number","nativeSrc":"11139:1:101","nodeType":"YulLiteral","src":"11139:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11122:3:101","nodeType":"YulIdentifier","src":"11122:3:101"},"nativeSrc":"11122:19:101","nodeType":"YulFunctionCall","src":"11122:19:101"}],"functionName":{"name":"and","nativeSrc":"11110:3:101","nodeType":"YulIdentifier","src":"11110:3:101"},"nativeSrc":"11110:32:101","nodeType":"YulFunctionCall","src":"11110:32:101"}],"functionName":{"name":"mstore","nativeSrc":"11092:6:101","nodeType":"YulIdentifier","src":"11092:6:101"},"nativeSrc":"11092:51:101","nodeType":"YulFunctionCall","src":"11092:51:101"},"nativeSrc":"11092:51:101","nodeType":"YulExpressionStatement","src":"11092:51:101"}]},"name":"abi_encode_tuple_t_contract$_ILPWhitelist_$28916__to_t_address__fromStack_reversed","nativeSrc":"10924:225:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11016:9:101","nodeType":"YulTypedName","src":"11016:9:101","type":""},{"name":"value0","nativeSrc":"11027:6:101","nodeType":"YulTypedName","src":"11027:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11038:4:101","nodeType":"YulTypedName","src":"11038:4:101","type":""}],"src":"10924:225:101"},{"body":{"nativeSrc":"11224:156:101","nodeType":"YulBlock","src":"11224:156:101","statements":[{"body":{"nativeSrc":"11270:16:101","nodeType":"YulBlock","src":"11270:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11279:1:101","nodeType":"YulLiteral","src":"11279:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11282:1:101","nodeType":"YulLiteral","src":"11282:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11272:6:101","nodeType":"YulIdentifier","src":"11272:6:101"},"nativeSrc":"11272:12:101","nodeType":"YulFunctionCall","src":"11272:12:101"},"nativeSrc":"11272:12:101","nodeType":"YulExpressionStatement","src":"11272:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11245:7:101","nodeType":"YulIdentifier","src":"11245:7:101"},{"name":"headStart","nativeSrc":"11254:9:101","nodeType":"YulIdentifier","src":"11254:9:101"}],"functionName":{"name":"sub","nativeSrc":"11241:3:101","nodeType":"YulIdentifier","src":"11241:3:101"},"nativeSrc":"11241:23:101","nodeType":"YulFunctionCall","src":"11241:23:101"},{"kind":"number","nativeSrc":"11266:2:101","nodeType":"YulLiteral","src":"11266:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"11237:3:101","nodeType":"YulIdentifier","src":"11237:3:101"},"nativeSrc":"11237:32:101","nodeType":"YulFunctionCall","src":"11237:32:101"},"nativeSrc":"11234:52:101","nodeType":"YulIf","src":"11234:52:101"},{"nativeSrc":"11295:14:101","nodeType":"YulVariableDeclaration","src":"11295:14:101","value":{"kind":"number","nativeSrc":"11308:1:101","nodeType":"YulLiteral","src":"11308:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"11299:5:101","nodeType":"YulTypedName","src":"11299:5:101","type":""}]},{"nativeSrc":"11318:32:101","nodeType":"YulAssignment","src":"11318:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"11340:9:101","nodeType":"YulIdentifier","src":"11340:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"11327:12:101","nodeType":"YulIdentifier","src":"11327:12:101"},"nativeSrc":"11327:23:101","nodeType":"YulFunctionCall","src":"11327:23:101"},"variableNames":[{"name":"value","nativeSrc":"11318:5:101","nodeType":"YulIdentifier","src":"11318:5:101"}]},{"nativeSrc":"11359:15:101","nodeType":"YulAssignment","src":"11359:15:101","value":{"name":"value","nativeSrc":"11369:5:101","nodeType":"YulIdentifier","src":"11369:5:101"},"variableNames":[{"name":"value0","nativeSrc":"11359:6:101","nodeType":"YulIdentifier","src":"11359:6:101"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"11154:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11190:9:101","nodeType":"YulTypedName","src":"11190:9:101","type":""},{"name":"dataEnd","nativeSrc":"11201:7:101","nodeType":"YulTypedName","src":"11201:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11213:6:101","nodeType":"YulTypedName","src":"11213:6:101","type":""}],"src":"11154:226:101"},{"body":{"nativeSrc":"11505:466:101","nodeType":"YulBlock","src":"11505:466:101","statements":[{"body":{"nativeSrc":"11552:16:101","nodeType":"YulBlock","src":"11552:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11561:1:101","nodeType":"YulLiteral","src":"11561:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11564:1:101","nodeType":"YulLiteral","src":"11564:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11554:6:101","nodeType":"YulIdentifier","src":"11554:6:101"},"nativeSrc":"11554:12:101","nodeType":"YulFunctionCall","src":"11554:12:101"},"nativeSrc":"11554:12:101","nodeType":"YulExpressionStatement","src":"11554:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11526:7:101","nodeType":"YulIdentifier","src":"11526:7:101"},{"name":"headStart","nativeSrc":"11535:9:101","nodeType":"YulIdentifier","src":"11535:9:101"}],"functionName":{"name":"sub","nativeSrc":"11522:3:101","nodeType":"YulIdentifier","src":"11522:3:101"},"nativeSrc":"11522:23:101","nodeType":"YulFunctionCall","src":"11522:23:101"},{"kind":"number","nativeSrc":"11547:3:101","nodeType":"YulLiteral","src":"11547:3:101","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"11518:3:101","nodeType":"YulIdentifier","src":"11518:3:101"},"nativeSrc":"11518:33:101","nodeType":"YulFunctionCall","src":"11518:33:101"},"nativeSrc":"11515:53:101","nodeType":"YulIf","src":"11515:53:101"},{"nativeSrc":"11577:14:101","nodeType":"YulVariableDeclaration","src":"11577:14:101","value":{"kind":"number","nativeSrc":"11590:1:101","nodeType":"YulLiteral","src":"11590:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"11581:5:101","nodeType":"YulTypedName","src":"11581:5:101","type":""}]},{"nativeSrc":"11600:32:101","nodeType":"YulAssignment","src":"11600:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"11622:9:101","nodeType":"YulIdentifier","src":"11622:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"11609:12:101","nodeType":"YulIdentifier","src":"11609:12:101"},"nativeSrc":"11609:23:101","nodeType":"YulFunctionCall","src":"11609:23:101"},"variableNames":[{"name":"value","nativeSrc":"11600:5:101","nodeType":"YulIdentifier","src":"11600:5:101"}]},{"nativeSrc":"11641:15:101","nodeType":"YulAssignment","src":"11641:15:101","value":{"name":"value","nativeSrc":"11651:5:101","nodeType":"YulIdentifier","src":"11651:5:101"},"variableNames":[{"name":"value0","nativeSrc":"11641:6:101","nodeType":"YulIdentifier","src":"11641:6:101"}]},{"nativeSrc":"11665:16:101","nodeType":"YulVariableDeclaration","src":"11665:16:101","value":{"kind":"number","nativeSrc":"11680:1:101","nodeType":"YulLiteral","src":"11680:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"11669:7:101","nodeType":"YulTypedName","src":"11669:7:101","type":""}]},{"nativeSrc":"11690:43:101","nodeType":"YulAssignment","src":"11690:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11718:9:101","nodeType":"YulIdentifier","src":"11718:9:101"},{"kind":"number","nativeSrc":"11729:2:101","nodeType":"YulLiteral","src":"11729:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11714:3:101","nodeType":"YulIdentifier","src":"11714:3:101"},"nativeSrc":"11714:18:101","nodeType":"YulFunctionCall","src":"11714:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"11701:12:101","nodeType":"YulIdentifier","src":"11701:12:101"},"nativeSrc":"11701:32:101","nodeType":"YulFunctionCall","src":"11701:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"11690:7:101","nodeType":"YulIdentifier","src":"11690:7:101"}]},{"nativeSrc":"11742:17:101","nodeType":"YulAssignment","src":"11742:17:101","value":{"name":"value_1","nativeSrc":"11752:7:101","nodeType":"YulIdentifier","src":"11752:7:101"},"variableNames":[{"name":"value1","nativeSrc":"11742:6:101","nodeType":"YulIdentifier","src":"11742:6:101"}]},{"nativeSrc":"11768:16:101","nodeType":"YulVariableDeclaration","src":"11768:16:101","value":{"kind":"number","nativeSrc":"11783:1:101","nodeType":"YulLiteral","src":"11783:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"11772:7:101","nodeType":"YulTypedName","src":"11772:7:101","type":""}]},{"nativeSrc":"11793:43:101","nodeType":"YulAssignment","src":"11793:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11821:9:101","nodeType":"YulIdentifier","src":"11821:9:101"},{"kind":"number","nativeSrc":"11832:2:101","nodeType":"YulLiteral","src":"11832:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11817:3:101","nodeType":"YulIdentifier","src":"11817:3:101"},"nativeSrc":"11817:18:101","nodeType":"YulFunctionCall","src":"11817:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"11804:12:101","nodeType":"YulIdentifier","src":"11804:12:101"},"nativeSrc":"11804:32:101","nodeType":"YulFunctionCall","src":"11804:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"11793:7:101","nodeType":"YulIdentifier","src":"11793:7:101"}]},{"nativeSrc":"11845:17:101","nodeType":"YulAssignment","src":"11845:17:101","value":{"name":"value_2","nativeSrc":"11855:7:101","nodeType":"YulIdentifier","src":"11855:7:101"},"variableNames":[{"name":"value2","nativeSrc":"11845:6:101","nodeType":"YulIdentifier","src":"11845:6:101"}]},{"nativeSrc":"11871:16:101","nodeType":"YulVariableDeclaration","src":"11871:16:101","value":{"kind":"number","nativeSrc":"11886:1:101","nodeType":"YulLiteral","src":"11886:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"11875:7:101","nodeType":"YulTypedName","src":"11875:7:101","type":""}]},{"nativeSrc":"11896:43:101","nodeType":"YulAssignment","src":"11896:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11924:9:101","nodeType":"YulIdentifier","src":"11924:9:101"},{"kind":"number","nativeSrc":"11935:2:101","nodeType":"YulLiteral","src":"11935:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"11920:3:101","nodeType":"YulIdentifier","src":"11920:3:101"},"nativeSrc":"11920:18:101","nodeType":"YulFunctionCall","src":"11920:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"11907:12:101","nodeType":"YulIdentifier","src":"11907:12:101"},"nativeSrc":"11907:32:101","nodeType":"YulFunctionCall","src":"11907:32:101"},"variableNames":[{"name":"value_3","nativeSrc":"11896:7:101","nodeType":"YulIdentifier","src":"11896:7:101"}]},{"nativeSrc":"11948:17:101","nodeType":"YulAssignment","src":"11948:17:101","value":{"name":"value_3","nativeSrc":"11958:7:101","nodeType":"YulIdentifier","src":"11958:7:101"},"variableNames":[{"name":"value3","nativeSrc":"11948:6:101","nodeType":"YulIdentifier","src":"11948:6:101"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256t_uint256t_int256","nativeSrc":"11385:586:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11447:9:101","nodeType":"YulTypedName","src":"11447:9:101","type":""},{"name":"dataEnd","nativeSrc":"11458:7:101","nodeType":"YulTypedName","src":"11458:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11470:6:101","nodeType":"YulTypedName","src":"11470:6:101","type":""},{"name":"value1","nativeSrc":"11478:6:101","nodeType":"YulTypedName","src":"11478:6:101","type":""},{"name":"value2","nativeSrc":"11486:6:101","nodeType":"YulTypedName","src":"11486:6:101","type":""},{"name":"value3","nativeSrc":"11494:6:101","nodeType":"YulTypedName","src":"11494:6:101","type":""}],"src":"11385:586:101"},{"body":{"nativeSrc":"12094:102:101","nodeType":"YulBlock","src":"12094:102:101","statements":[{"nativeSrc":"12104:26:101","nodeType":"YulAssignment","src":"12104:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12116:9:101","nodeType":"YulIdentifier","src":"12116:9:101"},{"kind":"number","nativeSrc":"12127:2:101","nodeType":"YulLiteral","src":"12127:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12112:3:101","nodeType":"YulIdentifier","src":"12112:3:101"},"nativeSrc":"12112:18:101","nodeType":"YulFunctionCall","src":"12112:18:101"},"variableNames":[{"name":"tail","nativeSrc":"12104:4:101","nodeType":"YulIdentifier","src":"12104:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12146:9:101","nodeType":"YulIdentifier","src":"12146:9:101"},{"arguments":[{"name":"value0","nativeSrc":"12161:6:101","nodeType":"YulIdentifier","src":"12161:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12177:3:101","nodeType":"YulLiteral","src":"12177:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"12182:1:101","nodeType":"YulLiteral","src":"12182:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12173:3:101","nodeType":"YulIdentifier","src":"12173:3:101"},"nativeSrc":"12173:11:101","nodeType":"YulFunctionCall","src":"12173:11:101"},{"kind":"number","nativeSrc":"12186:1:101","nodeType":"YulLiteral","src":"12186:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12169:3:101","nodeType":"YulIdentifier","src":"12169:3:101"},"nativeSrc":"12169:19:101","nodeType":"YulFunctionCall","src":"12169:19:101"}],"functionName":{"name":"and","nativeSrc":"12157:3:101","nodeType":"YulIdentifier","src":"12157:3:101"},"nativeSrc":"12157:32:101","nodeType":"YulFunctionCall","src":"12157:32:101"}],"functionName":{"name":"mstore","nativeSrc":"12139:6:101","nodeType":"YulIdentifier","src":"12139:6:101"},"nativeSrc":"12139:51:101","nodeType":"YulFunctionCall","src":"12139:51:101"},"nativeSrc":"12139:51:101","nodeType":"YulExpressionStatement","src":"12139:51:101"}]},"name":"abi_encode_tuple_t_contract$_IERC4626_$6400__to_t_address__fromStack_reversed","nativeSrc":"11976:220:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12063:9:101","nodeType":"YulTypedName","src":"12063:9:101","type":""},{"name":"value0","nativeSrc":"12074:6:101","nodeType":"YulTypedName","src":"12074:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12085:4:101","nodeType":"YulTypedName","src":"12085:4:101","type":""}],"src":"11976:220:101"},{"body":{"nativeSrc":"12303:289:101","nodeType":"YulBlock","src":"12303:289:101","statements":[{"body":{"nativeSrc":"12349:16:101","nodeType":"YulBlock","src":"12349:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12358:1:101","nodeType":"YulLiteral","src":"12358:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"12361:1:101","nodeType":"YulLiteral","src":"12361:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12351:6:101","nodeType":"YulIdentifier","src":"12351:6:101"},"nativeSrc":"12351:12:101","nodeType":"YulFunctionCall","src":"12351:12:101"},"nativeSrc":"12351:12:101","nodeType":"YulExpressionStatement","src":"12351:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12324:7:101","nodeType":"YulIdentifier","src":"12324:7:101"},{"name":"headStart","nativeSrc":"12333:9:101","nodeType":"YulIdentifier","src":"12333:9:101"}],"functionName":{"name":"sub","nativeSrc":"12320:3:101","nodeType":"YulIdentifier","src":"12320:3:101"},"nativeSrc":"12320:23:101","nodeType":"YulFunctionCall","src":"12320:23:101"},{"kind":"number","nativeSrc":"12345:2:101","nodeType":"YulLiteral","src":"12345:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"12316:3:101","nodeType":"YulIdentifier","src":"12316:3:101"},"nativeSrc":"12316:32:101","nodeType":"YulFunctionCall","src":"12316:32:101"},"nativeSrc":"12313:52:101","nodeType":"YulIf","src":"12313:52:101"},{"nativeSrc":"12374:36:101","nodeType":"YulVariableDeclaration","src":"12374:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12400:9:101","nodeType":"YulIdentifier","src":"12400:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"12387:12:101","nodeType":"YulIdentifier","src":"12387:12:101"},"nativeSrc":"12387:23:101","nodeType":"YulFunctionCall","src":"12387:23:101"},"variables":[{"name":"value","nativeSrc":"12378:5:101","nodeType":"YulTypedName","src":"12378:5:101","type":""}]},{"body":{"nativeSrc":"12443:16:101","nodeType":"YulBlock","src":"12443:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12452:1:101","nodeType":"YulLiteral","src":"12452:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"12455:1:101","nodeType":"YulLiteral","src":"12455:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12445:6:101","nodeType":"YulIdentifier","src":"12445:6:101"},"nativeSrc":"12445:12:101","nodeType":"YulFunctionCall","src":"12445:12:101"},"nativeSrc":"12445:12:101","nodeType":"YulExpressionStatement","src":"12445:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"12432:5:101","nodeType":"YulIdentifier","src":"12432:5:101"},{"kind":"number","nativeSrc":"12439:1:101","nodeType":"YulLiteral","src":"12439:1:101","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"12429:2:101","nodeType":"YulIdentifier","src":"12429:2:101"},"nativeSrc":"12429:12:101","nodeType":"YulFunctionCall","src":"12429:12:101"}],"functionName":{"name":"iszero","nativeSrc":"12422:6:101","nodeType":"YulIdentifier","src":"12422:6:101"},"nativeSrc":"12422:20:101","nodeType":"YulFunctionCall","src":"12422:20:101"},"nativeSrc":"12419:40:101","nodeType":"YulIf","src":"12419:40:101"},{"nativeSrc":"12468:15:101","nodeType":"YulAssignment","src":"12468:15:101","value":{"name":"value","nativeSrc":"12478:5:101","nodeType":"YulIdentifier","src":"12478:5:101"},"variableNames":[{"name":"value0","nativeSrc":"12468:6:101","nodeType":"YulIdentifier","src":"12468:6:101"}]},{"nativeSrc":"12492:16:101","nodeType":"YulVariableDeclaration","src":"12492:16:101","value":{"kind":"number","nativeSrc":"12507:1:101","nodeType":"YulLiteral","src":"12507:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"12496:7:101","nodeType":"YulTypedName","src":"12496:7:101","type":""}]},{"nativeSrc":"12517:43:101","nodeType":"YulAssignment","src":"12517:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12545:9:101","nodeType":"YulIdentifier","src":"12545:9:101"},{"kind":"number","nativeSrc":"12556:2:101","nodeType":"YulLiteral","src":"12556:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12541:3:101","nodeType":"YulIdentifier","src":"12541:3:101"},"nativeSrc":"12541:18:101","nodeType":"YulFunctionCall","src":"12541:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"12528:12:101","nodeType":"YulIdentifier","src":"12528:12:101"},"nativeSrc":"12528:32:101","nodeType":"YulFunctionCall","src":"12528:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"12517:7:101","nodeType":"YulIdentifier","src":"12517:7:101"}]},{"nativeSrc":"12569:17:101","nodeType":"YulAssignment","src":"12569:17:101","value":{"name":"value_1","nativeSrc":"12579:7:101","nodeType":"YulIdentifier","src":"12579:7:101"},"variableNames":[{"name":"value1","nativeSrc":"12569:6:101","nodeType":"YulIdentifier","src":"12569:6:101"}]}]},"name":"abi_decode_tuple_t_enum$_Parameter_$28704t_uint256","nativeSrc":"12201:391:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12261:9:101","nodeType":"YulTypedName","src":"12261:9:101","type":""},{"name":"dataEnd","nativeSrc":"12272:7:101","nodeType":"YulTypedName","src":"12272:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12284:6:101","nodeType":"YulTypedName","src":"12284:6:101","type":""},{"name":"value1","nativeSrc":"12292:6:101","nodeType":"YulTypedName","src":"12292:6:101","type":""}],"src":"12201:391:101"},{"body":{"nativeSrc":"12698:102:101","nodeType":"YulBlock","src":"12698:102:101","statements":[{"nativeSrc":"12708:26:101","nodeType":"YulAssignment","src":"12708:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12720:9:101","nodeType":"YulIdentifier","src":"12720:9:101"},{"kind":"number","nativeSrc":"12731:2:101","nodeType":"YulLiteral","src":"12731:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12716:3:101","nodeType":"YulIdentifier","src":"12716:3:101"},"nativeSrc":"12716:18:101","nodeType":"YulFunctionCall","src":"12716:18:101"},"variableNames":[{"name":"tail","nativeSrc":"12708:4:101","nodeType":"YulIdentifier","src":"12708:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12750:9:101","nodeType":"YulIdentifier","src":"12750:9:101"},{"arguments":[{"name":"value0","nativeSrc":"12765:6:101","nodeType":"YulIdentifier","src":"12765:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12781:3:101","nodeType":"YulLiteral","src":"12781:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"12786:1:101","nodeType":"YulLiteral","src":"12786:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12777:3:101","nodeType":"YulIdentifier","src":"12777:3:101"},"nativeSrc":"12777:11:101","nodeType":"YulFunctionCall","src":"12777:11:101"},{"kind":"number","nativeSrc":"12790:1:101","nodeType":"YulLiteral","src":"12790:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12773:3:101","nodeType":"YulIdentifier","src":"12773:3:101"},"nativeSrc":"12773:19:101","nodeType":"YulFunctionCall","src":"12773:19:101"}],"functionName":{"name":"and","nativeSrc":"12761:3:101","nodeType":"YulIdentifier","src":"12761:3:101"},"nativeSrc":"12761:32:101","nodeType":"YulFunctionCall","src":"12761:32:101"}],"functionName":{"name":"mstore","nativeSrc":"12743:6:101","nodeType":"YulIdentifier","src":"12743:6:101"},"nativeSrc":"12743:51:101","nodeType":"YulFunctionCall","src":"12743:51:101"},"nativeSrc":"12743:51:101","nodeType":"YulExpressionStatement","src":"12743:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"12597:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12667:9:101","nodeType":"YulTypedName","src":"12667:9:101","type":""},{"name":"value0","nativeSrc":"12678:6:101","nodeType":"YulTypedName","src":"12678:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12689:4:101","nodeType":"YulTypedName","src":"12689:4:101","type":""}],"src":"12597:203:101"},{"body":{"nativeSrc":"12892:177:101","nodeType":"YulBlock","src":"12892:177:101","statements":[{"body":{"nativeSrc":"12938:16:101","nodeType":"YulBlock","src":"12938:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12947:1:101","nodeType":"YulLiteral","src":"12947:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"12950:1:101","nodeType":"YulLiteral","src":"12950:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12940:6:101","nodeType":"YulIdentifier","src":"12940:6:101"},"nativeSrc":"12940:12:101","nodeType":"YulFunctionCall","src":"12940:12:101"},"nativeSrc":"12940:12:101","nodeType":"YulExpressionStatement","src":"12940:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12913:7:101","nodeType":"YulIdentifier","src":"12913:7:101"},{"name":"headStart","nativeSrc":"12922:9:101","nodeType":"YulIdentifier","src":"12922:9:101"}],"functionName":{"name":"sub","nativeSrc":"12909:3:101","nodeType":"YulIdentifier","src":"12909:3:101"},"nativeSrc":"12909:23:101","nodeType":"YulFunctionCall","src":"12909:23:101"},{"kind":"number","nativeSrc":"12934:2:101","nodeType":"YulLiteral","src":"12934:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"12905:3:101","nodeType":"YulIdentifier","src":"12905:3:101"},"nativeSrc":"12905:32:101","nodeType":"YulFunctionCall","src":"12905:32:101"},"nativeSrc":"12902:52:101","nodeType":"YulIf","src":"12902:52:101"},{"nativeSrc":"12963:36:101","nodeType":"YulVariableDeclaration","src":"12963:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12989:9:101","nodeType":"YulIdentifier","src":"12989:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"12976:12:101","nodeType":"YulIdentifier","src":"12976:12:101"},"nativeSrc":"12976:23:101","nodeType":"YulFunctionCall","src":"12976:23:101"},"variables":[{"name":"value","nativeSrc":"12967:5:101","nodeType":"YulTypedName","src":"12967:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13033:5:101","nodeType":"YulIdentifier","src":"13033:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"13008:24:101","nodeType":"YulIdentifier","src":"13008:24:101"},"nativeSrc":"13008:31:101","nodeType":"YulFunctionCall","src":"13008:31:101"},"nativeSrc":"13008:31:101","nodeType":"YulExpressionStatement","src":"13008:31:101"},{"nativeSrc":"13048:15:101","nodeType":"YulAssignment","src":"13048:15:101","value":{"name":"value","nativeSrc":"13058:5:101","nodeType":"YulIdentifier","src":"13058:5:101"},"variableNames":[{"name":"value0","nativeSrc":"13048:6:101","nodeType":"YulIdentifier","src":"13048:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_ICooler_$28695","nativeSrc":"12805:264:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12858:9:101","nodeType":"YulTypedName","src":"12858:9:101","type":""},{"name":"dataEnd","nativeSrc":"12869:7:101","nodeType":"YulTypedName","src":"12869:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12881:6:101","nodeType":"YulTypedName","src":"12881:6:101","type":""}],"src":"12805:264:101"},{"body":{"nativeSrc":"13117:71:101","nodeType":"YulBlock","src":"13117:71:101","statements":[{"body":{"nativeSrc":"13166:16:101","nodeType":"YulBlock","src":"13166:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13175:1:101","nodeType":"YulLiteral","src":"13175:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"13178:1:101","nodeType":"YulLiteral","src":"13178:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13168:6:101","nodeType":"YulIdentifier","src":"13168:6:101"},"nativeSrc":"13168:12:101","nodeType":"YulFunctionCall","src":"13168:12:101"},"nativeSrc":"13168:12:101","nodeType":"YulExpressionStatement","src":"13168:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"13140:5:101","nodeType":"YulIdentifier","src":"13140:5:101"},{"arguments":[{"name":"value","nativeSrc":"13151:5:101","nodeType":"YulIdentifier","src":"13151:5:101"},{"kind":"number","nativeSrc":"13158:4:101","nodeType":"YulLiteral","src":"13158:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"13147:3:101","nodeType":"YulIdentifier","src":"13147:3:101"},"nativeSrc":"13147:16:101","nodeType":"YulFunctionCall","src":"13147:16:101"}],"functionName":{"name":"eq","nativeSrc":"13137:2:101","nodeType":"YulIdentifier","src":"13137:2:101"},"nativeSrc":"13137:27:101","nodeType":"YulFunctionCall","src":"13137:27:101"}],"functionName":{"name":"iszero","nativeSrc":"13130:6:101","nodeType":"YulIdentifier","src":"13130:6:101"},"nativeSrc":"13130:35:101","nodeType":"YulFunctionCall","src":"13130:35:101"},"nativeSrc":"13127:55:101","nodeType":"YulIf","src":"13127:55:101"}]},"name":"validator_revert_uint8","nativeSrc":"13074:114:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"13106:5:101","nodeType":"YulTypedName","src":"13106:5:101","type":""}],"src":"13074:114:101"},{"body":{"nativeSrc":"13363:839:101","nodeType":"YulBlock","src":"13363:839:101","statements":[{"body":{"nativeSrc":"13410:16:101","nodeType":"YulBlock","src":"13410:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13419:1:101","nodeType":"YulLiteral","src":"13419:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"13422:1:101","nodeType":"YulLiteral","src":"13422:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13412:6:101","nodeType":"YulIdentifier","src":"13412:6:101"},"nativeSrc":"13412:12:101","nodeType":"YulFunctionCall","src":"13412:12:101"},"nativeSrc":"13412:12:101","nodeType":"YulExpressionStatement","src":"13412:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13384:7:101","nodeType":"YulIdentifier","src":"13384:7:101"},{"name":"headStart","nativeSrc":"13393:9:101","nodeType":"YulIdentifier","src":"13393:9:101"}],"functionName":{"name":"sub","nativeSrc":"13380:3:101","nodeType":"YulIdentifier","src":"13380:3:101"},"nativeSrc":"13380:23:101","nodeType":"YulFunctionCall","src":"13380:23:101"},{"kind":"number","nativeSrc":"13405:3:101","nodeType":"YulLiteral","src":"13405:3:101","type":"","value":"224"}],"functionName":{"name":"slt","nativeSrc":"13376:3:101","nodeType":"YulIdentifier","src":"13376:3:101"},"nativeSrc":"13376:33:101","nodeType":"YulFunctionCall","src":"13376:33:101"},"nativeSrc":"13373:53:101","nodeType":"YulIf","src":"13373:53:101"},{"nativeSrc":"13435:36:101","nodeType":"YulVariableDeclaration","src":"13435:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"13461:9:101","nodeType":"YulIdentifier","src":"13461:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"13448:12:101","nodeType":"YulIdentifier","src":"13448:12:101"},"nativeSrc":"13448:23:101","nodeType":"YulFunctionCall","src":"13448:23:101"},"variables":[{"name":"value","nativeSrc":"13439:5:101","nodeType":"YulTypedName","src":"13439:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13505:5:101","nodeType":"YulIdentifier","src":"13505:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"13480:24:101","nodeType":"YulIdentifier","src":"13480:24:101"},"nativeSrc":"13480:31:101","nodeType":"YulFunctionCall","src":"13480:31:101"},"nativeSrc":"13480:31:101","nodeType":"YulExpressionStatement","src":"13480:31:101"},{"nativeSrc":"13520:15:101","nodeType":"YulAssignment","src":"13520:15:101","value":{"name":"value","nativeSrc":"13530:5:101","nodeType":"YulIdentifier","src":"13530:5:101"},"variableNames":[{"name":"value0","nativeSrc":"13520:6:101","nodeType":"YulIdentifier","src":"13520:6:101"}]},{"nativeSrc":"13544:47:101","nodeType":"YulVariableDeclaration","src":"13544:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13576:9:101","nodeType":"YulIdentifier","src":"13576:9:101"},{"kind":"number","nativeSrc":"13587:2:101","nodeType":"YulLiteral","src":"13587:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13572:3:101","nodeType":"YulIdentifier","src":"13572:3:101"},"nativeSrc":"13572:18:101","nodeType":"YulFunctionCall","src":"13572:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"13559:12:101","nodeType":"YulIdentifier","src":"13559:12:101"},"nativeSrc":"13559:32:101","nodeType":"YulFunctionCall","src":"13559:32:101"},"variables":[{"name":"value_1","nativeSrc":"13548:7:101","nodeType":"YulTypedName","src":"13548:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"13625:7:101","nodeType":"YulIdentifier","src":"13625:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"13600:24:101","nodeType":"YulIdentifier","src":"13600:24:101"},"nativeSrc":"13600:33:101","nodeType":"YulFunctionCall","src":"13600:33:101"},"nativeSrc":"13600:33:101","nodeType":"YulExpressionStatement","src":"13600:33:101"},{"nativeSrc":"13642:17:101","nodeType":"YulAssignment","src":"13642:17:101","value":{"name":"value_1","nativeSrc":"13652:7:101","nodeType":"YulIdentifier","src":"13652:7:101"},"variableNames":[{"name":"value1","nativeSrc":"13642:6:101","nodeType":"YulIdentifier","src":"13642:6:101"}]},{"nativeSrc":"13668:16:101","nodeType":"YulVariableDeclaration","src":"13668:16:101","value":{"kind":"number","nativeSrc":"13683:1:101","nodeType":"YulLiteral","src":"13683:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"13672:7:101","nodeType":"YulTypedName","src":"13672:7:101","type":""}]},{"nativeSrc":"13693:43:101","nodeType":"YulAssignment","src":"13693:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13721:9:101","nodeType":"YulIdentifier","src":"13721:9:101"},{"kind":"number","nativeSrc":"13732:2:101","nodeType":"YulLiteral","src":"13732:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13717:3:101","nodeType":"YulIdentifier","src":"13717:3:101"},"nativeSrc":"13717:18:101","nodeType":"YulFunctionCall","src":"13717:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"13704:12:101","nodeType":"YulIdentifier","src":"13704:12:101"},"nativeSrc":"13704:32:101","nodeType":"YulFunctionCall","src":"13704:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"13693:7:101","nodeType":"YulIdentifier","src":"13693:7:101"}]},{"nativeSrc":"13745:17:101","nodeType":"YulAssignment","src":"13745:17:101","value":{"name":"value_2","nativeSrc":"13755:7:101","nodeType":"YulIdentifier","src":"13755:7:101"},"variableNames":[{"name":"value2","nativeSrc":"13745:6:101","nodeType":"YulIdentifier","src":"13745:6:101"}]},{"nativeSrc":"13771:16:101","nodeType":"YulVariableDeclaration","src":"13771:16:101","value":{"kind":"number","nativeSrc":"13786:1:101","nodeType":"YulLiteral","src":"13786:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"13775:7:101","nodeType":"YulTypedName","src":"13775:7:101","type":""}]},{"nativeSrc":"13796:43:101","nodeType":"YulAssignment","src":"13796:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13824:9:101","nodeType":"YulIdentifier","src":"13824:9:101"},{"kind":"number","nativeSrc":"13835:2:101","nodeType":"YulLiteral","src":"13835:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13820:3:101","nodeType":"YulIdentifier","src":"13820:3:101"},"nativeSrc":"13820:18:101","nodeType":"YulFunctionCall","src":"13820:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"13807:12:101","nodeType":"YulIdentifier","src":"13807:12:101"},"nativeSrc":"13807:32:101","nodeType":"YulFunctionCall","src":"13807:32:101"},"variableNames":[{"name":"value_3","nativeSrc":"13796:7:101","nodeType":"YulIdentifier","src":"13796:7:101"}]},{"nativeSrc":"13848:17:101","nodeType":"YulAssignment","src":"13848:17:101","value":{"name":"value_3","nativeSrc":"13858:7:101","nodeType":"YulIdentifier","src":"13858:7:101"},"variableNames":[{"name":"value3","nativeSrc":"13848:6:101","nodeType":"YulIdentifier","src":"13848:6:101"}]},{"nativeSrc":"13874:48:101","nodeType":"YulVariableDeclaration","src":"13874:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13906:9:101","nodeType":"YulIdentifier","src":"13906:9:101"},{"kind":"number","nativeSrc":"13917:3:101","nodeType":"YulLiteral","src":"13917:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"13902:3:101","nodeType":"YulIdentifier","src":"13902:3:101"},"nativeSrc":"13902:19:101","nodeType":"YulFunctionCall","src":"13902:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"13889:12:101","nodeType":"YulIdentifier","src":"13889:12:101"},"nativeSrc":"13889:33:101","nodeType":"YulFunctionCall","src":"13889:33:101"},"variables":[{"name":"value_4","nativeSrc":"13878:7:101","nodeType":"YulTypedName","src":"13878:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_4","nativeSrc":"13954:7:101","nodeType":"YulIdentifier","src":"13954:7:101"}],"functionName":{"name":"validator_revert_uint8","nativeSrc":"13931:22:101","nodeType":"YulIdentifier","src":"13931:22:101"},"nativeSrc":"13931:31:101","nodeType":"YulFunctionCall","src":"13931:31:101"},"nativeSrc":"13931:31:101","nodeType":"YulExpressionStatement","src":"13931:31:101"},{"nativeSrc":"13971:17:101","nodeType":"YulAssignment","src":"13971:17:101","value":{"name":"value_4","nativeSrc":"13981:7:101","nodeType":"YulIdentifier","src":"13981:7:101"},"variableNames":[{"name":"value4","nativeSrc":"13971:6:101","nodeType":"YulIdentifier","src":"13971:6:101"}]},{"nativeSrc":"13997:16:101","nodeType":"YulVariableDeclaration","src":"13997:16:101","value":{"kind":"number","nativeSrc":"14012:1:101","nodeType":"YulLiteral","src":"14012:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"14001:7:101","nodeType":"YulTypedName","src":"14001:7:101","type":""}]},{"nativeSrc":"14022:44:101","nodeType":"YulAssignment","src":"14022:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14050:9:101","nodeType":"YulIdentifier","src":"14050:9:101"},{"kind":"number","nativeSrc":"14061:3:101","nodeType":"YulLiteral","src":"14061:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"14046:3:101","nodeType":"YulIdentifier","src":"14046:3:101"},"nativeSrc":"14046:19:101","nodeType":"YulFunctionCall","src":"14046:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"14033:12:101","nodeType":"YulIdentifier","src":"14033:12:101"},"nativeSrc":"14033:33:101","nodeType":"YulFunctionCall","src":"14033:33:101"},"variableNames":[{"name":"value_5","nativeSrc":"14022:7:101","nodeType":"YulIdentifier","src":"14022:7:101"}]},{"nativeSrc":"14075:17:101","nodeType":"YulAssignment","src":"14075:17:101","value":{"name":"value_5","nativeSrc":"14085:7:101","nodeType":"YulIdentifier","src":"14085:7:101"},"variableNames":[{"name":"value5","nativeSrc":"14075:6:101","nodeType":"YulIdentifier","src":"14075:6:101"}]},{"nativeSrc":"14101:16:101","nodeType":"YulVariableDeclaration","src":"14101:16:101","value":{"kind":"number","nativeSrc":"14116:1:101","nodeType":"YulLiteral","src":"14116:1:101","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"14105:7:101","nodeType":"YulTypedName","src":"14105:7:101","type":""}]},{"nativeSrc":"14126:44:101","nodeType":"YulAssignment","src":"14126:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14154:9:101","nodeType":"YulIdentifier","src":"14154:9:101"},{"kind":"number","nativeSrc":"14165:3:101","nodeType":"YulLiteral","src":"14165:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"14150:3:101","nodeType":"YulIdentifier","src":"14150:3:101"},"nativeSrc":"14150:19:101","nodeType":"YulFunctionCall","src":"14150:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"14137:12:101","nodeType":"YulIdentifier","src":"14137:12:101"},"nativeSrc":"14137:33:101","nodeType":"YulFunctionCall","src":"14137:33:101"},"variableNames":[{"name":"value_6","nativeSrc":"14126:7:101","nodeType":"YulIdentifier","src":"14126:7:101"}]},{"nativeSrc":"14179:17:101","nodeType":"YulAssignment","src":"14179:17:101","value":{"name":"value_6","nativeSrc":"14189:7:101","nodeType":"YulIdentifier","src":"14189:7:101"},"variableNames":[{"name":"value6","nativeSrc":"14179:6:101","nodeType":"YulIdentifier","src":"14179:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32","nativeSrc":"13193:1009:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13281:9:101","nodeType":"YulTypedName","src":"13281:9:101","type":""},{"name":"dataEnd","nativeSrc":"13292:7:101","nodeType":"YulTypedName","src":"13292:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13304:6:101","nodeType":"YulTypedName","src":"13304:6:101","type":""},{"name":"value1","nativeSrc":"13312:6:101","nodeType":"YulTypedName","src":"13312:6:101","type":""},{"name":"value2","nativeSrc":"13320:6:101","nodeType":"YulTypedName","src":"13320:6:101","type":""},{"name":"value3","nativeSrc":"13328:6:101","nodeType":"YulTypedName","src":"13328:6:101","type":""},{"name":"value4","nativeSrc":"13336:6:101","nodeType":"YulTypedName","src":"13336:6:101","type":""},{"name":"value5","nativeSrc":"13344:6:101","nodeType":"YulTypedName","src":"13344:6:101","type":""},{"name":"value6","nativeSrc":"13352:6:101","nodeType":"YulTypedName","src":"13352:6:101","type":""}],"src":"13193:1009:101"},{"body":{"nativeSrc":"14294:301:101","nodeType":"YulBlock","src":"14294:301:101","statements":[{"body":{"nativeSrc":"14340:16:101","nodeType":"YulBlock","src":"14340:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14349:1:101","nodeType":"YulLiteral","src":"14349:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"14352:1:101","nodeType":"YulLiteral","src":"14352:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14342:6:101","nodeType":"YulIdentifier","src":"14342:6:101"},"nativeSrc":"14342:12:101","nodeType":"YulFunctionCall","src":"14342:12:101"},"nativeSrc":"14342:12:101","nodeType":"YulExpressionStatement","src":"14342:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"14315:7:101","nodeType":"YulIdentifier","src":"14315:7:101"},{"name":"headStart","nativeSrc":"14324:9:101","nodeType":"YulIdentifier","src":"14324:9:101"}],"functionName":{"name":"sub","nativeSrc":"14311:3:101","nodeType":"YulIdentifier","src":"14311:3:101"},"nativeSrc":"14311:23:101","nodeType":"YulFunctionCall","src":"14311:23:101"},{"kind":"number","nativeSrc":"14336:2:101","nodeType":"YulLiteral","src":"14336:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"14307:3:101","nodeType":"YulIdentifier","src":"14307:3:101"},"nativeSrc":"14307:32:101","nodeType":"YulFunctionCall","src":"14307:32:101"},"nativeSrc":"14304:52:101","nodeType":"YulIf","src":"14304:52:101"},{"nativeSrc":"14365:36:101","nodeType":"YulVariableDeclaration","src":"14365:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"14391:9:101","nodeType":"YulIdentifier","src":"14391:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"14378:12:101","nodeType":"YulIdentifier","src":"14378:12:101"},"nativeSrc":"14378:23:101","nodeType":"YulFunctionCall","src":"14378:23:101"},"variables":[{"name":"value","nativeSrc":"14369:5:101","nodeType":"YulTypedName","src":"14369:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"14435:5:101","nodeType":"YulIdentifier","src":"14435:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"14410:24:101","nodeType":"YulIdentifier","src":"14410:24:101"},"nativeSrc":"14410:31:101","nodeType":"YulFunctionCall","src":"14410:31:101"},"nativeSrc":"14410:31:101","nodeType":"YulExpressionStatement","src":"14410:31:101"},{"nativeSrc":"14450:15:101","nodeType":"YulAssignment","src":"14450:15:101","value":{"name":"value","nativeSrc":"14460:5:101","nodeType":"YulIdentifier","src":"14460:5:101"},"variableNames":[{"name":"value0","nativeSrc":"14450:6:101","nodeType":"YulIdentifier","src":"14450:6:101"}]},{"nativeSrc":"14474:47:101","nodeType":"YulVariableDeclaration","src":"14474:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14506:9:101","nodeType":"YulIdentifier","src":"14506:9:101"},{"kind":"number","nativeSrc":"14517:2:101","nodeType":"YulLiteral","src":"14517:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14502:3:101","nodeType":"YulIdentifier","src":"14502:3:101"},"nativeSrc":"14502:18:101","nodeType":"YulFunctionCall","src":"14502:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"14489:12:101","nodeType":"YulIdentifier","src":"14489:12:101"},"nativeSrc":"14489:32:101","nodeType":"YulFunctionCall","src":"14489:32:101"},"variables":[{"name":"value_1","nativeSrc":"14478:7:101","nodeType":"YulTypedName","src":"14478:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"14555:7:101","nodeType":"YulIdentifier","src":"14555:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"14530:24:101","nodeType":"YulIdentifier","src":"14530:24:101"},"nativeSrc":"14530:33:101","nodeType":"YulFunctionCall","src":"14530:33:101"},"nativeSrc":"14530:33:101","nodeType":"YulExpressionStatement","src":"14530:33:101"},{"nativeSrc":"14572:17:101","nodeType":"YulAssignment","src":"14572:17:101","value":{"name":"value_1","nativeSrc":"14582:7:101","nodeType":"YulIdentifier","src":"14582:7:101"},"variableNames":[{"name":"value1","nativeSrc":"14572:6:101","nodeType":"YulIdentifier","src":"14572:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"14207:388:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14252:9:101","nodeType":"YulTypedName","src":"14252:9:101","type":""},{"name":"dataEnd","nativeSrc":"14263:7:101","nodeType":"YulTypedName","src":"14263:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"14275:6:101","nodeType":"YulTypedName","src":"14275:6:101","type":""},{"name":"value1","nativeSrc":"14283:6:101","nodeType":"YulTypedName","src":"14283:6:101","type":""}],"src":"14207:388:101"},{"body":{"nativeSrc":"14724:102:101","nodeType":"YulBlock","src":"14724:102:101","statements":[{"nativeSrc":"14734:26:101","nodeType":"YulAssignment","src":"14734:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"14746:9:101","nodeType":"YulIdentifier","src":"14746:9:101"},{"kind":"number","nativeSrc":"14757:2:101","nodeType":"YulLiteral","src":"14757:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14742:3:101","nodeType":"YulIdentifier","src":"14742:3:101"},"nativeSrc":"14742:18:101","nodeType":"YulFunctionCall","src":"14742:18:101"},"variableNames":[{"name":"tail","nativeSrc":"14734:4:101","nodeType":"YulIdentifier","src":"14734:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14776:9:101","nodeType":"YulIdentifier","src":"14776:9:101"},{"arguments":[{"name":"value0","nativeSrc":"14791:6:101","nodeType":"YulIdentifier","src":"14791:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"14807:3:101","nodeType":"YulLiteral","src":"14807:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"14812:1:101","nodeType":"YulLiteral","src":"14812:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"14803:3:101","nodeType":"YulIdentifier","src":"14803:3:101"},"nativeSrc":"14803:11:101","nodeType":"YulFunctionCall","src":"14803:11:101"},{"kind":"number","nativeSrc":"14816:1:101","nodeType":"YulLiteral","src":"14816:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"14799:3:101","nodeType":"YulIdentifier","src":"14799:3:101"},"nativeSrc":"14799:19:101","nodeType":"YulFunctionCall","src":"14799:19:101"}],"functionName":{"name":"and","nativeSrc":"14787:3:101","nodeType":"YulIdentifier","src":"14787:3:101"},"nativeSrc":"14787:32:101","nodeType":"YulFunctionCall","src":"14787:32:101"}],"functionName":{"name":"mstore","nativeSrc":"14769:6:101","nodeType":"YulIdentifier","src":"14769:6:101"},"nativeSrc":"14769:51:101","nodeType":"YulFunctionCall","src":"14769:51:101"},"nativeSrc":"14769:51:101","nodeType":"YulExpressionStatement","src":"14769:51:101"}]},"name":"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed","nativeSrc":"14600:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14693:9:101","nodeType":"YulTypedName","src":"14693:9:101","type":""},{"name":"value0","nativeSrc":"14704:6:101","nodeType":"YulTypedName","src":"14704:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14715:4:101","nodeType":"YulTypedName","src":"14715:4:101","type":""}],"src":"14600:226:101"},{"body":{"nativeSrc":"14863:95:101","nodeType":"YulBlock","src":"14863:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14880:1:101","nodeType":"YulLiteral","src":"14880:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"14887:3:101","nodeType":"YulLiteral","src":"14887:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"14892:10:101","nodeType":"YulLiteral","src":"14892:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"14883:3:101","nodeType":"YulIdentifier","src":"14883:3:101"},"nativeSrc":"14883:20:101","nodeType":"YulFunctionCall","src":"14883:20:101"}],"functionName":{"name":"mstore","nativeSrc":"14873:6:101","nodeType":"YulIdentifier","src":"14873:6:101"},"nativeSrc":"14873:31:101","nodeType":"YulFunctionCall","src":"14873:31:101"},"nativeSrc":"14873:31:101","nodeType":"YulExpressionStatement","src":"14873:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14920:1:101","nodeType":"YulLiteral","src":"14920:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"14923:4:101","nodeType":"YulLiteral","src":"14923:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"14913:6:101","nodeType":"YulIdentifier","src":"14913:6:101"},"nativeSrc":"14913:15:101","nodeType":"YulFunctionCall","src":"14913:15:101"},"nativeSrc":"14913:15:101","nodeType":"YulExpressionStatement","src":"14913:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14944:1:101","nodeType":"YulLiteral","src":"14944:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"14947:4:101","nodeType":"YulLiteral","src":"14947:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"14937:6:101","nodeType":"YulIdentifier","src":"14937:6:101"},"nativeSrc":"14937:15:101","nodeType":"YulFunctionCall","src":"14937:15:101"},"nativeSrc":"14937:15:101","nodeType":"YulExpressionStatement","src":"14937:15:101"}]},"name":"panic_error_0x11","nativeSrc":"14831:127:101","nodeType":"YulFunctionDefinition","src":"14831:127:101"},{"body":{"nativeSrc":"15012:79:101","nodeType":"YulBlock","src":"15012:79:101","statements":[{"nativeSrc":"15022:17:101","nodeType":"YulAssignment","src":"15022:17:101","value":{"arguments":[{"name":"x","nativeSrc":"15034:1:101","nodeType":"YulIdentifier","src":"15034:1:101"},{"name":"y","nativeSrc":"15037:1:101","nodeType":"YulIdentifier","src":"15037:1:101"}],"functionName":{"name":"sub","nativeSrc":"15030:3:101","nodeType":"YulIdentifier","src":"15030:3:101"},"nativeSrc":"15030:9:101","nodeType":"YulFunctionCall","src":"15030:9:101"},"variableNames":[{"name":"diff","nativeSrc":"15022:4:101","nodeType":"YulIdentifier","src":"15022:4:101"}]},{"body":{"nativeSrc":"15063:22:101","nodeType":"YulBlock","src":"15063:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"15065:16:101","nodeType":"YulIdentifier","src":"15065:16:101"},"nativeSrc":"15065:18:101","nodeType":"YulFunctionCall","src":"15065:18:101"},"nativeSrc":"15065:18:101","nodeType":"YulExpressionStatement","src":"15065:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"15054:4:101","nodeType":"YulIdentifier","src":"15054:4:101"},{"name":"x","nativeSrc":"15060:1:101","nodeType":"YulIdentifier","src":"15060:1:101"}],"functionName":{"name":"gt","nativeSrc":"15051:2:101","nodeType":"YulIdentifier","src":"15051:2:101"},"nativeSrc":"15051:11:101","nodeType":"YulFunctionCall","src":"15051:11:101"},"nativeSrc":"15048:37:101","nodeType":"YulIf","src":"15048:37:101"}]},"name":"checked_sub_t_uint256","nativeSrc":"14963:128:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"14994:1:101","nodeType":"YulTypedName","src":"14994:1:101","type":""},{"name":"y","nativeSrc":"14997:1:101","nodeType":"YulTypedName","src":"14997:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"15003:4:101","nodeType":"YulTypedName","src":"15003:4:101","type":""}],"src":"14963:128:101"},{"body":{"nativeSrc":"15151:325:101","nodeType":"YulBlock","src":"15151:325:101","statements":[{"nativeSrc":"15161:22:101","nodeType":"YulAssignment","src":"15161:22:101","value":{"arguments":[{"kind":"number","nativeSrc":"15175:1:101","nodeType":"YulLiteral","src":"15175:1:101","type":"","value":"1"},{"name":"data","nativeSrc":"15178:4:101","nodeType":"YulIdentifier","src":"15178:4:101"}],"functionName":{"name":"shr","nativeSrc":"15171:3:101","nodeType":"YulIdentifier","src":"15171:3:101"},"nativeSrc":"15171:12:101","nodeType":"YulFunctionCall","src":"15171:12:101"},"variableNames":[{"name":"length","nativeSrc":"15161:6:101","nodeType":"YulIdentifier","src":"15161:6:101"}]},{"nativeSrc":"15192:38:101","nodeType":"YulVariableDeclaration","src":"15192:38:101","value":{"arguments":[{"name":"data","nativeSrc":"15222:4:101","nodeType":"YulIdentifier","src":"15222:4:101"},{"kind":"number","nativeSrc":"15228:1:101","nodeType":"YulLiteral","src":"15228:1:101","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"15218:3:101","nodeType":"YulIdentifier","src":"15218:3:101"},"nativeSrc":"15218:12:101","nodeType":"YulFunctionCall","src":"15218:12:101"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"15196:18:101","nodeType":"YulTypedName","src":"15196:18:101","type":""}]},{"body":{"nativeSrc":"15269:31:101","nodeType":"YulBlock","src":"15269:31:101","statements":[{"nativeSrc":"15271:27:101","nodeType":"YulAssignment","src":"15271:27:101","value":{"arguments":[{"name":"length","nativeSrc":"15285:6:101","nodeType":"YulIdentifier","src":"15285:6:101"},{"kind":"number","nativeSrc":"15293:4:101","nodeType":"YulLiteral","src":"15293:4:101","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"15281:3:101","nodeType":"YulIdentifier","src":"15281:3:101"},"nativeSrc":"15281:17:101","nodeType":"YulFunctionCall","src":"15281:17:101"},"variableNames":[{"name":"length","nativeSrc":"15271:6:101","nodeType":"YulIdentifier","src":"15271:6:101"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"15249:18:101","nodeType":"YulIdentifier","src":"15249:18:101"}],"functionName":{"name":"iszero","nativeSrc":"15242:6:101","nodeType":"YulIdentifier","src":"15242:6:101"},"nativeSrc":"15242:26:101","nodeType":"YulFunctionCall","src":"15242:26:101"},"nativeSrc":"15239:61:101","nodeType":"YulIf","src":"15239:61:101"},{"body":{"nativeSrc":"15359:111:101","nodeType":"YulBlock","src":"15359:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15380:1:101","nodeType":"YulLiteral","src":"15380:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"15387:3:101","nodeType":"YulLiteral","src":"15387:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"15392:10:101","nodeType":"YulLiteral","src":"15392:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"15383:3:101","nodeType":"YulIdentifier","src":"15383:3:101"},"nativeSrc":"15383:20:101","nodeType":"YulFunctionCall","src":"15383:20:101"}],"functionName":{"name":"mstore","nativeSrc":"15373:6:101","nodeType":"YulIdentifier","src":"15373:6:101"},"nativeSrc":"15373:31:101","nodeType":"YulFunctionCall","src":"15373:31:101"},"nativeSrc":"15373:31:101","nodeType":"YulExpressionStatement","src":"15373:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"15424:1:101","nodeType":"YulLiteral","src":"15424:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"15427:4:101","nodeType":"YulLiteral","src":"15427:4:101","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"15417:6:101","nodeType":"YulIdentifier","src":"15417:6:101"},"nativeSrc":"15417:15:101","nodeType":"YulFunctionCall","src":"15417:15:101"},"nativeSrc":"15417:15:101","nodeType":"YulExpressionStatement","src":"15417:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"15452:1:101","nodeType":"YulLiteral","src":"15452:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"15455:4:101","nodeType":"YulLiteral","src":"15455:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"15445:6:101","nodeType":"YulIdentifier","src":"15445:6:101"},"nativeSrc":"15445:15:101","nodeType":"YulFunctionCall","src":"15445:15:101"},"nativeSrc":"15445:15:101","nodeType":"YulExpressionStatement","src":"15445:15:101"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"15315:18:101","nodeType":"YulIdentifier","src":"15315:18:101"},{"arguments":[{"name":"length","nativeSrc":"15338:6:101","nodeType":"YulIdentifier","src":"15338:6:101"},{"kind":"number","nativeSrc":"15346:2:101","nodeType":"YulLiteral","src":"15346:2:101","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"15335:2:101","nodeType":"YulIdentifier","src":"15335:2:101"},"nativeSrc":"15335:14:101","nodeType":"YulFunctionCall","src":"15335:14:101"}],"functionName":{"name":"eq","nativeSrc":"15312:2:101","nodeType":"YulIdentifier","src":"15312:2:101"},"nativeSrc":"15312:38:101","nodeType":"YulFunctionCall","src":"15312:38:101"},"nativeSrc":"15309:161:101","nodeType":"YulIf","src":"15309:161:101"}]},"name":"extract_byte_array_length","nativeSrc":"15096:380:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"15131:4:101","nodeType":"YulTypedName","src":"15131:4:101","type":""}],"returnVariables":[{"name":"length","nativeSrc":"15140:6:101","nodeType":"YulTypedName","src":"15140:6:101","type":""}],"src":"15096:380:101"},{"body":{"nativeSrc":"15562:170:101","nodeType":"YulBlock","src":"15562:170:101","statements":[{"body":{"nativeSrc":"15608:16:101","nodeType":"YulBlock","src":"15608:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15617:1:101","nodeType":"YulLiteral","src":"15617:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"15620:1:101","nodeType":"YulLiteral","src":"15620:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15610:6:101","nodeType":"YulIdentifier","src":"15610:6:101"},"nativeSrc":"15610:12:101","nodeType":"YulFunctionCall","src":"15610:12:101"},"nativeSrc":"15610:12:101","nodeType":"YulExpressionStatement","src":"15610:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15583:7:101","nodeType":"YulIdentifier","src":"15583:7:101"},{"name":"headStart","nativeSrc":"15592:9:101","nodeType":"YulIdentifier","src":"15592:9:101"}],"functionName":{"name":"sub","nativeSrc":"15579:3:101","nodeType":"YulIdentifier","src":"15579:3:101"},"nativeSrc":"15579:23:101","nodeType":"YulFunctionCall","src":"15579:23:101"},{"kind":"number","nativeSrc":"15604:2:101","nodeType":"YulLiteral","src":"15604:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"15575:3:101","nodeType":"YulIdentifier","src":"15575:3:101"},"nativeSrc":"15575:32:101","nodeType":"YulFunctionCall","src":"15575:32:101"},"nativeSrc":"15572:52:101","nodeType":"YulIf","src":"15572:52:101"},{"nativeSrc":"15633:29:101","nodeType":"YulVariableDeclaration","src":"15633:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"15652:9:101","nodeType":"YulIdentifier","src":"15652:9:101"}],"functionName":{"name":"mload","nativeSrc":"15646:5:101","nodeType":"YulIdentifier","src":"15646:5:101"},"nativeSrc":"15646:16:101","nodeType":"YulFunctionCall","src":"15646:16:101"},"variables":[{"name":"value","nativeSrc":"15637:5:101","nodeType":"YulTypedName","src":"15637:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"15696:5:101","nodeType":"YulIdentifier","src":"15696:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"15671:24:101","nodeType":"YulIdentifier","src":"15671:24:101"},"nativeSrc":"15671:31:101","nodeType":"YulFunctionCall","src":"15671:31:101"},"nativeSrc":"15671:31:101","nodeType":"YulExpressionStatement","src":"15671:31:101"},{"nativeSrc":"15711:15:101","nodeType":"YulAssignment","src":"15711:15:101","value":{"name":"value","nativeSrc":"15721:5:101","nodeType":"YulIdentifier","src":"15721:5:101"},"variableNames":[{"name":"value0","nativeSrc":"15711:6:101","nodeType":"YulIdentifier","src":"15711:6:101"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"15481:251:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15528:9:101","nodeType":"YulTypedName","src":"15528:9:101","type":""},{"name":"dataEnd","nativeSrc":"15539:7:101","nodeType":"YulTypedName","src":"15539:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15551:6:101","nodeType":"YulTypedName","src":"15551:6:101","type":""}],"src":"15481:251:101"},{"body":{"nativeSrc":"15818:103:101","nodeType":"YulBlock","src":"15818:103:101","statements":[{"body":{"nativeSrc":"15864:16:101","nodeType":"YulBlock","src":"15864:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15873:1:101","nodeType":"YulLiteral","src":"15873:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"15876:1:101","nodeType":"YulLiteral","src":"15876:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15866:6:101","nodeType":"YulIdentifier","src":"15866:6:101"},"nativeSrc":"15866:12:101","nodeType":"YulFunctionCall","src":"15866:12:101"},"nativeSrc":"15866:12:101","nodeType":"YulExpressionStatement","src":"15866:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15839:7:101","nodeType":"YulIdentifier","src":"15839:7:101"},{"name":"headStart","nativeSrc":"15848:9:101","nodeType":"YulIdentifier","src":"15848:9:101"}],"functionName":{"name":"sub","nativeSrc":"15835:3:101","nodeType":"YulIdentifier","src":"15835:3:101"},"nativeSrc":"15835:23:101","nodeType":"YulFunctionCall","src":"15835:23:101"},{"kind":"number","nativeSrc":"15860:2:101","nodeType":"YulLiteral","src":"15860:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"15831:3:101","nodeType":"YulIdentifier","src":"15831:3:101"},"nativeSrc":"15831:32:101","nodeType":"YulFunctionCall","src":"15831:32:101"},"nativeSrc":"15828:52:101","nodeType":"YulIf","src":"15828:52:101"},{"nativeSrc":"15889:26:101","nodeType":"YulAssignment","src":"15889:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"15905:9:101","nodeType":"YulIdentifier","src":"15905:9:101"}],"functionName":{"name":"mload","nativeSrc":"15899:5:101","nodeType":"YulIdentifier","src":"15899:5:101"},"nativeSrc":"15899:16:101","nodeType":"YulFunctionCall","src":"15899:16:101"},"variableNames":[{"name":"value0","nativeSrc":"15889:6:101","nodeType":"YulIdentifier","src":"15889:6:101"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"15737:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15784:9:101","nodeType":"YulTypedName","src":"15784:9:101","type":""},{"name":"dataEnd","nativeSrc":"15795:7:101","nodeType":"YulTypedName","src":"15795:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15807:6:101","nodeType":"YulTypedName","src":"15807:6:101","type":""}],"src":"15737:184:101"},{"body":{"nativeSrc":"16083:214:101","nodeType":"YulBlock","src":"16083:214:101","statements":[{"nativeSrc":"16093:26:101","nodeType":"YulAssignment","src":"16093:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"16105:9:101","nodeType":"YulIdentifier","src":"16105:9:101"},{"kind":"number","nativeSrc":"16116:2:101","nodeType":"YulLiteral","src":"16116:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16101:3:101","nodeType":"YulIdentifier","src":"16101:3:101"},"nativeSrc":"16101:18:101","nodeType":"YulFunctionCall","src":"16101:18:101"},"variableNames":[{"name":"tail","nativeSrc":"16093:4:101","nodeType":"YulIdentifier","src":"16093:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16135:9:101","nodeType":"YulIdentifier","src":"16135:9:101"},{"name":"value0","nativeSrc":"16146:6:101","nodeType":"YulIdentifier","src":"16146:6:101"}],"functionName":{"name":"mstore","nativeSrc":"16128:6:101","nodeType":"YulIdentifier","src":"16128:6:101"},"nativeSrc":"16128:25:101","nodeType":"YulFunctionCall","src":"16128:25:101"},"nativeSrc":"16128:25:101","nodeType":"YulExpressionStatement","src":"16128:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16173:9:101","nodeType":"YulIdentifier","src":"16173:9:101"},{"kind":"number","nativeSrc":"16184:2:101","nodeType":"YulLiteral","src":"16184:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16169:3:101","nodeType":"YulIdentifier","src":"16169:3:101"},"nativeSrc":"16169:18:101","nodeType":"YulFunctionCall","src":"16169:18:101"},{"arguments":[{"name":"value1","nativeSrc":"16193:6:101","nodeType":"YulIdentifier","src":"16193:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16209:3:101","nodeType":"YulLiteral","src":"16209:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"16214:1:101","nodeType":"YulLiteral","src":"16214:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16205:3:101","nodeType":"YulIdentifier","src":"16205:3:101"},"nativeSrc":"16205:11:101","nodeType":"YulFunctionCall","src":"16205:11:101"},{"kind":"number","nativeSrc":"16218:1:101","nodeType":"YulLiteral","src":"16218:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16201:3:101","nodeType":"YulIdentifier","src":"16201:3:101"},"nativeSrc":"16201:19:101","nodeType":"YulFunctionCall","src":"16201:19:101"}],"functionName":{"name":"and","nativeSrc":"16189:3:101","nodeType":"YulIdentifier","src":"16189:3:101"},"nativeSrc":"16189:32:101","nodeType":"YulFunctionCall","src":"16189:32:101"}],"functionName":{"name":"mstore","nativeSrc":"16162:6:101","nodeType":"YulIdentifier","src":"16162:6:101"},"nativeSrc":"16162:60:101","nodeType":"YulFunctionCall","src":"16162:60:101"},"nativeSrc":"16162:60:101","nodeType":"YulExpressionStatement","src":"16162:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16242:9:101","nodeType":"YulIdentifier","src":"16242:9:101"},{"kind":"number","nativeSrc":"16253:2:101","nodeType":"YulLiteral","src":"16253:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16238:3:101","nodeType":"YulIdentifier","src":"16238:3:101"},"nativeSrc":"16238:18:101","nodeType":"YulFunctionCall","src":"16238:18:101"},{"arguments":[{"name":"value2","nativeSrc":"16262:6:101","nodeType":"YulIdentifier","src":"16262:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16278:3:101","nodeType":"YulLiteral","src":"16278:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"16283:1:101","nodeType":"YulLiteral","src":"16283:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16274:3:101","nodeType":"YulIdentifier","src":"16274:3:101"},"nativeSrc":"16274:11:101","nodeType":"YulFunctionCall","src":"16274:11:101"},{"kind":"number","nativeSrc":"16287:1:101","nodeType":"YulLiteral","src":"16287:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16270:3:101","nodeType":"YulIdentifier","src":"16270:3:101"},"nativeSrc":"16270:19:101","nodeType":"YulFunctionCall","src":"16270:19:101"}],"functionName":{"name":"and","nativeSrc":"16258:3:101","nodeType":"YulIdentifier","src":"16258:3:101"},"nativeSrc":"16258:32:101","nodeType":"YulFunctionCall","src":"16258:32:101"}],"functionName":{"name":"mstore","nativeSrc":"16231:6:101","nodeType":"YulIdentifier","src":"16231:6:101"},"nativeSrc":"16231:60:101","nodeType":"YulFunctionCall","src":"16231:60:101"},"nativeSrc":"16231:60:101","nodeType":"YulExpressionStatement","src":"16231:60:101"}]},"name":"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed","nativeSrc":"15926:371:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16036:9:101","nodeType":"YulTypedName","src":"16036:9:101","type":""},{"name":"value2","nativeSrc":"16047:6:101","nodeType":"YulTypedName","src":"16047:6:101","type":""},{"name":"value1","nativeSrc":"16055:6:101","nodeType":"YulTypedName","src":"16055:6:101","type":""},{"name":"value0","nativeSrc":"16063:6:101","nodeType":"YulTypedName","src":"16063:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16074:4:101","nodeType":"YulTypedName","src":"16074:4:101","type":""}],"src":"15926:371:101"},{"body":{"nativeSrc":"16350:152:101","nodeType":"YulBlock","src":"16350:152:101","statements":[{"nativeSrc":"16360:17:101","nodeType":"YulAssignment","src":"16360:17:101","value":{"arguments":[{"name":"x","nativeSrc":"16372:1:101","nodeType":"YulIdentifier","src":"16372:1:101"},{"name":"y","nativeSrc":"16375:1:101","nodeType":"YulIdentifier","src":"16375:1:101"}],"functionName":{"name":"sub","nativeSrc":"16368:3:101","nodeType":"YulIdentifier","src":"16368:3:101"},"nativeSrc":"16368:9:101","nodeType":"YulFunctionCall","src":"16368:9:101"},"variableNames":[{"name":"diff","nativeSrc":"16360:4:101","nodeType":"YulIdentifier","src":"16360:4:101"}]},{"nativeSrc":"16386:19:101","nodeType":"YulVariableDeclaration","src":"16386:19:101","value":{"arguments":[{"name":"y","nativeSrc":"16400:1:101","nodeType":"YulIdentifier","src":"16400:1:101"},{"kind":"number","nativeSrc":"16403:1:101","nodeType":"YulLiteral","src":"16403:1:101","type":"","value":"0"}],"functionName":{"name":"slt","nativeSrc":"16396:3:101","nodeType":"YulIdentifier","src":"16396:3:101"},"nativeSrc":"16396:9:101","nodeType":"YulFunctionCall","src":"16396:9:101"},"variables":[{"name":"_1","nativeSrc":"16390:2:101","nodeType":"YulTypedName","src":"16390:2:101","type":""}]},{"body":{"nativeSrc":"16474:22:101","nodeType":"YulBlock","src":"16474:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"16476:16:101","nodeType":"YulIdentifier","src":"16476:16:101"},"nativeSrc":"16476:18:101","nodeType":"YulFunctionCall","src":"16476:18:101"},"nativeSrc":"16476:18:101","nodeType":"YulExpressionStatement","src":"16476:18:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"16431:2:101","nodeType":"YulIdentifier","src":"16431:2:101"}],"functionName":{"name":"iszero","nativeSrc":"16424:6:101","nodeType":"YulIdentifier","src":"16424:6:101"},"nativeSrc":"16424:10:101","nodeType":"YulFunctionCall","src":"16424:10:101"},{"arguments":[{"name":"diff","nativeSrc":"16440:4:101","nodeType":"YulIdentifier","src":"16440:4:101"},{"name":"x","nativeSrc":"16446:1:101","nodeType":"YulIdentifier","src":"16446:1:101"}],"functionName":{"name":"sgt","nativeSrc":"16436:3:101","nodeType":"YulIdentifier","src":"16436:3:101"},"nativeSrc":"16436:12:101","nodeType":"YulFunctionCall","src":"16436:12:101"}],"functionName":{"name":"and","nativeSrc":"16420:3:101","nodeType":"YulIdentifier","src":"16420:3:101"},"nativeSrc":"16420:29:101","nodeType":"YulFunctionCall","src":"16420:29:101"},{"arguments":[{"name":"_1","nativeSrc":"16455:2:101","nodeType":"YulIdentifier","src":"16455:2:101"},{"arguments":[{"name":"diff","nativeSrc":"16463:4:101","nodeType":"YulIdentifier","src":"16463:4:101"},{"name":"x","nativeSrc":"16469:1:101","nodeType":"YulIdentifier","src":"16469:1:101"}],"functionName":{"name":"slt","nativeSrc":"16459:3:101","nodeType":"YulIdentifier","src":"16459:3:101"},"nativeSrc":"16459:12:101","nodeType":"YulFunctionCall","src":"16459:12:101"}],"functionName":{"name":"and","nativeSrc":"16451:3:101","nodeType":"YulIdentifier","src":"16451:3:101"},"nativeSrc":"16451:21:101","nodeType":"YulFunctionCall","src":"16451:21:101"}],"functionName":{"name":"or","nativeSrc":"16417:2:101","nodeType":"YulIdentifier","src":"16417:2:101"},"nativeSrc":"16417:56:101","nodeType":"YulFunctionCall","src":"16417:56:101"},"nativeSrc":"16414:82:101","nodeType":"YulIf","src":"16414:82:101"}]},"name":"checked_sub_t_int256","nativeSrc":"16302:200:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"16332:1:101","nodeType":"YulTypedName","src":"16332:1:101","type":""},{"name":"y","nativeSrc":"16335:1:101","nodeType":"YulTypedName","src":"16335:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"16341:4:101","nodeType":"YulTypedName","src":"16341:4:101","type":""}],"src":"16302:200:101"},{"body":{"nativeSrc":"16680:214:101","nodeType":"YulBlock","src":"16680:214:101","statements":[{"nativeSrc":"16690:26:101","nodeType":"YulAssignment","src":"16690:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"16702:9:101","nodeType":"YulIdentifier","src":"16702:9:101"},{"kind":"number","nativeSrc":"16713:2:101","nodeType":"YulLiteral","src":"16713:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16698:3:101","nodeType":"YulIdentifier","src":"16698:3:101"},"nativeSrc":"16698:18:101","nodeType":"YulFunctionCall","src":"16698:18:101"},"variableNames":[{"name":"tail","nativeSrc":"16690:4:101","nodeType":"YulIdentifier","src":"16690:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16732:9:101","nodeType":"YulIdentifier","src":"16732:9:101"},{"arguments":[{"name":"value0","nativeSrc":"16747:6:101","nodeType":"YulIdentifier","src":"16747:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16763:3:101","nodeType":"YulLiteral","src":"16763:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"16768:1:101","nodeType":"YulLiteral","src":"16768:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16759:3:101","nodeType":"YulIdentifier","src":"16759:3:101"},"nativeSrc":"16759:11:101","nodeType":"YulFunctionCall","src":"16759:11:101"},{"kind":"number","nativeSrc":"16772:1:101","nodeType":"YulLiteral","src":"16772:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16755:3:101","nodeType":"YulIdentifier","src":"16755:3:101"},"nativeSrc":"16755:19:101","nodeType":"YulFunctionCall","src":"16755:19:101"}],"functionName":{"name":"and","nativeSrc":"16743:3:101","nodeType":"YulIdentifier","src":"16743:3:101"},"nativeSrc":"16743:32:101","nodeType":"YulFunctionCall","src":"16743:32:101"}],"functionName":{"name":"mstore","nativeSrc":"16725:6:101","nodeType":"YulIdentifier","src":"16725:6:101"},"nativeSrc":"16725:51:101","nodeType":"YulFunctionCall","src":"16725:51:101"},"nativeSrc":"16725:51:101","nodeType":"YulExpressionStatement","src":"16725:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16796:9:101","nodeType":"YulIdentifier","src":"16796:9:101"},{"kind":"number","nativeSrc":"16807:2:101","nodeType":"YulLiteral","src":"16807:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16792:3:101","nodeType":"YulIdentifier","src":"16792:3:101"},"nativeSrc":"16792:18:101","nodeType":"YulFunctionCall","src":"16792:18:101"},{"arguments":[{"name":"value1","nativeSrc":"16816:6:101","nodeType":"YulIdentifier","src":"16816:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16832:3:101","nodeType":"YulLiteral","src":"16832:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"16837:1:101","nodeType":"YulLiteral","src":"16837:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16828:3:101","nodeType":"YulIdentifier","src":"16828:3:101"},"nativeSrc":"16828:11:101","nodeType":"YulFunctionCall","src":"16828:11:101"},{"kind":"number","nativeSrc":"16841:1:101","nodeType":"YulLiteral","src":"16841:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16824:3:101","nodeType":"YulIdentifier","src":"16824:3:101"},"nativeSrc":"16824:19:101","nodeType":"YulFunctionCall","src":"16824:19:101"}],"functionName":{"name":"and","nativeSrc":"16812:3:101","nodeType":"YulIdentifier","src":"16812:3:101"},"nativeSrc":"16812:32:101","nodeType":"YulFunctionCall","src":"16812:32:101"}],"functionName":{"name":"mstore","nativeSrc":"16785:6:101","nodeType":"YulIdentifier","src":"16785:6:101"},"nativeSrc":"16785:60:101","nodeType":"YulFunctionCall","src":"16785:60:101"},"nativeSrc":"16785:60:101","nodeType":"YulExpressionStatement","src":"16785:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16865:9:101","nodeType":"YulIdentifier","src":"16865:9:101"},{"kind":"number","nativeSrc":"16876:2:101","nodeType":"YulLiteral","src":"16876:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16861:3:101","nodeType":"YulIdentifier","src":"16861:3:101"},"nativeSrc":"16861:18:101","nodeType":"YulFunctionCall","src":"16861:18:101"},{"name":"value2","nativeSrc":"16881:6:101","nodeType":"YulIdentifier","src":"16881:6:101"}],"functionName":{"name":"mstore","nativeSrc":"16854:6:101","nodeType":"YulIdentifier","src":"16854:6:101"},"nativeSrc":"16854:34:101","nodeType":"YulFunctionCall","src":"16854:34:101"},"nativeSrc":"16854:34:101","nodeType":"YulExpressionStatement","src":"16854:34:101"}]},"name":"abi_encode_tuple_t_contract$_EToken_$21755_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nativeSrc":"16507:387:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16633:9:101","nodeType":"YulTypedName","src":"16633:9:101","type":""},{"name":"value2","nativeSrc":"16644:6:101","nodeType":"YulTypedName","src":"16644:6:101","type":""},{"name":"value1","nativeSrc":"16652:6:101","nodeType":"YulTypedName","src":"16652:6:101","type":""},{"name":"value0","nativeSrc":"16660:6:101","nodeType":"YulTypedName","src":"16660:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16671:4:101","nodeType":"YulTypedName","src":"16671:4:101","type":""}],"src":"16507:387:101"},{"body":{"nativeSrc":"16979:202:101","nodeType":"YulBlock","src":"16979:202:101","statements":[{"body":{"nativeSrc":"17025:16:101","nodeType":"YulBlock","src":"17025:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17034:1:101","nodeType":"YulLiteral","src":"17034:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"17037:1:101","nodeType":"YulLiteral","src":"17037:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17027:6:101","nodeType":"YulIdentifier","src":"17027:6:101"},"nativeSrc":"17027:12:101","nodeType":"YulFunctionCall","src":"17027:12:101"},"nativeSrc":"17027:12:101","nodeType":"YulExpressionStatement","src":"17027:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17000:7:101","nodeType":"YulIdentifier","src":"17000:7:101"},{"name":"headStart","nativeSrc":"17009:9:101","nodeType":"YulIdentifier","src":"17009:9:101"}],"functionName":{"name":"sub","nativeSrc":"16996:3:101","nodeType":"YulIdentifier","src":"16996:3:101"},"nativeSrc":"16996:23:101","nodeType":"YulFunctionCall","src":"16996:23:101"},{"kind":"number","nativeSrc":"17021:2:101","nodeType":"YulLiteral","src":"17021:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"16992:3:101","nodeType":"YulIdentifier","src":"16992:3:101"},"nativeSrc":"16992:32:101","nodeType":"YulFunctionCall","src":"16992:32:101"},"nativeSrc":"16989:52:101","nodeType":"YulIf","src":"16989:52:101"},{"nativeSrc":"17050:29:101","nodeType":"YulVariableDeclaration","src":"17050:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"17069:9:101","nodeType":"YulIdentifier","src":"17069:9:101"}],"functionName":{"name":"mload","nativeSrc":"17063:5:101","nodeType":"YulIdentifier","src":"17063:5:101"},"nativeSrc":"17063:16:101","nodeType":"YulFunctionCall","src":"17063:16:101"},"variables":[{"name":"value","nativeSrc":"17054:5:101","nodeType":"YulTypedName","src":"17054:5:101","type":""}]},{"body":{"nativeSrc":"17135:16:101","nodeType":"YulBlock","src":"17135:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17144:1:101","nodeType":"YulLiteral","src":"17144:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"17147:1:101","nodeType":"YulLiteral","src":"17147:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17137:6:101","nodeType":"YulIdentifier","src":"17137:6:101"},"nativeSrc":"17137:12:101","nodeType":"YulFunctionCall","src":"17137:12:101"},"nativeSrc":"17137:12:101","nodeType":"YulExpressionStatement","src":"17137:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"17101:5:101","nodeType":"YulIdentifier","src":"17101:5:101"},{"arguments":[{"name":"value","nativeSrc":"17112:5:101","nodeType":"YulIdentifier","src":"17112:5:101"},{"kind":"number","nativeSrc":"17119:12:101","nodeType":"YulLiteral","src":"17119:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"17108:3:101","nodeType":"YulIdentifier","src":"17108:3:101"},"nativeSrc":"17108:24:101","nodeType":"YulFunctionCall","src":"17108:24:101"}],"functionName":{"name":"eq","nativeSrc":"17098:2:101","nodeType":"YulIdentifier","src":"17098:2:101"},"nativeSrc":"17098:35:101","nodeType":"YulFunctionCall","src":"17098:35:101"}],"functionName":{"name":"iszero","nativeSrc":"17091:6:101","nodeType":"YulIdentifier","src":"17091:6:101"},"nativeSrc":"17091:43:101","nodeType":"YulFunctionCall","src":"17091:43:101"},"nativeSrc":"17088:63:101","nodeType":"YulIf","src":"17088:63:101"},{"nativeSrc":"17160:15:101","nodeType":"YulAssignment","src":"17160:15:101","value":{"name":"value","nativeSrc":"17170:5:101","nodeType":"YulIdentifier","src":"17170:5:101"},"variableNames":[{"name":"value0","nativeSrc":"17160:6:101","nodeType":"YulIdentifier","src":"17160:6:101"}]}]},"name":"abi_decode_tuple_t_uint40_fromMemory","nativeSrc":"16899:282:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16945:9:101","nodeType":"YulTypedName","src":"16945:9:101","type":""},{"name":"dataEnd","nativeSrc":"16956:7:101","nodeType":"YulTypedName","src":"16956:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"16968:6:101","nodeType":"YulTypedName","src":"16968:6:101","type":""}],"src":"16899:282:101"},{"body":{"nativeSrc":"17304:102:101","nodeType":"YulBlock","src":"17304:102:101","statements":[{"nativeSrc":"17314:26:101","nodeType":"YulAssignment","src":"17314:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"17326:9:101","nodeType":"YulIdentifier","src":"17326:9:101"},{"kind":"number","nativeSrc":"17337:2:101","nodeType":"YulLiteral","src":"17337:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17322:3:101","nodeType":"YulIdentifier","src":"17322:3:101"},"nativeSrc":"17322:18:101","nodeType":"YulFunctionCall","src":"17322:18:101"},"variableNames":[{"name":"tail","nativeSrc":"17314:4:101","nodeType":"YulIdentifier","src":"17314:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17356:9:101","nodeType":"YulIdentifier","src":"17356:9:101"},{"arguments":[{"name":"value0","nativeSrc":"17371:6:101","nodeType":"YulIdentifier","src":"17371:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17387:3:101","nodeType":"YulLiteral","src":"17387:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"17392:1:101","nodeType":"YulLiteral","src":"17392:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"17383:3:101","nodeType":"YulIdentifier","src":"17383:3:101"},"nativeSrc":"17383:11:101","nodeType":"YulFunctionCall","src":"17383:11:101"},{"kind":"number","nativeSrc":"17396:1:101","nodeType":"YulLiteral","src":"17396:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"17379:3:101","nodeType":"YulIdentifier","src":"17379:3:101"},"nativeSrc":"17379:19:101","nodeType":"YulFunctionCall","src":"17379:19:101"}],"functionName":{"name":"and","nativeSrc":"17367:3:101","nodeType":"YulIdentifier","src":"17367:3:101"},"nativeSrc":"17367:32:101","nodeType":"YulFunctionCall","src":"17367:32:101"}],"functionName":{"name":"mstore","nativeSrc":"17349:6:101","nodeType":"YulIdentifier","src":"17349:6:101"},"nativeSrc":"17349:51:101","nodeType":"YulFunctionCall","src":"17349:51:101"},"nativeSrc":"17349:51:101","nodeType":"YulExpressionStatement","src":"17349:51:101"}]},"name":"abi_encode_tuple_t_contract$_ICooler_$28695__to_t_address__fromStack_reversed","nativeSrc":"17186:220:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17273:9:101","nodeType":"YulTypedName","src":"17273:9:101","type":""},{"name":"value0","nativeSrc":"17284:6:101","nodeType":"YulTypedName","src":"17284:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17295:4:101","nodeType":"YulTypedName","src":"17295:4:101","type":""}],"src":"17186:220:101"},{"body":{"nativeSrc":"17489:167:101","nodeType":"YulBlock","src":"17489:167:101","statements":[{"body":{"nativeSrc":"17535:16:101","nodeType":"YulBlock","src":"17535:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17544:1:101","nodeType":"YulLiteral","src":"17544:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"17547:1:101","nodeType":"YulLiteral","src":"17547:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17537:6:101","nodeType":"YulIdentifier","src":"17537:6:101"},"nativeSrc":"17537:12:101","nodeType":"YulFunctionCall","src":"17537:12:101"},"nativeSrc":"17537:12:101","nodeType":"YulExpressionStatement","src":"17537:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17510:7:101","nodeType":"YulIdentifier","src":"17510:7:101"},{"name":"headStart","nativeSrc":"17519:9:101","nodeType":"YulIdentifier","src":"17519:9:101"}],"functionName":{"name":"sub","nativeSrc":"17506:3:101","nodeType":"YulIdentifier","src":"17506:3:101"},"nativeSrc":"17506:23:101","nodeType":"YulFunctionCall","src":"17506:23:101"},{"kind":"number","nativeSrc":"17531:2:101","nodeType":"YulLiteral","src":"17531:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"17502:3:101","nodeType":"YulIdentifier","src":"17502:3:101"},"nativeSrc":"17502:32:101","nodeType":"YulFunctionCall","src":"17502:32:101"},"nativeSrc":"17499:52:101","nodeType":"YulIf","src":"17499:52:101"},{"nativeSrc":"17560:29:101","nodeType":"YulVariableDeclaration","src":"17560:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"17579:9:101","nodeType":"YulIdentifier","src":"17579:9:101"}],"functionName":{"name":"mload","nativeSrc":"17573:5:101","nodeType":"YulIdentifier","src":"17573:5:101"},"nativeSrc":"17573:16:101","nodeType":"YulFunctionCall","src":"17573:16:101"},"variables":[{"name":"value","nativeSrc":"17564:5:101","nodeType":"YulTypedName","src":"17564:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"17620:5:101","nodeType":"YulIdentifier","src":"17620:5:101"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"17598:21:101","nodeType":"YulIdentifier","src":"17598:21:101"},"nativeSrc":"17598:28:101","nodeType":"YulFunctionCall","src":"17598:28:101"},"nativeSrc":"17598:28:101","nodeType":"YulExpressionStatement","src":"17598:28:101"},{"nativeSrc":"17635:15:101","nodeType":"YulAssignment","src":"17635:15:101","value":{"name":"value","nativeSrc":"17645:5:101","nodeType":"YulIdentifier","src":"17645:5:101"},"variableNames":[{"name":"value0","nativeSrc":"17635:6:101","nodeType":"YulIdentifier","src":"17635:6:101"}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nativeSrc":"17411:245:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17455:9:101","nodeType":"YulTypedName","src":"17455:9:101","type":""},{"name":"dataEnd","nativeSrc":"17466:7:101","nodeType":"YulTypedName","src":"17466:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17478:6:101","nodeType":"YulTypedName","src":"17478:6:101","type":""}],"src":"17411:245:101"},{"body":{"nativeSrc":"17790:145:101","nodeType":"YulBlock","src":"17790:145:101","statements":[{"nativeSrc":"17800:26:101","nodeType":"YulAssignment","src":"17800:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"17812:9:101","nodeType":"YulIdentifier","src":"17812:9:101"},{"kind":"number","nativeSrc":"17823:2:101","nodeType":"YulLiteral","src":"17823:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17808:3:101","nodeType":"YulIdentifier","src":"17808:3:101"},"nativeSrc":"17808:18:101","nodeType":"YulFunctionCall","src":"17808:18:101"},"variableNames":[{"name":"tail","nativeSrc":"17800:4:101","nodeType":"YulIdentifier","src":"17800:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17842:9:101","nodeType":"YulIdentifier","src":"17842:9:101"},{"arguments":[{"name":"value0","nativeSrc":"17857:6:101","nodeType":"YulIdentifier","src":"17857:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17873:3:101","nodeType":"YulLiteral","src":"17873:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"17878:1:101","nodeType":"YulLiteral","src":"17878:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"17869:3:101","nodeType":"YulIdentifier","src":"17869:3:101"},"nativeSrc":"17869:11:101","nodeType":"YulFunctionCall","src":"17869:11:101"},{"kind":"number","nativeSrc":"17882:1:101","nodeType":"YulLiteral","src":"17882:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"17865:3:101","nodeType":"YulIdentifier","src":"17865:3:101"},"nativeSrc":"17865:19:101","nodeType":"YulFunctionCall","src":"17865:19:101"}],"functionName":{"name":"and","nativeSrc":"17853:3:101","nodeType":"YulIdentifier","src":"17853:3:101"},"nativeSrc":"17853:32:101","nodeType":"YulFunctionCall","src":"17853:32:101"}],"functionName":{"name":"mstore","nativeSrc":"17835:6:101","nodeType":"YulIdentifier","src":"17835:6:101"},"nativeSrc":"17835:51:101","nodeType":"YulFunctionCall","src":"17835:51:101"},"nativeSrc":"17835:51:101","nodeType":"YulExpressionStatement","src":"17835:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17906:9:101","nodeType":"YulIdentifier","src":"17906:9:101"},{"kind":"number","nativeSrc":"17917:2:101","nodeType":"YulLiteral","src":"17917:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17902:3:101","nodeType":"YulIdentifier","src":"17902:3:101"},"nativeSrc":"17902:18:101","nodeType":"YulFunctionCall","src":"17902:18:101"},{"name":"value1","nativeSrc":"17922:6:101","nodeType":"YulIdentifier","src":"17922:6:101"}],"functionName":{"name":"mstore","nativeSrc":"17895:6:101","nodeType":"YulIdentifier","src":"17895:6:101"},"nativeSrc":"17895:34:101","nodeType":"YulFunctionCall","src":"17895:34:101"},"nativeSrc":"17895:34:101","nodeType":"YulExpressionStatement","src":"17895:34:101"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"17661:274:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17751:9:101","nodeType":"YulTypedName","src":"17751:9:101","type":""},{"name":"value1","nativeSrc":"17762:6:101","nodeType":"YulTypedName","src":"17762:6:101","type":""},{"name":"value0","nativeSrc":"17770:6:101","nodeType":"YulTypedName","src":"17770:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17781:4:101","nodeType":"YulTypedName","src":"17781:4:101","type":""}],"src":"17661:274:101"},{"body":{"nativeSrc":"18141:284:101","nodeType":"YulBlock","src":"18141:284:101","statements":[{"nativeSrc":"18151:27:101","nodeType":"YulAssignment","src":"18151:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"18163:9:101","nodeType":"YulIdentifier","src":"18163:9:101"},{"kind":"number","nativeSrc":"18174:3:101","nodeType":"YulLiteral","src":"18174:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"18159:3:101","nodeType":"YulIdentifier","src":"18159:3:101"},"nativeSrc":"18159:19:101","nodeType":"YulFunctionCall","src":"18159:19:101"},"variableNames":[{"name":"tail","nativeSrc":"18151:4:101","nodeType":"YulIdentifier","src":"18151:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18194:9:101","nodeType":"YulIdentifier","src":"18194:9:101"},{"arguments":[{"name":"value0","nativeSrc":"18209:6:101","nodeType":"YulIdentifier","src":"18209:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18225:3:101","nodeType":"YulLiteral","src":"18225:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"18230:1:101","nodeType":"YulLiteral","src":"18230:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18221:3:101","nodeType":"YulIdentifier","src":"18221:3:101"},"nativeSrc":"18221:11:101","nodeType":"YulFunctionCall","src":"18221:11:101"},{"kind":"number","nativeSrc":"18234:1:101","nodeType":"YulLiteral","src":"18234:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18217:3:101","nodeType":"YulIdentifier","src":"18217:3:101"},"nativeSrc":"18217:19:101","nodeType":"YulFunctionCall","src":"18217:19:101"}],"functionName":{"name":"and","nativeSrc":"18205:3:101","nodeType":"YulIdentifier","src":"18205:3:101"},"nativeSrc":"18205:32:101","nodeType":"YulFunctionCall","src":"18205:32:101"}],"functionName":{"name":"mstore","nativeSrc":"18187:6:101","nodeType":"YulIdentifier","src":"18187:6:101"},"nativeSrc":"18187:51:101","nodeType":"YulFunctionCall","src":"18187:51:101"},"nativeSrc":"18187:51:101","nodeType":"YulExpressionStatement","src":"18187:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18258:9:101","nodeType":"YulIdentifier","src":"18258:9:101"},{"kind":"number","nativeSrc":"18269:2:101","nodeType":"YulLiteral","src":"18269:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18254:3:101","nodeType":"YulIdentifier","src":"18254:3:101"},"nativeSrc":"18254:18:101","nodeType":"YulFunctionCall","src":"18254:18:101"},{"arguments":[{"name":"value1","nativeSrc":"18278:6:101","nodeType":"YulIdentifier","src":"18278:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18294:3:101","nodeType":"YulLiteral","src":"18294:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"18299:1:101","nodeType":"YulLiteral","src":"18299:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18290:3:101","nodeType":"YulIdentifier","src":"18290:3:101"},"nativeSrc":"18290:11:101","nodeType":"YulFunctionCall","src":"18290:11:101"},{"kind":"number","nativeSrc":"18303:1:101","nodeType":"YulLiteral","src":"18303:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18286:3:101","nodeType":"YulIdentifier","src":"18286:3:101"},"nativeSrc":"18286:19:101","nodeType":"YulFunctionCall","src":"18286:19:101"}],"functionName":{"name":"and","nativeSrc":"18274:3:101","nodeType":"YulIdentifier","src":"18274:3:101"},"nativeSrc":"18274:32:101","nodeType":"YulFunctionCall","src":"18274:32:101"}],"functionName":{"name":"mstore","nativeSrc":"18247:6:101","nodeType":"YulIdentifier","src":"18247:6:101"},"nativeSrc":"18247:60:101","nodeType":"YulFunctionCall","src":"18247:60:101"},"nativeSrc":"18247:60:101","nodeType":"YulExpressionStatement","src":"18247:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18327:9:101","nodeType":"YulIdentifier","src":"18327:9:101"},{"kind":"number","nativeSrc":"18338:2:101","nodeType":"YulLiteral","src":"18338:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18323:3:101","nodeType":"YulIdentifier","src":"18323:3:101"},"nativeSrc":"18323:18:101","nodeType":"YulFunctionCall","src":"18323:18:101"},{"arguments":[{"name":"value2","nativeSrc":"18347:6:101","nodeType":"YulIdentifier","src":"18347:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18363:3:101","nodeType":"YulLiteral","src":"18363:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"18368:1:101","nodeType":"YulLiteral","src":"18368:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18359:3:101","nodeType":"YulIdentifier","src":"18359:3:101"},"nativeSrc":"18359:11:101","nodeType":"YulFunctionCall","src":"18359:11:101"},{"kind":"number","nativeSrc":"18372:1:101","nodeType":"YulLiteral","src":"18372:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18355:3:101","nodeType":"YulIdentifier","src":"18355:3:101"},"nativeSrc":"18355:19:101","nodeType":"YulFunctionCall","src":"18355:19:101"}],"functionName":{"name":"and","nativeSrc":"18343:3:101","nodeType":"YulIdentifier","src":"18343:3:101"},"nativeSrc":"18343:32:101","nodeType":"YulFunctionCall","src":"18343:32:101"}],"functionName":{"name":"mstore","nativeSrc":"18316:6:101","nodeType":"YulIdentifier","src":"18316:6:101"},"nativeSrc":"18316:60:101","nodeType":"YulFunctionCall","src":"18316:60:101"},"nativeSrc":"18316:60:101","nodeType":"YulExpressionStatement","src":"18316:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18396:9:101","nodeType":"YulIdentifier","src":"18396:9:101"},{"kind":"number","nativeSrc":"18407:2:101","nodeType":"YulLiteral","src":"18407:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"18392:3:101","nodeType":"YulIdentifier","src":"18392:3:101"},"nativeSrc":"18392:18:101","nodeType":"YulFunctionCall","src":"18392:18:101"},{"name":"value3","nativeSrc":"18412:6:101","nodeType":"YulIdentifier","src":"18412:6:101"}],"functionName":{"name":"mstore","nativeSrc":"18385:6:101","nodeType":"YulIdentifier","src":"18385:6:101"},"nativeSrc":"18385:34:101","nodeType":"YulFunctionCall","src":"18385:34:101"},"nativeSrc":"18385:34:101","nodeType":"YulExpressionStatement","src":"18385:34:101"}]},"name":"abi_encode_tuple_t_contract$_EToken_$21755_t_address_t_address_t_uint256__to_t_address_t_address_t_address_t_uint256__fromStack_reversed","nativeSrc":"17940:485:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18086:9:101","nodeType":"YulTypedName","src":"18086:9:101","type":""},{"name":"value3","nativeSrc":"18097:6:101","nodeType":"YulTypedName","src":"18097:6:101","type":""},{"name":"value2","nativeSrc":"18105:6:101","nodeType":"YulTypedName","src":"18105:6:101","type":""},{"name":"value1","nativeSrc":"18113:6:101","nodeType":"YulTypedName","src":"18113:6:101","type":""},{"name":"value0","nativeSrc":"18121:6:101","nodeType":"YulTypedName","src":"18121:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18132:4:101","nodeType":"YulTypedName","src":"18132:4:101","type":""}],"src":"17940:485:101"},{"body":{"nativeSrc":"18534:170:101","nodeType":"YulBlock","src":"18534:170:101","statements":[{"body":{"nativeSrc":"18580:16:101","nodeType":"YulBlock","src":"18580:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18589:1:101","nodeType":"YulLiteral","src":"18589:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"18592:1:101","nodeType":"YulLiteral","src":"18592:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18582:6:101","nodeType":"YulIdentifier","src":"18582:6:101"},"nativeSrc":"18582:12:101","nodeType":"YulFunctionCall","src":"18582:12:101"},"nativeSrc":"18582:12:101","nodeType":"YulExpressionStatement","src":"18582:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18555:7:101","nodeType":"YulIdentifier","src":"18555:7:101"},{"name":"headStart","nativeSrc":"18564:9:101","nodeType":"YulIdentifier","src":"18564:9:101"}],"functionName":{"name":"sub","nativeSrc":"18551:3:101","nodeType":"YulIdentifier","src":"18551:3:101"},"nativeSrc":"18551:23:101","nodeType":"YulFunctionCall","src":"18551:23:101"},{"kind":"number","nativeSrc":"18576:2:101","nodeType":"YulLiteral","src":"18576:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"18547:3:101","nodeType":"YulIdentifier","src":"18547:3:101"},"nativeSrc":"18547:32:101","nodeType":"YulFunctionCall","src":"18547:32:101"},"nativeSrc":"18544:52:101","nodeType":"YulIf","src":"18544:52:101"},{"nativeSrc":"18605:29:101","nodeType":"YulVariableDeclaration","src":"18605:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"18624:9:101","nodeType":"YulIdentifier","src":"18624:9:101"}],"functionName":{"name":"mload","nativeSrc":"18618:5:101","nodeType":"YulIdentifier","src":"18618:5:101"},"nativeSrc":"18618:16:101","nodeType":"YulFunctionCall","src":"18618:16:101"},"variables":[{"name":"value","nativeSrc":"18609:5:101","nodeType":"YulTypedName","src":"18609:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"18668:5:101","nodeType":"YulIdentifier","src":"18668:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"18643:24:101","nodeType":"YulIdentifier","src":"18643:24:101"},"nativeSrc":"18643:31:101","nodeType":"YulFunctionCall","src":"18643:31:101"},"nativeSrc":"18643:31:101","nodeType":"YulExpressionStatement","src":"18643:31:101"},{"nativeSrc":"18683:15:101","nodeType":"YulAssignment","src":"18683:15:101","value":{"name":"value","nativeSrc":"18693:5:101","nodeType":"YulIdentifier","src":"18693:5:101"},"variableNames":[{"name":"value0","nativeSrc":"18683:6:101","nodeType":"YulIdentifier","src":"18683:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory","nativeSrc":"18430:274:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18500:9:101","nodeType":"YulTypedName","src":"18500:9:101","type":""},{"name":"dataEnd","nativeSrc":"18511:7:101","nodeType":"YulTypedName","src":"18511:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18523:6:101","nodeType":"YulTypedName","src":"18523:6:101","type":""}],"src":"18430:274:101"},{"body":{"nativeSrc":"18788:168:101","nodeType":"YulBlock","src":"18788:168:101","statements":[{"body":{"nativeSrc":"18834:16:101","nodeType":"YulBlock","src":"18834:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18843:1:101","nodeType":"YulLiteral","src":"18843:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"18846:1:101","nodeType":"YulLiteral","src":"18846:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18836:6:101","nodeType":"YulIdentifier","src":"18836:6:101"},"nativeSrc":"18836:12:101","nodeType":"YulFunctionCall","src":"18836:12:101"},"nativeSrc":"18836:12:101","nodeType":"YulExpressionStatement","src":"18836:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18809:7:101","nodeType":"YulIdentifier","src":"18809:7:101"},{"name":"headStart","nativeSrc":"18818:9:101","nodeType":"YulIdentifier","src":"18818:9:101"}],"functionName":{"name":"sub","nativeSrc":"18805:3:101","nodeType":"YulIdentifier","src":"18805:3:101"},"nativeSrc":"18805:23:101","nodeType":"YulFunctionCall","src":"18805:23:101"},{"kind":"number","nativeSrc":"18830:2:101","nodeType":"YulLiteral","src":"18830:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"18801:3:101","nodeType":"YulIdentifier","src":"18801:3:101"},"nativeSrc":"18801:32:101","nodeType":"YulFunctionCall","src":"18801:32:101"},"nativeSrc":"18798:52:101","nodeType":"YulIf","src":"18798:52:101"},{"nativeSrc":"18859:29:101","nodeType":"YulVariableDeclaration","src":"18859:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"18878:9:101","nodeType":"YulIdentifier","src":"18878:9:101"}],"functionName":{"name":"mload","nativeSrc":"18872:5:101","nodeType":"YulIdentifier","src":"18872:5:101"},"nativeSrc":"18872:16:101","nodeType":"YulFunctionCall","src":"18872:16:101"},"variables":[{"name":"value","nativeSrc":"18863:5:101","nodeType":"YulTypedName","src":"18863:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"18920:5:101","nodeType":"YulIdentifier","src":"18920:5:101"}],"functionName":{"name":"validator_revert_uint8","nativeSrc":"18897:22:101","nodeType":"YulIdentifier","src":"18897:22:101"},"nativeSrc":"18897:29:101","nodeType":"YulFunctionCall","src":"18897:29:101"},"nativeSrc":"18897:29:101","nodeType":"YulExpressionStatement","src":"18897:29:101"},{"nativeSrc":"18935:15:101","nodeType":"YulAssignment","src":"18935:15:101","value":{"name":"value","nativeSrc":"18945:5:101","nodeType":"YulIdentifier","src":"18945:5:101"},"variableNames":[{"name":"value0","nativeSrc":"18935:6:101","nodeType":"YulIdentifier","src":"18935:6:101"}]}]},"name":"abi_decode_tuple_t_uint8_fromMemory","nativeSrc":"18709:247:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18754:9:101","nodeType":"YulTypedName","src":"18754:9:101","type":""},{"name":"dataEnd","nativeSrc":"18765:7:101","nodeType":"YulTypedName","src":"18765:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18777:6:101","nodeType":"YulTypedName","src":"18777:6:101","type":""}],"src":"18709:247:101"},{"body":{"nativeSrc":"19069:101:101","nodeType":"YulBlock","src":"19069:101:101","statements":[{"nativeSrc":"19079:26:101","nodeType":"YulAssignment","src":"19079:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"19091:9:101","nodeType":"YulIdentifier","src":"19091:9:101"},{"kind":"number","nativeSrc":"19102:2:101","nodeType":"YulLiteral","src":"19102:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19087:3:101","nodeType":"YulIdentifier","src":"19087:3:101"},"nativeSrc":"19087:18:101","nodeType":"YulFunctionCall","src":"19087:18:101"},"variableNames":[{"name":"tail","nativeSrc":"19079:4:101","nodeType":"YulIdentifier","src":"19079:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19121:9:101","nodeType":"YulIdentifier","src":"19121:9:101"},{"arguments":[{"name":"value0","nativeSrc":"19136:6:101","nodeType":"YulIdentifier","src":"19136:6:101"},{"kind":"number","nativeSrc":"19144:18:101","nodeType":"YulLiteral","src":"19144:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19132:3:101","nodeType":"YulIdentifier","src":"19132:3:101"},"nativeSrc":"19132:31:101","nodeType":"YulFunctionCall","src":"19132:31:101"}],"functionName":{"name":"mstore","nativeSrc":"19114:6:101","nodeType":"YulIdentifier","src":"19114:6:101"},"nativeSrc":"19114:50:101","nodeType":"YulFunctionCall","src":"19114:50:101"},"nativeSrc":"19114:50:101","nodeType":"YulExpressionStatement","src":"19114:50:101"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nativeSrc":"18961:209:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19038:9:101","nodeType":"YulTypedName","src":"19038:9:101","type":""},{"name":"value0","nativeSrc":"19049:6:101","nodeType":"YulTypedName","src":"19049:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19060:4:101","nodeType":"YulTypedName","src":"19060:4:101","type":""}],"src":"18961:209:101"},{"body":{"nativeSrc":"19349:171:101","nodeType":"YulBlock","src":"19349:171:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19366:9:101","nodeType":"YulIdentifier","src":"19366:9:101"},{"kind":"number","nativeSrc":"19377:2:101","nodeType":"YulLiteral","src":"19377:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"19359:6:101","nodeType":"YulIdentifier","src":"19359:6:101"},"nativeSrc":"19359:21:101","nodeType":"YulFunctionCall","src":"19359:21:101"},"nativeSrc":"19359:21:101","nodeType":"YulExpressionStatement","src":"19359:21:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19400:9:101","nodeType":"YulIdentifier","src":"19400:9:101"},{"kind":"number","nativeSrc":"19411:2:101","nodeType":"YulLiteral","src":"19411:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19396:3:101","nodeType":"YulIdentifier","src":"19396:3:101"},"nativeSrc":"19396:18:101","nodeType":"YulFunctionCall","src":"19396:18:101"},{"kind":"number","nativeSrc":"19416:2:101","nodeType":"YulLiteral","src":"19416:2:101","type":"","value":"21"}],"functionName":{"name":"mstore","nativeSrc":"19389:6:101","nodeType":"YulIdentifier","src":"19389:6:101"},"nativeSrc":"19389:30:101","nodeType":"YulFunctionCall","src":"19389:30:101"},"nativeSrc":"19389:30:101","nodeType":"YulExpressionStatement","src":"19389:30:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19439:9:101","nodeType":"YulIdentifier","src":"19439:9:101"},{"kind":"number","nativeSrc":"19450:2:101","nodeType":"YulLiteral","src":"19450:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19435:3:101","nodeType":"YulIdentifier","src":"19435:3:101"},"nativeSrc":"19435:18:101","nodeType":"YulFunctionCall","src":"19435:18:101"},{"hexValue":"4549503731323a20556e696e697469616c697a6564","kind":"string","nativeSrc":"19455:23:101","nodeType":"YulLiteral","src":"19455:23:101","type":"","value":"EIP712: Uninitialized"}],"functionName":{"name":"mstore","nativeSrc":"19428:6:101","nodeType":"YulIdentifier","src":"19428:6:101"},"nativeSrc":"19428:51:101","nodeType":"YulFunctionCall","src":"19428:51:101"},"nativeSrc":"19428:51:101","nodeType":"YulExpressionStatement","src":"19428:51:101"},{"nativeSrc":"19488:26:101","nodeType":"YulAssignment","src":"19488:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"19500:9:101","nodeType":"YulIdentifier","src":"19500:9:101"},{"kind":"number","nativeSrc":"19511:2:101","nodeType":"YulLiteral","src":"19511:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"19496:3:101","nodeType":"YulIdentifier","src":"19496:3:101"},"nativeSrc":"19496:18:101","nodeType":"YulFunctionCall","src":"19496:18:101"},"variableNames":[{"name":"tail","nativeSrc":"19488:4:101","nodeType":"YulIdentifier","src":"19488:4:101"}]}]},"name":"abi_encode_tuple_t_stringliteral_2e5045ff73280aa8e8acd8c82710f23812497f87f7f576e2220a2ddd0d45eade__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"19175:345:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19326:9:101","nodeType":"YulTypedName","src":"19326:9:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19340:4:101","nodeType":"YulTypedName","src":"19340:4:101","type":""}],"src":"19175:345:101"},{"body":{"nativeSrc":"19627:170:101","nodeType":"YulBlock","src":"19627:170:101","statements":[{"body":{"nativeSrc":"19673:16:101","nodeType":"YulBlock","src":"19673:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19682:1:101","nodeType":"YulLiteral","src":"19682:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"19685:1:101","nodeType":"YulLiteral","src":"19685:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19675:6:101","nodeType":"YulIdentifier","src":"19675:6:101"},"nativeSrc":"19675:12:101","nodeType":"YulFunctionCall","src":"19675:12:101"},"nativeSrc":"19675:12:101","nodeType":"YulExpressionStatement","src":"19675:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"19648:7:101","nodeType":"YulIdentifier","src":"19648:7:101"},{"name":"headStart","nativeSrc":"19657:9:101","nodeType":"YulIdentifier","src":"19657:9:101"}],"functionName":{"name":"sub","nativeSrc":"19644:3:101","nodeType":"YulIdentifier","src":"19644:3:101"},"nativeSrc":"19644:23:101","nodeType":"YulFunctionCall","src":"19644:23:101"},{"kind":"number","nativeSrc":"19669:2:101","nodeType":"YulLiteral","src":"19669:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"19640:3:101","nodeType":"YulIdentifier","src":"19640:3:101"},"nativeSrc":"19640:32:101","nodeType":"YulFunctionCall","src":"19640:32:101"},"nativeSrc":"19637:52:101","nodeType":"YulIf","src":"19637:52:101"},{"nativeSrc":"19698:29:101","nodeType":"YulVariableDeclaration","src":"19698:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"19717:9:101","nodeType":"YulIdentifier","src":"19717:9:101"}],"functionName":{"name":"mload","nativeSrc":"19711:5:101","nodeType":"YulIdentifier","src":"19711:5:101"},"nativeSrc":"19711:16:101","nodeType":"YulFunctionCall","src":"19711:16:101"},"variables":[{"name":"value","nativeSrc":"19702:5:101","nodeType":"YulTypedName","src":"19702:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"19761:5:101","nodeType":"YulIdentifier","src":"19761:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"19736:24:101","nodeType":"YulIdentifier","src":"19736:24:101"},"nativeSrc":"19736:31:101","nodeType":"YulFunctionCall","src":"19736:31:101"},"nativeSrc":"19736:31:101","nodeType":"YulExpressionStatement","src":"19736:31:101"},{"nativeSrc":"19776:15:101","nodeType":"YulAssignment","src":"19776:15:101","value":{"name":"value","nativeSrc":"19786:5:101","nodeType":"YulIdentifier","src":"19786:5:101"},"variableNames":[{"name":"value0","nativeSrc":"19776:6:101","nodeType":"YulIdentifier","src":"19776:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory","nativeSrc":"19525:272:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19593:9:101","nodeType":"YulTypedName","src":"19593:9:101","type":""},{"name":"dataEnd","nativeSrc":"19604:7:101","nodeType":"YulTypedName","src":"19604:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"19616:6:101","nodeType":"YulTypedName","src":"19616:6:101","type":""}],"src":"19525:272:101"},{"body":{"nativeSrc":"19975:171:101","nodeType":"YulBlock","src":"19975:171:101","statements":[{"nativeSrc":"19985:26:101","nodeType":"YulAssignment","src":"19985:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"19997:9:101","nodeType":"YulIdentifier","src":"19997:9:101"},{"kind":"number","nativeSrc":"20008:2:101","nodeType":"YulLiteral","src":"20008:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19993:3:101","nodeType":"YulIdentifier","src":"19993:3:101"},"nativeSrc":"19993:18:101","nodeType":"YulFunctionCall","src":"19993:18:101"},"variableNames":[{"name":"tail","nativeSrc":"19985:4:101","nodeType":"YulIdentifier","src":"19985:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20027:9:101","nodeType":"YulIdentifier","src":"20027:9:101"},{"arguments":[{"name":"value0","nativeSrc":"20042:6:101","nodeType":"YulIdentifier","src":"20042:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20058:3:101","nodeType":"YulLiteral","src":"20058:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"20063:1:101","nodeType":"YulLiteral","src":"20063:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"20054:3:101","nodeType":"YulIdentifier","src":"20054:3:101"},"nativeSrc":"20054:11:101","nodeType":"YulFunctionCall","src":"20054:11:101"},{"kind":"number","nativeSrc":"20067:1:101","nodeType":"YulLiteral","src":"20067:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"20050:3:101","nodeType":"YulIdentifier","src":"20050:3:101"},"nativeSrc":"20050:19:101","nodeType":"YulFunctionCall","src":"20050:19:101"}],"functionName":{"name":"and","nativeSrc":"20038:3:101","nodeType":"YulIdentifier","src":"20038:3:101"},"nativeSrc":"20038:32:101","nodeType":"YulFunctionCall","src":"20038:32:101"}],"functionName":{"name":"mstore","nativeSrc":"20020:6:101","nodeType":"YulIdentifier","src":"20020:6:101"},"nativeSrc":"20020:51:101","nodeType":"YulFunctionCall","src":"20020:51:101"},"nativeSrc":"20020:51:101","nodeType":"YulExpressionStatement","src":"20020:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20091:9:101","nodeType":"YulIdentifier","src":"20091:9:101"},{"kind":"number","nativeSrc":"20102:2:101","nodeType":"YulLiteral","src":"20102:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20087:3:101","nodeType":"YulIdentifier","src":"20087:3:101"},"nativeSrc":"20087:18:101","nodeType":"YulFunctionCall","src":"20087:18:101"},{"arguments":[{"name":"value1","nativeSrc":"20111:6:101","nodeType":"YulIdentifier","src":"20111:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20127:3:101","nodeType":"YulLiteral","src":"20127:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"20132:1:101","nodeType":"YulLiteral","src":"20132:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"20123:3:101","nodeType":"YulIdentifier","src":"20123:3:101"},"nativeSrc":"20123:11:101","nodeType":"YulFunctionCall","src":"20123:11:101"},{"kind":"number","nativeSrc":"20136:1:101","nodeType":"YulLiteral","src":"20136:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"20119:3:101","nodeType":"YulIdentifier","src":"20119:3:101"},"nativeSrc":"20119:19:101","nodeType":"YulFunctionCall","src":"20119:19:101"}],"functionName":{"name":"and","nativeSrc":"20107:3:101","nodeType":"YulIdentifier","src":"20107:3:101"},"nativeSrc":"20107:32:101","nodeType":"YulFunctionCall","src":"20107:32:101"}],"functionName":{"name":"mstore","nativeSrc":"20080:6:101","nodeType":"YulIdentifier","src":"20080:6:101"},"nativeSrc":"20080:60:101","nodeType":"YulFunctionCall","src":"20080:60:101"},"nativeSrc":"20080:60:101","nodeType":"YulExpressionStatement","src":"20080:60:101"}]},"name":"abi_encode_tuple_t_contract$_ILPWhitelist_$28916_t_contract$_ILPWhitelist_$28916__to_t_address_t_address__fromStack_reversed","nativeSrc":"19802:344:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19936:9:101","nodeType":"YulTypedName","src":"19936:9:101","type":""},{"name":"value1","nativeSrc":"19947:6:101","nodeType":"YulTypedName","src":"19947:6:101","type":""},{"name":"value0","nativeSrc":"19955:6:101","nodeType":"YulTypedName","src":"19955:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19966:4:101","nodeType":"YulTypedName","src":"19966:4:101","type":""}],"src":"19802:344:101"},{"body":{"nativeSrc":"20268:102:101","nodeType":"YulBlock","src":"20268:102:101","statements":[{"nativeSrc":"20278:26:101","nodeType":"YulAssignment","src":"20278:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"20290:9:101","nodeType":"YulIdentifier","src":"20290:9:101"},{"kind":"number","nativeSrc":"20301:2:101","nodeType":"YulLiteral","src":"20301:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20286:3:101","nodeType":"YulIdentifier","src":"20286:3:101"},"nativeSrc":"20286:18:101","nodeType":"YulFunctionCall","src":"20286:18:101"},"variableNames":[{"name":"tail","nativeSrc":"20278:4:101","nodeType":"YulIdentifier","src":"20278:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20320:9:101","nodeType":"YulIdentifier","src":"20320:9:101"},{"arguments":[{"name":"value0","nativeSrc":"20335:6:101","nodeType":"YulIdentifier","src":"20335:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20351:3:101","nodeType":"YulLiteral","src":"20351:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"20356:1:101","nodeType":"YulLiteral","src":"20356:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"20347:3:101","nodeType":"YulIdentifier","src":"20347:3:101"},"nativeSrc":"20347:11:101","nodeType":"YulFunctionCall","src":"20347:11:101"},{"kind":"number","nativeSrc":"20360:1:101","nodeType":"YulLiteral","src":"20360:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"20343:3:101","nodeType":"YulIdentifier","src":"20343:3:101"},"nativeSrc":"20343:19:101","nodeType":"YulFunctionCall","src":"20343:19:101"}],"functionName":{"name":"and","nativeSrc":"20331:3:101","nodeType":"YulIdentifier","src":"20331:3:101"},"nativeSrc":"20331:32:101","nodeType":"YulFunctionCall","src":"20331:32:101"}],"functionName":{"name":"mstore","nativeSrc":"20313:6:101","nodeType":"YulIdentifier","src":"20313:6:101"},"nativeSrc":"20313:51:101","nodeType":"YulFunctionCall","src":"20313:51:101"},"nativeSrc":"20313:51:101","nodeType":"YulExpressionStatement","src":"20313:51:101"}]},"name":"abi_encode_tuple_t_contract$_EToken_$21755__to_t_address__fromStack_reversed","nativeSrc":"20151:219:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20237:9:101","nodeType":"YulTypedName","src":"20237:9:101","type":""},{"name":"value0","nativeSrc":"20248:6:101","nodeType":"YulTypedName","src":"20248:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20259:4:101","nodeType":"YulTypedName","src":"20259:4:101","type":""}],"src":"20151:219:101"},{"body":{"nativeSrc":"20423:77:101","nodeType":"YulBlock","src":"20423:77:101","statements":[{"nativeSrc":"20433:16:101","nodeType":"YulAssignment","src":"20433:16:101","value":{"arguments":[{"name":"x","nativeSrc":"20444:1:101","nodeType":"YulIdentifier","src":"20444:1:101"},{"name":"y","nativeSrc":"20447:1:101","nodeType":"YulIdentifier","src":"20447:1:101"}],"functionName":{"name":"add","nativeSrc":"20440:3:101","nodeType":"YulIdentifier","src":"20440:3:101"},"nativeSrc":"20440:9:101","nodeType":"YulFunctionCall","src":"20440:9:101"},"variableNames":[{"name":"sum","nativeSrc":"20433:3:101","nodeType":"YulIdentifier","src":"20433:3:101"}]},{"body":{"nativeSrc":"20472:22:101","nodeType":"YulBlock","src":"20472:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"20474:16:101","nodeType":"YulIdentifier","src":"20474:16:101"},"nativeSrc":"20474:18:101","nodeType":"YulFunctionCall","src":"20474:18:101"},"nativeSrc":"20474:18:101","nodeType":"YulExpressionStatement","src":"20474:18:101"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"20464:1:101","nodeType":"YulIdentifier","src":"20464:1:101"},{"name":"sum","nativeSrc":"20467:3:101","nodeType":"YulIdentifier","src":"20467:3:101"}],"functionName":{"name":"gt","nativeSrc":"20461:2:101","nodeType":"YulIdentifier","src":"20461:2:101"},"nativeSrc":"20461:10:101","nodeType":"YulFunctionCall","src":"20461:10:101"},"nativeSrc":"20458:36:101","nodeType":"YulIf","src":"20458:36:101"}]},"name":"checked_add_t_uint256","nativeSrc":"20375:125:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"20406:1:101","nodeType":"YulTypedName","src":"20406:1:101","type":""},{"name":"y","nativeSrc":"20409:1:101","nodeType":"YulTypedName","src":"20409:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"20415:3:101","nodeType":"YulTypedName","src":"20415:3:101","type":""}],"src":"20375:125:101"},{"body":{"nativeSrc":"20634:145:101","nodeType":"YulBlock","src":"20634:145:101","statements":[{"nativeSrc":"20644:26:101","nodeType":"YulAssignment","src":"20644:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"20656:9:101","nodeType":"YulIdentifier","src":"20656:9:101"},{"kind":"number","nativeSrc":"20667:2:101","nodeType":"YulLiteral","src":"20667:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20652:3:101","nodeType":"YulIdentifier","src":"20652:3:101"},"nativeSrc":"20652:18:101","nodeType":"YulFunctionCall","src":"20652:18:101"},"variableNames":[{"name":"tail","nativeSrc":"20644:4:101","nodeType":"YulIdentifier","src":"20644:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20686:9:101","nodeType":"YulIdentifier","src":"20686:9:101"},{"name":"value0","nativeSrc":"20697:6:101","nodeType":"YulIdentifier","src":"20697:6:101"}],"functionName":{"name":"mstore","nativeSrc":"20679:6:101","nodeType":"YulIdentifier","src":"20679:6:101"},"nativeSrc":"20679:25:101","nodeType":"YulFunctionCall","src":"20679:25:101"},"nativeSrc":"20679:25:101","nodeType":"YulExpressionStatement","src":"20679:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20724:9:101","nodeType":"YulIdentifier","src":"20724:9:101"},{"kind":"number","nativeSrc":"20735:2:101","nodeType":"YulLiteral","src":"20735:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20720:3:101","nodeType":"YulIdentifier","src":"20720:3:101"},"nativeSrc":"20720:18:101","nodeType":"YulFunctionCall","src":"20720:18:101"},{"arguments":[{"name":"value1","nativeSrc":"20744:6:101","nodeType":"YulIdentifier","src":"20744:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20760:3:101","nodeType":"YulLiteral","src":"20760:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"20765:1:101","nodeType":"YulLiteral","src":"20765:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"20756:3:101","nodeType":"YulIdentifier","src":"20756:3:101"},"nativeSrc":"20756:11:101","nodeType":"YulFunctionCall","src":"20756:11:101"},{"kind":"number","nativeSrc":"20769:1:101","nodeType":"YulLiteral","src":"20769:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"20752:3:101","nodeType":"YulIdentifier","src":"20752:3:101"},"nativeSrc":"20752:19:101","nodeType":"YulFunctionCall","src":"20752:19:101"}],"functionName":{"name":"and","nativeSrc":"20740:3:101","nodeType":"YulIdentifier","src":"20740:3:101"},"nativeSrc":"20740:32:101","nodeType":"YulFunctionCall","src":"20740:32:101"}],"functionName":{"name":"mstore","nativeSrc":"20713:6:101","nodeType":"YulIdentifier","src":"20713:6:101"},"nativeSrc":"20713:60:101","nodeType":"YulFunctionCall","src":"20713:60:101"},"nativeSrc":"20713:60:101","nodeType":"YulExpressionStatement","src":"20713:60:101"}]},"name":"abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed","nativeSrc":"20505:274:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20595:9:101","nodeType":"YulTypedName","src":"20595:9:101","type":""},{"name":"value1","nativeSrc":"20606:6:101","nodeType":"YulTypedName","src":"20606:6:101","type":""},{"name":"value0","nativeSrc":"20614:6:101","nodeType":"YulTypedName","src":"20614:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20625:4:101","nodeType":"YulTypedName","src":"20625:4:101","type":""}],"src":"20505:274:101"},{"body":{"nativeSrc":"20816:95:101","nodeType":"YulBlock","src":"20816:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20833:1:101","nodeType":"YulLiteral","src":"20833:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"20840:3:101","nodeType":"YulLiteral","src":"20840:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"20845:10:101","nodeType":"YulLiteral","src":"20845:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"20836:3:101","nodeType":"YulIdentifier","src":"20836:3:101"},"nativeSrc":"20836:20:101","nodeType":"YulFunctionCall","src":"20836:20:101"}],"functionName":{"name":"mstore","nativeSrc":"20826:6:101","nodeType":"YulIdentifier","src":"20826:6:101"},"nativeSrc":"20826:31:101","nodeType":"YulFunctionCall","src":"20826:31:101"},"nativeSrc":"20826:31:101","nodeType":"YulExpressionStatement","src":"20826:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"20873:1:101","nodeType":"YulLiteral","src":"20873:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"20876:4:101","nodeType":"YulLiteral","src":"20876:4:101","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"20866:6:101","nodeType":"YulIdentifier","src":"20866:6:101"},"nativeSrc":"20866:15:101","nodeType":"YulFunctionCall","src":"20866:15:101"},"nativeSrc":"20866:15:101","nodeType":"YulExpressionStatement","src":"20866:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"20897:1:101","nodeType":"YulLiteral","src":"20897:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"20900:4:101","nodeType":"YulLiteral","src":"20900:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"20890:6:101","nodeType":"YulIdentifier","src":"20890:6:101"},"nativeSrc":"20890:15:101","nodeType":"YulFunctionCall","src":"20890:15:101"},"nativeSrc":"20890:15:101","nodeType":"YulExpressionStatement","src":"20890:15:101"}]},"name":"panic_error_0x21","nativeSrc":"20784:127:101","nodeType":"YulFunctionDefinition","src":"20784:127:101"},{"body":{"nativeSrc":"20967:186:101","nodeType":"YulBlock","src":"20967:186:101","statements":[{"body":{"nativeSrc":"21009:111:101","nodeType":"YulBlock","src":"21009:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21030:1:101","nodeType":"YulLiteral","src":"21030:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"21037:3:101","nodeType":"YulLiteral","src":"21037:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"21042:10:101","nodeType":"YulLiteral","src":"21042:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"21033:3:101","nodeType":"YulIdentifier","src":"21033:3:101"},"nativeSrc":"21033:20:101","nodeType":"YulFunctionCall","src":"21033:20:101"}],"functionName":{"name":"mstore","nativeSrc":"21023:6:101","nodeType":"YulIdentifier","src":"21023:6:101"},"nativeSrc":"21023:31:101","nodeType":"YulFunctionCall","src":"21023:31:101"},"nativeSrc":"21023:31:101","nodeType":"YulExpressionStatement","src":"21023:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"21074:1:101","nodeType":"YulLiteral","src":"21074:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"21077:4:101","nodeType":"YulLiteral","src":"21077:4:101","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"21067:6:101","nodeType":"YulIdentifier","src":"21067:6:101"},"nativeSrc":"21067:15:101","nodeType":"YulFunctionCall","src":"21067:15:101"},"nativeSrc":"21067:15:101","nodeType":"YulExpressionStatement","src":"21067:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"21102:1:101","nodeType":"YulLiteral","src":"21102:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"21105:4:101","nodeType":"YulLiteral","src":"21105:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"21095:6:101","nodeType":"YulIdentifier","src":"21095:6:101"},"nativeSrc":"21095:15:101","nodeType":"YulFunctionCall","src":"21095:15:101"},"nativeSrc":"21095:15:101","nodeType":"YulExpressionStatement","src":"21095:15:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20990:5:101","nodeType":"YulIdentifier","src":"20990:5:101"},{"kind":"number","nativeSrc":"20997:1:101","nodeType":"YulLiteral","src":"20997:1:101","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"20987:2:101","nodeType":"YulIdentifier","src":"20987:2:101"},"nativeSrc":"20987:12:101","nodeType":"YulFunctionCall","src":"20987:12:101"}],"functionName":{"name":"iszero","nativeSrc":"20980:6:101","nodeType":"YulIdentifier","src":"20980:6:101"},"nativeSrc":"20980:20:101","nodeType":"YulFunctionCall","src":"20980:20:101"},"nativeSrc":"20977:143:101","nodeType":"YulIf","src":"20977:143:101"},{"expression":{"arguments":[{"name":"pos","nativeSrc":"21136:3:101","nodeType":"YulIdentifier","src":"21136:3:101"},{"name":"value","nativeSrc":"21141:5:101","nodeType":"YulIdentifier","src":"21141:5:101"}],"functionName":{"name":"mstore","nativeSrc":"21129:6:101","nodeType":"YulIdentifier","src":"21129:6:101"},"nativeSrc":"21129:18:101","nodeType":"YulFunctionCall","src":"21129:18:101"},"nativeSrc":"21129:18:101","nodeType":"YulExpressionStatement","src":"21129:18:101"}]},"name":"abi_encode_enum_Parameter","nativeSrc":"20916:237:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"20951:5:101","nodeType":"YulTypedName","src":"20951:5:101","type":""},{"name":"pos","nativeSrc":"20958:3:101","nodeType":"YulTypedName","src":"20958:3:101","type":""}],"src":"20916:237:101"},{"body":{"nativeSrc":"21272:95:101","nodeType":"YulBlock","src":"21272:95:101","statements":[{"nativeSrc":"21282:26:101","nodeType":"YulAssignment","src":"21282:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"21294:9:101","nodeType":"YulIdentifier","src":"21294:9:101"},{"kind":"number","nativeSrc":"21305:2:101","nodeType":"YulLiteral","src":"21305:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21290:3:101","nodeType":"YulIdentifier","src":"21290:3:101"},"nativeSrc":"21290:18:101","nodeType":"YulFunctionCall","src":"21290:18:101"},"variableNames":[{"name":"tail","nativeSrc":"21282:4:101","nodeType":"YulIdentifier","src":"21282:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"21343:6:101","nodeType":"YulIdentifier","src":"21343:6:101"},{"name":"headStart","nativeSrc":"21351:9:101","nodeType":"YulIdentifier","src":"21351:9:101"}],"functionName":{"name":"abi_encode_enum_Parameter","nativeSrc":"21317:25:101","nodeType":"YulIdentifier","src":"21317:25:101"},"nativeSrc":"21317:44:101","nodeType":"YulFunctionCall","src":"21317:44:101"},"nativeSrc":"21317:44:101","nodeType":"YulExpressionStatement","src":"21317:44:101"}]},"name":"abi_encode_tuple_t_enum$_Parameter_$28704__to_t_uint8__fromStack_reversed","nativeSrc":"21158:209:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21241:9:101","nodeType":"YulTypedName","src":"21241:9:101","type":""},{"name":"value0","nativeSrc":"21252:6:101","nodeType":"YulTypedName","src":"21252:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"21263:4:101","nodeType":"YulTypedName","src":"21263:4:101","type":""}],"src":"21158:209:101"},{"body":{"nativeSrc":"21514:138:101","nodeType":"YulBlock","src":"21514:138:101","statements":[{"nativeSrc":"21524:26:101","nodeType":"YulAssignment","src":"21524:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"21536:9:101","nodeType":"YulIdentifier","src":"21536:9:101"},{"kind":"number","nativeSrc":"21547:2:101","nodeType":"YulLiteral","src":"21547:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21532:3:101","nodeType":"YulIdentifier","src":"21532:3:101"},"nativeSrc":"21532:18:101","nodeType":"YulFunctionCall","src":"21532:18:101"},"variableNames":[{"name":"tail","nativeSrc":"21524:4:101","nodeType":"YulIdentifier","src":"21524:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"21585:6:101","nodeType":"YulIdentifier","src":"21585:6:101"},{"name":"headStart","nativeSrc":"21593:9:101","nodeType":"YulIdentifier","src":"21593:9:101"}],"functionName":{"name":"abi_encode_enum_Parameter","nativeSrc":"21559:25:101","nodeType":"YulIdentifier","src":"21559:25:101"},"nativeSrc":"21559:44:101","nodeType":"YulFunctionCall","src":"21559:44:101"},"nativeSrc":"21559:44:101","nodeType":"YulExpressionStatement","src":"21559:44:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21623:9:101","nodeType":"YulIdentifier","src":"21623:9:101"},{"kind":"number","nativeSrc":"21634:2:101","nodeType":"YulLiteral","src":"21634:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21619:3:101","nodeType":"YulIdentifier","src":"21619:3:101"},"nativeSrc":"21619:18:101","nodeType":"YulFunctionCall","src":"21619:18:101"},{"name":"value1","nativeSrc":"21639:6:101","nodeType":"YulIdentifier","src":"21639:6:101"}],"functionName":{"name":"mstore","nativeSrc":"21612:6:101","nodeType":"YulIdentifier","src":"21612:6:101"},"nativeSrc":"21612:34:101","nodeType":"YulFunctionCall","src":"21612:34:101"},"nativeSrc":"21612:34:101","nodeType":"YulExpressionStatement","src":"21612:34:101"}]},"name":"abi_encode_tuple_t_enum$_Parameter_$28704_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"21372:280:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21475:9:101","nodeType":"YulTypedName","src":"21475:9:101","type":""},{"name":"value1","nativeSrc":"21486:6:101","nodeType":"YulTypedName","src":"21486:6:101","type":""},{"name":"value0","nativeSrc":"21494:6:101","nodeType":"YulTypedName","src":"21494:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"21505:4:101","nodeType":"YulTypedName","src":"21505:4:101","type":""}],"src":"21372:280:101"},{"body":{"nativeSrc":"21700:93:101","nodeType":"YulBlock","src":"21700:93:101","statements":[{"body":{"nativeSrc":"21736:22:101","nodeType":"YulBlock","src":"21736:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"21738:16:101","nodeType":"YulIdentifier","src":"21738:16:101"},"nativeSrc":"21738:18:101","nodeType":"YulFunctionCall","src":"21738:18:101"},"nativeSrc":"21738:18:101","nodeType":"YulExpressionStatement","src":"21738:18:101"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"21716:5:101","nodeType":"YulIdentifier","src":"21716:5:101"},{"arguments":[{"kind":"number","nativeSrc":"21727:3:101","nodeType":"YulLiteral","src":"21727:3:101","type":"","value":"255"},{"kind":"number","nativeSrc":"21732:1:101","nodeType":"YulLiteral","src":"21732:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"21723:3:101","nodeType":"YulIdentifier","src":"21723:3:101"},"nativeSrc":"21723:11:101","nodeType":"YulFunctionCall","src":"21723:11:101"}],"functionName":{"name":"eq","nativeSrc":"21713:2:101","nodeType":"YulIdentifier","src":"21713:2:101"},"nativeSrc":"21713:22:101","nodeType":"YulFunctionCall","src":"21713:22:101"},"nativeSrc":"21710:48:101","nodeType":"YulIf","src":"21710:48:101"},{"nativeSrc":"21767:20:101","nodeType":"YulAssignment","src":"21767:20:101","value":{"arguments":[{"kind":"number","nativeSrc":"21778:1:101","nodeType":"YulLiteral","src":"21778:1:101","type":"","value":"0"},{"name":"value","nativeSrc":"21781:5:101","nodeType":"YulIdentifier","src":"21781:5:101"}],"functionName":{"name":"sub","nativeSrc":"21774:3:101","nodeType":"YulIdentifier","src":"21774:3:101"},"nativeSrc":"21774:13:101","nodeType":"YulFunctionCall","src":"21774:13:101"},"variableNames":[{"name":"ret","nativeSrc":"21767:3:101","nodeType":"YulIdentifier","src":"21767:3:101"}]}]},"name":"negate_t_int256","nativeSrc":"21657:136:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"21682:5:101","nodeType":"YulTypedName","src":"21682:5:101","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"21692:3:101","nodeType":"YulTypedName","src":"21692:3:101","type":""}],"src":"21657:136:101"},{"body":{"nativeSrc":"21961:171:101","nodeType":"YulBlock","src":"21961:171:101","statements":[{"nativeSrc":"21971:26:101","nodeType":"YulAssignment","src":"21971:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"21983:9:101","nodeType":"YulIdentifier","src":"21983:9:101"},{"kind":"number","nativeSrc":"21994:2:101","nodeType":"YulLiteral","src":"21994:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21979:3:101","nodeType":"YulIdentifier","src":"21979:3:101"},"nativeSrc":"21979:18:101","nodeType":"YulFunctionCall","src":"21979:18:101"},"variableNames":[{"name":"tail","nativeSrc":"21971:4:101","nodeType":"YulIdentifier","src":"21971:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22013:9:101","nodeType":"YulIdentifier","src":"22013:9:101"},{"arguments":[{"name":"value0","nativeSrc":"22028:6:101","nodeType":"YulIdentifier","src":"22028:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22044:3:101","nodeType":"YulLiteral","src":"22044:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"22049:1:101","nodeType":"YulLiteral","src":"22049:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22040:3:101","nodeType":"YulIdentifier","src":"22040:3:101"},"nativeSrc":"22040:11:101","nodeType":"YulFunctionCall","src":"22040:11:101"},{"kind":"number","nativeSrc":"22053:1:101","nodeType":"YulLiteral","src":"22053:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"22036:3:101","nodeType":"YulIdentifier","src":"22036:3:101"},"nativeSrc":"22036:19:101","nodeType":"YulFunctionCall","src":"22036:19:101"}],"functionName":{"name":"and","nativeSrc":"22024:3:101","nodeType":"YulIdentifier","src":"22024:3:101"},"nativeSrc":"22024:32:101","nodeType":"YulFunctionCall","src":"22024:32:101"}],"functionName":{"name":"mstore","nativeSrc":"22006:6:101","nodeType":"YulIdentifier","src":"22006:6:101"},"nativeSrc":"22006:51:101","nodeType":"YulFunctionCall","src":"22006:51:101"},"nativeSrc":"22006:51:101","nodeType":"YulExpressionStatement","src":"22006:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22077:9:101","nodeType":"YulIdentifier","src":"22077:9:101"},{"kind":"number","nativeSrc":"22088:2:101","nodeType":"YulLiteral","src":"22088:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22073:3:101","nodeType":"YulIdentifier","src":"22073:3:101"},"nativeSrc":"22073:18:101","nodeType":"YulFunctionCall","src":"22073:18:101"},{"arguments":[{"name":"value1","nativeSrc":"22097:6:101","nodeType":"YulIdentifier","src":"22097:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22113:3:101","nodeType":"YulLiteral","src":"22113:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"22118:1:101","nodeType":"YulLiteral","src":"22118:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22109:3:101","nodeType":"YulIdentifier","src":"22109:3:101"},"nativeSrc":"22109:11:101","nodeType":"YulFunctionCall","src":"22109:11:101"},{"kind":"number","nativeSrc":"22122:1:101","nodeType":"YulLiteral","src":"22122:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"22105:3:101","nodeType":"YulIdentifier","src":"22105:3:101"},"nativeSrc":"22105:19:101","nodeType":"YulFunctionCall","src":"22105:19:101"}],"functionName":{"name":"and","nativeSrc":"22093:3:101","nodeType":"YulIdentifier","src":"22093:3:101"},"nativeSrc":"22093:32:101","nodeType":"YulFunctionCall","src":"22093:32:101"}],"functionName":{"name":"mstore","nativeSrc":"22066:6:101","nodeType":"YulIdentifier","src":"22066:6:101"},"nativeSrc":"22066:60:101","nodeType":"YulFunctionCall","src":"22066:60:101"},"nativeSrc":"22066:60:101","nodeType":"YulExpressionStatement","src":"22066:60:101"}]},"name":"abi_encode_tuple_t_contract$_ICooler_$28695_t_contract$_ICooler_$28695__to_t_address_t_address__fromStack_reversed","nativeSrc":"21798:334:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21922:9:101","nodeType":"YulTypedName","src":"21922:9:101","type":""},{"name":"value1","nativeSrc":"21933:6:101","nodeType":"YulTypedName","src":"21933:6:101","type":""},{"name":"value0","nativeSrc":"21941:6:101","nodeType":"YulTypedName","src":"21941:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"21952:4:101","nodeType":"YulTypedName","src":"21952:4:101","type":""}],"src":"21798:334:101"},{"body":{"nativeSrc":"22378:346:101","nodeType":"YulBlock","src":"22378:346:101","statements":[{"nativeSrc":"22388:27:101","nodeType":"YulAssignment","src":"22388:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"22400:9:101","nodeType":"YulIdentifier","src":"22400:9:101"},{"kind":"number","nativeSrc":"22411:3:101","nodeType":"YulLiteral","src":"22411:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"22396:3:101","nodeType":"YulIdentifier","src":"22396:3:101"},"nativeSrc":"22396:19:101","nodeType":"YulFunctionCall","src":"22396:19:101"},"variableNames":[{"name":"tail","nativeSrc":"22388:4:101","nodeType":"YulIdentifier","src":"22388:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22431:9:101","nodeType":"YulIdentifier","src":"22431:9:101"},{"name":"value0","nativeSrc":"22442:6:101","nodeType":"YulIdentifier","src":"22442:6:101"}],"functionName":{"name":"mstore","nativeSrc":"22424:6:101","nodeType":"YulIdentifier","src":"22424:6:101"},"nativeSrc":"22424:25:101","nodeType":"YulFunctionCall","src":"22424:25:101"},"nativeSrc":"22424:25:101","nodeType":"YulExpressionStatement","src":"22424:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22469:9:101","nodeType":"YulIdentifier","src":"22469:9:101"},{"kind":"number","nativeSrc":"22480:2:101","nodeType":"YulLiteral","src":"22480:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22465:3:101","nodeType":"YulIdentifier","src":"22465:3:101"},"nativeSrc":"22465:18:101","nodeType":"YulFunctionCall","src":"22465:18:101"},{"arguments":[{"name":"value1","nativeSrc":"22489:6:101","nodeType":"YulIdentifier","src":"22489:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22505:3:101","nodeType":"YulLiteral","src":"22505:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"22510:1:101","nodeType":"YulLiteral","src":"22510:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22501:3:101","nodeType":"YulIdentifier","src":"22501:3:101"},"nativeSrc":"22501:11:101","nodeType":"YulFunctionCall","src":"22501:11:101"},{"kind":"number","nativeSrc":"22514:1:101","nodeType":"YulLiteral","src":"22514:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"22497:3:101","nodeType":"YulIdentifier","src":"22497:3:101"},"nativeSrc":"22497:19:101","nodeType":"YulFunctionCall","src":"22497:19:101"}],"functionName":{"name":"and","nativeSrc":"22485:3:101","nodeType":"YulIdentifier","src":"22485:3:101"},"nativeSrc":"22485:32:101","nodeType":"YulFunctionCall","src":"22485:32:101"}],"functionName":{"name":"mstore","nativeSrc":"22458:6:101","nodeType":"YulIdentifier","src":"22458:6:101"},"nativeSrc":"22458:60:101","nodeType":"YulFunctionCall","src":"22458:60:101"},"nativeSrc":"22458:60:101","nodeType":"YulExpressionStatement","src":"22458:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22538:9:101","nodeType":"YulIdentifier","src":"22538:9:101"},{"kind":"number","nativeSrc":"22549:2:101","nodeType":"YulLiteral","src":"22549:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22534:3:101","nodeType":"YulIdentifier","src":"22534:3:101"},"nativeSrc":"22534:18:101","nodeType":"YulFunctionCall","src":"22534:18:101"},{"arguments":[{"name":"value2","nativeSrc":"22558:6:101","nodeType":"YulIdentifier","src":"22558:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22574:3:101","nodeType":"YulLiteral","src":"22574:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"22579:1:101","nodeType":"YulLiteral","src":"22579:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22570:3:101","nodeType":"YulIdentifier","src":"22570:3:101"},"nativeSrc":"22570:11:101","nodeType":"YulFunctionCall","src":"22570:11:101"},{"kind":"number","nativeSrc":"22583:1:101","nodeType":"YulLiteral","src":"22583:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"22566:3:101","nodeType":"YulIdentifier","src":"22566:3:101"},"nativeSrc":"22566:19:101","nodeType":"YulFunctionCall","src":"22566:19:101"}],"functionName":{"name":"and","nativeSrc":"22554:3:101","nodeType":"YulIdentifier","src":"22554:3:101"},"nativeSrc":"22554:32:101","nodeType":"YulFunctionCall","src":"22554:32:101"}],"functionName":{"name":"mstore","nativeSrc":"22527:6:101","nodeType":"YulIdentifier","src":"22527:6:101"},"nativeSrc":"22527:60:101","nodeType":"YulFunctionCall","src":"22527:60:101"},"nativeSrc":"22527:60:101","nodeType":"YulExpressionStatement","src":"22527:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22607:9:101","nodeType":"YulIdentifier","src":"22607:9:101"},{"kind":"number","nativeSrc":"22618:2:101","nodeType":"YulLiteral","src":"22618:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"22603:3:101","nodeType":"YulIdentifier","src":"22603:3:101"},"nativeSrc":"22603:18:101","nodeType":"YulFunctionCall","src":"22603:18:101"},{"name":"value3","nativeSrc":"22623:6:101","nodeType":"YulIdentifier","src":"22623:6:101"}],"functionName":{"name":"mstore","nativeSrc":"22596:6:101","nodeType":"YulIdentifier","src":"22596:6:101"},"nativeSrc":"22596:34:101","nodeType":"YulFunctionCall","src":"22596:34:101"},"nativeSrc":"22596:34:101","nodeType":"YulExpressionStatement","src":"22596:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22650:9:101","nodeType":"YulIdentifier","src":"22650:9:101"},{"kind":"number","nativeSrc":"22661:3:101","nodeType":"YulLiteral","src":"22661:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"22646:3:101","nodeType":"YulIdentifier","src":"22646:3:101"},"nativeSrc":"22646:19:101","nodeType":"YulFunctionCall","src":"22646:19:101"},{"name":"value4","nativeSrc":"22667:6:101","nodeType":"YulIdentifier","src":"22667:6:101"}],"functionName":{"name":"mstore","nativeSrc":"22639:6:101","nodeType":"YulIdentifier","src":"22639:6:101"},"nativeSrc":"22639:35:101","nodeType":"YulFunctionCall","src":"22639:35:101"},"nativeSrc":"22639:35:101","nodeType":"YulExpressionStatement","src":"22639:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22694:9:101","nodeType":"YulIdentifier","src":"22694:9:101"},{"kind":"number","nativeSrc":"22705:3:101","nodeType":"YulLiteral","src":"22705:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"22690:3:101","nodeType":"YulIdentifier","src":"22690:3:101"},"nativeSrc":"22690:19:101","nodeType":"YulFunctionCall","src":"22690:19:101"},{"name":"value5","nativeSrc":"22711:6:101","nodeType":"YulIdentifier","src":"22711:6:101"}],"functionName":{"name":"mstore","nativeSrc":"22683:6:101","nodeType":"YulIdentifier","src":"22683:6:101"},"nativeSrc":"22683:35:101","nodeType":"YulFunctionCall","src":"22683:35:101"},"nativeSrc":"22683:35:101","nodeType":"YulExpressionStatement","src":"22683:35:101"}]},"name":"abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"22137:587:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22307:9:101","nodeType":"YulTypedName","src":"22307:9:101","type":""},{"name":"value5","nativeSrc":"22318:6:101","nodeType":"YulTypedName","src":"22318:6:101","type":""},{"name":"value4","nativeSrc":"22326:6:101","nodeType":"YulTypedName","src":"22326:6:101","type":""},{"name":"value3","nativeSrc":"22334:6:101","nodeType":"YulTypedName","src":"22334:6:101","type":""},{"name":"value2","nativeSrc":"22342:6:101","nodeType":"YulTypedName","src":"22342:6:101","type":""},{"name":"value1","nativeSrc":"22350:6:101","nodeType":"YulTypedName","src":"22350:6:101","type":""},{"name":"value0","nativeSrc":"22358:6:101","nodeType":"YulTypedName","src":"22358:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22369:4:101","nodeType":"YulTypedName","src":"22369:4:101","type":""}],"src":"22137:587:101"},{"body":{"nativeSrc":"22858:171:101","nodeType":"YulBlock","src":"22858:171:101","statements":[{"nativeSrc":"22868:26:101","nodeType":"YulAssignment","src":"22868:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"22880:9:101","nodeType":"YulIdentifier","src":"22880:9:101"},{"kind":"number","nativeSrc":"22891:2:101","nodeType":"YulLiteral","src":"22891:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22876:3:101","nodeType":"YulIdentifier","src":"22876:3:101"},"nativeSrc":"22876:18:101","nodeType":"YulFunctionCall","src":"22876:18:101"},"variableNames":[{"name":"tail","nativeSrc":"22868:4:101","nodeType":"YulIdentifier","src":"22868:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22910:9:101","nodeType":"YulIdentifier","src":"22910:9:101"},{"arguments":[{"name":"value0","nativeSrc":"22925:6:101","nodeType":"YulIdentifier","src":"22925:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22941:3:101","nodeType":"YulLiteral","src":"22941:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"22946:1:101","nodeType":"YulLiteral","src":"22946:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22937:3:101","nodeType":"YulIdentifier","src":"22937:3:101"},"nativeSrc":"22937:11:101","nodeType":"YulFunctionCall","src":"22937:11:101"},{"kind":"number","nativeSrc":"22950:1:101","nodeType":"YulLiteral","src":"22950:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"22933:3:101","nodeType":"YulIdentifier","src":"22933:3:101"},"nativeSrc":"22933:19:101","nodeType":"YulFunctionCall","src":"22933:19:101"}],"functionName":{"name":"and","nativeSrc":"22921:3:101","nodeType":"YulIdentifier","src":"22921:3:101"},"nativeSrc":"22921:32:101","nodeType":"YulFunctionCall","src":"22921:32:101"}],"functionName":{"name":"mstore","nativeSrc":"22903:6:101","nodeType":"YulIdentifier","src":"22903:6:101"},"nativeSrc":"22903:51:101","nodeType":"YulFunctionCall","src":"22903:51:101"},"nativeSrc":"22903:51:101","nodeType":"YulExpressionStatement","src":"22903:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22974:9:101","nodeType":"YulIdentifier","src":"22974:9:101"},{"kind":"number","nativeSrc":"22985:2:101","nodeType":"YulLiteral","src":"22985:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22970:3:101","nodeType":"YulIdentifier","src":"22970:3:101"},"nativeSrc":"22970:18:101","nodeType":"YulFunctionCall","src":"22970:18:101"},{"arguments":[{"name":"value1","nativeSrc":"22994:6:101","nodeType":"YulIdentifier","src":"22994:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"23010:3:101","nodeType":"YulLiteral","src":"23010:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"23015:1:101","nodeType":"YulLiteral","src":"23015:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"23006:3:101","nodeType":"YulIdentifier","src":"23006:3:101"},"nativeSrc":"23006:11:101","nodeType":"YulFunctionCall","src":"23006:11:101"},{"kind":"number","nativeSrc":"23019:1:101","nodeType":"YulLiteral","src":"23019:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"23002:3:101","nodeType":"YulIdentifier","src":"23002:3:101"},"nativeSrc":"23002:19:101","nodeType":"YulFunctionCall","src":"23002:19:101"}],"functionName":{"name":"and","nativeSrc":"22990:3:101","nodeType":"YulIdentifier","src":"22990:3:101"},"nativeSrc":"22990:32:101","nodeType":"YulFunctionCall","src":"22990:32:101"}],"functionName":{"name":"mstore","nativeSrc":"22963:6:101","nodeType":"YulIdentifier","src":"22963:6:101"},"nativeSrc":"22963:60:101","nodeType":"YulFunctionCall","src":"22963:60:101"},"nativeSrc":"22963:60:101","nodeType":"YulExpressionStatement","src":"22963:60:101"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nativeSrc":"22729:300:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22819:9:101","nodeType":"YulTypedName","src":"22819:9:101","type":""},{"name":"value1","nativeSrc":"22830:6:101","nodeType":"YulTypedName","src":"22830:6:101","type":""},{"name":"value0","nativeSrc":"22838:6:101","nodeType":"YulTypedName","src":"22838:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22849:4:101","nodeType":"YulTypedName","src":"22849:4:101","type":""}],"src":"22729:300:101"},{"body":{"nativeSrc":"23066:95:101","nodeType":"YulBlock","src":"23066:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23083:1:101","nodeType":"YulLiteral","src":"23083:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"23090:3:101","nodeType":"YulLiteral","src":"23090:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"23095:10:101","nodeType":"YulLiteral","src":"23095:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"23086:3:101","nodeType":"YulIdentifier","src":"23086:3:101"},"nativeSrc":"23086:20:101","nodeType":"YulFunctionCall","src":"23086:20:101"}],"functionName":{"name":"mstore","nativeSrc":"23076:6:101","nodeType":"YulIdentifier","src":"23076:6:101"},"nativeSrc":"23076:31:101","nodeType":"YulFunctionCall","src":"23076:31:101"},"nativeSrc":"23076:31:101","nodeType":"YulExpressionStatement","src":"23076:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"23123:1:101","nodeType":"YulLiteral","src":"23123:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"23126:4:101","nodeType":"YulLiteral","src":"23126:4:101","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"23116:6:101","nodeType":"YulIdentifier","src":"23116:6:101"},"nativeSrc":"23116:15:101","nodeType":"YulFunctionCall","src":"23116:15:101"},"nativeSrc":"23116:15:101","nodeType":"YulExpressionStatement","src":"23116:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"23147:1:101","nodeType":"YulLiteral","src":"23147:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"23150:4:101","nodeType":"YulLiteral","src":"23150:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"23140:6:101","nodeType":"YulIdentifier","src":"23140:6:101"},"nativeSrc":"23140:15:101","nodeType":"YulFunctionCall","src":"23140:15:101"},"nativeSrc":"23140:15:101","nodeType":"YulExpressionStatement","src":"23140:15:101"}]},"name":"panic_error_0x12","nativeSrc":"23034:127:101","nodeType":"YulFunctionDefinition","src":"23034:127:101"},{"body":{"nativeSrc":"23323:188:101","nodeType":"YulBlock","src":"23323:188:101","statements":[{"nativeSrc":"23333:26:101","nodeType":"YulAssignment","src":"23333:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"23345:9:101","nodeType":"YulIdentifier","src":"23345:9:101"},{"kind":"number","nativeSrc":"23356:2:101","nodeType":"YulLiteral","src":"23356:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"23341:3:101","nodeType":"YulIdentifier","src":"23341:3:101"},"nativeSrc":"23341:18:101","nodeType":"YulFunctionCall","src":"23341:18:101"},"variableNames":[{"name":"tail","nativeSrc":"23333:4:101","nodeType":"YulIdentifier","src":"23333:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"23375:9:101","nodeType":"YulIdentifier","src":"23375:9:101"},{"arguments":[{"name":"value0","nativeSrc":"23390:6:101","nodeType":"YulIdentifier","src":"23390:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"23406:3:101","nodeType":"YulLiteral","src":"23406:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"23411:1:101","nodeType":"YulLiteral","src":"23411:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"23402:3:101","nodeType":"YulIdentifier","src":"23402:3:101"},"nativeSrc":"23402:11:101","nodeType":"YulFunctionCall","src":"23402:11:101"},{"kind":"number","nativeSrc":"23415:1:101","nodeType":"YulLiteral","src":"23415:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"23398:3:101","nodeType":"YulIdentifier","src":"23398:3:101"},"nativeSrc":"23398:19:101","nodeType":"YulFunctionCall","src":"23398:19:101"}],"functionName":{"name":"and","nativeSrc":"23386:3:101","nodeType":"YulIdentifier","src":"23386:3:101"},"nativeSrc":"23386:32:101","nodeType":"YulFunctionCall","src":"23386:32:101"}],"functionName":{"name":"mstore","nativeSrc":"23368:6:101","nodeType":"YulIdentifier","src":"23368:6:101"},"nativeSrc":"23368:51:101","nodeType":"YulFunctionCall","src":"23368:51:101"},"nativeSrc":"23368:51:101","nodeType":"YulExpressionStatement","src":"23368:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23439:9:101","nodeType":"YulIdentifier","src":"23439:9:101"},{"kind":"number","nativeSrc":"23450:2:101","nodeType":"YulLiteral","src":"23450:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23435:3:101","nodeType":"YulIdentifier","src":"23435:3:101"},"nativeSrc":"23435:18:101","nodeType":"YulFunctionCall","src":"23435:18:101"},{"name":"value1","nativeSrc":"23455:6:101","nodeType":"YulIdentifier","src":"23455:6:101"}],"functionName":{"name":"mstore","nativeSrc":"23428:6:101","nodeType":"YulIdentifier","src":"23428:6:101"},"nativeSrc":"23428:34:101","nodeType":"YulFunctionCall","src":"23428:34:101"},"nativeSrc":"23428:34:101","nodeType":"YulExpressionStatement","src":"23428:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23482:9:101","nodeType":"YulIdentifier","src":"23482:9:101"},{"kind":"number","nativeSrc":"23493:2:101","nodeType":"YulLiteral","src":"23493:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"23478:3:101","nodeType":"YulIdentifier","src":"23478:3:101"},"nativeSrc":"23478:18:101","nodeType":"YulFunctionCall","src":"23478:18:101"},{"name":"value2","nativeSrc":"23498:6:101","nodeType":"YulIdentifier","src":"23498:6:101"}],"functionName":{"name":"mstore","nativeSrc":"23471:6:101","nodeType":"YulIdentifier","src":"23471:6:101"},"nativeSrc":"23471:34:101","nodeType":"YulFunctionCall","src":"23471:34:101"},"nativeSrc":"23471:34:101","nodeType":"YulExpressionStatement","src":"23471:34:101"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"23166:345:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23276:9:101","nodeType":"YulTypedName","src":"23276:9:101","type":""},{"name":"value2","nativeSrc":"23287:6:101","nodeType":"YulTypedName","src":"23287:6:101","type":""},{"name":"value1","nativeSrc":"23295:6:101","nodeType":"YulTypedName","src":"23295:6:101","type":""},{"name":"value0","nativeSrc":"23303:6:101","nodeType":"YulTypedName","src":"23303:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"23314:4:101","nodeType":"YulTypedName","src":"23314:4:101","type":""}],"src":"23166:345:101"},{"body":{"nativeSrc":"23564:122:101","nodeType":"YulBlock","src":"23564:122:101","statements":[{"nativeSrc":"23574:51:101","nodeType":"YulAssignment","src":"23574:51:101","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"23590:1:101","nodeType":"YulIdentifier","src":"23590:1:101"},{"kind":"number","nativeSrc":"23593:10:101","nodeType":"YulLiteral","src":"23593:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"23586:3:101","nodeType":"YulIdentifier","src":"23586:3:101"},"nativeSrc":"23586:18:101","nodeType":"YulFunctionCall","src":"23586:18:101"},{"arguments":[{"name":"y","nativeSrc":"23610:1:101","nodeType":"YulIdentifier","src":"23610:1:101"},{"kind":"number","nativeSrc":"23613:10:101","nodeType":"YulLiteral","src":"23613:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"23606:3:101","nodeType":"YulIdentifier","src":"23606:3:101"},"nativeSrc":"23606:18:101","nodeType":"YulFunctionCall","src":"23606:18:101"}],"functionName":{"name":"sub","nativeSrc":"23582:3:101","nodeType":"YulIdentifier","src":"23582:3:101"},"nativeSrc":"23582:43:101","nodeType":"YulFunctionCall","src":"23582:43:101"},"variableNames":[{"name":"diff","nativeSrc":"23574:4:101","nodeType":"YulIdentifier","src":"23574:4:101"}]},{"body":{"nativeSrc":"23658:22:101","nodeType":"YulBlock","src":"23658:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"23660:16:101","nodeType":"YulIdentifier","src":"23660:16:101"},"nativeSrc":"23660:18:101","nodeType":"YulFunctionCall","src":"23660:18:101"},"nativeSrc":"23660:18:101","nodeType":"YulExpressionStatement","src":"23660:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"23640:4:101","nodeType":"YulIdentifier","src":"23640:4:101"},{"kind":"number","nativeSrc":"23646:10:101","nodeType":"YulLiteral","src":"23646:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"gt","nativeSrc":"23637:2:101","nodeType":"YulIdentifier","src":"23637:2:101"},"nativeSrc":"23637:20:101","nodeType":"YulFunctionCall","src":"23637:20:101"},"nativeSrc":"23634:46:101","nodeType":"YulIf","src":"23634:46:101"}]},"name":"checked_sub_t_uint32","nativeSrc":"23516:170:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"23546:1:101","nodeType":"YulTypedName","src":"23546:1:101","type":""},{"name":"y","nativeSrc":"23549:1:101","nodeType":"YulTypedName","src":"23549:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"23555:4:101","nodeType":"YulTypedName","src":"23555:4:101","type":""}],"src":"23516:170:101"},{"body":{"nativeSrc":"23743:116:101","nodeType":"YulBlock","src":"23743:116:101","statements":[{"nativeSrc":"23753:20:101","nodeType":"YulAssignment","src":"23753:20:101","value":{"arguments":[{"name":"x","nativeSrc":"23768:1:101","nodeType":"YulIdentifier","src":"23768:1:101"},{"name":"y","nativeSrc":"23771:1:101","nodeType":"YulIdentifier","src":"23771:1:101"}],"functionName":{"name":"mul","nativeSrc":"23764:3:101","nodeType":"YulIdentifier","src":"23764:3:101"},"nativeSrc":"23764:9:101","nodeType":"YulFunctionCall","src":"23764:9:101"},"variableNames":[{"name":"product","nativeSrc":"23753:7:101","nodeType":"YulIdentifier","src":"23753:7:101"}]},{"body":{"nativeSrc":"23831:22:101","nodeType":"YulBlock","src":"23831:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"23833:16:101","nodeType":"YulIdentifier","src":"23833:16:101"},"nativeSrc":"23833:18:101","nodeType":"YulFunctionCall","src":"23833:18:101"},"nativeSrc":"23833:18:101","nodeType":"YulExpressionStatement","src":"23833:18:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nativeSrc":"23802:1:101","nodeType":"YulIdentifier","src":"23802:1:101"}],"functionName":{"name":"iszero","nativeSrc":"23795:6:101","nodeType":"YulIdentifier","src":"23795:6:101"},"nativeSrc":"23795:9:101","nodeType":"YulFunctionCall","src":"23795:9:101"},{"arguments":[{"name":"y","nativeSrc":"23809:1:101","nodeType":"YulIdentifier","src":"23809:1:101"},{"arguments":[{"name":"product","nativeSrc":"23816:7:101","nodeType":"YulIdentifier","src":"23816:7:101"},{"name":"x","nativeSrc":"23825:1:101","nodeType":"YulIdentifier","src":"23825:1:101"}],"functionName":{"name":"div","nativeSrc":"23812:3:101","nodeType":"YulIdentifier","src":"23812:3:101"},"nativeSrc":"23812:15:101","nodeType":"YulFunctionCall","src":"23812:15:101"}],"functionName":{"name":"eq","nativeSrc":"23806:2:101","nodeType":"YulIdentifier","src":"23806:2:101"},"nativeSrc":"23806:22:101","nodeType":"YulFunctionCall","src":"23806:22:101"}],"functionName":{"name":"or","nativeSrc":"23792:2:101","nodeType":"YulIdentifier","src":"23792:2:101"},"nativeSrc":"23792:37:101","nodeType":"YulFunctionCall","src":"23792:37:101"}],"functionName":{"name":"iszero","nativeSrc":"23785:6:101","nodeType":"YulIdentifier","src":"23785:6:101"},"nativeSrc":"23785:45:101","nodeType":"YulFunctionCall","src":"23785:45:101"},"nativeSrc":"23782:71:101","nodeType":"YulIf","src":"23782:71:101"}]},"name":"checked_mul_t_uint256","nativeSrc":"23691:168:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"23722:1:101","nodeType":"YulTypedName","src":"23722:1:101","type":""},{"name":"y","nativeSrc":"23725:1:101","nodeType":"YulTypedName","src":"23725:1:101","type":""}],"returnVariables":[{"name":"product","nativeSrc":"23731:7:101","nodeType":"YulTypedName","src":"23731:7:101","type":""}],"src":"23691:168:101"},{"body":{"nativeSrc":"23910:171:101","nodeType":"YulBlock","src":"23910:171:101","statements":[{"body":{"nativeSrc":"23941:111:101","nodeType":"YulBlock","src":"23941:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23962:1:101","nodeType":"YulLiteral","src":"23962:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"23969:3:101","nodeType":"YulLiteral","src":"23969:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"23974:10:101","nodeType":"YulLiteral","src":"23974:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"23965:3:101","nodeType":"YulIdentifier","src":"23965:3:101"},"nativeSrc":"23965:20:101","nodeType":"YulFunctionCall","src":"23965:20:101"}],"functionName":{"name":"mstore","nativeSrc":"23955:6:101","nodeType":"YulIdentifier","src":"23955:6:101"},"nativeSrc":"23955:31:101","nodeType":"YulFunctionCall","src":"23955:31:101"},"nativeSrc":"23955:31:101","nodeType":"YulExpressionStatement","src":"23955:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"24006:1:101","nodeType":"YulLiteral","src":"24006:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"24009:4:101","nodeType":"YulLiteral","src":"24009:4:101","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"23999:6:101","nodeType":"YulIdentifier","src":"23999:6:101"},"nativeSrc":"23999:15:101","nodeType":"YulFunctionCall","src":"23999:15:101"},"nativeSrc":"23999:15:101","nodeType":"YulExpressionStatement","src":"23999:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"24034:1:101","nodeType":"YulLiteral","src":"24034:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"24037:4:101","nodeType":"YulLiteral","src":"24037:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"24027:6:101","nodeType":"YulIdentifier","src":"24027:6:101"},"nativeSrc":"24027:15:101","nodeType":"YulFunctionCall","src":"24027:15:101"},"nativeSrc":"24027:15:101","nodeType":"YulExpressionStatement","src":"24027:15:101"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"23930:1:101","nodeType":"YulIdentifier","src":"23930:1:101"}],"functionName":{"name":"iszero","nativeSrc":"23923:6:101","nodeType":"YulIdentifier","src":"23923:6:101"},"nativeSrc":"23923:9:101","nodeType":"YulFunctionCall","src":"23923:9:101"},"nativeSrc":"23920:132:101","nodeType":"YulIf","src":"23920:132:101"},{"nativeSrc":"24061:14:101","nodeType":"YulAssignment","src":"24061:14:101","value":{"arguments":[{"name":"x","nativeSrc":"24070:1:101","nodeType":"YulIdentifier","src":"24070:1:101"},{"name":"y","nativeSrc":"24073:1:101","nodeType":"YulIdentifier","src":"24073:1:101"}],"functionName":{"name":"div","nativeSrc":"24066:3:101","nodeType":"YulIdentifier","src":"24066:3:101"},"nativeSrc":"24066:9:101","nodeType":"YulFunctionCall","src":"24066:9:101"},"variableNames":[{"name":"r","nativeSrc":"24061:1:101","nodeType":"YulIdentifier","src":"24061:1:101"}]}]},"name":"checked_div_t_uint256","nativeSrc":"23864:217:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"23895:1:101","nodeType":"YulTypedName","src":"23895:1:101","type":""},{"name":"y","nativeSrc":"23898:1:101","nodeType":"YulTypedName","src":"23898:1:101","type":""}],"returnVariables":[{"name":"r","nativeSrc":"23904:1:101","nodeType":"YulTypedName","src":"23904:1:101","type":""}],"src":"23864:217:101"},{"body":{"nativeSrc":"24241:162:101","nodeType":"YulBlock","src":"24241:162:101","statements":[{"nativeSrc":"24251:26:101","nodeType":"YulAssignment","src":"24251:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"24263:9:101","nodeType":"YulIdentifier","src":"24263:9:101"},{"kind":"number","nativeSrc":"24274:2:101","nodeType":"YulLiteral","src":"24274:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"24259:3:101","nodeType":"YulIdentifier","src":"24259:3:101"},"nativeSrc":"24259:18:101","nodeType":"YulFunctionCall","src":"24259:18:101"},"variableNames":[{"name":"tail","nativeSrc":"24251:4:101","nodeType":"YulIdentifier","src":"24251:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"24293:9:101","nodeType":"YulIdentifier","src":"24293:9:101"},{"name":"value0","nativeSrc":"24304:6:101","nodeType":"YulIdentifier","src":"24304:6:101"}],"functionName":{"name":"mstore","nativeSrc":"24286:6:101","nodeType":"YulIdentifier","src":"24286:6:101"},"nativeSrc":"24286:25:101","nodeType":"YulFunctionCall","src":"24286:25:101"},"nativeSrc":"24286:25:101","nodeType":"YulExpressionStatement","src":"24286:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24331:9:101","nodeType":"YulIdentifier","src":"24331:9:101"},{"kind":"number","nativeSrc":"24342:2:101","nodeType":"YulLiteral","src":"24342:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24327:3:101","nodeType":"YulIdentifier","src":"24327:3:101"},"nativeSrc":"24327:18:101","nodeType":"YulFunctionCall","src":"24327:18:101"},{"name":"value1","nativeSrc":"24347:6:101","nodeType":"YulIdentifier","src":"24347:6:101"}],"functionName":{"name":"mstore","nativeSrc":"24320:6:101","nodeType":"YulIdentifier","src":"24320:6:101"},"nativeSrc":"24320:34:101","nodeType":"YulFunctionCall","src":"24320:34:101"},"nativeSrc":"24320:34:101","nodeType":"YulExpressionStatement","src":"24320:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24374:9:101","nodeType":"YulIdentifier","src":"24374:9:101"},{"kind":"number","nativeSrc":"24385:2:101","nodeType":"YulLiteral","src":"24385:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"24370:3:101","nodeType":"YulIdentifier","src":"24370:3:101"},"nativeSrc":"24370:18:101","nodeType":"YulFunctionCall","src":"24370:18:101"},{"name":"value2","nativeSrc":"24390:6:101","nodeType":"YulIdentifier","src":"24390:6:101"}],"functionName":{"name":"mstore","nativeSrc":"24363:6:101","nodeType":"YulIdentifier","src":"24363:6:101"},"nativeSrc":"24363:34:101","nodeType":"YulFunctionCall","src":"24363:34:101"},"nativeSrc":"24363:34:101","nodeType":"YulExpressionStatement","src":"24363:34:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_int256__to_t_uint256_t_uint256_t_int256__fromStack_reversed","nativeSrc":"24086:317:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24194:9:101","nodeType":"YulTypedName","src":"24194:9:101","type":""},{"name":"value2","nativeSrc":"24205:6:101","nodeType":"YulTypedName","src":"24205:6:101","type":""},{"name":"value1","nativeSrc":"24213:6:101","nodeType":"YulTypedName","src":"24213:6:101","type":""},{"name":"value0","nativeSrc":"24221:6:101","nodeType":"YulTypedName","src":"24221:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"24232:4:101","nodeType":"YulTypedName","src":"24232:4:101","type":""}],"src":"24086:317:101"},{"body":{"nativeSrc":"24489:103:101","nodeType":"YulBlock","src":"24489:103:101","statements":[{"body":{"nativeSrc":"24535:16:101","nodeType":"YulBlock","src":"24535:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24544:1:101","nodeType":"YulLiteral","src":"24544:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"24547:1:101","nodeType":"YulLiteral","src":"24547:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24537:6:101","nodeType":"YulIdentifier","src":"24537:6:101"},"nativeSrc":"24537:12:101","nodeType":"YulFunctionCall","src":"24537:12:101"},"nativeSrc":"24537:12:101","nodeType":"YulExpressionStatement","src":"24537:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"24510:7:101","nodeType":"YulIdentifier","src":"24510:7:101"},{"name":"headStart","nativeSrc":"24519:9:101","nodeType":"YulIdentifier","src":"24519:9:101"}],"functionName":{"name":"sub","nativeSrc":"24506:3:101","nodeType":"YulIdentifier","src":"24506:3:101"},"nativeSrc":"24506:23:101","nodeType":"YulFunctionCall","src":"24506:23:101"},{"kind":"number","nativeSrc":"24531:2:101","nodeType":"YulLiteral","src":"24531:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"24502:3:101","nodeType":"YulIdentifier","src":"24502:3:101"},"nativeSrc":"24502:32:101","nodeType":"YulFunctionCall","src":"24502:32:101"},"nativeSrc":"24499:52:101","nodeType":"YulIf","src":"24499:52:101"},{"nativeSrc":"24560:26:101","nodeType":"YulAssignment","src":"24560:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"24576:9:101","nodeType":"YulIdentifier","src":"24576:9:101"}],"functionName":{"name":"mload","nativeSrc":"24570:5:101","nodeType":"YulIdentifier","src":"24570:5:101"},"nativeSrc":"24570:16:101","nodeType":"YulFunctionCall","src":"24570:16:101"},"variableNames":[{"name":"value0","nativeSrc":"24560:6:101","nodeType":"YulIdentifier","src":"24560:6:101"}]}]},"name":"abi_decode_tuple_t_bytes32_fromMemory","nativeSrc":"24408:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24455:9:101","nodeType":"YulTypedName","src":"24455:9:101","type":""},{"name":"dataEnd","nativeSrc":"24466:7:101","nodeType":"YulTypedName","src":"24466:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"24478:6:101","nodeType":"YulTypedName","src":"24478:6:101","type":""}],"src":"24408:184:101"},{"body":{"nativeSrc":"24644:169:101","nodeType":"YulBlock","src":"24644:169:101","statements":[{"nativeSrc":"24654:16:101","nodeType":"YulAssignment","src":"24654:16:101","value":{"arguments":[{"name":"x","nativeSrc":"24665:1:101","nodeType":"YulIdentifier","src":"24665:1:101"},{"name":"y","nativeSrc":"24668:1:101","nodeType":"YulIdentifier","src":"24668:1:101"}],"functionName":{"name":"add","nativeSrc":"24661:3:101","nodeType":"YulIdentifier","src":"24661:3:101"},"nativeSrc":"24661:9:101","nodeType":"YulFunctionCall","src":"24661:9:101"},"variableNames":[{"name":"sum","nativeSrc":"24654:3:101","nodeType":"YulIdentifier","src":"24654:3:101"}]},{"nativeSrc":"24679:21:101","nodeType":"YulVariableDeclaration","src":"24679:21:101","value":{"arguments":[{"name":"sum","nativeSrc":"24693:3:101","nodeType":"YulIdentifier","src":"24693:3:101"},{"name":"y","nativeSrc":"24698:1:101","nodeType":"YulIdentifier","src":"24698:1:101"}],"functionName":{"name":"slt","nativeSrc":"24689:3:101","nodeType":"YulIdentifier","src":"24689:3:101"},"nativeSrc":"24689:11:101","nodeType":"YulFunctionCall","src":"24689:11:101"},"variables":[{"name":"_1","nativeSrc":"24683:2:101","nodeType":"YulTypedName","src":"24683:2:101","type":""}]},{"nativeSrc":"24709:19:101","nodeType":"YulVariableDeclaration","src":"24709:19:101","value":{"arguments":[{"name":"x","nativeSrc":"24723:1:101","nodeType":"YulIdentifier","src":"24723:1:101"},{"kind":"number","nativeSrc":"24726:1:101","nodeType":"YulLiteral","src":"24726:1:101","type":"","value":"0"}],"functionName":{"name":"slt","nativeSrc":"24719:3:101","nodeType":"YulIdentifier","src":"24719:3:101"},"nativeSrc":"24719:9:101","nodeType":"YulFunctionCall","src":"24719:9:101"},"variables":[{"name":"_2","nativeSrc":"24713:2:101","nodeType":"YulTypedName","src":"24713:2:101","type":""}]},{"body":{"nativeSrc":"24785:22:101","nodeType":"YulBlock","src":"24785:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"24787:16:101","nodeType":"YulIdentifier","src":"24787:16:101"},"nativeSrc":"24787:18:101","nodeType":"YulFunctionCall","src":"24787:18:101"},"nativeSrc":"24787:18:101","nodeType":"YulExpressionStatement","src":"24787:18:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"24754:2:101","nodeType":"YulIdentifier","src":"24754:2:101"}],"functionName":{"name":"iszero","nativeSrc":"24747:6:101","nodeType":"YulIdentifier","src":"24747:6:101"},"nativeSrc":"24747:10:101","nodeType":"YulFunctionCall","src":"24747:10:101"},{"name":"_1","nativeSrc":"24759:2:101","nodeType":"YulIdentifier","src":"24759:2:101"}],"functionName":{"name":"and","nativeSrc":"24743:3:101","nodeType":"YulIdentifier","src":"24743:3:101"},"nativeSrc":"24743:19:101","nodeType":"YulFunctionCall","src":"24743:19:101"},{"arguments":[{"name":"_2","nativeSrc":"24768:2:101","nodeType":"YulIdentifier","src":"24768:2:101"},{"arguments":[{"name":"_1","nativeSrc":"24779:2:101","nodeType":"YulIdentifier","src":"24779:2:101"}],"functionName":{"name":"iszero","nativeSrc":"24772:6:101","nodeType":"YulIdentifier","src":"24772:6:101"},"nativeSrc":"24772:10:101","nodeType":"YulFunctionCall","src":"24772:10:101"}],"functionName":{"name":"and","nativeSrc":"24764:3:101","nodeType":"YulIdentifier","src":"24764:3:101"},"nativeSrc":"24764:19:101","nodeType":"YulFunctionCall","src":"24764:19:101"}],"functionName":{"name":"or","nativeSrc":"24740:2:101","nodeType":"YulIdentifier","src":"24740:2:101"},"nativeSrc":"24740:44:101","nodeType":"YulFunctionCall","src":"24740:44:101"},"nativeSrc":"24737:70:101","nodeType":"YulIf","src":"24737:70:101"}]},"name":"checked_add_t_int256","nativeSrc":"24597:216:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"24627:1:101","nodeType":"YulTypedName","src":"24627:1:101","type":""},{"name":"y","nativeSrc":"24630:1:101","nodeType":"YulTypedName","src":"24630:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"24636:3:101","nodeType":"YulTypedName","src":"24636:3:101","type":""}],"src":"24597:216:101"},{"body":{"nativeSrc":"24918:109:101","nodeType":"YulBlock","src":"24918:109:101","statements":[{"nativeSrc":"24928:26:101","nodeType":"YulAssignment","src":"24928:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"24940:9:101","nodeType":"YulIdentifier","src":"24940:9:101"},{"kind":"number","nativeSrc":"24951:2:101","nodeType":"YulLiteral","src":"24951:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24936:3:101","nodeType":"YulIdentifier","src":"24936:3:101"},"nativeSrc":"24936:18:101","nodeType":"YulFunctionCall","src":"24936:18:101"},"variableNames":[{"name":"tail","nativeSrc":"24928:4:101","nodeType":"YulIdentifier","src":"24928:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"24970:9:101","nodeType":"YulIdentifier","src":"24970:9:101"},{"arguments":[{"name":"value0","nativeSrc":"24985:6:101","nodeType":"YulIdentifier","src":"24985:6:101"},{"kind":"number","nativeSrc":"24993:26:101","nodeType":"YulLiteral","src":"24993:26:101","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"24981:3:101","nodeType":"YulIdentifier","src":"24981:3:101"},"nativeSrc":"24981:39:101","nodeType":"YulFunctionCall","src":"24981:39:101"}],"functionName":{"name":"mstore","nativeSrc":"24963:6:101","nodeType":"YulIdentifier","src":"24963:6:101"},"nativeSrc":"24963:58:101","nodeType":"YulFunctionCall","src":"24963:58:101"},"nativeSrc":"24963:58:101","nodeType":"YulExpressionStatement","src":"24963:58:101"}]},"name":"abi_encode_tuple_t_uint96__to_t_uint256__fromStack_reversed","nativeSrc":"24818:209:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24887:9:101","nodeType":"YulTypedName","src":"24887:9:101","type":""},{"name":"value0","nativeSrc":"24898:6:101","nodeType":"YulTypedName","src":"24898:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"24909:4:101","nodeType":"YulTypedName","src":"24909:4:101","type":""}],"src":"24818:209:101"},{"body":{"nativeSrc":"25131:76:101","nodeType":"YulBlock","src":"25131:76:101","statements":[{"nativeSrc":"25141:26:101","nodeType":"YulAssignment","src":"25141:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"25153:9:101","nodeType":"YulIdentifier","src":"25153:9:101"},{"kind":"number","nativeSrc":"25164:2:101","nodeType":"YulLiteral","src":"25164:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25149:3:101","nodeType":"YulIdentifier","src":"25149:3:101"},"nativeSrc":"25149:18:101","nodeType":"YulFunctionCall","src":"25149:18:101"},"variableNames":[{"name":"tail","nativeSrc":"25141:4:101","nodeType":"YulIdentifier","src":"25141:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25183:9:101","nodeType":"YulIdentifier","src":"25183:9:101"},{"name":"value0","nativeSrc":"25194:6:101","nodeType":"YulIdentifier","src":"25194:6:101"}],"functionName":{"name":"mstore","nativeSrc":"25176:6:101","nodeType":"YulIdentifier","src":"25176:6:101"},"nativeSrc":"25176:25:101","nodeType":"YulFunctionCall","src":"25176:25:101"},"nativeSrc":"25176:25:101","nodeType":"YulExpressionStatement","src":"25176:25:101"}]},"name":"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed","nativeSrc":"25032:175:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25100:9:101","nodeType":"YulTypedName","src":"25100:9:101","type":""},{"name":"value0","nativeSrc":"25111:6:101","nodeType":"YulTypedName","src":"25111:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25122:4:101","nodeType":"YulTypedName","src":"25122:4:101","type":""}],"src":"25032:175:101"},{"body":{"nativeSrc":"25369:214:101","nodeType":"YulBlock","src":"25369:214:101","statements":[{"nativeSrc":"25379:26:101","nodeType":"YulAssignment","src":"25379:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"25391:9:101","nodeType":"YulIdentifier","src":"25391:9:101"},{"kind":"number","nativeSrc":"25402:2:101","nodeType":"YulLiteral","src":"25402:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25387:3:101","nodeType":"YulIdentifier","src":"25387:3:101"},"nativeSrc":"25387:18:101","nodeType":"YulFunctionCall","src":"25387:18:101"},"variableNames":[{"name":"tail","nativeSrc":"25379:4:101","nodeType":"YulIdentifier","src":"25379:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25421:9:101","nodeType":"YulIdentifier","src":"25421:9:101"},{"arguments":[{"name":"value0","nativeSrc":"25436:6:101","nodeType":"YulIdentifier","src":"25436:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25452:3:101","nodeType":"YulLiteral","src":"25452:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"25457:1:101","nodeType":"YulLiteral","src":"25457:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"25448:3:101","nodeType":"YulIdentifier","src":"25448:3:101"},"nativeSrc":"25448:11:101","nodeType":"YulFunctionCall","src":"25448:11:101"},{"kind":"number","nativeSrc":"25461:1:101","nodeType":"YulLiteral","src":"25461:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"25444:3:101","nodeType":"YulIdentifier","src":"25444:3:101"},"nativeSrc":"25444:19:101","nodeType":"YulFunctionCall","src":"25444:19:101"}],"functionName":{"name":"and","nativeSrc":"25432:3:101","nodeType":"YulIdentifier","src":"25432:3:101"},"nativeSrc":"25432:32:101","nodeType":"YulFunctionCall","src":"25432:32:101"}],"functionName":{"name":"mstore","nativeSrc":"25414:6:101","nodeType":"YulIdentifier","src":"25414:6:101"},"nativeSrc":"25414:51:101","nodeType":"YulFunctionCall","src":"25414:51:101"},"nativeSrc":"25414:51:101","nodeType":"YulExpressionStatement","src":"25414:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25485:9:101","nodeType":"YulIdentifier","src":"25485:9:101"},{"kind":"number","nativeSrc":"25496:2:101","nodeType":"YulLiteral","src":"25496:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25481:3:101","nodeType":"YulIdentifier","src":"25481:3:101"},"nativeSrc":"25481:18:101","nodeType":"YulFunctionCall","src":"25481:18:101"},{"arguments":[{"name":"value1","nativeSrc":"25505:6:101","nodeType":"YulIdentifier","src":"25505:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25521:3:101","nodeType":"YulLiteral","src":"25521:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"25526:1:101","nodeType":"YulLiteral","src":"25526:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"25517:3:101","nodeType":"YulIdentifier","src":"25517:3:101"},"nativeSrc":"25517:11:101","nodeType":"YulFunctionCall","src":"25517:11:101"},{"kind":"number","nativeSrc":"25530:1:101","nodeType":"YulLiteral","src":"25530:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"25513:3:101","nodeType":"YulIdentifier","src":"25513:3:101"},"nativeSrc":"25513:19:101","nodeType":"YulFunctionCall","src":"25513:19:101"}],"functionName":{"name":"and","nativeSrc":"25501:3:101","nodeType":"YulIdentifier","src":"25501:3:101"},"nativeSrc":"25501:32:101","nodeType":"YulFunctionCall","src":"25501:32:101"}],"functionName":{"name":"mstore","nativeSrc":"25474:6:101","nodeType":"YulIdentifier","src":"25474:6:101"},"nativeSrc":"25474:60:101","nodeType":"YulFunctionCall","src":"25474:60:101"},"nativeSrc":"25474:60:101","nodeType":"YulExpressionStatement","src":"25474:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25554:9:101","nodeType":"YulIdentifier","src":"25554:9:101"},{"kind":"number","nativeSrc":"25565:2:101","nodeType":"YulLiteral","src":"25565:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25550:3:101","nodeType":"YulIdentifier","src":"25550:3:101"},"nativeSrc":"25550:18:101","nodeType":"YulFunctionCall","src":"25550:18:101"},{"name":"value2","nativeSrc":"25570:6:101","nodeType":"YulIdentifier","src":"25570:6:101"}],"functionName":{"name":"mstore","nativeSrc":"25543:6:101","nodeType":"YulIdentifier","src":"25543:6:101"},"nativeSrc":"25543:34:101","nodeType":"YulFunctionCall","src":"25543:34:101"},"nativeSrc":"25543:34:101","nodeType":"YulExpressionStatement","src":"25543:34:101"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nativeSrc":"25212:371:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25322:9:101","nodeType":"YulTypedName","src":"25322:9:101","type":""},{"name":"value2","nativeSrc":"25333:6:101","nodeType":"YulTypedName","src":"25333:6:101","type":""},{"name":"value1","nativeSrc":"25341:6:101","nodeType":"YulTypedName","src":"25341:6:101","type":""},{"name":"value0","nativeSrc":"25349:6:101","nodeType":"YulTypedName","src":"25349:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25360:4:101","nodeType":"YulTypedName","src":"25360:4:101","type":""}],"src":"25212:371:101"},{"body":{"nativeSrc":"25801:276:101","nodeType":"YulBlock","src":"25801:276:101","statements":[{"nativeSrc":"25811:27:101","nodeType":"YulAssignment","src":"25811:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"25823:9:101","nodeType":"YulIdentifier","src":"25823:9:101"},{"kind":"number","nativeSrc":"25834:3:101","nodeType":"YulLiteral","src":"25834:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"25819:3:101","nodeType":"YulIdentifier","src":"25819:3:101"},"nativeSrc":"25819:19:101","nodeType":"YulFunctionCall","src":"25819:19:101"},"variableNames":[{"name":"tail","nativeSrc":"25811:4:101","nodeType":"YulIdentifier","src":"25811:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25854:9:101","nodeType":"YulIdentifier","src":"25854:9:101"},{"name":"value0","nativeSrc":"25865:6:101","nodeType":"YulIdentifier","src":"25865:6:101"}],"functionName":{"name":"mstore","nativeSrc":"25847:6:101","nodeType":"YulIdentifier","src":"25847:6:101"},"nativeSrc":"25847:25:101","nodeType":"YulFunctionCall","src":"25847:25:101"},"nativeSrc":"25847:25:101","nodeType":"YulExpressionStatement","src":"25847:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25892:9:101","nodeType":"YulIdentifier","src":"25892:9:101"},{"kind":"number","nativeSrc":"25903:2:101","nodeType":"YulLiteral","src":"25903:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25888:3:101","nodeType":"YulIdentifier","src":"25888:3:101"},"nativeSrc":"25888:18:101","nodeType":"YulFunctionCall","src":"25888:18:101"},{"name":"value1","nativeSrc":"25908:6:101","nodeType":"YulIdentifier","src":"25908:6:101"}],"functionName":{"name":"mstore","nativeSrc":"25881:6:101","nodeType":"YulIdentifier","src":"25881:6:101"},"nativeSrc":"25881:34:101","nodeType":"YulFunctionCall","src":"25881:34:101"},"nativeSrc":"25881:34:101","nodeType":"YulExpressionStatement","src":"25881:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25935:9:101","nodeType":"YulIdentifier","src":"25935:9:101"},{"kind":"number","nativeSrc":"25946:2:101","nodeType":"YulLiteral","src":"25946:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25931:3:101","nodeType":"YulIdentifier","src":"25931:3:101"},"nativeSrc":"25931:18:101","nodeType":"YulFunctionCall","src":"25931:18:101"},{"name":"value2","nativeSrc":"25951:6:101","nodeType":"YulIdentifier","src":"25951:6:101"}],"functionName":{"name":"mstore","nativeSrc":"25924:6:101","nodeType":"YulIdentifier","src":"25924:6:101"},"nativeSrc":"25924:34:101","nodeType":"YulFunctionCall","src":"25924:34:101"},"nativeSrc":"25924:34:101","nodeType":"YulExpressionStatement","src":"25924:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25978:9:101","nodeType":"YulIdentifier","src":"25978:9:101"},{"kind":"number","nativeSrc":"25989:2:101","nodeType":"YulLiteral","src":"25989:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25974:3:101","nodeType":"YulIdentifier","src":"25974:3:101"},"nativeSrc":"25974:18:101","nodeType":"YulFunctionCall","src":"25974:18:101"},{"name":"value3","nativeSrc":"25994:6:101","nodeType":"YulIdentifier","src":"25994:6:101"}],"functionName":{"name":"mstore","nativeSrc":"25967:6:101","nodeType":"YulIdentifier","src":"25967:6:101"},"nativeSrc":"25967:34:101","nodeType":"YulFunctionCall","src":"25967:34:101"},"nativeSrc":"25967:34:101","nodeType":"YulExpressionStatement","src":"25967:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26021:9:101","nodeType":"YulIdentifier","src":"26021:9:101"},{"kind":"number","nativeSrc":"26032:3:101","nodeType":"YulLiteral","src":"26032:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"26017:3:101","nodeType":"YulIdentifier","src":"26017:3:101"},"nativeSrc":"26017:19:101","nodeType":"YulFunctionCall","src":"26017:19:101"},{"arguments":[{"name":"value4","nativeSrc":"26042:6:101","nodeType":"YulIdentifier","src":"26042:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"26058:3:101","nodeType":"YulLiteral","src":"26058:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"26063:1:101","nodeType":"YulLiteral","src":"26063:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"26054:3:101","nodeType":"YulIdentifier","src":"26054:3:101"},"nativeSrc":"26054:11:101","nodeType":"YulFunctionCall","src":"26054:11:101"},{"kind":"number","nativeSrc":"26067:1:101","nodeType":"YulLiteral","src":"26067:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"26050:3:101","nodeType":"YulIdentifier","src":"26050:3:101"},"nativeSrc":"26050:19:101","nodeType":"YulFunctionCall","src":"26050:19:101"}],"functionName":{"name":"and","nativeSrc":"26038:3:101","nodeType":"YulIdentifier","src":"26038:3:101"},"nativeSrc":"26038:32:101","nodeType":"YulFunctionCall","src":"26038:32:101"}],"functionName":{"name":"mstore","nativeSrc":"26010:6:101","nodeType":"YulIdentifier","src":"26010:6:101"},"nativeSrc":"26010:61:101","nodeType":"YulFunctionCall","src":"26010:61:101"},"nativeSrc":"26010:61:101","nodeType":"YulExpressionStatement","src":"26010:61:101"}]},"name":"abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed","nativeSrc":"25588:489:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25738:9:101","nodeType":"YulTypedName","src":"25738:9:101","type":""},{"name":"value4","nativeSrc":"25749:6:101","nodeType":"YulTypedName","src":"25749:6:101","type":""},{"name":"value3","nativeSrc":"25757:6:101","nodeType":"YulTypedName","src":"25757:6:101","type":""},{"name":"value2","nativeSrc":"25765:6:101","nodeType":"YulTypedName","src":"25765:6:101","type":""},{"name":"value1","nativeSrc":"25773:6:101","nodeType":"YulTypedName","src":"25773:6:101","type":""},{"name":"value0","nativeSrc":"25781:6:101","nodeType":"YulTypedName","src":"25781:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25792:4:101","nodeType":"YulTypedName","src":"25792:4:101","type":""}],"src":"25588:489:101"},{"body":{"nativeSrc":"26219:130:101","nodeType":"YulBlock","src":"26219:130:101","statements":[{"nativeSrc":"26229:26:101","nodeType":"YulAssignment","src":"26229:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"26241:9:101","nodeType":"YulIdentifier","src":"26241:9:101"},{"kind":"number","nativeSrc":"26252:2:101","nodeType":"YulLiteral","src":"26252:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"26237:3:101","nodeType":"YulIdentifier","src":"26237:3:101"},"nativeSrc":"26237:18:101","nodeType":"YulFunctionCall","src":"26237:18:101"},"variableNames":[{"name":"tail","nativeSrc":"26229:4:101","nodeType":"YulIdentifier","src":"26229:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"26271:9:101","nodeType":"YulIdentifier","src":"26271:9:101"},{"arguments":[{"name":"value0","nativeSrc":"26286:6:101","nodeType":"YulIdentifier","src":"26286:6:101"},{"kind":"number","nativeSrc":"26294:4:101","nodeType":"YulLiteral","src":"26294:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"26282:3:101","nodeType":"YulIdentifier","src":"26282:3:101"},"nativeSrc":"26282:17:101","nodeType":"YulFunctionCall","src":"26282:17:101"}],"functionName":{"name":"mstore","nativeSrc":"26264:6:101","nodeType":"YulIdentifier","src":"26264:6:101"},"nativeSrc":"26264:36:101","nodeType":"YulFunctionCall","src":"26264:36:101"},"nativeSrc":"26264:36:101","nodeType":"YulExpressionStatement","src":"26264:36:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26320:9:101","nodeType":"YulIdentifier","src":"26320:9:101"},{"kind":"number","nativeSrc":"26331:2:101","nodeType":"YulLiteral","src":"26331:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"26316:3:101","nodeType":"YulIdentifier","src":"26316:3:101"},"nativeSrc":"26316:18:101","nodeType":"YulFunctionCall","src":"26316:18:101"},{"name":"value1","nativeSrc":"26336:6:101","nodeType":"YulIdentifier","src":"26336:6:101"}],"functionName":{"name":"mstore","nativeSrc":"26309:6:101","nodeType":"YulIdentifier","src":"26309:6:101"},"nativeSrc":"26309:34:101","nodeType":"YulFunctionCall","src":"26309:34:101"},"nativeSrc":"26309:34:101","nodeType":"YulExpressionStatement","src":"26309:34:101"}]},"name":"abi_encode_tuple_t_rational_128_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"26082:267:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"26180:9:101","nodeType":"YulTypedName","src":"26180:9:101","type":""},{"name":"value1","nativeSrc":"26191:6:101","nodeType":"YulTypedName","src":"26191:6:101","type":""},{"name":"value0","nativeSrc":"26199:6:101","nodeType":"YulTypedName","src":"26199:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"26210:4:101","nodeType":"YulTypedName","src":"26210:4:101","type":""}],"src":"26082:267:101"},{"body":{"nativeSrc":"26410:65:101","nodeType":"YulBlock","src":"26410:65:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26427:1:101","nodeType":"YulLiteral","src":"26427:1:101","type":"","value":"0"},{"name":"ptr","nativeSrc":"26430:3:101","nodeType":"YulIdentifier","src":"26430:3:101"}],"functionName":{"name":"mstore","nativeSrc":"26420:6:101","nodeType":"YulIdentifier","src":"26420:6:101"},"nativeSrc":"26420:14:101","nodeType":"YulFunctionCall","src":"26420:14:101"},"nativeSrc":"26420:14:101","nodeType":"YulExpressionStatement","src":"26420:14:101"},{"nativeSrc":"26443:26:101","nodeType":"YulAssignment","src":"26443:26:101","value":{"arguments":[{"kind":"number","nativeSrc":"26461:1:101","nodeType":"YulLiteral","src":"26461:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"26464:4:101","nodeType":"YulLiteral","src":"26464:4:101","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"26451:9:101","nodeType":"YulIdentifier","src":"26451:9:101"},"nativeSrc":"26451:18:101","nodeType":"YulFunctionCall","src":"26451:18:101"},"variableNames":[{"name":"data","nativeSrc":"26443:4:101","nodeType":"YulIdentifier","src":"26443:4:101"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"26354:121:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"26393:3:101","nodeType":"YulTypedName","src":"26393:3:101","type":""}],"returnVariables":[{"name":"data","nativeSrc":"26401:4:101","nodeType":"YulTypedName","src":"26401:4:101","type":""}],"src":"26354:121:101"},{"body":{"nativeSrc":"26561:437:101","nodeType":"YulBlock","src":"26561:437:101","statements":[{"body":{"nativeSrc":"26594:398:101","nodeType":"YulBlock","src":"26594:398:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26615:1:101","nodeType":"YulLiteral","src":"26615:1:101","type":"","value":"0"},{"name":"array","nativeSrc":"26618:5:101","nodeType":"YulIdentifier","src":"26618:5:101"}],"functionName":{"name":"mstore","nativeSrc":"26608:6:101","nodeType":"YulIdentifier","src":"26608:6:101"},"nativeSrc":"26608:16:101","nodeType":"YulFunctionCall","src":"26608:16:101"},"nativeSrc":"26608:16:101","nodeType":"YulExpressionStatement","src":"26608:16:101"},{"nativeSrc":"26637:30:101","nodeType":"YulVariableDeclaration","src":"26637:30:101","value":{"arguments":[{"kind":"number","nativeSrc":"26659:1:101","nodeType":"YulLiteral","src":"26659:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"26662:4:101","nodeType":"YulLiteral","src":"26662:4:101","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"26649:9:101","nodeType":"YulIdentifier","src":"26649:9:101"},"nativeSrc":"26649:18:101","nodeType":"YulFunctionCall","src":"26649:18:101"},"variables":[{"name":"data","nativeSrc":"26641:4:101","nodeType":"YulTypedName","src":"26641:4:101","type":""}]},{"nativeSrc":"26680:57:101","nodeType":"YulVariableDeclaration","src":"26680:57:101","value":{"arguments":[{"name":"data","nativeSrc":"26703:4:101","nodeType":"YulIdentifier","src":"26703:4:101"},{"arguments":[{"kind":"number","nativeSrc":"26713:1:101","nodeType":"YulLiteral","src":"26713:1:101","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"26720:10:101","nodeType":"YulIdentifier","src":"26720:10:101"},{"kind":"number","nativeSrc":"26732:2:101","nodeType":"YulLiteral","src":"26732:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"26716:3:101","nodeType":"YulIdentifier","src":"26716:3:101"},"nativeSrc":"26716:19:101","nodeType":"YulFunctionCall","src":"26716:19:101"}],"functionName":{"name":"shr","nativeSrc":"26709:3:101","nodeType":"YulIdentifier","src":"26709:3:101"},"nativeSrc":"26709:27:101","nodeType":"YulFunctionCall","src":"26709:27:101"}],"functionName":{"name":"add","nativeSrc":"26699:3:101","nodeType":"YulIdentifier","src":"26699:3:101"},"nativeSrc":"26699:38:101","nodeType":"YulFunctionCall","src":"26699:38:101"},"variables":[{"name":"deleteStart","nativeSrc":"26684:11:101","nodeType":"YulTypedName","src":"26684:11:101","type":""}]},{"body":{"nativeSrc":"26774:23:101","nodeType":"YulBlock","src":"26774:23:101","statements":[{"nativeSrc":"26776:19:101","nodeType":"YulAssignment","src":"26776:19:101","value":{"name":"data","nativeSrc":"26791:4:101","nodeType":"YulIdentifier","src":"26791:4:101"},"variableNames":[{"name":"deleteStart","nativeSrc":"26776:11:101","nodeType":"YulIdentifier","src":"26776:11:101"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"26756:10:101","nodeType":"YulIdentifier","src":"26756:10:101"},{"kind":"number","nativeSrc":"26768:4:101","nodeType":"YulLiteral","src":"26768:4:101","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"26753:2:101","nodeType":"YulIdentifier","src":"26753:2:101"},"nativeSrc":"26753:20:101","nodeType":"YulFunctionCall","src":"26753:20:101"},"nativeSrc":"26750:47:101","nodeType":"YulIf","src":"26750:47:101"},{"nativeSrc":"26810:41:101","nodeType":"YulVariableDeclaration","src":"26810:41:101","value":{"arguments":[{"name":"data","nativeSrc":"26824:4:101","nodeType":"YulIdentifier","src":"26824:4:101"},{"arguments":[{"kind":"number","nativeSrc":"26834:1:101","nodeType":"YulLiteral","src":"26834:1:101","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"26841:3:101","nodeType":"YulIdentifier","src":"26841:3:101"},{"kind":"number","nativeSrc":"26846:2:101","nodeType":"YulLiteral","src":"26846:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"26837:3:101","nodeType":"YulIdentifier","src":"26837:3:101"},"nativeSrc":"26837:12:101","nodeType":"YulFunctionCall","src":"26837:12:101"}],"functionName":{"name":"shr","nativeSrc":"26830:3:101","nodeType":"YulIdentifier","src":"26830:3:101"},"nativeSrc":"26830:20:101","nodeType":"YulFunctionCall","src":"26830:20:101"}],"functionName":{"name":"add","nativeSrc":"26820:3:101","nodeType":"YulIdentifier","src":"26820:3:101"},"nativeSrc":"26820:31:101","nodeType":"YulFunctionCall","src":"26820:31:101"},"variables":[{"name":"_1","nativeSrc":"26814:2:101","nodeType":"YulTypedName","src":"26814:2:101","type":""}]},{"nativeSrc":"26864:24:101","nodeType":"YulVariableDeclaration","src":"26864:24:101","value":{"name":"deleteStart","nativeSrc":"26877:11:101","nodeType":"YulIdentifier","src":"26877:11:101"},"variables":[{"name":"start","nativeSrc":"26868:5:101","nodeType":"YulTypedName","src":"26868:5:101","type":""}]},{"body":{"nativeSrc":"26962:20:101","nodeType":"YulBlock","src":"26962:20:101","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"26971:5:101","nodeType":"YulIdentifier","src":"26971:5:101"},{"kind":"number","nativeSrc":"26978:1:101","nodeType":"YulLiteral","src":"26978:1:101","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"26964:6:101","nodeType":"YulIdentifier","src":"26964:6:101"},"nativeSrc":"26964:16:101","nodeType":"YulFunctionCall","src":"26964:16:101"},"nativeSrc":"26964:16:101","nodeType":"YulExpressionStatement","src":"26964:16:101"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"26912:5:101","nodeType":"YulIdentifier","src":"26912:5:101"},{"name":"_1","nativeSrc":"26919:2:101","nodeType":"YulIdentifier","src":"26919:2:101"}],"functionName":{"name":"lt","nativeSrc":"26909:2:101","nodeType":"YulIdentifier","src":"26909:2:101"},"nativeSrc":"26909:13:101","nodeType":"YulFunctionCall","src":"26909:13:101"},"nativeSrc":"26901:81:101","nodeType":"YulForLoop","post":{"nativeSrc":"26923:26:101","nodeType":"YulBlock","src":"26923:26:101","statements":[{"nativeSrc":"26925:22:101","nodeType":"YulAssignment","src":"26925:22:101","value":{"arguments":[{"name":"start","nativeSrc":"26938:5:101","nodeType":"YulIdentifier","src":"26938:5:101"},{"kind":"number","nativeSrc":"26945:1:101","nodeType":"YulLiteral","src":"26945:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"26934:3:101","nodeType":"YulIdentifier","src":"26934:3:101"},"nativeSrc":"26934:13:101","nodeType":"YulFunctionCall","src":"26934:13:101"},"variableNames":[{"name":"start","nativeSrc":"26925:5:101","nodeType":"YulIdentifier","src":"26925:5:101"}]}]},"pre":{"nativeSrc":"26905:3:101","nodeType":"YulBlock","src":"26905:3:101","statements":[]},"src":"26901:81:101"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"26577:3:101","nodeType":"YulIdentifier","src":"26577:3:101"},{"kind":"number","nativeSrc":"26582:2:101","nodeType":"YulLiteral","src":"26582:2:101","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"26574:2:101","nodeType":"YulIdentifier","src":"26574:2:101"},"nativeSrc":"26574:11:101","nodeType":"YulFunctionCall","src":"26574:11:101"},"nativeSrc":"26571:421:101","nodeType":"YulIf","src":"26571:421:101"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"26480:518:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"26533:5:101","nodeType":"YulTypedName","src":"26533:5:101","type":""},{"name":"len","nativeSrc":"26540:3:101","nodeType":"YulTypedName","src":"26540:3:101","type":""},{"name":"startIndex","nativeSrc":"26545:10:101","nodeType":"YulTypedName","src":"26545:10:101","type":""}],"src":"26480:518:101"},{"body":{"nativeSrc":"27088:81:101","nodeType":"YulBlock","src":"27088:81:101","statements":[{"nativeSrc":"27098:65:101","nodeType":"YulAssignment","src":"27098:65:101","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"27113:4:101","nodeType":"YulIdentifier","src":"27113:4:101"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"27131:1:101","nodeType":"YulLiteral","src":"27131:1:101","type":"","value":"3"},{"name":"len","nativeSrc":"27134:3:101","nodeType":"YulIdentifier","src":"27134:3:101"}],"functionName":{"name":"shl","nativeSrc":"27127:3:101","nodeType":"YulIdentifier","src":"27127:3:101"},"nativeSrc":"27127:11:101","nodeType":"YulFunctionCall","src":"27127:11:101"},{"arguments":[{"kind":"number","nativeSrc":"27144:1:101","nodeType":"YulLiteral","src":"27144:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"27140:3:101","nodeType":"YulIdentifier","src":"27140:3:101"},"nativeSrc":"27140:6:101","nodeType":"YulFunctionCall","src":"27140:6:101"}],"functionName":{"name":"shr","nativeSrc":"27123:3:101","nodeType":"YulIdentifier","src":"27123:3:101"},"nativeSrc":"27123:24:101","nodeType":"YulFunctionCall","src":"27123:24:101"}],"functionName":{"name":"not","nativeSrc":"27119:3:101","nodeType":"YulIdentifier","src":"27119:3:101"},"nativeSrc":"27119:29:101","nodeType":"YulFunctionCall","src":"27119:29:101"}],"functionName":{"name":"and","nativeSrc":"27109:3:101","nodeType":"YulIdentifier","src":"27109:3:101"},"nativeSrc":"27109:40:101","nodeType":"YulFunctionCall","src":"27109:40:101"},{"arguments":[{"kind":"number","nativeSrc":"27155:1:101","nodeType":"YulLiteral","src":"27155:1:101","type":"","value":"1"},{"name":"len","nativeSrc":"27158:3:101","nodeType":"YulIdentifier","src":"27158:3:101"}],"functionName":{"name":"shl","nativeSrc":"27151:3:101","nodeType":"YulIdentifier","src":"27151:3:101"},"nativeSrc":"27151:11:101","nodeType":"YulFunctionCall","src":"27151:11:101"}],"functionName":{"name":"or","nativeSrc":"27106:2:101","nodeType":"YulIdentifier","src":"27106:2:101"},"nativeSrc":"27106:57:101","nodeType":"YulFunctionCall","src":"27106:57:101"},"variableNames":[{"name":"used","nativeSrc":"27098:4:101","nodeType":"YulIdentifier","src":"27098:4:101"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"27003:166:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"27065:4:101","nodeType":"YulTypedName","src":"27065:4:101","type":""},{"name":"len","nativeSrc":"27071:3:101","nodeType":"YulTypedName","src":"27071:3:101","type":""}],"returnVariables":[{"name":"used","nativeSrc":"27079:4:101","nodeType":"YulTypedName","src":"27079:4:101","type":""}],"src":"27003:166:101"},{"body":{"nativeSrc":"27270:1203:101","nodeType":"YulBlock","src":"27270:1203:101","statements":[{"nativeSrc":"27280:24:101","nodeType":"YulVariableDeclaration","src":"27280:24:101","value":{"arguments":[{"name":"src","nativeSrc":"27300:3:101","nodeType":"YulIdentifier","src":"27300:3:101"}],"functionName":{"name":"mload","nativeSrc":"27294:5:101","nodeType":"YulIdentifier","src":"27294:5:101"},"nativeSrc":"27294:10:101","nodeType":"YulFunctionCall","src":"27294:10:101"},"variables":[{"name":"newLen","nativeSrc":"27284:6:101","nodeType":"YulTypedName","src":"27284:6:101","type":""}]},{"body":{"nativeSrc":"27347:22:101","nodeType":"YulBlock","src":"27347:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"27349:16:101","nodeType":"YulIdentifier","src":"27349:16:101"},"nativeSrc":"27349:18:101","nodeType":"YulFunctionCall","src":"27349:18:101"},"nativeSrc":"27349:18:101","nodeType":"YulExpressionStatement","src":"27349:18:101"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"27319:6:101","nodeType":"YulIdentifier","src":"27319:6:101"},{"kind":"number","nativeSrc":"27327:18:101","nodeType":"YulLiteral","src":"27327:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"27316:2:101","nodeType":"YulIdentifier","src":"27316:2:101"},"nativeSrc":"27316:30:101","nodeType":"YulFunctionCall","src":"27316:30:101"},"nativeSrc":"27313:56:101","nodeType":"YulIf","src":"27313:56:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"27422:4:101","nodeType":"YulIdentifier","src":"27422:4:101"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"27460:4:101","nodeType":"YulIdentifier","src":"27460:4:101"}],"functionName":{"name":"sload","nativeSrc":"27454:5:101","nodeType":"YulIdentifier","src":"27454:5:101"},"nativeSrc":"27454:11:101","nodeType":"YulFunctionCall","src":"27454:11:101"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"27428:25:101","nodeType":"YulIdentifier","src":"27428:25:101"},"nativeSrc":"27428:38:101","nodeType":"YulFunctionCall","src":"27428:38:101"},{"name":"newLen","nativeSrc":"27468:6:101","nodeType":"YulIdentifier","src":"27468:6:101"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"27378:43:101","nodeType":"YulIdentifier","src":"27378:43:101"},"nativeSrc":"27378:97:101","nodeType":"YulFunctionCall","src":"27378:97:101"},"nativeSrc":"27378:97:101","nodeType":"YulExpressionStatement","src":"27378:97:101"},{"nativeSrc":"27484:18:101","nodeType":"YulVariableDeclaration","src":"27484:18:101","value":{"kind":"number","nativeSrc":"27501:1:101","nodeType":"YulLiteral","src":"27501:1:101","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"27488:9:101","nodeType":"YulTypedName","src":"27488:9:101","type":""}]},{"nativeSrc":"27511:17:101","nodeType":"YulAssignment","src":"27511:17:101","value":{"kind":"number","nativeSrc":"27524:4:101","nodeType":"YulLiteral","src":"27524:4:101","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"27511:9:101","nodeType":"YulIdentifier","src":"27511:9:101"}]},{"cases":[{"body":{"nativeSrc":"27574:642:101","nodeType":"YulBlock","src":"27574:642:101","statements":[{"nativeSrc":"27588:35:101","nodeType":"YulVariableDeclaration","src":"27588:35:101","value":{"arguments":[{"name":"newLen","nativeSrc":"27607:6:101","nodeType":"YulIdentifier","src":"27607:6:101"},{"arguments":[{"kind":"number","nativeSrc":"27619:2:101","nodeType":"YulLiteral","src":"27619:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"27615:3:101","nodeType":"YulIdentifier","src":"27615:3:101"},"nativeSrc":"27615:7:101","nodeType":"YulFunctionCall","src":"27615:7:101"}],"functionName":{"name":"and","nativeSrc":"27603:3:101","nodeType":"YulIdentifier","src":"27603:3:101"},"nativeSrc":"27603:20:101","nodeType":"YulFunctionCall","src":"27603:20:101"},"variables":[{"name":"loopEnd","nativeSrc":"27592:7:101","nodeType":"YulTypedName","src":"27592:7:101","type":""}]},{"nativeSrc":"27636:49:101","nodeType":"YulVariableDeclaration","src":"27636:49:101","value":{"arguments":[{"name":"slot","nativeSrc":"27680:4:101","nodeType":"YulIdentifier","src":"27680:4:101"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"27650:29:101","nodeType":"YulIdentifier","src":"27650:29:101"},"nativeSrc":"27650:35:101","nodeType":"YulFunctionCall","src":"27650:35:101"},"variables":[{"name":"dstPtr","nativeSrc":"27640:6:101","nodeType":"YulTypedName","src":"27640:6:101","type":""}]},{"nativeSrc":"27698:10:101","nodeType":"YulVariableDeclaration","src":"27698:10:101","value":{"kind":"number","nativeSrc":"27707:1:101","nodeType":"YulLiteral","src":"27707:1:101","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"27702:1:101","nodeType":"YulTypedName","src":"27702:1:101","type":""}]},{"body":{"nativeSrc":"27778:165:101","nodeType":"YulBlock","src":"27778:165:101","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"27803:6:101","nodeType":"YulIdentifier","src":"27803:6:101"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"27821:3:101","nodeType":"YulIdentifier","src":"27821:3:101"},{"name":"srcOffset","nativeSrc":"27826:9:101","nodeType":"YulIdentifier","src":"27826:9:101"}],"functionName":{"name":"add","nativeSrc":"27817:3:101","nodeType":"YulIdentifier","src":"27817:3:101"},"nativeSrc":"27817:19:101","nodeType":"YulFunctionCall","src":"27817:19:101"}],"functionName":{"name":"mload","nativeSrc":"27811:5:101","nodeType":"YulIdentifier","src":"27811:5:101"},"nativeSrc":"27811:26:101","nodeType":"YulFunctionCall","src":"27811:26:101"}],"functionName":{"name":"sstore","nativeSrc":"27796:6:101","nodeType":"YulIdentifier","src":"27796:6:101"},"nativeSrc":"27796:42:101","nodeType":"YulFunctionCall","src":"27796:42:101"},"nativeSrc":"27796:42:101","nodeType":"YulExpressionStatement","src":"27796:42:101"},{"nativeSrc":"27855:24:101","nodeType":"YulAssignment","src":"27855:24:101","value":{"arguments":[{"name":"dstPtr","nativeSrc":"27869:6:101","nodeType":"YulIdentifier","src":"27869:6:101"},{"kind":"number","nativeSrc":"27877:1:101","nodeType":"YulLiteral","src":"27877:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"27865:3:101","nodeType":"YulIdentifier","src":"27865:3:101"},"nativeSrc":"27865:14:101","nodeType":"YulFunctionCall","src":"27865:14:101"},"variableNames":[{"name":"dstPtr","nativeSrc":"27855:6:101","nodeType":"YulIdentifier","src":"27855:6:101"}]},{"nativeSrc":"27896:33:101","nodeType":"YulAssignment","src":"27896:33:101","value":{"arguments":[{"name":"srcOffset","nativeSrc":"27913:9:101","nodeType":"YulIdentifier","src":"27913:9:101"},{"kind":"number","nativeSrc":"27924:4:101","nodeType":"YulLiteral","src":"27924:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"27909:3:101","nodeType":"YulIdentifier","src":"27909:3:101"},"nativeSrc":"27909:20:101","nodeType":"YulFunctionCall","src":"27909:20:101"},"variableNames":[{"name":"srcOffset","nativeSrc":"27896:9:101","nodeType":"YulIdentifier","src":"27896:9:101"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"27732:1:101","nodeType":"YulIdentifier","src":"27732:1:101"},{"name":"loopEnd","nativeSrc":"27735:7:101","nodeType":"YulIdentifier","src":"27735:7:101"}],"functionName":{"name":"lt","nativeSrc":"27729:2:101","nodeType":"YulIdentifier","src":"27729:2:101"},"nativeSrc":"27729:14:101","nodeType":"YulFunctionCall","src":"27729:14:101"},"nativeSrc":"27721:222:101","nodeType":"YulForLoop","post":{"nativeSrc":"27744:21:101","nodeType":"YulBlock","src":"27744:21:101","statements":[{"nativeSrc":"27746:17:101","nodeType":"YulAssignment","src":"27746:17:101","value":{"arguments":[{"name":"i","nativeSrc":"27755:1:101","nodeType":"YulIdentifier","src":"27755:1:101"},{"kind":"number","nativeSrc":"27758:4:101","nodeType":"YulLiteral","src":"27758:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"27751:3:101","nodeType":"YulIdentifier","src":"27751:3:101"},"nativeSrc":"27751:12:101","nodeType":"YulFunctionCall","src":"27751:12:101"},"variableNames":[{"name":"i","nativeSrc":"27746:1:101","nodeType":"YulIdentifier","src":"27746:1:101"}]}]},"pre":{"nativeSrc":"27725:3:101","nodeType":"YulBlock","src":"27725:3:101","statements":[]},"src":"27721:222:101"},{"body":{"nativeSrc":"27991:166:101","nodeType":"YulBlock","src":"27991:166:101","statements":[{"nativeSrc":"28009:43:101","nodeType":"YulVariableDeclaration","src":"28009:43:101","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"28036:3:101","nodeType":"YulIdentifier","src":"28036:3:101"},{"name":"srcOffset","nativeSrc":"28041:9:101","nodeType":"YulIdentifier","src":"28041:9:101"}],"functionName":{"name":"add","nativeSrc":"28032:3:101","nodeType":"YulIdentifier","src":"28032:3:101"},"nativeSrc":"28032:19:101","nodeType":"YulFunctionCall","src":"28032:19:101"}],"functionName":{"name":"mload","nativeSrc":"28026:5:101","nodeType":"YulIdentifier","src":"28026:5:101"},"nativeSrc":"28026:26:101","nodeType":"YulFunctionCall","src":"28026:26:101"},"variables":[{"name":"lastValue","nativeSrc":"28013:9:101","nodeType":"YulTypedName","src":"28013:9:101","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"28076:6:101","nodeType":"YulIdentifier","src":"28076:6:101"},{"arguments":[{"name":"lastValue","nativeSrc":"28088:9:101","nodeType":"YulIdentifier","src":"28088:9:101"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28115:1:101","nodeType":"YulLiteral","src":"28115:1:101","type":"","value":"3"},{"name":"newLen","nativeSrc":"28118:6:101","nodeType":"YulIdentifier","src":"28118:6:101"}],"functionName":{"name":"shl","nativeSrc":"28111:3:101","nodeType":"YulIdentifier","src":"28111:3:101"},"nativeSrc":"28111:14:101","nodeType":"YulFunctionCall","src":"28111:14:101"},{"kind":"number","nativeSrc":"28127:3:101","nodeType":"YulLiteral","src":"28127:3:101","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"28107:3:101","nodeType":"YulIdentifier","src":"28107:3:101"},"nativeSrc":"28107:24:101","nodeType":"YulFunctionCall","src":"28107:24:101"},{"arguments":[{"kind":"number","nativeSrc":"28137:1:101","nodeType":"YulLiteral","src":"28137:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"28133:3:101","nodeType":"YulIdentifier","src":"28133:3:101"},"nativeSrc":"28133:6:101","nodeType":"YulFunctionCall","src":"28133:6:101"}],"functionName":{"name":"shr","nativeSrc":"28103:3:101","nodeType":"YulIdentifier","src":"28103:3:101"},"nativeSrc":"28103:37:101","nodeType":"YulFunctionCall","src":"28103:37:101"}],"functionName":{"name":"not","nativeSrc":"28099:3:101","nodeType":"YulIdentifier","src":"28099:3:101"},"nativeSrc":"28099:42:101","nodeType":"YulFunctionCall","src":"28099:42:101"}],"functionName":{"name":"and","nativeSrc":"28084:3:101","nodeType":"YulIdentifier","src":"28084:3:101"},"nativeSrc":"28084:58:101","nodeType":"YulFunctionCall","src":"28084:58:101"}],"functionName":{"name":"sstore","nativeSrc":"28069:6:101","nodeType":"YulIdentifier","src":"28069:6:101"},"nativeSrc":"28069:74:101","nodeType":"YulFunctionCall","src":"28069:74:101"},"nativeSrc":"28069:74:101","nodeType":"YulExpressionStatement","src":"28069:74:101"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"27962:7:101","nodeType":"YulIdentifier","src":"27962:7:101"},{"name":"newLen","nativeSrc":"27971:6:101","nodeType":"YulIdentifier","src":"27971:6:101"}],"functionName":{"name":"lt","nativeSrc":"27959:2:101","nodeType":"YulIdentifier","src":"27959:2:101"},"nativeSrc":"27959:19:101","nodeType":"YulFunctionCall","src":"27959:19:101"},"nativeSrc":"27956:201:101","nodeType":"YulIf","src":"27956:201:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"28177:4:101","nodeType":"YulIdentifier","src":"28177:4:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28191:1:101","nodeType":"YulLiteral","src":"28191:1:101","type":"","value":"1"},{"name":"newLen","nativeSrc":"28194:6:101","nodeType":"YulIdentifier","src":"28194:6:101"}],"functionName":{"name":"shl","nativeSrc":"28187:3:101","nodeType":"YulIdentifier","src":"28187:3:101"},"nativeSrc":"28187:14:101","nodeType":"YulFunctionCall","src":"28187:14:101"},{"kind":"number","nativeSrc":"28203:1:101","nodeType":"YulLiteral","src":"28203:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"28183:3:101","nodeType":"YulIdentifier","src":"28183:3:101"},"nativeSrc":"28183:22:101","nodeType":"YulFunctionCall","src":"28183:22:101"}],"functionName":{"name":"sstore","nativeSrc":"28170:6:101","nodeType":"YulIdentifier","src":"28170:6:101"},"nativeSrc":"28170:36:101","nodeType":"YulFunctionCall","src":"28170:36:101"},"nativeSrc":"28170:36:101","nodeType":"YulExpressionStatement","src":"28170:36:101"}]},"nativeSrc":"27567:649:101","nodeType":"YulCase","src":"27567:649:101","value":{"kind":"number","nativeSrc":"27572:1:101","nodeType":"YulLiteral","src":"27572:1:101","type":"","value":"1"}},{"body":{"nativeSrc":"28233:234:101","nodeType":"YulBlock","src":"28233:234:101","statements":[{"nativeSrc":"28247:14:101","nodeType":"YulVariableDeclaration","src":"28247:14:101","value":{"kind":"number","nativeSrc":"28260:1:101","nodeType":"YulLiteral","src":"28260:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"28251:5:101","nodeType":"YulTypedName","src":"28251:5:101","type":""}]},{"body":{"nativeSrc":"28296:67:101","nodeType":"YulBlock","src":"28296:67:101","statements":[{"nativeSrc":"28314:35:101","nodeType":"YulAssignment","src":"28314:35:101","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"28333:3:101","nodeType":"YulIdentifier","src":"28333:3:101"},{"name":"srcOffset","nativeSrc":"28338:9:101","nodeType":"YulIdentifier","src":"28338:9:101"}],"functionName":{"name":"add","nativeSrc":"28329:3:101","nodeType":"YulIdentifier","src":"28329:3:101"},"nativeSrc":"28329:19:101","nodeType":"YulFunctionCall","src":"28329:19:101"}],"functionName":{"name":"mload","nativeSrc":"28323:5:101","nodeType":"YulIdentifier","src":"28323:5:101"},"nativeSrc":"28323:26:101","nodeType":"YulFunctionCall","src":"28323:26:101"},"variableNames":[{"name":"value","nativeSrc":"28314:5:101","nodeType":"YulIdentifier","src":"28314:5:101"}]}]},"condition":{"name":"newLen","nativeSrc":"28277:6:101","nodeType":"YulIdentifier","src":"28277:6:101"},"nativeSrc":"28274:89:101","nodeType":"YulIf","src":"28274:89:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"28383:4:101","nodeType":"YulIdentifier","src":"28383:4:101"},{"arguments":[{"name":"value","nativeSrc":"28442:5:101","nodeType":"YulIdentifier","src":"28442:5:101"},{"name":"newLen","nativeSrc":"28449:6:101","nodeType":"YulIdentifier","src":"28449:6:101"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"28389:52:101","nodeType":"YulIdentifier","src":"28389:52:101"},"nativeSrc":"28389:67:101","nodeType":"YulFunctionCall","src":"28389:67:101"}],"functionName":{"name":"sstore","nativeSrc":"28376:6:101","nodeType":"YulIdentifier","src":"28376:6:101"},"nativeSrc":"28376:81:101","nodeType":"YulFunctionCall","src":"28376:81:101"},"nativeSrc":"28376:81:101","nodeType":"YulExpressionStatement","src":"28376:81:101"}]},"nativeSrc":"28225:242:101","nodeType":"YulCase","src":"28225:242:101","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"27547:6:101","nodeType":"YulIdentifier","src":"27547:6:101"},{"kind":"number","nativeSrc":"27555:2:101","nodeType":"YulLiteral","src":"27555:2:101","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"27544:2:101","nodeType":"YulIdentifier","src":"27544:2:101"},"nativeSrc":"27544:14:101","nodeType":"YulFunctionCall","src":"27544:14:101"},"nativeSrc":"27537:930:101","nodeType":"YulSwitch","src":"27537:930:101"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"27174:1299:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"27255:4:101","nodeType":"YulTypedName","src":"27255:4:101","type":""},{"name":"src","nativeSrc":"27261:3:101","nodeType":"YulTypedName","src":"27261:3:101","type":""}],"src":"27174:1299:101"},{"body":{"nativeSrc":"28614:130:101","nodeType":"YulBlock","src":"28614:130:101","statements":[{"nativeSrc":"28624:26:101","nodeType":"YulAssignment","src":"28624:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"28636:9:101","nodeType":"YulIdentifier","src":"28636:9:101"},{"kind":"number","nativeSrc":"28647:2:101","nodeType":"YulLiteral","src":"28647:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28632:3:101","nodeType":"YulIdentifier","src":"28632:3:101"},"nativeSrc":"28632:18:101","nodeType":"YulFunctionCall","src":"28632:18:101"},"variableNames":[{"name":"tail","nativeSrc":"28624:4:101","nodeType":"YulIdentifier","src":"28624:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28666:9:101","nodeType":"YulIdentifier","src":"28666:9:101"},{"arguments":[{"name":"value0","nativeSrc":"28681:6:101","nodeType":"YulIdentifier","src":"28681:6:101"},{"kind":"number","nativeSrc":"28689:4:101","nodeType":"YulLiteral","src":"28689:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"28677:3:101","nodeType":"YulIdentifier","src":"28677:3:101"},"nativeSrc":"28677:17:101","nodeType":"YulFunctionCall","src":"28677:17:101"}],"functionName":{"name":"mstore","nativeSrc":"28659:6:101","nodeType":"YulIdentifier","src":"28659:6:101"},"nativeSrc":"28659:36:101","nodeType":"YulFunctionCall","src":"28659:36:101"},"nativeSrc":"28659:36:101","nodeType":"YulExpressionStatement","src":"28659:36:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28715:9:101","nodeType":"YulIdentifier","src":"28715:9:101"},{"kind":"number","nativeSrc":"28726:2:101","nodeType":"YulLiteral","src":"28726:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28711:3:101","nodeType":"YulIdentifier","src":"28711:3:101"},"nativeSrc":"28711:18:101","nodeType":"YulFunctionCall","src":"28711:18:101"},{"name":"value1","nativeSrc":"28731:6:101","nodeType":"YulIdentifier","src":"28731:6:101"}],"functionName":{"name":"mstore","nativeSrc":"28704:6:101","nodeType":"YulIdentifier","src":"28704:6:101"},"nativeSrc":"28704:34:101","nodeType":"YulFunctionCall","src":"28704:34:101"},"nativeSrc":"28704:34:101","nodeType":"YulExpressionStatement","src":"28704:34:101"}]},"name":"abi_encode_tuple_t_rational_16_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"28478:266:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28575:9:101","nodeType":"YulTypedName","src":"28575:9:101","type":""},{"name":"value1","nativeSrc":"28586:6:101","nodeType":"YulTypedName","src":"28586:6:101","type":""},{"name":"value0","nativeSrc":"28594:6:101","nodeType":"YulTypedName","src":"28594:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28605:4:101","nodeType":"YulTypedName","src":"28605:4:101","type":""}],"src":"28478:266:101"},{"body":{"nativeSrc":"28930:217:101","nodeType":"YulBlock","src":"28930:217:101","statements":[{"nativeSrc":"28940:27:101","nodeType":"YulAssignment","src":"28940:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"28952:9:101","nodeType":"YulIdentifier","src":"28952:9:101"},{"kind":"number","nativeSrc":"28963:3:101","nodeType":"YulLiteral","src":"28963:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"28948:3:101","nodeType":"YulIdentifier","src":"28948:3:101"},"nativeSrc":"28948:19:101","nodeType":"YulFunctionCall","src":"28948:19:101"},"variableNames":[{"name":"tail","nativeSrc":"28940:4:101","nodeType":"YulIdentifier","src":"28940:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28983:9:101","nodeType":"YulIdentifier","src":"28983:9:101"},{"name":"value0","nativeSrc":"28994:6:101","nodeType":"YulIdentifier","src":"28994:6:101"}],"functionName":{"name":"mstore","nativeSrc":"28976:6:101","nodeType":"YulIdentifier","src":"28976:6:101"},"nativeSrc":"28976:25:101","nodeType":"YulFunctionCall","src":"28976:25:101"},"nativeSrc":"28976:25:101","nodeType":"YulExpressionStatement","src":"28976:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29021:9:101","nodeType":"YulIdentifier","src":"29021:9:101"},{"kind":"number","nativeSrc":"29032:2:101","nodeType":"YulLiteral","src":"29032:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29017:3:101","nodeType":"YulIdentifier","src":"29017:3:101"},"nativeSrc":"29017:18:101","nodeType":"YulFunctionCall","src":"29017:18:101"},{"arguments":[{"name":"value1","nativeSrc":"29041:6:101","nodeType":"YulIdentifier","src":"29041:6:101"},{"kind":"number","nativeSrc":"29049:4:101","nodeType":"YulLiteral","src":"29049:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"29037:3:101","nodeType":"YulIdentifier","src":"29037:3:101"},"nativeSrc":"29037:17:101","nodeType":"YulFunctionCall","src":"29037:17:101"}],"functionName":{"name":"mstore","nativeSrc":"29010:6:101","nodeType":"YulIdentifier","src":"29010:6:101"},"nativeSrc":"29010:45:101","nodeType":"YulFunctionCall","src":"29010:45:101"},"nativeSrc":"29010:45:101","nodeType":"YulExpressionStatement","src":"29010:45:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29075:9:101","nodeType":"YulIdentifier","src":"29075:9:101"},{"kind":"number","nativeSrc":"29086:2:101","nodeType":"YulLiteral","src":"29086:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29071:3:101","nodeType":"YulIdentifier","src":"29071:3:101"},"nativeSrc":"29071:18:101","nodeType":"YulFunctionCall","src":"29071:18:101"},{"name":"value2","nativeSrc":"29091:6:101","nodeType":"YulIdentifier","src":"29091:6:101"}],"functionName":{"name":"mstore","nativeSrc":"29064:6:101","nodeType":"YulIdentifier","src":"29064:6:101"},"nativeSrc":"29064:34:101","nodeType":"YulFunctionCall","src":"29064:34:101"},"nativeSrc":"29064:34:101","nodeType":"YulExpressionStatement","src":"29064:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29118:9:101","nodeType":"YulIdentifier","src":"29118:9:101"},{"kind":"number","nativeSrc":"29129:2:101","nodeType":"YulLiteral","src":"29129:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"29114:3:101","nodeType":"YulIdentifier","src":"29114:3:101"},"nativeSrc":"29114:18:101","nodeType":"YulFunctionCall","src":"29114:18:101"},{"name":"value3","nativeSrc":"29134:6:101","nodeType":"YulIdentifier","src":"29134:6:101"}],"functionName":{"name":"mstore","nativeSrc":"29107:6:101","nodeType":"YulIdentifier","src":"29107:6:101"},"nativeSrc":"29107:34:101","nodeType":"YulFunctionCall","src":"29107:34:101"},"nativeSrc":"29107:34:101","nodeType":"YulExpressionStatement","src":"29107:34:101"}]},"name":"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"28749:398:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28875:9:101","nodeType":"YulTypedName","src":"28875:9:101","type":""},{"name":"value3","nativeSrc":"28886:6:101","nodeType":"YulTypedName","src":"28886:6:101","type":""},{"name":"value2","nativeSrc":"28894:6:101","nodeType":"YulTypedName","src":"28894:6:101","type":""},{"name":"value1","nativeSrc":"28902:6:101","nodeType":"YulTypedName","src":"28902:6:101","type":""},{"name":"value0","nativeSrc":"28910:6:101","nodeType":"YulTypedName","src":"28910:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28921:4:101","nodeType":"YulTypedName","src":"28921:4:101","type":""}],"src":"28749:398:101"},{"body":{"nativeSrc":"29288:130:101","nodeType":"YulBlock","src":"29288:130:101","statements":[{"nativeSrc":"29298:26:101","nodeType":"YulAssignment","src":"29298:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"29310:9:101","nodeType":"YulIdentifier","src":"29310:9:101"},{"kind":"number","nativeSrc":"29321:2:101","nodeType":"YulLiteral","src":"29321:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29306:3:101","nodeType":"YulIdentifier","src":"29306:3:101"},"nativeSrc":"29306:18:101","nodeType":"YulFunctionCall","src":"29306:18:101"},"variableNames":[{"name":"tail","nativeSrc":"29298:4:101","nodeType":"YulIdentifier","src":"29298:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29340:9:101","nodeType":"YulIdentifier","src":"29340:9:101"},{"arguments":[{"name":"value0","nativeSrc":"29355:6:101","nodeType":"YulIdentifier","src":"29355:6:101"},{"kind":"number","nativeSrc":"29363:4:101","nodeType":"YulLiteral","src":"29363:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"29351:3:101","nodeType":"YulIdentifier","src":"29351:3:101"},"nativeSrc":"29351:17:101","nodeType":"YulFunctionCall","src":"29351:17:101"}],"functionName":{"name":"mstore","nativeSrc":"29333:6:101","nodeType":"YulIdentifier","src":"29333:6:101"},"nativeSrc":"29333:36:101","nodeType":"YulFunctionCall","src":"29333:36:101"},"nativeSrc":"29333:36:101","nodeType":"YulExpressionStatement","src":"29333:36:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29389:9:101","nodeType":"YulIdentifier","src":"29389:9:101"},{"kind":"number","nativeSrc":"29400:2:101","nodeType":"YulLiteral","src":"29400:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29385:3:101","nodeType":"YulIdentifier","src":"29385:3:101"},"nativeSrc":"29385:18:101","nodeType":"YulFunctionCall","src":"29385:18:101"},{"name":"value1","nativeSrc":"29405:6:101","nodeType":"YulIdentifier","src":"29405:6:101"}],"functionName":{"name":"mstore","nativeSrc":"29378:6:101","nodeType":"YulIdentifier","src":"29378:6:101"},"nativeSrc":"29378:34:101","nodeType":"YulFunctionCall","src":"29378:34:101"},"nativeSrc":"29378:34:101","nodeType":"YulExpressionStatement","src":"29378:34:101"}]},"name":"abi_encode_tuple_t_rational_96_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"29152:266:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29249:9:101","nodeType":"YulTypedName","src":"29249:9:101","type":""},{"name":"value1","nativeSrc":"29260:6:101","nodeType":"YulTypedName","src":"29260:6:101","type":""},{"name":"value0","nativeSrc":"29268:6:101","nodeType":"YulTypedName","src":"29268:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29279:4:101","nodeType":"YulTypedName","src":"29279:4:101","type":""}],"src":"29152:266:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        mcopy(add(pos, 0x20), add(value, 0x20), length)\n        mstore(add(add(pos, length), 0x20), 0)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string(value0, add(headStart, 32))\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function validator_revert_bool(value)\n    {\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IERC4626_$6400t_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_bool(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_decode_tuple_t_uint256t_addresst_addresst_address(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n        let value_3 := calldataload(add(headStart, 96))\n        validator_revert_address(value_3)\n        value3 := value_3\n    }\n    function abi_decode_tuple_t_uint256t_addresst_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_uint256t_uint256t_uint256t_int256t_addresst_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 192) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        let value_4 := calldataload(add(headStart, 128))\n        validator_revert_address(value_4)\n        value4 := value_4\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 160))\n        value5 := value_5\n    }\n    function abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function abi_decode_available_length_bytes(src, length, end) -> array\n    {\n        let size := 0\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let result := and(add(length, 31), not(31))\n        size := add(result, 0x20)\n        let memPtr := 0\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(result, 63), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        array := memPtr\n        mstore(memPtr, length)\n        if gt(add(src, length), end) { revert(0, 0) }\n        calldatacopy(add(memPtr, 0x20), src, length)\n        mstore(add(add(memPtr, length), 0x20), 0)\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        value1 := abi_decode_available_length_bytes(add(_1, 32), calldataload(_1), dataEnd)\n    }\n    function abi_decode_tuple_t_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_decode_string(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        array := abi_decode_available_length_bytes(add(offset, 0x20), calldataload(offset), end)\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        value0 := abi_decode_string(add(headStart, offset), dataEnd)\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        value1 := abi_decode_string(add(headStart, offset_1), dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 96))\n        value3 := value_1\n    }\n    function abi_decode_tuple_t_bool(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_bool(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value6, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, shl(248, 255)))\n        mstore(add(headStart, 32), 224)\n        let tail_1 := abi_encode_string(value1, add(headStart, 224))\n        mstore(add(headStart, 64), sub(tail_1, headStart))\n        let tail_2 := abi_encode_string(value2, tail_1)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 160), value5)\n        mstore(add(headStart, 192), sub(tail_2, headStart))\n        let pos := tail_2\n        let length := mload(value6)\n        mstore(tail_2, length)\n        pos := add(tail_2, 32)\n        let srcPtr := add(value6, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, 32)\n            srcPtr := add(srcPtr, 32)\n        }\n        tail := pos\n    }\n    function abi_decode_tuple_t_contract$_ILPWhitelist_$28916(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_contract$_ILPWhitelist_$28916__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256t_uint256t_uint256t_int256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n    }\n    function abi_encode_tuple_t_contract$_IERC4626_$6400__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_enum$_Parameter_$28704t_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(lt(value, 4)) { revert(0, 0) }\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_contract$_ICooler_$28695(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function validator_revert_uint8(value)\n    {\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        let value_4 := calldataload(add(headStart, 128))\n        validator_revert_uint8(value_4)\n        value4 := value_4\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 160))\n        value5 := value_5\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 192))\n        value6 := value_6\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n    }\n    function checked_sub_t_int256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        let _1 := slt(y, 0)\n        if or(and(iszero(_1), sgt(diff, x)), and(_1, slt(diff, x))) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_contract$_EToken_$21755_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_decode_tuple_t_uint40_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_contract$_ICooler_$28695__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bool(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_contract$_EToken_$21755_t_address_t_address_t_uint256__to_t_address_t_address_t_address_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint8_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_uint8(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_2e5045ff73280aa8e8acd8c82710f23812497f87f7f576e2220a2ddd0d45eade__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 21)\n        mstore(add(headStart, 64), \"EIP712: Uninitialized\")\n        tail := add(headStart, 96)\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_contract$_ILPWhitelist_$28916_t_contract$_ILPWhitelist_$28916__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_contract$_EToken_$21755__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function abi_encode_enum_Parameter(value, pos)\n    {\n        if iszero(lt(value, 4))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n        mstore(pos, value)\n    }\n    function abi_encode_tuple_t_enum$_Parameter_$28704__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        abi_encode_enum_Parameter(value0, headStart)\n    }\n    function abi_encode_tuple_t_enum$_Parameter_$28704_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        abi_encode_enum_Parameter(value0, headStart)\n        mstore(add(headStart, 32), value1)\n    }\n    function negate_t_int256(value) -> ret\n    {\n        if eq(value, shl(255, 1)) { panic_error_0x11() }\n        ret := sub(0, value)\n    }\n    function abi_encode_tuple_t_contract$_ICooler_$28695_t_contract$_ICooler_$28695__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n        mstore(add(headStart, 160), value5)\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffff), and(y, 0xffffffff))\n        if gt(diff, 0xffffffff) { panic_error_0x11() }\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        product := mul(x, y)\n        if iszero(or(iszero(x), eq(y, div(product, x)))) { panic_error_0x11() }\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function abi_encode_tuple_t_uint256_t_uint256_t_int256__to_t_uint256_t_uint256_t_int256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_decode_tuple_t_bytes32_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function checked_add_t_int256(x, y) -> sum\n    {\n        sum := add(x, y)\n        let _1 := slt(sum, y)\n        let _2 := slt(x, 0)\n        if or(and(iszero(_2), _1), and(_2, iszero(_1))) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_uint96__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_rational_128_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), value1)\n    }\n    function array_dataslot_string_storage(ptr) -> data\n    {\n        mstore(0, ptr)\n        data := keccak256(0, 0x20)\n    }\n    function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n    {\n        if gt(len, 31)\n        {\n            mstore(0, array)\n            let data := keccak256(0, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _1 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _1) { start := add(start, 1) }\n            { sstore(start, 0) }\n        }\n    }\n    function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used\n    {\n        used := or(and(data, not(shr(shl(3, len), not(0)))), shl(1, len))\n    }\n    function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src)\n    {\n        let newLen := mload(src)\n        if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n        clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), newLen)\n        let srcOffset := 0\n        srcOffset := 0x20\n        switch gt(newLen, 31)\n        case 1 {\n            let loopEnd := and(newLen, not(31))\n            let dstPtr := array_dataslot_string_storage(slot)\n            let i := 0\n            for { } lt(i, loopEnd) { i := add(i, 0x20) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, 0x20)\n            }\n            if lt(loopEnd, newLen)\n            {\n                let lastValue := mload(add(src, srcOffset))\n                sstore(dstPtr, and(lastValue, not(shr(and(shl(3, newLen), 248), not(0)))))\n            }\n            sstore(slot, add(shl(1, newLen), 1))\n        }\n        default {\n            let value := 0\n            if newLen\n            {\n                value := mload(add(src, srcOffset))\n            }\n            sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n        }\n    }\n    function abi_encode_tuple_t_rational_16_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_encode_tuple_t_rational_96_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), value1)\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"7234":[{"length":32,"start":12614},{"length":32,"start":12655},{"length":32,"start":13536}],"25474":[{"length":32,"start":1438},{"length":32,"start":3815},{"length":32,"start":4513},{"length":32,"start":5014},{"length":32,"start":6661},{"length":32,"start":7134},{"length":32,"start":9551},{"length":32,"start":10457},{"length":32,"start":10722},{"length":32,"start":16229}]},"linkReferences":{},"object":"608060405260043610610371575f3560e01c80637d919a97116101c8578063ad3cb1cc116100fd578063d17e6c931161009d578063dfcb48bd1161006d578063dfcb48bd146109ce578063e3a8e29c146109e2578063e5a6b10f14610a01578063ee01a18314610a15575f5ffd5b8063d17e6c9314610952578063d336078c14610971578063d505accf14610990578063dd62ed3e146109af575f5ffd5b8063c1cca2b3116100d8578063c1cca2b3146108e3578063c3df9dac14610902578063cda4bcc214610921578063cf6a9a9414610935575f5ffd5b8063ad3cb1cc14610882578063b1bf962d146108b2578063ba4e8df5146108cf575f5ffd5b80639d90724d11610168578063a227dc4111610143578063a227dc4114610808578063a7f8a5e214610827578063a9059cbb14610844578063ac860f7414610863575f5ffd5b80639d90724d146107b1578063a08f2203146107d5578063a0ce552d146107e9575f5ffd5b8063854cff2f116101a3578063854cff2f14610742578063918344d31461076157806393e59dc11461078057806395d89b411461079d575f5ffd5b80637d919a97146106e85780637ecebe00146106fc57806384b0196e1461071b575f5ffd5b806333481fc9116102a95780634ffcda8c116102495780636fe0e395116102195780636fe0e3951461066c57806370a082311461068b57806376c7fc55146106aa57806379d989fb146106c9575f5ffd5b80634ffcda8c1461061157806352d1902d146106305780636c321c8a146106445780636c6f454214610658575f5ffd5b80634d15eb03116102845780634d15eb03146105905780634eb978a4146105d65780634f1ef286146105ea5780634fe0bd1e146105fd575f5ffd5b806333481fc91461053e5780633644e5151461055d5780633ad2820b14610571575f5ffd5b806318160ddd1161031457806323b872dd116102ef57806323b872dd146104bb57806323e103a8146104da5780632e2d2984146104f9578063313ce56714610518575f5ffd5b806318160ddd14610467578063194448e51461047b5780631da24f3e1461049c575f5ffd5b8063095ea7b31161034f578063095ea7b3146103ec5780630afbcdc91461040b578063159ec2df1461043f57806316db000f14610453575f5ffd5b806301ffc9a7146103755780630600a865146103a957806306fdde03146103cb575b5f5ffd5b348015610380575f5ffd5b5061039461038f36600461485b565b610a29565b60405190151581526020015b60405180910390f35b3480156103b4575f5ffd5b506103bd610a8a565b6040519081526020016103a0565b3480156103d6575f5ffd5b506103df610ae5565b6040516103a091906148b0565b3480156103f7575f5ffd5b506103946104063660046148d6565b610b8a565b348015610416575f5ffd5b5061042a610425366004614900565b610ba1565b604080519283526020830191909152016103a0565b34801561044a575f5ffd5b506103bd610bc3565b34801561045e575f5ffd5b506103bd610c02565b348015610472575f5ffd5b506103bd610c24565b348015610486575f5ffd5b5061049a610495366004614928565b610c52565b005b3480156104a7575f5ffd5b506103bd6104b6366004614900565b610eac565b3480156104c6575f5ffd5b506103946104d536600461495f565b610eb6565b3480156104e5575f5ffd5b506103bd6104f436600461499d565b610edb565b348015610504575f5ffd5b5061049a6105133660046149ed565b611196565b348015610523575f5ffd5b5061052c611393565b60405160ff90911681526020016103a0565b348015610549575f5ffd5b506103bd610558366004614900565b611473565b348015610568575f5ffd5b506103bd6114f5565b34801561057c575f5ffd5b5061049a61058b366004614a2c565b6114fe565b34801561059b575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020016103a0565b3480156105e1575f5ffd5b5061049a6115a4565b61049a6105f8366004614b08565b6116d4565b348015610608575f5ffd5b506103bd6116f3565b34801561061c575f5ffd5b5061049a61062b366004614b68565b611707565b34801561063b575f5ffd5b506103bd61186a565b34801561064f575f5ffd5b506103bd611885565b348015610663575f5ffd5b506103bd6118b6565b348015610677575f5ffd5b5061049a610686366004614baf565b6118c9565b348015610696575f5ffd5b506103bd6106a5366004614900565b6119e1565b3480156106b5575f5ffd5b5061049a6106c4366004614900565b6119fa565b3480156106d4575f5ffd5b506103bd6106e3366004614c23565b611ade565b3480156106f3575f5ffd5b506032546103bd565b348015610707575f5ffd5b506103bd610716366004614900565b611b18565b348015610726575f5ffd5b5061072f611b22565b6040516103a09796959493929190614c3e565b34801561074d575f5ffd5b5061049a61075c366004614900565b611bcb565b34801561076c575f5ffd5b5061049a61077b366004614cd4565b611d06565b34801561078b575f5ffd5b506067546001600160a01b03166105be565b3480156107a8575f5ffd5b506103df611e50565b3480156107bc575f5ffd5b50606554600160801b90046001600160801b03166103bd565b3480156107e0575f5ffd5b506103bd611e8e565b3480156107f4575f5ffd5b5061049a610803366004614cf7565b611f81565b348015610813575f5ffd5b5061049a610822366004614d0e565b611fd4565b348015610832575f5ffd5b506068546001600160a01b03166105be565b34801561084f575f5ffd5b5061039461085e3660046148d6565b612026565b34801561086e575f5ffd5b5061049a61087d366004614cf7565b612033565b34801561088d575f5ffd5b506103df604051806040016040528060058152602001640352e302e360dc1b81525081565b3480156108bd575f5ffd5b506064546001600160801b03166103bd565b3480156108da575f5ffd5b506103bd6121b9565b3480156108ee575f5ffd5b5061049a6108fd366004614d3d565b6121d2565b34801561090d575f5ffd5b506103bd61091c366004614cd4565b6123d6565b34801561092c575f5ffd5b506103bd612523565b348015610940575f5ffd5b506069546001600160a01b03166105be565b34801561095d575f5ffd5b5061049a61096c366004614900565b61253c565b34801561097c575f5ffd5b506103bd61098b366004614cf7565b612677565b34801561099b575f5ffd5b5061049a6109aa366004614d6a565b612717565b3480156109ba575f5ffd5b506103bd6109c9366004614dd6565b61286c565b3480156109d9575f5ffd5b506103bd6128b5565b3480156109ed575f5ffd5b5061049a6109fc366004614900565b6128ce565b348015610a0c575f5ffd5b506105be6129df565b348015610a20575f5ffd5b506103bd612a60565b5f610a3382612a79565b80610a4e57506001600160e01b031982166336372b0760e01b145b80610a6957506001600160e01b0319821663a219a02560e01b145b80610a8457506001600160e01b03198216636d5136b160e11b145b92915050565b5f5f610ab9610a976121b9565b670de0b6b3a7640000610ab26065546001600160801b031690565b9190612aae565b90505f610ac4610c24565b905081811015610ad4575f610ade565b610ade8282614e16565b9250505090565b60605f5f5160206151475f395f51905f525b9050806003018054610b0890614e29565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3490614e29565b8015610b7f5780601f10610b5657610100808354040283529160200191610b7f565b820191905f5260205f20905b815481529060010190602001808311610b6257829003601f168201915b505050505091505090565b5f33610b97818585612b5e565b5060019392505050565b5f5f610bac83612b6b565b60645490946001600160801b039091169350915050565b5f5f610bcd610c24565b90508015610bfa57606554610bf5906001600160801b03600160801b82048116911683612aae565b610bfc565b5f5b91505090565b5f610c0d6064612b9b565b610c15610c24565b610c1f9190614e16565b905090565b606480545f91610c1f916001600160801b031690610c43906065612bbe565b6001600160601b031690612c3a565b5f5f610c5c6129df565b90506001600160a01b0384161580610ce45750806001600160a01b0316846001600160a01b03166338d52e0f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cb5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd99190614e61565b6001600160a01b0316145b610d0157604051638959269160e01b815260040160405180910390fd5b5f610d146068546001600160a01b031690565b90505f6001600160a01b03821615610e29576040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610d6a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d8e9190614e7c565b90508015610e27578515610daf57610da68382612c58565b95509150610e27565b604051635d043b2960e11b815260048101829052306024820181905260448201526001600160a01b0384169063ba087652906064016020604051808303815f875af1158015610e00573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e249190614e7c565b91505b505b606880546001600160a01b0319166001600160a01b038816179055610e5a60325482610e559190614e93565b612d9b565b5f60325560405184151581526001600160a01b0380881691908416907f243f9479bbdaf9f3395e726975293ee3724f3819f4322a018c98afb9de70a1e0906020015b60405180910390a3505050505050565b5f610a8482612b6b565b5f33610ec3858285612db0565b610ece858585612e0e565b60019150505b9392505050565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f255760405163799e780f60e01b815260040160405180910390fd5b5f610f386068546001600160a01b031690565b6001600160a01b031614610f4e57610f4e6115a4565b5f610f68610f5b856119e1565b610f63610a8a565b612e6b565b90505f198603610f76578095505b855f03610f86575f91505061118e565b6069546001600160a01b03161580610fab57506069546001600160a01b038681169116145b8061102d5750606954604051632e704af760e11b81526001600160a01b0390911690635ce095ee90610fe590309088908b90600401614eb2565b602060405180830381865afa158015611000573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110249190614ed6565b64ffffffffff16155b6069546001600160a01b03169061106857604051632bc34ba360e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b508581808211156110955760405163087da9fd60e01b81526004810192909252602482015260440161105f565b50506067546001600160a01b0316158061111d5750606754604051639051c76360e01b81526001600160a01b0390911690639051c763906110de90309088908b90600401614eb2565b602060405180830381865afa1580156110f9573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061111d9190614efa565b8487909161114f5760405163d38a933960e01b81526001600160a01b039092166004830152602482015260440161105f565b5050836001600160a01b0316856001600160a01b03161461117557611175848688612db0565b61117f8487612e7a565b6111898387612eae565b859150505b949350505050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146111df5760405163799e780f60e01b815260040160405180910390fd5b6067546001600160a01b0316158061130857506067546040516337ee20dd60e01b81526001600160a01b03909116906337ee20dd9061122690309086908890600401614eb2565b602060405180830381865afa158015611241573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112659190614efa565b80156113085750806001600160a01b0316826001600160a01b031614806113085750606754604051635fcdca3760e01b81523060048201526001600160a01b03848116602483015283811660448301526064820186905290911690635fcdca3790608401602060405180830381865afa1580156112e4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113089190614efa565b8284909161133a576040516306d6c99360e51b81526001600160a01b039092166004830152602482015260440161105f565b50506113468184612f67565b61134e612a60565b611356611885565b101561138e57611364611885565b61136c612a60565b6040516362464ab760e01b81526004810192909252602482015260440161105f565b505050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114149190614e61565b6001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561144f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c1f9190614f15565b6001600160a01b0381165f90815260666020526040812080548390600160e01b900463ffffffff166114c457604051633d56093960e21b81526001600160a01b03909116600482015260240161105f565b508054610ed4906001600160801b03166114e66114df612523565b8490612f9b565b6001600160601b031690613035565b5f610c1f613052565b335f81815260666020526040902054600160e01b900463ffffffff1661154357604051634e63eda360e11b81526001600160a01b03909116600482015260240161105f565b506115508686868661305b565b801561159c576115608282612eae565b816001600160a01b0316867fc8e60e828d888d5921f45ececd1bc138a29c2b6aacc8ab8a762f3f096492c56183604051610e9c91815260200190565b505050505050565b5f6115b76068546001600160a01b031690565b90506001600160a01b0381166115e057604051638959269160e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201525f906001600160a01b038316906307a2d13a9082906370a0823190602401602060405180830381865afa15801561162c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116509190614e7c565b6040518263ffffffff1660e01b815260040161166e91815260200190565b602060405180830381865afa158015611689573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116ad9190614e7c565b90505f603254826116be9190614e93565b9050801561138e57603282905561138e81612d9b565b6116dc61313b565b6116e5826131e1565b6116ef82826131ea565b5050565b5f610c1f6116ff610c24565b6065906132a6565b335f81815260666020526040902054600160e01b900463ffffffff1661174c57604051634e63eda360e11b81526001600160a01b03909116600482015260240161105f565b50611755611e8e565b8211156117875781611765611e8e565b6040516308f31df360e01b81526004810192909252602482015260440161105f565b61179460645f60656132ce565b80516064805460208401516040909401516001600160801b039093166001600160e01b031990911617600160801b6001600160601b0390941693909302929092176001600160e01b0316600160e01b63ffffffff928316021790915561180190606590849084906133c416565b80516020909101516001600160801b03908116600160801b0291161760655560405183907f266dc24a75ea4c7d7c74f89a78dc3a44307babf0b588230497189fc46d71693d9061185d9084908690918252602082015260400190565b60405180910390a2505050565b5f6118736134d5565b505f5160206151875f395f51905f5290565b5f5f61188f610c24565b90508015610bfa57610bf5670de0b6b3a764000082610ab26065546001600160801b031690565b5f610c1f6065546001600160801b031690565b5f6118d261351e565b805490915060ff600160401b820416159067ffffffffffffffff165f811580156118f95750825b90505f8267ffffffffffffffff1660011480156119155750303b155b905081158015611923575080155b156119415760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561196b57845460ff60401b1916600160401b1785555b611973613546565b61197d8989613556565b61198689613568565b6119908787613593565b83156119d657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050565b5f610a846119ee83612b6b565b610c4360646065612bbe565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611a435760405163799e780f60e01b815260040160405180910390fd5b806001600160a01b038116611a7757604051633d56093960e21b81526001600160a01b03909116600482015260240161105f565b505f611a8282611473565b6001600160a01b0383165f818152606660205260408082209190915551919250907fe2ebfbed0df9004eae018a4ae91b24baa0cd1d83f495fab6dde3a1493f9dc6c690611ad29084815260200190565b60405180910390a25050565b5f8115611b0057610a84611af460646065612bbe565b6001600160601b031690565b606454600160801b90046001600160601b0316610a84565b5f610a84826135f9565b5f60608082808083815f5160206151675f395f51905f528054909150158015611b4d57506001810154155b611b915760405162461bcd60e51b81526020600482015260156024820152741152540dcc4c8e88155b9a5b9a5d1a585b1a5e9959605a1b604482015260640161105f565b611b99613621565b611ba161365f565b604080515f80825260208201909252600f60f81b9c939b5091995046985030975095509350915050565b6001600160a01b0381161580611c7157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c42573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c669190614e61565b6001600160a01b0316145b8190611c9c57604051637ef0808b60e01b81526001600160a01b03909116600482015260240161105f565b50606754604080516001600160a01b03928316815291831660208301527fdb0a396bdd47d29c2b55a6631f0b286785ea8ed9f585d34c8e32cdb022c3bc82910160405180910390a1606780546001600160a01b0319166001600160a01b0392909216919091179055565b5f611d1082611473565b6001600160a01b0383165f908152606660205260409020909150838211611d4957819350815f14611d4457611d4481613675565b611dd2565b611d5d84611d55612523565b839190613690565b506001600160a01b0384165f908152606660209081526040918290208351815492850151949093015163ffffffff16600160e01b026001600160e01b036001600160601b03909516600160801b026001600160e01b03199093166001600160801b039094169390931791909117929092161790555b835f03611ddf5750505050565b611de8846136cc565b826001600160a01b03167fa1aeb41f04a9a2aa1450e8edd0fa1a0a7971ff65c7bbb7b2ca0379b9327edbaf85604051611e2391815260200190565b60405180910390a2611e4a333086611e396129df565b6001600160a01b0316929190613735565b50505050565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0480546060915f5160206151475f395f51905f5291610b0890614e29565b5f5f611e98610c24565b6069549091506001600160a01b031615611f585760695460405163f3f4370360e01b81523060048201525f916001600160a01b03169063f3f4370390602401602060405180830381865afa158015611ef2573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f169190614e7c565b9050818110611f27575f9150611f52565b611f4f611f348284614e16565b610f63611f3f6128b5565b8590670de0b6b3a7640000612aae565b91505b50611f76565b611f73611f636128b5565b8290670de0b6b3a7640000612aae565b90505b610bfc6065826132a6565b611f8b3382612e7a565b611f9c611f978261376b565b6136cc565b60405181815233907fa17978b5145b36c8c694b15cd193ab32fac45fbb1b2378e56ca71b11a5bc57229060200160405180910390a250565b335f81815260666020526040902054600160e01b900463ffffffff1661201957604051634e63eda360e11b81526001600160a01b03909116600482015260240161105f565b50611e4a8484848461305b565b5f33610b97818585612e0e565b5f6120466068546001600160a01b031690565b90506001600160a01b03811661206f57604051638959269160e01b815260040160405180910390fd5b5f61207861379b565b90505f19830361208a578092506120b9565b8281808211156120b65760405163531309fb60e11b81526004810192909252602482015260440161105f565b50505b8260325f8282546120ca9190614f30565b909155506120d890506129df565b60405163095ea7b360e01b81526001600160a01b03848116600483015260248201869052919091169063095ea7b3906044016020604051808303815f875af1158015612126573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061214a9190614efa565b50604051636e553f6560e01b8152600481018490523060248201526001600160a01b03831690636e553f65906044016020604051808303815f875af1158015612195573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e4a9190614e7c565b6067545f90610c1f90600160a01b900461ffff1661380c565b5f8260038111156121e5576121e5614f43565b0361225a57670b1a2bc2ec500000811015801561220a575067120a871cc00200008111155b829061222a5760405163f8f0178560e01b815260040161105f9190614f77565b5061223481613821565b6067805461ffff92909216600160a01b0261ffff60a01b19909216919091179055612399565b600182600381111561226e5761226e614f43565b036122ce5781670de0b6b3a764000082111561229e5760405163f8f0178560e01b815260040161105f9190614f77565b506122a881613821565b6067805461ffff92909216600160b01b0261ffff60b01b19909216919091179055612399565b60028260038111156122e2576122e2614f43565b036123425781670de0b6b3a76400008211156123125760405163f8f0178560e01b815260040161105f9190614f77565b5061231c81613821565b6067805461ffff92909216600160c01b0261ffff60c01b19909216919091179055612399565b816706f05b59d3b2000082111561236d5760405163f8f0178560e01b815260040161105f9190614f77565b5061237781613821565b6067805461ffff92909216600160d01b0261ffff60d01b199092169190911790555b7feeeae4504d4c033c7da36bf41d8ece7c21842071ca9f9b423f8e8e36483dcd9682826040516123ca929190614f85565b60405180910390a15050565b335f81815260666020526040812054909190600160e01b900463ffffffff1661241e57604051634e63eda360e11b81526001600160a01b03909116600482015260240161105f565b508261242c81610f63610c02565b9350835f0361243c579050610a84565b61245d84612448612523565b335f908152606660205260409020919061383a565b50335f908152606660209081526040918290208351815492850151949093015163ffffffff16600160e01b026001600160e01b036001600160601b03909516600160801b026001600160e01b03199093166001600160801b039094169390931791909117929092161790556124d4611f9785614fa0565b6124de8385612eae565b604080518581526020810183905233917f98697a4799dbd9db66c7168304c43cba77a27a50d2785625e09072e0d91fdd53910160405180910390a261118e8482614e16565b6067545f90610c1f90600160d01b900461ffff1661380c565b6001600160a01b03811615806125e257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125b3573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125d79190614e61565b6001600160a01b0316145b819061260d5760405163f4ae198760e01b81526001600160a01b03909116600482015260240161105f565b50606954604080516001600160a01b03928316815291831660208301527ff9f12db81524e0e7d35f2779daf818e6824509f85b09470f5c1c4d29304a756b910160405180910390a1606980546001600160a01b0319166001600160a01b0392909216919091179055565b5f6126806115a4565b5f6126936068546001600160a01b031690565b90505f1983036127065760405163ce96cb7760e01b81523060048201526001600160a01b0382169063ce96cb7790602401602060405180830381865afa1580156126df573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127039190614e7c565b92505b612710818461386a565b5090919050565b8342111561273b5760405163313c898160e11b81526004810185905260240161105f565b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886127a58c6001600160a01b03165f9081527f5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb006020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090505f6127ff8261391d565b90505f61280e82878787613949565b9050896001600160a01b0316816001600160a01b031614612855576040516325c0072360e11b81526001600160a01b0380831660048301528b16602482015260440161105f565b6128608a8a8a612b5e565b50505050505050505050565b6001600160a01b039182165f9081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b6067545f90610c1f90600160c01b900461ffff1661380c565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146129175760405163799e780f60e01b815260040160405180910390fd5b806001600160a01b03811661294b57604051633d56093960e21b81526001600160a01b03909116600482015260240161105f565b506001600160a01b0381165f90815260666020526040902080548290600160e01b900463ffffffff161561299e57604051630a3e8f9b60e11b81526001600160a01b03909116600482015260240161105f565b506129a881613675565b6040516001600160a01b038316907f66c0f28249c4fc4db79872a4405be78a93f19c65ac9ef2f173867a149065bcf2905f90a25050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a3c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c1f9190614e61565b6067545f90610c1f90600160b01b900461ffff1661380c565b5f6001600160e01b031982166301ffc9a760e01b1480610a8457506001600160e01b03198216634d15eb0360e01b1492915050565b5f5f5f612abb8686613975565b91509150815f03612adf57838181612ad557612ad5614fba565b0492505050610ed4565b818411612af657612af66003851502601118613991565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b61138e83838360016139a2565b5f805f5160206151475f395f51905f525b6001600160a01b039093165f9081526020939093525050604090205490565b80545f90610a84906001600160801b0316620f4240670de0b6b3a7640000613a86565b81545f908190612bdc908490600160e01b900463ffffffff16613abb565b9050805f03612bfe5750508154600160801b90046001600160601b0316610a84565b835461118e90612c22908390670de0b6b3a7640000906001600160801b0316613b07565b8554600160801b90046001600160601b031690613b22565b5f610ed4826001600160601b0385165b670de0b6b3a7640000613b07565b604051636c82bbbf60e11b81523060048201525f9081906001600160a01b0385169063d905777e90602401602060405180830381865afa925050508015612cbc575060408051601f3d908101601f19168201909252612cb991810190614e7c565b60015b15612cd35783811015612cd157600191508093505b505b604051635d043b2960e11b815260048101849052306024820181905260448201526001600160a01b0385169063ba087652906064016020604051808303815f875af1925050508015612d42575060408051601f3d908101601f19168201909252612d3f91810190614e7c565b60015b612d9157836001600160a01b03167f25bce30047860a48c9d8830dbf31873be5434f4d28f14a5808a4ea8e35d0829684604051612d8191815260200190565b60405180910390a2506001612d94565b91505b9250929050565b612da4816136cc565b612dad81613b3e565b50565b5f612dbb848461286c565b90505f19811015611e4a5781811015612e0057604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161105f565b611e4a84848484035f6139a2565b6001600160a01b038316612e3757604051634b637e8f60e11b81525f600482015260240161105f565b6001600160a01b038216612e605760405163ec442f0560e01b81525f600482015260240161105f565b61138e838383613b74565b5f828218828410028218610ed4565b6001600160a01b038216612ea357604051634b637e8f60e11b81525f600482015260240161105f565b6116ef825f83613b74565b816001600160a01b038116612ee257604051636427f27360e11b81526001600160a01b03909116600482015260240161105f565b50805f03612eee575050565b5f612ef761379b565b905081811015612f3a575f612f146068546001600160a01b031690565b90506001600160a01b03811615612f3857612f3881612f338486614e16565b61386a565b505b6001600160a01b038316301461138e5761138e8383612f576129df565b6001600160a01b03169190613dfc565b6001600160a01b038216612f905760405163ec442f0560e01b81525f600482015260240161105f565b6116ef5f8383613b74565b81545f90429063ffffffff808316600160e01b90920416101561301557835461300d906301e1338090612fdb90600160e01b900463ffffffff1684614fce565b612feb9063ffffffff1686614fea565b612ff59190615001565b8554600160801b90046001600160601b031690613e31565b915050610a84565b50508154600160801b90046001600160601b0316610a84565b5092915050565b5f610ed4826001600160601b038516670de0b6b3a7640000613a86565b5f610c1f613e54565b61306860648260656132ce565b80516064805460208401516040909401516001600160801b039093166001600160e01b031990911617600160801b6001600160601b0390941693909302929092176001600160e01b0316600160e01b63ffffffff92831602179091556130d59060659085908590613ec716565b80516020918201516001600160801b03908116600160801b0291161760655560408051848152918201859052810182905284907f82e3211b2071ba731d809bc922f607d914d7cb7d76b03e72acbe7753613e21f39060600160405180910390a250505050565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806131c157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166131b55f5160206151875f395f51905f52546001600160a01b031690565b6001600160a01b031614155b156131df5760405163703e46dd60e11b815260040160405180910390fd5b565b612dad81613f63565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015613244575060408051601f3d908101601f1916820190925261324191810190614e7c565b60015b61326c57604051634c9c8ce360e01b81526001600160a01b038316600482015260240161105f565b5f5160206151875f395f51905f52811461329c57604051632a87526960e21b81526004810182905260240161105f565b61138e8383614014565b81545f906001600160801b0316808311156132c55761300d8184614e16565b5f915050610a84565b604080516060810182525f80825260208201819052918101919091528354613304908390600160e01b900463ffffffff16613abb565b61330e9084615020565b84549093505f9061334f90613337908690670de0b6b3a7640000906001600160801b0316614069565b8654600160801b90046001600160601b031690614084565b9050620f4240816001600160601b0316101561338957604051636c53fb2b60e01b81526001600160601b038216600482015260240161105f565b6040805160608101825286546001600160801b031681526001600160601b03909216602083015263ffffffff42169082015290509392505050565b604080518082019091525f808252602082015283546001600160801b03165f036134255760405180604001604052806133fc856140cd565b6001600160801b03168152602001613413846140cd565b6001600160801b031690529050610ed4565b83546001600160801b03165f61343b8583614f30565b90505f6134926134548688670de0b6b3a7640000613b07565b885461347990600160801b90046001600160801b031686670de0b6b3a7640000613b07565b6134839190614f30565b670de0b6b3a764000084613b07565b905060405180604001604052806134a8846140cd565b6001600160801b031681526020016134bf836140cd565b6001600160801b03168152509350505050610ed4565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146131df5760405163703e46dd60e11b815260040160405180910390fd5b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610a84565b61354e614100565b6131df614125565b61355e614100565b6116ef828261412d565b613570614100565b612dad81604051806040016040528060018152602001603160f81b81525061417d565b61359b614100565b6135a56064613675565b6040805160a0810182525f80825261271060208301529181018290526060810182905260800152606780546001600160e01b03191661027160a41b1790556135ee6002836121d2565b6116ef6003826121d2565b5f807f5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb00612b7c565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10280546060915f5160206151675f395f51905f5291610b0890614e29565b60605f5f5160206151675f395f51905f52610af7565b63ffffffff4216600160e01b0264016bcc41e9608e1b179055565b604080516060810182525f80825260208201819052918101829052906136c085856136bb8287612f9b565b6141dc565b91509150935093915050565b6136d960648260656132ce565b805160648054602084015160409094015163ffffffff16600160e01b026001600160e01b036001600160601b03909516600160801b026001600160e01b03199092166001600160801b0390941693909317179290921617905550565b61374384848484600161427e565b611e4a57604051635274afe760e01b81526001600160a01b038516600482015260240161105f565b5f6001600160ff1b038211156137975760405163123baf0360e11b81526004810183905260240161105f565b5090565b5f6137a46129df565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa1580156137e8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c1f9190614e7c565b5f610a84655af3107a400061ffff8416614fea565b5f610a84613835655af3107a400084615001565b6142eb565b604080516060810182525f80825260208201819052918101829052906136c085856138658287612f9b565b614319565b604051632d182be560e21b815260048101829052306024820181905260448201526001600160a01b0383169063b460af94906064016020604051808303815f875af11580156138bb573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138df9190614e7c565b50603254811115613903576138fb60325482610e559190614e16565b5f6032555050565b8060325f8282546139149190614e16565b90915550505050565b5f610a84613929613052565b8360405161190160f01b8152600281019290925260228201526042902090565b5f5f5f5f613959888888886143a9565b9250925092506139698282614471565b50909695505050505050565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f5160206151475f395f51905f526001600160a01b0385166139d95760405163e602df0560e01b81525f600482015260240161105f565b6001600160a01b038416613a0257604051634a1406b160e11b81525f600482015260240161105f565b6001600160a01b038086165f90815260018301602090815260408083209388168352929052208390558115613a7f57836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051613a7691815260200190565b60405180910390a35b5050505050565b5f613aa05f8380613a9957613a99614fba565b8587091190565b8284860281613ab157613ab1614fba565b0401949350505050565b81545f90610ed4906001600160801b03166301e13380613ae163ffffffff861642614e16565b8654613afd9190600160801b90046001600160801b0316614fea565b612c4a9190615001565b5f8183850281613b1957613b19614fba565b04949350505050565b5f610ed4613b39836001600160601b038616614f30565b614529565b6040518181527f731c439c5bae15be1344eec709967e046b4f7d3f7e37abeffc5247f448fa18bf9060200160405180910390a150565b5f6001600160a01b038416613bf157613b90606483606561455c565b815160648054602085015160409095015163ffffffff16600160e01b026001600160e01b036001600160601b03909616600160801b026001600160e01b03199092166001600160801b03909416939093171793909316179091559050613ced565b6001600160a01b038316613c0c57613b906064836065614587565b6067546001600160a01b03161580613ca05750606754604051635fcdca3760e01b81523060048201526001600160a01b03868116602483015285811660448301526064820185905290911690635fcdca3790608401602060405180830381865afa158015613c7c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ca09190614efa565b848484909192613cc6576040516325cff2d360e11b815260040161105f93929190614eb2565b50613cea9150839050613cdb60646065612bbe565b6001600160601b0316906145b2565b90505b5f5160206151475f395f51905f526001600160a01b03851615613d8a576001600160a01b0385165f9081526020829052604090205482811015613d6c5785613d3b82610c4360646065612bbe565b60405163391434e360e21b81526001600160a01b03909216600483015260248201526044810185905260640161105f565b6001600160a01b0386165f9081526020839052604090209083900390555b6001600160a01b03841615613db7576001600160a01b0384165f9081526020829052604090208054830190555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613a7691815260200190565b613e0983838360016145cf565b61138e57604051635274afe760e01b81526001600160a01b038416600482015260240161105f565b5f610ed4613b396001600160601b038516612c4a670de0b6b3a764000086614f30565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f613e7e614631565b613e86614699565b60408051602081019490945283019190915260608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b604080518082019091525f808252602082015283546001600160801b0316839003613f055750604080518082019091525f8082526020820152610ed4565b83546001600160801b03165f613f1b8583614e16565b90505f613492613f348688670de0b6b3a7640000613b07565b8854613f5990600160801b90046001600160801b031686670de0b6b3a7640000613b07565b6134839190614e16565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015613fc9573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fed9190614e61565b6001600160a01b031614612dad5760405163d2b3d33f60e01b815260040160405180910390fd5b61401d826146db565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156140615761138e828261473e565b6116ef6147cf565b5f818385028161407b5761407b614fba565b05949350505050565b5f80614099836001600160601b038616615020565b905080620f42408110156140c357604051636c53fb2b60e01b815260040161105f91815260200190565b5061118e81614529565b5f6001600160801b03821115613797576040516306dfcc6560e41b8152608060048201526024810183905260440161105f565b6141086147ee565b6131df57604051631afcd79f60e31b815260040160405180910390fd5b6131df614100565b614135614100565b5f5160206151475f395f51905f527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0361416e848261508b565b5060048101611e4a838261508b565b614185614100565b5f5160206151675f395f51905f527fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1026141be848261508b565b50600381016141cd838261508b565b505f8082556001909101555050565b604080516060810182525f808252602082018190529181018290529061420b6001600160601b038416856145b2565b85549091506001600160801b03165f6142248383614e16565b9050805f0361423757655af3107a400094505b604051806060016040528061424b836140cd565b6001600160801b03168152602001866001600160601b031681526020014263ffffffff1681525093505050935093915050565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f511483166142da5783831516156142ce573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b5f61ffff821115613797576040516306dfcc6560e41b8152601060048201526024810183905260440161105f565b604080516060810182525f80825260208201819052918101829052906143486001600160601b03841685614807565b60408051606081019091528654919250908190614378906143739085906001600160801b0316614f30565b6140cd565b6001600160801b03168152602001846001600160601b031681526020014263ffffffff168152509150935093915050565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411156143e257505f91506003905082614467565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015614433573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b03811661445e57505f925060019150829050614467565b92505f91508190505b9450945094915050565b5f82600381111561448457614484614f43565b0361448d575050565b60018260038111156144a1576144a1614f43565b036144bf5760405163f645eedf60e01b815260040160405180910390fd5b60028260038111156144d3576144d3614f43565b036144f45760405163fce698f760e01b81526004810182905260240161105f565b600382600381111561450857614508614f43565b036116ef576040516335e2f38360e21b81526004810182905260240161105f565b5f6001600160601b03821115613797576040516306dfcc6560e41b8152606060048201526024810183905260440161105f565b604080516060810182525f80825260208201819052918101829052906136c085856138658287612bbe565b604080516060810182525f80825260208201819052918101829052906136c085856136bb8287612bbe565b5f610ed482670de0b6b3a76400006001600160601b038616613a86565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f51148316614625578383151615614619573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b5f5f5160206151675f395f51905f5281614649613621565b80519091501561466157805160209091012092915050565b81548015614670579392505050565b7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470935050505090565b5f5f5160206151675f395f51905f52816146b161365f565b8051909150156146c957805160209091012092915050565b60018201548015614670579392505050565b806001600160a01b03163b5f0361471057604051634c9c8ce360e01b81526001600160a01b038216600482015260240161105f565b5f5160206151875f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f61474b8484614824565b905080801561476c57505f3d118061476c57505f846001600160a01b03163b115b156147795761300d614837565b80156147a357604051639996b31560e01b81526001600160a01b038516600482015260240161105f565b3d156147b6576147b1614850565b61302e565b60405163d6bda27560e01b815260040160405180910390fd5b34156131df5760405163b398979f60e01b815260040160405180910390fd5b5f6147f761351e565b54600160401b900460ff16919050565b5f610ed482670de0b6b3a76400006001600160601b038616613b07565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f6020828403121561486b575f5ffd5b81356001600160e01b031981168114610ed4575f5ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610ed46020830184614882565b6001600160a01b0381168114612dad575f5ffd5b5f5f604083850312156148e7575f5ffd5b82356148f2816148c2565b946020939093013593505050565b5f60208284031215614910575f5ffd5b8135610ed4816148c2565b8015158114612dad575f5ffd5b5f5f60408385031215614939575f5ffd5b8235614944816148c2565b915060208301356149548161491b565b809150509250929050565b5f5f5f60608486031215614971575f5ffd5b833561497c816148c2565b9250602084013561498c816148c2565b929592945050506040919091013590565b5f5f5f5f608085870312156149b0575f5ffd5b8435935060208501356149c2816148c2565b925060408501356149d2816148c2565b915060608501356149e2816148c2565b939692955090935050565b5f5f5f606084860312156149ff575f5ffd5b833592506020840135614a11816148c2565b91506040840135614a21816148c2565b809150509250925092565b5f5f5f5f5f5f60c08789031215614a41575f5ffd5b863595506020870135945060408701359350606087013592506080870135614a68816148c2565b9598949750929591949360a090920135925050565b634e487b7160e01b5f52604160045260245ffd5b5f5f67ffffffffffffffff841115614aab57614aab614a7d565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff82111715614ada57614ada614a7d565b604052838152905080828401851015614af1575f5ffd5b838360208301375f60208583010152509392505050565b5f5f60408385031215614b19575f5ffd5b8235614b24816148c2565b9150602083013567ffffffffffffffff811115614b3f575f5ffd5b8301601f81018513614b4f575f5ffd5b614b5e85823560208401614a91565b9150509250929050565b5f5f5f60608486031215614b7a575f5ffd5b505081359360208301359350604090920135919050565b5f82601f830112614ba0575f5ffd5b610ed483833560208501614a91565b5f5f5f5f60808587031215614bc2575f5ffd5b843567ffffffffffffffff811115614bd8575f5ffd5b614be487828801614b91565b945050602085013567ffffffffffffffff811115614c00575f5ffd5b614c0c87828801614b91565b949794965050505060408301359260600135919050565b5f60208284031215614c33575f5ffd5b8135610ed48161491b565b60ff60f81b8816815260e060208201525f614c5c60e0830189614882565b8281036040840152614c6e8189614882565b606084018890526001600160a01b038716608085015260a0840186905283810360c0850152845180825260208087019350909101905f5b81811015614cc3578351835260209384019390920191600101614ca5565b50909b9a5050505050505050505050565b5f5f60408385031215614ce5575f5ffd5b823591506020830135614954816148c2565b5f60208284031215614d07575f5ffd5b5035919050565b5f5f5f5f60808587031215614d21575f5ffd5b5050823594602084013594506040840135936060013592509050565b5f5f60408385031215614d4e575f5ffd5b8235600481106148f2575f5ffd5b60ff81168114612dad575f5ffd5b5f5f5f5f5f5f5f60e0888a031215614d80575f5ffd5b8735614d8b816148c2565b96506020880135614d9b816148c2565b955060408801359450606088013593506080880135614db981614d5c565b9699959850939692959460a0840135945060c09093013592915050565b5f5f60408385031215614de7575f5ffd5b8235614df2816148c2565b91506020830135614954816148c2565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610a8457610a84614e02565b600181811c90821680614e3d57607f821691505b602082108103614e5b57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215614e71575f5ffd5b8151610ed4816148c2565b5f60208284031215614e8c575f5ffd5b5051919050565b8181035f83128015838313168383128216171561302e5761302e614e02565b6001600160a01b039384168152919092166020820152604081019190915260600190565b5f60208284031215614ee6575f5ffd5b815164ffffffffff81168114610ed4575f5ffd5b5f60208284031215614f0a575f5ffd5b8151610ed48161491b565b5f60208284031215614f25575f5ffd5b8151610ed481614d5c565b80820180821115610a8457610a84614e02565b634e487b7160e01b5f52602160045260245ffd5b60048110614f7357634e487b7160e01b5f52602160045260245ffd5b9052565b60208101610a848284614f57565b60408101614f938285614f57565b8260208301529392505050565b5f600160ff1b8201614fb457614fb4614e02565b505f0390565b634e487b7160e01b5f52601260045260245ffd5b63ffffffff8281168282160390811115610a8457610a84614e02565b8082028115828204841417610a8457610a84614e02565b5f8261501b57634e487b7160e01b5f52601260045260245ffd5b500490565b8082018281125f83128015821682158216171561503f5761503f614e02565b505092915050565b601f82111561138e57805f5260205f20601f840160051c8101602085101561506c5750805b601f840160051c820191505b81811015613a7f575f8155600101615078565b815167ffffffffffffffff8111156150a5576150a5614a7d565b6150b9816150b38454614e29565b84615047565b6020601f8211600181146150eb575f83156150d45750848201515b5f19600385901b1c1916600184901b178455613a7f565b5f84815260208120601f198516915b8281101561511a57878501518255602094850194600190920191016150fa565b508482101561513757868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00a16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d100360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca264697066735822122083959412083e505e664f9984245542df2ea1600883e552d1e7f4809cfd90f06564736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x371 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7D919A97 GT PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0xFD JUMPI DUP1 PUSH4 0xD17E6C93 GT PUSH2 0x9D JUMPI DUP1 PUSH4 0xDFCB48BD GT PUSH2 0x6D JUMPI DUP1 PUSH4 0xDFCB48BD EQ PUSH2 0x9CE JUMPI DUP1 PUSH4 0xE3A8E29C EQ PUSH2 0x9E2 JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0xA01 JUMPI DUP1 PUSH4 0xEE01A183 EQ PUSH2 0xA15 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xD17E6C93 EQ PUSH2 0x952 JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0x971 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x990 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x9AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC1CCA2B3 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0xC1CCA2B3 EQ PUSH2 0x8E3 JUMPI DUP1 PUSH4 0xC3DF9DAC EQ PUSH2 0x902 JUMPI DUP1 PUSH4 0xCDA4BCC2 EQ PUSH2 0x921 JUMPI DUP1 PUSH4 0xCF6A9A94 EQ PUSH2 0x935 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x882 JUMPI DUP1 PUSH4 0xB1BF962D EQ PUSH2 0x8B2 JUMPI DUP1 PUSH4 0xBA4E8DF5 EQ PUSH2 0x8CF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x9D90724D GT PUSH2 0x168 JUMPI DUP1 PUSH4 0xA227DC41 GT PUSH2 0x143 JUMPI DUP1 PUSH4 0xA227DC41 EQ PUSH2 0x808 JUMPI DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0x827 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x844 JUMPI DUP1 PUSH4 0xAC860F74 EQ PUSH2 0x863 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x9D90724D EQ PUSH2 0x7B1 JUMPI DUP1 PUSH4 0xA08F2203 EQ PUSH2 0x7D5 JUMPI DUP1 PUSH4 0xA0CE552D EQ PUSH2 0x7E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x854CFF2F GT PUSH2 0x1A3 JUMPI DUP1 PUSH4 0x854CFF2F EQ PUSH2 0x742 JUMPI DUP1 PUSH4 0x918344D3 EQ PUSH2 0x761 JUMPI DUP1 PUSH4 0x93E59DC1 EQ PUSH2 0x780 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x79D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x7D919A97 EQ PUSH2 0x6E8 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x6FC JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x71B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x33481FC9 GT PUSH2 0x2A9 JUMPI DUP1 PUSH4 0x4FFCDA8C GT PUSH2 0x249 JUMPI DUP1 PUSH4 0x6FE0E395 GT PUSH2 0x219 JUMPI DUP1 PUSH4 0x6FE0E395 EQ PUSH2 0x66C JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x68B JUMPI DUP1 PUSH4 0x76C7FC55 EQ PUSH2 0x6AA JUMPI DUP1 PUSH4 0x79D989FB EQ PUSH2 0x6C9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4FFCDA8C EQ PUSH2 0x611 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x630 JUMPI DUP1 PUSH4 0x6C321C8A EQ PUSH2 0x644 JUMPI DUP1 PUSH4 0x6C6F4542 EQ PUSH2 0x658 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D15EB03 GT PUSH2 0x284 JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x590 JUMPI DUP1 PUSH4 0x4EB978A4 EQ PUSH2 0x5D6 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x5EA JUMPI DUP1 PUSH4 0x4FE0BD1E EQ PUSH2 0x5FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x33481FC9 EQ PUSH2 0x53E JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x55D JUMPI DUP1 PUSH4 0x3AD2820B EQ PUSH2 0x571 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0x314 JUMPI DUP1 PUSH4 0x23B872DD GT PUSH2 0x2EF JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x4BB JUMPI DUP1 PUSH4 0x23E103A8 EQ PUSH2 0x4DA JUMPI DUP1 PUSH4 0x2E2D2984 EQ PUSH2 0x4F9 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x518 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD EQ PUSH2 0x467 JUMPI DUP1 PUSH4 0x194448E5 EQ PUSH2 0x47B JUMPI DUP1 PUSH4 0x1DA24F3E EQ PUSH2 0x49C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x34F JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x3EC JUMPI DUP1 PUSH4 0xAFBCDC9 EQ PUSH2 0x40B JUMPI DUP1 PUSH4 0x159EC2DF EQ PUSH2 0x43F JUMPI DUP1 PUSH4 0x16DB000F EQ PUSH2 0x453 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x375 JUMPI DUP1 PUSH4 0x600A865 EQ PUSH2 0x3A9 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x3CB JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x380 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x38F CALLDATASIZE PUSH1 0x4 PUSH2 0x485B JUMP JUMPDEST PUSH2 0xA29 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3B4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0xA8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DF PUSH2 0xAE5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3A0 SWAP2 SWAP1 PUSH2 0x48B0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3F7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x406 CALLDATASIZE PUSH1 0x4 PUSH2 0x48D6 JUMP JUMPDEST PUSH2 0xB8A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x416 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42A PUSH2 0x425 CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0xBA1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x3A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x44A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0xBC3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x45E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0xC02 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x472 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0xC24 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x486 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x495 CALLDATASIZE PUSH1 0x4 PUSH2 0x4928 JUMP JUMPDEST PUSH2 0xC52 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x4B6 CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0xEAC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4C6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x4D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x495F JUMP JUMPDEST PUSH2 0xEB6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4E5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x4F4 CALLDATASIZE PUSH1 0x4 PUSH2 0x499D JUMP JUMPDEST PUSH2 0xEDB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x504 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x513 CALLDATASIZE PUSH1 0x4 PUSH2 0x49ED JUMP JUMPDEST PUSH2 0x1196 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x523 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x52C PUSH2 0x1393 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x549 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x558 CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0x1473 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x568 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x14F5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x57C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x58B CALLDATASIZE PUSH1 0x4 PUSH2 0x4A2C JUMP JUMPDEST PUSH2 0x14FE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x59B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5E1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x15A4 JUMP JUMPDEST PUSH2 0x49A PUSH2 0x5F8 CALLDATASIZE PUSH1 0x4 PUSH2 0x4B08 JUMP JUMPDEST PUSH2 0x16D4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x608 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x16F3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x61C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x62B CALLDATASIZE PUSH1 0x4 PUSH2 0x4B68 JUMP JUMPDEST PUSH2 0x1707 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x63B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x186A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x64F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x1885 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x663 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x18B6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x677 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x686 CALLDATASIZE PUSH1 0x4 PUSH2 0x4BAF JUMP JUMPDEST PUSH2 0x18C9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x696 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x6A5 CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0x19E1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x6C4 CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0x19FA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6D4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x6E3 CALLDATASIZE PUSH1 0x4 PUSH2 0x4C23 JUMP JUMPDEST PUSH2 0x1ADE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x32 SLOAD PUSH2 0x3BD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x707 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x716 CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0x1B18 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x726 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x72F PUSH2 0x1B22 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3A0 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4C3E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x74D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x75C CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0x1BCB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x76C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x77B CALLDATASIZE PUSH1 0x4 PUSH2 0x4CD4 JUMP JUMPDEST PUSH2 0x1D06 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x78B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x67 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x5BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7A8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DF PUSH2 0x1E50 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x3BD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7E0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x1E8E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7F4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x803 CALLDATASIZE PUSH1 0x4 PUSH2 0x4CF7 JUMP JUMPDEST PUSH2 0x1F81 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x813 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x822 CALLDATASIZE PUSH1 0x4 PUSH2 0x4D0E JUMP JUMPDEST PUSH2 0x1FD4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x832 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x5BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x84F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x85E CALLDATASIZE PUSH1 0x4 PUSH2 0x48D6 JUMP JUMPDEST PUSH2 0x2026 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x86E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x87D CALLDATASIZE PUSH1 0x4 PUSH2 0x4CF7 JUMP JUMPDEST PUSH2 0x2033 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x88D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DF PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x3BD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8DA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x21B9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x8FD CALLDATASIZE PUSH1 0x4 PUSH2 0x4D3D JUMP JUMPDEST PUSH2 0x21D2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x90D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x91C CALLDATASIZE PUSH1 0x4 PUSH2 0x4CD4 JUMP JUMPDEST PUSH2 0x23D6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x92C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x2523 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x940 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x69 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x5BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x95D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x96C CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0x253C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x97C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x98B CALLDATASIZE PUSH1 0x4 PUSH2 0x4CF7 JUMP JUMPDEST PUSH2 0x2677 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x99B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x9AA CALLDATASIZE PUSH1 0x4 PUSH2 0x4D6A JUMP JUMPDEST PUSH2 0x2717 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x9C9 CALLDATASIZE PUSH1 0x4 PUSH2 0x4DD6 JUMP JUMPDEST PUSH2 0x286C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x28B5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x9FC CALLDATASIZE PUSH1 0x4 PUSH2 0x4900 JUMP JUMPDEST PUSH2 0x28CE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA0C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5BE PUSH2 0x29DF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA20 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x2A60 JUMP JUMPDEST PUSH0 PUSH2 0xA33 DUP3 PUSH2 0x2A79 JUMP JUMPDEST DUP1 PUSH2 0xA4E JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x36372B07 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xA69 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA219A025 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xA84 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x6D5136B1 PUSH1 0xE1 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xAB9 PUSH2 0xA97 PUSH2 0x21B9 JUMP JUMPDEST PUSH8 0xDE0B6B3A7640000 PUSH2 0xAB2 PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x2AAE JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0xAC4 PUSH2 0xC24 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xAD4 JUMPI PUSH0 PUSH2 0xADE JUMP JUMPDEST PUSH2 0xADE DUP3 DUP3 PUSH2 0x4E16 JUMP JUMPDEST SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5147 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST SWAP1 POP DUP1 PUSH1 0x3 ADD DUP1 SLOAD PUSH2 0xB08 SWAP1 PUSH2 0x4E29 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xB34 SWAP1 PUSH2 0x4E29 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xB7F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xB56 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xB7F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xB62 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0xB97 DUP2 DUP6 DUP6 PUSH2 0x2B5E JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xBAC DUP4 PUSH2 0x2B6B JUMP JUMPDEST PUSH1 0x64 SLOAD SWAP1 SWAP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP2 AND SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xBCD PUSH2 0xC24 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0xBFA JUMPI PUSH1 0x65 SLOAD PUSH2 0xBF5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB PUSH1 0x1 PUSH1 0x80 SHL DUP3 DIV DUP2 AND SWAP2 AND DUP4 PUSH2 0x2AAE JUMP JUMPDEST PUSH2 0xBFC JUMP JUMPDEST PUSH0 JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xC0D PUSH1 0x64 PUSH2 0x2B9B JUMP JUMPDEST PUSH2 0xC15 PUSH2 0xC24 JUMP JUMPDEST PUSH2 0xC1F SWAP2 SWAP1 PUSH2 0x4E16 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x64 DUP1 SLOAD PUSH0 SWAP2 PUSH2 0xC1F SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 PUSH2 0xC43 SWAP1 PUSH1 0x65 PUSH2 0x2BBE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x2C3A JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xC5C PUSH2 0x29DF JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO DUP1 PUSH2 0xCE4 JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x38D52E0F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xCB5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xCD9 SWAP2 SWAP1 PUSH2 0x4E61 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0xD01 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0xD14 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0xE29 JUMPI PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD6A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD8E SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0xE27 JUMPI DUP6 ISZERO PUSH2 0xDAF JUMPI PUSH2 0xDA6 DUP4 DUP3 PUSH2 0x2C58 JUMP JUMPDEST SWAP6 POP SWAP2 POP PUSH2 0xE27 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xE00 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xE24 SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST SWAP2 POP JUMPDEST POP JUMPDEST PUSH1 0x68 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND OR SWAP1 SSTORE PUSH2 0xE5A PUSH1 0x32 SLOAD DUP3 PUSH2 0xE55 SWAP2 SWAP1 PUSH2 0x4E93 JUMP JUMPDEST PUSH2 0x2D9B JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE PUSH1 0x40 MLOAD DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND SWAP2 SWAP1 DUP5 AND SWAP1 PUSH32 0x243F9479BBDAF9F3395E726975293EE3724F3819F4322A018C98AFB9DE70A1E0 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA84 DUP3 PUSH2 0x2B6B JUMP JUMPDEST PUSH0 CALLER PUSH2 0xEC3 DUP6 DUP3 DUP6 PUSH2 0x2DB0 JUMP JUMPDEST PUSH2 0xECE DUP6 DUP6 DUP6 PUSH2 0x2E0E JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xF25 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0xF38 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF4E JUMPI PUSH2 0xF4E PUSH2 0x15A4 JUMP JUMPDEST PUSH0 PUSH2 0xF68 PUSH2 0xF5B DUP6 PUSH2 0x19E1 JUMP JUMPDEST PUSH2 0xF63 PUSH2 0xA8A JUMP JUMPDEST PUSH2 0x2E6B JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP7 SUB PUSH2 0xF76 JUMPI DUP1 SWAP6 POP JUMPDEST DUP6 PUSH0 SUB PUSH2 0xF86 JUMPI PUSH0 SWAP2 POP POP PUSH2 0x118E JUMP JUMPDEST PUSH1 0x69 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 PUSH2 0xFAB JUMPI POP PUSH1 0x69 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 AND EQ JUMPDEST DUP1 PUSH2 0x102D JUMPI POP PUSH1 0x69 SLOAD PUSH1 0x40 MLOAD PUSH4 0x2E704AF7 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x5CE095EE SWAP1 PUSH2 0xFE5 SWAP1 ADDRESS SWAP1 DUP9 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x4EB2 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1000 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1024 SWAP2 SWAP1 PUSH2 0x4ED6 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND ISZERO JUMPDEST PUSH1 0x69 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH2 0x1068 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2BC34BA3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP DUP6 DUP2 DUP1 DUP3 GT ISZERO PUSH2 0x1095 JUMPI PUSH1 0x40 MLOAD PUSH4 0x87DA9FD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST POP POP PUSH1 0x67 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 PUSH2 0x111D JUMPI POP PUSH1 0x67 SLOAD PUSH1 0x40 MLOAD PUSH4 0x9051C763 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x9051C763 SWAP1 PUSH2 0x10DE SWAP1 ADDRESS SWAP1 DUP9 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x4EB2 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x10F9 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x111D SWAP2 SWAP1 PUSH2 0x4EFA JUMP JUMPDEST DUP5 DUP8 SWAP1 SWAP2 PUSH2 0x114F JUMPI PUSH1 0x40 MLOAD PUSH4 0xD38A9339 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST POP POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1175 JUMPI PUSH2 0x1175 DUP5 DUP7 DUP9 PUSH2 0x2DB0 JUMP JUMPDEST PUSH2 0x117F DUP5 DUP8 PUSH2 0x2E7A JUMP JUMPDEST PUSH2 0x1189 DUP4 DUP8 PUSH2 0x2EAE JUMP JUMPDEST DUP6 SWAP2 POP POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x11DF JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x67 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 PUSH2 0x1308 JUMPI POP PUSH1 0x67 SLOAD PUSH1 0x40 MLOAD PUSH4 0x37EE20DD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x37EE20DD SWAP1 PUSH2 0x1226 SWAP1 ADDRESS SWAP1 DUP7 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x4EB2 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1241 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1265 SWAP2 SWAP1 PUSH2 0x4EFA JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1308 JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x1308 JUMPI POP PUSH1 0x67 SLOAD PUSH1 0x40 MLOAD PUSH4 0x5FCDCA37 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD DUP7 SWAP1 MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x5FCDCA37 SWAP1 PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x12E4 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1308 SWAP2 SWAP1 PUSH2 0x4EFA JUMP JUMPDEST DUP3 DUP5 SWAP1 SWAP2 PUSH2 0x133A JUMPI PUSH1 0x40 MLOAD PUSH4 0x6D6C993 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST POP POP PUSH2 0x1346 DUP2 DUP5 PUSH2 0x2F67 JUMP JUMPDEST PUSH2 0x134E PUSH2 0x2A60 JUMP JUMPDEST PUSH2 0x1356 PUSH2 0x1885 JUMP JUMPDEST LT ISZERO PUSH2 0x138E JUMPI PUSH2 0x1364 PUSH2 0x1885 JUMP JUMPDEST PUSH2 0x136C PUSH2 0x2A60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x62464AB7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13F0 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1414 SWAP2 SWAP1 PUSH2 0x4E61 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x144F JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC1F SWAP2 SWAP1 PUSH2 0x4F15 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x14C4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3D560939 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP DUP1 SLOAD PUSH2 0xED4 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x14E6 PUSH2 0x14DF PUSH2 0x2523 JUMP JUMPDEST DUP5 SWAP1 PUSH2 0x2F9B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x3035 JUMP JUMPDEST PUSH0 PUSH2 0xC1F PUSH2 0x3052 JUMP JUMPDEST CALLER PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x1543 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4E63EDA3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP PUSH2 0x1550 DUP7 DUP7 DUP7 DUP7 PUSH2 0x305B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x159C JUMPI PUSH2 0x1560 DUP3 DUP3 PUSH2 0x2EAE JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH32 0xC8E60E828D888D5921F45ECECD1BC138A29C2B6AACC8AB8A762F3F096492C561 DUP4 PUSH1 0x40 MLOAD PUSH2 0xE9C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x15B7 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x15E0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x162C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1650 SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x166E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1689 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x16AD SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x32 SLOAD DUP3 PUSH2 0x16BE SWAP2 SWAP1 PUSH2 0x4E93 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x138E JUMPI PUSH1 0x32 DUP3 SWAP1 SSTORE PUSH2 0x138E DUP2 PUSH2 0x2D9B JUMP JUMPDEST PUSH2 0x16DC PUSH2 0x313B JUMP JUMPDEST PUSH2 0x16E5 DUP3 PUSH2 0x31E1 JUMP JUMPDEST PUSH2 0x16EF DUP3 DUP3 PUSH2 0x31EA JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0xC1F PUSH2 0x16FF PUSH2 0xC24 JUMP JUMPDEST PUSH1 0x65 SWAP1 PUSH2 0x32A6 JUMP JUMPDEST CALLER PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x174C JUMPI PUSH1 0x40 MLOAD PUSH4 0x4E63EDA3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP PUSH2 0x1755 PUSH2 0x1E8E JUMP JUMPDEST DUP3 GT ISZERO PUSH2 0x1787 JUMPI DUP2 PUSH2 0x1765 PUSH2 0x1E8E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x8F31DF3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x1794 PUSH1 0x64 PUSH0 PUSH1 0x65 PUSH2 0x32CE JUMP JUMPDEST DUP1 MLOAD PUSH1 0x64 DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP1 SWAP5 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND OR PUSH1 0x1 PUSH1 0x80 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 MUL SWAP3 SWAP1 SWAP3 OR PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x1 PUSH1 0xE0 SHL PUSH4 0xFFFFFFFF SWAP3 DUP4 AND MUL OR SWAP1 SWAP2 SSTORE PUSH2 0x1801 SWAP1 PUSH1 0x65 SWAP1 DUP5 SWAP1 DUP5 SWAP1 PUSH2 0x33C4 AND JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP2 AND OR PUSH1 0x65 SSTORE PUSH1 0x40 MLOAD DUP4 SWAP1 PUSH32 0x266DC24A75EA4C7D7C74F89A78DC3A44307BABF0B588230497189FC46D71693D SWAP1 PUSH2 0x185D SWAP1 DUP5 SWAP1 DUP7 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1873 PUSH2 0x34D5 JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5187 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x188F PUSH2 0xC24 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0xBFA JUMPI PUSH2 0xBF5 PUSH8 0xDE0B6B3A7640000 DUP3 PUSH2 0xAB2 PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xC1F PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x18D2 PUSH2 0x351E JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x18F9 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x1915 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x1923 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x1941 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x196B JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x1973 PUSH2 0x3546 JUMP JUMPDEST PUSH2 0x197D DUP10 DUP10 PUSH2 0x3556 JUMP JUMPDEST PUSH2 0x1986 DUP10 PUSH2 0x3568 JUMP JUMPDEST PUSH2 0x1990 DUP8 DUP8 PUSH2 0x3593 JUMP JUMPDEST DUP4 ISZERO PUSH2 0x19D6 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA84 PUSH2 0x19EE DUP4 PUSH2 0x2B6B JUMP JUMPDEST PUSH2 0xC43 PUSH1 0x64 PUSH1 0x65 PUSH2 0x2BBE JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x1A43 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1A77 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3D560939 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP PUSH0 PUSH2 0x1A82 DUP3 PUSH2 0x1473 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE MLOAD SWAP2 SWAP3 POP SWAP1 PUSH32 0xE2EBFBED0DF9004EAE018A4AE91B24BAA0CD1D83F495FAB6DDE3A1493F9DC6C6 SWAP1 PUSH2 0x1AD2 SWAP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 DUP2 ISZERO PUSH2 0x1B00 JUMPI PUSH2 0xA84 PUSH2 0x1AF4 PUSH1 0x64 PUSH1 0x65 PUSH2 0x2BBE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0xA84 JUMP JUMPDEST PUSH0 PUSH2 0xA84 DUP3 PUSH2 0x35F9 JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP1 DUP3 DUP1 DUP1 DUP4 DUP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5167 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD SWAP1 SWAP2 POP ISZERO DUP1 ISZERO PUSH2 0x1B4D JUMPI POP PUSH1 0x1 DUP2 ADD SLOAD ISZERO JUMPDEST PUSH2 0x1B91 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x1152540DCC4C8E88155B9A5B9A5D1A585B1A5E9959 PUSH1 0x5A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x1B99 PUSH2 0x3621 JUMP JUMPDEST PUSH2 0x1BA1 PUSH2 0x365F JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0xF PUSH1 0xF8 SHL SWAP13 SWAP4 SWAP12 POP SWAP2 SWAP10 POP CHAINID SWAP9 POP ADDRESS SWAP8 POP SWAP6 POP SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO DUP1 PUSH2 0x1C71 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1C42 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1C66 SWAP2 SWAP1 PUSH2 0x4E61 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP2 SWAP1 PUSH2 0x1C9C JUMPI PUSH1 0x40 MLOAD PUSH4 0x7EF0808B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP PUSH1 0x67 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0xDB0A396BDD47D29C2B55A6631F0B286785EA8ED9F585D34C8E32CDB022C3BC82 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x67 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 PUSH2 0x1D10 DUP3 PUSH2 0x1473 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 SWAP2 POP DUP4 DUP3 GT PUSH2 0x1D49 JUMPI DUP2 SWAP4 POP DUP2 PUSH0 EQ PUSH2 0x1D44 JUMPI PUSH2 0x1D44 DUP2 PUSH2 0x3675 JUMP JUMPDEST PUSH2 0x1DD2 JUMP JUMPDEST PUSH2 0x1D5D DUP5 PUSH2 0x1D55 PUSH2 0x2523 JUMP JUMPDEST DUP4 SWAP2 SWAP1 PUSH2 0x3690 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP3 DUP6 ADD MLOAD SWAP5 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP2 SWAP1 SWAP2 OR SWAP3 SWAP1 SWAP3 AND OR SWAP1 SSTORE JUMPDEST DUP4 PUSH0 SUB PUSH2 0x1DDF JUMPI POP POP POP POP JUMP JUMPDEST PUSH2 0x1DE8 DUP5 PUSH2 0x36CC JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xA1AEB41F04A9A2AA1450E8EDD0FA1A0A7971FF65C7BBB7B2CA0379B9327EDBAF DUP6 PUSH1 0x40 MLOAD PUSH2 0x1E23 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x1E4A CALLER ADDRESS DUP7 PUSH2 0x1E39 PUSH2 0x29DF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x3735 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE04 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5147 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0xB08 SWAP1 PUSH2 0x4E29 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1E98 PUSH2 0xC24 JUMP JUMPDEST PUSH1 0x69 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1F58 JUMPI PUSH1 0x69 SLOAD PUSH1 0x40 MLOAD PUSH4 0xF3F43703 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xF3F43703 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1EF2 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1F16 SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT PUSH2 0x1F27 JUMPI PUSH0 SWAP2 POP PUSH2 0x1F52 JUMP JUMPDEST PUSH2 0x1F4F PUSH2 0x1F34 DUP3 DUP5 PUSH2 0x4E16 JUMP JUMPDEST PUSH2 0xF63 PUSH2 0x1F3F PUSH2 0x28B5 JUMP JUMPDEST DUP6 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x2AAE JUMP JUMPDEST SWAP2 POP JUMPDEST POP PUSH2 0x1F76 JUMP JUMPDEST PUSH2 0x1F73 PUSH2 0x1F63 PUSH2 0x28B5 JUMP JUMPDEST DUP3 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x2AAE JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH2 0xBFC PUSH1 0x65 DUP3 PUSH2 0x32A6 JUMP JUMPDEST PUSH2 0x1F8B CALLER DUP3 PUSH2 0x2E7A JUMP JUMPDEST PUSH2 0x1F9C PUSH2 0x1F97 DUP3 PUSH2 0x376B JUMP JUMPDEST PUSH2 0x36CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE CALLER SWAP1 PUSH32 0xA17978B5145B36C8C694B15CD193AB32FAC45FBB1B2378E56CA71B11A5BC5722 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMP JUMPDEST CALLER PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x2019 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4E63EDA3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP PUSH2 0x1E4A DUP5 DUP5 DUP5 DUP5 PUSH2 0x305B JUMP JUMPDEST PUSH0 CALLER PUSH2 0xB97 DUP2 DUP6 DUP6 PUSH2 0x2E0E JUMP JUMPDEST PUSH0 PUSH2 0x2046 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x206F JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x2078 PUSH2 0x379B JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x208A JUMPI DUP1 SWAP3 POP PUSH2 0x20B9 JUMP JUMPDEST DUP3 DUP2 DUP1 DUP3 GT ISZERO PUSH2 0x20B6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x531309FB PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x20CA SWAP2 SWAP1 PUSH2 0x4F30 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x20D8 SWAP1 POP PUSH2 0x29DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP7 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2126 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x214A SWAP2 SWAP1 PUSH2 0x4EFA JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2195 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1E4A SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH0 SWAP1 PUSH2 0xC1F SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x380C JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x21E5 JUMPI PUSH2 0x21E5 PUSH2 0x4F43 JUMP JUMPDEST SUB PUSH2 0x225A JUMPI PUSH8 0xB1A2BC2EC500000 DUP2 LT ISZERO DUP1 ISZERO PUSH2 0x220A JUMPI POP PUSH8 0x120A871CC0020000 DUP2 GT ISZERO JUMPDEST DUP3 SWAP1 PUSH2 0x222A JUMPI PUSH1 0x40 MLOAD PUSH4 0xF8F01785 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x105F SWAP2 SWAP1 PUSH2 0x4F77 JUMP JUMPDEST POP PUSH2 0x2234 DUP2 PUSH2 0x3821 JUMP JUMPDEST PUSH1 0x67 DUP1 SLOAD PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH2 0xFFFF PUSH1 0xA0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x2399 JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x226E JUMPI PUSH2 0x226E PUSH2 0x4F43 JUMP JUMPDEST SUB PUSH2 0x22CE JUMPI DUP2 PUSH8 0xDE0B6B3A7640000 DUP3 GT ISZERO PUSH2 0x229E JUMPI PUSH1 0x40 MLOAD PUSH4 0xF8F01785 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x105F SWAP2 SWAP1 PUSH2 0x4F77 JUMP JUMPDEST POP PUSH2 0x22A8 DUP2 PUSH2 0x3821 JUMP JUMPDEST PUSH1 0x67 DUP1 SLOAD PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xB0 SHL MUL PUSH2 0xFFFF PUSH1 0xB0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x2399 JUMP JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x22E2 JUMPI PUSH2 0x22E2 PUSH2 0x4F43 JUMP JUMPDEST SUB PUSH2 0x2342 JUMPI DUP2 PUSH8 0xDE0B6B3A7640000 DUP3 GT ISZERO PUSH2 0x2312 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF8F01785 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x105F SWAP2 SWAP1 PUSH2 0x4F77 JUMP JUMPDEST POP PUSH2 0x231C DUP2 PUSH2 0x3821 JUMP JUMPDEST PUSH1 0x67 DUP1 SLOAD PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xC0 SHL MUL PUSH2 0xFFFF PUSH1 0xC0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x2399 JUMP JUMPDEST DUP2 PUSH8 0x6F05B59D3B20000 DUP3 GT ISZERO PUSH2 0x236D JUMPI PUSH1 0x40 MLOAD PUSH4 0xF8F01785 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x105F SWAP2 SWAP1 PUSH2 0x4F77 JUMP JUMPDEST POP PUSH2 0x2377 DUP2 PUSH2 0x3821 JUMP JUMPDEST PUSH1 0x67 DUP1 SLOAD PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xD0 SHL MUL PUSH2 0xFFFF PUSH1 0xD0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMPDEST PUSH32 0xEEEAE4504D4C033C7DA36BF41D8ECE7C21842071CA9F9B423F8E8E36483DCD96 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH2 0x23CA SWAP3 SWAP2 SWAP1 PUSH2 0x4F85 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST CALLER PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x241E JUMPI PUSH1 0x40 MLOAD PUSH4 0x4E63EDA3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP DUP3 PUSH2 0x242C DUP2 PUSH2 0xF63 PUSH2 0xC02 JUMP JUMPDEST SWAP4 POP DUP4 PUSH0 SUB PUSH2 0x243C JUMPI SWAP1 POP PUSH2 0xA84 JUMP JUMPDEST PUSH2 0x245D DUP5 PUSH2 0x2448 PUSH2 0x2523 JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP2 SWAP1 PUSH2 0x383A JUMP JUMPDEST POP CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP3 DUP6 ADD MLOAD SWAP5 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP2 SWAP1 SWAP2 OR SWAP3 SWAP1 SWAP3 AND OR SWAP1 SSTORE PUSH2 0x24D4 PUSH2 0x1F97 DUP6 PUSH2 0x4FA0 JUMP JUMPDEST PUSH2 0x24DE DUP4 DUP6 PUSH2 0x2EAE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE CALLER SWAP2 PUSH32 0x98697A4799DBD9DB66C7168304C43CBA77A27A50D2785625E09072E0D91FDD53 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x118E DUP5 DUP3 PUSH2 0x4E16 JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH0 SWAP1 PUSH2 0xC1F SWAP1 PUSH1 0x1 PUSH1 0xD0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x380C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO DUP1 PUSH2 0x25E2 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x25B3 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x25D7 SWAP2 SWAP1 PUSH2 0x4E61 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP2 SWAP1 PUSH2 0x260D JUMPI PUSH1 0x40 MLOAD PUSH4 0xF4AE1987 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP PUSH1 0x69 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0xF9F12DB81524E0E7D35F2779DAF818E6824509F85B09470F5C1C4D29304A756B SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x69 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 PUSH2 0x2680 PUSH2 0x15A4 JUMP JUMPDEST PUSH0 PUSH2 0x2693 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x2706 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x26DF JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2703 SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST SWAP3 POP JUMPDEST PUSH2 0x2710 DUP2 DUP5 PUSH2 0x386A JUMP JUMPDEST POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x273B JUMPI PUSH1 0x40 MLOAD PUSH4 0x313C8981 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0x27A5 DUP13 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x5AB42CED628888259C08AC98DB1EB0CF702FC1501344311D8B100CD1BFE4BB00 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH0 PUSH2 0x27FF DUP3 PUSH2 0x391D JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x280E DUP3 DUP8 DUP8 DUP8 PUSH2 0x3949 JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2855 JUMPI PUSH1 0x40 MLOAD PUSH4 0x25C00723 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x4 DUP4 ADD MSTORE DUP12 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x2860 DUP11 DUP11 DUP11 PUSH2 0x2B5E JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE01 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH0 SWAP1 PUSH2 0xC1F SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x380C JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x2917 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x294B JUMPI PUSH1 0x40 MLOAD PUSH4 0x3D560939 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0x299E JUMPI PUSH1 0x40 MLOAD PUSH4 0xA3E8F9B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP PUSH2 0x29A8 DUP2 PUSH2 0x3675 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0x66C0F28249C4FC4DB79872A4405BE78A93F19C65AC9EF2F173867A149065BCF2 SWAP1 PUSH0 SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2A3C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC1F SWAP2 SWAP1 PUSH2 0x4E61 JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH0 SWAP1 PUSH2 0xC1F SWAP1 PUSH1 0x1 PUSH1 0xB0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x380C JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0xA84 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x2ABB DUP7 DUP7 PUSH2 0x3975 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x2ADF JUMPI DUP4 DUP2 DUP2 PUSH2 0x2AD5 JUMPI PUSH2 0x2AD5 PUSH2 0x4FBA JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0xED4 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x2AF6 JUMPI PUSH2 0x2AF6 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x3991 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x138E DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x39A2 JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5147 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP4 SWAP1 SWAP4 MSTORE POP POP PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH0 SWAP1 PUSH2 0xA84 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH3 0xF4240 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3A86 JUMP JUMPDEST DUP2 SLOAD PUSH0 SWAP1 DUP2 SWAP1 PUSH2 0x2BDC SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x3ABB JUMP JUMPDEST SWAP1 POP DUP1 PUSH0 SUB PUSH2 0x2BFE JUMPI POP POP DUP2 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0xA84 JUMP JUMPDEST DUP4 SLOAD PUSH2 0x118E SWAP1 PUSH2 0x2C22 SWAP1 DUP4 SWAP1 PUSH8 0xDE0B6B3A7640000 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x3B07 JUMP JUMPDEST DUP6 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x3B22 JUMP JUMPDEST PUSH0 PUSH2 0xED4 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP6 AND JUMPDEST PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B07 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6C82BBBF PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xD905777E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2CBC JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x2CB9 SWAP2 DUP2 ADD SWAP1 PUSH2 0x4E7C JUMP JUMPDEST PUSH1 0x1 JUMPDEST ISZERO PUSH2 0x2CD3 JUMPI DUP4 DUP2 LT ISZERO PUSH2 0x2CD1 JUMPI PUSH1 0x1 SWAP2 POP DUP1 SWAP4 POP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2D42 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x2D3F SWAP2 DUP2 ADD SWAP1 PUSH2 0x4E7C JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2D91 JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x25BCE30047860A48C9D8830DBF31873BE5434F4D28F14A5808A4EA8E35D08296 DUP5 PUSH1 0x40 MLOAD PUSH2 0x2D81 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 PUSH2 0x2D94 JUMP JUMPDEST SWAP2 POP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x2DA4 DUP2 PUSH2 0x36CC JUMP JUMPDEST PUSH2 0x2DAD DUP2 PUSH2 0x3B3E JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x2DBB DUP5 DUP5 PUSH2 0x286C JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 LT ISZERO PUSH2 0x1E4A JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x2E00 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x1E4A DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x39A2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x2E37 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2E60 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x138E DUP4 DUP4 DUP4 PUSH2 0x3B74 JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0xED4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2EA3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x16EF DUP3 PUSH0 DUP4 PUSH2 0x3B74 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x2EE2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6427F273 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP DUP1 PUSH0 SUB PUSH2 0x2EEE JUMPI POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2EF7 PUSH2 0x379B JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x2F3A JUMPI PUSH0 PUSH2 0x2F14 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x2F38 JUMPI PUSH2 0x2F38 DUP2 PUSH2 0x2F33 DUP5 DUP7 PUSH2 0x4E16 JUMP JUMPDEST PUSH2 0x386A JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ADDRESS EQ PUSH2 0x138E JUMPI PUSH2 0x138E DUP4 DUP4 PUSH2 0x2F57 PUSH2 0x29DF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x3DFC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2F90 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x16EF PUSH0 DUP4 DUP4 PUSH2 0x3B74 JUMP JUMPDEST DUP2 SLOAD PUSH0 SWAP1 TIMESTAMP SWAP1 PUSH4 0xFFFFFFFF DUP1 DUP4 AND PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP3 DIV AND LT ISZERO PUSH2 0x3015 JUMPI DUP4 SLOAD PUSH2 0x300D SWAP1 PUSH4 0x1E13380 SWAP1 PUSH2 0x2FDB SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP5 PUSH2 0x4FCE JUMP JUMPDEST PUSH2 0x2FEB SWAP1 PUSH4 0xFFFFFFFF AND DUP7 PUSH2 0x4FEA JUMP JUMPDEST PUSH2 0x2FF5 SWAP2 SWAP1 PUSH2 0x5001 JUMP JUMPDEST DUP6 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x3E31 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xA84 JUMP JUMPDEST POP POP DUP2 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0xA84 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xED4 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP6 AND PUSH8 0xDE0B6B3A7640000 PUSH2 0x3A86 JUMP JUMPDEST PUSH0 PUSH2 0xC1F PUSH2 0x3E54 JUMP JUMPDEST PUSH2 0x3068 PUSH1 0x64 DUP3 PUSH1 0x65 PUSH2 0x32CE JUMP JUMPDEST DUP1 MLOAD PUSH1 0x64 DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP1 SWAP5 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND OR PUSH1 0x1 PUSH1 0x80 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 MUL SWAP3 SWAP1 SWAP3 OR PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x1 PUSH1 0xE0 SHL PUSH4 0xFFFFFFFF SWAP3 DUP4 AND MUL OR SWAP1 SWAP2 SSTORE PUSH2 0x30D5 SWAP1 PUSH1 0x65 SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH2 0x3EC7 AND JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 SWAP2 DUP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP2 AND OR PUSH1 0x65 SSTORE PUSH1 0x40 DUP1 MLOAD DUP5 DUP2 MSTORE SWAP2 DUP3 ADD DUP6 SWAP1 MSTORE DUP2 ADD DUP3 SWAP1 MSTORE DUP5 SWAP1 PUSH32 0x82E3211B2071BA731D809BC922F607D914D7CB7D76B03E72ACBE7753613E21F3 SWAP1 PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x31C1 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x31B5 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5187 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x31DF JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x2DAD DUP2 PUSH2 0x3F63 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x3244 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x3241 SWAP2 DUP2 ADD SWAP1 PUSH2 0x4E7C JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x326C JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5187 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x329C JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x138E DUP4 DUP4 PUSH2 0x4014 JUMP JUMPDEST DUP2 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP1 DUP4 GT ISZERO PUSH2 0x32C5 JUMPI PUSH2 0x300D DUP2 DUP5 PUSH2 0x4E16 JUMP JUMPDEST PUSH0 SWAP2 POP POP PUSH2 0xA84 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 SLOAD PUSH2 0x3304 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x3ABB JUMP JUMPDEST PUSH2 0x330E SWAP1 DUP5 PUSH2 0x5020 JUMP JUMPDEST DUP5 SLOAD SWAP1 SWAP4 POP PUSH0 SWAP1 PUSH2 0x334F SWAP1 PUSH2 0x3337 SWAP1 DUP7 SWAP1 PUSH8 0xDE0B6B3A7640000 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x4069 JUMP JUMPDEST DUP7 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x4084 JUMP JUMPDEST SWAP1 POP PUSH3 0xF4240 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND LT ISZERO PUSH2 0x3389 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6C53FB2B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP3 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH4 0xFFFFFFFF TIMESTAMP AND SWAP1 DUP3 ADD MSTORE SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH0 SUB PUSH2 0x3425 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x33FC DUP6 PUSH2 0x40CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3413 DUP5 PUSH2 0x40CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 MSTORE SWAP1 POP PUSH2 0xED4 JUMP JUMPDEST DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH0 PUSH2 0x343B DUP6 DUP4 PUSH2 0x4F30 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x3492 PUSH2 0x3454 DUP7 DUP9 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B07 JUMP JUMPDEST DUP9 SLOAD PUSH2 0x3479 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP7 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B07 JUMP JUMPDEST PUSH2 0x3483 SWAP2 SWAP1 PUSH2 0x4F30 JUMP JUMPDEST PUSH8 0xDE0B6B3A7640000 DUP5 PUSH2 0x3B07 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x34A8 DUP5 PUSH2 0x40CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x34BF DUP4 PUSH2 0x40CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE POP SWAP4 POP POP POP POP PUSH2 0xED4 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x31DF JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0xA84 JUMP JUMPDEST PUSH2 0x354E PUSH2 0x4100 JUMP JUMPDEST PUSH2 0x31DF PUSH2 0x4125 JUMP JUMPDEST PUSH2 0x355E PUSH2 0x4100 JUMP JUMPDEST PUSH2 0x16EF DUP3 DUP3 PUSH2 0x412D JUMP JUMPDEST PUSH2 0x3570 PUSH2 0x4100 JUMP JUMPDEST PUSH2 0x2DAD DUP2 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x31 PUSH1 0xF8 SHL DUP2 MSTORE POP PUSH2 0x417D JUMP JUMPDEST PUSH2 0x359B PUSH2 0x4100 JUMP JUMPDEST PUSH2 0x35A5 PUSH1 0x64 PUSH2 0x3675 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH2 0x2710 PUSH1 0x20 DUP4 ADD MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 ADD MSTORE PUSH1 0x67 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH2 0x271 PUSH1 0xA4 SHL OR SWAP1 SSTORE PUSH2 0x35EE PUSH1 0x2 DUP4 PUSH2 0x21D2 JUMP JUMPDEST PUSH2 0x16EF PUSH1 0x3 DUP3 PUSH2 0x21D2 JUMP JUMPDEST PUSH0 DUP1 PUSH32 0x5AB42CED628888259C08AC98DB1EB0CF702FC1501344311D8B100CD1BFE4BB00 PUSH2 0x2B7C JUMP JUMPDEST PUSH32 0xA16A46D94261C7517CC8FF89F61C0CE93598E3C849801011DEE649A6A557D102 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5167 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0xB08 SWAP1 PUSH2 0x4E29 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5167 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0xAF7 JUMP JUMPDEST PUSH4 0xFFFFFFFF TIMESTAMP AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH5 0x16BCC41E9 PUSH1 0x8E SHL OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x36C0 DUP6 DUP6 PUSH2 0x36BB DUP3 DUP8 PUSH2 0x2F9B JUMP JUMPDEST PUSH2 0x41DC JUMP JUMPDEST SWAP2 POP SWAP2 POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x36D9 PUSH1 0x64 DUP3 PUSH1 0x65 PUSH2 0x32CE JUMP JUMPDEST DUP1 MLOAD PUSH1 0x64 DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP1 SWAP5 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR OR SWAP3 SWAP1 SWAP3 AND OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0x3743 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x427E JUMP JUMPDEST PUSH2 0x1E4A JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFF SHL SUB DUP3 GT ISZERO PUSH2 0x3797 JUMPI PUSH1 0x40 MLOAD PUSH4 0x123BAF03 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x37A4 PUSH2 0x29DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x37E8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC1F SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST PUSH0 PUSH2 0xA84 PUSH6 0x5AF3107A4000 PUSH2 0xFFFF DUP5 AND PUSH2 0x4FEA JUMP JUMPDEST PUSH0 PUSH2 0xA84 PUSH2 0x3835 PUSH6 0x5AF3107A4000 DUP5 PUSH2 0x5001 JUMP JUMPDEST PUSH2 0x42EB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x36C0 DUP6 DUP6 PUSH2 0x3865 DUP3 DUP8 PUSH2 0x2F9B JUMP JUMPDEST PUSH2 0x4319 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x38BB JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x38DF SWAP2 SWAP1 PUSH2 0x4E7C JUMP JUMPDEST POP PUSH1 0x32 SLOAD DUP2 GT ISZERO PUSH2 0x3903 JUMPI PUSH2 0x38FB PUSH1 0x32 SLOAD DUP3 PUSH2 0xE55 SWAP2 SWAP1 PUSH2 0x4E16 JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE POP POP JUMP JUMPDEST DUP1 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x3914 SWAP2 SWAP1 PUSH2 0x4E16 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA84 PUSH2 0x3929 PUSH2 0x3052 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH2 0x1901 PUSH1 0xF0 SHL DUP2 MSTORE PUSH1 0x2 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x22 DUP3 ADD MSTORE PUSH1 0x42 SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x3959 DUP9 DUP9 DUP9 DUP9 PUSH2 0x43A9 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x3969 DUP3 DUP3 PUSH2 0x4471 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5147 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH2 0x39D9 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3A02 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP4 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP4 SWAP1 SSTORE DUP2 ISZERO PUSH2 0x3A7F JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3A76 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3AA0 PUSH0 DUP4 DUP1 PUSH2 0x3A99 JUMPI PUSH2 0x3A99 PUSH2 0x4FBA JUMP JUMPDEST DUP6 DUP8 MULMOD GT SWAP1 JUMP JUMPDEST DUP3 DUP5 DUP7 MUL DUP2 PUSH2 0x3AB1 JUMPI PUSH2 0x3AB1 PUSH2 0x4FBA JUMP JUMPDEST DIV ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 SLOAD PUSH0 SWAP1 PUSH2 0xED4 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH4 0x1E13380 PUSH2 0x3AE1 PUSH4 0xFFFFFFFF DUP7 AND TIMESTAMP PUSH2 0x4E16 JUMP JUMPDEST DUP7 SLOAD PUSH2 0x3AFD SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x4FEA JUMP JUMPDEST PUSH2 0x2C4A SWAP2 SWAP1 PUSH2 0x5001 JUMP JUMPDEST PUSH0 DUP2 DUP4 DUP6 MUL DUP2 PUSH2 0x3B19 JUMPI PUSH2 0x3B19 PUSH2 0x4FBA JUMP JUMPDEST DIV SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xED4 PUSH2 0x3B39 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH2 0x4F30 JUMP JUMPDEST PUSH2 0x4529 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x731C439C5BAE15BE1344EEC709967E046B4F7D3F7E37ABEFFC5247F448FA18BF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3BF1 JUMPI PUSH2 0x3B90 PUSH1 0x64 DUP4 PUSH1 0x65 PUSH2 0x455C JUMP JUMPDEST DUP2 MLOAD PUSH1 0x64 DUP1 SLOAD PUSH1 0x20 DUP6 ADD MLOAD PUSH1 0x40 SWAP1 SWAP6 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP7 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR OR SWAP4 SWAP1 SWAP4 AND OR SWAP1 SWAP2 SSTORE SWAP1 POP PUSH2 0x3CED JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3C0C JUMPI PUSH2 0x3B90 PUSH1 0x64 DUP4 PUSH1 0x65 PUSH2 0x4587 JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 PUSH2 0x3CA0 JUMPI POP PUSH1 0x67 SLOAD PUSH1 0x40 MLOAD PUSH4 0x5FCDCA37 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP6 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD DUP6 SWAP1 MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x5FCDCA37 SWAP1 PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3C7C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x3CA0 SWAP2 SWAP1 PUSH2 0x4EFA JUMP JUMPDEST DUP5 DUP5 DUP5 SWAP1 SWAP2 SWAP3 PUSH2 0x3CC6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x25CFF2D3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x105F SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4EB2 JUMP JUMPDEST POP PUSH2 0x3CEA SWAP2 POP DUP4 SWAP1 POP PUSH2 0x3CDB PUSH1 0x64 PUSH1 0x65 PUSH2 0x2BBE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x45B2 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5147 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND ISZERO PUSH2 0x3D8A JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3D6C JUMPI DUP6 PUSH2 0x3D3B DUP3 PUSH2 0xC43 PUSH1 0x64 PUSH1 0x65 PUSH2 0x2BBE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x105F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP4 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP4 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x3DB7 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP4 ADD SWAP1 SSTORE JUMPDEST DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP6 PUSH1 0x40 MLOAD PUSH2 0x3A76 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH2 0x3E09 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x45CF JUMP JUMPDEST PUSH2 0x138E JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH0 PUSH2 0xED4 PUSH2 0x3B39 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP6 AND PUSH2 0x2C4A PUSH8 0xDE0B6B3A7640000 DUP7 PUSH2 0x4F30 JUMP JUMPDEST PUSH0 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH2 0x3E7E PUSH2 0x4631 JUMP JUMPDEST PUSH2 0x3E86 PUSH2 0x4699 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP4 SWAP1 SUB PUSH2 0x3F05 JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xED4 JUMP JUMPDEST DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH0 PUSH2 0x3F1B DUP6 DUP4 PUSH2 0x4E16 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x3492 PUSH2 0x3F34 DUP7 DUP9 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B07 JUMP JUMPDEST DUP9 SLOAD PUSH2 0x3F59 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP7 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B07 JUMP JUMPDEST PUSH2 0x3483 SWAP2 SWAP1 PUSH2 0x4E16 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3FC9 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x3FED SWAP2 SWAP1 PUSH2 0x4E61 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2DAD JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x401D DUP3 PUSH2 0x46DB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x4061 JUMPI PUSH2 0x138E DUP3 DUP3 PUSH2 0x473E JUMP JUMPDEST PUSH2 0x16EF PUSH2 0x47CF JUMP JUMPDEST PUSH0 DUP2 DUP4 DUP6 MUL DUP2 PUSH2 0x407B JUMPI PUSH2 0x407B PUSH2 0x4FBA JUMP JUMPDEST SDIV SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x4099 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH2 0x5020 JUMP JUMPDEST SWAP1 POP DUP1 PUSH3 0xF4240 DUP2 LT ISZERO PUSH2 0x40C3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6C53FB2B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x105F SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP PUSH2 0x118E DUP2 PUSH2 0x4529 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 GT ISZERO PUSH2 0x3797 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x80 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST PUSH2 0x4108 PUSH2 0x47EE JUMP JUMPDEST PUSH2 0x31DF JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x31DF PUSH2 0x4100 JUMP JUMPDEST PUSH2 0x4135 PUSH2 0x4100 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5147 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 PUSH2 0x416E DUP5 DUP3 PUSH2 0x508B JUMP JUMPDEST POP PUSH1 0x4 DUP2 ADD PUSH2 0x1E4A DUP4 DUP3 PUSH2 0x508B JUMP JUMPDEST PUSH2 0x4185 PUSH2 0x4100 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5167 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0xA16A46D94261C7517CC8FF89F61C0CE93598E3C849801011DEE649A6A557D102 PUSH2 0x41BE DUP5 DUP3 PUSH2 0x508B JUMP JUMPDEST POP PUSH1 0x3 DUP2 ADD PUSH2 0x41CD DUP4 DUP3 PUSH2 0x508B JUMP JUMPDEST POP PUSH0 DUP1 DUP3 SSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SSTORE POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x420B PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP5 AND DUP6 PUSH2 0x45B2 JUMP JUMPDEST DUP6 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH0 PUSH2 0x4224 DUP4 DUP4 PUSH2 0x4E16 JUMP JUMPDEST SWAP1 POP DUP1 PUSH0 SUB PUSH2 0x4237 JUMPI PUSH6 0x5AF3107A4000 SWAP5 POP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x424B DUP4 PUSH2 0x40CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP4 POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x42DA JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x42CE JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xFFFF DUP3 GT ISZERO PUSH2 0x3797 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x10 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x4348 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP5 AND DUP6 PUSH2 0x4807 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD SWAP1 SWAP2 MSTORE DUP7 SLOAD SWAP2 SWAP3 POP SWAP1 DUP2 SWAP1 PUSH2 0x4378 SWAP1 PUSH2 0x4373 SWAP1 DUP6 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x4F30 JUMP JUMPDEST PUSH2 0x40CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP2 POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0x43E2 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x4467 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x4433 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x445E JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x4467 JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x4484 JUMPI PUSH2 0x4484 PUSH2 0x4F43 JUMP JUMPDEST SUB PUSH2 0x448D JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x44A1 JUMPI PUSH2 0x44A1 PUSH2 0x4F43 JUMP JUMPDEST SUB PUSH2 0x44BF JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x44D3 JUMPI PUSH2 0x44D3 PUSH2 0x4F43 JUMP JUMPDEST SUB PUSH2 0x44F4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x4508 JUMPI PUSH2 0x4508 PUSH2 0x4F43 JUMP JUMPDEST SUB PUSH2 0x16EF JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP3 GT ISZERO PUSH2 0x3797 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x60 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x105F JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x36C0 DUP6 DUP6 PUSH2 0x3865 DUP3 DUP8 PUSH2 0x2BBE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x36C0 DUP6 DUP6 PUSH2 0x36BB DUP3 DUP8 PUSH2 0x2BBE JUMP JUMPDEST PUSH0 PUSH2 0xED4 DUP3 PUSH8 0xDE0B6B3A7640000 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH2 0x3A86 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x4625 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x4619 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5167 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x4649 PUSH2 0x3621 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x4661 JUMPI DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP2 SLOAD DUP1 ISZERO PUSH2 0x4670 JUMPI SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0xC5D2460186F7233C927E7DB2DCC703C0E500B653CA82273B7BFAD8045D85A470 SWAP4 POP POP POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5167 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x46B1 PUSH2 0x365F JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x46C9 JUMPI DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SLOAD DUP1 ISZERO PUSH2 0x4670 JUMPI SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x4710 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5187 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x474B DUP5 DUP5 PUSH2 0x4824 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x476C JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x476C JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x4779 JUMPI PUSH2 0x300D PUSH2 0x4837 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x47A3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x105F JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x47B6 JUMPI PUSH2 0x47B1 PUSH2 0x4850 JUMP JUMPDEST PUSH2 0x302E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLVALUE ISZERO PUSH2 0x31DF JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x47F7 PUSH2 0x351E JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xED4 DUP3 PUSH8 0xDE0B6B3A7640000 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH2 0x3B07 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x486B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xED4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP1 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP7 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0xED4 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4882 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2DAD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x48E7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x48F2 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4910 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xED4 DUP2 PUSH2 0x48C2 JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x2DAD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4939 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4944 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4954 DUP2 PUSH2 0x491B JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4971 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x497C DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x498C DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x49B0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x49C2 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x49D2 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x49E2 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x49FF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x4A11 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x4A21 DUP2 PUSH2 0x48C2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x4A41 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH1 0x60 DUP8 ADD CALLDATALOAD SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD PUSH2 0x4A68 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP3 SWAP6 SWAP2 SWAP5 SWAP4 PUSH1 0xA0 SWAP1 SWAP3 ADD CALLDATALOAD SWAP3 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP5 GT ISZERO PUSH2 0x4AAB JUMPI PUSH2 0x4AAB PUSH2 0x4A7D JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x4ADA JUMPI PUSH2 0x4ADA PUSH2 0x4A7D JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP6 LT ISZERO PUSH2 0x4AF1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4B19 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4B24 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4B3F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x4B4F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4B5E DUP6 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x4A91 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4B7A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP2 CALLDATALOAD SWAP4 PUSH1 0x20 DUP4 ADD CALLDATALOAD SWAP4 POP PUSH1 0x40 SWAP1 SWAP3 ADD CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x4BA0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xED4 DUP4 DUP4 CALLDATALOAD PUSH1 0x20 DUP6 ADD PUSH2 0x4A91 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4BC2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4BD8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4BE4 DUP8 DUP3 DUP9 ADD PUSH2 0x4B91 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4C00 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4C0C DUP8 DUP3 DUP9 ADD PUSH2 0x4B91 JUMP JUMPDEST SWAP5 SWAP8 SWAP5 SWAP7 POP POP POP POP PUSH1 0x40 DUP4 ADD CALLDATALOAD SWAP3 PUSH1 0x60 ADD CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4C33 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xED4 DUP2 PUSH2 0x491B JUMP JUMPDEST PUSH1 0xFF PUSH1 0xF8 SHL DUP9 AND DUP2 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0x4C5C PUSH1 0xE0 DUP4 ADD DUP10 PUSH2 0x4882 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x4C6E DUP2 DUP10 PUSH2 0x4882 JUMP JUMPDEST PUSH1 0x60 DUP5 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD DUP7 SWAP1 MSTORE DUP4 DUP2 SUB PUSH1 0xC0 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP8 ADD SWAP4 POP SWAP1 SWAP2 ADD SWAP1 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x4CC3 JUMPI DUP4 MLOAD DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x4CA5 JUMP JUMPDEST POP SWAP1 SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4CE5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4954 DUP2 PUSH2 0x48C2 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4D07 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4D21 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 CALLDATALOAD SWAP5 PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP4 PUSH1 0x60 ADD CALLDATALOAD SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4D4E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x4 DUP2 LT PUSH2 0x48F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x2DAD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x4D80 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x4D8B DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD PUSH2 0x4D9B DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH2 0x4DB9 DUP2 PUSH2 0x4D5C JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4DE7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4DF2 DUP2 PUSH2 0x48C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4954 DUP2 PUSH2 0x48C2 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xA84 JUMPI PUSH2 0xA84 PUSH2 0x4E02 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x4E3D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x4E5B JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4E71 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xED4 DUP2 PUSH2 0x48C2 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4E8C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP2 DUP2 SUB PUSH0 DUP4 SLT DUP1 ISZERO DUP4 DUP4 SGT AND DUP4 DUP4 SLT DUP3 AND OR ISZERO PUSH2 0x302E JUMPI PUSH2 0x302E PUSH2 0x4E02 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4EE6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xED4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4F0A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xED4 DUP2 PUSH2 0x491B JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4F25 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xED4 DUP2 PUSH2 0x4D5C JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xA84 JUMPI PUSH2 0xA84 PUSH2 0x4E02 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x4F73 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0xA84 DUP3 DUP5 PUSH2 0x4F57 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4F93 DUP3 DUP6 PUSH2 0x4F57 JUMP JUMPDEST DUP3 PUSH1 0x20 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x4FB4 JUMPI PUSH2 0x4FB4 PUSH2 0x4E02 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0xA84 JUMPI PUSH2 0xA84 PUSH2 0x4E02 JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0xA84 JUMPI PUSH2 0xA84 PUSH2 0x4E02 JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x501B JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x503F JUMPI PUSH2 0x503F PUSH2 0x4E02 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x138E JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x506C JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3A7F JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x5078 JUMP JUMPDEST DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x50A5 JUMPI PUSH2 0x50A5 PUSH2 0x4A7D JUMP JUMPDEST PUSH2 0x50B9 DUP2 PUSH2 0x50B3 DUP5 SLOAD PUSH2 0x4E29 JUMP JUMPDEST DUP5 PUSH2 0x5047 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x50EB JUMPI PUSH0 DUP4 ISZERO PUSH2 0x50D4 JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x3A7F JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x511A JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x50FA JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x5137 JUMPI DUP7 DUP5 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP INVALID MSTORE 0xC6 ORIGIN SELFBALANCE RJUMPI 0xF47D 0xB1 SWAP14 TLOAD RJUMP 0x4600 ADDRESS 0xC4 SWAP8 CREATE PUSH8 0xCA4CEBF71BA98EEA 0xDA 0xBE KECCAK256 0xBA 0xCE STOP LOG1 PUSH11 0x46D94261C7517CC8FF89F6 SHR 0xC 0xE9 CALLDATALOAD SWAP9 CALLF 0xC849 DUP1 LT GT 0xDE DUPN 0x49 0xA6 0xA5 JUMPI DATALOADN 0x36 ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCA264697066735822122083 SWAP6 SWAP5 SLT ADDMOD RETURNDATACOPY POP MCOPY PUSH7 0x4F9984245542DF 0x2E LOG1 PUSH1 0x8 DUP4 JUMPF 0x52D1 SWAPN 0xF4 DUP1 SWAP13 REVERT SWAP1 CREATE PUSH6 0x64736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"1883:26361:69:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10801:307;;;;;;;;;;-1:-1:-1;10801:307:69;;;;;:::i;:::-;;:::i;:::-;;;470:14:101;;463:22;445:41;;433:2;418:18;10801:307:69;;;;;;;;20213:233;;;;;;;;;;;;;:::i;:::-;;;643:25:101;;;631:2;616:18;20213:233:69;497:177:101;2715:144:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;5132:186::-;;;;;;;;;;-1:-1:-1;5132:186:7;;;;;:::i;:::-;;:::i;13825:162:69:-;;;;;;;;;;-1:-1:-1;13825:162:69;;;;;:::i;:::-;;:::i;:::-;;;;2132:25:101;;;2188:2;2173:18;;2166:34;;;;2105:18;13825:162:69;1958:248:101;16338:179:69;;;;;;;;;;;;;:::i;23159:152::-;;;;;;;;;;;;;:::i;11379:144::-;;;;;;;;;;;;;:::i;6826:990:75:-;;;;;;;;;;-1:-1:-1;6826:990:75;;;;;:::i;:::-;;:::i;:::-;;13475:110:69;;;;;;;;;;-1:-1:-1;13475:110:69;;;;;:::i;:::-;;:::i;5910:244:7:-;;;;;;;;;;-1:-1:-1;5910:244:7;;;;;:::i;:::-;;:::i;20450:1665:69:-;;;;;;;;;;-1:-1:-1;20450:1665:69;;;;;:::i;:::-;;:::i;19645:538::-;;;;;;;;;;-1:-1:-1;19645:538:69;;;;;:::i;:::-;;:::i;11234:116::-;;;;;;;;;;;;;:::i;:::-;;;4591:4:101;4579:17;;;4561:36;;4549:2;4534:18;11234:116:69;4419:184:101;24640:300:69;;;;;;;;;;-1:-1:-1;24640:300:69;;;;;:::i;:::-;;:::i;3055:104:8:-;;;;;;;;;;;;;:::i;18970:422:69:-;;;;;;;;;;-1:-1:-1;18970:422:69;;;;;:::i;:::-;;:::i;2366:94:73:-;;;;;;;;;;-1:-1:-1;2444:11:73;2366:94;;;-1:-1:-1;;;;;5829:32:101;;;5811:51;;5799:2;5784:18;2366:94:73;5644:224:101;11927:366:75;;;;;;;;;;;;;:::i;3911:214:33:-;;;;;;:::i;:::-;;:::i;14685:108:69:-;;;;;;;;;;;;;:::i;17777:455::-;;;;;;;;;;-1:-1:-1;17777:455:69;;;;;:::i;:::-;;:::i;3466:126:33:-;;;;;;;;;;;;;:::i;17620:153:69:-;;;;;;;;;;;;;:::i;16072:96::-;;;;;;;;;;;;;:::i;9699:336::-;;;;;;;;;;-1:-1:-1;9699:336:69;;;;;:::i;:::-;;:::i;11552:165::-;;;;;;;;;;-1:-1:-1;11552:165:69;;;;;:::i;:::-;;:::i;22638:279::-;;;;;;;;;;-1:-1:-1;22638:279:69;;;;;:::i;:::-;;:::i;14403:194::-;;;;;;;;;;-1:-1:-1;14403:194:69;;;;;:::i;:::-;;:::i;5400:81:75:-;;;;;;;;;;-1:-1:-1;5467:9:75;;5400:81;;2809:154:8;;;;;;;;;;-1:-1:-1;2809:154:8;;;;;:::i;:::-;;:::i;5061:903:14:-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:::i;27145:336:69:-;;;;;;;;;;-1:-1:-1;27145:336:69;;;;;:::i;:::-;;:::i;23817:793::-;;;;;;;;;;-1:-1:-1;23817:793:69;;;;;:::i;:::-;;:::i;27485:93::-;;;;;;;;;;-1:-1:-1;27556:7:69;:17;-1:-1:-1;;;;;27556:17:69;27485:93;;2972:148:7;;;;;;;;;;;;;:::i;16198:110:69:-;;;;;;;;;;-1:-1:-1;16285:4:69;:17;-1:-1:-1;;;16285:17:69;;-1:-1:-1;;;;;16285:17:69;16198:110;;15000:468;;;;;;;;;;;;;:::i;22119:187::-;;;;;;;;;;-1:-1:-1;22119:187:69;;;;;:::i;:::-;;:::i;18738:228::-;;;;;;;;;;-1:-1:-1;18738:228:69;;;;;:::i;:::-;;:::i;15498:91::-;;;;;;;;;;-1:-1:-1;15573:11:69;;-1:-1:-1;;;;;15573:11:69;15498:91;;4419:178:7;;;;;;;;;;-1:-1:-1;4419:178:7;;;;;:::i;:::-;;:::i;11246:445:75:-;;;;;;;;;;-1:-1:-1;11246:445:75;;;;;:::i;:::-;;:::i;1732:58:33:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1732:58:33;;;;;14210:104:69;;;;;;;;;;-1:-1:-1;14292:9:69;:16;-1:-1:-1;;;;;14292:16:69;14210:104;;16638:117;;;;;;;;;;;;;:::i;25196:1945::-;;;;;;;;;;-1:-1:-1;25196:1945:69;;;;;:::i;:::-;;:::i;23315:498::-;;;;;;;;;;-1:-1:-1;23315:498:69;;;;;:::i;:::-;;:::i;25067:125::-;;;;;;;;;;;;;:::i;27870:93::-;;;;;;;;;;-1:-1:-1;27950:7:69;;-1:-1:-1;;;;;27950:7:69;27870:93;;27582:284;;;;;;;;;;-1:-1:-1;27582:284:69;;;;;:::i;:::-;;:::i;10717:268:75:-;;;;;;;;;;-1:-1:-1;10717:268:75;;;;;:::i;:::-;;:::i;2098:672:8:-;;;;;;;;;;-1:-1:-1;2098:672:8;;;;;:::i;:::-;;:::i;4630:195:7:-;;;;;;;;;;-1:-1:-1;4630:195:7;;;;;:::i;:::-;;:::i;17016:113:69:-;;;;;;;;;;;;;:::i;22310:324::-;;;;;;;;;;-1:-1:-1;22310:324:69;;;;;:::i;:::-;;:::i;2464:97:73:-;;;;;;;;;;;;;:::i;17385:113:69:-;;;;;;;;;;;;;:::i;10801:307::-;10886:4;10911:36;10935:11;10911:23;:36::i;:::-;:85;;;-1:-1:-1;;;;;;;10957:39:69;;-1:-1:-1;;;10957:39:69;10911:85;:142;;;-1:-1:-1;;;;;;;11006:47:69;;-1:-1:-1;;;11006:47:69;10911:142;:192;;;-1:-1:-1;;;;;;;11063:40:69;;-1:-1:-1;;;11063:40:69;10911:192;10898:205;10801:307;-1:-1:-1;;10801:307:69:o;20213:233::-;20280:7;20295:14;20312:52;20336:22;:20;:22::i;:::-;2178:4;20312:16;:4;15540:7:68;-1:-1:-1;;;;;15540:7:68;;15451:102;20312:16:69;:23;:52;:23;:52::i;:::-;20295:69;;20370:10;20383:13;:11;:13::i;:::-;20370:26;;20416:6;20410:2;:12;;20409:32;;20440:1;20409:32;;;20426:11;20431:6;20426:2;:11;:::i;:::-;20402:39;;;;20213:233;:::o;2715:144:7:-;2760:13;2785:22;-1:-1:-1;;;;;;;;;;;2810:18:7;2785:43;;2845:1;:7;;2838:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2715:144;:::o;5132:186::-;5205:4;987:10:10;5259:31:7;987:10:10;5275:7:7;5284:5;5259:8;:31::i;:::-;-1:-1:-1;5307:4:7;;5132:186;-1:-1:-1;;;5132:186:7:o;13825:162:69:-;13901:7;13910;13933:21;13949:4;13933:15;:21::i;:::-;13964:9;:16;13925:57;;-1:-1:-1;;;;;13964:16:69;;;;-1:-1:-1;13825:162:69;-1:-1:-1;;13825:162:69:o;16338:179::-;16397:7;16412:10;16425:13;:11;:13::i;:::-;16412:26;-1:-1:-1;16451:7:69;;:61;;16499:4;:8;16465:47;;-1:-1:-1;;;;;;;;16473:17:69;;;;;16499:8;16509:2;16465:33;:47::i;:::-;16451:61;;;16461:1;16451:61;16444:68;;;16338:179;:::o;23159:152::-;23213:7;23251:20;:9;:18;:20::i;:::-;23235:13;:11;:13::i;:::-;:36;;;;:::i;:::-;23228:43;;23159:152;:::o;11379:144::-;11501:9;:16;;11440:7;;11462:56;;-1:-1:-1;;;;;11501:16:69;;11462:28;;11485:4;11462:22;:28::i;:::-;-1:-1:-1;;;;;11462:38:69;;;:56::i;6826:990:75:-;6900:11;6917:20;6940:10;:8;:10::i;:::-;6917:33;-1:-1:-1;;;;;;6964:36:75;;;;:79;;;7037:5;-1:-1:-1;;;;;7004:39:75;:13;-1:-1:-1;;;;;7004:19:75;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;7004:39:75;;6964:79;6956:109;;;;-1:-1:-1;;;6956:109:75;;;;;;;;;;;;7071:14;7088:12;15573:11:69;;-1:-1:-1;;;;;15573:11:69;;15498:91;7088:12:75;7071:29;-1:-1:-1;7106:18:75;-1:-1:-1;;;;;7135:28:75;;;7131:459;;7192:30;;-1:-1:-1;;;7192:30:75;;7216:4;7192:30;;;5811:51:101;7173:16:75;;-1:-1:-1;;;;;7192:15:75;;;;;5784:18:101;;7192:30:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7173:49;-1:-1:-1;7234:13:75;;7230:354;;7263:5;7259:317;;;7381:33;7398:5;7405:8;7381:16;:33::i;:::-;7358:56;-1:-1:-1;7358:56:75;-1:-1:-1;7259:317:75;;;7513:52;;-1:-1:-1;;;7513:52:75;;;;;16128:25:101;;;7544:4:75;16169:18:101;;;16162:60;;;16238:18;;;16231:60;-1:-1:-1;;;;;7513:12:75;;;;;16101:18:101;;7513:52:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7500:65;;7259:317;7165:425;7131:459;15657:11:69;:19;;-1:-1:-1;;;;;;15657:19:69;-1:-1:-1;;;;;15657:19:69;;;;;7680:54:75;7723:9;;7702:10;7695:38;;;;:::i;:::-;7680:14;:54::i;:::-;7752:1;7740:9;:13;7764:47;;470:14:101;;463:22;445:41;;-1:-1:-1;;;;;7764:47:75;;;;;;;;;;433:2:101;418:18;7764:47:75;;;;;;;;6894:922;;;;6826:990;;:::o;13475:110:69:-;13537:7;13559:21;13575:4;13559:15;:21::i;5910:244:7:-;5997:4;987:10:10;6053:37:7;6069:4;987:10:10;6084:5:7;6053:15;:37::i;:::-;6100:26;6110:4;6116:2;6120:5;6100:9;:26::i;:::-;6143:4;6136:11;;;5910:244;;;;;;:::o;20450:1665:69:-;20595:7;1373:10:73;-1:-1:-1;;;;;1395:11:73;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:73;;;;;;;;;;;;21015:1:69::1;20990:12;15573:11:::0;;-1:-1:-1;;;;;15573:11:69;;15498:91;20990:12:::1;-1:-1:-1::0;;;;;20982:35:69::1;;20978:182;;21137:16;:14;:16::i;:::-;21165:19;21187:47;21196:16;21206:5;21196:9;:16::i;:::-;21214:19;:17;:19::i;:::-;21187:8;:47::i;:::-;21165:69;;-1:-1:-1::0;;21244:6:69::1;:27:::0;21240:53:::1;;21282:11;21273:20;;21240:53;21303:6;21313:1;21303:11:::0;21299:25:::1;;21323:1;21316:8;;;;;21299:25;21353:7;::::0;-1:-1:-1;;;;;21353:7:69::1;21345:30:::0;;:60:::1;;-1:-1:-1::0;21387:7:69::1;::::0;-1:-1:-1;;;;;21379:26:69;;::::1;21387:7:::0;::::1;21379:26;21345:60;:112;;;-1:-1:-1::0;21409:7:69::1;::::0;:43:::1;::::0;-1:-1:-1;;;21409:43:69;;-1:-1:-1;;;;;21409:7:69;;::::1;::::0;:22:::1;::::0;:43:::1;::::0;21432:4:::1;::::0;21438:5;;21445:6;;21409:43:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;;::::0;21345:112:::1;21492:7;::::0;-1:-1:-1;;;;;21492:7:69::1;::::0;21330:176:::1;;;::::0;-1:-1:-1;;;21330:176:69;;-1:-1:-1;;;;;5829:32:101;;;21330:176:69::1;::::0;::::1;5811:51:101::0;5784:18;;21330:176:69::1;;;;;;;;;-1:-1:-1::0;21520:6:69;21530:11;21520:21;;::::1;;21512:71;;;::::0;-1:-1:-1;;;21512:71:69;;::::1;::::0;::::1;2132:25:101::0;;;;2173:18;;;2166:34;2105:18;;21512:71:69::1;1958:248:101::0;21512:71:69::1;-1:-1:-1::0;;21806:7:69::1;:17:::0;-1:-1:-1;;;;;21806:17:69::1;21798:40:::0;;:100:::1;;-1:-1:-1::0;21842:7:69::1;:17:::0;:56:::1;::::0;-1:-1:-1;;;21842:56:69;;-1:-1:-1;;;;;21842:17:69;;::::1;::::0;:35:::1;::::0;:56:::1;::::0;21878:4:::1;::::0;21884:5;;21891:6;;21842:56:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21931:5;21938:6;21783:168;;;;;::::0;-1:-1:-1;;;21783:168:69;;-1:-1:-1;;;;;17853:32:101;;;21783:168:69::1;::::0;::::1;17835:51:101::0;17902:18;;;17895:34;17808:18;;21783:168:69::1;17661:274:101::0;21783:168:69::1;;;21971:5;-1:-1:-1::0;;;;;21961:15:69::1;:6;-1:-1:-1::0;;;;;21961:15:69::1;;21957:74;;21986:38;22002:5;22009:6;22017;21986:15;:38::i;:::-;22036:20;22042:5;22049:6;22036:5;:20::i;:::-;22062:29;22074:8;22084:6;22062:11;:29::i;:::-;22104:6;22097:13;;;1432:1:73;20450:1665:69::0;;;;;;:::o;19645:538::-;1373:10:73;-1:-1:-1;;;;;1395:11:73;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:73;;;;;;;;;;;;19774:7:69::1;:17:::0;-1:-1:-1;;;;;19774:17:69::1;19766:40:::0;;:211:::1;;-1:-1:-1::0;19819:7:69::1;:17:::0;:54:::1;::::0;-1:-1:-1;;;19819:54:69;;-1:-1:-1;;;;;19819:17:69;;::::1;::::0;:32:::1;::::0;:54:::1;::::0;19852:4:::1;::::0;19858:6;;19866;;19819:54:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;19898:8;-1:-1:-1::0;;;;;19888:18:69::1;:6;-1:-1:-1::0;;;;;19888:18:69::1;;:87;;;-1:-1:-1::0;19910:7:69::1;:17:::0;:65:::1;::::0;-1:-1:-1;;;19910:65:69;;19944:4:::1;19910:65;::::0;::::1;18187:51:101::0;-1:-1:-1;;;;;18274:32:101;;;18254:18;;;18247:60;18343:32;;;18323:18;;;18316:60;18392:18;;;18385:34;;;19910:17:69;;::::1;::::0;:33:::1;::::0;18159:19:101;;19910:65:69::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20007:6;20015;19751:277;;;;;::::0;-1:-1:-1;;;19751:277:69;;-1:-1:-1;;;;;17853:32:101;;;19751:277:69::1;::::0;::::1;17835:51:101::0;17902:18;;;17895:34;17808:18;;19751:277:69::1;17661:274:101::0;19751:277:69::1;;;20034:23;20040:8;20050:6;20034:5;:23::i;:::-;20087:20;:18;:20::i;:::-;20067:17;:15;:17::i;:::-;:40;20063:115;;;20138:17;:15;:17::i;:::-;20157:20;:18;:20::i;:::-;20116:62;::::0;-1:-1:-1;;;20116:62:69;;::::1;::::0;::::1;2132:25:101::0;;;;2173:18;;;2166:34;2105:18;;20116:62:69::1;1958:248:101::0;20063:115:69::1;19645:538:::0;;;:::o;11234:116::-;11292:5;11312:11;-1:-1:-1;;;;;11312:20:69;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;11312:31:69;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;24640:300::-;-1:-1:-1;;;;;24763:16:69;;24713:7;24763:16;;;:6;:16;;;;;24793:15;;24763:16;;-1:-1:-1;;;24793:15:69;;;;24785:56;;;;-1:-1:-1;;;24785:56:69;;-1:-1:-1;;;;;5829:32:101;;;24785:56:69;;;5811:51:101;5784:18;;24785:56:69;5644:224:101;24785:56:69;-1:-1:-1;24922:11:69;;24854:81;;-1:-1:-1;;;;;24922:11:69;24854:45;24872:26;:24;:26::i;:::-;24854:4;;:17;:45::i;:::-;-1:-1:-1;;;;;24854:59:69;;;:81::i;3055:104:8:-;3106:7;3132:20;:18;:20::i;18970:422:69:-;987:10:10;8660:20:69;;;;:6;:20;;;;;:31;-1:-1:-1;;;8660:31:69;;;;8652:73;;;;-1:-1:-1;;;8652:73:69;;-1:-1:-1;;;;;5829:32:101;;;8652:73:69;;;5811:51:101;5784:18;;8652:73:69;5644:224:101;8652:73:69;;19188:63:::1;19199:8;19209:9;19220:18;19240:10;19188;:63::i;:::-;19261:17:::0;;19257:131:::1;;19288:35;19300:8;19310:12;19288:11;:35::i;:::-;19358:8;-1:-1:-1::0;;;;;19336:45:69::1;19348:8;19336:45;19368:12;19336:45;;;;643:25:101::0;;631:2;616:18;;497:177;19257:131:69::1;18970:422:::0;;;;;;:::o;11927:366:75:-;11966:11;11980:12;15573:11:69;;-1:-1:-1;;;;;15573:11:69;;15498:91;11980:12:75;11966:26;-1:-1:-1;;;;;;12006:25:75;;11998:55;;;;-1:-1:-1;;;11998:55:75;;;;;;;;;;;;12103:27;;-1:-1:-1;;;12103:27:75;;12124:4;12103:27;;;5811:51:101;12059:22:75;;-1:-1:-1;;;;;12084:18:75;;;;;;;12103:12;;5784:18:101;;12103:27:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12084:47;;;;;;;;;;;;;643:25:101;;631:2;616:18;;497:177;12084:47:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12059:72;;12137:13;12185:9;;12160:14;12153:42;;;;:::i;:::-;12137:58;-1:-1:-1;12205:11:75;;12201:88;;12226:9;:26;;;12260:22;12275:6;12260:14;:22::i;3911:214:33:-;2568:13;:11;:13::i;:::-;4026:36:::1;4044:17;4026;:36::i;:::-;4072:46;4094:17;4113:4;4072:21;:46::i;:::-;3911:214:::0;;:::o;14685:108:69:-;14732:7;14754:34;14774:13;:11;:13::i;:::-;14754:4;;:19;:34::i;17777:455::-;987:10:10;8660:20:69;;;;:6;:20;;;;;:31;-1:-1:-1;;;8660:31:69;;;;8652:73;;;;-1:-1:-1;;;8652:73:69;;-1:-1:-1;;;;;5829:32:101;;;8652:73:69;;;5811:51:101;5784:18;;8652:73:69;5644:224:101;8652:73:69;;17912:22:::1;:20;:22::i;:::-;17900:9;:34;17896:99;;;17961:9;17972:22;:20;:22::i;:::-;17943:52;::::0;-1:-1:-1;;;17943:52:69;;::::1;::::0;::::1;2132:25:101::0;;;;2173:18;;;2166:34;2105:18;;17943:52:69::1;1958:248:101::0;17896:99:69::1;18013:33;:9;18038:1;18041:4;18013:24;:33::i;:::-;18001:45:::0;;:9:::1;:45:::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;-1:-1:-1;;;;;18001:45:69;;::::1;-1:-1:-1::0;;;;;;18001:45:69;;;;-1:-1:-1;;;;;;;;18001:45:69;;::::1;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;;18001:45:69::1;-1:-1:-1::0;;;18001:45:69::1;::::0;;::::1;;;::::0;;;18127:39:::1;::::0;:4:::1;::::0;18136:9;;18147:18;;18127:8:::1;:39;:::i;:::-;18120:46:::0;;::::1;::::0;;::::1;::::0;-1:-1:-1;;;;;18120:46:69;;::::1;-1:-1:-1::0;;;18120:46:69::1;::::0;::::1;;:4;:46:::0;18177:50:::1;::::0;18187:8;;18177:50:::1;::::0;::::1;::::0;18197:18;;18217:9;;2132:25:101;;;2188:2;2173:18;;2166:34;2120:2;2105:18;;1958:248;18177:50:69::1;;;;;;;;17777:455:::0;;;:::o;3466:126:33:-;3527:7;2839:20;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;;3466:126:33;:::o;17620:153:69:-;17668:7;17683:10;17696:13;:11;:13::i;:::-;17683:26;-1:-1:-1;17722:7:69;;:46;;17736:32;2178:4;17765:2;17736:16;:4;15540:7:68;-1:-1:-1;;;;;15540:7:68;;15451:102;16072:96:69;16125:7;16147:16;:4;15540:7:68;-1:-1:-1;;;;;15540:7:68;;15451:102;9699:336:69;4158:30:32;4191:26;:24;:26::i;:::-;4302:15;;4158:59;;-1:-1:-1;4302:15:32;-1:-1:-1;;;4302:15:32;;;4301:16;;4348:14;;4279:19;4724:16;;:34;;;;;4744:14;4724:34;4704:54;;4768:17;4788:11;:16;;4803:1;4788:16;:50;;;;-1:-1:-1;4816:4:32;4808:25;:30;4788:50;4768:70;;4854:12;4853:13;:30;;;;;4871:12;4870:13;4853:30;4849:91;;;4906:23;;-1:-1:-1;;;4906:23:32;;;;;;;;;;;4849:91;4949:18;;-1:-1:-1;;4949:18:32;4966:1;4949:18;;;4977:67;;;;5011:22;;-1:-1:-1;;;;5011:22:32;-1:-1:-1;;;5011:22:32;;;4977:67;9872:16:69::1;:14;:16::i;:::-;9894:28;9907:5;9914:7;9894:12;:28::i;:::-;9928:25;9947:5;9928:18;:25::i;:::-;9959:71;9983:19;10004:25;9959:23;:71::i;:::-;5068:14:32::0;5064:101;;;5098:23;;-1:-1:-1;;;;5098:23:32;;;5140:14;;-1:-1:-1;19114:50:101;;5140:14:32;;19102:2:101;19087:18;5140:14:32;;;;;;;5064:101;4092:1079;;;;;9699:336:69;;;;:::o;11552:165::-;11626:7;11648:64;11687:24;11703:7;11687:15;:24::i;:::-;11648:28;:9;11671:4;11648:22;:28::i;22638:279::-;1373:10:73;-1:-1:-1;;;;;1395:11:73;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:73;;;;;;;;;;;;22727:8:69;-1:-1:-1;;;;;22727:22:69;::::1;22719:58;;;::::0;-1:-1:-1;;;22719:58:69;;-1:-1:-1;;;;;5829:32:101;;;22719:58:69::1;::::0;::::1;5811:51:101::0;5784:18;;22719:58:69::1;5644:224:101::0;22719:58:69::1;;22783:21;22807:17;22815:8;22807:7;:17::i;:::-;-1:-1:-1::0;;;;;22837:16:69;::::1;;::::0;;;:6:::1;:16;::::0;;;;;22830:23;;;;22864:48;22783:41;;-1:-1:-1;22837:16:69;22864:48:::1;::::0;::::1;::::0;22783:41;643:25:101;;631:2;616:18;;497:177;22864:48:69::1;;;;;;;;22713:204;22638:279:::0;:::o;14403:194::-;14472:7;14491;14487:105;;;14507:40;:28;:9;14530:4;14507:22;:28::i;:::-;-1:-1:-1;;;;;14507:38:69;;5891:101:68;14487:105:69;14565:9;:15;-1:-1:-1;;;14565:15:69;;-1:-1:-1;;;;;14565:15:69;:27;5891:101:68;2809:154:8;2911:7;2937:19;2950:5;2937:12;:19::i;5061:903:14:-;5159:13;5186:18;;5159:13;;;5186:18;5159:13;-1:-1:-1;;;;;;;;;;;5665:13:14;;5399:45;;-1:-1:-1;5665:18:14;:43;;;;-1:-1:-1;5687:16:14;;;;:21;5665:43;5657:77;;;;-1:-1:-1;;;5657:77:14;;19377:2:101;5657:77:14;;;19359:21:101;19416:2;19396:18;;;19389:30;-1:-1:-1;;;19435:18:101;;;19428:51;19496:18;;5657:77:14;19175:345:101;5657:77:14;5796:13;:11;:13::i;:::-;5823:16;:14;:16::i;:::-;5931;;;5915:1;5931:16;;;;;;;;;-1:-1:-1;;;5745:212:14;;;-1:-1:-1;5745:212:14;;-1:-1:-1;5853:13:14;;-1:-1:-1;5888:4:14;;-1:-1:-1;5915:1:14;-1:-1:-1;5931:16:14;-1:-1:-1;5745:212:14;-1:-1:-1;;5061:903:14:o;27145:336:69:-;-1:-1:-1;;;;;27224:35:69;;;;:110;;;27323:11;-1:-1:-1;;;;;27263:71:69;27292:12;-1:-1:-1;;;;;27263:54:69;;:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;27263:71:69;;27224:110;27359:12;27209:169;;;;;-1:-1:-1;;;27209:169:69;;-1:-1:-1;;;;;5829:32:101;;;27209:169:69;;;5811:51:101;5784:18;;27209:169:69;5644:224:101;27209:169:69;-1:-1:-1;27406:7:69;:17;27389:49;;;-1:-1:-1;;;;;27406:17:69;;;20020:51:101;;20107:32;;;20102:2;20087:18;;20080:60;27389:49:69;;19993:18:101;27389:49:69;;;;;;;27444:7;:32;;-1:-1:-1;;;;;;27444:32:69;-1:-1:-1;;;;;27444:32:69;;;;;;;;;;27145:336::o;23817:793::-;23952:19;23974;23982:10;23974:7;:19::i;:::-;-1:-1:-1;;;;;24034:18:69;;23999:32;24034:18;;;:6;:18;;;;;23952:41;;-1:-1:-1;24062:21:69;;;24058:225;;24102:11;24093:20;;24125:11;24140:1;24125:16;24121:33;;24143:11;:4;:9;:11::i;:::-;24058:225;;;24232:44;24241:6;24249:26;:24;:26::i;:::-;24232:4;;:44;:8;:44::i;:::-;-1:-1:-1;;;;;;24208:18:69;;;;;;:6;:18;;;;;;;;;24207:69;;;;;;;;;;;;;;;-1:-1:-1;;;24207:69:69;-1:-1:-1;;;;;;;;;;24207:69:69;;;-1:-1:-1;;;24207:69:69;-1:-1:-1;;;;;;24207:69:69;;;-1:-1:-1;;;;;24207:69:69;;;;;;;;;;;;;;;;;;24058:225;24292:6;24302:1;24292:11;24288:24;;24305:7;;23817:793;;:::o;24288:24::-;24404:31;24427:6;24404:15;:31::i;:::-;24465:10;-1:-1:-1;;;;;24446:38:69;;24477:6;24446:38;;;;643:25:101;;631:2;616:18;;497:177;24446:38:69;;;;;;;;24541:64;987:10:10;24591:4:69;24598:6;24541:10;:8;:10::i;:::-;-1:-1:-1;;;;;24541:27:69;;:64;;:27;:64::i;:::-;23890:720;;23817:793;;:::o;2972:148:7:-;3104:9;3097:16;;3019:13;;-1:-1:-1;;;;;;;;;;;2082:20:7;3097:16;;;:::i;15000:468:69:-;15053:7;15068:10;15081:13;:11;:13::i;:::-;15112:7;;15068:26;;-1:-1:-1;;;;;;15112:7:69;15104:30;15100:328;;15170:7;;:32;;-1:-1:-1;;;15170:32:69;;15197:4;15170:32;;;5811:51:101;15144:23:69;;-1:-1:-1;;;;;15170:7:69;;:26;;5784:18:101;;15170:32:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15144:58;;15233:2;15214:15;:21;15210:150;;15252:1;15247:6;;15210:150;;;15283:68;15292:20;15297:15;15292:2;:20;:::i;:::-;15314:36;15324:20;:18;:20::i;:::-;15314:2;;2178:4;15314:9;:36::i;15283:68::-;15278:73;;15210:150;15136:230;15100:328;;;15385:36;15395:20;:18;:20::i;:::-;15385:2;;2178:4;15385:9;:36::i;:::-;15380:41;;15100:328;15440:23;:4;15460:2;15440:19;:23::i;22119:187::-;22181:27;987:10:10;22201:6:69;22181:5;:27::i;:::-;22214:34;22230:17;:6;:15;:17::i;:::-;22214:15;:34::i;:::-;22259:42;;643:25:101;;;987:10:10;;22259:42:69;;631:2:101;616:18;22259:42:69;;;;;;;22119:187;:::o;18738:228::-;987:10:10;8660:20:69;;;;:6;:20;;;;;:31;-1:-1:-1;;;8660:31:69;;;;8652:73;;;;-1:-1:-1;;;8652:73:69;;-1:-1:-1;;;;;5829:32:101;;;8652:73:69;;;5811:51:101;5784:18;;8652:73:69;5644:224:101;8652:73:69;;18898:63:::1;18909:8;18919:9;18930:18;18950:10;18898;:63::i;4419:178:7:-:0;4488:4;987:10:10;4542:27:7;987:10:10;4559:2:7;4563:5;4542:9;:27::i;11246:445:75:-;11308:11;11322:12;15573:11:69;;-1:-1:-1;;;;;15573:11:69;;15498:91;11322:12:75;11308:26;-1:-1:-1;;;;;;11348:25:75;;11340:55;;;;-1:-1:-1;;;11340:55:75;;;;;;;;;;;;11401:15;11419:10;:8;:10::i;:::-;11401:28;;-1:-1:-1;;11439:6:75;:27;11435:143;;11485:7;11476:16;;11435:143;;;11521:6;11531:7;11521:17;;;;11513:58;;;;-1:-1:-1;;;11513:58:75;;;;;2132:25:101;;;;2173:18;;;2166:34;2105:18;;11513:58:75;1958:248:101;11513:58:75;;;11435:143;11596:6;11583:9;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;11608:10:75;;-1:-1:-1;11608:8:75;:10::i;:::-;:39;;-1:-1:-1;;;11608:39:75;;-1:-1:-1;;;;;17853:32:101;;;11608:39:75;;;17835:51:101;17902:18;;;17895:34;;;11608:18:75;;;;;;;17808::101;;11608:39:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;11653:33:75;;-1:-1:-1;;;11653:33:75;;;;;20679:25:101;;;11680:4:75;20720:18:101;;;20713:60;-1:-1:-1;;;;;11653:10:75;;;;;20652:18:101;;11653:33:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;16638:117:69:-;16721:7;:28;16691:7;;16713:37;;-1:-1:-1;;;16721:28:69;;;;16713:7;:37::i;25196:1945::-;25275:30;25266:5;:39;;;;;;;;:::i;:::-;;25262:1831;;2332:6;25323:8;:23;;:50;;;;;2389:6;25350:8;:23;;25323:50;25392:5;25315:84;;;;;-1:-1:-1;;;25315:84:69;;;;;;;;:::i;:::-;;25438:17;25446:8;25438:7;:17::i;:::-;25407:7;:48;;;;;;;-1:-1:-1;;;25407:48:69;-1:-1:-1;;;;25407:48:69;;;;;;;;;25262:1831;;;25481:28;25472:5;:37;;;;;;;;:::i;:::-;;25468:1625;;25561:5;2178:4;25527:15;;;25519:49;;;;-1:-1:-1;;;25519:49:69;;;;;;;;:::i;:::-;;25605:17;25613:8;25605:7;:17::i;:::-;25576:7;:46;;;;;;;-1:-1:-1;;;25576:46:69;-1:-1:-1;;;;25576:46:69;;;;;;;;;25468:1625;;;25648:28;25639:5;:37;;;;;;;;:::i;:::-;;25635:1458;;25728:5;2178:4;25694:15;;;25686:49;;;;-1:-1:-1;;;25686:49:69;;;;;;;;:::i;:::-;;25772:17;25780:8;25772:7;:17::i;:::-;25743:7;:46;;;;;;;-1:-1:-1;;;25743:46:69;-1:-1:-1;;;;25743:46:69;;;;;;;;;25635:1458;;;27019:5;2451:6;26973:27;;;26965:61;;;;-1:-1:-1;;;26965:61:69;;;;;;;;:::i;:::-;;27069:17;27077:8;27069:7;:17::i;:::-;27034:7;:52;;;;;;;-1:-1:-1;;;27034:52:69;-1:-1:-1;;;;27034:52:69;;;;;;;;;25635:1458;27103:33;27120:5;27127:8;27103:33;;;;;;;:::i;:::-;;;;;;;;25196:1945;;:::o;23315:498::-;987:10:10;23411:7:69;8660:20;;;:6;:20;;;;;:31;23411:7;;987:10:10;-1:-1:-1;;;8660:31:69;;;;8652:73;;;;-1:-1:-1;;;8652:73:69;;-1:-1:-1;;;;;5829:32:101;;;8652:73:69;;;5811:51:101;5784:18;;8652:73:69;5644:224:101;8652:73:69;-1:-1:-1;23448:6:69;23469:41:::1;23448:6:::0;23486:23:::1;:21;:23::i;23469:41::-;23460:50;;23520:6;23530:1;23520:11:::0;23516:35:::1;;23540:11:::0;-1:-1:-1;23533:18:69::1;;23516:35;23584:60;23609:6;23617:26;:24;:26::i;:::-;987:10:10::0;23584:20:69::1;::::0;;;:6:::1;:20;::::0;;;;;;:24:::1;:60::i;:::-;-1:-1:-1::0;987:10:10;23558:20:69::1;::::0;;;:6:::1;:20;::::0;;;;;;;;23557:87;;;;;;::::1;::::0;;;;::::1;::::0;::::1;;-1:-1:-1::0;;;23557:87:69::1;-1:-1:-1::0;;;;;;;;;;23557:87:69;;::::1;-1:-1:-1::0;;;23557:87:69::1;-1:-1:-1::0;;;;;;23557:87:69;;;-1:-1:-1;;;;;23557:87:69;;::::1;::::0;;;;;;;::::1;::::0;;;::::1;;::::0;;23650:32:::1;23666:15;23674:6:::0;23666:15:::1;:::i;23650:32::-;23688:29;23700:8;23710:6;23688:11;:29::i;:::-;23728:47;::::0;;2132:25:101;;;2188:2;2173:18;;2166:34;;;987:10:10;;23728:47:69::1;::::0;2105:18:101;23728:47:69::1;;;;;;;23788:20;23802:6:::0;23788:11;:20:::1;:::i;25067:125::-:0;25154:7;:32;25124:7;;25146:41;;-1:-1:-1;;;25154:32:69;;;;25146:7;:41::i;27582:284::-;-1:-1:-1;;;;;27650:32:69;;;;:104;;;27743:11;-1:-1:-1;;;;;27686:68:69;27715:9;-1:-1:-1;;;;;27686:51:69;;:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;27686:68:69;;27650:104;27776:9;27635:157;;;;;-1:-1:-1;;;27635:157:69;;-1:-1:-1;;;;;5829:32:101;;;27635:157:69;;;5811:51:101;5784:18;;27635:157:69;5644:224:101;27635:157:69;-1:-1:-1;27817:7:69;;27803:33;;;-1:-1:-1;;;;;27817:7:69;;;20020:51:101;;20107:32;;;20102:2;20087:18;;20080:60;27803:33:69;;19993:18:101;27803:33:69;;;;;;;27842:7;:19;;-1:-1:-1;;;;;;27842:19:69;-1:-1:-1;;;;;27842:19:69;;;;;;;;;;27582:284::o;10717:268:75:-;10783:18;10809:16;:14;:16::i;:::-;10831:11;10845:12;15573:11:69;;-1:-1:-1;;;;;15573:11:69;;15498:91;10845:12:75;10831:26;;-1:-1:-1;;10867:6:75;:27;10863:71;;10905:29;;-1:-1:-1;;;10905:29:75;;10928:4;10905:29;;;5811:51:101;-1:-1:-1;;;;;10905:14:75;;;;;5784:18:101;;10905:29:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10896:38;;10863:71;10940:21;10950:2;10954:6;10940:9;:21::i;:::-;-1:-1:-1;10974:6:75;;10717:268;-1:-1:-1;10717:268:75:o;2098:672:8:-;2319:8;2301:15;:26;2297:97;;;2350:33;;-1:-1:-1;;;2350:33:8;;;;;643:25:101;;;616:18;;2350:33:8;497:177:101;2297:97:8;2404:18;1294:95;2463:5;2470:7;2479:5;2486:16;2496:5;-1:-1:-1;;;;;1975:16:12;1618:7;1975:16;;;1026:21;1975:16;;;;;:18;;;;;;;;;1558:452;2486:16:8;2435:78;;;;;;22424:25:101;;;;-1:-1:-1;;;;;22485:32:101;;;22465:18;;;22458:60;22554:32;;;;22534:18;;;22527:60;22603:18;;;22596:34;22646:19;;;22639:35;22690:19;;;22683:35;;;22396:19;;2435:78:8;;;;;;;;;;;;2425:89;;;;;;2404:110;;2525:12;2540:28;2557:10;2540:16;:28::i;:::-;2525:43;;2579:14;2596:28;2610:4;2616:1;2619;2622;2596:13;:28::i;:::-;2579:45;;2648:5;-1:-1:-1;;;;;2638:15:8;:6;-1:-1:-1;;;;;2638:15:8;;2634:88;;2676:35;;-1:-1:-1;;;2676:35:8;;-1:-1:-1;;;;;20038:32:101;;;2676:35:8;;;20020:51:101;20107:32;;20087:18;;;20080:60;19993:18;;2676:35:8;19802:344:101;2634:88:8;2732:31;2741:5;2748:7;2757:5;2732:8;:31::i;:::-;2287:483;;;2098:672;;;;;;;:::o;4630:195:7:-;-1:-1:-1;;;;;4789:20:7;;;4710:7;4789:20;;;:13;:20;;;;;;;;:29;;;;;;;;;;;;;4630:195::o;17016:113:69:-;17097:7;:26;17067:7;;17089:35;;-1:-1:-1;;;17097:26:69;;;;17089:7;:35::i;22310:324::-;1373:10:73;-1:-1:-1;;;;;1395:11:73;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:73;;;;;;;;;;;;22396:8:69;-1:-1:-1;;;;;22396:22:69;::::1;22388:58;;;::::0;-1:-1:-1;;;22388:58:69;;-1:-1:-1;;;;;5829:32:101;;;22388:58:69::1;::::0;::::1;5811:51:101::0;5784:18;;22388:58:69::1;5644:224:101::0;22388:58:69::1;-1:-1:-1::0;;;;;;22487:16:69;::::1;22452:32;22487:16:::0;;;:6:::1;:16;::::0;;;;22517:15;;22487:16;;-1:-1:-1;;;22517:15:69;::::1;;;:20:::0;22509:61:::1;;;::::0;-1:-1:-1;;;22509:61:69;;-1:-1:-1;;;;;5829:32:101;;;22509:61:69::1;::::0;::::1;5811:51:101::0;5784:18;;22509:61:69::1;5644:224:101::0;22509:61:69::1;;22576:11;:4;:9;:11::i;:::-;22598:31;::::0;-1:-1:-1;;;;;22598:31:69;::::1;::::0;::::1;::::0;;;::::1;22382:252;22310:324:::0;:::o;2464:97:73:-;2505:14;2534:11;-1:-1:-1;;;;;2534:20:73;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;17385:113:69:-;17466:7;:26;17436:7;;17458:35;;-1:-1:-1;;;17466:26:69;;;;17458:7;:35::i;2156:206:73:-;2241:4;-1:-1:-1;;;;;;2260:40:73;;-1:-1:-1;;;2260:40:73;;:97;;-1:-1:-1;;;;;;;2304:53:73;;-1:-1:-1;;;2304:53:73;2253:104;2156:206;-1:-1:-1;;2156:206:73:o;7258:3683:63:-;7340:14;7391:12;7405:11;7420:12;7427:1;7430;7420:6;:12::i;:::-;7390:42;;;;7514:4;7522:1;7514:9;7510:365;;7849:11;7843:3;:17;;;;;:::i;:::-;;7836:24;;;;;;7510:365;8000:4;7985:11;:19;7981:142;;8024:84;5328:5;8044:16;;5327:36;940:4:53;5322:42:63;8024:11;:84::i;:::-;8375:17;8526:11;8523:1;8520;8513:25;8918:12;8948:15;;;8933:31;;9083:22;;;;;9816:1;9797;:15;;9796:21;;10049;;;10045:25;;10034:36;10119:21;;;10115:25;;10104:36;10191:21;;;10187:25;;10176:36;10262:21;;;10258:25;;10247:36;10335:21;;;10331:25;;10320:36;10409:21;;;10405:25;;;10394:36;9325:12;;;;9321:23;;;9346:1;9317:31;8638:18;;;8628:29;;;9432:11;;;;8681:19;;;;9176:14;;;;9425:18;;;;10884:13;;-1:-1:-1;;7258:3683:63;;;;;:::o;9923:128:7:-;10007:37;10016:5;10023:7;10032:5;10039:4;10007:8;:37::i;4053:171::-;4118:7;;-1:-1:-1;;;;;;;;;;;4162:18:7;-1:-1:-1;;;;;4197:20:7;;;:11;:20;;;;;;;;-1:-1:-1;;4197:20:7;;;;;4053:171::o;12124:160:68:-;12242:19;;12200:7;;12222:57;;-1:-1:-1;;;;;12242:19:68;566:3;659:4;12222:11;:57::i;6676:323::-;6826:23;;6773:9;;;;6812:38;;6821:3;;-1:-1:-1;;;6826:23:68;;;;6812:8;:38::i;:::-;6790:60;;6860:11;6875:1;6860:16;6856:47;;-1:-1:-1;;6885:18:68;;-1:-1:-1;;;6885:18:68;;-1:-1:-1;;;;;6885:18:68;6878:25;;6856:47;6972:19;;6915:79;;6938:55;;6946:11;;659:4;;-1:-1:-1;;;;;6972:19:68;6938:7;:55::i;:::-;6915:18;;-1:-1:-1;;;6915:18:68;;-1:-1:-1;;;;;6915:18:68;;:22;:79::i;2720:149::-;2797:7;2819:45;2827:12;-1:-1:-1;;;;;2841:15:68;;:17;659:4;2819:7;:45::i;9360:617:75:-;9505:36;;-1:-1:-1;;;9505:36:75;;9535:4;9505:36;;;5811:51:101;9462:18:75;;;;-1:-1:-1;;;;;9505:21:75;;;;;5784:18:101;;9505:36:75;;;;;;;;;;;;;;;;;;-1:-1:-1;9505:36:75;;;;;;;;-1:-1:-1;;9505:36:75;;;;;;;;;;;;:::i;:::-;;;9501:234;;;9588:14;9579:6;:23;9575:94;;;9623:4;9614:13;;9654:6;9637:23;;9575:94;9542:184;9501:234;9744:64;;-1:-1:-1;;;9744:64:75;;;;;16128:25:101;;;9787:4:75;16169:18:101;;;16162:60;;;16238:18;;;16231:60;-1:-1:-1;;;;;9744:18:75;;;;;16101::101;;9744:64:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;9744:64:75;;;;;;;;-1:-1:-1;;9744:64:75;;;;;;;;;;;;:::i;:::-;;;9740:233;;9917:11;-1:-1:-1;;;;;9888:57:75;;9930:14;9888:57;;;;643:25:101;;631:2;616:18;;497:177;9888:57:75;;;;;;;;-1:-1:-1;9962:4:75;9740:233;;;9855:6;-1:-1:-1;9740:233:75;9360:617;;;;;:::o;19396:131:69:-;19461:25;19477:8;19461:15;:25::i;:::-;19492:30;19513:8;19492:20;:30::i;:::-;19396:131;:::o;11669:476:7:-;11768:24;11795:25;11805:5;11812:7;11795:9;:25::i;:::-;11768:52;;-1:-1:-1;;11834:16:7;:36;11830:309;;;11909:5;11890:16;:24;11886:130;;;11941:60;;-1:-1:-1;;;11941:60:7;;-1:-1:-1;;;;;23386:32:101;;11941:60:7;;;23368:51:101;23435:18;;;23428:34;;;23478:18;;;23471:34;;;23341:18;;11941:60:7;23166:345:101;11886:130:7;12057:57;12066:5;12073:7;12101:5;12082:16;:24;12108:5;12057:8;:57::i;6527:300::-;-1:-1:-1;;;;;6610:18:7;;6606:86;;6651:30;;-1:-1:-1;;;6651:30:7;;6678:1;6651:30;;;5811:51:101;5784:18;;6651:30:7;5644:224:101;6606:86:7;-1:-1:-1;;;;;6705:16:7;;6701:86;;6744:32;;-1:-1:-1;;;6744:32:7;;6773:1;6744:32;;;5811:51:101;5784:18;;6744:32:7;5644:224:101;6701:86:7;6796:24;6804:4;6810:2;6814:5;6796:7;:24::i;5633:111:63:-;5691:7;5328:5;;;5725;;;5327:36;5322:42;;5717:20;5087:294;9181:206:7;-1:-1:-1;;;;;9251:21:7;;9247:89;;9295:30;;-1:-1:-1;;;9295:30:7;;9322:1;9295:30;;;5811:51:101;5784:18;;9295:30:7;5644:224:101;9247:89:7;9345:35;9353:7;9370:1;9374:5;9345:7;:35::i;4034:510:75:-;4115:11;-1:-1:-1;;;;;4115:25:75;;4107:71;;;;-1:-1:-1;;;4107:71:75;;-1:-1:-1;;;;;5829:32:101;;;4107:71:75;;;5811:51:101;5784:18;;4107:71:75;5644:224:101;4107:71:75;;4188:6;4198:1;4188:11;4184:24;;4034:510;;:::o;4184:24::-;4213:15;4231:10;:8;:10::i;:::-;4213:28;;4261:6;4251:7;:16;4247:209;;;4277:11;4291:12;15573:11:69;;-1:-1:-1;;;;;15573:11:69;;15498:91;4291:12:75;4277:26;-1:-1:-1;;;;;;4315:25:75;;;4311:81;;4352:31;4362:2;4366:16;4375:7;4366:6;:16;:::i;:::-;4352:9;:31::i;:::-;4269:187;4247:209;-1:-1:-1;;;;;4465:28:75;;4488:4;4465:28;4461:78;;4495:44;4519:11;4532:6;4495:10;:8;:10::i;:::-;-1:-1:-1;;;;;4495:23:75;;:44;:23;:44::i;8655:208:7:-;-1:-1:-1;;;;;8725:21:7;;8721:91;;8769:32;;-1:-1:-1;;;8769:32:7;;8798:1;8769:32;;;5811:51:101;5784:18;;8769:32:7;5644:224:101;8721:91:7;8821:35;8837:1;8841:7;8850:5;8821:7;:35::i;6172:366:68:-;6334:23;;6274:5;;6308:15;;6334:30;;;;-1:-1:-1;;;6334:23:68;;;;:30;6330:204;;;6436:23;;6381:100;;458:8;;6429:30;;-1:-1:-1;;;6436:23:68;;;;6429:4;:30;:::i;:::-;6406:54;;6421:39;;6406:12;:54;:::i;:::-;6405:75;;;;:::i;:::-;6381:18;;-1:-1:-1;;;6381:18:68;;-1:-1:-1;;;;;6381:18:68;;:23;:100::i;:::-;6374:107;;;;;6330:204;-1:-1:-1;;6509:18:68;;-1:-1:-1;;;6509:18:68;;-1:-1:-1;;;;;6509:18:68;6502:25;;6330:204;6281:257;6172:366;;;;:::o;3246:157::-;3327:7;3349:49;3361:12;-1:-1:-1;;;;;3375:15:68;;659:4;3349:11;:49::i;3919:109:14:-;3972:7;3998:23;:21;:23::i;18236:498:69:-;18560:42;:9;18585:10;18597:4;18560:24;:42::i;:::-;18548:54;;:9;:54;;;;;;;;;;;-1:-1:-1;;;;;18548:54:69;;;-1:-1:-1;;;;;;18548:54:69;;;;-1:-1:-1;;;;;;;;18548:54:69;;;;;;;;;;;-1:-1:-1;;;;;18548:54:69;-1:-1:-1;;;18548:54:69;;;;;;;;;18615:39;;:4;;18624:9;;18635:18;;18615:8;:39;:::i;:::-;18608:46;;;;;;;-1:-1:-1;;;;;18608:46:69;;;-1:-1:-1;;;18608:46:69;;;;:4;:46;18665:64;;;24286:25:101;;;24327:18;;;24320:34;;;24370:18;;24363:34;;;18677:8:69;;18665:64;;24274:2:101;24259:18;18665:64:69;;;;;;;18236:498;;;;:::o;4328:312:33:-;4408:4;-1:-1:-1;;;;;4417:6:33;4400:23;;;:120;;;4514:6;-1:-1:-1;;;;;4478:42:33;:32;-1:-1:-1;;;;;;;;;;;1519:53:29;-1:-1:-1;;;;;1519:53:29;;1441:138;4478:32:33;-1:-1:-1;;;;;4478:42:33;;;4400:120;4383:251;;;4594:29;;-1:-1:-1;;;4594:29:33;;;;;;;;;;;4383:251;4328:312::o;1807:106:73:-;1880:28;1900:7;1880:19;:28::i;5782:538:33:-;5899:17;-1:-1:-1;;;;;5881:50:33;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5881:52:33;;;;;;;;-1:-1:-1;;5881:52:33;;;;;;;;;;;;:::i;:::-;;;5877:437;;6243:60;;-1:-1:-1;;;6243:60:33;;-1:-1:-1;;;;;5829:32:101;;6243:60:33;;;5811:51:101;5784:18;;6243:60:33;5644:224:101;5877:437:33;-1:-1:-1;;;;;;;;;;;5975:40:33;;5971:120;;6042:34;;-1:-1:-1;;;6042:34:33;;;;;643:25:101;;;616:18;;6042:34:33;497:177:101;5971:120:33;6104:54;6134:17;6153:4;6104:29;:54::i;15154:210:68:-;15277:7;;15239;;-1:-1:-1;;;;;15277:7:68;15295:18;;;15291:68;;;15322:18;15336:4;15322:11;:18;:::i;15291:68::-;15358:1;15351:8;;;;;11389:608;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;11661:23:68;;11647:38;;11656:3;;-1:-1:-1;;;11661:23:68;;;;11647:8;:38::i;:::-;11630:56;;;;:::i;:::-;11769:19;;11630:56;;-1:-1:-1;11692:14:68;;11709:83;;11732:59;;11630:56;;699:4;;-1:-1:-1;;;;;11769:19:68;11732:7;:59::i;:::-;11709:18;;-1:-1:-1;;;11709:18:68;;-1:-1:-1;;;;;11709:18:68;;:22;:83::i;:::-;11692:100;;566:3;11815:8;-1:-1:-1;;;;;11802:34:68;;11798:84;;;11845:37;;-1:-1:-1;;;11845:37:68;;-1:-1:-1;;;;;24981:39:101;;11845:37:68;;;24963:58:101;24936:18;;11845:37:68;24818:209:101;11798:84:68;11895:97;;;;;;;;11917:19;;-1:-1:-1;;;;;11917:19:68;11895:97;;-1:-1:-1;;;;;11895:97:68;;;;;;;;11974:15;11895:97;;;;;;-1:-1:-1;11389:608:68;;;;;:::o;12802:740::-;-1:-1:-1;;;;;;;;;;;;;;;;;12953:7:68;;-1:-1:-1;;;;;12953:7:68;;:12;12949:589;;12982:80;;;;;;;;12992:22;:10;:20;:22::i;:::-;-1:-1:-1;;;;;12982:80:68;;;;;13030:30;:18;:28;:30::i;:::-;-1:-1:-1;;;;;12982:80:68;;;12975:87;-1:-1:-1;12975:87:68;;12949:589;13109:7;;-1:-1:-1;;;;;13109:7:68;13083:15;13142:20;13152:10;13109:7;13142:20;:::i;:::-;13125:37;;13267:23;13293:149;13361:44;13369:18;13389:10;659:4;13361:7;:44::i;:::-;13326:16;;13310:48;;-1:-1:-1;;;13326:16:68;;-1:-1:-1;;;;;13326:16:68;13345:7;659:4;13310:7;:48::i;:::-;:95;;;;:::i;:::-;659:4;13428:6;13293:7;:149::i;:::-;13267:175;;13458:73;;;;;;;;13468:18;:6;:16;:18::i;:::-;-1:-1:-1;;;;;13458:73:68;;;;;13502:27;:15;:25;:27::i;:::-;-1:-1:-1;;;;;13458:73:68;;;;13451:80;;;;;;;4757:213:33;4831:4;-1:-1:-1;;;;;4840:6:33;4823:23;;4819:145;;4924:29;;-1:-1:-1;;;4924:29:33;;;;;;;;;;;9071:205:32;9129:30;;3147:66;9186:27;8819:122;3293:91:75;6929:20:32;:18;:20::i;:::-;3351:28:75::1;:26;:28::i;2281:147:7:-:0;6929:20:32;:18;:20::i;:::-;2383:38:7::1;2406:5;2413:7;2383:22;:38::i;1847:125:8:-:0;6929:20:32;:18;:20::i;:::-;1931:34:8::1;1955:4;1931:34;;;;;;;;;;;;;-1:-1:-1::0;;;1931:34:8::1;;::::0;:23:::1;:34::i;10090:681:69:-:0;6929:20:32;:18;:20::i;:::-;10231:16:69::1;:9;:14;:16::i;:::-;10358:265;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;10358:265:69;;;2285:3:::1;10358:265;::::0;::::1;::::0;;;;;;;;;;;;;;;;10348:7:::1;:275:::0;;-1:-1:-1;;;;;;10348:275:69;-1:-1:-1;;;10348:275:69;;;10630:59:::1;10639:28;10669:19:::0;10630:8:::1;:59::i;:::-;10695:71;10704:34;10740:25;10695:8;:71::i;1280:164:12:-:0;1340:7;;1026:21;1385:19;907:156;6188:155:14;6329:7;6322:14;;6242:13;;-1:-1:-1;;;;;;;;;;;2743:21:14;6322:14;;;:::i;6570:161::-;6627:13;6652:23;-1:-1:-1;;;;;;;;;;;6678:19:14;2624:156;7003:187:68;7136:49;7169:15;7136:49;-1:-1:-1;;;7136:49:68;-1:-1:-1;;;7136:49:68;;;7003:187::o;9947:267::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;10141:68:68;10146:12;10160:6;10168:40;10146:12;10195;10168;:40::i;:::-;10141:4;:68::i;:::-;10134:75;;;;9947:267;;;;;;:::o;19531:110:69:-;19598:38;:9;19623:6;19631:4;19598:24;:38::i;:::-;19586:50;;:9;:50;;;;;;;;;;;;;-1:-1:-1;;;19586:50:69;-1:-1:-1;;;;;;;;;;19586:50:69;;;-1:-1:-1;;;19586:50:69;-1:-1:-1;;;;;;19586:50:69;;;-1:-1:-1;;;;;19586:50:69;;;;;;;;;;;;;;;-1:-1:-1;19531:110:69:o;1662:232:40:-;1767:47;1785:5;1792:4;1798:2;1802:5;1809:4;1767:17;:47::i;:::-;1762:126;;1837:40;;-1:-1:-1;;;1837:40:40;;-1:-1:-1;;;;;5829:32:101;;1837:40:40;;;5811:51:101;5784:18;;1837:40:40;5644:224:101;34380:314:64;34436:6;-1:-1:-1;;;;;34557:5:64;:33;34553:105;;;34613:34;;-1:-1:-1;;;34613:34:64;;;;;643:25:101;;;616:18;;34613:34:64;497:177:101;34553:105:64;-1:-1:-1;34681:5:64;34380:314::o;10077:121:75:-;10120:7;10157:10;:8;:10::i;:::-;10142:51;;-1:-1:-1;;;10142:51:75;;10187:4;10142:51;;;5811::101;-1:-1:-1;;;;;10142:36:75;;;;;;;5784:18:101;;10142:51:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;15736:156:69:-;15790:7;15851:36;2234:4;15851:14;;;:36;:::i;15896:146::-;15951:6;15997:40;15998:27;2234:4;15998:5;:27;:::i;:::-;15997:38;:40::i;9556:267:68:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;9750:68:68;9755:12;9769:6;9777:40;9755:12;9804;9777;:40::i;:::-;9750:4;:68::i;8525:386:75:-;8597:58;;-1:-1:-1;;;8597:58:75;;;;;16128:25:101;;;8634:4:75;16169:18:101;;;16162:60;;;16238:18;;;16231:60;-1:-1:-1;;;;;8597:20:75;;;;;16101:18:101;;8597:58:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8674:9;;8665:6;:18;8661:246;;;8797:42;8828:9;;8819:6;:18;;;;:::i;8797:42::-;8859:1;8847:9;:13;3911:214:33;;:::o;8661:246:75:-;8894:6;8881:9;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;8525:386:75;;:::o;4850:176:14:-;4927:7;4953:66;4986:20;:18;:20::i;:::-;5008:10;4049:4:60;4043:11;-1:-1:-1;;;4067:23:60;;4119:4;4110:14;;4103:39;;;;4171:4;4162:14;;4155:34;4227:4;4212:20;;;3874:374;8826:260:57;8911:7;8931:17;8950:18;8970:16;8990:25;9001:4;9007:1;9010;9013;8990:10;:25::i;:::-;8930:85;;;;;;9025:28;9037:5;9044:8;9025:11;:28::i;:::-;-1:-1:-1;9070:9:57;;8826:260;-1:-1:-1;;;;;;8826:260:57:o;1027:550:63:-;1088:12;;-1:-1:-1;;1471:1:63;1468;1461:20;1501:9;;;;1549:11;;;1535:12;;;;1531:30;;;;;1027:550;-1:-1:-1;;1027:550:63:o;1776:194:53:-;1881:10;1875:4;1868:24;1918:4;1912;1905:18;1949:4;1943;1936:18;10900:487:7;-1:-1:-1;;;;;;;;;;;;;;;;11065:19:7;;11061:89;;11107:32;;-1:-1:-1;;;11107:32:7;;11136:1;11107:32;;;5811:51:101;5784:18;;11107:32:7;5644:224:101;11061:89:7;-1:-1:-1;;;;;11163:21:7;;11159:90;;11207:31;;-1:-1:-1;;;11207:31:7;;11235:1;11207:31;;;5811:51:101;5784:18;;11207:31:7;5644:224:101;11159:90:7;-1:-1:-1;;;;;11258:20:7;;;;;;;:13;;;:20;;;;;;;;:29;;;;;;;;;:37;;;11305:76;;;;11355:7;-1:-1:-1;;;;;11339:31:7;11348:5;-1:-1:-1;;;;;11339:31:7;;11364:5;11339:31;;;;643:25:101;;631:2;616:18;;497:177;11339:31:7;;;;;;;;11305:76;10998:389;10900:487;;;;:::o;2151:178:68:-;2228:7;2282:36;2316:1;2311;2298:15;;;;;:::i;:::-;2308:1;2305;2298:15;:19;;34795:145:64;2282:36:68;2278:1;2273;2269;:5;2268:11;;;;;:::i;:::-;;:50;;2151:178;-1:-1:-1;;;;2151:178:68:o;14673:252::-;14798:7;;14745;;14773:147;;-1:-1:-1;;;;;14798:7:68;458:8;14846:32;14864:14;;;14846:15;:32;:::i;:::-;14825:16;;14817:62;;;-1:-1:-1;;;14825:16:68;;-1:-1:-1;;;;;14825:16:68;14817:62;:::i;:::-;14816:83;;;;:::i;1556:135::-;1629:7;1679:1;1674;1670;:5;1669:11;;;;;:::i;:::-;;;1556:135;-1:-1:-1;;;;1556:135:68:o;5086:150::-;5151:14;5191:39;5192:26;5212:6;-1:-1:-1;;;;;5192:15:68;;:26;:::i;:::-;5191:37;:39::i;5829:100:75:-;5898:26;;643:25:101;;;5898:26:75;;631:2:101;616:18;5898:26:75;;;;;;;5829:100;:::o;11756:1326:69:-;11846:19;-1:-1:-1;;;;;11875:18:69;;11871:499;;11944:26;:9;11958:5;11965:4;11944:13;:26::i;:::-;11917:53;;11918:9;11917:53;;;;;;;;;;;;;-1:-1:-1;;;11917:53:69;-1:-1:-1;;;;;;;;;;11917:53:69;;;-1:-1:-1;;;11917:53:69;-1:-1:-1;;;;;;11917:53:69;;;-1:-1:-1;;;;;11917:53:69;;;;;;;;;;;;;;;;;-1:-1:-1;11871:499:69;;;-1:-1:-1;;;;;11987:16:69;;11983:387;;12054:26;:9;12068:5;12075:4;12054:13;:26::i;11983:387::-;12144:7;:17;-1:-1:-1;;;;;12144:17:69;12136:40;;:100;;-1:-1:-1;12180:7:69;:17;:56;;-1:-1:-1;;;12180:56:69;;12214:4;12180:56;;;18187:51:101;-1:-1:-1;;;;;18274:32:101;;;18254:18;;;18247:60;18343:32;;;18323:18;;;18316:60;18392:18;;;18385:34;;;12180:17:69;;;;:33;;18159:19:101;;12180:56:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12269:4;12275:2;12279:5;12119:174;;;;;;;-1:-1:-1;;;12119:174:69;;;;;;;;;;:::i;:::-;-1:-1:-1;12315:48:69;;-1:-1:-1;12357:5:69;;-1:-1:-1;12315:28:69;:9;12338:4;12315:22;:28::i;:::-;-1:-1:-1;;;;;12315:41:69;;;:48::i;:::-;12301:62;;11983:387;-1:-1:-1;;;;;;;;;;;;;;;;12439:18:69;;;12435:390;;-1:-1:-1;;;;;12489:17:69;;12467:19;12489:17;;;;;;;;;;;12518:25;;;12514:147;;;12587:4;12593:51;12632:11;12593:28;:9;12616:4;12593:22;:28::i;:51::-;12562:90;;-1:-1:-1;;;12562:90:69;;-1:-1:-1;;;;;23386:32:101;;;12562:90:69;;;23368:51:101;23435:18;;;23428:34;23478:18;;;23471:34;;;23341:18;;12562:90:69;23166:345:101;12514:147:69;-1:-1:-1;;;;;12765:17:69;;:11;:17;;;;;;;;;;12785:25;;;;12765:45;;12435:390;-1:-1:-1;;;;;12835:16:69;;;12831:210;;-1:-1:-1;;;;;12996:15:69;;:11;:15;;;;;;;;;;:30;;;;;;12831:210;13067:2;-1:-1:-1;;;;;13052:25:69;13061:4;-1:-1:-1;;;;;13052:25:69;;13071:5;13052:25;;;;643::101;;631:2;616:18;;497:177;1219:204:40;1306:37;1320:5;1327:2;1331:5;1338:4;1306:13;:37::i;:::-;1301:116;;1366:40;;-1:-1:-1;;;1366:40:40;;-1:-1:-1;;;;;5829:32:101;;1366:40:40;;;5811:51:101;5784:18;;1366:40:40;5644:224:101;4703:168:68;4769:14;4809:56;:45;-1:-1:-1;;;;;4817:15:68;;4836:12;659:4;4836:6;:12;:::i;4034:191:14:-;4089:7;1977:95;4147:17;:15;:17::i;:::-;4166:20;:18;:20::i;:::-;4125:92;;;;;;25847:25:101;;;;25888:18;;25881:34;;;;25931:18;;;25924:34;4188:13:14;25974:18:101;;;25967:34;4211:4:14;26017:19:101;;;26010:61;25819:19;;4125:92:14;;;;;;;;;;;;4115:103;;;;;;4108:110;;4034:191;:::o;13894:699:68:-;-1:-1:-1;;;;;;;;;;;;;;;;;14045:7:68;;-1:-1:-1;;;;;14045:7:68;:21;;;14041:548;;-1:-1:-1;14083:30:68;;;;;;;;;-1:-1:-1;14083:30:68;;;;;;;14076:37;;14041:548;14160:7;;-1:-1:-1;;;;;14160:7:68;14134:15;14193:20;14203:10;14160:7;14193:20;:::i;:::-;14176:37;;14318:23;14344:149;14412:44;14420:18;14440:10;659:4;14412:7;:44::i;:::-;14377:16;;14361:48;;-1:-1:-1;;;14377:16:68;;-1:-1:-1;;;;;14377:16:68;14396:7;659:4;14361:7;:48::i;:::-;:95;;;;:::i;1917:180:73:-;2041:11;-1:-1:-1;;;;;1995:57:73;2016:7;-1:-1:-1;;;;;1995:40:73;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1995:57:73;;1991:101;;2061:31;;-1:-1:-1;;;2061:31:73;;;;;;;;;;;2264:344:29;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:29;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;2454:148::-;2573:18;:16;:18::i;1841:131:68:-;1911:6;1960:1;1955;1951;:5;1950:11;;;;;:::i;:::-;;;1841:131;-1:-1:-1;;;;1841:131:68:o;5562:270::-;5626:14;;5678:34;5706:6;-1:-1:-1;;;;;5685:15:68;;5678:34;:::i;:::-;5648:65;-1:-1:-1;5648:65:68;566:3;5727:24;;;5719:61;;;;-1:-1:-1;;;5719:61:68;;;;;;643:25:101;;631:2;616:18;;497:177;5719:61:68;;5804:22;:11;:20;:22::i;9264:218:64:-;9321:7;-1:-1:-1;;;;;9344:25:64;;9340:105;;;9392:42;;-1:-1:-1;;;9392:42:64;;9423:3;9392:42;;;26264:36:101;26316:18;;;26309:34;;;26237:18;;9392:42:64;26082:267:101;7082:141:32;7149:17;:15;:17::i;:::-;7144:73;;7189:17;;-1:-1:-1;;;7189:17:32;;;;;;;;;;;1737:66:73;6929:20:32;:18;:20::i;2434:216:7:-;6929:20:32;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;2599:7:7;:15:::1;2609:5:::0;2599:7;:15:::1;:::i;:::-;-1:-1:-1::0;2624:9:7::1;::::0;::::1;:19;2636:7:::0;2624:9;:19:::1;:::i;3503:330:14:-:0;6929:20:32;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;3670:7:14;:14:::1;3680:4:::0;3670:7;:14:::1;:::i;:::-;-1:-1:-1::0;3694:10:14::1;::::0;::::1;:20;3707:7:::0;3694:10;:20:::1;:::i;:::-;-1:-1:-1::0;3795:1:14::1;3779:17:::0;;;3806:16:::1;::::0;;::::1;:20:::0;-1:-1:-1;;3503:330:14:o;8877:560:68:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;9068:26:68;-1:-1:-1;;;;;9068:18:68;;9087:6;9068:18;:26::i;:::-;9128:19;;9056:38;;-1:-1:-1;;;;;;9128:19:68;9100:17;9174:21;9056:38;9128:19;9174:21;:::i;:::-;9154:41;;9205:9;9218:1;9205:14;9201:92;;520:4;9265:21;;9201:92;9313:96;;;;;;;;9349:21;:9;:19;:21::i;:::-;-1:-1:-1;;;;;9313:96:68;;;;;9334:5;-1:-1:-1;;;;;9313:96:68;;;;;9391:15;9313:96;;;;;9298:134;;;;8877:560;;;;;;:::o;10165:1393:40:-;10460:4;10454:11;-1:-1:-1;;;10323:12:40;10478:22;;;-1:-1:-1;;;;;10526:26:40;;;10520:4;10513:40;10579:24;;10573:4;10566:38;10624:4;10617:19;;;10323:12;10700:4;10323:12;10688:4;10323:12;;10672:5;10665;10660:45;10649:56;;10917:1;10910:4;10904:11;10901:18;10892:7;10888:32;10878:606;;11049:6;11039:7;11032:15;11028:28;11025:165;;;11105:16;11099:4;11094:3;11079:43;11155:16;11150:3;11143:29;11025:165;11466:1;11458:5;11446:18;11443:25;11424:16;11417:24;11413:56;11404:7;11400:70;11389:81;;10878:606;11504:4;11497:17;-1:-1:-1;11540:1:40;11534:4;11527:15;10165:1393;;-1:-1:-1;;;;;10165:1393:40:o;16296:213:64:-;16352:6;16382:16;16374:24;;16370:103;;;16421:41;;-1:-1:-1;;;16421:41:64;;16452:2;16421:41;;;26264:36:101;26316:18;;;26309:34;;;26237:18;;16421:41:64;26082:267:101;7608:423:68;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;7799:22:68;-1:-1:-1;;;;;7799:14:68;;7814:6;7799:14;:22::i;:::-;7842:161;;;;;;;;;7904:19;;7787:34;;-1:-1:-1;7842:161:68;;;7895:54;;7896:40;;7787:34;;-1:-1:-1;;;;;7904:19:68;7896:40;:::i;:::-;7895:52;:54::i;:::-;-1:-1:-1;;;;;7842:161:68;;;;;7872:5;-1:-1:-1;;;;;7842:161:68;;;;;7978:15;7842:161;;;;;7827:199;;7608:423;;;;;;:::o;7142:1551:57:-;7268:17;;;8222:66;8209:79;;8205:164;;;-1:-1:-1;8320:1:57;;-1:-1:-1;8324:30:57;;-1:-1:-1;8356:1:57;8304:54;;8205:164;8480:24;;;8463:14;8480:24;;;;;;;;;28976:25:101;;;29049:4;29037:17;;29017:18;;;29010:45;;;;29071:18;;;29064:34;;;29114:18;;;29107:34;;;8480:24:57;;28948:19:101;;8480:24:57;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8480:24:57;;-1:-1:-1;;8480:24:57;;;-1:-1:-1;;;;;;;8518:20:57;;8514:113;;-1:-1:-1;8570:1:57;;-1:-1:-1;8574:29:57;;-1:-1:-1;8570:1:57;;-1:-1:-1;8554:62:57;;8514:113;8645:6;-1:-1:-1;8653:20:57;;-1:-1:-1;8653:20:57;;-1:-1:-1;7142:1551:57;;;;;;;;;:::o;11630:532::-;11725:20;11716:5;:29;;;;;;;;:::i;:::-;;11712:444;;11630:532;;:::o;11712:444::-;11821:29;11812:5;:38;;;;;;;;:::i;:::-;;11808:348;;11873:23;;-1:-1:-1;;;11873:23:57;;;;;;;;;;;11808:348;11926:35;11917:5;:44;;;;;;;;:::i;:::-;;11913:243;;11984:46;;-1:-1:-1;;;11984:46:57;;;;;643:25:101;;;616:18;;11984:46:57;497:177:101;11913:243:57;12060:30;12051:5;:39;;;;;;;;:::i;:::-;;12047:109;;12113:32;;-1:-1:-1;;;12113:32:57;;;;;643:25:101;;;616:18;;12113:32:57;497:177:101;11296:213:64;11352:6;-1:-1:-1;;;;;11374:24:64;;11370:103;;;11421:41;;-1:-1:-1;;;11421:41:64;;11452:2;11421:41;;;26264:36:101;26316:18;;;26309:34;;;26237:18;;11421:41:64;26082:267:101;10322:253:68;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;10511:59:68;10516:12;10530:6;10538:31;10516:12;10565:3;10538:12;:31::i;10688:253::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;10877:59:68;10882:12;10896:6;10904:31;10882:12;10931:3;10904:12;:31::i;4335:158::-;4416:7;4438:50;4450:13;659:4;-1:-1:-1;;;;;4470:15:68;;4438:11;:50::i;8373:1244:40:-;8600:4;8594:11;-1:-1:-1;;;8467:12:40;8618:22;;;-1:-1:-1;;;;;8666:24:40;;8660:4;8653:38;8711:4;8704:19;;;8467:12;8787:4;8467:12;8775:4;8467:12;;8759:5;8752;8747:45;8736:56;;9004:1;8997:4;8991:11;8988:18;8979:7;8975:32;8965:606;;9136:6;9126:7;9119:15;9115:28;9112:165;;;9192:16;9186:4;9181:3;9166:43;9242:16;9237:3;9230:29;9112:165;9553:1;9545:5;9533:18;9530:25;9511:16;9504:24;9500:56;9491:7;9487:70;9476:81;;8965:606;9591:4;9584:17;-1:-1:-1;8373:1244:40;;-1:-1:-1;;;;8373:1244:40:o;6946:687:14:-;6996:7;-1:-1:-1;;;;;;;;;;;6996:7:14;7091:13;:11;:13::i;:::-;7118:18;;7070:34;;-1:-1:-1;7118:22:14;7114:513;;7163:22;;;;;;;;6946:687;-1:-1:-1;;6946:687:14:o;7114:513::-;7460:13;;7491:15;;7487:130;;7533:10;6946:687;-1:-1:-1;;;6946:687:14:o;7487:130::-;7589:13;7582:20;;;;;6946:687;:::o;7854:723::-;7907:7;-1:-1:-1;;;;;;;;;;;7907:7:14;8005:16;:14;:16::i;:::-;8035:21;;7981:40;;-1:-1:-1;8035:25:14;8031:540;;8083:25;;;;;;;;7854:723;-1:-1:-1;;7854:723:14:o;8031:540::-;8395:16;;;;8429:18;;8425:136;;8474:13;7854:723;-1:-1:-1;;;7854:723:14:o;1671:281:29:-;1748:17;-1:-1:-1;;;;;1748:29:29;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:29;;-1:-1:-1;;;;;5829:32:101;;1805:47:29;;;5811:51:101;5784:18;;1805:47:29;5644:224:101;1744:119:29;-1:-1:-1;;;;;;;;;;;1872:73:29;;-1:-1:-1;;;;;;1872:73:29;-1:-1:-1;;;;;1872:73:29;;;;;;;;;;1671:281::o;4691:549:45:-;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:45;4583:16:49;4886:33:45;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:45;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;4870:364::-;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:45;;-1:-1:-1;;;;;5829:32:101;;5045:24:45;;;5811:51:101;5784:18;;5045:24:45;5644:224:101;5011:223:45;4583:16:49;5090:33:45;5086:148;;5139:27;:25;:27::i;:::-;5086:148;;;5204:19;;-1:-1:-1;;;5204:19:45;;;;;;;;;;;6113:122:29;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:29;;;;;;;;;;;8485:120:32;8535:4;8558:26;:24;:26::i;:::-;:40;-1:-1:-1;;;8558:40:32;;;;;;-1:-1:-1;8485:120:32:o;3822:150:68:-;3899:7;3921:46;3929:13;659:4;-1:-1:-1;;;;;3949:15:68;;3921:7;:46::i;3383:242:49:-;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:49:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;14:286:101;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:101;;209:43;;199:71;;266:1;263;256:12;679:289;721:3;759:5;753:12;786:6;781:3;774:19;842:6;835:4;828:5;824:16;817:4;812:3;808:14;802:47;894:1;887:4;878:6;873:3;869:16;865:27;858:38;957:4;950:2;946:7;941:2;933:6;929:15;925:29;920:3;916:39;912:50;905:57;;;679:289;;;;:::o;973:220::-;1122:2;1111:9;1104:21;1085:4;1142:45;1183:2;1172:9;1168:18;1160:6;1142:45;:::i;1198:131::-;-1:-1:-1;;;;;1273:31:101;;1263:42;;1253:70;;1319:1;1316;1309:12;1334:367;1402:6;1410;1463:2;1451:9;1442:7;1438:23;1434:32;1431:52;;;1479:1;1476;1469:12;1431:52;1518:9;1505:23;1537:31;1562:5;1537:31;:::i;:::-;1587:5;1665:2;1650:18;;;;1637:32;;-1:-1:-1;;;1334:367:101:o;1706:247::-;1765:6;1818:2;1806:9;1797:7;1793:23;1789:32;1786:52;;;1834:1;1831;1824:12;1786:52;1873:9;1860:23;1892:31;1917:5;1892:31;:::i;2211:118::-;2297:5;2290:13;2283:21;2276:5;2273:32;2263:60;;2319:1;2316;2309:12;2334:399;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2532:9;2519:23;2551:31;2576:5;2551:31;:::i;:::-;2601:5;-1:-1:-1;2658:2:101;2643:18;;2630:32;2671:30;2630:32;2671:30;:::i;:::-;2720:7;2710:17;;;2334:399;;;;;:::o;2738:508::-;2815:6;2823;2831;2884:2;2872:9;2863:7;2859:23;2855:32;2852:52;;;2900:1;2897;2890:12;2852:52;2939:9;2926:23;2958:31;2983:5;2958:31;:::i;:::-;3008:5;-1:-1:-1;3065:2:101;3050:18;;3037:32;3078:33;3037:32;3078:33;:::i;:::-;2738:508;;3130:7;;-1:-1:-1;;;3210:2:101;3195:18;;;;3182:32;;2738:508::o;3251:650::-;3337:6;3345;3353;3361;3414:3;3402:9;3393:7;3389:23;3385:33;3382:53;;;3431:1;3428;3421:12;3382:53;3476:23;;;-1:-1:-1;3575:2:101;3560:18;;3547:32;3588:33;3547:32;3588:33;:::i;:::-;3640:7;-1:-1:-1;3699:2:101;3684:18;;3671:32;3712:33;3671:32;3712:33;:::i;:::-;3764:7;-1:-1:-1;3823:2:101;3808:18;;3795:32;3836:33;3795:32;3836:33;:::i;:::-;3251:650;;;;-1:-1:-1;3251:650:101;;-1:-1:-1;;3251:650:101:o;3906:508::-;3983:6;3991;3999;4052:2;4040:9;4031:7;4027:23;4023:32;4020:52;;;4068:1;4065;4058:12;4020:52;4113:23;;;-1:-1:-1;4212:2:101;4197:18;;4184:32;4225:33;4184:32;4225:33;:::i;:::-;4277:7;-1:-1:-1;4336:2:101;4321:18;;4308:32;4349:33;4308:32;4349:33;:::i;:::-;4401:7;4391:17;;;3906:508;;;;;:::o;4790:849::-;4893:6;4901;4909;4917;4925;4933;4986:3;4974:9;4965:7;4961:23;4957:33;4954:53;;;5003:1;5000;4993:12;4954:53;5048:23;;;-1:-1:-1;5168:2:101;5153:18;;5140:32;;-1:-1:-1;5271:2:101;5256:18;;5243:32;;-1:-1:-1;5374:2:101;5359:18;;5346:32;;-1:-1:-1;5456:3:101;5441:19;;5428:33;5470;5428;5470;:::i;:::-;4790:849;;;;-1:-1:-1;4790:849:101;;;;;5602:3;5587:19;;;5574:33;;-1:-1:-1;;4790:849:101:o;5873:127::-;5934:10;5929:3;5925:20;5922:1;5915:31;5965:4;5962:1;5955:15;5989:4;5986:1;5979:15;6005:715;6069:5;6101:1;6125:18;6117:6;6114:30;6111:56;;;6147:18;;:::i;:::-;-1:-1:-1;6302:2:101;6296:9;-1:-1:-1;;6215:2:101;6194:15;;6190:29;;6360:2;6348:15;6344:29;6332:42;;6425:22;;;6404:18;6389:34;;6386:62;6383:88;;;6451:18;;:::i;:::-;6487:2;6480:22;6535;;;6520:6;-1:-1:-1;6520:6:101;6572:16;;;6569:25;-1:-1:-1;6566:45:101;;;6607:1;6604;6597:12;6566:45;6657:6;6652:3;6645:4;6637:6;6633:17;6620:44;6712:1;6705:4;6696:6;6688;6684:19;6680:30;6673:41;;6005:715;;;;;:::o;6725:584::-;6802:6;6810;6863:2;6851:9;6842:7;6838:23;6834:32;6831:52;;;6879:1;6876;6869:12;6831:52;6918:9;6905:23;6937:31;6962:5;6937:31;:::i;:::-;6987:5;-1:-1:-1;7043:2:101;7028:18;;7015:32;7070:18;7059:30;;7056:50;;;7102:1;7099;7092:12;7056:50;7125:22;;7178:4;7170:13;;7166:27;-1:-1:-1;7156:55:101;;7207:1;7204;7197:12;7156:55;7230:73;7295:7;7290:2;7277:16;7272:2;7268;7264:11;7230:73;:::i;:::-;7220:83;;;6725:584;;;;;:::o;7314:466::-;7391:6;7399;7407;7460:2;7448:9;7439:7;7435:23;7431:32;7428:52;;;7476:1;7473;7466:12;7428:52;-1:-1:-1;;7521:23:101;;;7641:2;7626:18;;7613:32;;-1:-1:-1;7744:2:101;7729:18;;;7716:32;;7314:466;-1:-1:-1;7314:466:101:o;7785:221::-;7828:5;7881:3;7874:4;7866:6;7862:17;7858:27;7848:55;;7899:1;7896;7889:12;7848:55;7921:79;7996:3;7987:6;7974:20;7967:4;7959:6;7955:17;7921:79;:::i;8011:773::-;8117:6;8125;8133;8141;8194:3;8182:9;8173:7;8169:23;8165:33;8162:53;;;8211:1;8208;8201:12;8162:53;8251:9;8238:23;8284:18;8276:6;8273:30;8270:50;;;8316:1;8313;8306:12;8270:50;8339;8381:7;8372:6;8361:9;8357:22;8339:50;:::i;:::-;8329:60;;;8442:2;8431:9;8427:18;8414:32;8471:18;8461:8;8458:32;8455:52;;;8503:1;8500;8493:12;8455:52;8526;8570:7;8559:8;8548:9;8544:24;8526:52;:::i;:::-;8011:773;;8516:62;;-1:-1:-1;;;;8647:2:101;8632:18;;8619:32;;8748:2;8733:18;8720:32;;8011:773;-1:-1:-1;8011:773:101:o;8789:241::-;8845:6;8898:2;8886:9;8877:7;8873:23;8869:32;8866:52;;;8914:1;8911;8904:12;8866:52;8953:9;8940:23;8972:28;8994:5;8972:28;:::i;9035:1238::-;9441:3;9436;9432:13;9424:6;9420:26;9409:9;9402:45;9483:3;9478:2;9467:9;9463:18;9456:31;9383:4;9510:46;9551:3;9540:9;9536:19;9528:6;9510:46;:::i;:::-;9604:9;9596:6;9592:22;9587:2;9576:9;9572:18;9565:50;9638:33;9664:6;9656;9638:33;:::i;:::-;9702:2;9687:18;;9680:34;;;-1:-1:-1;;;;;9751:32:101;;9745:3;9730:19;;9723:61;9771:3;9800:19;;9793:35;;;9865:22;;;9859:3;9844:19;;9837:51;9937:13;;9959:22;;;10009:2;10035:15;;;;-1:-1:-1;9997:15:101;;;;-1:-1:-1;10078:169:101;10092:6;10089:1;10086:13;10078:169;;;10153:13;;10141:26;;10196:2;10222:15;;;;10187:12;;;;10114:1;10107:9;10078:169;;;-1:-1:-1;10264:3:101;;9035:1238;-1:-1:-1;;;;;;;;;;;9035:1238:101:o;10552:367::-;10620:6;10628;10681:2;10669:9;10660:7;10656:23;10652:32;10649:52;;;10697:1;10694;10687:12;10649:52;10742:23;;;-1:-1:-1;10841:2:101;10826:18;;10813:32;10854:33;10813:32;10854:33;:::i;11154:226::-;11213:6;11266:2;11254:9;11245:7;11241:23;11237:32;11234:52;;;11282:1;11279;11272:12;11234:52;-1:-1:-1;11327:23:101;;11154:226;-1:-1:-1;11154:226:101:o;11385:586::-;11470:6;11478;11486;11494;11547:3;11535:9;11526:7;11522:23;11518:33;11515:53;;;11564:1;11561;11554:12;11515:53;-1:-1:-1;;11609:23:101;;;11729:2;11714:18;;11701:32;;-1:-1:-1;11832:2:101;11817:18;;11804:32;;11935:2;11920:18;11907:32;;-1:-1:-1;11385:586:101;-1:-1:-1;11385:586:101:o;12201:391::-;12284:6;12292;12345:2;12333:9;12324:7;12320:23;12316:32;12313:52;;;12361:1;12358;12351:12;12313:52;12400:9;12387:23;12439:1;12432:5;12429:12;12419:40;;12455:1;12452;12445:12;13074:114;13158:4;13151:5;13147:16;13140:5;13137:27;13127:55;;13178:1;13175;13168:12;13193:1009;13304:6;13312;13320;13328;13336;13344;13352;13405:3;13393:9;13384:7;13380:23;13376:33;13373:53;;;13422:1;13419;13412:12;13373:53;13461:9;13448:23;13480:31;13505:5;13480:31;:::i;:::-;13530:5;-1:-1:-1;13587:2:101;13572:18;;13559:32;13600:33;13559:32;13600:33;:::i;:::-;13652:7;-1:-1:-1;13732:2:101;13717:18;;13704:32;;-1:-1:-1;13835:2:101;13820:18;;13807:32;;-1:-1:-1;13917:3:101;13902:19;;13889:33;13931:31;13889:33;13931:31;:::i;:::-;13193:1009;;;;-1:-1:-1;13193:1009:101;;;;13981:7;14061:3;14046:19;;14033:33;;-1:-1:-1;14165:3:101;14150:19;;;14137:33;;13193:1009;-1:-1:-1;;13193:1009:101:o;14207:388::-;14275:6;14283;14336:2;14324:9;14315:7;14311:23;14307:32;14304:52;;;14352:1;14349;14342:12;14304:52;14391:9;14378:23;14410:31;14435:5;14410:31;:::i;:::-;14460:5;-1:-1:-1;14517:2:101;14502:18;;14489:32;14530:33;14489:32;14530:33;:::i;14831:127::-;14892:10;14887:3;14883:20;14880:1;14873:31;14923:4;14920:1;14913:15;14947:4;14944:1;14937:15;14963:128;15030:9;;;15051:11;;;15048:37;;;15065:18;;:::i;15096:380::-;15175:1;15171:12;;;;15218;;;15239:61;;15293:4;15285:6;15281:17;15271:27;;15239:61;15346:2;15338:6;15335:14;15315:18;15312:38;15309:161;;15392:10;15387:3;15383:20;15380:1;15373:31;15427:4;15424:1;15417:15;15455:4;15452:1;15445:15;15309:161;;15096:380;;;:::o;15481:251::-;15551:6;15604:2;15592:9;15583:7;15579:23;15575:32;15572:52;;;15620:1;15617;15610:12;15572:52;15652:9;15646:16;15671:31;15696:5;15671:31;:::i;15737:184::-;15807:6;15860:2;15848:9;15839:7;15835:23;15831:32;15828:52;;;15876:1;15873;15866:12;15828:52;-1:-1:-1;15899:16:101;;15737:184;-1:-1:-1;15737:184:101:o;16302:200::-;16368:9;;;16341:4;16396:9;;16424:10;;16436:12;;;16420:29;16459:12;;;16451:21;;16417:56;16414:82;;;16476:18;;:::i;16507:387::-;-1:-1:-1;;;;;16743:32:101;;;16725:51;;16812:32;;;;16807:2;16792:18;;16785:60;16876:2;16861:18;;16854:34;;;;16713:2;16698:18;;16507:387::o;16899:282::-;16968:6;17021:2;17009:9;17000:7;16996:23;16992:32;16989:52;;;17037:1;17034;17027:12;16989:52;17069:9;17063:16;17119:12;17112:5;17108:24;17101:5;17098:35;17088:63;;17147:1;17144;17137:12;17411:245;17478:6;17531:2;17519:9;17510:7;17506:23;17502:32;17499:52;;;17547:1;17544;17537:12;17499:52;17579:9;17573:16;17598:28;17620:5;17598:28;:::i;18709:247::-;18777:6;18830:2;18818:9;18809:7;18805:23;18801:32;18798:52;;;18846:1;18843;18836:12;18798:52;18878:9;18872:16;18897:29;18920:5;18897:29;:::i;20375:125::-;20440:9;;;20461:10;;;20458:36;;;20474:18;;:::i;20784:127::-;20845:10;20840:3;20836:20;20833:1;20826:31;20876:4;20873:1;20866:15;20900:4;20897:1;20890:15;20916:237;20997:1;20990:5;20987:12;20977:143;;21042:10;21037:3;21033:20;21030:1;21023:31;21077:4;21074:1;21067:15;21105:4;21102:1;21095:15;20977:143;21129:18;;20916:237::o;21158:209::-;21305:2;21290:18;;21317:44;21294:9;21343:6;21317:44;:::i;21372:280::-;21547:2;21532:18;;21559:44;21536:9;21585:6;21559:44;:::i;:::-;21639:6;21634:2;21623:9;21619:18;21612:34;21372:280;;;;;:::o;21657:136::-;21692:3;-1:-1:-1;;;21713:22:101;;21710:48;;21738:18;;:::i;:::-;-1:-1:-1;21778:1:101;21774:13;;21657:136::o;23034:127::-;23095:10;23090:3;23086:20;23083:1;23076:31;23126:4;23123:1;23116:15;23150:4;23147:1;23140:15;23516:170;23613:10;23606:18;;;23586;;;23582:43;;23637:20;;23634:46;;;23660:18;;:::i;23691:168::-;23764:9;;;23795;;23812:15;;;23806:22;;23792:37;23782:71;;23833:18;;:::i;23864:217::-;23904:1;23930;23920:132;;23974:10;23969:3;23965:20;23962:1;23955:31;24009:4;24006:1;23999:15;24037:4;24034:1;24027:15;23920:132;-1:-1:-1;24066:9:101;;23864:217::o;24597:216::-;24661:9;;;24689:11;;;24636:3;24719:9;;24747:10;;24743:19;;24772:10;;24764:19;;24740:44;24737:70;;;24787:18;;:::i;:::-;24737:70;;24597:216;;;;:::o;26480:518::-;26582:2;26577:3;26574:11;26571:421;;;26618:5;26615:1;26608:16;26662:4;26659:1;26649:18;26732:2;26720:10;26716:19;26713:1;26709:27;26703:4;26699:38;26768:4;26756:10;26753:20;26750:47;;;-1:-1:-1;26791:4:101;26750:47;26846:2;26841:3;26837:12;26834:1;26830:20;26824:4;26820:31;26810:41;;26901:81;26919:2;26912:5;26909:13;26901:81;;;26978:1;26964:16;;26945:1;26934:13;26901:81;;27174:1299;27300:3;27294:10;27327:18;27319:6;27316:30;27313:56;;;27349:18;;:::i;:::-;27378:97;27468:6;27428:38;27460:4;27454:11;27428:38;:::i;:::-;27422:4;27378:97;:::i;:::-;27524:4;27555:2;27544:14;;27572:1;27567:649;;;;28260:1;28277:6;28274:89;;;-1:-1:-1;28329:19:101;;;28323:26;28274:89;-1:-1:-1;;27131:1:101;27127:11;;;27123:24;27119:29;27109:40;27155:1;27151:11;;;27106:57;28376:81;;27537:930;;27567:649;26427:1;26420:14;;;26464:4;26451:18;;-1:-1:-1;;27603:20:101;;;27721:222;27735:7;27732:1;27729:14;27721:222;;;27817:19;;;27811:26;27796:42;;27924:4;27909:20;;;;27877:1;27865:14;;;;27751:12;27721:222;;;27725:3;27971:6;27962:7;27959:19;27956:201;;;28032:19;;;28026:26;-1:-1:-1;;28115:1:101;28111:14;;;28127:3;28107:24;28103:37;28099:42;28084:58;28069:74;;27956:201;-1:-1:-1;;;;28203:1:101;28187:14;;;28183:22;28170:36;;-1:-1:-1;27174:1299:101:o"},"methodIdentifiers":{"DOMAIN_SEPARATOR()":"3644e515","UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","addBorrower(address)":"e3a8e29c","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","cooler()":"cf6a9a94","currency()":"e5a6b10f","decimals()":"313ce567","deposit(uint256,address,address)":"2e2d2984","depositIntoYieldVault(uint256)":"ac860f74","eip712Domain()":"84b0196e","fundsAvailable()":"4fe0bd1e","fundsAvailableToLock()":"a08f2203","getCurrentScale(bool)":"79d989fb","getLoan(address)":"33481fc9","getScaledUserBalanceAndSupply(address)":"0afbcdc9","initialize(string,string,uint256,uint256)":"6fe0e395","internalLoan(uint256,address)":"c3df9dac","internalLoanInterestRate()":"cda4bcc2","investedInYV()":"7d919a97","liquidityRequirement()":"ba4e8df5","lockScr(uint256,uint256,uint256)":"4ffcda8c","maxNegativeAdjustment()":"16db000f","maxUtilizationRate()":"dfcb48bd","minUtilizationRate()":"ee01a183","name()":"06fdde03","nonces(address)":"7ecebe00","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","policyPool()":"4d15eb03","proxiableUUID()":"52d1902d","recordEarnings()":"4eb978a4","redistribute(uint256)":"a0ce552d","removeBorrower(address)":"76c7fc55","repayLoan(uint256,address)":"918344d3","scaledBalanceOf(address)":"1da24f3e","scaledTotalSupply()":"b1bf962d","scr()":"6c6f4542","scrInterestRate()":"9d90724d","setCooler(address)":"d17e6c93","setParam(uint8,uint256)":"c1cca2b3","setWhitelist(address)":"854cff2f","setYieldVault(address,bool)":"194448e5","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","tokenInterestRate()":"159ec2df","totalSupply()":"18160ddd","totalWithdrawable()":"0600a865","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","unlockScr(uint256,uint256,uint256,int256)":"a227dc41","unlockScrWithRefund(uint256,uint256,uint256,int256,address,uint256)":"3ad2820b","upgradeToAndCall(address,bytes)":"4f1ef286","utilizationRate()":"6c321c8a","whitelist()":"93e59dc1","withdraw(uint256,address,address,address)":"23e103a8","withdrawFromYieldVault(uint256)":"d336078c","yieldVault()":"a7f8a5e2"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"policyPool_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"BorrowerAlreadyAdded\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"DepositNotWhitelisted\",\"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\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"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\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"ERC2612ExpiredSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC2612InvalidSigner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"requested\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxWithdraw\",\"type\":\"uint256\"}],\"name\":\"ExceedsMaxWithdraw\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"InvalidBorrower\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"contract ICooler\",\"name\":\"cooler\",\"type\":\"address\"}],\"name\":\"InvalidCooler\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"enum IEToken.Parameter\",\"name\":\"parameter\",\"type\":\"uint8\"}],\"name\":\"InvalidParameter\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"contract ILPWhitelist\",\"name\":\"whitelist\",\"type\":\"address\"}],\"name\":\"InvalidWhitelist\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidYieldVault\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"required\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"available\",\"type\":\"uint256\"}],\"name\":\"NotEnoughCash\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"required\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"available\",\"type\":\"uint256\"}],\"name\":\"NotEnoughScrFunds\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"OnlyBorrower\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OnlyPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ReserveInvalidReceiver\",\"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\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"rejectedScale\",\"type\":\"uint256\"}],\"name\":\"ScaleTooSmall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from_\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to_\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"TransferNotWhitelisted\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UpgradeCannotChangePolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"actualUtilization\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minUtilization\",\"type\":\"uint256\"}],\"name\":\"UtilizationRateTooLow\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"WithdrawalNotWhitelisted\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"contract ICooler\",\"name\":\"cooler\",\"type\":\"address\"}],\"name\":\"WithdrawalsRequireCooldown\",\"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\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"CoCRefunded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"contract ICooler\",\"name\":\"oldCooler\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"contract ICooler\",\"name\":\"newCooler\",\"type\":\"address\"}],\"name\":\"CoolerChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"distributedProfit\",\"type\":\"uint256\"}],\"name\":\"ETokensRedistributed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"earnings\",\"type\":\"int256\"}],\"name\":\"EarningsRecorded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"ErrorIgnoredDeinvestingVault\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"InternalBorrowerAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"defaultedDebt\",\"type\":\"uint256\"}],\"name\":\"InternalBorrowerRemoved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountAsked\",\"type\":\"uint256\"}],\"name\":\"InternalLoan\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"InternalLoanRepaid\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"enum IEToken.Parameter\",\"name\":\"param\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newValue\",\"type\":\"uint256\"}],\"name\":\"ParameterChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"interestRate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SCRLocked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"interestRate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"adjustment\",\"type\":\"int256\"}],\"name\":\"SCRUnlocked\",\"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\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"contract ILPWhitelist\",\"name\":\"oldWhitelist\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"contract ILPWhitelist\",\"name\":\"newWhitelist\",\"type\":\"address\"}],\"name\":\"WhitelistChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"newVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"forced\",\"type\":\"bool\"}],\"name\":\"YieldVaultChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"addBorrower\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\":[],\"name\":\"cooler\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"depositIntoYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\":[],\"name\":\"fundsAvailable\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"fundsAvailableToLock\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"updated\",\"type\":\"bool\"}],\"name\":\"getCurrentScale\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"getLoan\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getScaledUserBalanceAndSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"maxUtilizationRate_\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"internalLoanInterestRate_\",\"type\":\"uint256\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"internalLoan\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"internalLoanInterestRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"investedInYV\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"liquidityRequirement\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"scrAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"policyInterestRate\",\"type\":\"uint256\"}],\"name\":\"lockScr\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"maxNegativeAdjustment\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"maxUtilizationRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"minUtilizationRate\",\"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\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"recordEarnings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redistribute\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"removeBorrower\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"onBehalfOf\",\"type\":\"address\"}],\"name\":\"repayLoan\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"scaledBalanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"scaledTotalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"scr\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"scrInterestRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ICooler\",\"name\":\"newCooler\",\"type\":\"address\"}],\"name\":\"setCooler\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"enum IEToken.Parameter\",\"name\":\"param\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"newValue\",\"type\":\"uint256\"}],\"name\":\"setParam\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ILPWhitelist\",\"name\":\"lpWhitelist_\",\"type\":\"address\"}],\"name\":\"setWhitelist\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"newYieldVault\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"force\",\"type\":\"bool\"}],\"name\":\"setYieldVault\",\"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\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"tokenInterestRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalWithdrawable\",\"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\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"scrAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"policyInterestRate\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"adjustment\",\"type\":\"int256\"}],\"name\":\"unlockScr\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"scrAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"policyInterestRate\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"adjustment\",\"type\":\"int256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"refundAmount\",\"type\":\"uint256\"}],\"name\":\"unlockScrWithRefund\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"utilizationRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"whitelist\",\"outputs\":[{\"internalType\":\"contract ILPWhitelist\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFromYieldVault\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"deinvested\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"yieldVault\",\"outputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"Implementation of the interest/earnings bearing token for the Ensuro protocol.      `_tsScaled.scale` scales the balances stored in _balances. _tsScaled (totalSupply scaled) grows      continuoulsly at tokenInterestRate().      Every operation that changes the utilization rate (_scr.scr/totalSupply) or the _scr.interestRate, updates      first the _tsScaled.scale accumulating the interest accrued since _tsScaled.lastUpdate.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"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.\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"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.\"}}],\"ERC2612ExpiredSignature(uint256)\":[{\"details\":\"Permit deadline has expired.\"}],\"ERC2612InvalidSigner(address,address)\":[{\"details\":\"Mismatched signature.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotEnoughCash(uint256,uint256)\":[{\"params\":{\"available\":\"The currently available liquid balance\",\"required\":\"The requested amount of liquid funds\"}}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"ReserveInvalidReceiver(address)\":[{\"params\":{\"receiver\":\"The receiver that was provided (cannot be the zero address)\"}}],\"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.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"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.\"},\"CoCRefunded(uint256,address,uint256)\":{\"details\":\"This happends when a policy is cancelled with refund. It doesn't affect the totalSupply since it should be not yet accrued money.\",\"params\":{\"amount\":\"The amount of the refund\",\"policyId\":\"The owner of the burned tokens (the cooler)\",\"receiver\":\"The user that received the refund\"}},\"CoolerChanged(address,address)\":{\"details\":\"The event reports the old and new cooler\"},\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"ETokensRedistributed(address,uint256)\":{\"details\":\"This typically happens when a cooldown is executed and there were profits during the period\",\"params\":{\"distributedProfit\":\"The amount that is distributed between all the LPs\",\"owner\":\"The owner of the burned tokens (the cooler)\"}},\"EarningsRecorded(int256)\":{\"params\":{\"earnings\":\"The amount of earnings generated since last record. It's positive in the case of earnings or negative when there are losses.\"}},\"ErrorIgnoredDeinvestingVault(address,uint256)\":{\"params\":{\"oldVault\":\"The vault that failed to redeem\",\"shares\":\"The number of shares attempted to redeem\"}},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"InternalBorrowerRemoved(address,uint256)\":{\"params\":{\"borrower\":\"The address of the borrower, a {PremiumsAccount}\",\"defaultedDebt\":\"The unpaid amount left by the borrower\"}},\"InternalLoan(address,uint256,uint256)\":{\"details\":\"These funds are used to cover the losses and may be later repaid if the performance of the product improves and accumulates surplus.\",\"params\":{\"amountAsked\":\"The amount originally asked\",\"borrower\":\"The address of the borrower, a {PremiumsAccount}\",\"value\":\"The amount of the loan\"}},\"InternalLoanRepaid(address,uint256)\":{\"params\":{\"borrower\":\"The address of the borrower, a {PremiumsAccount}\",\"value\":\"The amount of the repayment\"}},\"ParameterChanged(uint8,uint256)\":{\"params\":{\"newValue\":\"The new value set\",\"param\":\"Type of parameter change\"}},\"SCRLocked(uint256,uint256,uint256)\":{\"params\":{\"interestRate\":\"The annualized interestRate paid for the capital (wad)\",\"policyId\":\"The id of the policy that locks the capital\",\"value\":\"The amount locked\"}},\"SCRUnlocked(uint256,uint256,uint256,int256)\":{\"params\":{\"adjustment\":\"Discrete amount of adjustment done to the totalSupply to reflect when more or less                   than the received cost of capital has been accrued since the SCR was locked.\",\"interestRate\":\"The annualized interestRate that was paid for the capital (wad)\",\"policyId\":\"The id of the policy that unlocks the capital (should be the that locked before with SCRLocked)\",\"value\":\"The amount unlocked\"}},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"},\"WhitelistChanged(address,address)\":{\"details\":\"The event reports the old and new whitelist\"},\"YieldVaultChanged(address,address,bool)\":{\"details\":\"When replacing an existing vault, the reserve attempts to redeem the full position (unless `force` is used).\",\"params\":{\"forced\":\"True if the switch ignored a partial/failed deinvestment and proceeded anyway\",\"newVault\":\"The new yield vault (can be `address(0)`)\",\"oldVault\":\"The previous yield vault (can be `address(0)`)\"}}},\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"addBorrower(address)\":{\"details\":\"Borrowers (typically PremiumsAccounts) can: - lock/unlock SCR via {lockScr}/{unlockScr}/{unlockScrWithRefund} - take internal loans via {internalLoan}\",\"params\":{\"borrower\":\"The address of the _borrower_, a PremiumsAccount that has this eToken as senior or junior eToken.\"}},\"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\":\"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\":\"Returns the value of tokens owned by `account`.\"},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"decimals()\":{\"details\":\"Returns the decimals places of the token.\"},\"deposit(uint256,address,address)\":{\"details\":\"Called from the PolicyPool, assumes the amount has already been transferred. `amount` of eToken are minted and given to the provider in exchange of the liquidity provided.\",\"params\":{\"amount\":\"The amount deposited.\",\"caller\":\"The user that initiates the deposit\",\"receiver\":\"The user that will receive the minted eTokens\"}},\"depositIntoYieldVault(uint256)\":{\"custom:pre\":\"_balance() >= amount\",\"params\":{\"amount\":\"Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`\"}},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"fundsAvailable()\":{\"details\":\"Returns the amount of totalSupply that isn't utilized as SCR.\"},\"fundsAvailableToLock()\":{\"details\":\"Returns the funds that can be treated as available to lock as SCR, after applying the      max utilization cap and (if a Cooler is configured) subtracting pending withdrawals.\"},\"getCurrentScale(bool)\":{\"params\":{\"updated\":\"When it's false, it returns the last scale stored. When it's true, it projects that scale applying                the accrued returns of the scr\"}},\"getScaledUserBalanceAndSupply(address)\":{\"details\":\"Returns the scaled balance of the user and the scaled total supply.\",\"params\":{\"user\":\"The address of the user\"},\"returns\":{\"_0\":\"The scaled balance of the user\",\"_1\":\"The scaled balance and the scaled total supply*\"}},\"initialize(string,string,uint256,uint256)\":{\"details\":\"Initializes the eToken\",\"params\":{\"internalLoanInterestRate_\":\"Annualized interest rate charged on internal loans, in WAD (1e18)\",\"maxUtilizationRate_\":\"Max utilization rate (scr / totalSupply), in WAD (1e18)\",\"name_\":\"Name of the eToken\",\"symbol_\":\"Symbol of the eToken\"}},\"internalLoan(uint256,address)\":{\"details\":\"This reduces the `totalSupply()` of the eToken, and stores a debt that will be repaid (hopefully) with `repayLoan`.\",\"params\":{\"amount\":\"The amount required\",\"receiver\":\"The received of the funds lent. This is usually the policyholder if the loan is used for a payout.\"},\"returns\":{\"_0\":\"Returns the amount that wasn't able to fulfil. `amount - lent`\"}},\"internalLoanInterestRate()\":{\"details\":\"Returns the annualized interest rate charged to borrowers (see PremiumsAccount) when they take funds\"},\"liquidityRequirement()\":{\"details\":\"Returns the factor applied to SCR when computing the non-withdrawable. Typically 1.0 (in wad).\"},\"lockScr(uint256,uint256,uint256)\":{\"params\":{\"policyId\":\"The id of the policy that locks the capital\",\"policyInterestRate\":\"The annualized interest rate (wad) to be paid for the `scrAmount`\",\"scrAmount\":\"The amount to lock\"}},\"maxNegativeAdjustment()\":{\"details\":\"Returns the maximum negative adjustment (discrete loss) the eToken can accept without breaking consistency.      The limit comes from limits in the internal scale that takes scaledTotalSupply() to totalSupply()\"},\"maxUtilizationRate()\":{\"details\":\"Returns the maximum utilization rate (UR) that is acceptable when locking funds.      The UR can be higher than this value as a consequence of withdrawals or other operations,      but not as a consequence of a lockScr call.\"},\"minUtilizationRate()\":{\"details\":\"Returns the minimum utilization rate (UR) that is acceptable after deposits.      The UR can be lower than this value as a consequence of SCR unlocks or other operations,      but not as a consequence of a deposit call.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"nonces(address)\":{\"details\":\"Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also applies here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section]. CAUTION: See Security Considerations above.\"},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"recordEarnings()\":{\"custom:emits\":\"{EarningsRecorded}\",\"details\":\"Computes the value of the assets invested in the yieldVault() and then calls `_yieldEarnings` to      reflect the earnings/losses in the way defined for each reserve.\"},\"redistribute(uint256)\":{\"params\":{\"amount\":\"The amount of eTokens to burn\"}},\"removeBorrower(address)\":{\"params\":{\"borrower\":\"The address of the _borrower_, a PremiumsAccount that has this eToken as senior or junior eToken.\"}},\"repayLoan(uint256,address)\":{\"params\":{\"amount\":\"The amount to repaid, that will be transferred from `msg.sender` balance.\",\"onBehalfOf\":\"The address of the borrower that took the loan. Usually `onBehalfOf == msg.sender` but we keep it open because in some cases with might need someone else pays the debt.\"}},\"scaledBalanceOf(address)\":{\"details\":\"Returns the scaled balance of the user. The scaled balance is the sum of all the updated stored balance divided by the EToken's scale index\",\"params\":{\"user\":\"The user whose balance is calculated\"},\"returns\":{\"_0\":\"The scaled balance of the user*\"}},\"scaledTotalSupply()\":{\"returns\":{\"_0\":\"The total supply in scaled/raw units.\"}},\"setYieldVault(address,bool)\":{\"custom:emits\":\"{YieldVaultChanged}\",\"params\":{\"force\":\"When a previous yield vault exists, before setting the new one, the funds are deinvested. When              `force` is true, an error in the deinvestment of the assets (or some assets not withdrawable)              will be ignored. When `force` is false, it will revert if `oldVault.balanceOf(address(this)) != 0`.\",\"newYieldVault\":\"The address of the new yield vault to assign to the reserve. If is `address(0)` it means                      the reserve will not have a yield vault. If not `address(0)` it MUST be an IERC4626                      where `newYieldVault.asset()` equals `.currency()`\"}},\"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.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"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`.\"},\"unlockScr(uint256,uint256,uint256,int256)\":{\"details\":\"The capital no longer needed as solvency, enabling withdrawal.\",\"params\":{\"adjustment\":\"Discrete amount of adjustment done to the totalSupply to reflect when more or less                   than the received cost of capital has been accrued since the SCR was locked.\",\"policyId\":\"The id of the policy that locked the scr originally\",\"policyInterestRate\":\"The annualized interest rate that was paid for the `scrAmount`, must be the same that                           was sent in `lockScr` call.\",\"scrAmount\":\"The amount to unlock\"}},\"unlockScrWithRefund(uint256,uint256,uint256,int256,address,uint256)\":{\"details\":\"The capital no longer needed as solvency . It refunds part of the Coc received that wasn't accrued (or if it was already accrued, it is adjusted). The refund doesn't affect the totalSupply. It just changes the reserves.\",\"params\":{\"policyId\":\"The id of the policy that locked the scr originally\",\"policyInterestRate\":\"The annualized interest rate that was paid for the `scrAmount`, must be the same that was sent in `lockScr` call.\",\"receiver\":\"The address of the receiver of the refund\",\"refundAmount\":\"The amount to refund\",\"scrAmount\":\"The amount to unlock\"}},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"},\"utilizationRate()\":{\"details\":\"Returns the percentage of the total supply that is used as SCR (solvency capital backing risks)\"},\"withdraw(uint256,address,address,address)\":{\"details\":\"`withdrawn` eTokens are be burned and the user receives the same amount in `currency()`. If `amount == type(uint256).max`, it withdraws up to `maxWithdraw` (i.e., as much as possible). Otherwise, it reverts if `amount > maxWithdraw`.\",\"params\":{\"amount\":\"The amount to withdraw. If `amount == type(uint256).max`, withdraws up to `maxWithdraw`.\",\"caller\":\"The user that initiates the withdrawal\",\"owner\":\"The owner of the eTokens (either caller==owner or caller has allowance)\",\"receiver\":\"The address that will receive the resulting `currency()`\"}},\"withdrawFromYieldVault(uint256)\":{\"custom:pre\":\"yieldVault() != address(0)yieldVault().maxWithdraw(address(this)) >= amount             (this condition is not checked here; exceeding it is expected to revert in the vault during _deinvest()).\",\"params\":{\"amount\":\"Amount to withdraw from the `yieldVault()`. If equal type(uint256).max, deinvests maxWithdraw()\"},\"returns\":{\"deinvested\":\"The amount that was deinvested and added as liquid funds to the reserve\"}}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"title\":\"Ensuro ERC20 EToken - interest-bearing token\",\"version\":1},\"userdoc\":{\"errors\":{\"BorrowerAlreadyAdded(address)\":[{\"notice\":\"Thrown when trying to add a borrower twice\"}],\"DepositNotWhitelisted(address,uint256)\":[{\"notice\":\"Thrown when a deposit is rejected by the Whitelist\"}],\"ExceedsMaxWithdraw(uint256,uint256)\":[{\"notice\":\"Thrown when trying to withdraw an amount that exceeds either the user funds or totalWithdrawable()\"}],\"InvalidBorrower(address)\":[{\"notice\":\"Thrown when trying to repayLoan or query a loan of a non-borrower\"}],\"InvalidCooler(address)\":[{\"notice\":\"Thrown when trying to change the cooler to a contract that doesn't belong to the same policyPool()\"}],\"InvalidParameter(uint8)\":[{\"notice\":\"Thrown on setParam when the given value doesn't match the specific validations\"}],\"InvalidWhitelist(address)\":[{\"notice\":\"Thrown when trying to change the whitelist to a contract that doesn't belong to the same policyPool()\"}],\"InvalidYieldVault()\":[{\"notice\":\"Thrown when the yield vault is unset or invalid for the configured currency.\"}],\"NotEnoughCash(uint256,uint256)\":[{\"notice\":\"Thrown when trying to invest more cash than currently liquid in the reserve.\"}],\"NotEnoughScrFunds(uint256,uint256)\":[{\"notice\":\"Thrown when trying to lock more funds than the ones that are available\"}],\"OnlyBorrower(address)\":[{\"notice\":\"Thrown when called by a non-borrower on borrower operations (internalLoan and lock/unlock scr)\"}],\"ReserveInvalidReceiver(address)\":[{\"notice\":\"Thrown when attempting to transfer to the zero address.\"}],\"TransferNotWhitelisted(address,address,uint256)\":[{\"notice\":\"Thrown when a transfer is rejected by the Whitelist\"}],\"UtilizationRateTooLow(uint256,uint256)\":[{\"notice\":\"Thrown when a deposit leaves the utilizationRate under the minUtilization\"}],\"WithdrawalNotWhitelisted(address,uint256)\":[{\"notice\":\"Thrown when a withdrawal is rejected by the Whitelist\"}],\"WithdrawalsRequireCooldown(address)\":[{\"notice\":\"Thrown when trying to execute an instant withdraw when the eToken has non-zero cooldownPeriod\"}]},\"events\":{\"CoCRefunded(uint256,address,uint256)\":{\"notice\":\"Event emitted when part of a previously received CoC is refunded\"},\"CoolerChanged(address,address)\":{\"notice\":\"Event emitted when the cooler is changed\"},\"ETokensRedistributed(address,uint256)\":{\"notice\":\"Event emitted when tokens are burn, redistributing the value to the rest of LPs\"},\"EarningsRecorded(int256)\":{\"notice\":\"Event emitted when investment yields are accounted in the reserve\"},\"ErrorIgnoredDeinvestingVault(address,uint256)\":{\"notice\":\"Emitted when a forced deinvestment ignored a redeem failure.\"},\"InternalBorrowerAdded(address)\":{\"notice\":\"Event emitted when a new borrower (PremiumsAccount) is added\"},\"InternalBorrowerRemoved(address,uint256)\":{\"notice\":\"Event emitted when a borrower is removed (it can't lock funds or take loans anymore)\"},\"InternalLoan(address,uint256,uint256)\":{\"notice\":\"Event emitted when a PremiumsAccount takes funds (loan) from the eToken\"},\"InternalLoanRepaid(address,uint256)\":{\"notice\":\"Event emitted when a PremiumsAccount repays a loan previously taken\"},\"ParameterChanged(uint8,uint256)\":{\"notice\":\"Event emitted when a parameter was changed\"},\"SCRLocked(uint256,uint256,uint256)\":{\"notice\":\"Event emitted when part of the funds of the eToken are locked as solvency capital.\"},\"SCRUnlocked(uint256,uint256,uint256,int256)\":{\"notice\":\"Event emitted when the locked funds are unlocked and no longer used as solvency capital.\"},\"WhitelistChanged(address,address)\":{\"notice\":\"Event emitted when the whitelist is changed\"},\"YieldVaultChanged(address,address,bool)\":{\"notice\":\"Emitted when the yield vault is changed.\"}},\"kind\":\"user\",\"methods\":{\"addBorrower(address)\":{\"notice\":\"Adds an authorized _borrower_ to the eToken. This _borrower_ will be allowed to lock/unlock funds and to take loans.\"},\"cooler()\":{\"notice\":\"Returns the cooler contract plugged into the eToken\"},\"deposit(uint256,address,address)\":{\"notice\":\"Registers a deposit of liquidity in the pool.\"},\"depositIntoYieldVault(uint256)\":{\"notice\":\"Moves money that's liquid in the contract to the yield vault, to generate yields\"},\"getCurrentScale(bool)\":{\"notice\":\"Returns the number that scales the shares to reflect the earnings or losses (rebasing token)\"},\"getLoan(address)\":{\"notice\":\"Returns the updated debt (principal + interest) of the `borrower`.\"},\"internalLoan(uint256,address)\":{\"notice\":\"Lends `amount` to the borrower (msg.sender), transferring the money to `receiver`.\"},\"investedInYV()\":{\"notice\":\"Returns the amount of funds that were invested in the yieldVault, up to the last recorded earnings / losses\"},\"lockScr(uint256,uint256,uint256)\":{\"notice\":\"Locks part of the liquidity of the EToken as solvency capital.\"},\"policyPool()\":{\"notice\":\"Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\"},\"redistribute(uint256)\":{\"notice\":\"Redistributes a given amount of eTokens of the caller between the remaining LPs\"},\"removeBorrower(address)\":{\"notice\":\"Removes an authorized _borrower_ to the eToken. The _borrower_ can't no longer lock funds or take loans.\"},\"repayLoan(uint256,address)\":{\"notice\":\"Repays a loan taken with `internalLoan`.\"},\"scaledTotalSupply()\":{\"notice\":\"Returns the total supply in scaled/raw units (without applying the current scale index). Equals the sum of {scaledBalanceOf} across all users.\"},\"scr()\":{\"notice\":\"Returns the amount of capital that's locked as solvency capital for active policies.\"},\"scrInterestRate()\":{\"notice\":\"The weighted average annualized interest rate paid by the currently locked `scr()`.\"},\"setYieldVault(address,bool)\":{\"notice\":\"Sets the new yield vault for this reserve. If the reserve had previously a yield vault, it will deinvest all the funds, making all of the liquid in the reserve balance.\"},\"tokenInterestRate()\":{\"notice\":\"The annualized interest rate at which the `totalSupply()` grows\"},\"totalWithdrawable()\":{\"notice\":\"Returns the total amount that can be withdrawn\"},\"unlockScr(uint256,uint256,uint256,int256)\":{\"notice\":\"Unlocks solvency capital previously locked with `lockScr`.\"},\"unlockScrWithRefund(uint256,uint256,uint256,int256,address,uint256)\":{\"notice\":\"Unlocks solvency capital previously locked with `lockScr`, doing a refund of the CoC previously received\"},\"withdraw(uint256,address,address,address)\":{\"notice\":\"Withdraws an amount from an eToken.\"},\"withdrawFromYieldVault(uint256)\":{\"notice\":\"Deinvest from the vault a given amount.\"},\"yieldVault()\":{\"notice\":\"Returns the address of the yield vault, where the part of the funds are invested to generate additional      yields. Can be `address(0)` if no yieldVault has been set.\"}},\"notice\":\"These are the liquidity pools where users provide funds to cover insurance products\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/EToken.sol\":\"EToken\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\":{\"keccak256\":\"0xd518def45c722a6e803e1e26e625db25e01497f672ca566cca585d234ec903b0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6e7de3fccd96783244790cde282435ce0fd3a44ab4ccb10f17005c743202882f\",\"dweb:/ipfs/QmYSepstTqs5UPJvjeJXkWU5R659yReqrSgSGGh65hkbdK\"]},\"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol\":{\"keccak256\":\"0x2abba89aa289a6c0e38404a5b2e0020ca133e1ae0c790bdfc4cc99a1e2af93ba\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://babdfa68f728f6063f378692ac75dc086d3a7d7a4c04f53779c4365d0b2d1124\",\"dweb:/ipfs/QmNZe3zu6FvpN9xBMadQsxip11VAUyqJWHTbrBGCqes9SC\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts-upgradeable/utils/NoncesUpgradeable.sol\":{\"keccak256\":\"0xe82a34ce4440f4c0a144fcd5c837c05bcd6bfbd947ba184f3e9904c14ed280ad\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f05905d8f1f2941589c625b74f2ca7fb3f2a8d8b9e55c0b31072404720a1cb95\",\"dweb:/ipfs/QmVCzDUqSaUYGLSqwkeEQHBMTrJQtUMjEsBBEsGYBdyazE\"]},\"@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol\":{\"keccak256\":\"0x5c9adc83ba1c3bed191e5c3d462737f02b48d8a6e4aecbad9e6df6ac257fe6c4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5d2cfe337601df0454355fc8e949db2840c7a8a305dfeb50c9c0041ea39d42b8\",\"dweb:/ipfs/QmeXh9iqjQ6t5t4NqUjmv8vaDV1jDrSwXQVkVdyDjk2ZUm\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0xfb223a85dd0b2175cfbbaa325a744e2cd74ecd17c3df2b77b0722f991d2725ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://84bf1dea0589ec49c8d15d559cc6d86ee493048a89b2d4adb60fbe705a3d89ae\",\"dweb:/ipfs/Qmd56n556d529wk2pRMhYhm5nhMDhviwereodDikjs68w1\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x53befc41288eaa87edcd3a7be7e8475a32e44c6a29f9bf52fae789781301d9ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a1d7fab53c4ceaf42391b83d9b36d7e9cc524a8da125cffdcd32c56560f9d1c9\",\"dweb:/ipfs/QmaRZdVhQdqNXofeimibkBG65q9GVcXVZEGpycwwX3znC6\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x360cf86214a764694dae1522a38200b1737fe90e46dcf56a0f89de143071cc20\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e393290a46ca6d1fa1addb40709d26e1d250638ab6acdd103b5af21768ebc7b\",\"dweb:/ipfs/QmPwT3tXwQ9NbGtZ99XRq7sr8LCQP8XaCrzw49JdXGn7us\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x6abeed5940e1da7bb329e458db9a1c5c4ea6f86d651b952af99c6bddcd6bbb94\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fe75e9a6b759c5d7fd82fb59bd4f58c672b36f0a69b84f4789b7c7895d3e61c\",\"dweb:/ipfs/QmX28wsir8w5sS3acfJMNHcBwoPsDpqCu7WDkPnUWLMNiZ\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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\"]},\"contracts/ETKLib.sol\":{\"keccak256\":\"0x1f2c5adf2d5b9fca6f7301665626ae376b5ade24e7045c45dfaacd14017c2bf8\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://74004d07838e749bb55a27225238e977186b7629c3a0d2fb3e129e6e2ec7d912\",\"dweb:/ipfs/QmXyMY8CnZaL9eDMYiYbQLhQpiWp4qrypXF9xgUVyx9mxr\"]},\"contracts/EToken.sol\":{\"keccak256\":\"0x8ec84723f5cc09cc50bc0e113a2bab2c4971be1e08c8a3416d80e8b60662aa22\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://89c0eb5ffa13dc196ff4a6afd61055c0bbb05d40933a3744e130a18c0f4af755\",\"dweb:/ipfs/QmYLbGyETS1D6wdTf6JbxkdcK5kmKfz761YKZnYbihS7vw\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/PolicyPoolComponent.sol\":{\"keccak256\":\"0x59be0e577af81ab215ac850da84692d6ae7a465917701260f390bc92240c4707\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://c55648f183f32e74d6d83cfc2a8eb606c75a6c3bc598e8ec2a38f9fb3b676f8c\",\"dweb:/ipfs/QmdDFuZz6cn9ywUuxv4bTY3STMWQMWTAzitbocywFMoByb\"]},\"contracts/Reserve.sol\":{\"keccak256\":\"0x2c4bd6d6c13fd006af456f228df1242eb857f5ec27fe09175579ded50dc28392\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b573114bbfb87368b5fbc535b2bf05b4bffb797618054f54e589eb078c6d4a9e\",\"dweb:/ipfs/QmP3gkDPDYhdLVh86nAtndb4CGNTMdM2FNantCKPTjD3TA\"]},\"contracts/interfaces/ICooler.sol\":{\"keccak256\":\"0xd2f546d8a15bbc201e1811a050fce315eb72016c4360bf31066a8041f4159cae\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://3a974feacac260a76883322b18e3f0251aa3430f24bab1b7b4c21853a3498a9a\",\"dweb:/ipfs/QmQFixSYSFiJem2UYPJa2ky2eorFNXBncDZ1yrxPMRK66F\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/ILPWhitelist.sol\":{\"keccak256\":\"0x71555d613cf2e4efa341593f2611adc078e4b3f745a15db0c3cba2717f1312eb\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://474679208452130bd5f1acb2ee3c8585f219a441925af65121fee370882de42a\",\"dweb:/ipfs/QmcPoJQnQWKZteafe1T2sEVQHG1YPX8a731W7hqZZVyyxq\"]},\"contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":25608,"contract":"contracts/EToken.sol:EToken","label":"__gap","offset":0,"slot":"0","type":"t_array(t_uint256)50_storage"},{"astId":27384,"contract":"contracts/EToken.sol:EToken","label":"_invested","offset":0,"slot":"50","type":"t_uint256"},{"astId":28014,"contract":"contracts/EToken.sol:EToken","label":"__gap","offset":0,"slot":"51","type":"t_array(t_uint256)49_storage"},{"astId":19893,"contract":"contracts/EToken.sol:EToken","label":"_tsScaled","offset":0,"slot":"100","type":"t_struct(ScaledAmount)18874_storage"},{"astId":19896,"contract":"contracts/EToken.sol:EToken","label":"_scr","offset":0,"slot":"101","type":"t_struct(Scr)18879_storage"},{"astId":19902,"contract":"contracts/EToken.sol:EToken","label":"_loans","offset":0,"slot":"102","type":"t_mapping(t_address,t_struct(ScaledAmount)18874_storage)"},{"astId":19919,"contract":"contracts/EToken.sol:EToken","label":"_params","offset":0,"slot":"103","type":"t_struct(PackedParams)19915_storage"},{"astId":19923,"contract":"contracts/EToken.sol:EToken","label":"_yieldVault","offset":0,"slot":"104","type":"t_contract(IERC4626)6400"},{"astId":19927,"contract":"contracts/EToken.sol:EToken","label":"_cooler","offset":0,"slot":"105","type":"t_contract(ICooler)28695"},{"astId":21754,"contract":"contracts/EToken.sol:EToken","label":"__gap","offset":0,"slot":"106","type":"t_array(t_uint256)44_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_uint256)44_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[44]","numberOfBytes":"1408"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_contract(ICooler)28695":{"encoding":"inplace","label":"contract ICooler","numberOfBytes":"20"},"t_contract(IERC4626)6400":{"encoding":"inplace","label":"contract IERC4626","numberOfBytes":"20"},"t_contract(ILPWhitelist)28916":{"encoding":"inplace","label":"contract ILPWhitelist","numberOfBytes":"20"},"t_mapping(t_address,t_struct(ScaledAmount)18874_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct ETKLib.ScaledAmount)","numberOfBytes":"32","value":"t_struct(ScaledAmount)18874_storage"},"t_struct(PackedParams)19915_storage":{"encoding":"inplace","label":"struct EToken.PackedParams","members":[{"astId":19906,"contract":"contracts/EToken.sol:EToken","label":"whitelist","offset":0,"slot":"0","type":"t_contract(ILPWhitelist)28916"},{"astId":19908,"contract":"contracts/EToken.sol:EToken","label":"liquidityRequirement","offset":20,"slot":"0","type":"t_uint16"},{"astId":19910,"contract":"contracts/EToken.sol:EToken","label":"minUtilizationRate","offset":22,"slot":"0","type":"t_uint16"},{"astId":19912,"contract":"contracts/EToken.sol:EToken","label":"maxUtilizationRate","offset":24,"slot":"0","type":"t_uint16"},{"astId":19914,"contract":"contracts/EToken.sol:EToken","label":"internalLoanInterestRate","offset":26,"slot":"0","type":"t_uint16"}],"numberOfBytes":"32"},"t_struct(ScaledAmount)18874_storage":{"encoding":"inplace","label":"struct ETKLib.ScaledAmount","members":[{"astId":18868,"contract":"contracts/EToken.sol:EToken","label":"amount","offset":0,"slot":"0","type":"t_uint128"},{"astId":18871,"contract":"contracts/EToken.sol:EToken","label":"scale","offset":16,"slot":"0","type":"t_userDefinedValueType(Scale)18847"},{"astId":18873,"contract":"contracts/EToken.sol:EToken","label":"lastUpdate","offset":28,"slot":"0","type":"t_uint32"}],"numberOfBytes":"32"},"t_struct(Scr)18879_storage":{"encoding":"inplace","label":"struct ETKLib.Scr","members":[{"astId":18876,"contract":"contracts/EToken.sol:EToken","label":"scr","offset":0,"slot":"0","type":"t_uint128"},{"astId":18878,"contract":"contracts/EToken.sol:EToken","label":"interestRate","offset":16,"slot":"0","type":"t_uint128"}],"numberOfBytes":"32"},"t_uint128":{"encoding":"inplace","label":"uint128","numberOfBytes":"16"},"t_uint16":{"encoding":"inplace","label":"uint16","numberOfBytes":"2"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint32":{"encoding":"inplace","label":"uint32","numberOfBytes":"4"},"t_userDefinedValueType(Scale)18847":{"encoding":"inplace","label":"ETKLib.Scale","numberOfBytes":"12"}}}}},"contracts/LPManualWhitelist.sol":{"LPManualWhitelist":{"abi":[{"inputs":[{"internalType":"contract IPolicyPool","name":"policyPool_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[{"internalType":"address","name":"provider","type":"address"}],"name":"InvalidProvider","type":"error"},{"inputs":[{"components":[{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"deposit","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"withdraw","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"sendTransfer","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"receiveTransfer","type":"uint8"}],"internalType":"struct LPManualWhitelist.WhitelistStatus","name":"newStatus","type":"tuple"}],"name":"InvalidWhitelistStatus","type":"error"},{"inputs":[],"name":"NoZeroPolicyPool","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"OnlyPolicyPool","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[],"name":"UpgradeCannotChangePolicyPool","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"provider","type":"address"},{"components":[{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"deposit","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"withdraw","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"sendTransfer","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"receiveTransfer","type":"uint8"}],"indexed":false,"internalType":"struct LPManualWhitelist.WhitelistStatus","name":"whitelisted","type":"tuple"}],"name":"LPWhitelistStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"","type":"address"},{"internalType":"address","name":"provider","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"acceptsDeposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"","type":"address"},{"internalType":"address","name":"providerFrom","type":"address"},{"internalType":"address","name":"providerTo","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"acceptsTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"","type":"address"},{"internalType":"address","name":"provider","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"acceptsWithdrawal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistDefaults","outputs":[{"components":[{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"deposit","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"withdraw","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"sendTransfer","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"receiveTransfer","type":"uint8"}],"internalType":"struct LPManualWhitelist.WhitelistStatus","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"deposit","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"withdraw","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"sendTransfer","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"receiveTransfer","type":"uint8"}],"internalType":"struct LPManualWhitelist.WhitelistStatus","name":"defaultStatus","type":"tuple"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"deposit","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"withdraw","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"sendTransfer","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"receiveTransfer","type":"uint8"}],"internalType":"struct LPManualWhitelist.WhitelistStatus","name":"newStatus","type":"tuple"}],"name":"setWhitelistDefaults","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":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"provider","type":"address"},{"components":[{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"deposit","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"withdraw","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"sendTransfer","type":"uint8"},{"internalType":"enum LPManualWhitelist.WhitelistOptions","name":"receiveTransfer","type":"uint8"}],"internalType":"struct LPManualWhitelist.WhitelistStatus","name":"newStatus","type":"tuple"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_21821":{"entryPoint":null,"id":21821,"parameterSlots":1,"returnSlots":0},"@_25524":{"entryPoint":null,"id":25524,"parameterSlots":1,"returnSlots":0},"@_disableInitializers_7172":{"entryPoint":116,"id":7172,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_7217":{"entryPoint":null,"id":7217,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_7203":{"entryPoint":null,"id":7203,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory":{"entryPoint":294,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:532:101","nodeType":"YulBlock","src":"0:532:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"116:209:101","nodeType":"YulBlock","src":"116:209:101","statements":[{"body":{"nativeSrc":"162:16:101","nodeType":"YulBlock","src":"162:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"171:1:101","nodeType":"YulLiteral","src":"171:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"174:1:101","nodeType":"YulLiteral","src":"174:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"164:6:101","nodeType":"YulIdentifier","src":"164:6:101"},"nativeSrc":"164:12:101","nodeType":"YulFunctionCall","src":"164:12:101"},"nativeSrc":"164:12:101","nodeType":"YulExpressionStatement","src":"164:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"137:7:101","nodeType":"YulIdentifier","src":"137:7:101"},{"name":"headStart","nativeSrc":"146:9:101","nodeType":"YulIdentifier","src":"146:9:101"}],"functionName":{"name":"sub","nativeSrc":"133:3:101","nodeType":"YulIdentifier","src":"133:3:101"},"nativeSrc":"133:23:101","nodeType":"YulFunctionCall","src":"133:23:101"},{"kind":"number","nativeSrc":"158:2:101","nodeType":"YulLiteral","src":"158:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"129:3:101","nodeType":"YulIdentifier","src":"129:3:101"},"nativeSrc":"129:32:101","nodeType":"YulFunctionCall","src":"129:32:101"},"nativeSrc":"126:52:101","nodeType":"YulIf","src":"126:52:101"},{"nativeSrc":"187:29:101","nodeType":"YulVariableDeclaration","src":"187:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"206:9:101","nodeType":"YulIdentifier","src":"206:9:101"}],"functionName":{"name":"mload","nativeSrc":"200:5:101","nodeType":"YulIdentifier","src":"200:5:101"},"nativeSrc":"200:16:101","nodeType":"YulFunctionCall","src":"200:16:101"},"variables":[{"name":"value","nativeSrc":"191:5:101","nodeType":"YulTypedName","src":"191:5:101","type":""}]},{"body":{"nativeSrc":"279:16:101","nodeType":"YulBlock","src":"279:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"288:1:101","nodeType":"YulLiteral","src":"288:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"291:1:101","nodeType":"YulLiteral","src":"291:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"281:6:101","nodeType":"YulIdentifier","src":"281:6:101"},"nativeSrc":"281:12:101","nodeType":"YulFunctionCall","src":"281:12:101"},"nativeSrc":"281:12:101","nodeType":"YulExpressionStatement","src":"281:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"238:5:101","nodeType":"YulIdentifier","src":"238:5:101"},{"arguments":[{"name":"value","nativeSrc":"249:5:101","nodeType":"YulIdentifier","src":"249:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"264:3:101","nodeType":"YulLiteral","src":"264:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"269:1:101","nodeType":"YulLiteral","src":"269:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"260:3:101","nodeType":"YulIdentifier","src":"260:3:101"},"nativeSrc":"260:11:101","nodeType":"YulFunctionCall","src":"260:11:101"},{"kind":"number","nativeSrc":"273:1:101","nodeType":"YulLiteral","src":"273:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"256:3:101","nodeType":"YulIdentifier","src":"256:3:101"},"nativeSrc":"256:19:101","nodeType":"YulFunctionCall","src":"256:19:101"}],"functionName":{"name":"and","nativeSrc":"245:3:101","nodeType":"YulIdentifier","src":"245:3:101"},"nativeSrc":"245:31:101","nodeType":"YulFunctionCall","src":"245:31:101"}],"functionName":{"name":"eq","nativeSrc":"235:2:101","nodeType":"YulIdentifier","src":"235:2:101"},"nativeSrc":"235:42:101","nodeType":"YulFunctionCall","src":"235:42:101"}],"functionName":{"name":"iszero","nativeSrc":"228:6:101","nodeType":"YulIdentifier","src":"228:6:101"},"nativeSrc":"228:50:101","nodeType":"YulFunctionCall","src":"228:50:101"},"nativeSrc":"225:70:101","nodeType":"YulIf","src":"225:70:101"},{"nativeSrc":"304:15:101","nodeType":"YulAssignment","src":"304:15:101","value":{"name":"value","nativeSrc":"314:5:101","nodeType":"YulIdentifier","src":"314:5:101"},"variableNames":[{"name":"value0","nativeSrc":"304:6:101","nodeType":"YulIdentifier","src":"304:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory","nativeSrc":"14:311:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"82:9:101","nodeType":"YulTypedName","src":"82:9:101","type":""},{"name":"dataEnd","nativeSrc":"93:7:101","nodeType":"YulTypedName","src":"93:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"105:6:101","nodeType":"YulTypedName","src":"105:6:101","type":""}],"src":"14:311:101"},{"body":{"nativeSrc":"429:101:101","nodeType":"YulBlock","src":"429:101:101","statements":[{"nativeSrc":"439:26:101","nodeType":"YulAssignment","src":"439:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"451:9:101","nodeType":"YulIdentifier","src":"451:9:101"},{"kind":"number","nativeSrc":"462:2:101","nodeType":"YulLiteral","src":"462:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"447:3:101","nodeType":"YulIdentifier","src":"447:3:101"},"nativeSrc":"447:18:101","nodeType":"YulFunctionCall","src":"447:18:101"},"variableNames":[{"name":"tail","nativeSrc":"439:4:101","nodeType":"YulIdentifier","src":"439:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"481:9:101","nodeType":"YulIdentifier","src":"481:9:101"},{"arguments":[{"name":"value0","nativeSrc":"496:6:101","nodeType":"YulIdentifier","src":"496:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"512:2:101","nodeType":"YulLiteral","src":"512:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"516:1:101","nodeType":"YulLiteral","src":"516:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"508:3:101","nodeType":"YulIdentifier","src":"508:3:101"},"nativeSrc":"508:10:101","nodeType":"YulFunctionCall","src":"508:10:101"},{"kind":"number","nativeSrc":"520:1:101","nodeType":"YulLiteral","src":"520:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"504:3:101","nodeType":"YulIdentifier","src":"504:3:101"},"nativeSrc":"504:18:101","nodeType":"YulFunctionCall","src":"504:18:101"}],"functionName":{"name":"and","nativeSrc":"492:3:101","nodeType":"YulIdentifier","src":"492:3:101"},"nativeSrc":"492:31:101","nodeType":"YulFunctionCall","src":"492:31:101"}],"functionName":{"name":"mstore","nativeSrc":"474:6:101","nodeType":"YulIdentifier","src":"474:6:101"},"nativeSrc":"474:50:101","nodeType":"YulFunctionCall","src":"474:50:101"},"nativeSrc":"474:50:101","nodeType":"YulExpressionStatement","src":"474:50:101"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"330:200:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"398:9:101","nodeType":"YulTypedName","src":"398:9:101","type":""},{"name":"value0","nativeSrc":"409:6:101","nodeType":"YulTypedName","src":"409:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"420:4:101","nodeType":"YulTypedName","src":"420:4:101","type":""}],"src":"330:200:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(64, 1), 1)))\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60c060405230608052348015610013575f5ffd5b5060405161166038038061166083398101604081905261003291610126565b806001600160a01b03811661005a57604051636b23cf0160e01b815260040160405180910390fd5b610062610074565b6001600160a01b031660a05250610153565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100c45760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101235780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b5f60208284031215610136575f5ffd5b81516001600160a01b038116811461014c575f5ffd5b9392505050565b60805160a0516114d06101905f395f81816101240152818161063d0152610bca01525f818161081801528181610841015261098801526114d05ff3fe6080604052600436106100bf575f3560e01c8063896ce44c1161007c578063ad3cb1cc11610057578063ad3cb1cc1461020f578063cf273ca61461024c578063e5a6b10f1461026b578063ed716bf41461027f575f5ffd5b8063896ce44c146101b25780639051c763146101d1578063aa2f92fb146101f0575f5ffd5b806301ffc9a7146100c357806337ee20dd146100f75780634d15eb03146101165780634f1ef2861461015c57806352d1902d146101715780635fcdca3714610193575b5f5ffd5b3480156100ce575f5ffd5b506100e26100dd366004610ede565b6102a0565b60405190151581526020015b60405180910390f35b348015610102575f5ffd5b506100e2610111366004610f19565b6102cb565b348015610121575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020016100ee565b61016f61016a366004610f9c565b61033b565b005b34801561017c575f5ffd5b5061018561035a565b6040519081526020016100ee565b34801561019e575f5ffd5b506100e26101ad366004611043565b610375565b3480156101bd575f5ffd5b5061016f6101cc3660046110a7565b610471565b3480156101dc575f5ffd5b506100e26101eb366004610f19565b6104c3565b3480156101fb575f5ffd5b5061016f61020a3660046110db565b610522565b34801561021a575f5ffd5b5061023f604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100ee91906110f5565b348015610257575f5ffd5b5061016f6102663660046110db565b61061b565b348015610276575f5ffd5b5061014461063a565b34801561028a575f5ffd5b506102936106c0565b6040516100ee91906111a1565b5f6102aa826107d8565b806102c557506001600160e01b0319821663f8722d8960e01b145b92915050565b6001600160a01b0382165f9081526032602052604081205460ff16818160028111156102f9576102f961112a565b0361031a57505f805260326020525f51602061145b5f395f51905f525460ff165b60015b81600281111561032f5761032f61112a565b149150505b9392505050565b61034361080d565b61034c826108b3565b61035682826108bc565b5050565b5f61036361097d565b505f51602061147b5f395f51905f5290565b6001600160a01b0383165f9081526032602052604081205462010000900460ff16818160028111156103a9576103a961112a565b036103d057505f805260326020525f51602061145b5f395f51905f525462010000900460ff165b60018160028111156103e4576103e461112a565b146103f2575f915050610469565b506001600160a01b0383165f908152603260205260408120546301000000900460ff16908160028111156104285761042861112a565b0361045057505f805260326020525f51602061145b5f395f51905f52546301000000900460ff165b60018160028111156104645761046461112a565b149150505b949350505050565b816001600160a01b0381166104aa57604051639627159960e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b50610356826104be368490038401846111bb565b6109c6565b6001600160a01b0382165f90815260326020526040812054610100900460ff16818160028111156104f6576104f661112a565b0361031a57505f805260326020525f51602061145b5f395f51905f5254610100900460ff16600161031d565b5f61052b610ac2565b805490915060ff600160401b820416159067ffffffffffffffff165f811580156105525750825b90505f8267ffffffffffffffff16600114801561056e5750303b155b90508115801561057c575080155b1561059a5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156105c457845460ff60401b1916600160401b1785555b6105cd86610aea565b831561061357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b61062481610b03565b6106375f6104be368490038401846111bb565b50565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610697573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106bb9190611240565b905090565b6106e76040805160808101909152805f81526020015f81526020015f81526020015f905290565b5f8052603260205260408051608081019091525f51602061145b5f395f51905f528054829060ff1660028111156107205761072061112a565b60028111156107315761073161112a565b81528154602090910190610100900460ff1660028111156107545761075461112a565b60028111156107655761076561112a565b8152815460209091019062010000900460ff1660028111156107895761078961112a565b600281111561079a5761079a61112a565b815281546020909101906301000000900460ff1660028111156107bf576107bf61112a565b60028111156107d0576107d061112a565b905250919050565b5f6001600160e01b031982166301ffc9a760e01b14806102c557506001600160e01b03198216634d15eb0360e01b1492915050565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061089357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166108875f51602061147b5f395f51905f52546001600160a01b031690565b6001600160a01b031614155b156108b15760405163703e46dd60e11b815260040160405180910390fd5b565b61063781610bc8565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015610916575060408051601f3d908101601f191682019092526109139181019061125b565b60015b61093e57604051634c9c8ce360e01b81526001600160a01b03831660048201526024016104a1565b5f51602061147b5f395f51905f52811461096e57604051632a87526960e21b8152600481018290526024016104a1565b6109788383610c79565b505050565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146108b15760405163703e46dd60e11b815260040160405180910390fd5b6001600160a01b0382165f9081526032602052604090208151815483929190829060ff191660018360028111156109ff576109ff61112a565b021790555060208201518154829061ff001916610100836002811115610a2757610a2761112a565b021790555060408201518154829062ff0000191662010000836002811115610a5157610a5161112a565b021790555060608201518154829063ff00000019166301000000836002811115610a7d57610a7d61112a565b02179055509050507f95d7a6740c7954755644347f27cbf1bebf7d02a83371922a49d04ddce4757c2a8282604051610ab6929190611272565b60405180910390a15050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a006102c5565b610af2610cce565b610afa610cf3565b61063781610cfb565b5f610b11602083018361128f565b6002811115610b2257610b2261112a565b14158015610b5057505f610b3c604083016020840161128f565b6002811115610b4d57610b4d61112a565b14155b8015610b7c57505f610b68606083016040840161128f565b6002811115610b7957610b7961112a565b14155b8015610ba857505f610b94608083016060840161128f565b6002811115610ba557610ba561112a565b14155b819061035657604051637a94d59760e01b81526004016104a19190611313565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c2e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c529190611240565b6001600160a01b0316146106375760405163d2b3d33f60e01b815260040160405180910390fd5b610c8282610d6c565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115610cc6576109788282610dcf565b610356610e6f565b610cd6610e8e565b6108b157604051631afcd79f60e31b815260040160405180910390fd5b6108b1610cce565b610d03610cce565b610d0c81610b03565b5f80526032602052805f51602061145b5f395f51905f52610d2d828261139b565b9050507f95d7a6740c7954755644347f27cbf1bebf7d02a83371922a49d04ddce4757c2a5f82604051610d6192919061143d565b60405180910390a150565b806001600160a01b03163b5f03610da157604051634c9c8ce360e01b81526001600160a01b03821660048201526024016104a1565b5f51602061147b5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f610ddc8484610ea7565b9050808015610dfd57505f3d1180610dfd57505f846001600160a01b03163b115b15610e1257610e0a610eba565b9150506102c5565b8015610e3c57604051639996b31560e01b81526001600160a01b03851660048201526024016104a1565b3d15610e4f57610e4a610ed3565b610e68565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b34156108b15760405163b398979f60e01b815260040160405180910390fd5b5f610e97610ac2565b54600160401b900460ff16919050565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f60208284031215610eee575f5ffd5b81356001600160e01b031981168114610334575f5ffd5b6001600160a01b0381168114610637575f5ffd5b5f5f5f60608486031215610f2b575f5ffd5b8335610f3681610f05565b92506020840135610f4681610f05565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff81118282101715610f9457610f94610f57565b604052919050565b5f5f60408385031215610fad575f5ffd5b8235610fb881610f05565b9150602083013567ffffffffffffffff811115610fd3575f5ffd5b8301601f81018513610fe3575f5ffd5b803567ffffffffffffffff811115610ffd57610ffd610f57565b611010601f8201601f1916602001610f6b565b818152866020838501011115611024575f5ffd5b816020840160208301375f602083830101528093505050509250929050565b5f5f5f5f60808587031215611056575f5ffd5b843561106181610f05565b9350602085013561107181610f05565b9250604085013561108181610f05565b9396929550929360600135925050565b5f608082840312156110a1575f5ffd5b50919050565b5f5f60a083850312156110b8575f5ffd5b82356110c381610f05565b91506110d28460208501611091565b90509250929050565b5f608082840312156110eb575f5ffd5b6103348383611091565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b634e487b7160e01b5f52602160045260245ffd5b6003811061115a57634e487b7160e01b5f52602160045260245ffd5b9052565b61116982825161113e565b602081015161117b602084018261113e565b50604081015161118e604084018261113e565b506060810151610978606084018261113e565b608081016102c5828461115e565b60038110610637575f5ffd5b5f60808284031280156111cc575f5ffd5b506040516080810167ffffffffffffffff811182821017156111f0576111f0610f57565b60405282356111fe816111af565b8152602083013561120e816111af565b60208201526040830135611221816111af565b60408201526060830135611234816111af565b60608201529392505050565b5f60208284031215611250575f5ffd5b815161033481610f05565b5f6020828403121561126b575f5ffd5b5051919050565b6001600160a01b038316815260a08101610334602083018461115e565b5f6020828403121561129f575f5ffd5b8135610334816111af565b80356112b5816111af565b6112bf838261113e565b5060208101356112ce816111af565b6112db602084018261113e565b5060408101356112ea816111af565b6112f7604084018261113e565b506060810135611306816111af565b610978606084018261113e565b608081016102c582846112aa565b5f81356102c5816111af565b6003821061134957634e487b7160e01b5f52602160045260245ffd5b805462ff00008360101b1662ff0000198216178255505050565b6003821061137f57634e487b7160e01b5f52602160045260245ffd5b805463ff0000008360181b1663ff000000198216178255505050565b81356113a6816111af565b600381106113c257634e487b7160e01b5f52602160045260245ffd5b815460ff821691508160ff19821617835560208401356113e1816111af565b600381106113fd57634e487b7160e01b5f52602160045260245ffd5b61ff008160081b168361ffff1984161717845550505061142861142260408401611321565b8261132d565b61035661143760608401611321565b82611363565b6001600160a01b038316815260a0810161033460208301846112aa56fe00bcd6ff29ae71d399fb597d99792fa72d0863bd723b9ab11f79d0b8d8ac5bc8360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca2646970667358221220847a7730fa59d13c51189897b2f7145c2935ab4c07eb9f03a0e84b7f2110060564736f6c634300081e0033","opcodes":"PUSH1 0xC0 PUSH1 0x40 MSTORE ADDRESS PUSH1 0x80 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x13 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x1660 CODESIZE SUB DUP1 PUSH2 0x1660 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x32 SWAP2 PUSH2 0x126 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x5A JUMPI PUSH1 0x40 MLOAD PUSH4 0x6B23CF01 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x62 PUSH2 0x74 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xA0 MSTORE POP PUSH2 0x153 JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xC4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0x123 JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x136 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x14C JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH2 0x14D0 PUSH2 0x190 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x124 ADD MSTORE DUP2 DUP2 PUSH2 0x63D ADD MSTORE PUSH2 0xBCA ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x818 ADD MSTORE DUP2 DUP2 PUSH2 0x841 ADD MSTORE PUSH2 0x988 ADD MSTORE PUSH2 0x14D0 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xBF JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x896CE44C GT PUSH2 0x7C JUMPI DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0x57 JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x20F JUMPI DUP1 PUSH4 0xCF273CA6 EQ PUSH2 0x24C JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x26B JUMPI DUP1 PUSH4 0xED716BF4 EQ PUSH2 0x27F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x896CE44C EQ PUSH2 0x1B2 JUMPI DUP1 PUSH4 0x9051C763 EQ PUSH2 0x1D1 JUMPI DUP1 PUSH4 0xAA2F92FB EQ PUSH2 0x1F0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xC3 JUMPI DUP1 PUSH4 0x37EE20DD EQ PUSH2 0xF7 JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x116 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x15C JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x171 JUMPI DUP1 PUSH4 0x5FCDCA37 EQ PUSH2 0x193 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xCE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xE2 PUSH2 0xDD CALLDATASIZE PUSH1 0x4 PUSH2 0xEDE JUMP JUMPDEST PUSH2 0x2A0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x102 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xE2 PUSH2 0x111 CALLDATASIZE PUSH1 0x4 PUSH2 0xF19 JUMP JUMPDEST PUSH2 0x2CB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x121 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xEE JUMP JUMPDEST PUSH2 0x16F PUSH2 0x16A CALLDATASIZE PUSH1 0x4 PUSH2 0xF9C JUMP JUMPDEST PUSH2 0x33B JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x17C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x185 PUSH2 0x35A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xEE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x19E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xE2 PUSH2 0x1AD CALLDATASIZE PUSH1 0x4 PUSH2 0x1043 JUMP JUMPDEST PUSH2 0x375 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x1CC CALLDATASIZE PUSH1 0x4 PUSH2 0x10A7 JUMP JUMPDEST PUSH2 0x471 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xE2 PUSH2 0x1EB CALLDATASIZE PUSH1 0x4 PUSH2 0xF19 JUMP JUMPDEST PUSH2 0x4C3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1FB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x20A CALLDATASIZE PUSH1 0x4 PUSH2 0x10DB JUMP JUMPDEST PUSH2 0x522 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x21A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x23F PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xEE SWAP2 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x257 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x266 CALLDATASIZE PUSH1 0x4 PUSH2 0x10DB JUMP JUMPDEST PUSH2 0x61B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x276 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x144 PUSH2 0x63A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x293 PUSH2 0x6C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xEE SWAP2 SWAP1 PUSH2 0x11A1 JUMP JUMPDEST PUSH0 PUSH2 0x2AA DUP3 PUSH2 0x7D8 JUMP JUMPDEST DUP1 PUSH2 0x2C5 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xF8722D89 PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 DUP2 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x2F9 JUMPI PUSH2 0x2F9 PUSH2 0x112A JUMP JUMPDEST SUB PUSH2 0x31A JUMPI POP PUSH0 DUP1 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x145B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x1 JUMPDEST DUP2 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x32F JUMPI PUSH2 0x32F PUSH2 0x112A JUMP JUMPDEST EQ SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x343 PUSH2 0x80D JUMP JUMPDEST PUSH2 0x34C DUP3 PUSH2 0x8B3 JUMP JUMPDEST PUSH2 0x356 DUP3 DUP3 PUSH2 0x8BC JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x363 PUSH2 0x97D JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x147B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH3 0x10000 SWAP1 DIV PUSH1 0xFF AND DUP2 DUP2 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x3A9 JUMPI PUSH2 0x3A9 PUSH2 0x112A JUMP JUMPDEST SUB PUSH2 0x3D0 JUMPI POP PUSH0 DUP1 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x145B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH3 0x10000 SWAP1 DIV PUSH1 0xFF AND JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x3E4 JUMPI PUSH2 0x3E4 PUSH2 0x112A JUMP JUMPDEST EQ PUSH2 0x3F2 JUMPI PUSH0 SWAP2 POP POP PUSH2 0x469 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND SWAP1 DUP2 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x428 JUMPI PUSH2 0x428 PUSH2 0x112A JUMP JUMPDEST SUB PUSH2 0x450 JUMPI POP PUSH0 DUP1 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x145B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x464 JUMPI PUSH2 0x464 PUSH2 0x112A JUMP JUMPDEST EQ SWAP2 POP POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x4AA JUMPI PUSH1 0x40 MLOAD PUSH4 0x96271599 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH2 0x356 DUP3 PUSH2 0x4BE CALLDATASIZE DUP5 SWAP1 SUB DUP5 ADD DUP5 PUSH2 0x11BB JUMP JUMPDEST PUSH2 0x9C6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND DUP2 DUP2 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x4F6 JUMPI PUSH2 0x4F6 PUSH2 0x112A JUMP JUMPDEST SUB PUSH2 0x31A JUMPI POP PUSH0 DUP1 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x145B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x1 PUSH2 0x31D JUMP JUMPDEST PUSH0 PUSH2 0x52B PUSH2 0xAC2 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x552 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x56E JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x57C JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x59A JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x5C4 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x5CD DUP7 PUSH2 0xAEA JUMP JUMPDEST DUP4 ISZERO PUSH2 0x613 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x624 DUP2 PUSH2 0xB03 JUMP JUMPDEST PUSH2 0x637 PUSH0 PUSH2 0x4BE CALLDATASIZE DUP5 SWAP1 SUB DUP5 ADD DUP5 PUSH2 0x11BB JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x697 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x6BB SWAP2 SWAP1 PUSH2 0x1240 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x6E7 PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD SWAP1 SWAP2 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 SWAP1 MSTORE SWAP1 JUMP JUMPDEST PUSH0 DUP1 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x145B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD DUP3 SWAP1 PUSH1 0xFF AND PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x720 JUMPI PUSH2 0x720 PUSH2 0x112A JUMP JUMPDEST PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x731 JUMPI PUSH2 0x731 PUSH2 0x112A JUMP JUMPDEST DUP2 MSTORE DUP2 SLOAD PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x754 JUMPI PUSH2 0x754 PUSH2 0x112A JUMP JUMPDEST PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x765 JUMPI PUSH2 0x765 PUSH2 0x112A JUMP JUMPDEST DUP2 MSTORE DUP2 SLOAD PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH3 0x10000 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x789 JUMPI PUSH2 0x789 PUSH2 0x112A JUMP JUMPDEST PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x79A JUMPI PUSH2 0x79A PUSH2 0x112A JUMP JUMPDEST DUP2 MSTORE DUP2 SLOAD PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x7BF JUMPI PUSH2 0x7BF PUSH2 0x112A JUMP JUMPDEST PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x7D0 JUMPI PUSH2 0x7D0 PUSH2 0x112A JUMP JUMPDEST SWAP1 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x2C5 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x893 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x887 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x147B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x8B1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x637 DUP2 PUSH2 0xBC8 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x916 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x913 SWAP2 DUP2 ADD SWAP1 PUSH2 0x125B JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x93E JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4A1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x147B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x96E JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x4A1 JUMP JUMPDEST PUSH2 0x978 DUP4 DUP4 PUSH2 0xC79 JUMP JUMPDEST POP POP POP JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x8B1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP2 MLOAD DUP2 SLOAD DUP4 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 PUSH1 0xFF NOT AND PUSH1 0x1 DUP4 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x9FF JUMPI PUSH2 0x9FF PUSH2 0x112A JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 SLOAD DUP3 SWAP1 PUSH2 0xFF00 NOT AND PUSH2 0x100 DUP4 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0xA27 JUMPI PUSH2 0xA27 PUSH2 0x112A JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 SLOAD DUP3 SWAP1 PUSH3 0xFF0000 NOT AND PUSH3 0x10000 DUP4 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0xA51 JUMPI PUSH2 0xA51 PUSH2 0x112A JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 SLOAD DUP3 SWAP1 PUSH4 0xFF000000 NOT AND PUSH4 0x1000000 DUP4 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0xA7D JUMPI PUSH2 0xA7D PUSH2 0x112A JUMP JUMPDEST MUL OR SWAP1 SSTORE POP SWAP1 POP POP PUSH32 0x95D7A6740C7954755644347F27CBF1BEBF7D02A83371922A49D04DDCE4757C2A DUP3 DUP3 PUSH1 0x40 MLOAD PUSH2 0xAB6 SWAP3 SWAP2 SWAP1 PUSH2 0x1272 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x2C5 JUMP JUMPDEST PUSH2 0xAF2 PUSH2 0xCCE JUMP JUMPDEST PUSH2 0xAFA PUSH2 0xCF3 JUMP JUMPDEST PUSH2 0x637 DUP2 PUSH2 0xCFB JUMP JUMPDEST PUSH0 PUSH2 0xB11 PUSH1 0x20 DUP4 ADD DUP4 PUSH2 0x128F JUMP JUMPDEST PUSH1 0x2 DUP2 GT ISZERO PUSH2 0xB22 JUMPI PUSH2 0xB22 PUSH2 0x112A JUMP JUMPDEST EQ ISZERO DUP1 ISZERO PUSH2 0xB50 JUMPI POP PUSH0 PUSH2 0xB3C PUSH1 0x40 DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0x128F JUMP JUMPDEST PUSH1 0x2 DUP2 GT ISZERO PUSH2 0xB4D JUMPI PUSH2 0xB4D PUSH2 0x112A JUMP JUMPDEST EQ ISZERO JUMPDEST DUP1 ISZERO PUSH2 0xB7C JUMPI POP PUSH0 PUSH2 0xB68 PUSH1 0x60 DUP4 ADD PUSH1 0x40 DUP5 ADD PUSH2 0x128F JUMP JUMPDEST PUSH1 0x2 DUP2 GT ISZERO PUSH2 0xB79 JUMPI PUSH2 0xB79 PUSH2 0x112A JUMP JUMPDEST EQ ISZERO JUMPDEST DUP1 ISZERO PUSH2 0xBA8 JUMPI POP PUSH0 PUSH2 0xB94 PUSH1 0x80 DUP4 ADD PUSH1 0x60 DUP5 ADD PUSH2 0x128F JUMP JUMPDEST PUSH1 0x2 DUP2 GT ISZERO PUSH2 0xBA5 JUMPI PUSH2 0xBA5 PUSH2 0x112A JUMP JUMPDEST EQ ISZERO JUMPDEST DUP2 SWAP1 PUSH2 0x356 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7A94D597 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4A1 SWAP2 SWAP1 PUSH2 0x1313 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC2E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC52 SWAP2 SWAP1 PUSH2 0x1240 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x637 JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xC82 DUP3 PUSH2 0xD6C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0xCC6 JUMPI PUSH2 0x978 DUP3 DUP3 PUSH2 0xDCF JUMP JUMPDEST PUSH2 0x356 PUSH2 0xE6F JUMP JUMPDEST PUSH2 0xCD6 PUSH2 0xE8E JUMP JUMPDEST PUSH2 0x8B1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8B1 PUSH2 0xCCE JUMP JUMPDEST PUSH2 0xD03 PUSH2 0xCCE JUMP JUMPDEST PUSH2 0xD0C DUP2 PUSH2 0xB03 JUMP JUMPDEST PUSH0 DUP1 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x145B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0xD2D DUP3 DUP3 PUSH2 0x139B JUMP JUMPDEST SWAP1 POP POP PUSH32 0x95D7A6740C7954755644347F27CBF1BEBF7D02A83371922A49D04DDCE4757C2A PUSH0 DUP3 PUSH1 0x40 MLOAD PUSH2 0xD61 SWAP3 SWAP2 SWAP1 PUSH2 0x143D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0xDA1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4A1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x147B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0xDDC DUP5 DUP5 PUSH2 0xEA7 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0xDFD JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0xDFD JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0xE12 JUMPI PUSH2 0xE0A PUSH2 0xEBA JUMP JUMPDEST SWAP2 POP POP PUSH2 0x2C5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xE3C JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4A1 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0xE4F JUMPI PUSH2 0xE4A PUSH2 0xED3 JUMP JUMPDEST PUSH2 0xE68 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x8B1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0xE97 PUSH2 0xAC2 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xEEE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x334 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x637 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xF2B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0xF36 DUP2 PUSH2 0xF05 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0xF46 DUP2 PUSH2 0xF05 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xF94 JUMPI PUSH2 0xF94 PUSH2 0xF57 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFAD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0xFB8 DUP2 PUSH2 0xF05 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xFD3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0xFE3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xFFD JUMPI PUSH2 0xFFD PUSH2 0xF57 JUMP JUMPDEST PUSH2 0x1010 PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0xF6B JUMP JUMPDEST DUP2 DUP2 MSTORE DUP7 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x1024 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP4 POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1056 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x1061 DUP2 PUSH2 0xF05 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x1071 DUP2 PUSH2 0xF05 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x1081 DUP2 PUSH2 0xF05 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP3 SWAP4 PUSH1 0x60 ADD CALLDATALOAD SWAP3 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10A1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0xA0 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x10B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x10C3 DUP2 PUSH2 0xF05 JUMP JUMPDEST SWAP2 POP PUSH2 0x10D2 DUP5 PUSH1 0x20 DUP6 ADD PUSH2 0x1091 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10EB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x334 DUP4 DUP4 PUSH2 0x1091 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x3 DUP2 LT PUSH2 0x115A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH2 0x1169 DUP3 DUP3 MLOAD PUSH2 0x113E JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD PUSH2 0x117B PUSH1 0x20 DUP5 ADD DUP3 PUSH2 0x113E JUMP JUMPDEST POP PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x118E PUSH1 0x40 DUP5 ADD DUP3 PUSH2 0x113E JUMP JUMPDEST POP PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0x978 PUSH1 0x60 DUP5 ADD DUP3 PUSH2 0x113E JUMP JUMPDEST PUSH1 0x80 DUP2 ADD PUSH2 0x2C5 DUP3 DUP5 PUSH2 0x115E JUMP JUMPDEST PUSH1 0x3 DUP2 LT PUSH2 0x637 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x80 DUP3 DUP5 SUB SLT DUP1 ISZERO PUSH2 0x11CC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x80 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x11F0 JUMPI PUSH2 0x11F0 PUSH2 0xF57 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP3 CALLDATALOAD PUSH2 0x11FE DUP2 PUSH2 0x11AF JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x120E DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP4 ADD CALLDATALOAD PUSH2 0x1221 DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 DUP4 ADD CALLDATALOAD PUSH2 0x1234 DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1250 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x334 DUP2 PUSH2 0xF05 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x126B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0xA0 DUP2 ADD PUSH2 0x334 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x115E JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x129F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x334 DUP2 PUSH2 0x11AF JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x12B5 DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH2 0x12BF DUP4 DUP3 PUSH2 0x113E JUMP JUMPDEST POP PUSH1 0x20 DUP2 ADD CALLDATALOAD PUSH2 0x12CE DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH2 0x12DB PUSH1 0x20 DUP5 ADD DUP3 PUSH2 0x113E JUMP JUMPDEST POP PUSH1 0x40 DUP2 ADD CALLDATALOAD PUSH2 0x12EA DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH2 0x12F7 PUSH1 0x40 DUP5 ADD DUP3 PUSH2 0x113E JUMP JUMPDEST POP PUSH1 0x60 DUP2 ADD CALLDATALOAD PUSH2 0x1306 DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH2 0x978 PUSH1 0x60 DUP5 ADD DUP3 PUSH2 0x113E JUMP JUMPDEST PUSH1 0x80 DUP2 ADD PUSH2 0x2C5 DUP3 DUP5 PUSH2 0x12AA JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD PUSH2 0x2C5 DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH1 0x3 DUP3 LT PUSH2 0x1349 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 SLOAD PUSH3 0xFF0000 DUP4 PUSH1 0x10 SHL AND PUSH3 0xFF0000 NOT DUP3 AND OR DUP3 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x3 DUP3 LT PUSH2 0x137F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 SLOAD PUSH4 0xFF000000 DUP4 PUSH1 0x18 SHL AND PUSH4 0xFF000000 NOT DUP3 AND OR DUP3 SSTORE POP POP POP JUMP JUMPDEST DUP2 CALLDATALOAD PUSH2 0x13A6 DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH1 0x3 DUP2 LT PUSH2 0x13C2 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 SLOAD PUSH1 0xFF DUP3 AND SWAP2 POP DUP2 PUSH1 0xFF NOT DUP3 AND OR DUP4 SSTORE PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x13E1 DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH1 0x3 DUP2 LT PUSH2 0x13FD JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0xFF00 DUP2 PUSH1 0x8 SHL AND DUP4 PUSH2 0xFFFF NOT DUP5 AND OR OR DUP5 SSTORE POP POP POP PUSH2 0x1428 PUSH2 0x1422 PUSH1 0x40 DUP5 ADD PUSH2 0x1321 JUMP JUMPDEST DUP3 PUSH2 0x132D JUMP JUMPDEST PUSH2 0x356 PUSH2 0x1437 PUSH1 0x60 DUP5 ADD PUSH2 0x1321 JUMP JUMPDEST DUP3 PUSH2 0x1363 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0xA0 DUP2 ADD PUSH2 0x334 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x12AA JUMP INVALID STOP 0xBC 0xD6 SELFDESTRUCT 0x29 0xAE PUSH18 0xD399FB597D99792FA72D0863BD723B9AB11F PUSH26 0xD0B8D8AC5BC8360894A13BA1A3210667C828492DB98DCA3E2076 0xCC CALLDATACOPY CALLDATALOAD 0xA9 KECCAK256 LOG3 0xCA POP TSTORE CODESIZE 0x2B 0xBC LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP5 PUSH27 0x7730FA59D13C51189897B2F7145C2935AB4C07EB9F03A0E84B7F21 LT MOD SDIV PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"521:6553:70:-:0;;;1084:4:33;1041:48;;1550:72:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1607:11;-1:-1:-1;;;;;1540:34:73;;1536:65;;1583:18;;-1:-1:-1;;;1583:18:73;;;;;;;;;;;1536:65;1607:22;:20;:22::i;:::-;-1:-1:-1;;;;;1635:25:73;;;-1:-1:-1;521:6553:70;;7709:422:32;3147:66;7898:15;;;;;;;7894:76;;;7936:23;;-1:-1:-1;;;7936:23:32;;;;;;;;;;;7894:76;7983:14;;-1:-1:-1;;;;;7983:14:32;;;:34;7979:146;;8033:33;;-1:-1:-1;;;;;;8033:33:32;-1:-1:-1;;;;;8033:33:32;;;;;8085:29;;474:50:101;;;8085:29:32;;462:2:101;447:18;8085:29:32;;;;;;;7979:146;7758:373;7709:422::o;14:311:101:-;105:6;158:2;146:9;137:7;133:23;129:32;126:52;;;174:1;171;164:12;126:52;200:16;;-1:-1:-1;;;;;245:31:101;;235:42;;225:70;;291:1;288;281:12;225:70;314:5;14:311;-1:-1:-1;;;14:311:101:o;330:200::-;521:6553:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@UPGRADE_INTERFACE_VERSION_7238":{"entryPoint":null,"id":7238,"parameterSlots":0,"returnSlots":0},"@__LPManualWhitelist_init_21851":{"entryPoint":2794,"id":21851,"parameterSlots":1,"returnSlots":0},"@__LPManualWhitelist_init_unchained_21881":{"entryPoint":3323,"id":21881,"parameterSlots":1,"returnSlots":0},"@__PolicyPoolComponent_init_25530":{"entryPoint":3315,"id":25530,"parameterSlots":0,"returnSlots":0},"@_authorizeUpgrade_25541":{"entryPoint":2227,"id":25541,"parameterSlots":1,"returnSlots":0},"@_checkDefaultStatus_21945":{"entryPoint":2819,"id":21945,"parameterSlots":1,"returnSlots":0},"@_checkInitializing_7126":{"entryPoint":3278,"id":7126,"parameterSlots":0,"returnSlots":0},"@_checkNonPayable_6903":{"entryPoint":3695,"id":6903,"parameterSlots":0,"returnSlots":0},"@_checkNotDelegated_7332":{"entryPoint":2429,"id":7332,"parameterSlots":0,"returnSlots":0},"@_checkProxy_7316":{"entryPoint":2061,"id":7316,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_7217":{"entryPoint":2754,"id":7217,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_7203":{"entryPoint":null,"id":7203,"parameterSlots":0,"returnSlots":1},"@_isInitializing_7194":{"entryPoint":3726,"id":7194,"parameterSlots":0,"returnSlots":1},"@_setImplementation_6683":{"entryPoint":3436,"id":6683,"parameterSlots":1,"returnSlots":0},"@_upgradeToAndCallUUPS_7383":{"entryPoint":2236,"id":7383,"parameterSlots":2,"returnSlots":0},"@_upgradeValidations_25558":{"entryPoint":3016,"id":25558,"parameterSlots":1,"returnSlots":0},"@_whitelistAddress_22001":{"entryPoint":2502,"id":22001,"parameterSlots":2,"returnSlots":0},"@acceptsDeposit_22067":{"entryPoint":715,"id":22067,"parameterSlots":3,"returnSlots":1},"@acceptsTransfer_22187":{"entryPoint":885,"id":22187,"parameterSlots":4,"returnSlots":1},"@acceptsWithdrawal_22111":{"entryPoint":1219,"id":22111,"parameterSlots":3,"returnSlots":1},"@bubbleRevert_10900":{"entryPoint":3795,"id":10900,"parameterSlots":0,"returnSlots":0},"@currency_25603":{"entryPoint":1594,"id":25603,"parameterSlots":0,"returnSlots":1},"@delegatecallNoReturn_10862":{"entryPoint":3751,"id":10862,"parameterSlots":2,"returnSlots":1},"@functionDelegateCall_9894":{"entryPoint":3535,"id":9894,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_11669":{"entryPoint":null,"id":11669,"parameterSlots":1,"returnSlots":1},"@getImplementation_6656":{"entryPoint":null,"id":6656,"parameterSlots":0,"returnSlots":1},"@getWhitelistDefaults_21980":{"entryPoint":1728,"id":21980,"parameterSlots":0,"returnSlots":1},"@initialize_21835":{"entryPoint":1314,"id":21835,"parameterSlots":1,"returnSlots":0},"@policyPool_25592":{"entryPoint":null,"id":25592,"parameterSlots":0,"returnSlots":1},"@proxiableUUID_7274":{"entryPoint":858,"id":7274,"parameterSlots":0,"returnSlots":1},"@returnDataSize_10886":{"entryPoint":null,"id":10886,"parameterSlots":0,"returnSlots":1},"@returnData_10894":{"entryPoint":3770,"id":10894,"parameterSlots":0,"returnSlots":1},"@setWhitelistDefaults_21965":{"entryPoint":1563,"id":21965,"parameterSlots":1,"returnSlots":0},"@supportsInterface_22023":{"entryPoint":672,"id":22023,"parameterSlots":1,"returnSlots":1},"@supportsInterface_25582":{"entryPoint":2008,"id":25582,"parameterSlots":1,"returnSlots":1},"@upgradeToAndCall_6719":{"entryPoint":3193,"id":6719,"parameterSlots":2,"returnSlots":0},"@upgradeToAndCall_7294":{"entryPoint":827,"id":7294,"parameterSlots":2,"returnSlots":0},"@whitelistAddress_21908":{"entryPoint":1137,"id":21908,"parameterSlots":2,"returnSlots":0},"abi_decode_struct_WhitelistStatus_calldata":{"entryPoint":4241,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_bytes_memory_ptr":{"entryPoint":3996,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_struct$_WhitelistStatus_$21788_calldata_ptr":{"entryPoint":4263,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32_fromMemory":{"entryPoint":4699,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":3806,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory":{"entryPoint":4672,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IEToken_$28869t_addresst_addresst_uint256":{"entryPoint":4163,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_contract$_IEToken_$28869t_addresst_uint256":{"entryPoint":3865,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_enum$_WhitelistOptions_$21775":{"entryPoint":4751,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_WhitelistStatus_$21788_calldata_ptr":{"entryPoint":4315,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_WhitelistStatus_$21788_memory_ptr":{"entryPoint":4539,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_enum_WhitelistOptions":{"entryPoint":4414,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_struct_WhitelistStatus":{"entryPoint":4446,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_struct_WhitelistStatus_calldata":{"entryPoint":4778,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_struct$_WhitelistStatus_$21788_calldata_ptr__to_t_address_t_struct$_WhitelistStatus_$21788_memory_ptr__fromStack_reversed":{"entryPoint":5181,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_struct$_WhitelistStatus_$21788_memory_ptr__to_t_address_t_struct$_WhitelistStatus_$21788_memory_ptr__fromStack_reversed":{"entryPoint":4722,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4341,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_WhitelistStatus_$21788_calldata_ptr__to_t_struct$_WhitelistStatus_$21788_memory_ptr__fromStack_reversed":{"entryPoint":4883,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_WhitelistStatus_$21788_memory_ptr__to_t_struct$_WhitelistStatus_$21788_memory_ptr__fromStack_reversed":{"entryPoint":4513,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_memory":{"entryPoint":3947,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x21":{"entryPoint":4394,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":3927,"id":null,"parameterSlots":0,"returnSlots":0},"read_from_calldatat_enum_WhitelistOptions":{"entryPoint":4897,"id":null,"parameterSlots":1,"returnSlots":1},"update_storage_value_offset_0_t_struct$_WhitelistStatus_$21788_calldata_ptr_to_t_struct$_WhitelistStatus_$21788_storage":{"entryPoint":5019,"id":null,"parameterSlots":2,"returnSlots":0},"update_storage_value_offset_enum_WhitelistOptions_to_enum_WhitelistOptions":{"entryPoint":4963,"id":null,"parameterSlots":2,"returnSlots":0},"update_storage_value_offset_t_enum_WhitelistOptions_to_t_enum_WhitelistOptions":{"entryPoint":4909,"id":null,"parameterSlots":2,"returnSlots":0},"validator_revert_contract_IEToken":{"entryPoint":3845,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_enum_WhitelistOptions":{"entryPoint":4527,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:12872:101","nodeType":"YulBlock","src":"0:12872:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"83:217:101","nodeType":"YulBlock","src":"83:217:101","statements":[{"body":{"nativeSrc":"129:16:101","nodeType":"YulBlock","src":"129:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"138:1:101","nodeType":"YulLiteral","src":"138:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"141:1:101","nodeType":"YulLiteral","src":"141:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"131:6:101","nodeType":"YulIdentifier","src":"131:6:101"},"nativeSrc":"131:12:101","nodeType":"YulFunctionCall","src":"131:12:101"},"nativeSrc":"131:12:101","nodeType":"YulExpressionStatement","src":"131:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"104:7:101","nodeType":"YulIdentifier","src":"104:7:101"},{"name":"headStart","nativeSrc":"113:9:101","nodeType":"YulIdentifier","src":"113:9:101"}],"functionName":{"name":"sub","nativeSrc":"100:3:101","nodeType":"YulIdentifier","src":"100:3:101"},"nativeSrc":"100:23:101","nodeType":"YulFunctionCall","src":"100:23:101"},{"kind":"number","nativeSrc":"125:2:101","nodeType":"YulLiteral","src":"125:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"96:3:101","nodeType":"YulIdentifier","src":"96:3:101"},"nativeSrc":"96:32:101","nodeType":"YulFunctionCall","src":"96:32:101"},"nativeSrc":"93:52:101","nodeType":"YulIf","src":"93:52:101"},{"nativeSrc":"154:36:101","nodeType":"YulVariableDeclaration","src":"154:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"180:9:101","nodeType":"YulIdentifier","src":"180:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"167:12:101","nodeType":"YulIdentifier","src":"167:12:101"},"nativeSrc":"167:23:101","nodeType":"YulFunctionCall","src":"167:23:101"},"variables":[{"name":"value","nativeSrc":"158:5:101","nodeType":"YulTypedName","src":"158:5:101","type":""}]},{"body":{"nativeSrc":"254:16:101","nodeType":"YulBlock","src":"254:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:101","nodeType":"YulLiteral","src":"263:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:101","nodeType":"YulLiteral","src":"266:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:101","nodeType":"YulIdentifier","src":"256:6:101"},"nativeSrc":"256:12:101","nodeType":"YulFunctionCall","src":"256:12:101"},"nativeSrc":"256:12:101","nodeType":"YulExpressionStatement","src":"256:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"212:5:101","nodeType":"YulIdentifier","src":"212:5:101"},{"arguments":[{"name":"value","nativeSrc":"223:5:101","nodeType":"YulIdentifier","src":"223:5:101"},{"arguments":[{"kind":"number","nativeSrc":"234:3:101","nodeType":"YulLiteral","src":"234:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"239:10:101","nodeType":"YulLiteral","src":"239:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"230:3:101","nodeType":"YulIdentifier","src":"230:3:101"},"nativeSrc":"230:20:101","nodeType":"YulFunctionCall","src":"230:20:101"}],"functionName":{"name":"and","nativeSrc":"219:3:101","nodeType":"YulIdentifier","src":"219:3:101"},"nativeSrc":"219:32:101","nodeType":"YulFunctionCall","src":"219:32:101"}],"functionName":{"name":"eq","nativeSrc":"209:2:101","nodeType":"YulIdentifier","src":"209:2:101"},"nativeSrc":"209:43:101","nodeType":"YulFunctionCall","src":"209:43:101"}],"functionName":{"name":"iszero","nativeSrc":"202:6:101","nodeType":"YulIdentifier","src":"202:6:101"},"nativeSrc":"202:51:101","nodeType":"YulFunctionCall","src":"202:51:101"},"nativeSrc":"199:71:101","nodeType":"YulIf","src":"199:71:101"},{"nativeSrc":"279:15:101","nodeType":"YulAssignment","src":"279:15:101","value":{"name":"value","nativeSrc":"289:5:101","nodeType":"YulIdentifier","src":"289:5:101"},"variableNames":[{"name":"value0","nativeSrc":"279:6:101","nodeType":"YulIdentifier","src":"279:6:101"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14:286:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"49:9:101","nodeType":"YulTypedName","src":"49:9:101","type":""},{"name":"dataEnd","nativeSrc":"60:7:101","nodeType":"YulTypedName","src":"60:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"72:6:101","nodeType":"YulTypedName","src":"72:6:101","type":""}],"src":"14:286:101"},{"body":{"nativeSrc":"400:92:101","nodeType":"YulBlock","src":"400:92:101","statements":[{"nativeSrc":"410:26:101","nodeType":"YulAssignment","src":"410:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:101","nodeType":"YulIdentifier","src":"422:9:101"},{"kind":"number","nativeSrc":"433:2:101","nodeType":"YulLiteral","src":"433:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"418:3:101","nodeType":"YulIdentifier","src":"418:3:101"},"nativeSrc":"418:18:101","nodeType":"YulFunctionCall","src":"418:18:101"},"variableNames":[{"name":"tail","nativeSrc":"410:4:101","nodeType":"YulIdentifier","src":"410:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"452:9:101","nodeType":"YulIdentifier","src":"452:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"477:6:101","nodeType":"YulIdentifier","src":"477:6:101"}],"functionName":{"name":"iszero","nativeSrc":"470:6:101","nodeType":"YulIdentifier","src":"470:6:101"},"nativeSrc":"470:14:101","nodeType":"YulFunctionCall","src":"470:14:101"}],"functionName":{"name":"iszero","nativeSrc":"463:6:101","nodeType":"YulIdentifier","src":"463:6:101"},"nativeSrc":"463:22:101","nodeType":"YulFunctionCall","src":"463:22:101"}],"functionName":{"name":"mstore","nativeSrc":"445:6:101","nodeType":"YulIdentifier","src":"445:6:101"},"nativeSrc":"445:41:101","nodeType":"YulFunctionCall","src":"445:41:101"},"nativeSrc":"445:41:101","nodeType":"YulExpressionStatement","src":"445:41:101"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"305:187:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"369:9:101","nodeType":"YulTypedName","src":"369:9:101","type":""},{"name":"value0","nativeSrc":"380:6:101","nodeType":"YulTypedName","src":"380:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"391:4:101","nodeType":"YulTypedName","src":"391:4:101","type":""}],"src":"305:187:101"},{"body":{"nativeSrc":"551:86:101","nodeType":"YulBlock","src":"551:86:101","statements":[{"body":{"nativeSrc":"615:16:101","nodeType":"YulBlock","src":"615:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"624:1:101","nodeType":"YulLiteral","src":"624:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"627:1:101","nodeType":"YulLiteral","src":"627:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"617:6:101","nodeType":"YulIdentifier","src":"617:6:101"},"nativeSrc":"617:12:101","nodeType":"YulFunctionCall","src":"617:12:101"},"nativeSrc":"617:12:101","nodeType":"YulExpressionStatement","src":"617:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"574:5:101","nodeType":"YulIdentifier","src":"574:5:101"},{"arguments":[{"name":"value","nativeSrc":"585:5:101","nodeType":"YulIdentifier","src":"585:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"600:3:101","nodeType":"YulLiteral","src":"600:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"605:1:101","nodeType":"YulLiteral","src":"605:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"596:3:101","nodeType":"YulIdentifier","src":"596:3:101"},"nativeSrc":"596:11:101","nodeType":"YulFunctionCall","src":"596:11:101"},{"kind":"number","nativeSrc":"609:1:101","nodeType":"YulLiteral","src":"609:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"592:3:101","nodeType":"YulIdentifier","src":"592:3:101"},"nativeSrc":"592:19:101","nodeType":"YulFunctionCall","src":"592:19:101"}],"functionName":{"name":"and","nativeSrc":"581:3:101","nodeType":"YulIdentifier","src":"581:3:101"},"nativeSrc":"581:31:101","nodeType":"YulFunctionCall","src":"581:31:101"}],"functionName":{"name":"eq","nativeSrc":"571:2:101","nodeType":"YulIdentifier","src":"571:2:101"},"nativeSrc":"571:42:101","nodeType":"YulFunctionCall","src":"571:42:101"}],"functionName":{"name":"iszero","nativeSrc":"564:6:101","nodeType":"YulIdentifier","src":"564:6:101"},"nativeSrc":"564:50:101","nodeType":"YulFunctionCall","src":"564:50:101"},"nativeSrc":"561:70:101","nodeType":"YulIf","src":"561:70:101"}]},"name":"validator_revert_contract_IEToken","nativeSrc":"497:140:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"540:5:101","nodeType":"YulTypedName","src":"540:5:101","type":""}],"src":"497:140:101"},{"body":{"nativeSrc":"763:422:101","nodeType":"YulBlock","src":"763:422:101","statements":[{"body":{"nativeSrc":"809:16:101","nodeType":"YulBlock","src":"809:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"818:1:101","nodeType":"YulLiteral","src":"818:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"821:1:101","nodeType":"YulLiteral","src":"821:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"811:6:101","nodeType":"YulIdentifier","src":"811:6:101"},"nativeSrc":"811:12:101","nodeType":"YulFunctionCall","src":"811:12:101"},"nativeSrc":"811:12:101","nodeType":"YulExpressionStatement","src":"811:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"784:7:101","nodeType":"YulIdentifier","src":"784:7:101"},{"name":"headStart","nativeSrc":"793:9:101","nodeType":"YulIdentifier","src":"793:9:101"}],"functionName":{"name":"sub","nativeSrc":"780:3:101","nodeType":"YulIdentifier","src":"780:3:101"},"nativeSrc":"780:23:101","nodeType":"YulFunctionCall","src":"780:23:101"},{"kind":"number","nativeSrc":"805:2:101","nodeType":"YulLiteral","src":"805:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"776:3:101","nodeType":"YulIdentifier","src":"776:3:101"},"nativeSrc":"776:32:101","nodeType":"YulFunctionCall","src":"776:32:101"},"nativeSrc":"773:52:101","nodeType":"YulIf","src":"773:52:101"},{"nativeSrc":"834:36:101","nodeType":"YulVariableDeclaration","src":"834:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"860:9:101","nodeType":"YulIdentifier","src":"860:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"847:12:101","nodeType":"YulIdentifier","src":"847:12:101"},"nativeSrc":"847:23:101","nodeType":"YulFunctionCall","src":"847:23:101"},"variables":[{"name":"value","nativeSrc":"838:5:101","nodeType":"YulTypedName","src":"838:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"913:5:101","nodeType":"YulIdentifier","src":"913:5:101"}],"functionName":{"name":"validator_revert_contract_IEToken","nativeSrc":"879:33:101","nodeType":"YulIdentifier","src":"879:33:101"},"nativeSrc":"879:40:101","nodeType":"YulFunctionCall","src":"879:40:101"},"nativeSrc":"879:40:101","nodeType":"YulExpressionStatement","src":"879:40:101"},{"nativeSrc":"928:15:101","nodeType":"YulAssignment","src":"928:15:101","value":{"name":"value","nativeSrc":"938:5:101","nodeType":"YulIdentifier","src":"938:5:101"},"variableNames":[{"name":"value0","nativeSrc":"928:6:101","nodeType":"YulIdentifier","src":"928:6:101"}]},{"nativeSrc":"952:47:101","nodeType":"YulVariableDeclaration","src":"952:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"984:9:101","nodeType":"YulIdentifier","src":"984:9:101"},{"kind":"number","nativeSrc":"995:2:101","nodeType":"YulLiteral","src":"995:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"980:3:101","nodeType":"YulIdentifier","src":"980:3:101"},"nativeSrc":"980:18:101","nodeType":"YulFunctionCall","src":"980:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"967:12:101","nodeType":"YulIdentifier","src":"967:12:101"},"nativeSrc":"967:32:101","nodeType":"YulFunctionCall","src":"967:32:101"},"variables":[{"name":"value_1","nativeSrc":"956:7:101","nodeType":"YulTypedName","src":"956:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"1042:7:101","nodeType":"YulIdentifier","src":"1042:7:101"}],"functionName":{"name":"validator_revert_contract_IEToken","nativeSrc":"1008:33:101","nodeType":"YulIdentifier","src":"1008:33:101"},"nativeSrc":"1008:42:101","nodeType":"YulFunctionCall","src":"1008:42:101"},"nativeSrc":"1008:42:101","nodeType":"YulExpressionStatement","src":"1008:42:101"},{"nativeSrc":"1059:17:101","nodeType":"YulAssignment","src":"1059:17:101","value":{"name":"value_1","nativeSrc":"1069:7:101","nodeType":"YulIdentifier","src":"1069:7:101"},"variableNames":[{"name":"value1","nativeSrc":"1059:6:101","nodeType":"YulIdentifier","src":"1059:6:101"}]},{"nativeSrc":"1085:16:101","nodeType":"YulVariableDeclaration","src":"1085:16:101","value":{"kind":"number","nativeSrc":"1100:1:101","nodeType":"YulLiteral","src":"1100:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"1089:7:101","nodeType":"YulTypedName","src":"1089:7:101","type":""}]},{"nativeSrc":"1110:43:101","nodeType":"YulAssignment","src":"1110:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1138:9:101","nodeType":"YulIdentifier","src":"1138:9:101"},{"kind":"number","nativeSrc":"1149:2:101","nodeType":"YulLiteral","src":"1149:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1134:3:101","nodeType":"YulIdentifier","src":"1134:3:101"},"nativeSrc":"1134:18:101","nodeType":"YulFunctionCall","src":"1134:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"1121:12:101","nodeType":"YulIdentifier","src":"1121:12:101"},"nativeSrc":"1121:32:101","nodeType":"YulFunctionCall","src":"1121:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"1110:7:101","nodeType":"YulIdentifier","src":"1110:7:101"}]},{"nativeSrc":"1162:17:101","nodeType":"YulAssignment","src":"1162:17:101","value":{"name":"value_2","nativeSrc":"1172:7:101","nodeType":"YulIdentifier","src":"1172:7:101"},"variableNames":[{"name":"value2","nativeSrc":"1162:6:101","nodeType":"YulIdentifier","src":"1162:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$28869t_addresst_uint256","nativeSrc":"642:543:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"713:9:101","nodeType":"YulTypedName","src":"713:9:101","type":""},{"name":"dataEnd","nativeSrc":"724:7:101","nodeType":"YulTypedName","src":"724:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"736:6:101","nodeType":"YulTypedName","src":"736:6:101","type":""},{"name":"value1","nativeSrc":"744:6:101","nodeType":"YulTypedName","src":"744:6:101","type":""},{"name":"value2","nativeSrc":"752:6:101","nodeType":"YulTypedName","src":"752:6:101","type":""}],"src":"642:543:101"},{"body":{"nativeSrc":"1312:102:101","nodeType":"YulBlock","src":"1312:102:101","statements":[{"nativeSrc":"1322:26:101","nodeType":"YulAssignment","src":"1322:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1334:9:101","nodeType":"YulIdentifier","src":"1334:9:101"},{"kind":"number","nativeSrc":"1345:2:101","nodeType":"YulLiteral","src":"1345:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1330:3:101","nodeType":"YulIdentifier","src":"1330:3:101"},"nativeSrc":"1330:18:101","nodeType":"YulFunctionCall","src":"1330:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1322:4:101","nodeType":"YulIdentifier","src":"1322:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1364:9:101","nodeType":"YulIdentifier","src":"1364:9:101"},{"arguments":[{"name":"value0","nativeSrc":"1379:6:101","nodeType":"YulIdentifier","src":"1379:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1395:3:101","nodeType":"YulLiteral","src":"1395:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"1400:1:101","nodeType":"YulLiteral","src":"1400:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1391:3:101","nodeType":"YulIdentifier","src":"1391:3:101"},"nativeSrc":"1391:11:101","nodeType":"YulFunctionCall","src":"1391:11:101"},{"kind":"number","nativeSrc":"1404:1:101","nodeType":"YulLiteral","src":"1404:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1387:3:101","nodeType":"YulIdentifier","src":"1387:3:101"},"nativeSrc":"1387:19:101","nodeType":"YulFunctionCall","src":"1387:19:101"}],"functionName":{"name":"and","nativeSrc":"1375:3:101","nodeType":"YulIdentifier","src":"1375:3:101"},"nativeSrc":"1375:32:101","nodeType":"YulFunctionCall","src":"1375:32:101"}],"functionName":{"name":"mstore","nativeSrc":"1357:6:101","nodeType":"YulIdentifier","src":"1357:6:101"},"nativeSrc":"1357:51:101","nodeType":"YulFunctionCall","src":"1357:51:101"},"nativeSrc":"1357:51:101","nodeType":"YulExpressionStatement","src":"1357:51:101"}]},"name":"abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed","nativeSrc":"1190:224:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1281:9:101","nodeType":"YulTypedName","src":"1281:9:101","type":""},{"name":"value0","nativeSrc":"1292:6:101","nodeType":"YulTypedName","src":"1292:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1303:4:101","nodeType":"YulTypedName","src":"1303:4:101","type":""}],"src":"1190:224:101"},{"body":{"nativeSrc":"1451:95:101","nodeType":"YulBlock","src":"1451:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1468:1:101","nodeType":"YulLiteral","src":"1468:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1475:3:101","nodeType":"YulLiteral","src":"1475:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"1480:10:101","nodeType":"YulLiteral","src":"1480:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1471:3:101","nodeType":"YulIdentifier","src":"1471:3:101"},"nativeSrc":"1471:20:101","nodeType":"YulFunctionCall","src":"1471:20:101"}],"functionName":{"name":"mstore","nativeSrc":"1461:6:101","nodeType":"YulIdentifier","src":"1461:6:101"},"nativeSrc":"1461:31:101","nodeType":"YulFunctionCall","src":"1461:31:101"},"nativeSrc":"1461:31:101","nodeType":"YulExpressionStatement","src":"1461:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1508:1:101","nodeType":"YulLiteral","src":"1508:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"1511:4:101","nodeType":"YulLiteral","src":"1511:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"1501:6:101","nodeType":"YulIdentifier","src":"1501:6:101"},"nativeSrc":"1501:15:101","nodeType":"YulFunctionCall","src":"1501:15:101"},"nativeSrc":"1501:15:101","nodeType":"YulExpressionStatement","src":"1501:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1532:1:101","nodeType":"YulLiteral","src":"1532:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1535:4:101","nodeType":"YulLiteral","src":"1535:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1525:6:101","nodeType":"YulIdentifier","src":"1525:6:101"},"nativeSrc":"1525:15:101","nodeType":"YulFunctionCall","src":"1525:15:101"},"nativeSrc":"1525:15:101","nodeType":"YulExpressionStatement","src":"1525:15:101"}]},"name":"panic_error_0x41","nativeSrc":"1419:127:101","nodeType":"YulFunctionDefinition","src":"1419:127:101"},{"body":{"nativeSrc":"1596:230:101","nodeType":"YulBlock","src":"1596:230:101","statements":[{"nativeSrc":"1606:19:101","nodeType":"YulAssignment","src":"1606:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"1622:2:101","nodeType":"YulLiteral","src":"1622:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1616:5:101","nodeType":"YulIdentifier","src":"1616:5:101"},"nativeSrc":"1616:9:101","nodeType":"YulFunctionCall","src":"1616:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"1606:6:101","nodeType":"YulIdentifier","src":"1606:6:101"}]},{"nativeSrc":"1634:58:101","nodeType":"YulVariableDeclaration","src":"1634:58:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"1656:6:101","nodeType":"YulIdentifier","src":"1656:6:101"},{"arguments":[{"arguments":[{"name":"size","nativeSrc":"1672:4:101","nodeType":"YulIdentifier","src":"1672:4:101"},{"kind":"number","nativeSrc":"1678:2:101","nodeType":"YulLiteral","src":"1678:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"1668:3:101","nodeType":"YulIdentifier","src":"1668:3:101"},"nativeSrc":"1668:13:101","nodeType":"YulFunctionCall","src":"1668:13:101"},{"arguments":[{"kind":"number","nativeSrc":"1687:2:101","nodeType":"YulLiteral","src":"1687:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1683:3:101","nodeType":"YulIdentifier","src":"1683:3:101"},"nativeSrc":"1683:7:101","nodeType":"YulFunctionCall","src":"1683:7:101"}],"functionName":{"name":"and","nativeSrc":"1664:3:101","nodeType":"YulIdentifier","src":"1664:3:101"},"nativeSrc":"1664:27:101","nodeType":"YulFunctionCall","src":"1664:27:101"}],"functionName":{"name":"add","nativeSrc":"1652:3:101","nodeType":"YulIdentifier","src":"1652:3:101"},"nativeSrc":"1652:40:101","nodeType":"YulFunctionCall","src":"1652:40:101"},"variables":[{"name":"newFreePtr","nativeSrc":"1638:10:101","nodeType":"YulTypedName","src":"1638:10:101","type":""}]},{"body":{"nativeSrc":"1767:22:101","nodeType":"YulBlock","src":"1767:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1769:16:101","nodeType":"YulIdentifier","src":"1769:16:101"},"nativeSrc":"1769:18:101","nodeType":"YulFunctionCall","src":"1769:18:101"},"nativeSrc":"1769:18:101","nodeType":"YulExpressionStatement","src":"1769:18:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"1710:10:101","nodeType":"YulIdentifier","src":"1710:10:101"},{"kind":"number","nativeSrc":"1722:18:101","nodeType":"YulLiteral","src":"1722:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1707:2:101","nodeType":"YulIdentifier","src":"1707:2:101"},"nativeSrc":"1707:34:101","nodeType":"YulFunctionCall","src":"1707:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"1746:10:101","nodeType":"YulIdentifier","src":"1746:10:101"},{"name":"memPtr","nativeSrc":"1758:6:101","nodeType":"YulIdentifier","src":"1758:6:101"}],"functionName":{"name":"lt","nativeSrc":"1743:2:101","nodeType":"YulIdentifier","src":"1743:2:101"},"nativeSrc":"1743:22:101","nodeType":"YulFunctionCall","src":"1743:22:101"}],"functionName":{"name":"or","nativeSrc":"1704:2:101","nodeType":"YulIdentifier","src":"1704:2:101"},"nativeSrc":"1704:62:101","nodeType":"YulFunctionCall","src":"1704:62:101"},"nativeSrc":"1701:88:101","nodeType":"YulIf","src":"1701:88:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1805:2:101","nodeType":"YulLiteral","src":"1805:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"1809:10:101","nodeType":"YulIdentifier","src":"1809:10:101"}],"functionName":{"name":"mstore","nativeSrc":"1798:6:101","nodeType":"YulIdentifier","src":"1798:6:101"},"nativeSrc":"1798:22:101","nodeType":"YulFunctionCall","src":"1798:22:101"},"nativeSrc":"1798:22:101","nodeType":"YulExpressionStatement","src":"1798:22:101"}]},"name":"allocate_memory","nativeSrc":"1551:275:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nativeSrc":"1576:4:101","nodeType":"YulTypedName","src":"1576:4:101","type":""}],"returnVariables":[{"name":"memPtr","nativeSrc":"1585:6:101","nodeType":"YulTypedName","src":"1585:6:101","type":""}],"src":"1551:275:101"},{"body":{"nativeSrc":"1927:813:101","nodeType":"YulBlock","src":"1927:813:101","statements":[{"body":{"nativeSrc":"1973:16:101","nodeType":"YulBlock","src":"1973:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1982:1:101","nodeType":"YulLiteral","src":"1982:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1985:1:101","nodeType":"YulLiteral","src":"1985:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1975:6:101","nodeType":"YulIdentifier","src":"1975:6:101"},"nativeSrc":"1975:12:101","nodeType":"YulFunctionCall","src":"1975:12:101"},"nativeSrc":"1975:12:101","nodeType":"YulExpressionStatement","src":"1975:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1948:7:101","nodeType":"YulIdentifier","src":"1948:7:101"},{"name":"headStart","nativeSrc":"1957:9:101","nodeType":"YulIdentifier","src":"1957:9:101"}],"functionName":{"name":"sub","nativeSrc":"1944:3:101","nodeType":"YulIdentifier","src":"1944:3:101"},"nativeSrc":"1944:23:101","nodeType":"YulFunctionCall","src":"1944:23:101"},{"kind":"number","nativeSrc":"1969:2:101","nodeType":"YulLiteral","src":"1969:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1940:3:101","nodeType":"YulIdentifier","src":"1940:3:101"},"nativeSrc":"1940:32:101","nodeType":"YulFunctionCall","src":"1940:32:101"},"nativeSrc":"1937:52:101","nodeType":"YulIf","src":"1937:52:101"},{"nativeSrc":"1998:36:101","nodeType":"YulVariableDeclaration","src":"1998:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2024:9:101","nodeType":"YulIdentifier","src":"2024:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"2011:12:101","nodeType":"YulIdentifier","src":"2011:12:101"},"nativeSrc":"2011:23:101","nodeType":"YulFunctionCall","src":"2011:23:101"},"variables":[{"name":"value","nativeSrc":"2002:5:101","nodeType":"YulTypedName","src":"2002:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2077:5:101","nodeType":"YulIdentifier","src":"2077:5:101"}],"functionName":{"name":"validator_revert_contract_IEToken","nativeSrc":"2043:33:101","nodeType":"YulIdentifier","src":"2043:33:101"},"nativeSrc":"2043:40:101","nodeType":"YulFunctionCall","src":"2043:40:101"},"nativeSrc":"2043:40:101","nodeType":"YulExpressionStatement","src":"2043:40:101"},{"nativeSrc":"2092:15:101","nodeType":"YulAssignment","src":"2092:15:101","value":{"name":"value","nativeSrc":"2102:5:101","nodeType":"YulIdentifier","src":"2102:5:101"},"variableNames":[{"name":"value0","nativeSrc":"2092:6:101","nodeType":"YulIdentifier","src":"2092:6:101"}]},{"nativeSrc":"2116:46:101","nodeType":"YulVariableDeclaration","src":"2116:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2147:9:101","nodeType":"YulIdentifier","src":"2147:9:101"},{"kind":"number","nativeSrc":"2158:2:101","nodeType":"YulLiteral","src":"2158:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2143:3:101","nodeType":"YulIdentifier","src":"2143:3:101"},"nativeSrc":"2143:18:101","nodeType":"YulFunctionCall","src":"2143:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"2130:12:101","nodeType":"YulIdentifier","src":"2130:12:101"},"nativeSrc":"2130:32:101","nodeType":"YulFunctionCall","src":"2130:32:101"},"variables":[{"name":"offset","nativeSrc":"2120:6:101","nodeType":"YulTypedName","src":"2120:6:101","type":""}]},{"body":{"nativeSrc":"2205:16:101","nodeType":"YulBlock","src":"2205:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2214:1:101","nodeType":"YulLiteral","src":"2214:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2217:1:101","nodeType":"YulLiteral","src":"2217:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2207:6:101","nodeType":"YulIdentifier","src":"2207:6:101"},"nativeSrc":"2207:12:101","nodeType":"YulFunctionCall","src":"2207:12:101"},"nativeSrc":"2207:12:101","nodeType":"YulExpressionStatement","src":"2207:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"2177:6:101","nodeType":"YulIdentifier","src":"2177:6:101"},{"kind":"number","nativeSrc":"2185:18:101","nodeType":"YulLiteral","src":"2185:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2174:2:101","nodeType":"YulIdentifier","src":"2174:2:101"},"nativeSrc":"2174:30:101","nodeType":"YulFunctionCall","src":"2174:30:101"},"nativeSrc":"2171:50:101","nodeType":"YulIf","src":"2171:50:101"},{"nativeSrc":"2230:32:101","nodeType":"YulVariableDeclaration","src":"2230:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2244:9:101","nodeType":"YulIdentifier","src":"2244:9:101"},{"name":"offset","nativeSrc":"2255:6:101","nodeType":"YulIdentifier","src":"2255:6:101"}],"functionName":{"name":"add","nativeSrc":"2240:3:101","nodeType":"YulIdentifier","src":"2240:3:101"},"nativeSrc":"2240:22:101","nodeType":"YulFunctionCall","src":"2240:22:101"},"variables":[{"name":"_1","nativeSrc":"2234:2:101","nodeType":"YulTypedName","src":"2234:2:101","type":""}]},{"body":{"nativeSrc":"2310:16:101","nodeType":"YulBlock","src":"2310:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2319:1:101","nodeType":"YulLiteral","src":"2319:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2322:1:101","nodeType":"YulLiteral","src":"2322:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2312:6:101","nodeType":"YulIdentifier","src":"2312:6:101"},"nativeSrc":"2312:12:101","nodeType":"YulFunctionCall","src":"2312:12:101"},"nativeSrc":"2312:12:101","nodeType":"YulExpressionStatement","src":"2312:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"2289:2:101","nodeType":"YulIdentifier","src":"2289:2:101"},{"kind":"number","nativeSrc":"2293:4:101","nodeType":"YulLiteral","src":"2293:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2285:3:101","nodeType":"YulIdentifier","src":"2285:3:101"},"nativeSrc":"2285:13:101","nodeType":"YulFunctionCall","src":"2285:13:101"},{"name":"dataEnd","nativeSrc":"2300:7:101","nodeType":"YulIdentifier","src":"2300:7:101"}],"functionName":{"name":"slt","nativeSrc":"2281:3:101","nodeType":"YulIdentifier","src":"2281:3:101"},"nativeSrc":"2281:27:101","nodeType":"YulFunctionCall","src":"2281:27:101"}],"functionName":{"name":"iszero","nativeSrc":"2274:6:101","nodeType":"YulIdentifier","src":"2274:6:101"},"nativeSrc":"2274:35:101","nodeType":"YulFunctionCall","src":"2274:35:101"},"nativeSrc":"2271:55:101","nodeType":"YulIf","src":"2271:55:101"},{"nativeSrc":"2335:30:101","nodeType":"YulVariableDeclaration","src":"2335:30:101","value":{"arguments":[{"name":"_1","nativeSrc":"2362:2:101","nodeType":"YulIdentifier","src":"2362:2:101"}],"functionName":{"name":"calldataload","nativeSrc":"2349:12:101","nodeType":"YulIdentifier","src":"2349:12:101"},"nativeSrc":"2349:16:101","nodeType":"YulFunctionCall","src":"2349:16:101"},"variables":[{"name":"length","nativeSrc":"2339:6:101","nodeType":"YulTypedName","src":"2339:6:101","type":""}]},{"body":{"nativeSrc":"2408:22:101","nodeType":"YulBlock","src":"2408:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2410:16:101","nodeType":"YulIdentifier","src":"2410:16:101"},"nativeSrc":"2410:18:101","nodeType":"YulFunctionCall","src":"2410:18:101"},"nativeSrc":"2410:18:101","nodeType":"YulExpressionStatement","src":"2410:18:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"2380:6:101","nodeType":"YulIdentifier","src":"2380:6:101"},{"kind":"number","nativeSrc":"2388:18:101","nodeType":"YulLiteral","src":"2388:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2377:2:101","nodeType":"YulIdentifier","src":"2377:2:101"},"nativeSrc":"2377:30:101","nodeType":"YulFunctionCall","src":"2377:30:101"},"nativeSrc":"2374:56:101","nodeType":"YulIf","src":"2374:56:101"},{"nativeSrc":"2439:70:101","nodeType":"YulVariableDeclaration","src":"2439:70:101","value":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"2480:6:101","nodeType":"YulIdentifier","src":"2480:6:101"},{"kind":"number","nativeSrc":"2488:4:101","nodeType":"YulLiteral","src":"2488:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2476:3:101","nodeType":"YulIdentifier","src":"2476:3:101"},"nativeSrc":"2476:17:101","nodeType":"YulFunctionCall","src":"2476:17:101"},{"arguments":[{"kind":"number","nativeSrc":"2499:2:101","nodeType":"YulLiteral","src":"2499:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"2495:3:101","nodeType":"YulIdentifier","src":"2495:3:101"},"nativeSrc":"2495:7:101","nodeType":"YulFunctionCall","src":"2495:7:101"}],"functionName":{"name":"and","nativeSrc":"2472:3:101","nodeType":"YulIdentifier","src":"2472:3:101"},"nativeSrc":"2472:31:101","nodeType":"YulFunctionCall","src":"2472:31:101"},{"kind":"number","nativeSrc":"2505:2:101","nodeType":"YulLiteral","src":"2505:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2468:3:101","nodeType":"YulIdentifier","src":"2468:3:101"},"nativeSrc":"2468:40:101","nodeType":"YulFunctionCall","src":"2468:40:101"}],"functionName":{"name":"allocate_memory","nativeSrc":"2452:15:101","nodeType":"YulIdentifier","src":"2452:15:101"},"nativeSrc":"2452:57:101","nodeType":"YulFunctionCall","src":"2452:57:101"},"variables":[{"name":"array","nativeSrc":"2443:5:101","nodeType":"YulTypedName","src":"2443:5:101","type":""}]},{"expression":{"arguments":[{"name":"array","nativeSrc":"2525:5:101","nodeType":"YulIdentifier","src":"2525:5:101"},{"name":"length","nativeSrc":"2532:6:101","nodeType":"YulIdentifier","src":"2532:6:101"}],"functionName":{"name":"mstore","nativeSrc":"2518:6:101","nodeType":"YulIdentifier","src":"2518:6:101"},"nativeSrc":"2518:21:101","nodeType":"YulFunctionCall","src":"2518:21:101"},"nativeSrc":"2518:21:101","nodeType":"YulExpressionStatement","src":"2518:21:101"},{"body":{"nativeSrc":"2589:16:101","nodeType":"YulBlock","src":"2589:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2598:1:101","nodeType":"YulLiteral","src":"2598:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2601:1:101","nodeType":"YulLiteral","src":"2601:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2591:6:101","nodeType":"YulIdentifier","src":"2591:6:101"},"nativeSrc":"2591:12:101","nodeType":"YulFunctionCall","src":"2591:12:101"},"nativeSrc":"2591:12:101","nodeType":"YulExpressionStatement","src":"2591:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"2562:2:101","nodeType":"YulIdentifier","src":"2562:2:101"},{"name":"length","nativeSrc":"2566:6:101","nodeType":"YulIdentifier","src":"2566:6:101"}],"functionName":{"name":"add","nativeSrc":"2558:3:101","nodeType":"YulIdentifier","src":"2558:3:101"},"nativeSrc":"2558:15:101","nodeType":"YulFunctionCall","src":"2558:15:101"},{"kind":"number","nativeSrc":"2575:2:101","nodeType":"YulLiteral","src":"2575:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2554:3:101","nodeType":"YulIdentifier","src":"2554:3:101"},"nativeSrc":"2554:24:101","nodeType":"YulFunctionCall","src":"2554:24:101"},{"name":"dataEnd","nativeSrc":"2580:7:101","nodeType":"YulIdentifier","src":"2580:7:101"}],"functionName":{"name":"gt","nativeSrc":"2551:2:101","nodeType":"YulIdentifier","src":"2551:2:101"},"nativeSrc":"2551:37:101","nodeType":"YulFunctionCall","src":"2551:37:101"},"nativeSrc":"2548:57:101","nodeType":"YulIf","src":"2548:57:101"},{"expression":{"arguments":[{"arguments":[{"name":"array","nativeSrc":"2631:5:101","nodeType":"YulIdentifier","src":"2631:5:101"},{"kind":"number","nativeSrc":"2638:2:101","nodeType":"YulLiteral","src":"2638:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2627:3:101","nodeType":"YulIdentifier","src":"2627:3:101"},"nativeSrc":"2627:14:101","nodeType":"YulFunctionCall","src":"2627:14:101"},{"arguments":[{"name":"_1","nativeSrc":"2647:2:101","nodeType":"YulIdentifier","src":"2647:2:101"},{"kind":"number","nativeSrc":"2651:2:101","nodeType":"YulLiteral","src":"2651:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2643:3:101","nodeType":"YulIdentifier","src":"2643:3:101"},"nativeSrc":"2643:11:101","nodeType":"YulFunctionCall","src":"2643:11:101"},{"name":"length","nativeSrc":"2656:6:101","nodeType":"YulIdentifier","src":"2656:6:101"}],"functionName":{"name":"calldatacopy","nativeSrc":"2614:12:101","nodeType":"YulIdentifier","src":"2614:12:101"},"nativeSrc":"2614:49:101","nodeType":"YulFunctionCall","src":"2614:49:101"},"nativeSrc":"2614:49:101","nodeType":"YulExpressionStatement","src":"2614:49:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"array","nativeSrc":"2687:5:101","nodeType":"YulIdentifier","src":"2687:5:101"},{"name":"length","nativeSrc":"2694:6:101","nodeType":"YulIdentifier","src":"2694:6:101"}],"functionName":{"name":"add","nativeSrc":"2683:3:101","nodeType":"YulIdentifier","src":"2683:3:101"},"nativeSrc":"2683:18:101","nodeType":"YulFunctionCall","src":"2683:18:101"},{"kind":"number","nativeSrc":"2703:2:101","nodeType":"YulLiteral","src":"2703:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2679:3:101","nodeType":"YulIdentifier","src":"2679:3:101"},"nativeSrc":"2679:27:101","nodeType":"YulFunctionCall","src":"2679:27:101"},{"kind":"number","nativeSrc":"2708:1:101","nodeType":"YulLiteral","src":"2708:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"2672:6:101","nodeType":"YulIdentifier","src":"2672:6:101"},"nativeSrc":"2672:38:101","nodeType":"YulFunctionCall","src":"2672:38:101"},"nativeSrc":"2672:38:101","nodeType":"YulExpressionStatement","src":"2672:38:101"},{"nativeSrc":"2719:15:101","nodeType":"YulAssignment","src":"2719:15:101","value":{"name":"array","nativeSrc":"2729:5:101","nodeType":"YulIdentifier","src":"2729:5:101"},"variableNames":[{"name":"value1","nativeSrc":"2719:6:101","nodeType":"YulIdentifier","src":"2719:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr","nativeSrc":"1831:909:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1885:9:101","nodeType":"YulTypedName","src":"1885:9:101","type":""},{"name":"dataEnd","nativeSrc":"1896:7:101","nodeType":"YulTypedName","src":"1896:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1908:6:101","nodeType":"YulTypedName","src":"1908:6:101","type":""},{"name":"value1","nativeSrc":"1916:6:101","nodeType":"YulTypedName","src":"1916:6:101","type":""}],"src":"1831:909:101"},{"body":{"nativeSrc":"2846:76:101","nodeType":"YulBlock","src":"2846:76:101","statements":[{"nativeSrc":"2856:26:101","nodeType":"YulAssignment","src":"2856:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2868:9:101","nodeType":"YulIdentifier","src":"2868:9:101"},{"kind":"number","nativeSrc":"2879:2:101","nodeType":"YulLiteral","src":"2879:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2864:3:101","nodeType":"YulIdentifier","src":"2864:3:101"},"nativeSrc":"2864:18:101","nodeType":"YulFunctionCall","src":"2864:18:101"},"variableNames":[{"name":"tail","nativeSrc":"2856:4:101","nodeType":"YulIdentifier","src":"2856:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2898:9:101","nodeType":"YulIdentifier","src":"2898:9:101"},{"name":"value0","nativeSrc":"2909:6:101","nodeType":"YulIdentifier","src":"2909:6:101"}],"functionName":{"name":"mstore","nativeSrc":"2891:6:101","nodeType":"YulIdentifier","src":"2891:6:101"},"nativeSrc":"2891:25:101","nodeType":"YulFunctionCall","src":"2891:25:101"},"nativeSrc":"2891:25:101","nodeType":"YulExpressionStatement","src":"2891:25:101"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"2745:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2815:9:101","nodeType":"YulTypedName","src":"2815:9:101","type":""},{"name":"value0","nativeSrc":"2826:6:101","nodeType":"YulTypedName","src":"2826:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2837:4:101","nodeType":"YulTypedName","src":"2837:4:101","type":""}],"src":"2745:177:101"},{"body":{"nativeSrc":"3065:556:101","nodeType":"YulBlock","src":"3065:556:101","statements":[{"body":{"nativeSrc":"3112:16:101","nodeType":"YulBlock","src":"3112:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3121:1:101","nodeType":"YulLiteral","src":"3121:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3124:1:101","nodeType":"YulLiteral","src":"3124:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3114:6:101","nodeType":"YulIdentifier","src":"3114:6:101"},"nativeSrc":"3114:12:101","nodeType":"YulFunctionCall","src":"3114:12:101"},"nativeSrc":"3114:12:101","nodeType":"YulExpressionStatement","src":"3114:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3086:7:101","nodeType":"YulIdentifier","src":"3086:7:101"},{"name":"headStart","nativeSrc":"3095:9:101","nodeType":"YulIdentifier","src":"3095:9:101"}],"functionName":{"name":"sub","nativeSrc":"3082:3:101","nodeType":"YulIdentifier","src":"3082:3:101"},"nativeSrc":"3082:23:101","nodeType":"YulFunctionCall","src":"3082:23:101"},{"kind":"number","nativeSrc":"3107:3:101","nodeType":"YulLiteral","src":"3107:3:101","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"3078:3:101","nodeType":"YulIdentifier","src":"3078:3:101"},"nativeSrc":"3078:33:101","nodeType":"YulFunctionCall","src":"3078:33:101"},"nativeSrc":"3075:53:101","nodeType":"YulIf","src":"3075:53:101"},{"nativeSrc":"3137:36:101","nodeType":"YulVariableDeclaration","src":"3137:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3163:9:101","nodeType":"YulIdentifier","src":"3163:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"3150:12:101","nodeType":"YulIdentifier","src":"3150:12:101"},"nativeSrc":"3150:23:101","nodeType":"YulFunctionCall","src":"3150:23:101"},"variables":[{"name":"value","nativeSrc":"3141:5:101","nodeType":"YulTypedName","src":"3141:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3216:5:101","nodeType":"YulIdentifier","src":"3216:5:101"}],"functionName":{"name":"validator_revert_contract_IEToken","nativeSrc":"3182:33:101","nodeType":"YulIdentifier","src":"3182:33:101"},"nativeSrc":"3182:40:101","nodeType":"YulFunctionCall","src":"3182:40:101"},"nativeSrc":"3182:40:101","nodeType":"YulExpressionStatement","src":"3182:40:101"},{"nativeSrc":"3231:15:101","nodeType":"YulAssignment","src":"3231:15:101","value":{"name":"value","nativeSrc":"3241:5:101","nodeType":"YulIdentifier","src":"3241:5:101"},"variableNames":[{"name":"value0","nativeSrc":"3231:6:101","nodeType":"YulIdentifier","src":"3231:6:101"}]},{"nativeSrc":"3255:47:101","nodeType":"YulVariableDeclaration","src":"3255:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3287:9:101","nodeType":"YulIdentifier","src":"3287:9:101"},{"kind":"number","nativeSrc":"3298:2:101","nodeType":"YulLiteral","src":"3298:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3283:3:101","nodeType":"YulIdentifier","src":"3283:3:101"},"nativeSrc":"3283:18:101","nodeType":"YulFunctionCall","src":"3283:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3270:12:101","nodeType":"YulIdentifier","src":"3270:12:101"},"nativeSrc":"3270:32:101","nodeType":"YulFunctionCall","src":"3270:32:101"},"variables":[{"name":"value_1","nativeSrc":"3259:7:101","nodeType":"YulTypedName","src":"3259:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"3345:7:101","nodeType":"YulIdentifier","src":"3345:7:101"}],"functionName":{"name":"validator_revert_contract_IEToken","nativeSrc":"3311:33:101","nodeType":"YulIdentifier","src":"3311:33:101"},"nativeSrc":"3311:42:101","nodeType":"YulFunctionCall","src":"3311:42:101"},"nativeSrc":"3311:42:101","nodeType":"YulExpressionStatement","src":"3311:42:101"},{"nativeSrc":"3362:17:101","nodeType":"YulAssignment","src":"3362:17:101","value":{"name":"value_1","nativeSrc":"3372:7:101","nodeType":"YulIdentifier","src":"3372:7:101"},"variableNames":[{"name":"value1","nativeSrc":"3362:6:101","nodeType":"YulIdentifier","src":"3362:6:101"}]},{"nativeSrc":"3388:47:101","nodeType":"YulVariableDeclaration","src":"3388:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3420:9:101","nodeType":"YulIdentifier","src":"3420:9:101"},{"kind":"number","nativeSrc":"3431:2:101","nodeType":"YulLiteral","src":"3431:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3416:3:101","nodeType":"YulIdentifier","src":"3416:3:101"},"nativeSrc":"3416:18:101","nodeType":"YulFunctionCall","src":"3416:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3403:12:101","nodeType":"YulIdentifier","src":"3403:12:101"},"nativeSrc":"3403:32:101","nodeType":"YulFunctionCall","src":"3403:32:101"},"variables":[{"name":"value_2","nativeSrc":"3392:7:101","nodeType":"YulTypedName","src":"3392:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"3478:7:101","nodeType":"YulIdentifier","src":"3478:7:101"}],"functionName":{"name":"validator_revert_contract_IEToken","nativeSrc":"3444:33:101","nodeType":"YulIdentifier","src":"3444:33:101"},"nativeSrc":"3444:42:101","nodeType":"YulFunctionCall","src":"3444:42:101"},"nativeSrc":"3444:42:101","nodeType":"YulExpressionStatement","src":"3444:42:101"},{"nativeSrc":"3495:17:101","nodeType":"YulAssignment","src":"3495:17:101","value":{"name":"value_2","nativeSrc":"3505:7:101","nodeType":"YulIdentifier","src":"3505:7:101"},"variableNames":[{"name":"value2","nativeSrc":"3495:6:101","nodeType":"YulIdentifier","src":"3495:6:101"}]},{"nativeSrc":"3521:16:101","nodeType":"YulVariableDeclaration","src":"3521:16:101","value":{"kind":"number","nativeSrc":"3536:1:101","nodeType":"YulLiteral","src":"3536:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"3525:7:101","nodeType":"YulTypedName","src":"3525:7:101","type":""}]},{"nativeSrc":"3546:43:101","nodeType":"YulAssignment","src":"3546:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3574:9:101","nodeType":"YulIdentifier","src":"3574:9:101"},{"kind":"number","nativeSrc":"3585:2:101","nodeType":"YulLiteral","src":"3585:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3570:3:101","nodeType":"YulIdentifier","src":"3570:3:101"},"nativeSrc":"3570:18:101","nodeType":"YulFunctionCall","src":"3570:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3557:12:101","nodeType":"YulIdentifier","src":"3557:12:101"},"nativeSrc":"3557:32:101","nodeType":"YulFunctionCall","src":"3557:32:101"},"variableNames":[{"name":"value_3","nativeSrc":"3546:7:101","nodeType":"YulIdentifier","src":"3546:7:101"}]},{"nativeSrc":"3598:17:101","nodeType":"YulAssignment","src":"3598:17:101","value":{"name":"value_3","nativeSrc":"3608:7:101","nodeType":"YulIdentifier","src":"3608:7:101"},"variableNames":[{"name":"value3","nativeSrc":"3598:6:101","nodeType":"YulIdentifier","src":"3598:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$28869t_addresst_addresst_uint256","nativeSrc":"2927:694:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3007:9:101","nodeType":"YulTypedName","src":"3007:9:101","type":""},{"name":"dataEnd","nativeSrc":"3018:7:101","nodeType":"YulTypedName","src":"3018:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3030:6:101","nodeType":"YulTypedName","src":"3030:6:101","type":""},{"name":"value1","nativeSrc":"3038:6:101","nodeType":"YulTypedName","src":"3038:6:101","type":""},{"name":"value2","nativeSrc":"3046:6:101","nodeType":"YulTypedName","src":"3046:6:101","type":""},{"name":"value3","nativeSrc":"3054:6:101","nodeType":"YulTypedName","src":"3054:6:101","type":""}],"src":"2927:694:101"},{"body":{"nativeSrc":"3704:86:101","nodeType":"YulBlock","src":"3704:86:101","statements":[{"body":{"nativeSrc":"3744:16:101","nodeType":"YulBlock","src":"3744:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3753:1:101","nodeType":"YulLiteral","src":"3753:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3756:1:101","nodeType":"YulLiteral","src":"3756:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3746:6:101","nodeType":"YulIdentifier","src":"3746:6:101"},"nativeSrc":"3746:12:101","nodeType":"YulFunctionCall","src":"3746:12:101"},"nativeSrc":"3746:12:101","nodeType":"YulExpressionStatement","src":"3746:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"3725:3:101","nodeType":"YulIdentifier","src":"3725:3:101"},{"name":"offset","nativeSrc":"3730:6:101","nodeType":"YulIdentifier","src":"3730:6:101"}],"functionName":{"name":"sub","nativeSrc":"3721:3:101","nodeType":"YulIdentifier","src":"3721:3:101"},"nativeSrc":"3721:16:101","nodeType":"YulFunctionCall","src":"3721:16:101"},{"kind":"number","nativeSrc":"3739:3:101","nodeType":"YulLiteral","src":"3739:3:101","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"3717:3:101","nodeType":"YulIdentifier","src":"3717:3:101"},"nativeSrc":"3717:26:101","nodeType":"YulFunctionCall","src":"3717:26:101"},"nativeSrc":"3714:46:101","nodeType":"YulIf","src":"3714:46:101"},{"nativeSrc":"3769:15:101","nodeType":"YulAssignment","src":"3769:15:101","value":{"name":"offset","nativeSrc":"3778:6:101","nodeType":"YulIdentifier","src":"3778:6:101"},"variableNames":[{"name":"value","nativeSrc":"3769:5:101","nodeType":"YulIdentifier","src":"3769:5:101"}]}]},"name":"abi_decode_struct_WhitelistStatus_calldata","nativeSrc":"3626:164:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"3678:6:101","nodeType":"YulTypedName","src":"3678:6:101","type":""},{"name":"end","nativeSrc":"3686:3:101","nodeType":"YulTypedName","src":"3686:3:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"3694:5:101","nodeType":"YulTypedName","src":"3694:5:101","type":""}],"src":"3626:164:101"},{"body":{"nativeSrc":"3918:277:101","nodeType":"YulBlock","src":"3918:277:101","statements":[{"body":{"nativeSrc":"3965:16:101","nodeType":"YulBlock","src":"3965:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3974:1:101","nodeType":"YulLiteral","src":"3974:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3977:1:101","nodeType":"YulLiteral","src":"3977:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3967:6:101","nodeType":"YulIdentifier","src":"3967:6:101"},"nativeSrc":"3967:12:101","nodeType":"YulFunctionCall","src":"3967:12:101"},"nativeSrc":"3967:12:101","nodeType":"YulExpressionStatement","src":"3967:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3939:7:101","nodeType":"YulIdentifier","src":"3939:7:101"},{"name":"headStart","nativeSrc":"3948:9:101","nodeType":"YulIdentifier","src":"3948:9:101"}],"functionName":{"name":"sub","nativeSrc":"3935:3:101","nodeType":"YulIdentifier","src":"3935:3:101"},"nativeSrc":"3935:23:101","nodeType":"YulFunctionCall","src":"3935:23:101"},{"kind":"number","nativeSrc":"3960:3:101","nodeType":"YulLiteral","src":"3960:3:101","type":"","value":"160"}],"functionName":{"name":"slt","nativeSrc":"3931:3:101","nodeType":"YulIdentifier","src":"3931:3:101"},"nativeSrc":"3931:33:101","nodeType":"YulFunctionCall","src":"3931:33:101"},"nativeSrc":"3928:53:101","nodeType":"YulIf","src":"3928:53:101"},{"nativeSrc":"3990:36:101","nodeType":"YulVariableDeclaration","src":"3990:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4016:9:101","nodeType":"YulIdentifier","src":"4016:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"4003:12:101","nodeType":"YulIdentifier","src":"4003:12:101"},"nativeSrc":"4003:23:101","nodeType":"YulFunctionCall","src":"4003:23:101"},"variables":[{"name":"value","nativeSrc":"3994:5:101","nodeType":"YulTypedName","src":"3994:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4069:5:101","nodeType":"YulIdentifier","src":"4069:5:101"}],"functionName":{"name":"validator_revert_contract_IEToken","nativeSrc":"4035:33:101","nodeType":"YulIdentifier","src":"4035:33:101"},"nativeSrc":"4035:40:101","nodeType":"YulFunctionCall","src":"4035:40:101"},"nativeSrc":"4035:40:101","nodeType":"YulExpressionStatement","src":"4035:40:101"},{"nativeSrc":"4084:15:101","nodeType":"YulAssignment","src":"4084:15:101","value":{"name":"value","nativeSrc":"4094:5:101","nodeType":"YulIdentifier","src":"4094:5:101"},"variableNames":[{"name":"value0","nativeSrc":"4084:6:101","nodeType":"YulIdentifier","src":"4084:6:101"}]},{"nativeSrc":"4108:81:101","nodeType":"YulAssignment","src":"4108:81:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4165:9:101","nodeType":"YulIdentifier","src":"4165:9:101"},{"kind":"number","nativeSrc":"4176:2:101","nodeType":"YulLiteral","src":"4176:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4161:3:101","nodeType":"YulIdentifier","src":"4161:3:101"},"nativeSrc":"4161:18:101","nodeType":"YulFunctionCall","src":"4161:18:101"},{"name":"dataEnd","nativeSrc":"4181:7:101","nodeType":"YulIdentifier","src":"4181:7:101"}],"functionName":{"name":"abi_decode_struct_WhitelistStatus_calldata","nativeSrc":"4118:42:101","nodeType":"YulIdentifier","src":"4118:42:101"},"nativeSrc":"4118:71:101","nodeType":"YulFunctionCall","src":"4118:71:101"},"variableNames":[{"name":"value1","nativeSrc":"4108:6:101","nodeType":"YulIdentifier","src":"4108:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_struct$_WhitelistStatus_$21788_calldata_ptr","nativeSrc":"3795:400:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3876:9:101","nodeType":"YulTypedName","src":"3876:9:101","type":""},{"name":"dataEnd","nativeSrc":"3887:7:101","nodeType":"YulTypedName","src":"3887:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3899:6:101","nodeType":"YulTypedName","src":"3899:6:101","type":""},{"name":"value1","nativeSrc":"3907:6:101","nodeType":"YulTypedName","src":"3907:6:101","type":""}],"src":"3795:400:101"},{"body":{"nativeSrc":"4306:150:101","nodeType":"YulBlock","src":"4306:150:101","statements":[{"body":{"nativeSrc":"4353:16:101","nodeType":"YulBlock","src":"4353:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4362:1:101","nodeType":"YulLiteral","src":"4362:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4365:1:101","nodeType":"YulLiteral","src":"4365:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4355:6:101","nodeType":"YulIdentifier","src":"4355:6:101"},"nativeSrc":"4355:12:101","nodeType":"YulFunctionCall","src":"4355:12:101"},"nativeSrc":"4355:12:101","nodeType":"YulExpressionStatement","src":"4355:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4327:7:101","nodeType":"YulIdentifier","src":"4327:7:101"},{"name":"headStart","nativeSrc":"4336:9:101","nodeType":"YulIdentifier","src":"4336:9:101"}],"functionName":{"name":"sub","nativeSrc":"4323:3:101","nodeType":"YulIdentifier","src":"4323:3:101"},"nativeSrc":"4323:23:101","nodeType":"YulFunctionCall","src":"4323:23:101"},{"kind":"number","nativeSrc":"4348:3:101","nodeType":"YulLiteral","src":"4348:3:101","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"4319:3:101","nodeType":"YulIdentifier","src":"4319:3:101"},"nativeSrc":"4319:33:101","nodeType":"YulFunctionCall","src":"4319:33:101"},"nativeSrc":"4316:53:101","nodeType":"YulIf","src":"4316:53:101"},{"nativeSrc":"4378:72:101","nodeType":"YulAssignment","src":"4378:72:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4431:9:101","nodeType":"YulIdentifier","src":"4431:9:101"},{"name":"dataEnd","nativeSrc":"4442:7:101","nodeType":"YulIdentifier","src":"4442:7:101"}],"functionName":{"name":"abi_decode_struct_WhitelistStatus_calldata","nativeSrc":"4388:42:101","nodeType":"YulIdentifier","src":"4388:42:101"},"nativeSrc":"4388:62:101","nodeType":"YulFunctionCall","src":"4388:62:101"},"variableNames":[{"name":"value0","nativeSrc":"4378:6:101","nodeType":"YulIdentifier","src":"4378:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_WhitelistStatus_$21788_calldata_ptr","nativeSrc":"4200:256:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4272:9:101","nodeType":"YulTypedName","src":"4272:9:101","type":""},{"name":"dataEnd","nativeSrc":"4283:7:101","nodeType":"YulTypedName","src":"4283:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4295:6:101","nodeType":"YulTypedName","src":"4295:6:101","type":""}],"src":"4200:256:101"},{"body":{"nativeSrc":"4582:297:101","nodeType":"YulBlock","src":"4582:297:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4599:9:101","nodeType":"YulIdentifier","src":"4599:9:101"},{"kind":"number","nativeSrc":"4610:2:101","nodeType":"YulLiteral","src":"4610:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"4592:6:101","nodeType":"YulIdentifier","src":"4592:6:101"},"nativeSrc":"4592:21:101","nodeType":"YulFunctionCall","src":"4592:21:101"},"nativeSrc":"4592:21:101","nodeType":"YulExpressionStatement","src":"4592:21:101"},{"nativeSrc":"4622:27:101","nodeType":"YulVariableDeclaration","src":"4622:27:101","value":{"arguments":[{"name":"value0","nativeSrc":"4642:6:101","nodeType":"YulIdentifier","src":"4642:6:101"}],"functionName":{"name":"mload","nativeSrc":"4636:5:101","nodeType":"YulIdentifier","src":"4636:5:101"},"nativeSrc":"4636:13:101","nodeType":"YulFunctionCall","src":"4636:13:101"},"variables":[{"name":"length","nativeSrc":"4626:6:101","nodeType":"YulTypedName","src":"4626:6:101","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4669:9:101","nodeType":"YulIdentifier","src":"4669:9:101"},{"kind":"number","nativeSrc":"4680:2:101","nodeType":"YulLiteral","src":"4680:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4665:3:101","nodeType":"YulIdentifier","src":"4665:3:101"},"nativeSrc":"4665:18:101","nodeType":"YulFunctionCall","src":"4665:18:101"},{"name":"length","nativeSrc":"4685:6:101","nodeType":"YulIdentifier","src":"4685:6:101"}],"functionName":{"name":"mstore","nativeSrc":"4658:6:101","nodeType":"YulIdentifier","src":"4658:6:101"},"nativeSrc":"4658:34:101","nodeType":"YulFunctionCall","src":"4658:34:101"},"nativeSrc":"4658:34:101","nodeType":"YulExpressionStatement","src":"4658:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4711:9:101","nodeType":"YulIdentifier","src":"4711:9:101"},{"kind":"number","nativeSrc":"4722:2:101","nodeType":"YulLiteral","src":"4722:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4707:3:101","nodeType":"YulIdentifier","src":"4707:3:101"},"nativeSrc":"4707:18:101","nodeType":"YulFunctionCall","src":"4707:18:101"},{"arguments":[{"name":"value0","nativeSrc":"4731:6:101","nodeType":"YulIdentifier","src":"4731:6:101"},{"kind":"number","nativeSrc":"4739:2:101","nodeType":"YulLiteral","src":"4739:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4727:3:101","nodeType":"YulIdentifier","src":"4727:3:101"},"nativeSrc":"4727:15:101","nodeType":"YulFunctionCall","src":"4727:15:101"},{"name":"length","nativeSrc":"4744:6:101","nodeType":"YulIdentifier","src":"4744:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"4701:5:101","nodeType":"YulIdentifier","src":"4701:5:101"},"nativeSrc":"4701:50:101","nodeType":"YulFunctionCall","src":"4701:50:101"},"nativeSrc":"4701:50:101","nodeType":"YulExpressionStatement","src":"4701:50:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4775:9:101","nodeType":"YulIdentifier","src":"4775:9:101"},{"name":"length","nativeSrc":"4786:6:101","nodeType":"YulIdentifier","src":"4786:6:101"}],"functionName":{"name":"add","nativeSrc":"4771:3:101","nodeType":"YulIdentifier","src":"4771:3:101"},"nativeSrc":"4771:22:101","nodeType":"YulFunctionCall","src":"4771:22:101"},{"kind":"number","nativeSrc":"4795:2:101","nodeType":"YulLiteral","src":"4795:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4767:3:101","nodeType":"YulIdentifier","src":"4767:3:101"},"nativeSrc":"4767:31:101","nodeType":"YulFunctionCall","src":"4767:31:101"},{"kind":"number","nativeSrc":"4800:1:101","nodeType":"YulLiteral","src":"4800:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"4760:6:101","nodeType":"YulIdentifier","src":"4760:6:101"},"nativeSrc":"4760:42:101","nodeType":"YulFunctionCall","src":"4760:42:101"},"nativeSrc":"4760:42:101","nodeType":"YulExpressionStatement","src":"4760:42:101"},{"nativeSrc":"4811:62:101","nodeType":"YulAssignment","src":"4811:62:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4827:9:101","nodeType":"YulIdentifier","src":"4827:9:101"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"4846:6:101","nodeType":"YulIdentifier","src":"4846:6:101"},{"kind":"number","nativeSrc":"4854:2:101","nodeType":"YulLiteral","src":"4854:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"4842:3:101","nodeType":"YulIdentifier","src":"4842:3:101"},"nativeSrc":"4842:15:101","nodeType":"YulFunctionCall","src":"4842:15:101"},{"arguments":[{"kind":"number","nativeSrc":"4863:2:101","nodeType":"YulLiteral","src":"4863:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"4859:3:101","nodeType":"YulIdentifier","src":"4859:3:101"},"nativeSrc":"4859:7:101","nodeType":"YulFunctionCall","src":"4859:7:101"}],"functionName":{"name":"and","nativeSrc":"4838:3:101","nodeType":"YulIdentifier","src":"4838:3:101"},"nativeSrc":"4838:29:101","nodeType":"YulFunctionCall","src":"4838:29:101"}],"functionName":{"name":"add","nativeSrc":"4823:3:101","nodeType":"YulIdentifier","src":"4823:3:101"},"nativeSrc":"4823:45:101","nodeType":"YulFunctionCall","src":"4823:45:101"},{"kind":"number","nativeSrc":"4870:2:101","nodeType":"YulLiteral","src":"4870:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4819:3:101","nodeType":"YulIdentifier","src":"4819:3:101"},"nativeSrc":"4819:54:101","nodeType":"YulFunctionCall","src":"4819:54:101"},"variableNames":[{"name":"tail","nativeSrc":"4811:4:101","nodeType":"YulIdentifier","src":"4811:4:101"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"4461:418:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4551:9:101","nodeType":"YulTypedName","src":"4551:9:101","type":""},{"name":"value0","nativeSrc":"4562:6:101","nodeType":"YulTypedName","src":"4562:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4573:4:101","nodeType":"YulTypedName","src":"4573:4:101","type":""}],"src":"4461:418:101"},{"body":{"nativeSrc":"5008:102:101","nodeType":"YulBlock","src":"5008:102:101","statements":[{"nativeSrc":"5018:26:101","nodeType":"YulAssignment","src":"5018:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5030:9:101","nodeType":"YulIdentifier","src":"5030:9:101"},{"kind":"number","nativeSrc":"5041:2:101","nodeType":"YulLiteral","src":"5041:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5026:3:101","nodeType":"YulIdentifier","src":"5026:3:101"},"nativeSrc":"5026:18:101","nodeType":"YulFunctionCall","src":"5026:18:101"},"variableNames":[{"name":"tail","nativeSrc":"5018:4:101","nodeType":"YulIdentifier","src":"5018:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5060:9:101","nodeType":"YulIdentifier","src":"5060:9:101"},{"arguments":[{"name":"value0","nativeSrc":"5075:6:101","nodeType":"YulIdentifier","src":"5075:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5091:3:101","nodeType":"YulLiteral","src":"5091:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"5096:1:101","nodeType":"YulLiteral","src":"5096:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5087:3:101","nodeType":"YulIdentifier","src":"5087:3:101"},"nativeSrc":"5087:11:101","nodeType":"YulFunctionCall","src":"5087:11:101"},{"kind":"number","nativeSrc":"5100:1:101","nodeType":"YulLiteral","src":"5100:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5083:3:101","nodeType":"YulIdentifier","src":"5083:3:101"},"nativeSrc":"5083:19:101","nodeType":"YulFunctionCall","src":"5083:19:101"}],"functionName":{"name":"and","nativeSrc":"5071:3:101","nodeType":"YulIdentifier","src":"5071:3:101"},"nativeSrc":"5071:32:101","nodeType":"YulFunctionCall","src":"5071:32:101"}],"functionName":{"name":"mstore","nativeSrc":"5053:6:101","nodeType":"YulIdentifier","src":"5053:6:101"},"nativeSrc":"5053:51:101","nodeType":"YulFunctionCall","src":"5053:51:101"},"nativeSrc":"5053:51:101","nodeType":"YulExpressionStatement","src":"5053:51:101"}]},"name":"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed","nativeSrc":"4884:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4977:9:101","nodeType":"YulTypedName","src":"4977:9:101","type":""},{"name":"value0","nativeSrc":"4988:6:101","nodeType":"YulTypedName","src":"4988:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4999:4:101","nodeType":"YulTypedName","src":"4999:4:101","type":""}],"src":"4884:226:101"},{"body":{"nativeSrc":"5147:95:101","nodeType":"YulBlock","src":"5147:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5164:1:101","nodeType":"YulLiteral","src":"5164:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5171:3:101","nodeType":"YulLiteral","src":"5171:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"5176:10:101","nodeType":"YulLiteral","src":"5176:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5167:3:101","nodeType":"YulIdentifier","src":"5167:3:101"},"nativeSrc":"5167:20:101","nodeType":"YulFunctionCall","src":"5167:20:101"}],"functionName":{"name":"mstore","nativeSrc":"5157:6:101","nodeType":"YulIdentifier","src":"5157:6:101"},"nativeSrc":"5157:31:101","nodeType":"YulFunctionCall","src":"5157:31:101"},"nativeSrc":"5157:31:101","nodeType":"YulExpressionStatement","src":"5157:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5204:1:101","nodeType":"YulLiteral","src":"5204:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"5207:4:101","nodeType":"YulLiteral","src":"5207:4:101","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"5197:6:101","nodeType":"YulIdentifier","src":"5197:6:101"},"nativeSrc":"5197:15:101","nodeType":"YulFunctionCall","src":"5197:15:101"},"nativeSrc":"5197:15:101","nodeType":"YulExpressionStatement","src":"5197:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5228:1:101","nodeType":"YulLiteral","src":"5228:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5231:4:101","nodeType":"YulLiteral","src":"5231:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5221:6:101","nodeType":"YulIdentifier","src":"5221:6:101"},"nativeSrc":"5221:15:101","nodeType":"YulFunctionCall","src":"5221:15:101"},"nativeSrc":"5221:15:101","nodeType":"YulExpressionStatement","src":"5221:15:101"}]},"name":"panic_error_0x21","nativeSrc":"5115:127:101","nodeType":"YulFunctionDefinition","src":"5115:127:101"},{"body":{"nativeSrc":"5305:186:101","nodeType":"YulBlock","src":"5305:186:101","statements":[{"body":{"nativeSrc":"5347:111:101","nodeType":"YulBlock","src":"5347:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5368:1:101","nodeType":"YulLiteral","src":"5368:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5375:3:101","nodeType":"YulLiteral","src":"5375:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"5380:10:101","nodeType":"YulLiteral","src":"5380:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5371:3:101","nodeType":"YulIdentifier","src":"5371:3:101"},"nativeSrc":"5371:20:101","nodeType":"YulFunctionCall","src":"5371:20:101"}],"functionName":{"name":"mstore","nativeSrc":"5361:6:101","nodeType":"YulIdentifier","src":"5361:6:101"},"nativeSrc":"5361:31:101","nodeType":"YulFunctionCall","src":"5361:31:101"},"nativeSrc":"5361:31:101","nodeType":"YulExpressionStatement","src":"5361:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5412:1:101","nodeType":"YulLiteral","src":"5412:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"5415:4:101","nodeType":"YulLiteral","src":"5415:4:101","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"5405:6:101","nodeType":"YulIdentifier","src":"5405:6:101"},"nativeSrc":"5405:15:101","nodeType":"YulFunctionCall","src":"5405:15:101"},"nativeSrc":"5405:15:101","nodeType":"YulExpressionStatement","src":"5405:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5440:1:101","nodeType":"YulLiteral","src":"5440:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5443:4:101","nodeType":"YulLiteral","src":"5443:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5433:6:101","nodeType":"YulIdentifier","src":"5433:6:101"},"nativeSrc":"5433:15:101","nodeType":"YulFunctionCall","src":"5433:15:101"},"nativeSrc":"5433:15:101","nodeType":"YulExpressionStatement","src":"5433:15:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5328:5:101","nodeType":"YulIdentifier","src":"5328:5:101"},{"kind":"number","nativeSrc":"5335:1:101","nodeType":"YulLiteral","src":"5335:1:101","type":"","value":"3"}],"functionName":{"name":"lt","nativeSrc":"5325:2:101","nodeType":"YulIdentifier","src":"5325:2:101"},"nativeSrc":"5325:12:101","nodeType":"YulFunctionCall","src":"5325:12:101"}],"functionName":{"name":"iszero","nativeSrc":"5318:6:101","nodeType":"YulIdentifier","src":"5318:6:101"},"nativeSrc":"5318:20:101","nodeType":"YulFunctionCall","src":"5318:20:101"},"nativeSrc":"5315:143:101","nodeType":"YulIf","src":"5315:143:101"},{"expression":{"arguments":[{"name":"pos","nativeSrc":"5474:3:101","nodeType":"YulIdentifier","src":"5474:3:101"},{"name":"value","nativeSrc":"5479:5:101","nodeType":"YulIdentifier","src":"5479:5:101"}],"functionName":{"name":"mstore","nativeSrc":"5467:6:101","nodeType":"YulIdentifier","src":"5467:6:101"},"nativeSrc":"5467:18:101","nodeType":"YulFunctionCall","src":"5467:18:101"},"nativeSrc":"5467:18:101","nodeType":"YulExpressionStatement","src":"5467:18:101"}]},"name":"abi_encode_enum_WhitelistOptions","nativeSrc":"5247:244:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"5289:5:101","nodeType":"YulTypedName","src":"5289:5:101","type":""},{"name":"pos","nativeSrc":"5296:3:101","nodeType":"YulTypedName","src":"5296:3:101","type":""}],"src":"5247:244:101"},{"body":{"nativeSrc":"5555:444:101","nodeType":"YulBlock","src":"5555:444:101","statements":[{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5604:5:101","nodeType":"YulIdentifier","src":"5604:5:101"}],"functionName":{"name":"mload","nativeSrc":"5598:5:101","nodeType":"YulIdentifier","src":"5598:5:101"},"nativeSrc":"5598:12:101","nodeType":"YulFunctionCall","src":"5598:12:101"},{"name":"pos","nativeSrc":"5612:3:101","nodeType":"YulIdentifier","src":"5612:3:101"}],"functionName":{"name":"abi_encode_enum_WhitelistOptions","nativeSrc":"5565:32:101","nodeType":"YulIdentifier","src":"5565:32:101"},"nativeSrc":"5565:51:101","nodeType":"YulFunctionCall","src":"5565:51:101"},"nativeSrc":"5565:51:101","nodeType":"YulExpressionStatement","src":"5565:51:101"},{"nativeSrc":"5625:43:101","nodeType":"YulVariableDeclaration","src":"5625:43:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5655:5:101","nodeType":"YulIdentifier","src":"5655:5:101"},{"kind":"number","nativeSrc":"5662:4:101","nodeType":"YulLiteral","src":"5662:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5651:3:101","nodeType":"YulIdentifier","src":"5651:3:101"},"nativeSrc":"5651:16:101","nodeType":"YulFunctionCall","src":"5651:16:101"}],"functionName":{"name":"mload","nativeSrc":"5645:5:101","nodeType":"YulIdentifier","src":"5645:5:101"},"nativeSrc":"5645:23:101","nodeType":"YulFunctionCall","src":"5645:23:101"},"variables":[{"name":"memberValue0","nativeSrc":"5629:12:101","nodeType":"YulTypedName","src":"5629:12:101","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"5710:12:101","nodeType":"YulIdentifier","src":"5710:12:101"},{"arguments":[{"name":"pos","nativeSrc":"5728:3:101","nodeType":"YulIdentifier","src":"5728:3:101"},{"kind":"number","nativeSrc":"5733:4:101","nodeType":"YulLiteral","src":"5733:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5724:3:101","nodeType":"YulIdentifier","src":"5724:3:101"},"nativeSrc":"5724:14:101","nodeType":"YulFunctionCall","src":"5724:14:101"}],"functionName":{"name":"abi_encode_enum_WhitelistOptions","nativeSrc":"5677:32:101","nodeType":"YulIdentifier","src":"5677:32:101"},"nativeSrc":"5677:62:101","nodeType":"YulFunctionCall","src":"5677:62:101"},"nativeSrc":"5677:62:101","nodeType":"YulExpressionStatement","src":"5677:62:101"},{"nativeSrc":"5748:45:101","nodeType":"YulVariableDeclaration","src":"5748:45:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5780:5:101","nodeType":"YulIdentifier","src":"5780:5:101"},{"kind":"number","nativeSrc":"5787:4:101","nodeType":"YulLiteral","src":"5787:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"5776:3:101","nodeType":"YulIdentifier","src":"5776:3:101"},"nativeSrc":"5776:16:101","nodeType":"YulFunctionCall","src":"5776:16:101"}],"functionName":{"name":"mload","nativeSrc":"5770:5:101","nodeType":"YulIdentifier","src":"5770:5:101"},"nativeSrc":"5770:23:101","nodeType":"YulFunctionCall","src":"5770:23:101"},"variables":[{"name":"memberValue0_1","nativeSrc":"5752:14:101","nodeType":"YulTypedName","src":"5752:14:101","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nativeSrc":"5835:14:101","nodeType":"YulIdentifier","src":"5835:14:101"},{"arguments":[{"name":"pos","nativeSrc":"5855:3:101","nodeType":"YulIdentifier","src":"5855:3:101"},{"kind":"number","nativeSrc":"5860:4:101","nodeType":"YulLiteral","src":"5860:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"5851:3:101","nodeType":"YulIdentifier","src":"5851:3:101"},"nativeSrc":"5851:14:101","nodeType":"YulFunctionCall","src":"5851:14:101"}],"functionName":{"name":"abi_encode_enum_WhitelistOptions","nativeSrc":"5802:32:101","nodeType":"YulIdentifier","src":"5802:32:101"},"nativeSrc":"5802:64:101","nodeType":"YulFunctionCall","src":"5802:64:101"},"nativeSrc":"5802:64:101","nodeType":"YulExpressionStatement","src":"5802:64:101"},{"nativeSrc":"5875:45:101","nodeType":"YulVariableDeclaration","src":"5875:45:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5907:5:101","nodeType":"YulIdentifier","src":"5907:5:101"},{"kind":"number","nativeSrc":"5914:4:101","nodeType":"YulLiteral","src":"5914:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"5903:3:101","nodeType":"YulIdentifier","src":"5903:3:101"},"nativeSrc":"5903:16:101","nodeType":"YulFunctionCall","src":"5903:16:101"}],"functionName":{"name":"mload","nativeSrc":"5897:5:101","nodeType":"YulIdentifier","src":"5897:5:101"},"nativeSrc":"5897:23:101","nodeType":"YulFunctionCall","src":"5897:23:101"},"variables":[{"name":"memberValue0_2","nativeSrc":"5879:14:101","nodeType":"YulTypedName","src":"5879:14:101","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_2","nativeSrc":"5962:14:101","nodeType":"YulIdentifier","src":"5962:14:101"},{"arguments":[{"name":"pos","nativeSrc":"5982:3:101","nodeType":"YulIdentifier","src":"5982:3:101"},{"kind":"number","nativeSrc":"5987:4:101","nodeType":"YulLiteral","src":"5987:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"5978:3:101","nodeType":"YulIdentifier","src":"5978:3:101"},"nativeSrc":"5978:14:101","nodeType":"YulFunctionCall","src":"5978:14:101"}],"functionName":{"name":"abi_encode_enum_WhitelistOptions","nativeSrc":"5929:32:101","nodeType":"YulIdentifier","src":"5929:32:101"},"nativeSrc":"5929:64:101","nodeType":"YulFunctionCall","src":"5929:64:101"},"nativeSrc":"5929:64:101","nodeType":"YulExpressionStatement","src":"5929:64:101"}]},"name":"abi_encode_struct_WhitelistStatus","nativeSrc":"5496:503:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"5539:5:101","nodeType":"YulTypedName","src":"5539:5:101","type":""},{"name":"pos","nativeSrc":"5546:3:101","nodeType":"YulTypedName","src":"5546:3:101","type":""}],"src":"5496:503:101"},{"body":{"nativeSrc":"6173:104:101","nodeType":"YulBlock","src":"6173:104:101","statements":[{"nativeSrc":"6183:27:101","nodeType":"YulAssignment","src":"6183:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6195:9:101","nodeType":"YulIdentifier","src":"6195:9:101"},{"kind":"number","nativeSrc":"6206:3:101","nodeType":"YulLiteral","src":"6206:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"6191:3:101","nodeType":"YulIdentifier","src":"6191:3:101"},"nativeSrc":"6191:19:101","nodeType":"YulFunctionCall","src":"6191:19:101"},"variableNames":[{"name":"tail","nativeSrc":"6183:4:101","nodeType":"YulIdentifier","src":"6183:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"6253:6:101","nodeType":"YulIdentifier","src":"6253:6:101"},{"name":"headStart","nativeSrc":"6261:9:101","nodeType":"YulIdentifier","src":"6261:9:101"}],"functionName":{"name":"abi_encode_struct_WhitelistStatus","nativeSrc":"6219:33:101","nodeType":"YulIdentifier","src":"6219:33:101"},"nativeSrc":"6219:52:101","nodeType":"YulFunctionCall","src":"6219:52:101"},"nativeSrc":"6219:52:101","nodeType":"YulExpressionStatement","src":"6219:52:101"}]},"name":"abi_encode_tuple_t_struct$_WhitelistStatus_$21788_memory_ptr__to_t_struct$_WhitelistStatus_$21788_memory_ptr__fromStack_reversed","nativeSrc":"6004:273:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6142:9:101","nodeType":"YulTypedName","src":"6142:9:101","type":""},{"name":"value0","nativeSrc":"6153:6:101","nodeType":"YulTypedName","src":"6153:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6164:4:101","nodeType":"YulTypedName","src":"6164:4:101","type":""}],"src":"6004:273:101"},{"body":{"nativeSrc":"6383:102:101","nodeType":"YulBlock","src":"6383:102:101","statements":[{"nativeSrc":"6393:26:101","nodeType":"YulAssignment","src":"6393:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6405:9:101","nodeType":"YulIdentifier","src":"6405:9:101"},{"kind":"number","nativeSrc":"6416:2:101","nodeType":"YulLiteral","src":"6416:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6401:3:101","nodeType":"YulIdentifier","src":"6401:3:101"},"nativeSrc":"6401:18:101","nodeType":"YulFunctionCall","src":"6401:18:101"},"variableNames":[{"name":"tail","nativeSrc":"6393:4:101","nodeType":"YulIdentifier","src":"6393:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6435:9:101","nodeType":"YulIdentifier","src":"6435:9:101"},{"arguments":[{"name":"value0","nativeSrc":"6450:6:101","nodeType":"YulIdentifier","src":"6450:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6466:3:101","nodeType":"YulLiteral","src":"6466:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"6471:1:101","nodeType":"YulLiteral","src":"6471:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6462:3:101","nodeType":"YulIdentifier","src":"6462:3:101"},"nativeSrc":"6462:11:101","nodeType":"YulFunctionCall","src":"6462:11:101"},{"kind":"number","nativeSrc":"6475:1:101","nodeType":"YulLiteral","src":"6475:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6458:3:101","nodeType":"YulIdentifier","src":"6458:3:101"},"nativeSrc":"6458:19:101","nodeType":"YulFunctionCall","src":"6458:19:101"}],"functionName":{"name":"and","nativeSrc":"6446:3:101","nodeType":"YulIdentifier","src":"6446:3:101"},"nativeSrc":"6446:32:101","nodeType":"YulFunctionCall","src":"6446:32:101"}],"functionName":{"name":"mstore","nativeSrc":"6428:6:101","nodeType":"YulIdentifier","src":"6428:6:101"},"nativeSrc":"6428:51:101","nodeType":"YulFunctionCall","src":"6428:51:101"},"nativeSrc":"6428:51:101","nodeType":"YulExpressionStatement","src":"6428:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"6282:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6352:9:101","nodeType":"YulTypedName","src":"6352:9:101","type":""},{"name":"value0","nativeSrc":"6363:6:101","nodeType":"YulTypedName","src":"6363:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6374:4:101","nodeType":"YulTypedName","src":"6374:4:101","type":""}],"src":"6282:203:101"},{"body":{"nativeSrc":"6549:56:101","nodeType":"YulBlock","src":"6549:56:101","statements":[{"body":{"nativeSrc":"6583:16:101","nodeType":"YulBlock","src":"6583:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6592:1:101","nodeType":"YulLiteral","src":"6592:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6595:1:101","nodeType":"YulLiteral","src":"6595:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6585:6:101","nodeType":"YulIdentifier","src":"6585:6:101"},"nativeSrc":"6585:12:101","nodeType":"YulFunctionCall","src":"6585:12:101"},"nativeSrc":"6585:12:101","nodeType":"YulExpressionStatement","src":"6585:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6572:5:101","nodeType":"YulIdentifier","src":"6572:5:101"},{"kind":"number","nativeSrc":"6579:1:101","nodeType":"YulLiteral","src":"6579:1:101","type":"","value":"3"}],"functionName":{"name":"lt","nativeSrc":"6569:2:101","nodeType":"YulIdentifier","src":"6569:2:101"},"nativeSrc":"6569:12:101","nodeType":"YulFunctionCall","src":"6569:12:101"}],"functionName":{"name":"iszero","nativeSrc":"6562:6:101","nodeType":"YulIdentifier","src":"6562:6:101"},"nativeSrc":"6562:20:101","nodeType":"YulFunctionCall","src":"6562:20:101"},"nativeSrc":"6559:40:101","nodeType":"YulIf","src":"6559:40:101"}]},"name":"validator_revert_enum_WhitelistOptions","nativeSrc":"6490:115:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"6538:5:101","nodeType":"YulTypedName","src":"6538:5:101","type":""}],"src":"6490:115:101"},{"body":{"nativeSrc":"6714:942:101","nodeType":"YulBlock","src":"6714:942:101","statements":[{"nativeSrc":"6724:43:101","nodeType":"YulVariableDeclaration","src":"6724:43:101","value":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6742:7:101","nodeType":"YulIdentifier","src":"6742:7:101"},{"name":"headStart","nativeSrc":"6751:9:101","nodeType":"YulIdentifier","src":"6751:9:101"}],"functionName":{"name":"sub","nativeSrc":"6738:3:101","nodeType":"YulIdentifier","src":"6738:3:101"},"nativeSrc":"6738:23:101","nodeType":"YulFunctionCall","src":"6738:23:101"},{"kind":"number","nativeSrc":"6763:3:101","nodeType":"YulLiteral","src":"6763:3:101","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"6734:3:101","nodeType":"YulIdentifier","src":"6734:3:101"},"nativeSrc":"6734:33:101","nodeType":"YulFunctionCall","src":"6734:33:101"},"variables":[{"name":"_1","nativeSrc":"6728:2:101","nodeType":"YulTypedName","src":"6728:2:101","type":""}]},{"body":{"nativeSrc":"6782:16:101","nodeType":"YulBlock","src":"6782:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6791:1:101","nodeType":"YulLiteral","src":"6791:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6794:1:101","nodeType":"YulLiteral","src":"6794:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6784:6:101","nodeType":"YulIdentifier","src":"6784:6:101"},"nativeSrc":"6784:12:101","nodeType":"YulFunctionCall","src":"6784:12:101"},"nativeSrc":"6784:12:101","nodeType":"YulExpressionStatement","src":"6784:12:101"}]},"condition":{"name":"_1","nativeSrc":"6779:2:101","nodeType":"YulIdentifier","src":"6779:2:101"},"nativeSrc":"6776:22:101","nodeType":"YulIf","src":"6776:22:101"},{"nativeSrc":"6807:7:101","nodeType":"YulAssignment","src":"6807:7:101","value":{"kind":"number","nativeSrc":"6813:1:101","nodeType":"YulLiteral","src":"6813:1:101","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"6807:2:101","nodeType":"YulIdentifier","src":"6807:2:101"}]},{"nativeSrc":"6823:15:101","nodeType":"YulVariableDeclaration","src":"6823:15:101","value":{"kind":"number","nativeSrc":"6837:1:101","nodeType":"YulLiteral","src":"6837:1:101","type":"","value":"0"},"variables":[{"name":"memPtr","nativeSrc":"6827:6:101","nodeType":"YulTypedName","src":"6827:6:101","type":""}]},{"nativeSrc":"6847:19:101","nodeType":"YulAssignment","src":"6847:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"6863:2:101","nodeType":"YulLiteral","src":"6863:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"6857:5:101","nodeType":"YulIdentifier","src":"6857:5:101"},"nativeSrc":"6857:9:101","nodeType":"YulFunctionCall","src":"6857:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"6847:6:101","nodeType":"YulIdentifier","src":"6847:6:101"}]},{"nativeSrc":"6875:34:101","nodeType":"YulVariableDeclaration","src":"6875:34:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"6897:6:101","nodeType":"YulIdentifier","src":"6897:6:101"},{"kind":"number","nativeSrc":"6905:3:101","nodeType":"YulLiteral","src":"6905:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"6893:3:101","nodeType":"YulIdentifier","src":"6893:3:101"},"nativeSrc":"6893:16:101","nodeType":"YulFunctionCall","src":"6893:16:101"},"variables":[{"name":"newFreePtr","nativeSrc":"6879:10:101","nodeType":"YulTypedName","src":"6879:10:101","type":""}]},{"body":{"nativeSrc":"6984:22:101","nodeType":"YulBlock","src":"6984:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"6986:16:101","nodeType":"YulIdentifier","src":"6986:16:101"},"nativeSrc":"6986:18:101","nodeType":"YulFunctionCall","src":"6986:18:101"},"nativeSrc":"6986:18:101","nodeType":"YulExpressionStatement","src":"6986:18:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"6927:10:101","nodeType":"YulIdentifier","src":"6927:10:101"},{"kind":"number","nativeSrc":"6939:18:101","nodeType":"YulLiteral","src":"6939:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6924:2:101","nodeType":"YulIdentifier","src":"6924:2:101"},"nativeSrc":"6924:34:101","nodeType":"YulFunctionCall","src":"6924:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"6963:10:101","nodeType":"YulIdentifier","src":"6963:10:101"},{"name":"memPtr","nativeSrc":"6975:6:101","nodeType":"YulIdentifier","src":"6975:6:101"}],"functionName":{"name":"lt","nativeSrc":"6960:2:101","nodeType":"YulIdentifier","src":"6960:2:101"},"nativeSrc":"6960:22:101","nodeType":"YulFunctionCall","src":"6960:22:101"}],"functionName":{"name":"or","nativeSrc":"6921:2:101","nodeType":"YulIdentifier","src":"6921:2:101"},"nativeSrc":"6921:62:101","nodeType":"YulFunctionCall","src":"6921:62:101"},"nativeSrc":"6918:88:101","nodeType":"YulIf","src":"6918:88:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7022:2:101","nodeType":"YulLiteral","src":"7022:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"7026:10:101","nodeType":"YulIdentifier","src":"7026:10:101"}],"functionName":{"name":"mstore","nativeSrc":"7015:6:101","nodeType":"YulIdentifier","src":"7015:6:101"},"nativeSrc":"7015:22:101","nodeType":"YulFunctionCall","src":"7015:22:101"},"nativeSrc":"7015:22:101","nodeType":"YulExpressionStatement","src":"7015:22:101"},{"nativeSrc":"7046:36:101","nodeType":"YulVariableDeclaration","src":"7046:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7072:9:101","nodeType":"YulIdentifier","src":"7072:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"7059:12:101","nodeType":"YulIdentifier","src":"7059:12:101"},"nativeSrc":"7059:23:101","nodeType":"YulFunctionCall","src":"7059:23:101"},"variables":[{"name":"value","nativeSrc":"7050:5:101","nodeType":"YulTypedName","src":"7050:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7130:5:101","nodeType":"YulIdentifier","src":"7130:5:101"}],"functionName":{"name":"validator_revert_enum_WhitelistOptions","nativeSrc":"7091:38:101","nodeType":"YulIdentifier","src":"7091:38:101"},"nativeSrc":"7091:45:101","nodeType":"YulFunctionCall","src":"7091:45:101"},"nativeSrc":"7091:45:101","nodeType":"YulExpressionStatement","src":"7091:45:101"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"7152:6:101","nodeType":"YulIdentifier","src":"7152:6:101"},{"name":"value","nativeSrc":"7160:5:101","nodeType":"YulIdentifier","src":"7160:5:101"}],"functionName":{"name":"mstore","nativeSrc":"7145:6:101","nodeType":"YulIdentifier","src":"7145:6:101"},"nativeSrc":"7145:21:101","nodeType":"YulFunctionCall","src":"7145:21:101"},"nativeSrc":"7145:21:101","nodeType":"YulExpressionStatement","src":"7145:21:101"},{"nativeSrc":"7175:47:101","nodeType":"YulVariableDeclaration","src":"7175:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7207:9:101","nodeType":"YulIdentifier","src":"7207:9:101"},{"kind":"number","nativeSrc":"7218:2:101","nodeType":"YulLiteral","src":"7218:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7203:3:101","nodeType":"YulIdentifier","src":"7203:3:101"},"nativeSrc":"7203:18:101","nodeType":"YulFunctionCall","src":"7203:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"7190:12:101","nodeType":"YulIdentifier","src":"7190:12:101"},"nativeSrc":"7190:32:101","nodeType":"YulFunctionCall","src":"7190:32:101"},"variables":[{"name":"value_1","nativeSrc":"7179:7:101","nodeType":"YulTypedName","src":"7179:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"7270:7:101","nodeType":"YulIdentifier","src":"7270:7:101"}],"functionName":{"name":"validator_revert_enum_WhitelistOptions","nativeSrc":"7231:38:101","nodeType":"YulIdentifier","src":"7231:38:101"},"nativeSrc":"7231:47:101","nodeType":"YulFunctionCall","src":"7231:47:101"},"nativeSrc":"7231:47:101","nodeType":"YulExpressionStatement","src":"7231:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"7298:6:101","nodeType":"YulIdentifier","src":"7298:6:101"},{"kind":"number","nativeSrc":"7306:2:101","nodeType":"YulLiteral","src":"7306:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7294:3:101","nodeType":"YulIdentifier","src":"7294:3:101"},"nativeSrc":"7294:15:101","nodeType":"YulFunctionCall","src":"7294:15:101"},{"name":"value_1","nativeSrc":"7311:7:101","nodeType":"YulIdentifier","src":"7311:7:101"}],"functionName":{"name":"mstore","nativeSrc":"7287:6:101","nodeType":"YulIdentifier","src":"7287:6:101"},"nativeSrc":"7287:32:101","nodeType":"YulFunctionCall","src":"7287:32:101"},"nativeSrc":"7287:32:101","nodeType":"YulExpressionStatement","src":"7287:32:101"},{"nativeSrc":"7328:47:101","nodeType":"YulVariableDeclaration","src":"7328:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7360:9:101","nodeType":"YulIdentifier","src":"7360:9:101"},{"kind":"number","nativeSrc":"7371:2:101","nodeType":"YulLiteral","src":"7371:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7356:3:101","nodeType":"YulIdentifier","src":"7356:3:101"},"nativeSrc":"7356:18:101","nodeType":"YulFunctionCall","src":"7356:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"7343:12:101","nodeType":"YulIdentifier","src":"7343:12:101"},"nativeSrc":"7343:32:101","nodeType":"YulFunctionCall","src":"7343:32:101"},"variables":[{"name":"value_2","nativeSrc":"7332:7:101","nodeType":"YulTypedName","src":"7332:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"7423:7:101","nodeType":"YulIdentifier","src":"7423:7:101"}],"functionName":{"name":"validator_revert_enum_WhitelistOptions","nativeSrc":"7384:38:101","nodeType":"YulIdentifier","src":"7384:38:101"},"nativeSrc":"7384:47:101","nodeType":"YulFunctionCall","src":"7384:47:101"},"nativeSrc":"7384:47:101","nodeType":"YulExpressionStatement","src":"7384:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"7451:6:101","nodeType":"YulIdentifier","src":"7451:6:101"},{"kind":"number","nativeSrc":"7459:2:101","nodeType":"YulLiteral","src":"7459:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7447:3:101","nodeType":"YulIdentifier","src":"7447:3:101"},"nativeSrc":"7447:15:101","nodeType":"YulFunctionCall","src":"7447:15:101"},{"name":"value_2","nativeSrc":"7464:7:101","nodeType":"YulIdentifier","src":"7464:7:101"}],"functionName":{"name":"mstore","nativeSrc":"7440:6:101","nodeType":"YulIdentifier","src":"7440:6:101"},"nativeSrc":"7440:32:101","nodeType":"YulFunctionCall","src":"7440:32:101"},"nativeSrc":"7440:32:101","nodeType":"YulExpressionStatement","src":"7440:32:101"},{"nativeSrc":"7481:47:101","nodeType":"YulVariableDeclaration","src":"7481:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7513:9:101","nodeType":"YulIdentifier","src":"7513:9:101"},{"kind":"number","nativeSrc":"7524:2:101","nodeType":"YulLiteral","src":"7524:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"7509:3:101","nodeType":"YulIdentifier","src":"7509:3:101"},"nativeSrc":"7509:18:101","nodeType":"YulFunctionCall","src":"7509:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"7496:12:101","nodeType":"YulIdentifier","src":"7496:12:101"},"nativeSrc":"7496:32:101","nodeType":"YulFunctionCall","src":"7496:32:101"},"variables":[{"name":"value_3","nativeSrc":"7485:7:101","nodeType":"YulTypedName","src":"7485:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"7576:7:101","nodeType":"YulIdentifier","src":"7576:7:101"}],"functionName":{"name":"validator_revert_enum_WhitelistOptions","nativeSrc":"7537:38:101","nodeType":"YulIdentifier","src":"7537:38:101"},"nativeSrc":"7537:47:101","nodeType":"YulFunctionCall","src":"7537:47:101"},"nativeSrc":"7537:47:101","nodeType":"YulExpressionStatement","src":"7537:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"7604:6:101","nodeType":"YulIdentifier","src":"7604:6:101"},{"kind":"number","nativeSrc":"7612:2:101","nodeType":"YulLiteral","src":"7612:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"7600:3:101","nodeType":"YulIdentifier","src":"7600:3:101"},"nativeSrc":"7600:15:101","nodeType":"YulFunctionCall","src":"7600:15:101"},{"name":"value_3","nativeSrc":"7617:7:101","nodeType":"YulIdentifier","src":"7617:7:101"}],"functionName":{"name":"mstore","nativeSrc":"7593:6:101","nodeType":"YulIdentifier","src":"7593:6:101"},"nativeSrc":"7593:32:101","nodeType":"YulFunctionCall","src":"7593:32:101"},"nativeSrc":"7593:32:101","nodeType":"YulExpressionStatement","src":"7593:32:101"},{"nativeSrc":"7634:16:101","nodeType":"YulAssignment","src":"7634:16:101","value":{"name":"memPtr","nativeSrc":"7644:6:101","nodeType":"YulIdentifier","src":"7644:6:101"},"variableNames":[{"name":"value0","nativeSrc":"7634:6:101","nodeType":"YulIdentifier","src":"7634:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_WhitelistStatus_$21788_memory_ptr","nativeSrc":"6610:1046:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6680:9:101","nodeType":"YulTypedName","src":"6680:9:101","type":""},{"name":"dataEnd","nativeSrc":"6691:7:101","nodeType":"YulTypedName","src":"6691:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6703:6:101","nodeType":"YulTypedName","src":"6703:6:101","type":""}],"src":"6610:1046:101"},{"body":{"nativeSrc":"7769:101:101","nodeType":"YulBlock","src":"7769:101:101","statements":[{"nativeSrc":"7779:26:101","nodeType":"YulAssignment","src":"7779:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7791:9:101","nodeType":"YulIdentifier","src":"7791:9:101"},{"kind":"number","nativeSrc":"7802:2:101","nodeType":"YulLiteral","src":"7802:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7787:3:101","nodeType":"YulIdentifier","src":"7787:3:101"},"nativeSrc":"7787:18:101","nodeType":"YulFunctionCall","src":"7787:18:101"},"variableNames":[{"name":"tail","nativeSrc":"7779:4:101","nodeType":"YulIdentifier","src":"7779:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7821:9:101","nodeType":"YulIdentifier","src":"7821:9:101"},{"arguments":[{"name":"value0","nativeSrc":"7836:6:101","nodeType":"YulIdentifier","src":"7836:6:101"},{"kind":"number","nativeSrc":"7844:18:101","nodeType":"YulLiteral","src":"7844:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"7832:3:101","nodeType":"YulIdentifier","src":"7832:3:101"},"nativeSrc":"7832:31:101","nodeType":"YulFunctionCall","src":"7832:31:101"}],"functionName":{"name":"mstore","nativeSrc":"7814:6:101","nodeType":"YulIdentifier","src":"7814:6:101"},"nativeSrc":"7814:50:101","nodeType":"YulFunctionCall","src":"7814:50:101"},"nativeSrc":"7814:50:101","nodeType":"YulExpressionStatement","src":"7814:50:101"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nativeSrc":"7661:209:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7738:9:101","nodeType":"YulTypedName","src":"7738:9:101","type":""},{"name":"value0","nativeSrc":"7749:6:101","nodeType":"YulTypedName","src":"7749:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7760:4:101","nodeType":"YulTypedName","src":"7760:4:101","type":""}],"src":"7661:209:101"},{"body":{"nativeSrc":"7979:179:101","nodeType":"YulBlock","src":"7979:179:101","statements":[{"body":{"nativeSrc":"8025:16:101","nodeType":"YulBlock","src":"8025:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8034:1:101","nodeType":"YulLiteral","src":"8034:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8037:1:101","nodeType":"YulLiteral","src":"8037:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8027:6:101","nodeType":"YulIdentifier","src":"8027:6:101"},"nativeSrc":"8027:12:101","nodeType":"YulFunctionCall","src":"8027:12:101"},"nativeSrc":"8027:12:101","nodeType":"YulExpressionStatement","src":"8027:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8000:7:101","nodeType":"YulIdentifier","src":"8000:7:101"},{"name":"headStart","nativeSrc":"8009:9:101","nodeType":"YulIdentifier","src":"8009:9:101"}],"functionName":{"name":"sub","nativeSrc":"7996:3:101","nodeType":"YulIdentifier","src":"7996:3:101"},"nativeSrc":"7996:23:101","nodeType":"YulFunctionCall","src":"7996:23:101"},{"kind":"number","nativeSrc":"8021:2:101","nodeType":"YulLiteral","src":"8021:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"7992:3:101","nodeType":"YulIdentifier","src":"7992:3:101"},"nativeSrc":"7992:32:101","nodeType":"YulFunctionCall","src":"7992:32:101"},"nativeSrc":"7989:52:101","nodeType":"YulIf","src":"7989:52:101"},{"nativeSrc":"8050:29:101","nodeType":"YulVariableDeclaration","src":"8050:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8069:9:101","nodeType":"YulIdentifier","src":"8069:9:101"}],"functionName":{"name":"mload","nativeSrc":"8063:5:101","nodeType":"YulIdentifier","src":"8063:5:101"},"nativeSrc":"8063:16:101","nodeType":"YulFunctionCall","src":"8063:16:101"},"variables":[{"name":"value","nativeSrc":"8054:5:101","nodeType":"YulTypedName","src":"8054:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8122:5:101","nodeType":"YulIdentifier","src":"8122:5:101"}],"functionName":{"name":"validator_revert_contract_IEToken","nativeSrc":"8088:33:101","nodeType":"YulIdentifier","src":"8088:33:101"},"nativeSrc":"8088:40:101","nodeType":"YulFunctionCall","src":"8088:40:101"},"nativeSrc":"8088:40:101","nodeType":"YulExpressionStatement","src":"8088:40:101"},{"nativeSrc":"8137:15:101","nodeType":"YulAssignment","src":"8137:15:101","value":{"name":"value","nativeSrc":"8147:5:101","nodeType":"YulIdentifier","src":"8147:5:101"},"variableNames":[{"name":"value0","nativeSrc":"8137:6:101","nodeType":"YulIdentifier","src":"8137:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory","nativeSrc":"7875:283:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7945:9:101","nodeType":"YulTypedName","src":"7945:9:101","type":""},{"name":"dataEnd","nativeSrc":"7956:7:101","nodeType":"YulTypedName","src":"7956:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7968:6:101","nodeType":"YulTypedName","src":"7968:6:101","type":""}],"src":"7875:283:101"},{"body":{"nativeSrc":"8244:103:101","nodeType":"YulBlock","src":"8244:103:101","statements":[{"body":{"nativeSrc":"8290:16:101","nodeType":"YulBlock","src":"8290:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8299:1:101","nodeType":"YulLiteral","src":"8299:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8302:1:101","nodeType":"YulLiteral","src":"8302:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8292:6:101","nodeType":"YulIdentifier","src":"8292:6:101"},"nativeSrc":"8292:12:101","nodeType":"YulFunctionCall","src":"8292:12:101"},"nativeSrc":"8292:12:101","nodeType":"YulExpressionStatement","src":"8292:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8265:7:101","nodeType":"YulIdentifier","src":"8265:7:101"},{"name":"headStart","nativeSrc":"8274:9:101","nodeType":"YulIdentifier","src":"8274:9:101"}],"functionName":{"name":"sub","nativeSrc":"8261:3:101","nodeType":"YulIdentifier","src":"8261:3:101"},"nativeSrc":"8261:23:101","nodeType":"YulFunctionCall","src":"8261:23:101"},{"kind":"number","nativeSrc":"8286:2:101","nodeType":"YulLiteral","src":"8286:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"8257:3:101","nodeType":"YulIdentifier","src":"8257:3:101"},"nativeSrc":"8257:32:101","nodeType":"YulFunctionCall","src":"8257:32:101"},"nativeSrc":"8254:52:101","nodeType":"YulIf","src":"8254:52:101"},{"nativeSrc":"8315:26:101","nodeType":"YulAssignment","src":"8315:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8331:9:101","nodeType":"YulIdentifier","src":"8331:9:101"}],"functionName":{"name":"mload","nativeSrc":"8325:5:101","nodeType":"YulIdentifier","src":"8325:5:101"},"nativeSrc":"8325:16:101","nodeType":"YulFunctionCall","src":"8325:16:101"},"variableNames":[{"name":"value0","nativeSrc":"8315:6:101","nodeType":"YulIdentifier","src":"8315:6:101"}]}]},"name":"abi_decode_tuple_t_bytes32_fromMemory","nativeSrc":"8163:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8210:9:101","nodeType":"YulTypedName","src":"8210:9:101","type":""},{"name":"dataEnd","nativeSrc":"8221:7:101","nodeType":"YulTypedName","src":"8221:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8233:6:101","nodeType":"YulTypedName","src":"8233:6:101","type":""}],"src":"8163:184:101"},{"body":{"nativeSrc":"8549:173:101","nodeType":"YulBlock","src":"8549:173:101","statements":[{"nativeSrc":"8559:27:101","nodeType":"YulAssignment","src":"8559:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8571:9:101","nodeType":"YulIdentifier","src":"8571:9:101"},{"kind":"number","nativeSrc":"8582:3:101","nodeType":"YulLiteral","src":"8582:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"8567:3:101","nodeType":"YulIdentifier","src":"8567:3:101"},"nativeSrc":"8567:19:101","nodeType":"YulFunctionCall","src":"8567:19:101"},"variableNames":[{"name":"tail","nativeSrc":"8559:4:101","nodeType":"YulIdentifier","src":"8559:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8602:9:101","nodeType":"YulIdentifier","src":"8602:9:101"},{"arguments":[{"name":"value0","nativeSrc":"8617:6:101","nodeType":"YulIdentifier","src":"8617:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"8633:3:101","nodeType":"YulLiteral","src":"8633:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"8638:1:101","nodeType":"YulLiteral","src":"8638:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"8629:3:101","nodeType":"YulIdentifier","src":"8629:3:101"},"nativeSrc":"8629:11:101","nodeType":"YulFunctionCall","src":"8629:11:101"},{"kind":"number","nativeSrc":"8642:1:101","nodeType":"YulLiteral","src":"8642:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"8625:3:101","nodeType":"YulIdentifier","src":"8625:3:101"},"nativeSrc":"8625:19:101","nodeType":"YulFunctionCall","src":"8625:19:101"}],"functionName":{"name":"and","nativeSrc":"8613:3:101","nodeType":"YulIdentifier","src":"8613:3:101"},"nativeSrc":"8613:32:101","nodeType":"YulFunctionCall","src":"8613:32:101"}],"functionName":{"name":"mstore","nativeSrc":"8595:6:101","nodeType":"YulIdentifier","src":"8595:6:101"},"nativeSrc":"8595:51:101","nodeType":"YulFunctionCall","src":"8595:51:101"},"nativeSrc":"8595:51:101","nodeType":"YulExpressionStatement","src":"8595:51:101"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"8689:6:101","nodeType":"YulIdentifier","src":"8689:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"8701:9:101","nodeType":"YulIdentifier","src":"8701:9:101"},{"kind":"number","nativeSrc":"8712:2:101","nodeType":"YulLiteral","src":"8712:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8697:3:101","nodeType":"YulIdentifier","src":"8697:3:101"},"nativeSrc":"8697:18:101","nodeType":"YulFunctionCall","src":"8697:18:101"}],"functionName":{"name":"abi_encode_struct_WhitelistStatus","nativeSrc":"8655:33:101","nodeType":"YulIdentifier","src":"8655:33:101"},"nativeSrc":"8655:61:101","nodeType":"YulFunctionCall","src":"8655:61:101"},"nativeSrc":"8655:61:101","nodeType":"YulExpressionStatement","src":"8655:61:101"}]},"name":"abi_encode_tuple_t_address_t_struct$_WhitelistStatus_$21788_memory_ptr__to_t_address_t_struct$_WhitelistStatus_$21788_memory_ptr__fromStack_reversed","nativeSrc":"8352:370:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8510:9:101","nodeType":"YulTypedName","src":"8510:9:101","type":""},{"name":"value1","nativeSrc":"8521:6:101","nodeType":"YulTypedName","src":"8521:6:101","type":""},{"name":"value0","nativeSrc":"8529:6:101","nodeType":"YulTypedName","src":"8529:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8540:4:101","nodeType":"YulTypedName","src":"8540:4:101","type":""}],"src":"8352:370:101"},{"body":{"nativeSrc":"8819:191:101","nodeType":"YulBlock","src":"8819:191:101","statements":[{"body":{"nativeSrc":"8865:16:101","nodeType":"YulBlock","src":"8865:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8874:1:101","nodeType":"YulLiteral","src":"8874:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8877:1:101","nodeType":"YulLiteral","src":"8877:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8867:6:101","nodeType":"YulIdentifier","src":"8867:6:101"},"nativeSrc":"8867:12:101","nodeType":"YulFunctionCall","src":"8867:12:101"},"nativeSrc":"8867:12:101","nodeType":"YulExpressionStatement","src":"8867:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8840:7:101","nodeType":"YulIdentifier","src":"8840:7:101"},{"name":"headStart","nativeSrc":"8849:9:101","nodeType":"YulIdentifier","src":"8849:9:101"}],"functionName":{"name":"sub","nativeSrc":"8836:3:101","nodeType":"YulIdentifier","src":"8836:3:101"},"nativeSrc":"8836:23:101","nodeType":"YulFunctionCall","src":"8836:23:101"},{"kind":"number","nativeSrc":"8861:2:101","nodeType":"YulLiteral","src":"8861:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"8832:3:101","nodeType":"YulIdentifier","src":"8832:3:101"},"nativeSrc":"8832:32:101","nodeType":"YulFunctionCall","src":"8832:32:101"},"nativeSrc":"8829:52:101","nodeType":"YulIf","src":"8829:52:101"},{"nativeSrc":"8890:36:101","nodeType":"YulVariableDeclaration","src":"8890:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8916:9:101","nodeType":"YulIdentifier","src":"8916:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"8903:12:101","nodeType":"YulIdentifier","src":"8903:12:101"},"nativeSrc":"8903:23:101","nodeType":"YulFunctionCall","src":"8903:23:101"},"variables":[{"name":"value","nativeSrc":"8894:5:101","nodeType":"YulTypedName","src":"8894:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8974:5:101","nodeType":"YulIdentifier","src":"8974:5:101"}],"functionName":{"name":"validator_revert_enum_WhitelistOptions","nativeSrc":"8935:38:101","nodeType":"YulIdentifier","src":"8935:38:101"},"nativeSrc":"8935:45:101","nodeType":"YulFunctionCall","src":"8935:45:101"},"nativeSrc":"8935:45:101","nodeType":"YulExpressionStatement","src":"8935:45:101"},{"nativeSrc":"8989:15:101","nodeType":"YulAssignment","src":"8989:15:101","value":{"name":"value","nativeSrc":"8999:5:101","nodeType":"YulIdentifier","src":"8999:5:101"},"variableNames":[{"name":"value0","nativeSrc":"8989:6:101","nodeType":"YulIdentifier","src":"8989:6:101"}]}]},"name":"abi_decode_tuple_t_enum$_WhitelistOptions_$21775","nativeSrc":"8727:283:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8785:9:101","nodeType":"YulTypedName","src":"8785:9:101","type":""},{"name":"dataEnd","nativeSrc":"8796:7:101","nodeType":"YulTypedName","src":"8796:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8808:6:101","nodeType":"YulTypedName","src":"8808:6:101","type":""}],"src":"8727:283:101"},{"body":{"nativeSrc":"9083:689:101","nodeType":"YulBlock","src":"9083:689:101","statements":[{"nativeSrc":"9093:34:101","nodeType":"YulVariableDeclaration","src":"9093:34:101","value":{"arguments":[{"name":"value","nativeSrc":"9121:5:101","nodeType":"YulIdentifier","src":"9121:5:101"}],"functionName":{"name":"calldataload","nativeSrc":"9108:12:101","nodeType":"YulIdentifier","src":"9108:12:101"},"nativeSrc":"9108:19:101","nodeType":"YulFunctionCall","src":"9108:19:101"},"variables":[{"name":"value_1","nativeSrc":"9097:7:101","nodeType":"YulTypedName","src":"9097:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"9175:7:101","nodeType":"YulIdentifier","src":"9175:7:101"}],"functionName":{"name":"validator_revert_enum_WhitelistOptions","nativeSrc":"9136:38:101","nodeType":"YulIdentifier","src":"9136:38:101"},"nativeSrc":"9136:47:101","nodeType":"YulFunctionCall","src":"9136:47:101"},"nativeSrc":"9136:47:101","nodeType":"YulExpressionStatement","src":"9136:47:101"},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"9225:7:101","nodeType":"YulIdentifier","src":"9225:7:101"},{"name":"pos","nativeSrc":"9234:3:101","nodeType":"YulIdentifier","src":"9234:3:101"}],"functionName":{"name":"abi_encode_enum_WhitelistOptions","nativeSrc":"9192:32:101","nodeType":"YulIdentifier","src":"9192:32:101"},"nativeSrc":"9192:46:101","nodeType":"YulFunctionCall","src":"9192:46:101"},"nativeSrc":"9192:46:101","nodeType":"YulExpressionStatement","src":"9192:46:101"},{"nativeSrc":"9247:45:101","nodeType":"YulVariableDeclaration","src":"9247:45:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"9279:5:101","nodeType":"YulIdentifier","src":"9279:5:101"},{"kind":"number","nativeSrc":"9286:4:101","nodeType":"YulLiteral","src":"9286:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"9275:3:101","nodeType":"YulIdentifier","src":"9275:3:101"},"nativeSrc":"9275:16:101","nodeType":"YulFunctionCall","src":"9275:16:101"}],"functionName":{"name":"calldataload","nativeSrc":"9262:12:101","nodeType":"YulIdentifier","src":"9262:12:101"},"nativeSrc":"9262:30:101","nodeType":"YulFunctionCall","src":"9262:30:101"},"variables":[{"name":"value_2","nativeSrc":"9251:7:101","nodeType":"YulTypedName","src":"9251:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"9340:7:101","nodeType":"YulIdentifier","src":"9340:7:101"}],"functionName":{"name":"validator_revert_enum_WhitelistOptions","nativeSrc":"9301:38:101","nodeType":"YulIdentifier","src":"9301:38:101"},"nativeSrc":"9301:47:101","nodeType":"YulFunctionCall","src":"9301:47:101"},"nativeSrc":"9301:47:101","nodeType":"YulExpressionStatement","src":"9301:47:101"},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"9390:7:101","nodeType":"YulIdentifier","src":"9390:7:101"},{"arguments":[{"name":"pos","nativeSrc":"9403:3:101","nodeType":"YulIdentifier","src":"9403:3:101"},{"kind":"number","nativeSrc":"9408:4:101","nodeType":"YulLiteral","src":"9408:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"9399:3:101","nodeType":"YulIdentifier","src":"9399:3:101"},"nativeSrc":"9399:14:101","nodeType":"YulFunctionCall","src":"9399:14:101"}],"functionName":{"name":"abi_encode_enum_WhitelistOptions","nativeSrc":"9357:32:101","nodeType":"YulIdentifier","src":"9357:32:101"},"nativeSrc":"9357:57:101","nodeType":"YulFunctionCall","src":"9357:57:101"},"nativeSrc":"9357:57:101","nodeType":"YulExpressionStatement","src":"9357:57:101"},{"nativeSrc":"9423:45:101","nodeType":"YulVariableDeclaration","src":"9423:45:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"9455:5:101","nodeType":"YulIdentifier","src":"9455:5:101"},{"kind":"number","nativeSrc":"9462:4:101","nodeType":"YulLiteral","src":"9462:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"9451:3:101","nodeType":"YulIdentifier","src":"9451:3:101"},"nativeSrc":"9451:16:101","nodeType":"YulFunctionCall","src":"9451:16:101"}],"functionName":{"name":"calldataload","nativeSrc":"9438:12:101","nodeType":"YulIdentifier","src":"9438:12:101"},"nativeSrc":"9438:30:101","nodeType":"YulFunctionCall","src":"9438:30:101"},"variables":[{"name":"value_3","nativeSrc":"9427:7:101","nodeType":"YulTypedName","src":"9427:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"9516:7:101","nodeType":"YulIdentifier","src":"9516:7:101"}],"functionName":{"name":"validator_revert_enum_WhitelistOptions","nativeSrc":"9477:38:101","nodeType":"YulIdentifier","src":"9477:38:101"},"nativeSrc":"9477:47:101","nodeType":"YulFunctionCall","src":"9477:47:101"},"nativeSrc":"9477:47:101","nodeType":"YulExpressionStatement","src":"9477:47:101"},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"9566:7:101","nodeType":"YulIdentifier","src":"9566:7:101"},{"arguments":[{"name":"pos","nativeSrc":"9579:3:101","nodeType":"YulIdentifier","src":"9579:3:101"},{"kind":"number","nativeSrc":"9584:4:101","nodeType":"YulLiteral","src":"9584:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"9575:3:101","nodeType":"YulIdentifier","src":"9575:3:101"},"nativeSrc":"9575:14:101","nodeType":"YulFunctionCall","src":"9575:14:101"}],"functionName":{"name":"abi_encode_enum_WhitelistOptions","nativeSrc":"9533:32:101","nodeType":"YulIdentifier","src":"9533:32:101"},"nativeSrc":"9533:57:101","nodeType":"YulFunctionCall","src":"9533:57:101"},"nativeSrc":"9533:57:101","nodeType":"YulExpressionStatement","src":"9533:57:101"},{"nativeSrc":"9599:45:101","nodeType":"YulVariableDeclaration","src":"9599:45:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"9631:5:101","nodeType":"YulIdentifier","src":"9631:5:101"},{"kind":"number","nativeSrc":"9638:4:101","nodeType":"YulLiteral","src":"9638:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"9627:3:101","nodeType":"YulIdentifier","src":"9627:3:101"},"nativeSrc":"9627:16:101","nodeType":"YulFunctionCall","src":"9627:16:101"}],"functionName":{"name":"calldataload","nativeSrc":"9614:12:101","nodeType":"YulIdentifier","src":"9614:12:101"},"nativeSrc":"9614:30:101","nodeType":"YulFunctionCall","src":"9614:30:101"},"variables":[{"name":"value_4","nativeSrc":"9603:7:101","nodeType":"YulTypedName","src":"9603:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_4","nativeSrc":"9692:7:101","nodeType":"YulIdentifier","src":"9692:7:101"}],"functionName":{"name":"validator_revert_enum_WhitelistOptions","nativeSrc":"9653:38:101","nodeType":"YulIdentifier","src":"9653:38:101"},"nativeSrc":"9653:47:101","nodeType":"YulFunctionCall","src":"9653:47:101"},"nativeSrc":"9653:47:101","nodeType":"YulExpressionStatement","src":"9653:47:101"},{"expression":{"arguments":[{"name":"value_4","nativeSrc":"9742:7:101","nodeType":"YulIdentifier","src":"9742:7:101"},{"arguments":[{"name":"pos","nativeSrc":"9755:3:101","nodeType":"YulIdentifier","src":"9755:3:101"},{"kind":"number","nativeSrc":"9760:4:101","nodeType":"YulLiteral","src":"9760:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"9751:3:101","nodeType":"YulIdentifier","src":"9751:3:101"},"nativeSrc":"9751:14:101","nodeType":"YulFunctionCall","src":"9751:14:101"}],"functionName":{"name":"abi_encode_enum_WhitelistOptions","nativeSrc":"9709:32:101","nodeType":"YulIdentifier","src":"9709:32:101"},"nativeSrc":"9709:57:101","nodeType":"YulFunctionCall","src":"9709:57:101"},"nativeSrc":"9709:57:101","nodeType":"YulExpressionStatement","src":"9709:57:101"}]},"name":"abi_encode_struct_WhitelistStatus_calldata","nativeSrc":"9015:757:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"9067:5:101","nodeType":"YulTypedName","src":"9067:5:101","type":""},{"name":"pos","nativeSrc":"9074:3:101","nodeType":"YulTypedName","src":"9074:3:101","type":""}],"src":"9015:757:101"},{"body":{"nativeSrc":"9948:113:101","nodeType":"YulBlock","src":"9948:113:101","statements":[{"nativeSrc":"9958:27:101","nodeType":"YulAssignment","src":"9958:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"9970:9:101","nodeType":"YulIdentifier","src":"9970:9:101"},{"kind":"number","nativeSrc":"9981:3:101","nodeType":"YulLiteral","src":"9981:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"9966:3:101","nodeType":"YulIdentifier","src":"9966:3:101"},"nativeSrc":"9966:19:101","nodeType":"YulFunctionCall","src":"9966:19:101"},"variableNames":[{"name":"tail","nativeSrc":"9958:4:101","nodeType":"YulIdentifier","src":"9958:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"10037:6:101","nodeType":"YulIdentifier","src":"10037:6:101"},{"name":"headStart","nativeSrc":"10045:9:101","nodeType":"YulIdentifier","src":"10045:9:101"}],"functionName":{"name":"abi_encode_struct_WhitelistStatus_calldata","nativeSrc":"9994:42:101","nodeType":"YulIdentifier","src":"9994:42:101"},"nativeSrc":"9994:61:101","nodeType":"YulFunctionCall","src":"9994:61:101"},"nativeSrc":"9994:61:101","nodeType":"YulExpressionStatement","src":"9994:61:101"}]},"name":"abi_encode_tuple_t_struct$_WhitelistStatus_$21788_calldata_ptr__to_t_struct$_WhitelistStatus_$21788_memory_ptr__fromStack_reversed","nativeSrc":"9777:284:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9917:9:101","nodeType":"YulTypedName","src":"9917:9:101","type":""},{"name":"value0","nativeSrc":"9928:6:101","nodeType":"YulTypedName","src":"9928:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9939:4:101","nodeType":"YulTypedName","src":"9939:4:101","type":""}],"src":"9777:284:101"},{"body":{"nativeSrc":"10168:179:101","nodeType":"YulBlock","src":"10168:179:101","statements":[{"body":{"nativeSrc":"10214:16:101","nodeType":"YulBlock","src":"10214:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10223:1:101","nodeType":"YulLiteral","src":"10223:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"10226:1:101","nodeType":"YulLiteral","src":"10226:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10216:6:101","nodeType":"YulIdentifier","src":"10216:6:101"},"nativeSrc":"10216:12:101","nodeType":"YulFunctionCall","src":"10216:12:101"},"nativeSrc":"10216:12:101","nodeType":"YulExpressionStatement","src":"10216:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10189:7:101","nodeType":"YulIdentifier","src":"10189:7:101"},{"name":"headStart","nativeSrc":"10198:9:101","nodeType":"YulIdentifier","src":"10198:9:101"}],"functionName":{"name":"sub","nativeSrc":"10185:3:101","nodeType":"YulIdentifier","src":"10185:3:101"},"nativeSrc":"10185:23:101","nodeType":"YulFunctionCall","src":"10185:23:101"},{"kind":"number","nativeSrc":"10210:2:101","nodeType":"YulLiteral","src":"10210:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"10181:3:101","nodeType":"YulIdentifier","src":"10181:3:101"},"nativeSrc":"10181:32:101","nodeType":"YulFunctionCall","src":"10181:32:101"},"nativeSrc":"10178:52:101","nodeType":"YulIf","src":"10178:52:101"},{"nativeSrc":"10239:29:101","nodeType":"YulVariableDeclaration","src":"10239:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10258:9:101","nodeType":"YulIdentifier","src":"10258:9:101"}],"functionName":{"name":"mload","nativeSrc":"10252:5:101","nodeType":"YulIdentifier","src":"10252:5:101"},"nativeSrc":"10252:16:101","nodeType":"YulFunctionCall","src":"10252:16:101"},"variables":[{"name":"value","nativeSrc":"10243:5:101","nodeType":"YulTypedName","src":"10243:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10311:5:101","nodeType":"YulIdentifier","src":"10311:5:101"}],"functionName":{"name":"validator_revert_contract_IEToken","nativeSrc":"10277:33:101","nodeType":"YulIdentifier","src":"10277:33:101"},"nativeSrc":"10277:40:101","nodeType":"YulFunctionCall","src":"10277:40:101"},"nativeSrc":"10277:40:101","nodeType":"YulExpressionStatement","src":"10277:40:101"},{"nativeSrc":"10326:15:101","nodeType":"YulAssignment","src":"10326:15:101","value":{"name":"value","nativeSrc":"10336:5:101","nodeType":"YulIdentifier","src":"10336:5:101"},"variableNames":[{"name":"value0","nativeSrc":"10326:6:101","nodeType":"YulIdentifier","src":"10326:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory","nativeSrc":"10066:281:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10134:9:101","nodeType":"YulTypedName","src":"10134:9:101","type":""},{"name":"dataEnd","nativeSrc":"10145:7:101","nodeType":"YulTypedName","src":"10145:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10157:6:101","nodeType":"YulTypedName","src":"10157:6:101","type":""}],"src":"10066:281:101"},{"body":{"nativeSrc":"10427:129:101","nodeType":"YulBlock","src":"10427:129:101","statements":[{"nativeSrc":"10437:30:101","nodeType":"YulVariableDeclaration","src":"10437:30:101","value":{"arguments":[{"name":"ptr","nativeSrc":"10463:3:101","nodeType":"YulIdentifier","src":"10463:3:101"}],"functionName":{"name":"calldataload","nativeSrc":"10450:12:101","nodeType":"YulIdentifier","src":"10450:12:101"},"nativeSrc":"10450:17:101","nodeType":"YulFunctionCall","src":"10450:17:101"},"variables":[{"name":"value","nativeSrc":"10441:5:101","nodeType":"YulTypedName","src":"10441:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10515:5:101","nodeType":"YulIdentifier","src":"10515:5:101"}],"functionName":{"name":"validator_revert_enum_WhitelistOptions","nativeSrc":"10476:38:101","nodeType":"YulIdentifier","src":"10476:38:101"},"nativeSrc":"10476:45:101","nodeType":"YulFunctionCall","src":"10476:45:101"},"nativeSrc":"10476:45:101","nodeType":"YulExpressionStatement","src":"10476:45:101"},{"nativeSrc":"10530:20:101","nodeType":"YulAssignment","src":"10530:20:101","value":{"name":"value","nativeSrc":"10545:5:101","nodeType":"YulIdentifier","src":"10545:5:101"},"variableNames":[{"name":"returnValue","nativeSrc":"10530:11:101","nodeType":"YulIdentifier","src":"10530:11:101"}]}]},"name":"read_from_calldatat_enum_WhitelistOptions","nativeSrc":"10352:204:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"10403:3:101","nodeType":"YulTypedName","src":"10403:3:101","type":""}],"returnVariables":[{"name":"returnValue","nativeSrc":"10411:11:101","nodeType":"YulTypedName","src":"10411:11:101","type":""}],"src":"10352:204:101"},{"body":{"nativeSrc":"10666:269:101","nodeType":"YulBlock","src":"10666:269:101","statements":[{"body":{"nativeSrc":"10708:111:101","nodeType":"YulBlock","src":"10708:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10729:1:101","nodeType":"YulLiteral","src":"10729:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"10736:3:101","nodeType":"YulLiteral","src":"10736:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"10741:10:101","nodeType":"YulLiteral","src":"10741:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"10732:3:101","nodeType":"YulIdentifier","src":"10732:3:101"},"nativeSrc":"10732:20:101","nodeType":"YulFunctionCall","src":"10732:20:101"}],"functionName":{"name":"mstore","nativeSrc":"10722:6:101","nodeType":"YulIdentifier","src":"10722:6:101"},"nativeSrc":"10722:31:101","nodeType":"YulFunctionCall","src":"10722:31:101"},"nativeSrc":"10722:31:101","nodeType":"YulExpressionStatement","src":"10722:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"10773:1:101","nodeType":"YulLiteral","src":"10773:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"10776:4:101","nodeType":"YulLiteral","src":"10776:4:101","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"10766:6:101","nodeType":"YulIdentifier","src":"10766:6:101"},"nativeSrc":"10766:15:101","nodeType":"YulFunctionCall","src":"10766:15:101"},"nativeSrc":"10766:15:101","nodeType":"YulExpressionStatement","src":"10766:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"10801:1:101","nodeType":"YulLiteral","src":"10801:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"10804:4:101","nodeType":"YulLiteral","src":"10804:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"10794:6:101","nodeType":"YulIdentifier","src":"10794:6:101"},"nativeSrc":"10794:15:101","nodeType":"YulFunctionCall","src":"10794:15:101"},"nativeSrc":"10794:15:101","nodeType":"YulExpressionStatement","src":"10794:15:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"10689:5:101","nodeType":"YulIdentifier","src":"10689:5:101"},{"kind":"number","nativeSrc":"10696:1:101","nodeType":"YulLiteral","src":"10696:1:101","type":"","value":"3"}],"functionName":{"name":"lt","nativeSrc":"10686:2:101","nodeType":"YulIdentifier","src":"10686:2:101"},"nativeSrc":"10686:12:101","nodeType":"YulFunctionCall","src":"10686:12:101"}],"functionName":{"name":"iszero","nativeSrc":"10679:6:101","nodeType":"YulIdentifier","src":"10679:6:101"},"nativeSrc":"10679:20:101","nodeType":"YulFunctionCall","src":"10679:20:101"},"nativeSrc":"10676:143:101","nodeType":"YulIf","src":"10676:143:101"},{"nativeSrc":"10828:21:101","nodeType":"YulVariableDeclaration","src":"10828:21:101","value":{"arguments":[{"name":"slot","nativeSrc":"10844:4:101","nodeType":"YulIdentifier","src":"10844:4:101"}],"functionName":{"name":"sload","nativeSrc":"10838:5:101","nodeType":"YulIdentifier","src":"10838:5:101"},"nativeSrc":"10838:11:101","nodeType":"YulFunctionCall","src":"10838:11:101"},"variables":[{"name":"_1","nativeSrc":"10832:2:101","nodeType":"YulTypedName","src":"10832:2:101","type":""}]},{"expression":{"arguments":[{"name":"slot","nativeSrc":"10865:4:101","nodeType":"YulIdentifier","src":"10865:4:101"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"10878:2:101","nodeType":"YulIdentifier","src":"10878:2:101"},{"arguments":[{"kind":"number","nativeSrc":"10886:8:101","nodeType":"YulLiteral","src":"10886:8:101","type":"","value":"16711680"}],"functionName":{"name":"not","nativeSrc":"10882:3:101","nodeType":"YulIdentifier","src":"10882:3:101"},"nativeSrc":"10882:13:101","nodeType":"YulFunctionCall","src":"10882:13:101"}],"functionName":{"name":"and","nativeSrc":"10874:3:101","nodeType":"YulIdentifier","src":"10874:3:101"},"nativeSrc":"10874:22:101","nodeType":"YulFunctionCall","src":"10874:22:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"10906:2:101","nodeType":"YulLiteral","src":"10906:2:101","type":"","value":"16"},{"name":"value","nativeSrc":"10910:5:101","nodeType":"YulIdentifier","src":"10910:5:101"}],"functionName":{"name":"shl","nativeSrc":"10902:3:101","nodeType":"YulIdentifier","src":"10902:3:101"},"nativeSrc":"10902:14:101","nodeType":"YulFunctionCall","src":"10902:14:101"},{"kind":"number","nativeSrc":"10918:8:101","nodeType":"YulLiteral","src":"10918:8:101","type":"","value":"16711680"}],"functionName":{"name":"and","nativeSrc":"10898:3:101","nodeType":"YulIdentifier","src":"10898:3:101"},"nativeSrc":"10898:29:101","nodeType":"YulFunctionCall","src":"10898:29:101"}],"functionName":{"name":"or","nativeSrc":"10871:2:101","nodeType":"YulIdentifier","src":"10871:2:101"},"nativeSrc":"10871:57:101","nodeType":"YulFunctionCall","src":"10871:57:101"}],"functionName":{"name":"sstore","nativeSrc":"10858:6:101","nodeType":"YulIdentifier","src":"10858:6:101"},"nativeSrc":"10858:71:101","nodeType":"YulFunctionCall","src":"10858:71:101"},"nativeSrc":"10858:71:101","nodeType":"YulExpressionStatement","src":"10858:71:101"}]},"name":"update_storage_value_offset_t_enum_WhitelistOptions_to_t_enum_WhitelistOptions","nativeSrc":"10561:374:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"10649:4:101","nodeType":"YulTypedName","src":"10649:4:101","type":""},{"name":"value","nativeSrc":"10655:5:101","nodeType":"YulTypedName","src":"10655:5:101","type":""}],"src":"10561:374:101"},{"body":{"nativeSrc":"11041:273:101","nodeType":"YulBlock","src":"11041:273:101","statements":[{"body":{"nativeSrc":"11083:111:101","nodeType":"YulBlock","src":"11083:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11104:1:101","nodeType":"YulLiteral","src":"11104:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"11111:3:101","nodeType":"YulLiteral","src":"11111:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"11116:10:101","nodeType":"YulLiteral","src":"11116:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"11107:3:101","nodeType":"YulIdentifier","src":"11107:3:101"},"nativeSrc":"11107:20:101","nodeType":"YulFunctionCall","src":"11107:20:101"}],"functionName":{"name":"mstore","nativeSrc":"11097:6:101","nodeType":"YulIdentifier","src":"11097:6:101"},"nativeSrc":"11097:31:101","nodeType":"YulFunctionCall","src":"11097:31:101"},"nativeSrc":"11097:31:101","nodeType":"YulExpressionStatement","src":"11097:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11148:1:101","nodeType":"YulLiteral","src":"11148:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"11151:4:101","nodeType":"YulLiteral","src":"11151:4:101","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"11141:6:101","nodeType":"YulIdentifier","src":"11141:6:101"},"nativeSrc":"11141:15:101","nodeType":"YulFunctionCall","src":"11141:15:101"},"nativeSrc":"11141:15:101","nodeType":"YulExpressionStatement","src":"11141:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11176:1:101","nodeType":"YulLiteral","src":"11176:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11179:4:101","nodeType":"YulLiteral","src":"11179:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"11169:6:101","nodeType":"YulIdentifier","src":"11169:6:101"},"nativeSrc":"11169:15:101","nodeType":"YulFunctionCall","src":"11169:15:101"},"nativeSrc":"11169:15:101","nodeType":"YulExpressionStatement","src":"11169:15:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11064:5:101","nodeType":"YulIdentifier","src":"11064:5:101"},{"kind":"number","nativeSrc":"11071:1:101","nodeType":"YulLiteral","src":"11071:1:101","type":"","value":"3"}],"functionName":{"name":"lt","nativeSrc":"11061:2:101","nodeType":"YulIdentifier","src":"11061:2:101"},"nativeSrc":"11061:12:101","nodeType":"YulFunctionCall","src":"11061:12:101"}],"functionName":{"name":"iszero","nativeSrc":"11054:6:101","nodeType":"YulIdentifier","src":"11054:6:101"},"nativeSrc":"11054:20:101","nodeType":"YulFunctionCall","src":"11054:20:101"},"nativeSrc":"11051:143:101","nodeType":"YulIf","src":"11051:143:101"},{"nativeSrc":"11203:21:101","nodeType":"YulVariableDeclaration","src":"11203:21:101","value":{"arguments":[{"name":"slot","nativeSrc":"11219:4:101","nodeType":"YulIdentifier","src":"11219:4:101"}],"functionName":{"name":"sload","nativeSrc":"11213:5:101","nodeType":"YulIdentifier","src":"11213:5:101"},"nativeSrc":"11213:11:101","nodeType":"YulFunctionCall","src":"11213:11:101"},"variables":[{"name":"_1","nativeSrc":"11207:2:101","nodeType":"YulTypedName","src":"11207:2:101","type":""}]},{"expression":{"arguments":[{"name":"slot","nativeSrc":"11240:4:101","nodeType":"YulIdentifier","src":"11240:4:101"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"11253:2:101","nodeType":"YulIdentifier","src":"11253:2:101"},{"arguments":[{"kind":"number","nativeSrc":"11261:10:101","nodeType":"YulLiteral","src":"11261:10:101","type":"","value":"0xff000000"}],"functionName":{"name":"not","nativeSrc":"11257:3:101","nodeType":"YulIdentifier","src":"11257:3:101"},"nativeSrc":"11257:15:101","nodeType":"YulFunctionCall","src":"11257:15:101"}],"functionName":{"name":"and","nativeSrc":"11249:3:101","nodeType":"YulIdentifier","src":"11249:3:101"},"nativeSrc":"11249:24:101","nodeType":"YulFunctionCall","src":"11249:24:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11283:2:101","nodeType":"YulLiteral","src":"11283:2:101","type":"","value":"24"},{"name":"value","nativeSrc":"11287:5:101","nodeType":"YulIdentifier","src":"11287:5:101"}],"functionName":{"name":"shl","nativeSrc":"11279:3:101","nodeType":"YulIdentifier","src":"11279:3:101"},"nativeSrc":"11279:14:101","nodeType":"YulFunctionCall","src":"11279:14:101"},{"kind":"number","nativeSrc":"11295:10:101","nodeType":"YulLiteral","src":"11295:10:101","type":"","value":"0xff000000"}],"functionName":{"name":"and","nativeSrc":"11275:3:101","nodeType":"YulIdentifier","src":"11275:3:101"},"nativeSrc":"11275:31:101","nodeType":"YulFunctionCall","src":"11275:31:101"}],"functionName":{"name":"or","nativeSrc":"11246:2:101","nodeType":"YulIdentifier","src":"11246:2:101"},"nativeSrc":"11246:61:101","nodeType":"YulFunctionCall","src":"11246:61:101"}],"functionName":{"name":"sstore","nativeSrc":"11233:6:101","nodeType":"YulIdentifier","src":"11233:6:101"},"nativeSrc":"11233:75:101","nodeType":"YulFunctionCall","src":"11233:75:101"},"nativeSrc":"11233:75:101","nodeType":"YulExpressionStatement","src":"11233:75:101"}]},"name":"update_storage_value_offset_enum_WhitelistOptions_to_enum_WhitelistOptions","nativeSrc":"10940:374:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"11024:4:101","nodeType":"YulTypedName","src":"11024:4:101","type":""},{"name":"value","nativeSrc":"11030:5:101","nodeType":"YulTypedName","src":"11030:5:101","type":""}],"src":"10940:374:101"},{"body":{"nativeSrc":"11465:1019:101","nodeType":"YulBlock","src":"11465:1019:101","statements":[{"nativeSrc":"11475:34:101","nodeType":"YulVariableDeclaration","src":"11475:34:101","value":{"arguments":[{"name":"value","nativeSrc":"11503:5:101","nodeType":"YulIdentifier","src":"11503:5:101"}],"functionName":{"name":"calldataload","nativeSrc":"11490:12:101","nodeType":"YulIdentifier","src":"11490:12:101"},"nativeSrc":"11490:19:101","nodeType":"YulFunctionCall","src":"11490:19:101"},"variables":[{"name":"value_1","nativeSrc":"11479:7:101","nodeType":"YulTypedName","src":"11479:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"11557:7:101","nodeType":"YulIdentifier","src":"11557:7:101"}],"functionName":{"name":"validator_revert_enum_WhitelistOptions","nativeSrc":"11518:38:101","nodeType":"YulIdentifier","src":"11518:38:101"},"nativeSrc":"11518:47:101","nodeType":"YulFunctionCall","src":"11518:47:101"},"nativeSrc":"11518:47:101","nodeType":"YulExpressionStatement","src":"11518:47:101"},{"body":{"nativeSrc":"11608:111:101","nodeType":"YulBlock","src":"11608:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11629:1:101","nodeType":"YulLiteral","src":"11629:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"11636:3:101","nodeType":"YulLiteral","src":"11636:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"11641:10:101","nodeType":"YulLiteral","src":"11641:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"11632:3:101","nodeType":"YulIdentifier","src":"11632:3:101"},"nativeSrc":"11632:20:101","nodeType":"YulFunctionCall","src":"11632:20:101"}],"functionName":{"name":"mstore","nativeSrc":"11622:6:101","nodeType":"YulIdentifier","src":"11622:6:101"},"nativeSrc":"11622:31:101","nodeType":"YulFunctionCall","src":"11622:31:101"},"nativeSrc":"11622:31:101","nodeType":"YulExpressionStatement","src":"11622:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11673:1:101","nodeType":"YulLiteral","src":"11673:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"11676:4:101","nodeType":"YulLiteral","src":"11676:4:101","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"11666:6:101","nodeType":"YulIdentifier","src":"11666:6:101"},"nativeSrc":"11666:15:101","nodeType":"YulFunctionCall","src":"11666:15:101"},"nativeSrc":"11666:15:101","nodeType":"YulExpressionStatement","src":"11666:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11701:1:101","nodeType":"YulLiteral","src":"11701:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11704:4:101","nodeType":"YulLiteral","src":"11704:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"11694:6:101","nodeType":"YulIdentifier","src":"11694:6:101"},"nativeSrc":"11694:15:101","nodeType":"YulFunctionCall","src":"11694:15:101"},"nativeSrc":"11694:15:101","nodeType":"YulExpressionStatement","src":"11694:15:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"11587:7:101","nodeType":"YulIdentifier","src":"11587:7:101"},{"kind":"number","nativeSrc":"11596:1:101","nodeType":"YulLiteral","src":"11596:1:101","type":"","value":"3"}],"functionName":{"name":"lt","nativeSrc":"11584:2:101","nodeType":"YulIdentifier","src":"11584:2:101"},"nativeSrc":"11584:14:101","nodeType":"YulFunctionCall","src":"11584:14:101"}],"functionName":{"name":"iszero","nativeSrc":"11577:6:101","nodeType":"YulIdentifier","src":"11577:6:101"},"nativeSrc":"11577:22:101","nodeType":"YulFunctionCall","src":"11577:22:101"},"nativeSrc":"11574:145:101","nodeType":"YulIf","src":"11574:145:101"},{"nativeSrc":"11728:21:101","nodeType":"YulVariableDeclaration","src":"11728:21:101","value":{"arguments":[{"name":"slot","nativeSrc":"11744:4:101","nodeType":"YulIdentifier","src":"11744:4:101"}],"functionName":{"name":"sload","nativeSrc":"11738:5:101","nodeType":"YulIdentifier","src":"11738:5:101"},"nativeSrc":"11738:11:101","nodeType":"YulFunctionCall","src":"11738:11:101"},"variables":[{"name":"_1","nativeSrc":"11732:2:101","nodeType":"YulTypedName","src":"11732:2:101","type":""}]},{"nativeSrc":"11758:27:101","nodeType":"YulVariableDeclaration","src":"11758:27:101","value":{"arguments":[{"name":"value_1","nativeSrc":"11772:7:101","nodeType":"YulIdentifier","src":"11772:7:101"},{"kind":"number","nativeSrc":"11781:3:101","nodeType":"YulLiteral","src":"11781:3:101","type":"","value":"255"}],"functionName":{"name":"and","nativeSrc":"11768:3:101","nodeType":"YulIdentifier","src":"11768:3:101"},"nativeSrc":"11768:17:101","nodeType":"YulFunctionCall","src":"11768:17:101"},"variables":[{"name":"_2","nativeSrc":"11762:2:101","nodeType":"YulTypedName","src":"11762:2:101","type":""}]},{"expression":{"arguments":[{"name":"slot","nativeSrc":"11801:4:101","nodeType":"YulIdentifier","src":"11801:4:101"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"11814:2:101","nodeType":"YulIdentifier","src":"11814:2:101"},{"arguments":[{"kind":"number","nativeSrc":"11822:3:101","nodeType":"YulLiteral","src":"11822:3:101","type":"","value":"255"}],"functionName":{"name":"not","nativeSrc":"11818:3:101","nodeType":"YulIdentifier","src":"11818:3:101"},"nativeSrc":"11818:8:101","nodeType":"YulFunctionCall","src":"11818:8:101"}],"functionName":{"name":"and","nativeSrc":"11810:3:101","nodeType":"YulIdentifier","src":"11810:3:101"},"nativeSrc":"11810:17:101","nodeType":"YulFunctionCall","src":"11810:17:101"},{"name":"_2","nativeSrc":"11829:2:101","nodeType":"YulIdentifier","src":"11829:2:101"}],"functionName":{"name":"or","nativeSrc":"11807:2:101","nodeType":"YulIdentifier","src":"11807:2:101"},"nativeSrc":"11807:25:101","nodeType":"YulFunctionCall","src":"11807:25:101"}],"functionName":{"name":"sstore","nativeSrc":"11794:6:101","nodeType":"YulIdentifier","src":"11794:6:101"},"nativeSrc":"11794:39:101","nodeType":"YulFunctionCall","src":"11794:39:101"},"nativeSrc":"11794:39:101","nodeType":"YulExpressionStatement","src":"11794:39:101"},{"nativeSrc":"11842:43:101","nodeType":"YulVariableDeclaration","src":"11842:43:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11874:5:101","nodeType":"YulIdentifier","src":"11874:5:101"},{"kind":"number","nativeSrc":"11881:2:101","nodeType":"YulLiteral","src":"11881:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11870:3:101","nodeType":"YulIdentifier","src":"11870:3:101"},"nativeSrc":"11870:14:101","nodeType":"YulFunctionCall","src":"11870:14:101"}],"functionName":{"name":"calldataload","nativeSrc":"11857:12:101","nodeType":"YulIdentifier","src":"11857:12:101"},"nativeSrc":"11857:28:101","nodeType":"YulFunctionCall","src":"11857:28:101"},"variables":[{"name":"value_2","nativeSrc":"11846:7:101","nodeType":"YulTypedName","src":"11846:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"11933:7:101","nodeType":"YulIdentifier","src":"11933:7:101"}],"functionName":{"name":"validator_revert_enum_WhitelistOptions","nativeSrc":"11894:38:101","nodeType":"YulIdentifier","src":"11894:38:101"},"nativeSrc":"11894:47:101","nodeType":"YulFunctionCall","src":"11894:47:101"},"nativeSrc":"11894:47:101","nodeType":"YulExpressionStatement","src":"11894:47:101"},{"body":{"nativeSrc":"11984:111:101","nodeType":"YulBlock","src":"11984:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12005:1:101","nodeType":"YulLiteral","src":"12005:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"12012:3:101","nodeType":"YulLiteral","src":"12012:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"12017:10:101","nodeType":"YulLiteral","src":"12017:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"12008:3:101","nodeType":"YulIdentifier","src":"12008:3:101"},"nativeSrc":"12008:20:101","nodeType":"YulFunctionCall","src":"12008:20:101"}],"functionName":{"name":"mstore","nativeSrc":"11998:6:101","nodeType":"YulIdentifier","src":"11998:6:101"},"nativeSrc":"11998:31:101","nodeType":"YulFunctionCall","src":"11998:31:101"},"nativeSrc":"11998:31:101","nodeType":"YulExpressionStatement","src":"11998:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12049:1:101","nodeType":"YulLiteral","src":"12049:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"12052:4:101","nodeType":"YulLiteral","src":"12052:4:101","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"12042:6:101","nodeType":"YulIdentifier","src":"12042:6:101"},"nativeSrc":"12042:15:101","nodeType":"YulFunctionCall","src":"12042:15:101"},"nativeSrc":"12042:15:101","nodeType":"YulExpressionStatement","src":"12042:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12077:1:101","nodeType":"YulLiteral","src":"12077:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"12080:4:101","nodeType":"YulLiteral","src":"12080:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"12070:6:101","nodeType":"YulIdentifier","src":"12070:6:101"},"nativeSrc":"12070:15:101","nodeType":"YulFunctionCall","src":"12070:15:101"},"nativeSrc":"12070:15:101","nodeType":"YulExpressionStatement","src":"12070:15:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value_2","nativeSrc":"11963:7:101","nodeType":"YulIdentifier","src":"11963:7:101"},{"kind":"number","nativeSrc":"11972:1:101","nodeType":"YulLiteral","src":"11972:1:101","type":"","value":"3"}],"functionName":{"name":"lt","nativeSrc":"11960:2:101","nodeType":"YulIdentifier","src":"11960:2:101"},"nativeSrc":"11960:14:101","nodeType":"YulFunctionCall","src":"11960:14:101"}],"functionName":{"name":"iszero","nativeSrc":"11953:6:101","nodeType":"YulIdentifier","src":"11953:6:101"},"nativeSrc":"11953:22:101","nodeType":"YulFunctionCall","src":"11953:22:101"},"nativeSrc":"11950:145:101","nodeType":"YulIf","src":"11950:145:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"12111:4:101","nodeType":"YulIdentifier","src":"12111:4:101"},{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"12127:2:101","nodeType":"YulIdentifier","src":"12127:2:101"},{"arguments":[{"kind":"number","nativeSrc":"12135:5:101","nodeType":"YulLiteral","src":"12135:5:101","type":"","value":"65535"}],"functionName":{"name":"not","nativeSrc":"12131:3:101","nodeType":"YulIdentifier","src":"12131:3:101"},"nativeSrc":"12131:10:101","nodeType":"YulFunctionCall","src":"12131:10:101"}],"functionName":{"name":"and","nativeSrc":"12123:3:101","nodeType":"YulIdentifier","src":"12123:3:101"},"nativeSrc":"12123:19:101","nodeType":"YulFunctionCall","src":"12123:19:101"},{"name":"_2","nativeSrc":"12144:2:101","nodeType":"YulIdentifier","src":"12144:2:101"}],"functionName":{"name":"or","nativeSrc":"12120:2:101","nodeType":"YulIdentifier","src":"12120:2:101"},"nativeSrc":"12120:27:101","nodeType":"YulFunctionCall","src":"12120:27:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12157:1:101","nodeType":"YulLiteral","src":"12157:1:101","type":"","value":"8"},{"name":"value_2","nativeSrc":"12160:7:101","nodeType":"YulIdentifier","src":"12160:7:101"}],"functionName":{"name":"shl","nativeSrc":"12153:3:101","nodeType":"YulIdentifier","src":"12153:3:101"},"nativeSrc":"12153:15:101","nodeType":"YulFunctionCall","src":"12153:15:101"},{"kind":"number","nativeSrc":"12170:5:101","nodeType":"YulLiteral","src":"12170:5:101","type":"","value":"65280"}],"functionName":{"name":"and","nativeSrc":"12149:3:101","nodeType":"YulIdentifier","src":"12149:3:101"},"nativeSrc":"12149:27:101","nodeType":"YulFunctionCall","src":"12149:27:101"}],"functionName":{"name":"or","nativeSrc":"12117:2:101","nodeType":"YulIdentifier","src":"12117:2:101"},"nativeSrc":"12117:60:101","nodeType":"YulFunctionCall","src":"12117:60:101"}],"functionName":{"name":"sstore","nativeSrc":"12104:6:101","nodeType":"YulIdentifier","src":"12104:6:101"},"nativeSrc":"12104:74:101","nodeType":"YulFunctionCall","src":"12104:74:101"},"nativeSrc":"12104:74:101","nodeType":"YulExpressionStatement","src":"12104:74:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"12266:4:101","nodeType":"YulIdentifier","src":"12266:4:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"12318:5:101","nodeType":"YulIdentifier","src":"12318:5:101"},{"kind":"number","nativeSrc":"12325:2:101","nodeType":"YulLiteral","src":"12325:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12314:3:101","nodeType":"YulIdentifier","src":"12314:3:101"},"nativeSrc":"12314:14:101","nodeType":"YulFunctionCall","src":"12314:14:101"}],"functionName":{"name":"read_from_calldatat_enum_WhitelistOptions","nativeSrc":"12272:41:101","nodeType":"YulIdentifier","src":"12272:41:101"},"nativeSrc":"12272:57:101","nodeType":"YulFunctionCall","src":"12272:57:101"}],"functionName":{"name":"update_storage_value_offset_t_enum_WhitelistOptions_to_t_enum_WhitelistOptions","nativeSrc":"12187:78:101","nodeType":"YulIdentifier","src":"12187:78:101"},"nativeSrc":"12187:143:101","nodeType":"YulFunctionCall","src":"12187:143:101"},"nativeSrc":"12187:143:101","nodeType":"YulExpressionStatement","src":"12187:143:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"12414:4:101","nodeType":"YulIdentifier","src":"12414:4:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"12466:5:101","nodeType":"YulIdentifier","src":"12466:5:101"},{"kind":"number","nativeSrc":"12473:2:101","nodeType":"YulLiteral","src":"12473:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12462:3:101","nodeType":"YulIdentifier","src":"12462:3:101"},"nativeSrc":"12462:14:101","nodeType":"YulFunctionCall","src":"12462:14:101"}],"functionName":{"name":"read_from_calldatat_enum_WhitelistOptions","nativeSrc":"12420:41:101","nodeType":"YulIdentifier","src":"12420:41:101"},"nativeSrc":"12420:57:101","nodeType":"YulFunctionCall","src":"12420:57:101"}],"functionName":{"name":"update_storage_value_offset_enum_WhitelistOptions_to_enum_WhitelistOptions","nativeSrc":"12339:74:101","nodeType":"YulIdentifier","src":"12339:74:101"},"nativeSrc":"12339:139:101","nodeType":"YulFunctionCall","src":"12339:139:101"},"nativeSrc":"12339:139:101","nodeType":"YulExpressionStatement","src":"12339:139:101"}]},"name":"update_storage_value_offset_0_t_struct$_WhitelistStatus_$21788_calldata_ptr_to_t_struct$_WhitelistStatus_$21788_storage","nativeSrc":"11319:1165:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"11448:4:101","nodeType":"YulTypedName","src":"11448:4:101","type":""},{"name":"value","nativeSrc":"11454:5:101","nodeType":"YulTypedName","src":"11454:5:101","type":""}],"src":"11319:1165:101"},{"body":{"nativeSrc":"12688:182:101","nodeType":"YulBlock","src":"12688:182:101","statements":[{"nativeSrc":"12698:27:101","nodeType":"YulAssignment","src":"12698:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12710:9:101","nodeType":"YulIdentifier","src":"12710:9:101"},{"kind":"number","nativeSrc":"12721:3:101","nodeType":"YulLiteral","src":"12721:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"12706:3:101","nodeType":"YulIdentifier","src":"12706:3:101"},"nativeSrc":"12706:19:101","nodeType":"YulFunctionCall","src":"12706:19:101"},"variableNames":[{"name":"tail","nativeSrc":"12698:4:101","nodeType":"YulIdentifier","src":"12698:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12741:9:101","nodeType":"YulIdentifier","src":"12741:9:101"},{"arguments":[{"name":"value0","nativeSrc":"12756:6:101","nodeType":"YulIdentifier","src":"12756:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12772:3:101","nodeType":"YulLiteral","src":"12772:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"12777:1:101","nodeType":"YulLiteral","src":"12777:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12768:3:101","nodeType":"YulIdentifier","src":"12768:3:101"},"nativeSrc":"12768:11:101","nodeType":"YulFunctionCall","src":"12768:11:101"},{"kind":"number","nativeSrc":"12781:1:101","nodeType":"YulLiteral","src":"12781:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12764:3:101","nodeType":"YulIdentifier","src":"12764:3:101"},"nativeSrc":"12764:19:101","nodeType":"YulFunctionCall","src":"12764:19:101"}],"functionName":{"name":"and","nativeSrc":"12752:3:101","nodeType":"YulIdentifier","src":"12752:3:101"},"nativeSrc":"12752:32:101","nodeType":"YulFunctionCall","src":"12752:32:101"}],"functionName":{"name":"mstore","nativeSrc":"12734:6:101","nodeType":"YulIdentifier","src":"12734:6:101"},"nativeSrc":"12734:51:101","nodeType":"YulFunctionCall","src":"12734:51:101"},"nativeSrc":"12734:51:101","nodeType":"YulExpressionStatement","src":"12734:51:101"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"12837:6:101","nodeType":"YulIdentifier","src":"12837:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"12849:9:101","nodeType":"YulIdentifier","src":"12849:9:101"},{"kind":"number","nativeSrc":"12860:2:101","nodeType":"YulLiteral","src":"12860:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12845:3:101","nodeType":"YulIdentifier","src":"12845:3:101"},"nativeSrc":"12845:18:101","nodeType":"YulFunctionCall","src":"12845:18:101"}],"functionName":{"name":"abi_encode_struct_WhitelistStatus_calldata","nativeSrc":"12794:42:101","nodeType":"YulIdentifier","src":"12794:42:101"},"nativeSrc":"12794:70:101","nodeType":"YulFunctionCall","src":"12794:70:101"},"nativeSrc":"12794:70:101","nodeType":"YulExpressionStatement","src":"12794:70:101"}]},"name":"abi_encode_tuple_t_address_t_struct$_WhitelistStatus_$21788_calldata_ptr__to_t_address_t_struct$_WhitelistStatus_$21788_memory_ptr__fromStack_reversed","nativeSrc":"12489:381:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12649:9:101","nodeType":"YulTypedName","src":"12649:9:101","type":""},{"name":"value1","nativeSrc":"12660:6:101","nodeType":"YulTypedName","src":"12660:6:101","type":""},{"name":"value0","nativeSrc":"12668:6:101","nodeType":"YulTypedName","src":"12668:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12679:4:101","nodeType":"YulTypedName","src":"12679:4:101","type":""}],"src":"12489:381:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function validator_revert_contract_IEToken(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$28869t_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IEToken(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IEToken(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IEToken(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let array := allocate_memory(add(and(add(length, 0x1f), not(31)), 32))\n        mstore(array, length)\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        calldatacopy(add(array, 32), add(_1, 32), length)\n        mstore(add(add(array, length), 32), 0)\n        value1 := array\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$28869t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IEToken(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IEToken(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_contract_IEToken(value_2)\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n    }\n    function abi_decode_struct_WhitelistStatus_calldata(offset, end) -> value\n    {\n        if slt(sub(end, offset), 128) { revert(0, 0) }\n        value := offset\n    }\n    function abi_decode_tuple_t_addresst_struct$_WhitelistStatus_$21788_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IEToken(value)\n        value0 := value\n        value1 := abi_decode_struct_WhitelistStatus_calldata(add(headStart, 32), dataEnd)\n    }\n    function abi_decode_tuple_t_struct$_WhitelistStatus_$21788_calldata_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        value0 := abi_decode_struct_WhitelistStatus_calldata(headStart, dataEnd)\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        mcopy(add(headStart, 64), add(value0, 32), length)\n        mstore(add(add(headStart, length), 64), 0)\n        tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n    }\n    function abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function abi_encode_enum_WhitelistOptions(value, pos)\n    {\n        if iszero(lt(value, 3))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n        mstore(pos, value)\n    }\n    function abi_encode_struct_WhitelistStatus(value, pos)\n    {\n        abi_encode_enum_WhitelistOptions(mload(value), pos)\n        let memberValue0 := mload(add(value, 0x20))\n        abi_encode_enum_WhitelistOptions(memberValue0, add(pos, 0x20))\n        let memberValue0_1 := mload(add(value, 0x40))\n        abi_encode_enum_WhitelistOptions(memberValue0_1, add(pos, 0x40))\n        let memberValue0_2 := mload(add(value, 0x60))\n        abi_encode_enum_WhitelistOptions(memberValue0_2, add(pos, 0x60))\n    }\n    function abi_encode_tuple_t_struct$_WhitelistStatus_$21788_memory_ptr__to_t_struct$_WhitelistStatus_$21788_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        abi_encode_struct_WhitelistStatus(value0, headStart)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function validator_revert_enum_WhitelistOptions(value)\n    {\n        if iszero(lt(value, 3)) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_struct$_WhitelistStatus_$21788_memory_ptr(headStart, dataEnd) -> value0\n    {\n        let _1 := slt(sub(dataEnd, headStart), 128)\n        if _1 { revert(0, 0) }\n        _1 := 0\n        let memPtr := 0\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 128)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        let value := calldataload(headStart)\n        validator_revert_enum_WhitelistOptions(value)\n        mstore(memPtr, value)\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_enum_WhitelistOptions(value_1)\n        mstore(add(memPtr, 32), value_1)\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_enum_WhitelistOptions(value_2)\n        mstore(add(memPtr, 64), value_2)\n        let value_3 := calldataload(add(headStart, 96))\n        validator_revert_enum_WhitelistOptions(value_3)\n        mstore(add(memPtr, 96), value_3)\n        value0 := memPtr\n    }\n    function abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IEToken(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_bytes32_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_address_t_struct$_WhitelistStatus_$21788_memory_ptr__to_t_address_t_struct$_WhitelistStatus_$21788_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        abi_encode_struct_WhitelistStatus(value1, add(headStart, 32))\n    }\n    function abi_decode_tuple_t_enum$_WhitelistOptions_$21775(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_enum_WhitelistOptions(value)\n        value0 := value\n    }\n    function abi_encode_struct_WhitelistStatus_calldata(value, pos)\n    {\n        let value_1 := calldataload(value)\n        validator_revert_enum_WhitelistOptions(value_1)\n        abi_encode_enum_WhitelistOptions(value_1, pos)\n        let value_2 := calldataload(add(value, 0x20))\n        validator_revert_enum_WhitelistOptions(value_2)\n        abi_encode_enum_WhitelistOptions(value_2, add(pos, 0x20))\n        let value_3 := calldataload(add(value, 0x40))\n        validator_revert_enum_WhitelistOptions(value_3)\n        abi_encode_enum_WhitelistOptions(value_3, add(pos, 0x40))\n        let value_4 := calldataload(add(value, 0x60))\n        validator_revert_enum_WhitelistOptions(value_4)\n        abi_encode_enum_WhitelistOptions(value_4, add(pos, 0x60))\n    }\n    function abi_encode_tuple_t_struct$_WhitelistStatus_$21788_calldata_ptr__to_t_struct$_WhitelistStatus_$21788_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        abi_encode_struct_WhitelistStatus_calldata(value0, headStart)\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IEToken(value)\n        value0 := value\n    }\n    function read_from_calldatat_enum_WhitelistOptions(ptr) -> returnValue\n    {\n        let value := calldataload(ptr)\n        validator_revert_enum_WhitelistOptions(value)\n        returnValue := value\n    }\n    function update_storage_value_offset_t_enum_WhitelistOptions_to_t_enum_WhitelistOptions(slot, value)\n    {\n        if iszero(lt(value, 3))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n        let _1 := sload(slot)\n        sstore(slot, or(and(_1, not(16711680)), and(shl(16, value), 16711680)))\n    }\n    function update_storage_value_offset_enum_WhitelistOptions_to_enum_WhitelistOptions(slot, value)\n    {\n        if iszero(lt(value, 3))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n        let _1 := sload(slot)\n        sstore(slot, or(and(_1, not(0xff000000)), and(shl(24, value), 0xff000000)))\n    }\n    function update_storage_value_offset_0_t_struct$_WhitelistStatus_$21788_calldata_ptr_to_t_struct$_WhitelistStatus_$21788_storage(slot, value)\n    {\n        let value_1 := calldataload(value)\n        validator_revert_enum_WhitelistOptions(value_1)\n        if iszero(lt(value_1, 3))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n        let _1 := sload(slot)\n        let _2 := and(value_1, 255)\n        sstore(slot, or(and(_1, not(255)), _2))\n        let value_2 := calldataload(add(value, 32))\n        validator_revert_enum_WhitelistOptions(value_2)\n        if iszero(lt(value_2, 3))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n        sstore(slot, or(or(and(_1, not(65535)), _2), and(shl(8, value_2), 65280)))\n        update_storage_value_offset_t_enum_WhitelistOptions_to_t_enum_WhitelistOptions(slot, read_from_calldatat_enum_WhitelistOptions(add(value, 64)))\n        update_storage_value_offset_enum_WhitelistOptions_to_enum_WhitelistOptions(slot, read_from_calldatat_enum_WhitelistOptions(add(value, 96)))\n    }\n    function abi_encode_tuple_t_address_t_struct$_WhitelistStatus_$21788_calldata_ptr__to_t_address_t_struct$_WhitelistStatus_$21788_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        abi_encode_struct_WhitelistStatus_calldata(value1, add(headStart, 32))\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"7234":[{"length":32,"start":2072},{"length":32,"start":2113},{"length":32,"start":2440}],"25474":[{"length":32,"start":292},{"length":32,"start":1597},{"length":32,"start":3018}]},"linkReferences":{},"object":"6080604052600436106100bf575f3560e01c8063896ce44c1161007c578063ad3cb1cc11610057578063ad3cb1cc1461020f578063cf273ca61461024c578063e5a6b10f1461026b578063ed716bf41461027f575f5ffd5b8063896ce44c146101b25780639051c763146101d1578063aa2f92fb146101f0575f5ffd5b806301ffc9a7146100c357806337ee20dd146100f75780634d15eb03146101165780634f1ef2861461015c57806352d1902d146101715780635fcdca3714610193575b5f5ffd5b3480156100ce575f5ffd5b506100e26100dd366004610ede565b6102a0565b60405190151581526020015b60405180910390f35b348015610102575f5ffd5b506100e2610111366004610f19565b6102cb565b348015610121575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020016100ee565b61016f61016a366004610f9c565b61033b565b005b34801561017c575f5ffd5b5061018561035a565b6040519081526020016100ee565b34801561019e575f5ffd5b506100e26101ad366004611043565b610375565b3480156101bd575f5ffd5b5061016f6101cc3660046110a7565b610471565b3480156101dc575f5ffd5b506100e26101eb366004610f19565b6104c3565b3480156101fb575f5ffd5b5061016f61020a3660046110db565b610522565b34801561021a575f5ffd5b5061023f604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100ee91906110f5565b348015610257575f5ffd5b5061016f6102663660046110db565b61061b565b348015610276575f5ffd5b5061014461063a565b34801561028a575f5ffd5b506102936106c0565b6040516100ee91906111a1565b5f6102aa826107d8565b806102c557506001600160e01b0319821663f8722d8960e01b145b92915050565b6001600160a01b0382165f9081526032602052604081205460ff16818160028111156102f9576102f961112a565b0361031a57505f805260326020525f51602061145b5f395f51905f525460ff165b60015b81600281111561032f5761032f61112a565b149150505b9392505050565b61034361080d565b61034c826108b3565b61035682826108bc565b5050565b5f61036361097d565b505f51602061147b5f395f51905f5290565b6001600160a01b0383165f9081526032602052604081205462010000900460ff16818160028111156103a9576103a961112a565b036103d057505f805260326020525f51602061145b5f395f51905f525462010000900460ff165b60018160028111156103e4576103e461112a565b146103f2575f915050610469565b506001600160a01b0383165f908152603260205260408120546301000000900460ff16908160028111156104285761042861112a565b0361045057505f805260326020525f51602061145b5f395f51905f52546301000000900460ff165b60018160028111156104645761046461112a565b149150505b949350505050565b816001600160a01b0381166104aa57604051639627159960e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b50610356826104be368490038401846111bb565b6109c6565b6001600160a01b0382165f90815260326020526040812054610100900460ff16818160028111156104f6576104f661112a565b0361031a57505f805260326020525f51602061145b5f395f51905f5254610100900460ff16600161031d565b5f61052b610ac2565b805490915060ff600160401b820416159067ffffffffffffffff165f811580156105525750825b90505f8267ffffffffffffffff16600114801561056e5750303b155b90508115801561057c575080155b1561059a5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156105c457845460ff60401b1916600160401b1785555b6105cd86610aea565b831561061357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b61062481610b03565b6106375f6104be368490038401846111bb565b50565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610697573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106bb9190611240565b905090565b6106e76040805160808101909152805f81526020015f81526020015f81526020015f905290565b5f8052603260205260408051608081019091525f51602061145b5f395f51905f528054829060ff1660028111156107205761072061112a565b60028111156107315761073161112a565b81528154602090910190610100900460ff1660028111156107545761075461112a565b60028111156107655761076561112a565b8152815460209091019062010000900460ff1660028111156107895761078961112a565b600281111561079a5761079a61112a565b815281546020909101906301000000900460ff1660028111156107bf576107bf61112a565b60028111156107d0576107d061112a565b905250919050565b5f6001600160e01b031982166301ffc9a760e01b14806102c557506001600160e01b03198216634d15eb0360e01b1492915050565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061089357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166108875f51602061147b5f395f51905f52546001600160a01b031690565b6001600160a01b031614155b156108b15760405163703e46dd60e11b815260040160405180910390fd5b565b61063781610bc8565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015610916575060408051601f3d908101601f191682019092526109139181019061125b565b60015b61093e57604051634c9c8ce360e01b81526001600160a01b03831660048201526024016104a1565b5f51602061147b5f395f51905f52811461096e57604051632a87526960e21b8152600481018290526024016104a1565b6109788383610c79565b505050565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146108b15760405163703e46dd60e11b815260040160405180910390fd5b6001600160a01b0382165f9081526032602052604090208151815483929190829060ff191660018360028111156109ff576109ff61112a565b021790555060208201518154829061ff001916610100836002811115610a2757610a2761112a565b021790555060408201518154829062ff0000191662010000836002811115610a5157610a5161112a565b021790555060608201518154829063ff00000019166301000000836002811115610a7d57610a7d61112a565b02179055509050507f95d7a6740c7954755644347f27cbf1bebf7d02a83371922a49d04ddce4757c2a8282604051610ab6929190611272565b60405180910390a15050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a006102c5565b610af2610cce565b610afa610cf3565b61063781610cfb565b5f610b11602083018361128f565b6002811115610b2257610b2261112a565b14158015610b5057505f610b3c604083016020840161128f565b6002811115610b4d57610b4d61112a565b14155b8015610b7c57505f610b68606083016040840161128f565b6002811115610b7957610b7961112a565b14155b8015610ba857505f610b94608083016060840161128f565b6002811115610ba557610ba561112a565b14155b819061035657604051637a94d59760e01b81526004016104a19190611313565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c2e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c529190611240565b6001600160a01b0316146106375760405163d2b3d33f60e01b815260040160405180910390fd5b610c8282610d6c565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115610cc6576109788282610dcf565b610356610e6f565b610cd6610e8e565b6108b157604051631afcd79f60e31b815260040160405180910390fd5b6108b1610cce565b610d03610cce565b610d0c81610b03565b5f80526032602052805f51602061145b5f395f51905f52610d2d828261139b565b9050507f95d7a6740c7954755644347f27cbf1bebf7d02a83371922a49d04ddce4757c2a5f82604051610d6192919061143d565b60405180910390a150565b806001600160a01b03163b5f03610da157604051634c9c8ce360e01b81526001600160a01b03821660048201526024016104a1565b5f51602061147b5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f610ddc8484610ea7565b9050808015610dfd57505f3d1180610dfd57505f846001600160a01b03163b115b15610e1257610e0a610eba565b9150506102c5565b8015610e3c57604051639996b31560e01b81526001600160a01b03851660048201526024016104a1565b3d15610e4f57610e4a610ed3565b610e68565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b34156108b15760405163b398979f60e01b815260040160405180910390fd5b5f610e97610ac2565b54600160401b900460ff16919050565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f60208284031215610eee575f5ffd5b81356001600160e01b031981168114610334575f5ffd5b6001600160a01b0381168114610637575f5ffd5b5f5f5f60608486031215610f2b575f5ffd5b8335610f3681610f05565b92506020840135610f4681610f05565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff81118282101715610f9457610f94610f57565b604052919050565b5f5f60408385031215610fad575f5ffd5b8235610fb881610f05565b9150602083013567ffffffffffffffff811115610fd3575f5ffd5b8301601f81018513610fe3575f5ffd5b803567ffffffffffffffff811115610ffd57610ffd610f57565b611010601f8201601f1916602001610f6b565b818152866020838501011115611024575f5ffd5b816020840160208301375f602083830101528093505050509250929050565b5f5f5f5f60808587031215611056575f5ffd5b843561106181610f05565b9350602085013561107181610f05565b9250604085013561108181610f05565b9396929550929360600135925050565b5f608082840312156110a1575f5ffd5b50919050565b5f5f60a083850312156110b8575f5ffd5b82356110c381610f05565b91506110d28460208501611091565b90509250929050565b5f608082840312156110eb575f5ffd5b6103348383611091565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b634e487b7160e01b5f52602160045260245ffd5b6003811061115a57634e487b7160e01b5f52602160045260245ffd5b9052565b61116982825161113e565b602081015161117b602084018261113e565b50604081015161118e604084018261113e565b506060810151610978606084018261113e565b608081016102c5828461115e565b60038110610637575f5ffd5b5f60808284031280156111cc575f5ffd5b506040516080810167ffffffffffffffff811182821017156111f0576111f0610f57565b60405282356111fe816111af565b8152602083013561120e816111af565b60208201526040830135611221816111af565b60408201526060830135611234816111af565b60608201529392505050565b5f60208284031215611250575f5ffd5b815161033481610f05565b5f6020828403121561126b575f5ffd5b5051919050565b6001600160a01b038316815260a08101610334602083018461115e565b5f6020828403121561129f575f5ffd5b8135610334816111af565b80356112b5816111af565b6112bf838261113e565b5060208101356112ce816111af565b6112db602084018261113e565b5060408101356112ea816111af565b6112f7604084018261113e565b506060810135611306816111af565b610978606084018261113e565b608081016102c582846112aa565b5f81356102c5816111af565b6003821061134957634e487b7160e01b5f52602160045260245ffd5b805462ff00008360101b1662ff0000198216178255505050565b6003821061137f57634e487b7160e01b5f52602160045260245ffd5b805463ff0000008360181b1663ff000000198216178255505050565b81356113a6816111af565b600381106113c257634e487b7160e01b5f52602160045260245ffd5b815460ff821691508160ff19821617835560208401356113e1816111af565b600381106113fd57634e487b7160e01b5f52602160045260245ffd5b61ff008160081b168361ffff1984161717845550505061142861142260408401611321565b8261132d565b61035661143760608401611321565b82611363565b6001600160a01b038316815260a0810161033460208301846112aa56fe00bcd6ff29ae71d399fb597d99792fa72d0863bd723b9ab11f79d0b8d8ac5bc8360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca2646970667358221220847a7730fa59d13c51189897b2f7145c2935ab4c07eb9f03a0e84b7f2110060564736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xBF JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x896CE44C GT PUSH2 0x7C JUMPI DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0x57 JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x20F JUMPI DUP1 PUSH4 0xCF273CA6 EQ PUSH2 0x24C JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x26B JUMPI DUP1 PUSH4 0xED716BF4 EQ PUSH2 0x27F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x896CE44C EQ PUSH2 0x1B2 JUMPI DUP1 PUSH4 0x9051C763 EQ PUSH2 0x1D1 JUMPI DUP1 PUSH4 0xAA2F92FB EQ PUSH2 0x1F0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xC3 JUMPI DUP1 PUSH4 0x37EE20DD EQ PUSH2 0xF7 JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x116 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x15C JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x171 JUMPI DUP1 PUSH4 0x5FCDCA37 EQ PUSH2 0x193 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xCE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xE2 PUSH2 0xDD CALLDATASIZE PUSH1 0x4 PUSH2 0xEDE JUMP JUMPDEST PUSH2 0x2A0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x102 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xE2 PUSH2 0x111 CALLDATASIZE PUSH1 0x4 PUSH2 0xF19 JUMP JUMPDEST PUSH2 0x2CB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x121 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xEE JUMP JUMPDEST PUSH2 0x16F PUSH2 0x16A CALLDATASIZE PUSH1 0x4 PUSH2 0xF9C JUMP JUMPDEST PUSH2 0x33B JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x17C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x185 PUSH2 0x35A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xEE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x19E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xE2 PUSH2 0x1AD CALLDATASIZE PUSH1 0x4 PUSH2 0x1043 JUMP JUMPDEST PUSH2 0x375 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x1CC CALLDATASIZE PUSH1 0x4 PUSH2 0x10A7 JUMP JUMPDEST PUSH2 0x471 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xE2 PUSH2 0x1EB CALLDATASIZE PUSH1 0x4 PUSH2 0xF19 JUMP JUMPDEST PUSH2 0x4C3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1FB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x20A CALLDATASIZE PUSH1 0x4 PUSH2 0x10DB JUMP JUMPDEST PUSH2 0x522 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x21A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x23F PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xEE SWAP2 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x257 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x266 CALLDATASIZE PUSH1 0x4 PUSH2 0x10DB JUMP JUMPDEST PUSH2 0x61B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x276 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x144 PUSH2 0x63A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x293 PUSH2 0x6C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xEE SWAP2 SWAP1 PUSH2 0x11A1 JUMP JUMPDEST PUSH0 PUSH2 0x2AA DUP3 PUSH2 0x7D8 JUMP JUMPDEST DUP1 PUSH2 0x2C5 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xF8722D89 PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 DUP2 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x2F9 JUMPI PUSH2 0x2F9 PUSH2 0x112A JUMP JUMPDEST SUB PUSH2 0x31A JUMPI POP PUSH0 DUP1 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x145B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x1 JUMPDEST DUP2 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x32F JUMPI PUSH2 0x32F PUSH2 0x112A JUMP JUMPDEST EQ SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x343 PUSH2 0x80D JUMP JUMPDEST PUSH2 0x34C DUP3 PUSH2 0x8B3 JUMP JUMPDEST PUSH2 0x356 DUP3 DUP3 PUSH2 0x8BC JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x363 PUSH2 0x97D JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x147B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH3 0x10000 SWAP1 DIV PUSH1 0xFF AND DUP2 DUP2 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x3A9 JUMPI PUSH2 0x3A9 PUSH2 0x112A JUMP JUMPDEST SUB PUSH2 0x3D0 JUMPI POP PUSH0 DUP1 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x145B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH3 0x10000 SWAP1 DIV PUSH1 0xFF AND JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x3E4 JUMPI PUSH2 0x3E4 PUSH2 0x112A JUMP JUMPDEST EQ PUSH2 0x3F2 JUMPI PUSH0 SWAP2 POP POP PUSH2 0x469 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND SWAP1 DUP2 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x428 JUMPI PUSH2 0x428 PUSH2 0x112A JUMP JUMPDEST SUB PUSH2 0x450 JUMPI POP PUSH0 DUP1 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x145B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x464 JUMPI PUSH2 0x464 PUSH2 0x112A JUMP JUMPDEST EQ SWAP2 POP POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x4AA JUMPI PUSH1 0x40 MLOAD PUSH4 0x96271599 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH2 0x356 DUP3 PUSH2 0x4BE CALLDATASIZE DUP5 SWAP1 SUB DUP5 ADD DUP5 PUSH2 0x11BB JUMP JUMPDEST PUSH2 0x9C6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND DUP2 DUP2 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x4F6 JUMPI PUSH2 0x4F6 PUSH2 0x112A JUMP JUMPDEST SUB PUSH2 0x31A JUMPI POP PUSH0 DUP1 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x145B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x1 PUSH2 0x31D JUMP JUMPDEST PUSH0 PUSH2 0x52B PUSH2 0xAC2 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x552 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x56E JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x57C JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x59A JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x5C4 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x5CD DUP7 PUSH2 0xAEA JUMP JUMPDEST DUP4 ISZERO PUSH2 0x613 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x624 DUP2 PUSH2 0xB03 JUMP JUMPDEST PUSH2 0x637 PUSH0 PUSH2 0x4BE CALLDATASIZE DUP5 SWAP1 SUB DUP5 ADD DUP5 PUSH2 0x11BB JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x697 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x6BB SWAP2 SWAP1 PUSH2 0x1240 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x6E7 PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD SWAP1 SWAP2 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 SWAP1 MSTORE SWAP1 JUMP JUMPDEST PUSH0 DUP1 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x145B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD DUP3 SWAP1 PUSH1 0xFF AND PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x720 JUMPI PUSH2 0x720 PUSH2 0x112A JUMP JUMPDEST PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x731 JUMPI PUSH2 0x731 PUSH2 0x112A JUMP JUMPDEST DUP2 MSTORE DUP2 SLOAD PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x754 JUMPI PUSH2 0x754 PUSH2 0x112A JUMP JUMPDEST PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x765 JUMPI PUSH2 0x765 PUSH2 0x112A JUMP JUMPDEST DUP2 MSTORE DUP2 SLOAD PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH3 0x10000 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x789 JUMPI PUSH2 0x789 PUSH2 0x112A JUMP JUMPDEST PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x79A JUMPI PUSH2 0x79A PUSH2 0x112A JUMP JUMPDEST DUP2 MSTORE DUP2 SLOAD PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x7BF JUMPI PUSH2 0x7BF PUSH2 0x112A JUMP JUMPDEST PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x7D0 JUMPI PUSH2 0x7D0 PUSH2 0x112A JUMP JUMPDEST SWAP1 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x2C5 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x893 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x887 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x147B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x8B1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x637 DUP2 PUSH2 0xBC8 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x916 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x913 SWAP2 DUP2 ADD SWAP1 PUSH2 0x125B JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x93E JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4A1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x147B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x96E JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x4A1 JUMP JUMPDEST PUSH2 0x978 DUP4 DUP4 PUSH2 0xC79 JUMP JUMPDEST POP POP POP JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x8B1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP2 MLOAD DUP2 SLOAD DUP4 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 PUSH1 0xFF NOT AND PUSH1 0x1 DUP4 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x9FF JUMPI PUSH2 0x9FF PUSH2 0x112A JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 SLOAD DUP3 SWAP1 PUSH2 0xFF00 NOT AND PUSH2 0x100 DUP4 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0xA27 JUMPI PUSH2 0xA27 PUSH2 0x112A JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 SLOAD DUP3 SWAP1 PUSH3 0xFF0000 NOT AND PUSH3 0x10000 DUP4 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0xA51 JUMPI PUSH2 0xA51 PUSH2 0x112A JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 SLOAD DUP3 SWAP1 PUSH4 0xFF000000 NOT AND PUSH4 0x1000000 DUP4 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0xA7D JUMPI PUSH2 0xA7D PUSH2 0x112A JUMP JUMPDEST MUL OR SWAP1 SSTORE POP SWAP1 POP POP PUSH32 0x95D7A6740C7954755644347F27CBF1BEBF7D02A83371922A49D04DDCE4757C2A DUP3 DUP3 PUSH1 0x40 MLOAD PUSH2 0xAB6 SWAP3 SWAP2 SWAP1 PUSH2 0x1272 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x2C5 JUMP JUMPDEST PUSH2 0xAF2 PUSH2 0xCCE JUMP JUMPDEST PUSH2 0xAFA PUSH2 0xCF3 JUMP JUMPDEST PUSH2 0x637 DUP2 PUSH2 0xCFB JUMP JUMPDEST PUSH0 PUSH2 0xB11 PUSH1 0x20 DUP4 ADD DUP4 PUSH2 0x128F JUMP JUMPDEST PUSH1 0x2 DUP2 GT ISZERO PUSH2 0xB22 JUMPI PUSH2 0xB22 PUSH2 0x112A JUMP JUMPDEST EQ ISZERO DUP1 ISZERO PUSH2 0xB50 JUMPI POP PUSH0 PUSH2 0xB3C PUSH1 0x40 DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0x128F JUMP JUMPDEST PUSH1 0x2 DUP2 GT ISZERO PUSH2 0xB4D JUMPI PUSH2 0xB4D PUSH2 0x112A JUMP JUMPDEST EQ ISZERO JUMPDEST DUP1 ISZERO PUSH2 0xB7C JUMPI POP PUSH0 PUSH2 0xB68 PUSH1 0x60 DUP4 ADD PUSH1 0x40 DUP5 ADD PUSH2 0x128F JUMP JUMPDEST PUSH1 0x2 DUP2 GT ISZERO PUSH2 0xB79 JUMPI PUSH2 0xB79 PUSH2 0x112A JUMP JUMPDEST EQ ISZERO JUMPDEST DUP1 ISZERO PUSH2 0xBA8 JUMPI POP PUSH0 PUSH2 0xB94 PUSH1 0x80 DUP4 ADD PUSH1 0x60 DUP5 ADD PUSH2 0x128F JUMP JUMPDEST PUSH1 0x2 DUP2 GT ISZERO PUSH2 0xBA5 JUMPI PUSH2 0xBA5 PUSH2 0x112A JUMP JUMPDEST EQ ISZERO JUMPDEST DUP2 SWAP1 PUSH2 0x356 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7A94D597 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4A1 SWAP2 SWAP1 PUSH2 0x1313 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC2E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC52 SWAP2 SWAP1 PUSH2 0x1240 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x637 JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xC82 DUP3 PUSH2 0xD6C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0xCC6 JUMPI PUSH2 0x978 DUP3 DUP3 PUSH2 0xDCF JUMP JUMPDEST PUSH2 0x356 PUSH2 0xE6F JUMP JUMPDEST PUSH2 0xCD6 PUSH2 0xE8E JUMP JUMPDEST PUSH2 0x8B1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8B1 PUSH2 0xCCE JUMP JUMPDEST PUSH2 0xD03 PUSH2 0xCCE JUMP JUMPDEST PUSH2 0xD0C DUP2 PUSH2 0xB03 JUMP JUMPDEST PUSH0 DUP1 MSTORE PUSH1 0x32 PUSH1 0x20 MSTORE DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x145B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0xD2D DUP3 DUP3 PUSH2 0x139B JUMP JUMPDEST SWAP1 POP POP PUSH32 0x95D7A6740C7954755644347F27CBF1BEBF7D02A83371922A49D04DDCE4757C2A PUSH0 DUP3 PUSH1 0x40 MLOAD PUSH2 0xD61 SWAP3 SWAP2 SWAP1 PUSH2 0x143D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0xDA1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4A1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x147B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0xDDC DUP5 DUP5 PUSH2 0xEA7 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0xDFD JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0xDFD JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0xE12 JUMPI PUSH2 0xE0A PUSH2 0xEBA JUMP JUMPDEST SWAP2 POP POP PUSH2 0x2C5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xE3C JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4A1 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0xE4F JUMPI PUSH2 0xE4A PUSH2 0xED3 JUMP JUMPDEST PUSH2 0xE68 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x8B1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0xE97 PUSH2 0xAC2 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xEEE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x334 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x637 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xF2B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0xF36 DUP2 PUSH2 0xF05 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0xF46 DUP2 PUSH2 0xF05 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xF94 JUMPI PUSH2 0xF94 PUSH2 0xF57 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFAD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0xFB8 DUP2 PUSH2 0xF05 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xFD3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0xFE3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xFFD JUMPI PUSH2 0xFFD PUSH2 0xF57 JUMP JUMPDEST PUSH2 0x1010 PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0xF6B JUMP JUMPDEST DUP2 DUP2 MSTORE DUP7 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x1024 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP4 POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1056 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x1061 DUP2 PUSH2 0xF05 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x1071 DUP2 PUSH2 0xF05 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x1081 DUP2 PUSH2 0xF05 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP3 SWAP4 PUSH1 0x60 ADD CALLDATALOAD SWAP3 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10A1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0xA0 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x10B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x10C3 DUP2 PUSH2 0xF05 JUMP JUMPDEST SWAP2 POP PUSH2 0x10D2 DUP5 PUSH1 0x20 DUP6 ADD PUSH2 0x1091 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10EB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x334 DUP4 DUP4 PUSH2 0x1091 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x3 DUP2 LT PUSH2 0x115A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH2 0x1169 DUP3 DUP3 MLOAD PUSH2 0x113E JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD PUSH2 0x117B PUSH1 0x20 DUP5 ADD DUP3 PUSH2 0x113E JUMP JUMPDEST POP PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x118E PUSH1 0x40 DUP5 ADD DUP3 PUSH2 0x113E JUMP JUMPDEST POP PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0x978 PUSH1 0x60 DUP5 ADD DUP3 PUSH2 0x113E JUMP JUMPDEST PUSH1 0x80 DUP2 ADD PUSH2 0x2C5 DUP3 DUP5 PUSH2 0x115E JUMP JUMPDEST PUSH1 0x3 DUP2 LT PUSH2 0x637 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x80 DUP3 DUP5 SUB SLT DUP1 ISZERO PUSH2 0x11CC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x80 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x11F0 JUMPI PUSH2 0x11F0 PUSH2 0xF57 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP3 CALLDATALOAD PUSH2 0x11FE DUP2 PUSH2 0x11AF JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x120E DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP4 ADD CALLDATALOAD PUSH2 0x1221 DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 DUP4 ADD CALLDATALOAD PUSH2 0x1234 DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1250 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x334 DUP2 PUSH2 0xF05 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x126B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0xA0 DUP2 ADD PUSH2 0x334 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x115E JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x129F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x334 DUP2 PUSH2 0x11AF JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x12B5 DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH2 0x12BF DUP4 DUP3 PUSH2 0x113E JUMP JUMPDEST POP PUSH1 0x20 DUP2 ADD CALLDATALOAD PUSH2 0x12CE DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH2 0x12DB PUSH1 0x20 DUP5 ADD DUP3 PUSH2 0x113E JUMP JUMPDEST POP PUSH1 0x40 DUP2 ADD CALLDATALOAD PUSH2 0x12EA DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH2 0x12F7 PUSH1 0x40 DUP5 ADD DUP3 PUSH2 0x113E JUMP JUMPDEST POP PUSH1 0x60 DUP2 ADD CALLDATALOAD PUSH2 0x1306 DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH2 0x978 PUSH1 0x60 DUP5 ADD DUP3 PUSH2 0x113E JUMP JUMPDEST PUSH1 0x80 DUP2 ADD PUSH2 0x2C5 DUP3 DUP5 PUSH2 0x12AA JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD PUSH2 0x2C5 DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH1 0x3 DUP3 LT PUSH2 0x1349 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 SLOAD PUSH3 0xFF0000 DUP4 PUSH1 0x10 SHL AND PUSH3 0xFF0000 NOT DUP3 AND OR DUP3 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x3 DUP3 LT PUSH2 0x137F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 SLOAD PUSH4 0xFF000000 DUP4 PUSH1 0x18 SHL AND PUSH4 0xFF000000 NOT DUP3 AND OR DUP3 SSTORE POP POP POP JUMP JUMPDEST DUP2 CALLDATALOAD PUSH2 0x13A6 DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH1 0x3 DUP2 LT PUSH2 0x13C2 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 SLOAD PUSH1 0xFF DUP3 AND SWAP2 POP DUP2 PUSH1 0xFF NOT DUP3 AND OR DUP4 SSTORE PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x13E1 DUP2 PUSH2 0x11AF JUMP JUMPDEST PUSH1 0x3 DUP2 LT PUSH2 0x13FD JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0xFF00 DUP2 PUSH1 0x8 SHL AND DUP4 PUSH2 0xFFFF NOT DUP5 AND OR OR DUP5 SSTORE POP POP POP PUSH2 0x1428 PUSH2 0x1422 PUSH1 0x40 DUP5 ADD PUSH2 0x1321 JUMP JUMPDEST DUP3 PUSH2 0x132D JUMP JUMPDEST PUSH2 0x356 PUSH2 0x1437 PUSH1 0x60 DUP5 ADD PUSH2 0x1321 JUMP JUMPDEST DUP3 PUSH2 0x1363 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0xA0 DUP2 ADD PUSH2 0x334 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x12AA JUMP INVALID STOP 0xBC 0xD6 SELFDESTRUCT 0x29 0xAE PUSH18 0xD399FB597D99792FA72D0863BD723B9AB11F PUSH26 0xD0B8D8AC5BC8360894A13BA1A3210667C828492DB98DCA3E2076 0xCC CALLDATACOPY CALLDATALOAD 0xA9 KECCAK256 LOG3 0xCA POP TSTORE CODESIZE 0x2B 0xBC LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP5 PUSH27 0x7730FA59D13C51189897B2F7145C2935AB4C07EB9F03A0E84B7F21 LT MOD SDIV PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"521:6553:70:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5333:194;;;;;;;;;;-1:-1:-1;5333:194:70;;;;;:::i;:::-;;:::i;:::-;;;470:14:101;;463:22;445:41;;433:2;418:18;5333:194:70;;;;;;;;5562:297;;;;;;;;;;-1:-1:-1;5562:297:70;;;;;:::i;:::-;;:::i;2366:94:73:-;;;;;;;;;;-1:-1:-1;2444:11:73;2366:94;;;-1:-1:-1;;;;;1375:32:101;;;1357:51;;1345:2;1330:18;2366:94:73;1190:224:101;3911:214:33;;;;;;:::i;:::-;;:::i;:::-;;3466:126;;;;;;;;;;;;;:::i;:::-;;;2891:25:101;;;2879:2;2864:18;3466:126:33;2745:177:101;6231:562:70;;;;;;;;;;-1:-1:-1;6231:562:70;;;;;:::i;:::-;;:::i;2782:202::-;;;;;;;;;;-1:-1:-1;2782:202:70;;;;;:::i;:::-;;:::i;5894:302::-;;;;;;;;;;-1:-1:-1;5894:302:70;;;;;:::i;:::-;;:::i;1686:137::-;;;;;;;;;;-1:-1:-1;1686:137:70;;;;;:::i;:::-;;:::i;1732:58:33:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1732:58:33;;;;;;;;;;;;:::i;4480:162:70:-;;;;;;;;;;-1:-1:-1;4480:162:70;;;;;:::i;:::-;;:::i;2464:97:73:-;;;;;;;;;;;;;:::i;4743:118:70:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;5333:194::-;5418:4;5437:36;5461:11;5437:23;:36::i;:::-;:85;;;-1:-1:-1;;;;;;;5477:45:70;;-1:-1:-1;;;5477:45:70;5437:85;5430:92;5333:194;-1:-1:-1;;5333:194:70:o;5562:297::-;-1:-1:-1;;;;;5688:19:70;;5654:4;5688:19;;;:9;:19;;;;;:27;;;5654:4;5725:2;:32;;;;;;;;:::i;:::-;;5721:87;;-1:-1:-1;5772:21:70;;;:9;:21;;-1:-1:-1;;;;;;;;;;;5772:29:70;;;5721:87;5826:28;5820:34;:2;:34;;;;;;;;:::i;:::-;;5813:41;;;5562:297;;;;;;:::o;3911:214:33:-;2568:13;:11;:13::i;:::-;4026:36:::1;4044:17;4026;:36::i;:::-;4072:46;4094:17;4113:4;4072:21;:46::i;:::-;3911:214:::0;;:::o;3466:126::-;3527:7;2839:20;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;;3466:126:33;:::o;6231:562:70:-;-1:-1:-1;;;;;6402:23:70;;6368:4;6402:23;;;:9;:23;;;;;:36;;;;;;6368:4;6448:2;:32;;;;;;;;:::i;:::-;;6444:92;;-1:-1:-1;6495:21:70;;;:9;:21;;-1:-1:-1;;;;;;;;;;;6495:34:70;;;;;;6444:92;6551:28;6545:2;:34;;;;;;;;:::i;:::-;;6541:52;;6588:5;6581:12;;;;;6541:52;-1:-1:-1;;;;;;6604:21:70;;;;;;:9;:21;;;;;:37;;;;;;;6651:2;:32;;;;;;;;:::i;:::-;;6647:95;;-1:-1:-1;6698:21:70;;;:9;:21;;-1:-1:-1;;;;;;;;;;;6698:37:70;;;;;;6647:95;6760:28;6754:2;:34;;;;;;;;:::i;:::-;;6747:41;;;6231:562;;;;;;;:::o;2782:202::-;2885:8;-1:-1:-1;;;;;2885:22:70;;2877:58;;;;-1:-1:-1;;;2877:58:70;;-1:-1:-1;;;;;1375:32:101;;;2877:58:70;;;1357:51:101;1330:18;;2877:58:70;;;;;;;;;-1:-1:-1;2941:38:70;2959:8;2941:38;;;;;;;2969:9;2941:38;:::i;:::-;:17;:38::i;5894:302::-;-1:-1:-1;;;;;6023:19:70;;5989:4;6023:19;;;:9;:19;;;;;:28;;;;;;5989:4;6061:2;:32;;;;;;;;:::i;:::-;;6057:88;;-1:-1:-1;6108:21:70;;;:9;:21;;-1:-1:-1;;;;;;;;;;;6108:30:70;;;;;;6163:28;6157:34;;1686:137;4158:30:32;4191:26;:24;:26::i;:::-;4302:15;;4158:59;;-1:-1:-1;4302:15:32;-1:-1:-1;;;4302:15:32;;;4301:16;;4348:14;;4279:19;4724:16;;:34;;;;;4744:14;4724:34;4704:54;;4768:17;4788:11;:16;;4803:1;4788:16;:50;;;;-1:-1:-1;4816:4:32;4808:25;:30;4788:50;4768:70;;4854:12;4853:13;:30;;;;;4871:12;4870:13;4853:30;4849:91;;;4906:23;;-1:-1:-1;;;4906:23:32;;;;;;;;;;;4849:91;4949:18;;-1:-1:-1;;4949:18:32;4966:1;4949:18;;;4977:67;;;;5011:22;;-1:-1:-1;;;;5011:22:32;-1:-1:-1;;;5011:22:32;;;4977:67;1779:39:70::1;1804:13;1779:24;:39::i;:::-;5068:14:32::0;5064:101;;;5098:23;;-1:-1:-1;;;;5098:23:32;;;5140:14;;-1:-1:-1;7814:50:101;;5140:14:32;;7802:2:101;7787:18;5140:14:32;;;;;;;5064:101;4092:1079;;;;;1686:137:70;:::o;4480:162::-;4561:30;4581:9;4561:19;:30::i;:::-;4597:40;4623:1;4597:40;;;;;;;4627:9;4597:40;:::i;:::-;4480:162;:::o;2464:97:73:-;2505:14;2534:11;-1:-1:-1;;;;;2534:20:73;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2527:29;;2464:97;:::o;4743:118:70:-;4798:22;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4798:22:70;4835:21;;;:9;:21;;;4828:28;;;;;;;;-1:-1:-1;;;;;;;;;;;4828:28:70;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;-1:-1:-1;4828:28:70;4743:118;-1:-1:-1;4743:118:70:o;2156:206:73:-;2241:4;-1:-1:-1;;;;;;2260:40:73;;-1:-1:-1;;;2260:40:73;;:97;;-1:-1:-1;;;;;;;2304:53:73;;-1:-1:-1;;;2304:53:73;2253:104;2156:206;-1:-1:-1;;2156:206:73:o;4328:312:33:-;4408:4;-1:-1:-1;;;;;4417:6:33;4400:23;;;:120;;;4514:6;-1:-1:-1;;;;;4478:42:33;:32;-1:-1:-1;;;;;;;;;;;1519:53:29;-1:-1:-1;;;;;1519:53:29;;1441:138;4478:32:33;-1:-1:-1;;;;;4478:42:33;;;4400:120;4383:251;;;4594:29;;-1:-1:-1;;;4594:29:33;;;;;;;;;;;4383:251;4328:312::o;1807:106:73:-;1880:28;1900:7;1880:19;:28::i;5782:538:33:-;5899:17;-1:-1:-1;;;;;5881:50:33;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5881:52:33;;;;;;;;-1:-1:-1;;5881:52:33;;;;;;;;;;;;:::i;:::-;;;5877:437;;6243:60;;-1:-1:-1;;;6243:60:33;;-1:-1:-1;;;;;1375:32:101;;6243:60:33;;;1357:51:101;1330:18;;6243:60:33;1190:224:101;5877:437:33;-1:-1:-1;;;;;;;;;;;5975:40:33;;5971:120;;6042:34;;-1:-1:-1;;;6042:34:33;;;;;2891:25:101;;;2864:18;;6042:34:33;2745:177:101;5971:120:33;6104:54;6134:17;6153:4;6104:29;:54::i;:::-;5934:235;5782:538;;:::o;4757:213::-;4831:4;-1:-1:-1;;;;;4840:6:33;4823:23;;4819:145;;4924:29;;-1:-1:-1;;;4924:29:33;;;;;;;;;;;5088:186:70;-1:-1:-1;;;;;5182:19:70;;;;;;:9;:19;;;;;:31;;;;5204:9;;5182:19;:31;:19;;-1:-1:-1;;5182:31:70;;;;;;;;;;;:::i;:::-;;;;;-1:-1:-1;5182:31:70;;;;;;;;-1:-1:-1;;5182:31:70;;;;;;;;;;;:::i;:::-;;;;;-1:-1:-1;5182:31:70;;;;;;;;-1:-1:-1;;5182:31:70;;;;;;;;;;;:::i;:::-;;;;;-1:-1:-1;5182:31:70;;;;;;;;-1:-1:-1;;5182:31:70;;;;;;;;;;;:::i;:::-;;;;;;;;;5224:45;5249:8;5259:9;5224:45;;;;;;;:::i;:::-;;;;;;;;5088:186;;:::o;9071:205:32:-;9129:30;;3147:66;9186:27;8819:122;1878:194:70;6929:20:32;:18;:20::i;:::-;1984:28:70::1;:26;:28::i;:::-;2018:49;2053:13;2018:34;:49::i;3528:390::-:0;3649:26;3628:17;;;;:9;:17;:::i;:::-;:47;;;;;;;;:::i;:::-;;;:107;;;;-1:-1:-1;3709:26:70;3687:18;;;;;;;;:::i;:::-;:48;;;;;;;;:::i;:::-;;;3628:107;:171;;;;-1:-1:-1;3773:26:70;3747:22;;;;;;;;:::i;:::-;:52;;;;;;;;:::i;:::-;;;3628:171;:238;;;;-1:-1:-1;3840:26:70;3811:25;;;;;;;;:::i;:::-;:55;;;;;;;;:::i;:::-;;;3628:238;3897:9;3613:300;;;;;-1:-1:-1;;;3613:300:70;;;;;;;;:::i;1917:180:73:-;2041:11;-1:-1:-1;;;;;1995:57:73;2016:7;-1:-1:-1;;;;;1995:40:73;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1995:57:73;;1991:101;;2061:31;;-1:-1:-1;;;2061:31:73;;;;;;;;;;;2264:344:29;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:29;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;2454:148::-;2573:18;:16;:18::i;7082:141:32:-;7149:17;:15;:17::i;:::-;7144:73;;7189:17;;-1:-1:-1;;;7189:17:32;;;;;;;;;;;1737:66:73;6929:20:32;:18;:20::i;2127:260:70:-;6929:20:32;:18;:20::i;:::-;2243:34:70::1;2263:13;2243:19;:34::i;:::-;2283:21;::::0;;:9:::1;:21;::::0;2307:13;-1:-1:-1;;;;;;;;;;;2283:37:70::1;2307:13:::0;2283:21;:37:::1;:::i;:::-;;;;2331:51;2364:1;2368:13;2331:51;;;;;;;:::i;:::-;;;;;;;;2127:260:::0;:::o;1671:281:29:-;1748:17;-1:-1:-1;;;;;1748:29:29;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:29;;-1:-1:-1;;;;;1375:32:101;;1805:47:29;;;1357:51:101;1330:18;;1805:47:29;1190:224:101;1744:119:29;-1:-1:-1;;;;;;;;;;;1872:73:29;;-1:-1:-1;;;;;;1872:73:29;-1:-1:-1;;;;;1872:73:29;;;;;;;;;;1671:281::o;4691:549:45:-;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:45;4583:16:49;4886:33:45;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:45;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;:::-;4962:32;;;;;4870:364;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:45;;-1:-1:-1;;;;;1375:32:101;;5045:24:45;;;1357:51:101;1330:18;;5045:24:45;1190:224:101;5011:223:45;4583:16:49;5090:33:45;5086:148;;5139:27;:25;:27::i;:::-;5086:148;;;5204:19;;-1:-1:-1;;;5204:19:45;;;;;;;;;;;5086:148;4788:452;4691:549;;;;:::o;6113:122:29:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:29;;;;;;;;;;;8485:120:32;8535:4;8558:26;:24;:26::i;:::-;:40;-1:-1:-1;;;8558:40:32;;;;;;-1:-1:-1;8485:120:32:o;3383:242:49:-;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:49:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;14:286:101;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:101;;209:43;;199:71;;266:1;263;256:12;497:140;-1:-1:-1;;;;;581:31:101;;571:42;;561:70;;627:1;624;617:12;642:543;736:6;744;752;805:2;793:9;784:7;780:23;776:32;773:52;;;821:1;818;811:12;773:52;860:9;847:23;879:40;913:5;879:40;:::i;:::-;938:5;-1:-1:-1;995:2:101;980:18;;967:32;1008:42;967:32;1008:42;:::i;:::-;642:543;;1069:7;;-1:-1:-1;;;1149:2:101;1134:18;;;;1121:32;;642:543::o;1419:127::-;1480:10;1475:3;1471:20;1468:1;1461:31;1511:4;1508:1;1501:15;1535:4;1532:1;1525:15;1551:275;1622:2;1616:9;1687:2;1668:13;;-1:-1:-1;;1664:27:101;1652:40;;1722:18;1707:34;;1743:22;;;1704:62;1701:88;;;1769:18;;:::i;:::-;1805:2;1798:22;1551:275;;-1:-1:-1;1551:275:101:o;1831:909::-;1908:6;1916;1969:2;1957:9;1948:7;1944:23;1940:32;1937:52;;;1985:1;1982;1975:12;1937:52;2024:9;2011:23;2043:40;2077:5;2043:40;:::i;:::-;2102:5;-1:-1:-1;2158:2:101;2143:18;;2130:32;2185:18;2174:30;;2171:50;;;2217:1;2214;2207:12;2171:50;2240:22;;2293:4;2285:13;;2281:27;-1:-1:-1;2271:55:101;;2322:1;2319;2312:12;2271:55;2362:2;2349:16;2388:18;2380:6;2377:30;2374:56;;;2410:18;;:::i;:::-;2452:57;2499:2;2476:17;;-1:-1:-1;;2472:31:101;2505:2;2468:40;2452:57;:::i;:::-;2532:6;2525:5;2518:21;2580:7;2575:2;2566:6;2562:2;2558:15;2554:24;2551:37;2548:57;;;2601:1;2598;2591:12;2548:57;2656:6;2651:2;2647;2643:11;2638:2;2631:5;2627:14;2614:49;2708:1;2703:2;2694:6;2687:5;2683:18;2679:27;2672:38;2729:5;2719:15;;;;;1831:909;;;;;:::o;2927:694::-;3030:6;3038;3046;3054;3107:3;3095:9;3086:7;3082:23;3078:33;3075:53;;;3124:1;3121;3114:12;3075:53;3163:9;3150:23;3182:40;3216:5;3182:40;:::i;:::-;3241:5;-1:-1:-1;3298:2:101;3283:18;;3270:32;3311:42;3270:32;3311:42;:::i;:::-;3372:7;-1:-1:-1;3431:2:101;3416:18;;3403:32;3444:42;3403:32;3444:42;:::i;:::-;2927:694;;;;-1:-1:-1;3505:7:101;;3585:2;3570:18;3557:32;;-1:-1:-1;;2927:694:101:o;3626:164::-;3694:5;3739:3;3730:6;3725:3;3721:16;3717:26;3714:46;;;3756:1;3753;3746:12;3714:46;-1:-1:-1;3778:6:101;3626:164;-1:-1:-1;3626:164:101:o;3795:400::-;3899:6;3907;3960:3;3948:9;3939:7;3935:23;3931:33;3928:53;;;3977:1;3974;3967:12;3928:53;4016:9;4003:23;4035:40;4069:5;4035:40;:::i;:::-;4094:5;-1:-1:-1;4118:71:101;4181:7;4176:2;4161:18;;4118:71;:::i;:::-;4108:81;;3795:400;;;;;:::o;4200:256::-;4295:6;4348:3;4336:9;4327:7;4323:23;4319:33;4316:53;;;4365:1;4362;4355:12;4316:53;4388:62;4442:7;4431:9;4388:62;:::i;4461:418::-;4610:2;4599:9;4592:21;4573:4;4642:6;4636:13;4685:6;4680:2;4669:9;4665:18;4658:34;4744:6;4739:2;4731:6;4727:15;4722:2;4711:9;4707:18;4701:50;4800:1;4795:2;4786:6;4775:9;4771:22;4767:31;4760:42;4870:2;4863;4859:7;4854:2;4846:6;4842:15;4838:29;4827:9;4823:45;4819:54;4811:62;;;4461:418;;;;:::o;5115:127::-;5176:10;5171:3;5167:20;5164:1;5157:31;5207:4;5204:1;5197:15;5231:4;5228:1;5221:15;5247:244;5335:1;5328:5;5325:12;5315:143;;5380:10;5375:3;5371:20;5368:1;5361:31;5415:4;5412:1;5405:15;5443:4;5440:1;5433:15;5315:143;5467:18;;5247:244::o;5496:503::-;5565:51;5612:3;5604:5;5598:12;5565:51;:::i;:::-;5662:4;5655:5;5651:16;5645:23;5677:62;5733:4;5728:3;5724:14;5710:12;5677:62;:::i;:::-;;5787:4;5780:5;5776:16;5770:23;5802:64;5860:4;5855:3;5851:14;5835;5802:64;:::i;:::-;;5914:4;5907:5;5903:16;5897:23;5929:64;5987:4;5982:3;5978:14;5962;5929:64;:::i;6004:273::-;6206:3;6191:19;;6219:52;6195:9;6253:6;6219:52;:::i;6490:115::-;6579:1;6572:5;6569:12;6559:40;;6595:1;6592;6585:12;6610:1046;6703:6;6763:3;6751:9;6742:7;6738:23;6734:33;6779:2;6776:22;;;6794:1;6791;6784:12;6776:22;-1:-1:-1;6863:2:101;6857:9;6905:3;6893:16;;6939:18;6924:34;;6960:22;;;6921:62;6918:88;;;6986:18;;:::i;:::-;7022:2;7015:22;7059:23;;7091:45;7059:23;7091:45;:::i;:::-;7145:21;;7218:2;7203:18;;7190:32;7231:47;7190:32;7231:47;:::i;:::-;7306:2;7294:15;;7287:32;7371:2;7356:18;;7343:32;7384:47;7343:32;7384:47;:::i;:::-;7459:2;7447:15;;7440:32;7524:2;7509:18;;7496:32;7537:47;7496:32;7537:47;:::i;:::-;7612:2;7600:15;;7593:32;7604:6;6610:1046;-1:-1:-1;;;6610:1046:101:o;7875:283::-;7968:6;8021:2;8009:9;8000:7;7996:23;7992:32;7989:52;;;8037:1;8034;8027:12;7989:52;8069:9;8063:16;8088:40;8122:5;8088:40;:::i;8163:184::-;8233:6;8286:2;8274:9;8265:7;8261:23;8257:32;8254:52;;;8302:1;8299;8292:12;8254:52;-1:-1:-1;8325:16:101;;8163:184;-1:-1:-1;8163:184:101:o;8352:370::-;-1:-1:-1;;;;;8613:32:101;;8595:51;;8582:3;8567:19;;8655:61;8712:2;8697:18;;8689:6;8655:61;:::i;8727:283::-;8808:6;8861:2;8849:9;8840:7;8836:23;8832:32;8829:52;;;8877:1;8874;8867:12;8829:52;8916:9;8903:23;8935:45;8974:5;8935:45;:::i;9015:757::-;9121:5;9108:19;9136:47;9175:7;9136:47;:::i;:::-;9192:46;9234:3;9225:7;9192:46;:::i;:::-;;9286:4;9279:5;9275:16;9262:30;9301:47;9340:7;9301:47;:::i;:::-;9357:57;9408:4;9403:3;9399:14;9390:7;9357:57;:::i;:::-;;9462:4;9455:5;9451:16;9438:30;9477:47;9516:7;9477:47;:::i;:::-;9533:57;9584:4;9579:3;9575:14;9566:7;9533:57;:::i;:::-;;9638:4;9631:5;9627:16;9614:30;9653:47;9692:7;9653:47;:::i;:::-;9709:57;9760:4;9755:3;9751:14;9742:7;9709:57;:::i;9777:284::-;9981:3;9966:19;;9994:61;9970:9;10037:6;9994:61;:::i;10352:204::-;10411:11;10463:3;10450:17;10476:45;10515:5;10476:45;:::i;10561:374::-;10696:1;10689:5;10686:12;10676:143;;10741:10;10736:3;10732:20;10729:1;10722:31;10776:4;10773:1;10766:15;10804:4;10801:1;10794:15;10676:143;10844:4;10838:11;10918:8;10910:5;10906:2;10902:14;10898:29;10886:8;10882:13;10878:2;10874:22;10871:57;10865:4;10858:71;;10561:374;;:::o;10940:::-;11071:1;11064:5;11061:12;11051:143;;11116:10;11111:3;11107:20;11104:1;11097:31;11151:4;11148:1;11141:15;11179:4;11176:1;11169:15;11051:143;11219:4;11213:11;11295:10;11287:5;11283:2;11279:14;11275:31;11261:10;11257:15;11253:2;11249:24;11246:61;11240:4;11233:75;;10940:374;;:::o;11319:1165::-;11503:5;11490:19;11518:47;11557:7;11518:47;:::i;:::-;11596:1;11587:7;11584:14;11574:145;;11641:10;11636:3;11632:20;11629:1;11622:31;11676:4;11673:1;11666:15;11704:4;11701:1;11694:15;11574:145;11744:4;11738:11;11781:3;11772:7;11768:17;11758:27;;11829:2;11822:3;11818:8;11814:2;11810:17;11807:25;11801:4;11794:39;11881:2;11874:5;11870:14;11857:28;11894:47;11933:7;11894:47;:::i;:::-;11972:1;11963:7;11960:14;11950:145;;12017:10;12012:3;12008:20;12005:1;11998:31;12052:4;12049:1;12042:15;12080:4;12077:1;12070:15;11950:145;12170:5;12160:7;12157:1;12153:15;12149:27;12144:2;12135:5;12131:10;12127:2;12123:19;12120:27;12117:60;12111:4;12104:74;;;;12187:143;12272:57;12325:2;12318:5;12314:14;12272:57;:::i;:::-;12266:4;12187:143;:::i;:::-;12339:139;12420:57;12473:2;12466:5;12462:14;12420:57;:::i;:::-;12414:4;12339:139;:::i;12489:381::-;-1:-1:-1;;;;;12752:32:101;;12734:51;;12721:3;12706:19;;12794:70;12860:2;12845:18;;12837:6;12794:70;:::i"},"methodIdentifiers":{"UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","acceptsDeposit(address,address,uint256)":"37ee20dd","acceptsTransfer(address,address,address,uint256)":"5fcdca37","acceptsWithdrawal(address,address,uint256)":"9051c763","currency()":"e5a6b10f","getWhitelistDefaults()":"ed716bf4","initialize((uint8,uint8,uint8,uint8))":"aa2f92fb","policyPool()":"4d15eb03","proxiableUUID()":"52d1902d","setWhitelistDefaults((uint8,uint8,uint8,uint8))":"cf273ca6","supportsInterface(bytes4)":"01ffc9a7","upgradeToAndCall(address,bytes)":"4f1ef286","whitelistAddress(address,(uint8,uint8,uint8,uint8))":"896ce44c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"policyPool_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"provider\",\"type\":\"address\"}],\"name\":\"InvalidProvider\",\"type\":\"error\"},{\"inputs\":[{\"components\":[{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"deposit\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"withdraw\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"sendTransfer\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"receiveTransfer\",\"type\":\"uint8\"}],\"internalType\":\"struct LPManualWhitelist.WhitelistStatus\",\"name\":\"newStatus\",\"type\":\"tuple\"}],\"name\":\"InvalidWhitelistStatus\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroPolicyPool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OnlyPolicyPool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UpgradeCannotChangePolicyPool\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"provider\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"deposit\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"withdraw\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"sendTransfer\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"receiveTransfer\",\"type\":\"uint8\"}],\"indexed\":false,\"internalType\":\"struct LPManualWhitelist.WhitelistStatus\",\"name\":\"whitelisted\",\"type\":\"tuple\"}],\"name\":\"LPWhitelistStatusChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"provider\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"acceptsDeposit\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"providerFrom\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"providerTo\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"acceptsTransfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"provider\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"acceptsWithdrawal\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getWhitelistDefaults\",\"outputs\":[{\"components\":[{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"deposit\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"withdraw\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"sendTransfer\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"receiveTransfer\",\"type\":\"uint8\"}],\"internalType\":\"struct LPManualWhitelist.WhitelistStatus\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"deposit\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"withdraw\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"sendTransfer\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"receiveTransfer\",\"type\":\"uint8\"}],\"internalType\":\"struct LPManualWhitelist.WhitelistStatus\",\"name\":\"defaultStatus\",\"type\":\"tuple\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"deposit\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"withdraw\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"sendTransfer\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"receiveTransfer\",\"type\":\"uint8\"}],\"internalType\":\"struct LPManualWhitelist.WhitelistStatus\",\"name\":\"newStatus\",\"type\":\"tuple\"}],\"name\":\"setWhitelistDefaults\",\"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\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"provider\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"deposit\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"withdraw\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"sendTransfer\",\"type\":\"uint8\"},{\"internalType\":\"enum LPManualWhitelist.WhitelistOptions\",\"name\":\"receiveTransfer\",\"type\":\"uint8\"}],\"internalType\":\"struct LPManualWhitelist.WhitelistStatus\",\"name\":\"newStatus\",\"type\":\"tuple\"}],\"name\":\"whitelistAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"LPWhitelistStatusChanged(address,(uint8,uint8,uint8,uint8))\":{\"params\":{\"provider\":\"The provider whose status was changed. `address(0)` denotes the defaults entry.\",\"whitelisted\":\"The new status stored for the provider.\"}},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"acceptsDeposit(address,address,uint256)\":{\"details\":\"Indicates whether or not a liquidity provider can do a deposit in an eToken.\",\"params\":{\"amount\":\"The amount of the deposit\",\"etoken\":\"The eToken (see {EToken}) where the provider wants to deposit money.\",\"provider\":\"The address of the liquidity provider (user) that wants to deposit\"},\"returns\":{\"_0\":\"true if `provider` deposit is accepted, false if not\"}},\"acceptsTransfer(address,address,address,uint256)\":{\"details\":\"Indicates whether or not the eTokens can be transferred from `providerFrom` to `providerTo`\",\"params\":{\"amount\":\"The amount of tokens to be transferred\",\"etoken\":\"The eToken (see {EToken}) that the LPs have the intention to transfer.\",\"providerFrom\":\"The current owner of the tokens\",\"providerTo\":\"The destination of the tokens if the transfer is accepted\"},\"returns\":{\"_0\":\"true if the transfer operation is accepted, false if not.\"}},\"acceptsWithdrawal(address,address,uint256)\":{\"details\":\"Indicates whether or not a liquidity provider can withdraw an eToken.\",\"params\":{\"amount\":\"The amount of the withdrawal\",\"etoken\":\"The eToken (see {EToken}) where the provider wants to withdraw money.\",\"provider\":\"The address of the liquidity provider (user) that wants to withdraw\"},\"returns\":{\"_0\":\"true if `provider` withdraw request is accepted, false if not\"}},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"setWhitelistDefaults((uint8,uint8,uint8,uint8))\":{\"custom:pre\":\"`newStatus.deposit != WhitelistOptions.undefined``newStatus.withdraw != WhitelistOptions.undefined``newStatus.sendTransfer != WhitelistOptions.undefined``newStatus.receiveTransfer != WhitelistOptions.undefined`\",\"custom:throws\":\"{InvalidWhitelistStatus} if any defaults field is `undefined`\",\"params\":{\"newStatus\":\"The new defaults entry. All fields must be non-`undefined`.\"}},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"},\"whitelistAddress(address,(uint8,uint8,uint8,uint8))\":{\"custom:pre\":\"`provider != address(0)`\",\"custom:throws\":\"{InvalidProvider} if `provider == address(0)`\",\"params\":{\"newStatus\":\"The status to store for `provider`. Fields may be `undefined` to indicate \\\"use defaults\\\".\",\"provider\":\"The LP address whose status will be updated. Must be non-zero.\"}}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"title\":\"Manual Whitelisting contract\",\"version\":1},\"userdoc\":{\"events\":{\"LPWhitelistStatusChanged(address,(uint8,uint8,uint8,uint8))\":{\"notice\":\"Emitted when the whitelist status for a provider (or the defaults entry at address(0)) is updated.\"}},\"kind\":\"user\",\"methods\":{\"getWhitelistDefaults()\":{\"notice\":\"Returns the default whitelist status stored at `_wlStatus[address(0)]`.\"},\"initialize((uint8,uint8,uint8,uint8))\":{\"notice\":\"Initializes the Whitelist contract\"},\"policyPool()\":{\"notice\":\"Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\"},\"setWhitelistDefaults((uint8,uint8,uint8,uint8))\":{\"notice\":\"Updates the default whitelist status stored at `_wlStatus[address(0)]`.\"},\"whitelistAddress(address,(uint8,uint8,uint8,uint8))\":{\"notice\":\"Sets a custom whitelist status for `provider`.\"}},\"notice\":\"LP addresses are whitelisted (and un-whitelisted) manually with transactions by user with given role\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/LPManualWhitelist.sol\":\"LPManualWhitelist\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/LPManualWhitelist.sol\":{\"keccak256\":\"0xdfaa75b1cef5d71b51d0deb2edbe315e7cbb68722fb4cce931ac3bee4e74961a\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://91ab06082ca277eff47dbed8f0523b1109741e0ac0d6112cb64330146262d4fa\",\"dweb:/ipfs/QmYrUQj6yogTDfjd5KvVswqxoXTeQmBdnkavD2y3hR5gMb\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/PolicyPoolComponent.sol\":{\"keccak256\":\"0x59be0e577af81ab215ac850da84692d6ae7a465917701260f390bc92240c4707\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://c55648f183f32e74d6d83cfc2a8eb606c75a6c3bc598e8ec2a38f9fb3b676f8c\",\"dweb:/ipfs/QmdDFuZz6cn9ywUuxv4bTY3STMWQMWTAzitbocywFMoByb\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/ILPWhitelist.sol\":{\"keccak256\":\"0x71555d613cf2e4efa341593f2611adc078e4b3f745a15db0c3cba2717f1312eb\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://474679208452130bd5f1acb2ee3c8585f219a441925af65121fee370882de42a\",\"dweb:/ipfs/QmcPoJQnQWKZteafe1T2sEVQHG1YPX8a731W7hqZZVyyxq\"]},\"contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":25608,"contract":"contracts/LPManualWhitelist.sol:LPManualWhitelist","label":"__gap","offset":0,"slot":"0","type":"t_array(t_uint256)50_storage"},{"astId":21793,"contract":"contracts/LPManualWhitelist.sol:LPManualWhitelist","label":"_wlStatus","offset":0,"slot":"50","type":"t_mapping(t_address,t_struct(WhitelistStatus)21788_storage)"},{"astId":22192,"contract":"contracts/LPManualWhitelist.sol:LPManualWhitelist","label":"__gap","offset":0,"slot":"51","type":"t_array(t_uint256)49_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_enum(WhitelistOptions)21775":{"encoding":"inplace","label":"enum LPManualWhitelist.WhitelistOptions","numberOfBytes":"1"},"t_mapping(t_address,t_struct(WhitelistStatus)21788_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct LPManualWhitelist.WhitelistStatus)","numberOfBytes":"32","value":"t_struct(WhitelistStatus)21788_storage"},"t_struct(WhitelistStatus)21788_storage":{"encoding":"inplace","label":"struct LPManualWhitelist.WhitelistStatus","members":[{"astId":21778,"contract":"contracts/LPManualWhitelist.sol:LPManualWhitelist","label":"deposit","offset":0,"slot":"0","type":"t_enum(WhitelistOptions)21775"},{"astId":21781,"contract":"contracts/LPManualWhitelist.sol:LPManualWhitelist","label":"withdraw","offset":1,"slot":"0","type":"t_enum(WhitelistOptions)21775"},{"astId":21784,"contract":"contracts/LPManualWhitelist.sol:LPManualWhitelist","label":"sendTransfer","offset":2,"slot":"0","type":"t_enum(WhitelistOptions)21775"},{"astId":21787,"contract":"contracts/LPManualWhitelist.sol:LPManualWhitelist","label":"receiveTransfer","offset":3,"slot":"0","type":"t_enum(WhitelistOptions)21775"}],"numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"contracts/Policy.sol":{"Policy":{"abi":[{"inputs":[{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"PremiumExceedsPayout","type":"error"},{"inputs":[{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"minPremium","type":"uint256"}],"name":"PremiumLessThanMinimum","type":"error"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"ZeroHash","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212202706d4fe678a59157132e16bb205977d45638a5290fbea5e9ccbe2db9dd4610b64736f6c634300081e0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x27 MOD 0xD4 INVALID PUSH8 0x8A59157132E16BB2 SDIV SWAP8 PUSH30 0x45638A5290FBEA5E9CCBE2DB9DD4610B64736F6C634300081E0033000000 ","sourceMap":"565:11197:71:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;565:11197:71;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212202706d4fe678a59157132e16bb205977d45638a5290fbea5e9ccbe2db9dd4610b64736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x27 MOD 0xD4 INVALID PUSH8 0x8A59157132E16BB2 SDIV SWAP8 PUSH30 0x45638A5290FBEA5E9CCBE2DB9DD4610B64736F6C634300081E0033000000 ","sourceMap":"565:11197:71:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"PremiumExceedsPayout\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minPremium\",\"type\":\"uint256\"}],\"name\":\"PremiumLessThanMinimum\",\"type\":\"error\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"ZeroHash\",\"type\":\"error\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"Tracks how the premium is distributed, the probability of payout, duration and how the capital is locked. It is never stored on-chain, but instead we store a hash and we receive the policy on each operation\",\"errors\":{\"PremiumLessThanMinimum(uint256,uint256)\":[{\"details\":\"The minPremium is the one that results of computing the CoCs, purePremium and ensuroCommission for the given parameters, assuming partnerCommission = 0.\"}]},\"kind\":\"dev\",\"methods\":{},\"title\":\"Policy library\",\"version\":1},\"userdoc\":{\"errors\":{\"PremiumExceedsPayout(uint256,uint256)\":[{\"notice\":\"Raised when the premium exceeds the payoutreceived premium is less than the minimum\"}],\"PremiumLessThanMinimum(uint256,uint256)\":[{\"notice\":\"Raised when the received premium is less than the minimum\"}],\"ZeroHash((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":[{\"notice\":\"Raised when the computed hash is bytes32(0)\"}]},\"kind\":\"user\",\"methods\":{},\"notice\":\"Library for PolicyData struct. This struct represents an active policy, the premium and solvency breakdown\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/Policy.sol\":\"Policy\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/PolicyPool.sol":{"PolicyPool":{"abi":[{"inputs":[{"internalType":"contract IERC20Metadata","name":"currency_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[],"name":"ComponentAlreadyInThePool","type":"error"},{"inputs":[{"internalType":"enum PolicyPool.ComponentKind","name":"kind","type":"uint8"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ComponentInUseCannotRemove","type":"error"},{"inputs":[],"name":"ComponentMustBeActiveOrDeprecated","type":"error"},{"inputs":[],"name":"ComponentNotDeprecated","type":"error"},{"inputs":[],"name":"ComponentNotFound","type":"error"},{"inputs":[],"name":"ComponentNotFoundOrNotActive","type":"error"},{"inputs":[],"name":"ComponentNotLinkedToThisPool","type":"error"},{"inputs":[{"internalType":"contract IPolicyPoolComponent","name":"component","type":"address"},{"internalType":"enum PolicyPool.ComponentKind","name":"expectedKind","type":"uint8"}],"name":"ComponentNotTheRightKind","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"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"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[{"internalType":"uint128","name":"activeExposure","type":"uint128"},{"internalType":"uint128","name":"exposureLimit","type":"uint128"}],"name":"ExposureLimitExceeded","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"InvalidComponentStatus","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[{"internalType":"bytes4","name":"response","type":"bytes4"}],"name":"InvalidNotificationResponse","type":"error"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policyToCancel","type":"tuple"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"name":"InvalidPolicyCancellation","type":"error"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"oldPolicy","type":"tuple"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"newPolicy","type":"tuple"}],"name":"InvalidPolicyReplacement","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"InvalidReceiver","type":"error"},{"inputs":[],"name":"NoEmptyName","type":"error"},{"inputs":[],"name":"NoEmptySymbol","type":"error"},{"inputs":[],"name":"NoZeroCurrency","type":"error"},{"inputs":[],"name":"NoZeroTreasury","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"OnlyRiskModuleAllowed","type":"error"},{"inputs":[{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"policyPayout","type":"uint256"}],"name":"PayoutExceedsLimit","type":"error"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"PolicyAlreadyExists","type":"error"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"PolicyAlreadyExpired","type":"error"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"uint256","name":"now","type":"uint256"}],"name":"PolicyNotExpired","type":"error"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"PolicyNotFound","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[],"name":"UpgradeCannotChangeCurrency","type":"error"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"ZeroHash","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"oldBaseURI","type":"string"},{"indexed":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IPolicyPoolComponent","name":"component","type":"address"},{"indexed":false,"internalType":"enum PolicyPool.ComponentKind","name":"kind","type":"uint8"},{"indexed":false,"internalType":"enum PolicyPool.ComponentStatus","name":"newStatus","type":"uint8"}],"name":"ComponentStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IEToken","name":"eToken","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"policyId","type":"uint256"},{"indexed":false,"internalType":"contract IPolicyHolder","name":"holder","type":"address"}],"name":"ExpirationNotificationFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"indexed":false,"internalType":"uint128","name":"oldLimit","type":"uint128"},{"indexed":false,"internalType":"uint128","name":"newLimit","type":"uint128"}],"name":"ExposureLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"indexed":false,"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"NewPolicy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"indexed":true,"internalType":"uint256","name":"cancelledPolicyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"name":"PolicyCancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"indexed":true,"internalType":"uint256","name":"oldPolicyId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newPolicyId","type":"uint256"}],"name":"PolicyReplaced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"indexed":true,"internalType":"uint256","name":"policyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"payout","type":"uint256"}],"name":"PolicyResolved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldTreasury","type":"address"},{"indexed":false,"internalType":"address","name":"newTreasury","type":"address"}],"name":"TreasuryChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IEToken","name":"eToken","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IPolicyPoolComponent","name":"component","type":"address"},{"internalType":"enum PolicyPool.ComponentKind","name":"kind","type":"uint8"}],"name":"addComponent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policyToCancel","type":"tuple"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"name":"cancelPolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IPolicyPoolComponent","name":"component","type":"address"},{"internalType":"enum PolicyPool.ComponentStatus","name":"newStatus","type":"uint8"}],"name":"changeComponentStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"depositWithPermit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"expirePolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IPolicyPoolComponent","name":"component","type":"address"}],"name":"getComponentStatus","outputs":[{"internalType":"enum PolicyPool.ComponentStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IRiskModule","name":"rm","type":"address"}],"name":"getExposure","outputs":[{"internalType":"uint256","name":"active","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"getPolicyHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"treasury_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"address","name":"payer","type":"address"},{"internalType":"address","name":"policyHolder","type":"address"},{"internalType":"uint96","name":"internalId","type":"uint96"}],"name":"newPolicy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IPolicyPoolComponent","name":"component","type":"address"}],"name":"removeComponent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"oldPolicy","type":"tuple"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"newPolicy_","type":"tuple"},{"internalType":"address","name":"payer","type":"address"},{"internalType":"uint96","name":"internalId","type":"uint96"}],"name":"replacePolicy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"resolvePolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"nftBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IRiskModule","name":"rm","type":"address"},{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setExposureLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"treasury_","type":"address"}],"name":"setTreasury","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"amountWithdrawn","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_23168":{"entryPoint":null,"id":23168,"parameterSlots":1,"returnSlots":0},"@_disableInitializers_7172":{"entryPoint":114,"id":7172,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_7217":{"entryPoint":null,"id":7217,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_7203":{"entryPoint":null,"id":7203,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory":{"entryPoint":292,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:534:101","nodeType":"YulBlock","src":"0:534:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"118:209:101","nodeType":"YulBlock","src":"118:209:101","statements":[{"body":{"nativeSrc":"164:16:101","nodeType":"YulBlock","src":"164:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"173:1:101","nodeType":"YulLiteral","src":"173:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"176:1:101","nodeType":"YulLiteral","src":"176:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"166:6:101","nodeType":"YulIdentifier","src":"166:6:101"},"nativeSrc":"166:12:101","nodeType":"YulFunctionCall","src":"166:12:101"},"nativeSrc":"166:12:101","nodeType":"YulExpressionStatement","src":"166:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"139:7:101","nodeType":"YulIdentifier","src":"139:7:101"},{"name":"headStart","nativeSrc":"148:9:101","nodeType":"YulIdentifier","src":"148:9:101"}],"functionName":{"name":"sub","nativeSrc":"135:3:101","nodeType":"YulIdentifier","src":"135:3:101"},"nativeSrc":"135:23:101","nodeType":"YulFunctionCall","src":"135:23:101"},{"kind":"number","nativeSrc":"160:2:101","nodeType":"YulLiteral","src":"160:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"131:3:101","nodeType":"YulIdentifier","src":"131:3:101"},"nativeSrc":"131:32:101","nodeType":"YulFunctionCall","src":"131:32:101"},"nativeSrc":"128:52:101","nodeType":"YulIf","src":"128:52:101"},{"nativeSrc":"189:29:101","nodeType":"YulVariableDeclaration","src":"189:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"208:9:101","nodeType":"YulIdentifier","src":"208:9:101"}],"functionName":{"name":"mload","nativeSrc":"202:5:101","nodeType":"YulIdentifier","src":"202:5:101"},"nativeSrc":"202:16:101","nodeType":"YulFunctionCall","src":"202:16:101"},"variables":[{"name":"value","nativeSrc":"193:5:101","nodeType":"YulTypedName","src":"193:5:101","type":""}]},{"body":{"nativeSrc":"281:16:101","nodeType":"YulBlock","src":"281:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"290:1:101","nodeType":"YulLiteral","src":"290:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"293:1:101","nodeType":"YulLiteral","src":"293:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"283:6:101","nodeType":"YulIdentifier","src":"283:6:101"},"nativeSrc":"283:12:101","nodeType":"YulFunctionCall","src":"283:12:101"},"nativeSrc":"283:12:101","nodeType":"YulExpressionStatement","src":"283:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"240:5:101","nodeType":"YulIdentifier","src":"240:5:101"},{"arguments":[{"name":"value","nativeSrc":"251:5:101","nodeType":"YulIdentifier","src":"251:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"266:3:101","nodeType":"YulLiteral","src":"266:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"271:1:101","nodeType":"YulLiteral","src":"271:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"262:3:101","nodeType":"YulIdentifier","src":"262:3:101"},"nativeSrc":"262:11:101","nodeType":"YulFunctionCall","src":"262:11:101"},{"kind":"number","nativeSrc":"275:1:101","nodeType":"YulLiteral","src":"275:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"258:3:101","nodeType":"YulIdentifier","src":"258:3:101"},"nativeSrc":"258:19:101","nodeType":"YulFunctionCall","src":"258:19:101"}],"functionName":{"name":"and","nativeSrc":"247:3:101","nodeType":"YulIdentifier","src":"247:3:101"},"nativeSrc":"247:31:101","nodeType":"YulFunctionCall","src":"247:31:101"}],"functionName":{"name":"eq","nativeSrc":"237:2:101","nodeType":"YulIdentifier","src":"237:2:101"},"nativeSrc":"237:42:101","nodeType":"YulFunctionCall","src":"237:42:101"}],"functionName":{"name":"iszero","nativeSrc":"230:6:101","nodeType":"YulIdentifier","src":"230:6:101"},"nativeSrc":"230:50:101","nodeType":"YulFunctionCall","src":"230:50:101"},"nativeSrc":"227:70:101","nodeType":"YulIf","src":"227:70:101"},{"nativeSrc":"306:15:101","nodeType":"YulAssignment","src":"306:15:101","value":{"name":"value","nativeSrc":"316:5:101","nodeType":"YulIdentifier","src":"316:5:101"},"variableNames":[{"name":"value0","nativeSrc":"306:6:101","nodeType":"YulIdentifier","src":"306:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory","nativeSrc":"14:313:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"84:9:101","nodeType":"YulTypedName","src":"84:9:101","type":""},{"name":"dataEnd","nativeSrc":"95:7:101","nodeType":"YulTypedName","src":"95:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"107:6:101","nodeType":"YulTypedName","src":"107:6:101","type":""}],"src":"14:313:101"},{"body":{"nativeSrc":"431:101:101","nodeType":"YulBlock","src":"431:101:101","statements":[{"nativeSrc":"441:26:101","nodeType":"YulAssignment","src":"441:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"453:9:101","nodeType":"YulIdentifier","src":"453:9:101"},{"kind":"number","nativeSrc":"464:2:101","nodeType":"YulLiteral","src":"464:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"449:3:101","nodeType":"YulIdentifier","src":"449:3:101"},"nativeSrc":"449:18:101","nodeType":"YulFunctionCall","src":"449:18:101"},"variableNames":[{"name":"tail","nativeSrc":"441:4:101","nodeType":"YulIdentifier","src":"441:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"483:9:101","nodeType":"YulIdentifier","src":"483:9:101"},{"arguments":[{"name":"value0","nativeSrc":"498:6:101","nodeType":"YulIdentifier","src":"498:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"514:2:101","nodeType":"YulLiteral","src":"514:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"518:1:101","nodeType":"YulLiteral","src":"518:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"510:3:101","nodeType":"YulIdentifier","src":"510:3:101"},"nativeSrc":"510:10:101","nodeType":"YulFunctionCall","src":"510:10:101"},{"kind":"number","nativeSrc":"522:1:101","nodeType":"YulLiteral","src":"522:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"506:3:101","nodeType":"YulIdentifier","src":"506:3:101"},"nativeSrc":"506:18:101","nodeType":"YulFunctionCall","src":"506:18:101"}],"functionName":{"name":"and","nativeSrc":"494:3:101","nodeType":"YulIdentifier","src":"494:3:101"},"nativeSrc":"494:31:101","nodeType":"YulFunctionCall","src":"494:31:101"}],"functionName":{"name":"mstore","nativeSrc":"476:6:101","nodeType":"YulIdentifier","src":"476:6:101"},"nativeSrc":"476:50:101","nodeType":"YulFunctionCall","src":"476:50:101"},"nativeSrc":"476:50:101","nodeType":"YulExpressionStatement","src":"476:50:101"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"332:200:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"400:9:101","nodeType":"YulTypedName","src":"400:9:101","type":""},{"name":"value0","nativeSrc":"411:6:101","nodeType":"YulTypedName","src":"411:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"422:4:101","nodeType":"YulTypedName","src":"422:4:101","type":""}],"src":"332:200:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(64, 1), 1)))\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60c060405230608052348015610013575f5ffd5b5060405161543938038061543983398101604081905261003291610124565b6001600160a01b0381166100595760405163559a03cd60e01b815260040160405180910390fd5b610061610072565b6001600160a01b031660a052610151565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100c25760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101215780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b5f60208284031215610134575f5ffd5b81516001600160a01b038116811461014a575f5ffd5b9392505050565b60805160a05161527a6101bf5f395f818161075001528181610bb801528181610c6701528181610cb001528181610cef01528181610e19015281816124d101528181612c0c01528181612e29015261377201525f8181612b6d01528181612b960152612d82015261527a5ff3fe60806040526004361061023e575f3560e01c80636f86c89711610134578063ad3cb1cc116100b3578063dfcd412e11610078578063dfcd412e14610723578063e5a6b10f14610742578063e985e9c514610774578063f0f4426014610793578063f45346dc146107b2578063f720bbbf146107d1575f5ffd5b8063ad3cb1cc14610677578063b88d4fde146106a7578063bd644c56146106c6578063c87b56dd146106e5578063de27010a14610704575f5ffd5b806395d89b41116100f957806395d89b411461059b5780639760905e146105af5780639e2d8922146105ce578063a22cb4651461062c578063ac9650d81461064b575f5ffd5b80636f86c897146104f157806370a0823114610510578063792da09e1461052f57806382afd23b1461055a5780638456cb5914610587575f5ffd5b80634f1ef286116101c057806361d027b31161018557806361d027b3146104595780636352211e14610475578063663d8337146104945780636b8734e7146104b35780636f520b73146104d2575f5ffd5b80634f1ef286146103d157806352d1902d146103e457806355f804b3146103f85780635c975abb146104175780635fcbf4451461043a575f5ffd5b80630d100acb116102065780630d100acb1461030e57806323b872dd1461033b57806333d6157a1461035a5780633f4ba83a1461039e57806342842e0e146103b2575f5ffd5b806301ffc9a71461024257806306fdde0314610276578063077f224a14610297578063081812fc146102b8578063095ea7b3146102ef575b5f5ffd5b34801561024d575f5ffd5b5061026161025c366004614285565b6107f0565b60405190151581526020015b60405180910390f35b348015610281575f5ffd5b5061028a61081b565b60405161026d91906142ce565b3480156102a2575f5ffd5b506102b66102b13660046143c0565b6108bc565b005b3480156102c3575f5ffd5b506102d76102d2366004614436565b610a08565b6040516001600160a01b03909116815260200161026d565b3480156102fa575f5ffd5b506102b661030936600461444d565b610a1c565b348015610319575f5ffd5b5061032d61032836600461454d565b610a2b565b60405190815260200161026d565b348015610346575f5ffd5b506102b66103553660046145a7565b610e90565b348015610365575f5ffd5b506103916103743660046145e5565b6001600160a01b03165f9081526001602052604090205460ff1690565b60405161026d9190614630565b3480156103a9575f5ffd5b506102b6610f19565b3480156103bd575f5ffd5b506102b66103cc3660046145a7565b610f23565b6102b66103df366004614643565b610f42565b3480156103ef575f5ffd5b5061032d610f5d565b348015610403575f5ffd5b506102b661041236600461468f565b610f78565b348015610422575f5ffd5b505f5160206152255f395f51905f525460ff16610261565b348015610445575f5ffd5b506102b6610454366004614707565b610fc1565b348015610464575f5ffd5b505f546001600160a01b03166102d7565b348015610480575f5ffd5b506102d761048f366004614436565b6110b4565b34801561049f575f5ffd5b5061032d6104ae36600461474f565b6110be565b3480156104be575f5ffd5b506102b66104cd366004614707565b6115c4565b3480156104dd575f5ffd5b506102b66104ec36600461479d565b611ab9565b3480156104fc575f5ffd5b506102b661050b3660046145e5565b611d06565b34801561051b575f5ffd5b5061032d61052a3660046145e5565b6121b4565b34801561053a575f5ffd5b5061032d610549366004614436565b5f9081526002602052604090205490565b348015610565575f5ffd5b50610261610574366004614436565b5f90815260026020526040902054151590565b348015610592575f5ffd5b506102b661220c565b3480156105a6575f5ffd5b5061028a612214565b3480156105ba575f5ffd5b506102b66105c936600461444d565b612252565b3480156105d9575f5ffd5b506106176105e83660046145e5565b6001600160a01b03165f908152600460205260409020546001600160801b0380821692600160801b9092041690565b6040805192835260208301919091520161026d565b348015610637575f5ffd5b506102b66106463660046147e5565b612331565b348015610656575f5ffd5b5061066a610665366004614811565b61233c565b60405161026d9190614870565b348015610682575f5ffd5b5061028a604051806040016040528060058152602001640352e302e360dc1b81525081565b3480156106b2575f5ffd5b506102b66106c13660046148d3565b612421565b3480156106d1575f5ffd5b506102b66106e036600461493a565b612439565b3480156106f0575f5ffd5b5061028a6106ff366004614436565b61245a565b34801561070f575f5ffd5b506102b661071e366004614965565b6124bf565b34801561072e575f5ffd5b5061032d61073d3660046149d6565b61257d565b34801561074d575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000006102d7565b34801561077f575f5ffd5b5061026161078e366004614a26565b6126b4565b34801561079e575f5ffd5b506102b66107ad3660046145e5565b612700565b3480156107bd575f5ffd5b506102b66107cc366004614a52565b61270c565b3480156107dc575f5ffd5b506102b66107eb366004614a86565b61271f565b5f6107fa826127a4565b8061081557506001600160e01b0319821663c476978760e01b145b92915050565b5f5160206151e55f395f51905f52805460609190819061083a90614aa1565b80601f016020809104026020016040519081016040528092919081815260200182805461086690614aa1565b80156108b15780601f10610888576101008083540402835291602001916108b1565b820191905f5260205f20905b81548152906001019060200180831161089457829003601f168201915b505050505091505090565b5f6108c56127f3565b805490915060ff600160401b82041615906001600160401b03165f811580156108eb5750825b90505f826001600160401b031660011480156109065750303b155b905081158015610914575080155b156109325760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561095c57845460ff60401b1916600160401b1785555b87515f0361097c57604051620beefb60e01b815260040160405180910390fd5b86515f0361099d576040516343b47bcb60e01b815260040160405180910390fd5b6109a7888861281b565b6109af61282d565b6109b886612835565b83156109fe57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b5f610a128261283d565b5061081582612874565b610a278282336128ad565b5050565b5f610a346128ba565b33610a408160026128ea565b5f816001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a7d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aa19190614ad3565b9050610aae8160036128ea565b610ab88285612925565b80885264ffffffffff42166101408901525f9081526002602052604090205487519015610b04576040516315e46fbb60e01b8152600401610afb91815260200190565b60405180910390fd5b50610b0e87612951565b87515f9081526002602090815260408083209390935589518351918201909352908152610b3c9187916129a3565b610b4c82600189602001516129ba565b60405163f79ac18360e01b81526001600160a01b0382169063f79ac18390610b78908a90600401614b85565b5f604051808303815f87803b158015610b8f575f5ffd5b505af1158015610ba1573d5f5f3e3d5ffd5b50505060a0880151610be291506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169088908490612ab1565b5f5f826001600160a01b0316635e4458596040518163ffffffff1660e01b81526004016040805180830381865afa158015610c1f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c439190614b94565b6101208b0151919350915015610c9157610120890151610c91906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016908a908490612ab1565b61010089015115610cda57610100890151610cda906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016908a908590612ab1565b5f5460c08a0151610d1d916001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116928c929190911690612ab1565b5f8960e00151118015610da15750836001600160a01b031663521eb2736040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d67573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d8b9190614ad3565b6001600160a01b0316886001600160a01b031614155b15610e4157610e4188856001600160a01b031663521eb2736040518163ffffffff1660e01b8152600401602060405180830381865afa158015610de6573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e0a9190614ad3565b60e08c01516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016929190612ab1565b836001600160a01b03167f988ac1a1c4820f963124b6fa0394627ad4fa3de7583a76399b998c1d7e43af3f8a604051610e7a9190614b85565b60405180910390a2505095519695505050505050565b6001600160a01b038216610eb957604051633250574960e11b81525f6004820152602401610afb565b5f610ec5838333612ae7565b9050836001600160a01b0316816001600160a01b031614610f13576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610afb565b50505050565b610f21612b03565b565b610f3d83838360405180602001604052805f815250612421565b505050565b610f4a612b62565b610f5382612c06565b610a278282612cbb565b5f610f66612d77565b505f5160206152055f395f51905f5290565b7fc41b7cb64e5be01af4afc2641afc861432136270f4206b7773f229b658b9669960038383604051610fac93929190614be9565b60405180910390a16003610f3d828483614cc9565b6001600160a01b0382165f90815260016020526040812090815460ff166003811115610fef57610fef614600565b0361100d57604051637d91856360e01b815260040160405180910390fd5b5f82600381111561102057611020614600565b0361103e576040516332b409a160e01b815260040160405180910390fd5b80548290829060ff1916600183600381111561105c5761105c614600565b021790555080546040516001600160a01b038516917ffe4c6998a06520b63340a48710b374432cb395da90e4e5360e1ec7aeefebecef916110a791610100900460ff16908690614d82565b60405180910390a2505050565b5f6108158261283d565b5f6110c76128ba565b6110de6110d936879003870187614da8565b612dc0565b33853560601c811461110357604051634ace04f960e01b815260040160405180910390fd5b61110e8160026128ea565b5f816001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561114b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061116f9190614ad3565b905061117c8160036128ea565b64ffffffffff421661119661018089016101608a01614dc3565b64ffffffffff161180156111bd57504264ffffffffff1686610160015164ffffffffff1610155b8735906111e057604051630422552f60e11b8152600401610afb91815260200190565b5085610140015164ffffffffff16876101400160208101906112029190614dc3565b64ffffffffff1614801561121e57508560a001518760a0013511155b801561123257508560c001518760c0013511155b8015611248575085610100015187610100013511155b801561125e575085610120015187610120013511155b801561127257508560e001518760e0013511155b87879091611295576040516301ff548560e61b8152600401610afb929190614e76565b50506112a18285612925565b8087525f90815260026020526040902054865190156112d6576040516315e46fbb60e01b8152600401610afb91815260200190565b506112e086612951565b86515f908152600260205260408120919091556112fd88356110b4565b905061131b81885f015160405180602001604052805f8152506129a3565b87602001358760200151111561134f5761134a8360018a602001358a602001516113459190614ea7565b6129ba565b611368565b611368835f89602001518b602001356113459190614ea7565b87355f908152600260205260408082209190915551636ae360b360e11b81526001600160a01b0383169063d5c6c166906113a8908b908b90600401614e76565b5f604051808303815f87803b1580156113bf575f5ffd5b505af11580156113d1573d5f5f3e3d5ffd5b505050506113e986838960a001518b60a00135612e09565b5f5f836001600160a01b0316635e4458596040518163ffffffff1660e01b81526004016040805180830381865afa158015611426573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061144a9190614b94565b9150915061146488828b61012001518d6101200135612e09565b61147a88838b61010001518d6101000135612e09565b5f5460c0808b015161149d928b926001600160a01b0390911691908e0135612e09565b5f856001600160a01b031663521eb2736040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114da573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114fe9190614ad3565b9050806001600160a01b0316896001600160a01b03161461152d5761152d89828c60e001518e60e00135612e09565b856001600160a01b03167f988ac1a1c4820f963124b6fa0394627ad4fa3de7583a76399b998c1d7e43af3f8b6040516115669190614b85565b60405180910390a289516040518c35906001600160a01b038916907f4ff4ac703cb703b7ea535d47e65e64b4cabf11b3e2eb41f152dab17971953add905f90a489516115b4908c3590612e58565b5050965198975050505050505050565b6001600160a01b0382165f90815260016020526040812090815460ff1660038111156115f2576115f2614600565b146116105760405163cf9a96f360e01b815260040160405180910390fd5b306001600160a01b0316836001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015611656573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061167a9190614ad3565b6001600160a01b0316146116a157604051630fdee24360e11b815260040160405180910390fd5b5f8260038111156116b4576116b4614600565b148061174b575060018260038111156116cf576116cf614600565b14801561174b57506040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061170a90636d5136b160e11b90600401614eba565b602060405180830381865afa158015611725573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117499190614ecf565b155b806117e15750600382600381111561176557611765614600565b1480156117e157506040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906117a09063f7e4b01b60e01b90600401614eba565b602060405180830381865afa1580156117bb573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117df9190614ecf565b155b80611877575060028260038111156117fb576117fb614600565b14801561187757506040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790611836906321b7e09b60e01b90600401614eba565b602060405180830381865afa158015611851573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118759190614ecf565b155b1561189957828260405163502c9a5f60e01b8152600401610afb929190614eea565b8054600160ff198216811783558391839161ffff19909116176101008360038111156118c7576118c7614600565b021790555060038260038111156118e0576118e0614600565b03611a7d575f8390505f816001600160a01b031663536ebbfc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611926573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061194a9190614ad3565b90506001600160a01b038116156119b2576040516338ea38a760e21b81526001600160a01b03838116600483015282169063e3a8e29c906024015f604051808303815f87803b15801561199b575f5ffd5b505af11580156119ad573d5f5f3e3d5ffd5b505050505b816001600160a01b0316637b83037b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119ee573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a129190614ad3565b90506001600160a01b03811615611a7a576040516338ea38a760e21b81526001600160a01b03838116600483015282169063e3a8e29c906024015f604051808303815f87803b158015611a63575f5ffd5b505af1158015611a75573d5f5f3e3d5ffd5b505050505b50505b826001600160a01b03167ffe4c6998a06520b63340a48710b374432cb395da90e4e5360e1ec7aeefebecef8360016040516110a7929190614d82565b611ac16128ba565b611ad36110d936869003860186614da8565b33843560601c8114611af857604051634ace04f960e01b815260040160405180910390fd5b611b03816002612f3f565b5f816001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b40573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b649190614ad3565b9050611b71816003612f3f565b64ffffffffff4216611b8b61018088016101608901614dc3565b64ffffffffff1611865f013590611bb857604051630422552f60e11b8152600401610afb91815260200190565b508560a001358511158015611bd257508561010001358411155b8015611be357508561012001358311155b8686868690919293611c0c5760405163a02db78360e01b8152600401610afb9493929190614f03565b505050505f611c1d875f01356110b4565b9050611c2e835f89602001356129ba565b86355f90815260026020526040808220919091555163770fcd3560e11b81526001600160a01b0383169063ee1f9a6a90611c74908a908a908a908a908890600401614f30565b5f604051808303815f87803b158015611c8b575f5ffd5b505af1158015611c9d573d5f5f3e3d5ffd5b50506040805189815260208101899052908101879052893592506001600160a01b03861691507f825c3ee6eecaa4b0dc3573e9732b65613d705cadfc4ba69cc76cb7d9227e59719060600160405180910390a3611cfd8735878787612f9e565b50505050505050565b6001600160a01b0381165f9081526001602052604090206002815460ff166003811115611d3557611d35614600565b14611d5357604051635c92b23960e11b815260040160405180910390fd5b60018154610100900460ff166003811115611d7057611d70614600565b03611e6b57816001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611db1573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dd59190614f6f565b15611e6657805f0160019054906101000a900460ff16826001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e27573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e4b9190614f6f565b604051631d0ec0ab60e01b8152600401610afb929190614f86565b612144565b60028154610100900460ff166003811115611e8857611e88614600565b03611efa576001600160a01b0382165f908152600460205260409020546001600160801b031615611e665780546001600160a01b0383165f90815260046020819052604091829020549151631d0ec0ab60e01b8152610afb93610100900460ff16926001600160801b03169101614f9d565b5f829050806001600160a01b03166326ccbd226040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f3a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f5e9190614f6f565b15611fb057815f0160019054906101000a900460ff16816001600160a01b03166326ccbd226040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e27573d5f5f3e3d5ffd5b5f816001600160a01b031663536ebbfc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fed573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120119190614ad3565b90506001600160a01b03811615612079576040516376c7fc5560e01b81526001600160a01b0383811660048301528216906376c7fc55906024015f604051808303815f87803b158015612062575f5ffd5b505af1158015612074573d5f5f3e3d5ffd5b505050505b816001600160a01b0316637b83037b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120b5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120d99190614ad3565b90506001600160a01b03811615612141576040516376c7fc5560e01b81526001600160a01b0383811660048301528216906376c7fc55906024015f604051808303815f87803b15801561212a575f5ffd5b505af115801561213c573d5f5f3e3d5ffd5b505050505b50505b80546040516001600160a01b038416917ffe4c6998a06520b63340a48710b374432cb395da90e4e5360e1ec7aeefebecef9161218a91610100900460ff16905f90614d82565b60405180910390a2506001600160a01b03165f908152600160205260409020805461ffff19169055565b5f5f5160206151e55f395f51905f526001600160a01b0383166121ec576040516322718ad960e21b81525f6004820152602401610afb565b6001600160a01b039092165f908152600390920160205250604090205490565b610f2161309c565b7f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930180546060915f5160206151e55f395f51905f529161083a90614aa1565b6001600160a01b0382165f90815260046020526040812090612273836130e4565b82549091506001600160801b0390811690829081168211156122bb57604051630ce06d1360e31b81526001600160801b03928316600482015291166024820152604401610afb565b5050815460408051600160801b9092046001600160801b039081168352831660208301526001600160a01b038616917f7e1092696182a6d6922c9583db468951527f21f67f9f2f4911ed3f7bbf02b330910160405180910390a281546001600160801b03918216600160801b0291161790555050565b610a2733838361311b565b604080515f815260208101909152606090826001600160401b03811115612365576123656142e0565b60405190808252806020026020018201604052801561239857816020015b60608152602001906001900390816123835790505b5091505f5b83811015612419576123f4308686848181106123bb576123bb614fc2565b90506020028101906123cd9190614fd6565b856040516020016123e093929190615036565b6040516020818303038152906040526131ca565b83828151811061240657612406614fc2565b602090810291909101015260010161239d565b505092915050565b61242c848484610e90565b610f13338585858561326a565b6124416128ba565b610a2761245336849003840184614da8565b825f613389565b60606124658261283d565b505f61246f61360e565b90505f81511161248d5760405180602001604052805f8152506124b8565b806124978461369e565b6040516020016124a892919061504b565b6040516020818303038152906040525b9392505050565b6124c76128ba565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663d505accf336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604481018990526064810187905260ff8616608482015260a4810185905260c4810184905260e4015f604051808303815f87803b158015612560575f5ffd5b505af1925050508015612571575060015b50611cfd87878761372d565b5f6125866128ba565b826001600160a01b0381166125ba57604051639cfea58360e01b81526001600160a01b039091166004820152602401610afb565b506125c6856001612f3f565b6001600160a01b0385166323e103a885336040516001600160e01b031960e085901b16815260048101929092526001600160a01b0390811660248301528086166044830152861660648201526084016020604051808303815f875af1158015612631573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126559190614f6f565b90506001600160a01b03831633604080516001600160a01b03868116825260208201869052928316928916917fe826ecb5c03d4897f8ab426ee94064e06179dff39cd9fdd0776904cd935c95d8910160405180910390a4949350505050565b6001600160a01b039182165f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab00793056020908152604080832093909416825291909152205460ff1690565b61270981613878565b50565b6127146128ba565b610f3d83838361372d565b6127276128ba565b4261273a61018083016101608401614dc3565b64ffffffffff16111561278a57803561275b61018083016101608401614dc3565b60405163312bfdd760e11b8152600481019290925264ffffffffff166024820152426044820152606401610afb565b61270961279c36839003830183614da8565b5f6001613389565b5f6001600160e01b031982166380ac58cd60e01b14806127d457506001600160e01b03198216635b5e139f60e01b145b8061081557506301ffc9a760e01b6001600160e01b0319831614610815565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610815565b612823613906565b610a27828261392b565b610f21613906565b612700613906565b5f5f6128488361395b565b90506001600160a01b03811661081557604051637e27328960e01b815260048101849052602401610afb565b5f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930460205260409020546001600160a01b031690565b610f3d8383836001613994565b5f5160206152255f395f51905f525460ff1615610f215760405163d93c066560e01b815260040160405180910390fd5b60016128f68383613aa7565b600381111561290757612907614600565b14610a2757604051630422f25f60e01b815260040160405180910390fd5b5f6124b86bffffffffffffffffffffffff83166bffffffffffffffffffffffff19606086901b1661505f565b5f816040516020016129639190614b85565b60408051601f1981840301815291905280516020909101209050818161299d57604051636ee9f64760e01b8152600401610afb9190614b85565b50919050565b6129ad8383613b18565b610f3d335f85858561326a565b6001600160a01b0383165f9081526004602052604090208215612a64576129e0826130e4565b815482905f906129fa9084906001600160801b0316615072565b82546101009290920a6001600160801b0381810219909316918316021790915582548082169250600160801b90041680821115612a5d57604051630ce06d1360e31b81526001600160801b03928316600482015291166024820152604401610afb565b5050610f13565b612a6d826130e4565b815482905f90612a879084906001600160801b0316615091565b92506101000a8154816001600160801b0302191690836001600160801b0316021790555050505050565b612abf848484846001613b79565b610f1357604051635274afe760e01b81526001600160a01b0385166004820152602401610afb565b5f612af06128ba565b612afb848484613be6565b949350505050565b612b0b613ce8565b5f5160206152255f395f51905f52805460ff191681557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a150565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480612be857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316612bdc5f5160206152055f395f51905f52546001600160a01b031690565b6001600160a01b031614155b15610f215760405163703e46dd60e11b815260040160405180910390fd5b5f8190507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c70573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c949190614ad3565b6001600160a01b031614610a27576040516324a41b4360e11b815260040160405180910390fd5b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015612d15575060408051601f3d908101601f19168201909252612d1291810190614f6f565b60015b612d3d57604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610afb565b5f5160206152055f395f51905f528114612d6d57604051632a87526960e21b815260048101829052602401610afb565b610f3d8383613d17565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f215760405163703e46dd60e11b815260040160405180910390fd5b805115801590612de6575080515f90815260026020526040902054612de482612951565b145b815190610a27576040516321df5fa560e11b8152600401610afb91815260200190565b5f612e148284614ea7565b90508015612e5157612e516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016868684612ab1565b5050505050565b5f612e62836110b4565b9050612e7581630162fc8560e11b613d6c565b612e7e57505050565b5f6001600160a01b038216635ee0c7dd336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101879052606481018690526084016020604051808303815f875af1158015612ee6573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f0a91906150b0565b90506001600160e01b03198116635ee0c7dd60e01b14610f1357806040516381784a5160e01b8152600401610afb9190614eba565b5f612f4a8383613aa7565b90506001816003811115612f6057612f60614600565b14158015612f8057506002816003811115612f7d57612f7d614600565b14155b15610f3d5760405163d08ef1ff60e01b815260040160405180910390fd5b5f612fa8856110b4565b9050612fbb81630162fc8560e11b613d6c565b612fc55750610f13565b5f6001600160a01b0382166362eb345e336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101899052606481018890526084810187905260a4810186905260c4016020604051808303815f875af115801561303b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061305f91906150b0565b90506001600160e01b031981166331759a2f60e11b1461309457806040516381784a5160e01b8152600401610afb9190614eba565b505050505050565b6130a46128ba565b5f5160206152255f395f51905f52805460ff191660011781557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833612b44565b5f6001600160801b03821115613117576040516306dfcc6560e41b81526080600482015260248101839052604401610afb565b5090565b5f5160206151e55f395f51905f526001600160a01b03831661315b57604051630b61174360e31b81526001600160a01b0384166004820152602401610afb565b6001600160a01b038481165f818152600584016020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a350505050565b60605f6131d78484613d87565b90508080156131f857505f3d11806131f857505f846001600160a01b03163b115b1561320d57613205613d9a565b915050610815565b801561323757604051639996b31560e01b81526001600160a01b0385166004820152602401610afb565b3d1561324a57613245613db3565b613263565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b6001600160a01b0383163b15612e5157604051630a85bd0160e11b81526001600160a01b0384169063150b7a02906132ac9088908890879087906004016150cb565b6020604051808303815f875af19250505080156132e6575060408051601f3d908101601f191682019092526132e3918101906150b0565b60015b61334d573d808015613313576040519150601f19603f3d011682016040523d82523d5f602084013e613318565b606091505b5080515f0361334557604051633250574960e11b81526001600160a01b0385166004820152602401610afb565b805160208201fd5b6001600160e01b03198116630a85bd0160e11b1461309457604051633250574960e11b81526001600160a01b0385166004820152602401610afb565b61339283612dc0565b825160601c811580156133ae57506001600160a01b0381163314155b156133cc57604051634ace04f960e01b815260040160405180910390fd5b8215806133e457504284610160015164ffffffffff16115b84519061340757604051630422552f60e11b8152600401610afb91815260200190565b50613413816002612f3f565b6020840151839080821115613444576040516317d3b4f960e01b815260048101929092526024820152604401610afb565b50505f5f841190505f826001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613489573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134ad9190614ad3565b90506134ba816003612f3f565b85515f908152600260205260408120558115613543575f6134dd875f01516110b4565b604051631dda289960e01b81529091506001600160a01b03831690631dda2899906135109084908b908b906004016150fd565b5f604051808303815f87803b158015613527575f5ffd5b505af1158015613539573d5f5f3e3d5ffd5b505050505061359d565b6040516376185ff160e01b81526001600160a01b038216906376185ff19061356f908990600401614b85565b5f604051808303815f87803b158015613586575f5ffd5b505af1158015613598573d5f5f3e3d5ffd5b505050505b6135ac835f88602001516129ba565b85516040518681526001600160a01b038516907f54f4a270ea08f88dc23b2520d6b063fecb24d956c4496f447926d736338f545e9060200160405180910390a384156136035785516135fe9086613dbe565b613094565b855161309490613ea5565b60606003805461361d90614aa1565b80601f016020809104026020016040519081016040528092919081815260200182805461364990614aa1565b80156136945780601f1061366b57610100808354040283529160200191613694565b820191905f5260205f20905b81548152906001019060200180831161367757829003601f168201915b5050505050905090565b60605f6136aa83613f93565b60010190505f816001600160401b038111156136c8576136c86142e0565b6040519080825280601f01601f1916602001820160405280156136f2576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846136fc57509392505050565b806001600160a01b03811661376157604051639cfea58360e01b81526001600160a01b039091166004820152602401610afb565b5061376d8360016128ea565b6137a27f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316338585612ab1565b6001600160a01b038316632e2d298483336040516001600160e01b031960e085901b16815260048101929092526001600160a01b039081166024830152841660448201526064015f604051808303815f87803b158015613800575f5ffd5b505af1158015613812573d5f5f3e3d5ffd5b50505050806001600160a01b03166138273390565b6001600160a01b0316846001600160a01b03167f7cfff908a4b583f36430b25d75964c458d8ede8a99bd61be750e97ee1b2f3a968560405161386b91815260200190565b60405180910390a4505050565b6001600160a01b03811661389f576040516307a2ee8b60e11b815260040160405180910390fd5b5f54604080516001600160a01b03928316815291831660208301527f8c3aa5f43a388513435861bf27dfad7829cd248696fed367c62d441f62954496910160405180910390a15f80546001600160a01b0319166001600160a01b0392909216919091179055565b61390e61406a565b610f2157604051631afcd79f60e31b815260040160405180910390fd5b613933613906565b5f5160206151e55f395f51905f528061394c848261512a565b5060018101610f13838261512a565b5f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930260205260409020546001600160a01b031690565b5f5160206151e55f395f51905f5281806139b657506001600160a01b03831615155b15613a77575f6139c58561283d565b90506001600160a01b038416158015906139f15750836001600160a01b0316816001600160a01b031614155b8015613a045750613a0281856126b4565b155b15613a2d5760405163a9fbf51f60e01b81526001600160a01b0385166004820152602401610afb565b8215613a755784866001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5f93845260040160205250506040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382165f908152600160205260408120826003811115613ad057613ad0614600565b8154610100900460ff166003811115613aeb57613aeb614600565b14613b0d57838360405163502c9a5f60e01b8152600401610afb929190614eea565b5460ff169392505050565b6001600160a01b038216613b4157604051633250574960e11b81525f6004820152602401610afb565b5f613b4d83835f612ae7565b90506001600160a01b03811615610f3d576040516339e3563760e11b81525f6004820152602401610afb565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f51148316613bd5578383151615613bc9573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b5f5f5160206151e55f395f51905f5281613bff8561395b565b90506001600160a01b03841615613c1b57613c1b818587614083565b6001600160a01b03811615613c5757613c365f865f5f613994565b6001600160a01b0381165f908152600383016020526040902080545f190190555b6001600160a01b03861615613c87576001600160a01b0386165f9081526003830160205260409020805460010190555b5f85815260028301602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a495945050505050565b5f5160206152255f395f51905f525460ff16610f2157604051638dfc202b60e01b815260040160405180910390fd5b613d20826140e7565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115613d6457610f3d82826131ca565b610a2761414a565b5f613d7683614169565b80156124b857506124b883836141b4565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f613dc8836110b4565b9050613ddb81630162fc8560e11b613d6c565b613de457505050565b5f6001600160a01b03821663d6281d3e336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101879052606481018690526084016020604051808303815f875af1158015613e4c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e7091906150b0565b90506001600160e01b03198116636b140e9f60e11b14610f1357806040516381784a5160e01b8152600401610afb9190614eba565b5f613eaf826110b4565b9050613ec281630162fc8560e11b613d6c565b613eca575050565b6001600160a01b03811663e8e617b7620249f0336040516001600160e01b031960e085901b1681526001600160a01b039091166004820152306024820152604481018690526064016020604051808303815f8887f193505050508015613f4d575060408051601f3d908101601f19168201909252613f4a918101906150b0565b60015b610f3d576040516001600160a01b038216815282907f6ce8016f81523f240956bca9a698e643d09e84e7d0e931470b1016baf1027bd09060200160405180910390a25050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310613fd15772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310613ffd576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061401b57662386f26fc10000830492506010015b6305f5e1008310614033576305f5e100830492506008015b612710831061404757612710830492506004015b60648310614059576064830492506002015b600a83106108155760010192915050565b5f6140736127f3565b54600160401b900460ff16919050565b61408e8383836141d8565b610f3d576001600160a01b0383166140bc57604051637e27328960e01b815260048101829052602401610afb565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610afb565b806001600160a01b03163b5f0361411c57604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610afb565b5f5160206152055f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b3415610f215760405163b398979f60e01b815260040160405180910390fd5b5f61417b826301ffc9a760e01b6141b4565b156141a8575f80614194846001600160e01b031961423c565b91509150818015612afb5750159392505050565b505f919050565b919050565b5f5f5f6141c1858561423c565b915091508180156141cf5750805b95945050505050565b5f6001600160a01b03831615801590612afb5750826001600160a01b0316846001600160a01b03161480614211575061421184846126b4565b80612afb5750826001600160a01b031661422a83612874565b6001600160a01b031614949350505050565b6301ffc9a760e01b5f818152600483905290819060208260248188617530fa92505f511515601f3d11169150509250929050565b6001600160e01b031981168114612709575f5ffd5b5f60208284031215614295575f5ffd5b81356124b881614270565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6124b860208301846142a0565b634e487b7160e01b5f52604160045260245ffd5b60405161018081016001600160401b0381118282101715614317576143176142e0565b60405290565b5f82601f83011261432c575f5ffd5b8135602083015f5f6001600160401b0384111561434b5761434b6142e0565b50604051601f19601f85018116603f011681018181106001600160401b0382111715614379576143796142e0565b604052838152905080828401871015614390575f5ffd5b838360208301375f602085830101528094505050505092915050565b6001600160a01b0381168114612709575f5ffd5b5f5f5f606084860312156143d2575f5ffd5b83356001600160401b038111156143e7575f5ffd5b6143f38682870161431d565b93505060208401356001600160401b0381111561440e575f5ffd5b61441a8682870161431d565b925050604084013561442b816143ac565b809150509250925092565b5f60208284031215614446575f5ffd5b5035919050565b5f5f6040838503121561445e575f5ffd5b8235614469816143ac565b946020939093013593505050565b803564ffffffffff811681146141af575f5ffd5b5f610180828403121561449c575f5ffd5b6144a46142f4565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e080840135908201526101008084013590820152610120808401359082015290506145136101408301614477565b6101408201526145266101608301614477565b61016082015292915050565b80356bffffffffffffffffffffffff811681146141af575f5ffd5b5f5f5f5f6101e08587031215614561575f5ffd5b61456b868661448b565b935061018085013561457c816143ac565b92506101a085013561458d816143ac565b915061459c6101c08601614532565b905092959194509250565b5f5f5f606084860312156145b9575f5ffd5b83356145c4816143ac565b925060208401356145d4816143ac565b929592945050506040919091013590565b5f602082840312156145f5575f5ffd5b81356124b8816143ac565b634e487b7160e01b5f52602160045260245ffd5b6004811061270957634e487b7160e01b5f52602160045260245ffd5b6020810161463d83614614565b91905290565b5f5f60408385031215614654575f5ffd5b823561465f816143ac565b915060208301356001600160401b03811115614679575f5ffd5b6146858582860161431d565b9150509250929050565b5f5f602083850312156146a0575f5ffd5b82356001600160401b038111156146b5575f5ffd5b8301601f810185136146c5575f5ffd5b80356001600160401b038111156146da575f5ffd5b8560208284010111156146eb575f5ffd5b6020919091019590945092505050565b60048110612709575f5ffd5b5f5f60408385031215614718575f5ffd5b8235614723816143ac565b91506020830135614733816146fb565b809150509250929050565b5f610180828403121561299d575f5ffd5b5f5f5f5f6103408587031215614763575f5ffd5b61476d868661473e565b935061477d86610180870161448b565b925061030085013561478e816143ac565b915061459c6103208601614532565b5f5f5f5f6101e085870312156147b1575f5ffd5b6147bb868661473e565b9661018086013596506101a0860135956101c00135945092505050565b8015158114612709575f5ffd5b5f5f604083850312156147f6575f5ffd5b8235614801816143ac565b91506020830135614733816147d8565b5f5f60208385031215614822575f5ffd5b82356001600160401b03811115614837575f5ffd5b8301601f81018513614847575f5ffd5b80356001600160401b0381111561485c575f5ffd5b8560208260051b84010111156146eb575f5ffd5b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b828110156148c757603f198786030184526148b28583516142a0565b94506020938401939190910190600101614896565b50929695505050505050565b5f5f5f5f608085870312156148e6575f5ffd5b84356148f1816143ac565b93506020850135614901816143ac565b92506040850135915060608501356001600160401b03811115614922575f5ffd5b61492e8782880161431d565b91505092959194509250565b5f5f6101a0838503121561494c575f5ffd5b614956848461473e565b94610180939093013593505050565b5f5f5f5f5f5f5f60e0888a03121561497b575f5ffd5b8735614986816143ac565b965060208801359550604088013561499d816143ac565b945060608801359350608088013560ff811681146149b9575f5ffd5b9699959850939692959460a0840135945060c09093013592915050565b5f5f5f5f608085870312156149e9575f5ffd5b84356149f4816143ac565b9350602085013592506040850135614a0b816143ac565b91506060850135614a1b816143ac565b939692955090935050565b5f5f60408385031215614a37575f5ffd5b8235614a42816143ac565b91506020830135614733816143ac565b5f5f5f60608486031215614a64575f5ffd5b8335614a6f816143ac565b925060208401359150604084013561442b816143ac565b5f6101808284031215614a97575f5ffd5b6124b8838361473e565b600181811c90821680614ab557607f821691505b60208210810361299d57634e487b7160e01b5f52602260045260245ffd5b5f60208284031215614ae3575f5ffd5b81516124b8816143ac565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e0830152610100810151610100830152610120810151610120830152610140810151614b6a61014084018264ffffffffff169052565b50610160810151610f3d61016084018264ffffffffff169052565b61018081016108158284614aee565b5f5f60408385031215614ba5575f5ffd5b8251614bb0816143ac565b6020840151909250614733816143ac565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b604081525f5f8554614bfa81614aa1565b806040860152600182165f8114614c185760018114614c3457614c65565b60ff1983166060870152606082151560051b8701019350614c65565b885f5260205f205f5b83811015614c5c57815488820160600152600190910190602001614c3d565b87016060019450505b5050508281036020840152614c7b818587614bc1565b9695505050505050565b601f821115610f3d57805f5260205f20601f840160051c81016020851015614caa5750805b601f840160051c820191505b81811015612e51575f8155600101614cb6565b6001600160401b03831115614ce057614ce06142e0565b614cf483614cee8354614aa1565b83614c85565b5f601f841160018114614d25575f8515614d0e5750838201355b5f19600387901b1c1916600186901b178355612e51565b5f83815260208120601f198716915b82811015614d545786850135825560209485019460019092019101614d34565b5086821015614d70575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60408101614d8f84614614565b838252614d9b83614614565b8260208301529392505050565b5f6101808284031215614db9575f5ffd5b6124b8838361448b565b5f60208284031215614dd3575f5ffd5b6124b882614477565b803582526020808201359083015260408082013590830152606080820135908301526080808201359083015260a0808201359083015260c0808201359083015260e0808201359083015261010080820135908301526101208082013590830152614e496101408201614477565b64ffffffffff16610140830152614e636101608201614477565b64ffffffffff8116610160840152505050565b6103008101614e858285614ddc565b6124b8610180830184614aee565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561081557610815614e93565b6001600160e01b031991909116815260200190565b5f60208284031215614edf575f5ffd5b81516124b8816147d8565b6001600160a01b038316815260408101614d9b83614614565b6101e08101614f128287614ddc565b84610180830152836101a0830152826101c083015295945050505050565b6102008101614f3f8288614ddc565b6101808201959095526101a08101939093526101c08301919091526001600160a01b03166101e090910152919050565b5f60208284031215614f7f575f5ffd5b5051919050565b60408101614f9384614614565b9281526020015290565b60408101614faa84614614565b9281526001600160801b039190911660209091015290565b634e487b7160e01b5f52603260045260245ffd5b5f5f8335601e19843603018112614feb575f5ffd5b8301803591506001600160401b03821115615004575f5ffd5b602001915036819003821315615018575f5ffd5b9250929050565b5f81518060208401855e5f93019283525090919050565b828482375f8382015f8152614c7b818561501f565b5f612afb615059838661501f565b8461501f565b8082018082111561081557610815614e93565b6001600160801b03818116838216019081111561081557610815614e93565b6001600160801b03828116828216039081111561081557610815614e93565b5f602082840312156150c0575f5ffd5b81516124b881614270565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90614c7b908301846142a0565b6001600160a01b03841681526101c0810161511b6020830185614aee565b826101a0830152949350505050565b81516001600160401b03811115615143576151436142e0565b615157816151518454614aa1565b84614c85565b6020601f821160018114615189575f83156151725750848201515b5f19600385901b1c1916600184901b178455612e51565b5f84815260208120601f198516915b828110156151b85787850151825560209485019460019092019101615198565b50848210156151d557868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbccd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300a2646970667358221220f8fa27dd4fdec3476c4de2ae7b218ab3fe38ebf626046f7b0d6d77be94ae28b364736f6c634300081e0033","opcodes":"PUSH1 0xC0 PUSH1 0x40 MSTORE ADDRESS PUSH1 0x80 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x13 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x5439 CODESIZE SUB DUP1 PUSH2 0x5439 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x32 SWAP2 PUSH2 0x124 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x59 JUMPI PUSH1 0x40 MLOAD PUSH4 0x559A03CD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x61 PUSH2 0x72 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xA0 MSTORE PUSH2 0x151 JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xC2 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0x121 JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x134 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x14A JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH2 0x527A PUSH2 0x1BF PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x750 ADD MSTORE DUP2 DUP2 PUSH2 0xBB8 ADD MSTORE DUP2 DUP2 PUSH2 0xC67 ADD MSTORE DUP2 DUP2 PUSH2 0xCB0 ADD MSTORE DUP2 DUP2 PUSH2 0xCEF ADD MSTORE DUP2 DUP2 PUSH2 0xE19 ADD MSTORE DUP2 DUP2 PUSH2 0x24D1 ADD MSTORE DUP2 DUP2 PUSH2 0x2C0C ADD MSTORE DUP2 DUP2 PUSH2 0x2E29 ADD MSTORE PUSH2 0x3772 ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x2B6D ADD MSTORE DUP2 DUP2 PUSH2 0x2B96 ADD MSTORE PUSH2 0x2D82 ADD MSTORE PUSH2 0x527A PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x23E JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6F86C897 GT PUSH2 0x134 JUMPI DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0xB3 JUMPI DUP1 PUSH4 0xDFCD412E GT PUSH2 0x78 JUMPI DUP1 PUSH4 0xDFCD412E EQ PUSH2 0x723 JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x742 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x774 JUMPI DUP1 PUSH4 0xF0F44260 EQ PUSH2 0x793 JUMPI DUP1 PUSH4 0xF45346DC EQ PUSH2 0x7B2 JUMPI DUP1 PUSH4 0xF720BBBF EQ PUSH2 0x7D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x677 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x6A7 JUMPI DUP1 PUSH4 0xBD644C56 EQ PUSH2 0x6C6 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x6E5 JUMPI DUP1 PUSH4 0xDE27010A EQ PUSH2 0x704 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 GT PUSH2 0xF9 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x59B JUMPI DUP1 PUSH4 0x9760905E EQ PUSH2 0x5AF JUMPI DUP1 PUSH4 0x9E2D8922 EQ PUSH2 0x5CE JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x62C JUMPI DUP1 PUSH4 0xAC9650D8 EQ PUSH2 0x64B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6F86C897 EQ PUSH2 0x4F1 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x510 JUMPI DUP1 PUSH4 0x792DA09E EQ PUSH2 0x52F JUMPI DUP1 PUSH4 0x82AFD23B EQ PUSH2 0x55A JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x587 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4F1EF286 GT PUSH2 0x1C0 JUMPI DUP1 PUSH4 0x61D027B3 GT PUSH2 0x185 JUMPI DUP1 PUSH4 0x61D027B3 EQ PUSH2 0x459 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x475 JUMPI DUP1 PUSH4 0x663D8337 EQ PUSH2 0x494 JUMPI DUP1 PUSH4 0x6B8734E7 EQ PUSH2 0x4B3 JUMPI DUP1 PUSH4 0x6F520B73 EQ PUSH2 0x4D2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x3D1 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x3E4 JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x3F8 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x417 JUMPI DUP1 PUSH4 0x5FCBF445 EQ PUSH2 0x43A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xD100ACB GT PUSH2 0x206 JUMPI DUP1 PUSH4 0xD100ACB EQ PUSH2 0x30E JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x33B JUMPI DUP1 PUSH4 0x33D6157A EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x39E JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x3B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x242 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x276 JUMPI DUP1 PUSH4 0x77F224A EQ PUSH2 0x297 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x2B8 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2EF JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x24D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x261 PUSH2 0x25C CALLDATASIZE PUSH1 0x4 PUSH2 0x4285 JUMP JUMPDEST PUSH2 0x7F0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x281 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x28A PUSH2 0x81B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x42CE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x2B1 CALLDATASIZE PUSH1 0x4 PUSH2 0x43C0 JUMP JUMPDEST PUSH2 0x8BC JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2D7 PUSH2 0x2D2 CALLDATASIZE PUSH1 0x4 PUSH2 0x4436 JUMP JUMPDEST PUSH2 0xA08 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x26D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2FA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x309 CALLDATASIZE PUSH1 0x4 PUSH2 0x444D JUMP JUMPDEST PUSH2 0xA1C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x319 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x328 CALLDATASIZE PUSH1 0x4 PUSH2 0x454D JUMP JUMPDEST PUSH2 0xA2B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x26D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x346 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x355 CALLDATASIZE PUSH1 0x4 PUSH2 0x45A7 JUMP JUMPDEST PUSH2 0xE90 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x365 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x391 PUSH2 0x374 CALLDATASIZE PUSH1 0x4 PUSH2 0x45E5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x4630 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0xF19 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x3CC CALLDATASIZE PUSH1 0x4 PUSH2 0x45A7 JUMP JUMPDEST PUSH2 0xF23 JUMP JUMPDEST PUSH2 0x2B6 PUSH2 0x3DF CALLDATASIZE PUSH1 0x4 PUSH2 0x4643 JUMP JUMPDEST PUSH2 0xF42 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0xF5D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x403 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x412 CALLDATASIZE PUSH1 0x4 PUSH2 0x468F JUMP JUMPDEST PUSH2 0xF78 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x422 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5225 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0xFF AND PUSH2 0x261 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x445 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x454 CALLDATASIZE PUSH1 0x4 PUSH2 0x4707 JUMP JUMPDEST PUSH2 0xFC1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x464 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2D7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x480 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2D7 PUSH2 0x48F CALLDATASIZE PUSH1 0x4 PUSH2 0x4436 JUMP JUMPDEST PUSH2 0x10B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x49F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x4AE CALLDATASIZE PUSH1 0x4 PUSH2 0x474F JUMP JUMPDEST PUSH2 0x10BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4BE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x4CD CALLDATASIZE PUSH1 0x4 PUSH2 0x4707 JUMP JUMPDEST PUSH2 0x15C4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4DD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x4EC CALLDATASIZE PUSH1 0x4 PUSH2 0x479D JUMP JUMPDEST PUSH2 0x1AB9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4FC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x50B CALLDATASIZE PUSH1 0x4 PUSH2 0x45E5 JUMP JUMPDEST PUSH2 0x1D06 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x51B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x52A CALLDATASIZE PUSH1 0x4 PUSH2 0x45E5 JUMP JUMPDEST PUSH2 0x21B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x549 CALLDATASIZE PUSH1 0x4 PUSH2 0x4436 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x565 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x261 PUSH2 0x574 CALLDATASIZE PUSH1 0x4 PUSH2 0x4436 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD ISZERO ISZERO SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x592 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x220C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5A6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x28A PUSH2 0x2214 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x5C9 CALLDATASIZE PUSH1 0x4 PUSH2 0x444D JUMP JUMPDEST PUSH2 0x2252 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x617 PUSH2 0x5E8 CALLDATASIZE PUSH1 0x4 PUSH2 0x45E5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP3 AND SWAP3 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 SWAP3 DIV AND SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x26D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x637 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x646 CALLDATASIZE PUSH1 0x4 PUSH2 0x47E5 JUMP JUMPDEST PUSH2 0x2331 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x656 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x66A PUSH2 0x665 CALLDATASIZE PUSH1 0x4 PUSH2 0x4811 JUMP JUMPDEST PUSH2 0x233C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x4870 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x682 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x28A PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x6C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x48D3 JUMP JUMPDEST PUSH2 0x2421 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x6E0 CALLDATASIZE PUSH1 0x4 PUSH2 0x493A JUMP JUMPDEST PUSH2 0x2439 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x28A PUSH2 0x6FF CALLDATASIZE PUSH1 0x4 PUSH2 0x4436 JUMP JUMPDEST PUSH2 0x245A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x70F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x71E CALLDATASIZE PUSH1 0x4 PUSH2 0x4965 JUMP JUMPDEST PUSH2 0x24BF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x72E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x73D CALLDATASIZE PUSH1 0x4 PUSH2 0x49D6 JUMP JUMPDEST PUSH2 0x257D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x74D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x2D7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x77F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x261 PUSH2 0x78E CALLDATASIZE PUSH1 0x4 PUSH2 0x4A26 JUMP JUMPDEST PUSH2 0x26B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x79E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x7AD CALLDATASIZE PUSH1 0x4 PUSH2 0x45E5 JUMP JUMPDEST PUSH2 0x2700 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x7CC CALLDATASIZE PUSH1 0x4 PUSH2 0x4A52 JUMP JUMPDEST PUSH2 0x270C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x7EB CALLDATASIZE PUSH1 0x4 PUSH2 0x4A86 JUMP JUMPDEST PUSH2 0x271F JUMP JUMPDEST PUSH0 PUSH2 0x7FA DUP3 PUSH2 0x27A4 JUMP JUMPDEST DUP1 PUSH2 0x815 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xC4769787 PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51E5 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x60 SWAP2 SWAP1 DUP2 SWAP1 PUSH2 0x83A SWAP1 PUSH2 0x4AA1 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x866 SWAP1 PUSH2 0x4AA1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x8B1 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x888 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x8B1 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x894 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x8C5 PUSH2 0x27F3 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x8EB JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x906 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x914 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x932 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x95C JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST DUP8 MLOAD PUSH0 SUB PUSH2 0x97C JUMPI PUSH1 0x40 MLOAD PUSH3 0xBEEFB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP7 MLOAD PUSH0 SUB PUSH2 0x99D JUMPI PUSH1 0x40 MLOAD PUSH4 0x43B47BCB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9A7 DUP9 DUP9 PUSH2 0x281B JUMP JUMPDEST PUSH2 0x9AF PUSH2 0x282D JUMP JUMPDEST PUSH2 0x9B8 DUP7 PUSH2 0x2835 JUMP JUMPDEST DUP4 ISZERO PUSH2 0x9FE JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA12 DUP3 PUSH2 0x283D JUMP JUMPDEST POP PUSH2 0x815 DUP3 PUSH2 0x2874 JUMP JUMPDEST PUSH2 0xA27 DUP3 DUP3 CALLER PUSH2 0x28AD JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA34 PUSH2 0x28BA JUMP JUMPDEST CALLER PUSH2 0xA40 DUP2 PUSH1 0x2 PUSH2 0x28EA JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xA7D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xAA1 SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP PUSH2 0xAAE DUP2 PUSH1 0x3 PUSH2 0x28EA JUMP JUMPDEST PUSH2 0xAB8 DUP3 DUP6 PUSH2 0x2925 JUMP JUMPDEST DUP1 DUP9 MSTORE PUSH5 0xFFFFFFFFFF TIMESTAMP AND PUSH2 0x140 DUP10 ADD MSTORE PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP8 MLOAD SWAP1 ISZERO PUSH2 0xB04 JUMPI PUSH1 0x40 MLOAD PUSH4 0x15E46FBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH2 0xB0E DUP8 PUSH2 0x2951 JUMP JUMPDEST DUP8 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE DUP10 MLOAD DUP4 MLOAD SWAP2 DUP3 ADD SWAP1 SWAP4 MSTORE SWAP1 DUP2 MSTORE PUSH2 0xB3C SWAP2 DUP8 SWAP2 PUSH2 0x29A3 JUMP JUMPDEST PUSH2 0xB4C DUP3 PUSH1 0x1 DUP10 PUSH1 0x20 ADD MLOAD PUSH2 0x29BA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xF79AC183 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0xF79AC183 SWAP1 PUSH2 0xB78 SWAP1 DUP11 SWAP1 PUSH1 0x4 ADD PUSH2 0x4B85 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB8F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xBA1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP PUSH1 0xA0 DUP9 ADD MLOAD PUSH2 0xBE2 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 DUP9 SWAP1 DUP5 SWAP1 PUSH2 0x2AB1 JUMP JUMPDEST PUSH0 PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x5E445859 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC1F JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC43 SWAP2 SWAP1 PUSH2 0x4B94 JUMP JUMPDEST PUSH2 0x120 DUP12 ADD MLOAD SWAP2 SWAP4 POP SWAP2 POP ISZERO PUSH2 0xC91 JUMPI PUSH2 0x120 DUP10 ADD MLOAD PUSH2 0xC91 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 DUP11 SWAP1 DUP5 SWAP1 PUSH2 0x2AB1 JUMP JUMPDEST PUSH2 0x100 DUP10 ADD MLOAD ISZERO PUSH2 0xCDA JUMPI PUSH2 0x100 DUP10 ADD MLOAD PUSH2 0xCDA SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 DUP11 SWAP1 DUP6 SWAP1 PUSH2 0x2AB1 JUMP JUMPDEST PUSH0 SLOAD PUSH1 0xC0 DUP11 ADD MLOAD PUSH2 0xD1D SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND SWAP3 DUP13 SWAP3 SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH2 0x2AB1 JUMP JUMPDEST PUSH0 DUP10 PUSH1 0xE0 ADD MLOAD GT DUP1 ISZERO PUSH2 0xDA1 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x521EB273 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD67 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD8B SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0xE41 JUMPI PUSH2 0xE41 DUP9 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x521EB273 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xDE6 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xE0A SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST PUSH1 0xE0 DUP13 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP3 SWAP2 SWAP1 PUSH2 0x2AB1 JUMP JUMPDEST DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x988AC1A1C4820F963124B6FA0394627AD4FA3DE7583A76399B998C1D7E43AF3F DUP11 PUSH1 0x40 MLOAD PUSH2 0xE7A SWAP2 SWAP1 PUSH2 0x4B85 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP SWAP6 MLOAD SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xEB9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 PUSH2 0xEC5 DUP4 DUP4 CALLER PUSH2 0x2AE7 JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF13 JUMPI PUSH1 0x40 MLOAD PUSH4 0x64283D7B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xAFB JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0xF21 PUSH2 0x2B03 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0xF3D DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0x2421 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xF4A PUSH2 0x2B62 JUMP JUMPDEST PUSH2 0xF53 DUP3 PUSH2 0x2C06 JUMP JUMPDEST PUSH2 0xA27 DUP3 DUP3 PUSH2 0x2CBB JUMP JUMPDEST PUSH0 PUSH2 0xF66 PUSH2 0x2D77 JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5205 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH32 0xC41B7CB64E5BE01AF4AFC2641AFC861432136270F4206B7773F229B658B96699 PUSH1 0x3 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0xFAC SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4BE9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x3 PUSH2 0xF3D DUP3 DUP5 DUP4 PUSH2 0x4CC9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP2 SLOAD PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xFEF JUMPI PUSH2 0xFEF PUSH2 0x4600 JUMP JUMPDEST SUB PUSH2 0x100D JUMPI PUSH1 0x40 MLOAD PUSH4 0x7D918563 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1020 JUMPI PUSH2 0x1020 PUSH2 0x4600 JUMP JUMPDEST SUB PUSH2 0x103E JUMPI PUSH1 0x40 MLOAD PUSH4 0x32B409A1 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD DUP3 SWAP1 DUP3 SWAP1 PUSH1 0xFF NOT AND PUSH1 0x1 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x105C JUMPI PUSH2 0x105C PUSH2 0x4600 JUMP JUMPDEST MUL OR SWAP1 SSTORE POP DUP1 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP2 PUSH32 0xFE4C6998A06520B63340A48710B374432CB395DA90E4E5360E1EC7AEEFEBECEF SWAP2 PUSH2 0x10A7 SWAP2 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND SWAP1 DUP7 SWAP1 PUSH2 0x4D82 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x815 DUP3 PUSH2 0x283D JUMP JUMPDEST PUSH0 PUSH2 0x10C7 PUSH2 0x28BA JUMP JUMPDEST PUSH2 0x10DE PUSH2 0x10D9 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x4DA8 JUMP JUMPDEST PUSH2 0x2DC0 JUMP JUMPDEST CALLER DUP6 CALLDATALOAD PUSH1 0x60 SHR DUP2 EQ PUSH2 0x1103 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4ACE04F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x110E DUP2 PUSH1 0x2 PUSH2 0x28EA JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x114B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x116F SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP PUSH2 0x117C DUP2 PUSH1 0x3 PUSH2 0x28EA JUMP JUMPDEST PUSH5 0xFFFFFFFFFF TIMESTAMP AND PUSH2 0x1196 PUSH2 0x180 DUP10 ADD PUSH2 0x160 DUP11 ADD PUSH2 0x4DC3 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND GT DUP1 ISZERO PUSH2 0x11BD JUMPI POP TIMESTAMP PUSH5 0xFFFFFFFFFF AND DUP7 PUSH2 0x160 ADD MLOAD PUSH5 0xFFFFFFFFFF AND LT ISZERO JUMPDEST DUP8 CALLDATALOAD SWAP1 PUSH2 0x11E0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x422552F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP DUP6 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND DUP8 PUSH2 0x140 ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1202 SWAP2 SWAP1 PUSH2 0x4DC3 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND EQ DUP1 ISZERO PUSH2 0x121E JUMPI POP DUP6 PUSH1 0xA0 ADD MLOAD DUP8 PUSH1 0xA0 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1232 JUMPI POP DUP6 PUSH1 0xC0 ADD MLOAD DUP8 PUSH1 0xC0 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1248 JUMPI POP DUP6 PUSH2 0x100 ADD MLOAD DUP8 PUSH2 0x100 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x125E JUMPI POP DUP6 PUSH2 0x120 ADD MLOAD DUP8 PUSH2 0x120 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1272 JUMPI POP DUP6 PUSH1 0xE0 ADD MLOAD DUP8 PUSH1 0xE0 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP8 DUP8 SWAP1 SWAP2 PUSH2 0x1295 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1FF5485 PUSH1 0xE6 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP3 SWAP2 SWAP1 PUSH2 0x4E76 JUMP JUMPDEST POP POP PUSH2 0x12A1 DUP3 DUP6 PUSH2 0x2925 JUMP JUMPDEST DUP1 DUP8 MSTORE PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP7 MLOAD SWAP1 ISZERO PUSH2 0x12D6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x15E46FBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP PUSH2 0x12E0 DUP7 PUSH2 0x2951 JUMP JUMPDEST DUP7 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE PUSH2 0x12FD DUP9 CALLDATALOAD PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x131B DUP2 DUP9 PUSH0 ADD MLOAD PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0x29A3 JUMP JUMPDEST DUP8 PUSH1 0x20 ADD CALLDATALOAD DUP8 PUSH1 0x20 ADD MLOAD GT ISZERO PUSH2 0x134F JUMPI PUSH2 0x134A DUP4 PUSH1 0x1 DUP11 PUSH1 0x20 ADD CALLDATALOAD DUP11 PUSH1 0x20 ADD MLOAD PUSH2 0x1345 SWAP2 SWAP1 PUSH2 0x4EA7 JUMP JUMPDEST PUSH2 0x29BA JUMP JUMPDEST PUSH2 0x1368 JUMP JUMPDEST PUSH2 0x1368 DUP4 PUSH0 DUP10 PUSH1 0x20 ADD MLOAD DUP12 PUSH1 0x20 ADD CALLDATALOAD PUSH2 0x1345 SWAP2 SWAP1 PUSH2 0x4EA7 JUMP JUMPDEST DUP8 CALLDATALOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE MLOAD PUSH4 0x6AE360B3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xD5C6C166 SWAP1 PUSH2 0x13A8 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x4E76 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x13BF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x13D1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH2 0x13E9 DUP7 DUP4 DUP10 PUSH1 0xA0 ADD MLOAD DUP12 PUSH1 0xA0 ADD CALLDATALOAD PUSH2 0x2E09 JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x5E445859 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1426 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x144A SWAP2 SWAP1 PUSH2 0x4B94 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1464 DUP9 DUP3 DUP12 PUSH2 0x120 ADD MLOAD DUP14 PUSH2 0x120 ADD CALLDATALOAD PUSH2 0x2E09 JUMP JUMPDEST PUSH2 0x147A DUP9 DUP4 DUP12 PUSH2 0x100 ADD MLOAD DUP14 PUSH2 0x100 ADD CALLDATALOAD PUSH2 0x2E09 JUMP JUMPDEST PUSH0 SLOAD PUSH1 0xC0 DUP1 DUP12 ADD MLOAD PUSH2 0x149D SWAP3 DUP12 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP2 SWAP1 DUP15 ADD CALLDATALOAD PUSH2 0x2E09 JUMP JUMPDEST PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x521EB273 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x14DA JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x14FE SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x152D JUMPI PUSH2 0x152D DUP10 DUP3 DUP13 PUSH1 0xE0 ADD MLOAD DUP15 PUSH1 0xE0 ADD CALLDATALOAD PUSH2 0x2E09 JUMP JUMPDEST DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x988AC1A1C4820F963124B6FA0394627AD4FA3DE7583A76399B998C1D7E43AF3F DUP12 PUSH1 0x40 MLOAD PUSH2 0x1566 SWAP2 SWAP1 PUSH2 0x4B85 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP10 MLOAD PUSH1 0x40 MLOAD DUP13 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND SWAP1 PUSH32 0x4FF4AC703CB703B7EA535D47E65E64B4CABF11B3E2EB41F152DAB17971953ADD SWAP1 PUSH0 SWAP1 LOG4 DUP10 MLOAD PUSH2 0x15B4 SWAP1 DUP13 CALLDATALOAD SWAP1 PUSH2 0x2E58 JUMP JUMPDEST POP POP SWAP7 MLOAD SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP2 SLOAD PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x15F2 JUMPI PUSH2 0x15F2 PUSH2 0x4600 JUMP JUMPDEST EQ PUSH2 0x1610 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF9A96F3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1656 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x167A SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x16A1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFDEE243 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x16B4 JUMPI PUSH2 0x16B4 PUSH2 0x4600 JUMP JUMPDEST EQ DUP1 PUSH2 0x174B JUMPI POP PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x16CF JUMPI PUSH2 0x16CF PUSH2 0x4600 JUMP JUMPDEST EQ DUP1 ISZERO PUSH2 0x174B JUMPI POP PUSH1 0x40 MLOAD PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x1FFC9A7 SWAP1 PUSH2 0x170A SWAP1 PUSH4 0x6D5136B1 PUSH1 0xE1 SHL SWAP1 PUSH1 0x4 ADD PUSH2 0x4EBA JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1725 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1749 SWAP2 SWAP1 PUSH2 0x4ECF JUMP JUMPDEST ISZERO JUMPDEST DUP1 PUSH2 0x17E1 JUMPI POP PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1765 JUMPI PUSH2 0x1765 PUSH2 0x4600 JUMP JUMPDEST EQ DUP1 ISZERO PUSH2 0x17E1 JUMPI POP PUSH1 0x40 MLOAD PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x1FFC9A7 SWAP1 PUSH2 0x17A0 SWAP1 PUSH4 0xF7E4B01B PUSH1 0xE0 SHL SWAP1 PUSH1 0x4 ADD PUSH2 0x4EBA JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x17BB JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x17DF SWAP2 SWAP1 PUSH2 0x4ECF JUMP JUMPDEST ISZERO JUMPDEST DUP1 PUSH2 0x1877 JUMPI POP PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x17FB JUMPI PUSH2 0x17FB PUSH2 0x4600 JUMP JUMPDEST EQ DUP1 ISZERO PUSH2 0x1877 JUMPI POP PUSH1 0x40 MLOAD PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x1FFC9A7 SWAP1 PUSH2 0x1836 SWAP1 PUSH4 0x21B7E09B PUSH1 0xE0 SHL SWAP1 PUSH1 0x4 ADD PUSH2 0x4EBA JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1851 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1875 SWAP2 SWAP1 PUSH2 0x4ECF JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x1899 JUMPI DUP3 DUP3 PUSH1 0x40 MLOAD PUSH4 0x502C9A5F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP3 SWAP2 SWAP1 PUSH2 0x4EEA JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0xFF NOT DUP3 AND DUP2 OR DUP4 SSTORE DUP4 SWAP2 DUP4 SWAP2 PUSH2 0xFFFF NOT SWAP1 SWAP2 AND OR PUSH2 0x100 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x18C7 JUMPI PUSH2 0x18C7 PUSH2 0x4600 JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x18E0 JUMPI PUSH2 0x18E0 PUSH2 0x4600 JUMP JUMPDEST SUB PUSH2 0x1A7D JUMPI PUSH0 DUP4 SWAP1 POP PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x536EBBFC PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1926 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x194A SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x19B2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x38EA38A7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0xE3A8E29C SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x199B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x19AD JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x7B83037B PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x19EE JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1A12 SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x1A7A JUMPI PUSH1 0x40 MLOAD PUSH4 0x38EA38A7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0xE3A8E29C SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1A63 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1A75 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFE4C6998A06520B63340A48710B374432CB395DA90E4E5360E1EC7AEEFEBECEF DUP4 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0x10A7 SWAP3 SWAP2 SWAP1 PUSH2 0x4D82 JUMP JUMPDEST PUSH2 0x1AC1 PUSH2 0x28BA JUMP JUMPDEST PUSH2 0x1AD3 PUSH2 0x10D9 CALLDATASIZE DUP7 SWAP1 SUB DUP7 ADD DUP7 PUSH2 0x4DA8 JUMP JUMPDEST CALLER DUP5 CALLDATALOAD PUSH1 0x60 SHR DUP2 EQ PUSH2 0x1AF8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4ACE04F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1B03 DUP2 PUSH1 0x2 PUSH2 0x2F3F JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1B40 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1B64 SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP PUSH2 0x1B71 DUP2 PUSH1 0x3 PUSH2 0x2F3F JUMP JUMPDEST PUSH5 0xFFFFFFFFFF TIMESTAMP AND PUSH2 0x1B8B PUSH2 0x180 DUP9 ADD PUSH2 0x160 DUP10 ADD PUSH2 0x4DC3 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND GT DUP7 PUSH0 ADD CALLDATALOAD SWAP1 PUSH2 0x1BB8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x422552F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP DUP6 PUSH1 0xA0 ADD CALLDATALOAD DUP6 GT ISZERO DUP1 ISZERO PUSH2 0x1BD2 JUMPI POP DUP6 PUSH2 0x100 ADD CALLDATALOAD DUP5 GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1BE3 JUMPI POP DUP6 PUSH2 0x120 ADD CALLDATALOAD DUP4 GT ISZERO JUMPDEST DUP7 DUP7 DUP7 DUP7 SWAP1 SWAP2 SWAP3 SWAP4 PUSH2 0x1C0C JUMPI PUSH1 0x40 MLOAD PUSH4 0xA02DB783 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4F03 JUMP JUMPDEST POP POP POP POP PUSH0 PUSH2 0x1C1D DUP8 PUSH0 ADD CALLDATALOAD PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x1C2E DUP4 PUSH0 DUP10 PUSH1 0x20 ADD CALLDATALOAD PUSH2 0x29BA JUMP JUMPDEST DUP7 CALLDATALOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE MLOAD PUSH4 0x770FCD35 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xEE1F9A6A SWAP1 PUSH2 0x1C74 SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x4F30 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1C8B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1C9D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD DUP10 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP10 SWAP1 MSTORE SWAP1 DUP2 ADD DUP8 SWAP1 MSTORE DUP10 CALLDATALOAD SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP2 POP PUSH32 0x825C3EE6EECAA4B0DC3573E9732B65613D705CADFC4BA69CC76CB7D9227E5971 SWAP1 PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x1CFD DUP8 CALLDATALOAD DUP8 DUP8 DUP8 PUSH2 0x2F9E JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x2 DUP2 SLOAD PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1D35 JUMPI PUSH2 0x1D35 PUSH2 0x4600 JUMP JUMPDEST EQ PUSH2 0x1D53 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5C92B239 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1D70 JUMPI PUSH2 0x1D70 PUSH2 0x4600 JUMP JUMPDEST SUB PUSH2 0x1E6B JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x18160DDD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1DB1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1DD5 SWAP2 SWAP1 PUSH2 0x4F6F JUMP JUMPDEST ISZERO PUSH2 0x1E66 JUMPI DUP1 PUSH0 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x18160DDD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1E27 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1E4B SWAP2 SWAP1 PUSH2 0x4F6F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1D0EC0AB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP3 SWAP2 SWAP1 PUSH2 0x4F86 JUMP JUMPDEST PUSH2 0x2144 JUMP JUMPDEST PUSH1 0x2 DUP2 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1E88 JUMPI PUSH2 0x1E88 PUSH2 0x4600 JUMP JUMPDEST SUB PUSH2 0x1EFA JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND ISZERO PUSH2 0x1E66 JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD SWAP2 MLOAD PUSH4 0x1D0EC0AB PUSH1 0xE0 SHL DUP2 MSTORE PUSH2 0xAFB SWAP4 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 ADD PUSH2 0x4F9D JUMP JUMPDEST PUSH0 DUP3 SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x26CCBD22 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1F3A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1F5E SWAP2 SWAP1 PUSH2 0x4F6F JUMP JUMPDEST ISZERO PUSH2 0x1FB0 JUMPI DUP2 PUSH0 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x26CCBD22 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1E27 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x536EBBFC PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1FED JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2011 SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x2079 JUMPI PUSH1 0x40 MLOAD PUSH4 0x76C7FC55 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0x76C7FC55 SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2062 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2074 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x7B83037B PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x20B5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x20D9 SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x2141 JUMPI PUSH1 0x40 MLOAD PUSH4 0x76C7FC55 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0x76C7FC55 SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x212A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x213C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST POP POP JUMPDEST DUP1 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP2 PUSH32 0xFE4C6998A06520B63340A48710B374432CB395DA90E4E5360E1EC7AEEFEBECEF SWAP2 PUSH2 0x218A SWAP2 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND SWAP1 PUSH0 SWAP1 PUSH2 0x4D82 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0xFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51E5 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x21EC JUMPI PUSH1 0x40 MLOAD PUSH4 0x22718AD9 PUSH1 0xE2 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 SWAP1 SWAP3 ADD PUSH1 0x20 MSTORE POP PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xF21 PUSH2 0x309C JUMP JUMPDEST PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079301 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51E5 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x83A SWAP1 PUSH2 0x4AA1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x2273 DUP4 PUSH2 0x30E4 JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND SWAP1 DUP3 SWAP1 DUP2 AND DUP3 GT ISZERO PUSH2 0x22BB JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE06D13 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST POP POP DUP2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 SWAP3 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND DUP4 MSTORE DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP2 PUSH32 0x7E1092696182A6D6922C9583DB468951527F21F67F9F2F4911ED3F7BBF02B330 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP2 DUP3 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP2 AND OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0xA27 CALLER DUP4 DUP4 PUSH2 0x311B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 SWAP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2365 JUMPI PUSH2 0x2365 PUSH2 0x42E0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2398 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x2383 JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2419 JUMPI PUSH2 0x23F4 ADDRESS DUP7 DUP7 DUP5 DUP2 DUP2 LT PUSH2 0x23BB JUMPI PUSH2 0x23BB PUSH2 0x4FC2 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x23CD SWAP2 SWAP1 PUSH2 0x4FD6 JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x23E0 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x5036 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x31CA JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2406 JUMPI PUSH2 0x2406 PUSH2 0x4FC2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0x239D JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x242C DUP5 DUP5 DUP5 PUSH2 0xE90 JUMP JUMPDEST PUSH2 0xF13 CALLER DUP6 DUP6 DUP6 DUP6 PUSH2 0x326A JUMP JUMPDEST PUSH2 0x2441 PUSH2 0x28BA JUMP JUMPDEST PUSH2 0xA27 PUSH2 0x2453 CALLDATASIZE DUP5 SWAP1 SUB DUP5 ADD DUP5 PUSH2 0x4DA8 JUMP JUMPDEST DUP3 PUSH0 PUSH2 0x3389 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2465 DUP3 PUSH2 0x283D JUMP JUMPDEST POP PUSH0 PUSH2 0x246F PUSH2 0x360E JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 MLOAD GT PUSH2 0x248D JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0x24B8 JUMP JUMPDEST DUP1 PUSH2 0x2497 DUP5 PUSH2 0x369E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x24A8 SWAP3 SWAP2 SWAP1 PUSH2 0x504B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x24C7 PUSH2 0x28BA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xD505ACCF CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP10 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0xFF DUP7 AND PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xC4 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0xE4 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2560 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2571 JUMPI POP PUSH1 0x1 JUMPDEST POP PUSH2 0x1CFD DUP8 DUP8 DUP8 PUSH2 0x372D JUMP JUMPDEST PUSH0 PUSH2 0x2586 PUSH2 0x28BA JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x25BA JUMPI PUSH1 0x40 MLOAD PUSH4 0x9CFEA583 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST POP PUSH2 0x25C6 DUP6 PUSH1 0x1 PUSH2 0x2F3F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH4 0x23E103A8 DUP6 CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP1 DUP7 AND PUSH1 0x44 DUP4 ADD MSTORE DUP7 AND PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2631 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2655 SWAP2 SWAP1 PUSH2 0x4F6F JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND CALLER PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP7 SWAP1 MSTORE SWAP3 DUP4 AND SWAP3 DUP10 AND SWAP2 PUSH32 0xE826ECB5C03D4897F8AB426EE94064E06179DFF39CD9FDD0776904CD935C95D8 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079305 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x2709 DUP2 PUSH2 0x3878 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x2714 PUSH2 0x28BA JUMP JUMPDEST PUSH2 0xF3D DUP4 DUP4 DUP4 PUSH2 0x372D JUMP JUMPDEST PUSH2 0x2727 PUSH2 0x28BA JUMP JUMPDEST TIMESTAMP PUSH2 0x273A PUSH2 0x180 DUP4 ADD PUSH2 0x160 DUP5 ADD PUSH2 0x4DC3 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND GT ISZERO PUSH2 0x278A JUMPI DUP1 CALLDATALOAD PUSH2 0x275B PUSH2 0x180 DUP4 ADD PUSH2 0x160 DUP5 ADD PUSH2 0x4DC3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x312BFDD7 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH5 0xFFFFFFFFFF AND PUSH1 0x24 DUP3 ADD MSTORE TIMESTAMP PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH2 0x2709 PUSH2 0x279C CALLDATASIZE DUP4 SWAP1 SUB DUP4 ADD DUP4 PUSH2 0x4DA8 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH2 0x3389 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x27D4 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x815 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0x815 JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x815 JUMP JUMPDEST PUSH2 0x2823 PUSH2 0x3906 JUMP JUMPDEST PUSH2 0xA27 DUP3 DUP3 PUSH2 0x392B JUMP JUMPDEST PUSH2 0xF21 PUSH2 0x3906 JUMP JUMPDEST PUSH2 0x2700 PUSH2 0x3906 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2848 DUP4 PUSH2 0x395B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x815 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7E273289 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079304 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0xF3D DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x3994 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5225 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0xFF AND ISZERO PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0xD93C0665 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH2 0x28F6 DUP4 DUP4 PUSH2 0x3AA7 JUMP JUMPDEST PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2907 JUMPI PUSH2 0x2907 PUSH2 0x4600 JUMP JUMPDEST EQ PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH4 0x422F25F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x24B8 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP4 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT PUSH1 0x60 DUP7 SWAP1 SHL AND PUSH2 0x505F JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2963 SWAP2 SWAP1 PUSH2 0x4B85 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP1 POP DUP2 DUP2 PUSH2 0x299D JUMPI PUSH1 0x40 MLOAD PUSH4 0x6EE9F647 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 SWAP1 PUSH2 0x4B85 JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x29AD DUP4 DUP4 PUSH2 0x3B18 JUMP JUMPDEST PUSH2 0xF3D CALLER PUSH0 DUP6 DUP6 DUP6 PUSH2 0x326A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP3 ISZERO PUSH2 0x2A64 JUMPI PUSH2 0x29E0 DUP3 PUSH2 0x30E4 JUMP JUMPDEST DUP2 SLOAD DUP3 SWAP1 PUSH0 SWAP1 PUSH2 0x29FA SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x5072 JUMP JUMPDEST DUP3 SLOAD PUSH2 0x100 SWAP3 SWAP1 SWAP3 EXP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 DUP2 MUL NOT SWAP1 SWAP4 AND SWAP2 DUP4 AND MUL OR SWAP1 SWAP2 SSTORE DUP3 SLOAD DUP1 DUP3 AND SWAP3 POP PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND DUP1 DUP3 GT ISZERO PUSH2 0x2A5D JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE06D13 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST POP POP PUSH2 0xF13 JUMP JUMPDEST PUSH2 0x2A6D DUP3 PUSH2 0x30E4 JUMP JUMPDEST DUP2 SLOAD DUP3 SWAP1 PUSH0 SWAP1 PUSH2 0x2A87 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x5091 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND MUL OR SWAP1 SSTORE POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2ABF DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x3B79 JUMP JUMPDEST PUSH2 0xF13 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 PUSH2 0x2AF0 PUSH2 0x28BA JUMP JUMPDEST PUSH2 0x2AFB DUP5 DUP5 DUP5 PUSH2 0x3BE6 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x2B0B PUSH2 0x3CE8 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5225 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0xFF NOT AND DUP2 SSTORE PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA CALLER JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x2BE8 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2BDC PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5205 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2C70 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2C94 SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH4 0x24A41B43 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2D15 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x2D12 SWAP2 DUP2 ADD SWAP1 PUSH2 0x4F6F JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2D3D JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5205 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x2D6D JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH2 0xF3D DUP4 DUP4 PUSH2 0x3D17 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD ISZERO DUP1 ISZERO SWAP1 PUSH2 0x2DE6 JUMPI POP DUP1 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x2DE4 DUP3 PUSH2 0x2951 JUMP JUMPDEST EQ JUMPDEST DUP2 MLOAD SWAP1 PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH4 0x21DF5FA5 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x2E14 DUP3 DUP5 PUSH2 0x4EA7 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x2E51 JUMPI PUSH2 0x2E51 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP7 DUP7 DUP5 PUSH2 0x2AB1 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2E62 DUP4 PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x2E75 DUP2 PUSH4 0x162FC85 PUSH1 0xE1 SHL PUSH2 0x3D6C JUMP JUMPDEST PUSH2 0x2E7E JUMPI POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH4 0x5EE0C7DD CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2EE6 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2F0A SWAP2 SWAP1 PUSH2 0x50B0 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL EQ PUSH2 0xF13 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH4 0x81784A51 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 SWAP1 PUSH2 0x4EBA JUMP JUMPDEST PUSH0 PUSH2 0x2F4A DUP4 DUP4 PUSH2 0x3AA7 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2F60 JUMPI PUSH2 0x2F60 PUSH2 0x4600 JUMP JUMPDEST EQ ISZERO DUP1 ISZERO PUSH2 0x2F80 JUMPI POP PUSH1 0x2 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2F7D JUMPI PUSH2 0x2F7D PUSH2 0x4600 JUMP JUMPDEST EQ ISZERO JUMPDEST ISZERO PUSH2 0xF3D JUMPI PUSH1 0x40 MLOAD PUSH4 0xD08EF1FF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x2FA8 DUP6 PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x2FBB DUP2 PUSH4 0x162FC85 PUSH1 0xE1 SHL PUSH2 0x3D6C JUMP JUMPDEST PUSH2 0x2FC5 JUMPI POP PUSH2 0xF13 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH4 0x62EB345E CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP10 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP9 SWAP1 MSTORE PUSH1 0x84 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0xA4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xC4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x303B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x305F SWAP2 SWAP1 PUSH2 0x50B0 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x31759A2F PUSH1 0xE1 SHL EQ PUSH2 0x3094 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH4 0x81784A51 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 SWAP1 PUSH2 0x4EBA JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x30A4 PUSH2 0x28BA JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5225 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR DUP2 SSTORE PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 CALLER PUSH2 0x2B44 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 GT ISZERO PUSH2 0x3117 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x80 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51E5 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x315B JUMPI PUSH1 0x40 MLOAD PUSH4 0xB611743 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x5 DUP5 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP9 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP8 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD SWAP2 DUP3 MSTORE PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x31D7 DUP5 DUP5 PUSH2 0x3D87 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x31F8 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x31F8 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x320D JUMPI PUSH2 0x3205 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP POP PUSH2 0x815 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3237 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x324A JUMPI PUSH2 0x3245 PUSH2 0x3DB3 JUMP JUMPDEST PUSH2 0x3263 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND EXTCODESIZE ISZERO PUSH2 0x2E51 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x32AC SWAP1 DUP9 SWAP1 DUP9 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x50CB JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x32E6 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x32E3 SWAP2 DUP2 ADD SWAP1 PUSH2 0x50B0 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x334D JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x3313 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x3318 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH0 SUB PUSH2 0x3345 JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP3 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ PUSH2 0x3094 JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH2 0x3392 DUP4 PUSH2 0x2DC0 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x60 SHR DUP2 ISZERO DUP1 ISZERO PUSH2 0x33AE JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ ISZERO JUMPDEST ISZERO PUSH2 0x33CC JUMPI PUSH1 0x40 MLOAD PUSH4 0x4ACE04F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 ISZERO DUP1 PUSH2 0x33E4 JUMPI POP TIMESTAMP DUP5 PUSH2 0x160 ADD MLOAD PUSH5 0xFFFFFFFFFF AND GT JUMPDEST DUP5 MLOAD SWAP1 PUSH2 0x3407 JUMPI PUSH1 0x40 MLOAD PUSH4 0x422552F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP PUSH2 0x3413 DUP2 PUSH1 0x2 PUSH2 0x2F3F JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD DUP4 SWAP1 DUP1 DUP3 GT ISZERO PUSH2 0x3444 JUMPI PUSH1 0x40 MLOAD PUSH4 0x17D3B4F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST POP POP PUSH0 PUSH0 DUP5 GT SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3489 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x34AD SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP PUSH2 0x34BA DUP2 PUSH1 0x3 PUSH2 0x2F3F JUMP JUMPDEST DUP6 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE DUP2 ISZERO PUSH2 0x3543 JUMPI PUSH0 PUSH2 0x34DD DUP8 PUSH0 ADD MLOAD PUSH2 0x10B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1DDA2899 PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x1DDA2899 SWAP1 PUSH2 0x3510 SWAP1 DUP5 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x50FD JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x3527 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3539 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP PUSH2 0x359D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x76185FF1 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0x76185FF1 SWAP1 PUSH2 0x356F SWAP1 DUP10 SWAP1 PUSH1 0x4 ADD PUSH2 0x4B85 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x3586 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3598 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH2 0x35AC DUP4 PUSH0 DUP9 PUSH1 0x20 ADD MLOAD PUSH2 0x29BA JUMP JUMPDEST DUP6 MLOAD PUSH1 0x40 MLOAD DUP7 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0x54F4A270EA08F88DC23B2520D6B063FECB24D956C4496F447926D736338F545E SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP5 ISZERO PUSH2 0x3603 JUMPI DUP6 MLOAD PUSH2 0x35FE SWAP1 DUP7 PUSH2 0x3DBE JUMP JUMPDEST PUSH2 0x3094 JUMP JUMPDEST DUP6 MLOAD PUSH2 0x3094 SWAP1 PUSH2 0x3EA5 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x361D SWAP1 PUSH2 0x4AA1 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x3649 SWAP1 PUSH2 0x4AA1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3694 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x366B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3694 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3677 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x36AA DUP4 PUSH2 0x3F93 JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x36C8 JUMPI PUSH2 0x36C8 PUSH2 0x42E0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x36F2 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH2 0x36FC JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x3761 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9CFEA583 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST POP PUSH2 0x376D DUP4 PUSH1 0x1 PUSH2 0x28EA JUMP JUMPDEST PUSH2 0x37A2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP6 DUP6 PUSH2 0x2AB1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH4 0x2E2D2984 DUP4 CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP5 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x3800 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3812 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x3827 CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x7CFFF908A4B583F36430B25D75964C458D8EDE8A99BD61BE750E97EE1B2F3A96 DUP6 PUSH1 0x40 MLOAD PUSH2 0x386B SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x389F JUMPI PUSH1 0x40 MLOAD PUSH4 0x7A2EE8B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0x8C3AA5F43A388513435861BF27DFAD7829CD248696FED367C62D441F62954496 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x390E PUSH2 0x406A JUMP JUMPDEST PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3933 PUSH2 0x3906 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51E5 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 PUSH2 0x394C DUP5 DUP3 PUSH2 0x512A JUMP JUMPDEST POP PUSH1 0x1 DUP2 ADD PUSH2 0xF13 DUP4 DUP3 PUSH2 0x512A JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079302 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51E5 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 DUP1 PUSH2 0x39B6 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x3A77 JUMPI PUSH0 PUSH2 0x39C5 DUP6 PUSH2 0x283D JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x39F1 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x3A04 JUMPI POP PUSH2 0x3A02 DUP2 DUP6 PUSH2 0x26B4 JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x3A2D JUMPI PUSH1 0x40 MLOAD PUSH4 0xA9FBF51F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST DUP3 ISZERO PUSH2 0x3A75 JUMPI DUP5 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP JUMPDEST PUSH0 SWAP4 DUP5 MSTORE PUSH1 0x4 ADD PUSH1 0x20 MSTORE POP POP PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3AD0 JUMPI PUSH2 0x3AD0 PUSH2 0x4600 JUMP JUMPDEST DUP2 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3AEB JUMPI PUSH2 0x3AEB PUSH2 0x4600 JUMP JUMPDEST EQ PUSH2 0x3B0D JUMPI DUP4 DUP4 PUSH1 0x40 MLOAD PUSH4 0x502C9A5F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP3 SWAP2 SWAP1 PUSH2 0x4EEA JUMP JUMPDEST SLOAD PUSH1 0xFF AND SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3B41 JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 PUSH2 0x3B4D DUP4 DUP4 PUSH0 PUSH2 0x2AE7 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0xF3D JUMPI PUSH1 0x40 MLOAD PUSH4 0x39E35637 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x3BD5 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x3BC9 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51E5 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x3BFF DUP6 PUSH2 0x395B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x3C1B JUMPI PUSH2 0x3C1B DUP2 DUP6 DUP8 PUSH2 0x4083 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x3C57 JUMPI PUSH2 0x3C36 PUSH0 DUP7 PUSH0 PUSH0 PUSH2 0x3994 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH0 NOT ADD SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND ISZERO PUSH2 0x3C87 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0x2 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP9 SWAP4 SWAP2 DUP6 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5225 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0xFF AND PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0x8DFC202B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3D20 DUP3 PUSH2 0x40E7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x3D64 JUMPI PUSH2 0xF3D DUP3 DUP3 PUSH2 0x31CA JUMP JUMPDEST PUSH2 0xA27 PUSH2 0x414A JUMP JUMPDEST PUSH0 PUSH2 0x3D76 DUP4 PUSH2 0x4169 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x24B8 JUMPI POP PUSH2 0x24B8 DUP4 DUP4 PUSH2 0x41B4 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH2 0x3DC8 DUP4 PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x3DDB DUP2 PUSH4 0x162FC85 PUSH1 0xE1 SHL PUSH2 0x3D6C JUMP JUMPDEST PUSH2 0x3DE4 JUMPI POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH4 0xD6281D3E CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3E4C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x3E70 SWAP2 SWAP1 PUSH2 0x50B0 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x6B140E9F PUSH1 0xE1 SHL EQ PUSH2 0xF13 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH4 0x81784A51 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 SWAP1 PUSH2 0x4EBA JUMP JUMPDEST PUSH0 PUSH2 0x3EAF DUP3 PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x3EC2 DUP2 PUSH4 0x162FC85 PUSH1 0xE1 SHL PUSH2 0x3D6C JUMP JUMPDEST PUSH2 0x3ECA JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH4 0xE8E617B7 PUSH3 0x249F0 CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP8 CALL SWAP4 POP POP POP POP DUP1 ISZERO PUSH2 0x3F4D JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x3F4A SWAP2 DUP2 ADD SWAP1 PUSH2 0x50B0 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xF3D JUMPI PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP2 MSTORE DUP3 SWAP1 PUSH32 0x6CE8016F81523F240956BCA9A698E643D09E84E7D0E931470B1016BAF1027BD0 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 LT PUSH2 0x3FD1 JUMPI PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x3FFD JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x401B JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x4033 JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x4047 JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x4059 JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x815 JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x4073 PUSH2 0x27F3 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x408E DUP4 DUP4 DUP4 PUSH2 0x41D8 JUMP JUMPDEST PUSH2 0xF3D JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x40BC JUMPI PUSH1 0x40 MLOAD PUSH4 0x7E273289 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x177E802F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x411C JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5205 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x417B DUP3 PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH2 0x41B4 JUMP JUMPDEST ISZERO PUSH2 0x41A8 JUMPI PUSH0 DUP1 PUSH2 0x4194 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x423C JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 DUP1 ISZERO PUSH2 0x2AFB JUMPI POP ISZERO SWAP4 SWAP3 POP POP POP JUMP JUMPDEST POP PUSH0 SWAP2 SWAP1 POP JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x41C1 DUP6 DUP6 PUSH2 0x423C JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 DUP1 ISZERO PUSH2 0x41CF JUMPI POP DUP1 JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x2AFB JUMPI POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x4211 JUMPI POP PUSH2 0x4211 DUP5 DUP5 PUSH2 0x26B4 JUMP JUMPDEST DUP1 PUSH2 0x2AFB JUMPI POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x422A DUP4 PUSH2 0x2874 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x4 DUP4 SWAP1 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 PUSH1 0x24 DUP2 DUP9 PUSH2 0x7530 STATICCALL SWAP3 POP PUSH0 MLOAD ISZERO ISZERO PUSH1 0x1F RETURNDATASIZE GT AND SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x2709 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4295 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x24B8 DUP2 PUSH2 0x4270 JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP1 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP7 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x24B8 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x42A0 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x4317 JUMPI PUSH2 0x4317 PUSH2 0x42E0 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x432C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 DUP4 ADD PUSH0 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 GT ISZERO PUSH2 0x434B JUMPI PUSH2 0x434B PUSH2 0x42E0 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x4379 JUMPI PUSH2 0x4379 PUSH2 0x42E0 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP8 LT ISZERO PUSH2 0x4390 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE DUP1 SWAP5 POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2709 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x43D2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x43E7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x43F3 DUP7 DUP3 DUP8 ADD PUSH2 0x431D JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x440E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x441A DUP7 DUP3 DUP8 ADD PUSH2 0x431D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x442B DUP2 PUSH2 0x43AC JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4446 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x445E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4469 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x41AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x449C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x44A4 PUSH2 0x42F4 JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0x4513 PUSH2 0x140 DUP4 ADD PUSH2 0x4477 JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x4526 PUSH2 0x160 DUP4 ADD PUSH2 0x4477 JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x41AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4561 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x456B DUP7 DUP7 PUSH2 0x448B JUMP JUMPDEST SWAP4 POP PUSH2 0x180 DUP6 ADD CALLDATALOAD PUSH2 0x457C DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP3 POP PUSH2 0x1A0 DUP6 ADD CALLDATALOAD PUSH2 0x458D DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP2 POP PUSH2 0x459C PUSH2 0x1C0 DUP7 ADD PUSH2 0x4532 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x45B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x45C4 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x45D4 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x45F5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x24B8 DUP2 PUSH2 0x43AC JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x2709 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0x463D DUP4 PUSH2 0x4614 JUMP JUMPDEST SWAP2 SWAP1 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4654 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x465F DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4679 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4685 DUP6 DUP3 DUP7 ADD PUSH2 0x431D JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x46A0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x46B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x46C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x46DA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x46EB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x2709 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4718 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4723 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4733 DUP2 PUSH2 0x46FB JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x299D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x340 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4763 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x476D DUP7 DUP7 PUSH2 0x473E JUMP JUMPDEST SWAP4 POP PUSH2 0x477D DUP7 PUSH2 0x180 DUP8 ADD PUSH2 0x448B JUMP JUMPDEST SWAP3 POP PUSH2 0x300 DUP6 ADD CALLDATALOAD PUSH2 0x478E DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP2 POP PUSH2 0x459C PUSH2 0x320 DUP7 ADD PUSH2 0x4532 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x47B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x47BB DUP7 DUP7 PUSH2 0x473E JUMP JUMPDEST SWAP7 PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP7 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP6 PUSH2 0x1C0 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x2709 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x47F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4801 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4733 DUP2 PUSH2 0x47D8 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4822 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4837 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x4847 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x485C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP5 ADD ADD GT ISZERO PUSH2 0x46EB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD PUSH1 0x20 DUP4 MSTORE DUP1 DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP6 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP7 ADD ADD SWAP3 POP PUSH1 0x20 DUP7 ADD PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x48C7 JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x48B2 DUP6 DUP4 MLOAD PUSH2 0x42A0 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x4896 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x48E6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x48F1 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x4901 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4922 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x492E DUP8 DUP3 DUP9 ADD PUSH2 0x431D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1A0 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x494C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4956 DUP5 DUP5 PUSH2 0x473E JUMP JUMPDEST SWAP5 PUSH2 0x180 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x497B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x4986 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD PUSH2 0x499D DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x49B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x49E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x49F4 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x4A0B DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x4A1B DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4A37 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4A42 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4733 DUP2 PUSH2 0x43AC JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4A64 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4A6F DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x442B DUP2 PUSH2 0x43AC JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4A97 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x24B8 DUP4 DUP4 PUSH2 0x473E JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x4AB5 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x299D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4AE3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x24B8 DUP2 PUSH2 0x43AC JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0x4B6A PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP2 ADD MLOAD PUSH2 0xF3D PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST PUSH2 0x180 DUP2 ADD PUSH2 0x815 DUP3 DUP5 PUSH2 0x4AEE JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4BA5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x4BB0 DUP2 PUSH2 0x43AC JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x4733 DUP2 PUSH2 0x43AC JUMP JUMPDEST DUP2 DUP4 MSTORE DUP2 DUP2 PUSH1 0x20 DUP6 ADD CALLDATACOPY POP PUSH0 DUP3 DUP3 ADD PUSH1 0x20 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND SWAP1 SWAP2 ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH0 PUSH0 DUP6 SLOAD PUSH2 0x4BFA DUP2 PUSH2 0x4AA1 JUMP JUMPDEST DUP1 PUSH1 0x40 DUP7 ADD MSTORE PUSH1 0x1 DUP3 AND PUSH0 DUP2 EQ PUSH2 0x4C18 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x4C34 JUMPI PUSH2 0x4C65 JUMP JUMPDEST PUSH1 0xFF NOT DUP4 AND PUSH1 0x60 DUP8 ADD MSTORE PUSH1 0x60 DUP3 ISZERO ISZERO PUSH1 0x5 SHL DUP8 ADD ADD SWAP4 POP PUSH2 0x4C65 JUMP JUMPDEST DUP9 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x4C5C JUMPI DUP2 SLOAD DUP9 DUP3 ADD PUSH1 0x60 ADD MSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x20 ADD PUSH2 0x4C3D JUMP JUMPDEST DUP8 ADD PUSH1 0x60 ADD SWAP5 POP POP JUMPDEST POP POP POP DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x4C7B DUP2 DUP6 DUP8 PUSH2 0x4BC1 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0xF3D JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x4CAA JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2E51 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x4CB6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT ISZERO PUSH2 0x4CE0 JUMPI PUSH2 0x4CE0 PUSH2 0x42E0 JUMP JUMPDEST PUSH2 0x4CF4 DUP4 PUSH2 0x4CEE DUP4 SLOAD PUSH2 0x4AA1 JUMP JUMPDEST DUP4 PUSH2 0x4C85 JUMP JUMPDEST PUSH0 PUSH1 0x1F DUP5 GT PUSH1 0x1 DUP2 EQ PUSH2 0x4D25 JUMPI PUSH0 DUP6 ISZERO PUSH2 0x4D0E JUMPI POP DUP4 DUP3 ADD CALLDATALOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP7 SWAP1 SHL OR DUP4 SSTORE PUSH2 0x2E51 JUMP JUMPDEST PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP8 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x4D54 JUMPI DUP7 DUP6 ADD CALLDATALOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x4D34 JUMP JUMPDEST POP DUP7 DUP3 LT ISZERO PUSH2 0x4D70 JUMPI PUSH0 NOT PUSH1 0xF8 DUP9 PUSH1 0x3 SHL AND SHR NOT DUP5 DUP8 ADD CALLDATALOAD AND DUP2 SSTORE JUMPDEST POP POP PUSH1 0x1 DUP6 PUSH1 0x1 SHL ADD DUP4 SSTORE POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4D8F DUP5 PUSH2 0x4614 JUMP JUMPDEST DUP4 DUP3 MSTORE PUSH2 0x4D9B DUP4 PUSH2 0x4614 JUMP JUMPDEST DUP3 PUSH1 0x20 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4DB9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x24B8 DUP4 DUP4 PUSH2 0x448B JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4DD3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x24B8 DUP3 PUSH2 0x4477 JUMP JUMPDEST DUP1 CALLDATALOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x40 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x60 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x80 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0xA0 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0xC0 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0xE0 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH2 0x100 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH2 0x120 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH2 0x4E49 PUSH2 0x140 DUP3 ADD PUSH2 0x4477 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND PUSH2 0x140 DUP4 ADD MSTORE PUSH2 0x4E63 PUSH2 0x160 DUP3 ADD PUSH2 0x4477 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP2 AND PUSH2 0x160 DUP5 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0x4E85 DUP3 DUP6 PUSH2 0x4DDC JUMP JUMPDEST PUSH2 0x24B8 PUSH2 0x180 DUP4 ADD DUP5 PUSH2 0x4AEE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x815 JUMPI PUSH2 0x815 PUSH2 0x4E93 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4EDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x24B8 DUP2 PUSH2 0x47D8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0x40 DUP2 ADD PUSH2 0x4D9B DUP4 PUSH2 0x4614 JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0x4F12 DUP3 DUP8 PUSH2 0x4DDC JUMP JUMPDEST DUP5 PUSH2 0x180 DUP4 ADD MSTORE DUP4 PUSH2 0x1A0 DUP4 ADD MSTORE DUP3 PUSH2 0x1C0 DUP4 ADD MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x200 DUP2 ADD PUSH2 0x4F3F DUP3 DUP9 PUSH2 0x4DDC JUMP JUMPDEST PUSH2 0x180 DUP3 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH2 0x1A0 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH2 0x1C0 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1E0 SWAP1 SWAP2 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4F7F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4F93 DUP5 PUSH2 0x4614 JUMP JUMPDEST SWAP3 DUP2 MSTORE PUSH1 0x20 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4FAA DUP5 PUSH2 0x4614 JUMP JUMPDEST SWAP3 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x20 SWAP1 SWAP2 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x4FEB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x5004 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x5018 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 PUSH1 0x20 DUP5 ADD DUP6 MCOPY PUSH0 SWAP4 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH0 DUP4 DUP3 ADD PUSH0 DUP2 MSTORE PUSH2 0x4C7B DUP2 DUP6 PUSH2 0x501F JUMP JUMPDEST PUSH0 PUSH2 0x2AFB PUSH2 0x5059 DUP4 DUP7 PUSH2 0x501F JUMP JUMPDEST DUP5 PUSH2 0x501F JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x815 JUMPI PUSH2 0x815 PUSH2 0x4E93 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x815 JUMPI PUSH2 0x815 PUSH2 0x4E93 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x815 JUMPI PUSH2 0x815 PUSH2 0x4E93 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x50C0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x24B8 DUP2 PUSH2 0x4270 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x4C7B SWAP1 DUP4 ADD DUP5 PUSH2 0x42A0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP2 MSTORE PUSH2 0x1C0 DUP2 ADD PUSH2 0x511B PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x4AEE JUMP JUMPDEST DUP3 PUSH2 0x1A0 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5143 JUMPI PUSH2 0x5143 PUSH2 0x42E0 JUMP JUMPDEST PUSH2 0x5157 DUP2 PUSH2 0x5151 DUP5 SLOAD PUSH2 0x4AA1 JUMP JUMPDEST DUP5 PUSH2 0x4C85 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x5189 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x5172 JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x2E51 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x51B8 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x5198 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x51D5 JUMPI DUP7 DUP5 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP INVALID DUP1 0xBB 0x2B PUSH4 0x8CC20BC4 0xD0 0xA6 0xD PUSH7 0x940F3AB4A00C1D PUSH28 0x313497CA82FB0B4AB0079300360894A13BA1A3210667C828492DB98D 0xCA RETURNDATACOPY KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCCD5ED15C6E187E77E9AEE8 DUP2 DUP5 0xC2 0x1F 0x4F 0x21 DUP3 0xAB PC 0x27 0xCB EXTCODESIZE PUSH31 0x7FBEDCD63F03300A2646970667358221220F8FA27DD4FDEC3476C4DE2AE7B 0x21 DUP11 0xB3 INVALID CODESIZE 0xEB 0xF6 0x26 DIV PUSH16 0x7B0D6D77BE94AE28B364736F6C634300 ADDMOD 0x1E STOP CALLER ","sourceMap":"2428:36617:72:-:0;;;1084:4:33;1041:48;;14150:165:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;14198:32:72;;14194:61;;14239:16;;-1:-1:-1;;;14239:16:72;;;;;;;;;;;14194:61;14261:22;:20;:22::i;:::-;-1:-1:-1;;;;;14289:21:72;;;2428:36617;;7709:422:32;3147:66;7898:15;;;;;;;7894:76;;;7936:23;;-1:-1:-1;;;7936:23:32;;;;;;;;;;;7894:76;7983:14;;-1:-1:-1;;;;;7983:14:32;;;:34;7979:146;;8033:33;;-1:-1:-1;;;;;;8033:33:32;-1:-1:-1;;;;;8033:33:32;;;;;8085:29;;476:50:101;;;8085:29:32;;464:2:101;449:18;8085:29:32;;;;;;;7979:146;7758:373;7709:422::o;14:313:101:-;107:6;160:2;148:9;139:7;135:23;131:32;128:52;;;176:1;173;166:12;128:52;202:16;;-1:-1:-1;;;;;247:31:101;;237:42;;227:70;;293:1;290;283:12;227:70;316:5;14:313;-1:-1:-1;;;14:313:101:o;332:200::-;2428:36617:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@UPGRADE_INTERFACE_VERSION_7238":{"entryPoint":null,"id":7238,"parameterSlots":0,"returnSlots":0},"@__ERC721_init_1871":{"entryPoint":10267,"id":1871,"parameterSlots":2,"returnSlots":0},"@__ERC721_init_unchained_1899":{"entryPoint":14635,"id":1899,"parameterSlots":2,"returnSlots":0},"@__Pausable_init_3188":{"entryPoint":10285,"id":3188,"parameterSlots":0,"returnSlots":0},"@__PolicyPool_init_unchained_23249":{"entryPoint":10293,"id":23249,"parameterSlots":1,"returnSlots":0},"@_approve_2715":{"entryPoint":10413,"id":2715,"parameterSlots":3,"returnSlots":0},"@_approve_2789":{"entryPoint":14740,"id":2789,"parameterSlots":4,"returnSlots":0},"@_authorizeUpgrade_23272":{"entryPoint":11270,"id":23272,"parameterSlots":1,"returnSlots":0},"@_baseURI_25405":{"entryPoint":13838,"id":25405,"parameterSlots":0,"returnSlots":1},"@_changeExposure_25101":{"entryPoint":10682,"id":25101,"parameterSlots":3,"returnSlots":0},"@_checkAuthorized_2335":{"entryPoint":16515,"id":2335,"parameterSlots":3,"returnSlots":0},"@_checkInitializing_7126":{"entryPoint":14598,"id":7126,"parameterSlots":0,"returnSlots":0},"@_checkNonPayable_6903":{"entryPoint":16714,"id":6903,"parameterSlots":0,"returnSlots":0},"@_checkNotDelegated_7332":{"entryPoint":11639,"id":7332,"parameterSlots":0,"returnSlots":0},"@_checkProxy_7316":{"entryPoint":11106,"id":7316,"parameterSlots":0,"returnSlots":0},"@_componentStatus_23807":{"entryPoint":15015,"id":23807,"parameterSlots":2,"returnSlots":1},"@_contextSuffixLength_2909":{"entryPoint":null,"id":2909,"parameterSlots":0,"returnSlots":1},"@_deposit_23918":{"entryPoint":14125,"id":23918,"parameterSlots":3,"returnSlots":0},"@_getApproved_2262":{"entryPoint":10356,"id":2262,"parameterSlots":1,"returnSlots":1},"@_getERC721Storage_1855":{"entryPoint":null,"id":1855,"parameterSlots":0,"returnSlots":1},"@_getInitializableStorage_7217":{"entryPoint":10227,"id":7217,"parameterSlots":0,"returnSlots":1},"@_getPausableStorage_3150":{"entryPoint":null,"id":3150,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_7203":{"entryPoint":null,"id":7203,"parameterSlots":0,"returnSlots":1},"@_isAuthorized_2298":{"entryPoint":16856,"id":2298,"parameterSlots":3,"returnSlots":1},"@_isInitializing_7194":{"entryPoint":16490,"id":7194,"parameterSlots":0,"returnSlots":1},"@_mint_2511":{"entryPoint":15128,"id":2511,"parameterSlots":2,"returnSlots":0},"@_msgSender_2892":{"entryPoint":null,"id":2892,"parameterSlots":0,"returnSlots":1},"@_notifyCancellation_25395":{"entryPoint":12190,"id":25395,"parameterSlots":4,"returnSlots":0},"@_notifyExpiration_25285":{"entryPoint":16037,"id":25285,"parameterSlots":1,"returnSlots":0},"@_notifyPayout_25230":{"entryPoint":15806,"id":25230,"parameterSlots":2,"returnSlots":0},"@_notifyReplacement_25337":{"entryPoint":11864,"id":25337,"parameterSlots":2,"returnSlots":0},"@_ownerOf_2242":{"entryPoint":14683,"id":2242,"parameterSlots":1,"returnSlots":1},"@_pause_3259":{"entryPoint":12444,"id":3259,"parameterSlots":0,"returnSlots":0},"@_requireCompActiveOrDeprecated_23857":{"entryPoint":12095,"id":23857,"parameterSlots":2,"returnSlots":0},"@_requireCompActive_23827":{"entryPoint":10474,"id":23827,"parameterSlots":2,"returnSlots":0},"@_requireNotPaused_3222":{"entryPoint":10426,"id":3222,"parameterSlots":0,"returnSlots":0},"@_requireOwned_2863":{"entryPoint":10301,"id":2863,"parameterSlots":1,"returnSlots":1},"@_requirePaused_3235":{"entryPoint":15592,"id":3235,"parameterSlots":0,"returnSlots":0},"@_resolvePolicy_25049":{"entryPoint":13193,"id":25049,"parameterSlots":3,"returnSlots":0},"@_safeMint_2556":{"entryPoint":10659,"id":2556,"parameterSlots":3,"returnSlots":0},"@_safeTransferFrom_9330":{"entryPoint":15225,"id":9330,"parameterSlots":5,"returnSlots":1},"@_setApprovalForAll_2834":{"entryPoint":12571,"id":2834,"parameterSlots":3,"returnSlots":0},"@_setImplementation_6683":{"entryPoint":16615,"id":6683,"parameterSlots":1,"returnSlots":0},"@_setTreasury_23324":{"entryPoint":14456,"id":23324,"parameterSlots":1,"returnSlots":0},"@_transferIfNonZero_24776":{"entryPoint":11785,"id":24776,"parameterSlots":4,"returnSlots":0},"@_trySupportsInterface_14259":{"entryPoint":16956,"id":14259,"parameterSlots":2,"returnSlots":2},"@_unpause_3283":{"entryPoint":11011,"id":3283,"parameterSlots":0,"returnSlots":0},"@_update_2461":{"entryPoint":15334,"id":2461,"parameterSlots":3,"returnSlots":1},"@_update_25443":{"entryPoint":10983,"id":25443,"parameterSlots":3,"returnSlots":1},"@_upgradeToAndCallUUPS_7383":{"entryPoint":11451,"id":7383,"parameterSlots":2,"returnSlots":0},"@_validatePolicy_24803":{"entryPoint":11712,"id":24803,"parameterSlots":1,"returnSlots":0},"@addComponent_23526":{"entryPoint":5572,"id":23526,"parameterSlots":2,"returnSlots":0},"@approve_2071":{"entryPoint":2588,"id":2071,"parameterSlots":2,"returnSlots":0},"@balanceOf_1965":{"entryPoint":8628,"id":1965,"parameterSlots":1,"returnSlots":1},"@bubbleRevert_10900":{"entryPoint":15795,"id":10900,"parameterSlots":0,"returnSlots":0},"@cancelPolicy_24745":{"entryPoint":6841,"id":24745,"parameterSlots":4,"returnSlots":0},"@changeComponentStatus_23755":{"entryPoint":4033,"id":23755,"parameterSlots":2,"returnSlots":0},"@checkOnERC721Received_9593":{"entryPoint":12906,"id":9593,"parameterSlots":5,"returnSlots":0},"@currency_23299":{"entryPoint":null,"id":23299,"parameterSlots":0,"returnSlots":1},"@delegatecallNoReturn_10862":{"entryPoint":15751,"id":10862,"parameterSlots":2,"returnSlots":1},"@depositWithPermit_23992":{"entryPoint":9407,"id":23992,"parameterSlots":7,"returnSlots":0},"@deposit_23939":{"entryPoint":9996,"id":23939,"parameterSlots":3,"returnSlots":0},"@expirePolicy_24835":{"entryPoint":10015,"id":24835,"parameterSlots":1,"returnSlots":0},"@extractRiskModule_22779":{"entryPoint":null,"id":22779,"parameterSlots":1,"returnSlots":1},"@functionDelegateCall_9894":{"entryPoint":12746,"id":9894,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_11669":{"entryPoint":null,"id":11669,"parameterSlots":1,"returnSlots":1},"@getApproved_2088":{"entryPoint":2568,"id":2088,"parameterSlots":1,"returnSlots":1},"@getComponentStatus_23771":{"entryPoint":null,"id":23771,"parameterSlots":1,"returnSlots":1},"@getExposure_25178":{"entryPoint":null,"id":25178,"parameterSlots":1,"returnSlots":2},"@getImplementation_6656":{"entryPoint":null,"id":6656,"parameterSlots":0,"returnSlots":1},"@getPolicyHash_24887":{"entryPoint":null,"id":24887,"parameterSlots":1,"returnSlots":1},"@hash_22760":{"entryPoint":10577,"id":22760,"parameterSlots":1,"returnSlots":1},"@initialize_23215":{"entryPoint":2236,"id":23215,"parameterSlots":3,"returnSlots":0},"@isActive_24873":{"entryPoint":null,"id":24873,"parameterSlots":1,"returnSlots":1},"@isApprovedForAll_2128":{"entryPoint":9908,"id":2128,"parameterSlots":2,"returnSlots":1},"@log10_15725":{"entryPoint":16275,"id":15725,"parameterSlots":1,"returnSlots":1},"@makePolicyId_22825":{"entryPoint":10533,"id":22825,"parameterSlots":2,"returnSlots":1},"@multicall_3012":{"entryPoint":9020,"id":3012,"parameterSlots":2,"returnSlots":1},"@name_1994":{"entryPoint":2075,"id":1994,"parameterSlots":0,"returnSlots":1},"@newPolicy_24267":{"entryPoint":2603,"id":24267,"parameterSlots":4,"returnSlots":1},"@ownerOf_1978":{"entryPoint":4276,"id":1978,"parameterSlots":1,"returnSlots":1},"@pause_23280":{"entryPoint":8716,"id":23280,"parameterSlots":0,"returnSlots":0},"@paused_3210":{"entryPoint":null,"id":3210,"parameterSlots":0,"returnSlots":1},"@proxiableUUID_7274":{"entryPoint":3933,"id":7274,"parameterSlots":0,"returnSlots":1},"@removeComponent_23705":{"entryPoint":7430,"id":23705,"parameterSlots":1,"returnSlots":0},"@replacePolicy_24592":{"entryPoint":4286,"id":24592,"parameterSlots":4,"returnSlots":1},"@resolvePolicy_24854":{"entryPoint":9273,"id":24854,"parameterSlots":2,"returnSlots":0},"@returnDataSize_10886":{"entryPoint":null,"id":10886,"parameterSlots":0,"returnSlots":1},"@returnData_10894":{"entryPoint":15770,"id":10894,"parameterSlots":0,"returnSlots":1},"@safeTransferFrom_2192":{"entryPoint":3875,"id":2192,"parameterSlots":3,"returnSlots":0},"@safeTransferFrom_2222":{"entryPoint":9249,"id":2222,"parameterSlots":4,"returnSlots":0},"@safeTransferFrom_8979":{"entryPoint":10929,"id":8979,"parameterSlots":4,"returnSlots":0},"@setApprovalForAll_2104":{"entryPoint":9009,"id":2104,"parameterSlots":2,"returnSlots":0},"@setBaseURI_25421":{"entryPoint":3960,"id":25421,"parameterSlots":2,"returnSlots":0},"@setExposureLimit_25149":{"entryPoint":8786,"id":25149,"parameterSlots":2,"returnSlots":0},"@setTreasury_23335":{"entryPoint":9984,"id":23335,"parameterSlots":1,"returnSlots":0},"@supportsERC165InterfaceUnchecked_14239":{"entryPoint":16820,"id":14239,"parameterSlots":2,"returnSlots":1},"@supportsERC165_14093":{"entryPoint":16745,"id":14093,"parameterSlots":1,"returnSlots":1},"@supportsInterface_14113":{"entryPoint":15724,"id":14113,"parameterSlots":2,"returnSlots":1},"@supportsInterface_1930":{"entryPoint":10148,"id":1930,"parameterSlots":1,"returnSlots":1},"@supportsInterface_23237":{"entryPoint":2032,"id":23237,"parameterSlots":1,"returnSlots":1},"@supportsInterface_3667":{"entryPoint":null,"id":3667,"parameterSlots":1,"returnSlots":1},"@symbol_2010":{"entryPoint":8724,"id":2010,"parameterSlots":0,"returnSlots":1},"@toString_11874":{"entryPoint":13982,"id":11874,"parameterSlots":1,"returnSlots":1},"@toUint128_16389":{"entryPoint":12516,"id":16389,"parameterSlots":1,"returnSlots":1},"@tokenURI_2046":{"entryPoint":9306,"id":2046,"parameterSlots":1,"returnSlots":1},"@transferFrom_2174":{"entryPoint":3728,"id":2174,"parameterSlots":3,"returnSlots":0},"@treasury_23345":{"entryPoint":null,"id":23345,"parameterSlots":0,"returnSlots":1},"@unpause_23288":{"entryPoint":3865,"id":23288,"parameterSlots":0,"returnSlots":0},"@upgradeToAndCall_6719":{"entryPoint":15639,"id":6719,"parameterSlots":2,"returnSlots":0},"@upgradeToAndCall_7294":{"entryPoint":3906,"id":7294,"parameterSlots":2,"returnSlots":0},"@withdraw_24052":{"entryPoint":9597,"id":24052,"parameterSlots":4,"returnSlots":1},"abi_decode_string":{"entryPoint":17181,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_struct_PolicyData":{"entryPoint":17547,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_struct_PolicyData_calldata":{"entryPoint":18238,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":18982,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":17831,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr":{"entryPoint":18643,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_bool":{"entryPoint":18405,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes_memory_ptr":{"entryPoint":17987,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":17485,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr":{"entryPoint":18449,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":20175,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":17029,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4_fromMemory":{"entryPoint":20656,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IEToken_$28869_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IEToken_$28869t_contract$_IEToken_$28869_fromMemory":{"entryPoint":19348,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_address":{"entryPoint":19026,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_addresst_address":{"entryPoint":18902,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_addresst_uint256t_uint8t_bytes32t_bytes32":{"entryPoint":18789,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_contract$_IPolicyPoolComponent_$29188":{"entryPoint":17893,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IPolicyPoolComponent_$29188t_enum$_ComponentKind_$22910":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IPolicyPoolComponent_$29188t_enum$_ComponentStatus_$22904":{"entryPoint":18183,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IPremiumsAccount_$29276_fromMemory":{"entryPoint":19155,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IRiskModule_$29295":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IRiskModule_$29295t_uint256":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_string_calldata_ptr":{"entryPoint":18063,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_address":{"entryPoint":17344,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptr":{"entryPoint":19078,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_struct$_PolicyData_$22256_memory_ptrt_addresst_uint96":{"entryPoint":18255,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_uint256":{"entryPoint":18746,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_uint256t_uint256t_uint256":{"entryPoint":18333,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptr":{"entryPoint":19880,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_addresst_addresst_uint96":{"entryPoint":17741,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_uint256":{"entryPoint":17462,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":20335,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint40":{"entryPoint":19907,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint40":{"entryPoint":17527,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint96":{"entryPoint":17714,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_bytes":{"entryPoint":20511,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string":{"entryPoint":17056,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string_calldata":{"entryPoint":19393,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_struct_PolicyData":{"entryPoint":19182,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_struct_PolicyData_calldata":{"entryPoint":19932,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":20534,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":20555,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":20683,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256__to_t_address_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint256_t_uint256__to_t_address_t_address_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":7,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":8,"returnSlots":1},"abi_encode_tuple_t_address_t_struct$_PolicyData_$22256_memory_ptr_t_uint256__to_t_address_t_struct$_PolicyData_$22256_memory_ptr_t_uint256__fromStack_reversed":{"entryPoint":20733,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_address__to_t_address_t_uint256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":18544,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed":{"entryPoint":20154,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyHolder_$28982__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyPoolComponent_$29188_t_enum$_ComponentKind_$22910__to_t_address_t_uint8__fromStack_reversed":{"entryPoint":20202,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_enum$_ComponentKind_$22910_t_enum$_ComponentStatus_$22904__to_t_uint8_t_uint8__fromStack_reversed":{"entryPoint":19842,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_enum$_ComponentKind_$22910_t_uint128__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":20381,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_enum$_ComponentKind_$22910_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":20358,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_enum$_ComponentStatus_$22904__to_t_uint8__fromStack_reversed":{"entryPoint":17968,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_128_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17102,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_storage_t_string_calldata_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed":{"entryPoint":19433,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$22256_calldata_ptr_t_struct$_PolicyData_$22256_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr_t_struct$_PolicyData_$22256_memory_ptr__fromStack_reversed":{"entryPoint":20086,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$22256_calldata_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":20227,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$22256_calldata_ptr_t_uint256_t_uint256_t_uint256_t_address__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256_t_address__fromStack_reversed":{"entryPoint":20272,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr__fromStack_reversed":{"entryPoint":19333,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint128_t_uint128__to_t_uint128_t_uint128__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_address_t_address_t_address__to_t_uint256_t_address_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint40_t_uint256__to_t_uint256_t_uint40_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_uint40":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":20438,"id":null,"parameterSlots":2,"returnSlots":2},"allocate_memory":{"entryPoint":17140,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_uint128":{"entryPoint":20594,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":20575,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint128":{"entryPoint":20625,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":20135,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":19589,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_calldata_ptr_to_t_string_storage":{"entryPoint":19657,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":20778,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":19105,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":20115,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":17920,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":20418,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":17120,"id":null,"parameterSlots":0,"returnSlots":0},"validator_assert_enum_ComponentStatus":{"entryPoint":17940,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_address":{"entryPoint":17324,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_bool":{"entryPoint":18392,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_bytes4":{"entryPoint":17008,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_enum_ComponentStatus":{"entryPoint":18171,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:42354:101","nodeType":"YulBlock","src":"0:42354:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"58:87:101","nodeType":"YulBlock","src":"58:87:101","statements":[{"body":{"nativeSrc":"123:16:101","nodeType":"YulBlock","src":"123:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:101","nodeType":"YulLiteral","src":"132:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:101","nodeType":"YulLiteral","src":"135:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:101","nodeType":"YulIdentifier","src":"125:6:101"},"nativeSrc":"125:12:101","nodeType":"YulFunctionCall","src":"125:12:101"},"nativeSrc":"125:12:101","nodeType":"YulExpressionStatement","src":"125:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"81:5:101","nodeType":"YulIdentifier","src":"81:5:101"},{"arguments":[{"name":"value","nativeSrc":"92:5:101","nodeType":"YulIdentifier","src":"92:5:101"},{"arguments":[{"kind":"number","nativeSrc":"103:3:101","nodeType":"YulLiteral","src":"103:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"108:10:101","nodeType":"YulLiteral","src":"108:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"99:3:101","nodeType":"YulIdentifier","src":"99:3:101"},"nativeSrc":"99:20:101","nodeType":"YulFunctionCall","src":"99:20:101"}],"functionName":{"name":"and","nativeSrc":"88:3:101","nodeType":"YulIdentifier","src":"88:3:101"},"nativeSrc":"88:32:101","nodeType":"YulFunctionCall","src":"88:32:101"}],"functionName":{"name":"eq","nativeSrc":"78:2:101","nodeType":"YulIdentifier","src":"78:2:101"},"nativeSrc":"78:43:101","nodeType":"YulFunctionCall","src":"78:43:101"}],"functionName":{"name":"iszero","nativeSrc":"71:6:101","nodeType":"YulIdentifier","src":"71:6:101"},"nativeSrc":"71:51:101","nodeType":"YulFunctionCall","src":"71:51:101"},"nativeSrc":"68:71:101","nodeType":"YulIf","src":"68:71:101"}]},"name":"validator_revert_bytes4","nativeSrc":"14:131:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"47:5:101","nodeType":"YulTypedName","src":"47:5:101","type":""}],"src":"14:131:101"},{"body":{"nativeSrc":"219:176:101","nodeType":"YulBlock","src":"219:176:101","statements":[{"body":{"nativeSrc":"265:16:101","nodeType":"YulBlock","src":"265:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"274:1:101","nodeType":"YulLiteral","src":"274:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"277:1:101","nodeType":"YulLiteral","src":"277:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"267:6:101","nodeType":"YulIdentifier","src":"267:6:101"},"nativeSrc":"267:12:101","nodeType":"YulFunctionCall","src":"267:12:101"},"nativeSrc":"267:12:101","nodeType":"YulExpressionStatement","src":"267:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"240:7:101","nodeType":"YulIdentifier","src":"240:7:101"},{"name":"headStart","nativeSrc":"249:9:101","nodeType":"YulIdentifier","src":"249:9:101"}],"functionName":{"name":"sub","nativeSrc":"236:3:101","nodeType":"YulIdentifier","src":"236:3:101"},"nativeSrc":"236:23:101","nodeType":"YulFunctionCall","src":"236:23:101"},{"kind":"number","nativeSrc":"261:2:101","nodeType":"YulLiteral","src":"261:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"232:3:101","nodeType":"YulIdentifier","src":"232:3:101"},"nativeSrc":"232:32:101","nodeType":"YulFunctionCall","src":"232:32:101"},"nativeSrc":"229:52:101","nodeType":"YulIf","src":"229:52:101"},{"nativeSrc":"290:36:101","nodeType":"YulVariableDeclaration","src":"290:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"316:9:101","nodeType":"YulIdentifier","src":"316:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"303:12:101","nodeType":"YulIdentifier","src":"303:12:101"},"nativeSrc":"303:23:101","nodeType":"YulFunctionCall","src":"303:23:101"},"variables":[{"name":"value","nativeSrc":"294:5:101","nodeType":"YulTypedName","src":"294:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"359:5:101","nodeType":"YulIdentifier","src":"359:5:101"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"335:23:101","nodeType":"YulIdentifier","src":"335:23:101"},"nativeSrc":"335:30:101","nodeType":"YulFunctionCall","src":"335:30:101"},"nativeSrc":"335:30:101","nodeType":"YulExpressionStatement","src":"335:30:101"},{"nativeSrc":"374:15:101","nodeType":"YulAssignment","src":"374:15:101","value":{"name":"value","nativeSrc":"384:5:101","nodeType":"YulIdentifier","src":"384:5:101"},"variableNames":[{"name":"value0","nativeSrc":"374:6:101","nodeType":"YulIdentifier","src":"374:6:101"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"150:245:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"185:9:101","nodeType":"YulTypedName","src":"185:9:101","type":""},{"name":"dataEnd","nativeSrc":"196:7:101","nodeType":"YulTypedName","src":"196:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"208:6:101","nodeType":"YulTypedName","src":"208:6:101","type":""}],"src":"150:245:101"},{"body":{"nativeSrc":"495:92:101","nodeType":"YulBlock","src":"495:92:101","statements":[{"nativeSrc":"505:26:101","nodeType":"YulAssignment","src":"505:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"517:9:101","nodeType":"YulIdentifier","src":"517:9:101"},{"kind":"number","nativeSrc":"528:2:101","nodeType":"YulLiteral","src":"528:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"513:3:101","nodeType":"YulIdentifier","src":"513:3:101"},"nativeSrc":"513:18:101","nodeType":"YulFunctionCall","src":"513:18:101"},"variableNames":[{"name":"tail","nativeSrc":"505:4:101","nodeType":"YulIdentifier","src":"505:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"547:9:101","nodeType":"YulIdentifier","src":"547:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"572:6:101","nodeType":"YulIdentifier","src":"572:6:101"}],"functionName":{"name":"iszero","nativeSrc":"565:6:101","nodeType":"YulIdentifier","src":"565:6:101"},"nativeSrc":"565:14:101","nodeType":"YulFunctionCall","src":"565:14:101"}],"functionName":{"name":"iszero","nativeSrc":"558:6:101","nodeType":"YulIdentifier","src":"558:6:101"},"nativeSrc":"558:22:101","nodeType":"YulFunctionCall","src":"558:22:101"}],"functionName":{"name":"mstore","nativeSrc":"540:6:101","nodeType":"YulIdentifier","src":"540:6:101"},"nativeSrc":"540:41:101","nodeType":"YulFunctionCall","src":"540:41:101"},"nativeSrc":"540:41:101","nodeType":"YulExpressionStatement","src":"540:41:101"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"400:187:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"464:9:101","nodeType":"YulTypedName","src":"464:9:101","type":""},{"name":"value0","nativeSrc":"475:6:101","nodeType":"YulTypedName","src":"475:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"486:4:101","nodeType":"YulTypedName","src":"486:4:101","type":""}],"src":"400:187:101"},{"body":{"nativeSrc":"642:239:101","nodeType":"YulBlock","src":"642:239:101","statements":[{"nativeSrc":"652:26:101","nodeType":"YulVariableDeclaration","src":"652:26:101","value":{"arguments":[{"name":"value","nativeSrc":"672:5:101","nodeType":"YulIdentifier","src":"672:5:101"}],"functionName":{"name":"mload","nativeSrc":"666:5:101","nodeType":"YulIdentifier","src":"666:5:101"},"nativeSrc":"666:12:101","nodeType":"YulFunctionCall","src":"666:12:101"},"variables":[{"name":"length","nativeSrc":"656:6:101","nodeType":"YulTypedName","src":"656:6:101","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"694:3:101","nodeType":"YulIdentifier","src":"694:3:101"},{"name":"length","nativeSrc":"699:6:101","nodeType":"YulIdentifier","src":"699:6:101"}],"functionName":{"name":"mstore","nativeSrc":"687:6:101","nodeType":"YulIdentifier","src":"687:6:101"},"nativeSrc":"687:19:101","nodeType":"YulFunctionCall","src":"687:19:101"},"nativeSrc":"687:19:101","nodeType":"YulExpressionStatement","src":"687:19:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"725:3:101","nodeType":"YulIdentifier","src":"725:3:101"},{"kind":"number","nativeSrc":"730:4:101","nodeType":"YulLiteral","src":"730:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"721:3:101","nodeType":"YulIdentifier","src":"721:3:101"},"nativeSrc":"721:14:101","nodeType":"YulFunctionCall","src":"721:14:101"},{"arguments":[{"name":"value","nativeSrc":"741:5:101","nodeType":"YulIdentifier","src":"741:5:101"},{"kind":"number","nativeSrc":"748:4:101","nodeType":"YulLiteral","src":"748:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"737:3:101","nodeType":"YulIdentifier","src":"737:3:101"},"nativeSrc":"737:16:101","nodeType":"YulFunctionCall","src":"737:16:101"},{"name":"length","nativeSrc":"755:6:101","nodeType":"YulIdentifier","src":"755:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"715:5:101","nodeType":"YulIdentifier","src":"715:5:101"},"nativeSrc":"715:47:101","nodeType":"YulFunctionCall","src":"715:47:101"},"nativeSrc":"715:47:101","nodeType":"YulExpressionStatement","src":"715:47:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"786:3:101","nodeType":"YulIdentifier","src":"786:3:101"},{"name":"length","nativeSrc":"791:6:101","nodeType":"YulIdentifier","src":"791:6:101"}],"functionName":{"name":"add","nativeSrc":"782:3:101","nodeType":"YulIdentifier","src":"782:3:101"},"nativeSrc":"782:16:101","nodeType":"YulFunctionCall","src":"782:16:101"},{"kind":"number","nativeSrc":"800:4:101","nodeType":"YulLiteral","src":"800:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"778:3:101","nodeType":"YulIdentifier","src":"778:3:101"},"nativeSrc":"778:27:101","nodeType":"YulFunctionCall","src":"778:27:101"},{"kind":"number","nativeSrc":"807:1:101","nodeType":"YulLiteral","src":"807:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"771:6:101","nodeType":"YulIdentifier","src":"771:6:101"},"nativeSrc":"771:38:101","nodeType":"YulFunctionCall","src":"771:38:101"},"nativeSrc":"771:38:101","nodeType":"YulExpressionStatement","src":"771:38:101"},{"nativeSrc":"818:57:101","nodeType":"YulAssignment","src":"818:57:101","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"833:3:101","nodeType":"YulIdentifier","src":"833:3:101"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"846:6:101","nodeType":"YulIdentifier","src":"846:6:101"},{"kind":"number","nativeSrc":"854:2:101","nodeType":"YulLiteral","src":"854:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"842:3:101","nodeType":"YulIdentifier","src":"842:3:101"},"nativeSrc":"842:15:101","nodeType":"YulFunctionCall","src":"842:15:101"},{"arguments":[{"kind":"number","nativeSrc":"863:2:101","nodeType":"YulLiteral","src":"863:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"859:3:101","nodeType":"YulIdentifier","src":"859:3:101"},"nativeSrc":"859:7:101","nodeType":"YulFunctionCall","src":"859:7:101"}],"functionName":{"name":"and","nativeSrc":"838:3:101","nodeType":"YulIdentifier","src":"838:3:101"},"nativeSrc":"838:29:101","nodeType":"YulFunctionCall","src":"838:29:101"}],"functionName":{"name":"add","nativeSrc":"829:3:101","nodeType":"YulIdentifier","src":"829:3:101"},"nativeSrc":"829:39:101","nodeType":"YulFunctionCall","src":"829:39:101"},{"kind":"number","nativeSrc":"870:4:101","nodeType":"YulLiteral","src":"870:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"825:3:101","nodeType":"YulIdentifier","src":"825:3:101"},"nativeSrc":"825:50:101","nodeType":"YulFunctionCall","src":"825:50:101"},"variableNames":[{"name":"end","nativeSrc":"818:3:101","nodeType":"YulIdentifier","src":"818:3:101"}]}]},"name":"abi_encode_string","nativeSrc":"592:289:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"619:5:101","nodeType":"YulTypedName","src":"619:5:101","type":""},{"name":"pos","nativeSrc":"626:3:101","nodeType":"YulTypedName","src":"626:3:101","type":""}],"returnVariables":[{"name":"end","nativeSrc":"634:3:101","nodeType":"YulTypedName","src":"634:3:101","type":""}],"src":"592:289:101"},{"body":{"nativeSrc":"1007:99:101","nodeType":"YulBlock","src":"1007:99:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1024:9:101","nodeType":"YulIdentifier","src":"1024:9:101"},{"kind":"number","nativeSrc":"1035:2:101","nodeType":"YulLiteral","src":"1035:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"1017:6:101","nodeType":"YulIdentifier","src":"1017:6:101"},"nativeSrc":"1017:21:101","nodeType":"YulFunctionCall","src":"1017:21:101"},"nativeSrc":"1017:21:101","nodeType":"YulExpressionStatement","src":"1017:21:101"},{"nativeSrc":"1047:53:101","nodeType":"YulAssignment","src":"1047:53:101","value":{"arguments":[{"name":"value0","nativeSrc":"1073:6:101","nodeType":"YulIdentifier","src":"1073:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"1085:9:101","nodeType":"YulIdentifier","src":"1085:9:101"},{"kind":"number","nativeSrc":"1096:2:101","nodeType":"YulLiteral","src":"1096:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1081:3:101","nodeType":"YulIdentifier","src":"1081:3:101"},"nativeSrc":"1081:18:101","nodeType":"YulFunctionCall","src":"1081:18:101"}],"functionName":{"name":"abi_encode_string","nativeSrc":"1055:17:101","nodeType":"YulIdentifier","src":"1055:17:101"},"nativeSrc":"1055:45:101","nodeType":"YulFunctionCall","src":"1055:45:101"},"variableNames":[{"name":"tail","nativeSrc":"1047:4:101","nodeType":"YulIdentifier","src":"1047:4:101"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"886:220:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"976:9:101","nodeType":"YulTypedName","src":"976:9:101","type":""},{"name":"value0","nativeSrc":"987:6:101","nodeType":"YulTypedName","src":"987:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"998:4:101","nodeType":"YulTypedName","src":"998:4:101","type":""}],"src":"886:220:101"},{"body":{"nativeSrc":"1143:95:101","nodeType":"YulBlock","src":"1143:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1160:1:101","nodeType":"YulLiteral","src":"1160:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1167:3:101","nodeType":"YulLiteral","src":"1167:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"1172:10:101","nodeType":"YulLiteral","src":"1172:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1163:3:101","nodeType":"YulIdentifier","src":"1163:3:101"},"nativeSrc":"1163:20:101","nodeType":"YulFunctionCall","src":"1163:20:101"}],"functionName":{"name":"mstore","nativeSrc":"1153:6:101","nodeType":"YulIdentifier","src":"1153:6:101"},"nativeSrc":"1153:31:101","nodeType":"YulFunctionCall","src":"1153:31:101"},"nativeSrc":"1153:31:101","nodeType":"YulExpressionStatement","src":"1153:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1200:1:101","nodeType":"YulLiteral","src":"1200:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"1203:4:101","nodeType":"YulLiteral","src":"1203:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"1193:6:101","nodeType":"YulIdentifier","src":"1193:6:101"},"nativeSrc":"1193:15:101","nodeType":"YulFunctionCall","src":"1193:15:101"},"nativeSrc":"1193:15:101","nodeType":"YulExpressionStatement","src":"1193:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1224:1:101","nodeType":"YulLiteral","src":"1224:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1227:4:101","nodeType":"YulLiteral","src":"1227:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1217:6:101","nodeType":"YulIdentifier","src":"1217:6:101"},"nativeSrc":"1217:15:101","nodeType":"YulFunctionCall","src":"1217:15:101"},"nativeSrc":"1217:15:101","nodeType":"YulExpressionStatement","src":"1217:15:101"}]},"name":"panic_error_0x41","nativeSrc":"1111:127:101","nodeType":"YulFunctionDefinition","src":"1111:127:101"},{"body":{"nativeSrc":"1284:209:101","nodeType":"YulBlock","src":"1284:209:101","statements":[{"nativeSrc":"1294:19:101","nodeType":"YulAssignment","src":"1294:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"1310:2:101","nodeType":"YulLiteral","src":"1310:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1304:5:101","nodeType":"YulIdentifier","src":"1304:5:101"},"nativeSrc":"1304:9:101","nodeType":"YulFunctionCall","src":"1304:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"1294:6:101","nodeType":"YulIdentifier","src":"1294:6:101"}]},{"nativeSrc":"1322:37:101","nodeType":"YulVariableDeclaration","src":"1322:37:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"1344:6:101","nodeType":"YulIdentifier","src":"1344:6:101"},{"kind":"number","nativeSrc":"1352:6:101","nodeType":"YulLiteral","src":"1352:6:101","type":"","value":"0x0180"}],"functionName":{"name":"add","nativeSrc":"1340:3:101","nodeType":"YulIdentifier","src":"1340:3:101"},"nativeSrc":"1340:19:101","nodeType":"YulFunctionCall","src":"1340:19:101"},"variables":[{"name":"newFreePtr","nativeSrc":"1326:10:101","nodeType":"YulTypedName","src":"1326:10:101","type":""}]},{"body":{"nativeSrc":"1434:22:101","nodeType":"YulBlock","src":"1434:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1436:16:101","nodeType":"YulIdentifier","src":"1436:16:101"},"nativeSrc":"1436:18:101","nodeType":"YulFunctionCall","src":"1436:18:101"},"nativeSrc":"1436:18:101","nodeType":"YulExpressionStatement","src":"1436:18:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"1377:10:101","nodeType":"YulIdentifier","src":"1377:10:101"},{"kind":"number","nativeSrc":"1389:18:101","nodeType":"YulLiteral","src":"1389:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1374:2:101","nodeType":"YulIdentifier","src":"1374:2:101"},"nativeSrc":"1374:34:101","nodeType":"YulFunctionCall","src":"1374:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"1413:10:101","nodeType":"YulIdentifier","src":"1413:10:101"},{"name":"memPtr","nativeSrc":"1425:6:101","nodeType":"YulIdentifier","src":"1425:6:101"}],"functionName":{"name":"lt","nativeSrc":"1410:2:101","nodeType":"YulIdentifier","src":"1410:2:101"},"nativeSrc":"1410:22:101","nodeType":"YulFunctionCall","src":"1410:22:101"}],"functionName":{"name":"or","nativeSrc":"1371:2:101","nodeType":"YulIdentifier","src":"1371:2:101"},"nativeSrc":"1371:62:101","nodeType":"YulFunctionCall","src":"1371:62:101"},"nativeSrc":"1368:88:101","nodeType":"YulIf","src":"1368:88:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1472:2:101","nodeType":"YulLiteral","src":"1472:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"1476:10:101","nodeType":"YulIdentifier","src":"1476:10:101"}],"functionName":{"name":"mstore","nativeSrc":"1465:6:101","nodeType":"YulIdentifier","src":"1465:6:101"},"nativeSrc":"1465:22:101","nodeType":"YulFunctionCall","src":"1465:22:101"},"nativeSrc":"1465:22:101","nodeType":"YulExpressionStatement","src":"1465:22:101"}]},"name":"allocate_memory","nativeSrc":"1243:250:101","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"1273:6:101","nodeType":"YulTypedName","src":"1273:6:101","type":""}],"src":"1243:250:101"},{"body":{"nativeSrc":"1551:836:101","nodeType":"YulBlock","src":"1551:836:101","statements":[{"body":{"nativeSrc":"1600:16:101","nodeType":"YulBlock","src":"1600:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1609:1:101","nodeType":"YulLiteral","src":"1609:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1612:1:101","nodeType":"YulLiteral","src":"1612:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1602:6:101","nodeType":"YulIdentifier","src":"1602:6:101"},"nativeSrc":"1602:12:101","nodeType":"YulFunctionCall","src":"1602:12:101"},"nativeSrc":"1602:12:101","nodeType":"YulExpressionStatement","src":"1602:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"1579:6:101","nodeType":"YulIdentifier","src":"1579:6:101"},{"kind":"number","nativeSrc":"1587:4:101","nodeType":"YulLiteral","src":"1587:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"1575:3:101","nodeType":"YulIdentifier","src":"1575:3:101"},"nativeSrc":"1575:17:101","nodeType":"YulFunctionCall","src":"1575:17:101"},{"name":"end","nativeSrc":"1594:3:101","nodeType":"YulIdentifier","src":"1594:3:101"}],"functionName":{"name":"slt","nativeSrc":"1571:3:101","nodeType":"YulIdentifier","src":"1571:3:101"},"nativeSrc":"1571:27:101","nodeType":"YulFunctionCall","src":"1571:27:101"}],"functionName":{"name":"iszero","nativeSrc":"1564:6:101","nodeType":"YulIdentifier","src":"1564:6:101"},"nativeSrc":"1564:35:101","nodeType":"YulFunctionCall","src":"1564:35:101"},"nativeSrc":"1561:55:101","nodeType":"YulIf","src":"1561:55:101"},{"nativeSrc":"1625:34:101","nodeType":"YulVariableDeclaration","src":"1625:34:101","value":{"arguments":[{"name":"offset","nativeSrc":"1652:6:101","nodeType":"YulIdentifier","src":"1652:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"1639:12:101","nodeType":"YulIdentifier","src":"1639:12:101"},"nativeSrc":"1639:20:101","nodeType":"YulFunctionCall","src":"1639:20:101"},"variables":[{"name":"length","nativeSrc":"1629:6:101","nodeType":"YulTypedName","src":"1629:6:101","type":""}]},{"nativeSrc":"1668:28:101","nodeType":"YulVariableDeclaration","src":"1668:28:101","value":{"arguments":[{"name":"offset","nativeSrc":"1683:6:101","nodeType":"YulIdentifier","src":"1683:6:101"},{"kind":"number","nativeSrc":"1691:4:101","nodeType":"YulLiteral","src":"1691:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1679:3:101","nodeType":"YulIdentifier","src":"1679:3:101"},"nativeSrc":"1679:17:101","nodeType":"YulFunctionCall","src":"1679:17:101"},"variables":[{"name":"src","nativeSrc":"1672:3:101","nodeType":"YulTypedName","src":"1672:3:101","type":""}]},{"nativeSrc":"1705:16:101","nodeType":"YulVariableDeclaration","src":"1705:16:101","value":{"kind":"number","nativeSrc":"1720:1:101","nodeType":"YulLiteral","src":"1720:1:101","type":"","value":"0"},"variables":[{"name":"array_1","nativeSrc":"1709:7:101","nodeType":"YulTypedName","src":"1709:7:101","type":""}]},{"nativeSrc":"1730:13:101","nodeType":"YulVariableDeclaration","src":"1730:13:101","value":{"kind":"number","nativeSrc":"1742:1:101","nodeType":"YulLiteral","src":"1742:1:101","type":"","value":"0"},"variables":[{"name":"size","nativeSrc":"1734:4:101","nodeType":"YulTypedName","src":"1734:4:101","type":""}]},{"body":{"nativeSrc":"1786:22:101","nodeType":"YulBlock","src":"1786:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1788:16:101","nodeType":"YulIdentifier","src":"1788:16:101"},"nativeSrc":"1788:18:101","nodeType":"YulFunctionCall","src":"1788:18:101"},"nativeSrc":"1788:18:101","nodeType":"YulExpressionStatement","src":"1788:18:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1758:6:101","nodeType":"YulIdentifier","src":"1758:6:101"},{"kind":"number","nativeSrc":"1766:18:101","nodeType":"YulLiteral","src":"1766:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1755:2:101","nodeType":"YulIdentifier","src":"1755:2:101"},"nativeSrc":"1755:30:101","nodeType":"YulFunctionCall","src":"1755:30:101"},"nativeSrc":"1752:56:101","nodeType":"YulIf","src":"1752:56:101"},{"nativeSrc":"1817:43:101","nodeType":"YulVariableDeclaration","src":"1817:43:101","value":{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1839:6:101","nodeType":"YulIdentifier","src":"1839:6:101"},{"kind":"number","nativeSrc":"1847:2:101","nodeType":"YulLiteral","src":"1847:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"1835:3:101","nodeType":"YulIdentifier","src":"1835:3:101"},"nativeSrc":"1835:15:101","nodeType":"YulFunctionCall","src":"1835:15:101"},{"arguments":[{"kind":"number","nativeSrc":"1856:2:101","nodeType":"YulLiteral","src":"1856:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1852:3:101","nodeType":"YulIdentifier","src":"1852:3:101"},"nativeSrc":"1852:7:101","nodeType":"YulFunctionCall","src":"1852:7:101"}],"functionName":{"name":"and","nativeSrc":"1831:3:101","nodeType":"YulIdentifier","src":"1831:3:101"},"nativeSrc":"1831:29:101","nodeType":"YulFunctionCall","src":"1831:29:101"},"variables":[{"name":"result","nativeSrc":"1821:6:101","nodeType":"YulTypedName","src":"1821:6:101","type":""}]},{"nativeSrc":"1869:25:101","nodeType":"YulAssignment","src":"1869:25:101","value":{"arguments":[{"name":"result","nativeSrc":"1881:6:101","nodeType":"YulIdentifier","src":"1881:6:101"},{"kind":"number","nativeSrc":"1889:4:101","nodeType":"YulLiteral","src":"1889:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1877:3:101","nodeType":"YulIdentifier","src":"1877:3:101"},"nativeSrc":"1877:17:101","nodeType":"YulFunctionCall","src":"1877:17:101"},"variableNames":[{"name":"size","nativeSrc":"1869:4:101","nodeType":"YulIdentifier","src":"1869:4:101"}]},{"nativeSrc":"1903:15:101","nodeType":"YulVariableDeclaration","src":"1903:15:101","value":{"kind":"number","nativeSrc":"1917:1:101","nodeType":"YulLiteral","src":"1917:1:101","type":"","value":"0"},"variables":[{"name":"memPtr","nativeSrc":"1907:6:101","nodeType":"YulTypedName","src":"1907:6:101","type":""}]},{"nativeSrc":"1927:19:101","nodeType":"YulAssignment","src":"1927:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"1943:2:101","nodeType":"YulLiteral","src":"1943:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1937:5:101","nodeType":"YulIdentifier","src":"1937:5:101"},"nativeSrc":"1937:9:101","nodeType":"YulFunctionCall","src":"1937:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"1927:6:101","nodeType":"YulIdentifier","src":"1927:6:101"}]},{"nativeSrc":"1955:60:101","nodeType":"YulVariableDeclaration","src":"1955:60:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"1977:6:101","nodeType":"YulIdentifier","src":"1977:6:101"},{"arguments":[{"arguments":[{"name":"result","nativeSrc":"1993:6:101","nodeType":"YulIdentifier","src":"1993:6:101"},{"kind":"number","nativeSrc":"2001:2:101","nodeType":"YulLiteral","src":"2001:2:101","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"1989:3:101","nodeType":"YulIdentifier","src":"1989:3:101"},"nativeSrc":"1989:15:101","nodeType":"YulFunctionCall","src":"1989:15:101"},{"arguments":[{"kind":"number","nativeSrc":"2010:2:101","nodeType":"YulLiteral","src":"2010:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"2006:3:101","nodeType":"YulIdentifier","src":"2006:3:101"},"nativeSrc":"2006:7:101","nodeType":"YulFunctionCall","src":"2006:7:101"}],"functionName":{"name":"and","nativeSrc":"1985:3:101","nodeType":"YulIdentifier","src":"1985:3:101"},"nativeSrc":"1985:29:101","nodeType":"YulFunctionCall","src":"1985:29:101"}],"functionName":{"name":"add","nativeSrc":"1973:3:101","nodeType":"YulIdentifier","src":"1973:3:101"},"nativeSrc":"1973:42:101","nodeType":"YulFunctionCall","src":"1973:42:101"},"variables":[{"name":"newFreePtr","nativeSrc":"1959:10:101","nodeType":"YulTypedName","src":"1959:10:101","type":""}]},{"body":{"nativeSrc":"2090:22:101","nodeType":"YulBlock","src":"2090:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2092:16:101","nodeType":"YulIdentifier","src":"2092:16:101"},"nativeSrc":"2092:18:101","nodeType":"YulFunctionCall","src":"2092:18:101"},"nativeSrc":"2092:18:101","nodeType":"YulExpressionStatement","src":"2092:18:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"2033:10:101","nodeType":"YulIdentifier","src":"2033:10:101"},{"kind":"number","nativeSrc":"2045:18:101","nodeType":"YulLiteral","src":"2045:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2030:2:101","nodeType":"YulIdentifier","src":"2030:2:101"},"nativeSrc":"2030:34:101","nodeType":"YulFunctionCall","src":"2030:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"2069:10:101","nodeType":"YulIdentifier","src":"2069:10:101"},{"name":"memPtr","nativeSrc":"2081:6:101","nodeType":"YulIdentifier","src":"2081:6:101"}],"functionName":{"name":"lt","nativeSrc":"2066:2:101","nodeType":"YulIdentifier","src":"2066:2:101"},"nativeSrc":"2066:22:101","nodeType":"YulFunctionCall","src":"2066:22:101"}],"functionName":{"name":"or","nativeSrc":"2027:2:101","nodeType":"YulIdentifier","src":"2027:2:101"},"nativeSrc":"2027:62:101","nodeType":"YulFunctionCall","src":"2027:62:101"},"nativeSrc":"2024:88:101","nodeType":"YulIf","src":"2024:88:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2128:2:101","nodeType":"YulLiteral","src":"2128:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"2132:10:101","nodeType":"YulIdentifier","src":"2132:10:101"}],"functionName":{"name":"mstore","nativeSrc":"2121:6:101","nodeType":"YulIdentifier","src":"2121:6:101"},"nativeSrc":"2121:22:101","nodeType":"YulFunctionCall","src":"2121:22:101"},"nativeSrc":"2121:22:101","nodeType":"YulExpressionStatement","src":"2121:22:101"},{"nativeSrc":"2152:17:101","nodeType":"YulAssignment","src":"2152:17:101","value":{"name":"memPtr","nativeSrc":"2163:6:101","nodeType":"YulIdentifier","src":"2163:6:101"},"variableNames":[{"name":"array_1","nativeSrc":"2152:7:101","nodeType":"YulIdentifier","src":"2152:7:101"}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"2185:6:101","nodeType":"YulIdentifier","src":"2185:6:101"},{"name":"length","nativeSrc":"2193:6:101","nodeType":"YulIdentifier","src":"2193:6:101"}],"functionName":{"name":"mstore","nativeSrc":"2178:6:101","nodeType":"YulIdentifier","src":"2178:6:101"},"nativeSrc":"2178:22:101","nodeType":"YulFunctionCall","src":"2178:22:101"},"nativeSrc":"2178:22:101","nodeType":"YulExpressionStatement","src":"2178:22:101"},{"body":{"nativeSrc":"2238:16:101","nodeType":"YulBlock","src":"2238:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2247:1:101","nodeType":"YulLiteral","src":"2247:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2250:1:101","nodeType":"YulLiteral","src":"2250:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2240:6:101","nodeType":"YulIdentifier","src":"2240:6:101"},"nativeSrc":"2240:12:101","nodeType":"YulFunctionCall","src":"2240:12:101"},"nativeSrc":"2240:12:101","nodeType":"YulExpressionStatement","src":"2240:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"2219:3:101","nodeType":"YulIdentifier","src":"2219:3:101"},{"name":"length","nativeSrc":"2224:6:101","nodeType":"YulIdentifier","src":"2224:6:101"}],"functionName":{"name":"add","nativeSrc":"2215:3:101","nodeType":"YulIdentifier","src":"2215:3:101"},"nativeSrc":"2215:16:101","nodeType":"YulFunctionCall","src":"2215:16:101"},{"name":"end","nativeSrc":"2233:3:101","nodeType":"YulIdentifier","src":"2233:3:101"}],"functionName":{"name":"gt","nativeSrc":"2212:2:101","nodeType":"YulIdentifier","src":"2212:2:101"},"nativeSrc":"2212:25:101","nodeType":"YulFunctionCall","src":"2212:25:101"},"nativeSrc":"2209:45:101","nodeType":"YulIf","src":"2209:45:101"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"2280:6:101","nodeType":"YulIdentifier","src":"2280:6:101"},{"kind":"number","nativeSrc":"2288:4:101","nodeType":"YulLiteral","src":"2288:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2276:3:101","nodeType":"YulIdentifier","src":"2276:3:101"},"nativeSrc":"2276:17:101","nodeType":"YulFunctionCall","src":"2276:17:101"},{"name":"src","nativeSrc":"2295:3:101","nodeType":"YulIdentifier","src":"2295:3:101"},{"name":"length","nativeSrc":"2300:6:101","nodeType":"YulIdentifier","src":"2300:6:101"}],"functionName":{"name":"calldatacopy","nativeSrc":"2263:12:101","nodeType":"YulIdentifier","src":"2263:12:101"},"nativeSrc":"2263:44:101","nodeType":"YulFunctionCall","src":"2263:44:101"},"nativeSrc":"2263:44:101","nodeType":"YulExpressionStatement","src":"2263:44:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"2331:6:101","nodeType":"YulIdentifier","src":"2331:6:101"},{"name":"length","nativeSrc":"2339:6:101","nodeType":"YulIdentifier","src":"2339:6:101"}],"functionName":{"name":"add","nativeSrc":"2327:3:101","nodeType":"YulIdentifier","src":"2327:3:101"},"nativeSrc":"2327:19:101","nodeType":"YulFunctionCall","src":"2327:19:101"},{"kind":"number","nativeSrc":"2348:4:101","nodeType":"YulLiteral","src":"2348:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2323:3:101","nodeType":"YulIdentifier","src":"2323:3:101"},"nativeSrc":"2323:30:101","nodeType":"YulFunctionCall","src":"2323:30:101"},{"kind":"number","nativeSrc":"2355:1:101","nodeType":"YulLiteral","src":"2355:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"2316:6:101","nodeType":"YulIdentifier","src":"2316:6:101"},"nativeSrc":"2316:41:101","nodeType":"YulFunctionCall","src":"2316:41:101"},"nativeSrc":"2316:41:101","nodeType":"YulExpressionStatement","src":"2316:41:101"},{"nativeSrc":"2366:15:101","nodeType":"YulAssignment","src":"2366:15:101","value":{"name":"memPtr","nativeSrc":"2375:6:101","nodeType":"YulIdentifier","src":"2375:6:101"},"variableNames":[{"name":"array","nativeSrc":"2366:5:101","nodeType":"YulIdentifier","src":"2366:5:101"}]}]},"name":"abi_decode_string","nativeSrc":"1498:889:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"1525:6:101","nodeType":"YulTypedName","src":"1525:6:101","type":""},{"name":"end","nativeSrc":"1533:3:101","nodeType":"YulTypedName","src":"1533:3:101","type":""}],"returnVariables":[{"name":"array","nativeSrc":"1541:5:101","nodeType":"YulTypedName","src":"1541:5:101","type":""}],"src":"1498:889:101"},{"body":{"nativeSrc":"2437:86:101","nodeType":"YulBlock","src":"2437:86:101","statements":[{"body":{"nativeSrc":"2501:16:101","nodeType":"YulBlock","src":"2501:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2510:1:101","nodeType":"YulLiteral","src":"2510:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2513:1:101","nodeType":"YulLiteral","src":"2513:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2503:6:101","nodeType":"YulIdentifier","src":"2503:6:101"},"nativeSrc":"2503:12:101","nodeType":"YulFunctionCall","src":"2503:12:101"},"nativeSrc":"2503:12:101","nodeType":"YulExpressionStatement","src":"2503:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2460:5:101","nodeType":"YulIdentifier","src":"2460:5:101"},{"arguments":[{"name":"value","nativeSrc":"2471:5:101","nodeType":"YulIdentifier","src":"2471:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2486:3:101","nodeType":"YulLiteral","src":"2486:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"2491:1:101","nodeType":"YulLiteral","src":"2491:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2482:3:101","nodeType":"YulIdentifier","src":"2482:3:101"},"nativeSrc":"2482:11:101","nodeType":"YulFunctionCall","src":"2482:11:101"},{"kind":"number","nativeSrc":"2495:1:101","nodeType":"YulLiteral","src":"2495:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2478:3:101","nodeType":"YulIdentifier","src":"2478:3:101"},"nativeSrc":"2478:19:101","nodeType":"YulFunctionCall","src":"2478:19:101"}],"functionName":{"name":"and","nativeSrc":"2467:3:101","nodeType":"YulIdentifier","src":"2467:3:101"},"nativeSrc":"2467:31:101","nodeType":"YulFunctionCall","src":"2467:31:101"}],"functionName":{"name":"eq","nativeSrc":"2457:2:101","nodeType":"YulIdentifier","src":"2457:2:101"},"nativeSrc":"2457:42:101","nodeType":"YulFunctionCall","src":"2457:42:101"}],"functionName":{"name":"iszero","nativeSrc":"2450:6:101","nodeType":"YulIdentifier","src":"2450:6:101"},"nativeSrc":"2450:50:101","nodeType":"YulFunctionCall","src":"2450:50:101"},"nativeSrc":"2447:70:101","nodeType":"YulIf","src":"2447:70:101"}]},"name":"validator_revert_address","nativeSrc":"2392:131:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"2426:5:101","nodeType":"YulTypedName","src":"2426:5:101","type":""}],"src":"2392:131:101"},{"body":{"nativeSrc":"2652:549:101","nodeType":"YulBlock","src":"2652:549:101","statements":[{"body":{"nativeSrc":"2698:16:101","nodeType":"YulBlock","src":"2698:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2707:1:101","nodeType":"YulLiteral","src":"2707:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2710:1:101","nodeType":"YulLiteral","src":"2710:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2700:6:101","nodeType":"YulIdentifier","src":"2700:6:101"},"nativeSrc":"2700:12:101","nodeType":"YulFunctionCall","src":"2700:12:101"},"nativeSrc":"2700:12:101","nodeType":"YulExpressionStatement","src":"2700:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2673:7:101","nodeType":"YulIdentifier","src":"2673:7:101"},{"name":"headStart","nativeSrc":"2682:9:101","nodeType":"YulIdentifier","src":"2682:9:101"}],"functionName":{"name":"sub","nativeSrc":"2669:3:101","nodeType":"YulIdentifier","src":"2669:3:101"},"nativeSrc":"2669:23:101","nodeType":"YulFunctionCall","src":"2669:23:101"},{"kind":"number","nativeSrc":"2694:2:101","nodeType":"YulLiteral","src":"2694:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"2665:3:101","nodeType":"YulIdentifier","src":"2665:3:101"},"nativeSrc":"2665:32:101","nodeType":"YulFunctionCall","src":"2665:32:101"},"nativeSrc":"2662:52:101","nodeType":"YulIf","src":"2662:52:101"},{"nativeSrc":"2723:37:101","nodeType":"YulVariableDeclaration","src":"2723:37:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2750:9:101","nodeType":"YulIdentifier","src":"2750:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"2737:12:101","nodeType":"YulIdentifier","src":"2737:12:101"},"nativeSrc":"2737:23:101","nodeType":"YulFunctionCall","src":"2737:23:101"},"variables":[{"name":"offset","nativeSrc":"2727:6:101","nodeType":"YulTypedName","src":"2727:6:101","type":""}]},{"body":{"nativeSrc":"2803:16:101","nodeType":"YulBlock","src":"2803:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2812:1:101","nodeType":"YulLiteral","src":"2812:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2815:1:101","nodeType":"YulLiteral","src":"2815:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2805:6:101","nodeType":"YulIdentifier","src":"2805:6:101"},"nativeSrc":"2805:12:101","nodeType":"YulFunctionCall","src":"2805:12:101"},"nativeSrc":"2805:12:101","nodeType":"YulExpressionStatement","src":"2805:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"2775:6:101","nodeType":"YulIdentifier","src":"2775:6:101"},{"kind":"number","nativeSrc":"2783:18:101","nodeType":"YulLiteral","src":"2783:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2772:2:101","nodeType":"YulIdentifier","src":"2772:2:101"},"nativeSrc":"2772:30:101","nodeType":"YulFunctionCall","src":"2772:30:101"},"nativeSrc":"2769:50:101","nodeType":"YulIf","src":"2769:50:101"},{"nativeSrc":"2828:60:101","nodeType":"YulAssignment","src":"2828:60:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2860:9:101","nodeType":"YulIdentifier","src":"2860:9:101"},{"name":"offset","nativeSrc":"2871:6:101","nodeType":"YulIdentifier","src":"2871:6:101"}],"functionName":{"name":"add","nativeSrc":"2856:3:101","nodeType":"YulIdentifier","src":"2856:3:101"},"nativeSrc":"2856:22:101","nodeType":"YulFunctionCall","src":"2856:22:101"},{"name":"dataEnd","nativeSrc":"2880:7:101","nodeType":"YulIdentifier","src":"2880:7:101"}],"functionName":{"name":"abi_decode_string","nativeSrc":"2838:17:101","nodeType":"YulIdentifier","src":"2838:17:101"},"nativeSrc":"2838:50:101","nodeType":"YulFunctionCall","src":"2838:50:101"},"variableNames":[{"name":"value0","nativeSrc":"2828:6:101","nodeType":"YulIdentifier","src":"2828:6:101"}]},{"nativeSrc":"2897:48:101","nodeType":"YulVariableDeclaration","src":"2897:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2930:9:101","nodeType":"YulIdentifier","src":"2930:9:101"},{"kind":"number","nativeSrc":"2941:2:101","nodeType":"YulLiteral","src":"2941:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2926:3:101","nodeType":"YulIdentifier","src":"2926:3:101"},"nativeSrc":"2926:18:101","nodeType":"YulFunctionCall","src":"2926:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"2913:12:101","nodeType":"YulIdentifier","src":"2913:12:101"},"nativeSrc":"2913:32:101","nodeType":"YulFunctionCall","src":"2913:32:101"},"variables":[{"name":"offset_1","nativeSrc":"2901:8:101","nodeType":"YulTypedName","src":"2901:8:101","type":""}]},{"body":{"nativeSrc":"2990:16:101","nodeType":"YulBlock","src":"2990:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2999:1:101","nodeType":"YulLiteral","src":"2999:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3002:1:101","nodeType":"YulLiteral","src":"3002:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2992:6:101","nodeType":"YulIdentifier","src":"2992:6:101"},"nativeSrc":"2992:12:101","nodeType":"YulFunctionCall","src":"2992:12:101"},"nativeSrc":"2992:12:101","nodeType":"YulExpressionStatement","src":"2992:12:101"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"2960:8:101","nodeType":"YulIdentifier","src":"2960:8:101"},{"kind":"number","nativeSrc":"2970:18:101","nodeType":"YulLiteral","src":"2970:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2957:2:101","nodeType":"YulIdentifier","src":"2957:2:101"},"nativeSrc":"2957:32:101","nodeType":"YulFunctionCall","src":"2957:32:101"},"nativeSrc":"2954:52:101","nodeType":"YulIf","src":"2954:52:101"},{"nativeSrc":"3015:62:101","nodeType":"YulAssignment","src":"3015:62:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3047:9:101","nodeType":"YulIdentifier","src":"3047:9:101"},{"name":"offset_1","nativeSrc":"3058:8:101","nodeType":"YulIdentifier","src":"3058:8:101"}],"functionName":{"name":"add","nativeSrc":"3043:3:101","nodeType":"YulIdentifier","src":"3043:3:101"},"nativeSrc":"3043:24:101","nodeType":"YulFunctionCall","src":"3043:24:101"},{"name":"dataEnd","nativeSrc":"3069:7:101","nodeType":"YulIdentifier","src":"3069:7:101"}],"functionName":{"name":"abi_decode_string","nativeSrc":"3025:17:101","nodeType":"YulIdentifier","src":"3025:17:101"},"nativeSrc":"3025:52:101","nodeType":"YulFunctionCall","src":"3025:52:101"},"variableNames":[{"name":"value1","nativeSrc":"3015:6:101","nodeType":"YulIdentifier","src":"3015:6:101"}]},{"nativeSrc":"3086:45:101","nodeType":"YulVariableDeclaration","src":"3086:45:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3116:9:101","nodeType":"YulIdentifier","src":"3116:9:101"},{"kind":"number","nativeSrc":"3127:2:101","nodeType":"YulLiteral","src":"3127:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3112:3:101","nodeType":"YulIdentifier","src":"3112:3:101"},"nativeSrc":"3112:18:101","nodeType":"YulFunctionCall","src":"3112:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3099:12:101","nodeType":"YulIdentifier","src":"3099:12:101"},"nativeSrc":"3099:32:101","nodeType":"YulFunctionCall","src":"3099:32:101"},"variables":[{"name":"value","nativeSrc":"3090:5:101","nodeType":"YulTypedName","src":"3090:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3165:5:101","nodeType":"YulIdentifier","src":"3165:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3140:24:101","nodeType":"YulIdentifier","src":"3140:24:101"},"nativeSrc":"3140:31:101","nodeType":"YulFunctionCall","src":"3140:31:101"},"nativeSrc":"3140:31:101","nodeType":"YulExpressionStatement","src":"3140:31:101"},{"nativeSrc":"3180:15:101","nodeType":"YulAssignment","src":"3180:15:101","value":{"name":"value","nativeSrc":"3190:5:101","nodeType":"YulIdentifier","src":"3190:5:101"},"variableNames":[{"name":"value2","nativeSrc":"3180:6:101","nodeType":"YulIdentifier","src":"3180:6:101"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_address","nativeSrc":"2528:673:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2602:9:101","nodeType":"YulTypedName","src":"2602:9:101","type":""},{"name":"dataEnd","nativeSrc":"2613:7:101","nodeType":"YulTypedName","src":"2613:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2625:6:101","nodeType":"YulTypedName","src":"2625:6:101","type":""},{"name":"value1","nativeSrc":"2633:6:101","nodeType":"YulTypedName","src":"2633:6:101","type":""},{"name":"value2","nativeSrc":"2641:6:101","nodeType":"YulTypedName","src":"2641:6:101","type":""}],"src":"2528:673:101"},{"body":{"nativeSrc":"3276:156:101","nodeType":"YulBlock","src":"3276:156:101","statements":[{"body":{"nativeSrc":"3322:16:101","nodeType":"YulBlock","src":"3322:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3331:1:101","nodeType":"YulLiteral","src":"3331:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3334:1:101","nodeType":"YulLiteral","src":"3334:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3324:6:101","nodeType":"YulIdentifier","src":"3324:6:101"},"nativeSrc":"3324:12:101","nodeType":"YulFunctionCall","src":"3324:12:101"},"nativeSrc":"3324:12:101","nodeType":"YulExpressionStatement","src":"3324:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3297:7:101","nodeType":"YulIdentifier","src":"3297:7:101"},{"name":"headStart","nativeSrc":"3306:9:101","nodeType":"YulIdentifier","src":"3306:9:101"}],"functionName":{"name":"sub","nativeSrc":"3293:3:101","nodeType":"YulIdentifier","src":"3293:3:101"},"nativeSrc":"3293:23:101","nodeType":"YulFunctionCall","src":"3293:23:101"},{"kind":"number","nativeSrc":"3318:2:101","nodeType":"YulLiteral","src":"3318:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"3289:3:101","nodeType":"YulIdentifier","src":"3289:3:101"},"nativeSrc":"3289:32:101","nodeType":"YulFunctionCall","src":"3289:32:101"},"nativeSrc":"3286:52:101","nodeType":"YulIf","src":"3286:52:101"},{"nativeSrc":"3347:14:101","nodeType":"YulVariableDeclaration","src":"3347:14:101","value":{"kind":"number","nativeSrc":"3360:1:101","nodeType":"YulLiteral","src":"3360:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3351:5:101","nodeType":"YulTypedName","src":"3351:5:101","type":""}]},{"nativeSrc":"3370:32:101","nodeType":"YulAssignment","src":"3370:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3392:9:101","nodeType":"YulIdentifier","src":"3392:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"3379:12:101","nodeType":"YulIdentifier","src":"3379:12:101"},"nativeSrc":"3379:23:101","nodeType":"YulFunctionCall","src":"3379:23:101"},"variableNames":[{"name":"value","nativeSrc":"3370:5:101","nodeType":"YulIdentifier","src":"3370:5:101"}]},{"nativeSrc":"3411:15:101","nodeType":"YulAssignment","src":"3411:15:101","value":{"name":"value","nativeSrc":"3421:5:101","nodeType":"YulIdentifier","src":"3421:5:101"},"variableNames":[{"name":"value0","nativeSrc":"3411:6:101","nodeType":"YulIdentifier","src":"3411:6:101"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"3206:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3242:9:101","nodeType":"YulTypedName","src":"3242:9:101","type":""},{"name":"dataEnd","nativeSrc":"3253:7:101","nodeType":"YulTypedName","src":"3253:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3265:6:101","nodeType":"YulTypedName","src":"3265:6:101","type":""}],"src":"3206:226:101"},{"body":{"nativeSrc":"3538:102:101","nodeType":"YulBlock","src":"3538:102:101","statements":[{"nativeSrc":"3548:26:101","nodeType":"YulAssignment","src":"3548:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3560:9:101","nodeType":"YulIdentifier","src":"3560:9:101"},{"kind":"number","nativeSrc":"3571:2:101","nodeType":"YulLiteral","src":"3571:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3556:3:101","nodeType":"YulIdentifier","src":"3556:3:101"},"nativeSrc":"3556:18:101","nodeType":"YulFunctionCall","src":"3556:18:101"},"variableNames":[{"name":"tail","nativeSrc":"3548:4:101","nodeType":"YulIdentifier","src":"3548:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3590:9:101","nodeType":"YulIdentifier","src":"3590:9:101"},{"arguments":[{"name":"value0","nativeSrc":"3605:6:101","nodeType":"YulIdentifier","src":"3605:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3621:3:101","nodeType":"YulLiteral","src":"3621:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"3626:1:101","nodeType":"YulLiteral","src":"3626:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3617:3:101","nodeType":"YulIdentifier","src":"3617:3:101"},"nativeSrc":"3617:11:101","nodeType":"YulFunctionCall","src":"3617:11:101"},{"kind":"number","nativeSrc":"3630:1:101","nodeType":"YulLiteral","src":"3630:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3613:3:101","nodeType":"YulIdentifier","src":"3613:3:101"},"nativeSrc":"3613:19:101","nodeType":"YulFunctionCall","src":"3613:19:101"}],"functionName":{"name":"and","nativeSrc":"3601:3:101","nodeType":"YulIdentifier","src":"3601:3:101"},"nativeSrc":"3601:32:101","nodeType":"YulFunctionCall","src":"3601:32:101"}],"functionName":{"name":"mstore","nativeSrc":"3583:6:101","nodeType":"YulIdentifier","src":"3583:6:101"},"nativeSrc":"3583:51:101","nodeType":"YulFunctionCall","src":"3583:51:101"},"nativeSrc":"3583:51:101","nodeType":"YulExpressionStatement","src":"3583:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"3437:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3507:9:101","nodeType":"YulTypedName","src":"3507:9:101","type":""},{"name":"value0","nativeSrc":"3518:6:101","nodeType":"YulTypedName","src":"3518:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3529:4:101","nodeType":"YulTypedName","src":"3529:4:101","type":""}],"src":"3437:203:101"},{"body":{"nativeSrc":"3732:280:101","nodeType":"YulBlock","src":"3732:280:101","statements":[{"body":{"nativeSrc":"3778:16:101","nodeType":"YulBlock","src":"3778:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3787:1:101","nodeType":"YulLiteral","src":"3787:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3790:1:101","nodeType":"YulLiteral","src":"3790:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3780:6:101","nodeType":"YulIdentifier","src":"3780:6:101"},"nativeSrc":"3780:12:101","nodeType":"YulFunctionCall","src":"3780:12:101"},"nativeSrc":"3780:12:101","nodeType":"YulExpressionStatement","src":"3780:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3753:7:101","nodeType":"YulIdentifier","src":"3753:7:101"},{"name":"headStart","nativeSrc":"3762:9:101","nodeType":"YulIdentifier","src":"3762:9:101"}],"functionName":{"name":"sub","nativeSrc":"3749:3:101","nodeType":"YulIdentifier","src":"3749:3:101"},"nativeSrc":"3749:23:101","nodeType":"YulFunctionCall","src":"3749:23:101"},{"kind":"number","nativeSrc":"3774:2:101","nodeType":"YulLiteral","src":"3774:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3745:3:101","nodeType":"YulIdentifier","src":"3745:3:101"},"nativeSrc":"3745:32:101","nodeType":"YulFunctionCall","src":"3745:32:101"},"nativeSrc":"3742:52:101","nodeType":"YulIf","src":"3742:52:101"},{"nativeSrc":"3803:36:101","nodeType":"YulVariableDeclaration","src":"3803:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3829:9:101","nodeType":"YulIdentifier","src":"3829:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"3816:12:101","nodeType":"YulIdentifier","src":"3816:12:101"},"nativeSrc":"3816:23:101","nodeType":"YulFunctionCall","src":"3816:23:101"},"variables":[{"name":"value","nativeSrc":"3807:5:101","nodeType":"YulTypedName","src":"3807:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3873:5:101","nodeType":"YulIdentifier","src":"3873:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3848:24:101","nodeType":"YulIdentifier","src":"3848:24:101"},"nativeSrc":"3848:31:101","nodeType":"YulFunctionCall","src":"3848:31:101"},"nativeSrc":"3848:31:101","nodeType":"YulExpressionStatement","src":"3848:31:101"},{"nativeSrc":"3888:15:101","nodeType":"YulAssignment","src":"3888:15:101","value":{"name":"value","nativeSrc":"3898:5:101","nodeType":"YulIdentifier","src":"3898:5:101"},"variableNames":[{"name":"value0","nativeSrc":"3888:6:101","nodeType":"YulIdentifier","src":"3888:6:101"}]},{"nativeSrc":"3912:16:101","nodeType":"YulVariableDeclaration","src":"3912:16:101","value":{"kind":"number","nativeSrc":"3927:1:101","nodeType":"YulLiteral","src":"3927:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"3916:7:101","nodeType":"YulTypedName","src":"3916:7:101","type":""}]},{"nativeSrc":"3937:43:101","nodeType":"YulAssignment","src":"3937:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3965:9:101","nodeType":"YulIdentifier","src":"3965:9:101"},{"kind":"number","nativeSrc":"3976:2:101","nodeType":"YulLiteral","src":"3976:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3961:3:101","nodeType":"YulIdentifier","src":"3961:3:101"},"nativeSrc":"3961:18:101","nodeType":"YulFunctionCall","src":"3961:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3948:12:101","nodeType":"YulIdentifier","src":"3948:12:101"},"nativeSrc":"3948:32:101","nodeType":"YulFunctionCall","src":"3948:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"3937:7:101","nodeType":"YulIdentifier","src":"3937:7:101"}]},{"nativeSrc":"3989:17:101","nodeType":"YulAssignment","src":"3989:17:101","value":{"name":"value_1","nativeSrc":"3999:7:101","nodeType":"YulIdentifier","src":"3999:7:101"},"variableNames":[{"name":"value1","nativeSrc":"3989:6:101","nodeType":"YulIdentifier","src":"3989:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"3645:367:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3690:9:101","nodeType":"YulTypedName","src":"3690:9:101","type":""},{"name":"dataEnd","nativeSrc":"3701:7:101","nodeType":"YulTypedName","src":"3701:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3713:6:101","nodeType":"YulTypedName","src":"3713:6:101","type":""},{"name":"value1","nativeSrc":"3721:6:101","nodeType":"YulTypedName","src":"3721:6:101","type":""}],"src":"3645:367:101"},{"body":{"nativeSrc":"4065:117:101","nodeType":"YulBlock","src":"4065:117:101","statements":[{"nativeSrc":"4075:29:101","nodeType":"YulAssignment","src":"4075:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"4097:6:101","nodeType":"YulIdentifier","src":"4097:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"4084:12:101","nodeType":"YulIdentifier","src":"4084:12:101"},"nativeSrc":"4084:20:101","nodeType":"YulFunctionCall","src":"4084:20:101"},"variableNames":[{"name":"value","nativeSrc":"4075:5:101","nodeType":"YulIdentifier","src":"4075:5:101"}]},{"body":{"nativeSrc":"4160:16:101","nodeType":"YulBlock","src":"4160:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4169:1:101","nodeType":"YulLiteral","src":"4169:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4172:1:101","nodeType":"YulLiteral","src":"4172:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4162:6:101","nodeType":"YulIdentifier","src":"4162:6:101"},"nativeSrc":"4162:12:101","nodeType":"YulFunctionCall","src":"4162:12:101"},"nativeSrc":"4162:12:101","nodeType":"YulExpressionStatement","src":"4162:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4126:5:101","nodeType":"YulIdentifier","src":"4126:5:101"},{"arguments":[{"name":"value","nativeSrc":"4137:5:101","nodeType":"YulIdentifier","src":"4137:5:101"},{"kind":"number","nativeSrc":"4144:12:101","nodeType":"YulLiteral","src":"4144:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"4133:3:101","nodeType":"YulIdentifier","src":"4133:3:101"},"nativeSrc":"4133:24:101","nodeType":"YulFunctionCall","src":"4133:24:101"}],"functionName":{"name":"eq","nativeSrc":"4123:2:101","nodeType":"YulIdentifier","src":"4123:2:101"},"nativeSrc":"4123:35:101","nodeType":"YulFunctionCall","src":"4123:35:101"}],"functionName":{"name":"iszero","nativeSrc":"4116:6:101","nodeType":"YulIdentifier","src":"4116:6:101"},"nativeSrc":"4116:43:101","nodeType":"YulFunctionCall","src":"4116:43:101"},"nativeSrc":"4113:63:101","nodeType":"YulIf","src":"4113:63:101"}]},"name":"abi_decode_uint40","nativeSrc":"4017:165:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"4044:6:101","nodeType":"YulTypedName","src":"4044:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"4055:5:101","nodeType":"YulTypedName","src":"4055:5:101","type":""}],"src":"4017:165:101"},{"body":{"nativeSrc":"4254:1414:101","nodeType":"YulBlock","src":"4254:1414:101","statements":[{"body":{"nativeSrc":"4300:16:101","nodeType":"YulBlock","src":"4300:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4309:1:101","nodeType":"YulLiteral","src":"4309:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4312:1:101","nodeType":"YulLiteral","src":"4312:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4302:6:101","nodeType":"YulIdentifier","src":"4302:6:101"},"nativeSrc":"4302:12:101","nodeType":"YulFunctionCall","src":"4302:12:101"},"nativeSrc":"4302:12:101","nodeType":"YulExpressionStatement","src":"4302:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"4275:3:101","nodeType":"YulIdentifier","src":"4275:3:101"},{"name":"headStart","nativeSrc":"4280:9:101","nodeType":"YulIdentifier","src":"4280:9:101"}],"functionName":{"name":"sub","nativeSrc":"4271:3:101","nodeType":"YulIdentifier","src":"4271:3:101"},"nativeSrc":"4271:19:101","nodeType":"YulFunctionCall","src":"4271:19:101"},{"kind":"number","nativeSrc":"4292:6:101","nodeType":"YulLiteral","src":"4292:6:101","type":"","value":"0x0180"}],"functionName":{"name":"slt","nativeSrc":"4267:3:101","nodeType":"YulIdentifier","src":"4267:3:101"},"nativeSrc":"4267:32:101","nodeType":"YulFunctionCall","src":"4267:32:101"},"nativeSrc":"4264:52:101","nodeType":"YulIf","src":"4264:52:101"},{"nativeSrc":"4325:26:101","nodeType":"YulAssignment","src":"4325:26:101","value":{"arguments":[],"functionName":{"name":"allocate_memory","nativeSrc":"4334:15:101","nodeType":"YulIdentifier","src":"4334:15:101"},"nativeSrc":"4334:17:101","nodeType":"YulFunctionCall","src":"4334:17:101"},"variableNames":[{"name":"value","nativeSrc":"4325:5:101","nodeType":"YulIdentifier","src":"4325:5:101"}]},{"nativeSrc":"4360:16:101","nodeType":"YulVariableDeclaration","src":"4360:16:101","value":{"kind":"number","nativeSrc":"4375:1:101","nodeType":"YulLiteral","src":"4375:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"4364:7:101","nodeType":"YulTypedName","src":"4364:7:101","type":""}]},{"nativeSrc":"4385:34:101","nodeType":"YulAssignment","src":"4385:34:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4409:9:101","nodeType":"YulIdentifier","src":"4409:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"4396:12:101","nodeType":"YulIdentifier","src":"4396:12:101"},"nativeSrc":"4396:23:101","nodeType":"YulFunctionCall","src":"4396:23:101"},"variableNames":[{"name":"value_1","nativeSrc":"4385:7:101","nodeType":"YulIdentifier","src":"4385:7:101"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4435:5:101","nodeType":"YulIdentifier","src":"4435:5:101"},{"name":"value_1","nativeSrc":"4442:7:101","nodeType":"YulIdentifier","src":"4442:7:101"}],"functionName":{"name":"mstore","nativeSrc":"4428:6:101","nodeType":"YulIdentifier","src":"4428:6:101"},"nativeSrc":"4428:22:101","nodeType":"YulFunctionCall","src":"4428:22:101"},"nativeSrc":"4428:22:101","nodeType":"YulExpressionStatement","src":"4428:22:101"},{"nativeSrc":"4459:16:101","nodeType":"YulVariableDeclaration","src":"4459:16:101","value":{"kind":"number","nativeSrc":"4474:1:101","nodeType":"YulLiteral","src":"4474:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"4463:7:101","nodeType":"YulTypedName","src":"4463:7:101","type":""}]},{"nativeSrc":"4484:43:101","nodeType":"YulAssignment","src":"4484:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4512:9:101","nodeType":"YulIdentifier","src":"4512:9:101"},{"kind":"number","nativeSrc":"4523:2:101","nodeType":"YulLiteral","src":"4523:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4508:3:101","nodeType":"YulIdentifier","src":"4508:3:101"},"nativeSrc":"4508:18:101","nodeType":"YulFunctionCall","src":"4508:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"4495:12:101","nodeType":"YulIdentifier","src":"4495:12:101"},"nativeSrc":"4495:32:101","nodeType":"YulFunctionCall","src":"4495:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"4484:7:101","nodeType":"YulIdentifier","src":"4484:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4547:5:101","nodeType":"YulIdentifier","src":"4547:5:101"},{"kind":"number","nativeSrc":"4554:2:101","nodeType":"YulLiteral","src":"4554:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4543:3:101","nodeType":"YulIdentifier","src":"4543:3:101"},"nativeSrc":"4543:14:101","nodeType":"YulFunctionCall","src":"4543:14:101"},{"name":"value_2","nativeSrc":"4559:7:101","nodeType":"YulIdentifier","src":"4559:7:101"}],"functionName":{"name":"mstore","nativeSrc":"4536:6:101","nodeType":"YulIdentifier","src":"4536:6:101"},"nativeSrc":"4536:31:101","nodeType":"YulFunctionCall","src":"4536:31:101"},"nativeSrc":"4536:31:101","nodeType":"YulExpressionStatement","src":"4536:31:101"},{"nativeSrc":"4576:16:101","nodeType":"YulVariableDeclaration","src":"4576:16:101","value":{"kind":"number","nativeSrc":"4591:1:101","nodeType":"YulLiteral","src":"4591:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"4580:7:101","nodeType":"YulTypedName","src":"4580:7:101","type":""}]},{"nativeSrc":"4601:43:101","nodeType":"YulAssignment","src":"4601:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4629:9:101","nodeType":"YulIdentifier","src":"4629:9:101"},{"kind":"number","nativeSrc":"4640:2:101","nodeType":"YulLiteral","src":"4640:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4625:3:101","nodeType":"YulIdentifier","src":"4625:3:101"},"nativeSrc":"4625:18:101","nodeType":"YulFunctionCall","src":"4625:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"4612:12:101","nodeType":"YulIdentifier","src":"4612:12:101"},"nativeSrc":"4612:32:101","nodeType":"YulFunctionCall","src":"4612:32:101"},"variableNames":[{"name":"value_3","nativeSrc":"4601:7:101","nodeType":"YulIdentifier","src":"4601:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4664:5:101","nodeType":"YulIdentifier","src":"4664:5:101"},{"kind":"number","nativeSrc":"4671:2:101","nodeType":"YulLiteral","src":"4671:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4660:3:101","nodeType":"YulIdentifier","src":"4660:3:101"},"nativeSrc":"4660:14:101","nodeType":"YulFunctionCall","src":"4660:14:101"},{"name":"value_3","nativeSrc":"4676:7:101","nodeType":"YulIdentifier","src":"4676:7:101"}],"functionName":{"name":"mstore","nativeSrc":"4653:6:101","nodeType":"YulIdentifier","src":"4653:6:101"},"nativeSrc":"4653:31:101","nodeType":"YulFunctionCall","src":"4653:31:101"},"nativeSrc":"4653:31:101","nodeType":"YulExpressionStatement","src":"4653:31:101"},{"nativeSrc":"4693:16:101","nodeType":"YulVariableDeclaration","src":"4693:16:101","value":{"kind":"number","nativeSrc":"4708:1:101","nodeType":"YulLiteral","src":"4708:1:101","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"4697:7:101","nodeType":"YulTypedName","src":"4697:7:101","type":""}]},{"nativeSrc":"4718:43:101","nodeType":"YulAssignment","src":"4718:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4746:9:101","nodeType":"YulIdentifier","src":"4746:9:101"},{"kind":"number","nativeSrc":"4757:2:101","nodeType":"YulLiteral","src":"4757:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4742:3:101","nodeType":"YulIdentifier","src":"4742:3:101"},"nativeSrc":"4742:18:101","nodeType":"YulFunctionCall","src":"4742:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"4729:12:101","nodeType":"YulIdentifier","src":"4729:12:101"},"nativeSrc":"4729:32:101","nodeType":"YulFunctionCall","src":"4729:32:101"},"variableNames":[{"name":"value_4","nativeSrc":"4718:7:101","nodeType":"YulIdentifier","src":"4718:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4781:5:101","nodeType":"YulIdentifier","src":"4781:5:101"},{"kind":"number","nativeSrc":"4788:2:101","nodeType":"YulLiteral","src":"4788:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4777:3:101","nodeType":"YulIdentifier","src":"4777:3:101"},"nativeSrc":"4777:14:101","nodeType":"YulFunctionCall","src":"4777:14:101"},{"name":"value_4","nativeSrc":"4793:7:101","nodeType":"YulIdentifier","src":"4793:7:101"}],"functionName":{"name":"mstore","nativeSrc":"4770:6:101","nodeType":"YulIdentifier","src":"4770:6:101"},"nativeSrc":"4770:31:101","nodeType":"YulFunctionCall","src":"4770:31:101"},"nativeSrc":"4770:31:101","nodeType":"YulExpressionStatement","src":"4770:31:101"},{"nativeSrc":"4810:16:101","nodeType":"YulVariableDeclaration","src":"4810:16:101","value":{"kind":"number","nativeSrc":"4825:1:101","nodeType":"YulLiteral","src":"4825:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"4814:7:101","nodeType":"YulTypedName","src":"4814:7:101","type":""}]},{"nativeSrc":"4835:44:101","nodeType":"YulAssignment","src":"4835:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4863:9:101","nodeType":"YulIdentifier","src":"4863:9:101"},{"kind":"number","nativeSrc":"4874:3:101","nodeType":"YulLiteral","src":"4874:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4859:3:101","nodeType":"YulIdentifier","src":"4859:3:101"},"nativeSrc":"4859:19:101","nodeType":"YulFunctionCall","src":"4859:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"4846:12:101","nodeType":"YulIdentifier","src":"4846:12:101"},"nativeSrc":"4846:33:101","nodeType":"YulFunctionCall","src":"4846:33:101"},"variableNames":[{"name":"value_5","nativeSrc":"4835:7:101","nodeType":"YulIdentifier","src":"4835:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4899:5:101","nodeType":"YulIdentifier","src":"4899:5:101"},{"kind":"number","nativeSrc":"4906:3:101","nodeType":"YulLiteral","src":"4906:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4895:3:101","nodeType":"YulIdentifier","src":"4895:3:101"},"nativeSrc":"4895:15:101","nodeType":"YulFunctionCall","src":"4895:15:101"},{"name":"value_5","nativeSrc":"4912:7:101","nodeType":"YulIdentifier","src":"4912:7:101"}],"functionName":{"name":"mstore","nativeSrc":"4888:6:101","nodeType":"YulIdentifier","src":"4888:6:101"},"nativeSrc":"4888:32:101","nodeType":"YulFunctionCall","src":"4888:32:101"},"nativeSrc":"4888:32:101","nodeType":"YulExpressionStatement","src":"4888:32:101"},{"nativeSrc":"4929:16:101","nodeType":"YulVariableDeclaration","src":"4929:16:101","value":{"kind":"number","nativeSrc":"4944:1:101","nodeType":"YulLiteral","src":"4944:1:101","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"4933:7:101","nodeType":"YulTypedName","src":"4933:7:101","type":""}]},{"nativeSrc":"4954:44:101","nodeType":"YulAssignment","src":"4954:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4982:9:101","nodeType":"YulIdentifier","src":"4982:9:101"},{"kind":"number","nativeSrc":"4993:3:101","nodeType":"YulLiteral","src":"4993:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"4978:3:101","nodeType":"YulIdentifier","src":"4978:3:101"},"nativeSrc":"4978:19:101","nodeType":"YulFunctionCall","src":"4978:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"4965:12:101","nodeType":"YulIdentifier","src":"4965:12:101"},"nativeSrc":"4965:33:101","nodeType":"YulFunctionCall","src":"4965:33:101"},"variableNames":[{"name":"value_6","nativeSrc":"4954:7:101","nodeType":"YulIdentifier","src":"4954:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5018:5:101","nodeType":"YulIdentifier","src":"5018:5:101"},{"kind":"number","nativeSrc":"5025:3:101","nodeType":"YulLiteral","src":"5025:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"5014:3:101","nodeType":"YulIdentifier","src":"5014:3:101"},"nativeSrc":"5014:15:101","nodeType":"YulFunctionCall","src":"5014:15:101"},{"name":"value_6","nativeSrc":"5031:7:101","nodeType":"YulIdentifier","src":"5031:7:101"}],"functionName":{"name":"mstore","nativeSrc":"5007:6:101","nodeType":"YulIdentifier","src":"5007:6:101"},"nativeSrc":"5007:32:101","nodeType":"YulFunctionCall","src":"5007:32:101"},"nativeSrc":"5007:32:101","nodeType":"YulExpressionStatement","src":"5007:32:101"},{"nativeSrc":"5048:16:101","nodeType":"YulVariableDeclaration","src":"5048:16:101","value":{"kind":"number","nativeSrc":"5063:1:101","nodeType":"YulLiteral","src":"5063:1:101","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"5052:7:101","nodeType":"YulTypedName","src":"5052:7:101","type":""}]},{"nativeSrc":"5073:44:101","nodeType":"YulAssignment","src":"5073:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5101:9:101","nodeType":"YulIdentifier","src":"5101:9:101"},{"kind":"number","nativeSrc":"5112:3:101","nodeType":"YulLiteral","src":"5112:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"5097:3:101","nodeType":"YulIdentifier","src":"5097:3:101"},"nativeSrc":"5097:19:101","nodeType":"YulFunctionCall","src":"5097:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"5084:12:101","nodeType":"YulIdentifier","src":"5084:12:101"},"nativeSrc":"5084:33:101","nodeType":"YulFunctionCall","src":"5084:33:101"},"variableNames":[{"name":"value_7","nativeSrc":"5073:7:101","nodeType":"YulIdentifier","src":"5073:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5137:5:101","nodeType":"YulIdentifier","src":"5137:5:101"},{"kind":"number","nativeSrc":"5144:3:101","nodeType":"YulLiteral","src":"5144:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"5133:3:101","nodeType":"YulIdentifier","src":"5133:3:101"},"nativeSrc":"5133:15:101","nodeType":"YulFunctionCall","src":"5133:15:101"},{"name":"value_7","nativeSrc":"5150:7:101","nodeType":"YulIdentifier","src":"5150:7:101"}],"functionName":{"name":"mstore","nativeSrc":"5126:6:101","nodeType":"YulIdentifier","src":"5126:6:101"},"nativeSrc":"5126:32:101","nodeType":"YulFunctionCall","src":"5126:32:101"},"nativeSrc":"5126:32:101","nodeType":"YulExpressionStatement","src":"5126:32:101"},{"nativeSrc":"5167:16:101","nodeType":"YulVariableDeclaration","src":"5167:16:101","value":{"kind":"number","nativeSrc":"5182:1:101","nodeType":"YulLiteral","src":"5182:1:101","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"5171:7:101","nodeType":"YulTypedName","src":"5171:7:101","type":""}]},{"nativeSrc":"5192:44:101","nodeType":"YulAssignment","src":"5192:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5220:9:101","nodeType":"YulIdentifier","src":"5220:9:101"},{"kind":"number","nativeSrc":"5231:3:101","nodeType":"YulLiteral","src":"5231:3:101","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"5216:3:101","nodeType":"YulIdentifier","src":"5216:3:101"},"nativeSrc":"5216:19:101","nodeType":"YulFunctionCall","src":"5216:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"5203:12:101","nodeType":"YulIdentifier","src":"5203:12:101"},"nativeSrc":"5203:33:101","nodeType":"YulFunctionCall","src":"5203:33:101"},"variableNames":[{"name":"value_8","nativeSrc":"5192:7:101","nodeType":"YulIdentifier","src":"5192:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5256:5:101","nodeType":"YulIdentifier","src":"5256:5:101"},{"kind":"number","nativeSrc":"5263:3:101","nodeType":"YulLiteral","src":"5263:3:101","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"5252:3:101","nodeType":"YulIdentifier","src":"5252:3:101"},"nativeSrc":"5252:15:101","nodeType":"YulFunctionCall","src":"5252:15:101"},{"name":"value_8","nativeSrc":"5269:7:101","nodeType":"YulIdentifier","src":"5269:7:101"}],"functionName":{"name":"mstore","nativeSrc":"5245:6:101","nodeType":"YulIdentifier","src":"5245:6:101"},"nativeSrc":"5245:32:101","nodeType":"YulFunctionCall","src":"5245:32:101"},"nativeSrc":"5245:32:101","nodeType":"YulExpressionStatement","src":"5245:32:101"},{"nativeSrc":"5286:16:101","nodeType":"YulVariableDeclaration","src":"5286:16:101","value":{"kind":"number","nativeSrc":"5301:1:101","nodeType":"YulLiteral","src":"5301:1:101","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"5290:7:101","nodeType":"YulTypedName","src":"5290:7:101","type":""}]},{"nativeSrc":"5311:44:101","nodeType":"YulAssignment","src":"5311:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5339:9:101","nodeType":"YulIdentifier","src":"5339:9:101"},{"kind":"number","nativeSrc":"5350:3:101","nodeType":"YulLiteral","src":"5350:3:101","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"5335:3:101","nodeType":"YulIdentifier","src":"5335:3:101"},"nativeSrc":"5335:19:101","nodeType":"YulFunctionCall","src":"5335:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"5322:12:101","nodeType":"YulIdentifier","src":"5322:12:101"},"nativeSrc":"5322:33:101","nodeType":"YulFunctionCall","src":"5322:33:101"},"variableNames":[{"name":"value_9","nativeSrc":"5311:7:101","nodeType":"YulIdentifier","src":"5311:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5375:5:101","nodeType":"YulIdentifier","src":"5375:5:101"},{"kind":"number","nativeSrc":"5382:3:101","nodeType":"YulLiteral","src":"5382:3:101","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"5371:3:101","nodeType":"YulIdentifier","src":"5371:3:101"},"nativeSrc":"5371:15:101","nodeType":"YulFunctionCall","src":"5371:15:101"},{"name":"value_9","nativeSrc":"5388:7:101","nodeType":"YulIdentifier","src":"5388:7:101"}],"functionName":{"name":"mstore","nativeSrc":"5364:6:101","nodeType":"YulIdentifier","src":"5364:6:101"},"nativeSrc":"5364:32:101","nodeType":"YulFunctionCall","src":"5364:32:101"},"nativeSrc":"5364:32:101","nodeType":"YulExpressionStatement","src":"5364:32:101"},{"nativeSrc":"5405:17:101","nodeType":"YulVariableDeclaration","src":"5405:17:101","value":{"kind":"number","nativeSrc":"5421:1:101","nodeType":"YulLiteral","src":"5421:1:101","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"5409:8:101","nodeType":"YulTypedName","src":"5409:8:101","type":""}]},{"nativeSrc":"5431:45:101","nodeType":"YulAssignment","src":"5431:45:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5460:9:101","nodeType":"YulIdentifier","src":"5460:9:101"},{"kind":"number","nativeSrc":"5471:3:101","nodeType":"YulLiteral","src":"5471:3:101","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"5456:3:101","nodeType":"YulIdentifier","src":"5456:3:101"},"nativeSrc":"5456:19:101","nodeType":"YulFunctionCall","src":"5456:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"5443:12:101","nodeType":"YulIdentifier","src":"5443:12:101"},"nativeSrc":"5443:33:101","nodeType":"YulFunctionCall","src":"5443:33:101"},"variableNames":[{"name":"value_10","nativeSrc":"5431:8:101","nodeType":"YulIdentifier","src":"5431:8:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5496:5:101","nodeType":"YulIdentifier","src":"5496:5:101"},{"kind":"number","nativeSrc":"5503:3:101","nodeType":"YulLiteral","src":"5503:3:101","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"5492:3:101","nodeType":"YulIdentifier","src":"5492:3:101"},"nativeSrc":"5492:15:101","nodeType":"YulFunctionCall","src":"5492:15:101"},{"name":"value_10","nativeSrc":"5509:8:101","nodeType":"YulIdentifier","src":"5509:8:101"}],"functionName":{"name":"mstore","nativeSrc":"5485:6:101","nodeType":"YulIdentifier","src":"5485:6:101"},"nativeSrc":"5485:33:101","nodeType":"YulFunctionCall","src":"5485:33:101"},"nativeSrc":"5485:33:101","nodeType":"YulExpressionStatement","src":"5485:33:101"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5538:5:101","nodeType":"YulIdentifier","src":"5538:5:101"},{"kind":"number","nativeSrc":"5545:3:101","nodeType":"YulLiteral","src":"5545:3:101","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"5534:3:101","nodeType":"YulIdentifier","src":"5534:3:101"},"nativeSrc":"5534:15:101","nodeType":"YulFunctionCall","src":"5534:15:101"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5573:9:101","nodeType":"YulIdentifier","src":"5573:9:101"},{"kind":"number","nativeSrc":"5584:3:101","nodeType":"YulLiteral","src":"5584:3:101","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"5569:3:101","nodeType":"YulIdentifier","src":"5569:3:101"},"nativeSrc":"5569:19:101","nodeType":"YulFunctionCall","src":"5569:19:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"5551:17:101","nodeType":"YulIdentifier","src":"5551:17:101"},"nativeSrc":"5551:38:101","nodeType":"YulFunctionCall","src":"5551:38:101"}],"functionName":{"name":"mstore","nativeSrc":"5527:6:101","nodeType":"YulIdentifier","src":"5527:6:101"},"nativeSrc":"5527:63:101","nodeType":"YulFunctionCall","src":"5527:63:101"},"nativeSrc":"5527:63:101","nodeType":"YulExpressionStatement","src":"5527:63:101"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5610:5:101","nodeType":"YulIdentifier","src":"5610:5:101"},{"kind":"number","nativeSrc":"5617:3:101","nodeType":"YulLiteral","src":"5617:3:101","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"5606:3:101","nodeType":"YulIdentifier","src":"5606:3:101"},"nativeSrc":"5606:15:101","nodeType":"YulFunctionCall","src":"5606:15:101"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5645:9:101","nodeType":"YulIdentifier","src":"5645:9:101"},{"kind":"number","nativeSrc":"5656:3:101","nodeType":"YulLiteral","src":"5656:3:101","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"5641:3:101","nodeType":"YulIdentifier","src":"5641:3:101"},"nativeSrc":"5641:19:101","nodeType":"YulFunctionCall","src":"5641:19:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"5623:17:101","nodeType":"YulIdentifier","src":"5623:17:101"},"nativeSrc":"5623:38:101","nodeType":"YulFunctionCall","src":"5623:38:101"}],"functionName":{"name":"mstore","nativeSrc":"5599:6:101","nodeType":"YulIdentifier","src":"5599:6:101"},"nativeSrc":"5599:63:101","nodeType":"YulFunctionCall","src":"5599:63:101"},"nativeSrc":"5599:63:101","nodeType":"YulExpressionStatement","src":"5599:63:101"}]},"name":"abi_decode_struct_PolicyData","nativeSrc":"4187:1481:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4225:9:101","nodeType":"YulTypedName","src":"4225:9:101","type":""},{"name":"end","nativeSrc":"4236:3:101","nodeType":"YulTypedName","src":"4236:3:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"4244:5:101","nodeType":"YulTypedName","src":"4244:5:101","type":""}],"src":"4187:1481:101"},{"body":{"nativeSrc":"5721:131:101","nodeType":"YulBlock","src":"5721:131:101","statements":[{"nativeSrc":"5731:29:101","nodeType":"YulAssignment","src":"5731:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"5753:6:101","nodeType":"YulIdentifier","src":"5753:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"5740:12:101","nodeType":"YulIdentifier","src":"5740:12:101"},"nativeSrc":"5740:20:101","nodeType":"YulFunctionCall","src":"5740:20:101"},"variableNames":[{"name":"value","nativeSrc":"5731:5:101","nodeType":"YulIdentifier","src":"5731:5:101"}]},{"body":{"nativeSrc":"5830:16:101","nodeType":"YulBlock","src":"5830:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5839:1:101","nodeType":"YulLiteral","src":"5839:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5842:1:101","nodeType":"YulLiteral","src":"5842:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5832:6:101","nodeType":"YulIdentifier","src":"5832:6:101"},"nativeSrc":"5832:12:101","nodeType":"YulFunctionCall","src":"5832:12:101"},"nativeSrc":"5832:12:101","nodeType":"YulExpressionStatement","src":"5832:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5782:5:101","nodeType":"YulIdentifier","src":"5782:5:101"},{"arguments":[{"name":"value","nativeSrc":"5793:5:101","nodeType":"YulIdentifier","src":"5793:5:101"},{"kind":"number","nativeSrc":"5800:26:101","nodeType":"YulLiteral","src":"5800:26:101","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"5789:3:101","nodeType":"YulIdentifier","src":"5789:3:101"},"nativeSrc":"5789:38:101","nodeType":"YulFunctionCall","src":"5789:38:101"}],"functionName":{"name":"eq","nativeSrc":"5779:2:101","nodeType":"YulIdentifier","src":"5779:2:101"},"nativeSrc":"5779:49:101","nodeType":"YulFunctionCall","src":"5779:49:101"}],"functionName":{"name":"iszero","nativeSrc":"5772:6:101","nodeType":"YulIdentifier","src":"5772:6:101"},"nativeSrc":"5772:57:101","nodeType":"YulFunctionCall","src":"5772:57:101"},"nativeSrc":"5769:77:101","nodeType":"YulIf","src":"5769:77:101"}]},"name":"abi_decode_uint96","nativeSrc":"5673:179:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"5700:6:101","nodeType":"YulTypedName","src":"5700:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"5711:5:101","nodeType":"YulTypedName","src":"5711:5:101","type":""}],"src":"5673:179:101"},{"body":{"nativeSrc":"6006:437:101","nodeType":"YulBlock","src":"6006:437:101","statements":[{"body":{"nativeSrc":"6053:16:101","nodeType":"YulBlock","src":"6053:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6062:1:101","nodeType":"YulLiteral","src":"6062:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6065:1:101","nodeType":"YulLiteral","src":"6065:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6055:6:101","nodeType":"YulIdentifier","src":"6055:6:101"},"nativeSrc":"6055:12:101","nodeType":"YulFunctionCall","src":"6055:12:101"},"nativeSrc":"6055:12:101","nodeType":"YulExpressionStatement","src":"6055:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6027:7:101","nodeType":"YulIdentifier","src":"6027:7:101"},{"name":"headStart","nativeSrc":"6036:9:101","nodeType":"YulIdentifier","src":"6036:9:101"}],"functionName":{"name":"sub","nativeSrc":"6023:3:101","nodeType":"YulIdentifier","src":"6023:3:101"},"nativeSrc":"6023:23:101","nodeType":"YulFunctionCall","src":"6023:23:101"},{"kind":"number","nativeSrc":"6048:3:101","nodeType":"YulLiteral","src":"6048:3:101","type":"","value":"480"}],"functionName":{"name":"slt","nativeSrc":"6019:3:101","nodeType":"YulIdentifier","src":"6019:3:101"},"nativeSrc":"6019:33:101","nodeType":"YulFunctionCall","src":"6019:33:101"},"nativeSrc":"6016:53:101","nodeType":"YulIf","src":"6016:53:101"},{"nativeSrc":"6078:58:101","nodeType":"YulAssignment","src":"6078:58:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6117:9:101","nodeType":"YulIdentifier","src":"6117:9:101"},{"name":"dataEnd","nativeSrc":"6128:7:101","nodeType":"YulIdentifier","src":"6128:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"6088:28:101","nodeType":"YulIdentifier","src":"6088:28:101"},"nativeSrc":"6088:48:101","nodeType":"YulFunctionCall","src":"6088:48:101"},"variableNames":[{"name":"value0","nativeSrc":"6078:6:101","nodeType":"YulIdentifier","src":"6078:6:101"}]},{"nativeSrc":"6145:46:101","nodeType":"YulVariableDeclaration","src":"6145:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6175:9:101","nodeType":"YulIdentifier","src":"6175:9:101"},{"kind":"number","nativeSrc":"6186:3:101","nodeType":"YulLiteral","src":"6186:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"6171:3:101","nodeType":"YulIdentifier","src":"6171:3:101"},"nativeSrc":"6171:19:101","nodeType":"YulFunctionCall","src":"6171:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"6158:12:101","nodeType":"YulIdentifier","src":"6158:12:101"},"nativeSrc":"6158:33:101","nodeType":"YulFunctionCall","src":"6158:33:101"},"variables":[{"name":"value","nativeSrc":"6149:5:101","nodeType":"YulTypedName","src":"6149:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6225:5:101","nodeType":"YulIdentifier","src":"6225:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6200:24:101","nodeType":"YulIdentifier","src":"6200:24:101"},"nativeSrc":"6200:31:101","nodeType":"YulFunctionCall","src":"6200:31:101"},"nativeSrc":"6200:31:101","nodeType":"YulExpressionStatement","src":"6200:31:101"},{"nativeSrc":"6240:15:101","nodeType":"YulAssignment","src":"6240:15:101","value":{"name":"value","nativeSrc":"6250:5:101","nodeType":"YulIdentifier","src":"6250:5:101"},"variableNames":[{"name":"value1","nativeSrc":"6240:6:101","nodeType":"YulIdentifier","src":"6240:6:101"}]},{"nativeSrc":"6264:48:101","nodeType":"YulVariableDeclaration","src":"6264:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6296:9:101","nodeType":"YulIdentifier","src":"6296:9:101"},{"kind":"number","nativeSrc":"6307:3:101","nodeType":"YulLiteral","src":"6307:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"6292:3:101","nodeType":"YulIdentifier","src":"6292:3:101"},"nativeSrc":"6292:19:101","nodeType":"YulFunctionCall","src":"6292:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"6279:12:101","nodeType":"YulIdentifier","src":"6279:12:101"},"nativeSrc":"6279:33:101","nodeType":"YulFunctionCall","src":"6279:33:101"},"variables":[{"name":"value_1","nativeSrc":"6268:7:101","nodeType":"YulTypedName","src":"6268:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"6346:7:101","nodeType":"YulIdentifier","src":"6346:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6321:24:101","nodeType":"YulIdentifier","src":"6321:24:101"},"nativeSrc":"6321:33:101","nodeType":"YulFunctionCall","src":"6321:33:101"},"nativeSrc":"6321:33:101","nodeType":"YulExpressionStatement","src":"6321:33:101"},{"nativeSrc":"6363:17:101","nodeType":"YulAssignment","src":"6363:17:101","value":{"name":"value_1","nativeSrc":"6373:7:101","nodeType":"YulIdentifier","src":"6373:7:101"},"variableNames":[{"name":"value2","nativeSrc":"6363:6:101","nodeType":"YulIdentifier","src":"6363:6:101"}]},{"nativeSrc":"6389:48:101","nodeType":"YulAssignment","src":"6389:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6421:9:101","nodeType":"YulIdentifier","src":"6421:9:101"},{"kind":"number","nativeSrc":"6432:3:101","nodeType":"YulLiteral","src":"6432:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"6417:3:101","nodeType":"YulIdentifier","src":"6417:3:101"},"nativeSrc":"6417:19:101","nodeType":"YulFunctionCall","src":"6417:19:101"}],"functionName":{"name":"abi_decode_uint96","nativeSrc":"6399:17:101","nodeType":"YulIdentifier","src":"6399:17:101"},"nativeSrc":"6399:38:101","nodeType":"YulFunctionCall","src":"6399:38:101"},"variableNames":[{"name":"value3","nativeSrc":"6389:6:101","nodeType":"YulIdentifier","src":"6389:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_addresst_addresst_uint96","nativeSrc":"5857:586:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5948:9:101","nodeType":"YulTypedName","src":"5948:9:101","type":""},{"name":"dataEnd","nativeSrc":"5959:7:101","nodeType":"YulTypedName","src":"5959:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5971:6:101","nodeType":"YulTypedName","src":"5971:6:101","type":""},{"name":"value1","nativeSrc":"5979:6:101","nodeType":"YulTypedName","src":"5979:6:101","type":""},{"name":"value2","nativeSrc":"5987:6:101","nodeType":"YulTypedName","src":"5987:6:101","type":""},{"name":"value3","nativeSrc":"5995:6:101","nodeType":"YulTypedName","src":"5995:6:101","type":""}],"src":"5857:586:101"},{"body":{"nativeSrc":"6549:76:101","nodeType":"YulBlock","src":"6549:76:101","statements":[{"nativeSrc":"6559:26:101","nodeType":"YulAssignment","src":"6559:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6571:9:101","nodeType":"YulIdentifier","src":"6571:9:101"},{"kind":"number","nativeSrc":"6582:2:101","nodeType":"YulLiteral","src":"6582:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6567:3:101","nodeType":"YulIdentifier","src":"6567:3:101"},"nativeSrc":"6567:18:101","nodeType":"YulFunctionCall","src":"6567:18:101"},"variableNames":[{"name":"tail","nativeSrc":"6559:4:101","nodeType":"YulIdentifier","src":"6559:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6601:9:101","nodeType":"YulIdentifier","src":"6601:9:101"},{"name":"value0","nativeSrc":"6612:6:101","nodeType":"YulIdentifier","src":"6612:6:101"}],"functionName":{"name":"mstore","nativeSrc":"6594:6:101","nodeType":"YulIdentifier","src":"6594:6:101"},"nativeSrc":"6594:25:101","nodeType":"YulFunctionCall","src":"6594:25:101"},"nativeSrc":"6594:25:101","nodeType":"YulExpressionStatement","src":"6594:25:101"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"6448:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6518:9:101","nodeType":"YulTypedName","src":"6518:9:101","type":""},{"name":"value0","nativeSrc":"6529:6:101","nodeType":"YulTypedName","src":"6529:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6540:4:101","nodeType":"YulTypedName","src":"6540:4:101","type":""}],"src":"6448:177:101"},{"body":{"nativeSrc":"6734:404:101","nodeType":"YulBlock","src":"6734:404:101","statements":[{"body":{"nativeSrc":"6780:16:101","nodeType":"YulBlock","src":"6780:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6789:1:101","nodeType":"YulLiteral","src":"6789:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6792:1:101","nodeType":"YulLiteral","src":"6792:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6782:6:101","nodeType":"YulIdentifier","src":"6782:6:101"},"nativeSrc":"6782:12:101","nodeType":"YulFunctionCall","src":"6782:12:101"},"nativeSrc":"6782:12:101","nodeType":"YulExpressionStatement","src":"6782:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6755:7:101","nodeType":"YulIdentifier","src":"6755:7:101"},{"name":"headStart","nativeSrc":"6764:9:101","nodeType":"YulIdentifier","src":"6764:9:101"}],"functionName":{"name":"sub","nativeSrc":"6751:3:101","nodeType":"YulIdentifier","src":"6751:3:101"},"nativeSrc":"6751:23:101","nodeType":"YulFunctionCall","src":"6751:23:101"},{"kind":"number","nativeSrc":"6776:2:101","nodeType":"YulLiteral","src":"6776:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"6747:3:101","nodeType":"YulIdentifier","src":"6747:3:101"},"nativeSrc":"6747:32:101","nodeType":"YulFunctionCall","src":"6747:32:101"},"nativeSrc":"6744:52:101","nodeType":"YulIf","src":"6744:52:101"},{"nativeSrc":"6805:36:101","nodeType":"YulVariableDeclaration","src":"6805:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6831:9:101","nodeType":"YulIdentifier","src":"6831:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"6818:12:101","nodeType":"YulIdentifier","src":"6818:12:101"},"nativeSrc":"6818:23:101","nodeType":"YulFunctionCall","src":"6818:23:101"},"variables":[{"name":"value","nativeSrc":"6809:5:101","nodeType":"YulTypedName","src":"6809:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6875:5:101","nodeType":"YulIdentifier","src":"6875:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6850:24:101","nodeType":"YulIdentifier","src":"6850:24:101"},"nativeSrc":"6850:31:101","nodeType":"YulFunctionCall","src":"6850:31:101"},"nativeSrc":"6850:31:101","nodeType":"YulExpressionStatement","src":"6850:31:101"},{"nativeSrc":"6890:15:101","nodeType":"YulAssignment","src":"6890:15:101","value":{"name":"value","nativeSrc":"6900:5:101","nodeType":"YulIdentifier","src":"6900:5:101"},"variableNames":[{"name":"value0","nativeSrc":"6890:6:101","nodeType":"YulIdentifier","src":"6890:6:101"}]},{"nativeSrc":"6914:47:101","nodeType":"YulVariableDeclaration","src":"6914:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6946:9:101","nodeType":"YulIdentifier","src":"6946:9:101"},{"kind":"number","nativeSrc":"6957:2:101","nodeType":"YulLiteral","src":"6957:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6942:3:101","nodeType":"YulIdentifier","src":"6942:3:101"},"nativeSrc":"6942:18:101","nodeType":"YulFunctionCall","src":"6942:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"6929:12:101","nodeType":"YulIdentifier","src":"6929:12:101"},"nativeSrc":"6929:32:101","nodeType":"YulFunctionCall","src":"6929:32:101"},"variables":[{"name":"value_1","nativeSrc":"6918:7:101","nodeType":"YulTypedName","src":"6918:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"6995:7:101","nodeType":"YulIdentifier","src":"6995:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6970:24:101","nodeType":"YulIdentifier","src":"6970:24:101"},"nativeSrc":"6970:33:101","nodeType":"YulFunctionCall","src":"6970:33:101"},"nativeSrc":"6970:33:101","nodeType":"YulExpressionStatement","src":"6970:33:101"},{"nativeSrc":"7012:17:101","nodeType":"YulAssignment","src":"7012:17:101","value":{"name":"value_1","nativeSrc":"7022:7:101","nodeType":"YulIdentifier","src":"7022:7:101"},"variableNames":[{"name":"value1","nativeSrc":"7012:6:101","nodeType":"YulIdentifier","src":"7012:6:101"}]},{"nativeSrc":"7038:16:101","nodeType":"YulVariableDeclaration","src":"7038:16:101","value":{"kind":"number","nativeSrc":"7053:1:101","nodeType":"YulLiteral","src":"7053:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"7042:7:101","nodeType":"YulTypedName","src":"7042:7:101","type":""}]},{"nativeSrc":"7063:43:101","nodeType":"YulAssignment","src":"7063:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7091:9:101","nodeType":"YulIdentifier","src":"7091:9:101"},{"kind":"number","nativeSrc":"7102:2:101","nodeType":"YulLiteral","src":"7102:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7087:3:101","nodeType":"YulIdentifier","src":"7087:3:101"},"nativeSrc":"7087:18:101","nodeType":"YulFunctionCall","src":"7087:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"7074:12:101","nodeType":"YulIdentifier","src":"7074:12:101"},"nativeSrc":"7074:32:101","nodeType":"YulFunctionCall","src":"7074:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"7063:7:101","nodeType":"YulIdentifier","src":"7063:7:101"}]},{"nativeSrc":"7115:17:101","nodeType":"YulAssignment","src":"7115:17:101","value":{"name":"value_2","nativeSrc":"7125:7:101","nodeType":"YulIdentifier","src":"7125:7:101"},"variableNames":[{"name":"value2","nativeSrc":"7115:6:101","nodeType":"YulIdentifier","src":"7115:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"6630:508:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6684:9:101","nodeType":"YulTypedName","src":"6684:9:101","type":""},{"name":"dataEnd","nativeSrc":"6695:7:101","nodeType":"YulTypedName","src":"6695:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6707:6:101","nodeType":"YulTypedName","src":"6707:6:101","type":""},{"name":"value1","nativeSrc":"6715:6:101","nodeType":"YulTypedName","src":"6715:6:101","type":""},{"name":"value2","nativeSrc":"6723:6:101","nodeType":"YulTypedName","src":"6723:6:101","type":""}],"src":"6630:508:101"},{"body":{"nativeSrc":"7243:177:101","nodeType":"YulBlock","src":"7243:177:101","statements":[{"body":{"nativeSrc":"7289:16:101","nodeType":"YulBlock","src":"7289:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7298:1:101","nodeType":"YulLiteral","src":"7298:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7301:1:101","nodeType":"YulLiteral","src":"7301:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7291:6:101","nodeType":"YulIdentifier","src":"7291:6:101"},"nativeSrc":"7291:12:101","nodeType":"YulFunctionCall","src":"7291:12:101"},"nativeSrc":"7291:12:101","nodeType":"YulExpressionStatement","src":"7291:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7264:7:101","nodeType":"YulIdentifier","src":"7264:7:101"},{"name":"headStart","nativeSrc":"7273:9:101","nodeType":"YulIdentifier","src":"7273:9:101"}],"functionName":{"name":"sub","nativeSrc":"7260:3:101","nodeType":"YulIdentifier","src":"7260:3:101"},"nativeSrc":"7260:23:101","nodeType":"YulFunctionCall","src":"7260:23:101"},{"kind":"number","nativeSrc":"7285:2:101","nodeType":"YulLiteral","src":"7285:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"7256:3:101","nodeType":"YulIdentifier","src":"7256:3:101"},"nativeSrc":"7256:32:101","nodeType":"YulFunctionCall","src":"7256:32:101"},"nativeSrc":"7253:52:101","nodeType":"YulIf","src":"7253:52:101"},{"nativeSrc":"7314:36:101","nodeType":"YulVariableDeclaration","src":"7314:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7340:9:101","nodeType":"YulIdentifier","src":"7340:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"7327:12:101","nodeType":"YulIdentifier","src":"7327:12:101"},"nativeSrc":"7327:23:101","nodeType":"YulFunctionCall","src":"7327:23:101"},"variables":[{"name":"value","nativeSrc":"7318:5:101","nodeType":"YulTypedName","src":"7318:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7384:5:101","nodeType":"YulIdentifier","src":"7384:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"7359:24:101","nodeType":"YulIdentifier","src":"7359:24:101"},"nativeSrc":"7359:31:101","nodeType":"YulFunctionCall","src":"7359:31:101"},"nativeSrc":"7359:31:101","nodeType":"YulExpressionStatement","src":"7359:31:101"},{"nativeSrc":"7399:15:101","nodeType":"YulAssignment","src":"7399:15:101","value":{"name":"value","nativeSrc":"7409:5:101","nodeType":"YulIdentifier","src":"7409:5:101"},"variableNames":[{"name":"value0","nativeSrc":"7399:6:101","nodeType":"YulIdentifier","src":"7399:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPoolComponent_$29188","nativeSrc":"7143:277:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7209:9:101","nodeType":"YulTypedName","src":"7209:9:101","type":""},{"name":"dataEnd","nativeSrc":"7220:7:101","nodeType":"YulTypedName","src":"7220:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7232:6:101","nodeType":"YulTypedName","src":"7232:6:101","type":""}],"src":"7143:277:101"},{"body":{"nativeSrc":"7457:95:101","nodeType":"YulBlock","src":"7457:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7474:1:101","nodeType":"YulLiteral","src":"7474:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"7481:3:101","nodeType":"YulLiteral","src":"7481:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"7486:10:101","nodeType":"YulLiteral","src":"7486:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"7477:3:101","nodeType":"YulIdentifier","src":"7477:3:101"},"nativeSrc":"7477:20:101","nodeType":"YulFunctionCall","src":"7477:20:101"}],"functionName":{"name":"mstore","nativeSrc":"7467:6:101","nodeType":"YulIdentifier","src":"7467:6:101"},"nativeSrc":"7467:31:101","nodeType":"YulFunctionCall","src":"7467:31:101"},"nativeSrc":"7467:31:101","nodeType":"YulExpressionStatement","src":"7467:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7514:1:101","nodeType":"YulLiteral","src":"7514:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"7517:4:101","nodeType":"YulLiteral","src":"7517:4:101","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"7507:6:101","nodeType":"YulIdentifier","src":"7507:6:101"},"nativeSrc":"7507:15:101","nodeType":"YulFunctionCall","src":"7507:15:101"},"nativeSrc":"7507:15:101","nodeType":"YulExpressionStatement","src":"7507:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7538:1:101","nodeType":"YulLiteral","src":"7538:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7541:4:101","nodeType":"YulLiteral","src":"7541:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"7531:6:101","nodeType":"YulIdentifier","src":"7531:6:101"},"nativeSrc":"7531:15:101","nodeType":"YulFunctionCall","src":"7531:15:101"},"nativeSrc":"7531:15:101","nodeType":"YulExpressionStatement","src":"7531:15:101"}]},"name":"panic_error_0x21","nativeSrc":"7425:127:101","nodeType":"YulFunctionDefinition","src":"7425:127:101"},{"body":{"nativeSrc":"7615:159:101","nodeType":"YulBlock","src":"7615:159:101","statements":[{"body":{"nativeSrc":"7657:111:101","nodeType":"YulBlock","src":"7657:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7678:1:101","nodeType":"YulLiteral","src":"7678:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"7685:3:101","nodeType":"YulLiteral","src":"7685:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"7690:10:101","nodeType":"YulLiteral","src":"7690:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"7681:3:101","nodeType":"YulIdentifier","src":"7681:3:101"},"nativeSrc":"7681:20:101","nodeType":"YulFunctionCall","src":"7681:20:101"}],"functionName":{"name":"mstore","nativeSrc":"7671:6:101","nodeType":"YulIdentifier","src":"7671:6:101"},"nativeSrc":"7671:31:101","nodeType":"YulFunctionCall","src":"7671:31:101"},"nativeSrc":"7671:31:101","nodeType":"YulExpressionStatement","src":"7671:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7722:1:101","nodeType":"YulLiteral","src":"7722:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"7725:4:101","nodeType":"YulLiteral","src":"7725:4:101","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"7715:6:101","nodeType":"YulIdentifier","src":"7715:6:101"},"nativeSrc":"7715:15:101","nodeType":"YulFunctionCall","src":"7715:15:101"},"nativeSrc":"7715:15:101","nodeType":"YulExpressionStatement","src":"7715:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7750:1:101","nodeType":"YulLiteral","src":"7750:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7753:4:101","nodeType":"YulLiteral","src":"7753:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"7743:6:101","nodeType":"YulIdentifier","src":"7743:6:101"},"nativeSrc":"7743:15:101","nodeType":"YulFunctionCall","src":"7743:15:101"},"nativeSrc":"7743:15:101","nodeType":"YulExpressionStatement","src":"7743:15:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7638:5:101","nodeType":"YulIdentifier","src":"7638:5:101"},{"kind":"number","nativeSrc":"7645:1:101","nodeType":"YulLiteral","src":"7645:1:101","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"7635:2:101","nodeType":"YulIdentifier","src":"7635:2:101"},"nativeSrc":"7635:12:101","nodeType":"YulFunctionCall","src":"7635:12:101"}],"functionName":{"name":"iszero","nativeSrc":"7628:6:101","nodeType":"YulIdentifier","src":"7628:6:101"},"nativeSrc":"7628:20:101","nodeType":"YulFunctionCall","src":"7628:20:101"},"nativeSrc":"7625:143:101","nodeType":"YulIf","src":"7625:143:101"}]},"name":"validator_assert_enum_ComponentStatus","nativeSrc":"7557:217:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"7604:5:101","nodeType":"YulTypedName","src":"7604:5:101","type":""}],"src":"7557:217:101"},{"body":{"nativeSrc":"7899:130:101","nodeType":"YulBlock","src":"7899:130:101","statements":[{"nativeSrc":"7909:26:101","nodeType":"YulAssignment","src":"7909:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7921:9:101","nodeType":"YulIdentifier","src":"7921:9:101"},{"kind":"number","nativeSrc":"7932:2:101","nodeType":"YulLiteral","src":"7932:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7917:3:101","nodeType":"YulIdentifier","src":"7917:3:101"},"nativeSrc":"7917:18:101","nodeType":"YulFunctionCall","src":"7917:18:101"},"variableNames":[{"name":"tail","nativeSrc":"7909:4:101","nodeType":"YulIdentifier","src":"7909:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"7982:6:101","nodeType":"YulIdentifier","src":"7982:6:101"}],"functionName":{"name":"validator_assert_enum_ComponentStatus","nativeSrc":"7944:37:101","nodeType":"YulIdentifier","src":"7944:37:101"},"nativeSrc":"7944:45:101","nodeType":"YulFunctionCall","src":"7944:45:101"},"nativeSrc":"7944:45:101","nodeType":"YulExpressionStatement","src":"7944:45:101"},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8005:9:101","nodeType":"YulIdentifier","src":"8005:9:101"},{"name":"value0","nativeSrc":"8016:6:101","nodeType":"YulIdentifier","src":"8016:6:101"}],"functionName":{"name":"mstore","nativeSrc":"7998:6:101","nodeType":"YulIdentifier","src":"7998:6:101"},"nativeSrc":"7998:25:101","nodeType":"YulFunctionCall","src":"7998:25:101"},"nativeSrc":"7998:25:101","nodeType":"YulExpressionStatement","src":"7998:25:101"}]},"name":"abi_encode_tuple_t_enum$_ComponentStatus_$22904__to_t_uint8__fromStack_reversed","nativeSrc":"7779:250:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7868:9:101","nodeType":"YulTypedName","src":"7868:9:101","type":""},{"name":"value0","nativeSrc":"7879:6:101","nodeType":"YulTypedName","src":"7879:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7890:4:101","nodeType":"YulTypedName","src":"7890:4:101","type":""}],"src":"7779:250:101"},{"body":{"nativeSrc":"8130:360:101","nodeType":"YulBlock","src":"8130:360:101","statements":[{"body":{"nativeSrc":"8176:16:101","nodeType":"YulBlock","src":"8176:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8185:1:101","nodeType":"YulLiteral","src":"8185:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8188:1:101","nodeType":"YulLiteral","src":"8188:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8178:6:101","nodeType":"YulIdentifier","src":"8178:6:101"},"nativeSrc":"8178:12:101","nodeType":"YulFunctionCall","src":"8178:12:101"},"nativeSrc":"8178:12:101","nodeType":"YulExpressionStatement","src":"8178:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8151:7:101","nodeType":"YulIdentifier","src":"8151:7:101"},{"name":"headStart","nativeSrc":"8160:9:101","nodeType":"YulIdentifier","src":"8160:9:101"}],"functionName":{"name":"sub","nativeSrc":"8147:3:101","nodeType":"YulIdentifier","src":"8147:3:101"},"nativeSrc":"8147:23:101","nodeType":"YulFunctionCall","src":"8147:23:101"},{"kind":"number","nativeSrc":"8172:2:101","nodeType":"YulLiteral","src":"8172:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"8143:3:101","nodeType":"YulIdentifier","src":"8143:3:101"},"nativeSrc":"8143:32:101","nodeType":"YulFunctionCall","src":"8143:32:101"},"nativeSrc":"8140:52:101","nodeType":"YulIf","src":"8140:52:101"},{"nativeSrc":"8201:36:101","nodeType":"YulVariableDeclaration","src":"8201:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8227:9:101","nodeType":"YulIdentifier","src":"8227:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"8214:12:101","nodeType":"YulIdentifier","src":"8214:12:101"},"nativeSrc":"8214:23:101","nodeType":"YulFunctionCall","src":"8214:23:101"},"variables":[{"name":"value","nativeSrc":"8205:5:101","nodeType":"YulTypedName","src":"8205:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8271:5:101","nodeType":"YulIdentifier","src":"8271:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"8246:24:101","nodeType":"YulIdentifier","src":"8246:24:101"},"nativeSrc":"8246:31:101","nodeType":"YulFunctionCall","src":"8246:31:101"},"nativeSrc":"8246:31:101","nodeType":"YulExpressionStatement","src":"8246:31:101"},{"nativeSrc":"8286:15:101","nodeType":"YulAssignment","src":"8286:15:101","value":{"name":"value","nativeSrc":"8296:5:101","nodeType":"YulIdentifier","src":"8296:5:101"},"variableNames":[{"name":"value0","nativeSrc":"8286:6:101","nodeType":"YulIdentifier","src":"8286:6:101"}]},{"nativeSrc":"8310:46:101","nodeType":"YulVariableDeclaration","src":"8310:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8341:9:101","nodeType":"YulIdentifier","src":"8341:9:101"},{"kind":"number","nativeSrc":"8352:2:101","nodeType":"YulLiteral","src":"8352:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8337:3:101","nodeType":"YulIdentifier","src":"8337:3:101"},"nativeSrc":"8337:18:101","nodeType":"YulFunctionCall","src":"8337:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"8324:12:101","nodeType":"YulIdentifier","src":"8324:12:101"},"nativeSrc":"8324:32:101","nodeType":"YulFunctionCall","src":"8324:32:101"},"variables":[{"name":"offset","nativeSrc":"8314:6:101","nodeType":"YulTypedName","src":"8314:6:101","type":""}]},{"body":{"nativeSrc":"8399:16:101","nodeType":"YulBlock","src":"8399:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8408:1:101","nodeType":"YulLiteral","src":"8408:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8411:1:101","nodeType":"YulLiteral","src":"8411:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8401:6:101","nodeType":"YulIdentifier","src":"8401:6:101"},"nativeSrc":"8401:12:101","nodeType":"YulFunctionCall","src":"8401:12:101"},"nativeSrc":"8401:12:101","nodeType":"YulExpressionStatement","src":"8401:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"8371:6:101","nodeType":"YulIdentifier","src":"8371:6:101"},{"kind":"number","nativeSrc":"8379:18:101","nodeType":"YulLiteral","src":"8379:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8368:2:101","nodeType":"YulIdentifier","src":"8368:2:101"},"nativeSrc":"8368:30:101","nodeType":"YulFunctionCall","src":"8368:30:101"},"nativeSrc":"8365:50:101","nodeType":"YulIf","src":"8365:50:101"},{"nativeSrc":"8424:60:101","nodeType":"YulAssignment","src":"8424:60:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8456:9:101","nodeType":"YulIdentifier","src":"8456:9:101"},{"name":"offset","nativeSrc":"8467:6:101","nodeType":"YulIdentifier","src":"8467:6:101"}],"functionName":{"name":"add","nativeSrc":"8452:3:101","nodeType":"YulIdentifier","src":"8452:3:101"},"nativeSrc":"8452:22:101","nodeType":"YulFunctionCall","src":"8452:22:101"},{"name":"dataEnd","nativeSrc":"8476:7:101","nodeType":"YulIdentifier","src":"8476:7:101"}],"functionName":{"name":"abi_decode_string","nativeSrc":"8434:17:101","nodeType":"YulIdentifier","src":"8434:17:101"},"nativeSrc":"8434:50:101","nodeType":"YulFunctionCall","src":"8434:50:101"},"variableNames":[{"name":"value1","nativeSrc":"8424:6:101","nodeType":"YulIdentifier","src":"8424:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr","nativeSrc":"8034:456:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8088:9:101","nodeType":"YulTypedName","src":"8088:9:101","type":""},{"name":"dataEnd","nativeSrc":"8099:7:101","nodeType":"YulTypedName","src":"8099:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8111:6:101","nodeType":"YulTypedName","src":"8111:6:101","type":""},{"name":"value1","nativeSrc":"8119:6:101","nodeType":"YulTypedName","src":"8119:6:101","type":""}],"src":"8034:456:101"},{"body":{"nativeSrc":"8596:76:101","nodeType":"YulBlock","src":"8596:76:101","statements":[{"nativeSrc":"8606:26:101","nodeType":"YulAssignment","src":"8606:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8618:9:101","nodeType":"YulIdentifier","src":"8618:9:101"},{"kind":"number","nativeSrc":"8629:2:101","nodeType":"YulLiteral","src":"8629:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8614:3:101","nodeType":"YulIdentifier","src":"8614:3:101"},"nativeSrc":"8614:18:101","nodeType":"YulFunctionCall","src":"8614:18:101"},"variableNames":[{"name":"tail","nativeSrc":"8606:4:101","nodeType":"YulIdentifier","src":"8606:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8648:9:101","nodeType":"YulIdentifier","src":"8648:9:101"},{"name":"value0","nativeSrc":"8659:6:101","nodeType":"YulIdentifier","src":"8659:6:101"}],"functionName":{"name":"mstore","nativeSrc":"8641:6:101","nodeType":"YulIdentifier","src":"8641:6:101"},"nativeSrc":"8641:25:101","nodeType":"YulFunctionCall","src":"8641:25:101"},"nativeSrc":"8641:25:101","nodeType":"YulExpressionStatement","src":"8641:25:101"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"8495:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8565:9:101","nodeType":"YulTypedName","src":"8565:9:101","type":""},{"name":"value0","nativeSrc":"8576:6:101","nodeType":"YulTypedName","src":"8576:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8587:4:101","nodeType":"YulTypedName","src":"8587:4:101","type":""}],"src":"8495:177:101"},{"body":{"nativeSrc":"8767:497:101","nodeType":"YulBlock","src":"8767:497:101","statements":[{"body":{"nativeSrc":"8813:16:101","nodeType":"YulBlock","src":"8813:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8822:1:101","nodeType":"YulLiteral","src":"8822:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8825:1:101","nodeType":"YulLiteral","src":"8825:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8815:6:101","nodeType":"YulIdentifier","src":"8815:6:101"},"nativeSrc":"8815:12:101","nodeType":"YulFunctionCall","src":"8815:12:101"},"nativeSrc":"8815:12:101","nodeType":"YulExpressionStatement","src":"8815:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8788:7:101","nodeType":"YulIdentifier","src":"8788:7:101"},{"name":"headStart","nativeSrc":"8797:9:101","nodeType":"YulIdentifier","src":"8797:9:101"}],"functionName":{"name":"sub","nativeSrc":"8784:3:101","nodeType":"YulIdentifier","src":"8784:3:101"},"nativeSrc":"8784:23:101","nodeType":"YulFunctionCall","src":"8784:23:101"},{"kind":"number","nativeSrc":"8809:2:101","nodeType":"YulLiteral","src":"8809:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"8780:3:101","nodeType":"YulIdentifier","src":"8780:3:101"},"nativeSrc":"8780:32:101","nodeType":"YulFunctionCall","src":"8780:32:101"},"nativeSrc":"8777:52:101","nodeType":"YulIf","src":"8777:52:101"},{"nativeSrc":"8838:37:101","nodeType":"YulVariableDeclaration","src":"8838:37:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8865:9:101","nodeType":"YulIdentifier","src":"8865:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"8852:12:101","nodeType":"YulIdentifier","src":"8852:12:101"},"nativeSrc":"8852:23:101","nodeType":"YulFunctionCall","src":"8852:23:101"},"variables":[{"name":"offset","nativeSrc":"8842:6:101","nodeType":"YulTypedName","src":"8842:6:101","type":""}]},{"body":{"nativeSrc":"8918:16:101","nodeType":"YulBlock","src":"8918:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8927:1:101","nodeType":"YulLiteral","src":"8927:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8930:1:101","nodeType":"YulLiteral","src":"8930:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8920:6:101","nodeType":"YulIdentifier","src":"8920:6:101"},"nativeSrc":"8920:12:101","nodeType":"YulFunctionCall","src":"8920:12:101"},"nativeSrc":"8920:12:101","nodeType":"YulExpressionStatement","src":"8920:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"8890:6:101","nodeType":"YulIdentifier","src":"8890:6:101"},{"kind":"number","nativeSrc":"8898:18:101","nodeType":"YulLiteral","src":"8898:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8887:2:101","nodeType":"YulIdentifier","src":"8887:2:101"},"nativeSrc":"8887:30:101","nodeType":"YulFunctionCall","src":"8887:30:101"},"nativeSrc":"8884:50:101","nodeType":"YulIf","src":"8884:50:101"},{"nativeSrc":"8943:32:101","nodeType":"YulVariableDeclaration","src":"8943:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8957:9:101","nodeType":"YulIdentifier","src":"8957:9:101"},{"name":"offset","nativeSrc":"8968:6:101","nodeType":"YulIdentifier","src":"8968:6:101"}],"functionName":{"name":"add","nativeSrc":"8953:3:101","nodeType":"YulIdentifier","src":"8953:3:101"},"nativeSrc":"8953:22:101","nodeType":"YulFunctionCall","src":"8953:22:101"},"variables":[{"name":"_1","nativeSrc":"8947:2:101","nodeType":"YulTypedName","src":"8947:2:101","type":""}]},{"body":{"nativeSrc":"9023:16:101","nodeType":"YulBlock","src":"9023:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9032:1:101","nodeType":"YulLiteral","src":"9032:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9035:1:101","nodeType":"YulLiteral","src":"9035:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9025:6:101","nodeType":"YulIdentifier","src":"9025:6:101"},"nativeSrc":"9025:12:101","nodeType":"YulFunctionCall","src":"9025:12:101"},"nativeSrc":"9025:12:101","nodeType":"YulExpressionStatement","src":"9025:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"9002:2:101","nodeType":"YulIdentifier","src":"9002:2:101"},{"kind":"number","nativeSrc":"9006:4:101","nodeType":"YulLiteral","src":"9006:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"8998:3:101","nodeType":"YulIdentifier","src":"8998:3:101"},"nativeSrc":"8998:13:101","nodeType":"YulFunctionCall","src":"8998:13:101"},{"name":"dataEnd","nativeSrc":"9013:7:101","nodeType":"YulIdentifier","src":"9013:7:101"}],"functionName":{"name":"slt","nativeSrc":"8994:3:101","nodeType":"YulIdentifier","src":"8994:3:101"},"nativeSrc":"8994:27:101","nodeType":"YulFunctionCall","src":"8994:27:101"}],"functionName":{"name":"iszero","nativeSrc":"8987:6:101","nodeType":"YulIdentifier","src":"8987:6:101"},"nativeSrc":"8987:35:101","nodeType":"YulFunctionCall","src":"8987:35:101"},"nativeSrc":"8984:55:101","nodeType":"YulIf","src":"8984:55:101"},{"nativeSrc":"9048:30:101","nodeType":"YulVariableDeclaration","src":"9048:30:101","value":{"arguments":[{"name":"_1","nativeSrc":"9075:2:101","nodeType":"YulIdentifier","src":"9075:2:101"}],"functionName":{"name":"calldataload","nativeSrc":"9062:12:101","nodeType":"YulIdentifier","src":"9062:12:101"},"nativeSrc":"9062:16:101","nodeType":"YulFunctionCall","src":"9062:16:101"},"variables":[{"name":"length","nativeSrc":"9052:6:101","nodeType":"YulTypedName","src":"9052:6:101","type":""}]},{"body":{"nativeSrc":"9121:16:101","nodeType":"YulBlock","src":"9121:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9130:1:101","nodeType":"YulLiteral","src":"9130:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9133:1:101","nodeType":"YulLiteral","src":"9133:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9123:6:101","nodeType":"YulIdentifier","src":"9123:6:101"},"nativeSrc":"9123:12:101","nodeType":"YulFunctionCall","src":"9123:12:101"},"nativeSrc":"9123:12:101","nodeType":"YulExpressionStatement","src":"9123:12:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"9093:6:101","nodeType":"YulIdentifier","src":"9093:6:101"},{"kind":"number","nativeSrc":"9101:18:101","nodeType":"YulLiteral","src":"9101:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"9090:2:101","nodeType":"YulIdentifier","src":"9090:2:101"},"nativeSrc":"9090:30:101","nodeType":"YulFunctionCall","src":"9090:30:101"},"nativeSrc":"9087:50:101","nodeType":"YulIf","src":"9087:50:101"},{"body":{"nativeSrc":"9187:16:101","nodeType":"YulBlock","src":"9187:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9196:1:101","nodeType":"YulLiteral","src":"9196:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9199:1:101","nodeType":"YulLiteral","src":"9199:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9189:6:101","nodeType":"YulIdentifier","src":"9189:6:101"},"nativeSrc":"9189:12:101","nodeType":"YulFunctionCall","src":"9189:12:101"},"nativeSrc":"9189:12:101","nodeType":"YulExpressionStatement","src":"9189:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"9160:2:101","nodeType":"YulIdentifier","src":"9160:2:101"},{"name":"length","nativeSrc":"9164:6:101","nodeType":"YulIdentifier","src":"9164:6:101"}],"functionName":{"name":"add","nativeSrc":"9156:3:101","nodeType":"YulIdentifier","src":"9156:3:101"},"nativeSrc":"9156:15:101","nodeType":"YulFunctionCall","src":"9156:15:101"},{"kind":"number","nativeSrc":"9173:2:101","nodeType":"YulLiteral","src":"9173:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9152:3:101","nodeType":"YulIdentifier","src":"9152:3:101"},"nativeSrc":"9152:24:101","nodeType":"YulFunctionCall","src":"9152:24:101"},{"name":"dataEnd","nativeSrc":"9178:7:101","nodeType":"YulIdentifier","src":"9178:7:101"}],"functionName":{"name":"gt","nativeSrc":"9149:2:101","nodeType":"YulIdentifier","src":"9149:2:101"},"nativeSrc":"9149:37:101","nodeType":"YulFunctionCall","src":"9149:37:101"},"nativeSrc":"9146:57:101","nodeType":"YulIf","src":"9146:57:101"},{"nativeSrc":"9212:21:101","nodeType":"YulAssignment","src":"9212:21:101","value":{"arguments":[{"name":"_1","nativeSrc":"9226:2:101","nodeType":"YulIdentifier","src":"9226:2:101"},{"kind":"number","nativeSrc":"9230:2:101","nodeType":"YulLiteral","src":"9230:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9222:3:101","nodeType":"YulIdentifier","src":"9222:3:101"},"nativeSrc":"9222:11:101","nodeType":"YulFunctionCall","src":"9222:11:101"},"variableNames":[{"name":"value0","nativeSrc":"9212:6:101","nodeType":"YulIdentifier","src":"9212:6:101"}]},{"nativeSrc":"9242:16:101","nodeType":"YulAssignment","src":"9242:16:101","value":{"name":"length","nativeSrc":"9252:6:101","nodeType":"YulIdentifier","src":"9252:6:101"},"variableNames":[{"name":"value1","nativeSrc":"9242:6:101","nodeType":"YulIdentifier","src":"9242:6:101"}]}]},"name":"abi_decode_tuple_t_string_calldata_ptr","nativeSrc":"8677:587:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8725:9:101","nodeType":"YulTypedName","src":"8725:9:101","type":""},{"name":"dataEnd","nativeSrc":"8736:7:101","nodeType":"YulTypedName","src":"8736:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8748:6:101","nodeType":"YulTypedName","src":"8748:6:101","type":""},{"name":"value1","nativeSrc":"8756:6:101","nodeType":"YulTypedName","src":"8756:6:101","type":""}],"src":"8677:587:101"},{"body":{"nativeSrc":"9327:56:101","nodeType":"YulBlock","src":"9327:56:101","statements":[{"body":{"nativeSrc":"9361:16:101","nodeType":"YulBlock","src":"9361:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9370:1:101","nodeType":"YulLiteral","src":"9370:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9373:1:101","nodeType":"YulLiteral","src":"9373:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9363:6:101","nodeType":"YulIdentifier","src":"9363:6:101"},"nativeSrc":"9363:12:101","nodeType":"YulFunctionCall","src":"9363:12:101"},"nativeSrc":"9363:12:101","nodeType":"YulExpressionStatement","src":"9363:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"9350:5:101","nodeType":"YulIdentifier","src":"9350:5:101"},{"kind":"number","nativeSrc":"9357:1:101","nodeType":"YulLiteral","src":"9357:1:101","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"9347:2:101","nodeType":"YulIdentifier","src":"9347:2:101"},"nativeSrc":"9347:12:101","nodeType":"YulFunctionCall","src":"9347:12:101"}],"functionName":{"name":"iszero","nativeSrc":"9340:6:101","nodeType":"YulIdentifier","src":"9340:6:101"},"nativeSrc":"9340:20:101","nodeType":"YulFunctionCall","src":"9340:20:101"},"nativeSrc":"9337:40:101","nodeType":"YulIf","src":"9337:40:101"}]},"name":"validator_revert_enum_ComponentStatus","nativeSrc":"9269:114:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"9316:5:101","nodeType":"YulTypedName","src":"9316:5:101","type":""}],"src":"9269:114:101"},{"body":{"nativeSrc":"9526:314:101","nodeType":"YulBlock","src":"9526:314:101","statements":[{"body":{"nativeSrc":"9572:16:101","nodeType":"YulBlock","src":"9572:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9581:1:101","nodeType":"YulLiteral","src":"9581:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9584:1:101","nodeType":"YulLiteral","src":"9584:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9574:6:101","nodeType":"YulIdentifier","src":"9574:6:101"},"nativeSrc":"9574:12:101","nodeType":"YulFunctionCall","src":"9574:12:101"},"nativeSrc":"9574:12:101","nodeType":"YulExpressionStatement","src":"9574:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9547:7:101","nodeType":"YulIdentifier","src":"9547:7:101"},{"name":"headStart","nativeSrc":"9556:9:101","nodeType":"YulIdentifier","src":"9556:9:101"}],"functionName":{"name":"sub","nativeSrc":"9543:3:101","nodeType":"YulIdentifier","src":"9543:3:101"},"nativeSrc":"9543:23:101","nodeType":"YulFunctionCall","src":"9543:23:101"},{"kind":"number","nativeSrc":"9568:2:101","nodeType":"YulLiteral","src":"9568:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"9539:3:101","nodeType":"YulIdentifier","src":"9539:3:101"},"nativeSrc":"9539:32:101","nodeType":"YulFunctionCall","src":"9539:32:101"},"nativeSrc":"9536:52:101","nodeType":"YulIf","src":"9536:52:101"},{"nativeSrc":"9597:36:101","nodeType":"YulVariableDeclaration","src":"9597:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"9623:9:101","nodeType":"YulIdentifier","src":"9623:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"9610:12:101","nodeType":"YulIdentifier","src":"9610:12:101"},"nativeSrc":"9610:23:101","nodeType":"YulFunctionCall","src":"9610:23:101"},"variables":[{"name":"value","nativeSrc":"9601:5:101","nodeType":"YulTypedName","src":"9601:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"9667:5:101","nodeType":"YulIdentifier","src":"9667:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"9642:24:101","nodeType":"YulIdentifier","src":"9642:24:101"},"nativeSrc":"9642:31:101","nodeType":"YulFunctionCall","src":"9642:31:101"},"nativeSrc":"9642:31:101","nodeType":"YulExpressionStatement","src":"9642:31:101"},{"nativeSrc":"9682:15:101","nodeType":"YulAssignment","src":"9682:15:101","value":{"name":"value","nativeSrc":"9692:5:101","nodeType":"YulIdentifier","src":"9692:5:101"},"variableNames":[{"name":"value0","nativeSrc":"9682:6:101","nodeType":"YulIdentifier","src":"9682:6:101"}]},{"nativeSrc":"9706:47:101","nodeType":"YulVariableDeclaration","src":"9706:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9738:9:101","nodeType":"YulIdentifier","src":"9738:9:101"},{"kind":"number","nativeSrc":"9749:2:101","nodeType":"YulLiteral","src":"9749:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9734:3:101","nodeType":"YulIdentifier","src":"9734:3:101"},"nativeSrc":"9734:18:101","nodeType":"YulFunctionCall","src":"9734:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"9721:12:101","nodeType":"YulIdentifier","src":"9721:12:101"},"nativeSrc":"9721:32:101","nodeType":"YulFunctionCall","src":"9721:32:101"},"variables":[{"name":"value_1","nativeSrc":"9710:7:101","nodeType":"YulTypedName","src":"9710:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"9800:7:101","nodeType":"YulIdentifier","src":"9800:7:101"}],"functionName":{"name":"validator_revert_enum_ComponentStatus","nativeSrc":"9762:37:101","nodeType":"YulIdentifier","src":"9762:37:101"},"nativeSrc":"9762:46:101","nodeType":"YulFunctionCall","src":"9762:46:101"},"nativeSrc":"9762:46:101","nodeType":"YulExpressionStatement","src":"9762:46:101"},{"nativeSrc":"9817:17:101","nodeType":"YulAssignment","src":"9817:17:101","value":{"name":"value_1","nativeSrc":"9827:7:101","nodeType":"YulIdentifier","src":"9827:7:101"},"variableNames":[{"name":"value1","nativeSrc":"9817:6:101","nodeType":"YulIdentifier","src":"9817:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPoolComponent_$29188t_enum$_ComponentStatus_$22904","nativeSrc":"9388:452:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9484:9:101","nodeType":"YulTypedName","src":"9484:9:101","type":""},{"name":"dataEnd","nativeSrc":"9495:7:101","nodeType":"YulTypedName","src":"9495:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9507:6:101","nodeType":"YulTypedName","src":"9507:6:101","type":""},{"name":"value1","nativeSrc":"9515:6:101","nodeType":"YulTypedName","src":"9515:6:101","type":""}],"src":"9388:452:101"},{"body":{"nativeSrc":"9918:86:101","nodeType":"YulBlock","src":"9918:86:101","statements":[{"body":{"nativeSrc":"9958:16:101","nodeType":"YulBlock","src":"9958:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9967:1:101","nodeType":"YulLiteral","src":"9967:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9970:1:101","nodeType":"YulLiteral","src":"9970:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9960:6:101","nodeType":"YulIdentifier","src":"9960:6:101"},"nativeSrc":"9960:12:101","nodeType":"YulFunctionCall","src":"9960:12:101"},"nativeSrc":"9960:12:101","nodeType":"YulExpressionStatement","src":"9960:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"9939:3:101","nodeType":"YulIdentifier","src":"9939:3:101"},{"name":"offset","nativeSrc":"9944:6:101","nodeType":"YulIdentifier","src":"9944:6:101"}],"functionName":{"name":"sub","nativeSrc":"9935:3:101","nodeType":"YulIdentifier","src":"9935:3:101"},"nativeSrc":"9935:16:101","nodeType":"YulFunctionCall","src":"9935:16:101"},{"kind":"number","nativeSrc":"9953:3:101","nodeType":"YulLiteral","src":"9953:3:101","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"9931:3:101","nodeType":"YulIdentifier","src":"9931:3:101"},"nativeSrc":"9931:26:101","nodeType":"YulFunctionCall","src":"9931:26:101"},"nativeSrc":"9928:46:101","nodeType":"YulIf","src":"9928:46:101"},{"nativeSrc":"9983:15:101","nodeType":"YulAssignment","src":"9983:15:101","value":{"name":"offset","nativeSrc":"9992:6:101","nodeType":"YulIdentifier","src":"9992:6:101"},"variableNames":[{"name":"value","nativeSrc":"9983:5:101","nodeType":"YulIdentifier","src":"9983:5:101"}]}]},"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"9845:159:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"9892:6:101","nodeType":"YulTypedName","src":"9892:6:101","type":""},{"name":"end","nativeSrc":"9900:3:101","nodeType":"YulTypedName","src":"9900:3:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"9908:5:101","nodeType":"YulTypedName","src":"9908:5:101","type":""}],"src":"9845:159:101"},{"body":{"nativeSrc":"10189:398:101","nodeType":"YulBlock","src":"10189:398:101","statements":[{"body":{"nativeSrc":"10236:16:101","nodeType":"YulBlock","src":"10236:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10245:1:101","nodeType":"YulLiteral","src":"10245:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"10248:1:101","nodeType":"YulLiteral","src":"10248:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10238:6:101","nodeType":"YulIdentifier","src":"10238:6:101"},"nativeSrc":"10238:12:101","nodeType":"YulFunctionCall","src":"10238:12:101"},"nativeSrc":"10238:12:101","nodeType":"YulExpressionStatement","src":"10238:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10210:7:101","nodeType":"YulIdentifier","src":"10210:7:101"},{"name":"headStart","nativeSrc":"10219:9:101","nodeType":"YulIdentifier","src":"10219:9:101"}],"functionName":{"name":"sub","nativeSrc":"10206:3:101","nodeType":"YulIdentifier","src":"10206:3:101"},"nativeSrc":"10206:23:101","nodeType":"YulFunctionCall","src":"10206:23:101"},{"kind":"number","nativeSrc":"10231:3:101","nodeType":"YulLiteral","src":"10231:3:101","type":"","value":"832"}],"functionName":{"name":"slt","nativeSrc":"10202:3:101","nodeType":"YulIdentifier","src":"10202:3:101"},"nativeSrc":"10202:33:101","nodeType":"YulFunctionCall","src":"10202:33:101"},"nativeSrc":"10199:53:101","nodeType":"YulIf","src":"10199:53:101"},{"nativeSrc":"10261:67:101","nodeType":"YulAssignment","src":"10261:67:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10309:9:101","nodeType":"YulIdentifier","src":"10309:9:101"},{"name":"dataEnd","nativeSrc":"10320:7:101","nodeType":"YulIdentifier","src":"10320:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"10271:37:101","nodeType":"YulIdentifier","src":"10271:37:101"},"nativeSrc":"10271:57:101","nodeType":"YulFunctionCall","src":"10271:57:101"},"variableNames":[{"name":"value0","nativeSrc":"10261:6:101","nodeType":"YulIdentifier","src":"10261:6:101"}]},{"nativeSrc":"10337:68:101","nodeType":"YulAssignment","src":"10337:68:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10380:9:101","nodeType":"YulIdentifier","src":"10380:9:101"},{"kind":"number","nativeSrc":"10391:3:101","nodeType":"YulLiteral","src":"10391:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"10376:3:101","nodeType":"YulIdentifier","src":"10376:3:101"},"nativeSrc":"10376:19:101","nodeType":"YulFunctionCall","src":"10376:19:101"},{"name":"dataEnd","nativeSrc":"10397:7:101","nodeType":"YulIdentifier","src":"10397:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"10347:28:101","nodeType":"YulIdentifier","src":"10347:28:101"},"nativeSrc":"10347:58:101","nodeType":"YulFunctionCall","src":"10347:58:101"},"variableNames":[{"name":"value1","nativeSrc":"10337:6:101","nodeType":"YulIdentifier","src":"10337:6:101"}]},{"nativeSrc":"10414:46:101","nodeType":"YulVariableDeclaration","src":"10414:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10444:9:101","nodeType":"YulIdentifier","src":"10444:9:101"},{"kind":"number","nativeSrc":"10455:3:101","nodeType":"YulLiteral","src":"10455:3:101","type":"","value":"768"}],"functionName":{"name":"add","nativeSrc":"10440:3:101","nodeType":"YulIdentifier","src":"10440:3:101"},"nativeSrc":"10440:19:101","nodeType":"YulFunctionCall","src":"10440:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"10427:12:101","nodeType":"YulIdentifier","src":"10427:12:101"},"nativeSrc":"10427:33:101","nodeType":"YulFunctionCall","src":"10427:33:101"},"variables":[{"name":"value","nativeSrc":"10418:5:101","nodeType":"YulTypedName","src":"10418:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10494:5:101","nodeType":"YulIdentifier","src":"10494:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10469:24:101","nodeType":"YulIdentifier","src":"10469:24:101"},"nativeSrc":"10469:31:101","nodeType":"YulFunctionCall","src":"10469:31:101"},"nativeSrc":"10469:31:101","nodeType":"YulExpressionStatement","src":"10469:31:101"},{"nativeSrc":"10509:15:101","nodeType":"YulAssignment","src":"10509:15:101","value":{"name":"value","nativeSrc":"10519:5:101","nodeType":"YulIdentifier","src":"10519:5:101"},"variableNames":[{"name":"value2","nativeSrc":"10509:6:101","nodeType":"YulIdentifier","src":"10509:6:101"}]},{"nativeSrc":"10533:48:101","nodeType":"YulAssignment","src":"10533:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10565:9:101","nodeType":"YulIdentifier","src":"10565:9:101"},{"kind":"number","nativeSrc":"10576:3:101","nodeType":"YulLiteral","src":"10576:3:101","type":"","value":"800"}],"functionName":{"name":"add","nativeSrc":"10561:3:101","nodeType":"YulIdentifier","src":"10561:3:101"},"nativeSrc":"10561:19:101","nodeType":"YulFunctionCall","src":"10561:19:101"}],"functionName":{"name":"abi_decode_uint96","nativeSrc":"10543:17:101","nodeType":"YulIdentifier","src":"10543:17:101"},"nativeSrc":"10543:38:101","nodeType":"YulFunctionCall","src":"10543:38:101"},"variableNames":[{"name":"value3","nativeSrc":"10533:6:101","nodeType":"YulIdentifier","src":"10533:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_struct$_PolicyData_$22256_memory_ptrt_addresst_uint96","nativeSrc":"10009:578:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10131:9:101","nodeType":"YulTypedName","src":"10131:9:101","type":""},{"name":"dataEnd","nativeSrc":"10142:7:101","nodeType":"YulTypedName","src":"10142:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10154:6:101","nodeType":"YulTypedName","src":"10154:6:101","type":""},{"name":"value1","nativeSrc":"10162:6:101","nodeType":"YulTypedName","src":"10162:6:101","type":""},{"name":"value2","nativeSrc":"10170:6:101","nodeType":"YulTypedName","src":"10170:6:101","type":""},{"name":"value3","nativeSrc":"10178:6:101","nodeType":"YulTypedName","src":"10178:6:101","type":""}],"src":"10009:578:101"},{"body":{"nativeSrc":"10728:314:101","nodeType":"YulBlock","src":"10728:314:101","statements":[{"body":{"nativeSrc":"10774:16:101","nodeType":"YulBlock","src":"10774:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10783:1:101","nodeType":"YulLiteral","src":"10783:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"10786:1:101","nodeType":"YulLiteral","src":"10786:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10776:6:101","nodeType":"YulIdentifier","src":"10776:6:101"},"nativeSrc":"10776:12:101","nodeType":"YulFunctionCall","src":"10776:12:101"},"nativeSrc":"10776:12:101","nodeType":"YulExpressionStatement","src":"10776:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10749:7:101","nodeType":"YulIdentifier","src":"10749:7:101"},{"name":"headStart","nativeSrc":"10758:9:101","nodeType":"YulIdentifier","src":"10758:9:101"}],"functionName":{"name":"sub","nativeSrc":"10745:3:101","nodeType":"YulIdentifier","src":"10745:3:101"},"nativeSrc":"10745:23:101","nodeType":"YulFunctionCall","src":"10745:23:101"},{"kind":"number","nativeSrc":"10770:2:101","nodeType":"YulLiteral","src":"10770:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"10741:3:101","nodeType":"YulIdentifier","src":"10741:3:101"},"nativeSrc":"10741:32:101","nodeType":"YulFunctionCall","src":"10741:32:101"},"nativeSrc":"10738:52:101","nodeType":"YulIf","src":"10738:52:101"},{"nativeSrc":"10799:36:101","nodeType":"YulVariableDeclaration","src":"10799:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10825:9:101","nodeType":"YulIdentifier","src":"10825:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"10812:12:101","nodeType":"YulIdentifier","src":"10812:12:101"},"nativeSrc":"10812:23:101","nodeType":"YulFunctionCall","src":"10812:23:101"},"variables":[{"name":"value","nativeSrc":"10803:5:101","nodeType":"YulTypedName","src":"10803:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10869:5:101","nodeType":"YulIdentifier","src":"10869:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10844:24:101","nodeType":"YulIdentifier","src":"10844:24:101"},"nativeSrc":"10844:31:101","nodeType":"YulFunctionCall","src":"10844:31:101"},"nativeSrc":"10844:31:101","nodeType":"YulExpressionStatement","src":"10844:31:101"},{"nativeSrc":"10884:15:101","nodeType":"YulAssignment","src":"10884:15:101","value":{"name":"value","nativeSrc":"10894:5:101","nodeType":"YulIdentifier","src":"10894:5:101"},"variableNames":[{"name":"value0","nativeSrc":"10884:6:101","nodeType":"YulIdentifier","src":"10884:6:101"}]},{"nativeSrc":"10908:47:101","nodeType":"YulVariableDeclaration","src":"10908:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10940:9:101","nodeType":"YulIdentifier","src":"10940:9:101"},{"kind":"number","nativeSrc":"10951:2:101","nodeType":"YulLiteral","src":"10951:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10936:3:101","nodeType":"YulIdentifier","src":"10936:3:101"},"nativeSrc":"10936:18:101","nodeType":"YulFunctionCall","src":"10936:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"10923:12:101","nodeType":"YulIdentifier","src":"10923:12:101"},"nativeSrc":"10923:32:101","nodeType":"YulFunctionCall","src":"10923:32:101"},"variables":[{"name":"value_1","nativeSrc":"10912:7:101","nodeType":"YulTypedName","src":"10912:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"11002:7:101","nodeType":"YulIdentifier","src":"11002:7:101"}],"functionName":{"name":"validator_revert_enum_ComponentStatus","nativeSrc":"10964:37:101","nodeType":"YulIdentifier","src":"10964:37:101"},"nativeSrc":"10964:46:101","nodeType":"YulFunctionCall","src":"10964:46:101"},"nativeSrc":"10964:46:101","nodeType":"YulExpressionStatement","src":"10964:46:101"},{"nativeSrc":"11019:17:101","nodeType":"YulAssignment","src":"11019:17:101","value":{"name":"value_1","nativeSrc":"11029:7:101","nodeType":"YulIdentifier","src":"11029:7:101"},"variableNames":[{"name":"value1","nativeSrc":"11019:6:101","nodeType":"YulIdentifier","src":"11019:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPoolComponent_$29188t_enum$_ComponentKind_$22910","nativeSrc":"10592:450:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10686:9:101","nodeType":"YulTypedName","src":"10686:9:101","type":""},{"name":"dataEnd","nativeSrc":"10697:7:101","nodeType":"YulTypedName","src":"10697:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10709:6:101","nodeType":"YulTypedName","src":"10709:6:101","type":""},{"name":"value1","nativeSrc":"10717:6:101","nodeType":"YulTypedName","src":"10717:6:101","type":""}],"src":"10592:450:101"},{"body":{"nativeSrc":"11199:451:101","nodeType":"YulBlock","src":"11199:451:101","statements":[{"body":{"nativeSrc":"11246:16:101","nodeType":"YulBlock","src":"11246:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11255:1:101","nodeType":"YulLiteral","src":"11255:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11258:1:101","nodeType":"YulLiteral","src":"11258:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11248:6:101","nodeType":"YulIdentifier","src":"11248:6:101"},"nativeSrc":"11248:12:101","nodeType":"YulFunctionCall","src":"11248:12:101"},"nativeSrc":"11248:12:101","nodeType":"YulExpressionStatement","src":"11248:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11220:7:101","nodeType":"YulIdentifier","src":"11220:7:101"},{"name":"headStart","nativeSrc":"11229:9:101","nodeType":"YulIdentifier","src":"11229:9:101"}],"functionName":{"name":"sub","nativeSrc":"11216:3:101","nodeType":"YulIdentifier","src":"11216:3:101"},"nativeSrc":"11216:23:101","nodeType":"YulFunctionCall","src":"11216:23:101"},{"kind":"number","nativeSrc":"11241:3:101","nodeType":"YulLiteral","src":"11241:3:101","type":"","value":"480"}],"functionName":{"name":"slt","nativeSrc":"11212:3:101","nodeType":"YulIdentifier","src":"11212:3:101"},"nativeSrc":"11212:33:101","nodeType":"YulFunctionCall","src":"11212:33:101"},"nativeSrc":"11209:53:101","nodeType":"YulIf","src":"11209:53:101"},{"nativeSrc":"11271:67:101","nodeType":"YulAssignment","src":"11271:67:101","value":{"arguments":[{"name":"headStart","nativeSrc":"11319:9:101","nodeType":"YulIdentifier","src":"11319:9:101"},{"name":"dataEnd","nativeSrc":"11330:7:101","nodeType":"YulIdentifier","src":"11330:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"11281:37:101","nodeType":"YulIdentifier","src":"11281:37:101"},"nativeSrc":"11281:57:101","nodeType":"YulFunctionCall","src":"11281:57:101"},"variableNames":[{"name":"value0","nativeSrc":"11271:6:101","nodeType":"YulIdentifier","src":"11271:6:101"}]},{"nativeSrc":"11347:14:101","nodeType":"YulVariableDeclaration","src":"11347:14:101","value":{"kind":"number","nativeSrc":"11360:1:101","nodeType":"YulLiteral","src":"11360:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"11351:5:101","nodeType":"YulTypedName","src":"11351:5:101","type":""}]},{"nativeSrc":"11370:42:101","nodeType":"YulAssignment","src":"11370:42:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11396:9:101","nodeType":"YulIdentifier","src":"11396:9:101"},{"kind":"number","nativeSrc":"11407:3:101","nodeType":"YulLiteral","src":"11407:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"11392:3:101","nodeType":"YulIdentifier","src":"11392:3:101"},"nativeSrc":"11392:19:101","nodeType":"YulFunctionCall","src":"11392:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"11379:12:101","nodeType":"YulIdentifier","src":"11379:12:101"},"nativeSrc":"11379:33:101","nodeType":"YulFunctionCall","src":"11379:33:101"},"variableNames":[{"name":"value","nativeSrc":"11370:5:101","nodeType":"YulIdentifier","src":"11370:5:101"}]},{"nativeSrc":"11421:15:101","nodeType":"YulAssignment","src":"11421:15:101","value":{"name":"value","nativeSrc":"11431:5:101","nodeType":"YulIdentifier","src":"11431:5:101"},"variableNames":[{"name":"value1","nativeSrc":"11421:6:101","nodeType":"YulIdentifier","src":"11421:6:101"}]},{"nativeSrc":"11445:16:101","nodeType":"YulVariableDeclaration","src":"11445:16:101","value":{"kind":"number","nativeSrc":"11460:1:101","nodeType":"YulLiteral","src":"11460:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"11449:7:101","nodeType":"YulTypedName","src":"11449:7:101","type":""}]},{"nativeSrc":"11470:44:101","nodeType":"YulAssignment","src":"11470:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11498:9:101","nodeType":"YulIdentifier","src":"11498:9:101"},{"kind":"number","nativeSrc":"11509:3:101","nodeType":"YulLiteral","src":"11509:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"11494:3:101","nodeType":"YulIdentifier","src":"11494:3:101"},"nativeSrc":"11494:19:101","nodeType":"YulFunctionCall","src":"11494:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"11481:12:101","nodeType":"YulIdentifier","src":"11481:12:101"},"nativeSrc":"11481:33:101","nodeType":"YulFunctionCall","src":"11481:33:101"},"variableNames":[{"name":"value_1","nativeSrc":"11470:7:101","nodeType":"YulIdentifier","src":"11470:7:101"}]},{"nativeSrc":"11523:17:101","nodeType":"YulAssignment","src":"11523:17:101","value":{"name":"value_1","nativeSrc":"11533:7:101","nodeType":"YulIdentifier","src":"11533:7:101"},"variableNames":[{"name":"value2","nativeSrc":"11523:6:101","nodeType":"YulIdentifier","src":"11523:6:101"}]},{"nativeSrc":"11549:16:101","nodeType":"YulVariableDeclaration","src":"11549:16:101","value":{"kind":"number","nativeSrc":"11564:1:101","nodeType":"YulLiteral","src":"11564:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"11553:7:101","nodeType":"YulTypedName","src":"11553:7:101","type":""}]},{"nativeSrc":"11574:44:101","nodeType":"YulAssignment","src":"11574:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11602:9:101","nodeType":"YulIdentifier","src":"11602:9:101"},{"kind":"number","nativeSrc":"11613:3:101","nodeType":"YulLiteral","src":"11613:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"11598:3:101","nodeType":"YulIdentifier","src":"11598:3:101"},"nativeSrc":"11598:19:101","nodeType":"YulFunctionCall","src":"11598:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"11585:12:101","nodeType":"YulIdentifier","src":"11585:12:101"},"nativeSrc":"11585:33:101","nodeType":"YulFunctionCall","src":"11585:33:101"},"variableNames":[{"name":"value_2","nativeSrc":"11574:7:101","nodeType":"YulIdentifier","src":"11574:7:101"}]},{"nativeSrc":"11627:17:101","nodeType":"YulAssignment","src":"11627:17:101","value":{"name":"value_2","nativeSrc":"11637:7:101","nodeType":"YulIdentifier","src":"11637:7:101"},"variableNames":[{"name":"value3","nativeSrc":"11627:6:101","nodeType":"YulIdentifier","src":"11627:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_uint256t_uint256t_uint256","nativeSrc":"11047:603:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11141:9:101","nodeType":"YulTypedName","src":"11141:9:101","type":""},{"name":"dataEnd","nativeSrc":"11152:7:101","nodeType":"YulTypedName","src":"11152:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11164:6:101","nodeType":"YulTypedName","src":"11164:6:101","type":""},{"name":"value1","nativeSrc":"11172:6:101","nodeType":"YulTypedName","src":"11172:6:101","type":""},{"name":"value2","nativeSrc":"11180:6:101","nodeType":"YulTypedName","src":"11180:6:101","type":""},{"name":"value3","nativeSrc":"11188:6:101","nodeType":"YulTypedName","src":"11188:6:101","type":""}],"src":"11047:603:101"},{"body":{"nativeSrc":"11725:177:101","nodeType":"YulBlock","src":"11725:177:101","statements":[{"body":{"nativeSrc":"11771:16:101","nodeType":"YulBlock","src":"11771:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11780:1:101","nodeType":"YulLiteral","src":"11780:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11783:1:101","nodeType":"YulLiteral","src":"11783:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11773:6:101","nodeType":"YulIdentifier","src":"11773:6:101"},"nativeSrc":"11773:12:101","nodeType":"YulFunctionCall","src":"11773:12:101"},"nativeSrc":"11773:12:101","nodeType":"YulExpressionStatement","src":"11773:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11746:7:101","nodeType":"YulIdentifier","src":"11746:7:101"},{"name":"headStart","nativeSrc":"11755:9:101","nodeType":"YulIdentifier","src":"11755:9:101"}],"functionName":{"name":"sub","nativeSrc":"11742:3:101","nodeType":"YulIdentifier","src":"11742:3:101"},"nativeSrc":"11742:23:101","nodeType":"YulFunctionCall","src":"11742:23:101"},{"kind":"number","nativeSrc":"11767:2:101","nodeType":"YulLiteral","src":"11767:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"11738:3:101","nodeType":"YulIdentifier","src":"11738:3:101"},"nativeSrc":"11738:32:101","nodeType":"YulFunctionCall","src":"11738:32:101"},"nativeSrc":"11735:52:101","nodeType":"YulIf","src":"11735:52:101"},{"nativeSrc":"11796:36:101","nodeType":"YulVariableDeclaration","src":"11796:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"11822:9:101","nodeType":"YulIdentifier","src":"11822:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"11809:12:101","nodeType":"YulIdentifier","src":"11809:12:101"},"nativeSrc":"11809:23:101","nodeType":"YulFunctionCall","src":"11809:23:101"},"variables":[{"name":"value","nativeSrc":"11800:5:101","nodeType":"YulTypedName","src":"11800:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"11866:5:101","nodeType":"YulIdentifier","src":"11866:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"11841:24:101","nodeType":"YulIdentifier","src":"11841:24:101"},"nativeSrc":"11841:31:101","nodeType":"YulFunctionCall","src":"11841:31:101"},"nativeSrc":"11841:31:101","nodeType":"YulExpressionStatement","src":"11841:31:101"},{"nativeSrc":"11881:15:101","nodeType":"YulAssignment","src":"11881:15:101","value":{"name":"value","nativeSrc":"11891:5:101","nodeType":"YulIdentifier","src":"11891:5:101"},"variableNames":[{"name":"value0","nativeSrc":"11881:6:101","nodeType":"YulIdentifier","src":"11881:6:101"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"11655:247:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11691:9:101","nodeType":"YulTypedName","src":"11691:9:101","type":""},{"name":"dataEnd","nativeSrc":"11702:7:101","nodeType":"YulTypedName","src":"11702:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11714:6:101","nodeType":"YulTypedName","src":"11714:6:101","type":""}],"src":"11655:247:101"},{"body":{"nativeSrc":"12015:280:101","nodeType":"YulBlock","src":"12015:280:101","statements":[{"body":{"nativeSrc":"12061:16:101","nodeType":"YulBlock","src":"12061:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12070:1:101","nodeType":"YulLiteral","src":"12070:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"12073:1:101","nodeType":"YulLiteral","src":"12073:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12063:6:101","nodeType":"YulIdentifier","src":"12063:6:101"},"nativeSrc":"12063:12:101","nodeType":"YulFunctionCall","src":"12063:12:101"},"nativeSrc":"12063:12:101","nodeType":"YulExpressionStatement","src":"12063:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12036:7:101","nodeType":"YulIdentifier","src":"12036:7:101"},{"name":"headStart","nativeSrc":"12045:9:101","nodeType":"YulIdentifier","src":"12045:9:101"}],"functionName":{"name":"sub","nativeSrc":"12032:3:101","nodeType":"YulIdentifier","src":"12032:3:101"},"nativeSrc":"12032:23:101","nodeType":"YulFunctionCall","src":"12032:23:101"},{"kind":"number","nativeSrc":"12057:2:101","nodeType":"YulLiteral","src":"12057:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"12028:3:101","nodeType":"YulIdentifier","src":"12028:3:101"},"nativeSrc":"12028:32:101","nodeType":"YulFunctionCall","src":"12028:32:101"},"nativeSrc":"12025:52:101","nodeType":"YulIf","src":"12025:52:101"},{"nativeSrc":"12086:36:101","nodeType":"YulVariableDeclaration","src":"12086:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12112:9:101","nodeType":"YulIdentifier","src":"12112:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"12099:12:101","nodeType":"YulIdentifier","src":"12099:12:101"},"nativeSrc":"12099:23:101","nodeType":"YulFunctionCall","src":"12099:23:101"},"variables":[{"name":"value","nativeSrc":"12090:5:101","nodeType":"YulTypedName","src":"12090:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12156:5:101","nodeType":"YulIdentifier","src":"12156:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"12131:24:101","nodeType":"YulIdentifier","src":"12131:24:101"},"nativeSrc":"12131:31:101","nodeType":"YulFunctionCall","src":"12131:31:101"},"nativeSrc":"12131:31:101","nodeType":"YulExpressionStatement","src":"12131:31:101"},{"nativeSrc":"12171:15:101","nodeType":"YulAssignment","src":"12171:15:101","value":{"name":"value","nativeSrc":"12181:5:101","nodeType":"YulIdentifier","src":"12181:5:101"},"variableNames":[{"name":"value0","nativeSrc":"12171:6:101","nodeType":"YulIdentifier","src":"12171:6:101"}]},{"nativeSrc":"12195:16:101","nodeType":"YulVariableDeclaration","src":"12195:16:101","value":{"kind":"number","nativeSrc":"12210:1:101","nodeType":"YulLiteral","src":"12210:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"12199:7:101","nodeType":"YulTypedName","src":"12199:7:101","type":""}]},{"nativeSrc":"12220:43:101","nodeType":"YulAssignment","src":"12220:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12248:9:101","nodeType":"YulIdentifier","src":"12248:9:101"},{"kind":"number","nativeSrc":"12259:2:101","nodeType":"YulLiteral","src":"12259:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12244:3:101","nodeType":"YulIdentifier","src":"12244:3:101"},"nativeSrc":"12244:18:101","nodeType":"YulFunctionCall","src":"12244:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"12231:12:101","nodeType":"YulIdentifier","src":"12231:12:101"},"nativeSrc":"12231:32:101","nodeType":"YulFunctionCall","src":"12231:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"12220:7:101","nodeType":"YulIdentifier","src":"12220:7:101"}]},{"nativeSrc":"12272:17:101","nodeType":"YulAssignment","src":"12272:17:101","value":{"name":"value_1","nativeSrc":"12282:7:101","nodeType":"YulIdentifier","src":"12282:7:101"},"variableNames":[{"name":"value1","nativeSrc":"12272:6:101","nodeType":"YulIdentifier","src":"12272:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IRiskModule_$29295t_uint256","nativeSrc":"11907:388:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11973:9:101","nodeType":"YulTypedName","src":"11973:9:101","type":""},{"name":"dataEnd","nativeSrc":"11984:7:101","nodeType":"YulTypedName","src":"11984:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11996:6:101","nodeType":"YulTypedName","src":"11996:6:101","type":""},{"name":"value1","nativeSrc":"12004:6:101","nodeType":"YulTypedName","src":"12004:6:101","type":""}],"src":"11907:388:101"},{"body":{"nativeSrc":"12391:177:101","nodeType":"YulBlock","src":"12391:177:101","statements":[{"body":{"nativeSrc":"12437:16:101","nodeType":"YulBlock","src":"12437:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12446:1:101","nodeType":"YulLiteral","src":"12446:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"12449:1:101","nodeType":"YulLiteral","src":"12449:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12439:6:101","nodeType":"YulIdentifier","src":"12439:6:101"},"nativeSrc":"12439:12:101","nodeType":"YulFunctionCall","src":"12439:12:101"},"nativeSrc":"12439:12:101","nodeType":"YulExpressionStatement","src":"12439:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12412:7:101","nodeType":"YulIdentifier","src":"12412:7:101"},{"name":"headStart","nativeSrc":"12421:9:101","nodeType":"YulIdentifier","src":"12421:9:101"}],"functionName":{"name":"sub","nativeSrc":"12408:3:101","nodeType":"YulIdentifier","src":"12408:3:101"},"nativeSrc":"12408:23:101","nodeType":"YulFunctionCall","src":"12408:23:101"},{"kind":"number","nativeSrc":"12433:2:101","nodeType":"YulLiteral","src":"12433:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"12404:3:101","nodeType":"YulIdentifier","src":"12404:3:101"},"nativeSrc":"12404:32:101","nodeType":"YulFunctionCall","src":"12404:32:101"},"nativeSrc":"12401:52:101","nodeType":"YulIf","src":"12401:52:101"},{"nativeSrc":"12462:36:101","nodeType":"YulVariableDeclaration","src":"12462:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12488:9:101","nodeType":"YulIdentifier","src":"12488:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"12475:12:101","nodeType":"YulIdentifier","src":"12475:12:101"},"nativeSrc":"12475:23:101","nodeType":"YulFunctionCall","src":"12475:23:101"},"variables":[{"name":"value","nativeSrc":"12466:5:101","nodeType":"YulTypedName","src":"12466:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12532:5:101","nodeType":"YulIdentifier","src":"12532:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"12507:24:101","nodeType":"YulIdentifier","src":"12507:24:101"},"nativeSrc":"12507:31:101","nodeType":"YulFunctionCall","src":"12507:31:101"},"nativeSrc":"12507:31:101","nodeType":"YulExpressionStatement","src":"12507:31:101"},{"nativeSrc":"12547:15:101","nodeType":"YulAssignment","src":"12547:15:101","value":{"name":"value","nativeSrc":"12557:5:101","nodeType":"YulIdentifier","src":"12557:5:101"},"variableNames":[{"name":"value0","nativeSrc":"12547:6:101","nodeType":"YulIdentifier","src":"12547:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IRiskModule_$29295","nativeSrc":"12300:268:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12357:9:101","nodeType":"YulTypedName","src":"12357:9:101","type":""},{"name":"dataEnd","nativeSrc":"12368:7:101","nodeType":"YulTypedName","src":"12368:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12380:6:101","nodeType":"YulTypedName","src":"12380:6:101","type":""}],"src":"12300:268:101"},{"body":{"nativeSrc":"12702:119:101","nodeType":"YulBlock","src":"12702:119:101","statements":[{"nativeSrc":"12712:26:101","nodeType":"YulAssignment","src":"12712:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12724:9:101","nodeType":"YulIdentifier","src":"12724:9:101"},{"kind":"number","nativeSrc":"12735:2:101","nodeType":"YulLiteral","src":"12735:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12720:3:101","nodeType":"YulIdentifier","src":"12720:3:101"},"nativeSrc":"12720:18:101","nodeType":"YulFunctionCall","src":"12720:18:101"},"variableNames":[{"name":"tail","nativeSrc":"12712:4:101","nodeType":"YulIdentifier","src":"12712:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12754:9:101","nodeType":"YulIdentifier","src":"12754:9:101"},{"name":"value0","nativeSrc":"12765:6:101","nodeType":"YulIdentifier","src":"12765:6:101"}],"functionName":{"name":"mstore","nativeSrc":"12747:6:101","nodeType":"YulIdentifier","src":"12747:6:101"},"nativeSrc":"12747:25:101","nodeType":"YulFunctionCall","src":"12747:25:101"},"nativeSrc":"12747:25:101","nodeType":"YulExpressionStatement","src":"12747:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12792:9:101","nodeType":"YulIdentifier","src":"12792:9:101"},{"kind":"number","nativeSrc":"12803:2:101","nodeType":"YulLiteral","src":"12803:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12788:3:101","nodeType":"YulIdentifier","src":"12788:3:101"},"nativeSrc":"12788:18:101","nodeType":"YulFunctionCall","src":"12788:18:101"},{"name":"value1","nativeSrc":"12808:6:101","nodeType":"YulIdentifier","src":"12808:6:101"}],"functionName":{"name":"mstore","nativeSrc":"12781:6:101","nodeType":"YulIdentifier","src":"12781:6:101"},"nativeSrc":"12781:34:101","nodeType":"YulFunctionCall","src":"12781:34:101"},"nativeSrc":"12781:34:101","nodeType":"YulExpressionStatement","src":"12781:34:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"12573:248:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12663:9:101","nodeType":"YulTypedName","src":"12663:9:101","type":""},{"name":"value1","nativeSrc":"12674:6:101","nodeType":"YulTypedName","src":"12674:6:101","type":""},{"name":"value0","nativeSrc":"12682:6:101","nodeType":"YulTypedName","src":"12682:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12693:4:101","nodeType":"YulTypedName","src":"12693:4:101","type":""}],"src":"12573:248:101"},{"body":{"nativeSrc":"12868:76:101","nodeType":"YulBlock","src":"12868:76:101","statements":[{"body":{"nativeSrc":"12922:16:101","nodeType":"YulBlock","src":"12922:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12931:1:101","nodeType":"YulLiteral","src":"12931:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"12934:1:101","nodeType":"YulLiteral","src":"12934:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12924:6:101","nodeType":"YulIdentifier","src":"12924:6:101"},"nativeSrc":"12924:12:101","nodeType":"YulFunctionCall","src":"12924:12:101"},"nativeSrc":"12924:12:101","nodeType":"YulExpressionStatement","src":"12924:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"12891:5:101","nodeType":"YulIdentifier","src":"12891:5:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"12912:5:101","nodeType":"YulIdentifier","src":"12912:5:101"}],"functionName":{"name":"iszero","nativeSrc":"12905:6:101","nodeType":"YulIdentifier","src":"12905:6:101"},"nativeSrc":"12905:13:101","nodeType":"YulFunctionCall","src":"12905:13:101"}],"functionName":{"name":"iszero","nativeSrc":"12898:6:101","nodeType":"YulIdentifier","src":"12898:6:101"},"nativeSrc":"12898:21:101","nodeType":"YulFunctionCall","src":"12898:21:101"}],"functionName":{"name":"eq","nativeSrc":"12888:2:101","nodeType":"YulIdentifier","src":"12888:2:101"},"nativeSrc":"12888:32:101","nodeType":"YulFunctionCall","src":"12888:32:101"}],"functionName":{"name":"iszero","nativeSrc":"12881:6:101","nodeType":"YulIdentifier","src":"12881:6:101"},"nativeSrc":"12881:40:101","nodeType":"YulFunctionCall","src":"12881:40:101"},"nativeSrc":"12878:60:101","nodeType":"YulIf","src":"12878:60:101"}]},"name":"validator_revert_bool","nativeSrc":"12826:118:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"12857:5:101","nodeType":"YulTypedName","src":"12857:5:101","type":""}],"src":"12826:118:101"},{"body":{"nativeSrc":"13033:298:101","nodeType":"YulBlock","src":"13033:298:101","statements":[{"body":{"nativeSrc":"13079:16:101","nodeType":"YulBlock","src":"13079:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13088:1:101","nodeType":"YulLiteral","src":"13088:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"13091:1:101","nodeType":"YulLiteral","src":"13091:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13081:6:101","nodeType":"YulIdentifier","src":"13081:6:101"},"nativeSrc":"13081:12:101","nodeType":"YulFunctionCall","src":"13081:12:101"},"nativeSrc":"13081:12:101","nodeType":"YulExpressionStatement","src":"13081:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13054:7:101","nodeType":"YulIdentifier","src":"13054:7:101"},{"name":"headStart","nativeSrc":"13063:9:101","nodeType":"YulIdentifier","src":"13063:9:101"}],"functionName":{"name":"sub","nativeSrc":"13050:3:101","nodeType":"YulIdentifier","src":"13050:3:101"},"nativeSrc":"13050:23:101","nodeType":"YulFunctionCall","src":"13050:23:101"},{"kind":"number","nativeSrc":"13075:2:101","nodeType":"YulLiteral","src":"13075:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"13046:3:101","nodeType":"YulIdentifier","src":"13046:3:101"},"nativeSrc":"13046:32:101","nodeType":"YulFunctionCall","src":"13046:32:101"},"nativeSrc":"13043:52:101","nodeType":"YulIf","src":"13043:52:101"},{"nativeSrc":"13104:36:101","nodeType":"YulVariableDeclaration","src":"13104:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"13130:9:101","nodeType":"YulIdentifier","src":"13130:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"13117:12:101","nodeType":"YulIdentifier","src":"13117:12:101"},"nativeSrc":"13117:23:101","nodeType":"YulFunctionCall","src":"13117:23:101"},"variables":[{"name":"value","nativeSrc":"13108:5:101","nodeType":"YulTypedName","src":"13108:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13174:5:101","nodeType":"YulIdentifier","src":"13174:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"13149:24:101","nodeType":"YulIdentifier","src":"13149:24:101"},"nativeSrc":"13149:31:101","nodeType":"YulFunctionCall","src":"13149:31:101"},"nativeSrc":"13149:31:101","nodeType":"YulExpressionStatement","src":"13149:31:101"},{"nativeSrc":"13189:15:101","nodeType":"YulAssignment","src":"13189:15:101","value":{"name":"value","nativeSrc":"13199:5:101","nodeType":"YulIdentifier","src":"13199:5:101"},"variableNames":[{"name":"value0","nativeSrc":"13189:6:101","nodeType":"YulIdentifier","src":"13189:6:101"}]},{"nativeSrc":"13213:47:101","nodeType":"YulVariableDeclaration","src":"13213:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13245:9:101","nodeType":"YulIdentifier","src":"13245:9:101"},{"kind":"number","nativeSrc":"13256:2:101","nodeType":"YulLiteral","src":"13256:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13241:3:101","nodeType":"YulIdentifier","src":"13241:3:101"},"nativeSrc":"13241:18:101","nodeType":"YulFunctionCall","src":"13241:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"13228:12:101","nodeType":"YulIdentifier","src":"13228:12:101"},"nativeSrc":"13228:32:101","nodeType":"YulFunctionCall","src":"13228:32:101"},"variables":[{"name":"value_1","nativeSrc":"13217:7:101","nodeType":"YulTypedName","src":"13217:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"13291:7:101","nodeType":"YulIdentifier","src":"13291:7:101"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"13269:21:101","nodeType":"YulIdentifier","src":"13269:21:101"},"nativeSrc":"13269:30:101","nodeType":"YulFunctionCall","src":"13269:30:101"},"nativeSrc":"13269:30:101","nodeType":"YulExpressionStatement","src":"13269:30:101"},{"nativeSrc":"13308:17:101","nodeType":"YulAssignment","src":"13308:17:101","value":{"name":"value_1","nativeSrc":"13318:7:101","nodeType":"YulIdentifier","src":"13318:7:101"},"variableNames":[{"name":"value1","nativeSrc":"13308:6:101","nodeType":"YulIdentifier","src":"13308:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_bool","nativeSrc":"12949:382:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12991:9:101","nodeType":"YulTypedName","src":"12991:9:101","type":""},{"name":"dataEnd","nativeSrc":"13002:7:101","nodeType":"YulTypedName","src":"13002:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13014:6:101","nodeType":"YulTypedName","src":"13014:6:101","type":""},{"name":"value1","nativeSrc":"13022:6:101","nodeType":"YulTypedName","src":"13022:6:101","type":""}],"src":"12949:382:101"},{"body":{"nativeSrc":"13452:505:101","nodeType":"YulBlock","src":"13452:505:101","statements":[{"body":{"nativeSrc":"13498:16:101","nodeType":"YulBlock","src":"13498:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13507:1:101","nodeType":"YulLiteral","src":"13507:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"13510:1:101","nodeType":"YulLiteral","src":"13510:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13500:6:101","nodeType":"YulIdentifier","src":"13500:6:101"},"nativeSrc":"13500:12:101","nodeType":"YulFunctionCall","src":"13500:12:101"},"nativeSrc":"13500:12:101","nodeType":"YulExpressionStatement","src":"13500:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13473:7:101","nodeType":"YulIdentifier","src":"13473:7:101"},{"name":"headStart","nativeSrc":"13482:9:101","nodeType":"YulIdentifier","src":"13482:9:101"}],"functionName":{"name":"sub","nativeSrc":"13469:3:101","nodeType":"YulIdentifier","src":"13469:3:101"},"nativeSrc":"13469:23:101","nodeType":"YulFunctionCall","src":"13469:23:101"},{"kind":"number","nativeSrc":"13494:2:101","nodeType":"YulLiteral","src":"13494:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"13465:3:101","nodeType":"YulIdentifier","src":"13465:3:101"},"nativeSrc":"13465:32:101","nodeType":"YulFunctionCall","src":"13465:32:101"},"nativeSrc":"13462:52:101","nodeType":"YulIf","src":"13462:52:101"},{"nativeSrc":"13523:37:101","nodeType":"YulVariableDeclaration","src":"13523:37:101","value":{"arguments":[{"name":"headStart","nativeSrc":"13550:9:101","nodeType":"YulIdentifier","src":"13550:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"13537:12:101","nodeType":"YulIdentifier","src":"13537:12:101"},"nativeSrc":"13537:23:101","nodeType":"YulFunctionCall","src":"13537:23:101"},"variables":[{"name":"offset","nativeSrc":"13527:6:101","nodeType":"YulTypedName","src":"13527:6:101","type":""}]},{"body":{"nativeSrc":"13603:16:101","nodeType":"YulBlock","src":"13603:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13612:1:101","nodeType":"YulLiteral","src":"13612:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"13615:1:101","nodeType":"YulLiteral","src":"13615:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13605:6:101","nodeType":"YulIdentifier","src":"13605:6:101"},"nativeSrc":"13605:12:101","nodeType":"YulFunctionCall","src":"13605:12:101"},"nativeSrc":"13605:12:101","nodeType":"YulExpressionStatement","src":"13605:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"13575:6:101","nodeType":"YulIdentifier","src":"13575:6:101"},{"kind":"number","nativeSrc":"13583:18:101","nodeType":"YulLiteral","src":"13583:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"13572:2:101","nodeType":"YulIdentifier","src":"13572:2:101"},"nativeSrc":"13572:30:101","nodeType":"YulFunctionCall","src":"13572:30:101"},"nativeSrc":"13569:50:101","nodeType":"YulIf","src":"13569:50:101"},{"nativeSrc":"13628:32:101","nodeType":"YulVariableDeclaration","src":"13628:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"13642:9:101","nodeType":"YulIdentifier","src":"13642:9:101"},{"name":"offset","nativeSrc":"13653:6:101","nodeType":"YulIdentifier","src":"13653:6:101"}],"functionName":{"name":"add","nativeSrc":"13638:3:101","nodeType":"YulIdentifier","src":"13638:3:101"},"nativeSrc":"13638:22:101","nodeType":"YulFunctionCall","src":"13638:22:101"},"variables":[{"name":"_1","nativeSrc":"13632:2:101","nodeType":"YulTypedName","src":"13632:2:101","type":""}]},{"body":{"nativeSrc":"13708:16:101","nodeType":"YulBlock","src":"13708:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13717:1:101","nodeType":"YulLiteral","src":"13717:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"13720:1:101","nodeType":"YulLiteral","src":"13720:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13710:6:101","nodeType":"YulIdentifier","src":"13710:6:101"},"nativeSrc":"13710:12:101","nodeType":"YulFunctionCall","src":"13710:12:101"},"nativeSrc":"13710:12:101","nodeType":"YulExpressionStatement","src":"13710:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"13687:2:101","nodeType":"YulIdentifier","src":"13687:2:101"},{"kind":"number","nativeSrc":"13691:4:101","nodeType":"YulLiteral","src":"13691:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"13683:3:101","nodeType":"YulIdentifier","src":"13683:3:101"},"nativeSrc":"13683:13:101","nodeType":"YulFunctionCall","src":"13683:13:101"},{"name":"dataEnd","nativeSrc":"13698:7:101","nodeType":"YulIdentifier","src":"13698:7:101"}],"functionName":{"name":"slt","nativeSrc":"13679:3:101","nodeType":"YulIdentifier","src":"13679:3:101"},"nativeSrc":"13679:27:101","nodeType":"YulFunctionCall","src":"13679:27:101"}],"functionName":{"name":"iszero","nativeSrc":"13672:6:101","nodeType":"YulIdentifier","src":"13672:6:101"},"nativeSrc":"13672:35:101","nodeType":"YulFunctionCall","src":"13672:35:101"},"nativeSrc":"13669:55:101","nodeType":"YulIf","src":"13669:55:101"},{"nativeSrc":"13733:30:101","nodeType":"YulVariableDeclaration","src":"13733:30:101","value":{"arguments":[{"name":"_1","nativeSrc":"13760:2:101","nodeType":"YulIdentifier","src":"13760:2:101"}],"functionName":{"name":"calldataload","nativeSrc":"13747:12:101","nodeType":"YulIdentifier","src":"13747:12:101"},"nativeSrc":"13747:16:101","nodeType":"YulFunctionCall","src":"13747:16:101"},"variables":[{"name":"length","nativeSrc":"13737:6:101","nodeType":"YulTypedName","src":"13737:6:101","type":""}]},{"body":{"nativeSrc":"13806:16:101","nodeType":"YulBlock","src":"13806:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13815:1:101","nodeType":"YulLiteral","src":"13815:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"13818:1:101","nodeType":"YulLiteral","src":"13818:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13808:6:101","nodeType":"YulIdentifier","src":"13808:6:101"},"nativeSrc":"13808:12:101","nodeType":"YulFunctionCall","src":"13808:12:101"},"nativeSrc":"13808:12:101","nodeType":"YulExpressionStatement","src":"13808:12:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"13778:6:101","nodeType":"YulIdentifier","src":"13778:6:101"},{"kind":"number","nativeSrc":"13786:18:101","nodeType":"YulLiteral","src":"13786:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"13775:2:101","nodeType":"YulIdentifier","src":"13775:2:101"},"nativeSrc":"13775:30:101","nodeType":"YulFunctionCall","src":"13775:30:101"},"nativeSrc":"13772:50:101","nodeType":"YulIf","src":"13772:50:101"},{"body":{"nativeSrc":"13880:16:101","nodeType":"YulBlock","src":"13880:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13889:1:101","nodeType":"YulLiteral","src":"13889:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"13892:1:101","nodeType":"YulLiteral","src":"13892:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13882:6:101","nodeType":"YulIdentifier","src":"13882:6:101"},"nativeSrc":"13882:12:101","nodeType":"YulFunctionCall","src":"13882:12:101"},"nativeSrc":"13882:12:101","nodeType":"YulExpressionStatement","src":"13882:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"13845:2:101","nodeType":"YulIdentifier","src":"13845:2:101"},{"arguments":[{"kind":"number","nativeSrc":"13853:1:101","nodeType":"YulLiteral","src":"13853:1:101","type":"","value":"5"},{"name":"length","nativeSrc":"13856:6:101","nodeType":"YulIdentifier","src":"13856:6:101"}],"functionName":{"name":"shl","nativeSrc":"13849:3:101","nodeType":"YulIdentifier","src":"13849:3:101"},"nativeSrc":"13849:14:101","nodeType":"YulFunctionCall","src":"13849:14:101"}],"functionName":{"name":"add","nativeSrc":"13841:3:101","nodeType":"YulIdentifier","src":"13841:3:101"},"nativeSrc":"13841:23:101","nodeType":"YulFunctionCall","src":"13841:23:101"},{"kind":"number","nativeSrc":"13866:2:101","nodeType":"YulLiteral","src":"13866:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13837:3:101","nodeType":"YulIdentifier","src":"13837:3:101"},"nativeSrc":"13837:32:101","nodeType":"YulFunctionCall","src":"13837:32:101"},{"name":"dataEnd","nativeSrc":"13871:7:101","nodeType":"YulIdentifier","src":"13871:7:101"}],"functionName":{"name":"gt","nativeSrc":"13834:2:101","nodeType":"YulIdentifier","src":"13834:2:101"},"nativeSrc":"13834:45:101","nodeType":"YulFunctionCall","src":"13834:45:101"},"nativeSrc":"13831:65:101","nodeType":"YulIf","src":"13831:65:101"},{"nativeSrc":"13905:21:101","nodeType":"YulAssignment","src":"13905:21:101","value":{"arguments":[{"name":"_1","nativeSrc":"13919:2:101","nodeType":"YulIdentifier","src":"13919:2:101"},{"kind":"number","nativeSrc":"13923:2:101","nodeType":"YulLiteral","src":"13923:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13915:3:101","nodeType":"YulIdentifier","src":"13915:3:101"},"nativeSrc":"13915:11:101","nodeType":"YulFunctionCall","src":"13915:11:101"},"variableNames":[{"name":"value0","nativeSrc":"13905:6:101","nodeType":"YulIdentifier","src":"13905:6:101"}]},{"nativeSrc":"13935:16:101","nodeType":"YulAssignment","src":"13935:16:101","value":{"name":"length","nativeSrc":"13945:6:101","nodeType":"YulIdentifier","src":"13945:6:101"},"variableNames":[{"name":"value1","nativeSrc":"13935:6:101","nodeType":"YulIdentifier","src":"13935:6:101"}]}]},"name":"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","nativeSrc":"13336:621:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13410:9:101","nodeType":"YulTypedName","src":"13410:9:101","type":""},{"name":"dataEnd","nativeSrc":"13421:7:101","nodeType":"YulTypedName","src":"13421:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13433:6:101","nodeType":"YulTypedName","src":"13433:6:101","type":""},{"name":"value1","nativeSrc":"13441:6:101","nodeType":"YulTypedName","src":"13441:6:101","type":""}],"src":"13336:621:101"},{"body":{"nativeSrc":"14131:611:101","nodeType":"YulBlock","src":"14131:611:101","statements":[{"nativeSrc":"14141:32:101","nodeType":"YulVariableDeclaration","src":"14141:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"14159:9:101","nodeType":"YulIdentifier","src":"14159:9:101"},{"kind":"number","nativeSrc":"14170:2:101","nodeType":"YulLiteral","src":"14170:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14155:3:101","nodeType":"YulIdentifier","src":"14155:3:101"},"nativeSrc":"14155:18:101","nodeType":"YulFunctionCall","src":"14155:18:101"},"variables":[{"name":"tail_1","nativeSrc":"14145:6:101","nodeType":"YulTypedName","src":"14145:6:101","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14189:9:101","nodeType":"YulIdentifier","src":"14189:9:101"},{"kind":"number","nativeSrc":"14200:2:101","nodeType":"YulLiteral","src":"14200:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"14182:6:101","nodeType":"YulIdentifier","src":"14182:6:101"},"nativeSrc":"14182:21:101","nodeType":"YulFunctionCall","src":"14182:21:101"},"nativeSrc":"14182:21:101","nodeType":"YulExpressionStatement","src":"14182:21:101"},{"nativeSrc":"14212:17:101","nodeType":"YulVariableDeclaration","src":"14212:17:101","value":{"name":"tail_1","nativeSrc":"14223:6:101","nodeType":"YulIdentifier","src":"14223:6:101"},"variables":[{"name":"pos","nativeSrc":"14216:3:101","nodeType":"YulTypedName","src":"14216:3:101","type":""}]},{"nativeSrc":"14238:27:101","nodeType":"YulVariableDeclaration","src":"14238:27:101","value":{"arguments":[{"name":"value0","nativeSrc":"14258:6:101","nodeType":"YulIdentifier","src":"14258:6:101"}],"functionName":{"name":"mload","nativeSrc":"14252:5:101","nodeType":"YulIdentifier","src":"14252:5:101"},"nativeSrc":"14252:13:101","nodeType":"YulFunctionCall","src":"14252:13:101"},"variables":[{"name":"length","nativeSrc":"14242:6:101","nodeType":"YulTypedName","src":"14242:6:101","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"14281:6:101","nodeType":"YulIdentifier","src":"14281:6:101"},{"name":"length","nativeSrc":"14289:6:101","nodeType":"YulIdentifier","src":"14289:6:101"}],"functionName":{"name":"mstore","nativeSrc":"14274:6:101","nodeType":"YulIdentifier","src":"14274:6:101"},"nativeSrc":"14274:22:101","nodeType":"YulFunctionCall","src":"14274:22:101"},"nativeSrc":"14274:22:101","nodeType":"YulExpressionStatement","src":"14274:22:101"},{"nativeSrc":"14305:25:101","nodeType":"YulAssignment","src":"14305:25:101","value":{"arguments":[{"name":"headStart","nativeSrc":"14316:9:101","nodeType":"YulIdentifier","src":"14316:9:101"},{"kind":"number","nativeSrc":"14327:2:101","nodeType":"YulLiteral","src":"14327:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14312:3:101","nodeType":"YulIdentifier","src":"14312:3:101"},"nativeSrc":"14312:18:101","nodeType":"YulFunctionCall","src":"14312:18:101"},"variableNames":[{"name":"pos","nativeSrc":"14305:3:101","nodeType":"YulIdentifier","src":"14305:3:101"}]},{"nativeSrc":"14339:53:101","nodeType":"YulVariableDeclaration","src":"14339:53:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14361:9:101","nodeType":"YulIdentifier","src":"14361:9:101"},{"arguments":[{"kind":"number","nativeSrc":"14376:1:101","nodeType":"YulLiteral","src":"14376:1:101","type":"","value":"5"},{"name":"length","nativeSrc":"14379:6:101","nodeType":"YulIdentifier","src":"14379:6:101"}],"functionName":{"name":"shl","nativeSrc":"14372:3:101","nodeType":"YulIdentifier","src":"14372:3:101"},"nativeSrc":"14372:14:101","nodeType":"YulFunctionCall","src":"14372:14:101"}],"functionName":{"name":"add","nativeSrc":"14357:3:101","nodeType":"YulIdentifier","src":"14357:3:101"},"nativeSrc":"14357:30:101","nodeType":"YulFunctionCall","src":"14357:30:101"},{"kind":"number","nativeSrc":"14389:2:101","nodeType":"YulLiteral","src":"14389:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14353:3:101","nodeType":"YulIdentifier","src":"14353:3:101"},"nativeSrc":"14353:39:101","nodeType":"YulFunctionCall","src":"14353:39:101"},"variables":[{"name":"tail_2","nativeSrc":"14343:6:101","nodeType":"YulTypedName","src":"14343:6:101","type":""}]},{"nativeSrc":"14401:29:101","nodeType":"YulVariableDeclaration","src":"14401:29:101","value":{"arguments":[{"name":"value0","nativeSrc":"14419:6:101","nodeType":"YulIdentifier","src":"14419:6:101"},{"kind":"number","nativeSrc":"14427:2:101","nodeType":"YulLiteral","src":"14427:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14415:3:101","nodeType":"YulIdentifier","src":"14415:3:101"},"nativeSrc":"14415:15:101","nodeType":"YulFunctionCall","src":"14415:15:101"},"variables":[{"name":"srcPtr","nativeSrc":"14405:6:101","nodeType":"YulTypedName","src":"14405:6:101","type":""}]},{"nativeSrc":"14439:10:101","nodeType":"YulVariableDeclaration","src":"14439:10:101","value":{"kind":"number","nativeSrc":"14448:1:101","nodeType":"YulLiteral","src":"14448:1:101","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"14443:1:101","nodeType":"YulTypedName","src":"14443:1:101","type":""}]},{"body":{"nativeSrc":"14507:206:101","nodeType":"YulBlock","src":"14507:206:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"14528:3:101","nodeType":"YulIdentifier","src":"14528:3:101"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"14541:6:101","nodeType":"YulIdentifier","src":"14541:6:101"},{"name":"headStart","nativeSrc":"14549:9:101","nodeType":"YulIdentifier","src":"14549:9:101"}],"functionName":{"name":"sub","nativeSrc":"14537:3:101","nodeType":"YulIdentifier","src":"14537:3:101"},"nativeSrc":"14537:22:101","nodeType":"YulFunctionCall","src":"14537:22:101"},{"arguments":[{"kind":"number","nativeSrc":"14565:2:101","nodeType":"YulLiteral","src":"14565:2:101","type":"","value":"63"}],"functionName":{"name":"not","nativeSrc":"14561:3:101","nodeType":"YulIdentifier","src":"14561:3:101"},"nativeSrc":"14561:7:101","nodeType":"YulFunctionCall","src":"14561:7:101"}],"functionName":{"name":"add","nativeSrc":"14533:3:101","nodeType":"YulIdentifier","src":"14533:3:101"},"nativeSrc":"14533:36:101","nodeType":"YulFunctionCall","src":"14533:36:101"}],"functionName":{"name":"mstore","nativeSrc":"14521:6:101","nodeType":"YulIdentifier","src":"14521:6:101"},"nativeSrc":"14521:49:101","nodeType":"YulFunctionCall","src":"14521:49:101"},"nativeSrc":"14521:49:101","nodeType":"YulExpressionStatement","src":"14521:49:101"},{"nativeSrc":"14583:50:101","nodeType":"YulAssignment","src":"14583:50:101","value":{"arguments":[{"arguments":[{"name":"srcPtr","nativeSrc":"14617:6:101","nodeType":"YulIdentifier","src":"14617:6:101"}],"functionName":{"name":"mload","nativeSrc":"14611:5:101","nodeType":"YulIdentifier","src":"14611:5:101"},"nativeSrc":"14611:13:101","nodeType":"YulFunctionCall","src":"14611:13:101"},{"name":"tail_2","nativeSrc":"14626:6:101","nodeType":"YulIdentifier","src":"14626:6:101"}],"functionName":{"name":"abi_encode_string","nativeSrc":"14593:17:101","nodeType":"YulIdentifier","src":"14593:17:101"},"nativeSrc":"14593:40:101","nodeType":"YulFunctionCall","src":"14593:40:101"},"variableNames":[{"name":"tail_2","nativeSrc":"14583:6:101","nodeType":"YulIdentifier","src":"14583:6:101"}]},{"nativeSrc":"14646:25:101","nodeType":"YulAssignment","src":"14646:25:101","value":{"arguments":[{"name":"srcPtr","nativeSrc":"14660:6:101","nodeType":"YulIdentifier","src":"14660:6:101"},{"kind":"number","nativeSrc":"14668:2:101","nodeType":"YulLiteral","src":"14668:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14656:3:101","nodeType":"YulIdentifier","src":"14656:3:101"},"nativeSrc":"14656:15:101","nodeType":"YulFunctionCall","src":"14656:15:101"},"variableNames":[{"name":"srcPtr","nativeSrc":"14646:6:101","nodeType":"YulIdentifier","src":"14646:6:101"}]},{"nativeSrc":"14684:19:101","nodeType":"YulAssignment","src":"14684:19:101","value":{"arguments":[{"name":"pos","nativeSrc":"14695:3:101","nodeType":"YulIdentifier","src":"14695:3:101"},{"kind":"number","nativeSrc":"14700:2:101","nodeType":"YulLiteral","src":"14700:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14691:3:101","nodeType":"YulIdentifier","src":"14691:3:101"},"nativeSrc":"14691:12:101","nodeType":"YulFunctionCall","src":"14691:12:101"},"variableNames":[{"name":"pos","nativeSrc":"14684:3:101","nodeType":"YulIdentifier","src":"14684:3:101"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"14469:1:101","nodeType":"YulIdentifier","src":"14469:1:101"},{"name":"length","nativeSrc":"14472:6:101","nodeType":"YulIdentifier","src":"14472:6:101"}],"functionName":{"name":"lt","nativeSrc":"14466:2:101","nodeType":"YulIdentifier","src":"14466:2:101"},"nativeSrc":"14466:13:101","nodeType":"YulFunctionCall","src":"14466:13:101"},"nativeSrc":"14458:255:101","nodeType":"YulForLoop","post":{"nativeSrc":"14480:18:101","nodeType":"YulBlock","src":"14480:18:101","statements":[{"nativeSrc":"14482:14:101","nodeType":"YulAssignment","src":"14482:14:101","value":{"arguments":[{"name":"i","nativeSrc":"14491:1:101","nodeType":"YulIdentifier","src":"14491:1:101"},{"kind":"number","nativeSrc":"14494:1:101","nodeType":"YulLiteral","src":"14494:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"14487:3:101","nodeType":"YulIdentifier","src":"14487:3:101"},"nativeSrc":"14487:9:101","nodeType":"YulFunctionCall","src":"14487:9:101"},"variableNames":[{"name":"i","nativeSrc":"14482:1:101","nodeType":"YulIdentifier","src":"14482:1:101"}]}]},"pre":{"nativeSrc":"14462:3:101","nodeType":"YulBlock","src":"14462:3:101","statements":[]},"src":"14458:255:101"},{"nativeSrc":"14722:14:101","nodeType":"YulAssignment","src":"14722:14:101","value":{"name":"tail_2","nativeSrc":"14730:6:101","nodeType":"YulIdentifier","src":"14730:6:101"},"variableNames":[{"name":"tail","nativeSrc":"14722:4:101","nodeType":"YulIdentifier","src":"14722:4:101"}]}]},"name":"abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"13962:780:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14100:9:101","nodeType":"YulTypedName","src":"14100:9:101","type":""},{"name":"value0","nativeSrc":"14111:6:101","nodeType":"YulTypedName","src":"14111:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14122:4:101","nodeType":"YulTypedName","src":"14122:4:101","type":""}],"src":"13962:780:101"},{"body":{"nativeSrc":"14877:588:101","nodeType":"YulBlock","src":"14877:588:101","statements":[{"body":{"nativeSrc":"14924:16:101","nodeType":"YulBlock","src":"14924:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14933:1:101","nodeType":"YulLiteral","src":"14933:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"14936:1:101","nodeType":"YulLiteral","src":"14936:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14926:6:101","nodeType":"YulIdentifier","src":"14926:6:101"},"nativeSrc":"14926:12:101","nodeType":"YulFunctionCall","src":"14926:12:101"},"nativeSrc":"14926:12:101","nodeType":"YulExpressionStatement","src":"14926:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"14898:7:101","nodeType":"YulIdentifier","src":"14898:7:101"},{"name":"headStart","nativeSrc":"14907:9:101","nodeType":"YulIdentifier","src":"14907:9:101"}],"functionName":{"name":"sub","nativeSrc":"14894:3:101","nodeType":"YulIdentifier","src":"14894:3:101"},"nativeSrc":"14894:23:101","nodeType":"YulFunctionCall","src":"14894:23:101"},{"kind":"number","nativeSrc":"14919:3:101","nodeType":"YulLiteral","src":"14919:3:101","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"14890:3:101","nodeType":"YulIdentifier","src":"14890:3:101"},"nativeSrc":"14890:33:101","nodeType":"YulFunctionCall","src":"14890:33:101"},"nativeSrc":"14887:53:101","nodeType":"YulIf","src":"14887:53:101"},{"nativeSrc":"14949:36:101","nodeType":"YulVariableDeclaration","src":"14949:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"14975:9:101","nodeType":"YulIdentifier","src":"14975:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"14962:12:101","nodeType":"YulIdentifier","src":"14962:12:101"},"nativeSrc":"14962:23:101","nodeType":"YulFunctionCall","src":"14962:23:101"},"variables":[{"name":"value","nativeSrc":"14953:5:101","nodeType":"YulTypedName","src":"14953:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"15019:5:101","nodeType":"YulIdentifier","src":"15019:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"14994:24:101","nodeType":"YulIdentifier","src":"14994:24:101"},"nativeSrc":"14994:31:101","nodeType":"YulFunctionCall","src":"14994:31:101"},"nativeSrc":"14994:31:101","nodeType":"YulExpressionStatement","src":"14994:31:101"},{"nativeSrc":"15034:15:101","nodeType":"YulAssignment","src":"15034:15:101","value":{"name":"value","nativeSrc":"15044:5:101","nodeType":"YulIdentifier","src":"15044:5:101"},"variableNames":[{"name":"value0","nativeSrc":"15034:6:101","nodeType":"YulIdentifier","src":"15034:6:101"}]},{"nativeSrc":"15058:47:101","nodeType":"YulVariableDeclaration","src":"15058:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15090:9:101","nodeType":"YulIdentifier","src":"15090:9:101"},{"kind":"number","nativeSrc":"15101:2:101","nodeType":"YulLiteral","src":"15101:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15086:3:101","nodeType":"YulIdentifier","src":"15086:3:101"},"nativeSrc":"15086:18:101","nodeType":"YulFunctionCall","src":"15086:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"15073:12:101","nodeType":"YulIdentifier","src":"15073:12:101"},"nativeSrc":"15073:32:101","nodeType":"YulFunctionCall","src":"15073:32:101"},"variables":[{"name":"value_1","nativeSrc":"15062:7:101","nodeType":"YulTypedName","src":"15062:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"15139:7:101","nodeType":"YulIdentifier","src":"15139:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"15114:24:101","nodeType":"YulIdentifier","src":"15114:24:101"},"nativeSrc":"15114:33:101","nodeType":"YulFunctionCall","src":"15114:33:101"},"nativeSrc":"15114:33:101","nodeType":"YulExpressionStatement","src":"15114:33:101"},{"nativeSrc":"15156:17:101","nodeType":"YulAssignment","src":"15156:17:101","value":{"name":"value_1","nativeSrc":"15166:7:101","nodeType":"YulIdentifier","src":"15166:7:101"},"variableNames":[{"name":"value1","nativeSrc":"15156:6:101","nodeType":"YulIdentifier","src":"15156:6:101"}]},{"nativeSrc":"15182:16:101","nodeType":"YulVariableDeclaration","src":"15182:16:101","value":{"kind":"number","nativeSrc":"15197:1:101","nodeType":"YulLiteral","src":"15197:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"15186:7:101","nodeType":"YulTypedName","src":"15186:7:101","type":""}]},{"nativeSrc":"15207:43:101","nodeType":"YulAssignment","src":"15207:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15235:9:101","nodeType":"YulIdentifier","src":"15235:9:101"},{"kind":"number","nativeSrc":"15246:2:101","nodeType":"YulLiteral","src":"15246:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15231:3:101","nodeType":"YulIdentifier","src":"15231:3:101"},"nativeSrc":"15231:18:101","nodeType":"YulFunctionCall","src":"15231:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"15218:12:101","nodeType":"YulIdentifier","src":"15218:12:101"},"nativeSrc":"15218:32:101","nodeType":"YulFunctionCall","src":"15218:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"15207:7:101","nodeType":"YulIdentifier","src":"15207:7:101"}]},{"nativeSrc":"15259:17:101","nodeType":"YulAssignment","src":"15259:17:101","value":{"name":"value_2","nativeSrc":"15269:7:101","nodeType":"YulIdentifier","src":"15269:7:101"},"variableNames":[{"name":"value2","nativeSrc":"15259:6:101","nodeType":"YulIdentifier","src":"15259:6:101"}]},{"nativeSrc":"15285:46:101","nodeType":"YulVariableDeclaration","src":"15285:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15316:9:101","nodeType":"YulIdentifier","src":"15316:9:101"},{"kind":"number","nativeSrc":"15327:2:101","nodeType":"YulLiteral","src":"15327:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15312:3:101","nodeType":"YulIdentifier","src":"15312:3:101"},"nativeSrc":"15312:18:101","nodeType":"YulFunctionCall","src":"15312:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"15299:12:101","nodeType":"YulIdentifier","src":"15299:12:101"},"nativeSrc":"15299:32:101","nodeType":"YulFunctionCall","src":"15299:32:101"},"variables":[{"name":"offset","nativeSrc":"15289:6:101","nodeType":"YulTypedName","src":"15289:6:101","type":""}]},{"body":{"nativeSrc":"15374:16:101","nodeType":"YulBlock","src":"15374:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15383:1:101","nodeType":"YulLiteral","src":"15383:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"15386:1:101","nodeType":"YulLiteral","src":"15386:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15376:6:101","nodeType":"YulIdentifier","src":"15376:6:101"},"nativeSrc":"15376:12:101","nodeType":"YulFunctionCall","src":"15376:12:101"},"nativeSrc":"15376:12:101","nodeType":"YulExpressionStatement","src":"15376:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"15346:6:101","nodeType":"YulIdentifier","src":"15346:6:101"},{"kind":"number","nativeSrc":"15354:18:101","nodeType":"YulLiteral","src":"15354:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"15343:2:101","nodeType":"YulIdentifier","src":"15343:2:101"},"nativeSrc":"15343:30:101","nodeType":"YulFunctionCall","src":"15343:30:101"},"nativeSrc":"15340:50:101","nodeType":"YulIf","src":"15340:50:101"},{"nativeSrc":"15399:60:101","nodeType":"YulAssignment","src":"15399:60:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15431:9:101","nodeType":"YulIdentifier","src":"15431:9:101"},{"name":"offset","nativeSrc":"15442:6:101","nodeType":"YulIdentifier","src":"15442:6:101"}],"functionName":{"name":"add","nativeSrc":"15427:3:101","nodeType":"YulIdentifier","src":"15427:3:101"},"nativeSrc":"15427:22:101","nodeType":"YulFunctionCall","src":"15427:22:101"},{"name":"dataEnd","nativeSrc":"15451:7:101","nodeType":"YulIdentifier","src":"15451:7:101"}],"functionName":{"name":"abi_decode_string","nativeSrc":"15409:17:101","nodeType":"YulIdentifier","src":"15409:17:101"},"nativeSrc":"15409:50:101","nodeType":"YulFunctionCall","src":"15409:50:101"},"variableNames":[{"name":"value3","nativeSrc":"15399:6:101","nodeType":"YulIdentifier","src":"15399:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr","nativeSrc":"14747:718:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14819:9:101","nodeType":"YulTypedName","src":"14819:9:101","type":""},{"name":"dataEnd","nativeSrc":"14830:7:101","nodeType":"YulTypedName","src":"14830:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"14842:6:101","nodeType":"YulTypedName","src":"14842:6:101","type":""},{"name":"value1","nativeSrc":"14850:6:101","nodeType":"YulTypedName","src":"14850:6:101","type":""},{"name":"value2","nativeSrc":"14858:6:101","nodeType":"YulTypedName","src":"14858:6:101","type":""},{"name":"value3","nativeSrc":"14866:6:101","nodeType":"YulTypedName","src":"14866:6:101","type":""}],"src":"14747:718:101"},{"body":{"nativeSrc":"15588:243:101","nodeType":"YulBlock","src":"15588:243:101","statements":[{"body":{"nativeSrc":"15635:16:101","nodeType":"YulBlock","src":"15635:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15644:1:101","nodeType":"YulLiteral","src":"15644:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"15647:1:101","nodeType":"YulLiteral","src":"15647:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15637:6:101","nodeType":"YulIdentifier","src":"15637:6:101"},"nativeSrc":"15637:12:101","nodeType":"YulFunctionCall","src":"15637:12:101"},"nativeSrc":"15637:12:101","nodeType":"YulExpressionStatement","src":"15637:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15609:7:101","nodeType":"YulIdentifier","src":"15609:7:101"},{"name":"headStart","nativeSrc":"15618:9:101","nodeType":"YulIdentifier","src":"15618:9:101"}],"functionName":{"name":"sub","nativeSrc":"15605:3:101","nodeType":"YulIdentifier","src":"15605:3:101"},"nativeSrc":"15605:23:101","nodeType":"YulFunctionCall","src":"15605:23:101"},{"kind":"number","nativeSrc":"15630:3:101","nodeType":"YulLiteral","src":"15630:3:101","type":"","value":"416"}],"functionName":{"name":"slt","nativeSrc":"15601:3:101","nodeType":"YulIdentifier","src":"15601:3:101"},"nativeSrc":"15601:33:101","nodeType":"YulFunctionCall","src":"15601:33:101"},"nativeSrc":"15598:53:101","nodeType":"YulIf","src":"15598:53:101"},{"nativeSrc":"15660:67:101","nodeType":"YulAssignment","src":"15660:67:101","value":{"arguments":[{"name":"headStart","nativeSrc":"15708:9:101","nodeType":"YulIdentifier","src":"15708:9:101"},{"name":"dataEnd","nativeSrc":"15719:7:101","nodeType":"YulIdentifier","src":"15719:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"15670:37:101","nodeType":"YulIdentifier","src":"15670:37:101"},"nativeSrc":"15670:57:101","nodeType":"YulFunctionCall","src":"15670:57:101"},"variableNames":[{"name":"value0","nativeSrc":"15660:6:101","nodeType":"YulIdentifier","src":"15660:6:101"}]},{"nativeSrc":"15736:14:101","nodeType":"YulVariableDeclaration","src":"15736:14:101","value":{"kind":"number","nativeSrc":"15749:1:101","nodeType":"YulLiteral","src":"15749:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"15740:5:101","nodeType":"YulTypedName","src":"15740:5:101","type":""}]},{"nativeSrc":"15759:42:101","nodeType":"YulAssignment","src":"15759:42:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15785:9:101","nodeType":"YulIdentifier","src":"15785:9:101"},{"kind":"number","nativeSrc":"15796:3:101","nodeType":"YulLiteral","src":"15796:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"15781:3:101","nodeType":"YulIdentifier","src":"15781:3:101"},"nativeSrc":"15781:19:101","nodeType":"YulFunctionCall","src":"15781:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"15768:12:101","nodeType":"YulIdentifier","src":"15768:12:101"},"nativeSrc":"15768:33:101","nodeType":"YulFunctionCall","src":"15768:33:101"},"variableNames":[{"name":"value","nativeSrc":"15759:5:101","nodeType":"YulIdentifier","src":"15759:5:101"}]},{"nativeSrc":"15810:15:101","nodeType":"YulAssignment","src":"15810:15:101","value":{"name":"value","nativeSrc":"15820:5:101","nodeType":"YulIdentifier","src":"15820:5:101"},"variableNames":[{"name":"value1","nativeSrc":"15810:6:101","nodeType":"YulIdentifier","src":"15810:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_uint256","nativeSrc":"15470:361:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15546:9:101","nodeType":"YulTypedName","src":"15546:9:101","type":""},{"name":"dataEnd","nativeSrc":"15557:7:101","nodeType":"YulTypedName","src":"15557:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15569:6:101","nodeType":"YulTypedName","src":"15569:6:101","type":""},{"name":"value1","nativeSrc":"15577:6:101","nodeType":"YulTypedName","src":"15577:6:101","type":""}],"src":"15470:361:101"},{"body":{"nativeSrc":"16023:867:101","nodeType":"YulBlock","src":"16023:867:101","statements":[{"body":{"nativeSrc":"16070:16:101","nodeType":"YulBlock","src":"16070:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16079:1:101","nodeType":"YulLiteral","src":"16079:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"16082:1:101","nodeType":"YulLiteral","src":"16082:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16072:6:101","nodeType":"YulIdentifier","src":"16072:6:101"},"nativeSrc":"16072:12:101","nodeType":"YulFunctionCall","src":"16072:12:101"},"nativeSrc":"16072:12:101","nodeType":"YulExpressionStatement","src":"16072:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"16044:7:101","nodeType":"YulIdentifier","src":"16044:7:101"},{"name":"headStart","nativeSrc":"16053:9:101","nodeType":"YulIdentifier","src":"16053:9:101"}],"functionName":{"name":"sub","nativeSrc":"16040:3:101","nodeType":"YulIdentifier","src":"16040:3:101"},"nativeSrc":"16040:23:101","nodeType":"YulFunctionCall","src":"16040:23:101"},{"kind":"number","nativeSrc":"16065:3:101","nodeType":"YulLiteral","src":"16065:3:101","type":"","value":"224"}],"functionName":{"name":"slt","nativeSrc":"16036:3:101","nodeType":"YulIdentifier","src":"16036:3:101"},"nativeSrc":"16036:33:101","nodeType":"YulFunctionCall","src":"16036:33:101"},"nativeSrc":"16033:53:101","nodeType":"YulIf","src":"16033:53:101"},{"nativeSrc":"16095:36:101","nodeType":"YulVariableDeclaration","src":"16095:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"16121:9:101","nodeType":"YulIdentifier","src":"16121:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"16108:12:101","nodeType":"YulIdentifier","src":"16108:12:101"},"nativeSrc":"16108:23:101","nodeType":"YulFunctionCall","src":"16108:23:101"},"variables":[{"name":"value","nativeSrc":"16099:5:101","nodeType":"YulTypedName","src":"16099:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"16165:5:101","nodeType":"YulIdentifier","src":"16165:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"16140:24:101","nodeType":"YulIdentifier","src":"16140:24:101"},"nativeSrc":"16140:31:101","nodeType":"YulFunctionCall","src":"16140:31:101"},"nativeSrc":"16140:31:101","nodeType":"YulExpressionStatement","src":"16140:31:101"},{"nativeSrc":"16180:15:101","nodeType":"YulAssignment","src":"16180:15:101","value":{"name":"value","nativeSrc":"16190:5:101","nodeType":"YulIdentifier","src":"16190:5:101"},"variableNames":[{"name":"value0","nativeSrc":"16180:6:101","nodeType":"YulIdentifier","src":"16180:6:101"}]},{"nativeSrc":"16204:16:101","nodeType":"YulVariableDeclaration","src":"16204:16:101","value":{"kind":"number","nativeSrc":"16219:1:101","nodeType":"YulLiteral","src":"16219:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"16208:7:101","nodeType":"YulTypedName","src":"16208:7:101","type":""}]},{"nativeSrc":"16229:43:101","nodeType":"YulAssignment","src":"16229:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16257:9:101","nodeType":"YulIdentifier","src":"16257:9:101"},{"kind":"number","nativeSrc":"16268:2:101","nodeType":"YulLiteral","src":"16268:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16253:3:101","nodeType":"YulIdentifier","src":"16253:3:101"},"nativeSrc":"16253:18:101","nodeType":"YulFunctionCall","src":"16253:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"16240:12:101","nodeType":"YulIdentifier","src":"16240:12:101"},"nativeSrc":"16240:32:101","nodeType":"YulFunctionCall","src":"16240:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"16229:7:101","nodeType":"YulIdentifier","src":"16229:7:101"}]},{"nativeSrc":"16281:17:101","nodeType":"YulAssignment","src":"16281:17:101","value":{"name":"value_1","nativeSrc":"16291:7:101","nodeType":"YulIdentifier","src":"16291:7:101"},"variableNames":[{"name":"value1","nativeSrc":"16281:6:101","nodeType":"YulIdentifier","src":"16281:6:101"}]},{"nativeSrc":"16307:47:101","nodeType":"YulVariableDeclaration","src":"16307:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16339:9:101","nodeType":"YulIdentifier","src":"16339:9:101"},{"kind":"number","nativeSrc":"16350:2:101","nodeType":"YulLiteral","src":"16350:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16335:3:101","nodeType":"YulIdentifier","src":"16335:3:101"},"nativeSrc":"16335:18:101","nodeType":"YulFunctionCall","src":"16335:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"16322:12:101","nodeType":"YulIdentifier","src":"16322:12:101"},"nativeSrc":"16322:32:101","nodeType":"YulFunctionCall","src":"16322:32:101"},"variables":[{"name":"value_2","nativeSrc":"16311:7:101","nodeType":"YulTypedName","src":"16311:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"16388:7:101","nodeType":"YulIdentifier","src":"16388:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"16363:24:101","nodeType":"YulIdentifier","src":"16363:24:101"},"nativeSrc":"16363:33:101","nodeType":"YulFunctionCall","src":"16363:33:101"},"nativeSrc":"16363:33:101","nodeType":"YulExpressionStatement","src":"16363:33:101"},{"nativeSrc":"16405:17:101","nodeType":"YulAssignment","src":"16405:17:101","value":{"name":"value_2","nativeSrc":"16415:7:101","nodeType":"YulIdentifier","src":"16415:7:101"},"variableNames":[{"name":"value2","nativeSrc":"16405:6:101","nodeType":"YulIdentifier","src":"16405:6:101"}]},{"nativeSrc":"16431:16:101","nodeType":"YulVariableDeclaration","src":"16431:16:101","value":{"kind":"number","nativeSrc":"16446:1:101","nodeType":"YulLiteral","src":"16446:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"16435:7:101","nodeType":"YulTypedName","src":"16435:7:101","type":""}]},{"nativeSrc":"16456:43:101","nodeType":"YulAssignment","src":"16456:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16484:9:101","nodeType":"YulIdentifier","src":"16484:9:101"},{"kind":"number","nativeSrc":"16495:2:101","nodeType":"YulLiteral","src":"16495:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16480:3:101","nodeType":"YulIdentifier","src":"16480:3:101"},"nativeSrc":"16480:18:101","nodeType":"YulFunctionCall","src":"16480:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"16467:12:101","nodeType":"YulIdentifier","src":"16467:12:101"},"nativeSrc":"16467:32:101","nodeType":"YulFunctionCall","src":"16467:32:101"},"variableNames":[{"name":"value_3","nativeSrc":"16456:7:101","nodeType":"YulIdentifier","src":"16456:7:101"}]},{"nativeSrc":"16508:17:101","nodeType":"YulAssignment","src":"16508:17:101","value":{"name":"value_3","nativeSrc":"16518:7:101","nodeType":"YulIdentifier","src":"16518:7:101"},"variableNames":[{"name":"value3","nativeSrc":"16508:6:101","nodeType":"YulIdentifier","src":"16508:6:101"}]},{"nativeSrc":"16534:48:101","nodeType":"YulVariableDeclaration","src":"16534:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16566:9:101","nodeType":"YulIdentifier","src":"16566:9:101"},{"kind":"number","nativeSrc":"16577:3:101","nodeType":"YulLiteral","src":"16577:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"16562:3:101","nodeType":"YulIdentifier","src":"16562:3:101"},"nativeSrc":"16562:19:101","nodeType":"YulFunctionCall","src":"16562:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"16549:12:101","nodeType":"YulIdentifier","src":"16549:12:101"},"nativeSrc":"16549:33:101","nodeType":"YulFunctionCall","src":"16549:33:101"},"variables":[{"name":"value_4","nativeSrc":"16538:7:101","nodeType":"YulTypedName","src":"16538:7:101","type":""}]},{"body":{"nativeSrc":"16634:16:101","nodeType":"YulBlock","src":"16634:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16643:1:101","nodeType":"YulLiteral","src":"16643:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"16646:1:101","nodeType":"YulLiteral","src":"16646:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16636:6:101","nodeType":"YulIdentifier","src":"16636:6:101"},"nativeSrc":"16636:12:101","nodeType":"YulFunctionCall","src":"16636:12:101"},"nativeSrc":"16636:12:101","nodeType":"YulExpressionStatement","src":"16636:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value_4","nativeSrc":"16604:7:101","nodeType":"YulIdentifier","src":"16604:7:101"},{"arguments":[{"name":"value_4","nativeSrc":"16617:7:101","nodeType":"YulIdentifier","src":"16617:7:101"},{"kind":"number","nativeSrc":"16626:4:101","nodeType":"YulLiteral","src":"16626:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"16613:3:101","nodeType":"YulIdentifier","src":"16613:3:101"},"nativeSrc":"16613:18:101","nodeType":"YulFunctionCall","src":"16613:18:101"}],"functionName":{"name":"eq","nativeSrc":"16601:2:101","nodeType":"YulIdentifier","src":"16601:2:101"},"nativeSrc":"16601:31:101","nodeType":"YulFunctionCall","src":"16601:31:101"}],"functionName":{"name":"iszero","nativeSrc":"16594:6:101","nodeType":"YulIdentifier","src":"16594:6:101"},"nativeSrc":"16594:39:101","nodeType":"YulFunctionCall","src":"16594:39:101"},"nativeSrc":"16591:59:101","nodeType":"YulIf","src":"16591:59:101"},{"nativeSrc":"16659:17:101","nodeType":"YulAssignment","src":"16659:17:101","value":{"name":"value_4","nativeSrc":"16669:7:101","nodeType":"YulIdentifier","src":"16669:7:101"},"variableNames":[{"name":"value4","nativeSrc":"16659:6:101","nodeType":"YulIdentifier","src":"16659:6:101"}]},{"nativeSrc":"16685:16:101","nodeType":"YulVariableDeclaration","src":"16685:16:101","value":{"kind":"number","nativeSrc":"16700:1:101","nodeType":"YulLiteral","src":"16700:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"16689:7:101","nodeType":"YulTypedName","src":"16689:7:101","type":""}]},{"nativeSrc":"16710:44:101","nodeType":"YulAssignment","src":"16710:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16738:9:101","nodeType":"YulIdentifier","src":"16738:9:101"},{"kind":"number","nativeSrc":"16749:3:101","nodeType":"YulLiteral","src":"16749:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"16734:3:101","nodeType":"YulIdentifier","src":"16734:3:101"},"nativeSrc":"16734:19:101","nodeType":"YulFunctionCall","src":"16734:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"16721:12:101","nodeType":"YulIdentifier","src":"16721:12:101"},"nativeSrc":"16721:33:101","nodeType":"YulFunctionCall","src":"16721:33:101"},"variableNames":[{"name":"value_5","nativeSrc":"16710:7:101","nodeType":"YulIdentifier","src":"16710:7:101"}]},{"nativeSrc":"16763:17:101","nodeType":"YulAssignment","src":"16763:17:101","value":{"name":"value_5","nativeSrc":"16773:7:101","nodeType":"YulIdentifier","src":"16773:7:101"},"variableNames":[{"name":"value5","nativeSrc":"16763:6:101","nodeType":"YulIdentifier","src":"16763:6:101"}]},{"nativeSrc":"16789:16:101","nodeType":"YulVariableDeclaration","src":"16789:16:101","value":{"kind":"number","nativeSrc":"16804:1:101","nodeType":"YulLiteral","src":"16804:1:101","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"16793:7:101","nodeType":"YulTypedName","src":"16793:7:101","type":""}]},{"nativeSrc":"16814:44:101","nodeType":"YulAssignment","src":"16814:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16842:9:101","nodeType":"YulIdentifier","src":"16842:9:101"},{"kind":"number","nativeSrc":"16853:3:101","nodeType":"YulLiteral","src":"16853:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"16838:3:101","nodeType":"YulIdentifier","src":"16838:3:101"},"nativeSrc":"16838:19:101","nodeType":"YulFunctionCall","src":"16838:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"16825:12:101","nodeType":"YulIdentifier","src":"16825:12:101"},"nativeSrc":"16825:33:101","nodeType":"YulFunctionCall","src":"16825:33:101"},"variableNames":[{"name":"value_6","nativeSrc":"16814:7:101","nodeType":"YulIdentifier","src":"16814:7:101"}]},{"nativeSrc":"16867:17:101","nodeType":"YulAssignment","src":"16867:17:101","value":{"name":"value_6","nativeSrc":"16877:7:101","nodeType":"YulIdentifier","src":"16877:7:101"},"variableNames":[{"name":"value6","nativeSrc":"16867:6:101","nodeType":"YulIdentifier","src":"16867:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_addresst_uint256t_uint8t_bytes32t_bytes32","nativeSrc":"15836:1054:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15941:9:101","nodeType":"YulTypedName","src":"15941:9:101","type":""},{"name":"dataEnd","nativeSrc":"15952:7:101","nodeType":"YulTypedName","src":"15952:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15964:6:101","nodeType":"YulTypedName","src":"15964:6:101","type":""},{"name":"value1","nativeSrc":"15972:6:101","nodeType":"YulTypedName","src":"15972:6:101","type":""},{"name":"value2","nativeSrc":"15980:6:101","nodeType":"YulTypedName","src":"15980:6:101","type":""},{"name":"value3","nativeSrc":"15988:6:101","nodeType":"YulTypedName","src":"15988:6:101","type":""},{"name":"value4","nativeSrc":"15996:6:101","nodeType":"YulTypedName","src":"15996:6:101","type":""},{"name":"value5","nativeSrc":"16004:6:101","nodeType":"YulTypedName","src":"16004:6:101","type":""},{"name":"value6","nativeSrc":"16012:6:101","nodeType":"YulTypedName","src":"16012:6:101","type":""}],"src":"15836:1054:101"},{"body":{"nativeSrc":"17033:529:101","nodeType":"YulBlock","src":"17033:529:101","statements":[{"body":{"nativeSrc":"17080:16:101","nodeType":"YulBlock","src":"17080:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17089:1:101","nodeType":"YulLiteral","src":"17089:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"17092:1:101","nodeType":"YulLiteral","src":"17092:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17082:6:101","nodeType":"YulIdentifier","src":"17082:6:101"},"nativeSrc":"17082:12:101","nodeType":"YulFunctionCall","src":"17082:12:101"},"nativeSrc":"17082:12:101","nodeType":"YulExpressionStatement","src":"17082:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17054:7:101","nodeType":"YulIdentifier","src":"17054:7:101"},{"name":"headStart","nativeSrc":"17063:9:101","nodeType":"YulIdentifier","src":"17063:9:101"}],"functionName":{"name":"sub","nativeSrc":"17050:3:101","nodeType":"YulIdentifier","src":"17050:3:101"},"nativeSrc":"17050:23:101","nodeType":"YulFunctionCall","src":"17050:23:101"},{"kind":"number","nativeSrc":"17075:3:101","nodeType":"YulLiteral","src":"17075:3:101","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"17046:3:101","nodeType":"YulIdentifier","src":"17046:3:101"},"nativeSrc":"17046:33:101","nodeType":"YulFunctionCall","src":"17046:33:101"},"nativeSrc":"17043:53:101","nodeType":"YulIf","src":"17043:53:101"},{"nativeSrc":"17105:36:101","nodeType":"YulVariableDeclaration","src":"17105:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"17131:9:101","nodeType":"YulIdentifier","src":"17131:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"17118:12:101","nodeType":"YulIdentifier","src":"17118:12:101"},"nativeSrc":"17118:23:101","nodeType":"YulFunctionCall","src":"17118:23:101"},"variables":[{"name":"value","nativeSrc":"17109:5:101","nodeType":"YulTypedName","src":"17109:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"17175:5:101","nodeType":"YulIdentifier","src":"17175:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"17150:24:101","nodeType":"YulIdentifier","src":"17150:24:101"},"nativeSrc":"17150:31:101","nodeType":"YulFunctionCall","src":"17150:31:101"},"nativeSrc":"17150:31:101","nodeType":"YulExpressionStatement","src":"17150:31:101"},{"nativeSrc":"17190:15:101","nodeType":"YulAssignment","src":"17190:15:101","value":{"name":"value","nativeSrc":"17200:5:101","nodeType":"YulIdentifier","src":"17200:5:101"},"variableNames":[{"name":"value0","nativeSrc":"17190:6:101","nodeType":"YulIdentifier","src":"17190:6:101"}]},{"nativeSrc":"17214:16:101","nodeType":"YulVariableDeclaration","src":"17214:16:101","value":{"kind":"number","nativeSrc":"17229:1:101","nodeType":"YulLiteral","src":"17229:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"17218:7:101","nodeType":"YulTypedName","src":"17218:7:101","type":""}]},{"nativeSrc":"17239:43:101","nodeType":"YulAssignment","src":"17239:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17267:9:101","nodeType":"YulIdentifier","src":"17267:9:101"},{"kind":"number","nativeSrc":"17278:2:101","nodeType":"YulLiteral","src":"17278:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17263:3:101","nodeType":"YulIdentifier","src":"17263:3:101"},"nativeSrc":"17263:18:101","nodeType":"YulFunctionCall","src":"17263:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"17250:12:101","nodeType":"YulIdentifier","src":"17250:12:101"},"nativeSrc":"17250:32:101","nodeType":"YulFunctionCall","src":"17250:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"17239:7:101","nodeType":"YulIdentifier","src":"17239:7:101"}]},{"nativeSrc":"17291:17:101","nodeType":"YulAssignment","src":"17291:17:101","value":{"name":"value_1","nativeSrc":"17301:7:101","nodeType":"YulIdentifier","src":"17301:7:101"},"variableNames":[{"name":"value1","nativeSrc":"17291:6:101","nodeType":"YulIdentifier","src":"17291:6:101"}]},{"nativeSrc":"17317:47:101","nodeType":"YulVariableDeclaration","src":"17317:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17349:9:101","nodeType":"YulIdentifier","src":"17349:9:101"},{"kind":"number","nativeSrc":"17360:2:101","nodeType":"YulLiteral","src":"17360:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17345:3:101","nodeType":"YulIdentifier","src":"17345:3:101"},"nativeSrc":"17345:18:101","nodeType":"YulFunctionCall","src":"17345:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"17332:12:101","nodeType":"YulIdentifier","src":"17332:12:101"},"nativeSrc":"17332:32:101","nodeType":"YulFunctionCall","src":"17332:32:101"},"variables":[{"name":"value_2","nativeSrc":"17321:7:101","nodeType":"YulTypedName","src":"17321:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"17398:7:101","nodeType":"YulIdentifier","src":"17398:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"17373:24:101","nodeType":"YulIdentifier","src":"17373:24:101"},"nativeSrc":"17373:33:101","nodeType":"YulFunctionCall","src":"17373:33:101"},"nativeSrc":"17373:33:101","nodeType":"YulExpressionStatement","src":"17373:33:101"},{"nativeSrc":"17415:17:101","nodeType":"YulAssignment","src":"17415:17:101","value":{"name":"value_2","nativeSrc":"17425:7:101","nodeType":"YulIdentifier","src":"17425:7:101"},"variableNames":[{"name":"value2","nativeSrc":"17415:6:101","nodeType":"YulIdentifier","src":"17415:6:101"}]},{"nativeSrc":"17441:47:101","nodeType":"YulVariableDeclaration","src":"17441:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17473:9:101","nodeType":"YulIdentifier","src":"17473:9:101"},{"kind":"number","nativeSrc":"17484:2:101","nodeType":"YulLiteral","src":"17484:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"17469:3:101","nodeType":"YulIdentifier","src":"17469:3:101"},"nativeSrc":"17469:18:101","nodeType":"YulFunctionCall","src":"17469:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"17456:12:101","nodeType":"YulIdentifier","src":"17456:12:101"},"nativeSrc":"17456:32:101","nodeType":"YulFunctionCall","src":"17456:32:101"},"variables":[{"name":"value_3","nativeSrc":"17445:7:101","nodeType":"YulTypedName","src":"17445:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"17522:7:101","nodeType":"YulIdentifier","src":"17522:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"17497:24:101","nodeType":"YulIdentifier","src":"17497:24:101"},"nativeSrc":"17497:33:101","nodeType":"YulFunctionCall","src":"17497:33:101"},"nativeSrc":"17497:33:101","nodeType":"YulExpressionStatement","src":"17497:33:101"},{"nativeSrc":"17539:17:101","nodeType":"YulAssignment","src":"17539:17:101","value":{"name":"value_3","nativeSrc":"17549:7:101","nodeType":"YulIdentifier","src":"17549:7:101"},"variableNames":[{"name":"value3","nativeSrc":"17539:6:101","nodeType":"YulIdentifier","src":"17539:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_addresst_address","nativeSrc":"16895:667:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16975:9:101","nodeType":"YulTypedName","src":"16975:9:101","type":""},{"name":"dataEnd","nativeSrc":"16986:7:101","nodeType":"YulTypedName","src":"16986:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"16998:6:101","nodeType":"YulTypedName","src":"16998:6:101","type":""},{"name":"value1","nativeSrc":"17006:6:101","nodeType":"YulTypedName","src":"17006:6:101","type":""},{"name":"value2","nativeSrc":"17014:6:101","nodeType":"YulTypedName","src":"17014:6:101","type":""},{"name":"value3","nativeSrc":"17022:6:101","nodeType":"YulTypedName","src":"17022:6:101","type":""}],"src":"16895:667:101"},{"body":{"nativeSrc":"17691:102:101","nodeType":"YulBlock","src":"17691:102:101","statements":[{"nativeSrc":"17701:26:101","nodeType":"YulAssignment","src":"17701:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"17713:9:101","nodeType":"YulIdentifier","src":"17713:9:101"},{"kind":"number","nativeSrc":"17724:2:101","nodeType":"YulLiteral","src":"17724:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17709:3:101","nodeType":"YulIdentifier","src":"17709:3:101"},"nativeSrc":"17709:18:101","nodeType":"YulFunctionCall","src":"17709:18:101"},"variableNames":[{"name":"tail","nativeSrc":"17701:4:101","nodeType":"YulIdentifier","src":"17701:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17743:9:101","nodeType":"YulIdentifier","src":"17743:9:101"},{"arguments":[{"name":"value0","nativeSrc":"17758:6:101","nodeType":"YulIdentifier","src":"17758:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17774:3:101","nodeType":"YulLiteral","src":"17774:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"17779:1:101","nodeType":"YulLiteral","src":"17779:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"17770:3:101","nodeType":"YulIdentifier","src":"17770:3:101"},"nativeSrc":"17770:11:101","nodeType":"YulFunctionCall","src":"17770:11:101"},{"kind":"number","nativeSrc":"17783:1:101","nodeType":"YulLiteral","src":"17783:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"17766:3:101","nodeType":"YulIdentifier","src":"17766:3:101"},"nativeSrc":"17766:19:101","nodeType":"YulFunctionCall","src":"17766:19:101"}],"functionName":{"name":"and","nativeSrc":"17754:3:101","nodeType":"YulIdentifier","src":"17754:3:101"},"nativeSrc":"17754:32:101","nodeType":"YulFunctionCall","src":"17754:32:101"}],"functionName":{"name":"mstore","nativeSrc":"17736:6:101","nodeType":"YulIdentifier","src":"17736:6:101"},"nativeSrc":"17736:51:101","nodeType":"YulFunctionCall","src":"17736:51:101"},"nativeSrc":"17736:51:101","nodeType":"YulExpressionStatement","src":"17736:51:101"}]},"name":"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed","nativeSrc":"17567:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17660:9:101","nodeType":"YulTypedName","src":"17660:9:101","type":""},{"name":"value0","nativeSrc":"17671:6:101","nodeType":"YulTypedName","src":"17671:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17682:4:101","nodeType":"YulTypedName","src":"17682:4:101","type":""}],"src":"17567:226:101"},{"body":{"nativeSrc":"17885:301:101","nodeType":"YulBlock","src":"17885:301:101","statements":[{"body":{"nativeSrc":"17931:16:101","nodeType":"YulBlock","src":"17931:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17940:1:101","nodeType":"YulLiteral","src":"17940:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"17943:1:101","nodeType":"YulLiteral","src":"17943:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17933:6:101","nodeType":"YulIdentifier","src":"17933:6:101"},"nativeSrc":"17933:12:101","nodeType":"YulFunctionCall","src":"17933:12:101"},"nativeSrc":"17933:12:101","nodeType":"YulExpressionStatement","src":"17933:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17906:7:101","nodeType":"YulIdentifier","src":"17906:7:101"},{"name":"headStart","nativeSrc":"17915:9:101","nodeType":"YulIdentifier","src":"17915:9:101"}],"functionName":{"name":"sub","nativeSrc":"17902:3:101","nodeType":"YulIdentifier","src":"17902:3:101"},"nativeSrc":"17902:23:101","nodeType":"YulFunctionCall","src":"17902:23:101"},{"kind":"number","nativeSrc":"17927:2:101","nodeType":"YulLiteral","src":"17927:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"17898:3:101","nodeType":"YulIdentifier","src":"17898:3:101"},"nativeSrc":"17898:32:101","nodeType":"YulFunctionCall","src":"17898:32:101"},"nativeSrc":"17895:52:101","nodeType":"YulIf","src":"17895:52:101"},{"nativeSrc":"17956:36:101","nodeType":"YulVariableDeclaration","src":"17956:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"17982:9:101","nodeType":"YulIdentifier","src":"17982:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"17969:12:101","nodeType":"YulIdentifier","src":"17969:12:101"},"nativeSrc":"17969:23:101","nodeType":"YulFunctionCall","src":"17969:23:101"},"variables":[{"name":"value","nativeSrc":"17960:5:101","nodeType":"YulTypedName","src":"17960:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"18026:5:101","nodeType":"YulIdentifier","src":"18026:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"18001:24:101","nodeType":"YulIdentifier","src":"18001:24:101"},"nativeSrc":"18001:31:101","nodeType":"YulFunctionCall","src":"18001:31:101"},"nativeSrc":"18001:31:101","nodeType":"YulExpressionStatement","src":"18001:31:101"},{"nativeSrc":"18041:15:101","nodeType":"YulAssignment","src":"18041:15:101","value":{"name":"value","nativeSrc":"18051:5:101","nodeType":"YulIdentifier","src":"18051:5:101"},"variableNames":[{"name":"value0","nativeSrc":"18041:6:101","nodeType":"YulIdentifier","src":"18041:6:101"}]},{"nativeSrc":"18065:47:101","nodeType":"YulVariableDeclaration","src":"18065:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18097:9:101","nodeType":"YulIdentifier","src":"18097:9:101"},{"kind":"number","nativeSrc":"18108:2:101","nodeType":"YulLiteral","src":"18108:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18093:3:101","nodeType":"YulIdentifier","src":"18093:3:101"},"nativeSrc":"18093:18:101","nodeType":"YulFunctionCall","src":"18093:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"18080:12:101","nodeType":"YulIdentifier","src":"18080:12:101"},"nativeSrc":"18080:32:101","nodeType":"YulFunctionCall","src":"18080:32:101"},"variables":[{"name":"value_1","nativeSrc":"18069:7:101","nodeType":"YulTypedName","src":"18069:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"18146:7:101","nodeType":"YulIdentifier","src":"18146:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"18121:24:101","nodeType":"YulIdentifier","src":"18121:24:101"},"nativeSrc":"18121:33:101","nodeType":"YulFunctionCall","src":"18121:33:101"},"nativeSrc":"18121:33:101","nodeType":"YulExpressionStatement","src":"18121:33:101"},{"nativeSrc":"18163:17:101","nodeType":"YulAssignment","src":"18163:17:101","value":{"name":"value_1","nativeSrc":"18173:7:101","nodeType":"YulIdentifier","src":"18173:7:101"},"variableNames":[{"name":"value1","nativeSrc":"18163:6:101","nodeType":"YulIdentifier","src":"18163:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"17798:388:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17843:9:101","nodeType":"YulTypedName","src":"17843:9:101","type":""},{"name":"dataEnd","nativeSrc":"17854:7:101","nodeType":"YulTypedName","src":"17854:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17866:6:101","nodeType":"YulTypedName","src":"17866:6:101","type":""},{"name":"value1","nativeSrc":"17874:6:101","nodeType":"YulTypedName","src":"17874:6:101","type":""}],"src":"17798:388:101"},{"body":{"nativeSrc":"18312:404:101","nodeType":"YulBlock","src":"18312:404:101","statements":[{"body":{"nativeSrc":"18358:16:101","nodeType":"YulBlock","src":"18358:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18367:1:101","nodeType":"YulLiteral","src":"18367:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"18370:1:101","nodeType":"YulLiteral","src":"18370:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18360:6:101","nodeType":"YulIdentifier","src":"18360:6:101"},"nativeSrc":"18360:12:101","nodeType":"YulFunctionCall","src":"18360:12:101"},"nativeSrc":"18360:12:101","nodeType":"YulExpressionStatement","src":"18360:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18333:7:101","nodeType":"YulIdentifier","src":"18333:7:101"},{"name":"headStart","nativeSrc":"18342:9:101","nodeType":"YulIdentifier","src":"18342:9:101"}],"functionName":{"name":"sub","nativeSrc":"18329:3:101","nodeType":"YulIdentifier","src":"18329:3:101"},"nativeSrc":"18329:23:101","nodeType":"YulFunctionCall","src":"18329:23:101"},{"kind":"number","nativeSrc":"18354:2:101","nodeType":"YulLiteral","src":"18354:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"18325:3:101","nodeType":"YulIdentifier","src":"18325:3:101"},"nativeSrc":"18325:32:101","nodeType":"YulFunctionCall","src":"18325:32:101"},"nativeSrc":"18322:52:101","nodeType":"YulIf","src":"18322:52:101"},{"nativeSrc":"18383:36:101","nodeType":"YulVariableDeclaration","src":"18383:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"18409:9:101","nodeType":"YulIdentifier","src":"18409:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"18396:12:101","nodeType":"YulIdentifier","src":"18396:12:101"},"nativeSrc":"18396:23:101","nodeType":"YulFunctionCall","src":"18396:23:101"},"variables":[{"name":"value","nativeSrc":"18387:5:101","nodeType":"YulTypedName","src":"18387:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"18453:5:101","nodeType":"YulIdentifier","src":"18453:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"18428:24:101","nodeType":"YulIdentifier","src":"18428:24:101"},"nativeSrc":"18428:31:101","nodeType":"YulFunctionCall","src":"18428:31:101"},"nativeSrc":"18428:31:101","nodeType":"YulExpressionStatement","src":"18428:31:101"},{"nativeSrc":"18468:15:101","nodeType":"YulAssignment","src":"18468:15:101","value":{"name":"value","nativeSrc":"18478:5:101","nodeType":"YulIdentifier","src":"18478:5:101"},"variableNames":[{"name":"value0","nativeSrc":"18468:6:101","nodeType":"YulIdentifier","src":"18468:6:101"}]},{"nativeSrc":"18492:16:101","nodeType":"YulVariableDeclaration","src":"18492:16:101","value":{"kind":"number","nativeSrc":"18507:1:101","nodeType":"YulLiteral","src":"18507:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"18496:7:101","nodeType":"YulTypedName","src":"18496:7:101","type":""}]},{"nativeSrc":"18517:43:101","nodeType":"YulAssignment","src":"18517:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18545:9:101","nodeType":"YulIdentifier","src":"18545:9:101"},{"kind":"number","nativeSrc":"18556:2:101","nodeType":"YulLiteral","src":"18556:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18541:3:101","nodeType":"YulIdentifier","src":"18541:3:101"},"nativeSrc":"18541:18:101","nodeType":"YulFunctionCall","src":"18541:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"18528:12:101","nodeType":"YulIdentifier","src":"18528:12:101"},"nativeSrc":"18528:32:101","nodeType":"YulFunctionCall","src":"18528:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"18517:7:101","nodeType":"YulIdentifier","src":"18517:7:101"}]},{"nativeSrc":"18569:17:101","nodeType":"YulAssignment","src":"18569:17:101","value":{"name":"value_1","nativeSrc":"18579:7:101","nodeType":"YulIdentifier","src":"18579:7:101"},"variableNames":[{"name":"value1","nativeSrc":"18569:6:101","nodeType":"YulIdentifier","src":"18569:6:101"}]},{"nativeSrc":"18595:47:101","nodeType":"YulVariableDeclaration","src":"18595:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18627:9:101","nodeType":"YulIdentifier","src":"18627:9:101"},{"kind":"number","nativeSrc":"18638:2:101","nodeType":"YulLiteral","src":"18638:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18623:3:101","nodeType":"YulIdentifier","src":"18623:3:101"},"nativeSrc":"18623:18:101","nodeType":"YulFunctionCall","src":"18623:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"18610:12:101","nodeType":"YulIdentifier","src":"18610:12:101"},"nativeSrc":"18610:32:101","nodeType":"YulFunctionCall","src":"18610:32:101"},"variables":[{"name":"value_2","nativeSrc":"18599:7:101","nodeType":"YulTypedName","src":"18599:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"18676:7:101","nodeType":"YulIdentifier","src":"18676:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"18651:24:101","nodeType":"YulIdentifier","src":"18651:24:101"},"nativeSrc":"18651:33:101","nodeType":"YulFunctionCall","src":"18651:33:101"},"nativeSrc":"18651:33:101","nodeType":"YulExpressionStatement","src":"18651:33:101"},{"nativeSrc":"18693:17:101","nodeType":"YulAssignment","src":"18693:17:101","value":{"name":"value_2","nativeSrc":"18703:7:101","nodeType":"YulIdentifier","src":"18703:7:101"},"variableNames":[{"name":"value2","nativeSrc":"18693:6:101","nodeType":"YulIdentifier","src":"18693:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_address","nativeSrc":"18191:525:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18262:9:101","nodeType":"YulTypedName","src":"18262:9:101","type":""},{"name":"dataEnd","nativeSrc":"18273:7:101","nodeType":"YulTypedName","src":"18273:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18285:6:101","nodeType":"YulTypedName","src":"18285:6:101","type":""},{"name":"value1","nativeSrc":"18293:6:101","nodeType":"YulTypedName","src":"18293:6:101","type":""},{"name":"value2","nativeSrc":"18301:6:101","nodeType":"YulTypedName","src":"18301:6:101","type":""}],"src":"18191:525:101"},{"body":{"nativeSrc":"18822:145:101","nodeType":"YulBlock","src":"18822:145:101","statements":[{"body":{"nativeSrc":"18869:16:101","nodeType":"YulBlock","src":"18869:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18878:1:101","nodeType":"YulLiteral","src":"18878:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"18881:1:101","nodeType":"YulLiteral","src":"18881:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18871:6:101","nodeType":"YulIdentifier","src":"18871:6:101"},"nativeSrc":"18871:12:101","nodeType":"YulFunctionCall","src":"18871:12:101"},"nativeSrc":"18871:12:101","nodeType":"YulExpressionStatement","src":"18871:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18843:7:101","nodeType":"YulIdentifier","src":"18843:7:101"},{"name":"headStart","nativeSrc":"18852:9:101","nodeType":"YulIdentifier","src":"18852:9:101"}],"functionName":{"name":"sub","nativeSrc":"18839:3:101","nodeType":"YulIdentifier","src":"18839:3:101"},"nativeSrc":"18839:23:101","nodeType":"YulFunctionCall","src":"18839:23:101"},{"kind":"number","nativeSrc":"18864:3:101","nodeType":"YulLiteral","src":"18864:3:101","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"18835:3:101","nodeType":"YulIdentifier","src":"18835:3:101"},"nativeSrc":"18835:33:101","nodeType":"YulFunctionCall","src":"18835:33:101"},"nativeSrc":"18832:53:101","nodeType":"YulIf","src":"18832:53:101"},{"nativeSrc":"18894:67:101","nodeType":"YulAssignment","src":"18894:67:101","value":{"arguments":[{"name":"headStart","nativeSrc":"18942:9:101","nodeType":"YulIdentifier","src":"18942:9:101"},{"name":"dataEnd","nativeSrc":"18953:7:101","nodeType":"YulIdentifier","src":"18953:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"18904:37:101","nodeType":"YulIdentifier","src":"18904:37:101"},"nativeSrc":"18904:57:101","nodeType":"YulFunctionCall","src":"18904:57:101"},"variableNames":[{"name":"value0","nativeSrc":"18894:6:101","nodeType":"YulIdentifier","src":"18894:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptr","nativeSrc":"18721:246:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18788:9:101","nodeType":"YulTypedName","src":"18788:9:101","type":""},{"name":"dataEnd","nativeSrc":"18799:7:101","nodeType":"YulTypedName","src":"18799:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18811:6:101","nodeType":"YulTypedName","src":"18811:6:101","type":""}],"src":"18721:246:101"},{"body":{"nativeSrc":"19027:325:101","nodeType":"YulBlock","src":"19027:325:101","statements":[{"nativeSrc":"19037:22:101","nodeType":"YulAssignment","src":"19037:22:101","value":{"arguments":[{"kind":"number","nativeSrc":"19051:1:101","nodeType":"YulLiteral","src":"19051:1:101","type":"","value":"1"},{"name":"data","nativeSrc":"19054:4:101","nodeType":"YulIdentifier","src":"19054:4:101"}],"functionName":{"name":"shr","nativeSrc":"19047:3:101","nodeType":"YulIdentifier","src":"19047:3:101"},"nativeSrc":"19047:12:101","nodeType":"YulFunctionCall","src":"19047:12:101"},"variableNames":[{"name":"length","nativeSrc":"19037:6:101","nodeType":"YulIdentifier","src":"19037:6:101"}]},{"nativeSrc":"19068:38:101","nodeType":"YulVariableDeclaration","src":"19068:38:101","value":{"arguments":[{"name":"data","nativeSrc":"19098:4:101","nodeType":"YulIdentifier","src":"19098:4:101"},{"kind":"number","nativeSrc":"19104:1:101","nodeType":"YulLiteral","src":"19104:1:101","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"19094:3:101","nodeType":"YulIdentifier","src":"19094:3:101"},"nativeSrc":"19094:12:101","nodeType":"YulFunctionCall","src":"19094:12:101"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"19072:18:101","nodeType":"YulTypedName","src":"19072:18:101","type":""}]},{"body":{"nativeSrc":"19145:31:101","nodeType":"YulBlock","src":"19145:31:101","statements":[{"nativeSrc":"19147:27:101","nodeType":"YulAssignment","src":"19147:27:101","value":{"arguments":[{"name":"length","nativeSrc":"19161:6:101","nodeType":"YulIdentifier","src":"19161:6:101"},{"kind":"number","nativeSrc":"19169:4:101","nodeType":"YulLiteral","src":"19169:4:101","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"19157:3:101","nodeType":"YulIdentifier","src":"19157:3:101"},"nativeSrc":"19157:17:101","nodeType":"YulFunctionCall","src":"19157:17:101"},"variableNames":[{"name":"length","nativeSrc":"19147:6:101","nodeType":"YulIdentifier","src":"19147:6:101"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"19125:18:101","nodeType":"YulIdentifier","src":"19125:18:101"}],"functionName":{"name":"iszero","nativeSrc":"19118:6:101","nodeType":"YulIdentifier","src":"19118:6:101"},"nativeSrc":"19118:26:101","nodeType":"YulFunctionCall","src":"19118:26:101"},"nativeSrc":"19115:61:101","nodeType":"YulIf","src":"19115:61:101"},{"body":{"nativeSrc":"19235:111:101","nodeType":"YulBlock","src":"19235:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19256:1:101","nodeType":"YulLiteral","src":"19256:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"19263:3:101","nodeType":"YulLiteral","src":"19263:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"19268:10:101","nodeType":"YulLiteral","src":"19268:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"19259:3:101","nodeType":"YulIdentifier","src":"19259:3:101"},"nativeSrc":"19259:20:101","nodeType":"YulFunctionCall","src":"19259:20:101"}],"functionName":{"name":"mstore","nativeSrc":"19249:6:101","nodeType":"YulIdentifier","src":"19249:6:101"},"nativeSrc":"19249:31:101","nodeType":"YulFunctionCall","src":"19249:31:101"},"nativeSrc":"19249:31:101","nodeType":"YulExpressionStatement","src":"19249:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"19300:1:101","nodeType":"YulLiteral","src":"19300:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"19303:4:101","nodeType":"YulLiteral","src":"19303:4:101","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"19293:6:101","nodeType":"YulIdentifier","src":"19293:6:101"},"nativeSrc":"19293:15:101","nodeType":"YulFunctionCall","src":"19293:15:101"},"nativeSrc":"19293:15:101","nodeType":"YulExpressionStatement","src":"19293:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"19328:1:101","nodeType":"YulLiteral","src":"19328:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"19331:4:101","nodeType":"YulLiteral","src":"19331:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"19321:6:101","nodeType":"YulIdentifier","src":"19321:6:101"},"nativeSrc":"19321:15:101","nodeType":"YulFunctionCall","src":"19321:15:101"},"nativeSrc":"19321:15:101","nodeType":"YulExpressionStatement","src":"19321:15:101"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"19191:18:101","nodeType":"YulIdentifier","src":"19191:18:101"},{"arguments":[{"name":"length","nativeSrc":"19214:6:101","nodeType":"YulIdentifier","src":"19214:6:101"},{"kind":"number","nativeSrc":"19222:2:101","nodeType":"YulLiteral","src":"19222:2:101","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"19211:2:101","nodeType":"YulIdentifier","src":"19211:2:101"},"nativeSrc":"19211:14:101","nodeType":"YulFunctionCall","src":"19211:14:101"}],"functionName":{"name":"eq","nativeSrc":"19188:2:101","nodeType":"YulIdentifier","src":"19188:2:101"},"nativeSrc":"19188:38:101","nodeType":"YulFunctionCall","src":"19188:38:101"},"nativeSrc":"19185:161:101","nodeType":"YulIf","src":"19185:161:101"}]},"name":"extract_byte_array_length","nativeSrc":"18972:380:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"19007:4:101","nodeType":"YulTypedName","src":"19007:4:101","type":""}],"returnVariables":[{"name":"length","nativeSrc":"19016:6:101","nodeType":"YulTypedName","src":"19016:6:101","type":""}],"src":"18972:380:101"},{"body":{"nativeSrc":"19465:101:101","nodeType":"YulBlock","src":"19465:101:101","statements":[{"nativeSrc":"19475:26:101","nodeType":"YulAssignment","src":"19475:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"19487:9:101","nodeType":"YulIdentifier","src":"19487:9:101"},{"kind":"number","nativeSrc":"19498:2:101","nodeType":"YulLiteral","src":"19498:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19483:3:101","nodeType":"YulIdentifier","src":"19483:3:101"},"nativeSrc":"19483:18:101","nodeType":"YulFunctionCall","src":"19483:18:101"},"variableNames":[{"name":"tail","nativeSrc":"19475:4:101","nodeType":"YulIdentifier","src":"19475:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19517:9:101","nodeType":"YulIdentifier","src":"19517:9:101"},{"arguments":[{"name":"value0","nativeSrc":"19532:6:101","nodeType":"YulIdentifier","src":"19532:6:101"},{"kind":"number","nativeSrc":"19540:18:101","nodeType":"YulLiteral","src":"19540:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19528:3:101","nodeType":"YulIdentifier","src":"19528:3:101"},"nativeSrc":"19528:31:101","nodeType":"YulFunctionCall","src":"19528:31:101"}],"functionName":{"name":"mstore","nativeSrc":"19510:6:101","nodeType":"YulIdentifier","src":"19510:6:101"},"nativeSrc":"19510:50:101","nodeType":"YulFunctionCall","src":"19510:50:101"},"nativeSrc":"19510:50:101","nodeType":"YulExpressionStatement","src":"19510:50:101"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nativeSrc":"19357:209:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19434:9:101","nodeType":"YulTypedName","src":"19434:9:101","type":""},{"name":"value0","nativeSrc":"19445:6:101","nodeType":"YulTypedName","src":"19445:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19456:4:101","nodeType":"YulTypedName","src":"19456:4:101","type":""}],"src":"19357:209:101"},{"body":{"nativeSrc":"19678:170:101","nodeType":"YulBlock","src":"19678:170:101","statements":[{"body":{"nativeSrc":"19724:16:101","nodeType":"YulBlock","src":"19724:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19733:1:101","nodeType":"YulLiteral","src":"19733:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"19736:1:101","nodeType":"YulLiteral","src":"19736:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19726:6:101","nodeType":"YulIdentifier","src":"19726:6:101"},"nativeSrc":"19726:12:101","nodeType":"YulFunctionCall","src":"19726:12:101"},"nativeSrc":"19726:12:101","nodeType":"YulExpressionStatement","src":"19726:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"19699:7:101","nodeType":"YulIdentifier","src":"19699:7:101"},{"name":"headStart","nativeSrc":"19708:9:101","nodeType":"YulIdentifier","src":"19708:9:101"}],"functionName":{"name":"sub","nativeSrc":"19695:3:101","nodeType":"YulIdentifier","src":"19695:3:101"},"nativeSrc":"19695:23:101","nodeType":"YulFunctionCall","src":"19695:23:101"},{"kind":"number","nativeSrc":"19720:2:101","nodeType":"YulLiteral","src":"19720:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"19691:3:101","nodeType":"YulIdentifier","src":"19691:3:101"},"nativeSrc":"19691:32:101","nodeType":"YulFunctionCall","src":"19691:32:101"},"nativeSrc":"19688:52:101","nodeType":"YulIf","src":"19688:52:101"},{"nativeSrc":"19749:29:101","nodeType":"YulVariableDeclaration","src":"19749:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"19768:9:101","nodeType":"YulIdentifier","src":"19768:9:101"}],"functionName":{"name":"mload","nativeSrc":"19762:5:101","nodeType":"YulIdentifier","src":"19762:5:101"},"nativeSrc":"19762:16:101","nodeType":"YulFunctionCall","src":"19762:16:101"},"variables":[{"name":"value","nativeSrc":"19753:5:101","nodeType":"YulTypedName","src":"19753:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"19812:5:101","nodeType":"YulIdentifier","src":"19812:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"19787:24:101","nodeType":"YulIdentifier","src":"19787:24:101"},"nativeSrc":"19787:31:101","nodeType":"YulFunctionCall","src":"19787:31:101"},"nativeSrc":"19787:31:101","nodeType":"YulExpressionStatement","src":"19787:31:101"},{"nativeSrc":"19827:15:101","nodeType":"YulAssignment","src":"19827:15:101","value":{"name":"value","nativeSrc":"19837:5:101","nodeType":"YulIdentifier","src":"19837:5:101"},"variableNames":[{"name":"value0","nativeSrc":"19827:6:101","nodeType":"YulIdentifier","src":"19827:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPremiumsAccount_$29276_fromMemory","nativeSrc":"19571:277:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19644:9:101","nodeType":"YulTypedName","src":"19644:9:101","type":""},{"name":"dataEnd","nativeSrc":"19655:7:101","nodeType":"YulTypedName","src":"19655:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"19667:6:101","nodeType":"YulTypedName","src":"19667:6:101","type":""}],"src":"19571:277:101"},{"body":{"nativeSrc":"19896:53:101","nodeType":"YulBlock","src":"19896:53:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"19913:3:101","nodeType":"YulIdentifier","src":"19913:3:101"},{"arguments":[{"name":"value","nativeSrc":"19922:5:101","nodeType":"YulIdentifier","src":"19922:5:101"},{"kind":"number","nativeSrc":"19929:12:101","nodeType":"YulLiteral","src":"19929:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"19918:3:101","nodeType":"YulIdentifier","src":"19918:3:101"},"nativeSrc":"19918:24:101","nodeType":"YulFunctionCall","src":"19918:24:101"}],"functionName":{"name":"mstore","nativeSrc":"19906:6:101","nodeType":"YulIdentifier","src":"19906:6:101"},"nativeSrc":"19906:37:101","nodeType":"YulFunctionCall","src":"19906:37:101"},"nativeSrc":"19906:37:101","nodeType":"YulExpressionStatement","src":"19906:37:101"}]},"name":"abi_encode_uint40","nativeSrc":"19853:96:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"19880:5:101","nodeType":"YulTypedName","src":"19880:5:101","type":""},{"name":"pos","nativeSrc":"19887:3:101","nodeType":"YulTypedName","src":"19887:3:101","type":""}],"src":"19853:96:101"},{"body":{"nativeSrc":"20008:781:101","nodeType":"YulBlock","src":"20008:781:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"20025:3:101","nodeType":"YulIdentifier","src":"20025:3:101"},{"arguments":[{"name":"value","nativeSrc":"20036:5:101","nodeType":"YulIdentifier","src":"20036:5:101"}],"functionName":{"name":"mload","nativeSrc":"20030:5:101","nodeType":"YulIdentifier","src":"20030:5:101"},"nativeSrc":"20030:12:101","nodeType":"YulFunctionCall","src":"20030:12:101"}],"functionName":{"name":"mstore","nativeSrc":"20018:6:101","nodeType":"YulIdentifier","src":"20018:6:101"},"nativeSrc":"20018:25:101","nodeType":"YulFunctionCall","src":"20018:25:101"},"nativeSrc":"20018:25:101","nodeType":"YulExpressionStatement","src":"20018:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20063:3:101","nodeType":"YulIdentifier","src":"20063:3:101"},{"kind":"number","nativeSrc":"20068:4:101","nodeType":"YulLiteral","src":"20068:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"20059:3:101","nodeType":"YulIdentifier","src":"20059:3:101"},"nativeSrc":"20059:14:101","nodeType":"YulFunctionCall","src":"20059:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20085:5:101","nodeType":"YulIdentifier","src":"20085:5:101"},{"kind":"number","nativeSrc":"20092:4:101","nodeType":"YulLiteral","src":"20092:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"20081:3:101","nodeType":"YulIdentifier","src":"20081:3:101"},"nativeSrc":"20081:16:101","nodeType":"YulFunctionCall","src":"20081:16:101"}],"functionName":{"name":"mload","nativeSrc":"20075:5:101","nodeType":"YulIdentifier","src":"20075:5:101"},"nativeSrc":"20075:23:101","nodeType":"YulFunctionCall","src":"20075:23:101"}],"functionName":{"name":"mstore","nativeSrc":"20052:6:101","nodeType":"YulIdentifier","src":"20052:6:101"},"nativeSrc":"20052:47:101","nodeType":"YulFunctionCall","src":"20052:47:101"},"nativeSrc":"20052:47:101","nodeType":"YulExpressionStatement","src":"20052:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20119:3:101","nodeType":"YulIdentifier","src":"20119:3:101"},{"kind":"number","nativeSrc":"20124:4:101","nodeType":"YulLiteral","src":"20124:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"20115:3:101","nodeType":"YulIdentifier","src":"20115:3:101"},"nativeSrc":"20115:14:101","nodeType":"YulFunctionCall","src":"20115:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20141:5:101","nodeType":"YulIdentifier","src":"20141:5:101"},{"kind":"number","nativeSrc":"20148:4:101","nodeType":"YulLiteral","src":"20148:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"20137:3:101","nodeType":"YulIdentifier","src":"20137:3:101"},"nativeSrc":"20137:16:101","nodeType":"YulFunctionCall","src":"20137:16:101"}],"functionName":{"name":"mload","nativeSrc":"20131:5:101","nodeType":"YulIdentifier","src":"20131:5:101"},"nativeSrc":"20131:23:101","nodeType":"YulFunctionCall","src":"20131:23:101"}],"functionName":{"name":"mstore","nativeSrc":"20108:6:101","nodeType":"YulIdentifier","src":"20108:6:101"},"nativeSrc":"20108:47:101","nodeType":"YulFunctionCall","src":"20108:47:101"},"nativeSrc":"20108:47:101","nodeType":"YulExpressionStatement","src":"20108:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20175:3:101","nodeType":"YulIdentifier","src":"20175:3:101"},{"kind":"number","nativeSrc":"20180:4:101","nodeType":"YulLiteral","src":"20180:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"20171:3:101","nodeType":"YulIdentifier","src":"20171:3:101"},"nativeSrc":"20171:14:101","nodeType":"YulFunctionCall","src":"20171:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20197:5:101","nodeType":"YulIdentifier","src":"20197:5:101"},{"kind":"number","nativeSrc":"20204:4:101","nodeType":"YulLiteral","src":"20204:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"20193:3:101","nodeType":"YulIdentifier","src":"20193:3:101"},"nativeSrc":"20193:16:101","nodeType":"YulFunctionCall","src":"20193:16:101"}],"functionName":{"name":"mload","nativeSrc":"20187:5:101","nodeType":"YulIdentifier","src":"20187:5:101"},"nativeSrc":"20187:23:101","nodeType":"YulFunctionCall","src":"20187:23:101"}],"functionName":{"name":"mstore","nativeSrc":"20164:6:101","nodeType":"YulIdentifier","src":"20164:6:101"},"nativeSrc":"20164:47:101","nodeType":"YulFunctionCall","src":"20164:47:101"},"nativeSrc":"20164:47:101","nodeType":"YulExpressionStatement","src":"20164:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20231:3:101","nodeType":"YulIdentifier","src":"20231:3:101"},{"kind":"number","nativeSrc":"20236:4:101","nodeType":"YulLiteral","src":"20236:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"20227:3:101","nodeType":"YulIdentifier","src":"20227:3:101"},"nativeSrc":"20227:14:101","nodeType":"YulFunctionCall","src":"20227:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20253:5:101","nodeType":"YulIdentifier","src":"20253:5:101"},{"kind":"number","nativeSrc":"20260:4:101","nodeType":"YulLiteral","src":"20260:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"20249:3:101","nodeType":"YulIdentifier","src":"20249:3:101"},"nativeSrc":"20249:16:101","nodeType":"YulFunctionCall","src":"20249:16:101"}],"functionName":{"name":"mload","nativeSrc":"20243:5:101","nodeType":"YulIdentifier","src":"20243:5:101"},"nativeSrc":"20243:23:101","nodeType":"YulFunctionCall","src":"20243:23:101"}],"functionName":{"name":"mstore","nativeSrc":"20220:6:101","nodeType":"YulIdentifier","src":"20220:6:101"},"nativeSrc":"20220:47:101","nodeType":"YulFunctionCall","src":"20220:47:101"},"nativeSrc":"20220:47:101","nodeType":"YulExpressionStatement","src":"20220:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20287:3:101","nodeType":"YulIdentifier","src":"20287:3:101"},{"kind":"number","nativeSrc":"20292:4:101","nodeType":"YulLiteral","src":"20292:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"20283:3:101","nodeType":"YulIdentifier","src":"20283:3:101"},"nativeSrc":"20283:14:101","nodeType":"YulFunctionCall","src":"20283:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20309:5:101","nodeType":"YulIdentifier","src":"20309:5:101"},{"kind":"number","nativeSrc":"20316:4:101","nodeType":"YulLiteral","src":"20316:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"20305:3:101","nodeType":"YulIdentifier","src":"20305:3:101"},"nativeSrc":"20305:16:101","nodeType":"YulFunctionCall","src":"20305:16:101"}],"functionName":{"name":"mload","nativeSrc":"20299:5:101","nodeType":"YulIdentifier","src":"20299:5:101"},"nativeSrc":"20299:23:101","nodeType":"YulFunctionCall","src":"20299:23:101"}],"functionName":{"name":"mstore","nativeSrc":"20276:6:101","nodeType":"YulIdentifier","src":"20276:6:101"},"nativeSrc":"20276:47:101","nodeType":"YulFunctionCall","src":"20276:47:101"},"nativeSrc":"20276:47:101","nodeType":"YulExpressionStatement","src":"20276:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20343:3:101","nodeType":"YulIdentifier","src":"20343:3:101"},{"kind":"number","nativeSrc":"20348:4:101","nodeType":"YulLiteral","src":"20348:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"20339:3:101","nodeType":"YulIdentifier","src":"20339:3:101"},"nativeSrc":"20339:14:101","nodeType":"YulFunctionCall","src":"20339:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20365:5:101","nodeType":"YulIdentifier","src":"20365:5:101"},{"kind":"number","nativeSrc":"20372:4:101","nodeType":"YulLiteral","src":"20372:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"20361:3:101","nodeType":"YulIdentifier","src":"20361:3:101"},"nativeSrc":"20361:16:101","nodeType":"YulFunctionCall","src":"20361:16:101"}],"functionName":{"name":"mload","nativeSrc":"20355:5:101","nodeType":"YulIdentifier","src":"20355:5:101"},"nativeSrc":"20355:23:101","nodeType":"YulFunctionCall","src":"20355:23:101"}],"functionName":{"name":"mstore","nativeSrc":"20332:6:101","nodeType":"YulIdentifier","src":"20332:6:101"},"nativeSrc":"20332:47:101","nodeType":"YulFunctionCall","src":"20332:47:101"},"nativeSrc":"20332:47:101","nodeType":"YulExpressionStatement","src":"20332:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20399:3:101","nodeType":"YulIdentifier","src":"20399:3:101"},{"kind":"number","nativeSrc":"20404:4:101","nodeType":"YulLiteral","src":"20404:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"20395:3:101","nodeType":"YulIdentifier","src":"20395:3:101"},"nativeSrc":"20395:14:101","nodeType":"YulFunctionCall","src":"20395:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20421:5:101","nodeType":"YulIdentifier","src":"20421:5:101"},{"kind":"number","nativeSrc":"20428:4:101","nodeType":"YulLiteral","src":"20428:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"20417:3:101","nodeType":"YulIdentifier","src":"20417:3:101"},"nativeSrc":"20417:16:101","nodeType":"YulFunctionCall","src":"20417:16:101"}],"functionName":{"name":"mload","nativeSrc":"20411:5:101","nodeType":"YulIdentifier","src":"20411:5:101"},"nativeSrc":"20411:23:101","nodeType":"YulFunctionCall","src":"20411:23:101"}],"functionName":{"name":"mstore","nativeSrc":"20388:6:101","nodeType":"YulIdentifier","src":"20388:6:101"},"nativeSrc":"20388:47:101","nodeType":"YulFunctionCall","src":"20388:47:101"},"nativeSrc":"20388:47:101","nodeType":"YulExpressionStatement","src":"20388:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20455:3:101","nodeType":"YulIdentifier","src":"20455:3:101"},{"kind":"number","nativeSrc":"20460:6:101","nodeType":"YulLiteral","src":"20460:6:101","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"20451:3:101","nodeType":"YulIdentifier","src":"20451:3:101"},"nativeSrc":"20451:16:101","nodeType":"YulFunctionCall","src":"20451:16:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20479:5:101","nodeType":"YulIdentifier","src":"20479:5:101"},{"kind":"number","nativeSrc":"20486:6:101","nodeType":"YulLiteral","src":"20486:6:101","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"20475:3:101","nodeType":"YulIdentifier","src":"20475:3:101"},"nativeSrc":"20475:18:101","nodeType":"YulFunctionCall","src":"20475:18:101"}],"functionName":{"name":"mload","nativeSrc":"20469:5:101","nodeType":"YulIdentifier","src":"20469:5:101"},"nativeSrc":"20469:25:101","nodeType":"YulFunctionCall","src":"20469:25:101"}],"functionName":{"name":"mstore","nativeSrc":"20444:6:101","nodeType":"YulIdentifier","src":"20444:6:101"},"nativeSrc":"20444:51:101","nodeType":"YulFunctionCall","src":"20444:51:101"},"nativeSrc":"20444:51:101","nodeType":"YulExpressionStatement","src":"20444:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20515:3:101","nodeType":"YulIdentifier","src":"20515:3:101"},{"kind":"number","nativeSrc":"20520:6:101","nodeType":"YulLiteral","src":"20520:6:101","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"20511:3:101","nodeType":"YulIdentifier","src":"20511:3:101"},"nativeSrc":"20511:16:101","nodeType":"YulFunctionCall","src":"20511:16:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20539:5:101","nodeType":"YulIdentifier","src":"20539:5:101"},{"kind":"number","nativeSrc":"20546:6:101","nodeType":"YulLiteral","src":"20546:6:101","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"20535:3:101","nodeType":"YulIdentifier","src":"20535:3:101"},"nativeSrc":"20535:18:101","nodeType":"YulFunctionCall","src":"20535:18:101"}],"functionName":{"name":"mload","nativeSrc":"20529:5:101","nodeType":"YulIdentifier","src":"20529:5:101"},"nativeSrc":"20529:25:101","nodeType":"YulFunctionCall","src":"20529:25:101"}],"functionName":{"name":"mstore","nativeSrc":"20504:6:101","nodeType":"YulIdentifier","src":"20504:6:101"},"nativeSrc":"20504:51:101","nodeType":"YulFunctionCall","src":"20504:51:101"},"nativeSrc":"20504:51:101","nodeType":"YulExpressionStatement","src":"20504:51:101"},{"nativeSrc":"20564:45:101","nodeType":"YulVariableDeclaration","src":"20564:45:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20594:5:101","nodeType":"YulIdentifier","src":"20594:5:101"},{"kind":"number","nativeSrc":"20601:6:101","nodeType":"YulLiteral","src":"20601:6:101","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"20590:3:101","nodeType":"YulIdentifier","src":"20590:3:101"},"nativeSrc":"20590:18:101","nodeType":"YulFunctionCall","src":"20590:18:101"}],"functionName":{"name":"mload","nativeSrc":"20584:5:101","nodeType":"YulIdentifier","src":"20584:5:101"},"nativeSrc":"20584:25:101","nodeType":"YulFunctionCall","src":"20584:25:101"},"variables":[{"name":"memberValue0","nativeSrc":"20568:12:101","nodeType":"YulTypedName","src":"20568:12:101","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"20636:12:101","nodeType":"YulIdentifier","src":"20636:12:101"},{"arguments":[{"name":"pos","nativeSrc":"20654:3:101","nodeType":"YulIdentifier","src":"20654:3:101"},{"kind":"number","nativeSrc":"20659:6:101","nodeType":"YulLiteral","src":"20659:6:101","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"20650:3:101","nodeType":"YulIdentifier","src":"20650:3:101"},"nativeSrc":"20650:16:101","nodeType":"YulFunctionCall","src":"20650:16:101"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"20618:17:101","nodeType":"YulIdentifier","src":"20618:17:101"},"nativeSrc":"20618:49:101","nodeType":"YulFunctionCall","src":"20618:49:101"},"nativeSrc":"20618:49:101","nodeType":"YulExpressionStatement","src":"20618:49:101"},{"nativeSrc":"20676:47:101","nodeType":"YulVariableDeclaration","src":"20676:47:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20708:5:101","nodeType":"YulIdentifier","src":"20708:5:101"},{"kind":"number","nativeSrc":"20715:6:101","nodeType":"YulLiteral","src":"20715:6:101","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"20704:3:101","nodeType":"YulIdentifier","src":"20704:3:101"},"nativeSrc":"20704:18:101","nodeType":"YulFunctionCall","src":"20704:18:101"}],"functionName":{"name":"mload","nativeSrc":"20698:5:101","nodeType":"YulIdentifier","src":"20698:5:101"},"nativeSrc":"20698:25:101","nodeType":"YulFunctionCall","src":"20698:25:101"},"variables":[{"name":"memberValue0_1","nativeSrc":"20680:14:101","nodeType":"YulTypedName","src":"20680:14:101","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nativeSrc":"20750:14:101","nodeType":"YulIdentifier","src":"20750:14:101"},{"arguments":[{"name":"pos","nativeSrc":"20770:3:101","nodeType":"YulIdentifier","src":"20770:3:101"},{"kind":"number","nativeSrc":"20775:6:101","nodeType":"YulLiteral","src":"20775:6:101","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"20766:3:101","nodeType":"YulIdentifier","src":"20766:3:101"},"nativeSrc":"20766:16:101","nodeType":"YulFunctionCall","src":"20766:16:101"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"20732:17:101","nodeType":"YulIdentifier","src":"20732:17:101"},"nativeSrc":"20732:51:101","nodeType":"YulFunctionCall","src":"20732:51:101"},"nativeSrc":"20732:51:101","nodeType":"YulExpressionStatement","src":"20732:51:101"}]},"name":"abi_encode_struct_PolicyData","nativeSrc":"19954:835:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"19992:5:101","nodeType":"YulTypedName","src":"19992:5:101","type":""},{"name":"pos","nativeSrc":"19999:3:101","nodeType":"YulTypedName","src":"19999:3:101","type":""}],"src":"19954:835:101"},{"body":{"nativeSrc":"20953:99:101","nodeType":"YulBlock","src":"20953:99:101","statements":[{"nativeSrc":"20963:27:101","nodeType":"YulAssignment","src":"20963:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"20975:9:101","nodeType":"YulIdentifier","src":"20975:9:101"},{"kind":"number","nativeSrc":"20986:3:101","nodeType":"YulLiteral","src":"20986:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"20971:3:101","nodeType":"YulIdentifier","src":"20971:3:101"},"nativeSrc":"20971:19:101","nodeType":"YulFunctionCall","src":"20971:19:101"},"variableNames":[{"name":"tail","nativeSrc":"20963:4:101","nodeType":"YulIdentifier","src":"20963:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"21028:6:101","nodeType":"YulIdentifier","src":"21028:6:101"},{"name":"headStart","nativeSrc":"21036:9:101","nodeType":"YulIdentifier","src":"21036:9:101"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"20999:28:101","nodeType":"YulIdentifier","src":"20999:28:101"},"nativeSrc":"20999:47:101","nodeType":"YulFunctionCall","src":"20999:47:101"},"nativeSrc":"20999:47:101","nodeType":"YulExpressionStatement","src":"20999:47:101"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr__fromStack_reversed","nativeSrc":"20794:258:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20922:9:101","nodeType":"YulTypedName","src":"20922:9:101","type":""},{"name":"value0","nativeSrc":"20933:6:101","nodeType":"YulTypedName","src":"20933:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20944:4:101","nodeType":"YulTypedName","src":"20944:4:101","type":""}],"src":"20794:258:101"},{"body":{"nativeSrc":"21189:287:101","nodeType":"YulBlock","src":"21189:287:101","statements":[{"body":{"nativeSrc":"21235:16:101","nodeType":"YulBlock","src":"21235:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21244:1:101","nodeType":"YulLiteral","src":"21244:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"21247:1:101","nodeType":"YulLiteral","src":"21247:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21237:6:101","nodeType":"YulIdentifier","src":"21237:6:101"},"nativeSrc":"21237:12:101","nodeType":"YulFunctionCall","src":"21237:12:101"},"nativeSrc":"21237:12:101","nodeType":"YulExpressionStatement","src":"21237:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"21210:7:101","nodeType":"YulIdentifier","src":"21210:7:101"},{"name":"headStart","nativeSrc":"21219:9:101","nodeType":"YulIdentifier","src":"21219:9:101"}],"functionName":{"name":"sub","nativeSrc":"21206:3:101","nodeType":"YulIdentifier","src":"21206:3:101"},"nativeSrc":"21206:23:101","nodeType":"YulFunctionCall","src":"21206:23:101"},{"kind":"number","nativeSrc":"21231:2:101","nodeType":"YulLiteral","src":"21231:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"21202:3:101","nodeType":"YulIdentifier","src":"21202:3:101"},"nativeSrc":"21202:32:101","nodeType":"YulFunctionCall","src":"21202:32:101"},"nativeSrc":"21199:52:101","nodeType":"YulIf","src":"21199:52:101"},{"nativeSrc":"21260:29:101","nodeType":"YulVariableDeclaration","src":"21260:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"21279:9:101","nodeType":"YulIdentifier","src":"21279:9:101"}],"functionName":{"name":"mload","nativeSrc":"21273:5:101","nodeType":"YulIdentifier","src":"21273:5:101"},"nativeSrc":"21273:16:101","nodeType":"YulFunctionCall","src":"21273:16:101"},"variables":[{"name":"value","nativeSrc":"21264:5:101","nodeType":"YulTypedName","src":"21264:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"21323:5:101","nodeType":"YulIdentifier","src":"21323:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"21298:24:101","nodeType":"YulIdentifier","src":"21298:24:101"},"nativeSrc":"21298:31:101","nodeType":"YulFunctionCall","src":"21298:31:101"},"nativeSrc":"21298:31:101","nodeType":"YulExpressionStatement","src":"21298:31:101"},{"nativeSrc":"21338:15:101","nodeType":"YulAssignment","src":"21338:15:101","value":{"name":"value","nativeSrc":"21348:5:101","nodeType":"YulIdentifier","src":"21348:5:101"},"variableNames":[{"name":"value0","nativeSrc":"21338:6:101","nodeType":"YulIdentifier","src":"21338:6:101"}]},{"nativeSrc":"21362:40:101","nodeType":"YulVariableDeclaration","src":"21362:40:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21387:9:101","nodeType":"YulIdentifier","src":"21387:9:101"},{"kind":"number","nativeSrc":"21398:2:101","nodeType":"YulLiteral","src":"21398:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21383:3:101","nodeType":"YulIdentifier","src":"21383:3:101"},"nativeSrc":"21383:18:101","nodeType":"YulFunctionCall","src":"21383:18:101"}],"functionName":{"name":"mload","nativeSrc":"21377:5:101","nodeType":"YulIdentifier","src":"21377:5:101"},"nativeSrc":"21377:25:101","nodeType":"YulFunctionCall","src":"21377:25:101"},"variables":[{"name":"value_1","nativeSrc":"21366:7:101","nodeType":"YulTypedName","src":"21366:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"21436:7:101","nodeType":"YulIdentifier","src":"21436:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"21411:24:101","nodeType":"YulIdentifier","src":"21411:24:101"},"nativeSrc":"21411:33:101","nodeType":"YulFunctionCall","src":"21411:33:101"},"nativeSrc":"21411:33:101","nodeType":"YulExpressionStatement","src":"21411:33:101"},{"nativeSrc":"21453:17:101","nodeType":"YulAssignment","src":"21453:17:101","value":{"name":"value_1","nativeSrc":"21463:7:101","nodeType":"YulIdentifier","src":"21463:7:101"},"variableNames":[{"name":"value1","nativeSrc":"21453:6:101","nodeType":"YulIdentifier","src":"21453:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$28869t_contract$_IEToken_$28869_fromMemory","nativeSrc":"21057:419:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21147:9:101","nodeType":"YulTypedName","src":"21147:9:101","type":""},{"name":"dataEnd","nativeSrc":"21158:7:101","nodeType":"YulTypedName","src":"21158:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"21170:6:101","nodeType":"YulTypedName","src":"21170:6:101","type":""},{"name":"value1","nativeSrc":"21178:6:101","nodeType":"YulTypedName","src":"21178:6:101","type":""}],"src":"21057:419:101"},{"body":{"nativeSrc":"21562:170:101","nodeType":"YulBlock","src":"21562:170:101","statements":[{"body":{"nativeSrc":"21608:16:101","nodeType":"YulBlock","src":"21608:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21617:1:101","nodeType":"YulLiteral","src":"21617:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"21620:1:101","nodeType":"YulLiteral","src":"21620:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21610:6:101","nodeType":"YulIdentifier","src":"21610:6:101"},"nativeSrc":"21610:12:101","nodeType":"YulFunctionCall","src":"21610:12:101"},"nativeSrc":"21610:12:101","nodeType":"YulExpressionStatement","src":"21610:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"21583:7:101","nodeType":"YulIdentifier","src":"21583:7:101"},{"name":"headStart","nativeSrc":"21592:9:101","nodeType":"YulIdentifier","src":"21592:9:101"}],"functionName":{"name":"sub","nativeSrc":"21579:3:101","nodeType":"YulIdentifier","src":"21579:3:101"},"nativeSrc":"21579:23:101","nodeType":"YulFunctionCall","src":"21579:23:101"},{"kind":"number","nativeSrc":"21604:2:101","nodeType":"YulLiteral","src":"21604:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"21575:3:101","nodeType":"YulIdentifier","src":"21575:3:101"},"nativeSrc":"21575:32:101","nodeType":"YulFunctionCall","src":"21575:32:101"},"nativeSrc":"21572:52:101","nodeType":"YulIf","src":"21572:52:101"},{"nativeSrc":"21633:29:101","nodeType":"YulVariableDeclaration","src":"21633:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"21652:9:101","nodeType":"YulIdentifier","src":"21652:9:101"}],"functionName":{"name":"mload","nativeSrc":"21646:5:101","nodeType":"YulIdentifier","src":"21646:5:101"},"nativeSrc":"21646:16:101","nodeType":"YulFunctionCall","src":"21646:16:101"},"variables":[{"name":"value","nativeSrc":"21637:5:101","nodeType":"YulTypedName","src":"21637:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"21696:5:101","nodeType":"YulIdentifier","src":"21696:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"21671:24:101","nodeType":"YulIdentifier","src":"21671:24:101"},"nativeSrc":"21671:31:101","nodeType":"YulFunctionCall","src":"21671:31:101"},"nativeSrc":"21671:31:101","nodeType":"YulExpressionStatement","src":"21671:31:101"},{"nativeSrc":"21711:15:101","nodeType":"YulAssignment","src":"21711:15:101","value":{"name":"value","nativeSrc":"21721:5:101","nodeType":"YulIdentifier","src":"21721:5:101"},"variableNames":[{"name":"value0","nativeSrc":"21711:6:101","nodeType":"YulIdentifier","src":"21711:6:101"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"21481:251:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21528:9:101","nodeType":"YulTypedName","src":"21528:9:101","type":""},{"name":"dataEnd","nativeSrc":"21539:7:101","nodeType":"YulTypedName","src":"21539:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"21551:6:101","nodeType":"YulTypedName","src":"21551:6:101","type":""}],"src":"21481:251:101"},{"body":{"nativeSrc":"21894:214:101","nodeType":"YulBlock","src":"21894:214:101","statements":[{"nativeSrc":"21904:26:101","nodeType":"YulAssignment","src":"21904:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"21916:9:101","nodeType":"YulIdentifier","src":"21916:9:101"},{"kind":"number","nativeSrc":"21927:2:101","nodeType":"YulLiteral","src":"21927:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"21912:3:101","nodeType":"YulIdentifier","src":"21912:3:101"},"nativeSrc":"21912:18:101","nodeType":"YulFunctionCall","src":"21912:18:101"},"variableNames":[{"name":"tail","nativeSrc":"21904:4:101","nodeType":"YulIdentifier","src":"21904:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"21946:9:101","nodeType":"YulIdentifier","src":"21946:9:101"},{"arguments":[{"name":"value0","nativeSrc":"21961:6:101","nodeType":"YulIdentifier","src":"21961:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"21977:3:101","nodeType":"YulLiteral","src":"21977:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"21982:1:101","nodeType":"YulLiteral","src":"21982:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"21973:3:101","nodeType":"YulIdentifier","src":"21973:3:101"},"nativeSrc":"21973:11:101","nodeType":"YulFunctionCall","src":"21973:11:101"},{"kind":"number","nativeSrc":"21986:1:101","nodeType":"YulLiteral","src":"21986:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"21969:3:101","nodeType":"YulIdentifier","src":"21969:3:101"},"nativeSrc":"21969:19:101","nodeType":"YulFunctionCall","src":"21969:19:101"}],"functionName":{"name":"and","nativeSrc":"21957:3:101","nodeType":"YulIdentifier","src":"21957:3:101"},"nativeSrc":"21957:32:101","nodeType":"YulFunctionCall","src":"21957:32:101"}],"functionName":{"name":"mstore","nativeSrc":"21939:6:101","nodeType":"YulIdentifier","src":"21939:6:101"},"nativeSrc":"21939:51:101","nodeType":"YulFunctionCall","src":"21939:51:101"},"nativeSrc":"21939:51:101","nodeType":"YulExpressionStatement","src":"21939:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22010:9:101","nodeType":"YulIdentifier","src":"22010:9:101"},{"kind":"number","nativeSrc":"22021:2:101","nodeType":"YulLiteral","src":"22021:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22006:3:101","nodeType":"YulIdentifier","src":"22006:3:101"},"nativeSrc":"22006:18:101","nodeType":"YulFunctionCall","src":"22006:18:101"},{"name":"value1","nativeSrc":"22026:6:101","nodeType":"YulIdentifier","src":"22026:6:101"}],"functionName":{"name":"mstore","nativeSrc":"21999:6:101","nodeType":"YulIdentifier","src":"21999:6:101"},"nativeSrc":"21999:34:101","nodeType":"YulFunctionCall","src":"21999:34:101"},"nativeSrc":"21999:34:101","nodeType":"YulExpressionStatement","src":"21999:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22053:9:101","nodeType":"YulIdentifier","src":"22053:9:101"},{"kind":"number","nativeSrc":"22064:2:101","nodeType":"YulLiteral","src":"22064:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22049:3:101","nodeType":"YulIdentifier","src":"22049:3:101"},"nativeSrc":"22049:18:101","nodeType":"YulFunctionCall","src":"22049:18:101"},{"arguments":[{"name":"value2","nativeSrc":"22073:6:101","nodeType":"YulIdentifier","src":"22073:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22089:3:101","nodeType":"YulLiteral","src":"22089:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"22094:1:101","nodeType":"YulLiteral","src":"22094:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22085:3:101","nodeType":"YulIdentifier","src":"22085:3:101"},"nativeSrc":"22085:11:101","nodeType":"YulFunctionCall","src":"22085:11:101"},{"kind":"number","nativeSrc":"22098:1:101","nodeType":"YulLiteral","src":"22098:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"22081:3:101","nodeType":"YulIdentifier","src":"22081:3:101"},"nativeSrc":"22081:19:101","nodeType":"YulFunctionCall","src":"22081:19:101"}],"functionName":{"name":"and","nativeSrc":"22069:3:101","nodeType":"YulIdentifier","src":"22069:3:101"},"nativeSrc":"22069:32:101","nodeType":"YulFunctionCall","src":"22069:32:101"}],"functionName":{"name":"mstore","nativeSrc":"22042:6:101","nodeType":"YulIdentifier","src":"22042:6:101"},"nativeSrc":"22042:60:101","nodeType":"YulFunctionCall","src":"22042:60:101"},"nativeSrc":"22042:60:101","nodeType":"YulExpressionStatement","src":"22042:60:101"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_address__to_t_address_t_uint256_t_address__fromStack_reversed","nativeSrc":"21737:371:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21847:9:101","nodeType":"YulTypedName","src":"21847:9:101","type":""},{"name":"value2","nativeSrc":"21858:6:101","nodeType":"YulTypedName","src":"21858:6:101","type":""},{"name":"value1","nativeSrc":"21866:6:101","nodeType":"YulTypedName","src":"21866:6:101","type":""},{"name":"value0","nativeSrc":"21874:6:101","nodeType":"YulTypedName","src":"21874:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"21885:4:101","nodeType":"YulTypedName","src":"21885:4:101","type":""}],"src":"21737:371:101"},{"body":{"nativeSrc":"22169:65:101","nodeType":"YulBlock","src":"22169:65:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22186:1:101","nodeType":"YulLiteral","src":"22186:1:101","type":"","value":"0"},{"name":"ptr","nativeSrc":"22189:3:101","nodeType":"YulIdentifier","src":"22189:3:101"}],"functionName":{"name":"mstore","nativeSrc":"22179:6:101","nodeType":"YulIdentifier","src":"22179:6:101"},"nativeSrc":"22179:14:101","nodeType":"YulFunctionCall","src":"22179:14:101"},"nativeSrc":"22179:14:101","nodeType":"YulExpressionStatement","src":"22179:14:101"},{"nativeSrc":"22202:26:101","nodeType":"YulAssignment","src":"22202:26:101","value":{"arguments":[{"kind":"number","nativeSrc":"22220:1:101","nodeType":"YulLiteral","src":"22220:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"22223:4:101","nodeType":"YulLiteral","src":"22223:4:101","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"22210:9:101","nodeType":"YulIdentifier","src":"22210:9:101"},"nativeSrc":"22210:18:101","nodeType":"YulFunctionCall","src":"22210:18:101"},"variableNames":[{"name":"data","nativeSrc":"22202:4:101","nodeType":"YulIdentifier","src":"22202:4:101"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"22113:121:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"22152:3:101","nodeType":"YulTypedName","src":"22152:3:101","type":""}],"returnVariables":[{"name":"data","nativeSrc":"22160:4:101","nodeType":"YulTypedName","src":"22160:4:101","type":""}],"src":"22113:121:101"},{"body":{"nativeSrc":"22306:200:101","nodeType":"YulBlock","src":"22306:200:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"22323:3:101","nodeType":"YulIdentifier","src":"22323:3:101"},{"name":"length","nativeSrc":"22328:6:101","nodeType":"YulIdentifier","src":"22328:6:101"}],"functionName":{"name":"mstore","nativeSrc":"22316:6:101","nodeType":"YulIdentifier","src":"22316:6:101"},"nativeSrc":"22316:19:101","nodeType":"YulFunctionCall","src":"22316:19:101"},"nativeSrc":"22316:19:101","nodeType":"YulExpressionStatement","src":"22316:19:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"22361:3:101","nodeType":"YulIdentifier","src":"22361:3:101"},{"kind":"number","nativeSrc":"22366:4:101","nodeType":"YulLiteral","src":"22366:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"22357:3:101","nodeType":"YulIdentifier","src":"22357:3:101"},"nativeSrc":"22357:14:101","nodeType":"YulFunctionCall","src":"22357:14:101"},{"name":"start","nativeSrc":"22373:5:101","nodeType":"YulIdentifier","src":"22373:5:101"},{"name":"length","nativeSrc":"22380:6:101","nodeType":"YulIdentifier","src":"22380:6:101"}],"functionName":{"name":"calldatacopy","nativeSrc":"22344:12:101","nodeType":"YulIdentifier","src":"22344:12:101"},"nativeSrc":"22344:43:101","nodeType":"YulFunctionCall","src":"22344:43:101"},"nativeSrc":"22344:43:101","nodeType":"YulExpressionStatement","src":"22344:43:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"22411:3:101","nodeType":"YulIdentifier","src":"22411:3:101"},{"name":"length","nativeSrc":"22416:6:101","nodeType":"YulIdentifier","src":"22416:6:101"}],"functionName":{"name":"add","nativeSrc":"22407:3:101","nodeType":"YulIdentifier","src":"22407:3:101"},"nativeSrc":"22407:16:101","nodeType":"YulFunctionCall","src":"22407:16:101"},{"kind":"number","nativeSrc":"22425:4:101","nodeType":"YulLiteral","src":"22425:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"22403:3:101","nodeType":"YulIdentifier","src":"22403:3:101"},"nativeSrc":"22403:27:101","nodeType":"YulFunctionCall","src":"22403:27:101"},{"kind":"number","nativeSrc":"22432:1:101","nodeType":"YulLiteral","src":"22432:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"22396:6:101","nodeType":"YulIdentifier","src":"22396:6:101"},"nativeSrc":"22396:38:101","nodeType":"YulFunctionCall","src":"22396:38:101"},"nativeSrc":"22396:38:101","nodeType":"YulExpressionStatement","src":"22396:38:101"},{"nativeSrc":"22443:57:101","nodeType":"YulAssignment","src":"22443:57:101","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"22458:3:101","nodeType":"YulIdentifier","src":"22458:3:101"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"22471:6:101","nodeType":"YulIdentifier","src":"22471:6:101"},{"kind":"number","nativeSrc":"22479:2:101","nodeType":"YulLiteral","src":"22479:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"22467:3:101","nodeType":"YulIdentifier","src":"22467:3:101"},"nativeSrc":"22467:15:101","nodeType":"YulFunctionCall","src":"22467:15:101"},{"arguments":[{"kind":"number","nativeSrc":"22488:2:101","nodeType":"YulLiteral","src":"22488:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"22484:3:101","nodeType":"YulIdentifier","src":"22484:3:101"},"nativeSrc":"22484:7:101","nodeType":"YulFunctionCall","src":"22484:7:101"}],"functionName":{"name":"and","nativeSrc":"22463:3:101","nodeType":"YulIdentifier","src":"22463:3:101"},"nativeSrc":"22463:29:101","nodeType":"YulFunctionCall","src":"22463:29:101"}],"functionName":{"name":"add","nativeSrc":"22454:3:101","nodeType":"YulIdentifier","src":"22454:3:101"},"nativeSrc":"22454:39:101","nodeType":"YulFunctionCall","src":"22454:39:101"},{"kind":"number","nativeSrc":"22495:4:101","nodeType":"YulLiteral","src":"22495:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"22450:3:101","nodeType":"YulIdentifier","src":"22450:3:101"},"nativeSrc":"22450:50:101","nodeType":"YulFunctionCall","src":"22450:50:101"},"variableNames":[{"name":"end","nativeSrc":"22443:3:101","nodeType":"YulIdentifier","src":"22443:3:101"}]}]},"name":"abi_encode_string_calldata","nativeSrc":"22239:267:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nativeSrc":"22275:5:101","nodeType":"YulTypedName","src":"22275:5:101","type":""},{"name":"length","nativeSrc":"22282:6:101","nodeType":"YulTypedName","src":"22282:6:101","type":""},{"name":"pos","nativeSrc":"22290:3:101","nodeType":"YulTypedName","src":"22290:3:101","type":""}],"returnVariables":[{"name":"end","nativeSrc":"22298:3:101","nodeType":"YulTypedName","src":"22298:3:101","type":""}],"src":"22239:267:101"},{"body":{"nativeSrc":"22687:887:101","nodeType":"YulBlock","src":"22687:887:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22704:9:101","nodeType":"YulIdentifier","src":"22704:9:101"},{"kind":"number","nativeSrc":"22715:2:101","nodeType":"YulLiteral","src":"22715:2:101","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"22697:6:101","nodeType":"YulIdentifier","src":"22697:6:101"},"nativeSrc":"22697:21:101","nodeType":"YulFunctionCall","src":"22697:21:101"},"nativeSrc":"22697:21:101","nodeType":"YulExpressionStatement","src":"22697:21:101"},{"nativeSrc":"22727:12:101","nodeType":"YulVariableDeclaration","src":"22727:12:101","value":{"kind":"number","nativeSrc":"22738:1:101","nodeType":"YulLiteral","src":"22738:1:101","type":"","value":"0"},"variables":[{"name":"ret","nativeSrc":"22731:3:101","nodeType":"YulTypedName","src":"22731:3:101","type":""}]},{"nativeSrc":"22748:30:101","nodeType":"YulVariableDeclaration","src":"22748:30:101","value":{"arguments":[{"name":"value0","nativeSrc":"22771:6:101","nodeType":"YulIdentifier","src":"22771:6:101"}],"functionName":{"name":"sload","nativeSrc":"22765:5:101","nodeType":"YulIdentifier","src":"22765:5:101"},"nativeSrc":"22765:13:101","nodeType":"YulFunctionCall","src":"22765:13:101"},"variables":[{"name":"slotValue","nativeSrc":"22752:9:101","nodeType":"YulTypedName","src":"22752:9:101","type":""}]},{"nativeSrc":"22787:50:101","nodeType":"YulVariableDeclaration","src":"22787:50:101","value":{"arguments":[{"name":"slotValue","nativeSrc":"22827:9:101","nodeType":"YulIdentifier","src":"22827:9:101"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"22801:25:101","nodeType":"YulIdentifier","src":"22801:25:101"},"nativeSrc":"22801:36:101","nodeType":"YulFunctionCall","src":"22801:36:101"},"variables":[{"name":"length","nativeSrc":"22791:6:101","nodeType":"YulTypedName","src":"22791:6:101","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22857:9:101","nodeType":"YulIdentifier","src":"22857:9:101"},{"kind":"number","nativeSrc":"22868:2:101","nodeType":"YulLiteral","src":"22868:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22853:3:101","nodeType":"YulIdentifier","src":"22853:3:101"},"nativeSrc":"22853:18:101","nodeType":"YulFunctionCall","src":"22853:18:101"},{"name":"length","nativeSrc":"22873:6:101","nodeType":"YulIdentifier","src":"22873:6:101"}],"functionName":{"name":"mstore","nativeSrc":"22846:6:101","nodeType":"YulIdentifier","src":"22846:6:101"},"nativeSrc":"22846:34:101","nodeType":"YulFunctionCall","src":"22846:34:101"},"nativeSrc":"22846:34:101","nodeType":"YulExpressionStatement","src":"22846:34:101"},{"cases":[{"body":{"nativeSrc":"22929:151:101","nodeType":"YulBlock","src":"22929:151:101","statements":[{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22954:9:101","nodeType":"YulIdentifier","src":"22954:9:101"},{"kind":"number","nativeSrc":"22965:2:101","nodeType":"YulLiteral","src":"22965:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"22950:3:101","nodeType":"YulIdentifier","src":"22950:3:101"},"nativeSrc":"22950:18:101","nodeType":"YulFunctionCall","src":"22950:18:101"},{"arguments":[{"name":"slotValue","nativeSrc":"22974:9:101","nodeType":"YulIdentifier","src":"22974:9:101"},{"arguments":[{"kind":"number","nativeSrc":"22989:3:101","nodeType":"YulLiteral","src":"22989:3:101","type":"","value":"255"}],"functionName":{"name":"not","nativeSrc":"22985:3:101","nodeType":"YulIdentifier","src":"22985:3:101"},"nativeSrc":"22985:8:101","nodeType":"YulFunctionCall","src":"22985:8:101"}],"functionName":{"name":"and","nativeSrc":"22970:3:101","nodeType":"YulIdentifier","src":"22970:3:101"},"nativeSrc":"22970:24:101","nodeType":"YulFunctionCall","src":"22970:24:101"}],"functionName":{"name":"mstore","nativeSrc":"22943:6:101","nodeType":"YulIdentifier","src":"22943:6:101"},"nativeSrc":"22943:52:101","nodeType":"YulFunctionCall","src":"22943:52:101"},"nativeSrc":"22943:52:101","nodeType":"YulExpressionStatement","src":"22943:52:101"},{"nativeSrc":"23008:62:101","nodeType":"YulAssignment","src":"23008:62:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23023:9:101","nodeType":"YulIdentifier","src":"23023:9:101"},{"arguments":[{"kind":"number","nativeSrc":"23038:1:101","nodeType":"YulLiteral","src":"23038:1:101","type":"","value":"5"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"23055:6:101","nodeType":"YulIdentifier","src":"23055:6:101"}],"functionName":{"name":"iszero","nativeSrc":"23048:6:101","nodeType":"YulIdentifier","src":"23048:6:101"},"nativeSrc":"23048:14:101","nodeType":"YulFunctionCall","src":"23048:14:101"}],"functionName":{"name":"iszero","nativeSrc":"23041:6:101","nodeType":"YulIdentifier","src":"23041:6:101"},"nativeSrc":"23041:22:101","nodeType":"YulFunctionCall","src":"23041:22:101"}],"functionName":{"name":"shl","nativeSrc":"23034:3:101","nodeType":"YulIdentifier","src":"23034:3:101"},"nativeSrc":"23034:30:101","nodeType":"YulFunctionCall","src":"23034:30:101"}],"functionName":{"name":"add","nativeSrc":"23019:3:101","nodeType":"YulIdentifier","src":"23019:3:101"},"nativeSrc":"23019:46:101","nodeType":"YulFunctionCall","src":"23019:46:101"},{"kind":"number","nativeSrc":"23067:2:101","nodeType":"YulLiteral","src":"23067:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"23015:3:101","nodeType":"YulIdentifier","src":"23015:3:101"},"nativeSrc":"23015:55:101","nodeType":"YulFunctionCall","src":"23015:55:101"},"variableNames":[{"name":"ret","nativeSrc":"23008:3:101","nodeType":"YulIdentifier","src":"23008:3:101"}]}]},"nativeSrc":"22922:158:101","nodeType":"YulCase","src":"22922:158:101","value":{"kind":"number","nativeSrc":"22927:1:101","nodeType":"YulLiteral","src":"22927:1:101","type":"","value":"0"}},{"body":{"nativeSrc":"23096:350:101","nodeType":"YulBlock","src":"23096:350:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23117:1:101","nodeType":"YulLiteral","src":"23117:1:101","type":"","value":"0"},{"name":"value0","nativeSrc":"23120:6:101","nodeType":"YulIdentifier","src":"23120:6:101"}],"functionName":{"name":"mstore","nativeSrc":"23110:6:101","nodeType":"YulIdentifier","src":"23110:6:101"},"nativeSrc":"23110:17:101","nodeType":"YulFunctionCall","src":"23110:17:101"},"nativeSrc":"23110:17:101","nodeType":"YulExpressionStatement","src":"23110:17:101"},{"nativeSrc":"23140:33:101","nodeType":"YulVariableDeclaration","src":"23140:33:101","value":{"arguments":[{"kind":"number","nativeSrc":"23165:1:101","nodeType":"YulLiteral","src":"23165:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"23168:4:101","nodeType":"YulLiteral","src":"23168:4:101","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"23155:9:101","nodeType":"YulIdentifier","src":"23155:9:101"},"nativeSrc":"23155:18:101","nodeType":"YulFunctionCall","src":"23155:18:101"},"variables":[{"name":"dataPos","nativeSrc":"23144:7:101","nodeType":"YulTypedName","src":"23144:7:101","type":""}]},{"nativeSrc":"23186:10:101","nodeType":"YulVariableDeclaration","src":"23186:10:101","value":{"kind":"number","nativeSrc":"23195:1:101","nodeType":"YulLiteral","src":"23195:1:101","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"23190:1:101","nodeType":"YulTypedName","src":"23190:1:101","type":""}]},{"body":{"nativeSrc":"23265:125:101","nodeType":"YulBlock","src":"23265:125:101","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23298:9:101","nodeType":"YulIdentifier","src":"23298:9:101"},{"name":"i","nativeSrc":"23309:1:101","nodeType":"YulIdentifier","src":"23309:1:101"}],"functionName":{"name":"add","nativeSrc":"23294:3:101","nodeType":"YulIdentifier","src":"23294:3:101"},"nativeSrc":"23294:17:101","nodeType":"YulFunctionCall","src":"23294:17:101"},{"kind":"number","nativeSrc":"23313:2:101","nodeType":"YulLiteral","src":"23313:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"23290:3:101","nodeType":"YulIdentifier","src":"23290:3:101"},"nativeSrc":"23290:26:101","nodeType":"YulFunctionCall","src":"23290:26:101"},{"arguments":[{"name":"dataPos","nativeSrc":"23324:7:101","nodeType":"YulIdentifier","src":"23324:7:101"}],"functionName":{"name":"sload","nativeSrc":"23318:5:101","nodeType":"YulIdentifier","src":"23318:5:101"},"nativeSrc":"23318:14:101","nodeType":"YulFunctionCall","src":"23318:14:101"}],"functionName":{"name":"mstore","nativeSrc":"23283:6:101","nodeType":"YulIdentifier","src":"23283:6:101"},"nativeSrc":"23283:50:101","nodeType":"YulFunctionCall","src":"23283:50:101"},"nativeSrc":"23283:50:101","nodeType":"YulExpressionStatement","src":"23283:50:101"},{"nativeSrc":"23350:26:101","nodeType":"YulAssignment","src":"23350:26:101","value":{"arguments":[{"name":"dataPos","nativeSrc":"23365:7:101","nodeType":"YulIdentifier","src":"23365:7:101"},{"kind":"number","nativeSrc":"23374:1:101","nodeType":"YulLiteral","src":"23374:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"23361:3:101","nodeType":"YulIdentifier","src":"23361:3:101"},"nativeSrc":"23361:15:101","nodeType":"YulFunctionCall","src":"23361:15:101"},"variableNames":[{"name":"dataPos","nativeSrc":"23350:7:101","nodeType":"YulIdentifier","src":"23350:7:101"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"23220:1:101","nodeType":"YulIdentifier","src":"23220:1:101"},{"name":"length","nativeSrc":"23223:6:101","nodeType":"YulIdentifier","src":"23223:6:101"}],"functionName":{"name":"lt","nativeSrc":"23217:2:101","nodeType":"YulIdentifier","src":"23217:2:101"},"nativeSrc":"23217:13:101","nodeType":"YulFunctionCall","src":"23217:13:101"},"nativeSrc":"23209:181:101","nodeType":"YulForLoop","post":{"nativeSrc":"23231:21:101","nodeType":"YulBlock","src":"23231:21:101","statements":[{"nativeSrc":"23233:17:101","nodeType":"YulAssignment","src":"23233:17:101","value":{"arguments":[{"name":"i","nativeSrc":"23242:1:101","nodeType":"YulIdentifier","src":"23242:1:101"},{"kind":"number","nativeSrc":"23245:4:101","nodeType":"YulLiteral","src":"23245:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"23238:3:101","nodeType":"YulIdentifier","src":"23238:3:101"},"nativeSrc":"23238:12:101","nodeType":"YulFunctionCall","src":"23238:12:101"},"variableNames":[{"name":"i","nativeSrc":"23233:1:101","nodeType":"YulIdentifier","src":"23233:1:101"}]}]},"pre":{"nativeSrc":"23213:3:101","nodeType":"YulBlock","src":"23213:3:101","statements":[]},"src":"23209:181:101"},{"nativeSrc":"23403:33:101","nodeType":"YulAssignment","src":"23403:33:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23418:9:101","nodeType":"YulIdentifier","src":"23418:9:101"},{"name":"i","nativeSrc":"23429:1:101","nodeType":"YulIdentifier","src":"23429:1:101"}],"functionName":{"name":"add","nativeSrc":"23414:3:101","nodeType":"YulIdentifier","src":"23414:3:101"},"nativeSrc":"23414:17:101","nodeType":"YulFunctionCall","src":"23414:17:101"},{"kind":"number","nativeSrc":"23433:2:101","nodeType":"YulLiteral","src":"23433:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"23410:3:101","nodeType":"YulIdentifier","src":"23410:3:101"},"nativeSrc":"23410:26:101","nodeType":"YulFunctionCall","src":"23410:26:101"},"variableNames":[{"name":"ret","nativeSrc":"23403:3:101","nodeType":"YulIdentifier","src":"23403:3:101"}]}]},"nativeSrc":"23089:357:101","nodeType":"YulCase","src":"23089:357:101","value":{"kind":"number","nativeSrc":"23094:1:101","nodeType":"YulLiteral","src":"23094:1:101","type":"","value":"1"}}],"expression":{"arguments":[{"name":"slotValue","nativeSrc":"22900:9:101","nodeType":"YulIdentifier","src":"22900:9:101"},{"kind":"number","nativeSrc":"22911:1:101","nodeType":"YulLiteral","src":"22911:1:101","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"22896:3:101","nodeType":"YulIdentifier","src":"22896:3:101"},"nativeSrc":"22896:17:101","nodeType":"YulFunctionCall","src":"22896:17:101"},"nativeSrc":"22889:557:101","nodeType":"YulSwitch","src":"22889:557:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23466:9:101","nodeType":"YulIdentifier","src":"23466:9:101"},{"kind":"number","nativeSrc":"23477:4:101","nodeType":"YulLiteral","src":"23477:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"23462:3:101","nodeType":"YulIdentifier","src":"23462:3:101"},"nativeSrc":"23462:20:101","nodeType":"YulFunctionCall","src":"23462:20:101"},{"arguments":[{"name":"ret","nativeSrc":"23488:3:101","nodeType":"YulIdentifier","src":"23488:3:101"},{"name":"headStart","nativeSrc":"23493:9:101","nodeType":"YulIdentifier","src":"23493:9:101"}],"functionName":{"name":"sub","nativeSrc":"23484:3:101","nodeType":"YulIdentifier","src":"23484:3:101"},"nativeSrc":"23484:19:101","nodeType":"YulFunctionCall","src":"23484:19:101"}],"functionName":{"name":"mstore","nativeSrc":"23455:6:101","nodeType":"YulIdentifier","src":"23455:6:101"},"nativeSrc":"23455:49:101","nodeType":"YulFunctionCall","src":"23455:49:101"},"nativeSrc":"23455:49:101","nodeType":"YulExpressionStatement","src":"23455:49:101"},{"nativeSrc":"23513:55:101","nodeType":"YulAssignment","src":"23513:55:101","value":{"arguments":[{"name":"value1","nativeSrc":"23548:6:101","nodeType":"YulIdentifier","src":"23548:6:101"},{"name":"value2","nativeSrc":"23556:6:101","nodeType":"YulIdentifier","src":"23556:6:101"},{"name":"ret","nativeSrc":"23564:3:101","nodeType":"YulIdentifier","src":"23564:3:101"}],"functionName":{"name":"abi_encode_string_calldata","nativeSrc":"23521:26:101","nodeType":"YulIdentifier","src":"23521:26:101"},"nativeSrc":"23521:47:101","nodeType":"YulFunctionCall","src":"23521:47:101"},"variableNames":[{"name":"tail","nativeSrc":"23513:4:101","nodeType":"YulIdentifier","src":"23513:4:101"}]}]},"name":"abi_encode_tuple_t_string_storage_t_string_calldata_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed","nativeSrc":"22511:1063:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22640:9:101","nodeType":"YulTypedName","src":"22640:9:101","type":""},{"name":"value2","nativeSrc":"22651:6:101","nodeType":"YulTypedName","src":"22651:6:101","type":""},{"name":"value1","nativeSrc":"22659:6:101","nodeType":"YulTypedName","src":"22659:6:101","type":""},{"name":"value0","nativeSrc":"22667:6:101","nodeType":"YulTypedName","src":"22667:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22678:4:101","nodeType":"YulTypedName","src":"22678:4:101","type":""}],"src":"22511:1063:101"},{"body":{"nativeSrc":"23660:437:101","nodeType":"YulBlock","src":"23660:437:101","statements":[{"body":{"nativeSrc":"23693:398:101","nodeType":"YulBlock","src":"23693:398:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23714:1:101","nodeType":"YulLiteral","src":"23714:1:101","type":"","value":"0"},{"name":"array","nativeSrc":"23717:5:101","nodeType":"YulIdentifier","src":"23717:5:101"}],"functionName":{"name":"mstore","nativeSrc":"23707:6:101","nodeType":"YulIdentifier","src":"23707:6:101"},"nativeSrc":"23707:16:101","nodeType":"YulFunctionCall","src":"23707:16:101"},"nativeSrc":"23707:16:101","nodeType":"YulExpressionStatement","src":"23707:16:101"},{"nativeSrc":"23736:30:101","nodeType":"YulVariableDeclaration","src":"23736:30:101","value":{"arguments":[{"kind":"number","nativeSrc":"23758:1:101","nodeType":"YulLiteral","src":"23758:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"23761:4:101","nodeType":"YulLiteral","src":"23761:4:101","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"23748:9:101","nodeType":"YulIdentifier","src":"23748:9:101"},"nativeSrc":"23748:18:101","nodeType":"YulFunctionCall","src":"23748:18:101"},"variables":[{"name":"data","nativeSrc":"23740:4:101","nodeType":"YulTypedName","src":"23740:4:101","type":""}]},{"nativeSrc":"23779:57:101","nodeType":"YulVariableDeclaration","src":"23779:57:101","value":{"arguments":[{"name":"data","nativeSrc":"23802:4:101","nodeType":"YulIdentifier","src":"23802:4:101"},{"arguments":[{"kind":"number","nativeSrc":"23812:1:101","nodeType":"YulLiteral","src":"23812:1:101","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"23819:10:101","nodeType":"YulIdentifier","src":"23819:10:101"},{"kind":"number","nativeSrc":"23831:2:101","nodeType":"YulLiteral","src":"23831:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"23815:3:101","nodeType":"YulIdentifier","src":"23815:3:101"},"nativeSrc":"23815:19:101","nodeType":"YulFunctionCall","src":"23815:19:101"}],"functionName":{"name":"shr","nativeSrc":"23808:3:101","nodeType":"YulIdentifier","src":"23808:3:101"},"nativeSrc":"23808:27:101","nodeType":"YulFunctionCall","src":"23808:27:101"}],"functionName":{"name":"add","nativeSrc":"23798:3:101","nodeType":"YulIdentifier","src":"23798:3:101"},"nativeSrc":"23798:38:101","nodeType":"YulFunctionCall","src":"23798:38:101"},"variables":[{"name":"deleteStart","nativeSrc":"23783:11:101","nodeType":"YulTypedName","src":"23783:11:101","type":""}]},{"body":{"nativeSrc":"23873:23:101","nodeType":"YulBlock","src":"23873:23:101","statements":[{"nativeSrc":"23875:19:101","nodeType":"YulAssignment","src":"23875:19:101","value":{"name":"data","nativeSrc":"23890:4:101","nodeType":"YulIdentifier","src":"23890:4:101"},"variableNames":[{"name":"deleteStart","nativeSrc":"23875:11:101","nodeType":"YulIdentifier","src":"23875:11:101"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"23855:10:101","nodeType":"YulIdentifier","src":"23855:10:101"},{"kind":"number","nativeSrc":"23867:4:101","nodeType":"YulLiteral","src":"23867:4:101","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"23852:2:101","nodeType":"YulIdentifier","src":"23852:2:101"},"nativeSrc":"23852:20:101","nodeType":"YulFunctionCall","src":"23852:20:101"},"nativeSrc":"23849:47:101","nodeType":"YulIf","src":"23849:47:101"},{"nativeSrc":"23909:41:101","nodeType":"YulVariableDeclaration","src":"23909:41:101","value":{"arguments":[{"name":"data","nativeSrc":"23923:4:101","nodeType":"YulIdentifier","src":"23923:4:101"},{"arguments":[{"kind":"number","nativeSrc":"23933:1:101","nodeType":"YulLiteral","src":"23933:1:101","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"23940:3:101","nodeType":"YulIdentifier","src":"23940:3:101"},{"kind":"number","nativeSrc":"23945:2:101","nodeType":"YulLiteral","src":"23945:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"23936:3:101","nodeType":"YulIdentifier","src":"23936:3:101"},"nativeSrc":"23936:12:101","nodeType":"YulFunctionCall","src":"23936:12:101"}],"functionName":{"name":"shr","nativeSrc":"23929:3:101","nodeType":"YulIdentifier","src":"23929:3:101"},"nativeSrc":"23929:20:101","nodeType":"YulFunctionCall","src":"23929:20:101"}],"functionName":{"name":"add","nativeSrc":"23919:3:101","nodeType":"YulIdentifier","src":"23919:3:101"},"nativeSrc":"23919:31:101","nodeType":"YulFunctionCall","src":"23919:31:101"},"variables":[{"name":"_1","nativeSrc":"23913:2:101","nodeType":"YulTypedName","src":"23913:2:101","type":""}]},{"nativeSrc":"23963:24:101","nodeType":"YulVariableDeclaration","src":"23963:24:101","value":{"name":"deleteStart","nativeSrc":"23976:11:101","nodeType":"YulIdentifier","src":"23976:11:101"},"variables":[{"name":"start","nativeSrc":"23967:5:101","nodeType":"YulTypedName","src":"23967:5:101","type":""}]},{"body":{"nativeSrc":"24061:20:101","nodeType":"YulBlock","src":"24061:20:101","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"24070:5:101","nodeType":"YulIdentifier","src":"24070:5:101"},{"kind":"number","nativeSrc":"24077:1:101","nodeType":"YulLiteral","src":"24077:1:101","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"24063:6:101","nodeType":"YulIdentifier","src":"24063:6:101"},"nativeSrc":"24063:16:101","nodeType":"YulFunctionCall","src":"24063:16:101"},"nativeSrc":"24063:16:101","nodeType":"YulExpressionStatement","src":"24063:16:101"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"24011:5:101","nodeType":"YulIdentifier","src":"24011:5:101"},{"name":"_1","nativeSrc":"24018:2:101","nodeType":"YulIdentifier","src":"24018:2:101"}],"functionName":{"name":"lt","nativeSrc":"24008:2:101","nodeType":"YulIdentifier","src":"24008:2:101"},"nativeSrc":"24008:13:101","nodeType":"YulFunctionCall","src":"24008:13:101"},"nativeSrc":"24000:81:101","nodeType":"YulForLoop","post":{"nativeSrc":"24022:26:101","nodeType":"YulBlock","src":"24022:26:101","statements":[{"nativeSrc":"24024:22:101","nodeType":"YulAssignment","src":"24024:22:101","value":{"arguments":[{"name":"start","nativeSrc":"24037:5:101","nodeType":"YulIdentifier","src":"24037:5:101"},{"kind":"number","nativeSrc":"24044:1:101","nodeType":"YulLiteral","src":"24044:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"24033:3:101","nodeType":"YulIdentifier","src":"24033:3:101"},"nativeSrc":"24033:13:101","nodeType":"YulFunctionCall","src":"24033:13:101"},"variableNames":[{"name":"start","nativeSrc":"24024:5:101","nodeType":"YulIdentifier","src":"24024:5:101"}]}]},"pre":{"nativeSrc":"24004:3:101","nodeType":"YulBlock","src":"24004:3:101","statements":[]},"src":"24000:81:101"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"23676:3:101","nodeType":"YulIdentifier","src":"23676:3:101"},{"kind":"number","nativeSrc":"23681:2:101","nodeType":"YulLiteral","src":"23681:2:101","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"23673:2:101","nodeType":"YulIdentifier","src":"23673:2:101"},"nativeSrc":"23673:11:101","nodeType":"YulFunctionCall","src":"23673:11:101"},"nativeSrc":"23670:421:101","nodeType":"YulIf","src":"23670:421:101"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"23579:518:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"23632:5:101","nodeType":"YulTypedName","src":"23632:5:101","type":""},{"name":"len","nativeSrc":"23639:3:101","nodeType":"YulTypedName","src":"23639:3:101","type":""},{"name":"startIndex","nativeSrc":"23644:10:101","nodeType":"YulTypedName","src":"23644:10:101","type":""}],"src":"23579:518:101"},{"body":{"nativeSrc":"24187:81:101","nodeType":"YulBlock","src":"24187:81:101","statements":[{"nativeSrc":"24197:65:101","nodeType":"YulAssignment","src":"24197:65:101","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"24212:4:101","nodeType":"YulIdentifier","src":"24212:4:101"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"24230:1:101","nodeType":"YulLiteral","src":"24230:1:101","type":"","value":"3"},{"name":"len","nativeSrc":"24233:3:101","nodeType":"YulIdentifier","src":"24233:3:101"}],"functionName":{"name":"shl","nativeSrc":"24226:3:101","nodeType":"YulIdentifier","src":"24226:3:101"},"nativeSrc":"24226:11:101","nodeType":"YulFunctionCall","src":"24226:11:101"},{"arguments":[{"kind":"number","nativeSrc":"24243:1:101","nodeType":"YulLiteral","src":"24243:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"24239:3:101","nodeType":"YulIdentifier","src":"24239:3:101"},"nativeSrc":"24239:6:101","nodeType":"YulFunctionCall","src":"24239:6:101"}],"functionName":{"name":"shr","nativeSrc":"24222:3:101","nodeType":"YulIdentifier","src":"24222:3:101"},"nativeSrc":"24222:24:101","nodeType":"YulFunctionCall","src":"24222:24:101"}],"functionName":{"name":"not","nativeSrc":"24218:3:101","nodeType":"YulIdentifier","src":"24218:3:101"},"nativeSrc":"24218:29:101","nodeType":"YulFunctionCall","src":"24218:29:101"}],"functionName":{"name":"and","nativeSrc":"24208:3:101","nodeType":"YulIdentifier","src":"24208:3:101"},"nativeSrc":"24208:40:101","nodeType":"YulFunctionCall","src":"24208:40:101"},{"arguments":[{"kind":"number","nativeSrc":"24254:1:101","nodeType":"YulLiteral","src":"24254:1:101","type":"","value":"1"},{"name":"len","nativeSrc":"24257:3:101","nodeType":"YulIdentifier","src":"24257:3:101"}],"functionName":{"name":"shl","nativeSrc":"24250:3:101","nodeType":"YulIdentifier","src":"24250:3:101"},"nativeSrc":"24250:11:101","nodeType":"YulFunctionCall","src":"24250:11:101"}],"functionName":{"name":"or","nativeSrc":"24205:2:101","nodeType":"YulIdentifier","src":"24205:2:101"},"nativeSrc":"24205:57:101","nodeType":"YulFunctionCall","src":"24205:57:101"},"variableNames":[{"name":"used","nativeSrc":"24197:4:101","nodeType":"YulIdentifier","src":"24197:4:101"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"24102:166:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"24164:4:101","nodeType":"YulTypedName","src":"24164:4:101","type":""},{"name":"len","nativeSrc":"24170:3:101","nodeType":"YulTypedName","src":"24170:3:101","type":""}],"returnVariables":[{"name":"used","nativeSrc":"24178:4:101","nodeType":"YulTypedName","src":"24178:4:101","type":""}],"src":"24102:166:101"},{"body":{"nativeSrc":"24376:1095:101","nodeType":"YulBlock","src":"24376:1095:101","statements":[{"body":{"nativeSrc":"24417:22:101","nodeType":"YulBlock","src":"24417:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"24419:16:101","nodeType":"YulIdentifier","src":"24419:16:101"},"nativeSrc":"24419:18:101","nodeType":"YulFunctionCall","src":"24419:18:101"},"nativeSrc":"24419:18:101","nodeType":"YulExpressionStatement","src":"24419:18:101"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"24392:3:101","nodeType":"YulIdentifier","src":"24392:3:101"},{"kind":"number","nativeSrc":"24397:18:101","nodeType":"YulLiteral","src":"24397:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"24389:2:101","nodeType":"YulIdentifier","src":"24389:2:101"},"nativeSrc":"24389:27:101","nodeType":"YulFunctionCall","src":"24389:27:101"},"nativeSrc":"24386:53:101","nodeType":"YulIf","src":"24386:53:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"24492:4:101","nodeType":"YulIdentifier","src":"24492:4:101"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"24530:4:101","nodeType":"YulIdentifier","src":"24530:4:101"}],"functionName":{"name":"sload","nativeSrc":"24524:5:101","nodeType":"YulIdentifier","src":"24524:5:101"},"nativeSrc":"24524:11:101","nodeType":"YulFunctionCall","src":"24524:11:101"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"24498:25:101","nodeType":"YulIdentifier","src":"24498:25:101"},"nativeSrc":"24498:38:101","nodeType":"YulFunctionCall","src":"24498:38:101"},{"name":"len","nativeSrc":"24538:3:101","nodeType":"YulIdentifier","src":"24538:3:101"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"24448:43:101","nodeType":"YulIdentifier","src":"24448:43:101"},"nativeSrc":"24448:94:101","nodeType":"YulFunctionCall","src":"24448:94:101"},"nativeSrc":"24448:94:101","nodeType":"YulExpressionStatement","src":"24448:94:101"},{"nativeSrc":"24551:18:101","nodeType":"YulVariableDeclaration","src":"24551:18:101","value":{"kind":"number","nativeSrc":"24568:1:101","nodeType":"YulLiteral","src":"24568:1:101","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"24555:9:101","nodeType":"YulTypedName","src":"24555:9:101","type":""}]},{"cases":[{"body":{"nativeSrc":"24612:601:101","nodeType":"YulBlock","src":"24612:601:101","statements":[{"nativeSrc":"24626:32:101","nodeType":"YulVariableDeclaration","src":"24626:32:101","value":{"arguments":[{"name":"len","nativeSrc":"24645:3:101","nodeType":"YulIdentifier","src":"24645:3:101"},{"arguments":[{"kind":"number","nativeSrc":"24654:2:101","nodeType":"YulLiteral","src":"24654:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"24650:3:101","nodeType":"YulIdentifier","src":"24650:3:101"},"nativeSrc":"24650:7:101","nodeType":"YulFunctionCall","src":"24650:7:101"}],"functionName":{"name":"and","nativeSrc":"24641:3:101","nodeType":"YulIdentifier","src":"24641:3:101"},"nativeSrc":"24641:17:101","nodeType":"YulFunctionCall","src":"24641:17:101"},"variables":[{"name":"loopEnd","nativeSrc":"24630:7:101","nodeType":"YulTypedName","src":"24630:7:101","type":""}]},{"nativeSrc":"24671:49:101","nodeType":"YulVariableDeclaration","src":"24671:49:101","value":{"arguments":[{"name":"slot","nativeSrc":"24715:4:101","nodeType":"YulIdentifier","src":"24715:4:101"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"24685:29:101","nodeType":"YulIdentifier","src":"24685:29:101"},"nativeSrc":"24685:35:101","nodeType":"YulFunctionCall","src":"24685:35:101"},"variables":[{"name":"dstPtr","nativeSrc":"24675:6:101","nodeType":"YulTypedName","src":"24675:6:101","type":""}]},{"nativeSrc":"24733:10:101","nodeType":"YulVariableDeclaration","src":"24733:10:101","value":{"kind":"number","nativeSrc":"24742:1:101","nodeType":"YulLiteral","src":"24742:1:101","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"24737:1:101","nodeType":"YulTypedName","src":"24737:1:101","type":""}]},{"body":{"nativeSrc":"24813:172:101","nodeType":"YulBlock","src":"24813:172:101","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"24838:6:101","nodeType":"YulIdentifier","src":"24838:6:101"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"24863:3:101","nodeType":"YulIdentifier","src":"24863:3:101"},{"name":"srcOffset","nativeSrc":"24868:9:101","nodeType":"YulIdentifier","src":"24868:9:101"}],"functionName":{"name":"add","nativeSrc":"24859:3:101","nodeType":"YulIdentifier","src":"24859:3:101"},"nativeSrc":"24859:19:101","nodeType":"YulFunctionCall","src":"24859:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"24846:12:101","nodeType":"YulIdentifier","src":"24846:12:101"},"nativeSrc":"24846:33:101","nodeType":"YulFunctionCall","src":"24846:33:101"}],"functionName":{"name":"sstore","nativeSrc":"24831:6:101","nodeType":"YulIdentifier","src":"24831:6:101"},"nativeSrc":"24831:49:101","nodeType":"YulFunctionCall","src":"24831:49:101"},"nativeSrc":"24831:49:101","nodeType":"YulExpressionStatement","src":"24831:49:101"},{"nativeSrc":"24897:24:101","nodeType":"YulAssignment","src":"24897:24:101","value":{"arguments":[{"name":"dstPtr","nativeSrc":"24911:6:101","nodeType":"YulIdentifier","src":"24911:6:101"},{"kind":"number","nativeSrc":"24919:1:101","nodeType":"YulLiteral","src":"24919:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"24907:3:101","nodeType":"YulIdentifier","src":"24907:3:101"},"nativeSrc":"24907:14:101","nodeType":"YulFunctionCall","src":"24907:14:101"},"variableNames":[{"name":"dstPtr","nativeSrc":"24897:6:101","nodeType":"YulIdentifier","src":"24897:6:101"}]},{"nativeSrc":"24938:33:101","nodeType":"YulAssignment","src":"24938:33:101","value":{"arguments":[{"name":"srcOffset","nativeSrc":"24955:9:101","nodeType":"YulIdentifier","src":"24955:9:101"},{"kind":"number","nativeSrc":"24966:4:101","nodeType":"YulLiteral","src":"24966:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"24951:3:101","nodeType":"YulIdentifier","src":"24951:3:101"},"nativeSrc":"24951:20:101","nodeType":"YulFunctionCall","src":"24951:20:101"},"variableNames":[{"name":"srcOffset","nativeSrc":"24938:9:101","nodeType":"YulIdentifier","src":"24938:9:101"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"24767:1:101","nodeType":"YulIdentifier","src":"24767:1:101"},{"name":"loopEnd","nativeSrc":"24770:7:101","nodeType":"YulIdentifier","src":"24770:7:101"}],"functionName":{"name":"lt","nativeSrc":"24764:2:101","nodeType":"YulIdentifier","src":"24764:2:101"},"nativeSrc":"24764:14:101","nodeType":"YulFunctionCall","src":"24764:14:101"},"nativeSrc":"24756:229:101","nodeType":"YulForLoop","post":{"nativeSrc":"24779:21:101","nodeType":"YulBlock","src":"24779:21:101","statements":[{"nativeSrc":"24781:17:101","nodeType":"YulAssignment","src":"24781:17:101","value":{"arguments":[{"name":"i","nativeSrc":"24790:1:101","nodeType":"YulIdentifier","src":"24790:1:101"},{"kind":"number","nativeSrc":"24793:4:101","nodeType":"YulLiteral","src":"24793:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"24786:3:101","nodeType":"YulIdentifier","src":"24786:3:101"},"nativeSrc":"24786:12:101","nodeType":"YulFunctionCall","src":"24786:12:101"},"variableNames":[{"name":"i","nativeSrc":"24781:1:101","nodeType":"YulIdentifier","src":"24781:1:101"}]}]},"pre":{"nativeSrc":"24760:3:101","nodeType":"YulBlock","src":"24760:3:101","statements":[]},"src":"24756:229:101"},{"body":{"nativeSrc":"25030:127:101","nodeType":"YulBlock","src":"25030:127:101","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"25055:6:101","nodeType":"YulIdentifier","src":"25055:6:101"},{"arguments":[{"arguments":[{"arguments":[{"name":"src","nativeSrc":"25084:3:101","nodeType":"YulIdentifier","src":"25084:3:101"},{"name":"srcOffset","nativeSrc":"25089:9:101","nodeType":"YulIdentifier","src":"25089:9:101"}],"functionName":{"name":"add","nativeSrc":"25080:3:101","nodeType":"YulIdentifier","src":"25080:3:101"},"nativeSrc":"25080:19:101","nodeType":"YulFunctionCall","src":"25080:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"25067:12:101","nodeType":"YulIdentifier","src":"25067:12:101"},"nativeSrc":"25067:33:101","nodeType":"YulFunctionCall","src":"25067:33:101"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25118:1:101","nodeType":"YulLiteral","src":"25118:1:101","type":"","value":"3"},{"name":"len","nativeSrc":"25121:3:101","nodeType":"YulIdentifier","src":"25121:3:101"}],"functionName":{"name":"shl","nativeSrc":"25114:3:101","nodeType":"YulIdentifier","src":"25114:3:101"},"nativeSrc":"25114:11:101","nodeType":"YulFunctionCall","src":"25114:11:101"},{"kind":"number","nativeSrc":"25127:3:101","nodeType":"YulLiteral","src":"25127:3:101","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"25110:3:101","nodeType":"YulIdentifier","src":"25110:3:101"},"nativeSrc":"25110:21:101","nodeType":"YulFunctionCall","src":"25110:21:101"},{"arguments":[{"kind":"number","nativeSrc":"25137:1:101","nodeType":"YulLiteral","src":"25137:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"25133:3:101","nodeType":"YulIdentifier","src":"25133:3:101"},"nativeSrc":"25133:6:101","nodeType":"YulFunctionCall","src":"25133:6:101"}],"functionName":{"name":"shr","nativeSrc":"25106:3:101","nodeType":"YulIdentifier","src":"25106:3:101"},"nativeSrc":"25106:34:101","nodeType":"YulFunctionCall","src":"25106:34:101"}],"functionName":{"name":"not","nativeSrc":"25102:3:101","nodeType":"YulIdentifier","src":"25102:3:101"},"nativeSrc":"25102:39:101","nodeType":"YulFunctionCall","src":"25102:39:101"}],"functionName":{"name":"and","nativeSrc":"25063:3:101","nodeType":"YulIdentifier","src":"25063:3:101"},"nativeSrc":"25063:79:101","nodeType":"YulFunctionCall","src":"25063:79:101"}],"functionName":{"name":"sstore","nativeSrc":"25048:6:101","nodeType":"YulIdentifier","src":"25048:6:101"},"nativeSrc":"25048:95:101","nodeType":"YulFunctionCall","src":"25048:95:101"},"nativeSrc":"25048:95:101","nodeType":"YulExpressionStatement","src":"25048:95:101"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"25004:7:101","nodeType":"YulIdentifier","src":"25004:7:101"},{"name":"len","nativeSrc":"25013:3:101","nodeType":"YulIdentifier","src":"25013:3:101"}],"functionName":{"name":"lt","nativeSrc":"25001:2:101","nodeType":"YulIdentifier","src":"25001:2:101"},"nativeSrc":"25001:16:101","nodeType":"YulFunctionCall","src":"25001:16:101"},"nativeSrc":"24998:159:101","nodeType":"YulIf","src":"24998:159:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"25177:4:101","nodeType":"YulIdentifier","src":"25177:4:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25191:1:101","nodeType":"YulLiteral","src":"25191:1:101","type":"","value":"1"},{"name":"len","nativeSrc":"25194:3:101","nodeType":"YulIdentifier","src":"25194:3:101"}],"functionName":{"name":"shl","nativeSrc":"25187:3:101","nodeType":"YulIdentifier","src":"25187:3:101"},"nativeSrc":"25187:11:101","nodeType":"YulFunctionCall","src":"25187:11:101"},{"kind":"number","nativeSrc":"25200:1:101","nodeType":"YulLiteral","src":"25200:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"25183:3:101","nodeType":"YulIdentifier","src":"25183:3:101"},"nativeSrc":"25183:19:101","nodeType":"YulFunctionCall","src":"25183:19:101"}],"functionName":{"name":"sstore","nativeSrc":"25170:6:101","nodeType":"YulIdentifier","src":"25170:6:101"},"nativeSrc":"25170:33:101","nodeType":"YulFunctionCall","src":"25170:33:101"},"nativeSrc":"25170:33:101","nodeType":"YulExpressionStatement","src":"25170:33:101"}]},"nativeSrc":"24605:608:101","nodeType":"YulCase","src":"24605:608:101","value":{"kind":"number","nativeSrc":"24610:1:101","nodeType":"YulLiteral","src":"24610:1:101","type":"","value":"1"}},{"body":{"nativeSrc":"25230:235:101","nodeType":"YulBlock","src":"25230:235:101","statements":[{"nativeSrc":"25244:14:101","nodeType":"YulVariableDeclaration","src":"25244:14:101","value":{"kind":"number","nativeSrc":"25257:1:101","nodeType":"YulLiteral","src":"25257:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"25248:5:101","nodeType":"YulTypedName","src":"25248:5:101","type":""}]},{"body":{"nativeSrc":"25290:74:101","nodeType":"YulBlock","src":"25290:74:101","statements":[{"nativeSrc":"25308:42:101","nodeType":"YulAssignment","src":"25308:42:101","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"25334:3:101","nodeType":"YulIdentifier","src":"25334:3:101"},{"name":"srcOffset","nativeSrc":"25339:9:101","nodeType":"YulIdentifier","src":"25339:9:101"}],"functionName":{"name":"add","nativeSrc":"25330:3:101","nodeType":"YulIdentifier","src":"25330:3:101"},"nativeSrc":"25330:19:101","nodeType":"YulFunctionCall","src":"25330:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"25317:12:101","nodeType":"YulIdentifier","src":"25317:12:101"},"nativeSrc":"25317:33:101","nodeType":"YulFunctionCall","src":"25317:33:101"},"variableNames":[{"name":"value","nativeSrc":"25308:5:101","nodeType":"YulIdentifier","src":"25308:5:101"}]}]},"condition":{"name":"len","nativeSrc":"25274:3:101","nodeType":"YulIdentifier","src":"25274:3:101"},"nativeSrc":"25271:93:101","nodeType":"YulIf","src":"25271:93:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"25384:4:101","nodeType":"YulIdentifier","src":"25384:4:101"},{"arguments":[{"name":"value","nativeSrc":"25443:5:101","nodeType":"YulIdentifier","src":"25443:5:101"},{"name":"len","nativeSrc":"25450:3:101","nodeType":"YulIdentifier","src":"25450:3:101"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"25390:52:101","nodeType":"YulIdentifier","src":"25390:52:101"},"nativeSrc":"25390:64:101","nodeType":"YulFunctionCall","src":"25390:64:101"}],"functionName":{"name":"sstore","nativeSrc":"25377:6:101","nodeType":"YulIdentifier","src":"25377:6:101"},"nativeSrc":"25377:78:101","nodeType":"YulFunctionCall","src":"25377:78:101"},"nativeSrc":"25377:78:101","nodeType":"YulExpressionStatement","src":"25377:78:101"}]},"nativeSrc":"25222:243:101","nodeType":"YulCase","src":"25222:243:101","value":"default"}],"expression":{"arguments":[{"name":"len","nativeSrc":"24588:3:101","nodeType":"YulIdentifier","src":"24588:3:101"},{"kind":"number","nativeSrc":"24593:2:101","nodeType":"YulLiteral","src":"24593:2:101","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"24585:2:101","nodeType":"YulIdentifier","src":"24585:2:101"},"nativeSrc":"24585:11:101","nodeType":"YulFunctionCall","src":"24585:11:101"},"nativeSrc":"24578:887:101","nodeType":"YulSwitch","src":"24578:887:101"}]},"name":"copy_byte_array_to_storage_from_t_string_calldata_ptr_to_t_string_storage","nativeSrc":"24273:1198:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"24356:4:101","nodeType":"YulTypedName","src":"24356:4:101","type":""},{"name":"src","nativeSrc":"24362:3:101","nodeType":"YulTypedName","src":"24362:3:101","type":""},{"name":"len","nativeSrc":"24367:3:101","nodeType":"YulTypedName","src":"24367:3:101","type":""}],"src":"24273:1198:101"},{"body":{"nativeSrc":"25641:227:101","nodeType":"YulBlock","src":"25641:227:101","statements":[{"nativeSrc":"25651:26:101","nodeType":"YulAssignment","src":"25651:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"25663:9:101","nodeType":"YulIdentifier","src":"25663:9:101"},{"kind":"number","nativeSrc":"25674:2:101","nodeType":"YulLiteral","src":"25674:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25659:3:101","nodeType":"YulIdentifier","src":"25659:3:101"},"nativeSrc":"25659:18:101","nodeType":"YulFunctionCall","src":"25659:18:101"},"variableNames":[{"name":"tail","nativeSrc":"25651:4:101","nodeType":"YulIdentifier","src":"25651:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"25724:6:101","nodeType":"YulIdentifier","src":"25724:6:101"}],"functionName":{"name":"validator_assert_enum_ComponentStatus","nativeSrc":"25686:37:101","nodeType":"YulIdentifier","src":"25686:37:101"},"nativeSrc":"25686:45:101","nodeType":"YulFunctionCall","src":"25686:45:101"},"nativeSrc":"25686:45:101","nodeType":"YulExpressionStatement","src":"25686:45:101"},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25747:9:101","nodeType":"YulIdentifier","src":"25747:9:101"},{"name":"value0","nativeSrc":"25758:6:101","nodeType":"YulIdentifier","src":"25758:6:101"}],"functionName":{"name":"mstore","nativeSrc":"25740:6:101","nodeType":"YulIdentifier","src":"25740:6:101"},"nativeSrc":"25740:25:101","nodeType":"YulFunctionCall","src":"25740:25:101"},"nativeSrc":"25740:25:101","nodeType":"YulExpressionStatement","src":"25740:25:101"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"25812:6:101","nodeType":"YulIdentifier","src":"25812:6:101"}],"functionName":{"name":"validator_assert_enum_ComponentStatus","nativeSrc":"25774:37:101","nodeType":"YulIdentifier","src":"25774:37:101"},"nativeSrc":"25774:45:101","nodeType":"YulFunctionCall","src":"25774:45:101"},"nativeSrc":"25774:45:101","nodeType":"YulExpressionStatement","src":"25774:45:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25839:9:101","nodeType":"YulIdentifier","src":"25839:9:101"},{"kind":"number","nativeSrc":"25850:2:101","nodeType":"YulLiteral","src":"25850:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25835:3:101","nodeType":"YulIdentifier","src":"25835:3:101"},"nativeSrc":"25835:18:101","nodeType":"YulFunctionCall","src":"25835:18:101"},{"name":"value1","nativeSrc":"25855:6:101","nodeType":"YulIdentifier","src":"25855:6:101"}],"functionName":{"name":"mstore","nativeSrc":"25828:6:101","nodeType":"YulIdentifier","src":"25828:6:101"},"nativeSrc":"25828:34:101","nodeType":"YulFunctionCall","src":"25828:34:101"},"nativeSrc":"25828:34:101","nodeType":"YulExpressionStatement","src":"25828:34:101"}]},"name":"abi_encode_tuple_t_enum$_ComponentKind_$22910_t_enum$_ComponentStatus_$22904__to_t_uint8_t_uint8__fromStack_reversed","nativeSrc":"25476:392:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25602:9:101","nodeType":"YulTypedName","src":"25602:9:101","type":""},{"name":"value1","nativeSrc":"25613:6:101","nodeType":"YulTypedName","src":"25613:6:101","type":""},{"name":"value0","nativeSrc":"25621:6:101","nodeType":"YulTypedName","src":"25621:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25632:4:101","nodeType":"YulTypedName","src":"25632:4:101","type":""}],"src":"25476:392:101"},{"body":{"nativeSrc":"25972:136:101","nodeType":"YulBlock","src":"25972:136:101","statements":[{"body":{"nativeSrc":"26019:16:101","nodeType":"YulBlock","src":"26019:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26028:1:101","nodeType":"YulLiteral","src":"26028:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"26031:1:101","nodeType":"YulLiteral","src":"26031:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"26021:6:101","nodeType":"YulIdentifier","src":"26021:6:101"},"nativeSrc":"26021:12:101","nodeType":"YulFunctionCall","src":"26021:12:101"},"nativeSrc":"26021:12:101","nodeType":"YulExpressionStatement","src":"26021:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"25993:7:101","nodeType":"YulIdentifier","src":"25993:7:101"},{"name":"headStart","nativeSrc":"26002:9:101","nodeType":"YulIdentifier","src":"26002:9:101"}],"functionName":{"name":"sub","nativeSrc":"25989:3:101","nodeType":"YulIdentifier","src":"25989:3:101"},"nativeSrc":"25989:23:101","nodeType":"YulFunctionCall","src":"25989:23:101"},{"kind":"number","nativeSrc":"26014:3:101","nodeType":"YulLiteral","src":"26014:3:101","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"25985:3:101","nodeType":"YulIdentifier","src":"25985:3:101"},"nativeSrc":"25985:33:101","nodeType":"YulFunctionCall","src":"25985:33:101"},"nativeSrc":"25982:53:101","nodeType":"YulIf","src":"25982:53:101"},{"nativeSrc":"26044:58:101","nodeType":"YulAssignment","src":"26044:58:101","value":{"arguments":[{"name":"headStart","nativeSrc":"26083:9:101","nodeType":"YulIdentifier","src":"26083:9:101"},{"name":"dataEnd","nativeSrc":"26094:7:101","nodeType":"YulIdentifier","src":"26094:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"26054:28:101","nodeType":"YulIdentifier","src":"26054:28:101"},"nativeSrc":"26054:48:101","nodeType":"YulFunctionCall","src":"26054:48:101"},"variableNames":[{"name":"value0","nativeSrc":"26044:6:101","nodeType":"YulIdentifier","src":"26044:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptr","nativeSrc":"25873:235:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25938:9:101","nodeType":"YulTypedName","src":"25938:9:101","type":""},{"name":"dataEnd","nativeSrc":"25949:7:101","nodeType":"YulTypedName","src":"25949:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"25961:6:101","nodeType":"YulTypedName","src":"25961:6:101","type":""}],"src":"25873:235:101"},{"body":{"nativeSrc":"26182:115:101","nodeType":"YulBlock","src":"26182:115:101","statements":[{"body":{"nativeSrc":"26228:16:101","nodeType":"YulBlock","src":"26228:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26237:1:101","nodeType":"YulLiteral","src":"26237:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"26240:1:101","nodeType":"YulLiteral","src":"26240:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"26230:6:101","nodeType":"YulIdentifier","src":"26230:6:101"},"nativeSrc":"26230:12:101","nodeType":"YulFunctionCall","src":"26230:12:101"},"nativeSrc":"26230:12:101","nodeType":"YulExpressionStatement","src":"26230:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"26203:7:101","nodeType":"YulIdentifier","src":"26203:7:101"},{"name":"headStart","nativeSrc":"26212:9:101","nodeType":"YulIdentifier","src":"26212:9:101"}],"functionName":{"name":"sub","nativeSrc":"26199:3:101","nodeType":"YulIdentifier","src":"26199:3:101"},"nativeSrc":"26199:23:101","nodeType":"YulFunctionCall","src":"26199:23:101"},{"kind":"number","nativeSrc":"26224:2:101","nodeType":"YulLiteral","src":"26224:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"26195:3:101","nodeType":"YulIdentifier","src":"26195:3:101"},"nativeSrc":"26195:32:101","nodeType":"YulFunctionCall","src":"26195:32:101"},"nativeSrc":"26192:52:101","nodeType":"YulIf","src":"26192:52:101"},{"nativeSrc":"26253:38:101","nodeType":"YulAssignment","src":"26253:38:101","value":{"arguments":[{"name":"headStart","nativeSrc":"26281:9:101","nodeType":"YulIdentifier","src":"26281:9:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"26263:17:101","nodeType":"YulIdentifier","src":"26263:17:101"},"nativeSrc":"26263:28:101","nodeType":"YulFunctionCall","src":"26263:28:101"},"variableNames":[{"name":"value0","nativeSrc":"26253:6:101","nodeType":"YulIdentifier","src":"26253:6:101"}]}]},"name":"abi_decode_tuple_t_uint40","nativeSrc":"26113:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"26148:9:101","nodeType":"YulTypedName","src":"26148:9:101","type":""},{"name":"dataEnd","nativeSrc":"26159:7:101","nodeType":"YulTypedName","src":"26159:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"26171:6:101","nodeType":"YulTypedName","src":"26171:6:101","type":""}],"src":"26113:184:101"},{"body":{"nativeSrc":"26365:1398:101","nodeType":"YulBlock","src":"26365:1398:101","statements":[{"nativeSrc":"26375:16:101","nodeType":"YulVariableDeclaration","src":"26375:16:101","value":{"kind":"number","nativeSrc":"26390:1:101","nodeType":"YulLiteral","src":"26390:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"26379:7:101","nodeType":"YulTypedName","src":"26379:7:101","type":""}]},{"nativeSrc":"26400:30:101","nodeType":"YulAssignment","src":"26400:30:101","value":{"arguments":[{"name":"value","nativeSrc":"26424:5:101","nodeType":"YulIdentifier","src":"26424:5:101"}],"functionName":{"name":"calldataload","nativeSrc":"26411:12:101","nodeType":"YulIdentifier","src":"26411:12:101"},"nativeSrc":"26411:19:101","nodeType":"YulFunctionCall","src":"26411:19:101"},"variableNames":[{"name":"value_1","nativeSrc":"26400:7:101","nodeType":"YulIdentifier","src":"26400:7:101"}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"26446:3:101","nodeType":"YulIdentifier","src":"26446:3:101"},{"name":"value_1","nativeSrc":"26451:7:101","nodeType":"YulIdentifier","src":"26451:7:101"}],"functionName":{"name":"mstore","nativeSrc":"26439:6:101","nodeType":"YulIdentifier","src":"26439:6:101"},"nativeSrc":"26439:20:101","nodeType":"YulFunctionCall","src":"26439:20:101"},"nativeSrc":"26439:20:101","nodeType":"YulExpressionStatement","src":"26439:20:101"},{"nativeSrc":"26468:16:101","nodeType":"YulVariableDeclaration","src":"26468:16:101","value":{"kind":"number","nativeSrc":"26483:1:101","nodeType":"YulLiteral","src":"26483:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"26472:7:101","nodeType":"YulTypedName","src":"26472:7:101","type":""}]},{"nativeSrc":"26493:41:101","nodeType":"YulAssignment","src":"26493:41:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"26521:5:101","nodeType":"YulIdentifier","src":"26521:5:101"},{"kind":"number","nativeSrc":"26528:4:101","nodeType":"YulLiteral","src":"26528:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"26517:3:101","nodeType":"YulIdentifier","src":"26517:3:101"},"nativeSrc":"26517:16:101","nodeType":"YulFunctionCall","src":"26517:16:101"}],"functionName":{"name":"calldataload","nativeSrc":"26504:12:101","nodeType":"YulIdentifier","src":"26504:12:101"},"nativeSrc":"26504:30:101","nodeType":"YulFunctionCall","src":"26504:30:101"},"variableNames":[{"name":"value_2","nativeSrc":"26493:7:101","nodeType":"YulIdentifier","src":"26493:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"26554:3:101","nodeType":"YulIdentifier","src":"26554:3:101"},{"kind":"number","nativeSrc":"26559:4:101","nodeType":"YulLiteral","src":"26559:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"26550:3:101","nodeType":"YulIdentifier","src":"26550:3:101"},"nativeSrc":"26550:14:101","nodeType":"YulFunctionCall","src":"26550:14:101"},{"name":"value_2","nativeSrc":"26566:7:101","nodeType":"YulIdentifier","src":"26566:7:101"}],"functionName":{"name":"mstore","nativeSrc":"26543:6:101","nodeType":"YulIdentifier","src":"26543:6:101"},"nativeSrc":"26543:31:101","nodeType":"YulFunctionCall","src":"26543:31:101"},"nativeSrc":"26543:31:101","nodeType":"YulExpressionStatement","src":"26543:31:101"},{"nativeSrc":"26583:16:101","nodeType":"YulVariableDeclaration","src":"26583:16:101","value":{"kind":"number","nativeSrc":"26598:1:101","nodeType":"YulLiteral","src":"26598:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"26587:7:101","nodeType":"YulTypedName","src":"26587:7:101","type":""}]},{"nativeSrc":"26608:41:101","nodeType":"YulAssignment","src":"26608:41:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"26636:5:101","nodeType":"YulIdentifier","src":"26636:5:101"},{"kind":"number","nativeSrc":"26643:4:101","nodeType":"YulLiteral","src":"26643:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"26632:3:101","nodeType":"YulIdentifier","src":"26632:3:101"},"nativeSrc":"26632:16:101","nodeType":"YulFunctionCall","src":"26632:16:101"}],"functionName":{"name":"calldataload","nativeSrc":"26619:12:101","nodeType":"YulIdentifier","src":"26619:12:101"},"nativeSrc":"26619:30:101","nodeType":"YulFunctionCall","src":"26619:30:101"},"variableNames":[{"name":"value_3","nativeSrc":"26608:7:101","nodeType":"YulIdentifier","src":"26608:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"26669:3:101","nodeType":"YulIdentifier","src":"26669:3:101"},{"kind":"number","nativeSrc":"26674:4:101","nodeType":"YulLiteral","src":"26674:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"26665:3:101","nodeType":"YulIdentifier","src":"26665:3:101"},"nativeSrc":"26665:14:101","nodeType":"YulFunctionCall","src":"26665:14:101"},{"name":"value_3","nativeSrc":"26681:7:101","nodeType":"YulIdentifier","src":"26681:7:101"}],"functionName":{"name":"mstore","nativeSrc":"26658:6:101","nodeType":"YulIdentifier","src":"26658:6:101"},"nativeSrc":"26658:31:101","nodeType":"YulFunctionCall","src":"26658:31:101"},"nativeSrc":"26658:31:101","nodeType":"YulExpressionStatement","src":"26658:31:101"},{"nativeSrc":"26698:16:101","nodeType":"YulVariableDeclaration","src":"26698:16:101","value":{"kind":"number","nativeSrc":"26713:1:101","nodeType":"YulLiteral","src":"26713:1:101","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"26702:7:101","nodeType":"YulTypedName","src":"26702:7:101","type":""}]},{"nativeSrc":"26723:41:101","nodeType":"YulAssignment","src":"26723:41:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"26751:5:101","nodeType":"YulIdentifier","src":"26751:5:101"},{"kind":"number","nativeSrc":"26758:4:101","nodeType":"YulLiteral","src":"26758:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"26747:3:101","nodeType":"YulIdentifier","src":"26747:3:101"},"nativeSrc":"26747:16:101","nodeType":"YulFunctionCall","src":"26747:16:101"}],"functionName":{"name":"calldataload","nativeSrc":"26734:12:101","nodeType":"YulIdentifier","src":"26734:12:101"},"nativeSrc":"26734:30:101","nodeType":"YulFunctionCall","src":"26734:30:101"},"variableNames":[{"name":"value_4","nativeSrc":"26723:7:101","nodeType":"YulIdentifier","src":"26723:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"26784:3:101","nodeType":"YulIdentifier","src":"26784:3:101"},{"kind":"number","nativeSrc":"26789:4:101","nodeType":"YulLiteral","src":"26789:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"26780:3:101","nodeType":"YulIdentifier","src":"26780:3:101"},"nativeSrc":"26780:14:101","nodeType":"YulFunctionCall","src":"26780:14:101"},{"name":"value_4","nativeSrc":"26796:7:101","nodeType":"YulIdentifier","src":"26796:7:101"}],"functionName":{"name":"mstore","nativeSrc":"26773:6:101","nodeType":"YulIdentifier","src":"26773:6:101"},"nativeSrc":"26773:31:101","nodeType":"YulFunctionCall","src":"26773:31:101"},"nativeSrc":"26773:31:101","nodeType":"YulExpressionStatement","src":"26773:31:101"},{"nativeSrc":"26813:16:101","nodeType":"YulVariableDeclaration","src":"26813:16:101","value":{"kind":"number","nativeSrc":"26828:1:101","nodeType":"YulLiteral","src":"26828:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"26817:7:101","nodeType":"YulTypedName","src":"26817:7:101","type":""}]},{"nativeSrc":"26838:41:101","nodeType":"YulAssignment","src":"26838:41:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"26866:5:101","nodeType":"YulIdentifier","src":"26866:5:101"},{"kind":"number","nativeSrc":"26873:4:101","nodeType":"YulLiteral","src":"26873:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"26862:3:101","nodeType":"YulIdentifier","src":"26862:3:101"},"nativeSrc":"26862:16:101","nodeType":"YulFunctionCall","src":"26862:16:101"}],"functionName":{"name":"calldataload","nativeSrc":"26849:12:101","nodeType":"YulIdentifier","src":"26849:12:101"},"nativeSrc":"26849:30:101","nodeType":"YulFunctionCall","src":"26849:30:101"},"variableNames":[{"name":"value_5","nativeSrc":"26838:7:101","nodeType":"YulIdentifier","src":"26838:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"26899:3:101","nodeType":"YulIdentifier","src":"26899:3:101"},{"kind":"number","nativeSrc":"26904:4:101","nodeType":"YulLiteral","src":"26904:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"26895:3:101","nodeType":"YulIdentifier","src":"26895:3:101"},"nativeSrc":"26895:14:101","nodeType":"YulFunctionCall","src":"26895:14:101"},{"name":"value_5","nativeSrc":"26911:7:101","nodeType":"YulIdentifier","src":"26911:7:101"}],"functionName":{"name":"mstore","nativeSrc":"26888:6:101","nodeType":"YulIdentifier","src":"26888:6:101"},"nativeSrc":"26888:31:101","nodeType":"YulFunctionCall","src":"26888:31:101"},"nativeSrc":"26888:31:101","nodeType":"YulExpressionStatement","src":"26888:31:101"},{"nativeSrc":"26928:16:101","nodeType":"YulVariableDeclaration","src":"26928:16:101","value":{"kind":"number","nativeSrc":"26943:1:101","nodeType":"YulLiteral","src":"26943:1:101","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"26932:7:101","nodeType":"YulTypedName","src":"26932:7:101","type":""}]},{"nativeSrc":"26953:41:101","nodeType":"YulAssignment","src":"26953:41:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"26981:5:101","nodeType":"YulIdentifier","src":"26981:5:101"},{"kind":"number","nativeSrc":"26988:4:101","nodeType":"YulLiteral","src":"26988:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"26977:3:101","nodeType":"YulIdentifier","src":"26977:3:101"},"nativeSrc":"26977:16:101","nodeType":"YulFunctionCall","src":"26977:16:101"}],"functionName":{"name":"calldataload","nativeSrc":"26964:12:101","nodeType":"YulIdentifier","src":"26964:12:101"},"nativeSrc":"26964:30:101","nodeType":"YulFunctionCall","src":"26964:30:101"},"variableNames":[{"name":"value_6","nativeSrc":"26953:7:101","nodeType":"YulIdentifier","src":"26953:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"27014:3:101","nodeType":"YulIdentifier","src":"27014:3:101"},{"kind":"number","nativeSrc":"27019:4:101","nodeType":"YulLiteral","src":"27019:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"27010:3:101","nodeType":"YulIdentifier","src":"27010:3:101"},"nativeSrc":"27010:14:101","nodeType":"YulFunctionCall","src":"27010:14:101"},{"name":"value_6","nativeSrc":"27026:7:101","nodeType":"YulIdentifier","src":"27026:7:101"}],"functionName":{"name":"mstore","nativeSrc":"27003:6:101","nodeType":"YulIdentifier","src":"27003:6:101"},"nativeSrc":"27003:31:101","nodeType":"YulFunctionCall","src":"27003:31:101"},"nativeSrc":"27003:31:101","nodeType":"YulExpressionStatement","src":"27003:31:101"},{"nativeSrc":"27043:16:101","nodeType":"YulVariableDeclaration","src":"27043:16:101","value":{"kind":"number","nativeSrc":"27058:1:101","nodeType":"YulLiteral","src":"27058:1:101","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"27047:7:101","nodeType":"YulTypedName","src":"27047:7:101","type":""}]},{"nativeSrc":"27068:41:101","nodeType":"YulAssignment","src":"27068:41:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"27096:5:101","nodeType":"YulIdentifier","src":"27096:5:101"},{"kind":"number","nativeSrc":"27103:4:101","nodeType":"YulLiteral","src":"27103:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"27092:3:101","nodeType":"YulIdentifier","src":"27092:3:101"},"nativeSrc":"27092:16:101","nodeType":"YulFunctionCall","src":"27092:16:101"}],"functionName":{"name":"calldataload","nativeSrc":"27079:12:101","nodeType":"YulIdentifier","src":"27079:12:101"},"nativeSrc":"27079:30:101","nodeType":"YulFunctionCall","src":"27079:30:101"},"variableNames":[{"name":"value_7","nativeSrc":"27068:7:101","nodeType":"YulIdentifier","src":"27068:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"27129:3:101","nodeType":"YulIdentifier","src":"27129:3:101"},{"kind":"number","nativeSrc":"27134:4:101","nodeType":"YulLiteral","src":"27134:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"27125:3:101","nodeType":"YulIdentifier","src":"27125:3:101"},"nativeSrc":"27125:14:101","nodeType":"YulFunctionCall","src":"27125:14:101"},{"name":"value_7","nativeSrc":"27141:7:101","nodeType":"YulIdentifier","src":"27141:7:101"}],"functionName":{"name":"mstore","nativeSrc":"27118:6:101","nodeType":"YulIdentifier","src":"27118:6:101"},"nativeSrc":"27118:31:101","nodeType":"YulFunctionCall","src":"27118:31:101"},"nativeSrc":"27118:31:101","nodeType":"YulExpressionStatement","src":"27118:31:101"},{"nativeSrc":"27158:16:101","nodeType":"YulVariableDeclaration","src":"27158:16:101","value":{"kind":"number","nativeSrc":"27173:1:101","nodeType":"YulLiteral","src":"27173:1:101","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"27162:7:101","nodeType":"YulTypedName","src":"27162:7:101","type":""}]},{"nativeSrc":"27183:41:101","nodeType":"YulAssignment","src":"27183:41:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"27211:5:101","nodeType":"YulIdentifier","src":"27211:5:101"},{"kind":"number","nativeSrc":"27218:4:101","nodeType":"YulLiteral","src":"27218:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"27207:3:101","nodeType":"YulIdentifier","src":"27207:3:101"},"nativeSrc":"27207:16:101","nodeType":"YulFunctionCall","src":"27207:16:101"}],"functionName":{"name":"calldataload","nativeSrc":"27194:12:101","nodeType":"YulIdentifier","src":"27194:12:101"},"nativeSrc":"27194:30:101","nodeType":"YulFunctionCall","src":"27194:30:101"},"variableNames":[{"name":"value_8","nativeSrc":"27183:7:101","nodeType":"YulIdentifier","src":"27183:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"27244:3:101","nodeType":"YulIdentifier","src":"27244:3:101"},{"kind":"number","nativeSrc":"27249:4:101","nodeType":"YulLiteral","src":"27249:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"27240:3:101","nodeType":"YulIdentifier","src":"27240:3:101"},"nativeSrc":"27240:14:101","nodeType":"YulFunctionCall","src":"27240:14:101"},{"name":"value_8","nativeSrc":"27256:7:101","nodeType":"YulIdentifier","src":"27256:7:101"}],"functionName":{"name":"mstore","nativeSrc":"27233:6:101","nodeType":"YulIdentifier","src":"27233:6:101"},"nativeSrc":"27233:31:101","nodeType":"YulFunctionCall","src":"27233:31:101"},"nativeSrc":"27233:31:101","nodeType":"YulExpressionStatement","src":"27233:31:101"},{"nativeSrc":"27273:16:101","nodeType":"YulVariableDeclaration","src":"27273:16:101","value":{"kind":"number","nativeSrc":"27288:1:101","nodeType":"YulLiteral","src":"27288:1:101","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"27277:7:101","nodeType":"YulTypedName","src":"27277:7:101","type":""}]},{"nativeSrc":"27298:43:101","nodeType":"YulAssignment","src":"27298:43:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"27326:5:101","nodeType":"YulIdentifier","src":"27326:5:101"},{"kind":"number","nativeSrc":"27333:6:101","nodeType":"YulLiteral","src":"27333:6:101","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"27322:3:101","nodeType":"YulIdentifier","src":"27322:3:101"},"nativeSrc":"27322:18:101","nodeType":"YulFunctionCall","src":"27322:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"27309:12:101","nodeType":"YulIdentifier","src":"27309:12:101"},"nativeSrc":"27309:32:101","nodeType":"YulFunctionCall","src":"27309:32:101"},"variableNames":[{"name":"value_9","nativeSrc":"27298:7:101","nodeType":"YulIdentifier","src":"27298:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"27361:3:101","nodeType":"YulIdentifier","src":"27361:3:101"},{"kind":"number","nativeSrc":"27366:6:101","nodeType":"YulLiteral","src":"27366:6:101","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"27357:3:101","nodeType":"YulIdentifier","src":"27357:3:101"},"nativeSrc":"27357:16:101","nodeType":"YulFunctionCall","src":"27357:16:101"},{"name":"value_9","nativeSrc":"27375:7:101","nodeType":"YulIdentifier","src":"27375:7:101"}],"functionName":{"name":"mstore","nativeSrc":"27350:6:101","nodeType":"YulIdentifier","src":"27350:6:101"},"nativeSrc":"27350:33:101","nodeType":"YulFunctionCall","src":"27350:33:101"},"nativeSrc":"27350:33:101","nodeType":"YulExpressionStatement","src":"27350:33:101"},{"nativeSrc":"27392:17:101","nodeType":"YulVariableDeclaration","src":"27392:17:101","value":{"kind":"number","nativeSrc":"27408:1:101","nodeType":"YulLiteral","src":"27408:1:101","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"27396:8:101","nodeType":"YulTypedName","src":"27396:8:101","type":""}]},{"nativeSrc":"27418:44:101","nodeType":"YulAssignment","src":"27418:44:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"27447:5:101","nodeType":"YulIdentifier","src":"27447:5:101"},{"kind":"number","nativeSrc":"27454:6:101","nodeType":"YulLiteral","src":"27454:6:101","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"27443:3:101","nodeType":"YulIdentifier","src":"27443:3:101"},"nativeSrc":"27443:18:101","nodeType":"YulFunctionCall","src":"27443:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"27430:12:101","nodeType":"YulIdentifier","src":"27430:12:101"},"nativeSrc":"27430:32:101","nodeType":"YulFunctionCall","src":"27430:32:101"},"variableNames":[{"name":"value_10","nativeSrc":"27418:8:101","nodeType":"YulIdentifier","src":"27418:8:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"27482:3:101","nodeType":"YulIdentifier","src":"27482:3:101"},{"kind":"number","nativeSrc":"27487:6:101","nodeType":"YulLiteral","src":"27487:6:101","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"27478:3:101","nodeType":"YulIdentifier","src":"27478:3:101"},"nativeSrc":"27478:16:101","nodeType":"YulFunctionCall","src":"27478:16:101"},{"name":"value_10","nativeSrc":"27496:8:101","nodeType":"YulIdentifier","src":"27496:8:101"}],"functionName":{"name":"mstore","nativeSrc":"27471:6:101","nodeType":"YulIdentifier","src":"27471:6:101"},"nativeSrc":"27471:34:101","nodeType":"YulFunctionCall","src":"27471:34:101"},"nativeSrc":"27471:34:101","nodeType":"YulExpressionStatement","src":"27471:34:101"},{"nativeSrc":"27514:57:101","nodeType":"YulVariableDeclaration","src":"27514:57:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"27556:5:101","nodeType":"YulIdentifier","src":"27556:5:101"},{"kind":"number","nativeSrc":"27563:6:101","nodeType":"YulLiteral","src":"27563:6:101","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"27552:3:101","nodeType":"YulIdentifier","src":"27552:3:101"},"nativeSrc":"27552:18:101","nodeType":"YulFunctionCall","src":"27552:18:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"27534:17:101","nodeType":"YulIdentifier","src":"27534:17:101"},"nativeSrc":"27534:37:101","nodeType":"YulFunctionCall","src":"27534:37:101"},"variables":[{"name":"memberValue0","nativeSrc":"27518:12:101","nodeType":"YulTypedName","src":"27518:12:101","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"27598:12:101","nodeType":"YulIdentifier","src":"27598:12:101"},{"arguments":[{"name":"pos","nativeSrc":"27616:3:101","nodeType":"YulIdentifier","src":"27616:3:101"},{"kind":"number","nativeSrc":"27621:6:101","nodeType":"YulLiteral","src":"27621:6:101","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"27612:3:101","nodeType":"YulIdentifier","src":"27612:3:101"},"nativeSrc":"27612:16:101","nodeType":"YulFunctionCall","src":"27612:16:101"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"27580:17:101","nodeType":"YulIdentifier","src":"27580:17:101"},"nativeSrc":"27580:49:101","nodeType":"YulFunctionCall","src":"27580:49:101"},"nativeSrc":"27580:49:101","nodeType":"YulExpressionStatement","src":"27580:49:101"},{"nativeSrc":"27638:59:101","nodeType":"YulVariableDeclaration","src":"27638:59:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"27682:5:101","nodeType":"YulIdentifier","src":"27682:5:101"},{"kind":"number","nativeSrc":"27689:6:101","nodeType":"YulLiteral","src":"27689:6:101","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"27678:3:101","nodeType":"YulIdentifier","src":"27678:3:101"},"nativeSrc":"27678:18:101","nodeType":"YulFunctionCall","src":"27678:18:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"27660:17:101","nodeType":"YulIdentifier","src":"27660:17:101"},"nativeSrc":"27660:37:101","nodeType":"YulFunctionCall","src":"27660:37:101"},"variables":[{"name":"memberValue0_1","nativeSrc":"27642:14:101","nodeType":"YulTypedName","src":"27642:14:101","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nativeSrc":"27724:14:101","nodeType":"YulIdentifier","src":"27724:14:101"},{"arguments":[{"name":"pos","nativeSrc":"27744:3:101","nodeType":"YulIdentifier","src":"27744:3:101"},{"kind":"number","nativeSrc":"27749:6:101","nodeType":"YulLiteral","src":"27749:6:101","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"27740:3:101","nodeType":"YulIdentifier","src":"27740:3:101"},"nativeSrc":"27740:16:101","nodeType":"YulFunctionCall","src":"27740:16:101"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"27706:17:101","nodeType":"YulIdentifier","src":"27706:17:101"},"nativeSrc":"27706:51:101","nodeType":"YulFunctionCall","src":"27706:51:101"},"nativeSrc":"27706:51:101","nodeType":"YulExpressionStatement","src":"27706:51:101"}]},"name":"abi_encode_struct_PolicyData_calldata","nativeSrc":"26302:1461:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"26349:5:101","nodeType":"YulTypedName","src":"26349:5:101","type":""},{"name":"pos","nativeSrc":"26356:3:101","nodeType":"YulTypedName","src":"26356:3:101","type":""}],"src":"26302:1461:101"},{"body":{"nativeSrc":"28015:174:101","nodeType":"YulBlock","src":"28015:174:101","statements":[{"nativeSrc":"28025:27:101","nodeType":"YulAssignment","src":"28025:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"28037:9:101","nodeType":"YulIdentifier","src":"28037:9:101"},{"kind":"number","nativeSrc":"28048:3:101","nodeType":"YulLiteral","src":"28048:3:101","type":"","value":"768"}],"functionName":{"name":"add","nativeSrc":"28033:3:101","nodeType":"YulIdentifier","src":"28033:3:101"},"nativeSrc":"28033:19:101","nodeType":"YulFunctionCall","src":"28033:19:101"},"variableNames":[{"name":"tail","nativeSrc":"28025:4:101","nodeType":"YulIdentifier","src":"28025:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"28099:6:101","nodeType":"YulIdentifier","src":"28099:6:101"},{"name":"headStart","nativeSrc":"28107:9:101","nodeType":"YulIdentifier","src":"28107:9:101"}],"functionName":{"name":"abi_encode_struct_PolicyData_calldata","nativeSrc":"28061:37:101","nodeType":"YulIdentifier","src":"28061:37:101"},"nativeSrc":"28061:56:101","nodeType":"YulFunctionCall","src":"28061:56:101"},"nativeSrc":"28061:56:101","nodeType":"YulExpressionStatement","src":"28061:56:101"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"28155:6:101","nodeType":"YulIdentifier","src":"28155:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"28167:9:101","nodeType":"YulIdentifier","src":"28167:9:101"},{"kind":"number","nativeSrc":"28178:3:101","nodeType":"YulLiteral","src":"28178:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"28163:3:101","nodeType":"YulIdentifier","src":"28163:3:101"},"nativeSrc":"28163:19:101","nodeType":"YulFunctionCall","src":"28163:19:101"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"28126:28:101","nodeType":"YulIdentifier","src":"28126:28:101"},"nativeSrc":"28126:57:101","nodeType":"YulFunctionCall","src":"28126:57:101"},"nativeSrc":"28126:57:101","nodeType":"YulExpressionStatement","src":"28126:57:101"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$22256_calldata_ptr_t_struct$_PolicyData_$22256_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr_t_struct$_PolicyData_$22256_memory_ptr__fromStack_reversed","nativeSrc":"27768:421:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27976:9:101","nodeType":"YulTypedName","src":"27976:9:101","type":""},{"name":"value1","nativeSrc":"27987:6:101","nodeType":"YulTypedName","src":"27987:6:101","type":""},{"name":"value0","nativeSrc":"27995:6:101","nodeType":"YulTypedName","src":"27995:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28006:4:101","nodeType":"YulTypedName","src":"28006:4:101","type":""}],"src":"27768:421:101"},{"body":{"nativeSrc":"28226:95:101","nodeType":"YulBlock","src":"28226:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"28243:1:101","nodeType":"YulLiteral","src":"28243:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"28250:3:101","nodeType":"YulLiteral","src":"28250:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"28255:10:101","nodeType":"YulLiteral","src":"28255:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"28246:3:101","nodeType":"YulIdentifier","src":"28246:3:101"},"nativeSrc":"28246:20:101","nodeType":"YulFunctionCall","src":"28246:20:101"}],"functionName":{"name":"mstore","nativeSrc":"28236:6:101","nodeType":"YulIdentifier","src":"28236:6:101"},"nativeSrc":"28236:31:101","nodeType":"YulFunctionCall","src":"28236:31:101"},"nativeSrc":"28236:31:101","nodeType":"YulExpressionStatement","src":"28236:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"28283:1:101","nodeType":"YulLiteral","src":"28283:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"28286:4:101","nodeType":"YulLiteral","src":"28286:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"28276:6:101","nodeType":"YulIdentifier","src":"28276:6:101"},"nativeSrc":"28276:15:101","nodeType":"YulFunctionCall","src":"28276:15:101"},"nativeSrc":"28276:15:101","nodeType":"YulExpressionStatement","src":"28276:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"28307:1:101","nodeType":"YulLiteral","src":"28307:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"28310:4:101","nodeType":"YulLiteral","src":"28310:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"28300:6:101","nodeType":"YulIdentifier","src":"28300:6:101"},"nativeSrc":"28300:15:101","nodeType":"YulFunctionCall","src":"28300:15:101"},"nativeSrc":"28300:15:101","nodeType":"YulExpressionStatement","src":"28300:15:101"}]},"name":"panic_error_0x11","nativeSrc":"28194:127:101","nodeType":"YulFunctionDefinition","src":"28194:127:101"},{"body":{"nativeSrc":"28375:79:101","nodeType":"YulBlock","src":"28375:79:101","statements":[{"nativeSrc":"28385:17:101","nodeType":"YulAssignment","src":"28385:17:101","value":{"arguments":[{"name":"x","nativeSrc":"28397:1:101","nodeType":"YulIdentifier","src":"28397:1:101"},{"name":"y","nativeSrc":"28400:1:101","nodeType":"YulIdentifier","src":"28400:1:101"}],"functionName":{"name":"sub","nativeSrc":"28393:3:101","nodeType":"YulIdentifier","src":"28393:3:101"},"nativeSrc":"28393:9:101","nodeType":"YulFunctionCall","src":"28393:9:101"},"variableNames":[{"name":"diff","nativeSrc":"28385:4:101","nodeType":"YulIdentifier","src":"28385:4:101"}]},{"body":{"nativeSrc":"28426:22:101","nodeType":"YulBlock","src":"28426:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"28428:16:101","nodeType":"YulIdentifier","src":"28428:16:101"},"nativeSrc":"28428:18:101","nodeType":"YulFunctionCall","src":"28428:18:101"},"nativeSrc":"28428:18:101","nodeType":"YulExpressionStatement","src":"28428:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"28417:4:101","nodeType":"YulIdentifier","src":"28417:4:101"},{"name":"x","nativeSrc":"28423:1:101","nodeType":"YulIdentifier","src":"28423:1:101"}],"functionName":{"name":"gt","nativeSrc":"28414:2:101","nodeType":"YulIdentifier","src":"28414:2:101"},"nativeSrc":"28414:11:101","nodeType":"YulFunctionCall","src":"28414:11:101"},"nativeSrc":"28411:37:101","nodeType":"YulIf","src":"28411:37:101"}]},"name":"checked_sub_t_uint256","nativeSrc":"28326:128:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"28357:1:101","nodeType":"YulTypedName","src":"28357:1:101","type":""},{"name":"y","nativeSrc":"28360:1:101","nodeType":"YulTypedName","src":"28360:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"28366:4:101","nodeType":"YulTypedName","src":"28366:4:101","type":""}],"src":"28326:128:101"},{"body":{"nativeSrc":"28561:170:101","nodeType":"YulBlock","src":"28561:170:101","statements":[{"body":{"nativeSrc":"28607:16:101","nodeType":"YulBlock","src":"28607:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"28616:1:101","nodeType":"YulLiteral","src":"28616:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"28619:1:101","nodeType":"YulLiteral","src":"28619:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"28609:6:101","nodeType":"YulIdentifier","src":"28609:6:101"},"nativeSrc":"28609:12:101","nodeType":"YulFunctionCall","src":"28609:12:101"},"nativeSrc":"28609:12:101","nodeType":"YulExpressionStatement","src":"28609:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"28582:7:101","nodeType":"YulIdentifier","src":"28582:7:101"},{"name":"headStart","nativeSrc":"28591:9:101","nodeType":"YulIdentifier","src":"28591:9:101"}],"functionName":{"name":"sub","nativeSrc":"28578:3:101","nodeType":"YulIdentifier","src":"28578:3:101"},"nativeSrc":"28578:23:101","nodeType":"YulFunctionCall","src":"28578:23:101"},{"kind":"number","nativeSrc":"28603:2:101","nodeType":"YulLiteral","src":"28603:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"28574:3:101","nodeType":"YulIdentifier","src":"28574:3:101"},"nativeSrc":"28574:32:101","nodeType":"YulFunctionCall","src":"28574:32:101"},"nativeSrc":"28571:52:101","nodeType":"YulIf","src":"28571:52:101"},{"nativeSrc":"28632:29:101","nodeType":"YulVariableDeclaration","src":"28632:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"28651:9:101","nodeType":"YulIdentifier","src":"28651:9:101"}],"functionName":{"name":"mload","nativeSrc":"28645:5:101","nodeType":"YulIdentifier","src":"28645:5:101"},"nativeSrc":"28645:16:101","nodeType":"YulFunctionCall","src":"28645:16:101"},"variables":[{"name":"value","nativeSrc":"28636:5:101","nodeType":"YulTypedName","src":"28636:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"28695:5:101","nodeType":"YulIdentifier","src":"28695:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"28670:24:101","nodeType":"YulIdentifier","src":"28670:24:101"},"nativeSrc":"28670:31:101","nodeType":"YulFunctionCall","src":"28670:31:101"},"nativeSrc":"28670:31:101","nodeType":"YulExpressionStatement","src":"28670:31:101"},{"nativeSrc":"28710:15:101","nodeType":"YulAssignment","src":"28710:15:101","value":{"name":"value","nativeSrc":"28720:5:101","nodeType":"YulIdentifier","src":"28720:5:101"},"variableNames":[{"name":"value0","nativeSrc":"28710:6:101","nodeType":"YulIdentifier","src":"28710:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory","nativeSrc":"28459:272:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28527:9:101","nodeType":"YulTypedName","src":"28527:9:101","type":""},{"name":"dataEnd","nativeSrc":"28538:7:101","nodeType":"YulTypedName","src":"28538:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"28550:6:101","nodeType":"YulTypedName","src":"28550:6:101","type":""}],"src":"28459:272:101"},{"body":{"nativeSrc":"28835:103:101","nodeType":"YulBlock","src":"28835:103:101","statements":[{"nativeSrc":"28845:26:101","nodeType":"YulAssignment","src":"28845:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"28857:9:101","nodeType":"YulIdentifier","src":"28857:9:101"},{"kind":"number","nativeSrc":"28868:2:101","nodeType":"YulLiteral","src":"28868:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28853:3:101","nodeType":"YulIdentifier","src":"28853:3:101"},"nativeSrc":"28853:18:101","nodeType":"YulFunctionCall","src":"28853:18:101"},"variableNames":[{"name":"tail","nativeSrc":"28845:4:101","nodeType":"YulIdentifier","src":"28845:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28887:9:101","nodeType":"YulIdentifier","src":"28887:9:101"},{"arguments":[{"name":"value0","nativeSrc":"28902:6:101","nodeType":"YulIdentifier","src":"28902:6:101"},{"arguments":[{"kind":"number","nativeSrc":"28914:3:101","nodeType":"YulLiteral","src":"28914:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"28919:10:101","nodeType":"YulLiteral","src":"28919:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"28910:3:101","nodeType":"YulIdentifier","src":"28910:3:101"},"nativeSrc":"28910:20:101","nodeType":"YulFunctionCall","src":"28910:20:101"}],"functionName":{"name":"and","nativeSrc":"28898:3:101","nodeType":"YulIdentifier","src":"28898:3:101"},"nativeSrc":"28898:33:101","nodeType":"YulFunctionCall","src":"28898:33:101"}],"functionName":{"name":"mstore","nativeSrc":"28880:6:101","nodeType":"YulIdentifier","src":"28880:6:101"},"nativeSrc":"28880:52:101","nodeType":"YulFunctionCall","src":"28880:52:101"},"nativeSrc":"28880:52:101","nodeType":"YulExpressionStatement","src":"28880:52:101"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nativeSrc":"28736:202:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28804:9:101","nodeType":"YulTypedName","src":"28804:9:101","type":""},{"name":"value0","nativeSrc":"28815:6:101","nodeType":"YulTypedName","src":"28815:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28826:4:101","nodeType":"YulTypedName","src":"28826:4:101","type":""}],"src":"28736:202:101"},{"body":{"nativeSrc":"29021:167:101","nodeType":"YulBlock","src":"29021:167:101","statements":[{"body":{"nativeSrc":"29067:16:101","nodeType":"YulBlock","src":"29067:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"29076:1:101","nodeType":"YulLiteral","src":"29076:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"29079:1:101","nodeType":"YulLiteral","src":"29079:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"29069:6:101","nodeType":"YulIdentifier","src":"29069:6:101"},"nativeSrc":"29069:12:101","nodeType":"YulFunctionCall","src":"29069:12:101"},"nativeSrc":"29069:12:101","nodeType":"YulExpressionStatement","src":"29069:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"29042:7:101","nodeType":"YulIdentifier","src":"29042:7:101"},{"name":"headStart","nativeSrc":"29051:9:101","nodeType":"YulIdentifier","src":"29051:9:101"}],"functionName":{"name":"sub","nativeSrc":"29038:3:101","nodeType":"YulIdentifier","src":"29038:3:101"},"nativeSrc":"29038:23:101","nodeType":"YulFunctionCall","src":"29038:23:101"},{"kind":"number","nativeSrc":"29063:2:101","nodeType":"YulLiteral","src":"29063:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"29034:3:101","nodeType":"YulIdentifier","src":"29034:3:101"},"nativeSrc":"29034:32:101","nodeType":"YulFunctionCall","src":"29034:32:101"},"nativeSrc":"29031:52:101","nodeType":"YulIf","src":"29031:52:101"},{"nativeSrc":"29092:29:101","nodeType":"YulVariableDeclaration","src":"29092:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"29111:9:101","nodeType":"YulIdentifier","src":"29111:9:101"}],"functionName":{"name":"mload","nativeSrc":"29105:5:101","nodeType":"YulIdentifier","src":"29105:5:101"},"nativeSrc":"29105:16:101","nodeType":"YulFunctionCall","src":"29105:16:101"},"variables":[{"name":"value","nativeSrc":"29096:5:101","nodeType":"YulTypedName","src":"29096:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"29152:5:101","nodeType":"YulIdentifier","src":"29152:5:101"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"29130:21:101","nodeType":"YulIdentifier","src":"29130:21:101"},"nativeSrc":"29130:28:101","nodeType":"YulFunctionCall","src":"29130:28:101"},"nativeSrc":"29130:28:101","nodeType":"YulExpressionStatement","src":"29130:28:101"},{"nativeSrc":"29167:15:101","nodeType":"YulAssignment","src":"29167:15:101","value":{"name":"value","nativeSrc":"29177:5:101","nodeType":"YulIdentifier","src":"29177:5:101"},"variableNames":[{"name":"value0","nativeSrc":"29167:6:101","nodeType":"YulIdentifier","src":"29167:6:101"}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nativeSrc":"28943:245:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28987:9:101","nodeType":"YulTypedName","src":"28987:9:101","type":""},{"name":"dataEnd","nativeSrc":"28998:7:101","nodeType":"YulTypedName","src":"28998:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"29010:6:101","nodeType":"YulTypedName","src":"29010:6:101","type":""}],"src":"28943:245:101"},{"body":{"nativeSrc":"29369:199:101","nodeType":"YulBlock","src":"29369:199:101","statements":[{"nativeSrc":"29379:26:101","nodeType":"YulAssignment","src":"29379:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"29391:9:101","nodeType":"YulIdentifier","src":"29391:9:101"},{"kind":"number","nativeSrc":"29402:2:101","nodeType":"YulLiteral","src":"29402:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29387:3:101","nodeType":"YulIdentifier","src":"29387:3:101"},"nativeSrc":"29387:18:101","nodeType":"YulFunctionCall","src":"29387:18:101"},"variableNames":[{"name":"tail","nativeSrc":"29379:4:101","nodeType":"YulIdentifier","src":"29379:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29421:9:101","nodeType":"YulIdentifier","src":"29421:9:101"},{"arguments":[{"name":"value0","nativeSrc":"29436:6:101","nodeType":"YulIdentifier","src":"29436:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29452:3:101","nodeType":"YulLiteral","src":"29452:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"29457:1:101","nodeType":"YulLiteral","src":"29457:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"29448:3:101","nodeType":"YulIdentifier","src":"29448:3:101"},"nativeSrc":"29448:11:101","nodeType":"YulFunctionCall","src":"29448:11:101"},{"kind":"number","nativeSrc":"29461:1:101","nodeType":"YulLiteral","src":"29461:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"29444:3:101","nodeType":"YulIdentifier","src":"29444:3:101"},"nativeSrc":"29444:19:101","nodeType":"YulFunctionCall","src":"29444:19:101"}],"functionName":{"name":"and","nativeSrc":"29432:3:101","nodeType":"YulIdentifier","src":"29432:3:101"},"nativeSrc":"29432:32:101","nodeType":"YulFunctionCall","src":"29432:32:101"}],"functionName":{"name":"mstore","nativeSrc":"29414:6:101","nodeType":"YulIdentifier","src":"29414:6:101"},"nativeSrc":"29414:51:101","nodeType":"YulFunctionCall","src":"29414:51:101"},"nativeSrc":"29414:51:101","nodeType":"YulExpressionStatement","src":"29414:51:101"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"29512:6:101","nodeType":"YulIdentifier","src":"29512:6:101"}],"functionName":{"name":"validator_assert_enum_ComponentStatus","nativeSrc":"29474:37:101","nodeType":"YulIdentifier","src":"29474:37:101"},"nativeSrc":"29474:45:101","nodeType":"YulFunctionCall","src":"29474:45:101"},"nativeSrc":"29474:45:101","nodeType":"YulExpressionStatement","src":"29474:45:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29539:9:101","nodeType":"YulIdentifier","src":"29539:9:101"},{"kind":"number","nativeSrc":"29550:2:101","nodeType":"YulLiteral","src":"29550:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29535:3:101","nodeType":"YulIdentifier","src":"29535:3:101"},"nativeSrc":"29535:18:101","nodeType":"YulFunctionCall","src":"29535:18:101"},{"name":"value1","nativeSrc":"29555:6:101","nodeType":"YulIdentifier","src":"29555:6:101"}],"functionName":{"name":"mstore","nativeSrc":"29528:6:101","nodeType":"YulIdentifier","src":"29528:6:101"},"nativeSrc":"29528:34:101","nodeType":"YulFunctionCall","src":"29528:34:101"},"nativeSrc":"29528:34:101","nodeType":"YulExpressionStatement","src":"29528:34:101"}]},"name":"abi_encode_tuple_t_contract$_IPolicyPoolComponent_$29188_t_enum$_ComponentKind_$22910__to_t_address_t_uint8__fromStack_reversed","nativeSrc":"29193:375:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29330:9:101","nodeType":"YulTypedName","src":"29330:9:101","type":""},{"name":"value1","nativeSrc":"29341:6:101","nodeType":"YulTypedName","src":"29341:6:101","type":""},{"name":"value0","nativeSrc":"29349:6:101","nodeType":"YulTypedName","src":"29349:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29360:4:101","nodeType":"YulTypedName","src":"29360:4:101","type":""}],"src":"29193:375:101"},{"body":{"nativeSrc":"29671:170:101","nodeType":"YulBlock","src":"29671:170:101","statements":[{"body":{"nativeSrc":"29717:16:101","nodeType":"YulBlock","src":"29717:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"29726:1:101","nodeType":"YulLiteral","src":"29726:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"29729:1:101","nodeType":"YulLiteral","src":"29729:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"29719:6:101","nodeType":"YulIdentifier","src":"29719:6:101"},"nativeSrc":"29719:12:101","nodeType":"YulFunctionCall","src":"29719:12:101"},"nativeSrc":"29719:12:101","nodeType":"YulExpressionStatement","src":"29719:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"29692:7:101","nodeType":"YulIdentifier","src":"29692:7:101"},{"name":"headStart","nativeSrc":"29701:9:101","nodeType":"YulIdentifier","src":"29701:9:101"}],"functionName":{"name":"sub","nativeSrc":"29688:3:101","nodeType":"YulIdentifier","src":"29688:3:101"},"nativeSrc":"29688:23:101","nodeType":"YulFunctionCall","src":"29688:23:101"},{"kind":"number","nativeSrc":"29713:2:101","nodeType":"YulLiteral","src":"29713:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"29684:3:101","nodeType":"YulIdentifier","src":"29684:3:101"},"nativeSrc":"29684:32:101","nodeType":"YulFunctionCall","src":"29684:32:101"},"nativeSrc":"29681:52:101","nodeType":"YulIf","src":"29681:52:101"},{"nativeSrc":"29742:29:101","nodeType":"YulVariableDeclaration","src":"29742:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"29761:9:101","nodeType":"YulIdentifier","src":"29761:9:101"}],"functionName":{"name":"mload","nativeSrc":"29755:5:101","nodeType":"YulIdentifier","src":"29755:5:101"},"nativeSrc":"29755:16:101","nodeType":"YulFunctionCall","src":"29755:16:101"},"variables":[{"name":"value","nativeSrc":"29746:5:101","nodeType":"YulTypedName","src":"29746:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"29805:5:101","nodeType":"YulIdentifier","src":"29805:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"29780:24:101","nodeType":"YulIdentifier","src":"29780:24:101"},"nativeSrc":"29780:31:101","nodeType":"YulFunctionCall","src":"29780:31:101"},"nativeSrc":"29780:31:101","nodeType":"YulExpressionStatement","src":"29780:31:101"},{"nativeSrc":"29820:15:101","nodeType":"YulAssignment","src":"29820:15:101","value":{"name":"value","nativeSrc":"29830:5:101","nodeType":"YulIdentifier","src":"29830:5:101"},"variableNames":[{"name":"value0","nativeSrc":"29820:6:101","nodeType":"YulIdentifier","src":"29820:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$28869_fromMemory","nativeSrc":"29573:268:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29637:9:101","nodeType":"YulTypedName","src":"29637:9:101","type":""},{"name":"dataEnd","nativeSrc":"29648:7:101","nodeType":"YulTypedName","src":"29648:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"29660:6:101","nodeType":"YulTypedName","src":"29660:6:101","type":""}],"src":"29573:268:101"},{"body":{"nativeSrc":"30091:240:101","nodeType":"YulBlock","src":"30091:240:101","statements":[{"nativeSrc":"30101:27:101","nodeType":"YulAssignment","src":"30101:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"30113:9:101","nodeType":"YulIdentifier","src":"30113:9:101"},{"kind":"number","nativeSrc":"30124:3:101","nodeType":"YulLiteral","src":"30124:3:101","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"30109:3:101","nodeType":"YulIdentifier","src":"30109:3:101"},"nativeSrc":"30109:19:101","nodeType":"YulFunctionCall","src":"30109:19:101"},"variableNames":[{"name":"tail","nativeSrc":"30101:4:101","nodeType":"YulIdentifier","src":"30101:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"30175:6:101","nodeType":"YulIdentifier","src":"30175:6:101"},{"name":"headStart","nativeSrc":"30183:9:101","nodeType":"YulIdentifier","src":"30183:9:101"}],"functionName":{"name":"abi_encode_struct_PolicyData_calldata","nativeSrc":"30137:37:101","nodeType":"YulIdentifier","src":"30137:37:101"},"nativeSrc":"30137:56:101","nodeType":"YulFunctionCall","src":"30137:56:101"},"nativeSrc":"30137:56:101","nodeType":"YulExpressionStatement","src":"30137:56:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30213:9:101","nodeType":"YulIdentifier","src":"30213:9:101"},{"kind":"number","nativeSrc":"30224:3:101","nodeType":"YulLiteral","src":"30224:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"30209:3:101","nodeType":"YulIdentifier","src":"30209:3:101"},"nativeSrc":"30209:19:101","nodeType":"YulFunctionCall","src":"30209:19:101"},{"name":"value1","nativeSrc":"30230:6:101","nodeType":"YulIdentifier","src":"30230:6:101"}],"functionName":{"name":"mstore","nativeSrc":"30202:6:101","nodeType":"YulIdentifier","src":"30202:6:101"},"nativeSrc":"30202:35:101","nodeType":"YulFunctionCall","src":"30202:35:101"},"nativeSrc":"30202:35:101","nodeType":"YulExpressionStatement","src":"30202:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30257:9:101","nodeType":"YulIdentifier","src":"30257:9:101"},{"kind":"number","nativeSrc":"30268:3:101","nodeType":"YulLiteral","src":"30268:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"30253:3:101","nodeType":"YulIdentifier","src":"30253:3:101"},"nativeSrc":"30253:19:101","nodeType":"YulFunctionCall","src":"30253:19:101"},{"name":"value2","nativeSrc":"30274:6:101","nodeType":"YulIdentifier","src":"30274:6:101"}],"functionName":{"name":"mstore","nativeSrc":"30246:6:101","nodeType":"YulIdentifier","src":"30246:6:101"},"nativeSrc":"30246:35:101","nodeType":"YulFunctionCall","src":"30246:35:101"},"nativeSrc":"30246:35:101","nodeType":"YulExpressionStatement","src":"30246:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30301:9:101","nodeType":"YulIdentifier","src":"30301:9:101"},{"kind":"number","nativeSrc":"30312:3:101","nodeType":"YulLiteral","src":"30312:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"30297:3:101","nodeType":"YulIdentifier","src":"30297:3:101"},"nativeSrc":"30297:19:101","nodeType":"YulFunctionCall","src":"30297:19:101"},{"name":"value3","nativeSrc":"30318:6:101","nodeType":"YulIdentifier","src":"30318:6:101"}],"functionName":{"name":"mstore","nativeSrc":"30290:6:101","nodeType":"YulIdentifier","src":"30290:6:101"},"nativeSrc":"30290:35:101","nodeType":"YulFunctionCall","src":"30290:35:101"},"nativeSrc":"30290:35:101","nodeType":"YulExpressionStatement","src":"30290:35:101"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$22256_calldata_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"29846:485:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30036:9:101","nodeType":"YulTypedName","src":"30036:9:101","type":""},{"name":"value3","nativeSrc":"30047:6:101","nodeType":"YulTypedName","src":"30047:6:101","type":""},{"name":"value2","nativeSrc":"30055:6:101","nodeType":"YulTypedName","src":"30055:6:101","type":""},{"name":"value1","nativeSrc":"30063:6:101","nodeType":"YulTypedName","src":"30063:6:101","type":""},{"name":"value0","nativeSrc":"30071:6:101","nodeType":"YulTypedName","src":"30071:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30082:4:101","nodeType":"YulTypedName","src":"30082:4:101","type":""}],"src":"29846:485:101"},{"body":{"nativeSrc":"30609:310:101","nodeType":"YulBlock","src":"30609:310:101","statements":[{"nativeSrc":"30619:27:101","nodeType":"YulAssignment","src":"30619:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"30631:9:101","nodeType":"YulIdentifier","src":"30631:9:101"},{"kind":"number","nativeSrc":"30642:3:101","nodeType":"YulLiteral","src":"30642:3:101","type":"","value":"512"}],"functionName":{"name":"add","nativeSrc":"30627:3:101","nodeType":"YulIdentifier","src":"30627:3:101"},"nativeSrc":"30627:19:101","nodeType":"YulFunctionCall","src":"30627:19:101"},"variableNames":[{"name":"tail","nativeSrc":"30619:4:101","nodeType":"YulIdentifier","src":"30619:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"30693:6:101","nodeType":"YulIdentifier","src":"30693:6:101"},{"name":"headStart","nativeSrc":"30701:9:101","nodeType":"YulIdentifier","src":"30701:9:101"}],"functionName":{"name":"abi_encode_struct_PolicyData_calldata","nativeSrc":"30655:37:101","nodeType":"YulIdentifier","src":"30655:37:101"},"nativeSrc":"30655:56:101","nodeType":"YulFunctionCall","src":"30655:56:101"},"nativeSrc":"30655:56:101","nodeType":"YulExpressionStatement","src":"30655:56:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30731:9:101","nodeType":"YulIdentifier","src":"30731:9:101"},{"kind":"number","nativeSrc":"30742:3:101","nodeType":"YulLiteral","src":"30742:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"30727:3:101","nodeType":"YulIdentifier","src":"30727:3:101"},"nativeSrc":"30727:19:101","nodeType":"YulFunctionCall","src":"30727:19:101"},{"name":"value1","nativeSrc":"30748:6:101","nodeType":"YulIdentifier","src":"30748:6:101"}],"functionName":{"name":"mstore","nativeSrc":"30720:6:101","nodeType":"YulIdentifier","src":"30720:6:101"},"nativeSrc":"30720:35:101","nodeType":"YulFunctionCall","src":"30720:35:101"},"nativeSrc":"30720:35:101","nodeType":"YulExpressionStatement","src":"30720:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30775:9:101","nodeType":"YulIdentifier","src":"30775:9:101"},{"kind":"number","nativeSrc":"30786:3:101","nodeType":"YulLiteral","src":"30786:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"30771:3:101","nodeType":"YulIdentifier","src":"30771:3:101"},"nativeSrc":"30771:19:101","nodeType":"YulFunctionCall","src":"30771:19:101"},{"name":"value2","nativeSrc":"30792:6:101","nodeType":"YulIdentifier","src":"30792:6:101"}],"functionName":{"name":"mstore","nativeSrc":"30764:6:101","nodeType":"YulIdentifier","src":"30764:6:101"},"nativeSrc":"30764:35:101","nodeType":"YulFunctionCall","src":"30764:35:101"},"nativeSrc":"30764:35:101","nodeType":"YulExpressionStatement","src":"30764:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30819:9:101","nodeType":"YulIdentifier","src":"30819:9:101"},{"kind":"number","nativeSrc":"30830:3:101","nodeType":"YulLiteral","src":"30830:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"30815:3:101","nodeType":"YulIdentifier","src":"30815:3:101"},"nativeSrc":"30815:19:101","nodeType":"YulFunctionCall","src":"30815:19:101"},{"name":"value3","nativeSrc":"30836:6:101","nodeType":"YulIdentifier","src":"30836:6:101"}],"functionName":{"name":"mstore","nativeSrc":"30808:6:101","nodeType":"YulIdentifier","src":"30808:6:101"},"nativeSrc":"30808:35:101","nodeType":"YulFunctionCall","src":"30808:35:101"},"nativeSrc":"30808:35:101","nodeType":"YulExpressionStatement","src":"30808:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30863:9:101","nodeType":"YulIdentifier","src":"30863:9:101"},{"kind":"number","nativeSrc":"30874:3:101","nodeType":"YulLiteral","src":"30874:3:101","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"30859:3:101","nodeType":"YulIdentifier","src":"30859:3:101"},"nativeSrc":"30859:19:101","nodeType":"YulFunctionCall","src":"30859:19:101"},{"arguments":[{"name":"value4","nativeSrc":"30884:6:101","nodeType":"YulIdentifier","src":"30884:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30900:3:101","nodeType":"YulLiteral","src":"30900:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"30905:1:101","nodeType":"YulLiteral","src":"30905:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"30896:3:101","nodeType":"YulIdentifier","src":"30896:3:101"},"nativeSrc":"30896:11:101","nodeType":"YulFunctionCall","src":"30896:11:101"},{"kind":"number","nativeSrc":"30909:1:101","nodeType":"YulLiteral","src":"30909:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"30892:3:101","nodeType":"YulIdentifier","src":"30892:3:101"},"nativeSrc":"30892:19:101","nodeType":"YulFunctionCall","src":"30892:19:101"}],"functionName":{"name":"and","nativeSrc":"30880:3:101","nodeType":"YulIdentifier","src":"30880:3:101"},"nativeSrc":"30880:32:101","nodeType":"YulFunctionCall","src":"30880:32:101"}],"functionName":{"name":"mstore","nativeSrc":"30852:6:101","nodeType":"YulIdentifier","src":"30852:6:101"},"nativeSrc":"30852:61:101","nodeType":"YulFunctionCall","src":"30852:61:101"},"nativeSrc":"30852:61:101","nodeType":"YulExpressionStatement","src":"30852:61:101"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$22256_calldata_ptr_t_uint256_t_uint256_t_uint256_t_address__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256_t_address__fromStack_reversed","nativeSrc":"30336:583:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30546:9:101","nodeType":"YulTypedName","src":"30546:9:101","type":""},{"name":"value4","nativeSrc":"30557:6:101","nodeType":"YulTypedName","src":"30557:6:101","type":""},{"name":"value3","nativeSrc":"30565:6:101","nodeType":"YulTypedName","src":"30565:6:101","type":""},{"name":"value2","nativeSrc":"30573:6:101","nodeType":"YulTypedName","src":"30573:6:101","type":""},{"name":"value1","nativeSrc":"30581:6:101","nodeType":"YulTypedName","src":"30581:6:101","type":""},{"name":"value0","nativeSrc":"30589:6:101","nodeType":"YulTypedName","src":"30589:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30600:4:101","nodeType":"YulTypedName","src":"30600:4:101","type":""}],"src":"30336:583:101"},{"body":{"nativeSrc":"31081:162:101","nodeType":"YulBlock","src":"31081:162:101","statements":[{"nativeSrc":"31091:26:101","nodeType":"YulAssignment","src":"31091:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"31103:9:101","nodeType":"YulIdentifier","src":"31103:9:101"},{"kind":"number","nativeSrc":"31114:2:101","nodeType":"YulLiteral","src":"31114:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"31099:3:101","nodeType":"YulIdentifier","src":"31099:3:101"},"nativeSrc":"31099:18:101","nodeType":"YulFunctionCall","src":"31099:18:101"},"variableNames":[{"name":"tail","nativeSrc":"31091:4:101","nodeType":"YulIdentifier","src":"31091:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31133:9:101","nodeType":"YulIdentifier","src":"31133:9:101"},{"name":"value0","nativeSrc":"31144:6:101","nodeType":"YulIdentifier","src":"31144:6:101"}],"functionName":{"name":"mstore","nativeSrc":"31126:6:101","nodeType":"YulIdentifier","src":"31126:6:101"},"nativeSrc":"31126:25:101","nodeType":"YulFunctionCall","src":"31126:25:101"},"nativeSrc":"31126:25:101","nodeType":"YulExpressionStatement","src":"31126:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31171:9:101","nodeType":"YulIdentifier","src":"31171:9:101"},{"kind":"number","nativeSrc":"31182:2:101","nodeType":"YulLiteral","src":"31182:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"31167:3:101","nodeType":"YulIdentifier","src":"31167:3:101"},"nativeSrc":"31167:18:101","nodeType":"YulFunctionCall","src":"31167:18:101"},{"name":"value1","nativeSrc":"31187:6:101","nodeType":"YulIdentifier","src":"31187:6:101"}],"functionName":{"name":"mstore","nativeSrc":"31160:6:101","nodeType":"YulIdentifier","src":"31160:6:101"},"nativeSrc":"31160:34:101","nodeType":"YulFunctionCall","src":"31160:34:101"},"nativeSrc":"31160:34:101","nodeType":"YulExpressionStatement","src":"31160:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31214:9:101","nodeType":"YulIdentifier","src":"31214:9:101"},{"kind":"number","nativeSrc":"31225:2:101","nodeType":"YulLiteral","src":"31225:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"31210:3:101","nodeType":"YulIdentifier","src":"31210:3:101"},"nativeSrc":"31210:18:101","nodeType":"YulFunctionCall","src":"31210:18:101"},{"name":"value2","nativeSrc":"31230:6:101","nodeType":"YulIdentifier","src":"31230:6:101"}],"functionName":{"name":"mstore","nativeSrc":"31203:6:101","nodeType":"YulIdentifier","src":"31203:6:101"},"nativeSrc":"31203:34:101","nodeType":"YulFunctionCall","src":"31203:34:101"},"nativeSrc":"31203:34:101","nodeType":"YulExpressionStatement","src":"31203:34:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"30924:319:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31034:9:101","nodeType":"YulTypedName","src":"31034:9:101","type":""},{"name":"value2","nativeSrc":"31045:6:101","nodeType":"YulTypedName","src":"31045:6:101","type":""},{"name":"value1","nativeSrc":"31053:6:101","nodeType":"YulTypedName","src":"31053:6:101","type":""},{"name":"value0","nativeSrc":"31061:6:101","nodeType":"YulTypedName","src":"31061:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31072:4:101","nodeType":"YulTypedName","src":"31072:4:101","type":""}],"src":"30924:319:101"},{"body":{"nativeSrc":"31329:103:101","nodeType":"YulBlock","src":"31329:103:101","statements":[{"body":{"nativeSrc":"31375:16:101","nodeType":"YulBlock","src":"31375:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"31384:1:101","nodeType":"YulLiteral","src":"31384:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"31387:1:101","nodeType":"YulLiteral","src":"31387:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"31377:6:101","nodeType":"YulIdentifier","src":"31377:6:101"},"nativeSrc":"31377:12:101","nodeType":"YulFunctionCall","src":"31377:12:101"},"nativeSrc":"31377:12:101","nodeType":"YulExpressionStatement","src":"31377:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"31350:7:101","nodeType":"YulIdentifier","src":"31350:7:101"},{"name":"headStart","nativeSrc":"31359:9:101","nodeType":"YulIdentifier","src":"31359:9:101"}],"functionName":{"name":"sub","nativeSrc":"31346:3:101","nodeType":"YulIdentifier","src":"31346:3:101"},"nativeSrc":"31346:23:101","nodeType":"YulFunctionCall","src":"31346:23:101"},{"kind":"number","nativeSrc":"31371:2:101","nodeType":"YulLiteral","src":"31371:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"31342:3:101","nodeType":"YulIdentifier","src":"31342:3:101"},"nativeSrc":"31342:32:101","nodeType":"YulFunctionCall","src":"31342:32:101"},"nativeSrc":"31339:52:101","nodeType":"YulIf","src":"31339:52:101"},{"nativeSrc":"31400:26:101","nodeType":"YulAssignment","src":"31400:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"31416:9:101","nodeType":"YulIdentifier","src":"31416:9:101"}],"functionName":{"name":"mload","nativeSrc":"31410:5:101","nodeType":"YulIdentifier","src":"31410:5:101"},"nativeSrc":"31410:16:101","nodeType":"YulFunctionCall","src":"31410:16:101"},"variableNames":[{"name":"value0","nativeSrc":"31400:6:101","nodeType":"YulIdentifier","src":"31400:6:101"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"31248:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31295:9:101","nodeType":"YulTypedName","src":"31295:9:101","type":""},{"name":"dataEnd","nativeSrc":"31306:7:101","nodeType":"YulTypedName","src":"31306:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"31318:6:101","nodeType":"YulTypedName","src":"31318:6:101","type":""}],"src":"31248:184:101"},{"body":{"nativeSrc":"31583:173:101","nodeType":"YulBlock","src":"31583:173:101","statements":[{"nativeSrc":"31593:26:101","nodeType":"YulAssignment","src":"31593:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"31605:9:101","nodeType":"YulIdentifier","src":"31605:9:101"},{"kind":"number","nativeSrc":"31616:2:101","nodeType":"YulLiteral","src":"31616:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"31601:3:101","nodeType":"YulIdentifier","src":"31601:3:101"},"nativeSrc":"31601:18:101","nodeType":"YulFunctionCall","src":"31601:18:101"},"variableNames":[{"name":"tail","nativeSrc":"31593:4:101","nodeType":"YulIdentifier","src":"31593:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"31666:6:101","nodeType":"YulIdentifier","src":"31666:6:101"}],"functionName":{"name":"validator_assert_enum_ComponentStatus","nativeSrc":"31628:37:101","nodeType":"YulIdentifier","src":"31628:37:101"},"nativeSrc":"31628:45:101","nodeType":"YulFunctionCall","src":"31628:45:101"},"nativeSrc":"31628:45:101","nodeType":"YulExpressionStatement","src":"31628:45:101"},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31689:9:101","nodeType":"YulIdentifier","src":"31689:9:101"},{"name":"value0","nativeSrc":"31700:6:101","nodeType":"YulIdentifier","src":"31700:6:101"}],"functionName":{"name":"mstore","nativeSrc":"31682:6:101","nodeType":"YulIdentifier","src":"31682:6:101"},"nativeSrc":"31682:25:101","nodeType":"YulFunctionCall","src":"31682:25:101"},"nativeSrc":"31682:25:101","nodeType":"YulExpressionStatement","src":"31682:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31727:9:101","nodeType":"YulIdentifier","src":"31727:9:101"},{"kind":"number","nativeSrc":"31738:2:101","nodeType":"YulLiteral","src":"31738:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"31723:3:101","nodeType":"YulIdentifier","src":"31723:3:101"},"nativeSrc":"31723:18:101","nodeType":"YulFunctionCall","src":"31723:18:101"},{"name":"value1","nativeSrc":"31743:6:101","nodeType":"YulIdentifier","src":"31743:6:101"}],"functionName":{"name":"mstore","nativeSrc":"31716:6:101","nodeType":"YulIdentifier","src":"31716:6:101"},"nativeSrc":"31716:34:101","nodeType":"YulFunctionCall","src":"31716:34:101"},"nativeSrc":"31716:34:101","nodeType":"YulExpressionStatement","src":"31716:34:101"}]},"name":"abi_encode_tuple_t_enum$_ComponentKind_$22910_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"31437:319:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31544:9:101","nodeType":"YulTypedName","src":"31544:9:101","type":""},{"name":"value1","nativeSrc":"31555:6:101","nodeType":"YulTypedName","src":"31555:6:101","type":""},{"name":"value0","nativeSrc":"31563:6:101","nodeType":"YulTypedName","src":"31563:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31574:4:101","nodeType":"YulTypedName","src":"31574:4:101","type":""}],"src":"31437:319:101"},{"body":{"nativeSrc":"31907:214:101","nodeType":"YulBlock","src":"31907:214:101","statements":[{"nativeSrc":"31917:26:101","nodeType":"YulAssignment","src":"31917:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"31929:9:101","nodeType":"YulIdentifier","src":"31929:9:101"},{"kind":"number","nativeSrc":"31940:2:101","nodeType":"YulLiteral","src":"31940:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"31925:3:101","nodeType":"YulIdentifier","src":"31925:3:101"},"nativeSrc":"31925:18:101","nodeType":"YulFunctionCall","src":"31925:18:101"},"variableNames":[{"name":"tail","nativeSrc":"31917:4:101","nodeType":"YulIdentifier","src":"31917:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"31990:6:101","nodeType":"YulIdentifier","src":"31990:6:101"}],"functionName":{"name":"validator_assert_enum_ComponentStatus","nativeSrc":"31952:37:101","nodeType":"YulIdentifier","src":"31952:37:101"},"nativeSrc":"31952:45:101","nodeType":"YulFunctionCall","src":"31952:45:101"},"nativeSrc":"31952:45:101","nodeType":"YulExpressionStatement","src":"31952:45:101"},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"32013:9:101","nodeType":"YulIdentifier","src":"32013:9:101"},{"name":"value0","nativeSrc":"32024:6:101","nodeType":"YulIdentifier","src":"32024:6:101"}],"functionName":{"name":"mstore","nativeSrc":"32006:6:101","nodeType":"YulIdentifier","src":"32006:6:101"},"nativeSrc":"32006:25:101","nodeType":"YulFunctionCall","src":"32006:25:101"},"nativeSrc":"32006:25:101","nodeType":"YulExpressionStatement","src":"32006:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32051:9:101","nodeType":"YulIdentifier","src":"32051:9:101"},{"kind":"number","nativeSrc":"32062:2:101","nodeType":"YulLiteral","src":"32062:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32047:3:101","nodeType":"YulIdentifier","src":"32047:3:101"},"nativeSrc":"32047:18:101","nodeType":"YulFunctionCall","src":"32047:18:101"},{"arguments":[{"name":"value1","nativeSrc":"32071:6:101","nodeType":"YulIdentifier","src":"32071:6:101"},{"kind":"number","nativeSrc":"32079:34:101","nodeType":"YulLiteral","src":"32079:34:101","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"32067:3:101","nodeType":"YulIdentifier","src":"32067:3:101"},"nativeSrc":"32067:47:101","nodeType":"YulFunctionCall","src":"32067:47:101"}],"functionName":{"name":"mstore","nativeSrc":"32040:6:101","nodeType":"YulIdentifier","src":"32040:6:101"},"nativeSrc":"32040:75:101","nodeType":"YulFunctionCall","src":"32040:75:101"},"nativeSrc":"32040:75:101","nodeType":"YulExpressionStatement","src":"32040:75:101"}]},"name":"abi_encode_tuple_t_enum$_ComponentKind_$22910_t_uint128__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"31761:360:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31868:9:101","nodeType":"YulTypedName","src":"31868:9:101","type":""},{"name":"value1","nativeSrc":"31879:6:101","nodeType":"YulTypedName","src":"31879:6:101","type":""},{"name":"value0","nativeSrc":"31887:6:101","nodeType":"YulTypedName","src":"31887:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31898:4:101","nodeType":"YulTypedName","src":"31898:4:101","type":""}],"src":"31761:360:101"},{"body":{"nativeSrc":"32255:201:101","nodeType":"YulBlock","src":"32255:201:101","statements":[{"nativeSrc":"32265:26:101","nodeType":"YulAssignment","src":"32265:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"32277:9:101","nodeType":"YulIdentifier","src":"32277:9:101"},{"kind":"number","nativeSrc":"32288:2:101","nodeType":"YulLiteral","src":"32288:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"32273:3:101","nodeType":"YulIdentifier","src":"32273:3:101"},"nativeSrc":"32273:18:101","nodeType":"YulFunctionCall","src":"32273:18:101"},"variableNames":[{"name":"tail","nativeSrc":"32265:4:101","nodeType":"YulIdentifier","src":"32265:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"32307:9:101","nodeType":"YulIdentifier","src":"32307:9:101"},{"arguments":[{"name":"value0","nativeSrc":"32322:6:101","nodeType":"YulIdentifier","src":"32322:6:101"},{"kind":"number","nativeSrc":"32330:34:101","nodeType":"YulLiteral","src":"32330:34:101","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"32318:3:101","nodeType":"YulIdentifier","src":"32318:3:101"},"nativeSrc":"32318:47:101","nodeType":"YulFunctionCall","src":"32318:47:101"}],"functionName":{"name":"mstore","nativeSrc":"32300:6:101","nodeType":"YulIdentifier","src":"32300:6:101"},"nativeSrc":"32300:66:101","nodeType":"YulFunctionCall","src":"32300:66:101"},"nativeSrc":"32300:66:101","nodeType":"YulExpressionStatement","src":"32300:66:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32386:9:101","nodeType":"YulIdentifier","src":"32386:9:101"},{"kind":"number","nativeSrc":"32397:2:101","nodeType":"YulLiteral","src":"32397:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32382:3:101","nodeType":"YulIdentifier","src":"32382:3:101"},"nativeSrc":"32382:18:101","nodeType":"YulFunctionCall","src":"32382:18:101"},{"arguments":[{"name":"value1","nativeSrc":"32406:6:101","nodeType":"YulIdentifier","src":"32406:6:101"},{"kind":"number","nativeSrc":"32414:34:101","nodeType":"YulLiteral","src":"32414:34:101","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"32402:3:101","nodeType":"YulIdentifier","src":"32402:3:101"},"nativeSrc":"32402:47:101","nodeType":"YulFunctionCall","src":"32402:47:101"}],"functionName":{"name":"mstore","nativeSrc":"32375:6:101","nodeType":"YulIdentifier","src":"32375:6:101"},"nativeSrc":"32375:75:101","nodeType":"YulFunctionCall","src":"32375:75:101"},"nativeSrc":"32375:75:101","nodeType":"YulExpressionStatement","src":"32375:75:101"}]},"name":"abi_encode_tuple_t_uint128_t_uint128__to_t_uint128_t_uint128__fromStack_reversed","nativeSrc":"32126:330:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32216:9:101","nodeType":"YulTypedName","src":"32216:9:101","type":""},{"name":"value1","nativeSrc":"32227:6:101","nodeType":"YulTypedName","src":"32227:6:101","type":""},{"name":"value0","nativeSrc":"32235:6:101","nodeType":"YulTypedName","src":"32235:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"32246:4:101","nodeType":"YulTypedName","src":"32246:4:101","type":""}],"src":"32126:330:101"},{"body":{"nativeSrc":"32591:201:101","nodeType":"YulBlock","src":"32591:201:101","statements":[{"body":{"nativeSrc":"32629:16:101","nodeType":"YulBlock","src":"32629:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32638:1:101","nodeType":"YulLiteral","src":"32638:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"32641:1:101","nodeType":"YulLiteral","src":"32641:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"32631:6:101","nodeType":"YulIdentifier","src":"32631:6:101"},"nativeSrc":"32631:12:101","nodeType":"YulFunctionCall","src":"32631:12:101"},"nativeSrc":"32631:12:101","nodeType":"YulExpressionStatement","src":"32631:12:101"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"32607:10:101","nodeType":"YulIdentifier","src":"32607:10:101"},{"name":"endIndex","nativeSrc":"32619:8:101","nodeType":"YulIdentifier","src":"32619:8:101"}],"functionName":{"name":"gt","nativeSrc":"32604:2:101","nodeType":"YulIdentifier","src":"32604:2:101"},"nativeSrc":"32604:24:101","nodeType":"YulFunctionCall","src":"32604:24:101"},"nativeSrc":"32601:44:101","nodeType":"YulIf","src":"32601:44:101"},{"body":{"nativeSrc":"32678:16:101","nodeType":"YulBlock","src":"32678:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32687:1:101","nodeType":"YulLiteral","src":"32687:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"32690:1:101","nodeType":"YulLiteral","src":"32690:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"32680:6:101","nodeType":"YulIdentifier","src":"32680:6:101"},"nativeSrc":"32680:12:101","nodeType":"YulFunctionCall","src":"32680:12:101"},"nativeSrc":"32680:12:101","nodeType":"YulExpressionStatement","src":"32680:12:101"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"32660:8:101","nodeType":"YulIdentifier","src":"32660:8:101"},{"name":"length","nativeSrc":"32670:6:101","nodeType":"YulIdentifier","src":"32670:6:101"}],"functionName":{"name":"gt","nativeSrc":"32657:2:101","nodeType":"YulIdentifier","src":"32657:2:101"},"nativeSrc":"32657:20:101","nodeType":"YulFunctionCall","src":"32657:20:101"},"nativeSrc":"32654:40:101","nodeType":"YulIf","src":"32654:40:101"},{"nativeSrc":"32703:36:101","nodeType":"YulAssignment","src":"32703:36:101","value":{"arguments":[{"name":"offset","nativeSrc":"32720:6:101","nodeType":"YulIdentifier","src":"32720:6:101"},{"name":"startIndex","nativeSrc":"32728:10:101","nodeType":"YulIdentifier","src":"32728:10:101"}],"functionName":{"name":"add","nativeSrc":"32716:3:101","nodeType":"YulIdentifier","src":"32716:3:101"},"nativeSrc":"32716:23:101","nodeType":"YulFunctionCall","src":"32716:23:101"},"variableNames":[{"name":"offsetOut","nativeSrc":"32703:9:101","nodeType":"YulIdentifier","src":"32703:9:101"}]},{"nativeSrc":"32748:38:101","nodeType":"YulAssignment","src":"32748:38:101","value":{"arguments":[{"name":"endIndex","nativeSrc":"32765:8:101","nodeType":"YulIdentifier","src":"32765:8:101"},{"name":"startIndex","nativeSrc":"32775:10:101","nodeType":"YulIdentifier","src":"32775:10:101"}],"functionName":{"name":"sub","nativeSrc":"32761:3:101","nodeType":"YulIdentifier","src":"32761:3:101"},"nativeSrc":"32761:25:101","nodeType":"YulFunctionCall","src":"32761:25:101"},"variableNames":[{"name":"lengthOut","nativeSrc":"32748:9:101","nodeType":"YulIdentifier","src":"32748:9:101"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"32461:331:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"32525:6:101","nodeType":"YulTypedName","src":"32525:6:101","type":""},{"name":"length","nativeSrc":"32533:6:101","nodeType":"YulTypedName","src":"32533:6:101","type":""},{"name":"startIndex","nativeSrc":"32541:10:101","nodeType":"YulTypedName","src":"32541:10:101","type":""},{"name":"endIndex","nativeSrc":"32553:8:101","nodeType":"YulTypedName","src":"32553:8:101","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"32566:9:101","nodeType":"YulTypedName","src":"32566:9:101","type":""},{"name":"lengthOut","nativeSrc":"32577:9:101","nodeType":"YulTypedName","src":"32577:9:101","type":""}],"src":"32461:331:101"},{"body":{"nativeSrc":"32829:95:101","nodeType":"YulBlock","src":"32829:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32846:1:101","nodeType":"YulLiteral","src":"32846:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"32853:3:101","nodeType":"YulLiteral","src":"32853:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"32858:10:101","nodeType":"YulLiteral","src":"32858:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"32849:3:101","nodeType":"YulIdentifier","src":"32849:3:101"},"nativeSrc":"32849:20:101","nodeType":"YulFunctionCall","src":"32849:20:101"}],"functionName":{"name":"mstore","nativeSrc":"32839:6:101","nodeType":"YulIdentifier","src":"32839:6:101"},"nativeSrc":"32839:31:101","nodeType":"YulFunctionCall","src":"32839:31:101"},"nativeSrc":"32839:31:101","nodeType":"YulExpressionStatement","src":"32839:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"32886:1:101","nodeType":"YulLiteral","src":"32886:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"32889:4:101","nodeType":"YulLiteral","src":"32889:4:101","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"32879:6:101","nodeType":"YulIdentifier","src":"32879:6:101"},"nativeSrc":"32879:15:101","nodeType":"YulFunctionCall","src":"32879:15:101"},"nativeSrc":"32879:15:101","nodeType":"YulExpressionStatement","src":"32879:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"32910:1:101","nodeType":"YulLiteral","src":"32910:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"32913:4:101","nodeType":"YulLiteral","src":"32913:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"32903:6:101","nodeType":"YulIdentifier","src":"32903:6:101"},"nativeSrc":"32903:15:101","nodeType":"YulFunctionCall","src":"32903:15:101"},"nativeSrc":"32903:15:101","nodeType":"YulExpressionStatement","src":"32903:15:101"}]},"name":"panic_error_0x32","nativeSrc":"32797:127:101","nodeType":"YulFunctionDefinition","src":"32797:127:101"},{"body":{"nativeSrc":"33023:427:101","nodeType":"YulBlock","src":"33023:427:101","statements":[{"nativeSrc":"33033:51:101","nodeType":"YulVariableDeclaration","src":"33033:51:101","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"33072:11:101","nodeType":"YulIdentifier","src":"33072:11:101"}],"functionName":{"name":"calldataload","nativeSrc":"33059:12:101","nodeType":"YulIdentifier","src":"33059:12:101"},"nativeSrc":"33059:25:101","nodeType":"YulFunctionCall","src":"33059:25:101"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"33037:18:101","nodeType":"YulTypedName","src":"33037:18:101","type":""}]},{"body":{"nativeSrc":"33173:16:101","nodeType":"YulBlock","src":"33173:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"33182:1:101","nodeType":"YulLiteral","src":"33182:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"33185:1:101","nodeType":"YulLiteral","src":"33185:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"33175:6:101","nodeType":"YulIdentifier","src":"33175:6:101"},"nativeSrc":"33175:12:101","nodeType":"YulFunctionCall","src":"33175:12:101"},"nativeSrc":"33175:12:101","nodeType":"YulExpressionStatement","src":"33175:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"33107:18:101","nodeType":"YulIdentifier","src":"33107:18:101"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"33135:12:101","nodeType":"YulIdentifier","src":"33135:12:101"},"nativeSrc":"33135:14:101","nodeType":"YulFunctionCall","src":"33135:14:101"},{"name":"base_ref","nativeSrc":"33151:8:101","nodeType":"YulIdentifier","src":"33151:8:101"}],"functionName":{"name":"sub","nativeSrc":"33131:3:101","nodeType":"YulIdentifier","src":"33131:3:101"},"nativeSrc":"33131:29:101","nodeType":"YulFunctionCall","src":"33131:29:101"},{"arguments":[{"kind":"number","nativeSrc":"33166:2:101","nodeType":"YulLiteral","src":"33166:2:101","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"33162:3:101","nodeType":"YulIdentifier","src":"33162:3:101"},"nativeSrc":"33162:7:101","nodeType":"YulFunctionCall","src":"33162:7:101"}],"functionName":{"name":"add","nativeSrc":"33127:3:101","nodeType":"YulIdentifier","src":"33127:3:101"},"nativeSrc":"33127:43:101","nodeType":"YulFunctionCall","src":"33127:43:101"}],"functionName":{"name":"slt","nativeSrc":"33103:3:101","nodeType":"YulIdentifier","src":"33103:3:101"},"nativeSrc":"33103:68:101","nodeType":"YulFunctionCall","src":"33103:68:101"}],"functionName":{"name":"iszero","nativeSrc":"33096:6:101","nodeType":"YulIdentifier","src":"33096:6:101"},"nativeSrc":"33096:76:101","nodeType":"YulFunctionCall","src":"33096:76:101"},"nativeSrc":"33093:96:101","nodeType":"YulIf","src":"33093:96:101"},{"nativeSrc":"33198:47:101","nodeType":"YulVariableDeclaration","src":"33198:47:101","value":{"arguments":[{"name":"base_ref","nativeSrc":"33216:8:101","nodeType":"YulIdentifier","src":"33216:8:101"},{"name":"rel_offset_of_tail","nativeSrc":"33226:18:101","nodeType":"YulIdentifier","src":"33226:18:101"}],"functionName":{"name":"add","nativeSrc":"33212:3:101","nodeType":"YulIdentifier","src":"33212:3:101"},"nativeSrc":"33212:33:101","nodeType":"YulFunctionCall","src":"33212:33:101"},"variables":[{"name":"addr_1","nativeSrc":"33202:6:101","nodeType":"YulTypedName","src":"33202:6:101","type":""}]},{"nativeSrc":"33254:30:101","nodeType":"YulAssignment","src":"33254:30:101","value":{"arguments":[{"name":"addr_1","nativeSrc":"33277:6:101","nodeType":"YulIdentifier","src":"33277:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"33264:12:101","nodeType":"YulIdentifier","src":"33264:12:101"},"nativeSrc":"33264:20:101","nodeType":"YulFunctionCall","src":"33264:20:101"},"variableNames":[{"name":"length","nativeSrc":"33254:6:101","nodeType":"YulIdentifier","src":"33254:6:101"}]},{"body":{"nativeSrc":"33327:16:101","nodeType":"YulBlock","src":"33327:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"33336:1:101","nodeType":"YulLiteral","src":"33336:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"33339:1:101","nodeType":"YulLiteral","src":"33339:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"33329:6:101","nodeType":"YulIdentifier","src":"33329:6:101"},"nativeSrc":"33329:12:101","nodeType":"YulFunctionCall","src":"33329:12:101"},"nativeSrc":"33329:12:101","nodeType":"YulExpressionStatement","src":"33329:12:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"33299:6:101","nodeType":"YulIdentifier","src":"33299:6:101"},{"kind":"number","nativeSrc":"33307:18:101","nodeType":"YulLiteral","src":"33307:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"33296:2:101","nodeType":"YulIdentifier","src":"33296:2:101"},"nativeSrc":"33296:30:101","nodeType":"YulFunctionCall","src":"33296:30:101"},"nativeSrc":"33293:50:101","nodeType":"YulIf","src":"33293:50:101"},{"nativeSrc":"33352:25:101","nodeType":"YulAssignment","src":"33352:25:101","value":{"arguments":[{"name":"addr_1","nativeSrc":"33364:6:101","nodeType":"YulIdentifier","src":"33364:6:101"},{"kind":"number","nativeSrc":"33372:4:101","nodeType":"YulLiteral","src":"33372:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"33360:3:101","nodeType":"YulIdentifier","src":"33360:3:101"},"nativeSrc":"33360:17:101","nodeType":"YulFunctionCall","src":"33360:17:101"},"variableNames":[{"name":"addr","nativeSrc":"33352:4:101","nodeType":"YulIdentifier","src":"33352:4:101"}]},{"body":{"nativeSrc":"33428:16:101","nodeType":"YulBlock","src":"33428:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"33437:1:101","nodeType":"YulLiteral","src":"33437:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"33440:1:101","nodeType":"YulLiteral","src":"33440:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"33430:6:101","nodeType":"YulIdentifier","src":"33430:6:101"},"nativeSrc":"33430:12:101","nodeType":"YulFunctionCall","src":"33430:12:101"},"nativeSrc":"33430:12:101","nodeType":"YulExpressionStatement","src":"33430:12:101"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"33393:4:101","nodeType":"YulIdentifier","src":"33393:4:101"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"33403:12:101","nodeType":"YulIdentifier","src":"33403:12:101"},"nativeSrc":"33403:14:101","nodeType":"YulFunctionCall","src":"33403:14:101"},{"name":"length","nativeSrc":"33419:6:101","nodeType":"YulIdentifier","src":"33419:6:101"}],"functionName":{"name":"sub","nativeSrc":"33399:3:101","nodeType":"YulIdentifier","src":"33399:3:101"},"nativeSrc":"33399:27:101","nodeType":"YulFunctionCall","src":"33399:27:101"}],"functionName":{"name":"sgt","nativeSrc":"33389:3:101","nodeType":"YulIdentifier","src":"33389:3:101"},"nativeSrc":"33389:38:101","nodeType":"YulFunctionCall","src":"33389:38:101"},"nativeSrc":"33386:58:101","nodeType":"YulIf","src":"33386:58:101"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"32929:521:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"32980:8:101","nodeType":"YulTypedName","src":"32980:8:101","type":""},{"name":"ptr_to_tail","nativeSrc":"32990:11:101","nodeType":"YulTypedName","src":"32990:11:101","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"33006:4:101","nodeType":"YulTypedName","src":"33006:4:101","type":""},{"name":"length","nativeSrc":"33012:6:101","nodeType":"YulTypedName","src":"33012:6:101","type":""}],"src":"32929:521:101"},{"body":{"nativeSrc":"33504:162:101","nodeType":"YulBlock","src":"33504:162:101","statements":[{"nativeSrc":"33514:26:101","nodeType":"YulVariableDeclaration","src":"33514:26:101","value":{"arguments":[{"name":"value","nativeSrc":"33534:5:101","nodeType":"YulIdentifier","src":"33534:5:101"}],"functionName":{"name":"mload","nativeSrc":"33528:5:101","nodeType":"YulIdentifier","src":"33528:5:101"},"nativeSrc":"33528:12:101","nodeType":"YulFunctionCall","src":"33528:12:101"},"variables":[{"name":"length","nativeSrc":"33518:6:101","nodeType":"YulTypedName","src":"33518:6:101","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"33555:3:101","nodeType":"YulIdentifier","src":"33555:3:101"},{"arguments":[{"name":"value","nativeSrc":"33564:5:101","nodeType":"YulIdentifier","src":"33564:5:101"},{"kind":"number","nativeSrc":"33571:4:101","nodeType":"YulLiteral","src":"33571:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"33560:3:101","nodeType":"YulIdentifier","src":"33560:3:101"},"nativeSrc":"33560:16:101","nodeType":"YulFunctionCall","src":"33560:16:101"},{"name":"length","nativeSrc":"33578:6:101","nodeType":"YulIdentifier","src":"33578:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"33549:5:101","nodeType":"YulIdentifier","src":"33549:5:101"},"nativeSrc":"33549:36:101","nodeType":"YulFunctionCall","src":"33549:36:101"},"nativeSrc":"33549:36:101","nodeType":"YulExpressionStatement","src":"33549:36:101"},{"nativeSrc":"33594:26:101","nodeType":"YulVariableDeclaration","src":"33594:26:101","value":{"arguments":[{"name":"pos","nativeSrc":"33608:3:101","nodeType":"YulIdentifier","src":"33608:3:101"},{"name":"length","nativeSrc":"33613:6:101","nodeType":"YulIdentifier","src":"33613:6:101"}],"functionName":{"name":"add","nativeSrc":"33604:3:101","nodeType":"YulIdentifier","src":"33604:3:101"},"nativeSrc":"33604:16:101","nodeType":"YulFunctionCall","src":"33604:16:101"},"variables":[{"name":"_1","nativeSrc":"33598:2:101","nodeType":"YulTypedName","src":"33598:2:101","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"33636:2:101","nodeType":"YulIdentifier","src":"33636:2:101"},{"kind":"number","nativeSrc":"33640:1:101","nodeType":"YulLiteral","src":"33640:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"33629:6:101","nodeType":"YulIdentifier","src":"33629:6:101"},"nativeSrc":"33629:13:101","nodeType":"YulFunctionCall","src":"33629:13:101"},"nativeSrc":"33629:13:101","nodeType":"YulExpressionStatement","src":"33629:13:101"},{"nativeSrc":"33651:9:101","nodeType":"YulAssignment","src":"33651:9:101","value":{"name":"_1","nativeSrc":"33658:2:101","nodeType":"YulIdentifier","src":"33658:2:101"},"variableNames":[{"name":"end","nativeSrc":"33651:3:101","nodeType":"YulIdentifier","src":"33651:3:101"}]}]},"name":"abi_encode_bytes","nativeSrc":"33455:211:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"33481:5:101","nodeType":"YulTypedName","src":"33481:5:101","type":""},{"name":"pos","nativeSrc":"33488:3:101","nodeType":"YulTypedName","src":"33488:3:101","type":""}],"returnVariables":[{"name":"end","nativeSrc":"33496:3:101","nodeType":"YulTypedName","src":"33496:3:101","type":""}],"src":"33455:211:101"},{"body":{"nativeSrc":"33864:150:101","nodeType":"YulBlock","src":"33864:150:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"33887:3:101","nodeType":"YulIdentifier","src":"33887:3:101"},{"name":"value0","nativeSrc":"33892:6:101","nodeType":"YulIdentifier","src":"33892:6:101"},{"name":"value1","nativeSrc":"33900:6:101","nodeType":"YulIdentifier","src":"33900:6:101"}],"functionName":{"name":"calldatacopy","nativeSrc":"33874:12:101","nodeType":"YulIdentifier","src":"33874:12:101"},"nativeSrc":"33874:33:101","nodeType":"YulFunctionCall","src":"33874:33:101"},"nativeSrc":"33874:33:101","nodeType":"YulExpressionStatement","src":"33874:33:101"},{"nativeSrc":"33916:26:101","nodeType":"YulVariableDeclaration","src":"33916:26:101","value":{"arguments":[{"name":"pos","nativeSrc":"33930:3:101","nodeType":"YulIdentifier","src":"33930:3:101"},{"name":"value1","nativeSrc":"33935:6:101","nodeType":"YulIdentifier","src":"33935:6:101"}],"functionName":{"name":"add","nativeSrc":"33926:3:101","nodeType":"YulIdentifier","src":"33926:3:101"},"nativeSrc":"33926:16:101","nodeType":"YulFunctionCall","src":"33926:16:101"},"variables":[{"name":"_1","nativeSrc":"33920:2:101","nodeType":"YulTypedName","src":"33920:2:101","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"33958:2:101","nodeType":"YulIdentifier","src":"33958:2:101"},{"kind":"number","nativeSrc":"33962:1:101","nodeType":"YulLiteral","src":"33962:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"33951:6:101","nodeType":"YulIdentifier","src":"33951:6:101"},"nativeSrc":"33951:13:101","nodeType":"YulFunctionCall","src":"33951:13:101"},"nativeSrc":"33951:13:101","nodeType":"YulExpressionStatement","src":"33951:13:101"},{"nativeSrc":"33973:35:101","nodeType":"YulAssignment","src":"33973:35:101","value":{"arguments":[{"name":"value2","nativeSrc":"33997:6:101","nodeType":"YulIdentifier","src":"33997:6:101"},{"name":"_1","nativeSrc":"34005:2:101","nodeType":"YulIdentifier","src":"34005:2:101"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"33980:16:101","nodeType":"YulIdentifier","src":"33980:16:101"},"nativeSrc":"33980:28:101","nodeType":"YulFunctionCall","src":"33980:28:101"},"variableNames":[{"name":"end","nativeSrc":"33973:3:101","nodeType":"YulIdentifier","src":"33973:3:101"}]}]},"name":"abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"33671:343:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"33824:3:101","nodeType":"YulTypedName","src":"33824:3:101","type":""},{"name":"value2","nativeSrc":"33829:6:101","nodeType":"YulTypedName","src":"33829:6:101","type":""},{"name":"value1","nativeSrc":"33837:6:101","nodeType":"YulTypedName","src":"33837:6:101","type":""},{"name":"value0","nativeSrc":"33845:6:101","nodeType":"YulTypedName","src":"33845:6:101","type":""}],"returnVariables":[{"name":"end","nativeSrc":"33856:3:101","nodeType":"YulTypedName","src":"33856:3:101","type":""}],"src":"33671:343:101"},{"body":{"nativeSrc":"34206:78:101","nodeType":"YulBlock","src":"34206:78:101","statements":[{"nativeSrc":"34216:62:101","nodeType":"YulAssignment","src":"34216:62:101","value":{"arguments":[{"name":"value1","nativeSrc":"34240:6:101","nodeType":"YulIdentifier","src":"34240:6:101"},{"arguments":[{"name":"value0","nativeSrc":"34265:6:101","nodeType":"YulIdentifier","src":"34265:6:101"},{"name":"pos","nativeSrc":"34273:3:101","nodeType":"YulIdentifier","src":"34273:3:101"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"34248:16:101","nodeType":"YulIdentifier","src":"34248:16:101"},"nativeSrc":"34248:29:101","nodeType":"YulFunctionCall","src":"34248:29:101"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"34223:16:101","nodeType":"YulIdentifier","src":"34223:16:101"},"nativeSrc":"34223:55:101","nodeType":"YulFunctionCall","src":"34223:55:101"},"variableNames":[{"name":"end","nativeSrc":"34216:3:101","nodeType":"YulIdentifier","src":"34216:3:101"}]}]},"name":"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"34019:265:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"34174:3:101","nodeType":"YulTypedName","src":"34174:3:101","type":""},{"name":"value1","nativeSrc":"34179:6:101","nodeType":"YulTypedName","src":"34179:6:101","type":""},{"name":"value0","nativeSrc":"34187:6:101","nodeType":"YulTypedName","src":"34187:6:101","type":""}],"returnVariables":[{"name":"end","nativeSrc":"34198:3:101","nodeType":"YulTypedName","src":"34198:3:101","type":""}],"src":"34019:265:101"},{"body":{"nativeSrc":"34554:401:101","nodeType":"YulBlock","src":"34554:401:101","statements":[{"nativeSrc":"34564:27:101","nodeType":"YulAssignment","src":"34564:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"34576:9:101","nodeType":"YulIdentifier","src":"34576:9:101"},{"kind":"number","nativeSrc":"34587:3:101","nodeType":"YulLiteral","src":"34587:3:101","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"34572:3:101","nodeType":"YulIdentifier","src":"34572:3:101"},"nativeSrc":"34572:19:101","nodeType":"YulFunctionCall","src":"34572:19:101"},"variableNames":[{"name":"tail","nativeSrc":"34564:4:101","nodeType":"YulIdentifier","src":"34564:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"34607:9:101","nodeType":"YulIdentifier","src":"34607:9:101"},{"arguments":[{"name":"value0","nativeSrc":"34622:6:101","nodeType":"YulIdentifier","src":"34622:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34638:3:101","nodeType":"YulLiteral","src":"34638:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"34643:1:101","nodeType":"YulLiteral","src":"34643:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"34634:3:101","nodeType":"YulIdentifier","src":"34634:3:101"},"nativeSrc":"34634:11:101","nodeType":"YulFunctionCall","src":"34634:11:101"},{"kind":"number","nativeSrc":"34647:1:101","nodeType":"YulLiteral","src":"34647:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"34630:3:101","nodeType":"YulIdentifier","src":"34630:3:101"},"nativeSrc":"34630:19:101","nodeType":"YulFunctionCall","src":"34630:19:101"}],"functionName":{"name":"and","nativeSrc":"34618:3:101","nodeType":"YulIdentifier","src":"34618:3:101"},"nativeSrc":"34618:32:101","nodeType":"YulFunctionCall","src":"34618:32:101"}],"functionName":{"name":"mstore","nativeSrc":"34600:6:101","nodeType":"YulIdentifier","src":"34600:6:101"},"nativeSrc":"34600:51:101","nodeType":"YulFunctionCall","src":"34600:51:101"},"nativeSrc":"34600:51:101","nodeType":"YulExpressionStatement","src":"34600:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34671:9:101","nodeType":"YulIdentifier","src":"34671:9:101"},{"kind":"number","nativeSrc":"34682:2:101","nodeType":"YulLiteral","src":"34682:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"34667:3:101","nodeType":"YulIdentifier","src":"34667:3:101"},"nativeSrc":"34667:18:101","nodeType":"YulFunctionCall","src":"34667:18:101"},{"arguments":[{"name":"value1","nativeSrc":"34691:6:101","nodeType":"YulIdentifier","src":"34691:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34707:3:101","nodeType":"YulLiteral","src":"34707:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"34712:1:101","nodeType":"YulLiteral","src":"34712:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"34703:3:101","nodeType":"YulIdentifier","src":"34703:3:101"},"nativeSrc":"34703:11:101","nodeType":"YulFunctionCall","src":"34703:11:101"},{"kind":"number","nativeSrc":"34716:1:101","nodeType":"YulLiteral","src":"34716:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"34699:3:101","nodeType":"YulIdentifier","src":"34699:3:101"},"nativeSrc":"34699:19:101","nodeType":"YulFunctionCall","src":"34699:19:101"}],"functionName":{"name":"and","nativeSrc":"34687:3:101","nodeType":"YulIdentifier","src":"34687:3:101"},"nativeSrc":"34687:32:101","nodeType":"YulFunctionCall","src":"34687:32:101"}],"functionName":{"name":"mstore","nativeSrc":"34660:6:101","nodeType":"YulIdentifier","src":"34660:6:101"},"nativeSrc":"34660:60:101","nodeType":"YulFunctionCall","src":"34660:60:101"},"nativeSrc":"34660:60:101","nodeType":"YulExpressionStatement","src":"34660:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34740:9:101","nodeType":"YulIdentifier","src":"34740:9:101"},{"kind":"number","nativeSrc":"34751:2:101","nodeType":"YulLiteral","src":"34751:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"34736:3:101","nodeType":"YulIdentifier","src":"34736:3:101"},"nativeSrc":"34736:18:101","nodeType":"YulFunctionCall","src":"34736:18:101"},{"name":"value2","nativeSrc":"34756:6:101","nodeType":"YulIdentifier","src":"34756:6:101"}],"functionName":{"name":"mstore","nativeSrc":"34729:6:101","nodeType":"YulIdentifier","src":"34729:6:101"},"nativeSrc":"34729:34:101","nodeType":"YulFunctionCall","src":"34729:34:101"},"nativeSrc":"34729:34:101","nodeType":"YulExpressionStatement","src":"34729:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34783:9:101","nodeType":"YulIdentifier","src":"34783:9:101"},{"kind":"number","nativeSrc":"34794:2:101","nodeType":"YulLiteral","src":"34794:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"34779:3:101","nodeType":"YulIdentifier","src":"34779:3:101"},"nativeSrc":"34779:18:101","nodeType":"YulFunctionCall","src":"34779:18:101"},{"name":"value3","nativeSrc":"34799:6:101","nodeType":"YulIdentifier","src":"34799:6:101"}],"functionName":{"name":"mstore","nativeSrc":"34772:6:101","nodeType":"YulIdentifier","src":"34772:6:101"},"nativeSrc":"34772:34:101","nodeType":"YulFunctionCall","src":"34772:34:101"},"nativeSrc":"34772:34:101","nodeType":"YulExpressionStatement","src":"34772:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34826:9:101","nodeType":"YulIdentifier","src":"34826:9:101"},{"kind":"number","nativeSrc":"34837:3:101","nodeType":"YulLiteral","src":"34837:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"34822:3:101","nodeType":"YulIdentifier","src":"34822:3:101"},"nativeSrc":"34822:19:101","nodeType":"YulFunctionCall","src":"34822:19:101"},{"arguments":[{"name":"value4","nativeSrc":"34847:6:101","nodeType":"YulIdentifier","src":"34847:6:101"},{"kind":"number","nativeSrc":"34855:4:101","nodeType":"YulLiteral","src":"34855:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"34843:3:101","nodeType":"YulIdentifier","src":"34843:3:101"},"nativeSrc":"34843:17:101","nodeType":"YulFunctionCall","src":"34843:17:101"}],"functionName":{"name":"mstore","nativeSrc":"34815:6:101","nodeType":"YulIdentifier","src":"34815:6:101"},"nativeSrc":"34815:46:101","nodeType":"YulFunctionCall","src":"34815:46:101"},"nativeSrc":"34815:46:101","nodeType":"YulExpressionStatement","src":"34815:46:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34881:9:101","nodeType":"YulIdentifier","src":"34881:9:101"},{"kind":"number","nativeSrc":"34892:3:101","nodeType":"YulLiteral","src":"34892:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"34877:3:101","nodeType":"YulIdentifier","src":"34877:3:101"},"nativeSrc":"34877:19:101","nodeType":"YulFunctionCall","src":"34877:19:101"},{"name":"value5","nativeSrc":"34898:6:101","nodeType":"YulIdentifier","src":"34898:6:101"}],"functionName":{"name":"mstore","nativeSrc":"34870:6:101","nodeType":"YulIdentifier","src":"34870:6:101"},"nativeSrc":"34870:35:101","nodeType":"YulFunctionCall","src":"34870:35:101"},"nativeSrc":"34870:35:101","nodeType":"YulExpressionStatement","src":"34870:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34925:9:101","nodeType":"YulIdentifier","src":"34925:9:101"},{"kind":"number","nativeSrc":"34936:3:101","nodeType":"YulLiteral","src":"34936:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"34921:3:101","nodeType":"YulIdentifier","src":"34921:3:101"},"nativeSrc":"34921:19:101","nodeType":"YulFunctionCall","src":"34921:19:101"},{"name":"value6","nativeSrc":"34942:6:101","nodeType":"YulIdentifier","src":"34942:6:101"}],"functionName":{"name":"mstore","nativeSrc":"34914:6:101","nodeType":"YulIdentifier","src":"34914:6:101"},"nativeSrc":"34914:35:101","nodeType":"YulFunctionCall","src":"34914:35:101"},"nativeSrc":"34914:35:101","nodeType":"YulExpressionStatement","src":"34914:35:101"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"34289:666:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34475:9:101","nodeType":"YulTypedName","src":"34475:9:101","type":""},{"name":"value6","nativeSrc":"34486:6:101","nodeType":"YulTypedName","src":"34486:6:101","type":""},{"name":"value5","nativeSrc":"34494:6:101","nodeType":"YulTypedName","src":"34494:6:101","type":""},{"name":"value4","nativeSrc":"34502:6:101","nodeType":"YulTypedName","src":"34502:6:101","type":""},{"name":"value3","nativeSrc":"34510:6:101","nodeType":"YulTypedName","src":"34510:6:101","type":""},{"name":"value2","nativeSrc":"34518:6:101","nodeType":"YulTypedName","src":"34518:6:101","type":""},{"name":"value1","nativeSrc":"34526:6:101","nodeType":"YulTypedName","src":"34526:6:101","type":""},{"name":"value0","nativeSrc":"34534:6:101","nodeType":"YulTypedName","src":"34534:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"34545:4:101","nodeType":"YulTypedName","src":"34545:4:101","type":""}],"src":"34289:666:101"},{"body":{"nativeSrc":"35145:284:101","nodeType":"YulBlock","src":"35145:284:101","statements":[{"nativeSrc":"35155:27:101","nodeType":"YulAssignment","src":"35155:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"35167:9:101","nodeType":"YulIdentifier","src":"35167:9:101"},{"kind":"number","nativeSrc":"35178:3:101","nodeType":"YulLiteral","src":"35178:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"35163:3:101","nodeType":"YulIdentifier","src":"35163:3:101"},"nativeSrc":"35163:19:101","nodeType":"YulFunctionCall","src":"35163:19:101"},"variableNames":[{"name":"tail","nativeSrc":"35155:4:101","nodeType":"YulIdentifier","src":"35155:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35198:9:101","nodeType":"YulIdentifier","src":"35198:9:101"},{"name":"value0","nativeSrc":"35209:6:101","nodeType":"YulIdentifier","src":"35209:6:101"}],"functionName":{"name":"mstore","nativeSrc":"35191:6:101","nodeType":"YulIdentifier","src":"35191:6:101"},"nativeSrc":"35191:25:101","nodeType":"YulFunctionCall","src":"35191:25:101"},"nativeSrc":"35191:25:101","nodeType":"YulExpressionStatement","src":"35191:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35236:9:101","nodeType":"YulIdentifier","src":"35236:9:101"},{"kind":"number","nativeSrc":"35247:2:101","nodeType":"YulLiteral","src":"35247:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35232:3:101","nodeType":"YulIdentifier","src":"35232:3:101"},"nativeSrc":"35232:18:101","nodeType":"YulFunctionCall","src":"35232:18:101"},{"arguments":[{"name":"value1","nativeSrc":"35256:6:101","nodeType":"YulIdentifier","src":"35256:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35272:3:101","nodeType":"YulLiteral","src":"35272:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"35277:1:101","nodeType":"YulLiteral","src":"35277:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"35268:3:101","nodeType":"YulIdentifier","src":"35268:3:101"},"nativeSrc":"35268:11:101","nodeType":"YulFunctionCall","src":"35268:11:101"},{"kind":"number","nativeSrc":"35281:1:101","nodeType":"YulLiteral","src":"35281:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"35264:3:101","nodeType":"YulIdentifier","src":"35264:3:101"},"nativeSrc":"35264:19:101","nodeType":"YulFunctionCall","src":"35264:19:101"}],"functionName":{"name":"and","nativeSrc":"35252:3:101","nodeType":"YulIdentifier","src":"35252:3:101"},"nativeSrc":"35252:32:101","nodeType":"YulFunctionCall","src":"35252:32:101"}],"functionName":{"name":"mstore","nativeSrc":"35225:6:101","nodeType":"YulIdentifier","src":"35225:6:101"},"nativeSrc":"35225:60:101","nodeType":"YulFunctionCall","src":"35225:60:101"},"nativeSrc":"35225:60:101","nodeType":"YulExpressionStatement","src":"35225:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35305:9:101","nodeType":"YulIdentifier","src":"35305:9:101"},{"kind":"number","nativeSrc":"35316:2:101","nodeType":"YulLiteral","src":"35316:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35301:3:101","nodeType":"YulIdentifier","src":"35301:3:101"},"nativeSrc":"35301:18:101","nodeType":"YulFunctionCall","src":"35301:18:101"},{"arguments":[{"name":"value2","nativeSrc":"35325:6:101","nodeType":"YulIdentifier","src":"35325:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35341:3:101","nodeType":"YulLiteral","src":"35341:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"35346:1:101","nodeType":"YulLiteral","src":"35346:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"35337:3:101","nodeType":"YulIdentifier","src":"35337:3:101"},"nativeSrc":"35337:11:101","nodeType":"YulFunctionCall","src":"35337:11:101"},{"kind":"number","nativeSrc":"35350:1:101","nodeType":"YulLiteral","src":"35350:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"35333:3:101","nodeType":"YulIdentifier","src":"35333:3:101"},"nativeSrc":"35333:19:101","nodeType":"YulFunctionCall","src":"35333:19:101"}],"functionName":{"name":"and","nativeSrc":"35321:3:101","nodeType":"YulIdentifier","src":"35321:3:101"},"nativeSrc":"35321:32:101","nodeType":"YulFunctionCall","src":"35321:32:101"}],"functionName":{"name":"mstore","nativeSrc":"35294:6:101","nodeType":"YulIdentifier","src":"35294:6:101"},"nativeSrc":"35294:60:101","nodeType":"YulFunctionCall","src":"35294:60:101"},"nativeSrc":"35294:60:101","nodeType":"YulExpressionStatement","src":"35294:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35374:9:101","nodeType":"YulIdentifier","src":"35374:9:101"},{"kind":"number","nativeSrc":"35385:2:101","nodeType":"YulLiteral","src":"35385:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"35370:3:101","nodeType":"YulIdentifier","src":"35370:3:101"},"nativeSrc":"35370:18:101","nodeType":"YulFunctionCall","src":"35370:18:101"},{"arguments":[{"name":"value3","nativeSrc":"35394:6:101","nodeType":"YulIdentifier","src":"35394:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35410:3:101","nodeType":"YulLiteral","src":"35410:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"35415:1:101","nodeType":"YulLiteral","src":"35415:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"35406:3:101","nodeType":"YulIdentifier","src":"35406:3:101"},"nativeSrc":"35406:11:101","nodeType":"YulFunctionCall","src":"35406:11:101"},{"kind":"number","nativeSrc":"35419:1:101","nodeType":"YulLiteral","src":"35419:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"35402:3:101","nodeType":"YulIdentifier","src":"35402:3:101"},"nativeSrc":"35402:19:101","nodeType":"YulFunctionCall","src":"35402:19:101"}],"functionName":{"name":"and","nativeSrc":"35390:3:101","nodeType":"YulIdentifier","src":"35390:3:101"},"nativeSrc":"35390:32:101","nodeType":"YulFunctionCall","src":"35390:32:101"}],"functionName":{"name":"mstore","nativeSrc":"35363:6:101","nodeType":"YulIdentifier","src":"35363:6:101"},"nativeSrc":"35363:60:101","nodeType":"YulFunctionCall","src":"35363:60:101"},"nativeSrc":"35363:60:101","nodeType":"YulExpressionStatement","src":"35363:60:101"}]},"name":"abi_encode_tuple_t_uint256_t_address_t_address_t_address__to_t_uint256_t_address_t_address_t_address__fromStack_reversed","nativeSrc":"34960:469:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35090:9:101","nodeType":"YulTypedName","src":"35090:9:101","type":""},{"name":"value3","nativeSrc":"35101:6:101","nodeType":"YulTypedName","src":"35101:6:101","type":""},{"name":"value2","nativeSrc":"35109:6:101","nodeType":"YulTypedName","src":"35109:6:101","type":""},{"name":"value1","nativeSrc":"35117:6:101","nodeType":"YulTypedName","src":"35117:6:101","type":""},{"name":"value0","nativeSrc":"35125:6:101","nodeType":"YulTypedName","src":"35125:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35136:4:101","nodeType":"YulTypedName","src":"35136:4:101","type":""}],"src":"34960:469:101"},{"body":{"nativeSrc":"35563:145:101","nodeType":"YulBlock","src":"35563:145:101","statements":[{"nativeSrc":"35573:26:101","nodeType":"YulAssignment","src":"35573:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"35585:9:101","nodeType":"YulIdentifier","src":"35585:9:101"},{"kind":"number","nativeSrc":"35596:2:101","nodeType":"YulLiteral","src":"35596:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35581:3:101","nodeType":"YulIdentifier","src":"35581:3:101"},"nativeSrc":"35581:18:101","nodeType":"YulFunctionCall","src":"35581:18:101"},"variableNames":[{"name":"tail","nativeSrc":"35573:4:101","nodeType":"YulIdentifier","src":"35573:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35615:9:101","nodeType":"YulIdentifier","src":"35615:9:101"},{"arguments":[{"name":"value0","nativeSrc":"35630:6:101","nodeType":"YulIdentifier","src":"35630:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35646:3:101","nodeType":"YulLiteral","src":"35646:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"35651:1:101","nodeType":"YulLiteral","src":"35651:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"35642:3:101","nodeType":"YulIdentifier","src":"35642:3:101"},"nativeSrc":"35642:11:101","nodeType":"YulFunctionCall","src":"35642:11:101"},{"kind":"number","nativeSrc":"35655:1:101","nodeType":"YulLiteral","src":"35655:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"35638:3:101","nodeType":"YulIdentifier","src":"35638:3:101"},"nativeSrc":"35638:19:101","nodeType":"YulFunctionCall","src":"35638:19:101"}],"functionName":{"name":"and","nativeSrc":"35626:3:101","nodeType":"YulIdentifier","src":"35626:3:101"},"nativeSrc":"35626:32:101","nodeType":"YulFunctionCall","src":"35626:32:101"}],"functionName":{"name":"mstore","nativeSrc":"35608:6:101","nodeType":"YulIdentifier","src":"35608:6:101"},"nativeSrc":"35608:51:101","nodeType":"YulFunctionCall","src":"35608:51:101"},"nativeSrc":"35608:51:101","nodeType":"YulExpressionStatement","src":"35608:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35679:9:101","nodeType":"YulIdentifier","src":"35679:9:101"},{"kind":"number","nativeSrc":"35690:2:101","nodeType":"YulLiteral","src":"35690:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35675:3:101","nodeType":"YulIdentifier","src":"35675:3:101"},"nativeSrc":"35675:18:101","nodeType":"YulFunctionCall","src":"35675:18:101"},{"name":"value1","nativeSrc":"35695:6:101","nodeType":"YulIdentifier","src":"35695:6:101"}],"functionName":{"name":"mstore","nativeSrc":"35668:6:101","nodeType":"YulIdentifier","src":"35668:6:101"},"nativeSrc":"35668:34:101","nodeType":"YulFunctionCall","src":"35668:34:101"},"nativeSrc":"35668:34:101","nodeType":"YulExpressionStatement","src":"35668:34:101"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"35434:274:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35524:9:101","nodeType":"YulTypedName","src":"35524:9:101","type":""},{"name":"value1","nativeSrc":"35535:6:101","nodeType":"YulTypedName","src":"35535:6:101","type":""},{"name":"value0","nativeSrc":"35543:6:101","nodeType":"YulTypedName","src":"35543:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35554:4:101","nodeType":"YulTypedName","src":"35554:4:101","type":""}],"src":"35434:274:101"},{"body":{"nativeSrc":"35868:181:101","nodeType":"YulBlock","src":"35868:181:101","statements":[{"nativeSrc":"35878:26:101","nodeType":"YulAssignment","src":"35878:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"35890:9:101","nodeType":"YulIdentifier","src":"35890:9:101"},{"kind":"number","nativeSrc":"35901:2:101","nodeType":"YulLiteral","src":"35901:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"35886:3:101","nodeType":"YulIdentifier","src":"35886:3:101"},"nativeSrc":"35886:18:101","nodeType":"YulFunctionCall","src":"35886:18:101"},"variableNames":[{"name":"tail","nativeSrc":"35878:4:101","nodeType":"YulIdentifier","src":"35878:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35920:9:101","nodeType":"YulIdentifier","src":"35920:9:101"},{"name":"value0","nativeSrc":"35931:6:101","nodeType":"YulIdentifier","src":"35931:6:101"}],"functionName":{"name":"mstore","nativeSrc":"35913:6:101","nodeType":"YulIdentifier","src":"35913:6:101"},"nativeSrc":"35913:25:101","nodeType":"YulFunctionCall","src":"35913:25:101"},"nativeSrc":"35913:25:101","nodeType":"YulExpressionStatement","src":"35913:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35958:9:101","nodeType":"YulIdentifier","src":"35958:9:101"},{"kind":"number","nativeSrc":"35969:2:101","nodeType":"YulLiteral","src":"35969:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35954:3:101","nodeType":"YulIdentifier","src":"35954:3:101"},"nativeSrc":"35954:18:101","nodeType":"YulFunctionCall","src":"35954:18:101"},{"arguments":[{"name":"value1","nativeSrc":"35978:6:101","nodeType":"YulIdentifier","src":"35978:6:101"},{"kind":"number","nativeSrc":"35986:12:101","nodeType":"YulLiteral","src":"35986:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"35974:3:101","nodeType":"YulIdentifier","src":"35974:3:101"},"nativeSrc":"35974:25:101","nodeType":"YulFunctionCall","src":"35974:25:101"}],"functionName":{"name":"mstore","nativeSrc":"35947:6:101","nodeType":"YulIdentifier","src":"35947:6:101"},"nativeSrc":"35947:53:101","nodeType":"YulFunctionCall","src":"35947:53:101"},"nativeSrc":"35947:53:101","nodeType":"YulExpressionStatement","src":"35947:53:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36020:9:101","nodeType":"YulIdentifier","src":"36020:9:101"},{"kind":"number","nativeSrc":"36031:2:101","nodeType":"YulLiteral","src":"36031:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"36016:3:101","nodeType":"YulIdentifier","src":"36016:3:101"},"nativeSrc":"36016:18:101","nodeType":"YulFunctionCall","src":"36016:18:101"},{"name":"value2","nativeSrc":"36036:6:101","nodeType":"YulIdentifier","src":"36036:6:101"}],"functionName":{"name":"mstore","nativeSrc":"36009:6:101","nodeType":"YulIdentifier","src":"36009:6:101"},"nativeSrc":"36009:34:101","nodeType":"YulFunctionCall","src":"36009:34:101"},"nativeSrc":"36009:34:101","nodeType":"YulExpressionStatement","src":"36009:34:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint40_t_uint256__to_t_uint256_t_uint40_t_uint256__fromStack_reversed","nativeSrc":"35713:336:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35821:9:101","nodeType":"YulTypedName","src":"35821:9:101","type":""},{"name":"value2","nativeSrc":"35832:6:101","nodeType":"YulTypedName","src":"35832:6:101","type":""},{"name":"value1","nativeSrc":"35840:6:101","nodeType":"YulTypedName","src":"35840:6:101","type":""},{"name":"value0","nativeSrc":"35848:6:101","nodeType":"YulTypedName","src":"35848:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35859:4:101","nodeType":"YulTypedName","src":"35859:4:101","type":""}],"src":"35713:336:101"},{"body":{"nativeSrc":"36102:77:101","nodeType":"YulBlock","src":"36102:77:101","statements":[{"nativeSrc":"36112:16:101","nodeType":"YulAssignment","src":"36112:16:101","value":{"arguments":[{"name":"x","nativeSrc":"36123:1:101","nodeType":"YulIdentifier","src":"36123:1:101"},{"name":"y","nativeSrc":"36126:1:101","nodeType":"YulIdentifier","src":"36126:1:101"}],"functionName":{"name":"add","nativeSrc":"36119:3:101","nodeType":"YulIdentifier","src":"36119:3:101"},"nativeSrc":"36119:9:101","nodeType":"YulFunctionCall","src":"36119:9:101"},"variableNames":[{"name":"sum","nativeSrc":"36112:3:101","nodeType":"YulIdentifier","src":"36112:3:101"}]},{"body":{"nativeSrc":"36151:22:101","nodeType":"YulBlock","src":"36151:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"36153:16:101","nodeType":"YulIdentifier","src":"36153:16:101"},"nativeSrc":"36153:18:101","nodeType":"YulFunctionCall","src":"36153:18:101"},"nativeSrc":"36153:18:101","nodeType":"YulExpressionStatement","src":"36153:18:101"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"36143:1:101","nodeType":"YulIdentifier","src":"36143:1:101"},{"name":"sum","nativeSrc":"36146:3:101","nodeType":"YulIdentifier","src":"36146:3:101"}],"functionName":{"name":"gt","nativeSrc":"36140:2:101","nodeType":"YulIdentifier","src":"36140:2:101"},"nativeSrc":"36140:10:101","nodeType":"YulFunctionCall","src":"36140:10:101"},"nativeSrc":"36137:36:101","nodeType":"YulIf","src":"36137:36:101"}]},"name":"checked_add_t_uint256","nativeSrc":"36054:125:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"36085:1:101","nodeType":"YulTypedName","src":"36085:1:101","type":""},{"name":"y","nativeSrc":"36088:1:101","nodeType":"YulTypedName","src":"36088:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"36094:3:101","nodeType":"YulTypedName","src":"36094:3:101","type":""}],"src":"36054:125:101"},{"body":{"nativeSrc":"36232:192:101","nodeType":"YulBlock","src":"36232:192:101","statements":[{"nativeSrc":"36242:98:101","nodeType":"YulAssignment","src":"36242:98:101","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"36257:1:101","nodeType":"YulIdentifier","src":"36257:1:101"},{"kind":"number","nativeSrc":"36260:34:101","nodeType":"YulLiteral","src":"36260:34:101","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"36253:3:101","nodeType":"YulIdentifier","src":"36253:3:101"},"nativeSrc":"36253:42:101","nodeType":"YulFunctionCall","src":"36253:42:101"},{"arguments":[{"name":"y","nativeSrc":"36301:1:101","nodeType":"YulIdentifier","src":"36301:1:101"},{"kind":"number","nativeSrc":"36304:34:101","nodeType":"YulLiteral","src":"36304:34:101","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"36297:3:101","nodeType":"YulIdentifier","src":"36297:3:101"},"nativeSrc":"36297:42:101","nodeType":"YulFunctionCall","src":"36297:42:101"}],"functionName":{"name":"add","nativeSrc":"36249:3:101","nodeType":"YulIdentifier","src":"36249:3:101"},"nativeSrc":"36249:91:101","nodeType":"YulFunctionCall","src":"36249:91:101"},"variableNames":[{"name":"sum","nativeSrc":"36242:3:101","nodeType":"YulIdentifier","src":"36242:3:101"}]},{"body":{"nativeSrc":"36396:22:101","nodeType":"YulBlock","src":"36396:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"36398:16:101","nodeType":"YulIdentifier","src":"36398:16:101"},"nativeSrc":"36398:18:101","nodeType":"YulFunctionCall","src":"36398:18:101"},"nativeSrc":"36398:18:101","nodeType":"YulExpressionStatement","src":"36398:18:101"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"36355:3:101","nodeType":"YulIdentifier","src":"36355:3:101"},{"kind":"number","nativeSrc":"36360:34:101","nodeType":"YulLiteral","src":"36360:34:101","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"36352:2:101","nodeType":"YulIdentifier","src":"36352:2:101"},"nativeSrc":"36352:43:101","nodeType":"YulFunctionCall","src":"36352:43:101"},"nativeSrc":"36349:69:101","nodeType":"YulIf","src":"36349:69:101"}]},"name":"checked_add_t_uint128","nativeSrc":"36184:240:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"36215:1:101","nodeType":"YulTypedName","src":"36215:1:101","type":""},{"name":"y","nativeSrc":"36218:1:101","nodeType":"YulTypedName","src":"36218:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"36224:3:101","nodeType":"YulTypedName","src":"36224:3:101","type":""}],"src":"36184:240:101"},{"body":{"nativeSrc":"36478:194:101","nodeType":"YulBlock","src":"36478:194:101","statements":[{"nativeSrc":"36488:99:101","nodeType":"YulAssignment","src":"36488:99:101","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"36504:1:101","nodeType":"YulIdentifier","src":"36504:1:101"},{"kind":"number","nativeSrc":"36507:34:101","nodeType":"YulLiteral","src":"36507:34:101","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"36500:3:101","nodeType":"YulIdentifier","src":"36500:3:101"},"nativeSrc":"36500:42:101","nodeType":"YulFunctionCall","src":"36500:42:101"},{"arguments":[{"name":"y","nativeSrc":"36548:1:101","nodeType":"YulIdentifier","src":"36548:1:101"},{"kind":"number","nativeSrc":"36551:34:101","nodeType":"YulLiteral","src":"36551:34:101","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"36544:3:101","nodeType":"YulIdentifier","src":"36544:3:101"},"nativeSrc":"36544:42:101","nodeType":"YulFunctionCall","src":"36544:42:101"}],"functionName":{"name":"sub","nativeSrc":"36496:3:101","nodeType":"YulIdentifier","src":"36496:3:101"},"nativeSrc":"36496:91:101","nodeType":"YulFunctionCall","src":"36496:91:101"},"variableNames":[{"name":"diff","nativeSrc":"36488:4:101","nodeType":"YulIdentifier","src":"36488:4:101"}]},{"body":{"nativeSrc":"36644:22:101","nodeType":"YulBlock","src":"36644:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"36646:16:101","nodeType":"YulIdentifier","src":"36646:16:101"},"nativeSrc":"36646:18:101","nodeType":"YulFunctionCall","src":"36646:18:101"},"nativeSrc":"36646:18:101","nodeType":"YulExpressionStatement","src":"36646:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"36602:4:101","nodeType":"YulIdentifier","src":"36602:4:101"},{"kind":"number","nativeSrc":"36608:34:101","nodeType":"YulLiteral","src":"36608:34:101","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"36599:2:101","nodeType":"YulIdentifier","src":"36599:2:101"},"nativeSrc":"36599:44:101","nodeType":"YulFunctionCall","src":"36599:44:101"},"nativeSrc":"36596:70:101","nodeType":"YulIf","src":"36596:70:101"}]},"name":"checked_sub_t_uint128","nativeSrc":"36429:243:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"36460:1:101","nodeType":"YulTypedName","src":"36460:1:101","type":""},{"name":"y","nativeSrc":"36463:1:101","nodeType":"YulTypedName","src":"36463:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"36469:4:101","nodeType":"YulTypedName","src":"36469:4:101","type":""}],"src":"36429:243:101"},{"body":{"nativeSrc":"36781:170:101","nodeType":"YulBlock","src":"36781:170:101","statements":[{"body":{"nativeSrc":"36827:16:101","nodeType":"YulBlock","src":"36827:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"36836:1:101","nodeType":"YulLiteral","src":"36836:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"36839:1:101","nodeType":"YulLiteral","src":"36839:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"36829:6:101","nodeType":"YulIdentifier","src":"36829:6:101"},"nativeSrc":"36829:12:101","nodeType":"YulFunctionCall","src":"36829:12:101"},"nativeSrc":"36829:12:101","nodeType":"YulExpressionStatement","src":"36829:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"36802:7:101","nodeType":"YulIdentifier","src":"36802:7:101"},{"name":"headStart","nativeSrc":"36811:9:101","nodeType":"YulIdentifier","src":"36811:9:101"}],"functionName":{"name":"sub","nativeSrc":"36798:3:101","nodeType":"YulIdentifier","src":"36798:3:101"},"nativeSrc":"36798:23:101","nodeType":"YulFunctionCall","src":"36798:23:101"},{"kind":"number","nativeSrc":"36823:2:101","nodeType":"YulLiteral","src":"36823:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"36794:3:101","nodeType":"YulIdentifier","src":"36794:3:101"},"nativeSrc":"36794:32:101","nodeType":"YulFunctionCall","src":"36794:32:101"},"nativeSrc":"36791:52:101","nodeType":"YulIf","src":"36791:52:101"},{"nativeSrc":"36852:29:101","nodeType":"YulVariableDeclaration","src":"36852:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"36871:9:101","nodeType":"YulIdentifier","src":"36871:9:101"}],"functionName":{"name":"mload","nativeSrc":"36865:5:101","nodeType":"YulIdentifier","src":"36865:5:101"},"nativeSrc":"36865:16:101","nodeType":"YulFunctionCall","src":"36865:16:101"},"variables":[{"name":"value","nativeSrc":"36856:5:101","nodeType":"YulTypedName","src":"36856:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"36915:5:101","nodeType":"YulIdentifier","src":"36915:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"36890:24:101","nodeType":"YulIdentifier","src":"36890:24:101"},"nativeSrc":"36890:31:101","nodeType":"YulFunctionCall","src":"36890:31:101"},"nativeSrc":"36890:31:101","nodeType":"YulExpressionStatement","src":"36890:31:101"},{"nativeSrc":"36930:15:101","nodeType":"YulAssignment","src":"36930:15:101","value":{"name":"value","nativeSrc":"36940:5:101","nodeType":"YulIdentifier","src":"36940:5:101"},"variableNames":[{"name":"value0","nativeSrc":"36930:6:101","nodeType":"YulIdentifier","src":"36930:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory","nativeSrc":"36677:274:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36747:9:101","nodeType":"YulTypedName","src":"36747:9:101","type":""},{"name":"dataEnd","nativeSrc":"36758:7:101","nodeType":"YulTypedName","src":"36758:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"36770:6:101","nodeType":"YulTypedName","src":"36770:6:101","type":""}],"src":"36677:274:101"},{"body":{"nativeSrc":"37037:103:101","nodeType":"YulBlock","src":"37037:103:101","statements":[{"body":{"nativeSrc":"37083:16:101","nodeType":"YulBlock","src":"37083:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"37092:1:101","nodeType":"YulLiteral","src":"37092:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"37095:1:101","nodeType":"YulLiteral","src":"37095:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"37085:6:101","nodeType":"YulIdentifier","src":"37085:6:101"},"nativeSrc":"37085:12:101","nodeType":"YulFunctionCall","src":"37085:12:101"},"nativeSrc":"37085:12:101","nodeType":"YulExpressionStatement","src":"37085:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"37058:7:101","nodeType":"YulIdentifier","src":"37058:7:101"},{"name":"headStart","nativeSrc":"37067:9:101","nodeType":"YulIdentifier","src":"37067:9:101"}],"functionName":{"name":"sub","nativeSrc":"37054:3:101","nodeType":"YulIdentifier","src":"37054:3:101"},"nativeSrc":"37054:23:101","nodeType":"YulFunctionCall","src":"37054:23:101"},{"kind":"number","nativeSrc":"37079:2:101","nodeType":"YulLiteral","src":"37079:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"37050:3:101","nodeType":"YulIdentifier","src":"37050:3:101"},"nativeSrc":"37050:32:101","nodeType":"YulFunctionCall","src":"37050:32:101"},"nativeSrc":"37047:52:101","nodeType":"YulIf","src":"37047:52:101"},{"nativeSrc":"37108:26:101","nodeType":"YulAssignment","src":"37108:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"37124:9:101","nodeType":"YulIdentifier","src":"37124:9:101"}],"functionName":{"name":"mload","nativeSrc":"37118:5:101","nodeType":"YulIdentifier","src":"37118:5:101"},"nativeSrc":"37118:16:101","nodeType":"YulFunctionCall","src":"37118:16:101"},"variableNames":[{"name":"value0","nativeSrc":"37108:6:101","nodeType":"YulIdentifier","src":"37108:6:101"}]}]},"name":"abi_decode_tuple_t_bytes32_fromMemory","nativeSrc":"36956:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37003:9:101","nodeType":"YulTypedName","src":"37003:9:101","type":""},{"name":"dataEnd","nativeSrc":"37014:7:101","nodeType":"YulTypedName","src":"37014:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"37026:6:101","nodeType":"YulTypedName","src":"37026:6:101","type":""}],"src":"36956:184:101"},{"body":{"nativeSrc":"37330:258:101","nodeType":"YulBlock","src":"37330:258:101","statements":[{"nativeSrc":"37340:27:101","nodeType":"YulAssignment","src":"37340:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"37352:9:101","nodeType":"YulIdentifier","src":"37352:9:101"},{"kind":"number","nativeSrc":"37363:3:101","nodeType":"YulLiteral","src":"37363:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"37348:3:101","nodeType":"YulIdentifier","src":"37348:3:101"},"nativeSrc":"37348:19:101","nodeType":"YulFunctionCall","src":"37348:19:101"},"variableNames":[{"name":"tail","nativeSrc":"37340:4:101","nodeType":"YulIdentifier","src":"37340:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"37383:9:101","nodeType":"YulIdentifier","src":"37383:9:101"},{"arguments":[{"name":"value0","nativeSrc":"37398:6:101","nodeType":"YulIdentifier","src":"37398:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37414:3:101","nodeType":"YulLiteral","src":"37414:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"37419:1:101","nodeType":"YulLiteral","src":"37419:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"37410:3:101","nodeType":"YulIdentifier","src":"37410:3:101"},"nativeSrc":"37410:11:101","nodeType":"YulFunctionCall","src":"37410:11:101"},{"kind":"number","nativeSrc":"37423:1:101","nodeType":"YulLiteral","src":"37423:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"37406:3:101","nodeType":"YulIdentifier","src":"37406:3:101"},"nativeSrc":"37406:19:101","nodeType":"YulFunctionCall","src":"37406:19:101"}],"functionName":{"name":"and","nativeSrc":"37394:3:101","nodeType":"YulIdentifier","src":"37394:3:101"},"nativeSrc":"37394:32:101","nodeType":"YulFunctionCall","src":"37394:32:101"}],"functionName":{"name":"mstore","nativeSrc":"37376:6:101","nodeType":"YulIdentifier","src":"37376:6:101"},"nativeSrc":"37376:51:101","nodeType":"YulFunctionCall","src":"37376:51:101"},"nativeSrc":"37376:51:101","nodeType":"YulExpressionStatement","src":"37376:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37447:9:101","nodeType":"YulIdentifier","src":"37447:9:101"},{"kind":"number","nativeSrc":"37458:2:101","nodeType":"YulLiteral","src":"37458:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"37443:3:101","nodeType":"YulIdentifier","src":"37443:3:101"},"nativeSrc":"37443:18:101","nodeType":"YulFunctionCall","src":"37443:18:101"},{"arguments":[{"name":"value1","nativeSrc":"37467:6:101","nodeType":"YulIdentifier","src":"37467:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37483:3:101","nodeType":"YulLiteral","src":"37483:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"37488:1:101","nodeType":"YulLiteral","src":"37488:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"37479:3:101","nodeType":"YulIdentifier","src":"37479:3:101"},"nativeSrc":"37479:11:101","nodeType":"YulFunctionCall","src":"37479:11:101"},{"kind":"number","nativeSrc":"37492:1:101","nodeType":"YulLiteral","src":"37492:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"37475:3:101","nodeType":"YulIdentifier","src":"37475:3:101"},"nativeSrc":"37475:19:101","nodeType":"YulFunctionCall","src":"37475:19:101"}],"functionName":{"name":"and","nativeSrc":"37463:3:101","nodeType":"YulIdentifier","src":"37463:3:101"},"nativeSrc":"37463:32:101","nodeType":"YulFunctionCall","src":"37463:32:101"}],"functionName":{"name":"mstore","nativeSrc":"37436:6:101","nodeType":"YulIdentifier","src":"37436:6:101"},"nativeSrc":"37436:60:101","nodeType":"YulFunctionCall","src":"37436:60:101"},"nativeSrc":"37436:60:101","nodeType":"YulExpressionStatement","src":"37436:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37516:9:101","nodeType":"YulIdentifier","src":"37516:9:101"},{"kind":"number","nativeSrc":"37527:2:101","nodeType":"YulLiteral","src":"37527:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"37512:3:101","nodeType":"YulIdentifier","src":"37512:3:101"},"nativeSrc":"37512:18:101","nodeType":"YulFunctionCall","src":"37512:18:101"},{"name":"value2","nativeSrc":"37532:6:101","nodeType":"YulIdentifier","src":"37532:6:101"}],"functionName":{"name":"mstore","nativeSrc":"37505:6:101","nodeType":"YulIdentifier","src":"37505:6:101"},"nativeSrc":"37505:34:101","nodeType":"YulFunctionCall","src":"37505:34:101"},"nativeSrc":"37505:34:101","nodeType":"YulExpressionStatement","src":"37505:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37559:9:101","nodeType":"YulIdentifier","src":"37559:9:101"},{"kind":"number","nativeSrc":"37570:2:101","nodeType":"YulLiteral","src":"37570:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"37555:3:101","nodeType":"YulIdentifier","src":"37555:3:101"},"nativeSrc":"37555:18:101","nodeType":"YulFunctionCall","src":"37555:18:101"},{"name":"value3","nativeSrc":"37575:6:101","nodeType":"YulIdentifier","src":"37575:6:101"}],"functionName":{"name":"mstore","nativeSrc":"37548:6:101","nodeType":"YulIdentifier","src":"37548:6:101"},"nativeSrc":"37548:34:101","nodeType":"YulFunctionCall","src":"37548:34:101"},"nativeSrc":"37548:34:101","nodeType":"YulExpressionStatement","src":"37548:34:101"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256__to_t_address_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"37145:443:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37275:9:101","nodeType":"YulTypedName","src":"37275:9:101","type":""},{"name":"value3","nativeSrc":"37286:6:101","nodeType":"YulTypedName","src":"37286:6:101","type":""},{"name":"value2","nativeSrc":"37294:6:101","nodeType":"YulTypedName","src":"37294:6:101","type":""},{"name":"value1","nativeSrc":"37302:6:101","nodeType":"YulTypedName","src":"37302:6:101","type":""},{"name":"value0","nativeSrc":"37310:6:101","nodeType":"YulTypedName","src":"37310:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"37321:4:101","nodeType":"YulTypedName","src":"37321:4:101","type":""}],"src":"37145:443:101"},{"body":{"nativeSrc":"37673:169:101","nodeType":"YulBlock","src":"37673:169:101","statements":[{"body":{"nativeSrc":"37719:16:101","nodeType":"YulBlock","src":"37719:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"37728:1:101","nodeType":"YulLiteral","src":"37728:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"37731:1:101","nodeType":"YulLiteral","src":"37731:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"37721:6:101","nodeType":"YulIdentifier","src":"37721:6:101"},"nativeSrc":"37721:12:101","nodeType":"YulFunctionCall","src":"37721:12:101"},"nativeSrc":"37721:12:101","nodeType":"YulExpressionStatement","src":"37721:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"37694:7:101","nodeType":"YulIdentifier","src":"37694:7:101"},{"name":"headStart","nativeSrc":"37703:9:101","nodeType":"YulIdentifier","src":"37703:9:101"}],"functionName":{"name":"sub","nativeSrc":"37690:3:101","nodeType":"YulIdentifier","src":"37690:3:101"},"nativeSrc":"37690:23:101","nodeType":"YulFunctionCall","src":"37690:23:101"},{"kind":"number","nativeSrc":"37715:2:101","nodeType":"YulLiteral","src":"37715:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"37686:3:101","nodeType":"YulIdentifier","src":"37686:3:101"},"nativeSrc":"37686:32:101","nodeType":"YulFunctionCall","src":"37686:32:101"},"nativeSrc":"37683:52:101","nodeType":"YulIf","src":"37683:52:101"},{"nativeSrc":"37744:29:101","nodeType":"YulVariableDeclaration","src":"37744:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"37763:9:101","nodeType":"YulIdentifier","src":"37763:9:101"}],"functionName":{"name":"mload","nativeSrc":"37757:5:101","nodeType":"YulIdentifier","src":"37757:5:101"},"nativeSrc":"37757:16:101","nodeType":"YulFunctionCall","src":"37757:16:101"},"variables":[{"name":"value","nativeSrc":"37748:5:101","nodeType":"YulTypedName","src":"37748:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"37806:5:101","nodeType":"YulIdentifier","src":"37806:5:101"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"37782:23:101","nodeType":"YulIdentifier","src":"37782:23:101"},"nativeSrc":"37782:30:101","nodeType":"YulFunctionCall","src":"37782:30:101"},"nativeSrc":"37782:30:101","nodeType":"YulExpressionStatement","src":"37782:30:101"},{"nativeSrc":"37821:15:101","nodeType":"YulAssignment","src":"37821:15:101","value":{"name":"value","nativeSrc":"37831:5:101","nodeType":"YulIdentifier","src":"37831:5:101"},"variableNames":[{"name":"value0","nativeSrc":"37821:6:101","nodeType":"YulIdentifier","src":"37821:6:101"}]}]},"name":"abi_decode_tuple_t_bytes4_fromMemory","nativeSrc":"37593:249:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37639:9:101","nodeType":"YulTypedName","src":"37639:9:101","type":""},{"name":"dataEnd","nativeSrc":"37650:7:101","nodeType":"YulTypedName","src":"37650:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"37662:6:101","nodeType":"YulTypedName","src":"37662:6:101","type":""}],"src":"37593:249:101"},{"body":{"nativeSrc":"38088:346:101","nodeType":"YulBlock","src":"38088:346:101","statements":[{"nativeSrc":"38098:27:101","nodeType":"YulAssignment","src":"38098:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"38110:9:101","nodeType":"YulIdentifier","src":"38110:9:101"},{"kind":"number","nativeSrc":"38121:3:101","nodeType":"YulLiteral","src":"38121:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"38106:3:101","nodeType":"YulIdentifier","src":"38106:3:101"},"nativeSrc":"38106:19:101","nodeType":"YulFunctionCall","src":"38106:19:101"},"variableNames":[{"name":"tail","nativeSrc":"38098:4:101","nodeType":"YulIdentifier","src":"38098:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"38141:9:101","nodeType":"YulIdentifier","src":"38141:9:101"},{"arguments":[{"name":"value0","nativeSrc":"38156:6:101","nodeType":"YulIdentifier","src":"38156:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"38172:3:101","nodeType":"YulLiteral","src":"38172:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"38177:1:101","nodeType":"YulLiteral","src":"38177:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"38168:3:101","nodeType":"YulIdentifier","src":"38168:3:101"},"nativeSrc":"38168:11:101","nodeType":"YulFunctionCall","src":"38168:11:101"},{"kind":"number","nativeSrc":"38181:1:101","nodeType":"YulLiteral","src":"38181:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"38164:3:101","nodeType":"YulIdentifier","src":"38164:3:101"},"nativeSrc":"38164:19:101","nodeType":"YulFunctionCall","src":"38164:19:101"}],"functionName":{"name":"and","nativeSrc":"38152:3:101","nodeType":"YulIdentifier","src":"38152:3:101"},"nativeSrc":"38152:32:101","nodeType":"YulFunctionCall","src":"38152:32:101"}],"functionName":{"name":"mstore","nativeSrc":"38134:6:101","nodeType":"YulIdentifier","src":"38134:6:101"},"nativeSrc":"38134:51:101","nodeType":"YulFunctionCall","src":"38134:51:101"},"nativeSrc":"38134:51:101","nodeType":"YulExpressionStatement","src":"38134:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38205:9:101","nodeType":"YulIdentifier","src":"38205:9:101"},{"kind":"number","nativeSrc":"38216:2:101","nodeType":"YulLiteral","src":"38216:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"38201:3:101","nodeType":"YulIdentifier","src":"38201:3:101"},"nativeSrc":"38201:18:101","nodeType":"YulFunctionCall","src":"38201:18:101"},{"arguments":[{"name":"value1","nativeSrc":"38225:6:101","nodeType":"YulIdentifier","src":"38225:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"38241:3:101","nodeType":"YulLiteral","src":"38241:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"38246:1:101","nodeType":"YulLiteral","src":"38246:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"38237:3:101","nodeType":"YulIdentifier","src":"38237:3:101"},"nativeSrc":"38237:11:101","nodeType":"YulFunctionCall","src":"38237:11:101"},{"kind":"number","nativeSrc":"38250:1:101","nodeType":"YulLiteral","src":"38250:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"38233:3:101","nodeType":"YulIdentifier","src":"38233:3:101"},"nativeSrc":"38233:19:101","nodeType":"YulFunctionCall","src":"38233:19:101"}],"functionName":{"name":"and","nativeSrc":"38221:3:101","nodeType":"YulIdentifier","src":"38221:3:101"},"nativeSrc":"38221:32:101","nodeType":"YulFunctionCall","src":"38221:32:101"}],"functionName":{"name":"mstore","nativeSrc":"38194:6:101","nodeType":"YulIdentifier","src":"38194:6:101"},"nativeSrc":"38194:60:101","nodeType":"YulFunctionCall","src":"38194:60:101"},"nativeSrc":"38194:60:101","nodeType":"YulExpressionStatement","src":"38194:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38274:9:101","nodeType":"YulIdentifier","src":"38274:9:101"},{"kind":"number","nativeSrc":"38285:2:101","nodeType":"YulLiteral","src":"38285:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"38270:3:101","nodeType":"YulIdentifier","src":"38270:3:101"},"nativeSrc":"38270:18:101","nodeType":"YulFunctionCall","src":"38270:18:101"},{"name":"value2","nativeSrc":"38290:6:101","nodeType":"YulIdentifier","src":"38290:6:101"}],"functionName":{"name":"mstore","nativeSrc":"38263:6:101","nodeType":"YulIdentifier","src":"38263:6:101"},"nativeSrc":"38263:34:101","nodeType":"YulFunctionCall","src":"38263:34:101"},"nativeSrc":"38263:34:101","nodeType":"YulExpressionStatement","src":"38263:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38317:9:101","nodeType":"YulIdentifier","src":"38317:9:101"},{"kind":"number","nativeSrc":"38328:2:101","nodeType":"YulLiteral","src":"38328:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"38313:3:101","nodeType":"YulIdentifier","src":"38313:3:101"},"nativeSrc":"38313:18:101","nodeType":"YulFunctionCall","src":"38313:18:101"},{"name":"value3","nativeSrc":"38333:6:101","nodeType":"YulIdentifier","src":"38333:6:101"}],"functionName":{"name":"mstore","nativeSrc":"38306:6:101","nodeType":"YulIdentifier","src":"38306:6:101"},"nativeSrc":"38306:34:101","nodeType":"YulFunctionCall","src":"38306:34:101"},"nativeSrc":"38306:34:101","nodeType":"YulExpressionStatement","src":"38306:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38360:9:101","nodeType":"YulIdentifier","src":"38360:9:101"},{"kind":"number","nativeSrc":"38371:3:101","nodeType":"YulLiteral","src":"38371:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"38356:3:101","nodeType":"YulIdentifier","src":"38356:3:101"},"nativeSrc":"38356:19:101","nodeType":"YulFunctionCall","src":"38356:19:101"},{"name":"value4","nativeSrc":"38377:6:101","nodeType":"YulIdentifier","src":"38377:6:101"}],"functionName":{"name":"mstore","nativeSrc":"38349:6:101","nodeType":"YulIdentifier","src":"38349:6:101"},"nativeSrc":"38349:35:101","nodeType":"YulFunctionCall","src":"38349:35:101"},"nativeSrc":"38349:35:101","nodeType":"YulExpressionStatement","src":"38349:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38404:9:101","nodeType":"YulIdentifier","src":"38404:9:101"},{"kind":"number","nativeSrc":"38415:3:101","nodeType":"YulLiteral","src":"38415:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"38400:3:101","nodeType":"YulIdentifier","src":"38400:3:101"},"nativeSrc":"38400:19:101","nodeType":"YulFunctionCall","src":"38400:19:101"},{"name":"value5","nativeSrc":"38421:6:101","nodeType":"YulIdentifier","src":"38421:6:101"}],"functionName":{"name":"mstore","nativeSrc":"38393:6:101","nodeType":"YulIdentifier","src":"38393:6:101"},"nativeSrc":"38393:35:101","nodeType":"YulFunctionCall","src":"38393:35:101"},"nativeSrc":"38393:35:101","nodeType":"YulExpressionStatement","src":"38393:35:101"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint256_t_uint256__to_t_address_t_address_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"37847:587:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"38017:9:101","nodeType":"YulTypedName","src":"38017:9:101","type":""},{"name":"value5","nativeSrc":"38028:6:101","nodeType":"YulTypedName","src":"38028:6:101","type":""},{"name":"value4","nativeSrc":"38036:6:101","nodeType":"YulTypedName","src":"38036:6:101","type":""},{"name":"value3","nativeSrc":"38044:6:101","nodeType":"YulTypedName","src":"38044:6:101","type":""},{"name":"value2","nativeSrc":"38052:6:101","nodeType":"YulTypedName","src":"38052:6:101","type":""},{"name":"value1","nativeSrc":"38060:6:101","nodeType":"YulTypedName","src":"38060:6:101","type":""},{"name":"value0","nativeSrc":"38068:6:101","nodeType":"YulTypedName","src":"38068:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"38079:4:101","nodeType":"YulTypedName","src":"38079:4:101","type":""}],"src":"37847:587:101"},{"body":{"nativeSrc":"38576:130:101","nodeType":"YulBlock","src":"38576:130:101","statements":[{"nativeSrc":"38586:26:101","nodeType":"YulAssignment","src":"38586:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"38598:9:101","nodeType":"YulIdentifier","src":"38598:9:101"},{"kind":"number","nativeSrc":"38609:2:101","nodeType":"YulLiteral","src":"38609:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"38594:3:101","nodeType":"YulIdentifier","src":"38594:3:101"},"nativeSrc":"38594:18:101","nodeType":"YulFunctionCall","src":"38594:18:101"},"variableNames":[{"name":"tail","nativeSrc":"38586:4:101","nodeType":"YulIdentifier","src":"38586:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"38628:9:101","nodeType":"YulIdentifier","src":"38628:9:101"},{"arguments":[{"name":"value0","nativeSrc":"38643:6:101","nodeType":"YulIdentifier","src":"38643:6:101"},{"kind":"number","nativeSrc":"38651:4:101","nodeType":"YulLiteral","src":"38651:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"38639:3:101","nodeType":"YulIdentifier","src":"38639:3:101"},"nativeSrc":"38639:17:101","nodeType":"YulFunctionCall","src":"38639:17:101"}],"functionName":{"name":"mstore","nativeSrc":"38621:6:101","nodeType":"YulIdentifier","src":"38621:6:101"},"nativeSrc":"38621:36:101","nodeType":"YulFunctionCall","src":"38621:36:101"},"nativeSrc":"38621:36:101","nodeType":"YulExpressionStatement","src":"38621:36:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38677:9:101","nodeType":"YulIdentifier","src":"38677:9:101"},{"kind":"number","nativeSrc":"38688:2:101","nodeType":"YulLiteral","src":"38688:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"38673:3:101","nodeType":"YulIdentifier","src":"38673:3:101"},"nativeSrc":"38673:18:101","nodeType":"YulFunctionCall","src":"38673:18:101"},{"name":"value1","nativeSrc":"38693:6:101","nodeType":"YulIdentifier","src":"38693:6:101"}],"functionName":{"name":"mstore","nativeSrc":"38666:6:101","nodeType":"YulIdentifier","src":"38666:6:101"},"nativeSrc":"38666:34:101","nodeType":"YulFunctionCall","src":"38666:34:101"},"nativeSrc":"38666:34:101","nodeType":"YulExpressionStatement","src":"38666:34:101"}]},"name":"abi_encode_tuple_t_rational_128_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"38439:267:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"38537:9:101","nodeType":"YulTypedName","src":"38537:9:101","type":""},{"name":"value1","nativeSrc":"38548:6:101","nodeType":"YulTypedName","src":"38548:6:101","type":""},{"name":"value0","nativeSrc":"38556:6:101","nodeType":"YulTypedName","src":"38556:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"38567:4:101","nodeType":"YulTypedName","src":"38567:4:101","type":""}],"src":"38439:267:101"},{"body":{"nativeSrc":"38914:282:101","nodeType":"YulBlock","src":"38914:282:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"38931:9:101","nodeType":"YulIdentifier","src":"38931:9:101"},{"arguments":[{"name":"value0","nativeSrc":"38946:6:101","nodeType":"YulIdentifier","src":"38946:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"38962:3:101","nodeType":"YulLiteral","src":"38962:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"38967:1:101","nodeType":"YulLiteral","src":"38967:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"38958:3:101","nodeType":"YulIdentifier","src":"38958:3:101"},"nativeSrc":"38958:11:101","nodeType":"YulFunctionCall","src":"38958:11:101"},{"kind":"number","nativeSrc":"38971:1:101","nodeType":"YulLiteral","src":"38971:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"38954:3:101","nodeType":"YulIdentifier","src":"38954:3:101"},"nativeSrc":"38954:19:101","nodeType":"YulFunctionCall","src":"38954:19:101"}],"functionName":{"name":"and","nativeSrc":"38942:3:101","nodeType":"YulIdentifier","src":"38942:3:101"},"nativeSrc":"38942:32:101","nodeType":"YulFunctionCall","src":"38942:32:101"}],"functionName":{"name":"mstore","nativeSrc":"38924:6:101","nodeType":"YulIdentifier","src":"38924:6:101"},"nativeSrc":"38924:51:101","nodeType":"YulFunctionCall","src":"38924:51:101"},"nativeSrc":"38924:51:101","nodeType":"YulExpressionStatement","src":"38924:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38995:9:101","nodeType":"YulIdentifier","src":"38995:9:101"},{"kind":"number","nativeSrc":"39006:2:101","nodeType":"YulLiteral","src":"39006:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"38991:3:101","nodeType":"YulIdentifier","src":"38991:3:101"},"nativeSrc":"38991:18:101","nodeType":"YulFunctionCall","src":"38991:18:101"},{"arguments":[{"name":"value1","nativeSrc":"39015:6:101","nodeType":"YulIdentifier","src":"39015:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"39031:3:101","nodeType":"YulLiteral","src":"39031:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"39036:1:101","nodeType":"YulLiteral","src":"39036:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"39027:3:101","nodeType":"YulIdentifier","src":"39027:3:101"},"nativeSrc":"39027:11:101","nodeType":"YulFunctionCall","src":"39027:11:101"},{"kind":"number","nativeSrc":"39040:1:101","nodeType":"YulLiteral","src":"39040:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"39023:3:101","nodeType":"YulIdentifier","src":"39023:3:101"},"nativeSrc":"39023:19:101","nodeType":"YulFunctionCall","src":"39023:19:101"}],"functionName":{"name":"and","nativeSrc":"39011:3:101","nodeType":"YulIdentifier","src":"39011:3:101"},"nativeSrc":"39011:32:101","nodeType":"YulFunctionCall","src":"39011:32:101"}],"functionName":{"name":"mstore","nativeSrc":"38984:6:101","nodeType":"YulIdentifier","src":"38984:6:101"},"nativeSrc":"38984:60:101","nodeType":"YulFunctionCall","src":"38984:60:101"},"nativeSrc":"38984:60:101","nodeType":"YulExpressionStatement","src":"38984:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39064:9:101","nodeType":"YulIdentifier","src":"39064:9:101"},{"kind":"number","nativeSrc":"39075:2:101","nodeType":"YulLiteral","src":"39075:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"39060:3:101","nodeType":"YulIdentifier","src":"39060:3:101"},"nativeSrc":"39060:18:101","nodeType":"YulFunctionCall","src":"39060:18:101"},{"name":"value2","nativeSrc":"39080:6:101","nodeType":"YulIdentifier","src":"39080:6:101"}],"functionName":{"name":"mstore","nativeSrc":"39053:6:101","nodeType":"YulIdentifier","src":"39053:6:101"},"nativeSrc":"39053:34:101","nodeType":"YulFunctionCall","src":"39053:34:101"},"nativeSrc":"39053:34:101","nodeType":"YulExpressionStatement","src":"39053:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39107:9:101","nodeType":"YulIdentifier","src":"39107:9:101"},{"kind":"number","nativeSrc":"39118:2:101","nodeType":"YulLiteral","src":"39118:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"39103:3:101","nodeType":"YulIdentifier","src":"39103:3:101"},"nativeSrc":"39103:18:101","nodeType":"YulFunctionCall","src":"39103:18:101"},{"kind":"number","nativeSrc":"39123:3:101","nodeType":"YulLiteral","src":"39123:3:101","type":"","value":"128"}],"functionName":{"name":"mstore","nativeSrc":"39096:6:101","nodeType":"YulIdentifier","src":"39096:6:101"},"nativeSrc":"39096:31:101","nodeType":"YulFunctionCall","src":"39096:31:101"},"nativeSrc":"39096:31:101","nodeType":"YulExpressionStatement","src":"39096:31:101"},{"nativeSrc":"39136:54:101","nodeType":"YulAssignment","src":"39136:54:101","value":{"arguments":[{"name":"value3","nativeSrc":"39162:6:101","nodeType":"YulIdentifier","src":"39162:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"39174:9:101","nodeType":"YulIdentifier","src":"39174:9:101"},{"kind":"number","nativeSrc":"39185:3:101","nodeType":"YulLiteral","src":"39185:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"39170:3:101","nodeType":"YulIdentifier","src":"39170:3:101"},"nativeSrc":"39170:19:101","nodeType":"YulFunctionCall","src":"39170:19:101"}],"functionName":{"name":"abi_encode_string","nativeSrc":"39144:17:101","nodeType":"YulIdentifier","src":"39144:17:101"},"nativeSrc":"39144:46:101","nodeType":"YulFunctionCall","src":"39144:46:101"},"variableNames":[{"name":"tail","nativeSrc":"39136:4:101","nodeType":"YulIdentifier","src":"39136:4:101"}]}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"38711:485:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"38859:9:101","nodeType":"YulTypedName","src":"38859:9:101","type":""},{"name":"value3","nativeSrc":"38870:6:101","nodeType":"YulTypedName","src":"38870:6:101","type":""},{"name":"value2","nativeSrc":"38878:6:101","nodeType":"YulTypedName","src":"38878:6:101","type":""},{"name":"value1","nativeSrc":"38886:6:101","nodeType":"YulTypedName","src":"38886:6:101","type":""},{"name":"value0","nativeSrc":"38894:6:101","nodeType":"YulTypedName","src":"38894:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"38905:4:101","nodeType":"YulTypedName","src":"38905:4:101","type":""}],"src":"38711:485:101"},{"body":{"nativeSrc":"39416:212:101","nodeType":"YulBlock","src":"39416:212:101","statements":[{"nativeSrc":"39426:27:101","nodeType":"YulAssignment","src":"39426:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"39438:9:101","nodeType":"YulIdentifier","src":"39438:9:101"},{"kind":"number","nativeSrc":"39449:3:101","nodeType":"YulLiteral","src":"39449:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"39434:3:101","nodeType":"YulIdentifier","src":"39434:3:101"},"nativeSrc":"39434:19:101","nodeType":"YulFunctionCall","src":"39434:19:101"},"variableNames":[{"name":"tail","nativeSrc":"39426:4:101","nodeType":"YulIdentifier","src":"39426:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"39469:9:101","nodeType":"YulIdentifier","src":"39469:9:101"},{"arguments":[{"name":"value0","nativeSrc":"39484:6:101","nodeType":"YulIdentifier","src":"39484:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"39500:3:101","nodeType":"YulLiteral","src":"39500:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"39505:1:101","nodeType":"YulLiteral","src":"39505:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"39496:3:101","nodeType":"YulIdentifier","src":"39496:3:101"},"nativeSrc":"39496:11:101","nodeType":"YulFunctionCall","src":"39496:11:101"},{"kind":"number","nativeSrc":"39509:1:101","nodeType":"YulLiteral","src":"39509:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"39492:3:101","nodeType":"YulIdentifier","src":"39492:3:101"},"nativeSrc":"39492:19:101","nodeType":"YulFunctionCall","src":"39492:19:101"}],"functionName":{"name":"and","nativeSrc":"39480:3:101","nodeType":"YulIdentifier","src":"39480:3:101"},"nativeSrc":"39480:32:101","nodeType":"YulFunctionCall","src":"39480:32:101"}],"functionName":{"name":"mstore","nativeSrc":"39462:6:101","nodeType":"YulIdentifier","src":"39462:6:101"},"nativeSrc":"39462:51:101","nodeType":"YulFunctionCall","src":"39462:51:101"},"nativeSrc":"39462:51:101","nodeType":"YulExpressionStatement","src":"39462:51:101"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"39551:6:101","nodeType":"YulIdentifier","src":"39551:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"39563:9:101","nodeType":"YulIdentifier","src":"39563:9:101"},{"kind":"number","nativeSrc":"39574:2:101","nodeType":"YulLiteral","src":"39574:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"39559:3:101","nodeType":"YulIdentifier","src":"39559:3:101"},"nativeSrc":"39559:18:101","nodeType":"YulFunctionCall","src":"39559:18:101"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"39522:28:101","nodeType":"YulIdentifier","src":"39522:28:101"},"nativeSrc":"39522:56:101","nodeType":"YulFunctionCall","src":"39522:56:101"},"nativeSrc":"39522:56:101","nodeType":"YulExpressionStatement","src":"39522:56:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39598:9:101","nodeType":"YulIdentifier","src":"39598:9:101"},{"kind":"number","nativeSrc":"39609:3:101","nodeType":"YulLiteral","src":"39609:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"39594:3:101","nodeType":"YulIdentifier","src":"39594:3:101"},"nativeSrc":"39594:19:101","nodeType":"YulFunctionCall","src":"39594:19:101"},{"name":"value2","nativeSrc":"39615:6:101","nodeType":"YulIdentifier","src":"39615:6:101"}],"functionName":{"name":"mstore","nativeSrc":"39587:6:101","nodeType":"YulIdentifier","src":"39587:6:101"},"nativeSrc":"39587:35:101","nodeType":"YulFunctionCall","src":"39587:35:101"},"nativeSrc":"39587:35:101","nodeType":"YulExpressionStatement","src":"39587:35:101"}]},"name":"abi_encode_tuple_t_address_t_struct$_PolicyData_$22256_memory_ptr_t_uint256__to_t_address_t_struct$_PolicyData_$22256_memory_ptr_t_uint256__fromStack_reversed","nativeSrc":"39201:427:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39369:9:101","nodeType":"YulTypedName","src":"39369:9:101","type":""},{"name":"value2","nativeSrc":"39380:6:101","nodeType":"YulTypedName","src":"39380:6:101","type":""},{"name":"value1","nativeSrc":"39388:6:101","nodeType":"YulTypedName","src":"39388:6:101","type":""},{"name":"value0","nativeSrc":"39396:6:101","nodeType":"YulTypedName","src":"39396:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39407:4:101","nodeType":"YulTypedName","src":"39407:4:101","type":""}],"src":"39201:427:101"},{"body":{"nativeSrc":"39665:95:101","nodeType":"YulBlock","src":"39665:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"39682:1:101","nodeType":"YulLiteral","src":"39682:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"39689:3:101","nodeType":"YulLiteral","src":"39689:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"39694:10:101","nodeType":"YulLiteral","src":"39694:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"39685:3:101","nodeType":"YulIdentifier","src":"39685:3:101"},"nativeSrc":"39685:20:101","nodeType":"YulFunctionCall","src":"39685:20:101"}],"functionName":{"name":"mstore","nativeSrc":"39675:6:101","nodeType":"YulIdentifier","src":"39675:6:101"},"nativeSrc":"39675:31:101","nodeType":"YulFunctionCall","src":"39675:31:101"},"nativeSrc":"39675:31:101","nodeType":"YulExpressionStatement","src":"39675:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"39722:1:101","nodeType":"YulLiteral","src":"39722:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"39725:4:101","nodeType":"YulLiteral","src":"39725:4:101","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"39715:6:101","nodeType":"YulIdentifier","src":"39715:6:101"},"nativeSrc":"39715:15:101","nodeType":"YulFunctionCall","src":"39715:15:101"},"nativeSrc":"39715:15:101","nodeType":"YulExpressionStatement","src":"39715:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"39746:1:101","nodeType":"YulLiteral","src":"39746:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"39749:4:101","nodeType":"YulLiteral","src":"39749:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"39739:6:101","nodeType":"YulIdentifier","src":"39739:6:101"},"nativeSrc":"39739:15:101","nodeType":"YulFunctionCall","src":"39739:15:101"},"nativeSrc":"39739:15:101","nodeType":"YulExpressionStatement","src":"39739:15:101"}]},"name":"panic_error_0x12","nativeSrc":"39633:127:101","nodeType":"YulFunctionDefinition","src":"39633:127:101"},{"body":{"nativeSrc":"39922:214:101","nodeType":"YulBlock","src":"39922:214:101","statements":[{"nativeSrc":"39932:26:101","nodeType":"YulAssignment","src":"39932:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"39944:9:101","nodeType":"YulIdentifier","src":"39944:9:101"},{"kind":"number","nativeSrc":"39955:2:101","nodeType":"YulLiteral","src":"39955:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"39940:3:101","nodeType":"YulIdentifier","src":"39940:3:101"},"nativeSrc":"39940:18:101","nodeType":"YulFunctionCall","src":"39940:18:101"},"variableNames":[{"name":"tail","nativeSrc":"39932:4:101","nodeType":"YulIdentifier","src":"39932:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"39974:9:101","nodeType":"YulIdentifier","src":"39974:9:101"},{"name":"value0","nativeSrc":"39985:6:101","nodeType":"YulIdentifier","src":"39985:6:101"}],"functionName":{"name":"mstore","nativeSrc":"39967:6:101","nodeType":"YulIdentifier","src":"39967:6:101"},"nativeSrc":"39967:25:101","nodeType":"YulFunctionCall","src":"39967:25:101"},"nativeSrc":"39967:25:101","nodeType":"YulExpressionStatement","src":"39967:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40012:9:101","nodeType":"YulIdentifier","src":"40012:9:101"},{"kind":"number","nativeSrc":"40023:2:101","nodeType":"YulLiteral","src":"40023:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"40008:3:101","nodeType":"YulIdentifier","src":"40008:3:101"},"nativeSrc":"40008:18:101","nodeType":"YulFunctionCall","src":"40008:18:101"},{"arguments":[{"name":"value1","nativeSrc":"40032:6:101","nodeType":"YulIdentifier","src":"40032:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40048:3:101","nodeType":"YulLiteral","src":"40048:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"40053:1:101","nodeType":"YulLiteral","src":"40053:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"40044:3:101","nodeType":"YulIdentifier","src":"40044:3:101"},"nativeSrc":"40044:11:101","nodeType":"YulFunctionCall","src":"40044:11:101"},{"kind":"number","nativeSrc":"40057:1:101","nodeType":"YulLiteral","src":"40057:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"40040:3:101","nodeType":"YulIdentifier","src":"40040:3:101"},"nativeSrc":"40040:19:101","nodeType":"YulFunctionCall","src":"40040:19:101"}],"functionName":{"name":"and","nativeSrc":"40028:3:101","nodeType":"YulIdentifier","src":"40028:3:101"},"nativeSrc":"40028:32:101","nodeType":"YulFunctionCall","src":"40028:32:101"}],"functionName":{"name":"mstore","nativeSrc":"40001:6:101","nodeType":"YulIdentifier","src":"40001:6:101"},"nativeSrc":"40001:60:101","nodeType":"YulFunctionCall","src":"40001:60:101"},"nativeSrc":"40001:60:101","nodeType":"YulExpressionStatement","src":"40001:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40081:9:101","nodeType":"YulIdentifier","src":"40081:9:101"},{"kind":"number","nativeSrc":"40092:2:101","nodeType":"YulLiteral","src":"40092:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"40077:3:101","nodeType":"YulIdentifier","src":"40077:3:101"},"nativeSrc":"40077:18:101","nodeType":"YulFunctionCall","src":"40077:18:101"},{"arguments":[{"name":"value2","nativeSrc":"40101:6:101","nodeType":"YulIdentifier","src":"40101:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40117:3:101","nodeType":"YulLiteral","src":"40117:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"40122:1:101","nodeType":"YulLiteral","src":"40122:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"40113:3:101","nodeType":"YulIdentifier","src":"40113:3:101"},"nativeSrc":"40113:11:101","nodeType":"YulFunctionCall","src":"40113:11:101"},{"kind":"number","nativeSrc":"40126:1:101","nodeType":"YulLiteral","src":"40126:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"40109:3:101","nodeType":"YulIdentifier","src":"40109:3:101"},"nativeSrc":"40109:19:101","nodeType":"YulFunctionCall","src":"40109:19:101"}],"functionName":{"name":"and","nativeSrc":"40097:3:101","nodeType":"YulIdentifier","src":"40097:3:101"},"nativeSrc":"40097:32:101","nodeType":"YulFunctionCall","src":"40097:32:101"}],"functionName":{"name":"mstore","nativeSrc":"40070:6:101","nodeType":"YulIdentifier","src":"40070:6:101"},"nativeSrc":"40070:60:101","nodeType":"YulFunctionCall","src":"40070:60:101"},"nativeSrc":"40070:60:101","nodeType":"YulExpressionStatement","src":"40070:60:101"}]},"name":"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed","nativeSrc":"39765:371:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39875:9:101","nodeType":"YulTypedName","src":"39875:9:101","type":""},{"name":"value2","nativeSrc":"39886:6:101","nodeType":"YulTypedName","src":"39886:6:101","type":""},{"name":"value1","nativeSrc":"39894:6:101","nodeType":"YulTypedName","src":"39894:6:101","type":""},{"name":"value0","nativeSrc":"39902:6:101","nodeType":"YulTypedName","src":"39902:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39913:4:101","nodeType":"YulTypedName","src":"39913:4:101","type":""}],"src":"39765:371:101"},{"body":{"nativeSrc":"40270:171:101","nodeType":"YulBlock","src":"40270:171:101","statements":[{"nativeSrc":"40280:26:101","nodeType":"YulAssignment","src":"40280:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"40292:9:101","nodeType":"YulIdentifier","src":"40292:9:101"},{"kind":"number","nativeSrc":"40303:2:101","nodeType":"YulLiteral","src":"40303:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"40288:3:101","nodeType":"YulIdentifier","src":"40288:3:101"},"nativeSrc":"40288:18:101","nodeType":"YulFunctionCall","src":"40288:18:101"},"variableNames":[{"name":"tail","nativeSrc":"40280:4:101","nodeType":"YulIdentifier","src":"40280:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"40322:9:101","nodeType":"YulIdentifier","src":"40322:9:101"},{"arguments":[{"name":"value0","nativeSrc":"40337:6:101","nodeType":"YulIdentifier","src":"40337:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40353:3:101","nodeType":"YulLiteral","src":"40353:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"40358:1:101","nodeType":"YulLiteral","src":"40358:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"40349:3:101","nodeType":"YulIdentifier","src":"40349:3:101"},"nativeSrc":"40349:11:101","nodeType":"YulFunctionCall","src":"40349:11:101"},{"kind":"number","nativeSrc":"40362:1:101","nodeType":"YulLiteral","src":"40362:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"40345:3:101","nodeType":"YulIdentifier","src":"40345:3:101"},"nativeSrc":"40345:19:101","nodeType":"YulFunctionCall","src":"40345:19:101"}],"functionName":{"name":"and","nativeSrc":"40333:3:101","nodeType":"YulIdentifier","src":"40333:3:101"},"nativeSrc":"40333:32:101","nodeType":"YulFunctionCall","src":"40333:32:101"}],"functionName":{"name":"mstore","nativeSrc":"40315:6:101","nodeType":"YulIdentifier","src":"40315:6:101"},"nativeSrc":"40315:51:101","nodeType":"YulFunctionCall","src":"40315:51:101"},"nativeSrc":"40315:51:101","nodeType":"YulExpressionStatement","src":"40315:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40386:9:101","nodeType":"YulIdentifier","src":"40386:9:101"},{"kind":"number","nativeSrc":"40397:2:101","nodeType":"YulLiteral","src":"40397:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"40382:3:101","nodeType":"YulIdentifier","src":"40382:3:101"},"nativeSrc":"40382:18:101","nodeType":"YulFunctionCall","src":"40382:18:101"},{"arguments":[{"name":"value1","nativeSrc":"40406:6:101","nodeType":"YulIdentifier","src":"40406:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40422:3:101","nodeType":"YulLiteral","src":"40422:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"40427:1:101","nodeType":"YulLiteral","src":"40427:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"40418:3:101","nodeType":"YulIdentifier","src":"40418:3:101"},"nativeSrc":"40418:11:101","nodeType":"YulFunctionCall","src":"40418:11:101"},{"kind":"number","nativeSrc":"40431:1:101","nodeType":"YulLiteral","src":"40431:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"40414:3:101","nodeType":"YulIdentifier","src":"40414:3:101"},"nativeSrc":"40414:19:101","nodeType":"YulFunctionCall","src":"40414:19:101"}],"functionName":{"name":"and","nativeSrc":"40402:3:101","nodeType":"YulIdentifier","src":"40402:3:101"},"nativeSrc":"40402:32:101","nodeType":"YulFunctionCall","src":"40402:32:101"}],"functionName":{"name":"mstore","nativeSrc":"40375:6:101","nodeType":"YulIdentifier","src":"40375:6:101"},"nativeSrc":"40375:60:101","nodeType":"YulFunctionCall","src":"40375:60:101"},"nativeSrc":"40375:60:101","nodeType":"YulExpressionStatement","src":"40375:60:101"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nativeSrc":"40141:300:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"40231:9:101","nodeType":"YulTypedName","src":"40231:9:101","type":""},{"name":"value1","nativeSrc":"40242:6:101","nodeType":"YulTypedName","src":"40242:6:101","type":""},{"name":"value0","nativeSrc":"40250:6:101","nodeType":"YulTypedName","src":"40250:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"40261:4:101","nodeType":"YulTypedName","src":"40261:4:101","type":""}],"src":"40141:300:101"},{"body":{"nativeSrc":"40542:1203:101","nodeType":"YulBlock","src":"40542:1203:101","statements":[{"nativeSrc":"40552:24:101","nodeType":"YulVariableDeclaration","src":"40552:24:101","value":{"arguments":[{"name":"src","nativeSrc":"40572:3:101","nodeType":"YulIdentifier","src":"40572:3:101"}],"functionName":{"name":"mload","nativeSrc":"40566:5:101","nodeType":"YulIdentifier","src":"40566:5:101"},"nativeSrc":"40566:10:101","nodeType":"YulFunctionCall","src":"40566:10:101"},"variables":[{"name":"newLen","nativeSrc":"40556:6:101","nodeType":"YulTypedName","src":"40556:6:101","type":""}]},{"body":{"nativeSrc":"40619:22:101","nodeType":"YulBlock","src":"40619:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"40621:16:101","nodeType":"YulIdentifier","src":"40621:16:101"},"nativeSrc":"40621:18:101","nodeType":"YulFunctionCall","src":"40621:18:101"},"nativeSrc":"40621:18:101","nodeType":"YulExpressionStatement","src":"40621:18:101"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"40591:6:101","nodeType":"YulIdentifier","src":"40591:6:101"},{"kind":"number","nativeSrc":"40599:18:101","nodeType":"YulLiteral","src":"40599:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"40588:2:101","nodeType":"YulIdentifier","src":"40588:2:101"},"nativeSrc":"40588:30:101","nodeType":"YulFunctionCall","src":"40588:30:101"},"nativeSrc":"40585:56:101","nodeType":"YulIf","src":"40585:56:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"40694:4:101","nodeType":"YulIdentifier","src":"40694:4:101"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"40732:4:101","nodeType":"YulIdentifier","src":"40732:4:101"}],"functionName":{"name":"sload","nativeSrc":"40726:5:101","nodeType":"YulIdentifier","src":"40726:5:101"},"nativeSrc":"40726:11:101","nodeType":"YulFunctionCall","src":"40726:11:101"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"40700:25:101","nodeType":"YulIdentifier","src":"40700:25:101"},"nativeSrc":"40700:38:101","nodeType":"YulFunctionCall","src":"40700:38:101"},{"name":"newLen","nativeSrc":"40740:6:101","nodeType":"YulIdentifier","src":"40740:6:101"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"40650:43:101","nodeType":"YulIdentifier","src":"40650:43:101"},"nativeSrc":"40650:97:101","nodeType":"YulFunctionCall","src":"40650:97:101"},"nativeSrc":"40650:97:101","nodeType":"YulExpressionStatement","src":"40650:97:101"},{"nativeSrc":"40756:18:101","nodeType":"YulVariableDeclaration","src":"40756:18:101","value":{"kind":"number","nativeSrc":"40773:1:101","nodeType":"YulLiteral","src":"40773:1:101","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"40760:9:101","nodeType":"YulTypedName","src":"40760:9:101","type":""}]},{"nativeSrc":"40783:17:101","nodeType":"YulAssignment","src":"40783:17:101","value":{"kind":"number","nativeSrc":"40796:4:101","nodeType":"YulLiteral","src":"40796:4:101","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"40783:9:101","nodeType":"YulIdentifier","src":"40783:9:101"}]},{"cases":[{"body":{"nativeSrc":"40846:642:101","nodeType":"YulBlock","src":"40846:642:101","statements":[{"nativeSrc":"40860:35:101","nodeType":"YulVariableDeclaration","src":"40860:35:101","value":{"arguments":[{"name":"newLen","nativeSrc":"40879:6:101","nodeType":"YulIdentifier","src":"40879:6:101"},{"arguments":[{"kind":"number","nativeSrc":"40891:2:101","nodeType":"YulLiteral","src":"40891:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"40887:3:101","nodeType":"YulIdentifier","src":"40887:3:101"},"nativeSrc":"40887:7:101","nodeType":"YulFunctionCall","src":"40887:7:101"}],"functionName":{"name":"and","nativeSrc":"40875:3:101","nodeType":"YulIdentifier","src":"40875:3:101"},"nativeSrc":"40875:20:101","nodeType":"YulFunctionCall","src":"40875:20:101"},"variables":[{"name":"loopEnd","nativeSrc":"40864:7:101","nodeType":"YulTypedName","src":"40864:7:101","type":""}]},{"nativeSrc":"40908:49:101","nodeType":"YulVariableDeclaration","src":"40908:49:101","value":{"arguments":[{"name":"slot","nativeSrc":"40952:4:101","nodeType":"YulIdentifier","src":"40952:4:101"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"40922:29:101","nodeType":"YulIdentifier","src":"40922:29:101"},"nativeSrc":"40922:35:101","nodeType":"YulFunctionCall","src":"40922:35:101"},"variables":[{"name":"dstPtr","nativeSrc":"40912:6:101","nodeType":"YulTypedName","src":"40912:6:101","type":""}]},{"nativeSrc":"40970:10:101","nodeType":"YulVariableDeclaration","src":"40970:10:101","value":{"kind":"number","nativeSrc":"40979:1:101","nodeType":"YulLiteral","src":"40979:1:101","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"40974:1:101","nodeType":"YulTypedName","src":"40974:1:101","type":""}]},{"body":{"nativeSrc":"41050:165:101","nodeType":"YulBlock","src":"41050:165:101","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"41075:6:101","nodeType":"YulIdentifier","src":"41075:6:101"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"41093:3:101","nodeType":"YulIdentifier","src":"41093:3:101"},{"name":"srcOffset","nativeSrc":"41098:9:101","nodeType":"YulIdentifier","src":"41098:9:101"}],"functionName":{"name":"add","nativeSrc":"41089:3:101","nodeType":"YulIdentifier","src":"41089:3:101"},"nativeSrc":"41089:19:101","nodeType":"YulFunctionCall","src":"41089:19:101"}],"functionName":{"name":"mload","nativeSrc":"41083:5:101","nodeType":"YulIdentifier","src":"41083:5:101"},"nativeSrc":"41083:26:101","nodeType":"YulFunctionCall","src":"41083:26:101"}],"functionName":{"name":"sstore","nativeSrc":"41068:6:101","nodeType":"YulIdentifier","src":"41068:6:101"},"nativeSrc":"41068:42:101","nodeType":"YulFunctionCall","src":"41068:42:101"},"nativeSrc":"41068:42:101","nodeType":"YulExpressionStatement","src":"41068:42:101"},{"nativeSrc":"41127:24:101","nodeType":"YulAssignment","src":"41127:24:101","value":{"arguments":[{"name":"dstPtr","nativeSrc":"41141:6:101","nodeType":"YulIdentifier","src":"41141:6:101"},{"kind":"number","nativeSrc":"41149:1:101","nodeType":"YulLiteral","src":"41149:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"41137:3:101","nodeType":"YulIdentifier","src":"41137:3:101"},"nativeSrc":"41137:14:101","nodeType":"YulFunctionCall","src":"41137:14:101"},"variableNames":[{"name":"dstPtr","nativeSrc":"41127:6:101","nodeType":"YulIdentifier","src":"41127:6:101"}]},{"nativeSrc":"41168:33:101","nodeType":"YulAssignment","src":"41168:33:101","value":{"arguments":[{"name":"srcOffset","nativeSrc":"41185:9:101","nodeType":"YulIdentifier","src":"41185:9:101"},{"kind":"number","nativeSrc":"41196:4:101","nodeType":"YulLiteral","src":"41196:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"41181:3:101","nodeType":"YulIdentifier","src":"41181:3:101"},"nativeSrc":"41181:20:101","nodeType":"YulFunctionCall","src":"41181:20:101"},"variableNames":[{"name":"srcOffset","nativeSrc":"41168:9:101","nodeType":"YulIdentifier","src":"41168:9:101"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"41004:1:101","nodeType":"YulIdentifier","src":"41004:1:101"},{"name":"loopEnd","nativeSrc":"41007:7:101","nodeType":"YulIdentifier","src":"41007:7:101"}],"functionName":{"name":"lt","nativeSrc":"41001:2:101","nodeType":"YulIdentifier","src":"41001:2:101"},"nativeSrc":"41001:14:101","nodeType":"YulFunctionCall","src":"41001:14:101"},"nativeSrc":"40993:222:101","nodeType":"YulForLoop","post":{"nativeSrc":"41016:21:101","nodeType":"YulBlock","src":"41016:21:101","statements":[{"nativeSrc":"41018:17:101","nodeType":"YulAssignment","src":"41018:17:101","value":{"arguments":[{"name":"i","nativeSrc":"41027:1:101","nodeType":"YulIdentifier","src":"41027:1:101"},{"kind":"number","nativeSrc":"41030:4:101","nodeType":"YulLiteral","src":"41030:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"41023:3:101","nodeType":"YulIdentifier","src":"41023:3:101"},"nativeSrc":"41023:12:101","nodeType":"YulFunctionCall","src":"41023:12:101"},"variableNames":[{"name":"i","nativeSrc":"41018:1:101","nodeType":"YulIdentifier","src":"41018:1:101"}]}]},"pre":{"nativeSrc":"40997:3:101","nodeType":"YulBlock","src":"40997:3:101","statements":[]},"src":"40993:222:101"},{"body":{"nativeSrc":"41263:166:101","nodeType":"YulBlock","src":"41263:166:101","statements":[{"nativeSrc":"41281:43:101","nodeType":"YulVariableDeclaration","src":"41281:43:101","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"41308:3:101","nodeType":"YulIdentifier","src":"41308:3:101"},{"name":"srcOffset","nativeSrc":"41313:9:101","nodeType":"YulIdentifier","src":"41313:9:101"}],"functionName":{"name":"add","nativeSrc":"41304:3:101","nodeType":"YulIdentifier","src":"41304:3:101"},"nativeSrc":"41304:19:101","nodeType":"YulFunctionCall","src":"41304:19:101"}],"functionName":{"name":"mload","nativeSrc":"41298:5:101","nodeType":"YulIdentifier","src":"41298:5:101"},"nativeSrc":"41298:26:101","nodeType":"YulFunctionCall","src":"41298:26:101"},"variables":[{"name":"lastValue","nativeSrc":"41285:9:101","nodeType":"YulTypedName","src":"41285:9:101","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"41348:6:101","nodeType":"YulIdentifier","src":"41348:6:101"},{"arguments":[{"name":"lastValue","nativeSrc":"41360:9:101","nodeType":"YulIdentifier","src":"41360:9:101"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"41387:1:101","nodeType":"YulLiteral","src":"41387:1:101","type":"","value":"3"},{"name":"newLen","nativeSrc":"41390:6:101","nodeType":"YulIdentifier","src":"41390:6:101"}],"functionName":{"name":"shl","nativeSrc":"41383:3:101","nodeType":"YulIdentifier","src":"41383:3:101"},"nativeSrc":"41383:14:101","nodeType":"YulFunctionCall","src":"41383:14:101"},{"kind":"number","nativeSrc":"41399:3:101","nodeType":"YulLiteral","src":"41399:3:101","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"41379:3:101","nodeType":"YulIdentifier","src":"41379:3:101"},"nativeSrc":"41379:24:101","nodeType":"YulFunctionCall","src":"41379:24:101"},{"arguments":[{"kind":"number","nativeSrc":"41409:1:101","nodeType":"YulLiteral","src":"41409:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"41405:3:101","nodeType":"YulIdentifier","src":"41405:3:101"},"nativeSrc":"41405:6:101","nodeType":"YulFunctionCall","src":"41405:6:101"}],"functionName":{"name":"shr","nativeSrc":"41375:3:101","nodeType":"YulIdentifier","src":"41375:3:101"},"nativeSrc":"41375:37:101","nodeType":"YulFunctionCall","src":"41375:37:101"}],"functionName":{"name":"not","nativeSrc":"41371:3:101","nodeType":"YulIdentifier","src":"41371:3:101"},"nativeSrc":"41371:42:101","nodeType":"YulFunctionCall","src":"41371:42:101"}],"functionName":{"name":"and","nativeSrc":"41356:3:101","nodeType":"YulIdentifier","src":"41356:3:101"},"nativeSrc":"41356:58:101","nodeType":"YulFunctionCall","src":"41356:58:101"}],"functionName":{"name":"sstore","nativeSrc":"41341:6:101","nodeType":"YulIdentifier","src":"41341:6:101"},"nativeSrc":"41341:74:101","nodeType":"YulFunctionCall","src":"41341:74:101"},"nativeSrc":"41341:74:101","nodeType":"YulExpressionStatement","src":"41341:74:101"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"41234:7:101","nodeType":"YulIdentifier","src":"41234:7:101"},{"name":"newLen","nativeSrc":"41243:6:101","nodeType":"YulIdentifier","src":"41243:6:101"}],"functionName":{"name":"lt","nativeSrc":"41231:2:101","nodeType":"YulIdentifier","src":"41231:2:101"},"nativeSrc":"41231:19:101","nodeType":"YulFunctionCall","src":"41231:19:101"},"nativeSrc":"41228:201:101","nodeType":"YulIf","src":"41228:201:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"41449:4:101","nodeType":"YulIdentifier","src":"41449:4:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"41463:1:101","nodeType":"YulLiteral","src":"41463:1:101","type":"","value":"1"},{"name":"newLen","nativeSrc":"41466:6:101","nodeType":"YulIdentifier","src":"41466:6:101"}],"functionName":{"name":"shl","nativeSrc":"41459:3:101","nodeType":"YulIdentifier","src":"41459:3:101"},"nativeSrc":"41459:14:101","nodeType":"YulFunctionCall","src":"41459:14:101"},{"kind":"number","nativeSrc":"41475:1:101","nodeType":"YulLiteral","src":"41475:1:101","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"41455:3:101","nodeType":"YulIdentifier","src":"41455:3:101"},"nativeSrc":"41455:22:101","nodeType":"YulFunctionCall","src":"41455:22:101"}],"functionName":{"name":"sstore","nativeSrc":"41442:6:101","nodeType":"YulIdentifier","src":"41442:6:101"},"nativeSrc":"41442:36:101","nodeType":"YulFunctionCall","src":"41442:36:101"},"nativeSrc":"41442:36:101","nodeType":"YulExpressionStatement","src":"41442:36:101"}]},"nativeSrc":"40839:649:101","nodeType":"YulCase","src":"40839:649:101","value":{"kind":"number","nativeSrc":"40844:1:101","nodeType":"YulLiteral","src":"40844:1:101","type":"","value":"1"}},{"body":{"nativeSrc":"41505:234:101","nodeType":"YulBlock","src":"41505:234:101","statements":[{"nativeSrc":"41519:14:101","nodeType":"YulVariableDeclaration","src":"41519:14:101","value":{"kind":"number","nativeSrc":"41532:1:101","nodeType":"YulLiteral","src":"41532:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"41523:5:101","nodeType":"YulTypedName","src":"41523:5:101","type":""}]},{"body":{"nativeSrc":"41568:67:101","nodeType":"YulBlock","src":"41568:67:101","statements":[{"nativeSrc":"41586:35:101","nodeType":"YulAssignment","src":"41586:35:101","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"41605:3:101","nodeType":"YulIdentifier","src":"41605:3:101"},{"name":"srcOffset","nativeSrc":"41610:9:101","nodeType":"YulIdentifier","src":"41610:9:101"}],"functionName":{"name":"add","nativeSrc":"41601:3:101","nodeType":"YulIdentifier","src":"41601:3:101"},"nativeSrc":"41601:19:101","nodeType":"YulFunctionCall","src":"41601:19:101"}],"functionName":{"name":"mload","nativeSrc":"41595:5:101","nodeType":"YulIdentifier","src":"41595:5:101"},"nativeSrc":"41595:26:101","nodeType":"YulFunctionCall","src":"41595:26:101"},"variableNames":[{"name":"value","nativeSrc":"41586:5:101","nodeType":"YulIdentifier","src":"41586:5:101"}]}]},"condition":{"name":"newLen","nativeSrc":"41549:6:101","nodeType":"YulIdentifier","src":"41549:6:101"},"nativeSrc":"41546:89:101","nodeType":"YulIf","src":"41546:89:101"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"41655:4:101","nodeType":"YulIdentifier","src":"41655:4:101"},{"arguments":[{"name":"value","nativeSrc":"41714:5:101","nodeType":"YulIdentifier","src":"41714:5:101"},{"name":"newLen","nativeSrc":"41721:6:101","nodeType":"YulIdentifier","src":"41721:6:101"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"41661:52:101","nodeType":"YulIdentifier","src":"41661:52:101"},"nativeSrc":"41661:67:101","nodeType":"YulFunctionCall","src":"41661:67:101"}],"functionName":{"name":"sstore","nativeSrc":"41648:6:101","nodeType":"YulIdentifier","src":"41648:6:101"},"nativeSrc":"41648:81:101","nodeType":"YulFunctionCall","src":"41648:81:101"},"nativeSrc":"41648:81:101","nodeType":"YulExpressionStatement","src":"41648:81:101"}]},"nativeSrc":"41497:242:101","nodeType":"YulCase","src":"41497:242:101","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"40819:6:101","nodeType":"YulIdentifier","src":"40819:6:101"},{"kind":"number","nativeSrc":"40827:2:101","nodeType":"YulLiteral","src":"40827:2:101","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"40816:2:101","nodeType":"YulIdentifier","src":"40816:2:101"},"nativeSrc":"40816:14:101","nodeType":"YulFunctionCall","src":"40816:14:101"},"nativeSrc":"40809:930:101","nodeType":"YulSwitch","src":"40809:930:101"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"40446:1299:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"40527:4:101","nodeType":"YulTypedName","src":"40527:4:101","type":""},{"name":"src","nativeSrc":"40533:3:101","nodeType":"YulTypedName","src":"40533:3:101","type":""}],"src":"40446:1299:101"},{"body":{"nativeSrc":"41907:214:101","nodeType":"YulBlock","src":"41907:214:101","statements":[{"nativeSrc":"41917:26:101","nodeType":"YulAssignment","src":"41917:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"41929:9:101","nodeType":"YulIdentifier","src":"41929:9:101"},{"kind":"number","nativeSrc":"41940:2:101","nodeType":"YulLiteral","src":"41940:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"41925:3:101","nodeType":"YulIdentifier","src":"41925:3:101"},"nativeSrc":"41925:18:101","nodeType":"YulFunctionCall","src":"41925:18:101"},"variableNames":[{"name":"tail","nativeSrc":"41917:4:101","nodeType":"YulIdentifier","src":"41917:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"41959:9:101","nodeType":"YulIdentifier","src":"41959:9:101"},{"arguments":[{"name":"value0","nativeSrc":"41974:6:101","nodeType":"YulIdentifier","src":"41974:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"41990:3:101","nodeType":"YulLiteral","src":"41990:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"41995:1:101","nodeType":"YulLiteral","src":"41995:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"41986:3:101","nodeType":"YulIdentifier","src":"41986:3:101"},"nativeSrc":"41986:11:101","nodeType":"YulFunctionCall","src":"41986:11:101"},{"kind":"number","nativeSrc":"41999:1:101","nodeType":"YulLiteral","src":"41999:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"41982:3:101","nodeType":"YulIdentifier","src":"41982:3:101"},"nativeSrc":"41982:19:101","nodeType":"YulFunctionCall","src":"41982:19:101"}],"functionName":{"name":"and","nativeSrc":"41970:3:101","nodeType":"YulIdentifier","src":"41970:3:101"},"nativeSrc":"41970:32:101","nodeType":"YulFunctionCall","src":"41970:32:101"}],"functionName":{"name":"mstore","nativeSrc":"41952:6:101","nodeType":"YulIdentifier","src":"41952:6:101"},"nativeSrc":"41952:51:101","nodeType":"YulFunctionCall","src":"41952:51:101"},"nativeSrc":"41952:51:101","nodeType":"YulExpressionStatement","src":"41952:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42023:9:101","nodeType":"YulIdentifier","src":"42023:9:101"},{"kind":"number","nativeSrc":"42034:2:101","nodeType":"YulLiteral","src":"42034:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"42019:3:101","nodeType":"YulIdentifier","src":"42019:3:101"},"nativeSrc":"42019:18:101","nodeType":"YulFunctionCall","src":"42019:18:101"},{"arguments":[{"name":"value1","nativeSrc":"42043:6:101","nodeType":"YulIdentifier","src":"42043:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42059:3:101","nodeType":"YulLiteral","src":"42059:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"42064:1:101","nodeType":"YulLiteral","src":"42064:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"42055:3:101","nodeType":"YulIdentifier","src":"42055:3:101"},"nativeSrc":"42055:11:101","nodeType":"YulFunctionCall","src":"42055:11:101"},{"kind":"number","nativeSrc":"42068:1:101","nodeType":"YulLiteral","src":"42068:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"42051:3:101","nodeType":"YulIdentifier","src":"42051:3:101"},"nativeSrc":"42051:19:101","nodeType":"YulFunctionCall","src":"42051:19:101"}],"functionName":{"name":"and","nativeSrc":"42039:3:101","nodeType":"YulIdentifier","src":"42039:3:101"},"nativeSrc":"42039:32:101","nodeType":"YulFunctionCall","src":"42039:32:101"}],"functionName":{"name":"mstore","nativeSrc":"42012:6:101","nodeType":"YulIdentifier","src":"42012:6:101"},"nativeSrc":"42012:60:101","nodeType":"YulFunctionCall","src":"42012:60:101"},"nativeSrc":"42012:60:101","nodeType":"YulExpressionStatement","src":"42012:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42092:9:101","nodeType":"YulIdentifier","src":"42092:9:101"},{"kind":"number","nativeSrc":"42103:2:101","nodeType":"YulLiteral","src":"42103:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"42088:3:101","nodeType":"YulIdentifier","src":"42088:3:101"},"nativeSrc":"42088:18:101","nodeType":"YulFunctionCall","src":"42088:18:101"},{"name":"value2","nativeSrc":"42108:6:101","nodeType":"YulIdentifier","src":"42108:6:101"}],"functionName":{"name":"mstore","nativeSrc":"42081:6:101","nodeType":"YulIdentifier","src":"42081:6:101"},"nativeSrc":"42081:34:101","nodeType":"YulFunctionCall","src":"42081:34:101"},"nativeSrc":"42081:34:101","nodeType":"YulExpressionStatement","src":"42081:34:101"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nativeSrc":"41750:371:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"41860:9:101","nodeType":"YulTypedName","src":"41860:9:101","type":""},{"name":"value2","nativeSrc":"41871:6:101","nodeType":"YulTypedName","src":"41871:6:101","type":""},{"name":"value1","nativeSrc":"41879:6:101","nodeType":"YulTypedName","src":"41879:6:101","type":""},{"name":"value0","nativeSrc":"41887:6:101","nodeType":"YulTypedName","src":"41887:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"41898:4:101","nodeType":"YulTypedName","src":"41898:4:101","type":""}],"src":"41750:371:101"},{"body":{"nativeSrc":"42250:102:101","nodeType":"YulBlock","src":"42250:102:101","statements":[{"nativeSrc":"42260:26:101","nodeType":"YulAssignment","src":"42260:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"42272:9:101","nodeType":"YulIdentifier","src":"42272:9:101"},{"kind":"number","nativeSrc":"42283:2:101","nodeType":"YulLiteral","src":"42283:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"42268:3:101","nodeType":"YulIdentifier","src":"42268:3:101"},"nativeSrc":"42268:18:101","nodeType":"YulFunctionCall","src":"42268:18:101"},"variableNames":[{"name":"tail","nativeSrc":"42260:4:101","nodeType":"YulIdentifier","src":"42260:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"42302:9:101","nodeType":"YulIdentifier","src":"42302:9:101"},{"arguments":[{"name":"value0","nativeSrc":"42317:6:101","nodeType":"YulIdentifier","src":"42317:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42333:3:101","nodeType":"YulLiteral","src":"42333:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"42338:1:101","nodeType":"YulLiteral","src":"42338:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"42329:3:101","nodeType":"YulIdentifier","src":"42329:3:101"},"nativeSrc":"42329:11:101","nodeType":"YulFunctionCall","src":"42329:11:101"},{"kind":"number","nativeSrc":"42342:1:101","nodeType":"YulLiteral","src":"42342:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"42325:3:101","nodeType":"YulIdentifier","src":"42325:3:101"},"nativeSrc":"42325:19:101","nodeType":"YulFunctionCall","src":"42325:19:101"}],"functionName":{"name":"and","nativeSrc":"42313:3:101","nodeType":"YulIdentifier","src":"42313:3:101"},"nativeSrc":"42313:32:101","nodeType":"YulFunctionCall","src":"42313:32:101"}],"functionName":{"name":"mstore","nativeSrc":"42295:6:101","nodeType":"YulIdentifier","src":"42295:6:101"},"nativeSrc":"42295:51:101","nodeType":"YulFunctionCall","src":"42295:51:101"},"nativeSrc":"42295:51:101","nodeType":"YulExpressionStatement","src":"42295:51:101"}]},"name":"abi_encode_tuple_t_contract$_IPolicyHolder_$28982__to_t_address__fromStack_reversed","nativeSrc":"42126:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"42219:9:101","nodeType":"YulTypedName","src":"42219:9:101","type":""},{"name":"value0","nativeSrc":"42230:6:101","nodeType":"YulTypedName","src":"42230:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"42241:4:101","nodeType":"YulTypedName","src":"42241:4:101","type":""}],"src":"42126:226:101"}]},"contents":"{\n    { }\n    function validator_revert_bytes4(value)\n    {\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_bytes4(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        mcopy(add(pos, 0x20), add(value, 0x20), length)\n        mstore(add(add(pos, length), 0x20), 0)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string(value0, add(headStart, 32))\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function allocate_memory() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0180)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_string(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let length := calldataload(offset)\n        let src := add(offset, 0x20)\n        let array_1 := 0\n        let size := 0\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let result := and(add(length, 31), not(31))\n        size := add(result, 0x20)\n        let memPtr := 0\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(result, 63), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        array_1 := memPtr\n        mstore(memPtr, length)\n        if gt(add(src, length), end) { revert(0, 0) }\n        calldatacopy(add(memPtr, 0x20), src, length)\n        mstore(add(add(memPtr, length), 0x20), 0)\n        array := memPtr\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        value0 := abi_decode_string(add(headStart, offset), dataEnd)\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        value1 := abi_decode_string(add(headStart, offset_1), dataEnd)\n        let value := calldataload(add(headStart, 64))\n        validator_revert_address(value)\n        value2 := value\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function abi_decode_uint40(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_struct_PolicyData(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0x0180) { revert(0, 0) }\n        value := allocate_memory()\n        let value_1 := 0\n        value_1 := calldataload(headStart)\n        mstore(value, value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 32))\n        mstore(add(value, 32), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 64))\n        mstore(add(value, 64), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 96))\n        mstore(add(value, 96), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(add(value, 128), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 160))\n        mstore(add(value, 160), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(value, 192), value_7)\n        let value_8 := 0\n        value_8 := calldataload(add(headStart, 224))\n        mstore(add(value, 224), value_8)\n        let value_9 := 0\n        value_9 := calldataload(add(headStart, 256))\n        mstore(add(value, 256), value_9)\n        let value_10 := 0\n        value_10 := calldataload(add(headStart, 288))\n        mstore(add(value, 288), value_10)\n        mstore(add(value, 320), abi_decode_uint40(add(headStart, 320)))\n        mstore(add(value, 352), abi_decode_uint40(add(headStart, 352)))\n    }\n    function abi_decode_uint96(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_addresst_addresst_uint96(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 480) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData(headStart, dataEnd)\n        let value := calldataload(add(headStart, 384))\n        validator_revert_address(value)\n        value1 := value\n        let value_1 := calldataload(add(headStart, 416))\n        validator_revert_address(value_1)\n        value2 := value_1\n        value3 := abi_decode_uint96(add(headStart, 448))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPoolComponent_$29188(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function validator_assert_enum_ComponentStatus(value)\n    {\n        if iszero(lt(value, 4))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_t_enum$_ComponentStatus_$22904__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        validator_assert_enum_ComponentStatus(value0)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        value1 := abi_decode_string(add(headStart, offset), dataEnd)\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_string_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_1, 32)\n        value1 := length\n    }\n    function validator_revert_enum_ComponentStatus(value)\n    {\n        if iszero(lt(value, 4)) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPoolComponent_$29188t_enum$_ComponentStatus_$22904(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_enum_ComponentStatus(value_1)\n        value1 := value_1\n    }\n    function abi_decode_struct_PolicyData_calldata(offset, end) -> value\n    {\n        if slt(sub(end, offset), 384) { revert(0, 0) }\n        value := offset\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_struct$_PolicyData_$22256_memory_ptrt_addresst_uint96(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 832) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_calldata(headStart, dataEnd)\n        value1 := abi_decode_struct_PolicyData(add(headStart, 384), dataEnd)\n        let value := calldataload(add(headStart, 768))\n        validator_revert_address(value)\n        value2 := value\n        value3 := abi_decode_uint96(add(headStart, 800))\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPoolComponent_$29188t_enum$_ComponentKind_$22910(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_enum_ComponentStatus(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 480) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_calldata(headStart, dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 416))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 448))\n        value3 := value_2\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_IRiskModule_$29295t_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_contract$_IRiskModule_$29295(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function validator_revert_bool(value)\n    {\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_bool(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        if gt(add(add(_1, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_1, 32)\n        value1 := length\n    }\n    function abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let tail_1 := add(headStart, 32)\n        mstore(headStart, 32)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let tail_2 := add(add(headStart, shl(5, length)), 64)\n        let srcPtr := add(value0, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, headStart), not(63)))\n            tail_2 := abi_encode_string(mload(srcPtr), tail_2)\n            srcPtr := add(srcPtr, 32)\n            pos := add(pos, 32)\n        }\n        tail := tail_2\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let offset := calldataload(add(headStart, 96))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        value3 := abi_decode_string(add(headStart, offset), dataEnd)\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 416) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_calldata(headStart, dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_addresst_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        let value_4 := calldataload(add(headStart, 128))\n        if iszero(eq(value_4, and(value_4, 0xff))) { revert(0, 0) }\n        value4 := value_4\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 160))\n        value5 := value_5\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 192))\n        value6 := value_6\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_addresst_address(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n        let value_3 := calldataload(add(headStart, 96))\n        validator_revert_address(value_3)\n        value3 := value_3\n    }\n    function abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 384) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_calldata(headStart, dataEnd)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_decode_tuple_t_contract$_IPremiumsAccount_$29276_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_uint40(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffff))\n    }\n    function abi_encode_struct_PolicyData(value, pos)\n    {\n        mstore(pos, mload(value))\n        mstore(add(pos, 0x20), mload(add(value, 0x20)))\n        mstore(add(pos, 0x40), mload(add(value, 0x40)))\n        mstore(add(pos, 0x60), mload(add(value, 0x60)))\n        mstore(add(pos, 0x80), mload(add(value, 0x80)))\n        mstore(add(pos, 0xa0), mload(add(value, 0xa0)))\n        mstore(add(pos, 0xc0), mload(add(value, 0xc0)))\n        mstore(add(pos, 0xe0), mload(add(value, 0xe0)))\n        mstore(add(pos, 0x0100), mload(add(value, 0x0100)))\n        mstore(add(pos, 0x0120), mload(add(value, 0x0120)))\n        let memberValue0 := mload(add(value, 0x0140))\n        abi_encode_uint40(memberValue0, add(pos, 0x0140))\n        let memberValue0_1 := mload(add(value, 0x0160))\n        abi_encode_uint40(memberValue0_1, add(pos, 0x0160))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 384)\n        abi_encode_struct_PolicyData(value0, headStart)\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$28869t_contract$_IEToken_$28869_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_address__to_t_address_t_uint256_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n    }\n    function array_dataslot_string_storage(ptr) -> data\n    {\n        mstore(0, ptr)\n        data := keccak256(0, 0x20)\n    }\n    function abi_encode_string_calldata(start, length, pos) -> end\n    {\n        mstore(pos, length)\n        calldatacopy(add(pos, 0x20), start, length)\n        mstore(add(add(pos, length), 0x20), 0)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_string_storage_t_string_calldata_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let ret := 0\n        let slotValue := sload(value0)\n        let length := extract_byte_array_length(slotValue)\n        mstore(add(headStart, 64), length)\n        switch and(slotValue, 1)\n        case 0 {\n            mstore(add(headStart, 96), and(slotValue, not(255)))\n            ret := add(add(headStart, shl(5, iszero(iszero(length)))), 96)\n        }\n        case 1 {\n            mstore(0, value0)\n            let dataPos := keccak256(0, 0x20)\n            let i := 0\n            for { } lt(i, length) { i := add(i, 0x20) }\n            {\n                mstore(add(add(headStart, i), 96), sload(dataPos))\n                dataPos := add(dataPos, 1)\n            }\n            ret := add(add(headStart, i), 96)\n        }\n        mstore(add(headStart, 0x20), sub(ret, headStart))\n        tail := abi_encode_string_calldata(value1, value2, ret)\n    }\n    function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n    {\n        if gt(len, 31)\n        {\n            mstore(0, array)\n            let data := keccak256(0, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _1 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _1) { start := add(start, 1) }\n            { sstore(start, 0) }\n        }\n    }\n    function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used\n    {\n        used := or(and(data, not(shr(shl(3, len), not(0)))), shl(1, len))\n    }\n    function copy_byte_array_to_storage_from_t_string_calldata_ptr_to_t_string_storage(slot, src, len)\n    {\n        if gt(len, 0xffffffffffffffff) { panic_error_0x41() }\n        clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), len)\n        let srcOffset := 0\n        switch gt(len, 31)\n        case 1 {\n            let loopEnd := and(len, not(31))\n            let dstPtr := array_dataslot_string_storage(slot)\n            let i := 0\n            for { } lt(i, loopEnd) { i := add(i, 0x20) }\n            {\n                sstore(dstPtr, calldataload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, 0x20)\n            }\n            if lt(loopEnd, len)\n            {\n                sstore(dstPtr, and(calldataload(add(src, srcOffset)), not(shr(and(shl(3, len), 248), not(0)))))\n            }\n            sstore(slot, add(shl(1, len), 1))\n        }\n        default {\n            let value := 0\n            if len\n            {\n                value := calldataload(add(src, srcOffset))\n            }\n            sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, len))\n        }\n    }\n    function abi_encode_tuple_t_enum$_ComponentKind_$22910_t_enum$_ComponentStatus_$22904__to_t_uint8_t_uint8__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        validator_assert_enum_ComponentStatus(value0)\n        mstore(headStart, value0)\n        validator_assert_enum_ComponentStatus(value1)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 384) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData(headStart, dataEnd)\n    }\n    function abi_decode_tuple_t_uint40(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint40(headStart)\n    }\n    function abi_encode_struct_PolicyData_calldata(value, pos)\n    {\n        let value_1 := 0\n        value_1 := calldataload(value)\n        mstore(pos, value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(value, 0x20))\n        mstore(add(pos, 0x20), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(value, 0x40))\n        mstore(add(pos, 0x40), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(value, 0x60))\n        mstore(add(pos, 0x60), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(value, 0x80))\n        mstore(add(pos, 0x80), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(value, 0xa0))\n        mstore(add(pos, 0xa0), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(value, 0xc0))\n        mstore(add(pos, 0xc0), value_7)\n        let value_8 := 0\n        value_8 := calldataload(add(value, 0xe0))\n        mstore(add(pos, 0xe0), value_8)\n        let value_9 := 0\n        value_9 := calldataload(add(value, 0x0100))\n        mstore(add(pos, 0x0100), value_9)\n        let value_10 := 0\n        value_10 := calldataload(add(value, 0x0120))\n        mstore(add(pos, 0x0120), value_10)\n        let memberValue0 := abi_decode_uint40(add(value, 0x0140))\n        abi_encode_uint40(memberValue0, add(pos, 0x0140))\n        let memberValue0_1 := abi_decode_uint40(add(value, 0x0160))\n        abi_encode_uint40(memberValue0_1, add(pos, 0x0160))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$22256_calldata_ptr_t_struct$_PolicyData_$22256_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr_t_struct$_PolicyData_$22256_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 768)\n        abi_encode_struct_PolicyData_calldata(value0, headStart)\n        abi_encode_struct_PolicyData(value1, add(headStart, 384))\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, shl(224, 0xffffffff)))\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bool(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_contract$_IPolicyPoolComponent_$29188_t_enum$_ComponentKind_$22910__to_t_address_t_uint8__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        validator_assert_enum_ComponentStatus(value1)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$28869_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$22256_calldata_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 480)\n        abi_encode_struct_PolicyData_calldata(value0, headStart)\n        mstore(add(headStart, 384), value1)\n        mstore(add(headStart, 416), value2)\n        mstore(add(headStart, 448), value3)\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$22256_calldata_ptr_t_uint256_t_uint256_t_uint256_t_address__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 512)\n        abi_encode_struct_PolicyData_calldata(value0, headStart)\n        mstore(add(headStart, 384), value1)\n        mstore(add(headStart, 416), value2)\n        mstore(add(headStart, 448), value3)\n        mstore(add(headStart, 480), and(value4, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_enum$_ComponentKind_$22910_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        validator_assert_enum_ComponentStatus(value0)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_enum$_ComponentKind_$22910_t_uint128__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        validator_assert_enum_ComponentStatus(value0)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint128_t_uint128__to_t_uint128_t_uint128__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffffffffffff))\n    }\n    function calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n    {\n        if gt(startIndex, endIndex) { revert(0, 0) }\n        if gt(endIndex, length) { revert(0, 0) }\n        offsetOut := add(offset, startIndex)\n        lengthOut := sub(endIndex, startIndex)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function access_calldata_tail_t_bytes_calldata_ptr(base_ref, ptr_to_tail) -> addr, length\n    {\n        let rel_offset_of_tail := calldataload(ptr_to_tail)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(30)))) { revert(0, 0) }\n        let addr_1 := add(base_ref, rel_offset_of_tail)\n        length := calldataload(addr_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        addr := add(addr_1, 0x20)\n        if sgt(addr, sub(calldatasize(), length)) { revert(0, 0) }\n    }\n    function abi_encode_bytes(value, pos) -> end\n    {\n        let length := mload(value)\n        mcopy(pos, add(value, 0x20), length)\n        let _1 := add(pos, length)\n        mstore(_1, 0)\n        end := _1\n    }\n    function abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value2, value1, value0) -> end\n    {\n        calldatacopy(pos, value0, value1)\n        let _1 := add(pos, value1)\n        mstore(_1, 0)\n        end := abi_encode_bytes(value2, _1)\n    }\n    function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        end := abi_encode_bytes(value1, abi_encode_bytes(value0, pos))\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value6, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 224)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, 0xff))\n        mstore(add(headStart, 160), value5)\n        mstore(add(headStart, 192), value6)\n    }\n    function abi_encode_tuple_t_uint256_t_address_t_address_t_address__to_t_uint256_t_address_t_address_t_address__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 96), and(value3, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_uint256_t_uint40_t_uint256__to_t_uint256_t_uint40_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffff))\n        mstore(add(headStart, 64), value2)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function checked_add_t_uint128(x, y) -> sum\n    {\n        sum := add(and(x, 0xffffffffffffffffffffffffffffffff), and(y, 0xffffffffffffffffffffffffffffffff))\n        if gt(sum, 0xffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n    }\n    function checked_sub_t_uint128(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffffffffffffffffffffffffffff), and(y, 0xffffffffffffffffffffffffffffffff))\n        if gt(diff, 0xffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n    }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_bytes32_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256_t_uint256__to_t_address_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bytes4(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint256_t_uint256__to_t_address_t_address_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n        mstore(add(headStart, 160), value5)\n    }\n    function abi_encode_tuple_t_rational_128_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), 128)\n        tail := abi_encode_string(value3, add(headStart, 128))\n    }\n    function abi_encode_tuple_t_address_t_struct$_PolicyData_$22256_memory_ptr_t_uint256__to_t_address_t_struct$_PolicyData_$22256_memory_ptr_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 448)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        abi_encode_struct_PolicyData(value1, add(headStart, 32))\n        mstore(add(headStart, 416), value2)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src)\n    {\n        let newLen := mload(src)\n        if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n        clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), newLen)\n        let srcOffset := 0\n        srcOffset := 0x20\n        switch gt(newLen, 31)\n        case 1 {\n            let loopEnd := and(newLen, not(31))\n            let dstPtr := array_dataslot_string_storage(slot)\n            let i := 0\n            for { } lt(i, loopEnd) { i := add(i, 0x20) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, 0x20)\n            }\n            if lt(loopEnd, newLen)\n            {\n                let lastValue := mload(add(src, srcOffset))\n                sstore(dstPtr, and(lastValue, not(shr(and(shl(3, newLen), 248), not(0)))))\n            }\n            sstore(slot, add(shl(1, newLen), 1))\n        }\n        default {\n            let value := 0\n            if newLen\n            {\n                value := mload(add(src, srcOffset))\n            }\n            sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n        }\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_contract$_IPolicyHolder_$28982__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"7234":[{"length":32,"start":11117},{"length":32,"start":11158},{"length":32,"start":11650}],"22891":[{"length":32,"start":1872},{"length":32,"start":3000},{"length":32,"start":3175},{"length":32,"start":3248},{"length":32,"start":3311},{"length":32,"start":3609},{"length":32,"start":9425},{"length":32,"start":11276},{"length":32,"start":11817},{"length":32,"start":14194}]},"linkReferences":{},"object":"60806040526004361061023e575f3560e01c80636f86c89711610134578063ad3cb1cc116100b3578063dfcd412e11610078578063dfcd412e14610723578063e5a6b10f14610742578063e985e9c514610774578063f0f4426014610793578063f45346dc146107b2578063f720bbbf146107d1575f5ffd5b8063ad3cb1cc14610677578063b88d4fde146106a7578063bd644c56146106c6578063c87b56dd146106e5578063de27010a14610704575f5ffd5b806395d89b41116100f957806395d89b411461059b5780639760905e146105af5780639e2d8922146105ce578063a22cb4651461062c578063ac9650d81461064b575f5ffd5b80636f86c897146104f157806370a0823114610510578063792da09e1461052f57806382afd23b1461055a5780638456cb5914610587575f5ffd5b80634f1ef286116101c057806361d027b31161018557806361d027b3146104595780636352211e14610475578063663d8337146104945780636b8734e7146104b35780636f520b73146104d2575f5ffd5b80634f1ef286146103d157806352d1902d146103e457806355f804b3146103f85780635c975abb146104175780635fcbf4451461043a575f5ffd5b80630d100acb116102065780630d100acb1461030e57806323b872dd1461033b57806333d6157a1461035a5780633f4ba83a1461039e57806342842e0e146103b2575f5ffd5b806301ffc9a71461024257806306fdde0314610276578063077f224a14610297578063081812fc146102b8578063095ea7b3146102ef575b5f5ffd5b34801561024d575f5ffd5b5061026161025c366004614285565b6107f0565b60405190151581526020015b60405180910390f35b348015610281575f5ffd5b5061028a61081b565b60405161026d91906142ce565b3480156102a2575f5ffd5b506102b66102b13660046143c0565b6108bc565b005b3480156102c3575f5ffd5b506102d76102d2366004614436565b610a08565b6040516001600160a01b03909116815260200161026d565b3480156102fa575f5ffd5b506102b661030936600461444d565b610a1c565b348015610319575f5ffd5b5061032d61032836600461454d565b610a2b565b60405190815260200161026d565b348015610346575f5ffd5b506102b66103553660046145a7565b610e90565b348015610365575f5ffd5b506103916103743660046145e5565b6001600160a01b03165f9081526001602052604090205460ff1690565b60405161026d9190614630565b3480156103a9575f5ffd5b506102b6610f19565b3480156103bd575f5ffd5b506102b66103cc3660046145a7565b610f23565b6102b66103df366004614643565b610f42565b3480156103ef575f5ffd5b5061032d610f5d565b348015610403575f5ffd5b506102b661041236600461468f565b610f78565b348015610422575f5ffd5b505f5160206152255f395f51905f525460ff16610261565b348015610445575f5ffd5b506102b6610454366004614707565b610fc1565b348015610464575f5ffd5b505f546001600160a01b03166102d7565b348015610480575f5ffd5b506102d761048f366004614436565b6110b4565b34801561049f575f5ffd5b5061032d6104ae36600461474f565b6110be565b3480156104be575f5ffd5b506102b66104cd366004614707565b6115c4565b3480156104dd575f5ffd5b506102b66104ec36600461479d565b611ab9565b3480156104fc575f5ffd5b506102b661050b3660046145e5565b611d06565b34801561051b575f5ffd5b5061032d61052a3660046145e5565b6121b4565b34801561053a575f5ffd5b5061032d610549366004614436565b5f9081526002602052604090205490565b348015610565575f5ffd5b50610261610574366004614436565b5f90815260026020526040902054151590565b348015610592575f5ffd5b506102b661220c565b3480156105a6575f5ffd5b5061028a612214565b3480156105ba575f5ffd5b506102b66105c936600461444d565b612252565b3480156105d9575f5ffd5b506106176105e83660046145e5565b6001600160a01b03165f908152600460205260409020546001600160801b0380821692600160801b9092041690565b6040805192835260208301919091520161026d565b348015610637575f5ffd5b506102b66106463660046147e5565b612331565b348015610656575f5ffd5b5061066a610665366004614811565b61233c565b60405161026d9190614870565b348015610682575f5ffd5b5061028a604051806040016040528060058152602001640352e302e360dc1b81525081565b3480156106b2575f5ffd5b506102b66106c13660046148d3565b612421565b3480156106d1575f5ffd5b506102b66106e036600461493a565b612439565b3480156106f0575f5ffd5b5061028a6106ff366004614436565b61245a565b34801561070f575f5ffd5b506102b661071e366004614965565b6124bf565b34801561072e575f5ffd5b5061032d61073d3660046149d6565b61257d565b34801561074d575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000006102d7565b34801561077f575f5ffd5b5061026161078e366004614a26565b6126b4565b34801561079e575f5ffd5b506102b66107ad3660046145e5565b612700565b3480156107bd575f5ffd5b506102b66107cc366004614a52565b61270c565b3480156107dc575f5ffd5b506102b66107eb366004614a86565b61271f565b5f6107fa826127a4565b8061081557506001600160e01b0319821663c476978760e01b145b92915050565b5f5160206151e55f395f51905f52805460609190819061083a90614aa1565b80601f016020809104026020016040519081016040528092919081815260200182805461086690614aa1565b80156108b15780601f10610888576101008083540402835291602001916108b1565b820191905f5260205f20905b81548152906001019060200180831161089457829003601f168201915b505050505091505090565b5f6108c56127f3565b805490915060ff600160401b82041615906001600160401b03165f811580156108eb5750825b90505f826001600160401b031660011480156109065750303b155b905081158015610914575080155b156109325760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561095c57845460ff60401b1916600160401b1785555b87515f0361097c57604051620beefb60e01b815260040160405180910390fd5b86515f0361099d576040516343b47bcb60e01b815260040160405180910390fd5b6109a7888861281b565b6109af61282d565b6109b886612835565b83156109fe57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b5f610a128261283d565b5061081582612874565b610a278282336128ad565b5050565b5f610a346128ba565b33610a408160026128ea565b5f816001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a7d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aa19190614ad3565b9050610aae8160036128ea565b610ab88285612925565b80885264ffffffffff42166101408901525f9081526002602052604090205487519015610b04576040516315e46fbb60e01b8152600401610afb91815260200190565b60405180910390fd5b50610b0e87612951565b87515f9081526002602090815260408083209390935589518351918201909352908152610b3c9187916129a3565b610b4c82600189602001516129ba565b60405163f79ac18360e01b81526001600160a01b0382169063f79ac18390610b78908a90600401614b85565b5f604051808303815f87803b158015610b8f575f5ffd5b505af1158015610ba1573d5f5f3e3d5ffd5b50505060a0880151610be291506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169088908490612ab1565b5f5f826001600160a01b0316635e4458596040518163ffffffff1660e01b81526004016040805180830381865afa158015610c1f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c439190614b94565b6101208b0151919350915015610c9157610120890151610c91906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016908a908490612ab1565b61010089015115610cda57610100890151610cda906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016908a908590612ab1565b5f5460c08a0151610d1d916001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116928c929190911690612ab1565b5f8960e00151118015610da15750836001600160a01b031663521eb2736040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d67573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d8b9190614ad3565b6001600160a01b0316886001600160a01b031614155b15610e4157610e4188856001600160a01b031663521eb2736040518163ffffffff1660e01b8152600401602060405180830381865afa158015610de6573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e0a9190614ad3565b60e08c01516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016929190612ab1565b836001600160a01b03167f988ac1a1c4820f963124b6fa0394627ad4fa3de7583a76399b998c1d7e43af3f8a604051610e7a9190614b85565b60405180910390a2505095519695505050505050565b6001600160a01b038216610eb957604051633250574960e11b81525f6004820152602401610afb565b5f610ec5838333612ae7565b9050836001600160a01b0316816001600160a01b031614610f13576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610afb565b50505050565b610f21612b03565b565b610f3d83838360405180602001604052805f815250612421565b505050565b610f4a612b62565b610f5382612c06565b610a278282612cbb565b5f610f66612d77565b505f5160206152055f395f51905f5290565b7fc41b7cb64e5be01af4afc2641afc861432136270f4206b7773f229b658b9669960038383604051610fac93929190614be9565b60405180910390a16003610f3d828483614cc9565b6001600160a01b0382165f90815260016020526040812090815460ff166003811115610fef57610fef614600565b0361100d57604051637d91856360e01b815260040160405180910390fd5b5f82600381111561102057611020614600565b0361103e576040516332b409a160e01b815260040160405180910390fd5b80548290829060ff1916600183600381111561105c5761105c614600565b021790555080546040516001600160a01b038516917ffe4c6998a06520b63340a48710b374432cb395da90e4e5360e1ec7aeefebecef916110a791610100900460ff16908690614d82565b60405180910390a2505050565b5f6108158261283d565b5f6110c76128ba565b6110de6110d936879003870187614da8565b612dc0565b33853560601c811461110357604051634ace04f960e01b815260040160405180910390fd5b61110e8160026128ea565b5f816001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561114b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061116f9190614ad3565b905061117c8160036128ea565b64ffffffffff421661119661018089016101608a01614dc3565b64ffffffffff161180156111bd57504264ffffffffff1686610160015164ffffffffff1610155b8735906111e057604051630422552f60e11b8152600401610afb91815260200190565b5085610140015164ffffffffff16876101400160208101906112029190614dc3565b64ffffffffff1614801561121e57508560a001518760a0013511155b801561123257508560c001518760c0013511155b8015611248575085610100015187610100013511155b801561125e575085610120015187610120013511155b801561127257508560e001518760e0013511155b87879091611295576040516301ff548560e61b8152600401610afb929190614e76565b50506112a18285612925565b8087525f90815260026020526040902054865190156112d6576040516315e46fbb60e01b8152600401610afb91815260200190565b506112e086612951565b86515f908152600260205260408120919091556112fd88356110b4565b905061131b81885f015160405180602001604052805f8152506129a3565b87602001358760200151111561134f5761134a8360018a602001358a602001516113459190614ea7565b6129ba565b611368565b611368835f89602001518b602001356113459190614ea7565b87355f908152600260205260408082209190915551636ae360b360e11b81526001600160a01b0383169063d5c6c166906113a8908b908b90600401614e76565b5f604051808303815f87803b1580156113bf575f5ffd5b505af11580156113d1573d5f5f3e3d5ffd5b505050506113e986838960a001518b60a00135612e09565b5f5f836001600160a01b0316635e4458596040518163ffffffff1660e01b81526004016040805180830381865afa158015611426573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061144a9190614b94565b9150915061146488828b61012001518d6101200135612e09565b61147a88838b61010001518d6101000135612e09565b5f5460c0808b015161149d928b926001600160a01b0390911691908e0135612e09565b5f856001600160a01b031663521eb2736040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114da573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114fe9190614ad3565b9050806001600160a01b0316896001600160a01b03161461152d5761152d89828c60e001518e60e00135612e09565b856001600160a01b03167f988ac1a1c4820f963124b6fa0394627ad4fa3de7583a76399b998c1d7e43af3f8b6040516115669190614b85565b60405180910390a289516040518c35906001600160a01b038916907f4ff4ac703cb703b7ea535d47e65e64b4cabf11b3e2eb41f152dab17971953add905f90a489516115b4908c3590612e58565b5050965198975050505050505050565b6001600160a01b0382165f90815260016020526040812090815460ff1660038111156115f2576115f2614600565b146116105760405163cf9a96f360e01b815260040160405180910390fd5b306001600160a01b0316836001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015611656573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061167a9190614ad3565b6001600160a01b0316146116a157604051630fdee24360e11b815260040160405180910390fd5b5f8260038111156116b4576116b4614600565b148061174b575060018260038111156116cf576116cf614600565b14801561174b57506040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061170a90636d5136b160e11b90600401614eba565b602060405180830381865afa158015611725573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117499190614ecf565b155b806117e15750600382600381111561176557611765614600565b1480156117e157506040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906117a09063f7e4b01b60e01b90600401614eba565b602060405180830381865afa1580156117bb573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117df9190614ecf565b155b80611877575060028260038111156117fb576117fb614600565b14801561187757506040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790611836906321b7e09b60e01b90600401614eba565b602060405180830381865afa158015611851573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118759190614ecf565b155b1561189957828260405163502c9a5f60e01b8152600401610afb929190614eea565b8054600160ff198216811783558391839161ffff19909116176101008360038111156118c7576118c7614600565b021790555060038260038111156118e0576118e0614600565b03611a7d575f8390505f816001600160a01b031663536ebbfc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611926573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061194a9190614ad3565b90506001600160a01b038116156119b2576040516338ea38a760e21b81526001600160a01b03838116600483015282169063e3a8e29c906024015f604051808303815f87803b15801561199b575f5ffd5b505af11580156119ad573d5f5f3e3d5ffd5b505050505b816001600160a01b0316637b83037b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119ee573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a129190614ad3565b90506001600160a01b03811615611a7a576040516338ea38a760e21b81526001600160a01b03838116600483015282169063e3a8e29c906024015f604051808303815f87803b158015611a63575f5ffd5b505af1158015611a75573d5f5f3e3d5ffd5b505050505b50505b826001600160a01b03167ffe4c6998a06520b63340a48710b374432cb395da90e4e5360e1ec7aeefebecef8360016040516110a7929190614d82565b611ac16128ba565b611ad36110d936869003860186614da8565b33843560601c8114611af857604051634ace04f960e01b815260040160405180910390fd5b611b03816002612f3f565b5f816001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b40573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b649190614ad3565b9050611b71816003612f3f565b64ffffffffff4216611b8b61018088016101608901614dc3565b64ffffffffff1611865f013590611bb857604051630422552f60e11b8152600401610afb91815260200190565b508560a001358511158015611bd257508561010001358411155b8015611be357508561012001358311155b8686868690919293611c0c5760405163a02db78360e01b8152600401610afb9493929190614f03565b505050505f611c1d875f01356110b4565b9050611c2e835f89602001356129ba565b86355f90815260026020526040808220919091555163770fcd3560e11b81526001600160a01b0383169063ee1f9a6a90611c74908a908a908a908a908890600401614f30565b5f604051808303815f87803b158015611c8b575f5ffd5b505af1158015611c9d573d5f5f3e3d5ffd5b50506040805189815260208101899052908101879052893592506001600160a01b03861691507f825c3ee6eecaa4b0dc3573e9732b65613d705cadfc4ba69cc76cb7d9227e59719060600160405180910390a3611cfd8735878787612f9e565b50505050505050565b6001600160a01b0381165f9081526001602052604090206002815460ff166003811115611d3557611d35614600565b14611d5357604051635c92b23960e11b815260040160405180910390fd5b60018154610100900460ff166003811115611d7057611d70614600565b03611e6b57816001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611db1573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dd59190614f6f565b15611e6657805f0160019054906101000a900460ff16826001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e27573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e4b9190614f6f565b604051631d0ec0ab60e01b8152600401610afb929190614f86565b612144565b60028154610100900460ff166003811115611e8857611e88614600565b03611efa576001600160a01b0382165f908152600460205260409020546001600160801b031615611e665780546001600160a01b0383165f90815260046020819052604091829020549151631d0ec0ab60e01b8152610afb93610100900460ff16926001600160801b03169101614f9d565b5f829050806001600160a01b03166326ccbd226040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f3a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f5e9190614f6f565b15611fb057815f0160019054906101000a900460ff16816001600160a01b03166326ccbd226040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e27573d5f5f3e3d5ffd5b5f816001600160a01b031663536ebbfc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fed573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120119190614ad3565b90506001600160a01b03811615612079576040516376c7fc5560e01b81526001600160a01b0383811660048301528216906376c7fc55906024015f604051808303815f87803b158015612062575f5ffd5b505af1158015612074573d5f5f3e3d5ffd5b505050505b816001600160a01b0316637b83037b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120b5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120d99190614ad3565b90506001600160a01b03811615612141576040516376c7fc5560e01b81526001600160a01b0383811660048301528216906376c7fc55906024015f604051808303815f87803b15801561212a575f5ffd5b505af115801561213c573d5f5f3e3d5ffd5b505050505b50505b80546040516001600160a01b038416917ffe4c6998a06520b63340a48710b374432cb395da90e4e5360e1ec7aeefebecef9161218a91610100900460ff16905f90614d82565b60405180910390a2506001600160a01b03165f908152600160205260409020805461ffff19169055565b5f5f5160206151e55f395f51905f526001600160a01b0383166121ec576040516322718ad960e21b81525f6004820152602401610afb565b6001600160a01b039092165f908152600390920160205250604090205490565b610f2161309c565b7f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930180546060915f5160206151e55f395f51905f529161083a90614aa1565b6001600160a01b0382165f90815260046020526040812090612273836130e4565b82549091506001600160801b0390811690829081168211156122bb57604051630ce06d1360e31b81526001600160801b03928316600482015291166024820152604401610afb565b5050815460408051600160801b9092046001600160801b039081168352831660208301526001600160a01b038616917f7e1092696182a6d6922c9583db468951527f21f67f9f2f4911ed3f7bbf02b330910160405180910390a281546001600160801b03918216600160801b0291161790555050565b610a2733838361311b565b604080515f815260208101909152606090826001600160401b03811115612365576123656142e0565b60405190808252806020026020018201604052801561239857816020015b60608152602001906001900390816123835790505b5091505f5b83811015612419576123f4308686848181106123bb576123bb614fc2565b90506020028101906123cd9190614fd6565b856040516020016123e093929190615036565b6040516020818303038152906040526131ca565b83828151811061240657612406614fc2565b602090810291909101015260010161239d565b505092915050565b61242c848484610e90565b610f13338585858561326a565b6124416128ba565b610a2761245336849003840184614da8565b825f613389565b60606124658261283d565b505f61246f61360e565b90505f81511161248d5760405180602001604052805f8152506124b8565b806124978461369e565b6040516020016124a892919061504b565b6040516020818303038152906040525b9392505050565b6124c76128ba565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663d505accf336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604481018990526064810187905260ff8616608482015260a4810185905260c4810184905260e4015f604051808303815f87803b158015612560575f5ffd5b505af1925050508015612571575060015b50611cfd87878761372d565b5f6125866128ba565b826001600160a01b0381166125ba57604051639cfea58360e01b81526001600160a01b039091166004820152602401610afb565b506125c6856001612f3f565b6001600160a01b0385166323e103a885336040516001600160e01b031960e085901b16815260048101929092526001600160a01b0390811660248301528086166044830152861660648201526084016020604051808303815f875af1158015612631573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126559190614f6f565b90506001600160a01b03831633604080516001600160a01b03868116825260208201869052928316928916917fe826ecb5c03d4897f8ab426ee94064e06179dff39cd9fdd0776904cd935c95d8910160405180910390a4949350505050565b6001600160a01b039182165f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab00793056020908152604080832093909416825291909152205460ff1690565b61270981613878565b50565b6127146128ba565b610f3d83838361372d565b6127276128ba565b4261273a61018083016101608401614dc3565b64ffffffffff16111561278a57803561275b61018083016101608401614dc3565b60405163312bfdd760e11b8152600481019290925264ffffffffff166024820152426044820152606401610afb565b61270961279c36839003830183614da8565b5f6001613389565b5f6001600160e01b031982166380ac58cd60e01b14806127d457506001600160e01b03198216635b5e139f60e01b145b8061081557506301ffc9a760e01b6001600160e01b0319831614610815565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610815565b612823613906565b610a27828261392b565b610f21613906565b612700613906565b5f5f6128488361395b565b90506001600160a01b03811661081557604051637e27328960e01b815260048101849052602401610afb565b5f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930460205260409020546001600160a01b031690565b610f3d8383836001613994565b5f5160206152255f395f51905f525460ff1615610f215760405163d93c066560e01b815260040160405180910390fd5b60016128f68383613aa7565b600381111561290757612907614600565b14610a2757604051630422f25f60e01b815260040160405180910390fd5b5f6124b86bffffffffffffffffffffffff83166bffffffffffffffffffffffff19606086901b1661505f565b5f816040516020016129639190614b85565b60408051601f1981840301815291905280516020909101209050818161299d57604051636ee9f64760e01b8152600401610afb9190614b85565b50919050565b6129ad8383613b18565b610f3d335f85858561326a565b6001600160a01b0383165f9081526004602052604090208215612a64576129e0826130e4565b815482905f906129fa9084906001600160801b0316615072565b82546101009290920a6001600160801b0381810219909316918316021790915582548082169250600160801b90041680821115612a5d57604051630ce06d1360e31b81526001600160801b03928316600482015291166024820152604401610afb565b5050610f13565b612a6d826130e4565b815482905f90612a879084906001600160801b0316615091565b92506101000a8154816001600160801b0302191690836001600160801b0316021790555050505050565b612abf848484846001613b79565b610f1357604051635274afe760e01b81526001600160a01b0385166004820152602401610afb565b5f612af06128ba565b612afb848484613be6565b949350505050565b612b0b613ce8565b5f5160206152255f395f51905f52805460ff191681557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a150565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480612be857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316612bdc5f5160206152055f395f51905f52546001600160a01b031690565b6001600160a01b031614155b15610f215760405163703e46dd60e11b815260040160405180910390fd5b5f8190507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c70573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c949190614ad3565b6001600160a01b031614610a27576040516324a41b4360e11b815260040160405180910390fd5b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015612d15575060408051601f3d908101601f19168201909252612d1291810190614f6f565b60015b612d3d57604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610afb565b5f5160206152055f395f51905f528114612d6d57604051632a87526960e21b815260048101829052602401610afb565b610f3d8383613d17565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f215760405163703e46dd60e11b815260040160405180910390fd5b805115801590612de6575080515f90815260026020526040902054612de482612951565b145b815190610a27576040516321df5fa560e11b8152600401610afb91815260200190565b5f612e148284614ea7565b90508015612e5157612e516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016868684612ab1565b5050505050565b5f612e62836110b4565b9050612e7581630162fc8560e11b613d6c565b612e7e57505050565b5f6001600160a01b038216635ee0c7dd336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101879052606481018690526084016020604051808303815f875af1158015612ee6573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f0a91906150b0565b90506001600160e01b03198116635ee0c7dd60e01b14610f1357806040516381784a5160e01b8152600401610afb9190614eba565b5f612f4a8383613aa7565b90506001816003811115612f6057612f60614600565b14158015612f8057506002816003811115612f7d57612f7d614600565b14155b15610f3d5760405163d08ef1ff60e01b815260040160405180910390fd5b5f612fa8856110b4565b9050612fbb81630162fc8560e11b613d6c565b612fc55750610f13565b5f6001600160a01b0382166362eb345e336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101899052606481018890526084810187905260a4810186905260c4016020604051808303815f875af115801561303b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061305f91906150b0565b90506001600160e01b031981166331759a2f60e11b1461309457806040516381784a5160e01b8152600401610afb9190614eba565b505050505050565b6130a46128ba565b5f5160206152255f395f51905f52805460ff191660011781557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833612b44565b5f6001600160801b03821115613117576040516306dfcc6560e41b81526080600482015260248101839052604401610afb565b5090565b5f5160206151e55f395f51905f526001600160a01b03831661315b57604051630b61174360e31b81526001600160a01b0384166004820152602401610afb565b6001600160a01b038481165f818152600584016020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a350505050565b60605f6131d78484613d87565b90508080156131f857505f3d11806131f857505f846001600160a01b03163b115b1561320d57613205613d9a565b915050610815565b801561323757604051639996b31560e01b81526001600160a01b0385166004820152602401610afb565b3d1561324a57613245613db3565b613263565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b6001600160a01b0383163b15612e5157604051630a85bd0160e11b81526001600160a01b0384169063150b7a02906132ac9088908890879087906004016150cb565b6020604051808303815f875af19250505080156132e6575060408051601f3d908101601f191682019092526132e3918101906150b0565b60015b61334d573d808015613313576040519150601f19603f3d011682016040523d82523d5f602084013e613318565b606091505b5080515f0361334557604051633250574960e11b81526001600160a01b0385166004820152602401610afb565b805160208201fd5b6001600160e01b03198116630a85bd0160e11b1461309457604051633250574960e11b81526001600160a01b0385166004820152602401610afb565b61339283612dc0565b825160601c811580156133ae57506001600160a01b0381163314155b156133cc57604051634ace04f960e01b815260040160405180910390fd5b8215806133e457504284610160015164ffffffffff16115b84519061340757604051630422552f60e11b8152600401610afb91815260200190565b50613413816002612f3f565b6020840151839080821115613444576040516317d3b4f960e01b815260048101929092526024820152604401610afb565b50505f5f841190505f826001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613489573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134ad9190614ad3565b90506134ba816003612f3f565b85515f908152600260205260408120558115613543575f6134dd875f01516110b4565b604051631dda289960e01b81529091506001600160a01b03831690631dda2899906135109084908b908b906004016150fd565b5f604051808303815f87803b158015613527575f5ffd5b505af1158015613539573d5f5f3e3d5ffd5b505050505061359d565b6040516376185ff160e01b81526001600160a01b038216906376185ff19061356f908990600401614b85565b5f604051808303815f87803b158015613586575f5ffd5b505af1158015613598573d5f5f3e3d5ffd5b505050505b6135ac835f88602001516129ba565b85516040518681526001600160a01b038516907f54f4a270ea08f88dc23b2520d6b063fecb24d956c4496f447926d736338f545e9060200160405180910390a384156136035785516135fe9086613dbe565b613094565b855161309490613ea5565b60606003805461361d90614aa1565b80601f016020809104026020016040519081016040528092919081815260200182805461364990614aa1565b80156136945780601f1061366b57610100808354040283529160200191613694565b820191905f5260205f20905b81548152906001019060200180831161367757829003601f168201915b5050505050905090565b60605f6136aa83613f93565b60010190505f816001600160401b038111156136c8576136c86142e0565b6040519080825280601f01601f1916602001820160405280156136f2576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846136fc57509392505050565b806001600160a01b03811661376157604051639cfea58360e01b81526001600160a01b039091166004820152602401610afb565b5061376d8360016128ea565b6137a27f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316338585612ab1565b6001600160a01b038316632e2d298483336040516001600160e01b031960e085901b16815260048101929092526001600160a01b039081166024830152841660448201526064015f604051808303815f87803b158015613800575f5ffd5b505af1158015613812573d5f5f3e3d5ffd5b50505050806001600160a01b03166138273390565b6001600160a01b0316846001600160a01b03167f7cfff908a4b583f36430b25d75964c458d8ede8a99bd61be750e97ee1b2f3a968560405161386b91815260200190565b60405180910390a4505050565b6001600160a01b03811661389f576040516307a2ee8b60e11b815260040160405180910390fd5b5f54604080516001600160a01b03928316815291831660208301527f8c3aa5f43a388513435861bf27dfad7829cd248696fed367c62d441f62954496910160405180910390a15f80546001600160a01b0319166001600160a01b0392909216919091179055565b61390e61406a565b610f2157604051631afcd79f60e31b815260040160405180910390fd5b613933613906565b5f5160206151e55f395f51905f528061394c848261512a565b5060018101610f13838261512a565b5f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930260205260409020546001600160a01b031690565b5f5160206151e55f395f51905f5281806139b657506001600160a01b03831615155b15613a77575f6139c58561283d565b90506001600160a01b038416158015906139f15750836001600160a01b0316816001600160a01b031614155b8015613a045750613a0281856126b4565b155b15613a2d5760405163a9fbf51f60e01b81526001600160a01b0385166004820152602401610afb565b8215613a755784866001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5f93845260040160205250506040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382165f908152600160205260408120826003811115613ad057613ad0614600565b8154610100900460ff166003811115613aeb57613aeb614600565b14613b0d57838360405163502c9a5f60e01b8152600401610afb929190614eea565b5460ff169392505050565b6001600160a01b038216613b4157604051633250574960e11b81525f6004820152602401610afb565b5f613b4d83835f612ae7565b90506001600160a01b03811615610f3d576040516339e3563760e11b81525f6004820152602401610afb565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f51148316613bd5578383151615613bc9573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b5f5f5160206151e55f395f51905f5281613bff8561395b565b90506001600160a01b03841615613c1b57613c1b818587614083565b6001600160a01b03811615613c5757613c365f865f5f613994565b6001600160a01b0381165f908152600383016020526040902080545f190190555b6001600160a01b03861615613c87576001600160a01b0386165f9081526003830160205260409020805460010190555b5f85815260028301602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a495945050505050565b5f5160206152255f395f51905f525460ff16610f2157604051638dfc202b60e01b815260040160405180910390fd5b613d20826140e7565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115613d6457610f3d82826131ca565b610a2761414a565b5f613d7683614169565b80156124b857506124b883836141b4565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f613dc8836110b4565b9050613ddb81630162fc8560e11b613d6c565b613de457505050565b5f6001600160a01b03821663d6281d3e336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101879052606481018690526084016020604051808303815f875af1158015613e4c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e7091906150b0565b90506001600160e01b03198116636b140e9f60e11b14610f1357806040516381784a5160e01b8152600401610afb9190614eba565b5f613eaf826110b4565b9050613ec281630162fc8560e11b613d6c565b613eca575050565b6001600160a01b03811663e8e617b7620249f0336040516001600160e01b031960e085901b1681526001600160a01b039091166004820152306024820152604481018690526064016020604051808303815f8887f193505050508015613f4d575060408051601f3d908101601f19168201909252613f4a918101906150b0565b60015b610f3d576040516001600160a01b038216815282907f6ce8016f81523f240956bca9a698e643d09e84e7d0e931470b1016baf1027bd09060200160405180910390a25050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310613fd15772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310613ffd576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061401b57662386f26fc10000830492506010015b6305f5e1008310614033576305f5e100830492506008015b612710831061404757612710830492506004015b60648310614059576064830492506002015b600a83106108155760010192915050565b5f6140736127f3565b54600160401b900460ff16919050565b61408e8383836141d8565b610f3d576001600160a01b0383166140bc57604051637e27328960e01b815260048101829052602401610afb565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610afb565b806001600160a01b03163b5f0361411c57604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610afb565b5f5160206152055f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b3415610f215760405163b398979f60e01b815260040160405180910390fd5b5f61417b826301ffc9a760e01b6141b4565b156141a8575f80614194846001600160e01b031961423c565b91509150818015612afb5750159392505050565b505f919050565b919050565b5f5f5f6141c1858561423c565b915091508180156141cf5750805b95945050505050565b5f6001600160a01b03831615801590612afb5750826001600160a01b0316846001600160a01b03161480614211575061421184846126b4565b80612afb5750826001600160a01b031661422a83612874565b6001600160a01b031614949350505050565b6301ffc9a760e01b5f818152600483905290819060208260248188617530fa92505f511515601f3d11169150509250929050565b6001600160e01b031981168114612709575f5ffd5b5f60208284031215614295575f5ffd5b81356124b881614270565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6124b860208301846142a0565b634e487b7160e01b5f52604160045260245ffd5b60405161018081016001600160401b0381118282101715614317576143176142e0565b60405290565b5f82601f83011261432c575f5ffd5b8135602083015f5f6001600160401b0384111561434b5761434b6142e0565b50604051601f19601f85018116603f011681018181106001600160401b0382111715614379576143796142e0565b604052838152905080828401871015614390575f5ffd5b838360208301375f602085830101528094505050505092915050565b6001600160a01b0381168114612709575f5ffd5b5f5f5f606084860312156143d2575f5ffd5b83356001600160401b038111156143e7575f5ffd5b6143f38682870161431d565b93505060208401356001600160401b0381111561440e575f5ffd5b61441a8682870161431d565b925050604084013561442b816143ac565b809150509250925092565b5f60208284031215614446575f5ffd5b5035919050565b5f5f6040838503121561445e575f5ffd5b8235614469816143ac565b946020939093013593505050565b803564ffffffffff811681146141af575f5ffd5b5f610180828403121561449c575f5ffd5b6144a46142f4565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e080840135908201526101008084013590820152610120808401359082015290506145136101408301614477565b6101408201526145266101608301614477565b61016082015292915050565b80356bffffffffffffffffffffffff811681146141af575f5ffd5b5f5f5f5f6101e08587031215614561575f5ffd5b61456b868661448b565b935061018085013561457c816143ac565b92506101a085013561458d816143ac565b915061459c6101c08601614532565b905092959194509250565b5f5f5f606084860312156145b9575f5ffd5b83356145c4816143ac565b925060208401356145d4816143ac565b929592945050506040919091013590565b5f602082840312156145f5575f5ffd5b81356124b8816143ac565b634e487b7160e01b5f52602160045260245ffd5b6004811061270957634e487b7160e01b5f52602160045260245ffd5b6020810161463d83614614565b91905290565b5f5f60408385031215614654575f5ffd5b823561465f816143ac565b915060208301356001600160401b03811115614679575f5ffd5b6146858582860161431d565b9150509250929050565b5f5f602083850312156146a0575f5ffd5b82356001600160401b038111156146b5575f5ffd5b8301601f810185136146c5575f5ffd5b80356001600160401b038111156146da575f5ffd5b8560208284010111156146eb575f5ffd5b6020919091019590945092505050565b60048110612709575f5ffd5b5f5f60408385031215614718575f5ffd5b8235614723816143ac565b91506020830135614733816146fb565b809150509250929050565b5f610180828403121561299d575f5ffd5b5f5f5f5f6103408587031215614763575f5ffd5b61476d868661473e565b935061477d86610180870161448b565b925061030085013561478e816143ac565b915061459c6103208601614532565b5f5f5f5f6101e085870312156147b1575f5ffd5b6147bb868661473e565b9661018086013596506101a0860135956101c00135945092505050565b8015158114612709575f5ffd5b5f5f604083850312156147f6575f5ffd5b8235614801816143ac565b91506020830135614733816147d8565b5f5f60208385031215614822575f5ffd5b82356001600160401b03811115614837575f5ffd5b8301601f81018513614847575f5ffd5b80356001600160401b0381111561485c575f5ffd5b8560208260051b84010111156146eb575f5ffd5b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b828110156148c757603f198786030184526148b28583516142a0565b94506020938401939190910190600101614896565b50929695505050505050565b5f5f5f5f608085870312156148e6575f5ffd5b84356148f1816143ac565b93506020850135614901816143ac565b92506040850135915060608501356001600160401b03811115614922575f5ffd5b61492e8782880161431d565b91505092959194509250565b5f5f6101a0838503121561494c575f5ffd5b614956848461473e565b94610180939093013593505050565b5f5f5f5f5f5f5f60e0888a03121561497b575f5ffd5b8735614986816143ac565b965060208801359550604088013561499d816143ac565b945060608801359350608088013560ff811681146149b9575f5ffd5b9699959850939692959460a0840135945060c09093013592915050565b5f5f5f5f608085870312156149e9575f5ffd5b84356149f4816143ac565b9350602085013592506040850135614a0b816143ac565b91506060850135614a1b816143ac565b939692955090935050565b5f5f60408385031215614a37575f5ffd5b8235614a42816143ac565b91506020830135614733816143ac565b5f5f5f60608486031215614a64575f5ffd5b8335614a6f816143ac565b925060208401359150604084013561442b816143ac565b5f6101808284031215614a97575f5ffd5b6124b8838361473e565b600181811c90821680614ab557607f821691505b60208210810361299d57634e487b7160e01b5f52602260045260245ffd5b5f60208284031215614ae3575f5ffd5b81516124b8816143ac565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e0830152610100810151610100830152610120810151610120830152610140810151614b6a61014084018264ffffffffff169052565b50610160810151610f3d61016084018264ffffffffff169052565b61018081016108158284614aee565b5f5f60408385031215614ba5575f5ffd5b8251614bb0816143ac565b6020840151909250614733816143ac565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b604081525f5f8554614bfa81614aa1565b806040860152600182165f8114614c185760018114614c3457614c65565b60ff1983166060870152606082151560051b8701019350614c65565b885f5260205f205f5b83811015614c5c57815488820160600152600190910190602001614c3d565b87016060019450505b5050508281036020840152614c7b818587614bc1565b9695505050505050565b601f821115610f3d57805f5260205f20601f840160051c81016020851015614caa5750805b601f840160051c820191505b81811015612e51575f8155600101614cb6565b6001600160401b03831115614ce057614ce06142e0565b614cf483614cee8354614aa1565b83614c85565b5f601f841160018114614d25575f8515614d0e5750838201355b5f19600387901b1c1916600186901b178355612e51565b5f83815260208120601f198716915b82811015614d545786850135825560209485019460019092019101614d34565b5086821015614d70575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60408101614d8f84614614565b838252614d9b83614614565b8260208301529392505050565b5f6101808284031215614db9575f5ffd5b6124b8838361448b565b5f60208284031215614dd3575f5ffd5b6124b882614477565b803582526020808201359083015260408082013590830152606080820135908301526080808201359083015260a0808201359083015260c0808201359083015260e0808201359083015261010080820135908301526101208082013590830152614e496101408201614477565b64ffffffffff16610140830152614e636101608201614477565b64ffffffffff8116610160840152505050565b6103008101614e858285614ddc565b6124b8610180830184614aee565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561081557610815614e93565b6001600160e01b031991909116815260200190565b5f60208284031215614edf575f5ffd5b81516124b8816147d8565b6001600160a01b038316815260408101614d9b83614614565b6101e08101614f128287614ddc565b84610180830152836101a0830152826101c083015295945050505050565b6102008101614f3f8288614ddc565b6101808201959095526101a08101939093526101c08301919091526001600160a01b03166101e090910152919050565b5f60208284031215614f7f575f5ffd5b5051919050565b60408101614f9384614614565b9281526020015290565b60408101614faa84614614565b9281526001600160801b039190911660209091015290565b634e487b7160e01b5f52603260045260245ffd5b5f5f8335601e19843603018112614feb575f5ffd5b8301803591506001600160401b03821115615004575f5ffd5b602001915036819003821315615018575f5ffd5b9250929050565b5f81518060208401855e5f93019283525090919050565b828482375f8382015f8152614c7b818561501f565b5f612afb615059838661501f565b8461501f565b8082018082111561081557610815614e93565b6001600160801b03818116838216019081111561081557610815614e93565b6001600160801b03828116828216039081111561081557610815614e93565b5f602082840312156150c0575f5ffd5b81516124b881614270565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90614c7b908301846142a0565b6001600160a01b03841681526101c0810161511b6020830185614aee565b826101a0830152949350505050565b81516001600160401b03811115615143576151436142e0565b615157816151518454614aa1565b84614c85565b6020601f821160018114615189575f83156151725750848201515b5f19600385901b1c1916600184901b178455612e51565b5f84815260208120601f198516915b828110156151b85787850151825560209485019460019092019101615198565b50848210156151d557868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbccd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300a2646970667358221220f8fa27dd4fdec3476c4de2ae7b218ab3fe38ebf626046f7b0d6d77be94ae28b364736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x23E JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6F86C897 GT PUSH2 0x134 JUMPI DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0xB3 JUMPI DUP1 PUSH4 0xDFCD412E GT PUSH2 0x78 JUMPI DUP1 PUSH4 0xDFCD412E EQ PUSH2 0x723 JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x742 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x774 JUMPI DUP1 PUSH4 0xF0F44260 EQ PUSH2 0x793 JUMPI DUP1 PUSH4 0xF45346DC EQ PUSH2 0x7B2 JUMPI DUP1 PUSH4 0xF720BBBF EQ PUSH2 0x7D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x677 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x6A7 JUMPI DUP1 PUSH4 0xBD644C56 EQ PUSH2 0x6C6 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x6E5 JUMPI DUP1 PUSH4 0xDE27010A EQ PUSH2 0x704 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 GT PUSH2 0xF9 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x59B JUMPI DUP1 PUSH4 0x9760905E EQ PUSH2 0x5AF JUMPI DUP1 PUSH4 0x9E2D8922 EQ PUSH2 0x5CE JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x62C JUMPI DUP1 PUSH4 0xAC9650D8 EQ PUSH2 0x64B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6F86C897 EQ PUSH2 0x4F1 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x510 JUMPI DUP1 PUSH4 0x792DA09E EQ PUSH2 0x52F JUMPI DUP1 PUSH4 0x82AFD23B EQ PUSH2 0x55A JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x587 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4F1EF286 GT PUSH2 0x1C0 JUMPI DUP1 PUSH4 0x61D027B3 GT PUSH2 0x185 JUMPI DUP1 PUSH4 0x61D027B3 EQ PUSH2 0x459 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x475 JUMPI DUP1 PUSH4 0x663D8337 EQ PUSH2 0x494 JUMPI DUP1 PUSH4 0x6B8734E7 EQ PUSH2 0x4B3 JUMPI DUP1 PUSH4 0x6F520B73 EQ PUSH2 0x4D2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x3D1 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x3E4 JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x3F8 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x417 JUMPI DUP1 PUSH4 0x5FCBF445 EQ PUSH2 0x43A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xD100ACB GT PUSH2 0x206 JUMPI DUP1 PUSH4 0xD100ACB EQ PUSH2 0x30E JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x33B JUMPI DUP1 PUSH4 0x33D6157A EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x39E JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x3B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x242 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x276 JUMPI DUP1 PUSH4 0x77F224A EQ PUSH2 0x297 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x2B8 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2EF JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x24D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x261 PUSH2 0x25C CALLDATASIZE PUSH1 0x4 PUSH2 0x4285 JUMP JUMPDEST PUSH2 0x7F0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x281 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x28A PUSH2 0x81B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x42CE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x2B1 CALLDATASIZE PUSH1 0x4 PUSH2 0x43C0 JUMP JUMPDEST PUSH2 0x8BC JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2D7 PUSH2 0x2D2 CALLDATASIZE PUSH1 0x4 PUSH2 0x4436 JUMP JUMPDEST PUSH2 0xA08 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x26D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2FA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x309 CALLDATASIZE PUSH1 0x4 PUSH2 0x444D JUMP JUMPDEST PUSH2 0xA1C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x319 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x328 CALLDATASIZE PUSH1 0x4 PUSH2 0x454D JUMP JUMPDEST PUSH2 0xA2B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x26D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x346 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x355 CALLDATASIZE PUSH1 0x4 PUSH2 0x45A7 JUMP JUMPDEST PUSH2 0xE90 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x365 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x391 PUSH2 0x374 CALLDATASIZE PUSH1 0x4 PUSH2 0x45E5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x4630 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0xF19 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x3CC CALLDATASIZE PUSH1 0x4 PUSH2 0x45A7 JUMP JUMPDEST PUSH2 0xF23 JUMP JUMPDEST PUSH2 0x2B6 PUSH2 0x3DF CALLDATASIZE PUSH1 0x4 PUSH2 0x4643 JUMP JUMPDEST PUSH2 0xF42 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0xF5D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x403 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x412 CALLDATASIZE PUSH1 0x4 PUSH2 0x468F JUMP JUMPDEST PUSH2 0xF78 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x422 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5225 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0xFF AND PUSH2 0x261 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x445 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x454 CALLDATASIZE PUSH1 0x4 PUSH2 0x4707 JUMP JUMPDEST PUSH2 0xFC1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x464 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2D7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x480 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2D7 PUSH2 0x48F CALLDATASIZE PUSH1 0x4 PUSH2 0x4436 JUMP JUMPDEST PUSH2 0x10B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x49F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x4AE CALLDATASIZE PUSH1 0x4 PUSH2 0x474F JUMP JUMPDEST PUSH2 0x10BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4BE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x4CD CALLDATASIZE PUSH1 0x4 PUSH2 0x4707 JUMP JUMPDEST PUSH2 0x15C4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4DD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x4EC CALLDATASIZE PUSH1 0x4 PUSH2 0x479D JUMP JUMPDEST PUSH2 0x1AB9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4FC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x50B CALLDATASIZE PUSH1 0x4 PUSH2 0x45E5 JUMP JUMPDEST PUSH2 0x1D06 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x51B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x52A CALLDATASIZE PUSH1 0x4 PUSH2 0x45E5 JUMP JUMPDEST PUSH2 0x21B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x549 CALLDATASIZE PUSH1 0x4 PUSH2 0x4436 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x565 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x261 PUSH2 0x574 CALLDATASIZE PUSH1 0x4 PUSH2 0x4436 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD ISZERO ISZERO SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x592 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x220C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5A6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x28A PUSH2 0x2214 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x5C9 CALLDATASIZE PUSH1 0x4 PUSH2 0x444D JUMP JUMPDEST PUSH2 0x2252 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x617 PUSH2 0x5E8 CALLDATASIZE PUSH1 0x4 PUSH2 0x45E5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP3 AND SWAP3 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 SWAP3 DIV AND SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x26D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x637 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x646 CALLDATASIZE PUSH1 0x4 PUSH2 0x47E5 JUMP JUMPDEST PUSH2 0x2331 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x656 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x66A PUSH2 0x665 CALLDATASIZE PUSH1 0x4 PUSH2 0x4811 JUMP JUMPDEST PUSH2 0x233C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x4870 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x682 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x28A PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x6C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x48D3 JUMP JUMPDEST PUSH2 0x2421 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x6E0 CALLDATASIZE PUSH1 0x4 PUSH2 0x493A JUMP JUMPDEST PUSH2 0x2439 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x28A PUSH2 0x6FF CALLDATASIZE PUSH1 0x4 PUSH2 0x4436 JUMP JUMPDEST PUSH2 0x245A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x70F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x71E CALLDATASIZE PUSH1 0x4 PUSH2 0x4965 JUMP JUMPDEST PUSH2 0x24BF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x72E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x73D CALLDATASIZE PUSH1 0x4 PUSH2 0x49D6 JUMP JUMPDEST PUSH2 0x257D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x74D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x2D7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x77F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x261 PUSH2 0x78E CALLDATASIZE PUSH1 0x4 PUSH2 0x4A26 JUMP JUMPDEST PUSH2 0x26B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x79E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x7AD CALLDATASIZE PUSH1 0x4 PUSH2 0x45E5 JUMP JUMPDEST PUSH2 0x2700 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x7CC CALLDATASIZE PUSH1 0x4 PUSH2 0x4A52 JUMP JUMPDEST PUSH2 0x270C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x7EB CALLDATASIZE PUSH1 0x4 PUSH2 0x4A86 JUMP JUMPDEST PUSH2 0x271F JUMP JUMPDEST PUSH0 PUSH2 0x7FA DUP3 PUSH2 0x27A4 JUMP JUMPDEST DUP1 PUSH2 0x815 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xC4769787 PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51E5 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x60 SWAP2 SWAP1 DUP2 SWAP1 PUSH2 0x83A SWAP1 PUSH2 0x4AA1 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x866 SWAP1 PUSH2 0x4AA1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x8B1 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x888 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x8B1 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x894 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x8C5 PUSH2 0x27F3 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x8EB JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x906 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x914 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x932 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x95C JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST DUP8 MLOAD PUSH0 SUB PUSH2 0x97C JUMPI PUSH1 0x40 MLOAD PUSH3 0xBEEFB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP7 MLOAD PUSH0 SUB PUSH2 0x99D JUMPI PUSH1 0x40 MLOAD PUSH4 0x43B47BCB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9A7 DUP9 DUP9 PUSH2 0x281B JUMP JUMPDEST PUSH2 0x9AF PUSH2 0x282D JUMP JUMPDEST PUSH2 0x9B8 DUP7 PUSH2 0x2835 JUMP JUMPDEST DUP4 ISZERO PUSH2 0x9FE JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA12 DUP3 PUSH2 0x283D JUMP JUMPDEST POP PUSH2 0x815 DUP3 PUSH2 0x2874 JUMP JUMPDEST PUSH2 0xA27 DUP3 DUP3 CALLER PUSH2 0x28AD JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA34 PUSH2 0x28BA JUMP JUMPDEST CALLER PUSH2 0xA40 DUP2 PUSH1 0x2 PUSH2 0x28EA JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xA7D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xAA1 SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP PUSH2 0xAAE DUP2 PUSH1 0x3 PUSH2 0x28EA JUMP JUMPDEST PUSH2 0xAB8 DUP3 DUP6 PUSH2 0x2925 JUMP JUMPDEST DUP1 DUP9 MSTORE PUSH5 0xFFFFFFFFFF TIMESTAMP AND PUSH2 0x140 DUP10 ADD MSTORE PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP8 MLOAD SWAP1 ISZERO PUSH2 0xB04 JUMPI PUSH1 0x40 MLOAD PUSH4 0x15E46FBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH2 0xB0E DUP8 PUSH2 0x2951 JUMP JUMPDEST DUP8 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE DUP10 MLOAD DUP4 MLOAD SWAP2 DUP3 ADD SWAP1 SWAP4 MSTORE SWAP1 DUP2 MSTORE PUSH2 0xB3C SWAP2 DUP8 SWAP2 PUSH2 0x29A3 JUMP JUMPDEST PUSH2 0xB4C DUP3 PUSH1 0x1 DUP10 PUSH1 0x20 ADD MLOAD PUSH2 0x29BA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xF79AC183 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0xF79AC183 SWAP1 PUSH2 0xB78 SWAP1 DUP11 SWAP1 PUSH1 0x4 ADD PUSH2 0x4B85 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB8F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xBA1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP PUSH1 0xA0 DUP9 ADD MLOAD PUSH2 0xBE2 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 DUP9 SWAP1 DUP5 SWAP1 PUSH2 0x2AB1 JUMP JUMPDEST PUSH0 PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x5E445859 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC1F JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC43 SWAP2 SWAP1 PUSH2 0x4B94 JUMP JUMPDEST PUSH2 0x120 DUP12 ADD MLOAD SWAP2 SWAP4 POP SWAP2 POP ISZERO PUSH2 0xC91 JUMPI PUSH2 0x120 DUP10 ADD MLOAD PUSH2 0xC91 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 DUP11 SWAP1 DUP5 SWAP1 PUSH2 0x2AB1 JUMP JUMPDEST PUSH2 0x100 DUP10 ADD MLOAD ISZERO PUSH2 0xCDA JUMPI PUSH2 0x100 DUP10 ADD MLOAD PUSH2 0xCDA SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 DUP11 SWAP1 DUP6 SWAP1 PUSH2 0x2AB1 JUMP JUMPDEST PUSH0 SLOAD PUSH1 0xC0 DUP11 ADD MLOAD PUSH2 0xD1D SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND SWAP3 DUP13 SWAP3 SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH2 0x2AB1 JUMP JUMPDEST PUSH0 DUP10 PUSH1 0xE0 ADD MLOAD GT DUP1 ISZERO PUSH2 0xDA1 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x521EB273 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD67 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD8B SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0xE41 JUMPI PUSH2 0xE41 DUP9 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x521EB273 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xDE6 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xE0A SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST PUSH1 0xE0 DUP13 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP3 SWAP2 SWAP1 PUSH2 0x2AB1 JUMP JUMPDEST DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x988AC1A1C4820F963124B6FA0394627AD4FA3DE7583A76399B998C1D7E43AF3F DUP11 PUSH1 0x40 MLOAD PUSH2 0xE7A SWAP2 SWAP1 PUSH2 0x4B85 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP SWAP6 MLOAD SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xEB9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 PUSH2 0xEC5 DUP4 DUP4 CALLER PUSH2 0x2AE7 JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF13 JUMPI PUSH1 0x40 MLOAD PUSH4 0x64283D7B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xAFB JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0xF21 PUSH2 0x2B03 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0xF3D DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0x2421 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xF4A PUSH2 0x2B62 JUMP JUMPDEST PUSH2 0xF53 DUP3 PUSH2 0x2C06 JUMP JUMPDEST PUSH2 0xA27 DUP3 DUP3 PUSH2 0x2CBB JUMP JUMPDEST PUSH0 PUSH2 0xF66 PUSH2 0x2D77 JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5205 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH32 0xC41B7CB64E5BE01AF4AFC2641AFC861432136270F4206B7773F229B658B96699 PUSH1 0x3 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0xFAC SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4BE9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x3 PUSH2 0xF3D DUP3 DUP5 DUP4 PUSH2 0x4CC9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP2 SLOAD PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xFEF JUMPI PUSH2 0xFEF PUSH2 0x4600 JUMP JUMPDEST SUB PUSH2 0x100D JUMPI PUSH1 0x40 MLOAD PUSH4 0x7D918563 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1020 JUMPI PUSH2 0x1020 PUSH2 0x4600 JUMP JUMPDEST SUB PUSH2 0x103E JUMPI PUSH1 0x40 MLOAD PUSH4 0x32B409A1 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD DUP3 SWAP1 DUP3 SWAP1 PUSH1 0xFF NOT AND PUSH1 0x1 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x105C JUMPI PUSH2 0x105C PUSH2 0x4600 JUMP JUMPDEST MUL OR SWAP1 SSTORE POP DUP1 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP2 PUSH32 0xFE4C6998A06520B63340A48710B374432CB395DA90E4E5360E1EC7AEEFEBECEF SWAP2 PUSH2 0x10A7 SWAP2 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND SWAP1 DUP7 SWAP1 PUSH2 0x4D82 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x815 DUP3 PUSH2 0x283D JUMP JUMPDEST PUSH0 PUSH2 0x10C7 PUSH2 0x28BA JUMP JUMPDEST PUSH2 0x10DE PUSH2 0x10D9 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x4DA8 JUMP JUMPDEST PUSH2 0x2DC0 JUMP JUMPDEST CALLER DUP6 CALLDATALOAD PUSH1 0x60 SHR DUP2 EQ PUSH2 0x1103 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4ACE04F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x110E DUP2 PUSH1 0x2 PUSH2 0x28EA JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x114B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x116F SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP PUSH2 0x117C DUP2 PUSH1 0x3 PUSH2 0x28EA JUMP JUMPDEST PUSH5 0xFFFFFFFFFF TIMESTAMP AND PUSH2 0x1196 PUSH2 0x180 DUP10 ADD PUSH2 0x160 DUP11 ADD PUSH2 0x4DC3 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND GT DUP1 ISZERO PUSH2 0x11BD JUMPI POP TIMESTAMP PUSH5 0xFFFFFFFFFF AND DUP7 PUSH2 0x160 ADD MLOAD PUSH5 0xFFFFFFFFFF AND LT ISZERO JUMPDEST DUP8 CALLDATALOAD SWAP1 PUSH2 0x11E0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x422552F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP DUP6 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND DUP8 PUSH2 0x140 ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1202 SWAP2 SWAP1 PUSH2 0x4DC3 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND EQ DUP1 ISZERO PUSH2 0x121E JUMPI POP DUP6 PUSH1 0xA0 ADD MLOAD DUP8 PUSH1 0xA0 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1232 JUMPI POP DUP6 PUSH1 0xC0 ADD MLOAD DUP8 PUSH1 0xC0 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1248 JUMPI POP DUP6 PUSH2 0x100 ADD MLOAD DUP8 PUSH2 0x100 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x125E JUMPI POP DUP6 PUSH2 0x120 ADD MLOAD DUP8 PUSH2 0x120 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1272 JUMPI POP DUP6 PUSH1 0xE0 ADD MLOAD DUP8 PUSH1 0xE0 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP8 DUP8 SWAP1 SWAP2 PUSH2 0x1295 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1FF5485 PUSH1 0xE6 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP3 SWAP2 SWAP1 PUSH2 0x4E76 JUMP JUMPDEST POP POP PUSH2 0x12A1 DUP3 DUP6 PUSH2 0x2925 JUMP JUMPDEST DUP1 DUP8 MSTORE PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP7 MLOAD SWAP1 ISZERO PUSH2 0x12D6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x15E46FBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP PUSH2 0x12E0 DUP7 PUSH2 0x2951 JUMP JUMPDEST DUP7 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE PUSH2 0x12FD DUP9 CALLDATALOAD PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x131B DUP2 DUP9 PUSH0 ADD MLOAD PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0x29A3 JUMP JUMPDEST DUP8 PUSH1 0x20 ADD CALLDATALOAD DUP8 PUSH1 0x20 ADD MLOAD GT ISZERO PUSH2 0x134F JUMPI PUSH2 0x134A DUP4 PUSH1 0x1 DUP11 PUSH1 0x20 ADD CALLDATALOAD DUP11 PUSH1 0x20 ADD MLOAD PUSH2 0x1345 SWAP2 SWAP1 PUSH2 0x4EA7 JUMP JUMPDEST PUSH2 0x29BA JUMP JUMPDEST PUSH2 0x1368 JUMP JUMPDEST PUSH2 0x1368 DUP4 PUSH0 DUP10 PUSH1 0x20 ADD MLOAD DUP12 PUSH1 0x20 ADD CALLDATALOAD PUSH2 0x1345 SWAP2 SWAP1 PUSH2 0x4EA7 JUMP JUMPDEST DUP8 CALLDATALOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE MLOAD PUSH4 0x6AE360B3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xD5C6C166 SWAP1 PUSH2 0x13A8 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x4E76 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x13BF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x13D1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH2 0x13E9 DUP7 DUP4 DUP10 PUSH1 0xA0 ADD MLOAD DUP12 PUSH1 0xA0 ADD CALLDATALOAD PUSH2 0x2E09 JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x5E445859 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1426 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x144A SWAP2 SWAP1 PUSH2 0x4B94 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1464 DUP9 DUP3 DUP12 PUSH2 0x120 ADD MLOAD DUP14 PUSH2 0x120 ADD CALLDATALOAD PUSH2 0x2E09 JUMP JUMPDEST PUSH2 0x147A DUP9 DUP4 DUP12 PUSH2 0x100 ADD MLOAD DUP14 PUSH2 0x100 ADD CALLDATALOAD PUSH2 0x2E09 JUMP JUMPDEST PUSH0 SLOAD PUSH1 0xC0 DUP1 DUP12 ADD MLOAD PUSH2 0x149D SWAP3 DUP12 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP2 SWAP1 DUP15 ADD CALLDATALOAD PUSH2 0x2E09 JUMP JUMPDEST PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x521EB273 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x14DA JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x14FE SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x152D JUMPI PUSH2 0x152D DUP10 DUP3 DUP13 PUSH1 0xE0 ADD MLOAD DUP15 PUSH1 0xE0 ADD CALLDATALOAD PUSH2 0x2E09 JUMP JUMPDEST DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x988AC1A1C4820F963124B6FA0394627AD4FA3DE7583A76399B998C1D7E43AF3F DUP12 PUSH1 0x40 MLOAD PUSH2 0x1566 SWAP2 SWAP1 PUSH2 0x4B85 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP10 MLOAD PUSH1 0x40 MLOAD DUP13 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND SWAP1 PUSH32 0x4FF4AC703CB703B7EA535D47E65E64B4CABF11B3E2EB41F152DAB17971953ADD SWAP1 PUSH0 SWAP1 LOG4 DUP10 MLOAD PUSH2 0x15B4 SWAP1 DUP13 CALLDATALOAD SWAP1 PUSH2 0x2E58 JUMP JUMPDEST POP POP SWAP7 MLOAD SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP2 SLOAD PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x15F2 JUMPI PUSH2 0x15F2 PUSH2 0x4600 JUMP JUMPDEST EQ PUSH2 0x1610 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF9A96F3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1656 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x167A SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x16A1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFDEE243 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x16B4 JUMPI PUSH2 0x16B4 PUSH2 0x4600 JUMP JUMPDEST EQ DUP1 PUSH2 0x174B JUMPI POP PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x16CF JUMPI PUSH2 0x16CF PUSH2 0x4600 JUMP JUMPDEST EQ DUP1 ISZERO PUSH2 0x174B JUMPI POP PUSH1 0x40 MLOAD PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x1FFC9A7 SWAP1 PUSH2 0x170A SWAP1 PUSH4 0x6D5136B1 PUSH1 0xE1 SHL SWAP1 PUSH1 0x4 ADD PUSH2 0x4EBA JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1725 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1749 SWAP2 SWAP1 PUSH2 0x4ECF JUMP JUMPDEST ISZERO JUMPDEST DUP1 PUSH2 0x17E1 JUMPI POP PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1765 JUMPI PUSH2 0x1765 PUSH2 0x4600 JUMP JUMPDEST EQ DUP1 ISZERO PUSH2 0x17E1 JUMPI POP PUSH1 0x40 MLOAD PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x1FFC9A7 SWAP1 PUSH2 0x17A0 SWAP1 PUSH4 0xF7E4B01B PUSH1 0xE0 SHL SWAP1 PUSH1 0x4 ADD PUSH2 0x4EBA JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x17BB JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x17DF SWAP2 SWAP1 PUSH2 0x4ECF JUMP JUMPDEST ISZERO JUMPDEST DUP1 PUSH2 0x1877 JUMPI POP PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x17FB JUMPI PUSH2 0x17FB PUSH2 0x4600 JUMP JUMPDEST EQ DUP1 ISZERO PUSH2 0x1877 JUMPI POP PUSH1 0x40 MLOAD PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x1FFC9A7 SWAP1 PUSH2 0x1836 SWAP1 PUSH4 0x21B7E09B PUSH1 0xE0 SHL SWAP1 PUSH1 0x4 ADD PUSH2 0x4EBA JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1851 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1875 SWAP2 SWAP1 PUSH2 0x4ECF JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x1899 JUMPI DUP3 DUP3 PUSH1 0x40 MLOAD PUSH4 0x502C9A5F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP3 SWAP2 SWAP1 PUSH2 0x4EEA JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0xFF NOT DUP3 AND DUP2 OR DUP4 SSTORE DUP4 SWAP2 DUP4 SWAP2 PUSH2 0xFFFF NOT SWAP1 SWAP2 AND OR PUSH2 0x100 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x18C7 JUMPI PUSH2 0x18C7 PUSH2 0x4600 JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x18E0 JUMPI PUSH2 0x18E0 PUSH2 0x4600 JUMP JUMPDEST SUB PUSH2 0x1A7D JUMPI PUSH0 DUP4 SWAP1 POP PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x536EBBFC PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1926 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x194A SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x19B2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x38EA38A7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0xE3A8E29C SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x199B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x19AD JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x7B83037B PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x19EE JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1A12 SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x1A7A JUMPI PUSH1 0x40 MLOAD PUSH4 0x38EA38A7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0xE3A8E29C SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1A63 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1A75 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFE4C6998A06520B63340A48710B374432CB395DA90E4E5360E1EC7AEEFEBECEF DUP4 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0x10A7 SWAP3 SWAP2 SWAP1 PUSH2 0x4D82 JUMP JUMPDEST PUSH2 0x1AC1 PUSH2 0x28BA JUMP JUMPDEST PUSH2 0x1AD3 PUSH2 0x10D9 CALLDATASIZE DUP7 SWAP1 SUB DUP7 ADD DUP7 PUSH2 0x4DA8 JUMP JUMPDEST CALLER DUP5 CALLDATALOAD PUSH1 0x60 SHR DUP2 EQ PUSH2 0x1AF8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4ACE04F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1B03 DUP2 PUSH1 0x2 PUSH2 0x2F3F JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1B40 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1B64 SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP PUSH2 0x1B71 DUP2 PUSH1 0x3 PUSH2 0x2F3F JUMP JUMPDEST PUSH5 0xFFFFFFFFFF TIMESTAMP AND PUSH2 0x1B8B PUSH2 0x180 DUP9 ADD PUSH2 0x160 DUP10 ADD PUSH2 0x4DC3 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND GT DUP7 PUSH0 ADD CALLDATALOAD SWAP1 PUSH2 0x1BB8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x422552F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP DUP6 PUSH1 0xA0 ADD CALLDATALOAD DUP6 GT ISZERO DUP1 ISZERO PUSH2 0x1BD2 JUMPI POP DUP6 PUSH2 0x100 ADD CALLDATALOAD DUP5 GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1BE3 JUMPI POP DUP6 PUSH2 0x120 ADD CALLDATALOAD DUP4 GT ISZERO JUMPDEST DUP7 DUP7 DUP7 DUP7 SWAP1 SWAP2 SWAP3 SWAP4 PUSH2 0x1C0C JUMPI PUSH1 0x40 MLOAD PUSH4 0xA02DB783 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4F03 JUMP JUMPDEST POP POP POP POP PUSH0 PUSH2 0x1C1D DUP8 PUSH0 ADD CALLDATALOAD PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x1C2E DUP4 PUSH0 DUP10 PUSH1 0x20 ADD CALLDATALOAD PUSH2 0x29BA JUMP JUMPDEST DUP7 CALLDATALOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE MLOAD PUSH4 0x770FCD35 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xEE1F9A6A SWAP1 PUSH2 0x1C74 SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x4F30 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1C8B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1C9D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD DUP10 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP10 SWAP1 MSTORE SWAP1 DUP2 ADD DUP8 SWAP1 MSTORE DUP10 CALLDATALOAD SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP2 POP PUSH32 0x825C3EE6EECAA4B0DC3573E9732B65613D705CADFC4BA69CC76CB7D9227E5971 SWAP1 PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x1CFD DUP8 CALLDATALOAD DUP8 DUP8 DUP8 PUSH2 0x2F9E JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x2 DUP2 SLOAD PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1D35 JUMPI PUSH2 0x1D35 PUSH2 0x4600 JUMP JUMPDEST EQ PUSH2 0x1D53 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5C92B239 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1D70 JUMPI PUSH2 0x1D70 PUSH2 0x4600 JUMP JUMPDEST SUB PUSH2 0x1E6B JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x18160DDD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1DB1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1DD5 SWAP2 SWAP1 PUSH2 0x4F6F JUMP JUMPDEST ISZERO PUSH2 0x1E66 JUMPI DUP1 PUSH0 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x18160DDD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1E27 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1E4B SWAP2 SWAP1 PUSH2 0x4F6F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1D0EC0AB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP3 SWAP2 SWAP1 PUSH2 0x4F86 JUMP JUMPDEST PUSH2 0x2144 JUMP JUMPDEST PUSH1 0x2 DUP2 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1E88 JUMPI PUSH2 0x1E88 PUSH2 0x4600 JUMP JUMPDEST SUB PUSH2 0x1EFA JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND ISZERO PUSH2 0x1E66 JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD SWAP2 MLOAD PUSH4 0x1D0EC0AB PUSH1 0xE0 SHL DUP2 MSTORE PUSH2 0xAFB SWAP4 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 ADD PUSH2 0x4F9D JUMP JUMPDEST PUSH0 DUP3 SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x26CCBD22 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1F3A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1F5E SWAP2 SWAP1 PUSH2 0x4F6F JUMP JUMPDEST ISZERO PUSH2 0x1FB0 JUMPI DUP2 PUSH0 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x26CCBD22 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1E27 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x536EBBFC PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1FED JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2011 SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x2079 JUMPI PUSH1 0x40 MLOAD PUSH4 0x76C7FC55 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0x76C7FC55 SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2062 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2074 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x7B83037B PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x20B5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x20D9 SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x2141 JUMPI PUSH1 0x40 MLOAD PUSH4 0x76C7FC55 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0x76C7FC55 SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x212A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x213C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST POP POP JUMPDEST DUP1 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP2 PUSH32 0xFE4C6998A06520B63340A48710B374432CB395DA90E4E5360E1EC7AEEFEBECEF SWAP2 PUSH2 0x218A SWAP2 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND SWAP1 PUSH0 SWAP1 PUSH2 0x4D82 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0xFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51E5 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x21EC JUMPI PUSH1 0x40 MLOAD PUSH4 0x22718AD9 PUSH1 0xE2 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 SWAP1 SWAP3 ADD PUSH1 0x20 MSTORE POP PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xF21 PUSH2 0x309C JUMP JUMPDEST PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079301 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51E5 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x83A SWAP1 PUSH2 0x4AA1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x2273 DUP4 PUSH2 0x30E4 JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND SWAP1 DUP3 SWAP1 DUP2 AND DUP3 GT ISZERO PUSH2 0x22BB JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE06D13 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST POP POP DUP2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 SWAP3 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND DUP4 MSTORE DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP2 PUSH32 0x7E1092696182A6D6922C9583DB468951527F21F67F9F2F4911ED3F7BBF02B330 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP2 DUP3 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP2 AND OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0xA27 CALLER DUP4 DUP4 PUSH2 0x311B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 SWAP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2365 JUMPI PUSH2 0x2365 PUSH2 0x42E0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2398 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x2383 JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2419 JUMPI PUSH2 0x23F4 ADDRESS DUP7 DUP7 DUP5 DUP2 DUP2 LT PUSH2 0x23BB JUMPI PUSH2 0x23BB PUSH2 0x4FC2 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x23CD SWAP2 SWAP1 PUSH2 0x4FD6 JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x23E0 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x5036 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x31CA JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2406 JUMPI PUSH2 0x2406 PUSH2 0x4FC2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0x239D JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x242C DUP5 DUP5 DUP5 PUSH2 0xE90 JUMP JUMPDEST PUSH2 0xF13 CALLER DUP6 DUP6 DUP6 DUP6 PUSH2 0x326A JUMP JUMPDEST PUSH2 0x2441 PUSH2 0x28BA JUMP JUMPDEST PUSH2 0xA27 PUSH2 0x2453 CALLDATASIZE DUP5 SWAP1 SUB DUP5 ADD DUP5 PUSH2 0x4DA8 JUMP JUMPDEST DUP3 PUSH0 PUSH2 0x3389 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2465 DUP3 PUSH2 0x283D JUMP JUMPDEST POP PUSH0 PUSH2 0x246F PUSH2 0x360E JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 MLOAD GT PUSH2 0x248D JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0x24B8 JUMP JUMPDEST DUP1 PUSH2 0x2497 DUP5 PUSH2 0x369E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x24A8 SWAP3 SWAP2 SWAP1 PUSH2 0x504B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x24C7 PUSH2 0x28BA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xD505ACCF CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP10 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0xFF DUP7 AND PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xC4 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0xE4 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2560 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2571 JUMPI POP PUSH1 0x1 JUMPDEST POP PUSH2 0x1CFD DUP8 DUP8 DUP8 PUSH2 0x372D JUMP JUMPDEST PUSH0 PUSH2 0x2586 PUSH2 0x28BA JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x25BA JUMPI PUSH1 0x40 MLOAD PUSH4 0x9CFEA583 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST POP PUSH2 0x25C6 DUP6 PUSH1 0x1 PUSH2 0x2F3F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH4 0x23E103A8 DUP6 CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP1 DUP7 AND PUSH1 0x44 DUP4 ADD MSTORE DUP7 AND PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2631 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2655 SWAP2 SWAP1 PUSH2 0x4F6F JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND CALLER PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP7 SWAP1 MSTORE SWAP3 DUP4 AND SWAP3 DUP10 AND SWAP2 PUSH32 0xE826ECB5C03D4897F8AB426EE94064E06179DFF39CD9FDD0776904CD935C95D8 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079305 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x2709 DUP2 PUSH2 0x3878 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x2714 PUSH2 0x28BA JUMP JUMPDEST PUSH2 0xF3D DUP4 DUP4 DUP4 PUSH2 0x372D JUMP JUMPDEST PUSH2 0x2727 PUSH2 0x28BA JUMP JUMPDEST TIMESTAMP PUSH2 0x273A PUSH2 0x180 DUP4 ADD PUSH2 0x160 DUP5 ADD PUSH2 0x4DC3 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND GT ISZERO PUSH2 0x278A JUMPI DUP1 CALLDATALOAD PUSH2 0x275B PUSH2 0x180 DUP4 ADD PUSH2 0x160 DUP5 ADD PUSH2 0x4DC3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x312BFDD7 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH5 0xFFFFFFFFFF AND PUSH1 0x24 DUP3 ADD MSTORE TIMESTAMP PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH2 0x2709 PUSH2 0x279C CALLDATASIZE DUP4 SWAP1 SUB DUP4 ADD DUP4 PUSH2 0x4DA8 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH2 0x3389 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x27D4 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x815 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0x815 JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x815 JUMP JUMPDEST PUSH2 0x2823 PUSH2 0x3906 JUMP JUMPDEST PUSH2 0xA27 DUP3 DUP3 PUSH2 0x392B JUMP JUMPDEST PUSH2 0xF21 PUSH2 0x3906 JUMP JUMPDEST PUSH2 0x2700 PUSH2 0x3906 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2848 DUP4 PUSH2 0x395B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x815 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7E273289 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079304 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0xF3D DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x3994 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5225 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0xFF AND ISZERO PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0xD93C0665 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH2 0x28F6 DUP4 DUP4 PUSH2 0x3AA7 JUMP JUMPDEST PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2907 JUMPI PUSH2 0x2907 PUSH2 0x4600 JUMP JUMPDEST EQ PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH4 0x422F25F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x24B8 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP4 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT PUSH1 0x60 DUP7 SWAP1 SHL AND PUSH2 0x505F JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2963 SWAP2 SWAP1 PUSH2 0x4B85 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP1 POP DUP2 DUP2 PUSH2 0x299D JUMPI PUSH1 0x40 MLOAD PUSH4 0x6EE9F647 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 SWAP1 PUSH2 0x4B85 JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x29AD DUP4 DUP4 PUSH2 0x3B18 JUMP JUMPDEST PUSH2 0xF3D CALLER PUSH0 DUP6 DUP6 DUP6 PUSH2 0x326A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP3 ISZERO PUSH2 0x2A64 JUMPI PUSH2 0x29E0 DUP3 PUSH2 0x30E4 JUMP JUMPDEST DUP2 SLOAD DUP3 SWAP1 PUSH0 SWAP1 PUSH2 0x29FA SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x5072 JUMP JUMPDEST DUP3 SLOAD PUSH2 0x100 SWAP3 SWAP1 SWAP3 EXP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 DUP2 MUL NOT SWAP1 SWAP4 AND SWAP2 DUP4 AND MUL OR SWAP1 SWAP2 SSTORE DUP3 SLOAD DUP1 DUP3 AND SWAP3 POP PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND DUP1 DUP3 GT ISZERO PUSH2 0x2A5D JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE06D13 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST POP POP PUSH2 0xF13 JUMP JUMPDEST PUSH2 0x2A6D DUP3 PUSH2 0x30E4 JUMP JUMPDEST DUP2 SLOAD DUP3 SWAP1 PUSH0 SWAP1 PUSH2 0x2A87 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x5091 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND MUL OR SWAP1 SSTORE POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2ABF DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x3B79 JUMP JUMPDEST PUSH2 0xF13 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 PUSH2 0x2AF0 PUSH2 0x28BA JUMP JUMPDEST PUSH2 0x2AFB DUP5 DUP5 DUP5 PUSH2 0x3BE6 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x2B0B PUSH2 0x3CE8 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5225 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0xFF NOT AND DUP2 SSTORE PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA CALLER JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x2BE8 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2BDC PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5205 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2C70 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2C94 SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH4 0x24A41B43 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2D15 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x2D12 SWAP2 DUP2 ADD SWAP1 PUSH2 0x4F6F JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2D3D JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5205 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x2D6D JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH2 0xF3D DUP4 DUP4 PUSH2 0x3D17 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD ISZERO DUP1 ISZERO SWAP1 PUSH2 0x2DE6 JUMPI POP DUP1 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x2DE4 DUP3 PUSH2 0x2951 JUMP JUMPDEST EQ JUMPDEST DUP2 MLOAD SWAP1 PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH4 0x21DF5FA5 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x2E14 DUP3 DUP5 PUSH2 0x4EA7 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x2E51 JUMPI PUSH2 0x2E51 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP7 DUP7 DUP5 PUSH2 0x2AB1 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2E62 DUP4 PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x2E75 DUP2 PUSH4 0x162FC85 PUSH1 0xE1 SHL PUSH2 0x3D6C JUMP JUMPDEST PUSH2 0x2E7E JUMPI POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH4 0x5EE0C7DD CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2EE6 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2F0A SWAP2 SWAP1 PUSH2 0x50B0 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL EQ PUSH2 0xF13 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH4 0x81784A51 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 SWAP1 PUSH2 0x4EBA JUMP JUMPDEST PUSH0 PUSH2 0x2F4A DUP4 DUP4 PUSH2 0x3AA7 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2F60 JUMPI PUSH2 0x2F60 PUSH2 0x4600 JUMP JUMPDEST EQ ISZERO DUP1 ISZERO PUSH2 0x2F80 JUMPI POP PUSH1 0x2 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2F7D JUMPI PUSH2 0x2F7D PUSH2 0x4600 JUMP JUMPDEST EQ ISZERO JUMPDEST ISZERO PUSH2 0xF3D JUMPI PUSH1 0x40 MLOAD PUSH4 0xD08EF1FF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x2FA8 DUP6 PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x2FBB DUP2 PUSH4 0x162FC85 PUSH1 0xE1 SHL PUSH2 0x3D6C JUMP JUMPDEST PUSH2 0x2FC5 JUMPI POP PUSH2 0xF13 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH4 0x62EB345E CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP10 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP9 SWAP1 MSTORE PUSH1 0x84 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0xA4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xC4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x303B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x305F SWAP2 SWAP1 PUSH2 0x50B0 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x31759A2F PUSH1 0xE1 SHL EQ PUSH2 0x3094 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH4 0x81784A51 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 SWAP1 PUSH2 0x4EBA JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x30A4 PUSH2 0x28BA JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5225 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR DUP2 SSTORE PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 CALLER PUSH2 0x2B44 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 GT ISZERO PUSH2 0x3117 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x80 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51E5 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x315B JUMPI PUSH1 0x40 MLOAD PUSH4 0xB611743 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x5 DUP5 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP9 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP8 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD SWAP2 DUP3 MSTORE PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x31D7 DUP5 DUP5 PUSH2 0x3D87 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x31F8 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x31F8 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x320D JUMPI PUSH2 0x3205 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP POP PUSH2 0x815 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3237 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x324A JUMPI PUSH2 0x3245 PUSH2 0x3DB3 JUMP JUMPDEST PUSH2 0x3263 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND EXTCODESIZE ISZERO PUSH2 0x2E51 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x32AC SWAP1 DUP9 SWAP1 DUP9 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x50CB JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x32E6 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x32E3 SWAP2 DUP2 ADD SWAP1 PUSH2 0x50B0 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x334D JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x3313 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x3318 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH0 SUB PUSH2 0x3345 JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP3 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ PUSH2 0x3094 JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH2 0x3392 DUP4 PUSH2 0x2DC0 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x60 SHR DUP2 ISZERO DUP1 ISZERO PUSH2 0x33AE JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ ISZERO JUMPDEST ISZERO PUSH2 0x33CC JUMPI PUSH1 0x40 MLOAD PUSH4 0x4ACE04F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 ISZERO DUP1 PUSH2 0x33E4 JUMPI POP TIMESTAMP DUP5 PUSH2 0x160 ADD MLOAD PUSH5 0xFFFFFFFFFF AND GT JUMPDEST DUP5 MLOAD SWAP1 PUSH2 0x3407 JUMPI PUSH1 0x40 MLOAD PUSH4 0x422552F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP PUSH2 0x3413 DUP2 PUSH1 0x2 PUSH2 0x2F3F JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD DUP4 SWAP1 DUP1 DUP3 GT ISZERO PUSH2 0x3444 JUMPI PUSH1 0x40 MLOAD PUSH4 0x17D3B4F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST POP POP PUSH0 PUSH0 DUP5 GT SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3489 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x34AD SWAP2 SWAP1 PUSH2 0x4AD3 JUMP JUMPDEST SWAP1 POP PUSH2 0x34BA DUP2 PUSH1 0x3 PUSH2 0x2F3F JUMP JUMPDEST DUP6 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE DUP2 ISZERO PUSH2 0x3543 JUMPI PUSH0 PUSH2 0x34DD DUP8 PUSH0 ADD MLOAD PUSH2 0x10B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1DDA2899 PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x1DDA2899 SWAP1 PUSH2 0x3510 SWAP1 DUP5 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x50FD JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x3527 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3539 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP PUSH2 0x359D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x76185FF1 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0x76185FF1 SWAP1 PUSH2 0x356F SWAP1 DUP10 SWAP1 PUSH1 0x4 ADD PUSH2 0x4B85 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x3586 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3598 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH2 0x35AC DUP4 PUSH0 DUP9 PUSH1 0x20 ADD MLOAD PUSH2 0x29BA JUMP JUMPDEST DUP6 MLOAD PUSH1 0x40 MLOAD DUP7 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0x54F4A270EA08F88DC23B2520D6B063FECB24D956C4496F447926D736338F545E SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP5 ISZERO PUSH2 0x3603 JUMPI DUP6 MLOAD PUSH2 0x35FE SWAP1 DUP7 PUSH2 0x3DBE JUMP JUMPDEST PUSH2 0x3094 JUMP JUMPDEST DUP6 MLOAD PUSH2 0x3094 SWAP1 PUSH2 0x3EA5 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x361D SWAP1 PUSH2 0x4AA1 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x3649 SWAP1 PUSH2 0x4AA1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3694 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x366B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3694 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3677 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x36AA DUP4 PUSH2 0x3F93 JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x36C8 JUMPI PUSH2 0x36C8 PUSH2 0x42E0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x36F2 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH2 0x36FC JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x3761 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9CFEA583 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST POP PUSH2 0x376D DUP4 PUSH1 0x1 PUSH2 0x28EA JUMP JUMPDEST PUSH2 0x37A2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP6 DUP6 PUSH2 0x2AB1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH4 0x2E2D2984 DUP4 CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP5 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x3800 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3812 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x3827 CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x7CFFF908A4B583F36430B25D75964C458D8EDE8A99BD61BE750E97EE1B2F3A96 DUP6 PUSH1 0x40 MLOAD PUSH2 0x386B SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x389F JUMPI PUSH1 0x40 MLOAD PUSH4 0x7A2EE8B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0x8C3AA5F43A388513435861BF27DFAD7829CD248696FED367C62D441F62954496 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x390E PUSH2 0x406A JUMP JUMPDEST PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3933 PUSH2 0x3906 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51E5 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 PUSH2 0x394C DUP5 DUP3 PUSH2 0x512A JUMP JUMPDEST POP PUSH1 0x1 DUP2 ADD PUSH2 0xF13 DUP4 DUP3 PUSH2 0x512A JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079302 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51E5 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 DUP1 PUSH2 0x39B6 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x3A77 JUMPI PUSH0 PUSH2 0x39C5 DUP6 PUSH2 0x283D JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x39F1 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x3A04 JUMPI POP PUSH2 0x3A02 DUP2 DUP6 PUSH2 0x26B4 JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x3A2D JUMPI PUSH1 0x40 MLOAD PUSH4 0xA9FBF51F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST DUP3 ISZERO PUSH2 0x3A75 JUMPI DUP5 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP JUMPDEST PUSH0 SWAP4 DUP5 MSTORE PUSH1 0x4 ADD PUSH1 0x20 MSTORE POP POP PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3AD0 JUMPI PUSH2 0x3AD0 PUSH2 0x4600 JUMP JUMPDEST DUP2 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3AEB JUMPI PUSH2 0x3AEB PUSH2 0x4600 JUMP JUMPDEST EQ PUSH2 0x3B0D JUMPI DUP4 DUP4 PUSH1 0x40 MLOAD PUSH4 0x502C9A5F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP3 SWAP2 SWAP1 PUSH2 0x4EEA JUMP JUMPDEST SLOAD PUSH1 0xFF AND SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3B41 JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 PUSH2 0x3B4D DUP4 DUP4 PUSH0 PUSH2 0x2AE7 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0xF3D JUMPI PUSH1 0x40 MLOAD PUSH4 0x39E35637 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x3BD5 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x3BC9 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51E5 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x3BFF DUP6 PUSH2 0x395B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x3C1B JUMPI PUSH2 0x3C1B DUP2 DUP6 DUP8 PUSH2 0x4083 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x3C57 JUMPI PUSH2 0x3C36 PUSH0 DUP7 PUSH0 PUSH0 PUSH2 0x3994 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH0 NOT ADD SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND ISZERO PUSH2 0x3C87 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0x2 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP9 SWAP4 SWAP2 DUP6 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5225 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0xFF AND PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0x8DFC202B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3D20 DUP3 PUSH2 0x40E7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x3D64 JUMPI PUSH2 0xF3D DUP3 DUP3 PUSH2 0x31CA JUMP JUMPDEST PUSH2 0xA27 PUSH2 0x414A JUMP JUMPDEST PUSH0 PUSH2 0x3D76 DUP4 PUSH2 0x4169 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x24B8 JUMPI POP PUSH2 0x24B8 DUP4 DUP4 PUSH2 0x41B4 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH2 0x3DC8 DUP4 PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x3DDB DUP2 PUSH4 0x162FC85 PUSH1 0xE1 SHL PUSH2 0x3D6C JUMP JUMPDEST PUSH2 0x3DE4 JUMPI POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH4 0xD6281D3E CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3E4C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x3E70 SWAP2 SWAP1 PUSH2 0x50B0 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x6B140E9F PUSH1 0xE1 SHL EQ PUSH2 0xF13 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH4 0x81784A51 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 SWAP1 PUSH2 0x4EBA JUMP JUMPDEST PUSH0 PUSH2 0x3EAF DUP3 PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x3EC2 DUP2 PUSH4 0x162FC85 PUSH1 0xE1 SHL PUSH2 0x3D6C JUMP JUMPDEST PUSH2 0x3ECA JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH4 0xE8E617B7 PUSH3 0x249F0 CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP8 CALL SWAP4 POP POP POP POP DUP1 ISZERO PUSH2 0x3F4D JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x3F4A SWAP2 DUP2 ADD SWAP1 PUSH2 0x50B0 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xF3D JUMPI PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP2 MSTORE DUP3 SWAP1 PUSH32 0x6CE8016F81523F240956BCA9A698E643D09E84E7D0E931470B1016BAF1027BD0 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 LT PUSH2 0x3FD1 JUMPI PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x3FFD JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x401B JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x4033 JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x4047 JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x4059 JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x815 JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x4073 PUSH2 0x27F3 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x408E DUP4 DUP4 DUP4 PUSH2 0x41D8 JUMP JUMPDEST PUSH2 0xF3D JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x40BC JUMPI PUSH1 0x40 MLOAD PUSH4 0x7E273289 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x177E802F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x411C JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5205 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x417B DUP3 PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH2 0x41B4 JUMP JUMPDEST ISZERO PUSH2 0x41A8 JUMPI PUSH0 DUP1 PUSH2 0x4194 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x423C JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 DUP1 ISZERO PUSH2 0x2AFB JUMPI POP ISZERO SWAP4 SWAP3 POP POP POP JUMP JUMPDEST POP PUSH0 SWAP2 SWAP1 POP JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x41C1 DUP6 DUP6 PUSH2 0x423C JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 DUP1 ISZERO PUSH2 0x41CF JUMPI POP DUP1 JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x2AFB JUMPI POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x4211 JUMPI POP PUSH2 0x4211 DUP5 DUP5 PUSH2 0x26B4 JUMP JUMPDEST DUP1 PUSH2 0x2AFB JUMPI POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x422A DUP4 PUSH2 0x2874 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x4 DUP4 SWAP1 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 PUSH1 0x24 DUP2 DUP9 PUSH2 0x7530 STATICCALL SWAP3 POP PUSH0 MLOAD ISZERO ISZERO PUSH1 0x1F RETURNDATASIZE GT AND SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x2709 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4295 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x24B8 DUP2 PUSH2 0x4270 JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP1 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP7 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x24B8 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x42A0 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x4317 JUMPI PUSH2 0x4317 PUSH2 0x42E0 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x432C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 DUP4 ADD PUSH0 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 GT ISZERO PUSH2 0x434B JUMPI PUSH2 0x434B PUSH2 0x42E0 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x4379 JUMPI PUSH2 0x4379 PUSH2 0x42E0 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP8 LT ISZERO PUSH2 0x4390 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE DUP1 SWAP5 POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2709 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x43D2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x43E7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x43F3 DUP7 DUP3 DUP8 ADD PUSH2 0x431D JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x440E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x441A DUP7 DUP3 DUP8 ADD PUSH2 0x431D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x442B DUP2 PUSH2 0x43AC JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4446 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x445E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4469 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x41AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x449C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x44A4 PUSH2 0x42F4 JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0x4513 PUSH2 0x140 DUP4 ADD PUSH2 0x4477 JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x4526 PUSH2 0x160 DUP4 ADD PUSH2 0x4477 JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x41AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4561 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x456B DUP7 DUP7 PUSH2 0x448B JUMP JUMPDEST SWAP4 POP PUSH2 0x180 DUP6 ADD CALLDATALOAD PUSH2 0x457C DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP3 POP PUSH2 0x1A0 DUP6 ADD CALLDATALOAD PUSH2 0x458D DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP2 POP PUSH2 0x459C PUSH2 0x1C0 DUP7 ADD PUSH2 0x4532 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x45B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x45C4 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x45D4 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x45F5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x24B8 DUP2 PUSH2 0x43AC JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x2709 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0x463D DUP4 PUSH2 0x4614 JUMP JUMPDEST SWAP2 SWAP1 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4654 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x465F DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4679 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4685 DUP6 DUP3 DUP7 ADD PUSH2 0x431D JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x46A0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x46B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x46C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x46DA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x46EB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x2709 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4718 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4723 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4733 DUP2 PUSH2 0x46FB JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x299D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x340 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4763 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x476D DUP7 DUP7 PUSH2 0x473E JUMP JUMPDEST SWAP4 POP PUSH2 0x477D DUP7 PUSH2 0x180 DUP8 ADD PUSH2 0x448B JUMP JUMPDEST SWAP3 POP PUSH2 0x300 DUP6 ADD CALLDATALOAD PUSH2 0x478E DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP2 POP PUSH2 0x459C PUSH2 0x320 DUP7 ADD PUSH2 0x4532 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x47B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x47BB DUP7 DUP7 PUSH2 0x473E JUMP JUMPDEST SWAP7 PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP7 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP6 PUSH2 0x1C0 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x2709 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x47F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4801 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4733 DUP2 PUSH2 0x47D8 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4822 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4837 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x4847 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x485C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP5 ADD ADD GT ISZERO PUSH2 0x46EB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD PUSH1 0x20 DUP4 MSTORE DUP1 DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP6 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP7 ADD ADD SWAP3 POP PUSH1 0x20 DUP7 ADD PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x48C7 JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x48B2 DUP6 DUP4 MLOAD PUSH2 0x42A0 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x4896 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x48E6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x48F1 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x4901 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4922 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x492E DUP8 DUP3 DUP9 ADD PUSH2 0x431D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1A0 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x494C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4956 DUP5 DUP5 PUSH2 0x473E JUMP JUMPDEST SWAP5 PUSH2 0x180 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x497B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x4986 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD PUSH2 0x499D DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x49B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x49E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x49F4 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x4A0B DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x4A1B DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4A37 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4A42 DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4733 DUP2 PUSH2 0x43AC JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4A64 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4A6F DUP2 PUSH2 0x43AC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x442B DUP2 PUSH2 0x43AC JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4A97 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x24B8 DUP4 DUP4 PUSH2 0x473E JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x4AB5 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x299D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4AE3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x24B8 DUP2 PUSH2 0x43AC JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0x4B6A PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP2 ADD MLOAD PUSH2 0xF3D PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST PUSH2 0x180 DUP2 ADD PUSH2 0x815 DUP3 DUP5 PUSH2 0x4AEE JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4BA5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x4BB0 DUP2 PUSH2 0x43AC JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x4733 DUP2 PUSH2 0x43AC JUMP JUMPDEST DUP2 DUP4 MSTORE DUP2 DUP2 PUSH1 0x20 DUP6 ADD CALLDATACOPY POP PUSH0 DUP3 DUP3 ADD PUSH1 0x20 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND SWAP1 SWAP2 ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH0 PUSH0 DUP6 SLOAD PUSH2 0x4BFA DUP2 PUSH2 0x4AA1 JUMP JUMPDEST DUP1 PUSH1 0x40 DUP7 ADD MSTORE PUSH1 0x1 DUP3 AND PUSH0 DUP2 EQ PUSH2 0x4C18 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x4C34 JUMPI PUSH2 0x4C65 JUMP JUMPDEST PUSH1 0xFF NOT DUP4 AND PUSH1 0x60 DUP8 ADD MSTORE PUSH1 0x60 DUP3 ISZERO ISZERO PUSH1 0x5 SHL DUP8 ADD ADD SWAP4 POP PUSH2 0x4C65 JUMP JUMPDEST DUP9 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x4C5C JUMPI DUP2 SLOAD DUP9 DUP3 ADD PUSH1 0x60 ADD MSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x20 ADD PUSH2 0x4C3D JUMP JUMPDEST DUP8 ADD PUSH1 0x60 ADD SWAP5 POP POP JUMPDEST POP POP POP DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x4C7B DUP2 DUP6 DUP8 PUSH2 0x4BC1 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0xF3D JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x4CAA JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2E51 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x4CB6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT ISZERO PUSH2 0x4CE0 JUMPI PUSH2 0x4CE0 PUSH2 0x42E0 JUMP JUMPDEST PUSH2 0x4CF4 DUP4 PUSH2 0x4CEE DUP4 SLOAD PUSH2 0x4AA1 JUMP JUMPDEST DUP4 PUSH2 0x4C85 JUMP JUMPDEST PUSH0 PUSH1 0x1F DUP5 GT PUSH1 0x1 DUP2 EQ PUSH2 0x4D25 JUMPI PUSH0 DUP6 ISZERO PUSH2 0x4D0E JUMPI POP DUP4 DUP3 ADD CALLDATALOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP7 SWAP1 SHL OR DUP4 SSTORE PUSH2 0x2E51 JUMP JUMPDEST PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP8 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x4D54 JUMPI DUP7 DUP6 ADD CALLDATALOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x4D34 JUMP JUMPDEST POP DUP7 DUP3 LT ISZERO PUSH2 0x4D70 JUMPI PUSH0 NOT PUSH1 0xF8 DUP9 PUSH1 0x3 SHL AND SHR NOT DUP5 DUP8 ADD CALLDATALOAD AND DUP2 SSTORE JUMPDEST POP POP PUSH1 0x1 DUP6 PUSH1 0x1 SHL ADD DUP4 SSTORE POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4D8F DUP5 PUSH2 0x4614 JUMP JUMPDEST DUP4 DUP3 MSTORE PUSH2 0x4D9B DUP4 PUSH2 0x4614 JUMP JUMPDEST DUP3 PUSH1 0x20 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4DB9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x24B8 DUP4 DUP4 PUSH2 0x448B JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4DD3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x24B8 DUP3 PUSH2 0x4477 JUMP JUMPDEST DUP1 CALLDATALOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x40 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x60 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x80 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0xA0 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0xC0 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0xE0 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH2 0x100 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH2 0x120 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH2 0x4E49 PUSH2 0x140 DUP3 ADD PUSH2 0x4477 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND PUSH2 0x140 DUP4 ADD MSTORE PUSH2 0x4E63 PUSH2 0x160 DUP3 ADD PUSH2 0x4477 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP2 AND PUSH2 0x160 DUP5 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0x4E85 DUP3 DUP6 PUSH2 0x4DDC JUMP JUMPDEST PUSH2 0x24B8 PUSH2 0x180 DUP4 ADD DUP5 PUSH2 0x4AEE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x815 JUMPI PUSH2 0x815 PUSH2 0x4E93 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4EDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x24B8 DUP2 PUSH2 0x47D8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0x40 DUP2 ADD PUSH2 0x4D9B DUP4 PUSH2 0x4614 JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0x4F12 DUP3 DUP8 PUSH2 0x4DDC JUMP JUMPDEST DUP5 PUSH2 0x180 DUP4 ADD MSTORE DUP4 PUSH2 0x1A0 DUP4 ADD MSTORE DUP3 PUSH2 0x1C0 DUP4 ADD MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x200 DUP2 ADD PUSH2 0x4F3F DUP3 DUP9 PUSH2 0x4DDC JUMP JUMPDEST PUSH2 0x180 DUP3 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH2 0x1A0 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH2 0x1C0 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1E0 SWAP1 SWAP2 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4F7F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4F93 DUP5 PUSH2 0x4614 JUMP JUMPDEST SWAP3 DUP2 MSTORE PUSH1 0x20 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4FAA DUP5 PUSH2 0x4614 JUMP JUMPDEST SWAP3 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x20 SWAP1 SWAP2 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x4FEB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x5004 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x5018 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 PUSH1 0x20 DUP5 ADD DUP6 MCOPY PUSH0 SWAP4 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH0 DUP4 DUP3 ADD PUSH0 DUP2 MSTORE PUSH2 0x4C7B DUP2 DUP6 PUSH2 0x501F JUMP JUMPDEST PUSH0 PUSH2 0x2AFB PUSH2 0x5059 DUP4 DUP7 PUSH2 0x501F JUMP JUMPDEST DUP5 PUSH2 0x501F JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x815 JUMPI PUSH2 0x815 PUSH2 0x4E93 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x815 JUMPI PUSH2 0x815 PUSH2 0x4E93 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x815 JUMPI PUSH2 0x815 PUSH2 0x4E93 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x50C0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x24B8 DUP2 PUSH2 0x4270 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x4C7B SWAP1 DUP4 ADD DUP5 PUSH2 0x42A0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP2 MSTORE PUSH2 0x1C0 DUP2 ADD PUSH2 0x511B PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x4AEE JUMP JUMPDEST DUP3 PUSH2 0x1A0 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5143 JUMPI PUSH2 0x5143 PUSH2 0x42E0 JUMP JUMPDEST PUSH2 0x5157 DUP2 PUSH2 0x5151 DUP5 SLOAD PUSH2 0x4AA1 JUMP JUMPDEST DUP5 PUSH2 0x4C85 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x5189 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x5172 JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x2E51 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x51B8 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x5198 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x51D5 JUMPI DUP7 DUP5 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP INVALID DUP1 0xBB 0x2B PUSH4 0x8CC20BC4 0xD0 0xA6 0xD PUSH7 0x940F3AB4A00C1D PUSH28 0x313497CA82FB0B4AB0079300360894A13BA1A3210667C828492DB98D 0xCA RETURNDATACOPY KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCCD5ED15C6E187E77E9AEE8 DUP2 DUP5 0xC2 0x1F 0x4F 0x21 DUP3 0xAB PC 0x27 0xCB EXTCODESIZE PUSH31 0x7FBEDCD63F03300A2646970667358221220F8FA27DD4FDEC3476C4DE2AE7B 0x21 DUP11 0xB3 INVALID CODESIZE 0xEB 0xF6 0x26 DIV PUSH16 0x7B0D6D77BE94AE28B364736F6C634300 ADDMOD 0x1E STOP CALLER ","sourceMap":"2428:36617:72:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14914:193;;;;;;;;;;-1:-1:-1;14914:193:72;;;;;:::i;:::-;;:::i;:::-;;;565:14:101;;558:22;540:41;;528:2;513:18;14914:193:72;;;;;;;;3462:146:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;14559:325:72:-;;;;;;;;;;-1:-1:-1;14559:325:72;;;;;:::i;:::-;;:::i;:::-;;4612:154:9;;;;;;;;;;-1:-1:-1;4612:154:9;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3601:32:101;;;3583:51;;3571:2;3556:18;4612:154:9;3437:203:101;4465:113:9;;;;;;;;;;-1:-1:-1;4465:113:9;;;;;:::i;:::-;;:::i;23786:1728:72:-;;;;;;;;;;-1:-1:-1;23786:1728:72;;;;;:::i;:::-;;:::i;:::-;;;6594:25:101;;;6582:2;6567:18;23786:1728:72;6448:177:101;5222:578:9;;;;;;;;;;-1:-1:-1;5222:578:9;;;;;:::i;:::-;;:::i;21074:147:72:-;;;;;;;;;;-1:-1:-1;21074:147:72;;;;;:::i;:::-;-1:-1:-1;;;;;21187:22:72;21157:15;21187:22;;;:11;:22;;;;;:29;;;;21074:147;;;;;;;;:::i;15872:47::-;;;;;;;;;;;;;:::i;5834:132:9:-;;;;;;;;;;-1:-1:-1;5834:132:9;;;;;:::i;:::-;;:::i;3911:214:33:-;;;;;;:::i;:::-;;:::i;3466:126::-;;;;;;;;;;;;;:::i;38455:145:72:-;;;;;;;;;;-1:-1:-1;38455:145:72;;;;;:::i;:::-;;:::i;2517::13:-;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;2646:9:13;;;2517:145;;20485:405:72;;;;;;;;;;-1:-1:-1;20485:405:72;;;;;:::i;:::-;;:::i;16551:88::-;;;;;;;;;;-1:-1:-1;16603:7:72;16625:9;-1:-1:-1;;;;;16625:9:72;16551:88;;3302:118:9;;;;;;;;;;-1:-1:-1;3302:118:9;;;;;:::i;:::-;;:::i;25598:2913:72:-;;;;;;;;;;-1:-1:-1;25598:2913:72;;;;;:::i;:::-;;:::i;17265:1228::-;;;;;;;;;;-1:-1:-1;17265:1228:72;;;;;:::i;:::-;;:::i;28545:1433::-;;;;;;;;;;-1:-1:-1;28545:1433:72;;;;;:::i;:::-;;:::i;18813:1253::-;;;;;;;;;;-1:-1:-1;18813:1253:72;;;;;:::i;:::-;;:::i;3003:265:9:-;;;;;;;;;;-1:-1:-1;3003:265:9;;;;;:::i;:::-;;:::i;31049:119:72:-;;;;;;;;;;-1:-1:-1;31049:119:72;;;;;:::i;:::-;31122:7;31144:19;;;:9;:19;;;;;;;31049:119;30890:125;;;;;;;;;;-1:-1:-1;30890:125:72;;;;;:::i;:::-;30958:4;30977:19;;;:9;:19;;;;;;:33;;;30890:125;15694:43;;;;;;;;;;;;;:::i;3650:150:9:-;;;;;;;;;;;;;:::i;33813:369:72:-;;;;;;;;;;-1:-1:-1;33813:369:72;;;;;:::i;:::-;;:::i;34662:205::-;;;;;;;;;;-1:-1:-1;34662:205:72;;;;;:::i;:::-;-1:-1:-1;;;;;34787:17:72;34722:14;34787:17;;;:13;:17;;;;;34819:15;-1:-1:-1;;;;;34819:15:72;;;;-1:-1:-1;;;34848:14:72;;;;;34662:205;;;;;12747:25:101;;;12803:2;12788:18;;12781:34;;;;12720:18;34662:205:72;12573:248:101;4800:144:9;;;;;;;;;;-1:-1:-1;4800:144:9;;;;;:::i;:::-;;:::i;1539:482:11:-;;;;;;;;;;-1:-1:-1;1539:482:11;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1732:58:33:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1732:58:33;;;;;6000:233:9;;;;;;;;;;-1:-1:-1;6000:233:9;;;;;:::i;:::-;;:::i;30695:161:72:-;;;;;;;;;;-1:-1:-1;30695:161:72;;;;;:::i;:::-;;:::i;3842:255:9:-;;;;;;;;;;-1:-1:-1;3842:255:9;;;;;:::i;:::-;;:::i;22635:617:72:-;;;;;;;;;;-1:-1:-1;22635:617:72;;;;;:::i;:::-;;:::i;23286:466::-;;;;;;;;;;-1:-1:-1;23286:466:72;;;;;:::i;:::-;;:::i;15953:103::-;;;;;;;;;;-1:-1:-1;16042:9:72;15953:103;;4978:210:9;;;;;;;;;;-1:-1:-1;4978:210:9;;;;;:::i;:::-;;:::i;16434:83:72:-;;;;;;;;;;-1:-1:-1;16434:83:72;;;;;:::i;:::-;;:::i;22457:144::-;;;;;;;;;;-1:-1:-1;22457:144:72;;;;;:::i;:::-;;:::i;30406:255::-;;;;;;;;;;-1:-1:-1;30406:255:72;;;;;:::i;:::-;;:::i;14914:193::-;14999:4;15018:36;15042:11;15018:23;:36::i;:::-;:84;;;-1:-1:-1;;;;;;;15058:44:72;;-1:-1:-1;;;15058:44:72;15018:84;15011:91;14914:193;-1:-1:-1;;14914:193:72:o;3462:146:9:-;-1:-1:-1;;;;;;;;;;;3587:14:9;;3507:13;;2094:21;;;3587:14;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3462:146;:::o;14559:325:72:-;4158:30:32;4191:26;:24;:26::i;:::-;4302:15;;4158:59;;-1:-1:-1;4302:15:32;-1:-1:-1;;;4302:15:32;;;4301:16;;-1:-1:-1;;;;;4348:14:32;4279:19;4724:16;;:34;;;;;4744:14;4724:34;4704:54;;4768:17;4788:11;-1:-1:-1;;;;;4788:16:32;4803:1;4788:16;:50;;;;-1:-1:-1;4816:4:32;4808:25;:30;4788:50;4768:70;;4854:12;4853:13;:30;;;;;4871:12;4870:13;4853:30;4849:91;;;4906:23;;-1:-1:-1;;;4906:23:32;;;;;;;;;;;4849:91;4949:18;;-1:-1:-1;;4949:18:32;4966:1;4949:18;;;4977:67;;;;5011:22;;-1:-1:-1;;;;5011:22:32;-1:-1:-1;;;5011:22:32;;;4977:67;14677:5:72::1;14671:19;14694:1;14671:24:::0;14667:50:::1;;14704:13;;-1:-1:-1::0;;;14704:13:72::1;;;;;;;;;;;14667:50;14733:7;14727:21;14752:1;14727:26:::0;14723:54:::1;;14762:15;;-1:-1:-1::0;;;14762:15:72::1;;;;;;;;;;;14723:54;14783:29;14797:5;14804:7;14783:13;:29::i;:::-;14818:17;:15;:17::i;:::-;14841:38;14869:9;14841:27;:38::i;:::-;5068:14:32::0;5064:101;;;5098:23;;-1:-1:-1;;;;5098:23:32;;;5140:14;;-1:-1:-1;19510:50:101;;5140:14:32;;19498:2:101;19483:18;5140:14:32;;;;;;;5064:101;4092:1079;;;;;14559:325:72;;;:::o;4612:154:9:-;4679:7;4698:22;4712:7;4698:13;:22::i;:::-;;4738:21;4751:7;4738:12;:21::i;4465:113::-;4536:35;4545:2;4549:7;987:10:10;4536:8:9;:35::i;:::-;4465:113;;:::o;23786:1728:72:-;23955:7;2000:19:13;:17;:19::i;:::-;987:10:10;24032:57:72::1;987:10:10::0;24064:24:72::1;24032:18;:57::i;:::-;24095:19;24117:2;-1:-1:-1::0;;;;;24117:18:72::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24095:42;;24143:62;24170:2;24175:29;24143:18;:62::i;:::-;24239:44;24267:2;24272:10;24239:19;:44::i;:::-;24227:56:::0;;;24289:38:::1;24311:15;24289:38;:12;::::0;::::1;:38:::0;24227:9:::1;24341:20:::0;;;:9:::1;:20;::::0;;;;;24397:9;;;24341:34;24333:75:::1;;;;-1:-1:-1::0;;;24333:75:72::1;;;;;;6594:25:101::0;;6582:2;6567:18;;6448:177;24333:75:72::1;;;;;;;;;;24437:13;:6;:11;:13::i;:::-;24424:9:::0;;24414:20:::1;::::0;;;:9:::1;:20;::::0;;;;;;;:36;;;;24480:9;;24456:38;;;;::::1;::::0;;;;;;::::1;::::0;24466:12;;24456:9:::1;:38::i;:::-;24500:40;24516:2;24520:4;24526:6;:13;;;24500:15;:40::i;:::-;24567:24;::::0;-1:-1:-1;;;24567:24:72;;-1:-1:-1;;;;;24567:16:72;::::1;::::0;::::1;::::0;:24:::1;::::0;24584:6;;24567:24:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;24675:18:72::1;::::0;::::1;::::0;24628:66:::1;::::0;-1:-1:-1;;;;;;24628:9:72::1;:26;::::0;24655:5;;24670:2;;24628:26:::1;:66::i;:::-;24701:13;24716;24733:2;-1:-1:-1::0;;;;;24733:7:72::1;;:9;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24752:12;::::0;::::1;::::0;24700:42;;-1:-1:-1;24700:42:72;-1:-1:-1;24752:16:72;24748:85:::1;;24820:12;::::0;::::1;::::0;24770:63:::1;::::0;-1:-1:-1;;;;;24770:9:72::1;:26;::::0;24797:5;;24812;;24770:26:::1;:63::i;:::-;24843:12;::::0;::::1;::::0;:16;24839:85:::1;;24911:12;::::0;::::1;::::0;24861:63:::1;::::0;-1:-1:-1;;;;;24861:9:72::1;:26;::::0;24888:5;;24903;;24861:26:::1;:63::i;:::-;24964:9;::::0;24975:23:::1;::::0;::::1;::::0;24930:69:::1;::::0;-1:-1:-1;;;;;24930:9:72::1;:26:::0;::::1;::::0;24957:5;;24964:9;;;::::1;::::0;24930:26:::1;:69::i;:::-;25036:1;25009:6;:24;;;:28;:52;;;;;25050:2;-1:-1:-1::0;;;;;25050:9:72::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;25041:20:72::1;:5;-1:-1:-1::0;;;;;25041:20:72::1;;;25009:52;25005:136;;;25069:72;25096:5;25103:2;-1:-1:-1::0;;;;;25103:9:72::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25116:24;::::0;::::1;::::0;-1:-1:-1;;;;;25069:9:72::1;:26;::::0;:72;;:26:::1;:72::i;:::-;25476:2;-1:-1:-1::0;;;;;25466:21:72::1;;25480:6;25466:21;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;25500:9:72;;;23786:1728;-1:-1:-1;;;;;;23786:1728:72:o;5222:578:9:-;-1:-1:-1;;;;;5316:16:9;;5312:87;;5355:33;;-1:-1:-1;;;5355:33:9;;5385:1;5355:33;;;3583:51:101;3556:18;;5355:33:9;3437:203:101;5312:87:9;5617:21;5641:34;5649:2;5653:7;987:10:10;5641:7:9;:34::i;:::-;5617:58;;5706:4;-1:-1:-1;;;;;5689:21:9;:13;-1:-1:-1;;;;;5689:21:9;;5685:109;;5733:50;;-1:-1:-1;;;5733:50:9;;-1:-1:-1;;;;;21957:32:101;;;5733:50:9;;;21939:51:101;22006:18;;;21999:34;;;22069:32;;22049:18;;;22042:60;21912:18;;5733:50:9;21737:371:101;5685:109:9;5302:498;5222:578;;;:::o;15872:47:72:-;15904:10;:8;:10::i;:::-;15872:47::o;5834:132:9:-;5920:39;5937:4;5943:2;5947:7;5920:39;;;;;;;;;;;;:16;:39::i;:::-;5834:132;;;:::o;3911:214:33:-;2568:13;:11;:13::i;:::-;4026:36:::1;4044:17;4026;:36::i;:::-;4072:46;4094:17;4113:4;4072:21;:46::i;3466:126::-:0;3527:7;2839:20;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;;3466:126:33;:::o;38455:145:72:-;38524:40;38539:11;38552;;38524:40;;;;;;;;:::i;:::-;;;;;;;;38570:11;:25;38584:11;;38570;:25;:::i;20485:405::-;-1:-1:-1;;;;;20615:22:72;;20590;20615;;;:11;:22;;;;;;20651:11;;;;:39;;;;;;;;:::i;:::-;;20643:69;;;;-1:-1:-1;;;20643:69:72;;;;;;;;;;;;20739:24;20726:9;:37;;;;;;;;:::i;:::-;;20718:72;;;;-1:-1:-1;;;20718:72:72;;;;;;;;;;;;20796:23;;20810:9;;20796:4;;-1:-1:-1;;20796:23:72;;20810:9;20796:23;;;;;;;;:::i;:::-;;;;;-1:-1:-1;20864:9:72;;20830:55;;-1:-1:-1;;;;;20830:55:72;;;;;;;20864:9;;;;;;20875;;20830:55;:::i;:::-;;;;;;;;20584:306;20485:405;;:::o;3302:118:9:-;3365:7;3391:22;3405:7;3391:13;:22::i;25598:2913:72:-;25791:7;2000:19:13;:17;:19::i;:::-;25820:26:72::1;;;::::0;;::::1;::::0;::::1;25836:9:::0;25820:26:::1;:::i;:::-;:15;:26::i;:::-;987:10:10::0;25929:12:72;::::1;11057:2:71::0;11045:14;25904:53:72;::::1;25900:89;;25966:23;;-1:-1:-1::0;;;25966:23:72::1;;;;;;;;;;;25900:89;25995:57;26022:2;26027:24;25995:18;:57::i;:::-;26058:19;26080:2;-1:-1:-1::0;;;;;26080:18:72::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26058:42;;26106:62;26133:2;26138:29;26106:18;:62::i;:::-;26189:46;26219:15;26189:46;:20;::::0;;;::::1;::::0;::::1;;:::i;:::-;:46;;;:98;;;;;26271:15;26239:48;;:10;:21;;;:48;;;;26189:98;26316:12:::0;::::1;::::0;26174:161:::1;;;;-1:-1:-1::0;;;26174:161:72::1;;;;;;6594:25:101::0;;6582:2;6567:18;;6448:177;26174:161:72::1;;26375:10;:16;;;26356:35;;:9;:15;;;;;;;;;;:::i;:::-;:35;;;:94;;;;;26428:10;:22;;;26403:9;:21;;;:47;;26356:94;:163;;;;;26492:10;:27;;;26462:9;:26;;;:57;;26356:163;:210;;;;;26550:10;:16;;;26531:9;:15;;;:35;;26356:210;:257;;;;;26597:10;:16;;;26578:9;:15;;;:35;;26356:257;:328;;;;;26656:10;:28;;;26625:9;:27;;;:59;;26356:328;26717:9;26728:10;26341:404;;;;;;-1:-1:-1::0;;;26341:404:72::1;;;;;;;;;:::i;:::-;;;26851:44;26879:2;26884:10;26851:19;:44::i;:::-;26835:60:::0;;;:13:::1;26909:24:::0;;;:9:::1;:24;::::0;;;;;26969:13;;;26909:38;26901:83:::1;;;;-1:-1:-1::0;;;26901:83:72::1;;;;;;6594:25:101::0;;6582:2;6567:18;;6448:177;26901:83:72::1;;27017:17;:10;:15;:17::i;:::-;27000:13:::0;;26990:24:::1;::::0;;;:9:::1;:24;::::0;;;;:44;;;;27063:21:::1;27071:12:::0;::::1;27063:7;:21::i;:::-;27040:44;;27090:42;27100:12;27114:10;:13;;;27090:42;;;;;;;;;;;::::0;:9:::1;:42::i;:::-;27162:9;:16;;;27142:10;:17;;;:36;27138:180;;;27180:63;27196:2;27200:4;27226:9;:16;;;27206:10;:17;;;:36;;;;:::i;:::-;27180:15;:63::i;:::-;27138:180;;;27254:64;27270:2;27274:5;27300:10;:17;;;27281:9;:16;;;:36;;;;:::i;27254:64::-;27341:12:::0;::::1;27331:23;::::0;;;:9:::1;:23;::::0;;;;;27324:30;;;;27381:40;-1:-1:-1;;;27381:40:72;;-1:-1:-1;;;;;27381:17:72;::::1;::::0;::::1;::::0;:40:::1;::::0;27341:9;;27410:10;;27381:40:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27458:85;27477:5;27492:2;27497:10;:22;;;27521:9;:21;;;27458:18;:85::i;:::-;27550:13;27565;27582:2;-1:-1:-1::0;;;;;27582:7:72::1;;:9;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27549:42;;;;27597:76;27616:5;27631;27639:10;:16;;;27657:9;:15;;;27597:18;:76::i;:::-;27679;27698:5;27713;27721:10;:16;;;27739:9;:15;;;27679:18;:76::i;:::-;27787:9;::::0;27798:27:::1;::::0;;::::1;::::0;27761:93:::1;::::0;27780:5;;-1:-1:-1;;;;;27787:9:72;;::::1;::::0;27798:27;27827:26;::::1;;27761:18;:93::i;:::-;27860:16;27879:2;-1:-1:-1::0;;;;;27879:9:72::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27860:30;;27909:8;-1:-1:-1::0;;;;;27900:17:72::1;:5;-1:-1:-1::0;;;;;27900:17:72::1;;27896:123;;27925:94;27944:5;27951:8;27961:10;:28;;;27991:9;:27;;;27925:18;:94::i;:::-;28354:2;-1:-1:-1::0;;;;;28344:25:72::1;;28358:10;28344:25;;;;;;:::i;:::-;;;;;;;;28413:13:::0;;28380:47:::1;::::0;28399:12;::::1;::::0;-1:-1:-1;;;;;28380:47:72;::::1;::::0;::::1;::::0;28413:13:::1;::::0;28380:47:::1;28466:13:::0;;28433:47:::1;::::0;28452:12;::::1;::::0;28433:18:::1;:47::i;:::-;-1:-1:-1::0;;28493:13:72;;;25598:2913;-1:-1:-1;;;;;;;;25598:2913:72:o;17265:1228::-;-1:-1:-1;;;;;17379:22:72;;17354;17379;;;:11;:22;;;;;;17411:11;;;;:39;;;;;;;;:::i;:::-;;17407:79;;17459:27;;-1:-1:-1;;;17459:27:72;;;;;;;;;;;17407:79;17522:4;-1:-1:-1;;;;;17496:30:72;:9;-1:-1:-1;;;;;17496:20:72;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;17496:30:72;;17492:73;;17535:30;;-1:-1:-1;;;17535:30:72;;;;;;;;;;;17492:73;17592:21;17584:4;:29;;;;;;;;:::i;:::-;;17583:130;;;-1:-1:-1;17633:20:72;17625:4;:28;;;;;;;;:::i;:::-;;:87;;;;-1:-1:-1;17658:54:72;;-1:-1:-1;;;17658:54:72;;-1:-1:-1;;;;;17658:27:72;;;;;:54;;-1:-1:-1;;;17686:25:72;17658:54;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17657:55;17625:87;17583:247;;;-1:-1:-1;17732:29:72;17724:4;:37;;;;;;;;:::i;:::-;;:105;;;;-1:-1:-1;17766:63:72;;-1:-1:-1;;;17766:63:72;;-1:-1:-1;;;;;17766:27:72;;;;;:63;;-1:-1:-1;;;17794:34:72;17766:63;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17765:64;17724:105;17583:354;;;-1:-1:-1;17849:24:72;17841:4;:32;;;;;;;;:::i;:::-;;:95;;;;-1:-1:-1;17878:58:72;;-1:-1:-1;;;17878:58:72;;-1:-1:-1;;;;;17878:27:72;;;;;:58;;-1:-1:-1;;;17906:29:72;17878:58;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17877:59;17841:95;17572:420;;;17976:9;17987:4;17951:41;;-1:-1:-1;;;17951:41:72;;;;;;;;;:::i;17572:420::-;17999:36;;18013:22;-1:-1:-1;;17999:36:72;;;;;;18053:4;;17999:36;;-1:-1:-1;;18041:16:72;;;;;18053:4;18041:16;;;;;;;;:::i;:::-;;;;;-1:-1:-1;18075:29:72;18067:4;:37;;;;;;;;:::i;:::-;;18063:352;;18114:19;18161:9;18114:58;;18180:11;18194:2;-1:-1:-1;;;;;18194:12:72;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18180:28;-1:-1:-1;;;;;;18220:26:72;;;18216:79;;18258:28;;-1:-1:-1;;;18258:28:72;;-1:-1:-1;;;;;3601:32:101;;;18258:28:72;;;3583:51:101;18258:15:72;;;;;3556:18:101;;18258:28:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18216:79;18308:2;-1:-1:-1;;;;;18308:12:72;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18302:20;-1:-1:-1;;;;;;18334:26:72;;;18330:79;;18372:28;;-1:-1:-1;;;18372:28:72;;-1:-1:-1;;;;;3601:32:101;;;18372:28:72;;;3583:51:101;18372:15:72;;;;;3556:18:101;;18372:28:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18330:79;18106:309;;18063:352;18448:9;-1:-1:-1;;;;;18425:63:72;;18459:4;18465:22;18425:63;;;;;;;:::i;28545:1433::-;2000:19:13;:17;:19::i;:::-;28751:31:72::1;;;::::0;;::::1;::::0;::::1;28767:14:::0;28751:31:::1;:::i;:::-;987:10:10::0;28865:17:72;::::1;11057:2:71::0;11045:14;28840:58:72;::::1;28836:94;;28907:23;;-1:-1:-1::0;;;28907:23:72::1;;;;;;;;;;;28836:94;28936:69;28975:2;28980:24;28936:30;:69::i;:::-;29011:19;29033:2;-1:-1:-1::0;;;;;29033:18:72::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29011:42;;29059:74;29098:2;29103:29;29059:30;:74::i;:::-;29147:51;29182:15;29147:51;:25;::::0;;;::::1;::::0;::::1;;:::i;:::-;:51;;;29221:14;:17;;;29139:101;;;;;-1:-1:-1::0;;;29139:101:72::1;;;;;;6594:25:101::0;;6582:2;6567:18;;6448:177;29139:101:72::1;;29282:14;:26;;;29261:17;:47;;:94;;;;;29335:14;:20;;;29320:11;:35;;29261:94;:141;;;;;29382:14;:20;;;29367:11;:35;;29261:141;29436:14;29452:17;29471:11;29484;29246:256;;;;;;;;-1:-1:-1::0;;;29246:256:72::1;;;;;;;;;;;:::i;:::-;;;;;29524:20;29547:26;29555:14;:17;;;29547:7;:26::i;:::-;29524:49;;29579;29595:2;29599:5;29606:14;:21;;;29579:15;:49::i;:::-;29651:17:::0;::::1;29641:28;::::0;;;:9:::1;:28;::::0;;;;;29634:35;;;;29696:93;-1:-1:-1;;;29696:93:72;;-1:-1:-1;;;;;29696:18:72;::::1;::::0;::::1;::::0;:93:::1;::::0;29651:14;;29731:17;;29750:11;;29763;;29776:12;;29696:93:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;29801:83:72::1;::::0;;31126:25:101;;;31182:2;31167:18;;31160:34;;;31210:18;;;31203:34;;;29821:17:72;::::1;::::0;-1:-1:-1;;;;;;29801:83:72;::::1;::::0;-1:-1:-1;29801:83:72::1;::::0;31114:2:101;31099:18;29801:83:72::1;;;;;;;29890;29910:17:::0;::::1;29929::::0;29948:11;29961;29890:19:::1;:83::i;:::-;28731:1247;;;28545:1433:::0;;;;:::o;18813:1253::-;-1:-1:-1;;;;;18910:22:72;;18885;18910;;;:11;:22;;;;;18957:26;18942:11;;;;:41;;;;;;;;:::i;:::-;;18938:78;;18992:24;;-1:-1:-1;;;18992:24:72;;;;;;;;;;;18938:78;19039:20;19026:9;;;;;;;:33;;;;;;;;:::i;:::-;;19022:924;;19096:9;-1:-1:-1;;;;;19073:46:72;;:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;19069:161;;19170:4;:9;;;;;;;;;;;;19204;-1:-1:-1;;;;;19181:46:72;;:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19143:87;;-1:-1:-1;;;19143:87:72;;;;;;;;;:::i;19069:161::-;19022:924;;;19260:24;19247:9;;;;;;;:37;;;;;;;;:::i;:::-;;19243:703;;-1:-1:-1;;;;;19298:46:72;;;;;;:13;:46;;;;;:53;-1:-1:-1;;;;;19298:53:72;:58;19294:171;;19400:9;;-1:-1:-1;;;;;19411:46:72;;19400:9;19411:46;;;:13;:46;;;;;;;;;:53;19373:92;;-1:-1:-1;;;19373:92:72;;;;19400:9;;;;;;-1:-1:-1;;;;;19411:53:72;;19373:92;;:::i;19243:703::-;19540:19;19587:9;19540:58;;19610:2;-1:-1:-1;;;;;19610:15:72;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:22;19606:91;;19668:4;:9;;;;;;;;;;;;19679:2;-1:-1:-1;;;;;19679:15:72;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19606:91;19705:11;19719:2;-1:-1:-1;;;;;19719:12:72;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19705:28;-1:-1:-1;;;;;;19745:26:72;;;19741:82;;19783:31;;-1:-1:-1;;;19783:31:72;;-1:-1:-1;;;;;3601:32:101;;;19783:31:72;;;3583:51:101;19783:18:72;;;;;3556::101;;19783:31:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19741:82;19836:2;-1:-1:-1;;;;;19836:12:72;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19830:20;-1:-1:-1;;;;;;19862:26:72;;;19858:82;;19900:31;;-1:-1:-1;;;19900:31:72;;-1:-1:-1;;;;;3601:32:101;;;19900:31:72;;;3583:51:101;19900:18:72;;;;;3556::101;;19900:31:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19858:82;19478:468;;19243:703;19990:9;;19956:70;;-1:-1:-1;;;;;19956:70:72;;;;;;;19990:9;;;;;;;;19956:70;:::i;:::-;;;;;;;;-1:-1:-1;;;;;;20039:22:72;;;;;:11;:22;;;;;20032:29;;-1:-1:-1;;20032:29:72;;;18813:1253::o;3003:265:9:-;3066:7;-1:-1:-1;;;;;;;;;;;;;;;;3144:19:9;;3140:87;;3186:30;;-1:-1:-1;;;3186:30:9;;3213:1;3186:30;;;3583:51:101;3556:18;;3186:30:9;3437:203:101;3140:87:9;-1:-1:-1;;;;;3243:18:9;;;;;;;:11;;;;:18;;-1:-1:-1;3243:18:9;;;;;3003:265::o;15694:43:72:-;15724:8;:6;:8::i;3650:150:9:-;3784:9;3777:16;;3697:13;;-1:-1:-1;;;;;;;;;;;2094:21:9;3777:16;;;:::i;33813:369:72:-;-1:-1:-1;;;;;33916:17:72;;33888:25;33916:17;;;:13;:17;;;;;;33961:20;:8;:18;:20::i;:::-;33995:15;;33939:42;;-1:-1:-1;;;;;;33995:15:72;;;;33939:42;;33995:30;;;;;33987:92;;;;-1:-1:-1;;;33987:92:72;;-1:-1:-1;;;;;32318:47:101;;;33987:92:72;;;32300:66:101;32402:47;;32382:18;;;32375:75;32273:18;;33987:92:72;32126:330:101;33987:92:72;-1:-1:-1;;34115:14:72;;34090:53;;;-1:-1:-1;;;34115:14:72;;;-1:-1:-1;;;;;34115:14:72;;;32300:66:101;;32402:47;;32397:2;32382:18;;32375:75;-1:-1:-1;;;;;34090:53:72;;;;;32273:18:101;34090:53:72;;;;;;;34149:28;;-1:-1:-1;;;;;34149:28:72;;;-1:-1:-1;;;34149:28:72;;;;;;-1:-1:-1;;33813:369:72:o;4800:144:9:-;4885:52;987:10:10;4918:8:9;4928;4885:18;:52::i;1539:482:11:-;1703:12;;;1639:20;1703:12;;;;;;;;1605:22;;1814:4;-1:-1:-1;;;;;1802:24:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1792:34:11;-1:-1:-1;1841:9:11;1836:155;1856:15;;;1836:155;;;1905:75;1942:4;1962;;1967:1;1962:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;1971;1949:30;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1905:28;:75::i;:::-;1892:7;1900:1;1892:10;;;;;;;;:::i;:::-;;;;;;;;;;:88;1873:3;;1836:155;;;;2000:14;1539:482;;;;:::o;6000:233:9:-;6113:31;6126:4;6132:2;6136:7;6113:12;:31::i;:::-;6154:72;987:10:10;6202:4:9;6208:2;6212:7;6221:4;6154:33;:72::i;30695:161:72:-;2000:19:13;:17;:19::i;:::-;30814:37:72::1;;;::::0;;::::1;::::0;::::1;30829:6:::0;30814:37:::1;:::i;:::-;30837:6;30845:5;30814:14;:37::i;3842:255:9:-:0;3906:13;3931:22;3945:7;3931:13;:22::i;:::-;;3964:21;3988:10;:8;:10::i;:::-;3964:34;;4039:1;4021:7;4015:21;:25;:75;;;;;;;;;;;;;;;;;4057:7;4066:18;:7;:16;:18::i;:::-;4043:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4015:75;4008:82;3842:255;-1:-1:-1;;;3842:255:9:o;22635:617:72:-;2000:19:13;:17;:19::i;:::-;-1:-1:-1;;;;;22905:9:72::1;22884:39;;987:10:10::0;22884:95:72::1;::::0;-1:-1:-1;;;;;;22884:95:72::1;::::0;;;;;;-1:-1:-1;;;;;34618:32:101;;;22884:95:72::1;::::0;::::1;34600:51:101::0;22946:4:72::1;34667:18:101::0;;;34660:60;34736:18;;;34729:34;;;34779:18;;;34772:34;;;34855:4;34843:17;;34822:19;;;34815:46;34877:19;;;34870:35;;;34921:19;;;34914:35;;;34572:19;;22884:95:72::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22880:111:::0;23213:34:::1;23222:6;23230;23238:8;23213;:34::i;23286:466::-:0;23430:23;2000:19:13;:17;:19::i;:::-;23469:8:72;-1:-1:-1;;;;;23469:22:72;::::1;23461:58;;;::::0;-1:-1:-1;;;23461:58:72;;-1:-1:-1;;;;;3601:32:101;;;23461:58:72::1;::::0;::::1;3583:51:101::0;3556:18;;23461:58:72::1;3437:203:101::0;23461:58:72::1;;23525:69;23564:6;23573:20;23525:30;:69::i;:::-;-1:-1:-1::0;;;;;23618:15:72;::::1;;23634:6:::0;987:10:10;23618:54:72::1;::::0;-1:-1:-1;;;;;;23618:54:72::1;::::0;;;;;;::::1;::::0;::::1;35191:25:101::0;;;;-1:-1:-1;;;;;35252:32:101;;;35232:18;;;35225:60;35321:32;;;35301:18;;;35294:60;35390:32;;35370:18;;;35363:60;35163:19;;23618:54:72::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23600:72:::0;-1:-1:-1;;;;;;23683:64:72;::::1;987:10:10::0;23683:64:72::1;::::0;;-1:-1:-1;;;;;35626:32:101;;;35608:51;;35690:2;35675:18;;35668:34;;;23683:64:72;;::::1;::::0;;::::1;::::0;::::1;::::0;35581:18:101;23683:64:72::1;;;;;;;23286:466:::0;;;;;;:::o;4978:210:9:-;-1:-1:-1;;;;;5144:27:9;;;5066:4;5144:27;;;:20;:27;;;;;;;;:37;;;;;;;;;;;;;;;4978:210::o;16434:83:72:-;16489:23;16502:9;16489:12;:23::i;:::-;16434:83;:::o;22457:144::-;2000:19:13;:17;:19::i;:::-;22562:34:72::1;22571:6;22579;22587:8;22562;:34::i;30406:255::-:0;2000:19:13;:17;:19::i;:::-;30525:15:72::1;30505:17;::::0;;;::::1;::::0;::::1;;:::i;:::-;:35;;;30501:111;;;30566:9:::0;::::1;30577:17;::::0;;;::::1;::::0;::::1;;:::i;:::-;30549:63;::::0;-1:-1:-1;;;30549:63:72;;::::1;::::0;::::1;35913:25:101::0;;;;35986:12;35974:25;35954:18;;;35947:53;30596:15:72::1;36016:18:101::0;;;36009:34;35886:18;;30549:63:72::1;35713:336:101::0;30501:111:72::1;30625:31;;;::::0;;::::1;::::0;::::1;30640:6:::0;30625:31:::1;:::i;:::-;30648:1;30651:4;30625:14;:31::i;2658:311:9:-:0;2771:4;-1:-1:-1;;;;;;2806:40:9;;-1:-1:-1;;;2806:40:9;;:104;;-1:-1:-1;;;;;;;2862:48:9;;-1:-1:-1;;;2862:48:9;2806:104;:156;;;-1:-1:-1;;;;;;;;;;1119:40:15;;;2926:36:9;1020:146:15;9071:205:32;9129:30;;3147:66;9186:27;8819:122;2250:149:9;6929:20:32;:18;:20::i;:::-;2353:39:9::1;2377:5;2384:7;2353:23;:39::i;2287:60:13:-:0;6929:20:32;:18;:20::i;15162:116:72:-;6929:20:32;:18;:20::i;17574:241:9:-;17637:7;17656:13;17672:17;17681:7;17672:8;:17::i;:::-;17656:33;-1:-1:-1;;;;;;17703:19:9;;17699:88;;17745:31;;-1:-1:-1;;;17745:31:9;;;;;6594:25:101;;;6567:18;;17745:31:9;6448:177:101;7036:184:9;7106:7;7187:26;;;:17;:26;;;;;;-1:-1:-1;;;;;7187:26:9;;7036:184::o;15740:120::-;15820:33;15829:2;15833:7;15842:4;15848;15820:8;:33::i;2730:128:13:-;-1:-1:-1;;;;;;;;;;;2646:9:13;;;2791:61;;;2826:15;;-1:-1:-1;;;2826:15:13;;;;;;;;;;;21537:194:72;21665:22;21628:33;21645:9;21656:4;21628:16;:33::i;:::-;:59;;;;;;;;:::i;:::-;;21624:102;;21696:30;;-1:-1:-1;;;21696:30:72;;;;;;;;;;;11607:153:71;11683:7;11705:50;;;;-1:-1:-1;;11739:2:71;11706:35;;;;11705:50;:::i;10651:204::-;10714:15;10768:6;10757:18;;;;;;;;:::i;:::-;;;;-1:-1:-1;;10757:18:71;;;;;;;;;10747:29;;10757:18;10747:29;;;;;-1:-1:-1;10822:6:71;10790:21;10782:48;;;;-1:-1:-1;;;10782:48:71;;;;;;;;:::i;:::-;;10651:204;;;:::o;12225:207:9:-;12319:18;12325:2;12329:7;12319:5;:18::i;:::-;12347:78;987:10:10;12403:1:9;12407:2;12411:7;12420:4;12347:33;:78::i;32789:372:72:-;-1:-1:-1;;;;;32904:17:72;;32876:25;32904:17;;;:13;:17;;;;;32927:230;;;;32968:18;:6;:16;:18::i;:::-;32949:37;;:8;;:15;;:37;;;;-1:-1:-1;;;;;32949:37:72;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;32949:37:72;;;;;;;;;;;;;;;33021:14;;33002:15;;;;-1:-1:-1;;;;33021:14:72;;;33002:33;;;;32994:98;;;;-1:-1:-1;;;32994:98:72;;-1:-1:-1;;;;;32318:47:101;;;32994:98:72;;;32300:66:101;32402:47;;32382:18;;;32375:75;32273:18;;32994:98:72;32126:330:101;32994:98:72;;;32927:230;;;33132:18;:6;:16;:18::i;:::-;33113:37;;:8;;:15;;:37;;;;-1:-1:-1;;;;;33113:37:72;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;33113:37:72;;;;;-1:-1:-1;;;;;33113:37:72;;;;;;32870:291;32789:372;;;:::o;1662:232:40:-;1767:47;1785:5;1792:4;1798:2;1802:5;1809:4;1767:17;:47::i;:::-;1762:126;;1837:40;;-1:-1:-1;;;1837:40:40;;-1:-1:-1;;;;;3601:32:101;;1837:40:40;;;3583:51:101;3556:18;;1837:40:40;3437:203:101;38604:160:72;38705:7;2000:19:13;:17;:19::i;:::-;38727:32:72::1;38741:2;38745:7;38754:4;38727:13;:32::i;:::-;38720:39:::0;38604:160;-1:-1:-1;;;;38604:160:72:o;3499:178:13:-;2247:16;:14;:16::i;:::-;-1:-1:-1;;;;;;;;;;;3616:17:13;;-1:-1:-1;;3616:17:13::1;::::0;;3648:22:::1;987:10:10::0;3657:12:13::1;3648:22;::::0;-1:-1:-1;;;;;3601:32:101;;;3583:51;;3571:2;3556:18;3648:22:13::1;;;;;;;3547:130;3499:178::o:0;4328:312:33:-;4408:4;-1:-1:-1;;;;;4417:6:33;4400:23;;;:120;;;4514:6;-1:-1:-1;;;;;4478:42:33;:32;-1:-1:-1;;;;;;;;;;;1519:53:29;-1:-1:-1;;;;;1519:53:29;;1441:138;4478:32:33;-1:-1:-1;;;;;4478:42:33;;;4400:120;4383:251;;;4594:29;;-1:-1:-1;;;4594:29:33;;;;;;;;;;;15282:199:72;15355:19;15389:7;15355:42;;15429:9;-1:-1:-1;;;;;15407:31:72;:7;-1:-1:-1;;;;;15407:16:72;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;15407:31:72;;15403:73;;15447:29;;-1:-1:-1;;;15447:29:72;;;;;;;;;;;5782:538:33;5899:17;-1:-1:-1;;;;;5881:50:33;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5881:52:33;;;;;;;;-1:-1:-1;;5881:52:33;;;;;;;;;;;;:::i;:::-;;;5877:437;;6243:60;;-1:-1:-1;;;6243:60:33;;-1:-1:-1;;;;;3601:32:101;;6243:60:33;;;3583:51:101;3556:18;;6243:60:33;3437:203:101;5877:437:33;-1:-1:-1;;;;;;;;;;;5975:40:33;;5971:120;;6042:34;;-1:-1:-1;;;6042:34:33;;;;;6594:25:101;;;6567:18;;6042:34:33;6448:177:101;5971:120:33;6104:54;6134:17;6153:4;6104:29;:54::i;4757:213::-;4831:4;-1:-1:-1;;;;;4840:6:33;4823:23;;4819:145;;4924:29;;-1:-1:-1;;;4924:29:33;;;;;;;;;;;30198:174:72;30284:9;;:14;;;;:55;;-1:-1:-1;30329:9:72;;30319:20;;;;:9;:20;;;;;;30302:13;30329:6;30302:11;:13::i;:::-;:37;30284:55;30356:9;;;30276:91;;;;-1:-1:-1;;;30276:91:72;;;;;;6594:25:101;;6582:2;6567:18;;6448:177;29982:212:72;30084:11;30098;30105:4;30098;:11;:::i;:::-;30084:25;-1:-1:-1;30119:8:72;;30115:75;;30137:46;-1:-1:-1;;;;;30137:9:72;:26;30164:5;30171:6;30179:3;30137:26;:46::i;:::-;30078:116;29982:212;;;;:::o;36514:508::-;36599:16;36618:20;36626:11;36618:7;:20::i;:::-;36599:39;;36649:74;36681:8;-1:-1:-1;;;36649:31:72;:74::i;:::-;36644:88;;36725:7;36514:508;;:::o;36644:88::-;36738:13;-1:-1:-1;;;;;36754:40:72;;;987:10:10;36754:95:72;;-1:-1:-1;;;;;;36754:95:72;;;;;;;-1:-1:-1;;;;;37394:32:101;;;36754:95:72;;;37376:51:101;36817:4:72;37443:18:101;;;37436:60;37512:18;;;37505:34;;;37555:18;;;37548:34;;;37348:19;;36754:95:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36738:111;-1:-1:-1;;;;;;;36924:49:72;;-1:-1:-1;;;36924:49:72;36920:97;;37010:6;36982:35;;-1:-1:-1;;;36982:35:72;;;;;;;;:::i;21735:294::-;21834:22;21859:33;21876:9;21887:4;21859:16;:33::i;:::-;21834:58;-1:-1:-1;21912:22:72;21902:6;:32;;;;;;;;:::i;:::-;;;:72;;;;-1:-1:-1;21948:26:72;21938:6;:36;;;;;;;;:::i;:::-;;;21902:72;21898:126;;;21989:35;;-1:-1:-1;;;21989:35:72;;;;;;;;;;;37301:672;37461:16;37480:26;37488:17;37480:7;:26::i;:::-;37461:45;;37517:74;37549:8;-1:-1:-1;;;37517:31:72;:74::i;:::-;37512:88;;37593:7;;;37512:88;37606:13;-1:-1:-1;;;;;37622:41:72;;;987:10:10;37622:176:72;;-1:-1:-1;;;;;;37622:176:72;;;;;;;-1:-1:-1;;;;;38152:32:101;;;37622:176:72;;;38134:51:101;37699:4:72;38201:18:101;;;38194:60;38270:18;;;38263:34;;;38313:18;;;38306:34;;;38356:19;;;38349:35;;;38400:19;;;38393:35;;;38106:19;;37622:176:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37606:192;-1:-1:-1;;;;;;;37874:50:72;;-1:-1:-1;;;37874:50:72;37870:98;;37961:6;37933:35;;-1:-1:-1;;;37933:35:72;;;;;;;;:::i;37870:98::-;37455:518;;37301:672;;;;:::o;3191:176:13:-;2000:19;:17;:19::i;:::-;-1:-1:-1;;;;;;;;;;;3309:16:13;;-1:-1:-1;;3309:16:13::1;3321:4;3309:16;::::0;;3340:20:::1;987:10:10::0;3347:12:13::1;908:96:10::0;9264:218:64;9321:7;-1:-1:-1;;;;;9344:25:64;;9340:105;;;9392:42;;-1:-1:-1;;;9392:42:64;;9423:3;9392:42;;;38621:36:101;38673:18;;;38666:34;;;38594:18;;9392:42:64;38439:267:101;9340:105:64;-1:-1:-1;9469:5:64;9264:218::o;16970:369:9:-;-1:-1:-1;;;;;;;;;;;;;;;;17132:22:9;;17128:91;;17177:31;;-1:-1:-1;;;17177:31:9;;-1:-1:-1;;;;;3601:32:101;;17177:31:9;;;3583:51:101;3556:18;;17177:31:9;3437:203:101;17128:91:9;-1:-1:-1;;;;;17228:27:9;;;;;;;:20;;;:27;;;;;;;;:37;;;;;;;;;;;;;:48;;-1:-1:-1;;17228:48:9;;;;;;;;;;17291:41;;540::101;;;17291::9;;513:18:101;17291:41:9;;;;;;;17063:276;16970:369;;;:::o;4691:549:45:-;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:45;4583:16:49;4886:33:45;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:45;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;:::-;4962:32;;;;;4870:364;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:45;;-1:-1:-1;;;;;3601:32:101;;5045:24:45;;;3583:51:101;3556:18;;5045:24:45;3437:203:101;5011:223:45;4583:16:49;5090:33:45;5086:148;;5139:27;:25;:27::i;:::-;5086:148;;;5204:19;;-1:-1:-1;;;5204:19:45;;;;;;;;;;;5086:148;4788:452;4691:549;;;;:::o;994:926:44:-;-1:-1:-1;;;;;1174:14:44;;;:18;1170:744;;1212:67;;-1:-1:-1;;;1212:67:44;;-1:-1:-1;;;;;1212:36:44;;;;;:67;;1249:8;;1259:4;;1265:7;;1274:4;;1212:67;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1212:67:44;;;;;;;;-1:-1:-1;;1212:67:44;;;;;;;;;;;;:::i;:::-;;;1208:696;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1569:6;:13;1586:1;1569:18;1565:325;;1673:39;;-1:-1:-1;;;1673:39:44;;-1:-1:-1;;;;;3601:32:101;;1673:39:44;;;3583:51:101;3556:18;;1673:39:44;3437:203:101;1565:325:44;1842:6;1836:13;1829:4;1821:6;1817:17;1810:40;1208:696;-1:-1:-1;;;;;;1326:51:44;;-1:-1:-1;;;1326:51:44;1322:182;;1446:39;;-1:-1:-1;;;1446:39:44;;-1:-1:-1;;;;;3601:32:101;;1446:39:44;;;3583:51:101;3556:18;;1446:39:44;3437:203:101;31601:1184:72;31717:23;31733:6;31717:15;:23::i;:::-;31800:9;;11057:2:71;11045:14;31821:8:72;;:39;;;;-1:-1:-1;;;;;;31833:27:72;;987:10:10;31833:27:72;;31821:39;31817:75;;;31869:23;;-1:-1:-1;;;31869:23:72;;;;;;;;;;;31817:75;31906:11;;;:50;;;31941:15;31921:6;:17;;;:35;;;31906:50;31979:9;;;31898:92;;;;-1:-1:-1;;;31898:92:72;;;;;;6594:25:101;;6582:2;6567:18;;6448:177;31898:92:72;;31996:69;32035:2;32040:24;31996:30;:69::i;:::-;32090:13;;;;32080:6;;:23;;;;32072:75;;;;-1:-1:-1;;;32072:75:72;;;;;12747:25:101;;;;12788:18;;;12781:34;12720:18;;32072:75:72;12573:248:101;32072:75:72;;;32154:16;32182:1;32173:6;:10;32154:29;;32190:19;32212:2;-1:-1:-1;;;;;32212:18:72;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32190:42;;32238:74;32277:2;32282:29;32238:30;:74::i;:::-;32350:9;;32340:20;;;;:9;:20;;;;;32333:27;32386:181;;;;32411:19;32433:18;32441:6;:9;;;32433:7;:18::i;:::-;32459:56;;-1:-1:-1;;;32459:56:72;;32411:40;;-1:-1:-1;;;;;;32459:27:72;;;;;:56;;32411:40;;32500:6;;32508;;32459:56;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32403:119;32386:181;;;32536:24;;-1:-1:-1;;;32536:24:72;;-1:-1:-1;;;;;32536:16:72;;;;;:24;;32553:6;;32536:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32386:181;32573:41;32589:2;32593:5;32600:6;:13;;;32573:15;:41::i;:::-;32645:9;;32626:37;;6594:25:101;;;-1:-1:-1;;;;;32626:37:72;;;;;6582:2:101;6567:18;32626:37:72;;;;;;;32673:10;;32669:112;;32707:9;;32693:32;;32718:6;32693:13;:32::i;:::-;32669:112;;;32764:9;;32746:28;;:17;:28::i;38211:104::-;38271:13;38299:11;38292:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38211:104;:::o;1343:634:56:-;1399:13;1448:14;1465:17;1476:5;1465:10;:17::i;:::-;1485:1;1465:21;1448:38;;1500:20;1534:6;-1:-1:-1;;;;;1523:18:56;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1523:18:56;-1:-1:-1;1500:41:56;-1:-1:-1;1630:30:56;;;1646:4;1630:30;1687:247;-1:-1:-1;;1718:5:56;-1:-1:-1;;;1817:2:56;1806:14;;1801:32;1718:5;1788:46;1878:2;1869:11;;;-1:-1:-1;1898:21:56;1687:247;1898:21;-1:-1:-1;1954:6:56;1343:634;-1:-1:-1;;;1343:634:56:o;22033:390:72:-;22124:8;-1:-1:-1;;;;;22124:22:72;;22116:58;;;;-1:-1:-1;;;22116:58:72;;-1:-1:-1;;;;;3601:32:101;;;22116:58:72;;;3583:51:101;3556:18;;22116:58:72;3437:203:101;22116:58:72;;22180:57;22207:6;22216:20;22180:18;:57::i;:::-;22243:65;:9;-1:-1:-1;;;;;22243:26:72;987:10:10;22292:6:72;22301;22243:26;:65::i;:::-;-1:-1:-1;;;;;22314:14:72;;;22329:6;987:10:10;22314:46:72;;-1:-1:-1;;;;;;22314:46:72;;;;;;;;;;39967:25:101;;;;-1:-1:-1;;;;;40028:32:101;;;40008:18;;;40001:60;40097:32;;40077:18;;;40070:60;39940:18;;22314:46:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22401:8;-1:-1:-1;;;;;22371:47:72;22387:12;987:10:10;;908:96;22387:12:72;-1:-1:-1;;;;;22371:47:72;22379:6;-1:-1:-1;;;;;22371:47:72;;22411:6;22371:47;;;;6594:25:101;;6582:2;6567:18;;6448:177;22371:47:72;;;;;;;;22033:390;;;:::o;16060:188::-;-1:-1:-1;;;;;16120:23:72;;16116:52;;16152:16;;-1:-1:-1;;;16152:16:72;;;;;;;;;;;16116:52;16195:9;;16179:37;;;-1:-1:-1;;;;;16195:9:72;;;40315:51:101;;40402:32;;;40397:2;40382:18;;40375:60;16179:37:72;;40288:18:101;16179:37:72;;;;;;;16222:9;:21;;-1:-1:-1;;;;;;16222:21:72;-1:-1:-1;;;;;16222:21:72;;;;;;;;;;16060:188::o;7082:141:32:-;7149:17;:15;:17::i;:::-;7144:73;;7189:17;;-1:-1:-1;;;7189:17:32;;;;;;;;;;;2405:219:9;6929:20:32;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;2094:21:9;2573:15:::1;2583:5:::0;2094:21;2573:15:::1;:::i;:::-;-1:-1:-1::0;2598:9:9::1;::::0;::::1;:19;2610:7:::0;2598:9;:19:::1;:::i;6748:172::-:0;6814:7;6895:18;;;:9;:18;;;;;;-1:-1:-1;;;;;6895:18:9;;6748:172::o;16042:719::-;-1:-1:-1;;;;;;;;;;;16257:9:9;;:31;;-1:-1:-1;;;;;;16270:18:9;;;;16257:31;16253:460;;;16304:13;16320:22;16334:7;16320:13;:22::i;:::-;16304:38;-1:-1:-1;;;;;;16470:18:9;;;;;;:35;;;16501:4;-1:-1:-1;;;;;16492:13:9;:5;-1:-1:-1;;;;;16492:13:9;;;16470:35;:69;;;;;16510:29;16527:5;16534:4;16510:16;:29::i;:::-;16509:30;16470:69;16466:142;;;16566:27;;-1:-1:-1;;;16566:27:9;;-1:-1:-1;;;;;3601:32:101;;16566:27:9;;;3583:51:101;3556:18;;16566:27:9;3437:203:101;16466:142:9;16626:9;16622:81;;;16680:7;16676:2;-1:-1:-1;;;;;16660:28:9;16669:5;-1:-1:-1;;;;;16660:28:9;;;;;;;;;;;16622:81;16290:423;16253:460;16723:26;;;;:17;;:26;;-1:-1:-1;;16723:26:9;;;:31;;-1:-1:-1;;;;;;16723:31:9;-1:-1:-1;;;;;16723:31:9;;;;;;;;;;16042:719::o;21225:308:72:-;-1:-1:-1;;;;;21361:44:72;;21313:15;21361:44;;;:11;:44;;;;;21428:4;21415:17;;;;;;;;:::i;:::-;:9;;;;;;;:17;;;;;;;;:::i;:::-;;21411:93;;21487:9;21499:4;21441:63;;-1:-1:-1;;;21441:63:72;;;;;;;;;:::i;21411:93::-;21517:11;;;;21225:308;-1:-1:-1;;;21225:308:72:o;11226:327:9:-;-1:-1:-1;;;;;11293:16:9;;11289:87;;11332:33;;-1:-1:-1;;;11332:33:9;;11362:1;11332:33;;;3583:51:101;3556:18;;11332:33:9;3437:203:101;11289:87:9;11385:21;11409:32;11417:2;11421:7;11438:1;11409:7;:32::i;:::-;11385:56;-1:-1:-1;;;;;;11455:27:9;;;11451:96;;11505:31;;-1:-1:-1;;;11505:31:9;;11533:1;11505:31;;;3583:51:101;3556:18;;11505:31:9;3437:203:101;10165:1393:40;10460:4;10454:11;-1:-1:-1;;;10323:12:40;10478:22;;;-1:-1:-1;;;;;10526:26:40;;;10520:4;10513:40;10579:24;;10573:4;10566:38;10624:4;10617:19;;;10323:12;10700:4;10323:12;10688:4;10323:12;;10672:5;10665;10660:45;10649:56;;10917:1;10910:4;10904:11;10901:18;10892:7;10888:32;10878:606;;11049:6;11039:7;11032:15;11028:28;11025:165;;;11105:16;11099:4;11094:3;11079:43;11155:16;11150:3;11143:29;11025:165;11466:1;11458:5;11446:18;11443:25;11424:16;11417:24;11413:56;11404:7;11400:70;11389:81;;10878:606;11504:4;11497:17;-1:-1:-1;11540:1:40;11534:4;11527:15;10165:1393;;-1:-1:-1;;;;;10165:1393:40:o;10048:856:9:-;10134:7;-1:-1:-1;;;;;;;;;;;10134:7:9;10223:17;10232:7;10223:8;:17::i;:::-;10208:32;-1:-1:-1;;;;;;10300:18:9;;;10296:86;;10334:37;10351:4;10357;10363:7;10334:16;:37::i;:::-;-1:-1:-1;;;;;10426:18:9;;;10422:258;;10542:48;10559:1;10563:7;10580:1;10584:5;10542:8;:48::i;:::-;-1:-1:-1;;;;;10633:17:9;;;;;;:11;;;:17;;;;;:22;;-1:-1:-1;;10633:22:9;;;10422:258;-1:-1:-1;;;;;10694:16:9;;;10690:109;;-1:-1:-1;;;;;10754:15:9;;;;;;:11;;;:15;;;;;:20;;10773:1;10754:20;;;10690:109;10809:18;;;;:9;;;:18;;;;;;:23;;-1:-1:-1;;;;;;10809:23:9;-1:-1:-1;;;;;10809:23:9;;;;;;;;;10848:27;;10809:18;;10848:27;;;;;;;10893:4;10048:856;-1:-1:-1;;;;;10048:856:9:o;2930:126:13:-;-1:-1:-1;;;;;;;;;;;2646:9:13;;;2988:62;;3024:15;;-1:-1:-1;;;3024:15:13;;;;;;;;;;;2264:344:29;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:29;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;2454:148::-;2573:18;:16;:18::i;1465:283:61:-;1552:4;1660:23;1675:7;1660:14;:23::i;:::-;:81;;;;;1687:54;1720:7;1729:11;1687:32;:54::i;3383:242:49:-;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:49:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;35139:419:72;35211:16;35230:17;35238:8;35230:7;:17::i;:::-;35211:36;;35258:74;35290:8;-1:-1:-1;;;35258:31:72;:74::i;:::-;35253:88;;35334:7;35139:419;;:::o;35253:88::-;35347:13;-1:-1:-1;;;;;35363:40:72;;;987:10:10;35363:87:72;;-1:-1:-1;;;;;;35363:87:72;;;;;;;-1:-1:-1;;;;;37394:32:101;;;35363:87:72;;;37376:51:101;35426:4:72;37443:18:101;;;37436:60;37512:18;;;37505:34;;;37555:18;;;37548:34;;;37348:19;;35363:87:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35347:103;-1:-1:-1;;;;;;;35460:49:72;;-1:-1:-1;;;35460:49:72;35456:97;;35546:6;35518:35;;-1:-1:-1;;;35518:35:72;;;;;;;;:::i;35777:460::-;35837:16;35856:17;35864:8;35856:7;:17::i;:::-;35837:36;;35884:74;35916:8;-1:-1:-1;;;35884:31:72;:74::i;:::-;35879:88;;35960:7;35777:460;:::o;35879:88::-;-1:-1:-1;;;;;35977:39:72;;;2698:6;987:10:10;35977:101:72;;-1:-1:-1;;;;;;35977:101:72;;;;;;;-1:-1:-1;;;;;41970:32:101;;;35977:101:72;;;41952:51:101;36062:4:72;42019:18:101;;;42012:60;42088:18;;;42081:34;;;41925:18;;35977:101:72;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35977:101:72;;;;;;;;-1:-1:-1;;35977:101:72;;;;;;;;;;;;:::i;:::-;;;35973:260;;36149:63;;-1:-1:-1;;;;;3601:32:101;;3583:51;;36178:8:72;;36149:63;;3571:2:101;3556:18;36149:63:72;;;;;;;36220:7;35777:460;:::o;29170:916:63:-;29223:7;;-1:-1:-1;;;29298:17:63;;29294:103;;-1:-1:-1;;;29335:17:63;;;-1:-1:-1;29380:2:63;29370:12;29294:103;29423:8;29414:5;:17;29410:103;;29460:8;29451:17;;;-1:-1:-1;29496:2:63;29486:12;29410:103;29539:8;29530:5;:17;29526:103;;29576:8;29567:17;;;-1:-1:-1;29612:2:63;29602:12;29526:103;29655:7;29646:5;:16;29642:100;;29691:7;29682:16;;;-1:-1:-1;29726:1:63;29716:11;29642:100;29768:7;29759:5;:16;29755:100;;29804:7;29795:16;;;-1:-1:-1;29839:1:63;29829:11;29755:100;29881:7;29872:5;:16;29868:100;;29917:7;29908:16;;;-1:-1:-1;29952:1:63;29942:11;29868:100;29994:7;29985:5;:16;29981:66;;30031:1;30021:11;30073:6;29170:916;-1:-1:-1;;29170:916:63:o;8485:120:32:-;8535:4;8558:26;:24;:26::i;:::-;:40;-1:-1:-1;;;8558:40:32;;;;;;-1:-1:-1;8485:120:32:o;8235:368:9:-;8347:38;8361:5;8368:7;8377;8347:13;:38::i;:::-;8342:255;;-1:-1:-1;;;;;8405:19:9;;8401:186;;8451:31;;-1:-1:-1;;;8451:31:9;;;;;6594:25:101;;;6567:18;;8451:31:9;6448:177:101;8401:186:9;8528:44;;-1:-1:-1;;;8528:44:9;;-1:-1:-1;;;;;35626:32:101;;8528:44:9;;;35608:51:101;35675:18;;;35668:34;;;35581:18;;8528:44:9;35434:274:101;1671:281:29;1748:17;-1:-1:-1;;;;;1748:29:29;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:29;;-1:-1:-1;;;;;3601:32:101;;1805:47:29;;;3583:51:101;3556:18;;1805:47:29;3437:203:101;1744:119:29;-1:-1:-1;;;;;;;;;;;1872:73:29;;-1:-1:-1;;;;;;1872:73:29;-1:-1:-1;;;;;1872:73:29;;;;;;;;;;1671:281::o;6113:122::-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:29;;;;;;;;;;;719:528:61;783:4;976:68;1009:7;-1:-1:-1;;;976:32:61;:68::i;:::-;972:269;;;1061:12;;1093:52;1115:7;-1:-1:-1;;;;;;1093:21:61;:52::i;:::-;1060:85;;;;1166:7;:21;;;;-1:-1:-1;1177:10:61;;1159:28;-1:-1:-1;;;719:528:61:o;972:269::-;-1:-1:-1;1225:5:61;;719:528;-1:-1:-1;719:528:61:o;972:269::-;719:528;;;:::o;4504:238::-;4606:4;4623:12;4637:14;4655:43;4677:7;4686:11;4655:21;:43::i;:::-;4622:76;;;;4715:7;:20;;;;;4726:9;4715:20;4708:27;4504:238;-1:-1:-1;;;;;4504:238:61:o;7531:272:9:-;7634:4;-1:-1:-1;;;;;7669:21:9;;;;;;:127;;;7716:7;-1:-1:-1;;;;;7707:16:9;:5;-1:-1:-1;;;;;7707:16:9;;:52;;;;7727:32;7744:5;7751:7;7727:16;:32::i;:::-;7707:88;;;;7788:7;-1:-1:-1;;;;;7763:32:9;:21;7776:7;7763:12;:21::i;:::-;-1:-1:-1;;;;;7763:32:9;;;7531:272;-1:-1:-1;;;;7531:272:9:o;5217:628:61:-;-1:-1:-1;;;5329:12:61;5471:22;;;5513:4;5506:25;;;5329:12;;;5600:4;5329:12;5588:4;5329:12;5573:7;5566:5;5555:50;5544:61;;5759:4;5753:11;5746:19;5739:27;5673:4;5655:16;5652:26;5631:198;5618:211;;5457:382;5217:628;;;;;:::o;14:131:101:-;-1:-1:-1;;;;;;88:32:101;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:289::-;634:3;672:5;666:12;699:6;694:3;687:19;755:6;748:4;741:5;737:16;730:4;725:3;721:14;715:47;807:1;800:4;791:6;786:3;782:16;778:27;771:38;870:4;863:2;859:7;854:2;846:6;842:15;838:29;833:3;829:39;825:50;818:57;;;592:289;;;;:::o;886:220::-;1035:2;1024:9;1017:21;998:4;1055:45;1096:2;1085:9;1081:18;1073:6;1055:45;:::i;1111:127::-;1172:10;1167:3;1163:20;1160:1;1153:31;1203:4;1200:1;1193:15;1227:4;1224:1;1217:15;1243:250;1310:2;1304:9;1352:6;1340:19;;-1:-1:-1;;;;;1374:34:101;;1410:22;;;1371:62;1368:88;;;1436:18;;:::i;:::-;1472:2;1465:22;1243:250;:::o;1498:889::-;1541:5;1594:3;1587:4;1579:6;1575:17;1571:27;1561:55;;1612:1;1609;1602:12;1561:55;1652:6;1639:20;1691:4;1683:6;1679:17;1720:1;1742;-1:-1:-1;;;;;1758:6:101;1755:30;1752:56;;;1788:18;;:::i;:::-;-1:-1:-1;1943:2:101;1937:9;-1:-1:-1;;1856:2:101;1835:15;;1831:29;;2001:2;1989:15;1985:29;1973:42;;2066:22;;;-1:-1:-1;;;;;2030:34:101;;2027:62;2024:88;;;2092:18;;:::i;:::-;2128:2;2121:22;2178;;;2163:6;-1:-1:-1;2163:6:101;2215:16;;;2212:25;-1:-1:-1;2209:45:101;;;2250:1;2247;2240:12;2209:45;2300:6;2295:3;2288:4;2280:6;2276:17;2263:44;2355:1;2348:4;2339:6;2331;2327:19;2323:30;2316:41;2375:6;2366:15;;;;;;1498:889;;;;:::o;2392:131::-;-1:-1:-1;;;;;2467:31:101;;2457:42;;2447:70;;2513:1;2510;2503:12;2528:673;2625:6;2633;2641;2694:2;2682:9;2673:7;2669:23;2665:32;2662:52;;;2710:1;2707;2700:12;2662:52;2750:9;2737:23;-1:-1:-1;;;;;2775:6:101;2772:30;2769:50;;;2815:1;2812;2805:12;2769:50;2838;2880:7;2871:6;2860:9;2856:22;2838:50;:::i;:::-;2828:60;;;2941:2;2930:9;2926:18;2913:32;-1:-1:-1;;;;;2960:8:101;2957:32;2954:52;;;3002:1;2999;2992:12;2954:52;3025;3069:7;3058:8;3047:9;3043:24;3025:52;:::i;:::-;3015:62;;;3127:2;3116:9;3112:18;3099:32;3140:31;3165:5;3140:31;:::i;:::-;3190:5;3180:15;;;2528:673;;;;;:::o;3206:226::-;3265:6;3318:2;3306:9;3297:7;3293:23;3289:32;3286:52;;;3334:1;3331;3324:12;3286:52;-1:-1:-1;3379:23:101;;3206:226;-1:-1:-1;3206:226:101:o;3645:367::-;3713:6;3721;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3829:9;3816:23;3848:31;3873:5;3848:31;:::i;:::-;3898:5;3976:2;3961:18;;;;3948:32;;-1:-1:-1;;;3645:367:101:o;4017:165::-;4084:20;;4144:12;4133:24;;4123:35;;4113:63;;4172:1;4169;4162:12;4187:1481;4244:5;4292:6;4280:9;4275:3;4271:19;4267:32;4264:52;;;4312:1;4309;4302:12;4264:52;4334:17;;:::i;:::-;4396:23;;4428:22;;4523:2;4508:18;;;4495:32;4543:14;;;4536:31;4640:2;4625:18;;;4612:32;4660:14;;;4653:31;4757:2;4742:18;;;4729:32;4777:14;;;4770:31;4874:3;4859:19;;;4846:33;4895:15;;;4888:32;4993:3;4978:19;;;4965:33;5014:15;;;5007:32;5112:3;5097:19;;;5084:33;5133:15;;;5126:32;5231:3;5216:19;;;5203:33;5252:15;;;5245:32;5350:3;5335:19;;;5322:33;5371:15;;;5364:32;5471:3;5456:19;;;5443:33;5492:15;;;5485:33;4325:26;-1:-1:-1;5551:38:101;5584:3;5569:19;;5551:38;:::i;:::-;5545:3;5538:5;5534:15;5527:63;5623:38;5656:3;5645:9;5641:19;5623:38;:::i;:::-;5617:3;5610:5;5606:15;5599:63;4187:1481;;;;:::o;5673:179::-;5740:20;;5800:26;5789:38;;5779:49;;5769:77;;5842:1;5839;5832:12;5857:586;5971:6;5979;5987;5995;6048:3;6036:9;6027:7;6023:23;6019:33;6016:53;;;6065:1;6062;6055:12;6016:53;6088:48;6128:7;6117:9;6088:48;:::i;:::-;6078:58;;6186:3;6175:9;6171:19;6158:33;6200:31;6225:5;6200:31;:::i;:::-;6250:5;-1:-1:-1;6307:3:101;6292:19;;6279:33;6321;6279;6321;:::i;:::-;6373:7;-1:-1:-1;6399:38:101;6432:3;6417:19;;6399:38;:::i;:::-;6389:48;;5857:586;;;;;;;:::o;6630:508::-;6707:6;6715;6723;6776:2;6764:9;6755:7;6751:23;6747:32;6744:52;;;6792:1;6789;6782:12;6744:52;6831:9;6818:23;6850:31;6875:5;6850:31;:::i;:::-;6900:5;-1:-1:-1;6957:2:101;6942:18;;6929:32;6970:33;6929:32;6970:33;:::i;:::-;6630:508;;7022:7;;-1:-1:-1;;;7102:2:101;7087:18;;;;7074:32;;6630:508::o;7143:277::-;7232:6;7285:2;7273:9;7264:7;7260:23;7256:32;7253:52;;;7301:1;7298;7291:12;7253:52;7340:9;7327:23;7359:31;7384:5;7359:31;:::i;7425:127::-;7486:10;7481:3;7477:20;7474:1;7467:31;7517:4;7514:1;7507:15;7541:4;7538:1;7531:15;7557:217;7645:1;7638:5;7635:12;7625:143;;7690:10;7685:3;7681:20;7678:1;7671:31;7725:4;7722:1;7715:15;7753:4;7750:1;7743:15;7779:250;7932:2;7917:18;;7944:45;7982:6;7944:45;:::i;:::-;7998:25;;;7779:250;:::o;8034:456::-;8111:6;8119;8172:2;8160:9;8151:7;8147:23;8143:32;8140:52;;;8188:1;8185;8178:12;8140:52;8227:9;8214:23;8246:31;8271:5;8246:31;:::i;:::-;8296:5;-1:-1:-1;8352:2:101;8337:18;;8324:32;-1:-1:-1;;;;;8368:30:101;;8365:50;;;8411:1;8408;8401:12;8365:50;8434;8476:7;8467:6;8456:9;8452:22;8434:50;:::i;:::-;8424:60;;;8034:456;;;;;:::o;8677:587::-;8748:6;8756;8809:2;8797:9;8788:7;8784:23;8780:32;8777:52;;;8825:1;8822;8815:12;8777:52;8865:9;8852:23;-1:-1:-1;;;;;8890:6:101;8887:30;8884:50;;;8930:1;8927;8920:12;8884:50;8953:22;;9006:4;8998:13;;8994:27;-1:-1:-1;8984:55:101;;9035:1;9032;9025:12;8984:55;9075:2;9062:16;-1:-1:-1;;;;;9093:6:101;9090:30;9087:50;;;9133:1;9130;9123:12;9087:50;9178:7;9173:2;9164:6;9160:2;9156:15;9152:24;9149:37;9146:57;;;9199:1;9196;9189:12;9146:57;9230:2;9222:11;;;;;9252:6;;-1:-1:-1;8677:587:101;-1:-1:-1;;;8677:587:101:o;9269:114::-;9357:1;9350:5;9347:12;9337:40;;9373:1;9370;9363:12;9388:452;9507:6;9515;9568:2;9556:9;9547:7;9543:23;9539:32;9536:52;;;9584:1;9581;9574:12;9536:52;9623:9;9610:23;9642:31;9667:5;9642:31;:::i;:::-;9692:5;-1:-1:-1;9749:2:101;9734:18;;9721:32;9762:46;9721:32;9762:46;:::i;:::-;9827:7;9817:17;;;9388:452;;;;;:::o;9845:159::-;9908:5;9953:3;9944:6;9939:3;9935:16;9931:26;9928:46;;;9970:1;9967;9960:12;10009:578;10154:6;10162;10170;10178;10231:3;10219:9;10210:7;10206:23;10202:33;10199:53;;;10248:1;10245;10238:12;10199:53;10271:57;10320:7;10309:9;10271:57;:::i;:::-;10261:67;;10347:58;10397:7;10391:3;10380:9;10376:19;10347:58;:::i;:::-;10337:68;;10455:3;10444:9;10440:19;10427:33;10469:31;10494:5;10469:31;:::i;:::-;10519:5;-1:-1:-1;10543:38:101;10576:3;10561:19;;10543:38;:::i;11047:603::-;11164:6;11172;11180;11188;11241:3;11229:9;11220:7;11216:23;11212:33;11209:53;;;11258:1;11255;11248:12;11209:53;11281:57;11330:7;11319:9;11281:57;:::i;:::-;11271:67;11407:3;11392:19;;11379:33;;-1:-1:-1;11509:3:101;11494:19;;11481:33;;11613:3;11598:19;11585:33;;-1:-1:-1;11047:603:101;-1:-1:-1;;;11047:603:101:o;12826:118::-;12912:5;12905:13;12898:21;12891:5;12888:32;12878:60;;12934:1;12931;12924:12;12949:382;13014:6;13022;13075:2;13063:9;13054:7;13050:23;13046:32;13043:52;;;13091:1;13088;13081:12;13043:52;13130:9;13117:23;13149:31;13174:5;13149:31;:::i;:::-;13199:5;-1:-1:-1;13256:2:101;13241:18;;13228:32;13269:30;13228:32;13269:30;:::i;13336:621::-;13433:6;13441;13494:2;13482:9;13473:7;13469:23;13465:32;13462:52;;;13510:1;13507;13500:12;13462:52;13550:9;13537:23;-1:-1:-1;;;;;13575:6:101;13572:30;13569:50;;;13615:1;13612;13605:12;13569:50;13638:22;;13691:4;13683:13;;13679:27;-1:-1:-1;13669:55:101;;13720:1;13717;13710:12;13669:55;13760:2;13747:16;-1:-1:-1;;;;;13778:6:101;13775:30;13772:50;;;13818:1;13815;13808:12;13772:50;13871:7;13866:2;13856:6;13853:1;13849:14;13845:2;13841:23;13837:32;13834:45;13831:65;;;13892:1;13889;13882:12;13962:780;14122:4;14170:2;14159:9;14155:18;14200:2;14189:9;14182:21;14223:6;14258;14252:13;14289:6;14281;14274:22;14327:2;14316:9;14312:18;14305:25;;14389:2;14379:6;14376:1;14372:14;14361:9;14357:30;14353:39;14339:53;;14427:2;14419:6;14415:15;14448:1;14458:255;14472:6;14469:1;14466:13;14458:255;;;14565:2;14561:7;14549:9;14541:6;14537:22;14533:36;14528:3;14521:49;14593:40;14626:6;14617;14611:13;14593:40;:::i;:::-;14583:50;-1:-1:-1;14668:2:101;14691:12;;;;14656:15;;;;;14494:1;14487:9;14458:255;;;-1:-1:-1;14730:6:101;;13962:780;-1:-1:-1;;;;;;13962:780:101:o;14747:718::-;14842:6;14850;14858;14866;14919:3;14907:9;14898:7;14894:23;14890:33;14887:53;;;14936:1;14933;14926:12;14887:53;14975:9;14962:23;14994:31;15019:5;14994:31;:::i;:::-;15044:5;-1:-1:-1;15101:2:101;15086:18;;15073:32;15114:33;15073:32;15114:33;:::i;:::-;15166:7;-1:-1:-1;15246:2:101;15231:18;;15218:32;;-1:-1:-1;15327:2:101;15312:18;;15299:32;-1:-1:-1;;;;;15343:30:101;;15340:50;;;15386:1;15383;15376:12;15340:50;15409;15451:7;15442:6;15431:9;15427:22;15409:50;:::i;:::-;15399:60;;;14747:718;;;;;;;:::o;15470:361::-;15569:6;15577;15630:3;15618:9;15609:7;15605:23;15601:33;15598:53;;;15647:1;15644;15637:12;15598:53;15670:57;15719:7;15708:9;15670:57;:::i;:::-;15660:67;15796:3;15781:19;;;;15768:33;;-1:-1:-1;;;15470:361:101:o;15836:1054::-;15964:6;15972;15980;15988;15996;16004;16012;16065:3;16053:9;16044:7;16040:23;16036:33;16033:53;;;16082:1;16079;16072:12;16033:53;16121:9;16108:23;16140:31;16165:5;16140:31;:::i;:::-;16190:5;-1:-1:-1;16268:2:101;16253:18;;16240:32;;-1:-1:-1;16350:2:101;16335:18;;16322:32;16363:33;16322:32;16363:33;:::i;:::-;16415:7;-1:-1:-1;16495:2:101;16480:18;;16467:32;;-1:-1:-1;16577:3:101;16562:19;;16549:33;16626:4;16613:18;;16601:31;;16591:59;;16646:1;16643;16636:12;16591:59;15836:1054;;;;-1:-1:-1;15836:1054:101;;;;16669:7;16749:3;16734:19;;16721:33;;-1:-1:-1;16853:3:101;16838:19;;;16825:33;;15836:1054;-1:-1:-1;;15836:1054:101:o;16895:667::-;16998:6;17006;17014;17022;17075:3;17063:9;17054:7;17050:23;17046:33;17043:53;;;17092:1;17089;17082:12;17043:53;17131:9;17118:23;17150:31;17175:5;17150:31;:::i;:::-;17200:5;-1:-1:-1;17278:2:101;17263:18;;17250:32;;-1:-1:-1;17360:2:101;17345:18;;17332:32;17373:33;17332:32;17373:33;:::i;:::-;17425:7;-1:-1:-1;17484:2:101;17469:18;;17456:32;17497:33;17456:32;17497:33;:::i;:::-;16895:667;;;;-1:-1:-1;16895:667:101;;-1:-1:-1;;16895:667:101:o;17798:388::-;17866:6;17874;17927:2;17915:9;17906:7;17902:23;17898:32;17895:52;;;17943:1;17940;17933:12;17895:52;17982:9;17969:23;18001:31;18026:5;18001:31;:::i;:::-;18051:5;-1:-1:-1;18108:2:101;18093:18;;18080:32;18121:33;18080:32;18121:33;:::i;18191:525::-;18285:6;18293;18301;18354:2;18342:9;18333:7;18329:23;18325:32;18322:52;;;18370:1;18367;18360:12;18322:52;18409:9;18396:23;18428:31;18453:5;18428:31;:::i;:::-;18478:5;-1:-1:-1;18556:2:101;18541:18;;18528:32;;-1:-1:-1;18638:2:101;18623:18;;18610:32;18651:33;18610:32;18651:33;:::i;18721:246::-;18811:6;18864:3;18852:9;18843:7;18839:23;18835:33;18832:53;;;18881:1;18878;18871:12;18832:53;18904:57;18953:7;18942:9;18904:57;:::i;18972:380::-;19051:1;19047:12;;;;19094;;;19115:61;;19169:4;19161:6;19157:17;19147:27;;19115:61;19222:2;19214:6;19211:14;19191:18;19188:38;19185:161;;19268:10;19263:3;19259:20;19256:1;19249:31;19303:4;19300:1;19293:15;19331:4;19328:1;19321:15;19571:277;19667:6;19720:2;19708:9;19699:7;19695:23;19691:32;19688:52;;;19736:1;19733;19726:12;19688:52;19768:9;19762:16;19787:31;19812:5;19787:31;:::i;19954:835::-;20036:5;20030:12;20025:3;20018:25;20092:4;20085:5;20081:16;20075:23;20068:4;20063:3;20059:14;20052:47;20148:4;20141:5;20137:16;20131:23;20124:4;20119:3;20115:14;20108:47;20204:4;20197:5;20193:16;20187:23;20180:4;20175:3;20171:14;20164:47;20260:4;20253:5;20249:16;20243:23;20236:4;20231:3;20227:14;20220:47;20316:4;20309:5;20305:16;20299:23;20292:4;20287:3;20283:14;20276:47;20372:4;20365:5;20361:16;20355:23;20348:4;20343:3;20339:14;20332:47;20428:4;20421:5;20417:16;20411:23;20404:4;20399:3;20395:14;20388:47;20486:6;20479:5;20475:18;20469:25;20460:6;20455:3;20451:16;20444:51;20546:6;20539:5;20535:18;20529:25;20520:6;20515:3;20511:16;20504:51;20601:6;20594:5;20590:18;20584:25;20618:49;20659:6;20654:3;20650:16;20636:12;19929;19918:24;19906:37;;19853:96;20618:49;;20715:6;20708:5;20704:18;20698:25;20732:51;20775:6;20770:3;20766:16;20750:14;19929:12;19918:24;19906:37;;19853:96;20794:258;20986:3;20971:19;;20999:47;20975:9;21028:6;20999:47;:::i;21057:419::-;21170:6;21178;21231:2;21219:9;21210:7;21206:23;21202:32;21199:52;;;21247:1;21244;21237:12;21199:52;21279:9;21273:16;21298:31;21323:5;21298:31;:::i;:::-;21398:2;21383:18;;21377:25;21348:5;;-1:-1:-1;21411:33:101;21377:25;21411:33;:::i;22239:267::-;22328:6;22323:3;22316:19;22380:6;22373:5;22366:4;22361:3;22357:14;22344:43;-1:-1:-1;22432:1:101;22407:16;;;22425:4;22403:27;;;22396:38;;;;22488:2;22467:15;;;-1:-1:-1;;22463:29:101;22454:39;;;22450:50;;22239:267::o;22511:1063::-;22715:2;22704:9;22697:21;22678:4;22738:1;22771:6;22765:13;22801:36;22827:9;22801:36;:::i;:::-;22873:6;22868:2;22857:9;22853:18;22846:34;22911:1;22900:9;22896:17;22927:1;22922:158;;;;23094:1;23089:357;;;;22889:557;;22922:158;22989:3;22985:8;22974:9;22970:24;22965:2;22954:9;22950:18;22943:52;23067:2;23055:6;23048:14;23041:22;23038:1;23034:30;23023:9;23019:46;23015:55;23008:62;;22922:158;;23089:357;23120:6;23117:1;23110:17;23168:4;23165:1;23155:18;23195:1;23209:181;23223:6;23220:1;23217:13;23209:181;;;23318:14;;23294:17;;;23313:2;23290:26;23283:50;23374:1;23361:15;;;;23245:4;23238:12;23209:181;;;23414:17;;23433:2;23410:26;;-1:-1:-1;;22889:557:101;;;;23493:9;23488:3;23484:19;23477:4;23466:9;23462:20;23455:49;23521:47;23564:3;23556:6;23548;23521:47;:::i;:::-;23513:55;22511:1063;-1:-1:-1;;;;;;22511:1063:101:o;23579:518::-;23681:2;23676:3;23673:11;23670:421;;;23717:5;23714:1;23707:16;23761:4;23758:1;23748:18;23831:2;23819:10;23815:19;23812:1;23808:27;23802:4;23798:38;23867:4;23855:10;23852:20;23849:47;;;-1:-1:-1;23890:4:101;23849:47;23945:2;23940:3;23936:12;23933:1;23929:20;23923:4;23919:31;23909:41;;24000:81;24018:2;24011:5;24008:13;24000:81;;;24077:1;24063:16;;24044:1;24033:13;24000:81;;24273:1198;-1:-1:-1;;;;;24392:3:101;24389:27;24386:53;;;24419:18;;:::i;:::-;24448:94;24538:3;24498:38;24530:4;24524:11;24498:38;:::i;:::-;24492:4;24448:94;:::i;:::-;24568:1;24593:2;24588:3;24585:11;24610:1;24605:608;;;;25257:1;25274:3;25271:93;;;-1:-1:-1;25330:19:101;;;25317:33;25271:93;-1:-1:-1;;24230:1:101;24226:11;;;24222:24;24218:29;24208:40;24254:1;24250:11;;;24205:57;25377:78;;24578:887;;24605:608;22186:1;22179:14;;;22223:4;22210:18;;-1:-1:-1;;24641:17:101;;;24756:229;24770:7;24767:1;24764:14;24756:229;;;24859:19;;;24846:33;24831:49;;24966:4;24951:20;;;;24919:1;24907:14;;;;24786:12;24756:229;;;24760:3;25013;25004:7;25001:16;24998:159;;;25137:1;25133:6;25127:3;25121;25118:1;25114:11;25110:21;25106:34;25102:39;25089:9;25084:3;25080:19;25067:33;25063:79;25055:6;25048:95;24998:159;;;25200:1;25194:3;25191:1;25187:11;25183:19;25177:4;25170:33;24578:887;;24273:1198;;;:::o;25476:392::-;25674:2;25659:18;;25686:45;25724:6;25686:45;:::i;:::-;25758:6;25747:9;25740:25;25774:45;25812:6;25774:45;:::i;:::-;25855:6;25850:2;25839:9;25835:18;25828:34;25476:392;;;;;:::o;25873:235::-;25961:6;26014:3;26002:9;25993:7;25989:23;25985:33;25982:53;;;26031:1;26028;26021:12;25982:53;26054:48;26094:7;26083:9;26054:48;:::i;26113:184::-;26171:6;26224:2;26212:9;26203:7;26199:23;26195:32;26192:52;;;26240:1;26237;26230:12;26192:52;26263:28;26281:9;26263:28;:::i;26302:1461::-;26411:19;;26439:20;;26528:4;26517:16;;;26504:30;26550:14;;;26543:31;26643:4;26632:16;;;26619:30;26665:14;;;26658:31;26758:4;26747:16;;;26734:30;26780:14;;;26773:31;26873:4;26862:16;;;26849:30;26895:14;;;26888:31;26988:4;26977:16;;;26964:30;27010:14;;;27003:31;27103:4;27092:16;;;27079:30;27125:14;;;27118:31;27218:4;27207:16;;;27194:30;27240:14;;;27233:31;27333:6;27322:18;;;27309:32;27357:16;;;27350:33;27454:6;27443:18;;;27430:32;27478:16;;;27471:34;27534:37;27563:6;27552:18;;27534:37;:::i;:::-;19929:12;19918:24;27621:6;27612:16;;19906:37;27660;27689:6;27678:18;;27660:37;:::i;:::-;19929:12;19918:24;;27749:6;27740:16;;19906:37;5834:132:9;;;:::o;27768:421:101:-;28048:3;28033:19;;28061:56;28037:9;28099:6;28061:56;:::i;:::-;28126:57;28178:3;28167:9;28163:19;28155:6;28126:57;:::i;28194:127::-;28255:10;28250:3;28246:20;28243:1;28236:31;28286:4;28283:1;28276:15;28310:4;28307:1;28300:15;28326:128;28393:9;;;28414:11;;;28411:37;;;28428:18;;:::i;28736:202::-;-1:-1:-1;;;;;;28898:33:101;;;;28880:52;;28868:2;28853:18;;28736:202::o;28943:245::-;29010:6;29063:2;29051:9;29042:7;29038:23;29034:32;29031:52;;;29079:1;29076;29069:12;29031:52;29111:9;29105:16;29130:28;29152:5;29130:28;:::i;29193:375::-;-1:-1:-1;;;;;29432:32:101;;29414:51;;29402:2;29387:18;;29474:45;29512:6;29474:45;:::i;29846:485::-;30124:3;30109:19;;30137:56;30113:9;30175:6;30137:56;:::i;:::-;30230:6;30224:3;30213:9;30209:19;30202:35;30274:6;30268:3;30257:9;30253:19;30246:35;30318:6;30312:3;30301:9;30297:19;30290:35;29846:485;;;;;;;:::o;30336:583::-;30642:3;30627:19;;30655:56;30631:9;30693:6;30655:56;:::i;:::-;30742:3;30727:19;;30720:35;;;;30786:3;30771:19;;30764:35;;;;30830:3;30815:19;;30808:35;;;;-1:-1:-1;;;;;30880:32:101;30874:3;30859:19;;;30852:61;30336:583;;-1:-1:-1;30336:583:101:o;31248:184::-;31318:6;31371:2;31359:9;31350:7;31346:23;31342:32;31339:52;;;31387:1;31384;31377:12;31339:52;-1:-1:-1;31410:16:101;;31248:184;-1:-1:-1;31248:184:101:o;31437:319::-;31616:2;31601:18;;31628:45;31666:6;31628:45;:::i;:::-;31682:25;;;31738:2;31723:18;31716:34;31437:319;:::o;31761:360::-;31940:2;31925:18;;31952:45;31990:6;31952:45;:::i;:::-;32006:25;;;-1:-1:-1;;;;;32067:47:101;;;;32062:2;32047:18;;;32040:75;31761:360;:::o;32797:127::-;32858:10;32853:3;32849:20;32846:1;32839:31;32889:4;32886:1;32879:15;32913:4;32910:1;32903:15;32929:521;33006:4;33012:6;33072:11;33059:25;33166:2;33162:7;33151:8;33135:14;33131:29;33127:43;33107:18;33103:68;33093:96;;33185:1;33182;33175:12;33093:96;33212:33;;33264:20;;;-1:-1:-1;;;;;;33296:30:101;;33293:50;;;33339:1;33336;33329:12;33293:50;33372:4;33360:17;;-1:-1:-1;33403:14:101;33399:27;;;33389:38;;33386:58;;;33440:1;33437;33430:12;33386:58;32929:521;;;;;:::o;33455:211::-;33496:3;33534:5;33528:12;33578:6;33571:4;33564:5;33560:16;33555:3;33549:36;33640:1;33604:16;;33629:13;;;-1:-1:-1;33604:16:101;;33455:211;-1:-1:-1;33455:211:101:o;33671:343::-;33900:6;33892;33887:3;33874:33;33856:3;33935:6;33930:3;33926:16;33962:1;33958:2;33951:13;33980:28;34005:2;33997:6;33980:28;:::i;34019:265::-;34198:3;34223:55;34248:29;34273:3;34265:6;34248:29;:::i;:::-;34240:6;34223:55;:::i;36054:125::-;36119:9;;;36140:10;;;36137:36;;;36153:18;;:::i;36184:240::-;-1:-1:-1;;;;;36253:42:101;;;36297;;;36249:91;;36352:43;;36349:69;;;36398:18;;:::i;36429:243::-;-1:-1:-1;;;;;36544:42:101;;;36500;;;36496:91;;36599:44;;36596:70;;;36646:18;;:::i;37593:249::-;37662:6;37715:2;37703:9;37694:7;37690:23;37686:32;37683:52;;;37731:1;37728;37721:12;37683:52;37763:9;37757:16;37782:30;37806:5;37782:30;:::i;38711:485::-;-1:-1:-1;;;;;38942:32:101;;;38924:51;;39011:32;;39006:2;38991:18;;38984:60;39075:2;39060:18;;39053:34;;;39123:3;39118:2;39103:18;;39096:31;;;-1:-1:-1;;39144:46:101;;39170:19;;39162:6;39144:46;:::i;39201:427::-;-1:-1:-1;;;;;39480:32:101;;39462:51;;39449:3;39434:19;;39522:56;39574:2;39559:18;;39551:6;39522:56;:::i;:::-;39615:6;39609:3;39598:9;39594:19;39587:35;39201:427;;;;;;:::o;40446:1299::-;40572:3;40566:10;-1:-1:-1;;;;;40591:6:101;40588:30;40585:56;;;40621:18;;:::i;:::-;40650:97;40740:6;40700:38;40732:4;40726:11;40700:38;:::i;:::-;40694:4;40650:97;:::i;:::-;40796:4;40827:2;40816:14;;40844:1;40839:649;;;;41532:1;41549:6;41546:89;;;-1:-1:-1;41601:19:101;;;41595:26;41546:89;-1:-1:-1;;24230:1:101;24226:11;;;24222:24;24218:29;24208:40;24254:1;24250:11;;;24205:57;41648:81;;40809:930;;40839:649;22186:1;22179:14;;;22223:4;22210:18;;-1:-1:-1;;40875:20:101;;;40993:222;41007:7;41004:1;41001:14;40993:222;;;41089:19;;;41083:26;41068:42;;41196:4;41181:20;;;;41149:1;41137:14;;;;41023:12;40993:222;;;40997:3;41243:6;41234:7;41231:19;41228:201;;;41304:19;;;41298:26;-1:-1:-1;;41387:1:101;41383:14;;;41399:3;41379:24;41375:37;41371:42;41356:58;41341:74;;41228:201;-1:-1:-1;;;;41475:1:101;41459:14;;;41455:22;41442:36;;-1:-1:-1;40446:1299:101:o"},"methodIdentifiers":{"UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","addComponent(address,uint8)":"6b8734e7","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","cancelPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)":"6f520b73","changeComponentStatus(address,uint8)":"5fcbf445","currency()":"e5a6b10f","deposit(address,uint256,address)":"f45346dc","depositWithPermit(address,uint256,address,uint256,uint8,bytes32,bytes32)":"de27010a","expirePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))":"f720bbbf","getApproved(uint256)":"081812fc","getComponentStatus(address)":"33d6157a","getExposure(address)":"9e2d8922","getPolicyHash(uint256)":"792da09e","initialize(string,string,address)":"077f224a","isActive(uint256)":"82afd23b","isApprovedForAll(address,address)":"e985e9c5","multicall(bytes[])":"ac9650d8","name()":"06fdde03","newPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,address,uint96)":"0d100acb","ownerOf(uint256)":"6352211e","pause()":"8456cb59","paused()":"5c975abb","proxiableUUID()":"52d1902d","removeComponent(address)":"6f86c897","replacePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,uint96)":"663d8337","resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)":"bd644c56","safeTransferFrom(address,address,uint256)":"42842e0e","safeTransferFrom(address,address,uint256,bytes)":"b88d4fde","setApprovalForAll(address,bool)":"a22cb465","setBaseURI(string)":"55f804b3","setExposureLimit(address,uint256)":"9760905e","setTreasury(address)":"f0f44260","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","tokenURI(uint256)":"c87b56dd","transferFrom(address,address,uint256)":"23b872dd","treasury()":"61d027b3","unpause()":"3f4ba83a","upgradeToAndCall(address,bytes)":"4f1ef286","withdraw(address,uint256,address,address)":"dfcd412e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"currency_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ComponentAlreadyInThePool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"enum PolicyPool.ComponentKind\",\"name\":\"kind\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"ComponentInUseCannotRemove\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ComponentMustBeActiveOrDeprecated\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ComponentNotDeprecated\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ComponentNotFound\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ComponentNotFoundOrNotActive\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ComponentNotLinkedToThisPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"contract IPolicyPoolComponent\",\"name\":\"component\",\"type\":\"address\"},{\"internalType\":\"enum PolicyPool.ComponentKind\",\"name\":\"expectedKind\",\"type\":\"uint8\"}],\"name\":\"ComponentNotTheRightKind\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"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\"},{\"inputs\":[],\"name\":\"EnforcedPause\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ExpectedPause\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint128\",\"name\":\"activeExposure\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"exposureLimit\",\"type\":\"uint128\"}],\"name\":\"ExposureLimitExceeded\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidComponentStatus\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"response\",\"type\":\"bytes4\"}],\"name\":\"InvalidNotificationResponse\",\"type\":\"error\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policyToCancel\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"name\":\"InvalidPolicyCancellation\",\"type\":\"error\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"oldPolicy\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"newPolicy\",\"type\":\"tuple\"}],\"name\":\"InvalidPolicyReplacement\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoEmptyName\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoEmptySymbol\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroCurrency\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroTreasury\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OnlyRiskModuleAllowed\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"policyPayout\",\"type\":\"uint256\"}],\"name\":\"PayoutExceedsLimit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"PolicyAlreadyExists\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"PolicyAlreadyExpired\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"internalType\":\"uint256\",\"name\":\"now\",\"type\":\"uint256\"}],\"name\":\"PolicyNotExpired\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"PolicyNotFound\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UpgradeCannotChangeCurrency\",\"type\":\"error\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"ZeroHash\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"oldBaseURI\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"newBaseURI\",\"type\":\"string\"}],\"name\":\"BaseURIChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IPolicyPoolComponent\",\"name\":\"component\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"enum PolicyPool.ComponentKind\",\"name\":\"kind\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"enum PolicyPool.ComponentStatus\",\"name\":\"newStatus\",\"type\":\"uint8\"}],\"name\":\"ComponentStatusChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"contract IPolicyHolder\",\"name\":\"holder\",\"type\":\"address\"}],\"name\":\"ExpirationNotificationFailed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"oldLimit\",\"type\":\"uint128\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"newLimit\",\"type\":\"uint128\"}],\"name\":\"ExposureLimitChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"indexed\":false,\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"NewPolicy\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"cancelledPolicyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"name\":\"PolicyCancelled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"oldPolicyId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"newPolicyId\",\"type\":\"uint256\"}],\"name\":\"PolicyReplaced\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"PolicyResolved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"oldTreasury\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newTreasury\",\"type\":\"address\"}],\"name\":\"TreasuryChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IPolicyPoolComponent\",\"name\":\"component\",\"type\":\"address\"},{\"internalType\":\"enum PolicyPool.ComponentKind\",\"name\":\"kind\",\"type\":\"uint8\"}],\"name\":\"addComponent\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policyToCancel\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"name\":\"cancelPolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IPolicyPoolComponent\",\"name\":\"component\",\"type\":\"address\"},{\"internalType\":\"enum PolicyPool.ComponentStatus\",\"name\":\"newStatus\",\"type\":\"uint8\"}],\"name\":\"changeComponentStatus\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"depositWithPermit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"expirePolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IPolicyPoolComponent\",\"name\":\"component\",\"type\":\"address\"}],\"name\":\"getComponentStatus\",\"outputs\":[{\"internalType\":\"enum PolicyPool.ComponentStatus\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IRiskModule\",\"name\":\"rm\",\"type\":\"address\"}],\"name\":\"getExposure\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"active\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"limit\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"getPolicyHash\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"address\",\"name\":\"treasury_\",\"type\":\"address\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"isActive\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"multicall\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"results\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"address\",\"name\":\"payer\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"policyHolder\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"}],\"name\":\"newPolicy\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IPolicyPoolComponent\",\"name\":\"component\",\"type\":\"address\"}],\"name\":\"removeComponent\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"oldPolicy\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"newPolicy_\",\"type\":\"tuple\"},{\"internalType\":\"address\",\"name\":\"payer\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"}],\"name\":\"replacePolicy\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"resolvePolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"nftBaseURI_\",\"type\":\"string\"}],\"name\":\"setBaseURI\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IRiskModule\",\"name\":\"rm\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"newLimit\",\"type\":\"uint256\"}],\"name\":\"setExposureLimit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"treasury_\",\"type\":\"address\"}],\"name\":\"setTreasury\",\"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\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"treasury\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"unpause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amountWithdrawn\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"There's a single instance of PolicyPool contract for a given deployment of the protocol. It stores the registry of components (eTokens, PremiumsAccounts, and RiskModules). It also tracks the active exposure and exposure limit per risk module. This is also the contract that receives and sends the underlying asset (currency, typically USDC). The currency spending approvals should be done to this protocol for deposits or premium payments. This contract implements the ERC721 standard, because it mints and NFT for each policy created. The property of the NFT represents the one that will receive the payout. The active policies are tracked in _policies as hashes, but for gas optimization we just store the hash of the policy struct, and the struct needs to be stored off-chain and provided on every subsequent call.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ComponentInUseCannotRemove(uint8,uint256)\":[{\"details\":\"The \\\"in use\\\" definition can change from one component to the other. For eToken in use means `totalSupply() != 0`. For PremiumsAccount means `purePremiums() != 0`. For RiskModule means `activeExposure() != 0`.\"}],\"ComponentNotTheRightKind(address,uint8)\":[{\"details\":\"It might happen if a component declared as ComponentKind.eToken doesn't support the IEToken interface (or similar) or when in a given operation we expect a component to be a risk module and the stored kind is different.\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"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-721. 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.\"}}],\"EnforcedPause()\":[{\"details\":\"The operation failed because the contract is paused.\"}],\"ExpectedPause()\":[{\"details\":\"The operation failed because the contract is not paused.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"InvalidPolicyCancellation((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)\":[{\"details\":\"The refunds amounts can never exceed the original premium components.\",\"params\":{\"jrCocRefund\":\"The amount to refund from jrCoc charged\",\"policyToCancel\":\"The data of the policy being cancelled\",\"purePremiumRefund\":\"The amount to refund from pure premium charged\",\"srCocRefund\":\"The amount to refund from srCoc charged\"}}],\"InvalidPolicyReplacement((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":[{\"details\":\"This could occur if the policies have a different start, or if any of the premium components of the      newPolicy are lower than the same component of the original policy.\",\"params\":{\"newPolicy\":\"The proposed replacement policy data\",\"oldPolicy\":\"The original policy data\"}}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"PolicyNotExpired(uint256,uint40,uint256)\":[{\"params\":{\"expiration\":\"The timestamp when the policy expires\",\"now\":\"The current block timestamp\",\"policyId\":\"The ID of the policy that is not yet expired\"}}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when `owner` enables `approved` to manage the `tokenId` token.\"},\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\"},\"BaseURIChanged(string,string)\":{\"params\":{\"newBaseURI\":\"The baseURI after the change\",\"oldBaseURI\":\"The baseURI before the change\"}},\"ComponentStatusChanged(address,uint8,uint8)\":{\"params\":{\"component\":\"The address of the component, it can be an {EToken}, {RiskModule} or {PremiumsAccount}\",\"kind\":\"Value indicating the kind of component. See {ComponentKind}\",\"newStatus\":\"The status of the component after the operation. See {ComponentStatus}\"}},\"Deposit(address,address,address,uint256)\":{\"params\":{\"amount\":\"Amount in `currency()` paid for the eTokens (equal to the amount of eTokens received)\",\"eToken\":\"The eToken receiving the funds\",\"owner\":\"The user that will receive the minted eTokens\",\"sender\":\"The sender of the funds (the user calling `deposit` or `depositWithPermit`)\"}},\"ExpirationNotificationFailed(uint256,address)\":{\"params\":{\"holder\":\"The address of the contract that owns the policy\",\"policyId\":\"The id of the policy being expired\"}},\"ExposureLimitChanged(address,uint128,uint128)\":{\"params\":{\"newLimit\":\"Exposure limit after the change\",\"oldLimit\":\"Exposure limit before the change\",\"riskModule\":\"The risk module whose limit will be changed\"}},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"NewPolicy(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"details\":\"Contains all the data about the policy that is later required for doing operations with the policy like      resolution or expiration.\",\"params\":{\"policy\":\"The {Policy-PolicyData} struct with all the immutable fields of the policy.\",\"riskModule\":\"The risk module that created the policy\"}},\"Paused(address)\":{\"details\":\"Emitted when the pause is triggered by `account`.\"},\"PolicyCancelled(address,uint256,uint256,uint256,uint256)\":{\"details\":\"After this, the policy is no longer active. The refund amounts are transferred to the policy holder.\",\"params\":{\"cancelledPolicyId\":\"The id of the cancelled policy.\",\"jrCocRefund\":\"The amount of Jr CoC refunded\",\"purePremiumRefund\":\"The amount of pure premium refunded\",\"riskModule\":\"The risk module that created the policy\",\"srCocRefund\":\"The amount of Sr CoC refunded\"}},\"PolicyReplaced(address,uint256,uint256)\":{\"details\":\"The event contains only the id of the replacement policy, the full data is available in the NewPolicy event.\",\"params\":{\"newPolicyId\":\"The id of the new policy.\",\"oldPolicyId\":\"The id of the replaced policy.\",\"riskModule\":\"The risk module that created the policy\"}},\"PolicyResolved(address,uint256,uint256)\":{\"details\":\"If the policy expired, the `payout` is 0, otherwise is the amount transferred to the policyholder.\",\"params\":{\"payout\":\"The payout that has been paid to the policy holder. 0 when the policy expired.\",\"policyId\":\"The unique id of the policy\",\"riskModule\":\"The risk module where that created the policy initially.\"}},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"},\"TreasuryChanged(address,address)\":{\"params\":{\"newTreasury\":\"The address of the treasury after the change\",\"oldTreasury\":\"The address of the treasury before the change\"}},\"Unpaused(address)\":{\"details\":\"Emitted when the pause is lifted by `account`.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"},\"Withdraw(address,address,address,address,uint256)\":{\"params\":{\"amount\":\"Amount in `currency()` that will be received by `receiver`.\",\"eToken\":\"The eToken where the withdrawal will be done\",\"owner\":\"The owner of the burned eTokens\",\"receiver\":\"The user that receives the resulting funds (`currency()`)\",\"sender\":\"The user calling the withdraw method. Must be the owner or have spending approval from it.\"}}},\"kind\":\"dev\",\"methods\":{\"addComponent(address,uint8)\":{\"custom:emits\":\"ComponentStatusChanged with status active.\",\"custom:throws\":\"ComponentNotTheRightKind When there's a mismatch between the specified kind and supported interface\",\"details\":\"The component status will be `active`.\",\"params\":{\"component\":\"The address of component contract. Must be an {EToken}, {RiskModule} or {PremiumsAccount} linked to this specific {PolicyPool} and matching the `kind` specified in the next paramter.\",\"kind\":\"The type of component to be added.\"}},\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"cancelPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)\":{\"details\":\"After this call the policy is not claimable and funds are unlocked\",\"params\":{\"jrCocRefund\":\"The amount to refund from jrCoc (<= policyToCancel.jrCoc)\",\"policyToCancel\":\"A policy created previously and not expired, that will be cancelled\",\"purePremiumRefund\":\"The amount to refund from pure premiums (<= policyToCancel.purePremium)\",\"srCocRefund\":\"The amount to refund from srCoc (<= policyToCancel.jrCoc)\"}},\"changeComponentStatus(address,uint8)\":{\"custom:emits\":\"ComponentStatusChanged with the new status.\",\"custom:throws\":\"InvalidComponentStatus() when newStatus is inactive (use removeComponent() instead)\",\"params\":{\"component\":\"The address of component contract. Must be a component added before.\",\"newStatus\":\"The new status, must be either `active`, `deprecated` or `suspended`.\"}},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"deposit(address,uint256,address)\":{\"details\":\"Forwards the call to {EToken-deposit}, after transferring the funds.      The user will receive etokens for the same amount deposited.\",\"params\":{\"amount\":\"The amount to deposit\",\"eToken\":\"The address of the eToken to which the user wants to provide liquidity\",\"receiver\":\"The user that will receive the minted tokens\"}},\"depositWithPermit(address,uint256,address,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Forwards the call to {EToken-deposit}, after transferring the funds.      The user will receive etokens for the same amount deposited. EIP-2612 compatible version, allows sending a      signed permit in the same operation.\",\"params\":{\"amount\":\"The amount to deposit\",\"deadline\":\"The deadline of the permit\",\"eToken\":\"The address of the eToken to which the user wants to provide liquidity\",\"r\":\"Component of the secp256k1 signature\",\"receiver\":\"The user that will receive the minted tokens\",\"s\":\"Component of the secp256k1 signature\",\"v\":\"Component of the secp256k1 signature\"}},\"expirePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"details\":\"Resolves a policy with a payout 0, unlocking the solvency. Can be called by anyone, but only after      `Policy.expiration`.\",\"params\":{\"policy\":\"A policy previously created with `newPolicy`\"}},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"getComponentStatus(address)\":{\"params\":{\"component\":\"The address of the component\"},\"returns\":{\"_0\":\"The status of the component. See {ComponentStatus}\"}},\"getExposure(address)\":{\"details\":\"Returns both the active exposure (current cumulative losses) and the configured exposure limit for the given risk module.\",\"params\":{\"rm\":\"The risk module interface to query exposure data for\"},\"returns\":{\"active\":\" The current active exposure (cumulative losses) for the risk module\",\"limit\":\"  The configured maximum exposure limit for the risk module\"}},\"getPolicyHash(uint256)\":{\"details\":\"Returns `bytes32(0)` if the policy isn't active.\",\"params\":{\"policyId\":\"The id of the policy queried\"},\"returns\":{\"_0\":\"Returns the hash of a given policy id\"}},\"initialize(string,string,address)\":{\"details\":\"Initializes a Policy Pool\",\"params\":{\"name_\":\"The name of the ERC721 token.\",\"symbol_\":\"The symbol of the ERC721 token.\",\"treasury_\":\"The address of the treasury that will receive the protocol fees.\"}},\"isActive(uint256)\":{\"details\":\"A policy is active when it's still in the PolicyPool, not yet resolved or expired.      Be aware that a policy might be active but the `block.timestamp` might be after the expiration date, so it      can't be triggered with a payout.\",\"params\":{\"policyId\":\"The id of the policy queried\"},\"returns\":{\"_0\":\"Whether the policy is active or not\"}},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"multicall(bytes[])\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Receives and executes a batch of function calls on this contract.\"},\"name()\":{\"details\":\"Returns the token collection name.\"},\"newPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,address,uint96)\":{\"details\":\"It charges the premium and distributes it to the different parties (PremiumsAccount, ETokens, treasury)\",\"params\":{\"internalId\":\"A unique id within the RiskModule, that will be used to compute the policy id\",\"payer\":\"The address that will pay for the premium\",\"policy\":\"A policy created with {Policy-initialize}\",\"policyHolder\":\"The address of the policy holder\"},\"returns\":{\"_0\":\"The policy id, identifying the NFT and the policy\"}},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"pause()\":{\"details\":\"When the contract is paused, several operations are rejected: deposits, withdrawals, new policies, policy resolution and expiration, nft transfers.\"},\"paused()\":{\"details\":\"Returns true if the contract is paused, and false otherwise.\"},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"removeComponent(address)\":{\"custom:emits\":\"ComponentStatusChanged with status inactive.\",\"details\":\"The component needs to be in `deprecated` status before doing this operation.\",\"params\":{\"component\":\"The address of component contract. Must be a component added before.\"}},\"replacePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,uint96)\":{\"details\":\"After this call, the oldPolicy is no longer active and a new policy is created. Diferencial changes to      premiums and locked SCR.\",\"params\":{\"internalId\":\"A unique id within the RiskModule, that will be used to compute the policy id\",\"newPolicy_\":\"A policy created with {Policy-initialize}\",\"oldPolicy\":\"A policy created previously and not expired\",\"payer\":\"The address that will pay for the premium difference\"},\"returns\":{\"_0\":\"The policy id, identifying the NFT and the policy\"}},\"resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"details\":\"After this call the policy is no longer active and the funds have been unlocked.\",\"params\":{\"payout\":\"The amount to pay to the policyholder\",\"policy\":\"A policy previously created with `newPolicy`\"}},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC-721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must have been allowed to move this token by either {approve} or   {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the address zero. Emits an {ApprovalForAll} event.\"},\"setBaseURI(string)\":{\"custom:emits\":\"BaseURIChanged With the new and old URIs\"},\"setExposureLimit(address,uint256)\":{\"custom:emits\":\"ExposureLimitChanged with parameters: (risk module, old limit, new limit)\",\"custom:throws\":\"ExposureLimitExceeded if the new limit is less than the current active exposure\",\"details\":\"This function allows updating the exposure limit for a risk module.          The new limit must be greater than or equal to the current active exposure.\",\"params\":{\"newLimit\":\"The new exposure limit to set (will be converted to uint128)\",\"rm\":\"The risk module interface for which to update the exposure limit\"}},\"setTreasury(address)\":{\"custom:emits\":\"TreasuryChanged with the previous and current treasury\"},\"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.\"},\"symbol()\":{\"details\":\"Returns the token collection symbol.\"},\"tokenURI(uint256)\":{\"details\":\"Returns the Uniform Resource Identifier (URI) for `tokenId` token.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721 or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must understand this adds an external call which potentially creates a reentrancy vulnerability. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"},\"unpause()\":{\"details\":\"All the operations disabled when the contract was paused are re-enabled.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"},\"withdraw(address,uint256,address,address)\":{\"details\":\"Forwards the call to {EToken-withdraw}. `amount` of eTokens will be burned and the user will receive the      same amount in `currency()`.\",\"params\":{\"amount\":\"The amount to withdraw. If equal to type(uint256).max, means full withdrawal.               If the balance is not enough or can't be withdrawn (locked as SCR), it withdraws               as much as it can, but doesn't fails.\",\"eToken\":\"The address of the eToken from where the user wants to withdraw liquidity\",\"owner\":\"The user that owns the eTokens (must be msg.sender or have allowance)\",\"receiver\":\"The user that will receive the resulting `currency()`\"},\"returns\":{\"amountWithdrawn\":\"Returns the actual amount withdrawn.\"}}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"},\"_currency\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"},\"_policies\":{\"details\":\"It just saves the hash of the policies, the full {Policy-PolicyData} struct has to be sent for each operation (hash is used to verify).\"}},\"title\":\"Ensuro PolicyPool contract\",\"version\":1},\"userdoc\":{\"errors\":{\"ComponentAlreadyInThePool()\":[{\"notice\":\"Error when trying to add a component that was already added to the PolicyPool\"}],\"ComponentInUseCannotRemove(uint8,uint256)\":[{\"notice\":\"Error when trying to remove a component that is still in use.\"}],\"ComponentMustBeActiveOrDeprecated()\":[{\"notice\":\"Error when a component is not active or deprecated. Happens on some operations like eToken withdrawals or policy resolutions that accept the component might be active or deprecated and isn't on any of those states.\"}],\"ComponentNotDeprecated()\":[{\"notice\":\"Error when a component is not deprecated for the operation (see `removeComponent`), when it must.\"}],\"ComponentNotFound()\":[{\"notice\":\"Error when a component is not found in the pool (status = 0 = inactive)\"}],\"ComponentNotFoundOrNotActive()\":[{\"notice\":\"Error when a component is not found in the pool or is not active (status != active)\"}],\"ComponentNotLinkedToThisPool()\":[{\"notice\":\"Error when trying to add a component that isn't linked to this pool (`.policyPool() != this`)\"}],\"ComponentNotTheRightKind(address,uint8)\":[{\"notice\":\"Raised when a component is not of the right kind\"}],\"ExposureLimitExceeded(uint128,uint128)\":[{\"notice\":\"Thrown when an action would cause the active exposure to exceed the configured limit\"}],\"InvalidComponentStatus()\":[{\"notice\":\"Thrown when attempting to set a component status to `inactive` via changeComponentStatus, use removeComponent() instead.\"}],\"InvalidNotificationResponse(bytes4)\":[{\"notice\":\"Raised when IPolicyHolder doesn't return the expected selector answer when notified of policy payout, replacement or cancellation.\"}],\"InvalidPolicyCancellation((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)\":[{\"notice\":\"Thrown when attempting to cancel a policy with invalid refunds\"}],\"InvalidPolicyReplacement((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":[{\"notice\":\"Thrown when attempting to replace a policy with an invalid replacement\"}],\"InvalidReceiver(address)\":[{\"notice\":\"Thrown when an invalid receiver address (address(0)) is provided as received of deposit or withdraw\"}],\"NoEmptyName()\":[{\"notice\":\"Initialization error when empty name for the ERC721 is sent\"}],\"NoEmptySymbol()\":[{\"notice\":\"Initialization error when empty symbol for the ERC721 is sent\"}],\"NoZeroCurrency()\":[{\"notice\":\"Constructor error when address(0) is sent as `currency()`\"}],\"NoZeroTreasury()\":[{\"notice\":\"Constructor error (or setTreasury) when address(0) is sent as `treasury()`\"}],\"OnlyRiskModuleAllowed()\":[{\"notice\":\"Error when a method intented to be called by riskModule (and by policy's risk module) is called by someone else.\"}],\"PayoutExceedsLimit(uint256,uint256)\":[{\"notice\":\"Thrown when a requested payout exceeds the policy's maximum payout limit\"}],\"PolicyAlreadyExists(uint256)\":[{\"notice\":\"Thrown when attempting to create a policy with an ID that already exists\"}],\"PolicyAlreadyExpired(uint256)\":[{\"notice\":\"Thrown when attempting to process an action (other than expiration) on a policy after its expiration date\"}],\"PolicyNotExpired(uint256,uint40,uint256)\":[{\"notice\":\"Thrown when attempting to expire a policy, but the policy is still active (policy.expiration > block.timestamp)\"}],\"PolicyNotFound(uint256)\":[{\"notice\":\"Thrown when attempting to execute an action on a policy that does not exist (or was already expired)\"}],\"UpgradeCannotChangeCurrency()\":[{\"notice\":\"Thrown when trying to change the currency during an upgrade\"}],\"ZeroHash((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":[{\"notice\":\"Raised when the computed hash is bytes32(0)\"}]},\"events\":{\"BaseURIChanged(string,string)\":{\"notice\":\"Event emitted when the baseURI (for policy NFTs) changes\"},\"ComponentStatusChanged(address,uint8,uint8)\":{\"notice\":\"Event emitted when a new component added/removed to the pool or the status changes.\"},\"Deposit(address,address,address,uint256)\":{\"notice\":\"Event emitted for every deposit into an eToken\"},\"ExpirationNotificationFailed(uint256,address)\":{\"notice\":\"Event emitted when a IPolicyHolder reverts on the expiration notification. The operation doesn't reverts\"},\"ExposureLimitChanged(address,uint128,uint128)\":{\"notice\":\"Event emitted when the exposure limit for a given risk module is changed\"},\"NewPolicy(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Event emitted every time a new policy is added to the pool\"},\"PolicyCancelled(address,uint256,uint256,uint256,uint256)\":{\"notice\":\"Event emitted when a policy is cancelled, and part of the paid premium is refunded.\"},\"PolicyReplaced(address,uint256,uint256)\":{\"notice\":\"Event emitted every time a new policy replaces an old Policy.\"},\"PolicyResolved(address,uint256,uint256)\":{\"notice\":\"Event emitted every time a policy is removed from the pool\"},\"TreasuryChanged(address,address)\":{\"notice\":\"Event emitted when the treasury (who receives ensuroCommission) changes\"},\"Withdraw(address,address,address,address,uint256)\":{\"notice\":\"Event emitted for every withdrawal from an eToken\"}},\"kind\":\"user\",\"methods\":{\"addComponent(address,uint8)\":{\"notice\":\"Adds a new component (either an {EToken}, {RiskModule} or {PremiumsAccount}) to the protocol.\"},\"cancelPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)\":{\"notice\":\"Cancels a policy, doing optional refunds of parts of the premium.\"},\"changeComponentStatus(address,uint8)\":{\"notice\":\"Changes the status of a component.\"},\"currency()\":{\"notice\":\"Reference to the main currency (ERC20, e.g. USDC) used in the protocol\"},\"deposit(address,uint256,address)\":{\"notice\":\"Deposits liquidity into an eToken\"},\"depositWithPermit(address,uint256,address,uint256,uint8,bytes32,bytes32)\":{\"notice\":\"Deposits liquidity into an eToken, EIP-2612 compatible version.\"},\"expirePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Expires a policy, unlocked the solvency.\"},\"getComponentStatus(address)\":{\"notice\":\"Returns the status of a component.\"},\"getExposure(address)\":{\"notice\":\"Retrieves the current exposure data for a specific risk module\"},\"getPolicyHash(uint256)\":{\"notice\":\"Returns the stored hash of the policy\"},\"isActive(uint256)\":{\"notice\":\"Returns whether a policy is active\"},\"newPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,address,uint96)\":{\"notice\":\"Creates a new Policy\"},\"pause()\":{\"notice\":\"Pauses the contract.\"},\"removeComponent(address)\":{\"notice\":\"Removes a component from the protocol\"},\"replacePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,uint96)\":{\"notice\":\"Replaces a policy with another\"},\"resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"notice\":\"Resolves a policy with a payout, sending the payment to the owner of the policy NFT.\"},\"setBaseURI(string)\":{\"notice\":\"Changes the baseURI of the minted policy NFTs\"},\"setExposureLimit(address,uint256)\":{\"notice\":\"Changes the maximum cumulative loss limit (exposure limit) for a given risk module\"},\"setTreasury(address)\":{\"notice\":\"Changes the address of the treasury, the one that receives the protocol fees.\"},\"treasury()\":{\"notice\":\"Address of the treasury, that receives protocol fees.\"},\"unpause()\":{\"notice\":\"Unpauses the contract.\"},\"withdraw(address,uint256,address,address)\":{\"notice\":\"Withdraws an amount from an eToken\"}},\"notice\":\"This is the main contract of the protocol.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/PolicyPool.sol\":\"PolicyPool\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol\":{\"keccak256\":\"0xb813cb6a31231d48456f46d35a82ff89a643e03d015027e0a34dd3a611370b69\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6ac2aa7e379a6804c0814ad4354c8626bceac3c37d641fc0105f666ebdd1aea7\",\"dweb:/ipfs/QmQ1a69VXEfVKP3Vgwk9CGd5surx3YQX5eNDvXDSf6aspG\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol\":{\"keccak256\":\"0x842cc1aad7ab31fce63200401deddce3a84f73fef96b3a4841b310b09ab9aa7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://90c6d93642c21475ba6240ad13a8d75f5df215e0363efc4cbe13f71e779d38d2\",\"dweb:/ipfs/QmXCGRb3aYGf9js21UfV7tATAo26o3gWRgM539WamvniP6\"]},\"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol\":{\"keccak256\":\"0x1149f6c3445a564f5b9cd27c2dc85c6bcaed254c67cb57a416bc7ca1f667ad1f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8a72ecd1a82f8ece4d83280a4920a6269e83bec971a27d0ce2e3a21d2ae08450\",\"dweb:/ipfs/QmSn68D8stm6b7m4nZndhTqincMQdoTqNrRXmAReV9Xb2r\"]},\"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol\":{\"keccak256\":\"0x16b88aca1f1c3aa38783416d86207ce6fe574fcd1993dfe54403b5c8b6c74224\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://29f3c5c687fe0d87742b013872f495e67656910530c916a69873860dc8fea812\",\"dweb:/ipfs/QmbspfQXmbhCANqqiunUFm9fiVVQwPet2YKQoJ58km442Y\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x53befc41288eaa87edcd3a7be7e8475a32e44c6a29f9bf52fae789781301d9ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a1d7fab53c4ceaf42391b83d9b36d7e9cc524a8da125cffdcd32c56560f9d1c9\",\"dweb:/ipfs/QmaRZdVhQdqNXofeimibkBG65q9GVcXVZEGpycwwX3znC6\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xf78f05f3b8c9f75570e85300d7b4600d7f6f6a198449273f31d44c1641adb46f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e28b872613b45e0e801d4995aa4380be2531147bfe2d85c1d6275f1de514fba3\",\"dweb:/ipfs/QmeeFcfShHYaS3BdgVj78nxR28ZaVUwbvr66ud8bT6kzw9\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0x88cd5e3bee2e8c36b8d9058fbcaa81ad5704281b25634122234b55ea853d8055\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8dc7e7ab5b8ea36c15027ab04221b05d1c970f47a53e9fd47ead8ca665d49c7e\",\"dweb:/ipfs/Qmeeph7fsDyfRr8vb2L8KcDEmKPb224TAayMvgqgGAnqpL\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0xf46268c37522320bb2119a5a394bc5c739a95c0c574c8d08e8c643f4d06e5c76\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://517e4b295f35b9947c72ad7379a6089439ece7bb6f4a2ea0a159da13046c039e\",\"dweb:/ipfs/QmZXzkSfLUbvujig3zVbpDHykpHhqLpvQtdiN3B5j4TA3u\"]},\"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol\":{\"keccak256\":\"0xc7efbc23214ad7dced8bf2249460f4bda114d57f6a0079f84040654280f455bd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1f5bd44efca8c8c0d74439e7b808d1f9c4af1df78f91fef8e8bbca8104645435\",\"dweb:/ipfs/Qmb42XSd8MKsEitp42sZkSFGqDRigk6QgGXtiJyJqUZJJ6\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\":{\"keccak256\":\"0xc4c674aab142650b93c3fdf27452a07c0284aed63a86b54b4c4792e8f0f333fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://47778fa8fbb0bd759b5859b65193de857778c6112af8d5421acb11e68ed04d62\",\"dweb:/ipfs/QmakrnC3iS3t4UeRReEvWfhxgB3sAyPoz6LSkdK63UxiYb\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/PolicyPool.sol\":{\"keccak256\":\"0x861be196cac3ce38853eeb91c87dd6b12234f2da892761ffe3703d7762772594\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://802ebcb018ae898c1686109ea96bb45f0f64e83df9a4c090d49b425e95a4424d\",\"dweb:/ipfs/QmUQUZo6XxoFgrjoBRSa7sUhJJMawq8PXXagWjAcHNenv1\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/IPolicyHolder.sol\":{\"keccak256\":\"0xedfdb90379573eaab3213424a517042dd7f015cdb4ee734859609a019275797e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://321e424f1c9afd92e0cb38e4131ce30aaf7df551388b6d1d1abe60ea9dcd0e8a\",\"dweb:/ipfs/QmfFraGLbyy67ugA373JcZfPf7J34uzMHXbyBjoH9enWsK\"]},\"contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":22894,"contract":"contracts/PolicyPool.sol:PolicyPool","label":"_treasury","offset":0,"slot":"0","type":"t_address"},{"astId":22925,"contract":"contracts/PolicyPool.sol:PolicyPool","label":"_components","offset":0,"slot":"1","type":"t_mapping(t_contract(IPolicyPoolComponent)29188,t_struct(Component)22918_storage)"},{"astId":22930,"contract":"contracts/PolicyPool.sol:PolicyPool","label":"_policies","offset":0,"slot":"2","type":"t_mapping(t_uint256,t_bytes32)"},{"astId":22938,"contract":"contracts/PolicyPool.sol:PolicyPool","label":"_nftBaseURI","offset":0,"slot":"3","type":"t_string_storage"},{"astId":22945,"contract":"contracts/PolicyPool.sol:PolicyPool","label":"_exposureByRm","offset":0,"slot":"4","type":"t_mapping(t_contract(IRiskModule)29295,t_struct(Exposure)22935_storage)"},{"astId":25448,"contract":"contracts/PolicyPool.sol:PolicyPool","label":"__gap","offset":0,"slot":"5","type":"t_array(t_uint256)45_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_uint256)45_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[45]","numberOfBytes":"1440"},"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_contract(IPolicyPoolComponent)29188":{"encoding":"inplace","label":"contract IPolicyPoolComponent","numberOfBytes":"20"},"t_contract(IRiskModule)29295":{"encoding":"inplace","label":"contract IRiskModule","numberOfBytes":"20"},"t_enum(ComponentKind)22910":{"encoding":"inplace","label":"enum PolicyPool.ComponentKind","numberOfBytes":"1"},"t_enum(ComponentStatus)22904":{"encoding":"inplace","label":"enum PolicyPool.ComponentStatus","numberOfBytes":"1"},"t_mapping(t_contract(IPolicyPoolComponent)29188,t_struct(Component)22918_storage)":{"encoding":"mapping","key":"t_contract(IPolicyPoolComponent)29188","label":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component)","numberOfBytes":"32","value":"t_struct(Component)22918_storage"},"t_mapping(t_contract(IRiskModule)29295,t_struct(Exposure)22935_storage)":{"encoding":"mapping","key":"t_contract(IRiskModule)29295","label":"mapping(contract IRiskModule => struct PolicyPool.Exposure)","numberOfBytes":"32","value":"t_struct(Exposure)22935_storage"},"t_mapping(t_uint256,t_bytes32)":{"encoding":"mapping","key":"t_uint256","label":"mapping(uint256 => bytes32)","numberOfBytes":"32","value":"t_bytes32"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_struct(Component)22918_storage":{"encoding":"inplace","label":"struct PolicyPool.Component","members":[{"astId":22914,"contract":"contracts/PolicyPool.sol:PolicyPool","label":"status","offset":0,"slot":"0","type":"t_enum(ComponentStatus)22904"},{"astId":22917,"contract":"contracts/PolicyPool.sol:PolicyPool","label":"kind","offset":1,"slot":"0","type":"t_enum(ComponentKind)22910"}],"numberOfBytes":"32"},"t_struct(Exposure)22935_storage":{"encoding":"inplace","label":"struct PolicyPool.Exposure","members":[{"astId":22932,"contract":"contracts/PolicyPool.sol:PolicyPool","label":"active","offset":0,"slot":"0","type":"t_uint128"},{"astId":22934,"contract":"contracts/PolicyPool.sol:PolicyPool","label":"limit","offset":16,"slot":"0","type":"t_uint128"}],"numberOfBytes":"32"},"t_uint128":{"encoding":"inplace","label":"uint128","numberOfBytes":"16"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"contracts/PolicyPoolComponent.sol":{"PolicyPoolComponent":{"abi":[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NoZeroPolicyPool","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"OnlyPolicyPool","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[],"name":"UpgradeCannotChangePolicyPool","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","currency()":"e5a6b10f","policyPool()":"4d15eb03","proxiableUUID()":"52d1902d","supportsInterface(bytes4)":"01ffc9a7","upgradeToAndCall(address,bytes)":"4f1ef286"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroPolicyPool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OnlyPolicyPool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UpgradeCannotChangePolicyPool\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"This is the base class of all the components of the protocol that are linked to the PolicyPool and created      after it.      Holds the reference to _policyPool as immutable, also provides access to common admin roles:      This contract also keeps track of the tweaks to avoid two tweaks of the same type are done in a short period.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"},\"_policyPool\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"}},\"title\":\"Base class for PolicyPool components\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"policyPool()\":{\"notice\":\"Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/PolicyPoolComponent.sol\":\"PolicyPoolComponent\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/PolicyPoolComponent.sol\":{\"keccak256\":\"0x59be0e577af81ab215ac850da84692d6ae7a465917701260f390bc92240c4707\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://c55648f183f32e74d6d83cfc2a8eb606c75a6c3bc598e8ec2a38f9fb3b676f8c\",\"dweb:/ipfs/QmdDFuZz6cn9ywUuxv4bTY3STMWQMWTAzitbocywFMoByb\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":25608,"contract":"contracts/PolicyPoolComponent.sol:PolicyPoolComponent","label":"__gap","offset":0,"slot":"0","type":"t_array(t_uint256)50_storage"}],"types":{"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"contracts/PremiumsAccount.sol":{"PremiumsAccount":{"abi":[{"inputs":[{"internalType":"contract IPolicyPool","name":"policyPool_","type":"address"},{"internalType":"contract IEToken","name":"juniorEtk_","type":"address"},{"internalType":"contract IEToken","name":"seniorEtk_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"uint256","name":"amountLeft","type":"uint256"}],"name":"CannotBeBorrowed","type":"error"},{"inputs":[{"internalType":"int256","name":"currentDeficit","type":"int256"},{"internalType":"int256","name":"newMaxDeficit","type":"int256"}],"name":"DeficitExceedsMaxDeficit","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"newDeficitRatio","type":"uint256"}],"name":"InvalidDeficitRatio","type":"error"},{"inputs":[{"internalType":"address","name":"destination","type":"address"}],"name":"InvalidDestination","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[{"internalType":"uint256","name":"loanLimit","type":"uint256"}],"name":"InvalidLoanLimit","type":"error"},{"inputs":[{"internalType":"contract IEToken","name":"oldEToken","type":"address"},{"internalType":"contract IEToken","name":"newEToken","type":"address"}],"name":"InvalidUpgradeETokenChanged","type":"error"},{"inputs":[],"name":"InvalidYieldVault","type":"error"},{"inputs":[{"internalType":"uint256","name":"losses","type":"uint256"},{"internalType":"uint256","name":"excess","type":"uint256"}],"name":"LossesCannotExceedMaxDeficit","type":"error"},{"inputs":[],"name":"NoZeroPolicyPool","type":"error"},{"inputs":[{"internalType":"uint256","name":"required","type":"uint256"},{"internalType":"uint256","name":"available","type":"uint256"}],"name":"NotEnoughCash","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"OnlyPolicyPool","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ReserveInvalidReceiver","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[],"name":"UpgradeCannotChangePolicyPool","type":"error"},{"inputs":[{"internalType":"uint256","name":"amountRequired","type":"uint256"},{"internalType":"int256","name":"surplus","type":"int256"}],"name":"WithdrawExceedsSurplus","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldRatio","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRatio","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"adjustment","type":"uint256"}],"name":"DeficitRatioChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"int256","name":"earnings","type":"int256"}],"name":"EarningsRecorded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"ErrorIgnoredDeinvestingVault","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newLimit","type":"uint256"},{"indexed":false,"internalType":"bool","name":"isSenior","type":"bool"}],"name":"LoanLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"moneyIn","type":"bool"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"WonPremiumsInOut","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":true,"internalType":"contract IERC4626","name":"newVault","type":"address"},{"indexed":false,"internalType":"bool","name":"forced","type":"bool"}],"name":"YieldVaultChanged","type":"event"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activePurePremiums","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"borrowedActivePP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deficitRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositIntoYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"etks","outputs":[{"internalType":"contract IEToken","name":"","type":"address"},{"internalType":"contract IEToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"investedInYV","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"jrLoanLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"juniorEtk","outputs":[{"internalType":"contract IEToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"},{"internalType":"address","name":"policyHolder","type":"address"}],"name":"policyCancelled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"policyCreated","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"policyExpired","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"oldPolicy","type":"tuple"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"newPolicy","type":"tuple"}],"name":"policyReplaced","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"policyHolder","type":"address"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"policyResolvedWithPayout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purePremiums","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"receiveGrant","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"recordEarnings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"repayLoans","outputs":[{"internalType":"uint256","name":"available","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seniorEtk","outputs":[{"internalType":"contract IEToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRatio","type":"uint256"},{"internalType":"bool","name":"adjustment","type":"bool"}],"name":"setDeficitRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimitJr","type":"uint256"},{"internalType":"uint256","name":"newLimitSr","type":"uint256"}],"name":"setLoanLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC4626","name":"newYieldVault","type":"address"},{"internalType":"bool","name":"force","type":"bool"}],"name":"setYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"srLoanLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"surplus","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFromYieldVault","outputs":[{"internalType":"uint256","name":"deinvested","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"withdrawWonPremiums","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wonPurePremiums","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"yieldVault","outputs":[{"internalType":"contract IERC4626","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_25524":{"entryPoint":null,"id":25524,"parameterSlots":1,"returnSlots":0},"@_25787":{"entryPoint":null,"id":25787,"parameterSlots":3,"returnSlots":0},"@_27434":{"entryPoint":null,"id":27434,"parameterSlots":1,"returnSlots":0},"@_disableInitializers_7172":{"entryPoint":131,"id":7172,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_7217":{"entryPoint":null,"id":7217,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_7203":{"entryPoint":null,"id":7203,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_contract$_IPolicyPool_$29171t_contract$_IEToken_$28869t_contract$_IEToken_$28869_fromMemory":{"entryPoint":329,"id":null,"parameterSlots":2,"returnSlots":3},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"validator_revert_contract_IPolicyPool":{"entryPoint":309,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:983:101","nodeType":"YulBlock","src":"0:983:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"72:86:101","nodeType":"YulBlock","src":"72:86:101","statements":[{"body":{"nativeSrc":"136:16:101","nodeType":"YulBlock","src":"136:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"145:1:101","nodeType":"YulLiteral","src":"145:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"148:1:101","nodeType":"YulLiteral","src":"148:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"138:6:101","nodeType":"YulIdentifier","src":"138:6:101"},"nativeSrc":"138:12:101","nodeType":"YulFunctionCall","src":"138:12:101"},"nativeSrc":"138:12:101","nodeType":"YulExpressionStatement","src":"138:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"95:5:101","nodeType":"YulIdentifier","src":"95:5:101"},{"arguments":[{"name":"value","nativeSrc":"106:5:101","nodeType":"YulIdentifier","src":"106:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"121:3:101","nodeType":"YulLiteral","src":"121:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"126:1:101","nodeType":"YulLiteral","src":"126:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"117:3:101","nodeType":"YulIdentifier","src":"117:3:101"},"nativeSrc":"117:11:101","nodeType":"YulFunctionCall","src":"117:11:101"},{"kind":"number","nativeSrc":"130:1:101","nodeType":"YulLiteral","src":"130:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"113:3:101","nodeType":"YulIdentifier","src":"113:3:101"},"nativeSrc":"113:19:101","nodeType":"YulFunctionCall","src":"113:19:101"}],"functionName":{"name":"and","nativeSrc":"102:3:101","nodeType":"YulIdentifier","src":"102:3:101"},"nativeSrc":"102:31:101","nodeType":"YulFunctionCall","src":"102:31:101"}],"functionName":{"name":"eq","nativeSrc":"92:2:101","nodeType":"YulIdentifier","src":"92:2:101"},"nativeSrc":"92:42:101","nodeType":"YulFunctionCall","src":"92:42:101"}],"functionName":{"name":"iszero","nativeSrc":"85:6:101","nodeType":"YulIdentifier","src":"85:6:101"},"nativeSrc":"85:50:101","nodeType":"YulFunctionCall","src":"85:50:101"},"nativeSrc":"82:70:101","nodeType":"YulIf","src":"82:70:101"}]},"name":"validator_revert_contract_IPolicyPool","nativeSrc":"14:144:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"61:5:101","nodeType":"YulTypedName","src":"61:5:101","type":""}],"src":"14:144:101"},{"body":{"nativeSrc":"333:443:101","nodeType":"YulBlock","src":"333:443:101","statements":[{"body":{"nativeSrc":"379:16:101","nodeType":"YulBlock","src":"379:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"388:1:101","nodeType":"YulLiteral","src":"388:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"391:1:101","nodeType":"YulLiteral","src":"391:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"381:6:101","nodeType":"YulIdentifier","src":"381:6:101"},"nativeSrc":"381:12:101","nodeType":"YulFunctionCall","src":"381:12:101"},"nativeSrc":"381:12:101","nodeType":"YulExpressionStatement","src":"381:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"354:7:101","nodeType":"YulIdentifier","src":"354:7:101"},{"name":"headStart","nativeSrc":"363:9:101","nodeType":"YulIdentifier","src":"363:9:101"}],"functionName":{"name":"sub","nativeSrc":"350:3:101","nodeType":"YulIdentifier","src":"350:3:101"},"nativeSrc":"350:23:101","nodeType":"YulFunctionCall","src":"350:23:101"},{"kind":"number","nativeSrc":"375:2:101","nodeType":"YulLiteral","src":"375:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"346:3:101","nodeType":"YulIdentifier","src":"346:3:101"},"nativeSrc":"346:32:101","nodeType":"YulFunctionCall","src":"346:32:101"},"nativeSrc":"343:52:101","nodeType":"YulIf","src":"343:52:101"},{"nativeSrc":"404:29:101","nodeType":"YulVariableDeclaration","src":"404:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"423:9:101","nodeType":"YulIdentifier","src":"423:9:101"}],"functionName":{"name":"mload","nativeSrc":"417:5:101","nodeType":"YulIdentifier","src":"417:5:101"},"nativeSrc":"417:16:101","nodeType":"YulFunctionCall","src":"417:16:101"},"variables":[{"name":"value","nativeSrc":"408:5:101","nodeType":"YulTypedName","src":"408:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"480:5:101","nodeType":"YulIdentifier","src":"480:5:101"}],"functionName":{"name":"validator_revert_contract_IPolicyPool","nativeSrc":"442:37:101","nodeType":"YulIdentifier","src":"442:37:101"},"nativeSrc":"442:44:101","nodeType":"YulFunctionCall","src":"442:44:101"},"nativeSrc":"442:44:101","nodeType":"YulExpressionStatement","src":"442:44:101"},{"nativeSrc":"495:15:101","nodeType":"YulAssignment","src":"495:15:101","value":{"name":"value","nativeSrc":"505:5:101","nodeType":"YulIdentifier","src":"505:5:101"},"variableNames":[{"name":"value0","nativeSrc":"495:6:101","nodeType":"YulIdentifier","src":"495:6:101"}]},{"nativeSrc":"519:40:101","nodeType":"YulVariableDeclaration","src":"519:40:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"544:9:101","nodeType":"YulIdentifier","src":"544:9:101"},{"kind":"number","nativeSrc":"555:2:101","nodeType":"YulLiteral","src":"555:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"540:3:101","nodeType":"YulIdentifier","src":"540:3:101"},"nativeSrc":"540:18:101","nodeType":"YulFunctionCall","src":"540:18:101"}],"functionName":{"name":"mload","nativeSrc":"534:5:101","nodeType":"YulIdentifier","src":"534:5:101"},"nativeSrc":"534:25:101","nodeType":"YulFunctionCall","src":"534:25:101"},"variables":[{"name":"value_1","nativeSrc":"523:7:101","nodeType":"YulTypedName","src":"523:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"606:7:101","nodeType":"YulIdentifier","src":"606:7:101"}],"functionName":{"name":"validator_revert_contract_IPolicyPool","nativeSrc":"568:37:101","nodeType":"YulIdentifier","src":"568:37:101"},"nativeSrc":"568:46:101","nodeType":"YulFunctionCall","src":"568:46:101"},"nativeSrc":"568:46:101","nodeType":"YulExpressionStatement","src":"568:46:101"},{"nativeSrc":"623:17:101","nodeType":"YulAssignment","src":"623:17:101","value":{"name":"value_1","nativeSrc":"633:7:101","nodeType":"YulIdentifier","src":"633:7:101"},"variableNames":[{"name":"value1","nativeSrc":"623:6:101","nodeType":"YulIdentifier","src":"623:6:101"}]},{"nativeSrc":"649:40:101","nodeType":"YulVariableDeclaration","src":"649:40:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"674:9:101","nodeType":"YulIdentifier","src":"674:9:101"},{"kind":"number","nativeSrc":"685:2:101","nodeType":"YulLiteral","src":"685:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"670:3:101","nodeType":"YulIdentifier","src":"670:3:101"},"nativeSrc":"670:18:101","nodeType":"YulFunctionCall","src":"670:18:101"}],"functionName":{"name":"mload","nativeSrc":"664:5:101","nodeType":"YulIdentifier","src":"664:5:101"},"nativeSrc":"664:25:101","nodeType":"YulFunctionCall","src":"664:25:101"},"variables":[{"name":"value_2","nativeSrc":"653:7:101","nodeType":"YulTypedName","src":"653:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"736:7:101","nodeType":"YulIdentifier","src":"736:7:101"}],"functionName":{"name":"validator_revert_contract_IPolicyPool","nativeSrc":"698:37:101","nodeType":"YulIdentifier","src":"698:37:101"},"nativeSrc":"698:46:101","nodeType":"YulFunctionCall","src":"698:46:101"},"nativeSrc":"698:46:101","nodeType":"YulExpressionStatement","src":"698:46:101"},{"nativeSrc":"753:17:101","nodeType":"YulAssignment","src":"753:17:101","value":{"name":"value_2","nativeSrc":"763:7:101","nodeType":"YulIdentifier","src":"763:7:101"},"variableNames":[{"name":"value2","nativeSrc":"753:6:101","nodeType":"YulIdentifier","src":"753:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$29171t_contract$_IEToken_$28869t_contract$_IEToken_$28869_fromMemory","nativeSrc":"163:613:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"283:9:101","nodeType":"YulTypedName","src":"283:9:101","type":""},{"name":"dataEnd","nativeSrc":"294:7:101","nodeType":"YulTypedName","src":"294:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"306:6:101","nodeType":"YulTypedName","src":"306:6:101","type":""},{"name":"value1","nativeSrc":"314:6:101","nodeType":"YulTypedName","src":"314:6:101","type":""},{"name":"value2","nativeSrc":"322:6:101","nodeType":"YulTypedName","src":"322:6:101","type":""}],"src":"163:613:101"},{"body":{"nativeSrc":"880:101:101","nodeType":"YulBlock","src":"880:101:101","statements":[{"nativeSrc":"890:26:101","nodeType":"YulAssignment","src":"890:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"902:9:101","nodeType":"YulIdentifier","src":"902:9:101"},{"kind":"number","nativeSrc":"913:2:101","nodeType":"YulLiteral","src":"913:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"898:3:101","nodeType":"YulIdentifier","src":"898:3:101"},"nativeSrc":"898:18:101","nodeType":"YulFunctionCall","src":"898:18:101"},"variableNames":[{"name":"tail","nativeSrc":"890:4:101","nodeType":"YulIdentifier","src":"890:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"932:9:101","nodeType":"YulIdentifier","src":"932:9:101"},{"arguments":[{"name":"value0","nativeSrc":"947:6:101","nodeType":"YulIdentifier","src":"947:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"963:2:101","nodeType":"YulLiteral","src":"963:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"967:1:101","nodeType":"YulLiteral","src":"967:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"959:3:101","nodeType":"YulIdentifier","src":"959:3:101"},"nativeSrc":"959:10:101","nodeType":"YulFunctionCall","src":"959:10:101"},{"kind":"number","nativeSrc":"971:1:101","nodeType":"YulLiteral","src":"971:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"955:3:101","nodeType":"YulIdentifier","src":"955:3:101"},"nativeSrc":"955:18:101","nodeType":"YulFunctionCall","src":"955:18:101"}],"functionName":{"name":"and","nativeSrc":"943:3:101","nodeType":"YulIdentifier","src":"943:3:101"},"nativeSrc":"943:31:101","nodeType":"YulFunctionCall","src":"943:31:101"}],"functionName":{"name":"mstore","nativeSrc":"925:6:101","nodeType":"YulIdentifier","src":"925:6:101"},"nativeSrc":"925:50:101","nodeType":"YulFunctionCall","src":"925:50:101"},"nativeSrc":"925:50:101","nodeType":"YulExpressionStatement","src":"925:50:101"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"781:200:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"849:9:101","nodeType":"YulTypedName","src":"849:9:101","type":""},{"name":"value0","nativeSrc":"860:6:101","nodeType":"YulTypedName","src":"860:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"871:4:101","nodeType":"YulTypedName","src":"871:4:101","type":""}],"src":"781:200:101"}]},"contents":"{\n    { }\n    function validator_revert_contract_IPolicyPool(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$29171t_contract$_IEToken_$28869t_contract$_IEToken_$28869_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IPolicyPool(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IPolicyPool(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_contract_IPolicyPool(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(64, 1), 1)))\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"61010060405230608052348015610014575f5ffd5b50604051613e5a380380613e5a83398101604081905261003391610149565b82806001600160a01b03811661005c57604051636b23cf0160e01b815260040160405180910390fd5b610064610083565b6001600160a01b0390811660a05292831660c052501660e05250610193565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100d35760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101325780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6001600160a01b0381168114610132575f5ffd5b5f5f5f6060848603121561015b575f5ffd5b835161016681610135565b602085015190935061017781610135565b604085015190925061018881610135565b809150509250925092565b60805160a05160c05160e051613b916102c95f395f818161041b01528181610473015281816116470152818161173001528181611976015281816119ac01528181611b5c01528181611eef015281816121c60152818161226c01528181612a6c01528181612ef401528181612f2f0152612f5b01525f81816103b8015281816103f601528181610c97015281816114b20152818161159b015281816119df01528181611a1501528181611ab001528181611e2c01528181611f9b0152818161204b015281816120f40152818161298801528181612e3701528181612e720152612e9e01525f81816102f0015281816108f001528181610d8901528181611439015281816117ce0152818161187301528181611a44015261325501525f81816124430152818161246c01526126010152613b915ff3fe6080604052600436106101fc575f3560e01c806376185ff111610113578063ac860f741161009d578063e5a6b10f1161006d578063e5a6b10f146105e7578063e823584a146105fb578063ee1f9a6a1461060f578063f39a4bc51461062e578063f79ac18314610642575f5ffd5b8063ac860f741461054d578063ad3cb1cc1461056c578063d336078c146105a9578063d5c6c166146105c8575f5ffd5b80638129fc1c116100e35780638129fc1c146104bf57806381ced71f146104d357806397a146c0146104f2578063a0ce58b814610511578063a7f8a5e214610530575f5ffd5b806376185ff1146104465780637b83037b146104655780637bb62319146104975780637d919a97146104ab575f5ffd5b80634d15eb031161019457806350093f041161016457806350093f041461036357806352d1902d14610382578063536c9a4314610396578063536ebbfc146103aa5780635e445859146103dc575f5ffd5b80634d15eb03146102e25780634eb978a4146103285780634f1ef2861461033c5780634fe0bd1e1461034f575f5ffd5b80631dda2899116101cf5780631dda28991461028757806326ccbd22146102a65780632d8f892a146102ba5780634863c8b0146102ce575f5ffd5b806301ffc9a7146102005780631388856514610234578063194448e5146102525780631a548a2714610273575b5f5ffd5b34801561020b575f5ffd5b5061021f61021a3660046134ab565b610661565b60405190151581526020015b60405180910390f35b34801561023f575f5ffd5b506065545b60405190815260200161022b565b34801561025d575f5ffd5b5061027161026c3660046134f3565b61068c565b005b34801561027e575f5ffd5b50606454610244565b348015610292575f5ffd5b506102716102a1366004613541565b6108e5565b3480156102b1575f5ffd5b506102446109c0565b3480156102c5575f5ffd5b506102446109d6565b3480156102d9575f5ffd5b50610244610a0c565b3480156102ed575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b03909116815260200161022b565b348015610333575f5ffd5b50610271610a2d565b61027161034a3660046135ef565b610b62565b34801561035a575f5ffd5b50610244610b81565b34801561036e575f5ffd5b5061027161037d366004613696565b610b9f565b34801561038d575f5ffd5b50610244610d4b565b3480156103a1575f5ffd5b50610244610d67565b3480156103b5575f5ffd5b507f0000000000000000000000000000000000000000000000000000000000000000610310565b3480156103e7575f5ffd5b50604080516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811682527f00000000000000000000000000000000000000000000000000000000000000001660208201520161022b565b348015610451575f5ffd5b506102716104603660046136b9565b610d7e565b348015610470575f5ffd5b507f0000000000000000000000000000000000000000000000000000000000000000610310565b3480156104a2575f5ffd5b50610244610e04565b3480156104b6575f5ffd5b50603254610244565b3480156104ca575f5ffd5b50610271610e34565b3480156104de575f5ffd5b506102716104ed3660046136d4565b610f2b565b3480156104fd575f5ffd5b5061027161050c3660046136eb565b610f91565b34801561051c575f5ffd5b5061024461052b36600461370b565b6110f4565b34801561053b575f5ffd5b506066546001600160a01b0316610310565b348015610558575f5ffd5b506102716105673660046136d4565b611208565b348015610577575f5ffd5b5061059c604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161022b919061372e565b3480156105b4575f5ffd5b506102446105c33660046136d4565b61138e565b3480156105d3575f5ffd5b506102716105e2366004613763565b61142e565b3480156105f2575f5ffd5b506103106117cb565b348015610606575f5ffd5b5061024461184c565b34801561061a575f5ffd5b50610271610629366004613798565b611868565b348015610639575f5ffd5b50610244611936565b34801561064d575f5ffd5b5061027161065c3660046136b9565b611a39565b5f61066b82611bf0565b8061068657506001600160e01b0319821663f7e4b01b60e01b145b92915050565b5f5f6106966117cb565b90506001600160a01b038416158061071e5750806001600160a01b0316846001600160a01b03166338d52e0f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106ef573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061071391906137ee565b6001600160a01b0316145b61073b57604051638959269160e01b815260040160405180910390fd5b5f61074e6066546001600160a01b031690565b90505f6001600160a01b03821615610863576040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156107a4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107c89190613809565b905080156108615785156107e9576107e08382611c25565b95509150610861565b604051635d043b2960e11b815260048101829052306024820181905260448201526001600160a01b0384169063ba087652906064016020604051808303815f875af115801561083a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061085e9190613809565b91505b505b606680546001600160a01b0319166001600160a01b0388161790556108946032548261088f9190613834565b611d68565b5f60325560405184151581526001600160a01b0380881691908416907f243f9479bbdaf9f3395e726975293ee3724f3819f4322a018c98afb9de70a1e09060200160405180910390a3505050505050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461092e5760405163799e780f60e01b815260040160405180910390fd5b8160a0013560645f8282546109439190613853565b909155505f905061096061095b60a085013584613834565b611dcd565b905080156109955761097f61097a3685900385018561387f565b611e20565b61099081855f866040013511611f7d565b6109a7565b6109a761097a3685900385018561387f565b6109ba846109b58385613853565b6122fc565b50505050565b5f6065546064546109d19190613927565b905090565b6066545f90600160a01b900463ffffffff1615610a06576066546109d190600160a01b900463ffffffff166123b5565b505f1990565b6066545f906109d190655af3107a400090600160e01b900461ffff1661394e565b5f610a406066546001600160a01b031690565b90506001600160a01b038116610a6957604051638959269160e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201525f906001600160a01b038316906307a2d13a9082906370a0823190602401602060405180830381865afa158015610ab5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ad99190613809565b6040518263ffffffff1660e01b8152600401610af791815260200190565b602060405180830381865afa158015610b12573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b369190613809565b90505f60325482610b479190613834565b90508015610b5d576032829055610b5d81611d68565b505050565b610b6a612438565b610b73826124de565b610b7d82826124e7565b5050565b5f610b92610b8d610a0c565b6125a3565b6065546109d19190613834565b5f610bb8610bb3655af3107a400085613979565b6125c4565b9050670de0b6b3a76400008311158015610be4575082610be2655af3107a400061ffff841661394e565b145b8390610c0f576040516346c20ab760e01b8152600401610c0691815260200190565b60405180910390fd5b505f610c1a846125a3565b905082158015610c2b575080606554125b15610c6757606554610c3c90613998565b610c4582613998565b60405163287223f960e01b815260048101929092526024820152604401610c06565b5f816065541215610cc65781606554610c7f90613998565b610c899190613927565b60658390559050610cc681307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161515611f7d565b6066547f5b2441044bd7b1320018e9cf93f7a9a26d14db096298500121b8370aff51133d90610d0790655af3107a400090600160e01b900461ffff1661394e565b6040805191825260208201889052810183905260600160405180910390a150506066805461ffff909216600160e01b0261ffff60e01b199092169190911790555050565b5f610d546125f6565b505f516020613b3c5f395f51905f525b90565b5f5f6065541215610d7757505f90565b5060655490565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610dc75760405163799e780f60e01b815260040160405180910390fd5b8060a0013560645f828254610ddc9190613853565b90915550610def905060a082013561263f565b610e0161097a3683900383018361387f565b50565b6066545f90600160c01b900463ffffffff1615610a06576066546109d190600160c01b900463ffffffff166123b5565b5f610e3d612658565b805490915060ff600160401b820416159067ffffffffffffffff165f81158015610e645750825b90505f8267ffffffffffffffff166001148015610e805750303b155b905081158015610e8e575080155b15610eac5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610ed657845460ff60401b1916600160401b1785555b610ede612680565b8315610f2457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b610f348161263f565b610f53333083610f426117cb565b6001600160a01b0316929190612698565b6040805160018152602081018390527fd60d524f1cae273480bb0a4ddfb992b6ac0b61c8e12ffbe2e4e31463f9e9019991015b60405180910390a150565b5f198214611043577f1366686786a1d0cde83e2e2241a477fcf29662506a51f052f72e47b15729bf0b610fc26109d6565b60408051918252602082018590525f9082015260600160405180910390a1610fe9826126ce565b6066805463ffffffff60a01b1916600160a01b63ffffffff93841681029190911791829055849261101e9291909104166123b5565b14829061104157604051634a8fd66f60e01b8152600401610c0691815260200190565b505b5f198114610b7d577f1366686786a1d0cde83e2e2241a477fcf29662506a51f052f72e47b15729bf0b611074610e04565b604080519182526020820184905260019082015260600160405180910390a161109c816126ce565b6066805463ffffffff60c01b1916600160c01b63ffffffff9384168102919091179182905583926110d19291909104166123b5565b148190610b5d57604051634a8fd66f60e01b8152600401610c0691815260200190565b5f816001600160a01b03811661112957604051638eaba6f960e01b81526001600160a01b039091166004820152602401610c06565b505f61113d6066546001600160a01b031690565b6001600160a01b03161461115357611153610a2d565b5f198303611175575f6065541361116b57505f610686565b60655492506111a7565b6065548390808213156111a45760405163241b522760e11b815260048101929092526024820152604401610c06565b50505b8260655f8282546111b89190613834565b909155506111c8905082846122fc565b604080515f8152602081018590527fd60d524f1cae273480bb0a4ddfb992b6ac0b61c8e12ffbe2e4e31463f9e90199910160405180910390a15090919050565b5f61121b6066546001600160a01b031690565b90506001600160a01b03811661124457604051638959269160e01b815260040160405180910390fd5b5f61124d612753565b90505f19830361125f5780925061128e565b82818082111561128b5760405163531309fb60e11b815260048101929092526024820152604401610c06565b50505b8260325f82825461129f91906139b2565b909155506112ad90506117cb565b60405163095ea7b360e01b81526001600160a01b03848116600483015260248201869052919091169063095ea7b3906044016020604051808303815f875af11580156112fb573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061131f91906139c5565b50604051636e553f6560e01b8152600481018490523060248201526001600160a01b03831690636e553f65906044016020604051808303815f875af115801561136a573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109ba9190613809565b5f611397610a2d565b5f6113aa6066546001600160a01b031690565b90505f19830361141d5760405163ce96cb7760e01b81523060048201526001600160a01b0382169063ce96cb7790602401602060405180830381865afa1580156113f6573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141a9190613809565b92505b61142781846127c4565b5090919050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146114775760405163799e780f60e01b815260040160405180910390fd5b61148960a08084013590830135613853565b60645f82825461149991906139b2565b9091555050604082013515611587576001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663a227dc41833560408501356114f56114f03688900388018861387f565b612877565b61150c6115073689900389018961387f565b6128bf565b61151e6115073689900389018961387f565b6115289190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526084015f604051808303815f87803b158015611570575f5ffd5b505af1158015611582573d5f5f3e3d5ffd5b505050505b604081013515611633576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016634ffcda8c823560408401356115d96114f03687900387018761387f565b6040516001600160e01b031960e086901b1681526004810193909352602483019190915260448201526064015f604051808303815f87803b15801561161c575f5ffd5b505af115801561162e573d5f5f3e3d5ffd5b505050505b60608201351561171c576001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663a227dc418335606085013561168a6116853688900388018861387f565b612902565b6116a161169c3689900389018961387f565b612943565b6116b361169c3689900389018961387f565b6116bd9190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526084015f604051808303815f87803b158015611705575f5ffd5b505af1158015611717573d5f5f3e3d5ffd5b505050505b606081013515610b7d576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016634ffcda8c8235606084013561176e6116853687900387018761387f565b6040516001600160e01b031960e086901b1681526004810193909352602483019190915260448201526064015f604051808303815f87803b1580156117b1575f5ffd5b505af11580156117c3573d5f5f3e3d5ffd5b505050505050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611828573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d191906137ee565b5f5f6065541215611863576065546109d190613998565b505f90565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146118b15760405163799e780f60e01b815260040160405180910390fd5b8460a0013560645f8282546118c69190613853565b909155505f90506118de61095b60a088013587613834565b90508015611916576119006118f83688900388018861387f565b85858561297c565b61191181835f896040013511611f7d565b611928565b6119286118f83688900388018861387f565b6117c3826109b58388613853565b5f8061194a6066546001600160a01b031690565b6001600160a01b03161461196057611960610a2d565b611968610b81565b905080158015906119a157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b156119d3576119d0817f0000000000000000000000000000000000000000000000000000000000000000612b49565b90505b8015801590611a0a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b15610d64576109d1817f0000000000000000000000000000000000000000000000000000000000000000612b49565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611a825760405163799e780f60e01b815260040160405180910390fd5b8060a0013560645f828254611a9791906139b2565b9091555050604081013515611b48576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016634ffcda8c82356040840135611aee6114f03687900387018761387f565b6040516001600160e01b031960e086901b1681526004810193909352602483019190915260448201526064015f604051808303815f87803b158015611b31575f5ffd5b505af1158015611b43573d5f5f3e3d5ffd5b505050505b606081013515610e01576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016634ffcda8c82356060840135611b9a6116853687900387018761387f565b6040516001600160e01b031960e086901b1681526004810193909352602483019190915260448201526064015b5f604051808303815f87803b158015611bde575f5ffd5b505af1158015610f24573d5f5f3e3d5ffd5b5f6001600160e01b031982166301ffc9a760e01b148061068657506001600160e01b03198216634d15eb0360e01b1492915050565b604051636c82bbbf60e11b81523060048201525f9081906001600160a01b0385169063d905777e90602401602060405180830381865afa925050508015611c89575060408051601f3d908101601f19168201909252611c8691810190613809565b60015b15611ca05783811015611c9e57600191508093505b505b604051635d043b2960e11b815260048101849052306024820181905260448201526001600160a01b0385169063ba087652906064016020604051808303815f875af1925050508015611d0f575060408051601f3d908101601f19168201909252611d0c91810190613809565b60015b611d5e57836001600160a01b03167f25bce30047860a48c9d8830dbf31873be5434f4d28f14a5808a4ea8e35d0829684604051611d4e91815260200190565b60405180910390a2506001611d61565b91505b9250929050565b5f8112611d7d57611d788161263f565b611dc4565b5f611d8a61095b83613998565b90508015611d9783613998565b829091611dc057604051630fc2324b60e11b815260048101929092526024820152604401610c06565b5050505b610e0181612d5e565b5f5f82606554611ddd9190613834565b90505f611deb610b8d610a0c565b9050808212611dff5750606555505f919050565b606581905580611e0e83613998565b611e189190613927565b949350505050565b604081015115611ee3577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a227dc41825f01518360400151611e6b85612877565b611e74866128bf565b866101000151611e849190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526084015f604051808303815f87803b158015611ecc575f5ffd5b505af1158015611ede573d5f5f3e3d5ffd5b505050505b606081015115610e01577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a227dc41825f01518360600151611f2e85612902565b611f3786612943565b866101200151611f479190613834565b6040516001600160e01b031960e087901b1681526004810194909452602484019290925260448301526064820152608401611bc7565b8281156121a1576040516333481fc960e01b81523060048201525f907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906333481fc990602401602060405180830381865afa158015611fe8573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061200c9190613809565b90506120166109d6565b61202086836139b2565b116120bc576040516330f7e76b60e21b8152600481018690526001600160a01b0385811660248301527f0000000000000000000000000000000000000000000000000000000000000000169063c3df9dac906044016020604051808303815f875af1158015612091573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120b59190613809565b915061219f565b6120c46109d6565b81101561219f575f6120d46109d6565b6120de87846139b2565b6120e89190613853565b90506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663c3df9dac6121238389613853565b6040516001600160e01b031960e084901b16815260048101919091526001600160a01b03881660248201526044016020604051808303815f875af115801561216d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121919190613809565b61219b90826139b2565b9250505b505b80156109ba576121af610e04565b6040516333481fc960e01b815230600482015282907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906333481fc990602401602060405180830381865afa158015612213573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122379190613809565b61224191906139b2565b116122d9576040516330f7e76b60e21b8152600481018290526001600160a01b0384811660248301527f0000000000000000000000000000000000000000000000000000000000000000169063c3df9dac906044016020604051808303815f875af11580156122b2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122d69190613809565b90505b808015610f245760405163093f664360e01b8152600401610c0691815260200190565b816001600160a01b03811661233057604051636427f27360e11b81526001600160a01b039091166004820152602401610c06565b50805f0361233c575050565b5f612345612753565b905081811015612388575f6123626066546001600160a01b031690565b90506001600160a01b0381161561238657612386816123818486613853565b6127c4565b505b6001600160a01b0383163014610b5d57610b5d83836123a56117cb565b6001600160a01b03169190612d8e565b5f6123be6117cb565b6001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123f9573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061241d91906139e0565b61242890600a613ae3565b6106869063ffffffff841661394e565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806124be57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166124b25f516020613b3c5f395f51905f52546001600160a01b031690565b6001600160a01b031614155b156124dc5760405163703e46dd60e11b815260040160405180910390fd5b565b610e0181612dc3565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015612541575060408051601f3d908101601f1916820190925261253e91810190613809565b60015b61256957604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610c06565b5f516020613b3c5f395f51905f52811461259957604051632a87526960e21b815260048101829052602401610c06565b610b5d8383612fad565b6064545f906125bb9083670de0b6b3a7640000613002565b61068690613998565b5f61ffff8211156125f2576040516306dfcc6560e41b81526010600482015260248101839052604401610c06565b5090565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146124dc5760405163703e46dd60e11b815260040160405180910390fd5b8060655f8282546126509190613927565b909155505050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610686565b6126886130b3565b6126906130d8565b6124dc6130e8565b6126a684848484600161312e565b6109ba57604051635274afe760e01b81526001600160a01b0385166004820152602401610c06565b5f6106866126da6117cb565b6001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015612715573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061273991906139e0565b61274490600a613ae3565b61274e9084613979565b61319b565b5f61275c6117cb565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa1580156127a0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d19190613809565b604051632d182be560e21b815260048101829052306024820181905260448201526001600160a01b0383169063b460af94906064016020604051808303815f875af1158015612815573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128399190613809565b5060325481111561285d576128556032548261088f9190613853565b5f6032555050565b8060325f82825461286e9190613853565b90915550505050565b5f610686670de0b6b3a764000061288d846131cb565b64ffffffffff1684604001516128a3919061394e565b6301e133808561010001516128b8919061394e565b9190613002565b5f6128c9826131cb565b64ffffffffff1682610140015164ffffffffff16426128e89190613853565b8361010001516128f8919061394e565b6106869190613979565b5f610686670de0b6b3a7640000612918846131cb565b64ffffffffff16846060015161292e919061394e565b6301e133808561012001516128b8919061394e565b5f61294d826131cb565b64ffffffffff1682610140015164ffffffffff164261296c9190613853565b8361012001516128f8919061394e565b604084015115612a60577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633ad2820b855f015186604001516129c788612877565b6129d0896128bf565b888a61010001516129e19190613853565b6129eb9190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526001600160a01b038416608482015260a4810186905260c4015f604051808303815f87803b158015612a49575f5ffd5b505af1158015612a5b573d5f5f3e3d5ffd5b505050505b6060840151156109ba577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633ad2820b855f01518660600151612aab88612902565b612ab489612943565b878a6101200151612ac59190613853565b612acf9190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526001600160a01b038416608482015260a4810185905260c4015f604051808303815f87803b158015612b2d575f5ffd5b505af1158015612b3f573d5f5f3e3d5ffd5b5050505050505050565b6040516333481fc960e01b81523060048201525f9081906001600160a01b038416906333481fc990602401602060405180830381865afa158015612b8f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bb39190613809565b9050805f03612bc55783915050610686565b5f612bd085836131e2565b90508060655f828254612be39190613834565b90915550612bf3905030826122fc565b80612bfc6117cb565b604051636eb1769f60e11b81523060048201526001600160a01b038781166024830152919091169063dd62ed3e90604401602060405180830381865afa158015612c48573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c6c9190613809565b1015612cee57612c7a6117cb565b60405163095ea7b360e01b81526001600160a01b03868116600483015260248201859052919091169063095ea7b3906044016020604051808303815f875af1158015612cc8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cec91906139c5565b505b60405163918344d360e01b8152600481018290523060248201526001600160a01b0385169063918344d3906044015f604051808303815f87803b158015612d33575f5ffd5b505af1158015612d45573d5f5f3e3d5ffd5b505050508085612d559190613853565b95945050505050565b6040518181527f731c439c5bae15be1344eec709967e046b4f7d3f7e37abeffc5247f448fa18bf90602001610f86565b612d9b83838360016131f1565b610b5d57604051635274afe760e01b81526001600160a01b0384166004820152602401610c06565b612dcc81613253565b5f8190505f5f826001600160a01b0316635e4458596040518163ffffffff1660e01b81526004016040805180830381865afa158015612e0d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e319190613af1565b915091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161480612e9c57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316155b7f0000000000000000000000000000000000000000000000000000000000000000839091612ef0576040516313afea8960e21b81526001600160a01b03928316600482015291166024820152604401610c06565b50507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161480612f5957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316155b7f00000000000000000000000000000000000000000000000000000000000000008290916117c3576040516313afea8960e21b81526001600160a01b03928316600482015291166024820152604401610c06565b612fb682613304565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115612ffa57610b5d8282613367565b610b7d613407565b5f5f5f61300f8686613426565b91509150815f036130335783818161302957613029613965565b04925050506130ac565b81841161304a5761304a6003851502601118613442565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150505b9392505050565b6130bb613453565b6124dc57604051631afcd79f60e31b815260040160405180910390fd5b6130e06130b3565b6124dc61346c565b6130f06130b3565b604080516080810182525f8082526020820181905291810191909152612710606090910152606680546001600160f01b03191661027160e41b179055565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f5114831661318a57838315161561317e573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b5f63ffffffff8211156125f2576040516306dfcc6560e41b81526020600482015260248101839052604401610c06565b5f8161014001518261016001516106869190613b1e565b5f8282188284100282186130ac565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f5114831661324757838315161561323b573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132b9573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132dd91906137ee565b6001600160a01b031614610e015760405163d2b3d33f60e01b815260040160405180910390fd5b806001600160a01b03163b5f0361333957604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610c06565b5f516020613b3c5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f6133748484613474565b905080801561339557505f3d118061339557505f846001600160a01b03163b115b156133aa576133a2613487565b915050610686565b80156133d457604051639996b31560e01b81526001600160a01b0385166004820152602401610c06565b3d156133e7576133e26134a0565b613400565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b34156124dc5760405163b398979f60e01b815260040160405180910390fd5b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f61345c612658565b54600160401b900460ff16919050565b6124dc6130b3565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f602082840312156134bb575f5ffd5b81356001600160e01b0319811681146130ac575f5ffd5b6001600160a01b0381168114610e01575f5ffd5b8015158114610e01575f5ffd5b5f5f60408385031215613504575f5ffd5b823561350f816134d2565b9150602083013561351f816134e6565b809150509250929050565b5f610180828403121561353b575f5ffd5b50919050565b5f5f5f6101c08486031215613554575f5ffd5b833561355f816134d2565b925061356e856020860161352a565b929592945050506101a0919091013590565b634e487b7160e01b5f52604160045260245ffd5b604051610180810167ffffffffffffffff811182821017156135b8576135b8613580565b60405290565b604051601f8201601f1916810167ffffffffffffffff811182821017156135e7576135e7613580565b604052919050565b5f5f60408385031215613600575f5ffd5b823561360b816134d2565b9150602083013567ffffffffffffffff811115613626575f5ffd5b8301601f81018513613636575f5ffd5b803567ffffffffffffffff81111561365057613650613580565b613663601f8201601f19166020016135be565b818152866020838501011115613677575f5ffd5b816020840160208301375f602083830101528093505050509250929050565b5f5f604083850312156136a7575f5ffd5b82359150602083013561351f816134e6565b5f61018082840312156136ca575f5ffd5b6130ac838361352a565b5f602082840312156136e4575f5ffd5b5035919050565b5f5f604083850312156136fc575f5ffd5b50508035926020909101359150565b5f5f6040838503121561371c575f5ffd5b82359150602083013561351f816134d2565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f5f6103008385031215613775575f5ffd5b61377f848461352a565b915061378f84610180850161352a565b90509250929050565b5f5f5f5f5f61020086880312156137ad575f5ffd5b6137b7878761352a565b945061018086013593506101a086013592506101c086013591506101e08601356137e0816134d2565b809150509295509295909350565b5f602082840312156137fe575f5ffd5b81516130ac816134d2565b5f60208284031215613819575f5ffd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b8181035f83128015838313168383128216171561340057613400613820565b8181038181111561068657610686613820565b803564ffffffffff8116811461387a575f5ffd5b919050565b5f610180828403128015613891575f5ffd5b5061389a613594565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e08084013590820152610100808401359082015261012080840135908201526139076101408401613866565b61014082015261391a6101608401613866565b6101608201529392505050565b8082018281125f83128015821682158216171561394657613946613820565b505092915050565b808202811582820484141761068657610686613820565b634e487b7160e01b5f52601260045260245ffd5b5f8261399357634e487b7160e01b5f52601260045260245ffd5b500490565b5f600160ff1b82016139ac576139ac613820565b505f0390565b8082018082111561068657610686613820565b5f602082840312156139d5575f5ffd5b81516130ac816134e6565b5f602082840312156139f0575f5ffd5b815160ff811681146130ac575f5ffd5b6001815b6001841115613a3b57808504811115613a1f57613a1f613820565b6001841615613a2d57908102905b60019390931c928002613a04565b935093915050565b5f82613a5157506001610686565b81613a5d57505f610686565b8160018114613a735760028114613a7d57613a99565b6001915050610686565b60ff841115613a8e57613a8e613820565b50506001821b610686565b5060208310610133831016604e8410600b8410161715613abc575081810a610686565b613ac85f198484613a00565b805f1904821115613adb57613adb613820565b029392505050565b5f6130ac60ff841683613a43565b5f5f60408385031215613b02575f5ffd5b8251613b0d816134d2565b602084015190925061351f816134d2565b64ffffffffff82811682821603908111156106865761068661382056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca2646970667358221220b2d4b25aa785541e2de701afff848eb212cf3813d99cd439cb335d0936bffd3664736f6c634300081e0033","opcodes":"PUSH2 0x100 PUSH1 0x40 MSTORE ADDRESS PUSH1 0x80 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x14 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x3E5A CODESIZE SUB DUP1 PUSH2 0x3E5A DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x33 SWAP2 PUSH2 0x149 JUMP JUMPDEST DUP3 DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x5C JUMPI PUSH1 0x40 MLOAD PUSH4 0x6B23CF01 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x83 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0xA0 MSTORE SWAP3 DUP4 AND PUSH1 0xC0 MSTORE POP AND PUSH1 0xE0 MSTORE POP PUSH2 0x193 JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xD3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0x132 JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x132 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x15B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 MLOAD PUSH2 0x166 DUP2 PUSH2 0x135 JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MLOAD SWAP1 SWAP4 POP PUSH2 0x177 DUP2 PUSH2 0x135 JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x188 DUP2 PUSH2 0x135 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0xE0 MLOAD PUSH2 0x3B91 PUSH2 0x2C9 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x41B ADD MSTORE DUP2 DUP2 PUSH2 0x473 ADD MSTORE DUP2 DUP2 PUSH2 0x1647 ADD MSTORE DUP2 DUP2 PUSH2 0x1730 ADD MSTORE DUP2 DUP2 PUSH2 0x1976 ADD MSTORE DUP2 DUP2 PUSH2 0x19AC ADD MSTORE DUP2 DUP2 PUSH2 0x1B5C ADD MSTORE DUP2 DUP2 PUSH2 0x1EEF ADD MSTORE DUP2 DUP2 PUSH2 0x21C6 ADD MSTORE DUP2 DUP2 PUSH2 0x226C ADD MSTORE DUP2 DUP2 PUSH2 0x2A6C ADD MSTORE DUP2 DUP2 PUSH2 0x2EF4 ADD MSTORE DUP2 DUP2 PUSH2 0x2F2F ADD MSTORE PUSH2 0x2F5B ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x3B8 ADD MSTORE DUP2 DUP2 PUSH2 0x3F6 ADD MSTORE DUP2 DUP2 PUSH2 0xC97 ADD MSTORE DUP2 DUP2 PUSH2 0x14B2 ADD MSTORE DUP2 DUP2 PUSH2 0x159B ADD MSTORE DUP2 DUP2 PUSH2 0x19DF ADD MSTORE DUP2 DUP2 PUSH2 0x1A15 ADD MSTORE DUP2 DUP2 PUSH2 0x1AB0 ADD MSTORE DUP2 DUP2 PUSH2 0x1E2C ADD MSTORE DUP2 DUP2 PUSH2 0x1F9B ADD MSTORE DUP2 DUP2 PUSH2 0x204B ADD MSTORE DUP2 DUP2 PUSH2 0x20F4 ADD MSTORE DUP2 DUP2 PUSH2 0x2988 ADD MSTORE DUP2 DUP2 PUSH2 0x2E37 ADD MSTORE DUP2 DUP2 PUSH2 0x2E72 ADD MSTORE PUSH2 0x2E9E ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x2F0 ADD MSTORE DUP2 DUP2 PUSH2 0x8F0 ADD MSTORE DUP2 DUP2 PUSH2 0xD89 ADD MSTORE DUP2 DUP2 PUSH2 0x1439 ADD MSTORE DUP2 DUP2 PUSH2 0x17CE ADD MSTORE DUP2 DUP2 PUSH2 0x1873 ADD MSTORE DUP2 DUP2 PUSH2 0x1A44 ADD MSTORE PUSH2 0x3255 ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x2443 ADD MSTORE DUP2 DUP2 PUSH2 0x246C ADD MSTORE PUSH2 0x2601 ADD MSTORE PUSH2 0x3B91 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1FC JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x76185FF1 GT PUSH2 0x113 JUMPI DUP1 PUSH4 0xAC860F74 GT PUSH2 0x9D JUMPI DUP1 PUSH4 0xE5A6B10F GT PUSH2 0x6D JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x5E7 JUMPI DUP1 PUSH4 0xE823584A EQ PUSH2 0x5FB JUMPI DUP1 PUSH4 0xEE1F9A6A EQ PUSH2 0x60F JUMPI DUP1 PUSH4 0xF39A4BC5 EQ PUSH2 0x62E JUMPI DUP1 PUSH4 0xF79AC183 EQ PUSH2 0x642 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAC860F74 EQ PUSH2 0x54D JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x56C JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0x5A9 JUMPI DUP1 PUSH4 0xD5C6C166 EQ PUSH2 0x5C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8129FC1C GT PUSH2 0xE3 JUMPI DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x4BF JUMPI DUP1 PUSH4 0x81CED71F EQ PUSH2 0x4D3 JUMPI DUP1 PUSH4 0x97A146C0 EQ PUSH2 0x4F2 JUMPI DUP1 PUSH4 0xA0CE58B8 EQ PUSH2 0x511 JUMPI DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0x530 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x76185FF1 EQ PUSH2 0x446 JUMPI DUP1 PUSH4 0x7B83037B EQ PUSH2 0x465 JUMPI DUP1 PUSH4 0x7BB62319 EQ PUSH2 0x497 JUMPI DUP1 PUSH4 0x7D919A97 EQ PUSH2 0x4AB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D15EB03 GT PUSH2 0x194 JUMPI DUP1 PUSH4 0x50093F04 GT PUSH2 0x164 JUMPI DUP1 PUSH4 0x50093F04 EQ PUSH2 0x363 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x382 JUMPI DUP1 PUSH4 0x536C9A43 EQ PUSH2 0x396 JUMPI DUP1 PUSH4 0x536EBBFC EQ PUSH2 0x3AA JUMPI DUP1 PUSH4 0x5E445859 EQ PUSH2 0x3DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x2E2 JUMPI DUP1 PUSH4 0x4EB978A4 EQ PUSH2 0x328 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x33C JUMPI DUP1 PUSH4 0x4FE0BD1E EQ PUSH2 0x34F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1DDA2899 GT PUSH2 0x1CF JUMPI DUP1 PUSH4 0x1DDA2899 EQ PUSH2 0x287 JUMPI DUP1 PUSH4 0x26CCBD22 EQ PUSH2 0x2A6 JUMPI DUP1 PUSH4 0x2D8F892A EQ PUSH2 0x2BA JUMPI DUP1 PUSH4 0x4863C8B0 EQ PUSH2 0x2CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x200 JUMPI DUP1 PUSH4 0x13888565 EQ PUSH2 0x234 JUMPI DUP1 PUSH4 0x194448E5 EQ PUSH2 0x252 JUMPI DUP1 PUSH4 0x1A548A27 EQ PUSH2 0x273 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x20B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x21F PUSH2 0x21A CALLDATASIZE PUSH1 0x4 PUSH2 0x34AB JUMP JUMPDEST PUSH2 0x661 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x23F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x65 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x22B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x26C CALLDATASIZE PUSH1 0x4 PUSH2 0x34F3 JUMP JUMPDEST PUSH2 0x68C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x27E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x64 SLOAD PUSH2 0x244 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x292 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x2A1 CALLDATASIZE PUSH1 0x4 PUSH2 0x3541 JUMP JUMPDEST PUSH2 0x8E5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x9C0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x9D6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xA0C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x22B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x333 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0xA2D JUMP JUMPDEST PUSH2 0x271 PUSH2 0x34A CALLDATASIZE PUSH1 0x4 PUSH2 0x35EF JUMP JUMPDEST PUSH2 0xB62 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x35A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xB81 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x36E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x37D CALLDATASIZE PUSH1 0x4 PUSH2 0x3696 JUMP JUMPDEST PUSH2 0xB9F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x38D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xD4B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xD67 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x310 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3E7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND DUP3 MSTORE PUSH32 0x0 AND PUSH1 0x20 DUP3 ADD MSTORE ADD PUSH2 0x22B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x451 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x460 CALLDATASIZE PUSH1 0x4 PUSH2 0x36B9 JUMP JUMPDEST PUSH2 0xD7E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x470 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x310 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xE04 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x32 SLOAD PUSH2 0x244 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4CA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0xE34 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4DE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x4ED CALLDATASIZE PUSH1 0x4 PUSH2 0x36D4 JUMP JUMPDEST PUSH2 0xF2B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x50C CALLDATASIZE PUSH1 0x4 PUSH2 0x36EB JUMP JUMPDEST PUSH2 0xF91 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x51C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x52B CALLDATASIZE PUSH1 0x4 PUSH2 0x370B JUMP JUMPDEST PUSH2 0x10F4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x310 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x558 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x567 CALLDATASIZE PUSH1 0x4 PUSH2 0x36D4 JUMP JUMPDEST PUSH2 0x1208 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x577 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x59C PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x22B SWAP2 SWAP1 PUSH2 0x372E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x5C3 CALLDATASIZE PUSH1 0x4 PUSH2 0x36D4 JUMP JUMPDEST PUSH2 0x138E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x5E2 CALLDATASIZE PUSH1 0x4 PUSH2 0x3763 JUMP JUMPDEST PUSH2 0x142E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x310 PUSH2 0x17CB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x606 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x184C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x61A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x629 CALLDATASIZE PUSH1 0x4 PUSH2 0x3798 JUMP JUMPDEST PUSH2 0x1868 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x639 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x1936 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x64D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x65C CALLDATASIZE PUSH1 0x4 PUSH2 0x36B9 JUMP JUMPDEST PUSH2 0x1A39 JUMP JUMPDEST PUSH0 PUSH2 0x66B DUP3 PUSH2 0x1BF0 JUMP JUMPDEST DUP1 PUSH2 0x686 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xF7E4B01B PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x696 PUSH2 0x17CB JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO DUP1 PUSH2 0x71E JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x38D52E0F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x6EF JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x713 SWAP2 SWAP1 PUSH2 0x37EE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x73B JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x74E PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0x863 JUMPI PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x7A4 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x7C8 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x861 JUMPI DUP6 ISZERO PUSH2 0x7E9 JUMPI PUSH2 0x7E0 DUP4 DUP3 PUSH2 0x1C25 JUMP JUMPDEST SWAP6 POP SWAP2 POP PUSH2 0x861 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x83A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x85E SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP2 POP JUMPDEST POP JUMPDEST PUSH1 0x66 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND OR SWAP1 SSTORE PUSH2 0x894 PUSH1 0x32 SLOAD DUP3 PUSH2 0x88F SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH2 0x1D68 JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE PUSH1 0x40 MLOAD DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND SWAP2 SWAP1 DUP5 AND SWAP1 PUSH32 0x243F9479BBDAF9F3395E726975293EE3724F3819F4322A018C98AFB9DE70A1E0 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x92E JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0xA0 ADD CALLDATALOAD PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x943 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH0 SWAP1 POP PUSH2 0x960 PUSH2 0x95B PUSH1 0xA0 DUP6 ADD CALLDATALOAD DUP5 PUSH2 0x3834 JUMP JUMPDEST PUSH2 0x1DCD JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x995 JUMPI PUSH2 0x97F PUSH2 0x97A CALLDATASIZE DUP6 SWAP1 SUB DUP6 ADD DUP6 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x1E20 JUMP JUMPDEST PUSH2 0x990 DUP2 DUP6 PUSH0 DUP7 PUSH1 0x40 ADD CALLDATALOAD GT PUSH2 0x1F7D JUMP JUMPDEST PUSH2 0x9A7 JUMP JUMPDEST PUSH2 0x9A7 PUSH2 0x97A CALLDATASIZE DUP6 SWAP1 SUB DUP6 ADD DUP6 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x9BA DUP5 PUSH2 0x9B5 DUP4 DUP6 PUSH2 0x3853 JUMP JUMPDEST PUSH2 0x22FC JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x65 SLOAD PUSH1 0x64 SLOAD PUSH2 0x9D1 SWAP2 SWAP1 PUSH2 0x3927 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x66 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0xA06 JUMPI PUSH1 0x66 SLOAD PUSH2 0x9D1 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x23B5 JUMP JUMPDEST POP PUSH0 NOT SWAP1 JUMP JUMPDEST PUSH1 0x66 SLOAD PUSH0 SWAP1 PUSH2 0x9D1 SWAP1 PUSH6 0x5AF3107A4000 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x394E JUMP JUMPDEST PUSH0 PUSH2 0xA40 PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xA69 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xAB5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xAD9 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAF7 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB12 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xB36 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x32 SLOAD DUP3 PUSH2 0xB47 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0xB5D JUMPI PUSH1 0x32 DUP3 SWAP1 SSTORE PUSH2 0xB5D DUP2 PUSH2 0x1D68 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xB6A PUSH2 0x2438 JUMP JUMPDEST PUSH2 0xB73 DUP3 PUSH2 0x24DE JUMP JUMPDEST PUSH2 0xB7D DUP3 DUP3 PUSH2 0x24E7 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0xB92 PUSH2 0xB8D PUSH2 0xA0C JUMP JUMPDEST PUSH2 0x25A3 JUMP JUMPDEST PUSH1 0x65 SLOAD PUSH2 0x9D1 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH0 PUSH2 0xBB8 PUSH2 0xBB3 PUSH6 0x5AF3107A4000 DUP6 PUSH2 0x3979 JUMP JUMPDEST PUSH2 0x25C4 JUMP JUMPDEST SWAP1 POP PUSH8 0xDE0B6B3A7640000 DUP4 GT ISZERO DUP1 ISZERO PUSH2 0xBE4 JUMPI POP DUP3 PUSH2 0xBE2 PUSH6 0x5AF3107A4000 PUSH2 0xFFFF DUP5 AND PUSH2 0x394E JUMP JUMPDEST EQ JUMPDEST DUP4 SWAP1 PUSH2 0xC0F JUMPI PUSH1 0x40 MLOAD PUSH4 0x46C20AB7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC06 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH0 PUSH2 0xC1A DUP5 PUSH2 0x25A3 JUMP JUMPDEST SWAP1 POP DUP3 ISZERO DUP1 ISZERO PUSH2 0xC2B JUMPI POP DUP1 PUSH1 0x65 SLOAD SLT JUMPDEST ISZERO PUSH2 0xC67 JUMPI PUSH1 0x65 SLOAD PUSH2 0xC3C SWAP1 PUSH2 0x3998 JUMP JUMPDEST PUSH2 0xC45 DUP3 PUSH2 0x3998 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x287223F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x65 SLOAD SLT ISZERO PUSH2 0xCC6 JUMPI DUP2 PUSH1 0x65 SLOAD PUSH2 0xC7F SWAP1 PUSH2 0x3998 JUMP JUMPDEST PUSH2 0xC89 SWAP2 SWAP1 PUSH2 0x3927 JUMP JUMPDEST PUSH1 0x65 DUP4 SWAP1 SSTORE SWAP1 POP PUSH2 0xCC6 DUP2 ADDRESS PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO PUSH2 0x1F7D JUMP JUMPDEST PUSH1 0x66 SLOAD PUSH32 0x5B2441044BD7B1320018E9CF93F7A9A26D14DB096298500121B8370AFF51133D SWAP1 PUSH2 0xD07 SWAP1 PUSH6 0x5AF3107A4000 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x394E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP9 SWAP1 MSTORE DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP PUSH1 0x66 DUP1 SLOAD PUSH2 0xFFFF SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH2 0xFFFF PUSH1 0xE0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD54 PUSH2 0x25F6 JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x3B3C PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x65 SLOAD SLT ISZERO PUSH2 0xD77 JUMPI POP PUSH0 SWAP1 JUMP JUMPDEST POP PUSH1 0x65 SLOAD SWAP1 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xDC7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xA0 ADD CALLDATALOAD PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xDDC SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0xDEF SWAP1 POP PUSH1 0xA0 DUP3 ADD CALLDATALOAD PUSH2 0x263F JUMP JUMPDEST PUSH2 0xE01 PUSH2 0x97A CALLDATASIZE DUP4 SWAP1 SUB DUP4 ADD DUP4 PUSH2 0x387F JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x66 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0xA06 JUMPI PUSH1 0x66 SLOAD PUSH2 0x9D1 SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x23B5 JUMP JUMPDEST PUSH0 PUSH2 0xE3D PUSH2 0x2658 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0xE64 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0xE80 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xE8E JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xEAC JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0xED6 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0xEDE PUSH2 0x2680 JUMP JUMPDEST DUP4 ISZERO PUSH2 0xF24 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH2 0xF34 DUP2 PUSH2 0x263F JUMP JUMPDEST PUSH2 0xF53 CALLER ADDRESS DUP4 PUSH2 0xF42 PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x2698 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE PUSH32 0xD60D524F1CAE273480BB0A4DDFB992B6AC0B61C8E12FFBE2E4E31463F9E90199 SWAP2 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH0 NOT DUP3 EQ PUSH2 0x1043 JUMPI PUSH32 0x1366686786A1D0CDE83E2E2241A477FCF29662506A51F052F72E47B15729BF0B PUSH2 0xFC2 PUSH2 0x9D6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP6 SWAP1 MSTORE PUSH0 SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0xFE9 DUP3 PUSH2 0x26CE JUMP JUMPDEST PUSH1 0x66 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xA0 SHL NOT AND PUSH1 0x1 PUSH1 0xA0 SHL PUSH4 0xFFFFFFFF SWAP4 DUP5 AND DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP2 DUP3 SWAP1 SSTORE DUP5 SWAP3 PUSH2 0x101E SWAP3 SWAP2 SWAP1 SWAP2 DIV AND PUSH2 0x23B5 JUMP JUMPDEST EQ DUP3 SWAP1 PUSH2 0x1041 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A8FD66F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC06 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP JUMPDEST PUSH0 NOT DUP2 EQ PUSH2 0xB7D JUMPI PUSH32 0x1366686786A1D0CDE83E2E2241A477FCF29662506A51F052F72E47B15729BF0B PUSH2 0x1074 PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP5 SWAP1 MSTORE PUSH1 0x1 SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0x109C DUP2 PUSH2 0x26CE JUMP JUMPDEST PUSH1 0x66 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xC0 SHL NOT AND PUSH1 0x1 PUSH1 0xC0 SHL PUSH4 0xFFFFFFFF SWAP4 DUP5 AND DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP2 DUP3 SWAP1 SSTORE DUP4 SWAP3 PUSH2 0x10D1 SWAP3 SWAP2 SWAP1 SWAP2 DIV AND PUSH2 0x23B5 JUMP JUMPDEST EQ DUP2 SWAP1 PUSH2 0xB5D JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A8FD66F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC06 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1129 JUMPI PUSH1 0x40 MLOAD PUSH4 0x8EABA6F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST POP PUSH0 PUSH2 0x113D PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1153 JUMPI PUSH2 0x1153 PUSH2 0xA2D JUMP JUMPDEST PUSH0 NOT DUP4 SUB PUSH2 0x1175 JUMPI PUSH0 PUSH1 0x65 SLOAD SGT PUSH2 0x116B JUMPI POP PUSH0 PUSH2 0x686 JUMP JUMPDEST PUSH1 0x65 SLOAD SWAP3 POP PUSH2 0x11A7 JUMP JUMPDEST PUSH1 0x65 SLOAD DUP4 SWAP1 DUP1 DUP3 SGT ISZERO PUSH2 0x11A4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x241B5227 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x65 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x11B8 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x11C8 SWAP1 POP DUP3 DUP5 PUSH2 0x22FC JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP6 SWAP1 MSTORE PUSH32 0xD60D524F1CAE273480BB0A4DDFB992B6AC0B61C8E12FFBE2E4E31463F9E90199 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x121B PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1244 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x124D PUSH2 0x2753 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x125F JUMPI DUP1 SWAP3 POP PUSH2 0x128E JUMP JUMPDEST DUP3 DUP2 DUP1 DUP3 GT ISZERO PUSH2 0x128B JUMPI PUSH1 0x40 MLOAD PUSH4 0x531309FB PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x129F SWAP2 SWAP1 PUSH2 0x39B2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x12AD SWAP1 POP PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP7 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x12FB JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x131F SWAP2 SWAP1 PUSH2 0x39C5 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x136A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9BA SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH0 PUSH2 0x1397 PUSH2 0xA2D JUMP JUMPDEST PUSH0 PUSH2 0x13AA PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x141D JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13F6 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x141A SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP3 POP JUMPDEST PUSH2 0x1427 DUP2 DUP5 PUSH2 0x27C4 JUMP JUMPDEST POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x1477 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1489 PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP4 ADD CALLDATALOAD PUSH2 0x3853 JUMP JUMPDEST PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1499 SWAP2 SWAP1 PUSH2 0x39B2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD ISZERO PUSH2 0x1587 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xA227DC41 DUP4 CALLDATALOAD PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x14F5 PUSH2 0x14F0 CALLDATASIZE DUP9 SWAP1 SUB DUP9 ADD DUP9 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x2877 JUMP JUMPDEST PUSH2 0x150C PUSH2 0x1507 CALLDATASIZE DUP10 SWAP1 SUB DUP10 ADD DUP10 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x28BF JUMP JUMPDEST PUSH2 0x151E PUSH2 0x1507 CALLDATASIZE DUP10 SWAP1 SUB DUP10 ADD DUP10 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x1528 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1570 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1582 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x40 DUP2 ADD CALLDATALOAD ISZERO PUSH2 0x1633 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x4FFCDA8C DUP3 CALLDATALOAD PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x15D9 PUSH2 0x14F0 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x24 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x161C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x162E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP3 ADD CALLDATALOAD ISZERO PUSH2 0x171C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xA227DC41 DUP4 CALLDATALOAD PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x168A PUSH2 0x1685 CALLDATASIZE DUP9 SWAP1 SUB DUP9 ADD DUP9 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x2902 JUMP JUMPDEST PUSH2 0x16A1 PUSH2 0x169C CALLDATASIZE DUP10 SWAP1 SUB DUP10 ADD DUP10 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x2943 JUMP JUMPDEST PUSH2 0x16B3 PUSH2 0x169C CALLDATASIZE DUP10 SWAP1 SUB DUP10 ADD DUP10 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x16BD SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1705 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1717 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP2 ADD CALLDATALOAD ISZERO PUSH2 0xB7D JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x4FFCDA8C DUP3 CALLDATALOAD PUSH1 0x60 DUP5 ADD CALLDATALOAD PUSH2 0x176E PUSH2 0x1685 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x24 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x17B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x17C3 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1828 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9D1 SWAP2 SWAP1 PUSH2 0x37EE JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x65 SLOAD SLT ISZERO PUSH2 0x1863 JUMPI PUSH1 0x65 SLOAD PUSH2 0x9D1 SWAP1 PUSH2 0x3998 JUMP JUMPDEST POP PUSH0 SWAP1 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x18B1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 PUSH1 0xA0 ADD CALLDATALOAD PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x18C6 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH0 SWAP1 POP PUSH2 0x18DE PUSH2 0x95B PUSH1 0xA0 DUP9 ADD CALLDATALOAD DUP8 PUSH2 0x3834 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x1916 JUMPI PUSH2 0x1900 PUSH2 0x18F8 CALLDATASIZE DUP9 SWAP1 SUB DUP9 ADD DUP9 PUSH2 0x387F JUMP JUMPDEST DUP6 DUP6 DUP6 PUSH2 0x297C JUMP JUMPDEST PUSH2 0x1911 DUP2 DUP4 PUSH0 DUP10 PUSH1 0x40 ADD CALLDATALOAD GT PUSH2 0x1F7D JUMP JUMPDEST PUSH2 0x1928 JUMP JUMPDEST PUSH2 0x1928 PUSH2 0x18F8 CALLDATASIZE DUP9 SWAP1 SUB DUP9 ADD DUP9 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x17C3 DUP3 PUSH2 0x9B5 DUP4 DUP9 PUSH2 0x3853 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x194A PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1960 JUMPI PUSH2 0x1960 PUSH2 0xA2D JUMP JUMPDEST PUSH2 0x1968 PUSH2 0xB81 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x19A1 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x19D3 JUMPI PUSH2 0x19D0 DUP2 PUSH32 0x0 PUSH2 0x2B49 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x1A0A JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0xD64 JUMPI PUSH2 0x9D1 DUP2 PUSH32 0x0 PUSH2 0x2B49 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x1A82 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xA0 ADD CALLDATALOAD PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1A97 SWAP2 SWAP1 PUSH2 0x39B2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP2 ADD CALLDATALOAD ISZERO PUSH2 0x1B48 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x4FFCDA8C DUP3 CALLDATALOAD PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x1AEE PUSH2 0x14F0 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x24 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1B31 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1B43 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP2 ADD CALLDATALOAD ISZERO PUSH2 0xE01 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x4FFCDA8C DUP3 CALLDATALOAD PUSH1 0x60 DUP5 ADD CALLDATALOAD PUSH2 0x1B9A PUSH2 0x1685 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x24 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1BDE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xF24 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x686 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6C82BBBF PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xD905777E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1C89 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1C86 SWAP2 DUP2 ADD SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x1 JUMPDEST ISZERO PUSH2 0x1CA0 JUMPI DUP4 DUP2 LT ISZERO PUSH2 0x1C9E JUMPI PUSH1 0x1 SWAP2 POP DUP1 SWAP4 POP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1D0F JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1D0C SWAP2 DUP2 ADD SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1D5E JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x25BCE30047860A48C9D8830DBF31873BE5434F4D28F14A5808A4EA8E35D08296 DUP5 PUSH1 0x40 MLOAD PUSH2 0x1D4E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 PUSH2 0x1D61 JUMP JUMPDEST SWAP2 POP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SLT PUSH2 0x1D7D JUMPI PUSH2 0x1D78 DUP2 PUSH2 0x263F JUMP JUMPDEST PUSH2 0x1DC4 JUMP JUMPDEST PUSH0 PUSH2 0x1D8A PUSH2 0x95B DUP4 PUSH2 0x3998 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x1D97 DUP4 PUSH2 0x3998 JUMP JUMPDEST DUP3 SWAP1 SWAP2 PUSH2 0x1DC0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFC2324B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP POP POP JUMPDEST PUSH2 0xE01 DUP2 PUSH2 0x2D5E JUMP JUMPDEST PUSH0 PUSH0 DUP3 PUSH1 0x65 SLOAD PUSH2 0x1DDD SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1DEB PUSH2 0xB8D PUSH2 0xA0C JUMP JUMPDEST SWAP1 POP DUP1 DUP3 SLT PUSH2 0x1DFF JUMPI POP PUSH1 0x65 SSTORE POP PUSH0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x65 DUP2 SWAP1 SSTORE DUP1 PUSH2 0x1E0E DUP4 PUSH2 0x3998 JUMP JUMPDEST PUSH2 0x1E18 SWAP2 SWAP1 PUSH2 0x3927 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD ISZERO PUSH2 0x1EE3 JUMPI PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xA227DC41 DUP3 PUSH0 ADD MLOAD DUP4 PUSH1 0x40 ADD MLOAD PUSH2 0x1E6B DUP6 PUSH2 0x2877 JUMP JUMPDEST PUSH2 0x1E74 DUP7 PUSH2 0x28BF JUMP JUMPDEST DUP7 PUSH2 0x100 ADD MLOAD PUSH2 0x1E84 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1ECC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1EDE JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP2 ADD MLOAD ISZERO PUSH2 0xE01 JUMPI PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xA227DC41 DUP3 PUSH0 ADD MLOAD DUP4 PUSH1 0x60 ADD MLOAD PUSH2 0x1F2E DUP6 PUSH2 0x2902 JUMP JUMPDEST PUSH2 0x1F37 DUP7 PUSH2 0x2943 JUMP JUMPDEST DUP7 PUSH2 0x120 ADD MLOAD PUSH2 0x1F47 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1BC7 JUMP JUMPDEST DUP3 DUP2 ISZERO PUSH2 0x21A1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x33481FC9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x33481FC9 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1FE8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x200C SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP PUSH2 0x2016 PUSH2 0x9D6 JUMP JUMPDEST PUSH2 0x2020 DUP7 DUP4 PUSH2 0x39B2 JUMP JUMPDEST GT PUSH2 0x20BC JUMPI PUSH1 0x40 MLOAD PUSH4 0x30F7E76B PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH32 0x0 AND SWAP1 PUSH4 0xC3DF9DAC SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2091 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x20B5 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP2 POP PUSH2 0x219F JUMP JUMPDEST PUSH2 0x20C4 PUSH2 0x9D6 JUMP JUMPDEST DUP2 LT ISZERO PUSH2 0x219F JUMPI PUSH0 PUSH2 0x20D4 PUSH2 0x9D6 JUMP JUMPDEST PUSH2 0x20DE DUP8 DUP5 PUSH2 0x39B2 JUMP JUMPDEST PUSH2 0x20E8 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xC3DF9DAC PUSH2 0x2123 DUP4 DUP10 PUSH2 0x3853 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x216D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2191 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH2 0x219B SWAP1 DUP3 PUSH2 0x39B2 JUMP JUMPDEST SWAP3 POP POP JUMPDEST POP JUMPDEST DUP1 ISZERO PUSH2 0x9BA JUMPI PUSH2 0x21AF PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x33481FC9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE DUP3 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x33481FC9 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2213 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2237 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH2 0x2241 SWAP2 SWAP1 PUSH2 0x39B2 JUMP JUMPDEST GT PUSH2 0x22D9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x30F7E76B PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH32 0x0 AND SWAP1 PUSH4 0xC3DF9DAC SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x22B2 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x22D6 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP1 DUP1 ISZERO PUSH2 0xF24 JUMPI PUSH1 0x40 MLOAD PUSH4 0x93F6643 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC06 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x2330 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6427F273 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST POP DUP1 PUSH0 SUB PUSH2 0x233C JUMPI POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2345 PUSH2 0x2753 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x2388 JUMPI PUSH0 PUSH2 0x2362 PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x2386 JUMPI PUSH2 0x2386 DUP2 PUSH2 0x2381 DUP5 DUP7 PUSH2 0x3853 JUMP JUMPDEST PUSH2 0x27C4 JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ADDRESS EQ PUSH2 0xB5D JUMPI PUSH2 0xB5D DUP4 DUP4 PUSH2 0x23A5 PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x2D8E JUMP JUMPDEST PUSH0 PUSH2 0x23BE PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x23F9 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x241D SWAP2 SWAP1 PUSH2 0x39E0 JUMP JUMPDEST PUSH2 0x2428 SWAP1 PUSH1 0xA PUSH2 0x3AE3 JUMP JUMPDEST PUSH2 0x686 SWAP1 PUSH4 0xFFFFFFFF DUP5 AND PUSH2 0x394E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x24BE JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x24B2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x3B3C PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x24DC JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0xE01 DUP2 PUSH2 0x2DC3 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2541 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x253E SWAP2 DUP2 ADD SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2569 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x3B3C PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x2599 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH2 0xB5D DUP4 DUP4 PUSH2 0x2FAD JUMP JUMPDEST PUSH1 0x64 SLOAD PUSH0 SWAP1 PUSH2 0x25BB SWAP1 DUP4 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3002 JUMP JUMPDEST PUSH2 0x686 SWAP1 PUSH2 0x3998 JUMP JUMPDEST PUSH0 PUSH2 0xFFFF DUP3 GT ISZERO PUSH2 0x25F2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x10 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x24DC JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x65 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x2650 SWAP2 SWAP1 PUSH2 0x3927 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x686 JUMP JUMPDEST PUSH2 0x2688 PUSH2 0x30B3 JUMP JUMPDEST PUSH2 0x2690 PUSH2 0x30D8 JUMP JUMPDEST PUSH2 0x24DC PUSH2 0x30E8 JUMP JUMPDEST PUSH2 0x26A6 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x312E JUMP JUMPDEST PUSH2 0x9BA JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 PUSH2 0x686 PUSH2 0x26DA PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2715 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2739 SWAP2 SWAP1 PUSH2 0x39E0 JUMP JUMPDEST PUSH2 0x2744 SWAP1 PUSH1 0xA PUSH2 0x3AE3 JUMP JUMPDEST PUSH2 0x274E SWAP1 DUP5 PUSH2 0x3979 JUMP JUMPDEST PUSH2 0x319B JUMP JUMPDEST PUSH0 PUSH2 0x275C PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x27A0 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9D1 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2815 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2839 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST POP PUSH1 0x32 SLOAD DUP2 GT ISZERO PUSH2 0x285D JUMPI PUSH2 0x2855 PUSH1 0x32 SLOAD DUP3 PUSH2 0x88F SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE POP POP JUMP JUMPDEST DUP1 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x286E SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x686 PUSH8 0xDE0B6B3A7640000 PUSH2 0x288D DUP5 PUSH2 0x31CB JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP5 PUSH1 0x40 ADD MLOAD PUSH2 0x28A3 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH4 0x1E13380 DUP6 PUSH2 0x100 ADD MLOAD PUSH2 0x28B8 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x3002 JUMP JUMPDEST PUSH0 PUSH2 0x28C9 DUP3 PUSH2 0x31CB JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x28E8 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST DUP4 PUSH2 0x100 ADD MLOAD PUSH2 0x28F8 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH2 0x686 SWAP2 SWAP1 PUSH2 0x3979 JUMP JUMPDEST PUSH0 PUSH2 0x686 PUSH8 0xDE0B6B3A7640000 PUSH2 0x2918 DUP5 PUSH2 0x31CB JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP5 PUSH1 0x60 ADD MLOAD PUSH2 0x292E SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH4 0x1E13380 DUP6 PUSH2 0x120 ADD MLOAD PUSH2 0x28B8 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH0 PUSH2 0x294D DUP3 PUSH2 0x31CB JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x296C SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST DUP4 PUSH2 0x120 ADD MLOAD PUSH2 0x28F8 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH1 0x40 DUP5 ADD MLOAD ISZERO PUSH2 0x2A60 JUMPI PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3AD2820B DUP6 PUSH0 ADD MLOAD DUP7 PUSH1 0x40 ADD MLOAD PUSH2 0x29C7 DUP9 PUSH2 0x2877 JUMP JUMPDEST PUSH2 0x29D0 DUP10 PUSH2 0x28BF JUMP JUMPDEST DUP9 DUP11 PUSH2 0x100 ADD MLOAD PUSH2 0x29E1 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST PUSH2 0x29EB SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xC4 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2A49 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2A5B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP5 ADD MLOAD ISZERO PUSH2 0x9BA JUMPI PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3AD2820B DUP6 PUSH0 ADD MLOAD DUP7 PUSH1 0x60 ADD MLOAD PUSH2 0x2AAB DUP9 PUSH2 0x2902 JUMP JUMPDEST PUSH2 0x2AB4 DUP10 PUSH2 0x2943 JUMP JUMPDEST DUP8 DUP11 PUSH2 0x120 ADD MLOAD PUSH2 0x2AC5 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST PUSH2 0x2ACF SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xC4 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2B2D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2B3F JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x33481FC9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x33481FC9 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2B8F JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2BB3 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP DUP1 PUSH0 SUB PUSH2 0x2BC5 JUMPI DUP4 SWAP2 POP POP PUSH2 0x686 JUMP JUMPDEST PUSH0 PUSH2 0x2BD0 DUP6 DUP4 PUSH2 0x31E2 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x65 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x2BE3 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x2BF3 SWAP1 POP ADDRESS DUP3 PUSH2 0x22FC JUMP JUMPDEST DUP1 PUSH2 0x2BFC PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6EB1769F PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2C48 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2C6C SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST LT ISZERO PUSH2 0x2CEE JUMPI PUSH2 0x2C7A PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2CC8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2CEC SWAP2 SWAP1 PUSH2 0x39C5 JUMP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x918344D3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x918344D3 SWAP1 PUSH1 0x44 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2D33 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2D45 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP DUP1 DUP6 PUSH2 0x2D55 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x731C439C5BAE15BE1344EEC709967E046B4F7D3F7E37ABEFFC5247F448FA18BF SWAP1 PUSH1 0x20 ADD PUSH2 0xF86 JUMP JUMPDEST PUSH2 0x2D9B DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x31F1 JUMP JUMPDEST PUSH2 0xB5D JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH2 0x2DCC DUP2 PUSH2 0x3253 JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH0 PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x5E445859 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2E0D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2E31 SWAP2 SWAP1 PUSH2 0x3AF1 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x2E9C JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO JUMPDEST PUSH32 0x0 DUP4 SWAP1 SWAP2 PUSH2 0x2EF0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x13AFEA89 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x2F59 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO JUMPDEST PUSH32 0x0 DUP3 SWAP1 SWAP2 PUSH2 0x17C3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x13AFEA89 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH2 0x2FB6 DUP3 PUSH2 0x3304 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x2FFA JUMPI PUSH2 0xB5D DUP3 DUP3 PUSH2 0x3367 JUMP JUMPDEST PUSH2 0xB7D PUSH2 0x3407 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x300F DUP7 DUP7 PUSH2 0x3426 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x3033 JUMPI DUP4 DUP2 DUP2 PUSH2 0x3029 JUMPI PUSH2 0x3029 PUSH2 0x3965 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x30AC JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x304A JUMPI PUSH2 0x304A PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x3442 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x30BB PUSH2 0x3453 JUMP JUMPDEST PUSH2 0x24DC JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x30E0 PUSH2 0x30B3 JUMP JUMPDEST PUSH2 0x24DC PUSH2 0x346C JUMP JUMPDEST PUSH2 0x30F0 PUSH2 0x30B3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x2710 PUSH1 0x60 SWAP1 SWAP2 ADD MSTORE PUSH1 0x66 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF0 SHL SUB NOT AND PUSH2 0x271 PUSH1 0xE4 SHL OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x318A JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x317E JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP3 GT ISZERO PUSH2 0x25F2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x140 ADD MLOAD DUP3 PUSH2 0x160 ADD MLOAD PUSH2 0x686 SWAP2 SWAP1 PUSH2 0x3B1E JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0x30AC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x3247 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x323B JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x32B9 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x32DD SWAP2 SWAP1 PUSH2 0x37EE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE01 JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x3339 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x3B3C PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x3374 DUP5 DUP5 PUSH2 0x3474 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x3395 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x3395 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x33AA JUMPI PUSH2 0x33A2 PUSH2 0x3487 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x686 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x33D4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x33E7 JUMPI PUSH2 0x33E2 PUSH2 0x34A0 JUMP JUMPDEST PUSH2 0x3400 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x24DC JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 PUSH2 0x345C PUSH2 0x2658 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x24DC PUSH2 0x30B3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x34BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x30AC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xE01 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xE01 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3504 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x350F DUP2 PUSH2 0x34D2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x351F DUP2 PUSH2 0x34E6 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x353B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1C0 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3554 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x355F DUP2 PUSH2 0x34D2 JUMP JUMPDEST SWAP3 POP PUSH2 0x356E DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x352A JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH2 0x1A0 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x35B8 JUMPI PUSH2 0x35B8 PUSH2 0x3580 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x35E7 JUMPI PUSH2 0x35E7 PUSH2 0x3580 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3600 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x360B DUP2 PUSH2 0x34D2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3626 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x3636 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3650 JUMPI PUSH2 0x3650 PUSH2 0x3580 JUMP JUMPDEST PUSH2 0x3663 PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x35BE JUMP JUMPDEST DUP2 DUP2 MSTORE DUP7 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x3677 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP4 POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x36A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x351F DUP2 PUSH2 0x34E6 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x36CA JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x30AC DUP4 DUP4 PUSH2 0x352A JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x36E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x36FC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP1 CALLDATALOAD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x371C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x351F DUP2 PUSH2 0x34D2 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x300 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3775 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x377F DUP5 DUP5 PUSH2 0x352A JUMP JUMPDEST SWAP2 POP PUSH2 0x378F DUP5 PUSH2 0x180 DUP6 ADD PUSH2 0x352A JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x200 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x37AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x37B7 DUP8 DUP8 PUSH2 0x352A JUMP JUMPDEST SWAP5 POP PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP4 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH2 0x1C0 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH2 0x1E0 DUP7 ADD CALLDATALOAD PUSH2 0x37E0 DUP2 PUSH2 0x34D2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x37FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x30AC DUP2 PUSH2 0x34D2 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3819 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB PUSH0 DUP4 SLT DUP1 ISZERO DUP4 DUP4 SGT AND DUP4 DUP4 SLT DUP3 AND OR ISZERO PUSH2 0x3400 JUMPI PUSH2 0x3400 PUSH2 0x3820 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x3820 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x387A JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT DUP1 ISZERO PUSH2 0x3891 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x389A PUSH2 0x3594 JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x3907 PUSH2 0x140 DUP5 ADD PUSH2 0x3866 JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x391A PUSH2 0x160 DUP5 ADD PUSH2 0x3866 JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x3946 JUMPI PUSH2 0x3946 PUSH2 0x3820 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x3820 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH2 0x3993 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x39AC JUMPI PUSH2 0x39AC PUSH2 0x3820 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x3820 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x39D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x30AC DUP2 PUSH2 0x34E6 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x39F0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x30AC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x3A3B JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x3A1F JUMPI PUSH2 0x3A1F PUSH2 0x3820 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x3A2D JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x3A04 JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x3A51 JUMPI POP PUSH1 0x1 PUSH2 0x686 JUMP JUMPDEST DUP2 PUSH2 0x3A5D JUMPI POP PUSH0 PUSH2 0x686 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x3A73 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x3A7D JUMPI PUSH2 0x3A99 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x686 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x3A8E JUMPI PUSH2 0x3A8E PUSH2 0x3820 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x686 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x3ABC JUMPI POP DUP2 DUP2 EXP PUSH2 0x686 JUMP JUMPDEST PUSH2 0x3AC8 PUSH0 NOT DUP5 DUP5 PUSH2 0x3A00 JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x3ADB JUMPI PUSH2 0x3ADB PUSH2 0x3820 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x30AC PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x3A43 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3B02 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x3B0D DUP2 PUSH2 0x34D2 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x351F DUP2 PUSH2 0x34D2 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x3820 JUMP INVALID CALLDATASIZE ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCA2646970667358221220B2 0xD4 0xB2 GAS 0xA7 DUP6 SLOAD 0x1E 0x2D SWAPN 0x1 0xAF SELFDESTRUCT DUP5 DUP15 0xB2 SLT 0xCF CODESIZE SGT 0xD9 SWAP13 0xD4 CODECOPY 0xCB CALLER TSTORE MULMOD CALLDATASIZE 0xBF REVERT CALLDATASIZE PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"1321:28111:74:-:0;;;1084:4:33;1041:48;;7548:161:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7633:11;;-1:-1:-1;;;;;1540:34:73;;1536:65;;1583:18;;-1:-1:-1;;;1583:18:73;;;;;;;;;;;1536:65;1607:22;:20;:22::i;:::-;-1:-1:-1;;;;;1635:25:73;;;;;7652:23:74;;::::1;;::::0;-1:-1:-1;7681:23:74::1;;::::0;-1:-1:-1;1321:28111:74;;7709:422:32;3147:66;7898:15;;;;;;;7894:76;;;7936:23;;-1:-1:-1;;;7936:23:32;;;;;;;;;;;7894:76;7983:14;;-1:-1:-1;;;;;7983:14:32;;;:34;7979:146;;8033:33;;-1:-1:-1;;;;;;8033:33:32;-1:-1:-1;;;;;8033:33:32;;;;;8085:29;;925:50:101;;;8085:29:32;;913:2:101;898:18;8085:29:32;;;;;;;7979:146;7758:373;7709:422::o;14:144:101:-;-1:-1:-1;;;;;102:31:101;;92:42;;82:70;;148:1;145;138:12;163:613;306:6;314;322;375:2;363:9;354:7;350:23;346:32;343:52;;;391:1;388;381:12;343:52;423:9;417:16;442:44;480:5;442:44;:::i;:::-;555:2;540:18;;534:25;505:5;;-1:-1:-1;568:46:101;534:25;568:46;:::i;:::-;685:2;670:18;;664:25;633:7;;-1:-1:-1;698:46:101;664:25;698:46;:::i;:::-;763:7;753:17;;;163:613;;;;;:::o;781:200::-;1321:28111:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@UPGRADE_INTERFACE_VERSION_7238":{"entryPoint":null,"id":7238,"parameterSlots":0,"returnSlots":0},"@__PolicyPoolComponent_init_25530":{"entryPoint":13420,"id":25530,"parameterSlots":0,"returnSlots":0},"@__PremiumsAccount_init_25810":{"entryPoint":9856,"id":25810,"parameterSlots":0,"returnSlots":0},"@__PremiumsAccount_init_unchained_25830":{"entryPoint":12520,"id":25830,"parameterSlots":0,"returnSlots":0},"@__Reserve_init_27444":{"entryPoint":12504,"id":27444,"parameterSlots":0,"returnSlots":0},"@_authorizeUpgrade_25541":{"entryPoint":9438,"id":25541,"parameterSlots":1,"returnSlots":0},"@_balance_27823":{"entryPoint":10067,"id":27823,"parameterSlots":0,"returnSlots":1},"@_borrowFromEtk_26535":{"entryPoint":8061,"id":26535,"parameterSlots":3,"returnSlots":0},"@_checkInitializing_7126":{"entryPoint":12467,"id":7126,"parameterSlots":0,"returnSlots":0},"@_checkNonPayable_6903":{"entryPoint":13319,"id":6903,"parameterSlots":0,"returnSlots":0},"@_checkNotDelegated_7332":{"entryPoint":9718,"id":7332,"parameterSlots":0,"returnSlots":0},"@_checkProxy_7316":{"entryPoint":9272,"id":7316,"parameterSlots":0,"returnSlots":0},"@_deinvest_27730":{"entryPoint":10180,"id":27730,"parameterSlots":2,"returnSlots":0},"@_getInitializableStorage_7217":{"entryPoint":9816,"id":7217,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_7203":{"entryPoint":null,"id":7203,"parameterSlots":0,"returnSlots":1},"@_isInitializing_7194":{"entryPoint":13395,"id":7194,"parameterSlots":0,"returnSlots":1},"@_maxDeficit_26138":{"entryPoint":9635,"id":26138,"parameterSlots":1,"returnSlots":1},"@_payFromPremiums_26580":{"entryPoint":7629,"id":26580,"parameterSlots":1,"returnSlots":1},"@_repayLoan_27331":{"entryPoint":11081,"id":27331,"parameterSlots":2,"returnSlots":1},"@_safeDeInvestAll_27805":{"entryPoint":7205,"id":27805,"parameterSlots":2,"returnSlots":2},"@_safeTransferFrom_9330":{"entryPoint":12590,"id":9330,"parameterSlots":5,"returnSlots":1},"@_safeTransfer_9305":{"entryPoint":12785,"id":9305,"parameterSlots":4,"returnSlots":1},"@_setImplementation_6683":{"entryPoint":13060,"id":6683,"parameterSlots":1,"returnSlots":0},"@_setYieldVault_25949":{"entryPoint":null,"id":25949,"parameterSlots":1,"returnSlots":0},"@_storePurePremiumWon_26594":{"entryPoint":9791,"id":26594,"parameterSlots":1,"returnSlots":0},"@_toAmount_26158":{"entryPoint":9141,"id":26158,"parameterSlots":1,"returnSlots":1},"@_toZeroDecimals_26178":{"entryPoint":9934,"id":26178,"parameterSlots":1,"returnSlots":1},"@_transferTo_27518":{"entryPoint":8956,"id":27518,"parameterSlots":2,"returnSlots":0},"@_unlockScrWithRefund_27170":{"entryPoint":10620,"id":27170,"parameterSlots":4,"returnSlots":0},"@_unlockScr_27088":{"entryPoint":7712,"id":27088,"parameterSlots":1,"returnSlots":0},"@_upgradeToAndCallUUPS_7383":{"entryPoint":9447,"id":7383,"parameterSlots":2,"returnSlots":0},"@_upgradeValidations_25558":{"entryPoint":12883,"id":25558,"parameterSlots":1,"returnSlots":0},"@_upgradeValidations_25900":{"entryPoint":11715,"id":25900,"parameterSlots":1,"returnSlots":0},"@_yieldEarnings_25997":{"entryPoint":7528,"id":25997,"parameterSlots":1,"returnSlots":0},"@_yieldEarnings_27552":{"entryPoint":11614,"id":27552,"parameterSlots":1,"returnSlots":0},"@activePurePremiums_26023":{"entryPoint":null,"id":26023,"parameterSlots":0,"returnSlots":1},"@borrowedActivePP_26058":{"entryPoint":6220,"id":26058,"parameterSlots":0,"returnSlots":1},"@bubbleRevert_10900":{"entryPoint":13472,"id":10900,"parameterSlots":0,"returnSlots":0},"@currency_25603":{"entryPoint":6091,"id":25603,"parameterSlots":0,"returnSlots":1},"@deficitRatio_26193":{"entryPoint":2572,"id":26193,"parameterSlots":0,"returnSlots":1},"@delegatecallNoReturn_10862":{"entryPoint":13428,"id":10862,"parameterSlots":2,"returnSlots":1},"@depositIntoYieldVault_27946":{"entryPoint":4616,"id":27946,"parameterSlots":1,"returnSlots":0},"@duration_22727":{"entryPoint":12747,"id":22727,"parameterSlots":1,"returnSlots":1},"@etks_26119":{"entryPoint":null,"id":26119,"parameterSlots":0,"returnSlots":2},"@functionDelegateCall_9894":{"entryPoint":13159,"id":9894,"parameterSlots":2,"returnSlots":1},"@fundsAvailable_26084":{"entryPoint":2945,"id":26084,"parameterSlots":0,"returnSlots":1},"@getAddressSlot_11669":{"entryPoint":null,"id":11669,"parameterSlots":1,"returnSlots":1},"@getImplementation_6656":{"entryPoint":null,"id":6656,"parameterSlots":0,"returnSlots":1},"@initialize_25797":{"entryPoint":3636,"id":25797,"parameterSlots":0,"returnSlots":0},"@investedInYV_27541":{"entryPoint":null,"id":27541,"parameterSlots":0,"returnSlots":1},"@jrAccruedInterest_22661":{"entryPoint":10431,"id":22661,"parameterSlots":1,"returnSlots":1},"@jrInterestRate_22636":{"entryPoint":10359,"id":22636,"parameterSlots":1,"returnSlots":1},"@jrLoanLimit_26215":{"entryPoint":2518,"id":26215,"parameterSlots":0,"returnSlots":1},"@juniorEtk_26104":{"entryPoint":null,"id":26104,"parameterSlots":0,"returnSlots":1},"@min_14599":{"entryPoint":12770,"id":14599,"parameterSlots":2,"returnSlots":1},"@mul512_14312":{"entryPoint":13350,"id":14312,"parameterSlots":2,"returnSlots":2},"@mulDiv_14799":{"entryPoint":12290,"id":14799,"parameterSlots":3,"returnSlots":1},"@panic_11416":{"entryPoint":13378,"id":11416,"parameterSlots":1,"returnSlots":0},"@policyCancelled_26955":{"entryPoint":6248,"id":26955,"parameterSlots":5,"returnSlots":0},"@policyCreated_26764":{"entryPoint":6713,"id":26764,"parameterSlots":1,"returnSlots":0},"@policyExpired_27356":{"entryPoint":3454,"id":27356,"parameterSlots":1,"returnSlots":0},"@policyPool_25592":{"entryPoint":null,"id":25592,"parameterSlots":0,"returnSlots":1},"@policyReplaced_26880":{"entryPoint":5166,"id":26880,"parameterSlots":2,"returnSlots":0},"@policyResolvedWithPayout_27020":{"entryPoint":2277,"id":27020,"parameterSlots":3,"returnSlots":0},"@proxiableUUID_7274":{"entryPoint":3403,"id":7274,"parameterSlots":0,"returnSlots":1},"@purePremiums_26014":{"entryPoint":2496,"id":26014,"parameterSlots":0,"returnSlots":1},"@receiveGrant_26622":{"entryPoint":3883,"id":26622,"parameterSlots":1,"returnSlots":0},"@recordEarnings_28009":{"entryPoint":2605,"id":28009,"parameterSlots":0,"returnSlots":0},"@repayLoans_27240":{"entryPoint":6454,"id":27240,"parameterSlots":0,"returnSlots":1},"@returnDataSize_10886":{"entryPoint":null,"id":10886,"parameterSlots":0,"returnSlots":1},"@returnData_10894":{"entryPoint":13447,"id":10894,"parameterSlots":0,"returnSlots":1},"@safeTransferFrom_8979":{"entryPoint":9880,"id":8979,"parameterSlots":4,"returnSlots":0},"@safeTransfer_8948":{"entryPoint":11662,"id":8948,"parameterSlots":3,"returnSlots":0},"@seniorEtk_26094":{"entryPoint":null,"id":26094,"parameterSlots":0,"returnSlots":1},"@setDeficitRatio_26347":{"entryPoint":2975,"id":26347,"parameterSlots":2,"returnSlots":0},"@setLoanLimits_26428":{"entryPoint":3985,"id":26428,"parameterSlots":2,"returnSlots":0},"@setYieldVault_27683":{"entryPoint":1676,"id":27683,"parameterSlots":2,"returnSlots":0},"@srAccruedInterest_22711":{"entryPoint":10563,"id":22711,"parameterSlots":1,"returnSlots":1},"@srInterestRate_22686":{"entryPoint":10498,"id":22686,"parameterSlots":1,"returnSlots":1},"@srLoanLimit_26237":{"entryPoint":3588,"id":26237,"parameterSlots":0,"returnSlots":1},"@supportsInterface_25582":{"entryPoint":7152,"id":25582,"parameterSlots":1,"returnSlots":1},"@supportsInterface_25922":{"entryPoint":1633,"id":25922,"parameterSlots":1,"returnSlots":1},"@surplus_26067":{"entryPoint":null,"id":26067,"parameterSlots":0,"returnSlots":1},"@ternary_14561":{"entryPoint":null,"id":14561,"parameterSlots":3,"returnSlots":1},"@toUint16_16781":{"entryPoint":9668,"id":16781,"parameterSlots":1,"returnSlots":1},"@toUint32_16725":{"entryPoint":12699,"id":16725,"parameterSlots":1,"returnSlots":1},"@toUint_17678":{"entryPoint":null,"id":17678,"parameterSlots":1,"returnSlots":1},"@upgradeToAndCall_6719":{"entryPoint":12205,"id":6719,"parameterSlots":2,"returnSlots":0},"@upgradeToAndCall_7294":{"entryPoint":2914,"id":7294,"parameterSlots":2,"returnSlots":0},"@withdrawFromYieldVault_27866":{"entryPoint":5006,"id":27866,"parameterSlots":1,"returnSlots":1},"@withdrawWonPremiums_26714":{"entryPoint":4340,"id":26714,"parameterSlots":2,"returnSlots":1},"@wonPurePremiums_26040":{"entryPoint":3431,"id":26040,"parameterSlots":0,"returnSlots":1},"@yieldVault_25934":{"entryPoint":null,"id":25934,"parameterSlots":0,"returnSlots":1},"abi_decode_struct_PolicyData_calldata":{"entryPoint":13610,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":14318,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_bytes_memory_ptr":{"entryPoint":13807,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_struct$_PolicyData_$22256_calldata_ptrt_uint256":{"entryPoint":13633,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":14789,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":13483,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC4626_$6400t_bool":{"entryPoint":13555,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IEToken_$28869t_contract$_IEToken_$28869_fromMemory":{"entryPoint":15089,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptr":{"entryPoint":14009,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_struct$_PolicyData_$22256_calldata_ptr":{"entryPoint":14179,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_uint256t_uint256t_uint256t_address":{"entryPoint":14232,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptr":{"entryPoint":14463,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":14036,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":14345,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_address":{"entryPoint":14091,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_bool":{"entryPoint":13974,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_uint256":{"entryPoint":14059,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint8_fromMemory":{"entryPoint":14816,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint40":{"entryPoint":14438,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool_t_uint256__to_t_bool_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC4626_$6400__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IEToken_$28869__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IEToken_$28869_t_contract$_IEToken_$28869__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_int256_t_int256__to_t_int256_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_16_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_32_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14126,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_bool__to_t_uint256_t_uint256_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_int256__to_t_uint256_t_uint256_t_uint256_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_int256_t_address_t_uint256__to_t_uint256_t_uint256_t_uint256_t_int256_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":7,"returnSlots":1},"allocate_memory":{"entryPoint":13758,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_memory_1999":{"entryPoint":13716,"id":null,"parameterSlots":0,"returnSlots":1},"checked_add_t_int256":{"entryPoint":14631,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":14770,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":14713,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_helper":{"entryPoint":14848,"id":null,"parameterSlots":3,"returnSlots":2},"checked_exp_t_uint256_t_uint8":{"entryPoint":15075,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_unsigned":{"entryPoint":14915,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":14670,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_int256":{"entryPoint":14388,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":14419,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint40":{"entryPoint":15134,"id":null,"parameterSlots":2,"returnSlots":1},"negate_t_int256":{"entryPoint":14744,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":14368,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":14693,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":13696,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_bool":{"entryPoint":13542,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_contract_IERC4626":{"entryPoint":13522,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:20272:101","nodeType":"YulBlock","src":"0:20272:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"83:217:101","nodeType":"YulBlock","src":"83:217:101","statements":[{"body":{"nativeSrc":"129:16:101","nodeType":"YulBlock","src":"129:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"138:1:101","nodeType":"YulLiteral","src":"138:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"141:1:101","nodeType":"YulLiteral","src":"141:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"131:6:101","nodeType":"YulIdentifier","src":"131:6:101"},"nativeSrc":"131:12:101","nodeType":"YulFunctionCall","src":"131:12:101"},"nativeSrc":"131:12:101","nodeType":"YulExpressionStatement","src":"131:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"104:7:101","nodeType":"YulIdentifier","src":"104:7:101"},{"name":"headStart","nativeSrc":"113:9:101","nodeType":"YulIdentifier","src":"113:9:101"}],"functionName":{"name":"sub","nativeSrc":"100:3:101","nodeType":"YulIdentifier","src":"100:3:101"},"nativeSrc":"100:23:101","nodeType":"YulFunctionCall","src":"100:23:101"},{"kind":"number","nativeSrc":"125:2:101","nodeType":"YulLiteral","src":"125:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"96:3:101","nodeType":"YulIdentifier","src":"96:3:101"},"nativeSrc":"96:32:101","nodeType":"YulFunctionCall","src":"96:32:101"},"nativeSrc":"93:52:101","nodeType":"YulIf","src":"93:52:101"},{"nativeSrc":"154:36:101","nodeType":"YulVariableDeclaration","src":"154:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"180:9:101","nodeType":"YulIdentifier","src":"180:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"167:12:101","nodeType":"YulIdentifier","src":"167:12:101"},"nativeSrc":"167:23:101","nodeType":"YulFunctionCall","src":"167:23:101"},"variables":[{"name":"value","nativeSrc":"158:5:101","nodeType":"YulTypedName","src":"158:5:101","type":""}]},{"body":{"nativeSrc":"254:16:101","nodeType":"YulBlock","src":"254:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:101","nodeType":"YulLiteral","src":"263:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:101","nodeType":"YulLiteral","src":"266:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:101","nodeType":"YulIdentifier","src":"256:6:101"},"nativeSrc":"256:12:101","nodeType":"YulFunctionCall","src":"256:12:101"},"nativeSrc":"256:12:101","nodeType":"YulExpressionStatement","src":"256:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"212:5:101","nodeType":"YulIdentifier","src":"212:5:101"},{"arguments":[{"name":"value","nativeSrc":"223:5:101","nodeType":"YulIdentifier","src":"223:5:101"},{"arguments":[{"kind":"number","nativeSrc":"234:3:101","nodeType":"YulLiteral","src":"234:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"239:10:101","nodeType":"YulLiteral","src":"239:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"230:3:101","nodeType":"YulIdentifier","src":"230:3:101"},"nativeSrc":"230:20:101","nodeType":"YulFunctionCall","src":"230:20:101"}],"functionName":{"name":"and","nativeSrc":"219:3:101","nodeType":"YulIdentifier","src":"219:3:101"},"nativeSrc":"219:32:101","nodeType":"YulFunctionCall","src":"219:32:101"}],"functionName":{"name":"eq","nativeSrc":"209:2:101","nodeType":"YulIdentifier","src":"209:2:101"},"nativeSrc":"209:43:101","nodeType":"YulFunctionCall","src":"209:43:101"}],"functionName":{"name":"iszero","nativeSrc":"202:6:101","nodeType":"YulIdentifier","src":"202:6:101"},"nativeSrc":"202:51:101","nodeType":"YulFunctionCall","src":"202:51:101"},"nativeSrc":"199:71:101","nodeType":"YulIf","src":"199:71:101"},{"nativeSrc":"279:15:101","nodeType":"YulAssignment","src":"279:15:101","value":{"name":"value","nativeSrc":"289:5:101","nodeType":"YulIdentifier","src":"289:5:101"},"variableNames":[{"name":"value0","nativeSrc":"279:6:101","nodeType":"YulIdentifier","src":"279:6:101"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14:286:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"49:9:101","nodeType":"YulTypedName","src":"49:9:101","type":""},{"name":"dataEnd","nativeSrc":"60:7:101","nodeType":"YulTypedName","src":"60:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"72:6:101","nodeType":"YulTypedName","src":"72:6:101","type":""}],"src":"14:286:101"},{"body":{"nativeSrc":"400:92:101","nodeType":"YulBlock","src":"400:92:101","statements":[{"nativeSrc":"410:26:101","nodeType":"YulAssignment","src":"410:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:101","nodeType":"YulIdentifier","src":"422:9:101"},{"kind":"number","nativeSrc":"433:2:101","nodeType":"YulLiteral","src":"433:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"418:3:101","nodeType":"YulIdentifier","src":"418:3:101"},"nativeSrc":"418:18:101","nodeType":"YulFunctionCall","src":"418:18:101"},"variableNames":[{"name":"tail","nativeSrc":"410:4:101","nodeType":"YulIdentifier","src":"410:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"452:9:101","nodeType":"YulIdentifier","src":"452:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"477:6:101","nodeType":"YulIdentifier","src":"477:6:101"}],"functionName":{"name":"iszero","nativeSrc":"470:6:101","nodeType":"YulIdentifier","src":"470:6:101"},"nativeSrc":"470:14:101","nodeType":"YulFunctionCall","src":"470:14:101"}],"functionName":{"name":"iszero","nativeSrc":"463:6:101","nodeType":"YulIdentifier","src":"463:6:101"},"nativeSrc":"463:22:101","nodeType":"YulFunctionCall","src":"463:22:101"}],"functionName":{"name":"mstore","nativeSrc":"445:6:101","nodeType":"YulIdentifier","src":"445:6:101"},"nativeSrc":"445:41:101","nodeType":"YulFunctionCall","src":"445:41:101"},"nativeSrc":"445:41:101","nodeType":"YulExpressionStatement","src":"445:41:101"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"305:187:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"369:9:101","nodeType":"YulTypedName","src":"369:9:101","type":""},{"name":"value0","nativeSrc":"380:6:101","nodeType":"YulTypedName","src":"380:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"391:4:101","nodeType":"YulTypedName","src":"391:4:101","type":""}],"src":"305:187:101"},{"body":{"nativeSrc":"596:76:101","nodeType":"YulBlock","src":"596:76:101","statements":[{"nativeSrc":"606:26:101","nodeType":"YulAssignment","src":"606:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"618:9:101","nodeType":"YulIdentifier","src":"618:9:101"},{"kind":"number","nativeSrc":"629:2:101","nodeType":"YulLiteral","src":"629:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"614:3:101","nodeType":"YulIdentifier","src":"614:3:101"},"nativeSrc":"614:18:101","nodeType":"YulFunctionCall","src":"614:18:101"},"variableNames":[{"name":"tail","nativeSrc":"606:4:101","nodeType":"YulIdentifier","src":"606:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"648:9:101","nodeType":"YulIdentifier","src":"648:9:101"},{"name":"value0","nativeSrc":"659:6:101","nodeType":"YulIdentifier","src":"659:6:101"}],"functionName":{"name":"mstore","nativeSrc":"641:6:101","nodeType":"YulIdentifier","src":"641:6:101"},"nativeSrc":"641:25:101","nodeType":"YulFunctionCall","src":"641:25:101"},"nativeSrc":"641:25:101","nodeType":"YulExpressionStatement","src":"641:25:101"}]},"name":"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed","nativeSrc":"497:175:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"565:9:101","nodeType":"YulTypedName","src":"565:9:101","type":""},{"name":"value0","nativeSrc":"576:6:101","nodeType":"YulTypedName","src":"576:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"587:4:101","nodeType":"YulTypedName","src":"587:4:101","type":""}],"src":"497:175:101"},{"body":{"nativeSrc":"732:86:101","nodeType":"YulBlock","src":"732:86:101","statements":[{"body":{"nativeSrc":"796:16:101","nodeType":"YulBlock","src":"796:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"805:1:101","nodeType":"YulLiteral","src":"805:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"808:1:101","nodeType":"YulLiteral","src":"808:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"798:6:101","nodeType":"YulIdentifier","src":"798:6:101"},"nativeSrc":"798:12:101","nodeType":"YulFunctionCall","src":"798:12:101"},"nativeSrc":"798:12:101","nodeType":"YulExpressionStatement","src":"798:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"755:5:101","nodeType":"YulIdentifier","src":"755:5:101"},{"arguments":[{"name":"value","nativeSrc":"766:5:101","nodeType":"YulIdentifier","src":"766:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"781:3:101","nodeType":"YulLiteral","src":"781:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"786:1:101","nodeType":"YulLiteral","src":"786:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"777:3:101","nodeType":"YulIdentifier","src":"777:3:101"},"nativeSrc":"777:11:101","nodeType":"YulFunctionCall","src":"777:11:101"},{"kind":"number","nativeSrc":"790:1:101","nodeType":"YulLiteral","src":"790:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"773:3:101","nodeType":"YulIdentifier","src":"773:3:101"},"nativeSrc":"773:19:101","nodeType":"YulFunctionCall","src":"773:19:101"}],"functionName":{"name":"and","nativeSrc":"762:3:101","nodeType":"YulIdentifier","src":"762:3:101"},"nativeSrc":"762:31:101","nodeType":"YulFunctionCall","src":"762:31:101"}],"functionName":{"name":"eq","nativeSrc":"752:2:101","nodeType":"YulIdentifier","src":"752:2:101"},"nativeSrc":"752:42:101","nodeType":"YulFunctionCall","src":"752:42:101"}],"functionName":{"name":"iszero","nativeSrc":"745:6:101","nodeType":"YulIdentifier","src":"745:6:101"},"nativeSrc":"745:50:101","nodeType":"YulFunctionCall","src":"745:50:101"},"nativeSrc":"742:70:101","nodeType":"YulIf","src":"742:70:101"}]},"name":"validator_revert_contract_IERC4626","nativeSrc":"677:141:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"721:5:101","nodeType":"YulTypedName","src":"721:5:101","type":""}],"src":"677:141:101"},{"body":{"nativeSrc":"865:76:101","nodeType":"YulBlock","src":"865:76:101","statements":[{"body":{"nativeSrc":"919:16:101","nodeType":"YulBlock","src":"919:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"928:1:101","nodeType":"YulLiteral","src":"928:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"931:1:101","nodeType":"YulLiteral","src":"931:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"921:6:101","nodeType":"YulIdentifier","src":"921:6:101"},"nativeSrc":"921:12:101","nodeType":"YulFunctionCall","src":"921:12:101"},"nativeSrc":"921:12:101","nodeType":"YulExpressionStatement","src":"921:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"888:5:101","nodeType":"YulIdentifier","src":"888:5:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"909:5:101","nodeType":"YulIdentifier","src":"909:5:101"}],"functionName":{"name":"iszero","nativeSrc":"902:6:101","nodeType":"YulIdentifier","src":"902:6:101"},"nativeSrc":"902:13:101","nodeType":"YulFunctionCall","src":"902:13:101"}],"functionName":{"name":"iszero","nativeSrc":"895:6:101","nodeType":"YulIdentifier","src":"895:6:101"},"nativeSrc":"895:21:101","nodeType":"YulFunctionCall","src":"895:21:101"}],"functionName":{"name":"eq","nativeSrc":"885:2:101","nodeType":"YulIdentifier","src":"885:2:101"},"nativeSrc":"885:32:101","nodeType":"YulFunctionCall","src":"885:32:101"}],"functionName":{"name":"iszero","nativeSrc":"878:6:101","nodeType":"YulIdentifier","src":"878:6:101"},"nativeSrc":"878:40:101","nodeType":"YulFunctionCall","src":"878:40:101"},"nativeSrc":"875:60:101","nodeType":"YulIf","src":"875:60:101"}]},"name":"validator_revert_bool","nativeSrc":"823:118:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"854:5:101","nodeType":"YulTypedName","src":"854:5:101","type":""}],"src":"823:118:101"},{"body":{"nativeSrc":"1047:308:101","nodeType":"YulBlock","src":"1047:308:101","statements":[{"body":{"nativeSrc":"1093:16:101","nodeType":"YulBlock","src":"1093:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1102:1:101","nodeType":"YulLiteral","src":"1102:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1105:1:101","nodeType":"YulLiteral","src":"1105:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1095:6:101","nodeType":"YulIdentifier","src":"1095:6:101"},"nativeSrc":"1095:12:101","nodeType":"YulFunctionCall","src":"1095:12:101"},"nativeSrc":"1095:12:101","nodeType":"YulExpressionStatement","src":"1095:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1068:7:101","nodeType":"YulIdentifier","src":"1068:7:101"},{"name":"headStart","nativeSrc":"1077:9:101","nodeType":"YulIdentifier","src":"1077:9:101"}],"functionName":{"name":"sub","nativeSrc":"1064:3:101","nodeType":"YulIdentifier","src":"1064:3:101"},"nativeSrc":"1064:23:101","nodeType":"YulFunctionCall","src":"1064:23:101"},{"kind":"number","nativeSrc":"1089:2:101","nodeType":"YulLiteral","src":"1089:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1060:3:101","nodeType":"YulIdentifier","src":"1060:3:101"},"nativeSrc":"1060:32:101","nodeType":"YulFunctionCall","src":"1060:32:101"},"nativeSrc":"1057:52:101","nodeType":"YulIf","src":"1057:52:101"},{"nativeSrc":"1118:36:101","nodeType":"YulVariableDeclaration","src":"1118:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1144:9:101","nodeType":"YulIdentifier","src":"1144:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"1131:12:101","nodeType":"YulIdentifier","src":"1131:12:101"},"nativeSrc":"1131:23:101","nodeType":"YulFunctionCall","src":"1131:23:101"},"variables":[{"name":"value","nativeSrc":"1122:5:101","nodeType":"YulTypedName","src":"1122:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1198:5:101","nodeType":"YulIdentifier","src":"1198:5:101"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"1163:34:101","nodeType":"YulIdentifier","src":"1163:34:101"},"nativeSrc":"1163:41:101","nodeType":"YulFunctionCall","src":"1163:41:101"},"nativeSrc":"1163:41:101","nodeType":"YulExpressionStatement","src":"1163:41:101"},{"nativeSrc":"1213:15:101","nodeType":"YulAssignment","src":"1213:15:101","value":{"name":"value","nativeSrc":"1223:5:101","nodeType":"YulIdentifier","src":"1223:5:101"},"variableNames":[{"name":"value0","nativeSrc":"1213:6:101","nodeType":"YulIdentifier","src":"1213:6:101"}]},{"nativeSrc":"1237:47:101","nodeType":"YulVariableDeclaration","src":"1237:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1269:9:101","nodeType":"YulIdentifier","src":"1269:9:101"},{"kind":"number","nativeSrc":"1280:2:101","nodeType":"YulLiteral","src":"1280:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1265:3:101","nodeType":"YulIdentifier","src":"1265:3:101"},"nativeSrc":"1265:18:101","nodeType":"YulFunctionCall","src":"1265:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"1252:12:101","nodeType":"YulIdentifier","src":"1252:12:101"},"nativeSrc":"1252:32:101","nodeType":"YulFunctionCall","src":"1252:32:101"},"variables":[{"name":"value_1","nativeSrc":"1241:7:101","nodeType":"YulTypedName","src":"1241:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"1315:7:101","nodeType":"YulIdentifier","src":"1315:7:101"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"1293:21:101","nodeType":"YulIdentifier","src":"1293:21:101"},"nativeSrc":"1293:30:101","nodeType":"YulFunctionCall","src":"1293:30:101"},"nativeSrc":"1293:30:101","nodeType":"YulExpressionStatement","src":"1293:30:101"},{"nativeSrc":"1332:17:101","nodeType":"YulAssignment","src":"1332:17:101","value":{"name":"value_1","nativeSrc":"1342:7:101","nodeType":"YulIdentifier","src":"1342:7:101"},"variableNames":[{"name":"value1","nativeSrc":"1332:6:101","nodeType":"YulIdentifier","src":"1332:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IERC4626_$6400t_bool","nativeSrc":"946:409:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1005:9:101","nodeType":"YulTypedName","src":"1005:9:101","type":""},{"name":"dataEnd","nativeSrc":"1016:7:101","nodeType":"YulTypedName","src":"1016:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1028:6:101","nodeType":"YulTypedName","src":"1028:6:101","type":""},{"name":"value1","nativeSrc":"1036:6:101","nodeType":"YulTypedName","src":"1036:6:101","type":""}],"src":"946:409:101"},{"body":{"nativeSrc":"1461:76:101","nodeType":"YulBlock","src":"1461:76:101","statements":[{"nativeSrc":"1471:26:101","nodeType":"YulAssignment","src":"1471:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1483:9:101","nodeType":"YulIdentifier","src":"1483:9:101"},{"kind":"number","nativeSrc":"1494:2:101","nodeType":"YulLiteral","src":"1494:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1479:3:101","nodeType":"YulIdentifier","src":"1479:3:101"},"nativeSrc":"1479:18:101","nodeType":"YulFunctionCall","src":"1479:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1471:4:101","nodeType":"YulIdentifier","src":"1471:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1513:9:101","nodeType":"YulIdentifier","src":"1513:9:101"},{"name":"value0","nativeSrc":"1524:6:101","nodeType":"YulIdentifier","src":"1524:6:101"}],"functionName":{"name":"mstore","nativeSrc":"1506:6:101","nodeType":"YulIdentifier","src":"1506:6:101"},"nativeSrc":"1506:25:101","nodeType":"YulFunctionCall","src":"1506:25:101"},"nativeSrc":"1506:25:101","nodeType":"YulExpressionStatement","src":"1506:25:101"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"1360:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1430:9:101","nodeType":"YulTypedName","src":"1430:9:101","type":""},{"name":"value0","nativeSrc":"1441:6:101","nodeType":"YulTypedName","src":"1441:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1452:4:101","nodeType":"YulTypedName","src":"1452:4:101","type":""}],"src":"1360:177:101"},{"body":{"nativeSrc":"1615:86:101","nodeType":"YulBlock","src":"1615:86:101","statements":[{"body":{"nativeSrc":"1655:16:101","nodeType":"YulBlock","src":"1655:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1664:1:101","nodeType":"YulLiteral","src":"1664:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1667:1:101","nodeType":"YulLiteral","src":"1667:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1657:6:101","nodeType":"YulIdentifier","src":"1657:6:101"},"nativeSrc":"1657:12:101","nodeType":"YulFunctionCall","src":"1657:12:101"},"nativeSrc":"1657:12:101","nodeType":"YulExpressionStatement","src":"1657:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"1636:3:101","nodeType":"YulIdentifier","src":"1636:3:101"},{"name":"offset","nativeSrc":"1641:6:101","nodeType":"YulIdentifier","src":"1641:6:101"}],"functionName":{"name":"sub","nativeSrc":"1632:3:101","nodeType":"YulIdentifier","src":"1632:3:101"},"nativeSrc":"1632:16:101","nodeType":"YulFunctionCall","src":"1632:16:101"},{"kind":"number","nativeSrc":"1650:3:101","nodeType":"YulLiteral","src":"1650:3:101","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"1628:3:101","nodeType":"YulIdentifier","src":"1628:3:101"},"nativeSrc":"1628:26:101","nodeType":"YulFunctionCall","src":"1628:26:101"},"nativeSrc":"1625:46:101","nodeType":"YulIf","src":"1625:46:101"},{"nativeSrc":"1680:15:101","nodeType":"YulAssignment","src":"1680:15:101","value":{"name":"offset","nativeSrc":"1689:6:101","nodeType":"YulIdentifier","src":"1689:6:101"},"variableNames":[{"name":"value","nativeSrc":"1680:5:101","nodeType":"YulIdentifier","src":"1680:5:101"}]}]},"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"1542:159:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"1589:6:101","nodeType":"YulTypedName","src":"1589:6:101","type":""},{"name":"end","nativeSrc":"1597:3:101","nodeType":"YulTypedName","src":"1597:3:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"1605:5:101","nodeType":"YulTypedName","src":"1605:5:101","type":""}],"src":"1542:159:101"},{"body":{"nativeSrc":"1841:377:101","nodeType":"YulBlock","src":"1841:377:101","statements":[{"body":{"nativeSrc":"1888:16:101","nodeType":"YulBlock","src":"1888:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1897:1:101","nodeType":"YulLiteral","src":"1897:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1900:1:101","nodeType":"YulLiteral","src":"1900:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1890:6:101","nodeType":"YulIdentifier","src":"1890:6:101"},"nativeSrc":"1890:12:101","nodeType":"YulFunctionCall","src":"1890:12:101"},"nativeSrc":"1890:12:101","nodeType":"YulExpressionStatement","src":"1890:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1862:7:101","nodeType":"YulIdentifier","src":"1862:7:101"},{"name":"headStart","nativeSrc":"1871:9:101","nodeType":"YulIdentifier","src":"1871:9:101"}],"functionName":{"name":"sub","nativeSrc":"1858:3:101","nodeType":"YulIdentifier","src":"1858:3:101"},"nativeSrc":"1858:23:101","nodeType":"YulFunctionCall","src":"1858:23:101"},{"kind":"number","nativeSrc":"1883:3:101","nodeType":"YulLiteral","src":"1883:3:101","type":"","value":"448"}],"functionName":{"name":"slt","nativeSrc":"1854:3:101","nodeType":"YulIdentifier","src":"1854:3:101"},"nativeSrc":"1854:33:101","nodeType":"YulFunctionCall","src":"1854:33:101"},"nativeSrc":"1851:53:101","nodeType":"YulIf","src":"1851:53:101"},{"nativeSrc":"1913:36:101","nodeType":"YulVariableDeclaration","src":"1913:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1939:9:101","nodeType":"YulIdentifier","src":"1939:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"1926:12:101","nodeType":"YulIdentifier","src":"1926:12:101"},"nativeSrc":"1926:23:101","nodeType":"YulFunctionCall","src":"1926:23:101"},"variables":[{"name":"value","nativeSrc":"1917:5:101","nodeType":"YulTypedName","src":"1917:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1993:5:101","nodeType":"YulIdentifier","src":"1993:5:101"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"1958:34:101","nodeType":"YulIdentifier","src":"1958:34:101"},"nativeSrc":"1958:41:101","nodeType":"YulFunctionCall","src":"1958:41:101"},"nativeSrc":"1958:41:101","nodeType":"YulExpressionStatement","src":"1958:41:101"},{"nativeSrc":"2008:15:101","nodeType":"YulAssignment","src":"2008:15:101","value":{"name":"value","nativeSrc":"2018:5:101","nodeType":"YulIdentifier","src":"2018:5:101"},"variableNames":[{"name":"value0","nativeSrc":"2008:6:101","nodeType":"YulIdentifier","src":"2008:6:101"}]},{"nativeSrc":"2032:76:101","nodeType":"YulAssignment","src":"2032:76:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2084:9:101","nodeType":"YulIdentifier","src":"2084:9:101"},{"kind":"number","nativeSrc":"2095:2:101","nodeType":"YulLiteral","src":"2095:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2080:3:101","nodeType":"YulIdentifier","src":"2080:3:101"},"nativeSrc":"2080:18:101","nodeType":"YulFunctionCall","src":"2080:18:101"},{"name":"dataEnd","nativeSrc":"2100:7:101","nodeType":"YulIdentifier","src":"2100:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"2042:37:101","nodeType":"YulIdentifier","src":"2042:37:101"},"nativeSrc":"2042:66:101","nodeType":"YulFunctionCall","src":"2042:66:101"},"variableNames":[{"name":"value1","nativeSrc":"2032:6:101","nodeType":"YulIdentifier","src":"2032:6:101"}]},{"nativeSrc":"2117:16:101","nodeType":"YulVariableDeclaration","src":"2117:16:101","value":{"kind":"number","nativeSrc":"2132:1:101","nodeType":"YulLiteral","src":"2132:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"2121:7:101","nodeType":"YulTypedName","src":"2121:7:101","type":""}]},{"nativeSrc":"2142:44:101","nodeType":"YulAssignment","src":"2142:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2170:9:101","nodeType":"YulIdentifier","src":"2170:9:101"},{"kind":"number","nativeSrc":"2181:3:101","nodeType":"YulLiteral","src":"2181:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"2166:3:101","nodeType":"YulIdentifier","src":"2166:3:101"},"nativeSrc":"2166:19:101","nodeType":"YulFunctionCall","src":"2166:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"2153:12:101","nodeType":"YulIdentifier","src":"2153:12:101"},"nativeSrc":"2153:33:101","nodeType":"YulFunctionCall","src":"2153:33:101"},"variableNames":[{"name":"value_1","nativeSrc":"2142:7:101","nodeType":"YulIdentifier","src":"2142:7:101"}]},{"nativeSrc":"2195:17:101","nodeType":"YulAssignment","src":"2195:17:101","value":{"name":"value_1","nativeSrc":"2205:7:101","nodeType":"YulIdentifier","src":"2205:7:101"},"variableNames":[{"name":"value2","nativeSrc":"2195:6:101","nodeType":"YulIdentifier","src":"2195:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_struct$_PolicyData_$22256_calldata_ptrt_uint256","nativeSrc":"1706:512:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1791:9:101","nodeType":"YulTypedName","src":"1791:9:101","type":""},{"name":"dataEnd","nativeSrc":"1802:7:101","nodeType":"YulTypedName","src":"1802:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1814:6:101","nodeType":"YulTypedName","src":"1814:6:101","type":""},{"name":"value1","nativeSrc":"1822:6:101","nodeType":"YulTypedName","src":"1822:6:101","type":""},{"name":"value2","nativeSrc":"1830:6:101","nodeType":"YulTypedName","src":"1830:6:101","type":""}],"src":"1706:512:101"},{"body":{"nativeSrc":"2345:102:101","nodeType":"YulBlock","src":"2345:102:101","statements":[{"nativeSrc":"2355:26:101","nodeType":"YulAssignment","src":"2355:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2367:9:101","nodeType":"YulIdentifier","src":"2367:9:101"},{"kind":"number","nativeSrc":"2378:2:101","nodeType":"YulLiteral","src":"2378:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2363:3:101","nodeType":"YulIdentifier","src":"2363:3:101"},"nativeSrc":"2363:18:101","nodeType":"YulFunctionCall","src":"2363:18:101"},"variableNames":[{"name":"tail","nativeSrc":"2355:4:101","nodeType":"YulIdentifier","src":"2355:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2397:9:101","nodeType":"YulIdentifier","src":"2397:9:101"},{"arguments":[{"name":"value0","nativeSrc":"2412:6:101","nodeType":"YulIdentifier","src":"2412:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2428:3:101","nodeType":"YulLiteral","src":"2428:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"2433:1:101","nodeType":"YulLiteral","src":"2433:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2424:3:101","nodeType":"YulIdentifier","src":"2424:3:101"},"nativeSrc":"2424:11:101","nodeType":"YulFunctionCall","src":"2424:11:101"},{"kind":"number","nativeSrc":"2437:1:101","nodeType":"YulLiteral","src":"2437:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2420:3:101","nodeType":"YulIdentifier","src":"2420:3:101"},"nativeSrc":"2420:19:101","nodeType":"YulFunctionCall","src":"2420:19:101"}],"functionName":{"name":"and","nativeSrc":"2408:3:101","nodeType":"YulIdentifier","src":"2408:3:101"},"nativeSrc":"2408:32:101","nodeType":"YulFunctionCall","src":"2408:32:101"}],"functionName":{"name":"mstore","nativeSrc":"2390:6:101","nodeType":"YulIdentifier","src":"2390:6:101"},"nativeSrc":"2390:51:101","nodeType":"YulFunctionCall","src":"2390:51:101"},"nativeSrc":"2390:51:101","nodeType":"YulExpressionStatement","src":"2390:51:101"}]},"name":"abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed","nativeSrc":"2223:224:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2314:9:101","nodeType":"YulTypedName","src":"2314:9:101","type":""},{"name":"value0","nativeSrc":"2325:6:101","nodeType":"YulTypedName","src":"2325:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2336:4:101","nodeType":"YulTypedName","src":"2336:4:101","type":""}],"src":"2223:224:101"},{"body":{"nativeSrc":"2484:95:101","nodeType":"YulBlock","src":"2484:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2501:1:101","nodeType":"YulLiteral","src":"2501:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"2508:3:101","nodeType":"YulLiteral","src":"2508:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"2513:10:101","nodeType":"YulLiteral","src":"2513:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"2504:3:101","nodeType":"YulIdentifier","src":"2504:3:101"},"nativeSrc":"2504:20:101","nodeType":"YulFunctionCall","src":"2504:20:101"}],"functionName":{"name":"mstore","nativeSrc":"2494:6:101","nodeType":"YulIdentifier","src":"2494:6:101"},"nativeSrc":"2494:31:101","nodeType":"YulFunctionCall","src":"2494:31:101"},"nativeSrc":"2494:31:101","nodeType":"YulExpressionStatement","src":"2494:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2541:1:101","nodeType":"YulLiteral","src":"2541:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"2544:4:101","nodeType":"YulLiteral","src":"2544:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"2534:6:101","nodeType":"YulIdentifier","src":"2534:6:101"},"nativeSrc":"2534:15:101","nodeType":"YulFunctionCall","src":"2534:15:101"},"nativeSrc":"2534:15:101","nodeType":"YulExpressionStatement","src":"2534:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2565:1:101","nodeType":"YulLiteral","src":"2565:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2568:4:101","nodeType":"YulLiteral","src":"2568:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"2558:6:101","nodeType":"YulIdentifier","src":"2558:6:101"},"nativeSrc":"2558:15:101","nodeType":"YulFunctionCall","src":"2558:15:101"},"nativeSrc":"2558:15:101","nodeType":"YulExpressionStatement","src":"2558:15:101"}]},"name":"panic_error_0x41","nativeSrc":"2452:127:101","nodeType":"YulFunctionDefinition","src":"2452:127:101"},{"body":{"nativeSrc":"2630:206:101","nodeType":"YulBlock","src":"2630:206:101","statements":[{"nativeSrc":"2640:19:101","nodeType":"YulAssignment","src":"2640:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"2656:2:101","nodeType":"YulLiteral","src":"2656:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"2650:5:101","nodeType":"YulIdentifier","src":"2650:5:101"},"nativeSrc":"2650:9:101","nodeType":"YulFunctionCall","src":"2650:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"2640:6:101","nodeType":"YulIdentifier","src":"2640:6:101"}]},{"nativeSrc":"2668:34:101","nodeType":"YulVariableDeclaration","src":"2668:34:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"2690:6:101","nodeType":"YulIdentifier","src":"2690:6:101"},{"kind":"number","nativeSrc":"2698:3:101","nodeType":"YulLiteral","src":"2698:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"2686:3:101","nodeType":"YulIdentifier","src":"2686:3:101"},"nativeSrc":"2686:16:101","nodeType":"YulFunctionCall","src":"2686:16:101"},"variables":[{"name":"newFreePtr","nativeSrc":"2672:10:101","nodeType":"YulTypedName","src":"2672:10:101","type":""}]},{"body":{"nativeSrc":"2777:22:101","nodeType":"YulBlock","src":"2777:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2779:16:101","nodeType":"YulIdentifier","src":"2779:16:101"},"nativeSrc":"2779:18:101","nodeType":"YulFunctionCall","src":"2779:18:101"},"nativeSrc":"2779:18:101","nodeType":"YulExpressionStatement","src":"2779:18:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"2720:10:101","nodeType":"YulIdentifier","src":"2720:10:101"},{"kind":"number","nativeSrc":"2732:18:101","nodeType":"YulLiteral","src":"2732:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2717:2:101","nodeType":"YulIdentifier","src":"2717:2:101"},"nativeSrc":"2717:34:101","nodeType":"YulFunctionCall","src":"2717:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"2756:10:101","nodeType":"YulIdentifier","src":"2756:10:101"},{"name":"memPtr","nativeSrc":"2768:6:101","nodeType":"YulIdentifier","src":"2768:6:101"}],"functionName":{"name":"lt","nativeSrc":"2753:2:101","nodeType":"YulIdentifier","src":"2753:2:101"},"nativeSrc":"2753:22:101","nodeType":"YulFunctionCall","src":"2753:22:101"}],"functionName":{"name":"or","nativeSrc":"2714:2:101","nodeType":"YulIdentifier","src":"2714:2:101"},"nativeSrc":"2714:62:101","nodeType":"YulFunctionCall","src":"2714:62:101"},"nativeSrc":"2711:88:101","nodeType":"YulIf","src":"2711:88:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2815:2:101","nodeType":"YulLiteral","src":"2815:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"2819:10:101","nodeType":"YulIdentifier","src":"2819:10:101"}],"functionName":{"name":"mstore","nativeSrc":"2808:6:101","nodeType":"YulIdentifier","src":"2808:6:101"},"nativeSrc":"2808:22:101","nodeType":"YulFunctionCall","src":"2808:22:101"},"nativeSrc":"2808:22:101","nodeType":"YulExpressionStatement","src":"2808:22:101"}]},"name":"allocate_memory_1999","nativeSrc":"2584:252:101","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"2619:6:101","nodeType":"YulTypedName","src":"2619:6:101","type":""}],"src":"2584:252:101"},{"body":{"nativeSrc":"2886:230:101","nodeType":"YulBlock","src":"2886:230:101","statements":[{"nativeSrc":"2896:19:101","nodeType":"YulAssignment","src":"2896:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"2912:2:101","nodeType":"YulLiteral","src":"2912:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"2906:5:101","nodeType":"YulIdentifier","src":"2906:5:101"},"nativeSrc":"2906:9:101","nodeType":"YulFunctionCall","src":"2906:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"2896:6:101","nodeType":"YulIdentifier","src":"2896:6:101"}]},{"nativeSrc":"2924:58:101","nodeType":"YulVariableDeclaration","src":"2924:58:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"2946:6:101","nodeType":"YulIdentifier","src":"2946:6:101"},{"arguments":[{"arguments":[{"name":"size","nativeSrc":"2962:4:101","nodeType":"YulIdentifier","src":"2962:4:101"},{"kind":"number","nativeSrc":"2968:2:101","nodeType":"YulLiteral","src":"2968:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2958:3:101","nodeType":"YulIdentifier","src":"2958:3:101"},"nativeSrc":"2958:13:101","nodeType":"YulFunctionCall","src":"2958:13:101"},{"arguments":[{"kind":"number","nativeSrc":"2977:2:101","nodeType":"YulLiteral","src":"2977:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"2973:3:101","nodeType":"YulIdentifier","src":"2973:3:101"},"nativeSrc":"2973:7:101","nodeType":"YulFunctionCall","src":"2973:7:101"}],"functionName":{"name":"and","nativeSrc":"2954:3:101","nodeType":"YulIdentifier","src":"2954:3:101"},"nativeSrc":"2954:27:101","nodeType":"YulFunctionCall","src":"2954:27:101"}],"functionName":{"name":"add","nativeSrc":"2942:3:101","nodeType":"YulIdentifier","src":"2942:3:101"},"nativeSrc":"2942:40:101","nodeType":"YulFunctionCall","src":"2942:40:101"},"variables":[{"name":"newFreePtr","nativeSrc":"2928:10:101","nodeType":"YulTypedName","src":"2928:10:101","type":""}]},{"body":{"nativeSrc":"3057:22:101","nodeType":"YulBlock","src":"3057:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3059:16:101","nodeType":"YulIdentifier","src":"3059:16:101"},"nativeSrc":"3059:18:101","nodeType":"YulFunctionCall","src":"3059:18:101"},"nativeSrc":"3059:18:101","nodeType":"YulExpressionStatement","src":"3059:18:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"3000:10:101","nodeType":"YulIdentifier","src":"3000:10:101"},{"kind":"number","nativeSrc":"3012:18:101","nodeType":"YulLiteral","src":"3012:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2997:2:101","nodeType":"YulIdentifier","src":"2997:2:101"},"nativeSrc":"2997:34:101","nodeType":"YulFunctionCall","src":"2997:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"3036:10:101","nodeType":"YulIdentifier","src":"3036:10:101"},{"name":"memPtr","nativeSrc":"3048:6:101","nodeType":"YulIdentifier","src":"3048:6:101"}],"functionName":{"name":"lt","nativeSrc":"3033:2:101","nodeType":"YulIdentifier","src":"3033:2:101"},"nativeSrc":"3033:22:101","nodeType":"YulFunctionCall","src":"3033:22:101"}],"functionName":{"name":"or","nativeSrc":"2994:2:101","nodeType":"YulIdentifier","src":"2994:2:101"},"nativeSrc":"2994:62:101","nodeType":"YulFunctionCall","src":"2994:62:101"},"nativeSrc":"2991:88:101","nodeType":"YulIf","src":"2991:88:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3095:2:101","nodeType":"YulLiteral","src":"3095:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"3099:10:101","nodeType":"YulIdentifier","src":"3099:10:101"}],"functionName":{"name":"mstore","nativeSrc":"3088:6:101","nodeType":"YulIdentifier","src":"3088:6:101"},"nativeSrc":"3088:22:101","nodeType":"YulFunctionCall","src":"3088:22:101"},"nativeSrc":"3088:22:101","nodeType":"YulExpressionStatement","src":"3088:22:101"}]},"name":"allocate_memory","nativeSrc":"2841:275:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nativeSrc":"2866:4:101","nodeType":"YulTypedName","src":"2866:4:101","type":""}],"returnVariables":[{"name":"memPtr","nativeSrc":"2875:6:101","nodeType":"YulTypedName","src":"2875:6:101","type":""}],"src":"2841:275:101"},{"body":{"nativeSrc":"3217:814:101","nodeType":"YulBlock","src":"3217:814:101","statements":[{"body":{"nativeSrc":"3263:16:101","nodeType":"YulBlock","src":"3263:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3272:1:101","nodeType":"YulLiteral","src":"3272:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3275:1:101","nodeType":"YulLiteral","src":"3275:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3265:6:101","nodeType":"YulIdentifier","src":"3265:6:101"},"nativeSrc":"3265:12:101","nodeType":"YulFunctionCall","src":"3265:12:101"},"nativeSrc":"3265:12:101","nodeType":"YulExpressionStatement","src":"3265:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3238:7:101","nodeType":"YulIdentifier","src":"3238:7:101"},{"name":"headStart","nativeSrc":"3247:9:101","nodeType":"YulIdentifier","src":"3247:9:101"}],"functionName":{"name":"sub","nativeSrc":"3234:3:101","nodeType":"YulIdentifier","src":"3234:3:101"},"nativeSrc":"3234:23:101","nodeType":"YulFunctionCall","src":"3234:23:101"},{"kind":"number","nativeSrc":"3259:2:101","nodeType":"YulLiteral","src":"3259:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3230:3:101","nodeType":"YulIdentifier","src":"3230:3:101"},"nativeSrc":"3230:32:101","nodeType":"YulFunctionCall","src":"3230:32:101"},"nativeSrc":"3227:52:101","nodeType":"YulIf","src":"3227:52:101"},{"nativeSrc":"3288:36:101","nodeType":"YulVariableDeclaration","src":"3288:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3314:9:101","nodeType":"YulIdentifier","src":"3314:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"3301:12:101","nodeType":"YulIdentifier","src":"3301:12:101"},"nativeSrc":"3301:23:101","nodeType":"YulFunctionCall","src":"3301:23:101"},"variables":[{"name":"value","nativeSrc":"3292:5:101","nodeType":"YulTypedName","src":"3292:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3368:5:101","nodeType":"YulIdentifier","src":"3368:5:101"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"3333:34:101","nodeType":"YulIdentifier","src":"3333:34:101"},"nativeSrc":"3333:41:101","nodeType":"YulFunctionCall","src":"3333:41:101"},"nativeSrc":"3333:41:101","nodeType":"YulExpressionStatement","src":"3333:41:101"},{"nativeSrc":"3383:15:101","nodeType":"YulAssignment","src":"3383:15:101","value":{"name":"value","nativeSrc":"3393:5:101","nodeType":"YulIdentifier","src":"3393:5:101"},"variableNames":[{"name":"value0","nativeSrc":"3383:6:101","nodeType":"YulIdentifier","src":"3383:6:101"}]},{"nativeSrc":"3407:46:101","nodeType":"YulVariableDeclaration","src":"3407:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3438:9:101","nodeType":"YulIdentifier","src":"3438:9:101"},{"kind":"number","nativeSrc":"3449:2:101","nodeType":"YulLiteral","src":"3449:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3434:3:101","nodeType":"YulIdentifier","src":"3434:3:101"},"nativeSrc":"3434:18:101","nodeType":"YulFunctionCall","src":"3434:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3421:12:101","nodeType":"YulIdentifier","src":"3421:12:101"},"nativeSrc":"3421:32:101","nodeType":"YulFunctionCall","src":"3421:32:101"},"variables":[{"name":"offset","nativeSrc":"3411:6:101","nodeType":"YulTypedName","src":"3411:6:101","type":""}]},{"body":{"nativeSrc":"3496:16:101","nodeType":"YulBlock","src":"3496:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3505:1:101","nodeType":"YulLiteral","src":"3505:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3508:1:101","nodeType":"YulLiteral","src":"3508:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3498:6:101","nodeType":"YulIdentifier","src":"3498:6:101"},"nativeSrc":"3498:12:101","nodeType":"YulFunctionCall","src":"3498:12:101"},"nativeSrc":"3498:12:101","nodeType":"YulExpressionStatement","src":"3498:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"3468:6:101","nodeType":"YulIdentifier","src":"3468:6:101"},{"kind":"number","nativeSrc":"3476:18:101","nodeType":"YulLiteral","src":"3476:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3465:2:101","nodeType":"YulIdentifier","src":"3465:2:101"},"nativeSrc":"3465:30:101","nodeType":"YulFunctionCall","src":"3465:30:101"},"nativeSrc":"3462:50:101","nodeType":"YulIf","src":"3462:50:101"},{"nativeSrc":"3521:32:101","nodeType":"YulVariableDeclaration","src":"3521:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3535:9:101","nodeType":"YulIdentifier","src":"3535:9:101"},{"name":"offset","nativeSrc":"3546:6:101","nodeType":"YulIdentifier","src":"3546:6:101"}],"functionName":{"name":"add","nativeSrc":"3531:3:101","nodeType":"YulIdentifier","src":"3531:3:101"},"nativeSrc":"3531:22:101","nodeType":"YulFunctionCall","src":"3531:22:101"},"variables":[{"name":"_1","nativeSrc":"3525:2:101","nodeType":"YulTypedName","src":"3525:2:101","type":""}]},{"body":{"nativeSrc":"3601:16:101","nodeType":"YulBlock","src":"3601:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3610:1:101","nodeType":"YulLiteral","src":"3610:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3613:1:101","nodeType":"YulLiteral","src":"3613:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3603:6:101","nodeType":"YulIdentifier","src":"3603:6:101"},"nativeSrc":"3603:12:101","nodeType":"YulFunctionCall","src":"3603:12:101"},"nativeSrc":"3603:12:101","nodeType":"YulExpressionStatement","src":"3603:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"3580:2:101","nodeType":"YulIdentifier","src":"3580:2:101"},{"kind":"number","nativeSrc":"3584:4:101","nodeType":"YulLiteral","src":"3584:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"3576:3:101","nodeType":"YulIdentifier","src":"3576:3:101"},"nativeSrc":"3576:13:101","nodeType":"YulFunctionCall","src":"3576:13:101"},{"name":"dataEnd","nativeSrc":"3591:7:101","nodeType":"YulIdentifier","src":"3591:7:101"}],"functionName":{"name":"slt","nativeSrc":"3572:3:101","nodeType":"YulIdentifier","src":"3572:3:101"},"nativeSrc":"3572:27:101","nodeType":"YulFunctionCall","src":"3572:27:101"}],"functionName":{"name":"iszero","nativeSrc":"3565:6:101","nodeType":"YulIdentifier","src":"3565:6:101"},"nativeSrc":"3565:35:101","nodeType":"YulFunctionCall","src":"3565:35:101"},"nativeSrc":"3562:55:101","nodeType":"YulIf","src":"3562:55:101"},{"nativeSrc":"3626:30:101","nodeType":"YulVariableDeclaration","src":"3626:30:101","value":{"arguments":[{"name":"_1","nativeSrc":"3653:2:101","nodeType":"YulIdentifier","src":"3653:2:101"}],"functionName":{"name":"calldataload","nativeSrc":"3640:12:101","nodeType":"YulIdentifier","src":"3640:12:101"},"nativeSrc":"3640:16:101","nodeType":"YulFunctionCall","src":"3640:16:101"},"variables":[{"name":"length","nativeSrc":"3630:6:101","nodeType":"YulTypedName","src":"3630:6:101","type":""}]},{"body":{"nativeSrc":"3699:22:101","nodeType":"YulBlock","src":"3699:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3701:16:101","nodeType":"YulIdentifier","src":"3701:16:101"},"nativeSrc":"3701:18:101","nodeType":"YulFunctionCall","src":"3701:18:101"},"nativeSrc":"3701:18:101","nodeType":"YulExpressionStatement","src":"3701:18:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"3671:6:101","nodeType":"YulIdentifier","src":"3671:6:101"},{"kind":"number","nativeSrc":"3679:18:101","nodeType":"YulLiteral","src":"3679:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3668:2:101","nodeType":"YulIdentifier","src":"3668:2:101"},"nativeSrc":"3668:30:101","nodeType":"YulFunctionCall","src":"3668:30:101"},"nativeSrc":"3665:56:101","nodeType":"YulIf","src":"3665:56:101"},{"nativeSrc":"3730:70:101","nodeType":"YulVariableDeclaration","src":"3730:70:101","value":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"3771:6:101","nodeType":"YulIdentifier","src":"3771:6:101"},{"kind":"number","nativeSrc":"3779:4:101","nodeType":"YulLiteral","src":"3779:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"3767:3:101","nodeType":"YulIdentifier","src":"3767:3:101"},"nativeSrc":"3767:17:101","nodeType":"YulFunctionCall","src":"3767:17:101"},{"arguments":[{"kind":"number","nativeSrc":"3790:2:101","nodeType":"YulLiteral","src":"3790:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"3786:3:101","nodeType":"YulIdentifier","src":"3786:3:101"},"nativeSrc":"3786:7:101","nodeType":"YulFunctionCall","src":"3786:7:101"}],"functionName":{"name":"and","nativeSrc":"3763:3:101","nodeType":"YulIdentifier","src":"3763:3:101"},"nativeSrc":"3763:31:101","nodeType":"YulFunctionCall","src":"3763:31:101"},{"kind":"number","nativeSrc":"3796:2:101","nodeType":"YulLiteral","src":"3796:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3759:3:101","nodeType":"YulIdentifier","src":"3759:3:101"},"nativeSrc":"3759:40:101","nodeType":"YulFunctionCall","src":"3759:40:101"}],"functionName":{"name":"allocate_memory","nativeSrc":"3743:15:101","nodeType":"YulIdentifier","src":"3743:15:101"},"nativeSrc":"3743:57:101","nodeType":"YulFunctionCall","src":"3743:57:101"},"variables":[{"name":"array","nativeSrc":"3734:5:101","nodeType":"YulTypedName","src":"3734:5:101","type":""}]},{"expression":{"arguments":[{"name":"array","nativeSrc":"3816:5:101","nodeType":"YulIdentifier","src":"3816:5:101"},{"name":"length","nativeSrc":"3823:6:101","nodeType":"YulIdentifier","src":"3823:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3809:6:101","nodeType":"YulIdentifier","src":"3809:6:101"},"nativeSrc":"3809:21:101","nodeType":"YulFunctionCall","src":"3809:21:101"},"nativeSrc":"3809:21:101","nodeType":"YulExpressionStatement","src":"3809:21:101"},{"body":{"nativeSrc":"3880:16:101","nodeType":"YulBlock","src":"3880:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3889:1:101","nodeType":"YulLiteral","src":"3889:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3892:1:101","nodeType":"YulLiteral","src":"3892:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3882:6:101","nodeType":"YulIdentifier","src":"3882:6:101"},"nativeSrc":"3882:12:101","nodeType":"YulFunctionCall","src":"3882:12:101"},"nativeSrc":"3882:12:101","nodeType":"YulExpressionStatement","src":"3882:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"3853:2:101","nodeType":"YulIdentifier","src":"3853:2:101"},{"name":"length","nativeSrc":"3857:6:101","nodeType":"YulIdentifier","src":"3857:6:101"}],"functionName":{"name":"add","nativeSrc":"3849:3:101","nodeType":"YulIdentifier","src":"3849:3:101"},"nativeSrc":"3849:15:101","nodeType":"YulFunctionCall","src":"3849:15:101"},{"kind":"number","nativeSrc":"3866:2:101","nodeType":"YulLiteral","src":"3866:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3845:3:101","nodeType":"YulIdentifier","src":"3845:3:101"},"nativeSrc":"3845:24:101","nodeType":"YulFunctionCall","src":"3845:24:101"},{"name":"dataEnd","nativeSrc":"3871:7:101","nodeType":"YulIdentifier","src":"3871:7:101"}],"functionName":{"name":"gt","nativeSrc":"3842:2:101","nodeType":"YulIdentifier","src":"3842:2:101"},"nativeSrc":"3842:37:101","nodeType":"YulFunctionCall","src":"3842:37:101"},"nativeSrc":"3839:57:101","nodeType":"YulIf","src":"3839:57:101"},{"expression":{"arguments":[{"arguments":[{"name":"array","nativeSrc":"3922:5:101","nodeType":"YulIdentifier","src":"3922:5:101"},{"kind":"number","nativeSrc":"3929:2:101","nodeType":"YulLiteral","src":"3929:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3918:3:101","nodeType":"YulIdentifier","src":"3918:3:101"},"nativeSrc":"3918:14:101","nodeType":"YulFunctionCall","src":"3918:14:101"},{"arguments":[{"name":"_1","nativeSrc":"3938:2:101","nodeType":"YulIdentifier","src":"3938:2:101"},{"kind":"number","nativeSrc":"3942:2:101","nodeType":"YulLiteral","src":"3942:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3934:3:101","nodeType":"YulIdentifier","src":"3934:3:101"},"nativeSrc":"3934:11:101","nodeType":"YulFunctionCall","src":"3934:11:101"},{"name":"length","nativeSrc":"3947:6:101","nodeType":"YulIdentifier","src":"3947:6:101"}],"functionName":{"name":"calldatacopy","nativeSrc":"3905:12:101","nodeType":"YulIdentifier","src":"3905:12:101"},"nativeSrc":"3905:49:101","nodeType":"YulFunctionCall","src":"3905:49:101"},"nativeSrc":"3905:49:101","nodeType":"YulExpressionStatement","src":"3905:49:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"array","nativeSrc":"3978:5:101","nodeType":"YulIdentifier","src":"3978:5:101"},{"name":"length","nativeSrc":"3985:6:101","nodeType":"YulIdentifier","src":"3985:6:101"}],"functionName":{"name":"add","nativeSrc":"3974:3:101","nodeType":"YulIdentifier","src":"3974:3:101"},"nativeSrc":"3974:18:101","nodeType":"YulFunctionCall","src":"3974:18:101"},{"kind":"number","nativeSrc":"3994:2:101","nodeType":"YulLiteral","src":"3994:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3970:3:101","nodeType":"YulIdentifier","src":"3970:3:101"},"nativeSrc":"3970:27:101","nodeType":"YulFunctionCall","src":"3970:27:101"},{"kind":"number","nativeSrc":"3999:1:101","nodeType":"YulLiteral","src":"3999:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"3963:6:101","nodeType":"YulIdentifier","src":"3963:6:101"},"nativeSrc":"3963:38:101","nodeType":"YulFunctionCall","src":"3963:38:101"},"nativeSrc":"3963:38:101","nodeType":"YulExpressionStatement","src":"3963:38:101"},{"nativeSrc":"4010:15:101","nodeType":"YulAssignment","src":"4010:15:101","value":{"name":"array","nativeSrc":"4020:5:101","nodeType":"YulIdentifier","src":"4020:5:101"},"variableNames":[{"name":"value1","nativeSrc":"4010:6:101","nodeType":"YulIdentifier","src":"4010:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr","nativeSrc":"3121:910:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3175:9:101","nodeType":"YulTypedName","src":"3175:9:101","type":""},{"name":"dataEnd","nativeSrc":"3186:7:101","nodeType":"YulTypedName","src":"3186:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3198:6:101","nodeType":"YulTypedName","src":"3198:6:101","type":""},{"name":"value1","nativeSrc":"3206:6:101","nodeType":"YulTypedName","src":"3206:6:101","type":""}],"src":"3121:910:101"},{"body":{"nativeSrc":"4120:277:101","nodeType":"YulBlock","src":"4120:277:101","statements":[{"body":{"nativeSrc":"4166:16:101","nodeType":"YulBlock","src":"4166:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4175:1:101","nodeType":"YulLiteral","src":"4175:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4178:1:101","nodeType":"YulLiteral","src":"4178:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4168:6:101","nodeType":"YulIdentifier","src":"4168:6:101"},"nativeSrc":"4168:12:101","nodeType":"YulFunctionCall","src":"4168:12:101"},"nativeSrc":"4168:12:101","nodeType":"YulExpressionStatement","src":"4168:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4141:7:101","nodeType":"YulIdentifier","src":"4141:7:101"},{"name":"headStart","nativeSrc":"4150:9:101","nodeType":"YulIdentifier","src":"4150:9:101"}],"functionName":{"name":"sub","nativeSrc":"4137:3:101","nodeType":"YulIdentifier","src":"4137:3:101"},"nativeSrc":"4137:23:101","nodeType":"YulFunctionCall","src":"4137:23:101"},{"kind":"number","nativeSrc":"4162:2:101","nodeType":"YulLiteral","src":"4162:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4133:3:101","nodeType":"YulIdentifier","src":"4133:3:101"},"nativeSrc":"4133:32:101","nodeType":"YulFunctionCall","src":"4133:32:101"},"nativeSrc":"4130:52:101","nodeType":"YulIf","src":"4130:52:101"},{"nativeSrc":"4191:14:101","nodeType":"YulVariableDeclaration","src":"4191:14:101","value":{"kind":"number","nativeSrc":"4204:1:101","nodeType":"YulLiteral","src":"4204:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"4195:5:101","nodeType":"YulTypedName","src":"4195:5:101","type":""}]},{"nativeSrc":"4214:32:101","nodeType":"YulAssignment","src":"4214:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4236:9:101","nodeType":"YulIdentifier","src":"4236:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"4223:12:101","nodeType":"YulIdentifier","src":"4223:12:101"},"nativeSrc":"4223:23:101","nodeType":"YulFunctionCall","src":"4223:23:101"},"variableNames":[{"name":"value","nativeSrc":"4214:5:101","nodeType":"YulIdentifier","src":"4214:5:101"}]},{"nativeSrc":"4255:15:101","nodeType":"YulAssignment","src":"4255:15:101","value":{"name":"value","nativeSrc":"4265:5:101","nodeType":"YulIdentifier","src":"4265:5:101"},"variableNames":[{"name":"value0","nativeSrc":"4255:6:101","nodeType":"YulIdentifier","src":"4255:6:101"}]},{"nativeSrc":"4279:47:101","nodeType":"YulVariableDeclaration","src":"4279:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4311:9:101","nodeType":"YulIdentifier","src":"4311:9:101"},{"kind":"number","nativeSrc":"4322:2:101","nodeType":"YulLiteral","src":"4322:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4307:3:101","nodeType":"YulIdentifier","src":"4307:3:101"},"nativeSrc":"4307:18:101","nodeType":"YulFunctionCall","src":"4307:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"4294:12:101","nodeType":"YulIdentifier","src":"4294:12:101"},"nativeSrc":"4294:32:101","nodeType":"YulFunctionCall","src":"4294:32:101"},"variables":[{"name":"value_1","nativeSrc":"4283:7:101","nodeType":"YulTypedName","src":"4283:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"4357:7:101","nodeType":"YulIdentifier","src":"4357:7:101"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"4335:21:101","nodeType":"YulIdentifier","src":"4335:21:101"},"nativeSrc":"4335:30:101","nodeType":"YulFunctionCall","src":"4335:30:101"},"nativeSrc":"4335:30:101","nodeType":"YulExpressionStatement","src":"4335:30:101"},{"nativeSrc":"4374:17:101","nodeType":"YulAssignment","src":"4374:17:101","value":{"name":"value_1","nativeSrc":"4384:7:101","nodeType":"YulIdentifier","src":"4384:7:101"},"variableNames":[{"name":"value1","nativeSrc":"4374:6:101","nodeType":"YulIdentifier","src":"4374:6:101"}]}]},"name":"abi_decode_tuple_t_uint256t_bool","nativeSrc":"4036:361:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4078:9:101","nodeType":"YulTypedName","src":"4078:9:101","type":""},{"name":"dataEnd","nativeSrc":"4089:7:101","nodeType":"YulTypedName","src":"4089:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4101:6:101","nodeType":"YulTypedName","src":"4101:6:101","type":""},{"name":"value1","nativeSrc":"4109:6:101","nodeType":"YulTypedName","src":"4109:6:101","type":""}],"src":"4036:361:101"},{"body":{"nativeSrc":"4503:76:101","nodeType":"YulBlock","src":"4503:76:101","statements":[{"nativeSrc":"4513:26:101","nodeType":"YulAssignment","src":"4513:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4525:9:101","nodeType":"YulIdentifier","src":"4525:9:101"},{"kind":"number","nativeSrc":"4536:2:101","nodeType":"YulLiteral","src":"4536:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4521:3:101","nodeType":"YulIdentifier","src":"4521:3:101"},"nativeSrc":"4521:18:101","nodeType":"YulFunctionCall","src":"4521:18:101"},"variableNames":[{"name":"tail","nativeSrc":"4513:4:101","nodeType":"YulIdentifier","src":"4513:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4555:9:101","nodeType":"YulIdentifier","src":"4555:9:101"},{"name":"value0","nativeSrc":"4566:6:101","nodeType":"YulIdentifier","src":"4566:6:101"}],"functionName":{"name":"mstore","nativeSrc":"4548:6:101","nodeType":"YulIdentifier","src":"4548:6:101"},"nativeSrc":"4548:25:101","nodeType":"YulFunctionCall","src":"4548:25:101"},"nativeSrc":"4548:25:101","nodeType":"YulExpressionStatement","src":"4548:25:101"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"4402:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4472:9:101","nodeType":"YulTypedName","src":"4472:9:101","type":""},{"name":"value0","nativeSrc":"4483:6:101","nodeType":"YulTypedName","src":"4483:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4494:4:101","nodeType":"YulTypedName","src":"4494:4:101","type":""}],"src":"4402:177:101"},{"body":{"nativeSrc":"4702:102:101","nodeType":"YulBlock","src":"4702:102:101","statements":[{"nativeSrc":"4712:26:101","nodeType":"YulAssignment","src":"4712:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4724:9:101","nodeType":"YulIdentifier","src":"4724:9:101"},{"kind":"number","nativeSrc":"4735:2:101","nodeType":"YulLiteral","src":"4735:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4720:3:101","nodeType":"YulIdentifier","src":"4720:3:101"},"nativeSrc":"4720:18:101","nodeType":"YulFunctionCall","src":"4720:18:101"},"variableNames":[{"name":"tail","nativeSrc":"4712:4:101","nodeType":"YulIdentifier","src":"4712:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4754:9:101","nodeType":"YulIdentifier","src":"4754:9:101"},{"arguments":[{"name":"value0","nativeSrc":"4769:6:101","nodeType":"YulIdentifier","src":"4769:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4785:3:101","nodeType":"YulLiteral","src":"4785:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"4790:1:101","nodeType":"YulLiteral","src":"4790:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4781:3:101","nodeType":"YulIdentifier","src":"4781:3:101"},"nativeSrc":"4781:11:101","nodeType":"YulFunctionCall","src":"4781:11:101"},{"kind":"number","nativeSrc":"4794:1:101","nodeType":"YulLiteral","src":"4794:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4777:3:101","nodeType":"YulIdentifier","src":"4777:3:101"},"nativeSrc":"4777:19:101","nodeType":"YulFunctionCall","src":"4777:19:101"}],"functionName":{"name":"and","nativeSrc":"4765:3:101","nodeType":"YulIdentifier","src":"4765:3:101"},"nativeSrc":"4765:32:101","nodeType":"YulFunctionCall","src":"4765:32:101"}],"functionName":{"name":"mstore","nativeSrc":"4747:6:101","nodeType":"YulIdentifier","src":"4747:6:101"},"nativeSrc":"4747:51:101","nodeType":"YulFunctionCall","src":"4747:51:101"},"nativeSrc":"4747:51:101","nodeType":"YulExpressionStatement","src":"4747:51:101"}]},"name":"abi_encode_tuple_t_contract$_IEToken_$28869__to_t_address__fromStack_reversed","nativeSrc":"4584:220:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4671:9:101","nodeType":"YulTypedName","src":"4671:9:101","type":""},{"name":"value0","nativeSrc":"4682:6:101","nodeType":"YulTypedName","src":"4682:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4693:4:101","nodeType":"YulTypedName","src":"4693:4:101","type":""}],"src":"4584:220:101"},{"body":{"nativeSrc":"4972:171:101","nodeType":"YulBlock","src":"4972:171:101","statements":[{"nativeSrc":"4982:26:101","nodeType":"YulAssignment","src":"4982:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4994:9:101","nodeType":"YulIdentifier","src":"4994:9:101"},{"kind":"number","nativeSrc":"5005:2:101","nodeType":"YulLiteral","src":"5005:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4990:3:101","nodeType":"YulIdentifier","src":"4990:3:101"},"nativeSrc":"4990:18:101","nodeType":"YulFunctionCall","src":"4990:18:101"},"variableNames":[{"name":"tail","nativeSrc":"4982:4:101","nodeType":"YulIdentifier","src":"4982:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5024:9:101","nodeType":"YulIdentifier","src":"5024:9:101"},{"arguments":[{"name":"value0","nativeSrc":"5039:6:101","nodeType":"YulIdentifier","src":"5039:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5055:3:101","nodeType":"YulLiteral","src":"5055:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"5060:1:101","nodeType":"YulLiteral","src":"5060:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5051:3:101","nodeType":"YulIdentifier","src":"5051:3:101"},"nativeSrc":"5051:11:101","nodeType":"YulFunctionCall","src":"5051:11:101"},{"kind":"number","nativeSrc":"5064:1:101","nodeType":"YulLiteral","src":"5064:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5047:3:101","nodeType":"YulIdentifier","src":"5047:3:101"},"nativeSrc":"5047:19:101","nodeType":"YulFunctionCall","src":"5047:19:101"}],"functionName":{"name":"and","nativeSrc":"5035:3:101","nodeType":"YulIdentifier","src":"5035:3:101"},"nativeSrc":"5035:32:101","nodeType":"YulFunctionCall","src":"5035:32:101"}],"functionName":{"name":"mstore","nativeSrc":"5017:6:101","nodeType":"YulIdentifier","src":"5017:6:101"},"nativeSrc":"5017:51:101","nodeType":"YulFunctionCall","src":"5017:51:101"},"nativeSrc":"5017:51:101","nodeType":"YulExpressionStatement","src":"5017:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5088:9:101","nodeType":"YulIdentifier","src":"5088:9:101"},{"kind":"number","nativeSrc":"5099:2:101","nodeType":"YulLiteral","src":"5099:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5084:3:101","nodeType":"YulIdentifier","src":"5084:3:101"},"nativeSrc":"5084:18:101","nodeType":"YulFunctionCall","src":"5084:18:101"},{"arguments":[{"name":"value1","nativeSrc":"5108:6:101","nodeType":"YulIdentifier","src":"5108:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5124:3:101","nodeType":"YulLiteral","src":"5124:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"5129:1:101","nodeType":"YulLiteral","src":"5129:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5120:3:101","nodeType":"YulIdentifier","src":"5120:3:101"},"nativeSrc":"5120:11:101","nodeType":"YulFunctionCall","src":"5120:11:101"},{"kind":"number","nativeSrc":"5133:1:101","nodeType":"YulLiteral","src":"5133:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5116:3:101","nodeType":"YulIdentifier","src":"5116:3:101"},"nativeSrc":"5116:19:101","nodeType":"YulFunctionCall","src":"5116:19:101"}],"functionName":{"name":"and","nativeSrc":"5104:3:101","nodeType":"YulIdentifier","src":"5104:3:101"},"nativeSrc":"5104:32:101","nodeType":"YulFunctionCall","src":"5104:32:101"}],"functionName":{"name":"mstore","nativeSrc":"5077:6:101","nodeType":"YulIdentifier","src":"5077:6:101"},"nativeSrc":"5077:60:101","nodeType":"YulFunctionCall","src":"5077:60:101"},"nativeSrc":"5077:60:101","nodeType":"YulExpressionStatement","src":"5077:60:101"}]},"name":"abi_encode_tuple_t_contract$_IEToken_$28869_t_contract$_IEToken_$28869__to_t_address_t_address__fromStack_reversed","nativeSrc":"4809:334:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4933:9:101","nodeType":"YulTypedName","src":"4933:9:101","type":""},{"name":"value1","nativeSrc":"4944:6:101","nodeType":"YulTypedName","src":"4944:6:101","type":""},{"name":"value0","nativeSrc":"4952:6:101","nodeType":"YulTypedName","src":"4952:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4963:4:101","nodeType":"YulTypedName","src":"4963:4:101","type":""}],"src":"4809:334:101"},{"body":{"nativeSrc":"5249:145:101","nodeType":"YulBlock","src":"5249:145:101","statements":[{"body":{"nativeSrc":"5296:16:101","nodeType":"YulBlock","src":"5296:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5305:1:101","nodeType":"YulLiteral","src":"5305:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5308:1:101","nodeType":"YulLiteral","src":"5308:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5298:6:101","nodeType":"YulIdentifier","src":"5298:6:101"},"nativeSrc":"5298:12:101","nodeType":"YulFunctionCall","src":"5298:12:101"},"nativeSrc":"5298:12:101","nodeType":"YulExpressionStatement","src":"5298:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5270:7:101","nodeType":"YulIdentifier","src":"5270:7:101"},{"name":"headStart","nativeSrc":"5279:9:101","nodeType":"YulIdentifier","src":"5279:9:101"}],"functionName":{"name":"sub","nativeSrc":"5266:3:101","nodeType":"YulIdentifier","src":"5266:3:101"},"nativeSrc":"5266:23:101","nodeType":"YulFunctionCall","src":"5266:23:101"},{"kind":"number","nativeSrc":"5291:3:101","nodeType":"YulLiteral","src":"5291:3:101","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"5262:3:101","nodeType":"YulIdentifier","src":"5262:3:101"},"nativeSrc":"5262:33:101","nodeType":"YulFunctionCall","src":"5262:33:101"},"nativeSrc":"5259:53:101","nodeType":"YulIf","src":"5259:53:101"},{"nativeSrc":"5321:67:101","nodeType":"YulAssignment","src":"5321:67:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5369:9:101","nodeType":"YulIdentifier","src":"5369:9:101"},{"name":"dataEnd","nativeSrc":"5380:7:101","nodeType":"YulIdentifier","src":"5380:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"5331:37:101","nodeType":"YulIdentifier","src":"5331:37:101"},"nativeSrc":"5331:57:101","nodeType":"YulFunctionCall","src":"5331:57:101"},"variableNames":[{"name":"value0","nativeSrc":"5321:6:101","nodeType":"YulIdentifier","src":"5321:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptr","nativeSrc":"5148:246:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5215:9:101","nodeType":"YulTypedName","src":"5215:9:101","type":""},{"name":"dataEnd","nativeSrc":"5226:7:101","nodeType":"YulTypedName","src":"5226:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5238:6:101","nodeType":"YulTypedName","src":"5238:6:101","type":""}],"src":"5148:246:101"},{"body":{"nativeSrc":"5469:156:101","nodeType":"YulBlock","src":"5469:156:101","statements":[{"body":{"nativeSrc":"5515:16:101","nodeType":"YulBlock","src":"5515:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5524:1:101","nodeType":"YulLiteral","src":"5524:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5527:1:101","nodeType":"YulLiteral","src":"5527:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5517:6:101","nodeType":"YulIdentifier","src":"5517:6:101"},"nativeSrc":"5517:12:101","nodeType":"YulFunctionCall","src":"5517:12:101"},"nativeSrc":"5517:12:101","nodeType":"YulExpressionStatement","src":"5517:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5490:7:101","nodeType":"YulIdentifier","src":"5490:7:101"},{"name":"headStart","nativeSrc":"5499:9:101","nodeType":"YulIdentifier","src":"5499:9:101"}],"functionName":{"name":"sub","nativeSrc":"5486:3:101","nodeType":"YulIdentifier","src":"5486:3:101"},"nativeSrc":"5486:23:101","nodeType":"YulFunctionCall","src":"5486:23:101"},{"kind":"number","nativeSrc":"5511:2:101","nodeType":"YulLiteral","src":"5511:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5482:3:101","nodeType":"YulIdentifier","src":"5482:3:101"},"nativeSrc":"5482:32:101","nodeType":"YulFunctionCall","src":"5482:32:101"},"nativeSrc":"5479:52:101","nodeType":"YulIf","src":"5479:52:101"},{"nativeSrc":"5540:14:101","nodeType":"YulVariableDeclaration","src":"5540:14:101","value":{"kind":"number","nativeSrc":"5553:1:101","nodeType":"YulLiteral","src":"5553:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"5544:5:101","nodeType":"YulTypedName","src":"5544:5:101","type":""}]},{"nativeSrc":"5563:32:101","nodeType":"YulAssignment","src":"5563:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5585:9:101","nodeType":"YulIdentifier","src":"5585:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"5572:12:101","nodeType":"YulIdentifier","src":"5572:12:101"},"nativeSrc":"5572:23:101","nodeType":"YulFunctionCall","src":"5572:23:101"},"variableNames":[{"name":"value","nativeSrc":"5563:5:101","nodeType":"YulIdentifier","src":"5563:5:101"}]},{"nativeSrc":"5604:15:101","nodeType":"YulAssignment","src":"5604:15:101","value":{"name":"value","nativeSrc":"5614:5:101","nodeType":"YulIdentifier","src":"5614:5:101"},"variableNames":[{"name":"value0","nativeSrc":"5604:6:101","nodeType":"YulIdentifier","src":"5604:6:101"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"5399:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5435:9:101","nodeType":"YulTypedName","src":"5435:9:101","type":""},{"name":"dataEnd","nativeSrc":"5446:7:101","nodeType":"YulTypedName","src":"5446:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5458:6:101","nodeType":"YulTypedName","src":"5458:6:101","type":""}],"src":"5399:226:101"},{"body":{"nativeSrc":"5717:259:101","nodeType":"YulBlock","src":"5717:259:101","statements":[{"body":{"nativeSrc":"5763:16:101","nodeType":"YulBlock","src":"5763:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5772:1:101","nodeType":"YulLiteral","src":"5772:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5775:1:101","nodeType":"YulLiteral","src":"5775:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5765:6:101","nodeType":"YulIdentifier","src":"5765:6:101"},"nativeSrc":"5765:12:101","nodeType":"YulFunctionCall","src":"5765:12:101"},"nativeSrc":"5765:12:101","nodeType":"YulExpressionStatement","src":"5765:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5738:7:101","nodeType":"YulIdentifier","src":"5738:7:101"},{"name":"headStart","nativeSrc":"5747:9:101","nodeType":"YulIdentifier","src":"5747:9:101"}],"functionName":{"name":"sub","nativeSrc":"5734:3:101","nodeType":"YulIdentifier","src":"5734:3:101"},"nativeSrc":"5734:23:101","nodeType":"YulFunctionCall","src":"5734:23:101"},{"kind":"number","nativeSrc":"5759:2:101","nodeType":"YulLiteral","src":"5759:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"5730:3:101","nodeType":"YulIdentifier","src":"5730:3:101"},"nativeSrc":"5730:32:101","nodeType":"YulFunctionCall","src":"5730:32:101"},"nativeSrc":"5727:52:101","nodeType":"YulIf","src":"5727:52:101"},{"nativeSrc":"5788:14:101","nodeType":"YulVariableDeclaration","src":"5788:14:101","value":{"kind":"number","nativeSrc":"5801:1:101","nodeType":"YulLiteral","src":"5801:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"5792:5:101","nodeType":"YulTypedName","src":"5792:5:101","type":""}]},{"nativeSrc":"5811:32:101","nodeType":"YulAssignment","src":"5811:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5833:9:101","nodeType":"YulIdentifier","src":"5833:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"5820:12:101","nodeType":"YulIdentifier","src":"5820:12:101"},"nativeSrc":"5820:23:101","nodeType":"YulFunctionCall","src":"5820:23:101"},"variableNames":[{"name":"value","nativeSrc":"5811:5:101","nodeType":"YulIdentifier","src":"5811:5:101"}]},{"nativeSrc":"5852:15:101","nodeType":"YulAssignment","src":"5852:15:101","value":{"name":"value","nativeSrc":"5862:5:101","nodeType":"YulIdentifier","src":"5862:5:101"},"variableNames":[{"name":"value0","nativeSrc":"5852:6:101","nodeType":"YulIdentifier","src":"5852:6:101"}]},{"nativeSrc":"5876:16:101","nodeType":"YulVariableDeclaration","src":"5876:16:101","value":{"kind":"number","nativeSrc":"5891:1:101","nodeType":"YulLiteral","src":"5891:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"5880:7:101","nodeType":"YulTypedName","src":"5880:7:101","type":""}]},{"nativeSrc":"5901:43:101","nodeType":"YulAssignment","src":"5901:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5929:9:101","nodeType":"YulIdentifier","src":"5929:9:101"},{"kind":"number","nativeSrc":"5940:2:101","nodeType":"YulLiteral","src":"5940:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5925:3:101","nodeType":"YulIdentifier","src":"5925:3:101"},"nativeSrc":"5925:18:101","nodeType":"YulFunctionCall","src":"5925:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"5912:12:101","nodeType":"YulIdentifier","src":"5912:12:101"},"nativeSrc":"5912:32:101","nodeType":"YulFunctionCall","src":"5912:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"5901:7:101","nodeType":"YulIdentifier","src":"5901:7:101"}]},{"nativeSrc":"5953:17:101","nodeType":"YulAssignment","src":"5953:17:101","value":{"name":"value_1","nativeSrc":"5963:7:101","nodeType":"YulIdentifier","src":"5963:7:101"},"variableNames":[{"name":"value1","nativeSrc":"5953:6:101","nodeType":"YulIdentifier","src":"5953:6:101"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256","nativeSrc":"5630:346:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5675:9:101","nodeType":"YulTypedName","src":"5675:9:101","type":""},{"name":"dataEnd","nativeSrc":"5686:7:101","nodeType":"YulTypedName","src":"5686:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5698:6:101","nodeType":"YulTypedName","src":"5698:6:101","type":""},{"name":"value1","nativeSrc":"5706:6:101","nodeType":"YulTypedName","src":"5706:6:101","type":""}],"src":"5630:346:101"},{"body":{"nativeSrc":"6068:290:101","nodeType":"YulBlock","src":"6068:290:101","statements":[{"body":{"nativeSrc":"6114:16:101","nodeType":"YulBlock","src":"6114:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6123:1:101","nodeType":"YulLiteral","src":"6123:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6126:1:101","nodeType":"YulLiteral","src":"6126:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6116:6:101","nodeType":"YulIdentifier","src":"6116:6:101"},"nativeSrc":"6116:12:101","nodeType":"YulFunctionCall","src":"6116:12:101"},"nativeSrc":"6116:12:101","nodeType":"YulExpressionStatement","src":"6116:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6089:7:101","nodeType":"YulIdentifier","src":"6089:7:101"},{"name":"headStart","nativeSrc":"6098:9:101","nodeType":"YulIdentifier","src":"6098:9:101"}],"functionName":{"name":"sub","nativeSrc":"6085:3:101","nodeType":"YulIdentifier","src":"6085:3:101"},"nativeSrc":"6085:23:101","nodeType":"YulFunctionCall","src":"6085:23:101"},{"kind":"number","nativeSrc":"6110:2:101","nodeType":"YulLiteral","src":"6110:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6081:3:101","nodeType":"YulIdentifier","src":"6081:3:101"},"nativeSrc":"6081:32:101","nodeType":"YulFunctionCall","src":"6081:32:101"},"nativeSrc":"6078:52:101","nodeType":"YulIf","src":"6078:52:101"},{"nativeSrc":"6139:14:101","nodeType":"YulVariableDeclaration","src":"6139:14:101","value":{"kind":"number","nativeSrc":"6152:1:101","nodeType":"YulLiteral","src":"6152:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"6143:5:101","nodeType":"YulTypedName","src":"6143:5:101","type":""}]},{"nativeSrc":"6162:32:101","nodeType":"YulAssignment","src":"6162:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6184:9:101","nodeType":"YulIdentifier","src":"6184:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"6171:12:101","nodeType":"YulIdentifier","src":"6171:12:101"},"nativeSrc":"6171:23:101","nodeType":"YulFunctionCall","src":"6171:23:101"},"variableNames":[{"name":"value","nativeSrc":"6162:5:101","nodeType":"YulIdentifier","src":"6162:5:101"}]},{"nativeSrc":"6203:15:101","nodeType":"YulAssignment","src":"6203:15:101","value":{"name":"value","nativeSrc":"6213:5:101","nodeType":"YulIdentifier","src":"6213:5:101"},"variableNames":[{"name":"value0","nativeSrc":"6203:6:101","nodeType":"YulIdentifier","src":"6203:6:101"}]},{"nativeSrc":"6227:47:101","nodeType":"YulVariableDeclaration","src":"6227:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6259:9:101","nodeType":"YulIdentifier","src":"6259:9:101"},{"kind":"number","nativeSrc":"6270:2:101","nodeType":"YulLiteral","src":"6270:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6255:3:101","nodeType":"YulIdentifier","src":"6255:3:101"},"nativeSrc":"6255:18:101","nodeType":"YulFunctionCall","src":"6255:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"6242:12:101","nodeType":"YulIdentifier","src":"6242:12:101"},"nativeSrc":"6242:32:101","nodeType":"YulFunctionCall","src":"6242:32:101"},"variables":[{"name":"value_1","nativeSrc":"6231:7:101","nodeType":"YulTypedName","src":"6231:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"6318:7:101","nodeType":"YulIdentifier","src":"6318:7:101"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"6283:34:101","nodeType":"YulIdentifier","src":"6283:34:101"},"nativeSrc":"6283:43:101","nodeType":"YulFunctionCall","src":"6283:43:101"},"nativeSrc":"6283:43:101","nodeType":"YulExpressionStatement","src":"6283:43:101"},{"nativeSrc":"6335:17:101","nodeType":"YulAssignment","src":"6335:17:101","value":{"name":"value_1","nativeSrc":"6345:7:101","nodeType":"YulIdentifier","src":"6345:7:101"},"variableNames":[{"name":"value1","nativeSrc":"6335:6:101","nodeType":"YulIdentifier","src":"6335:6:101"}]}]},"name":"abi_decode_tuple_t_uint256t_address","nativeSrc":"5981:377:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6026:9:101","nodeType":"YulTypedName","src":"6026:9:101","type":""},{"name":"dataEnd","nativeSrc":"6037:7:101","nodeType":"YulTypedName","src":"6037:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6049:6:101","nodeType":"YulTypedName","src":"6049:6:101","type":""},{"name":"value1","nativeSrc":"6057:6:101","nodeType":"YulTypedName","src":"6057:6:101","type":""}],"src":"5981:377:101"},{"body":{"nativeSrc":"6481:102:101","nodeType":"YulBlock","src":"6481:102:101","statements":[{"nativeSrc":"6491:26:101","nodeType":"YulAssignment","src":"6491:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6503:9:101","nodeType":"YulIdentifier","src":"6503:9:101"},{"kind":"number","nativeSrc":"6514:2:101","nodeType":"YulLiteral","src":"6514:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6499:3:101","nodeType":"YulIdentifier","src":"6499:3:101"},"nativeSrc":"6499:18:101","nodeType":"YulFunctionCall","src":"6499:18:101"},"variableNames":[{"name":"tail","nativeSrc":"6491:4:101","nodeType":"YulIdentifier","src":"6491:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6533:9:101","nodeType":"YulIdentifier","src":"6533:9:101"},{"arguments":[{"name":"value0","nativeSrc":"6548:6:101","nodeType":"YulIdentifier","src":"6548:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6564:3:101","nodeType":"YulLiteral","src":"6564:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"6569:1:101","nodeType":"YulLiteral","src":"6569:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6560:3:101","nodeType":"YulIdentifier","src":"6560:3:101"},"nativeSrc":"6560:11:101","nodeType":"YulFunctionCall","src":"6560:11:101"},{"kind":"number","nativeSrc":"6573:1:101","nodeType":"YulLiteral","src":"6573:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6556:3:101","nodeType":"YulIdentifier","src":"6556:3:101"},"nativeSrc":"6556:19:101","nodeType":"YulFunctionCall","src":"6556:19:101"}],"functionName":{"name":"and","nativeSrc":"6544:3:101","nodeType":"YulIdentifier","src":"6544:3:101"},"nativeSrc":"6544:32:101","nodeType":"YulFunctionCall","src":"6544:32:101"}],"functionName":{"name":"mstore","nativeSrc":"6526:6:101","nodeType":"YulIdentifier","src":"6526:6:101"},"nativeSrc":"6526:51:101","nodeType":"YulFunctionCall","src":"6526:51:101"},"nativeSrc":"6526:51:101","nodeType":"YulExpressionStatement","src":"6526:51:101"}]},"name":"abi_encode_tuple_t_contract$_IERC4626_$6400__to_t_address__fromStack_reversed","nativeSrc":"6363:220:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6450:9:101","nodeType":"YulTypedName","src":"6450:9:101","type":""},{"name":"value0","nativeSrc":"6461:6:101","nodeType":"YulTypedName","src":"6461:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6472:4:101","nodeType":"YulTypedName","src":"6472:4:101","type":""}],"src":"6363:220:101"},{"body":{"nativeSrc":"6709:297:101","nodeType":"YulBlock","src":"6709:297:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6726:9:101","nodeType":"YulIdentifier","src":"6726:9:101"},{"kind":"number","nativeSrc":"6737:2:101","nodeType":"YulLiteral","src":"6737:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"6719:6:101","nodeType":"YulIdentifier","src":"6719:6:101"},"nativeSrc":"6719:21:101","nodeType":"YulFunctionCall","src":"6719:21:101"},"nativeSrc":"6719:21:101","nodeType":"YulExpressionStatement","src":"6719:21:101"},{"nativeSrc":"6749:27:101","nodeType":"YulVariableDeclaration","src":"6749:27:101","value":{"arguments":[{"name":"value0","nativeSrc":"6769:6:101","nodeType":"YulIdentifier","src":"6769:6:101"}],"functionName":{"name":"mload","nativeSrc":"6763:5:101","nodeType":"YulIdentifier","src":"6763:5:101"},"nativeSrc":"6763:13:101","nodeType":"YulFunctionCall","src":"6763:13:101"},"variables":[{"name":"length","nativeSrc":"6753:6:101","nodeType":"YulTypedName","src":"6753:6:101","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6796:9:101","nodeType":"YulIdentifier","src":"6796:9:101"},{"kind":"number","nativeSrc":"6807:2:101","nodeType":"YulLiteral","src":"6807:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6792:3:101","nodeType":"YulIdentifier","src":"6792:3:101"},"nativeSrc":"6792:18:101","nodeType":"YulFunctionCall","src":"6792:18:101"},{"name":"length","nativeSrc":"6812:6:101","nodeType":"YulIdentifier","src":"6812:6:101"}],"functionName":{"name":"mstore","nativeSrc":"6785:6:101","nodeType":"YulIdentifier","src":"6785:6:101"},"nativeSrc":"6785:34:101","nodeType":"YulFunctionCall","src":"6785:34:101"},"nativeSrc":"6785:34:101","nodeType":"YulExpressionStatement","src":"6785:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6838:9:101","nodeType":"YulIdentifier","src":"6838:9:101"},{"kind":"number","nativeSrc":"6849:2:101","nodeType":"YulLiteral","src":"6849:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6834:3:101","nodeType":"YulIdentifier","src":"6834:3:101"},"nativeSrc":"6834:18:101","nodeType":"YulFunctionCall","src":"6834:18:101"},{"arguments":[{"name":"value0","nativeSrc":"6858:6:101","nodeType":"YulIdentifier","src":"6858:6:101"},{"kind":"number","nativeSrc":"6866:2:101","nodeType":"YulLiteral","src":"6866:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6854:3:101","nodeType":"YulIdentifier","src":"6854:3:101"},"nativeSrc":"6854:15:101","nodeType":"YulFunctionCall","src":"6854:15:101"},{"name":"length","nativeSrc":"6871:6:101","nodeType":"YulIdentifier","src":"6871:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"6828:5:101","nodeType":"YulIdentifier","src":"6828:5:101"},"nativeSrc":"6828:50:101","nodeType":"YulFunctionCall","src":"6828:50:101"},"nativeSrc":"6828:50:101","nodeType":"YulExpressionStatement","src":"6828:50:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6902:9:101","nodeType":"YulIdentifier","src":"6902:9:101"},{"name":"length","nativeSrc":"6913:6:101","nodeType":"YulIdentifier","src":"6913:6:101"}],"functionName":{"name":"add","nativeSrc":"6898:3:101","nodeType":"YulIdentifier","src":"6898:3:101"},"nativeSrc":"6898:22:101","nodeType":"YulFunctionCall","src":"6898:22:101"},{"kind":"number","nativeSrc":"6922:2:101","nodeType":"YulLiteral","src":"6922:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6894:3:101","nodeType":"YulIdentifier","src":"6894:3:101"},"nativeSrc":"6894:31:101","nodeType":"YulFunctionCall","src":"6894:31:101"},{"kind":"number","nativeSrc":"6927:1:101","nodeType":"YulLiteral","src":"6927:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"6887:6:101","nodeType":"YulIdentifier","src":"6887:6:101"},"nativeSrc":"6887:42:101","nodeType":"YulFunctionCall","src":"6887:42:101"},"nativeSrc":"6887:42:101","nodeType":"YulExpressionStatement","src":"6887:42:101"},{"nativeSrc":"6938:62:101","nodeType":"YulAssignment","src":"6938:62:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6954:9:101","nodeType":"YulIdentifier","src":"6954:9:101"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"6973:6:101","nodeType":"YulIdentifier","src":"6973:6:101"},{"kind":"number","nativeSrc":"6981:2:101","nodeType":"YulLiteral","src":"6981:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"6969:3:101","nodeType":"YulIdentifier","src":"6969:3:101"},"nativeSrc":"6969:15:101","nodeType":"YulFunctionCall","src":"6969:15:101"},{"arguments":[{"kind":"number","nativeSrc":"6990:2:101","nodeType":"YulLiteral","src":"6990:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"6986:3:101","nodeType":"YulIdentifier","src":"6986:3:101"},"nativeSrc":"6986:7:101","nodeType":"YulFunctionCall","src":"6986:7:101"}],"functionName":{"name":"and","nativeSrc":"6965:3:101","nodeType":"YulIdentifier","src":"6965:3:101"},"nativeSrc":"6965:29:101","nodeType":"YulFunctionCall","src":"6965:29:101"}],"functionName":{"name":"add","nativeSrc":"6950:3:101","nodeType":"YulIdentifier","src":"6950:3:101"},"nativeSrc":"6950:45:101","nodeType":"YulFunctionCall","src":"6950:45:101"},{"kind":"number","nativeSrc":"6997:2:101","nodeType":"YulLiteral","src":"6997:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6946:3:101","nodeType":"YulIdentifier","src":"6946:3:101"},"nativeSrc":"6946:54:101","nodeType":"YulFunctionCall","src":"6946:54:101"},"variableNames":[{"name":"tail","nativeSrc":"6938:4:101","nodeType":"YulIdentifier","src":"6938:4:101"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"6588:418:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6678:9:101","nodeType":"YulTypedName","src":"6678:9:101","type":""},{"name":"value0","nativeSrc":"6689:6:101","nodeType":"YulTypedName","src":"6689:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6700:4:101","nodeType":"YulTypedName","src":"6700:4:101","type":""}],"src":"6588:418:101"},{"body":{"nativeSrc":"7160:231:101","nodeType":"YulBlock","src":"7160:231:101","statements":[{"body":{"nativeSrc":"7207:16:101","nodeType":"YulBlock","src":"7207:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7216:1:101","nodeType":"YulLiteral","src":"7216:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7219:1:101","nodeType":"YulLiteral","src":"7219:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7209:6:101","nodeType":"YulIdentifier","src":"7209:6:101"},"nativeSrc":"7209:12:101","nodeType":"YulFunctionCall","src":"7209:12:101"},"nativeSrc":"7209:12:101","nodeType":"YulExpressionStatement","src":"7209:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7181:7:101","nodeType":"YulIdentifier","src":"7181:7:101"},{"name":"headStart","nativeSrc":"7190:9:101","nodeType":"YulIdentifier","src":"7190:9:101"}],"functionName":{"name":"sub","nativeSrc":"7177:3:101","nodeType":"YulIdentifier","src":"7177:3:101"},"nativeSrc":"7177:23:101","nodeType":"YulFunctionCall","src":"7177:23:101"},{"kind":"number","nativeSrc":"7202:3:101","nodeType":"YulLiteral","src":"7202:3:101","type":"","value":"768"}],"functionName":{"name":"slt","nativeSrc":"7173:3:101","nodeType":"YulIdentifier","src":"7173:3:101"},"nativeSrc":"7173:33:101","nodeType":"YulFunctionCall","src":"7173:33:101"},"nativeSrc":"7170:53:101","nodeType":"YulIf","src":"7170:53:101"},{"nativeSrc":"7232:67:101","nodeType":"YulAssignment","src":"7232:67:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7280:9:101","nodeType":"YulIdentifier","src":"7280:9:101"},{"name":"dataEnd","nativeSrc":"7291:7:101","nodeType":"YulIdentifier","src":"7291:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"7242:37:101","nodeType":"YulIdentifier","src":"7242:37:101"},"nativeSrc":"7242:57:101","nodeType":"YulFunctionCall","src":"7242:57:101"},"variableNames":[{"name":"value0","nativeSrc":"7232:6:101","nodeType":"YulIdentifier","src":"7232:6:101"}]},{"nativeSrc":"7308:77:101","nodeType":"YulAssignment","src":"7308:77:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7360:9:101","nodeType":"YulIdentifier","src":"7360:9:101"},{"kind":"number","nativeSrc":"7371:3:101","nodeType":"YulLiteral","src":"7371:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"7356:3:101","nodeType":"YulIdentifier","src":"7356:3:101"},"nativeSrc":"7356:19:101","nodeType":"YulFunctionCall","src":"7356:19:101"},{"name":"dataEnd","nativeSrc":"7377:7:101","nodeType":"YulIdentifier","src":"7377:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"7318:37:101","nodeType":"YulIdentifier","src":"7318:37:101"},"nativeSrc":"7318:67:101","nodeType":"YulFunctionCall","src":"7318:67:101"},"variableNames":[{"name":"value1","nativeSrc":"7308:6:101","nodeType":"YulIdentifier","src":"7308:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_struct$_PolicyData_$22256_calldata_ptr","nativeSrc":"7011:380:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7118:9:101","nodeType":"YulTypedName","src":"7118:9:101","type":""},{"name":"dataEnd","nativeSrc":"7129:7:101","nodeType":"YulTypedName","src":"7129:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7141:6:101","nodeType":"YulTypedName","src":"7141:6:101","type":""},{"name":"value1","nativeSrc":"7149:6:101","nodeType":"YulTypedName","src":"7149:6:101","type":""}],"src":"7011:380:101"},{"body":{"nativeSrc":"7520:102:101","nodeType":"YulBlock","src":"7520:102:101","statements":[{"nativeSrc":"7530:26:101","nodeType":"YulAssignment","src":"7530:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7542:9:101","nodeType":"YulIdentifier","src":"7542:9:101"},{"kind":"number","nativeSrc":"7553:2:101","nodeType":"YulLiteral","src":"7553:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7538:3:101","nodeType":"YulIdentifier","src":"7538:3:101"},"nativeSrc":"7538:18:101","nodeType":"YulFunctionCall","src":"7538:18:101"},"variableNames":[{"name":"tail","nativeSrc":"7530:4:101","nodeType":"YulIdentifier","src":"7530:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7572:9:101","nodeType":"YulIdentifier","src":"7572:9:101"},{"arguments":[{"name":"value0","nativeSrc":"7587:6:101","nodeType":"YulIdentifier","src":"7587:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7603:3:101","nodeType":"YulLiteral","src":"7603:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"7608:1:101","nodeType":"YulLiteral","src":"7608:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7599:3:101","nodeType":"YulIdentifier","src":"7599:3:101"},"nativeSrc":"7599:11:101","nodeType":"YulFunctionCall","src":"7599:11:101"},{"kind":"number","nativeSrc":"7612:1:101","nodeType":"YulLiteral","src":"7612:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7595:3:101","nodeType":"YulIdentifier","src":"7595:3:101"},"nativeSrc":"7595:19:101","nodeType":"YulFunctionCall","src":"7595:19:101"}],"functionName":{"name":"and","nativeSrc":"7583:3:101","nodeType":"YulIdentifier","src":"7583:3:101"},"nativeSrc":"7583:32:101","nodeType":"YulFunctionCall","src":"7583:32:101"}],"functionName":{"name":"mstore","nativeSrc":"7565:6:101","nodeType":"YulIdentifier","src":"7565:6:101"},"nativeSrc":"7565:51:101","nodeType":"YulFunctionCall","src":"7565:51:101"},"nativeSrc":"7565:51:101","nodeType":"YulExpressionStatement","src":"7565:51:101"}]},"name":"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed","nativeSrc":"7396:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7489:9:101","nodeType":"YulTypedName","src":"7489:9:101","type":""},{"name":"value0","nativeSrc":"7500:6:101","nodeType":"YulTypedName","src":"7500:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7511:4:101","nodeType":"YulTypedName","src":"7511:4:101","type":""}],"src":"7396:226:101"},{"body":{"nativeSrc":"7796:586:101","nodeType":"YulBlock","src":"7796:586:101","statements":[{"body":{"nativeSrc":"7843:16:101","nodeType":"YulBlock","src":"7843:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7852:1:101","nodeType":"YulLiteral","src":"7852:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7855:1:101","nodeType":"YulLiteral","src":"7855:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7845:6:101","nodeType":"YulIdentifier","src":"7845:6:101"},"nativeSrc":"7845:12:101","nodeType":"YulFunctionCall","src":"7845:12:101"},"nativeSrc":"7845:12:101","nodeType":"YulExpressionStatement","src":"7845:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7817:7:101","nodeType":"YulIdentifier","src":"7817:7:101"},{"name":"headStart","nativeSrc":"7826:9:101","nodeType":"YulIdentifier","src":"7826:9:101"}],"functionName":{"name":"sub","nativeSrc":"7813:3:101","nodeType":"YulIdentifier","src":"7813:3:101"},"nativeSrc":"7813:23:101","nodeType":"YulFunctionCall","src":"7813:23:101"},{"kind":"number","nativeSrc":"7838:3:101","nodeType":"YulLiteral","src":"7838:3:101","type":"","value":"512"}],"functionName":{"name":"slt","nativeSrc":"7809:3:101","nodeType":"YulIdentifier","src":"7809:3:101"},"nativeSrc":"7809:33:101","nodeType":"YulFunctionCall","src":"7809:33:101"},"nativeSrc":"7806:53:101","nodeType":"YulIf","src":"7806:53:101"},{"nativeSrc":"7868:67:101","nodeType":"YulAssignment","src":"7868:67:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7916:9:101","nodeType":"YulIdentifier","src":"7916:9:101"},{"name":"dataEnd","nativeSrc":"7927:7:101","nodeType":"YulIdentifier","src":"7927:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"7878:37:101","nodeType":"YulIdentifier","src":"7878:37:101"},"nativeSrc":"7878:57:101","nodeType":"YulFunctionCall","src":"7878:57:101"},"variableNames":[{"name":"value0","nativeSrc":"7868:6:101","nodeType":"YulIdentifier","src":"7868:6:101"}]},{"nativeSrc":"7944:14:101","nodeType":"YulVariableDeclaration","src":"7944:14:101","value":{"kind":"number","nativeSrc":"7957:1:101","nodeType":"YulLiteral","src":"7957:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"7948:5:101","nodeType":"YulTypedName","src":"7948:5:101","type":""}]},{"nativeSrc":"7967:42:101","nodeType":"YulAssignment","src":"7967:42:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7993:9:101","nodeType":"YulIdentifier","src":"7993:9:101"},{"kind":"number","nativeSrc":"8004:3:101","nodeType":"YulLiteral","src":"8004:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"7989:3:101","nodeType":"YulIdentifier","src":"7989:3:101"},"nativeSrc":"7989:19:101","nodeType":"YulFunctionCall","src":"7989:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"7976:12:101","nodeType":"YulIdentifier","src":"7976:12:101"},"nativeSrc":"7976:33:101","nodeType":"YulFunctionCall","src":"7976:33:101"},"variableNames":[{"name":"value","nativeSrc":"7967:5:101","nodeType":"YulIdentifier","src":"7967:5:101"}]},{"nativeSrc":"8018:15:101","nodeType":"YulAssignment","src":"8018:15:101","value":{"name":"value","nativeSrc":"8028:5:101","nodeType":"YulIdentifier","src":"8028:5:101"},"variableNames":[{"name":"value1","nativeSrc":"8018:6:101","nodeType":"YulIdentifier","src":"8018:6:101"}]},{"nativeSrc":"8042:16:101","nodeType":"YulVariableDeclaration","src":"8042:16:101","value":{"kind":"number","nativeSrc":"8057:1:101","nodeType":"YulLiteral","src":"8057:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"8046:7:101","nodeType":"YulTypedName","src":"8046:7:101","type":""}]},{"nativeSrc":"8067:44:101","nodeType":"YulAssignment","src":"8067:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8095:9:101","nodeType":"YulIdentifier","src":"8095:9:101"},{"kind":"number","nativeSrc":"8106:3:101","nodeType":"YulLiteral","src":"8106:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"8091:3:101","nodeType":"YulIdentifier","src":"8091:3:101"},"nativeSrc":"8091:19:101","nodeType":"YulFunctionCall","src":"8091:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"8078:12:101","nodeType":"YulIdentifier","src":"8078:12:101"},"nativeSrc":"8078:33:101","nodeType":"YulFunctionCall","src":"8078:33:101"},"variableNames":[{"name":"value_1","nativeSrc":"8067:7:101","nodeType":"YulIdentifier","src":"8067:7:101"}]},{"nativeSrc":"8120:17:101","nodeType":"YulAssignment","src":"8120:17:101","value":{"name":"value_1","nativeSrc":"8130:7:101","nodeType":"YulIdentifier","src":"8130:7:101"},"variableNames":[{"name":"value2","nativeSrc":"8120:6:101","nodeType":"YulIdentifier","src":"8120:6:101"}]},{"nativeSrc":"8146:16:101","nodeType":"YulVariableDeclaration","src":"8146:16:101","value":{"kind":"number","nativeSrc":"8161:1:101","nodeType":"YulLiteral","src":"8161:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"8150:7:101","nodeType":"YulTypedName","src":"8150:7:101","type":""}]},{"nativeSrc":"8171:44:101","nodeType":"YulAssignment","src":"8171:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8199:9:101","nodeType":"YulIdentifier","src":"8199:9:101"},{"kind":"number","nativeSrc":"8210:3:101","nodeType":"YulLiteral","src":"8210:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"8195:3:101","nodeType":"YulIdentifier","src":"8195:3:101"},"nativeSrc":"8195:19:101","nodeType":"YulFunctionCall","src":"8195:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"8182:12:101","nodeType":"YulIdentifier","src":"8182:12:101"},"nativeSrc":"8182:33:101","nodeType":"YulFunctionCall","src":"8182:33:101"},"variableNames":[{"name":"value_2","nativeSrc":"8171:7:101","nodeType":"YulIdentifier","src":"8171:7:101"}]},{"nativeSrc":"8224:17:101","nodeType":"YulAssignment","src":"8224:17:101","value":{"name":"value_2","nativeSrc":"8234:7:101","nodeType":"YulIdentifier","src":"8234:7:101"},"variableNames":[{"name":"value3","nativeSrc":"8224:6:101","nodeType":"YulIdentifier","src":"8224:6:101"}]},{"nativeSrc":"8250:48:101","nodeType":"YulVariableDeclaration","src":"8250:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8282:9:101","nodeType":"YulIdentifier","src":"8282:9:101"},{"kind":"number","nativeSrc":"8293:3:101","nodeType":"YulLiteral","src":"8293:3:101","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"8278:3:101","nodeType":"YulIdentifier","src":"8278:3:101"},"nativeSrc":"8278:19:101","nodeType":"YulFunctionCall","src":"8278:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"8265:12:101","nodeType":"YulIdentifier","src":"8265:12:101"},"nativeSrc":"8265:33:101","nodeType":"YulFunctionCall","src":"8265:33:101"},"variables":[{"name":"value_3","nativeSrc":"8254:7:101","nodeType":"YulTypedName","src":"8254:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"8342:7:101","nodeType":"YulIdentifier","src":"8342:7:101"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"8307:34:101","nodeType":"YulIdentifier","src":"8307:34:101"},"nativeSrc":"8307:43:101","nodeType":"YulFunctionCall","src":"8307:43:101"},"nativeSrc":"8307:43:101","nodeType":"YulExpressionStatement","src":"8307:43:101"},{"nativeSrc":"8359:17:101","nodeType":"YulAssignment","src":"8359:17:101","value":{"name":"value_3","nativeSrc":"8369:7:101","nodeType":"YulIdentifier","src":"8369:7:101"},"variableNames":[{"name":"value4","nativeSrc":"8359:6:101","nodeType":"YulIdentifier","src":"8359:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_uint256t_uint256t_uint256t_address","nativeSrc":"7627:755:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7730:9:101","nodeType":"YulTypedName","src":"7730:9:101","type":""},{"name":"dataEnd","nativeSrc":"7741:7:101","nodeType":"YulTypedName","src":"7741:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7753:6:101","nodeType":"YulTypedName","src":"7753:6:101","type":""},{"name":"value1","nativeSrc":"7761:6:101","nodeType":"YulTypedName","src":"7761:6:101","type":""},{"name":"value2","nativeSrc":"7769:6:101","nodeType":"YulTypedName","src":"7769:6:101","type":""},{"name":"value3","nativeSrc":"7777:6:101","nodeType":"YulTypedName","src":"7777:6:101","type":""},{"name":"value4","nativeSrc":"7785:6:101","nodeType":"YulTypedName","src":"7785:6:101","type":""}],"src":"7627:755:101"},{"body":{"nativeSrc":"8468:180:101","nodeType":"YulBlock","src":"8468:180:101","statements":[{"body":{"nativeSrc":"8514:16:101","nodeType":"YulBlock","src":"8514:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8523:1:101","nodeType":"YulLiteral","src":"8523:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8526:1:101","nodeType":"YulLiteral","src":"8526:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8516:6:101","nodeType":"YulIdentifier","src":"8516:6:101"},"nativeSrc":"8516:12:101","nodeType":"YulFunctionCall","src":"8516:12:101"},"nativeSrc":"8516:12:101","nodeType":"YulExpressionStatement","src":"8516:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8489:7:101","nodeType":"YulIdentifier","src":"8489:7:101"},{"name":"headStart","nativeSrc":"8498:9:101","nodeType":"YulIdentifier","src":"8498:9:101"}],"functionName":{"name":"sub","nativeSrc":"8485:3:101","nodeType":"YulIdentifier","src":"8485:3:101"},"nativeSrc":"8485:23:101","nodeType":"YulFunctionCall","src":"8485:23:101"},{"kind":"number","nativeSrc":"8510:2:101","nodeType":"YulLiteral","src":"8510:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"8481:3:101","nodeType":"YulIdentifier","src":"8481:3:101"},"nativeSrc":"8481:32:101","nodeType":"YulFunctionCall","src":"8481:32:101"},"nativeSrc":"8478:52:101","nodeType":"YulIf","src":"8478:52:101"},{"nativeSrc":"8539:29:101","nodeType":"YulVariableDeclaration","src":"8539:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8558:9:101","nodeType":"YulIdentifier","src":"8558:9:101"}],"functionName":{"name":"mload","nativeSrc":"8552:5:101","nodeType":"YulIdentifier","src":"8552:5:101"},"nativeSrc":"8552:16:101","nodeType":"YulFunctionCall","src":"8552:16:101"},"variables":[{"name":"value","nativeSrc":"8543:5:101","nodeType":"YulTypedName","src":"8543:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8612:5:101","nodeType":"YulIdentifier","src":"8612:5:101"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"8577:34:101","nodeType":"YulIdentifier","src":"8577:34:101"},"nativeSrc":"8577:41:101","nodeType":"YulFunctionCall","src":"8577:41:101"},"nativeSrc":"8577:41:101","nodeType":"YulExpressionStatement","src":"8577:41:101"},{"nativeSrc":"8627:15:101","nodeType":"YulAssignment","src":"8627:15:101","value":{"name":"value","nativeSrc":"8637:5:101","nodeType":"YulIdentifier","src":"8637:5:101"},"variableNames":[{"name":"value0","nativeSrc":"8627:6:101","nodeType":"YulIdentifier","src":"8627:6:101"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"8387:261:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8434:9:101","nodeType":"YulTypedName","src":"8434:9:101","type":""},{"name":"dataEnd","nativeSrc":"8445:7:101","nodeType":"YulTypedName","src":"8445:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8457:6:101","nodeType":"YulTypedName","src":"8457:6:101","type":""}],"src":"8387:261:101"},{"body":{"nativeSrc":"8754:102:101","nodeType":"YulBlock","src":"8754:102:101","statements":[{"nativeSrc":"8764:26:101","nodeType":"YulAssignment","src":"8764:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8776:9:101","nodeType":"YulIdentifier","src":"8776:9:101"},{"kind":"number","nativeSrc":"8787:2:101","nodeType":"YulLiteral","src":"8787:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8772:3:101","nodeType":"YulIdentifier","src":"8772:3:101"},"nativeSrc":"8772:18:101","nodeType":"YulFunctionCall","src":"8772:18:101"},"variableNames":[{"name":"tail","nativeSrc":"8764:4:101","nodeType":"YulIdentifier","src":"8764:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8806:9:101","nodeType":"YulIdentifier","src":"8806:9:101"},{"arguments":[{"name":"value0","nativeSrc":"8821:6:101","nodeType":"YulIdentifier","src":"8821:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"8837:3:101","nodeType":"YulLiteral","src":"8837:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"8842:1:101","nodeType":"YulLiteral","src":"8842:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"8833:3:101","nodeType":"YulIdentifier","src":"8833:3:101"},"nativeSrc":"8833:11:101","nodeType":"YulFunctionCall","src":"8833:11:101"},{"kind":"number","nativeSrc":"8846:1:101","nodeType":"YulLiteral","src":"8846:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"8829:3:101","nodeType":"YulIdentifier","src":"8829:3:101"},"nativeSrc":"8829:19:101","nodeType":"YulFunctionCall","src":"8829:19:101"}],"functionName":{"name":"and","nativeSrc":"8817:3:101","nodeType":"YulIdentifier","src":"8817:3:101"},"nativeSrc":"8817:32:101","nodeType":"YulFunctionCall","src":"8817:32:101"}],"functionName":{"name":"mstore","nativeSrc":"8799:6:101","nodeType":"YulIdentifier","src":"8799:6:101"},"nativeSrc":"8799:51:101","nodeType":"YulFunctionCall","src":"8799:51:101"},"nativeSrc":"8799:51:101","nodeType":"YulExpressionStatement","src":"8799:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"8653:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8723:9:101","nodeType":"YulTypedName","src":"8723:9:101","type":""},{"name":"value0","nativeSrc":"8734:6:101","nodeType":"YulTypedName","src":"8734:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8745:4:101","nodeType":"YulTypedName","src":"8745:4:101","type":""}],"src":"8653:203:101"},{"body":{"nativeSrc":"8942:103:101","nodeType":"YulBlock","src":"8942:103:101","statements":[{"body":{"nativeSrc":"8988:16:101","nodeType":"YulBlock","src":"8988:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8997:1:101","nodeType":"YulLiteral","src":"8997:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9000:1:101","nodeType":"YulLiteral","src":"9000:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8990:6:101","nodeType":"YulIdentifier","src":"8990:6:101"},"nativeSrc":"8990:12:101","nodeType":"YulFunctionCall","src":"8990:12:101"},"nativeSrc":"8990:12:101","nodeType":"YulExpressionStatement","src":"8990:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8963:7:101","nodeType":"YulIdentifier","src":"8963:7:101"},{"name":"headStart","nativeSrc":"8972:9:101","nodeType":"YulIdentifier","src":"8972:9:101"}],"functionName":{"name":"sub","nativeSrc":"8959:3:101","nodeType":"YulIdentifier","src":"8959:3:101"},"nativeSrc":"8959:23:101","nodeType":"YulFunctionCall","src":"8959:23:101"},{"kind":"number","nativeSrc":"8984:2:101","nodeType":"YulLiteral","src":"8984:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"8955:3:101","nodeType":"YulIdentifier","src":"8955:3:101"},"nativeSrc":"8955:32:101","nodeType":"YulFunctionCall","src":"8955:32:101"},"nativeSrc":"8952:52:101","nodeType":"YulIf","src":"8952:52:101"},{"nativeSrc":"9013:26:101","nodeType":"YulAssignment","src":"9013:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"9029:9:101","nodeType":"YulIdentifier","src":"9029:9:101"}],"functionName":{"name":"mload","nativeSrc":"9023:5:101","nodeType":"YulIdentifier","src":"9023:5:101"},"nativeSrc":"9023:16:101","nodeType":"YulFunctionCall","src":"9023:16:101"},"variableNames":[{"name":"value0","nativeSrc":"9013:6:101","nodeType":"YulIdentifier","src":"9013:6:101"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"8861:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8908:9:101","nodeType":"YulTypedName","src":"8908:9:101","type":""},{"name":"dataEnd","nativeSrc":"8919:7:101","nodeType":"YulTypedName","src":"8919:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8931:6:101","nodeType":"YulTypedName","src":"8931:6:101","type":""}],"src":"8861:184:101"},{"body":{"nativeSrc":"9207:214:101","nodeType":"YulBlock","src":"9207:214:101","statements":[{"nativeSrc":"9217:26:101","nodeType":"YulAssignment","src":"9217:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"9229:9:101","nodeType":"YulIdentifier","src":"9229:9:101"},{"kind":"number","nativeSrc":"9240:2:101","nodeType":"YulLiteral","src":"9240:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"9225:3:101","nodeType":"YulIdentifier","src":"9225:3:101"},"nativeSrc":"9225:18:101","nodeType":"YulFunctionCall","src":"9225:18:101"},"variableNames":[{"name":"tail","nativeSrc":"9217:4:101","nodeType":"YulIdentifier","src":"9217:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9259:9:101","nodeType":"YulIdentifier","src":"9259:9:101"},{"name":"value0","nativeSrc":"9270:6:101","nodeType":"YulIdentifier","src":"9270:6:101"}],"functionName":{"name":"mstore","nativeSrc":"9252:6:101","nodeType":"YulIdentifier","src":"9252:6:101"},"nativeSrc":"9252:25:101","nodeType":"YulFunctionCall","src":"9252:25:101"},"nativeSrc":"9252:25:101","nodeType":"YulExpressionStatement","src":"9252:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9297:9:101","nodeType":"YulIdentifier","src":"9297:9:101"},{"kind":"number","nativeSrc":"9308:2:101","nodeType":"YulLiteral","src":"9308:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9293:3:101","nodeType":"YulIdentifier","src":"9293:3:101"},"nativeSrc":"9293:18:101","nodeType":"YulFunctionCall","src":"9293:18:101"},{"arguments":[{"name":"value1","nativeSrc":"9317:6:101","nodeType":"YulIdentifier","src":"9317:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9333:3:101","nodeType":"YulLiteral","src":"9333:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"9338:1:101","nodeType":"YulLiteral","src":"9338:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"9329:3:101","nodeType":"YulIdentifier","src":"9329:3:101"},"nativeSrc":"9329:11:101","nodeType":"YulFunctionCall","src":"9329:11:101"},{"kind":"number","nativeSrc":"9342:1:101","nodeType":"YulLiteral","src":"9342:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"9325:3:101","nodeType":"YulIdentifier","src":"9325:3:101"},"nativeSrc":"9325:19:101","nodeType":"YulFunctionCall","src":"9325:19:101"}],"functionName":{"name":"and","nativeSrc":"9313:3:101","nodeType":"YulIdentifier","src":"9313:3:101"},"nativeSrc":"9313:32:101","nodeType":"YulFunctionCall","src":"9313:32:101"}],"functionName":{"name":"mstore","nativeSrc":"9286:6:101","nodeType":"YulIdentifier","src":"9286:6:101"},"nativeSrc":"9286:60:101","nodeType":"YulFunctionCall","src":"9286:60:101"},"nativeSrc":"9286:60:101","nodeType":"YulExpressionStatement","src":"9286:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9366:9:101","nodeType":"YulIdentifier","src":"9366:9:101"},{"kind":"number","nativeSrc":"9377:2:101","nodeType":"YulLiteral","src":"9377:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9362:3:101","nodeType":"YulIdentifier","src":"9362:3:101"},"nativeSrc":"9362:18:101","nodeType":"YulFunctionCall","src":"9362:18:101"},{"arguments":[{"name":"value2","nativeSrc":"9386:6:101","nodeType":"YulIdentifier","src":"9386:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9402:3:101","nodeType":"YulLiteral","src":"9402:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"9407:1:101","nodeType":"YulLiteral","src":"9407:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"9398:3:101","nodeType":"YulIdentifier","src":"9398:3:101"},"nativeSrc":"9398:11:101","nodeType":"YulFunctionCall","src":"9398:11:101"},{"kind":"number","nativeSrc":"9411:1:101","nodeType":"YulLiteral","src":"9411:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"9394:3:101","nodeType":"YulIdentifier","src":"9394:3:101"},"nativeSrc":"9394:19:101","nodeType":"YulFunctionCall","src":"9394:19:101"}],"functionName":{"name":"and","nativeSrc":"9382:3:101","nodeType":"YulIdentifier","src":"9382:3:101"},"nativeSrc":"9382:32:101","nodeType":"YulFunctionCall","src":"9382:32:101"}],"functionName":{"name":"mstore","nativeSrc":"9355:6:101","nodeType":"YulIdentifier","src":"9355:6:101"},"nativeSrc":"9355:60:101","nodeType":"YulFunctionCall","src":"9355:60:101"},"nativeSrc":"9355:60:101","nodeType":"YulExpressionStatement","src":"9355:60:101"}]},"name":"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed","nativeSrc":"9050:371:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9160:9:101","nodeType":"YulTypedName","src":"9160:9:101","type":""},{"name":"value2","nativeSrc":"9171:6:101","nodeType":"YulTypedName","src":"9171:6:101","type":""},{"name":"value1","nativeSrc":"9179:6:101","nodeType":"YulTypedName","src":"9179:6:101","type":""},{"name":"value0","nativeSrc":"9187:6:101","nodeType":"YulTypedName","src":"9187:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9198:4:101","nodeType":"YulTypedName","src":"9198:4:101","type":""}],"src":"9050:371:101"},{"body":{"nativeSrc":"9458:95:101","nodeType":"YulBlock","src":"9458:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9475:1:101","nodeType":"YulLiteral","src":"9475:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"9482:3:101","nodeType":"YulLiteral","src":"9482:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"9487:10:101","nodeType":"YulLiteral","src":"9487:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"9478:3:101","nodeType":"YulIdentifier","src":"9478:3:101"},"nativeSrc":"9478:20:101","nodeType":"YulFunctionCall","src":"9478:20:101"}],"functionName":{"name":"mstore","nativeSrc":"9468:6:101","nodeType":"YulIdentifier","src":"9468:6:101"},"nativeSrc":"9468:31:101","nodeType":"YulFunctionCall","src":"9468:31:101"},"nativeSrc":"9468:31:101","nodeType":"YulExpressionStatement","src":"9468:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9515:1:101","nodeType":"YulLiteral","src":"9515:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"9518:4:101","nodeType":"YulLiteral","src":"9518:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"9508:6:101","nodeType":"YulIdentifier","src":"9508:6:101"},"nativeSrc":"9508:15:101","nodeType":"YulFunctionCall","src":"9508:15:101"},"nativeSrc":"9508:15:101","nodeType":"YulExpressionStatement","src":"9508:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9539:1:101","nodeType":"YulLiteral","src":"9539:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9542:4:101","nodeType":"YulLiteral","src":"9542:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"9532:6:101","nodeType":"YulIdentifier","src":"9532:6:101"},"nativeSrc":"9532:15:101","nodeType":"YulFunctionCall","src":"9532:15:101"},"nativeSrc":"9532:15:101","nodeType":"YulExpressionStatement","src":"9532:15:101"}]},"name":"panic_error_0x11","nativeSrc":"9426:127:101","nodeType":"YulFunctionDefinition","src":"9426:127:101"},{"body":{"nativeSrc":"9606:152:101","nodeType":"YulBlock","src":"9606:152:101","statements":[{"nativeSrc":"9616:17:101","nodeType":"YulAssignment","src":"9616:17:101","value":{"arguments":[{"name":"x","nativeSrc":"9628:1:101","nodeType":"YulIdentifier","src":"9628:1:101"},{"name":"y","nativeSrc":"9631:1:101","nodeType":"YulIdentifier","src":"9631:1:101"}],"functionName":{"name":"sub","nativeSrc":"9624:3:101","nodeType":"YulIdentifier","src":"9624:3:101"},"nativeSrc":"9624:9:101","nodeType":"YulFunctionCall","src":"9624:9:101"},"variableNames":[{"name":"diff","nativeSrc":"9616:4:101","nodeType":"YulIdentifier","src":"9616:4:101"}]},{"nativeSrc":"9642:19:101","nodeType":"YulVariableDeclaration","src":"9642:19:101","value":{"arguments":[{"name":"y","nativeSrc":"9656:1:101","nodeType":"YulIdentifier","src":"9656:1:101"},{"kind":"number","nativeSrc":"9659:1:101","nodeType":"YulLiteral","src":"9659:1:101","type":"","value":"0"}],"functionName":{"name":"slt","nativeSrc":"9652:3:101","nodeType":"YulIdentifier","src":"9652:3:101"},"nativeSrc":"9652:9:101","nodeType":"YulFunctionCall","src":"9652:9:101"},"variables":[{"name":"_1","nativeSrc":"9646:2:101","nodeType":"YulTypedName","src":"9646:2:101","type":""}]},{"body":{"nativeSrc":"9730:22:101","nodeType":"YulBlock","src":"9730:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"9732:16:101","nodeType":"YulIdentifier","src":"9732:16:101"},"nativeSrc":"9732:18:101","nodeType":"YulFunctionCall","src":"9732:18:101"},"nativeSrc":"9732:18:101","nodeType":"YulExpressionStatement","src":"9732:18:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"9687:2:101","nodeType":"YulIdentifier","src":"9687:2:101"}],"functionName":{"name":"iszero","nativeSrc":"9680:6:101","nodeType":"YulIdentifier","src":"9680:6:101"},"nativeSrc":"9680:10:101","nodeType":"YulFunctionCall","src":"9680:10:101"},{"arguments":[{"name":"diff","nativeSrc":"9696:4:101","nodeType":"YulIdentifier","src":"9696:4:101"},{"name":"x","nativeSrc":"9702:1:101","nodeType":"YulIdentifier","src":"9702:1:101"}],"functionName":{"name":"sgt","nativeSrc":"9692:3:101","nodeType":"YulIdentifier","src":"9692:3:101"},"nativeSrc":"9692:12:101","nodeType":"YulFunctionCall","src":"9692:12:101"}],"functionName":{"name":"and","nativeSrc":"9676:3:101","nodeType":"YulIdentifier","src":"9676:3:101"},"nativeSrc":"9676:29:101","nodeType":"YulFunctionCall","src":"9676:29:101"},{"arguments":[{"name":"_1","nativeSrc":"9711:2:101","nodeType":"YulIdentifier","src":"9711:2:101"},{"arguments":[{"name":"diff","nativeSrc":"9719:4:101","nodeType":"YulIdentifier","src":"9719:4:101"},{"name":"x","nativeSrc":"9725:1:101","nodeType":"YulIdentifier","src":"9725:1:101"}],"functionName":{"name":"slt","nativeSrc":"9715:3:101","nodeType":"YulIdentifier","src":"9715:3:101"},"nativeSrc":"9715:12:101","nodeType":"YulFunctionCall","src":"9715:12:101"}],"functionName":{"name":"and","nativeSrc":"9707:3:101","nodeType":"YulIdentifier","src":"9707:3:101"},"nativeSrc":"9707:21:101","nodeType":"YulFunctionCall","src":"9707:21:101"}],"functionName":{"name":"or","nativeSrc":"9673:2:101","nodeType":"YulIdentifier","src":"9673:2:101"},"nativeSrc":"9673:56:101","nodeType":"YulFunctionCall","src":"9673:56:101"},"nativeSrc":"9670:82:101","nodeType":"YulIf","src":"9670:82:101"}]},"name":"checked_sub_t_int256","nativeSrc":"9558:200:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"9588:1:101","nodeType":"YulTypedName","src":"9588:1:101","type":""},{"name":"y","nativeSrc":"9591:1:101","nodeType":"YulTypedName","src":"9591:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"9597:4:101","nodeType":"YulTypedName","src":"9597:4:101","type":""}],"src":"9558:200:101"},{"body":{"nativeSrc":"9812:79:101","nodeType":"YulBlock","src":"9812:79:101","statements":[{"nativeSrc":"9822:17:101","nodeType":"YulAssignment","src":"9822:17:101","value":{"arguments":[{"name":"x","nativeSrc":"9834:1:101","nodeType":"YulIdentifier","src":"9834:1:101"},{"name":"y","nativeSrc":"9837:1:101","nodeType":"YulIdentifier","src":"9837:1:101"}],"functionName":{"name":"sub","nativeSrc":"9830:3:101","nodeType":"YulIdentifier","src":"9830:3:101"},"nativeSrc":"9830:9:101","nodeType":"YulFunctionCall","src":"9830:9:101"},"variableNames":[{"name":"diff","nativeSrc":"9822:4:101","nodeType":"YulIdentifier","src":"9822:4:101"}]},{"body":{"nativeSrc":"9863:22:101","nodeType":"YulBlock","src":"9863:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"9865:16:101","nodeType":"YulIdentifier","src":"9865:16:101"},"nativeSrc":"9865:18:101","nodeType":"YulFunctionCall","src":"9865:18:101"},"nativeSrc":"9865:18:101","nodeType":"YulExpressionStatement","src":"9865:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"9854:4:101","nodeType":"YulIdentifier","src":"9854:4:101"},{"name":"x","nativeSrc":"9860:1:101","nodeType":"YulIdentifier","src":"9860:1:101"}],"functionName":{"name":"gt","nativeSrc":"9851:2:101","nodeType":"YulIdentifier","src":"9851:2:101"},"nativeSrc":"9851:11:101","nodeType":"YulFunctionCall","src":"9851:11:101"},"nativeSrc":"9848:37:101","nodeType":"YulIf","src":"9848:37:101"}]},"name":"checked_sub_t_uint256","nativeSrc":"9763:128:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"9794:1:101","nodeType":"YulTypedName","src":"9794:1:101","type":""},{"name":"y","nativeSrc":"9797:1:101","nodeType":"YulTypedName","src":"9797:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"9803:4:101","nodeType":"YulTypedName","src":"9803:4:101","type":""}],"src":"9763:128:101"},{"body":{"nativeSrc":"9944:117:101","nodeType":"YulBlock","src":"9944:117:101","statements":[{"nativeSrc":"9954:29:101","nodeType":"YulAssignment","src":"9954:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"9976:6:101","nodeType":"YulIdentifier","src":"9976:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"9963:12:101","nodeType":"YulIdentifier","src":"9963:12:101"},"nativeSrc":"9963:20:101","nodeType":"YulFunctionCall","src":"9963:20:101"},"variableNames":[{"name":"value","nativeSrc":"9954:5:101","nodeType":"YulIdentifier","src":"9954:5:101"}]},{"body":{"nativeSrc":"10039:16:101","nodeType":"YulBlock","src":"10039:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10048:1:101","nodeType":"YulLiteral","src":"10048:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"10051:1:101","nodeType":"YulLiteral","src":"10051:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10041:6:101","nodeType":"YulIdentifier","src":"10041:6:101"},"nativeSrc":"10041:12:101","nodeType":"YulFunctionCall","src":"10041:12:101"},"nativeSrc":"10041:12:101","nodeType":"YulExpressionStatement","src":"10041:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"10005:5:101","nodeType":"YulIdentifier","src":"10005:5:101"},{"arguments":[{"name":"value","nativeSrc":"10016:5:101","nodeType":"YulIdentifier","src":"10016:5:101"},{"kind":"number","nativeSrc":"10023:12:101","nodeType":"YulLiteral","src":"10023:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"10012:3:101","nodeType":"YulIdentifier","src":"10012:3:101"},"nativeSrc":"10012:24:101","nodeType":"YulFunctionCall","src":"10012:24:101"}],"functionName":{"name":"eq","nativeSrc":"10002:2:101","nodeType":"YulIdentifier","src":"10002:2:101"},"nativeSrc":"10002:35:101","nodeType":"YulFunctionCall","src":"10002:35:101"}],"functionName":{"name":"iszero","nativeSrc":"9995:6:101","nodeType":"YulIdentifier","src":"9995:6:101"},"nativeSrc":"9995:43:101","nodeType":"YulFunctionCall","src":"9995:43:101"},"nativeSrc":"9992:63:101","nodeType":"YulIf","src":"9992:63:101"}]},"name":"abi_decode_uint40","nativeSrc":"9896:165:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"9923:6:101","nodeType":"YulTypedName","src":"9923:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"9934:5:101","nodeType":"YulTypedName","src":"9934:5:101","type":""}],"src":"9896:165:101"},{"body":{"nativeSrc":"10165:1485:101","nodeType":"YulBlock","src":"10165:1485:101","statements":[{"nativeSrc":"10175:43:101","nodeType":"YulVariableDeclaration","src":"10175:43:101","value":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10193:7:101","nodeType":"YulIdentifier","src":"10193:7:101"},{"name":"headStart","nativeSrc":"10202:9:101","nodeType":"YulIdentifier","src":"10202:9:101"}],"functionName":{"name":"sub","nativeSrc":"10189:3:101","nodeType":"YulIdentifier","src":"10189:3:101"},"nativeSrc":"10189:23:101","nodeType":"YulFunctionCall","src":"10189:23:101"},{"kind":"number","nativeSrc":"10214:3:101","nodeType":"YulLiteral","src":"10214:3:101","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"10185:3:101","nodeType":"YulIdentifier","src":"10185:3:101"},"nativeSrc":"10185:33:101","nodeType":"YulFunctionCall","src":"10185:33:101"},"variables":[{"name":"_1","nativeSrc":"10179:2:101","nodeType":"YulTypedName","src":"10179:2:101","type":""}]},{"body":{"nativeSrc":"10233:16:101","nodeType":"YulBlock","src":"10233:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10242:1:101","nodeType":"YulLiteral","src":"10242:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"10245:1:101","nodeType":"YulLiteral","src":"10245:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10235:6:101","nodeType":"YulIdentifier","src":"10235:6:101"},"nativeSrc":"10235:12:101","nodeType":"YulFunctionCall","src":"10235:12:101"},"nativeSrc":"10235:12:101","nodeType":"YulExpressionStatement","src":"10235:12:101"}]},"condition":{"name":"_1","nativeSrc":"10230:2:101","nodeType":"YulIdentifier","src":"10230:2:101"},"nativeSrc":"10227:22:101","nodeType":"YulIf","src":"10227:22:101"},{"nativeSrc":"10258:7:101","nodeType":"YulAssignment","src":"10258:7:101","value":{"kind":"number","nativeSrc":"10264:1:101","nodeType":"YulLiteral","src":"10264:1:101","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"10258:2:101","nodeType":"YulIdentifier","src":"10258:2:101"}]},{"nativeSrc":"10274:35:101","nodeType":"YulVariableDeclaration","src":"10274:35:101","value":{"arguments":[],"functionName":{"name":"allocate_memory_1999","nativeSrc":"10287:20:101","nodeType":"YulIdentifier","src":"10287:20:101"},"nativeSrc":"10287:22:101","nodeType":"YulFunctionCall","src":"10287:22:101"},"variables":[{"name":"value","nativeSrc":"10278:5:101","nodeType":"YulTypedName","src":"10278:5:101","type":""}]},{"nativeSrc":"10318:16:101","nodeType":"YulVariableDeclaration","src":"10318:16:101","value":{"kind":"number","nativeSrc":"10333:1:101","nodeType":"YulLiteral","src":"10333:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"10322:7:101","nodeType":"YulTypedName","src":"10322:7:101","type":""}]},{"nativeSrc":"10343:34:101","nodeType":"YulAssignment","src":"10343:34:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10367:9:101","nodeType":"YulIdentifier","src":"10367:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"10354:12:101","nodeType":"YulIdentifier","src":"10354:12:101"},"nativeSrc":"10354:23:101","nodeType":"YulFunctionCall","src":"10354:23:101"},"variableNames":[{"name":"value_1","nativeSrc":"10343:7:101","nodeType":"YulIdentifier","src":"10343:7:101"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10393:5:101","nodeType":"YulIdentifier","src":"10393:5:101"},{"name":"value_1","nativeSrc":"10400:7:101","nodeType":"YulIdentifier","src":"10400:7:101"}],"functionName":{"name":"mstore","nativeSrc":"10386:6:101","nodeType":"YulIdentifier","src":"10386:6:101"},"nativeSrc":"10386:22:101","nodeType":"YulFunctionCall","src":"10386:22:101"},"nativeSrc":"10386:22:101","nodeType":"YulExpressionStatement","src":"10386:22:101"},{"nativeSrc":"10417:16:101","nodeType":"YulVariableDeclaration","src":"10417:16:101","value":{"kind":"number","nativeSrc":"10432:1:101","nodeType":"YulLiteral","src":"10432:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"10421:7:101","nodeType":"YulTypedName","src":"10421:7:101","type":""}]},{"nativeSrc":"10442:43:101","nodeType":"YulAssignment","src":"10442:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10470:9:101","nodeType":"YulIdentifier","src":"10470:9:101"},{"kind":"number","nativeSrc":"10481:2:101","nodeType":"YulLiteral","src":"10481:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10466:3:101","nodeType":"YulIdentifier","src":"10466:3:101"},"nativeSrc":"10466:18:101","nodeType":"YulFunctionCall","src":"10466:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"10453:12:101","nodeType":"YulIdentifier","src":"10453:12:101"},"nativeSrc":"10453:32:101","nodeType":"YulFunctionCall","src":"10453:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"10442:7:101","nodeType":"YulIdentifier","src":"10442:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"10505:5:101","nodeType":"YulIdentifier","src":"10505:5:101"},{"kind":"number","nativeSrc":"10512:2:101","nodeType":"YulLiteral","src":"10512:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10501:3:101","nodeType":"YulIdentifier","src":"10501:3:101"},"nativeSrc":"10501:14:101","nodeType":"YulFunctionCall","src":"10501:14:101"},{"name":"value_2","nativeSrc":"10517:7:101","nodeType":"YulIdentifier","src":"10517:7:101"}],"functionName":{"name":"mstore","nativeSrc":"10494:6:101","nodeType":"YulIdentifier","src":"10494:6:101"},"nativeSrc":"10494:31:101","nodeType":"YulFunctionCall","src":"10494:31:101"},"nativeSrc":"10494:31:101","nodeType":"YulExpressionStatement","src":"10494:31:101"},{"nativeSrc":"10534:16:101","nodeType":"YulVariableDeclaration","src":"10534:16:101","value":{"kind":"number","nativeSrc":"10549:1:101","nodeType":"YulLiteral","src":"10549:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"10538:7:101","nodeType":"YulTypedName","src":"10538:7:101","type":""}]},{"nativeSrc":"10559:43:101","nodeType":"YulAssignment","src":"10559:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10587:9:101","nodeType":"YulIdentifier","src":"10587:9:101"},{"kind":"number","nativeSrc":"10598:2:101","nodeType":"YulLiteral","src":"10598:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10583:3:101","nodeType":"YulIdentifier","src":"10583:3:101"},"nativeSrc":"10583:18:101","nodeType":"YulFunctionCall","src":"10583:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"10570:12:101","nodeType":"YulIdentifier","src":"10570:12:101"},"nativeSrc":"10570:32:101","nodeType":"YulFunctionCall","src":"10570:32:101"},"variableNames":[{"name":"value_3","nativeSrc":"10559:7:101","nodeType":"YulIdentifier","src":"10559:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"10622:5:101","nodeType":"YulIdentifier","src":"10622:5:101"},{"kind":"number","nativeSrc":"10629:2:101","nodeType":"YulLiteral","src":"10629:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10618:3:101","nodeType":"YulIdentifier","src":"10618:3:101"},"nativeSrc":"10618:14:101","nodeType":"YulFunctionCall","src":"10618:14:101"},{"name":"value_3","nativeSrc":"10634:7:101","nodeType":"YulIdentifier","src":"10634:7:101"}],"functionName":{"name":"mstore","nativeSrc":"10611:6:101","nodeType":"YulIdentifier","src":"10611:6:101"},"nativeSrc":"10611:31:101","nodeType":"YulFunctionCall","src":"10611:31:101"},"nativeSrc":"10611:31:101","nodeType":"YulExpressionStatement","src":"10611:31:101"},{"nativeSrc":"10651:16:101","nodeType":"YulVariableDeclaration","src":"10651:16:101","value":{"kind":"number","nativeSrc":"10666:1:101","nodeType":"YulLiteral","src":"10666:1:101","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"10655:7:101","nodeType":"YulTypedName","src":"10655:7:101","type":""}]},{"nativeSrc":"10676:43:101","nodeType":"YulAssignment","src":"10676:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10704:9:101","nodeType":"YulIdentifier","src":"10704:9:101"},{"kind":"number","nativeSrc":"10715:2:101","nodeType":"YulLiteral","src":"10715:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"10700:3:101","nodeType":"YulIdentifier","src":"10700:3:101"},"nativeSrc":"10700:18:101","nodeType":"YulFunctionCall","src":"10700:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"10687:12:101","nodeType":"YulIdentifier","src":"10687:12:101"},"nativeSrc":"10687:32:101","nodeType":"YulFunctionCall","src":"10687:32:101"},"variableNames":[{"name":"value_4","nativeSrc":"10676:7:101","nodeType":"YulIdentifier","src":"10676:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"10739:5:101","nodeType":"YulIdentifier","src":"10739:5:101"},{"kind":"number","nativeSrc":"10746:2:101","nodeType":"YulLiteral","src":"10746:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"10735:3:101","nodeType":"YulIdentifier","src":"10735:3:101"},"nativeSrc":"10735:14:101","nodeType":"YulFunctionCall","src":"10735:14:101"},{"name":"value_4","nativeSrc":"10751:7:101","nodeType":"YulIdentifier","src":"10751:7:101"}],"functionName":{"name":"mstore","nativeSrc":"10728:6:101","nodeType":"YulIdentifier","src":"10728:6:101"},"nativeSrc":"10728:31:101","nodeType":"YulFunctionCall","src":"10728:31:101"},"nativeSrc":"10728:31:101","nodeType":"YulExpressionStatement","src":"10728:31:101"},{"nativeSrc":"10768:16:101","nodeType":"YulVariableDeclaration","src":"10768:16:101","value":{"kind":"number","nativeSrc":"10783:1:101","nodeType":"YulLiteral","src":"10783:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"10772:7:101","nodeType":"YulTypedName","src":"10772:7:101","type":""}]},{"nativeSrc":"10793:44:101","nodeType":"YulAssignment","src":"10793:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10821:9:101","nodeType":"YulIdentifier","src":"10821:9:101"},{"kind":"number","nativeSrc":"10832:3:101","nodeType":"YulLiteral","src":"10832:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"10817:3:101","nodeType":"YulIdentifier","src":"10817:3:101"},"nativeSrc":"10817:19:101","nodeType":"YulFunctionCall","src":"10817:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"10804:12:101","nodeType":"YulIdentifier","src":"10804:12:101"},"nativeSrc":"10804:33:101","nodeType":"YulFunctionCall","src":"10804:33:101"},"variableNames":[{"name":"value_5","nativeSrc":"10793:7:101","nodeType":"YulIdentifier","src":"10793:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"10857:5:101","nodeType":"YulIdentifier","src":"10857:5:101"},{"kind":"number","nativeSrc":"10864:3:101","nodeType":"YulLiteral","src":"10864:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"10853:3:101","nodeType":"YulIdentifier","src":"10853:3:101"},"nativeSrc":"10853:15:101","nodeType":"YulFunctionCall","src":"10853:15:101"},{"name":"value_5","nativeSrc":"10870:7:101","nodeType":"YulIdentifier","src":"10870:7:101"}],"functionName":{"name":"mstore","nativeSrc":"10846:6:101","nodeType":"YulIdentifier","src":"10846:6:101"},"nativeSrc":"10846:32:101","nodeType":"YulFunctionCall","src":"10846:32:101"},"nativeSrc":"10846:32:101","nodeType":"YulExpressionStatement","src":"10846:32:101"},{"nativeSrc":"10887:16:101","nodeType":"YulVariableDeclaration","src":"10887:16:101","value":{"kind":"number","nativeSrc":"10902:1:101","nodeType":"YulLiteral","src":"10902:1:101","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"10891:7:101","nodeType":"YulTypedName","src":"10891:7:101","type":""}]},{"nativeSrc":"10912:44:101","nodeType":"YulAssignment","src":"10912:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10940:9:101","nodeType":"YulIdentifier","src":"10940:9:101"},{"kind":"number","nativeSrc":"10951:3:101","nodeType":"YulLiteral","src":"10951:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"10936:3:101","nodeType":"YulIdentifier","src":"10936:3:101"},"nativeSrc":"10936:19:101","nodeType":"YulFunctionCall","src":"10936:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"10923:12:101","nodeType":"YulIdentifier","src":"10923:12:101"},"nativeSrc":"10923:33:101","nodeType":"YulFunctionCall","src":"10923:33:101"},"variableNames":[{"name":"value_6","nativeSrc":"10912:7:101","nodeType":"YulIdentifier","src":"10912:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"10976:5:101","nodeType":"YulIdentifier","src":"10976:5:101"},{"kind":"number","nativeSrc":"10983:3:101","nodeType":"YulLiteral","src":"10983:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"10972:3:101","nodeType":"YulIdentifier","src":"10972:3:101"},"nativeSrc":"10972:15:101","nodeType":"YulFunctionCall","src":"10972:15:101"},{"name":"value_6","nativeSrc":"10989:7:101","nodeType":"YulIdentifier","src":"10989:7:101"}],"functionName":{"name":"mstore","nativeSrc":"10965:6:101","nodeType":"YulIdentifier","src":"10965:6:101"},"nativeSrc":"10965:32:101","nodeType":"YulFunctionCall","src":"10965:32:101"},"nativeSrc":"10965:32:101","nodeType":"YulExpressionStatement","src":"10965:32:101"},{"nativeSrc":"11006:16:101","nodeType":"YulVariableDeclaration","src":"11006:16:101","value":{"kind":"number","nativeSrc":"11021:1:101","nodeType":"YulLiteral","src":"11021:1:101","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"11010:7:101","nodeType":"YulTypedName","src":"11010:7:101","type":""}]},{"nativeSrc":"11031:44:101","nodeType":"YulAssignment","src":"11031:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11059:9:101","nodeType":"YulIdentifier","src":"11059:9:101"},{"kind":"number","nativeSrc":"11070:3:101","nodeType":"YulLiteral","src":"11070:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"11055:3:101","nodeType":"YulIdentifier","src":"11055:3:101"},"nativeSrc":"11055:19:101","nodeType":"YulFunctionCall","src":"11055:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"11042:12:101","nodeType":"YulIdentifier","src":"11042:12:101"},"nativeSrc":"11042:33:101","nodeType":"YulFunctionCall","src":"11042:33:101"},"variableNames":[{"name":"value_7","nativeSrc":"11031:7:101","nodeType":"YulIdentifier","src":"11031:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11095:5:101","nodeType":"YulIdentifier","src":"11095:5:101"},{"kind":"number","nativeSrc":"11102:3:101","nodeType":"YulLiteral","src":"11102:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"11091:3:101","nodeType":"YulIdentifier","src":"11091:3:101"},"nativeSrc":"11091:15:101","nodeType":"YulFunctionCall","src":"11091:15:101"},{"name":"value_7","nativeSrc":"11108:7:101","nodeType":"YulIdentifier","src":"11108:7:101"}],"functionName":{"name":"mstore","nativeSrc":"11084:6:101","nodeType":"YulIdentifier","src":"11084:6:101"},"nativeSrc":"11084:32:101","nodeType":"YulFunctionCall","src":"11084:32:101"},"nativeSrc":"11084:32:101","nodeType":"YulExpressionStatement","src":"11084:32:101"},{"nativeSrc":"11125:16:101","nodeType":"YulVariableDeclaration","src":"11125:16:101","value":{"kind":"number","nativeSrc":"11140:1:101","nodeType":"YulLiteral","src":"11140:1:101","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"11129:7:101","nodeType":"YulTypedName","src":"11129:7:101","type":""}]},{"nativeSrc":"11150:44:101","nodeType":"YulAssignment","src":"11150:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11178:9:101","nodeType":"YulIdentifier","src":"11178:9:101"},{"kind":"number","nativeSrc":"11189:3:101","nodeType":"YulLiteral","src":"11189:3:101","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"11174:3:101","nodeType":"YulIdentifier","src":"11174:3:101"},"nativeSrc":"11174:19:101","nodeType":"YulFunctionCall","src":"11174:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"11161:12:101","nodeType":"YulIdentifier","src":"11161:12:101"},"nativeSrc":"11161:33:101","nodeType":"YulFunctionCall","src":"11161:33:101"},"variableNames":[{"name":"value_8","nativeSrc":"11150:7:101","nodeType":"YulIdentifier","src":"11150:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11214:5:101","nodeType":"YulIdentifier","src":"11214:5:101"},{"kind":"number","nativeSrc":"11221:3:101","nodeType":"YulLiteral","src":"11221:3:101","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"11210:3:101","nodeType":"YulIdentifier","src":"11210:3:101"},"nativeSrc":"11210:15:101","nodeType":"YulFunctionCall","src":"11210:15:101"},{"name":"value_8","nativeSrc":"11227:7:101","nodeType":"YulIdentifier","src":"11227:7:101"}],"functionName":{"name":"mstore","nativeSrc":"11203:6:101","nodeType":"YulIdentifier","src":"11203:6:101"},"nativeSrc":"11203:32:101","nodeType":"YulFunctionCall","src":"11203:32:101"},"nativeSrc":"11203:32:101","nodeType":"YulExpressionStatement","src":"11203:32:101"},{"nativeSrc":"11244:16:101","nodeType":"YulVariableDeclaration","src":"11244:16:101","value":{"kind":"number","nativeSrc":"11259:1:101","nodeType":"YulLiteral","src":"11259:1:101","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"11248:7:101","nodeType":"YulTypedName","src":"11248:7:101","type":""}]},{"nativeSrc":"11269:44:101","nodeType":"YulAssignment","src":"11269:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11297:9:101","nodeType":"YulIdentifier","src":"11297:9:101"},{"kind":"number","nativeSrc":"11308:3:101","nodeType":"YulLiteral","src":"11308:3:101","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"11293:3:101","nodeType":"YulIdentifier","src":"11293:3:101"},"nativeSrc":"11293:19:101","nodeType":"YulFunctionCall","src":"11293:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"11280:12:101","nodeType":"YulIdentifier","src":"11280:12:101"},"nativeSrc":"11280:33:101","nodeType":"YulFunctionCall","src":"11280:33:101"},"variableNames":[{"name":"value_9","nativeSrc":"11269:7:101","nodeType":"YulIdentifier","src":"11269:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11333:5:101","nodeType":"YulIdentifier","src":"11333:5:101"},{"kind":"number","nativeSrc":"11340:3:101","nodeType":"YulLiteral","src":"11340:3:101","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"11329:3:101","nodeType":"YulIdentifier","src":"11329:3:101"},"nativeSrc":"11329:15:101","nodeType":"YulFunctionCall","src":"11329:15:101"},{"name":"value_9","nativeSrc":"11346:7:101","nodeType":"YulIdentifier","src":"11346:7:101"}],"functionName":{"name":"mstore","nativeSrc":"11322:6:101","nodeType":"YulIdentifier","src":"11322:6:101"},"nativeSrc":"11322:32:101","nodeType":"YulFunctionCall","src":"11322:32:101"},"nativeSrc":"11322:32:101","nodeType":"YulExpressionStatement","src":"11322:32:101"},{"nativeSrc":"11363:17:101","nodeType":"YulVariableDeclaration","src":"11363:17:101","value":{"kind":"number","nativeSrc":"11379:1:101","nodeType":"YulLiteral","src":"11379:1:101","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"11367:8:101","nodeType":"YulTypedName","src":"11367:8:101","type":""}]},{"nativeSrc":"11389:45:101","nodeType":"YulAssignment","src":"11389:45:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11418:9:101","nodeType":"YulIdentifier","src":"11418:9:101"},{"kind":"number","nativeSrc":"11429:3:101","nodeType":"YulLiteral","src":"11429:3:101","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"11414:3:101","nodeType":"YulIdentifier","src":"11414:3:101"},"nativeSrc":"11414:19:101","nodeType":"YulFunctionCall","src":"11414:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"11401:12:101","nodeType":"YulIdentifier","src":"11401:12:101"},"nativeSrc":"11401:33:101","nodeType":"YulFunctionCall","src":"11401:33:101"},"variableNames":[{"name":"value_10","nativeSrc":"11389:8:101","nodeType":"YulIdentifier","src":"11389:8:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11454:5:101","nodeType":"YulIdentifier","src":"11454:5:101"},{"kind":"number","nativeSrc":"11461:3:101","nodeType":"YulLiteral","src":"11461:3:101","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"11450:3:101","nodeType":"YulIdentifier","src":"11450:3:101"},"nativeSrc":"11450:15:101","nodeType":"YulFunctionCall","src":"11450:15:101"},{"name":"value_10","nativeSrc":"11467:8:101","nodeType":"YulIdentifier","src":"11467:8:101"}],"functionName":{"name":"mstore","nativeSrc":"11443:6:101","nodeType":"YulIdentifier","src":"11443:6:101"},"nativeSrc":"11443:33:101","nodeType":"YulFunctionCall","src":"11443:33:101"},"nativeSrc":"11443:33:101","nodeType":"YulExpressionStatement","src":"11443:33:101"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11496:5:101","nodeType":"YulIdentifier","src":"11496:5:101"},{"kind":"number","nativeSrc":"11503:3:101","nodeType":"YulLiteral","src":"11503:3:101","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"11492:3:101","nodeType":"YulIdentifier","src":"11492:3:101"},"nativeSrc":"11492:15:101","nodeType":"YulFunctionCall","src":"11492:15:101"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11531:9:101","nodeType":"YulIdentifier","src":"11531:9:101"},{"kind":"number","nativeSrc":"11542:3:101","nodeType":"YulLiteral","src":"11542:3:101","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"11527:3:101","nodeType":"YulIdentifier","src":"11527:3:101"},"nativeSrc":"11527:19:101","nodeType":"YulFunctionCall","src":"11527:19:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"11509:17:101","nodeType":"YulIdentifier","src":"11509:17:101"},"nativeSrc":"11509:38:101","nodeType":"YulFunctionCall","src":"11509:38:101"}],"functionName":{"name":"mstore","nativeSrc":"11485:6:101","nodeType":"YulIdentifier","src":"11485:6:101"},"nativeSrc":"11485:63:101","nodeType":"YulFunctionCall","src":"11485:63:101"},"nativeSrc":"11485:63:101","nodeType":"YulExpressionStatement","src":"11485:63:101"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11568:5:101","nodeType":"YulIdentifier","src":"11568:5:101"},{"kind":"number","nativeSrc":"11575:3:101","nodeType":"YulLiteral","src":"11575:3:101","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"11564:3:101","nodeType":"YulIdentifier","src":"11564:3:101"},"nativeSrc":"11564:15:101","nodeType":"YulFunctionCall","src":"11564:15:101"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11603:9:101","nodeType":"YulIdentifier","src":"11603:9:101"},{"kind":"number","nativeSrc":"11614:3:101","nodeType":"YulLiteral","src":"11614:3:101","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"11599:3:101","nodeType":"YulIdentifier","src":"11599:3:101"},"nativeSrc":"11599:19:101","nodeType":"YulFunctionCall","src":"11599:19:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"11581:17:101","nodeType":"YulIdentifier","src":"11581:17:101"},"nativeSrc":"11581:38:101","nodeType":"YulFunctionCall","src":"11581:38:101"}],"functionName":{"name":"mstore","nativeSrc":"11557:6:101","nodeType":"YulIdentifier","src":"11557:6:101"},"nativeSrc":"11557:63:101","nodeType":"YulFunctionCall","src":"11557:63:101"},"nativeSrc":"11557:63:101","nodeType":"YulExpressionStatement","src":"11557:63:101"},{"nativeSrc":"11629:15:101","nodeType":"YulAssignment","src":"11629:15:101","value":{"name":"value","nativeSrc":"11639:5:101","nodeType":"YulIdentifier","src":"11639:5:101"},"variableNames":[{"name":"value0","nativeSrc":"11629:6:101","nodeType":"YulIdentifier","src":"11629:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptr","nativeSrc":"10066:1584:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10131:9:101","nodeType":"YulTypedName","src":"10131:9:101","type":""},{"name":"dataEnd","nativeSrc":"10142:7:101","nodeType":"YulTypedName","src":"10142:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10154:6:101","nodeType":"YulTypedName","src":"10154:6:101","type":""}],"src":"10066:1584:101"},{"body":{"nativeSrc":"11702:169:101","nodeType":"YulBlock","src":"11702:169:101","statements":[{"nativeSrc":"11712:16:101","nodeType":"YulAssignment","src":"11712:16:101","value":{"arguments":[{"name":"x","nativeSrc":"11723:1:101","nodeType":"YulIdentifier","src":"11723:1:101"},{"name":"y","nativeSrc":"11726:1:101","nodeType":"YulIdentifier","src":"11726:1:101"}],"functionName":{"name":"add","nativeSrc":"11719:3:101","nodeType":"YulIdentifier","src":"11719:3:101"},"nativeSrc":"11719:9:101","nodeType":"YulFunctionCall","src":"11719:9:101"},"variableNames":[{"name":"sum","nativeSrc":"11712:3:101","nodeType":"YulIdentifier","src":"11712:3:101"}]},{"nativeSrc":"11737:21:101","nodeType":"YulVariableDeclaration","src":"11737:21:101","value":{"arguments":[{"name":"sum","nativeSrc":"11751:3:101","nodeType":"YulIdentifier","src":"11751:3:101"},{"name":"y","nativeSrc":"11756:1:101","nodeType":"YulIdentifier","src":"11756:1:101"}],"functionName":{"name":"slt","nativeSrc":"11747:3:101","nodeType":"YulIdentifier","src":"11747:3:101"},"nativeSrc":"11747:11:101","nodeType":"YulFunctionCall","src":"11747:11:101"},"variables":[{"name":"_1","nativeSrc":"11741:2:101","nodeType":"YulTypedName","src":"11741:2:101","type":""}]},{"nativeSrc":"11767:19:101","nodeType":"YulVariableDeclaration","src":"11767:19:101","value":{"arguments":[{"name":"x","nativeSrc":"11781:1:101","nodeType":"YulIdentifier","src":"11781:1:101"},{"kind":"number","nativeSrc":"11784:1:101","nodeType":"YulLiteral","src":"11784:1:101","type":"","value":"0"}],"functionName":{"name":"slt","nativeSrc":"11777:3:101","nodeType":"YulIdentifier","src":"11777:3:101"},"nativeSrc":"11777:9:101","nodeType":"YulFunctionCall","src":"11777:9:101"},"variables":[{"name":"_2","nativeSrc":"11771:2:101","nodeType":"YulTypedName","src":"11771:2:101","type":""}]},{"body":{"nativeSrc":"11843:22:101","nodeType":"YulBlock","src":"11843:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"11845:16:101","nodeType":"YulIdentifier","src":"11845:16:101"},"nativeSrc":"11845:18:101","nodeType":"YulFunctionCall","src":"11845:18:101"},"nativeSrc":"11845:18:101","nodeType":"YulExpressionStatement","src":"11845:18:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"11812:2:101","nodeType":"YulIdentifier","src":"11812:2:101"}],"functionName":{"name":"iszero","nativeSrc":"11805:6:101","nodeType":"YulIdentifier","src":"11805:6:101"},"nativeSrc":"11805:10:101","nodeType":"YulFunctionCall","src":"11805:10:101"},{"name":"_1","nativeSrc":"11817:2:101","nodeType":"YulIdentifier","src":"11817:2:101"}],"functionName":{"name":"and","nativeSrc":"11801:3:101","nodeType":"YulIdentifier","src":"11801:3:101"},"nativeSrc":"11801:19:101","nodeType":"YulFunctionCall","src":"11801:19:101"},{"arguments":[{"name":"_2","nativeSrc":"11826:2:101","nodeType":"YulIdentifier","src":"11826:2:101"},{"arguments":[{"name":"_1","nativeSrc":"11837:2:101","nodeType":"YulIdentifier","src":"11837:2:101"}],"functionName":{"name":"iszero","nativeSrc":"11830:6:101","nodeType":"YulIdentifier","src":"11830:6:101"},"nativeSrc":"11830:10:101","nodeType":"YulFunctionCall","src":"11830:10:101"}],"functionName":{"name":"and","nativeSrc":"11822:3:101","nodeType":"YulIdentifier","src":"11822:3:101"},"nativeSrc":"11822:19:101","nodeType":"YulFunctionCall","src":"11822:19:101"}],"functionName":{"name":"or","nativeSrc":"11798:2:101","nodeType":"YulIdentifier","src":"11798:2:101"},"nativeSrc":"11798:44:101","nodeType":"YulFunctionCall","src":"11798:44:101"},"nativeSrc":"11795:70:101","nodeType":"YulIf","src":"11795:70:101"}]},"name":"checked_add_t_int256","nativeSrc":"11655:216:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"11685:1:101","nodeType":"YulTypedName","src":"11685:1:101","type":""},{"name":"y","nativeSrc":"11688:1:101","nodeType":"YulTypedName","src":"11688:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"11694:3:101","nodeType":"YulTypedName","src":"11694:3:101","type":""}],"src":"11655:216:101"},{"body":{"nativeSrc":"11928:116:101","nodeType":"YulBlock","src":"11928:116:101","statements":[{"nativeSrc":"11938:20:101","nodeType":"YulAssignment","src":"11938:20:101","value":{"arguments":[{"name":"x","nativeSrc":"11953:1:101","nodeType":"YulIdentifier","src":"11953:1:101"},{"name":"y","nativeSrc":"11956:1:101","nodeType":"YulIdentifier","src":"11956:1:101"}],"functionName":{"name":"mul","nativeSrc":"11949:3:101","nodeType":"YulIdentifier","src":"11949:3:101"},"nativeSrc":"11949:9:101","nodeType":"YulFunctionCall","src":"11949:9:101"},"variableNames":[{"name":"product","nativeSrc":"11938:7:101","nodeType":"YulIdentifier","src":"11938:7:101"}]},{"body":{"nativeSrc":"12016:22:101","nodeType":"YulBlock","src":"12016:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"12018:16:101","nodeType":"YulIdentifier","src":"12018:16:101"},"nativeSrc":"12018:18:101","nodeType":"YulFunctionCall","src":"12018:18:101"},"nativeSrc":"12018:18:101","nodeType":"YulExpressionStatement","src":"12018:18:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nativeSrc":"11987:1:101","nodeType":"YulIdentifier","src":"11987:1:101"}],"functionName":{"name":"iszero","nativeSrc":"11980:6:101","nodeType":"YulIdentifier","src":"11980:6:101"},"nativeSrc":"11980:9:101","nodeType":"YulFunctionCall","src":"11980:9:101"},{"arguments":[{"name":"y","nativeSrc":"11994:1:101","nodeType":"YulIdentifier","src":"11994:1:101"},{"arguments":[{"name":"product","nativeSrc":"12001:7:101","nodeType":"YulIdentifier","src":"12001:7:101"},{"name":"x","nativeSrc":"12010:1:101","nodeType":"YulIdentifier","src":"12010:1:101"}],"functionName":{"name":"div","nativeSrc":"11997:3:101","nodeType":"YulIdentifier","src":"11997:3:101"},"nativeSrc":"11997:15:101","nodeType":"YulFunctionCall","src":"11997:15:101"}],"functionName":{"name":"eq","nativeSrc":"11991:2:101","nodeType":"YulIdentifier","src":"11991:2:101"},"nativeSrc":"11991:22:101","nodeType":"YulFunctionCall","src":"11991:22:101"}],"functionName":{"name":"or","nativeSrc":"11977:2:101","nodeType":"YulIdentifier","src":"11977:2:101"},"nativeSrc":"11977:37:101","nodeType":"YulFunctionCall","src":"11977:37:101"}],"functionName":{"name":"iszero","nativeSrc":"11970:6:101","nodeType":"YulIdentifier","src":"11970:6:101"},"nativeSrc":"11970:45:101","nodeType":"YulFunctionCall","src":"11970:45:101"},"nativeSrc":"11967:71:101","nodeType":"YulIf","src":"11967:71:101"}]},"name":"checked_mul_t_uint256","nativeSrc":"11876:168:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"11907:1:101","nodeType":"YulTypedName","src":"11907:1:101","type":""},{"name":"y","nativeSrc":"11910:1:101","nodeType":"YulTypedName","src":"11910:1:101","type":""}],"returnVariables":[{"name":"product","nativeSrc":"11916:7:101","nodeType":"YulTypedName","src":"11916:7:101","type":""}],"src":"11876:168:101"},{"body":{"nativeSrc":"12081:95:101","nodeType":"YulBlock","src":"12081:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12098:1:101","nodeType":"YulLiteral","src":"12098:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"12105:3:101","nodeType":"YulLiteral","src":"12105:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"12110:10:101","nodeType":"YulLiteral","src":"12110:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"12101:3:101","nodeType":"YulIdentifier","src":"12101:3:101"},"nativeSrc":"12101:20:101","nodeType":"YulFunctionCall","src":"12101:20:101"}],"functionName":{"name":"mstore","nativeSrc":"12091:6:101","nodeType":"YulIdentifier","src":"12091:6:101"},"nativeSrc":"12091:31:101","nodeType":"YulFunctionCall","src":"12091:31:101"},"nativeSrc":"12091:31:101","nodeType":"YulExpressionStatement","src":"12091:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12138:1:101","nodeType":"YulLiteral","src":"12138:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"12141:4:101","nodeType":"YulLiteral","src":"12141:4:101","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"12131:6:101","nodeType":"YulIdentifier","src":"12131:6:101"},"nativeSrc":"12131:15:101","nodeType":"YulFunctionCall","src":"12131:15:101"},"nativeSrc":"12131:15:101","nodeType":"YulExpressionStatement","src":"12131:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12162:1:101","nodeType":"YulLiteral","src":"12162:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"12165:4:101","nodeType":"YulLiteral","src":"12165:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"12155:6:101","nodeType":"YulIdentifier","src":"12155:6:101"},"nativeSrc":"12155:15:101","nodeType":"YulFunctionCall","src":"12155:15:101"},"nativeSrc":"12155:15:101","nodeType":"YulExpressionStatement","src":"12155:15:101"}]},"name":"panic_error_0x12","nativeSrc":"12049:127:101","nodeType":"YulFunctionDefinition","src":"12049:127:101"},{"body":{"nativeSrc":"12227:171:101","nodeType":"YulBlock","src":"12227:171:101","statements":[{"body":{"nativeSrc":"12258:111:101","nodeType":"YulBlock","src":"12258:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12279:1:101","nodeType":"YulLiteral","src":"12279:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"12286:3:101","nodeType":"YulLiteral","src":"12286:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"12291:10:101","nodeType":"YulLiteral","src":"12291:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"12282:3:101","nodeType":"YulIdentifier","src":"12282:3:101"},"nativeSrc":"12282:20:101","nodeType":"YulFunctionCall","src":"12282:20:101"}],"functionName":{"name":"mstore","nativeSrc":"12272:6:101","nodeType":"YulIdentifier","src":"12272:6:101"},"nativeSrc":"12272:31:101","nodeType":"YulFunctionCall","src":"12272:31:101"},"nativeSrc":"12272:31:101","nodeType":"YulExpressionStatement","src":"12272:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12323:1:101","nodeType":"YulLiteral","src":"12323:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"12326:4:101","nodeType":"YulLiteral","src":"12326:4:101","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"12316:6:101","nodeType":"YulIdentifier","src":"12316:6:101"},"nativeSrc":"12316:15:101","nodeType":"YulFunctionCall","src":"12316:15:101"},"nativeSrc":"12316:15:101","nodeType":"YulExpressionStatement","src":"12316:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12351:1:101","nodeType":"YulLiteral","src":"12351:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"12354:4:101","nodeType":"YulLiteral","src":"12354:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"12344:6:101","nodeType":"YulIdentifier","src":"12344:6:101"},"nativeSrc":"12344:15:101","nodeType":"YulFunctionCall","src":"12344:15:101"},"nativeSrc":"12344:15:101","nodeType":"YulExpressionStatement","src":"12344:15:101"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"12247:1:101","nodeType":"YulIdentifier","src":"12247:1:101"}],"functionName":{"name":"iszero","nativeSrc":"12240:6:101","nodeType":"YulIdentifier","src":"12240:6:101"},"nativeSrc":"12240:9:101","nodeType":"YulFunctionCall","src":"12240:9:101"},"nativeSrc":"12237:132:101","nodeType":"YulIf","src":"12237:132:101"},{"nativeSrc":"12378:14:101","nodeType":"YulAssignment","src":"12378:14:101","value":{"arguments":[{"name":"x","nativeSrc":"12387:1:101","nodeType":"YulIdentifier","src":"12387:1:101"},{"name":"y","nativeSrc":"12390:1:101","nodeType":"YulIdentifier","src":"12390:1:101"}],"functionName":{"name":"div","nativeSrc":"12383:3:101","nodeType":"YulIdentifier","src":"12383:3:101"},"nativeSrc":"12383:9:101","nodeType":"YulFunctionCall","src":"12383:9:101"},"variableNames":[{"name":"r","nativeSrc":"12378:1:101","nodeType":"YulIdentifier","src":"12378:1:101"}]}]},"name":"checked_div_t_uint256","nativeSrc":"12181:217:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"12212:1:101","nodeType":"YulTypedName","src":"12212:1:101","type":""},{"name":"y","nativeSrc":"12215:1:101","nodeType":"YulTypedName","src":"12215:1:101","type":""}],"returnVariables":[{"name":"r","nativeSrc":"12221:1:101","nodeType":"YulTypedName","src":"12221:1:101","type":""}],"src":"12181:217:101"},{"body":{"nativeSrc":"12446:93:101","nodeType":"YulBlock","src":"12446:93:101","statements":[{"body":{"nativeSrc":"12482:22:101","nodeType":"YulBlock","src":"12482:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"12484:16:101","nodeType":"YulIdentifier","src":"12484:16:101"},"nativeSrc":"12484:18:101","nodeType":"YulFunctionCall","src":"12484:18:101"},"nativeSrc":"12484:18:101","nodeType":"YulExpressionStatement","src":"12484:18:101"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"12462:5:101","nodeType":"YulIdentifier","src":"12462:5:101"},{"arguments":[{"kind":"number","nativeSrc":"12473:3:101","nodeType":"YulLiteral","src":"12473:3:101","type":"","value":"255"},{"kind":"number","nativeSrc":"12478:1:101","nodeType":"YulLiteral","src":"12478:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12469:3:101","nodeType":"YulIdentifier","src":"12469:3:101"},"nativeSrc":"12469:11:101","nodeType":"YulFunctionCall","src":"12469:11:101"}],"functionName":{"name":"eq","nativeSrc":"12459:2:101","nodeType":"YulIdentifier","src":"12459:2:101"},"nativeSrc":"12459:22:101","nodeType":"YulFunctionCall","src":"12459:22:101"},"nativeSrc":"12456:48:101","nodeType":"YulIf","src":"12456:48:101"},{"nativeSrc":"12513:20:101","nodeType":"YulAssignment","src":"12513:20:101","value":{"arguments":[{"kind":"number","nativeSrc":"12524:1:101","nodeType":"YulLiteral","src":"12524:1:101","type":"","value":"0"},{"name":"value","nativeSrc":"12527:5:101","nodeType":"YulIdentifier","src":"12527:5:101"}],"functionName":{"name":"sub","nativeSrc":"12520:3:101","nodeType":"YulIdentifier","src":"12520:3:101"},"nativeSrc":"12520:13:101","nodeType":"YulFunctionCall","src":"12520:13:101"},"variableNames":[{"name":"ret","nativeSrc":"12513:3:101","nodeType":"YulIdentifier","src":"12513:3:101"}]}]},"name":"negate_t_int256","nativeSrc":"12403:136:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"12428:5:101","nodeType":"YulTypedName","src":"12428:5:101","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"12438:3:101","nodeType":"YulTypedName","src":"12438:3:101","type":""}],"src":"12403:136:101"},{"body":{"nativeSrc":"12669:119:101","nodeType":"YulBlock","src":"12669:119:101","statements":[{"nativeSrc":"12679:26:101","nodeType":"YulAssignment","src":"12679:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12691:9:101","nodeType":"YulIdentifier","src":"12691:9:101"},{"kind":"number","nativeSrc":"12702:2:101","nodeType":"YulLiteral","src":"12702:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12687:3:101","nodeType":"YulIdentifier","src":"12687:3:101"},"nativeSrc":"12687:18:101","nodeType":"YulFunctionCall","src":"12687:18:101"},"variableNames":[{"name":"tail","nativeSrc":"12679:4:101","nodeType":"YulIdentifier","src":"12679:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12721:9:101","nodeType":"YulIdentifier","src":"12721:9:101"},{"name":"value0","nativeSrc":"12732:6:101","nodeType":"YulIdentifier","src":"12732:6:101"}],"functionName":{"name":"mstore","nativeSrc":"12714:6:101","nodeType":"YulIdentifier","src":"12714:6:101"},"nativeSrc":"12714:25:101","nodeType":"YulFunctionCall","src":"12714:25:101"},"nativeSrc":"12714:25:101","nodeType":"YulExpressionStatement","src":"12714:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12759:9:101","nodeType":"YulIdentifier","src":"12759:9:101"},{"kind":"number","nativeSrc":"12770:2:101","nodeType":"YulLiteral","src":"12770:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12755:3:101","nodeType":"YulIdentifier","src":"12755:3:101"},"nativeSrc":"12755:18:101","nodeType":"YulFunctionCall","src":"12755:18:101"},{"name":"value1","nativeSrc":"12775:6:101","nodeType":"YulIdentifier","src":"12775:6:101"}],"functionName":{"name":"mstore","nativeSrc":"12748:6:101","nodeType":"YulIdentifier","src":"12748:6:101"},"nativeSrc":"12748:34:101","nodeType":"YulFunctionCall","src":"12748:34:101"},"nativeSrc":"12748:34:101","nodeType":"YulExpressionStatement","src":"12748:34:101"}]},"name":"abi_encode_tuple_t_int256_t_int256__to_t_int256_t_int256__fromStack_reversed","nativeSrc":"12544:244:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12630:9:101","nodeType":"YulTypedName","src":"12630:9:101","type":""},{"name":"value1","nativeSrc":"12641:6:101","nodeType":"YulTypedName","src":"12641:6:101","type":""},{"name":"value0","nativeSrc":"12649:6:101","nodeType":"YulTypedName","src":"12649:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12660:4:101","nodeType":"YulTypedName","src":"12660:4:101","type":""}],"src":"12544:244:101"},{"body":{"nativeSrc":"12950:162:101","nodeType":"YulBlock","src":"12950:162:101","statements":[{"nativeSrc":"12960:26:101","nodeType":"YulAssignment","src":"12960:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12972:9:101","nodeType":"YulIdentifier","src":"12972:9:101"},{"kind":"number","nativeSrc":"12983:2:101","nodeType":"YulLiteral","src":"12983:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12968:3:101","nodeType":"YulIdentifier","src":"12968:3:101"},"nativeSrc":"12968:18:101","nodeType":"YulFunctionCall","src":"12968:18:101"},"variableNames":[{"name":"tail","nativeSrc":"12960:4:101","nodeType":"YulIdentifier","src":"12960:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13002:9:101","nodeType":"YulIdentifier","src":"13002:9:101"},{"name":"value0","nativeSrc":"13013:6:101","nodeType":"YulIdentifier","src":"13013:6:101"}],"functionName":{"name":"mstore","nativeSrc":"12995:6:101","nodeType":"YulIdentifier","src":"12995:6:101"},"nativeSrc":"12995:25:101","nodeType":"YulFunctionCall","src":"12995:25:101"},"nativeSrc":"12995:25:101","nodeType":"YulExpressionStatement","src":"12995:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13040:9:101","nodeType":"YulIdentifier","src":"13040:9:101"},{"kind":"number","nativeSrc":"13051:2:101","nodeType":"YulLiteral","src":"13051:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13036:3:101","nodeType":"YulIdentifier","src":"13036:3:101"},"nativeSrc":"13036:18:101","nodeType":"YulFunctionCall","src":"13036:18:101"},{"name":"value1","nativeSrc":"13056:6:101","nodeType":"YulIdentifier","src":"13056:6:101"}],"functionName":{"name":"mstore","nativeSrc":"13029:6:101","nodeType":"YulIdentifier","src":"13029:6:101"},"nativeSrc":"13029:34:101","nodeType":"YulFunctionCall","src":"13029:34:101"},"nativeSrc":"13029:34:101","nodeType":"YulExpressionStatement","src":"13029:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13083:9:101","nodeType":"YulIdentifier","src":"13083:9:101"},{"kind":"number","nativeSrc":"13094:2:101","nodeType":"YulLiteral","src":"13094:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13079:3:101","nodeType":"YulIdentifier","src":"13079:3:101"},"nativeSrc":"13079:18:101","nodeType":"YulFunctionCall","src":"13079:18:101"},{"name":"value2","nativeSrc":"13099:6:101","nodeType":"YulIdentifier","src":"13099:6:101"}],"functionName":{"name":"mstore","nativeSrc":"13072:6:101","nodeType":"YulIdentifier","src":"13072:6:101"},"nativeSrc":"13072:34:101","nodeType":"YulFunctionCall","src":"13072:34:101"},"nativeSrc":"13072:34:101","nodeType":"YulExpressionStatement","src":"13072:34:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"12793:319:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12903:9:101","nodeType":"YulTypedName","src":"12903:9:101","type":""},{"name":"value2","nativeSrc":"12914:6:101","nodeType":"YulTypedName","src":"12914:6:101","type":""},{"name":"value1","nativeSrc":"12922:6:101","nodeType":"YulTypedName","src":"12922:6:101","type":""},{"name":"value0","nativeSrc":"12930:6:101","nodeType":"YulTypedName","src":"12930:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12941:4:101","nodeType":"YulTypedName","src":"12941:4:101","type":""}],"src":"12793:319:101"},{"body":{"nativeSrc":"13225:101:101","nodeType":"YulBlock","src":"13225:101:101","statements":[{"nativeSrc":"13235:26:101","nodeType":"YulAssignment","src":"13235:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"13247:9:101","nodeType":"YulIdentifier","src":"13247:9:101"},{"kind":"number","nativeSrc":"13258:2:101","nodeType":"YulLiteral","src":"13258:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13243:3:101","nodeType":"YulIdentifier","src":"13243:3:101"},"nativeSrc":"13243:18:101","nodeType":"YulFunctionCall","src":"13243:18:101"},"variableNames":[{"name":"tail","nativeSrc":"13235:4:101","nodeType":"YulIdentifier","src":"13235:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13277:9:101","nodeType":"YulIdentifier","src":"13277:9:101"},{"arguments":[{"name":"value0","nativeSrc":"13292:6:101","nodeType":"YulIdentifier","src":"13292:6:101"},{"kind":"number","nativeSrc":"13300:18:101","nodeType":"YulLiteral","src":"13300:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"13288:3:101","nodeType":"YulIdentifier","src":"13288:3:101"},"nativeSrc":"13288:31:101","nodeType":"YulFunctionCall","src":"13288:31:101"}],"functionName":{"name":"mstore","nativeSrc":"13270:6:101","nodeType":"YulIdentifier","src":"13270:6:101"},"nativeSrc":"13270:50:101","nodeType":"YulFunctionCall","src":"13270:50:101"},"nativeSrc":"13270:50:101","nodeType":"YulExpressionStatement","src":"13270:50:101"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nativeSrc":"13117:209:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13194:9:101","nodeType":"YulTypedName","src":"13194:9:101","type":""},{"name":"value0","nativeSrc":"13205:6:101","nodeType":"YulTypedName","src":"13205:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13216:4:101","nodeType":"YulTypedName","src":"13216:4:101","type":""}],"src":"13117:209:101"},{"body":{"nativeSrc":"13454:135:101","nodeType":"YulBlock","src":"13454:135:101","statements":[{"nativeSrc":"13464:26:101","nodeType":"YulAssignment","src":"13464:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"13476:9:101","nodeType":"YulIdentifier","src":"13476:9:101"},{"kind":"number","nativeSrc":"13487:2:101","nodeType":"YulLiteral","src":"13487:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13472:3:101","nodeType":"YulIdentifier","src":"13472:3:101"},"nativeSrc":"13472:18:101","nodeType":"YulFunctionCall","src":"13472:18:101"},"variableNames":[{"name":"tail","nativeSrc":"13464:4:101","nodeType":"YulIdentifier","src":"13464:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13506:9:101","nodeType":"YulIdentifier","src":"13506:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"13531:6:101","nodeType":"YulIdentifier","src":"13531:6:101"}],"functionName":{"name":"iszero","nativeSrc":"13524:6:101","nodeType":"YulIdentifier","src":"13524:6:101"},"nativeSrc":"13524:14:101","nodeType":"YulFunctionCall","src":"13524:14:101"}],"functionName":{"name":"iszero","nativeSrc":"13517:6:101","nodeType":"YulIdentifier","src":"13517:6:101"},"nativeSrc":"13517:22:101","nodeType":"YulFunctionCall","src":"13517:22:101"}],"functionName":{"name":"mstore","nativeSrc":"13499:6:101","nodeType":"YulIdentifier","src":"13499:6:101"},"nativeSrc":"13499:41:101","nodeType":"YulFunctionCall","src":"13499:41:101"},"nativeSrc":"13499:41:101","nodeType":"YulExpressionStatement","src":"13499:41:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13560:9:101","nodeType":"YulIdentifier","src":"13560:9:101"},{"kind":"number","nativeSrc":"13571:2:101","nodeType":"YulLiteral","src":"13571:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13556:3:101","nodeType":"YulIdentifier","src":"13556:3:101"},"nativeSrc":"13556:18:101","nodeType":"YulFunctionCall","src":"13556:18:101"},{"name":"value1","nativeSrc":"13576:6:101","nodeType":"YulIdentifier","src":"13576:6:101"}],"functionName":{"name":"mstore","nativeSrc":"13549:6:101","nodeType":"YulIdentifier","src":"13549:6:101"},"nativeSrc":"13549:34:101","nodeType":"YulFunctionCall","src":"13549:34:101"},"nativeSrc":"13549:34:101","nodeType":"YulExpressionStatement","src":"13549:34:101"}]},"name":"abi_encode_tuple_t_bool_t_uint256__to_t_bool_t_uint256__fromStack_reversed","nativeSrc":"13331:258:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13415:9:101","nodeType":"YulTypedName","src":"13415:9:101","type":""},{"name":"value1","nativeSrc":"13426:6:101","nodeType":"YulTypedName","src":"13426:6:101","type":""},{"name":"value0","nativeSrc":"13434:6:101","nodeType":"YulTypedName","src":"13434:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13445:4:101","nodeType":"YulTypedName","src":"13445:4:101","type":""}],"src":"13331:258:101"},{"body":{"nativeSrc":"13745:178:101","nodeType":"YulBlock","src":"13745:178:101","statements":[{"nativeSrc":"13755:26:101","nodeType":"YulAssignment","src":"13755:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"13767:9:101","nodeType":"YulIdentifier","src":"13767:9:101"},{"kind":"number","nativeSrc":"13778:2:101","nodeType":"YulLiteral","src":"13778:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13763:3:101","nodeType":"YulIdentifier","src":"13763:3:101"},"nativeSrc":"13763:18:101","nodeType":"YulFunctionCall","src":"13763:18:101"},"variableNames":[{"name":"tail","nativeSrc":"13755:4:101","nodeType":"YulIdentifier","src":"13755:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13797:9:101","nodeType":"YulIdentifier","src":"13797:9:101"},{"name":"value0","nativeSrc":"13808:6:101","nodeType":"YulIdentifier","src":"13808:6:101"}],"functionName":{"name":"mstore","nativeSrc":"13790:6:101","nodeType":"YulIdentifier","src":"13790:6:101"},"nativeSrc":"13790:25:101","nodeType":"YulFunctionCall","src":"13790:25:101"},"nativeSrc":"13790:25:101","nodeType":"YulExpressionStatement","src":"13790:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13835:9:101","nodeType":"YulIdentifier","src":"13835:9:101"},{"kind":"number","nativeSrc":"13846:2:101","nodeType":"YulLiteral","src":"13846:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13831:3:101","nodeType":"YulIdentifier","src":"13831:3:101"},"nativeSrc":"13831:18:101","nodeType":"YulFunctionCall","src":"13831:18:101"},{"name":"value1","nativeSrc":"13851:6:101","nodeType":"YulIdentifier","src":"13851:6:101"}],"functionName":{"name":"mstore","nativeSrc":"13824:6:101","nodeType":"YulIdentifier","src":"13824:6:101"},"nativeSrc":"13824:34:101","nodeType":"YulFunctionCall","src":"13824:34:101"},"nativeSrc":"13824:34:101","nodeType":"YulExpressionStatement","src":"13824:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13878:9:101","nodeType":"YulIdentifier","src":"13878:9:101"},{"kind":"number","nativeSrc":"13889:2:101","nodeType":"YulLiteral","src":"13889:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13874:3:101","nodeType":"YulIdentifier","src":"13874:3:101"},"nativeSrc":"13874:18:101","nodeType":"YulFunctionCall","src":"13874:18:101"},{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"13908:6:101","nodeType":"YulIdentifier","src":"13908:6:101"}],"functionName":{"name":"iszero","nativeSrc":"13901:6:101","nodeType":"YulIdentifier","src":"13901:6:101"},"nativeSrc":"13901:14:101","nodeType":"YulFunctionCall","src":"13901:14:101"}],"functionName":{"name":"iszero","nativeSrc":"13894:6:101","nodeType":"YulIdentifier","src":"13894:6:101"},"nativeSrc":"13894:22:101","nodeType":"YulFunctionCall","src":"13894:22:101"}],"functionName":{"name":"mstore","nativeSrc":"13867:6:101","nodeType":"YulIdentifier","src":"13867:6:101"},"nativeSrc":"13867:50:101","nodeType":"YulFunctionCall","src":"13867:50:101"},"nativeSrc":"13867:50:101","nodeType":"YulExpressionStatement","src":"13867:50:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_bool__to_t_uint256_t_uint256_t_bool__fromStack_reversed","nativeSrc":"13594:329:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13698:9:101","nodeType":"YulTypedName","src":"13698:9:101","type":""},{"name":"value2","nativeSrc":"13709:6:101","nodeType":"YulTypedName","src":"13709:6:101","type":""},{"name":"value1","nativeSrc":"13717:6:101","nodeType":"YulTypedName","src":"13717:6:101","type":""},{"name":"value0","nativeSrc":"13725:6:101","nodeType":"YulTypedName","src":"13725:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13736:4:101","nodeType":"YulTypedName","src":"13736:4:101","type":""}],"src":"13594:329:101"},{"body":{"nativeSrc":"14055:119:101","nodeType":"YulBlock","src":"14055:119:101","statements":[{"nativeSrc":"14065:26:101","nodeType":"YulAssignment","src":"14065:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"14077:9:101","nodeType":"YulIdentifier","src":"14077:9:101"},{"kind":"number","nativeSrc":"14088:2:101","nodeType":"YulLiteral","src":"14088:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14073:3:101","nodeType":"YulIdentifier","src":"14073:3:101"},"nativeSrc":"14073:18:101","nodeType":"YulFunctionCall","src":"14073:18:101"},"variableNames":[{"name":"tail","nativeSrc":"14065:4:101","nodeType":"YulIdentifier","src":"14065:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14107:9:101","nodeType":"YulIdentifier","src":"14107:9:101"},{"name":"value0","nativeSrc":"14118:6:101","nodeType":"YulIdentifier","src":"14118:6:101"}],"functionName":{"name":"mstore","nativeSrc":"14100:6:101","nodeType":"YulIdentifier","src":"14100:6:101"},"nativeSrc":"14100:25:101","nodeType":"YulFunctionCall","src":"14100:25:101"},"nativeSrc":"14100:25:101","nodeType":"YulExpressionStatement","src":"14100:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14145:9:101","nodeType":"YulIdentifier","src":"14145:9:101"},{"kind":"number","nativeSrc":"14156:2:101","nodeType":"YulLiteral","src":"14156:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14141:3:101","nodeType":"YulIdentifier","src":"14141:3:101"},"nativeSrc":"14141:18:101","nodeType":"YulFunctionCall","src":"14141:18:101"},{"name":"value1","nativeSrc":"14161:6:101","nodeType":"YulIdentifier","src":"14161:6:101"}],"functionName":{"name":"mstore","nativeSrc":"14134:6:101","nodeType":"YulIdentifier","src":"14134:6:101"},"nativeSrc":"14134:34:101","nodeType":"YulFunctionCall","src":"14134:34:101"},"nativeSrc":"14134:34:101","nodeType":"YulExpressionStatement","src":"14134:34:101"}]},"name":"abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__fromStack_reversed","nativeSrc":"13928:246:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14016:9:101","nodeType":"YulTypedName","src":"14016:9:101","type":""},{"name":"value1","nativeSrc":"14027:6:101","nodeType":"YulTypedName","src":"14027:6:101","type":""},{"name":"value0","nativeSrc":"14035:6:101","nodeType":"YulTypedName","src":"14035:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14046:4:101","nodeType":"YulTypedName","src":"14046:4:101","type":""}],"src":"13928:246:101"},{"body":{"nativeSrc":"14308:119:101","nodeType":"YulBlock","src":"14308:119:101","statements":[{"nativeSrc":"14318:26:101","nodeType":"YulAssignment","src":"14318:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"14330:9:101","nodeType":"YulIdentifier","src":"14330:9:101"},{"kind":"number","nativeSrc":"14341:2:101","nodeType":"YulLiteral","src":"14341:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14326:3:101","nodeType":"YulIdentifier","src":"14326:3:101"},"nativeSrc":"14326:18:101","nodeType":"YulFunctionCall","src":"14326:18:101"},"variableNames":[{"name":"tail","nativeSrc":"14318:4:101","nodeType":"YulIdentifier","src":"14318:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14360:9:101","nodeType":"YulIdentifier","src":"14360:9:101"},{"name":"value0","nativeSrc":"14371:6:101","nodeType":"YulIdentifier","src":"14371:6:101"}],"functionName":{"name":"mstore","nativeSrc":"14353:6:101","nodeType":"YulIdentifier","src":"14353:6:101"},"nativeSrc":"14353:25:101","nodeType":"YulFunctionCall","src":"14353:25:101"},"nativeSrc":"14353:25:101","nodeType":"YulExpressionStatement","src":"14353:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14398:9:101","nodeType":"YulIdentifier","src":"14398:9:101"},{"kind":"number","nativeSrc":"14409:2:101","nodeType":"YulLiteral","src":"14409:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14394:3:101","nodeType":"YulIdentifier","src":"14394:3:101"},"nativeSrc":"14394:18:101","nodeType":"YulFunctionCall","src":"14394:18:101"},{"name":"value1","nativeSrc":"14414:6:101","nodeType":"YulIdentifier","src":"14414:6:101"}],"functionName":{"name":"mstore","nativeSrc":"14387:6:101","nodeType":"YulIdentifier","src":"14387:6:101"},"nativeSrc":"14387:34:101","nodeType":"YulFunctionCall","src":"14387:34:101"},"nativeSrc":"14387:34:101","nodeType":"YulExpressionStatement","src":"14387:34:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"14179:248:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14269:9:101","nodeType":"YulTypedName","src":"14269:9:101","type":""},{"name":"value1","nativeSrc":"14280:6:101","nodeType":"YulTypedName","src":"14280:6:101","type":""},{"name":"value0","nativeSrc":"14288:6:101","nodeType":"YulTypedName","src":"14288:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14299:4:101","nodeType":"YulTypedName","src":"14299:4:101","type":""}],"src":"14179:248:101"},{"body":{"nativeSrc":"14480:77:101","nodeType":"YulBlock","src":"14480:77:101","statements":[{"nativeSrc":"14490:16:101","nodeType":"YulAssignment","src":"14490:16:101","value":{"arguments":[{"name":"x","nativeSrc":"14501:1:101","nodeType":"YulIdentifier","src":"14501:1:101"},{"name":"y","nativeSrc":"14504:1:101","nodeType":"YulIdentifier","src":"14504:1:101"}],"functionName":{"name":"add","nativeSrc":"14497:3:101","nodeType":"YulIdentifier","src":"14497:3:101"},"nativeSrc":"14497:9:101","nodeType":"YulFunctionCall","src":"14497:9:101"},"variableNames":[{"name":"sum","nativeSrc":"14490:3:101","nodeType":"YulIdentifier","src":"14490:3:101"}]},{"body":{"nativeSrc":"14529:22:101","nodeType":"YulBlock","src":"14529:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"14531:16:101","nodeType":"YulIdentifier","src":"14531:16:101"},"nativeSrc":"14531:18:101","nodeType":"YulFunctionCall","src":"14531:18:101"},"nativeSrc":"14531:18:101","nodeType":"YulExpressionStatement","src":"14531:18:101"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"14521:1:101","nodeType":"YulIdentifier","src":"14521:1:101"},{"name":"sum","nativeSrc":"14524:3:101","nodeType":"YulIdentifier","src":"14524:3:101"}],"functionName":{"name":"gt","nativeSrc":"14518:2:101","nodeType":"YulIdentifier","src":"14518:2:101"},"nativeSrc":"14518:10:101","nodeType":"YulFunctionCall","src":"14518:10:101"},"nativeSrc":"14515:36:101","nodeType":"YulIf","src":"14515:36:101"}]},"name":"checked_add_t_uint256","nativeSrc":"14432:125:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"14463:1:101","nodeType":"YulTypedName","src":"14463:1:101","type":""},{"name":"y","nativeSrc":"14466:1:101","nodeType":"YulTypedName","src":"14466:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"14472:3:101","nodeType":"YulTypedName","src":"14472:3:101","type":""}],"src":"14432:125:101"},{"body":{"nativeSrc":"14691:145:101","nodeType":"YulBlock","src":"14691:145:101","statements":[{"nativeSrc":"14701:26:101","nodeType":"YulAssignment","src":"14701:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"14713:9:101","nodeType":"YulIdentifier","src":"14713:9:101"},{"kind":"number","nativeSrc":"14724:2:101","nodeType":"YulLiteral","src":"14724:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14709:3:101","nodeType":"YulIdentifier","src":"14709:3:101"},"nativeSrc":"14709:18:101","nodeType":"YulFunctionCall","src":"14709:18:101"},"variableNames":[{"name":"tail","nativeSrc":"14701:4:101","nodeType":"YulIdentifier","src":"14701:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14743:9:101","nodeType":"YulIdentifier","src":"14743:9:101"},{"arguments":[{"name":"value0","nativeSrc":"14758:6:101","nodeType":"YulIdentifier","src":"14758:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"14774:3:101","nodeType":"YulLiteral","src":"14774:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"14779:1:101","nodeType":"YulLiteral","src":"14779:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"14770:3:101","nodeType":"YulIdentifier","src":"14770:3:101"},"nativeSrc":"14770:11:101","nodeType":"YulFunctionCall","src":"14770:11:101"},{"kind":"number","nativeSrc":"14783:1:101","nodeType":"YulLiteral","src":"14783:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"14766:3:101","nodeType":"YulIdentifier","src":"14766:3:101"},"nativeSrc":"14766:19:101","nodeType":"YulFunctionCall","src":"14766:19:101"}],"functionName":{"name":"and","nativeSrc":"14754:3:101","nodeType":"YulIdentifier","src":"14754:3:101"},"nativeSrc":"14754:32:101","nodeType":"YulFunctionCall","src":"14754:32:101"}],"functionName":{"name":"mstore","nativeSrc":"14736:6:101","nodeType":"YulIdentifier","src":"14736:6:101"},"nativeSrc":"14736:51:101","nodeType":"YulFunctionCall","src":"14736:51:101"},"nativeSrc":"14736:51:101","nodeType":"YulExpressionStatement","src":"14736:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14807:9:101","nodeType":"YulIdentifier","src":"14807:9:101"},{"kind":"number","nativeSrc":"14818:2:101","nodeType":"YulLiteral","src":"14818:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14803:3:101","nodeType":"YulIdentifier","src":"14803:3:101"},"nativeSrc":"14803:18:101","nodeType":"YulFunctionCall","src":"14803:18:101"},{"name":"value1","nativeSrc":"14823:6:101","nodeType":"YulIdentifier","src":"14823:6:101"}],"functionName":{"name":"mstore","nativeSrc":"14796:6:101","nodeType":"YulIdentifier","src":"14796:6:101"},"nativeSrc":"14796:34:101","nodeType":"YulFunctionCall","src":"14796:34:101"},"nativeSrc":"14796:34:101","nodeType":"YulExpressionStatement","src":"14796:34:101"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"14562:274:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14652:9:101","nodeType":"YulTypedName","src":"14652:9:101","type":""},{"name":"value1","nativeSrc":"14663:6:101","nodeType":"YulTypedName","src":"14663:6:101","type":""},{"name":"value0","nativeSrc":"14671:6:101","nodeType":"YulTypedName","src":"14671:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14682:4:101","nodeType":"YulTypedName","src":"14682:4:101","type":""}],"src":"14562:274:101"},{"body":{"nativeSrc":"14919:167:101","nodeType":"YulBlock","src":"14919:167:101","statements":[{"body":{"nativeSrc":"14965:16:101","nodeType":"YulBlock","src":"14965:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14974:1:101","nodeType":"YulLiteral","src":"14974:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"14977:1:101","nodeType":"YulLiteral","src":"14977:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14967:6:101","nodeType":"YulIdentifier","src":"14967:6:101"},"nativeSrc":"14967:12:101","nodeType":"YulFunctionCall","src":"14967:12:101"},"nativeSrc":"14967:12:101","nodeType":"YulExpressionStatement","src":"14967:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"14940:7:101","nodeType":"YulIdentifier","src":"14940:7:101"},{"name":"headStart","nativeSrc":"14949:9:101","nodeType":"YulIdentifier","src":"14949:9:101"}],"functionName":{"name":"sub","nativeSrc":"14936:3:101","nodeType":"YulIdentifier","src":"14936:3:101"},"nativeSrc":"14936:23:101","nodeType":"YulFunctionCall","src":"14936:23:101"},{"kind":"number","nativeSrc":"14961:2:101","nodeType":"YulLiteral","src":"14961:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"14932:3:101","nodeType":"YulIdentifier","src":"14932:3:101"},"nativeSrc":"14932:32:101","nodeType":"YulFunctionCall","src":"14932:32:101"},"nativeSrc":"14929:52:101","nodeType":"YulIf","src":"14929:52:101"},{"nativeSrc":"14990:29:101","nodeType":"YulVariableDeclaration","src":"14990:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"15009:9:101","nodeType":"YulIdentifier","src":"15009:9:101"}],"functionName":{"name":"mload","nativeSrc":"15003:5:101","nodeType":"YulIdentifier","src":"15003:5:101"},"nativeSrc":"15003:16:101","nodeType":"YulFunctionCall","src":"15003:16:101"},"variables":[{"name":"value","nativeSrc":"14994:5:101","nodeType":"YulTypedName","src":"14994:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"15050:5:101","nodeType":"YulIdentifier","src":"15050:5:101"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"15028:21:101","nodeType":"YulIdentifier","src":"15028:21:101"},"nativeSrc":"15028:28:101","nodeType":"YulFunctionCall","src":"15028:28:101"},"nativeSrc":"15028:28:101","nodeType":"YulExpressionStatement","src":"15028:28:101"},{"nativeSrc":"15065:15:101","nodeType":"YulAssignment","src":"15065:15:101","value":{"name":"value","nativeSrc":"15075:5:101","nodeType":"YulIdentifier","src":"15075:5:101"},"variableNames":[{"name":"value0","nativeSrc":"15065:6:101","nodeType":"YulIdentifier","src":"15065:6:101"}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nativeSrc":"14841:245:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14885:9:101","nodeType":"YulTypedName","src":"14885:9:101","type":""},{"name":"dataEnd","nativeSrc":"14896:7:101","nodeType":"YulTypedName","src":"14896:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"14908:6:101","nodeType":"YulTypedName","src":"14908:6:101","type":""}],"src":"14841:245:101"},{"body":{"nativeSrc":"15220:145:101","nodeType":"YulBlock","src":"15220:145:101","statements":[{"nativeSrc":"15230:26:101","nodeType":"YulAssignment","src":"15230:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"15242:9:101","nodeType":"YulIdentifier","src":"15242:9:101"},{"kind":"number","nativeSrc":"15253:2:101","nodeType":"YulLiteral","src":"15253:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15238:3:101","nodeType":"YulIdentifier","src":"15238:3:101"},"nativeSrc":"15238:18:101","nodeType":"YulFunctionCall","src":"15238:18:101"},"variableNames":[{"name":"tail","nativeSrc":"15230:4:101","nodeType":"YulIdentifier","src":"15230:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15272:9:101","nodeType":"YulIdentifier","src":"15272:9:101"},{"name":"value0","nativeSrc":"15283:6:101","nodeType":"YulIdentifier","src":"15283:6:101"}],"functionName":{"name":"mstore","nativeSrc":"15265:6:101","nodeType":"YulIdentifier","src":"15265:6:101"},"nativeSrc":"15265:25:101","nodeType":"YulFunctionCall","src":"15265:25:101"},"nativeSrc":"15265:25:101","nodeType":"YulExpressionStatement","src":"15265:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15310:9:101","nodeType":"YulIdentifier","src":"15310:9:101"},{"kind":"number","nativeSrc":"15321:2:101","nodeType":"YulLiteral","src":"15321:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15306:3:101","nodeType":"YulIdentifier","src":"15306:3:101"},"nativeSrc":"15306:18:101","nodeType":"YulFunctionCall","src":"15306:18:101"},{"arguments":[{"name":"value1","nativeSrc":"15330:6:101","nodeType":"YulIdentifier","src":"15330:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"15346:3:101","nodeType":"YulLiteral","src":"15346:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"15351:1:101","nodeType":"YulLiteral","src":"15351:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"15342:3:101","nodeType":"YulIdentifier","src":"15342:3:101"},"nativeSrc":"15342:11:101","nodeType":"YulFunctionCall","src":"15342:11:101"},{"kind":"number","nativeSrc":"15355:1:101","nodeType":"YulLiteral","src":"15355:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"15338:3:101","nodeType":"YulIdentifier","src":"15338:3:101"},"nativeSrc":"15338:19:101","nodeType":"YulFunctionCall","src":"15338:19:101"}],"functionName":{"name":"and","nativeSrc":"15326:3:101","nodeType":"YulIdentifier","src":"15326:3:101"},"nativeSrc":"15326:32:101","nodeType":"YulFunctionCall","src":"15326:32:101"}],"functionName":{"name":"mstore","nativeSrc":"15299:6:101","nodeType":"YulIdentifier","src":"15299:6:101"},"nativeSrc":"15299:60:101","nodeType":"YulFunctionCall","src":"15299:60:101"},"nativeSrc":"15299:60:101","nodeType":"YulExpressionStatement","src":"15299:60:101"}]},"name":"abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed","nativeSrc":"15091:274:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15181:9:101","nodeType":"YulTypedName","src":"15181:9:101","type":""},{"name":"value1","nativeSrc":"15192:6:101","nodeType":"YulTypedName","src":"15192:6:101","type":""},{"name":"value0","nativeSrc":"15200:6:101","nodeType":"YulTypedName","src":"15200:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15211:4:101","nodeType":"YulTypedName","src":"15211:4:101","type":""}],"src":"15091:274:101"},{"body":{"nativeSrc":"15553:206:101","nodeType":"YulBlock","src":"15553:206:101","statements":[{"nativeSrc":"15563:27:101","nodeType":"YulAssignment","src":"15563:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"15575:9:101","nodeType":"YulIdentifier","src":"15575:9:101"},{"kind":"number","nativeSrc":"15586:3:101","nodeType":"YulLiteral","src":"15586:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"15571:3:101","nodeType":"YulIdentifier","src":"15571:3:101"},"nativeSrc":"15571:19:101","nodeType":"YulFunctionCall","src":"15571:19:101"},"variableNames":[{"name":"tail","nativeSrc":"15563:4:101","nodeType":"YulIdentifier","src":"15563:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15606:9:101","nodeType":"YulIdentifier","src":"15606:9:101"},{"name":"value0","nativeSrc":"15617:6:101","nodeType":"YulIdentifier","src":"15617:6:101"}],"functionName":{"name":"mstore","nativeSrc":"15599:6:101","nodeType":"YulIdentifier","src":"15599:6:101"},"nativeSrc":"15599:25:101","nodeType":"YulFunctionCall","src":"15599:25:101"},"nativeSrc":"15599:25:101","nodeType":"YulExpressionStatement","src":"15599:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15644:9:101","nodeType":"YulIdentifier","src":"15644:9:101"},{"kind":"number","nativeSrc":"15655:2:101","nodeType":"YulLiteral","src":"15655:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15640:3:101","nodeType":"YulIdentifier","src":"15640:3:101"},"nativeSrc":"15640:18:101","nodeType":"YulFunctionCall","src":"15640:18:101"},{"name":"value1","nativeSrc":"15660:6:101","nodeType":"YulIdentifier","src":"15660:6:101"}],"functionName":{"name":"mstore","nativeSrc":"15633:6:101","nodeType":"YulIdentifier","src":"15633:6:101"},"nativeSrc":"15633:34:101","nodeType":"YulFunctionCall","src":"15633:34:101"},"nativeSrc":"15633:34:101","nodeType":"YulExpressionStatement","src":"15633:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15687:9:101","nodeType":"YulIdentifier","src":"15687:9:101"},{"kind":"number","nativeSrc":"15698:2:101","nodeType":"YulLiteral","src":"15698:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15683:3:101","nodeType":"YulIdentifier","src":"15683:3:101"},"nativeSrc":"15683:18:101","nodeType":"YulFunctionCall","src":"15683:18:101"},{"name":"value2","nativeSrc":"15703:6:101","nodeType":"YulIdentifier","src":"15703:6:101"}],"functionName":{"name":"mstore","nativeSrc":"15676:6:101","nodeType":"YulIdentifier","src":"15676:6:101"},"nativeSrc":"15676:34:101","nodeType":"YulFunctionCall","src":"15676:34:101"},"nativeSrc":"15676:34:101","nodeType":"YulExpressionStatement","src":"15676:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15730:9:101","nodeType":"YulIdentifier","src":"15730:9:101"},{"kind":"number","nativeSrc":"15741:2:101","nodeType":"YulLiteral","src":"15741:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15726:3:101","nodeType":"YulIdentifier","src":"15726:3:101"},"nativeSrc":"15726:18:101","nodeType":"YulFunctionCall","src":"15726:18:101"},{"name":"value3","nativeSrc":"15746:6:101","nodeType":"YulIdentifier","src":"15746:6:101"}],"functionName":{"name":"mstore","nativeSrc":"15719:6:101","nodeType":"YulIdentifier","src":"15719:6:101"},"nativeSrc":"15719:34:101","nodeType":"YulFunctionCall","src":"15719:34:101"},"nativeSrc":"15719:34:101","nodeType":"YulExpressionStatement","src":"15719:34:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_int256__to_t_uint256_t_uint256_t_uint256_t_int256__fromStack_reversed","nativeSrc":"15370:389:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15498:9:101","nodeType":"YulTypedName","src":"15498:9:101","type":""},{"name":"value3","nativeSrc":"15509:6:101","nodeType":"YulTypedName","src":"15509:6:101","type":""},{"name":"value2","nativeSrc":"15517:6:101","nodeType":"YulTypedName","src":"15517:6:101","type":""},{"name":"value1","nativeSrc":"15525:6:101","nodeType":"YulTypedName","src":"15525:6:101","type":""},{"name":"value0","nativeSrc":"15533:6:101","nodeType":"YulTypedName","src":"15533:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15544:4:101","nodeType":"YulTypedName","src":"15544:4:101","type":""}],"src":"15370:389:101"},{"body":{"nativeSrc":"15868:180:101","nodeType":"YulBlock","src":"15868:180:101","statements":[{"body":{"nativeSrc":"15914:16:101","nodeType":"YulBlock","src":"15914:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15923:1:101","nodeType":"YulLiteral","src":"15923:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"15926:1:101","nodeType":"YulLiteral","src":"15926:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15916:6:101","nodeType":"YulIdentifier","src":"15916:6:101"},"nativeSrc":"15916:12:101","nodeType":"YulFunctionCall","src":"15916:12:101"},"nativeSrc":"15916:12:101","nodeType":"YulExpressionStatement","src":"15916:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15889:7:101","nodeType":"YulIdentifier","src":"15889:7:101"},{"name":"headStart","nativeSrc":"15898:9:101","nodeType":"YulIdentifier","src":"15898:9:101"}],"functionName":{"name":"sub","nativeSrc":"15885:3:101","nodeType":"YulIdentifier","src":"15885:3:101"},"nativeSrc":"15885:23:101","nodeType":"YulFunctionCall","src":"15885:23:101"},{"kind":"number","nativeSrc":"15910:2:101","nodeType":"YulLiteral","src":"15910:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"15881:3:101","nodeType":"YulIdentifier","src":"15881:3:101"},"nativeSrc":"15881:32:101","nodeType":"YulFunctionCall","src":"15881:32:101"},"nativeSrc":"15878:52:101","nodeType":"YulIf","src":"15878:52:101"},{"nativeSrc":"15939:29:101","nodeType":"YulVariableDeclaration","src":"15939:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"15958:9:101","nodeType":"YulIdentifier","src":"15958:9:101"}],"functionName":{"name":"mload","nativeSrc":"15952:5:101","nodeType":"YulIdentifier","src":"15952:5:101"},"nativeSrc":"15952:16:101","nodeType":"YulFunctionCall","src":"15952:16:101"},"variables":[{"name":"value","nativeSrc":"15943:5:101","nodeType":"YulTypedName","src":"15943:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"16012:5:101","nodeType":"YulIdentifier","src":"16012:5:101"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"15977:34:101","nodeType":"YulIdentifier","src":"15977:34:101"},"nativeSrc":"15977:41:101","nodeType":"YulFunctionCall","src":"15977:41:101"},"nativeSrc":"15977:41:101","nodeType":"YulExpressionStatement","src":"15977:41:101"},{"nativeSrc":"16027:15:101","nodeType":"YulAssignment","src":"16027:15:101","value":{"name":"value","nativeSrc":"16037:5:101","nodeType":"YulIdentifier","src":"16037:5:101"},"variableNames":[{"name":"value0","nativeSrc":"16027:6:101","nodeType":"YulIdentifier","src":"16027:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory","nativeSrc":"15764:284:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15834:9:101","nodeType":"YulTypedName","src":"15834:9:101","type":""},{"name":"dataEnd","nativeSrc":"15845:7:101","nodeType":"YulTypedName","src":"15845:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15857:6:101","nodeType":"YulTypedName","src":"15857:6:101","type":""}],"src":"15764:284:101"},{"body":{"nativeSrc":"16132:194:101","nodeType":"YulBlock","src":"16132:194:101","statements":[{"body":{"nativeSrc":"16178:16:101","nodeType":"YulBlock","src":"16178:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16187:1:101","nodeType":"YulLiteral","src":"16187:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"16190:1:101","nodeType":"YulLiteral","src":"16190:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16180:6:101","nodeType":"YulIdentifier","src":"16180:6:101"},"nativeSrc":"16180:12:101","nodeType":"YulFunctionCall","src":"16180:12:101"},"nativeSrc":"16180:12:101","nodeType":"YulExpressionStatement","src":"16180:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"16153:7:101","nodeType":"YulIdentifier","src":"16153:7:101"},{"name":"headStart","nativeSrc":"16162:9:101","nodeType":"YulIdentifier","src":"16162:9:101"}],"functionName":{"name":"sub","nativeSrc":"16149:3:101","nodeType":"YulIdentifier","src":"16149:3:101"},"nativeSrc":"16149:23:101","nodeType":"YulFunctionCall","src":"16149:23:101"},{"kind":"number","nativeSrc":"16174:2:101","nodeType":"YulLiteral","src":"16174:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"16145:3:101","nodeType":"YulIdentifier","src":"16145:3:101"},"nativeSrc":"16145:32:101","nodeType":"YulFunctionCall","src":"16145:32:101"},"nativeSrc":"16142:52:101","nodeType":"YulIf","src":"16142:52:101"},{"nativeSrc":"16203:29:101","nodeType":"YulVariableDeclaration","src":"16203:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"16222:9:101","nodeType":"YulIdentifier","src":"16222:9:101"}],"functionName":{"name":"mload","nativeSrc":"16216:5:101","nodeType":"YulIdentifier","src":"16216:5:101"},"nativeSrc":"16216:16:101","nodeType":"YulFunctionCall","src":"16216:16:101"},"variables":[{"name":"value","nativeSrc":"16207:5:101","nodeType":"YulTypedName","src":"16207:5:101","type":""}]},{"body":{"nativeSrc":"16280:16:101","nodeType":"YulBlock","src":"16280:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16289:1:101","nodeType":"YulLiteral","src":"16289:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"16292:1:101","nodeType":"YulLiteral","src":"16292:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16282:6:101","nodeType":"YulIdentifier","src":"16282:6:101"},"nativeSrc":"16282:12:101","nodeType":"YulFunctionCall","src":"16282:12:101"},"nativeSrc":"16282:12:101","nodeType":"YulExpressionStatement","src":"16282:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"16254:5:101","nodeType":"YulIdentifier","src":"16254:5:101"},{"arguments":[{"name":"value","nativeSrc":"16265:5:101","nodeType":"YulIdentifier","src":"16265:5:101"},{"kind":"number","nativeSrc":"16272:4:101","nodeType":"YulLiteral","src":"16272:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"16261:3:101","nodeType":"YulIdentifier","src":"16261:3:101"},"nativeSrc":"16261:16:101","nodeType":"YulFunctionCall","src":"16261:16:101"}],"functionName":{"name":"eq","nativeSrc":"16251:2:101","nodeType":"YulIdentifier","src":"16251:2:101"},"nativeSrc":"16251:27:101","nodeType":"YulFunctionCall","src":"16251:27:101"}],"functionName":{"name":"iszero","nativeSrc":"16244:6:101","nodeType":"YulIdentifier","src":"16244:6:101"},"nativeSrc":"16244:35:101","nodeType":"YulFunctionCall","src":"16244:35:101"},"nativeSrc":"16241:55:101","nodeType":"YulIf","src":"16241:55:101"},{"nativeSrc":"16305:15:101","nodeType":"YulAssignment","src":"16305:15:101","value":{"name":"value","nativeSrc":"16315:5:101","nodeType":"YulIdentifier","src":"16315:5:101"},"variableNames":[{"name":"value0","nativeSrc":"16305:6:101","nodeType":"YulIdentifier","src":"16305:6:101"}]}]},"name":"abi_decode_tuple_t_uint8_fromMemory","nativeSrc":"16053:273:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16098:9:101","nodeType":"YulTypedName","src":"16098:9:101","type":""},{"name":"dataEnd","nativeSrc":"16109:7:101","nodeType":"YulTypedName","src":"16109:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"16121:6:101","nodeType":"YulTypedName","src":"16121:6:101","type":""}],"src":"16053:273:101"},{"body":{"nativeSrc":"16400:306:101","nodeType":"YulBlock","src":"16400:306:101","statements":[{"nativeSrc":"16410:10:101","nodeType":"YulAssignment","src":"16410:10:101","value":{"kind":"number","nativeSrc":"16419:1:101","nodeType":"YulLiteral","src":"16419:1:101","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"16410:5:101","nodeType":"YulIdentifier","src":"16410:5:101"}]},{"nativeSrc":"16429:13:101","nodeType":"YulAssignment","src":"16429:13:101","value":{"name":"_base","nativeSrc":"16437:5:101","nodeType":"YulIdentifier","src":"16437:5:101"},"variableNames":[{"name":"base","nativeSrc":"16429:4:101","nodeType":"YulIdentifier","src":"16429:4:101"}]},{"body":{"nativeSrc":"16487:213:101","nodeType":"YulBlock","src":"16487:213:101","statements":[{"body":{"nativeSrc":"16529:22:101","nodeType":"YulBlock","src":"16529:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"16531:16:101","nodeType":"YulIdentifier","src":"16531:16:101"},"nativeSrc":"16531:18:101","nodeType":"YulFunctionCall","src":"16531:18:101"},"nativeSrc":"16531:18:101","nodeType":"YulExpressionStatement","src":"16531:18:101"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"16507:4:101","nodeType":"YulIdentifier","src":"16507:4:101"},{"arguments":[{"name":"max","nativeSrc":"16517:3:101","nodeType":"YulIdentifier","src":"16517:3:101"},{"name":"base","nativeSrc":"16522:4:101","nodeType":"YulIdentifier","src":"16522:4:101"}],"functionName":{"name":"div","nativeSrc":"16513:3:101","nodeType":"YulIdentifier","src":"16513:3:101"},"nativeSrc":"16513:14:101","nodeType":"YulFunctionCall","src":"16513:14:101"}],"functionName":{"name":"gt","nativeSrc":"16504:2:101","nodeType":"YulIdentifier","src":"16504:2:101"},"nativeSrc":"16504:24:101","nodeType":"YulFunctionCall","src":"16504:24:101"},"nativeSrc":"16501:50:101","nodeType":"YulIf","src":"16501:50:101"},{"body":{"nativeSrc":"16584:29:101","nodeType":"YulBlock","src":"16584:29:101","statements":[{"nativeSrc":"16586:25:101","nodeType":"YulAssignment","src":"16586:25:101","value":{"arguments":[{"name":"power","nativeSrc":"16599:5:101","nodeType":"YulIdentifier","src":"16599:5:101"},{"name":"base","nativeSrc":"16606:4:101","nodeType":"YulIdentifier","src":"16606:4:101"}],"functionName":{"name":"mul","nativeSrc":"16595:3:101","nodeType":"YulIdentifier","src":"16595:3:101"},"nativeSrc":"16595:16:101","nodeType":"YulFunctionCall","src":"16595:16:101"},"variableNames":[{"name":"power","nativeSrc":"16586:5:101","nodeType":"YulIdentifier","src":"16586:5:101"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"16571:8:101","nodeType":"YulIdentifier","src":"16571:8:101"},{"kind":"number","nativeSrc":"16581:1:101","nodeType":"YulLiteral","src":"16581:1:101","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"16567:3:101","nodeType":"YulIdentifier","src":"16567:3:101"},"nativeSrc":"16567:16:101","nodeType":"YulFunctionCall","src":"16567:16:101"},"nativeSrc":"16564:49:101","nodeType":"YulIf","src":"16564:49:101"},{"nativeSrc":"16626:23:101","nodeType":"YulAssignment","src":"16626:23:101","value":{"arguments":[{"name":"base","nativeSrc":"16638:4:101","nodeType":"YulIdentifier","src":"16638:4:101"},{"name":"base","nativeSrc":"16644:4:101","nodeType":"YulIdentifier","src":"16644:4:101"}],"functionName":{"name":"mul","nativeSrc":"16634:3:101","nodeType":"YulIdentifier","src":"16634:3:101"},"nativeSrc":"16634:15:101","nodeType":"YulFunctionCall","src":"16634:15:101"},"variableNames":[{"name":"base","nativeSrc":"16626:4:101","nodeType":"YulIdentifier","src":"16626:4:101"}]},{"nativeSrc":"16662:28:101","nodeType":"YulAssignment","src":"16662:28:101","value":{"arguments":[{"kind":"number","nativeSrc":"16678:1:101","nodeType":"YulLiteral","src":"16678:1:101","type":"","value":"1"},{"name":"exponent","nativeSrc":"16681:8:101","nodeType":"YulIdentifier","src":"16681:8:101"}],"functionName":{"name":"shr","nativeSrc":"16674:3:101","nodeType":"YulIdentifier","src":"16674:3:101"},"nativeSrc":"16674:16:101","nodeType":"YulFunctionCall","src":"16674:16:101"},"variableNames":[{"name":"exponent","nativeSrc":"16662:8:101","nodeType":"YulIdentifier","src":"16662:8:101"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"16462:8:101","nodeType":"YulIdentifier","src":"16462:8:101"},{"kind":"number","nativeSrc":"16472:1:101","nodeType":"YulLiteral","src":"16472:1:101","type":"","value":"1"}],"functionName":{"name":"gt","nativeSrc":"16459:2:101","nodeType":"YulIdentifier","src":"16459:2:101"},"nativeSrc":"16459:15:101","nodeType":"YulFunctionCall","src":"16459:15:101"},"nativeSrc":"16451:249:101","nodeType":"YulForLoop","post":{"nativeSrc":"16475:3:101","nodeType":"YulBlock","src":"16475:3:101","statements":[]},"pre":{"nativeSrc":"16455:3:101","nodeType":"YulBlock","src":"16455:3:101","statements":[]},"src":"16451:249:101"}]},"name":"checked_exp_helper","nativeSrc":"16331:375:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"_base","nativeSrc":"16359:5:101","nodeType":"YulTypedName","src":"16359:5:101","type":""},{"name":"exponent","nativeSrc":"16366:8:101","nodeType":"YulTypedName","src":"16366:8:101","type":""},{"name":"max","nativeSrc":"16376:3:101","nodeType":"YulTypedName","src":"16376:3:101","type":""}],"returnVariables":[{"name":"power","nativeSrc":"16384:5:101","nodeType":"YulTypedName","src":"16384:5:101","type":""},{"name":"base","nativeSrc":"16391:4:101","nodeType":"YulTypedName","src":"16391:4:101","type":""}],"src":"16331:375:101"},{"body":{"nativeSrc":"16770:843:101","nodeType":"YulBlock","src":"16770:843:101","statements":[{"body":{"nativeSrc":"16808:52:101","nodeType":"YulBlock","src":"16808:52:101","statements":[{"nativeSrc":"16822:10:101","nodeType":"YulAssignment","src":"16822:10:101","value":{"kind":"number","nativeSrc":"16831:1:101","nodeType":"YulLiteral","src":"16831:1:101","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"16822:5:101","nodeType":"YulIdentifier","src":"16822:5:101"}]},{"nativeSrc":"16845:5:101","nodeType":"YulLeave","src":"16845:5:101"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"16790:8:101","nodeType":"YulIdentifier","src":"16790:8:101"}],"functionName":{"name":"iszero","nativeSrc":"16783:6:101","nodeType":"YulIdentifier","src":"16783:6:101"},"nativeSrc":"16783:16:101","nodeType":"YulFunctionCall","src":"16783:16:101"},"nativeSrc":"16780:80:101","nodeType":"YulIf","src":"16780:80:101"},{"body":{"nativeSrc":"16893:52:101","nodeType":"YulBlock","src":"16893:52:101","statements":[{"nativeSrc":"16907:10:101","nodeType":"YulAssignment","src":"16907:10:101","value":{"kind":"number","nativeSrc":"16916:1:101","nodeType":"YulLiteral","src":"16916:1:101","type":"","value":"0"},"variableNames":[{"name":"power","nativeSrc":"16907:5:101","nodeType":"YulIdentifier","src":"16907:5:101"}]},{"nativeSrc":"16930:5:101","nodeType":"YulLeave","src":"16930:5:101"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"16879:4:101","nodeType":"YulIdentifier","src":"16879:4:101"}],"functionName":{"name":"iszero","nativeSrc":"16872:6:101","nodeType":"YulIdentifier","src":"16872:6:101"},"nativeSrc":"16872:12:101","nodeType":"YulFunctionCall","src":"16872:12:101"},"nativeSrc":"16869:76:101","nodeType":"YulIf","src":"16869:76:101"},{"cases":[{"body":{"nativeSrc":"16981:52:101","nodeType":"YulBlock","src":"16981:52:101","statements":[{"nativeSrc":"16995:10:101","nodeType":"YulAssignment","src":"16995:10:101","value":{"kind":"number","nativeSrc":"17004:1:101","nodeType":"YulLiteral","src":"17004:1:101","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"16995:5:101","nodeType":"YulIdentifier","src":"16995:5:101"}]},{"nativeSrc":"17018:5:101","nodeType":"YulLeave","src":"17018:5:101"}]},"nativeSrc":"16974:59:101","nodeType":"YulCase","src":"16974:59:101","value":{"kind":"number","nativeSrc":"16979:1:101","nodeType":"YulLiteral","src":"16979:1:101","type":"","value":"1"}},{"body":{"nativeSrc":"17049:167:101","nodeType":"YulBlock","src":"17049:167:101","statements":[{"body":{"nativeSrc":"17084:22:101","nodeType":"YulBlock","src":"17084:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"17086:16:101","nodeType":"YulIdentifier","src":"17086:16:101"},"nativeSrc":"17086:18:101","nodeType":"YulFunctionCall","src":"17086:18:101"},"nativeSrc":"17086:18:101","nodeType":"YulExpressionStatement","src":"17086:18:101"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"17069:8:101","nodeType":"YulIdentifier","src":"17069:8:101"},{"kind":"number","nativeSrc":"17079:3:101","nodeType":"YulLiteral","src":"17079:3:101","type":"","value":"255"}],"functionName":{"name":"gt","nativeSrc":"17066:2:101","nodeType":"YulIdentifier","src":"17066:2:101"},"nativeSrc":"17066:17:101","nodeType":"YulFunctionCall","src":"17066:17:101"},"nativeSrc":"17063:43:101","nodeType":"YulIf","src":"17063:43:101"},{"nativeSrc":"17119:25:101","nodeType":"YulAssignment","src":"17119:25:101","value":{"arguments":[{"name":"exponent","nativeSrc":"17132:8:101","nodeType":"YulIdentifier","src":"17132:8:101"},{"kind":"number","nativeSrc":"17142:1:101","nodeType":"YulLiteral","src":"17142:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"17128:3:101","nodeType":"YulIdentifier","src":"17128:3:101"},"nativeSrc":"17128:16:101","nodeType":"YulFunctionCall","src":"17128:16:101"},"variableNames":[{"name":"power","nativeSrc":"17119:5:101","nodeType":"YulIdentifier","src":"17119:5:101"}]},{"nativeSrc":"17157:11:101","nodeType":"YulVariableDeclaration","src":"17157:11:101","value":{"kind":"number","nativeSrc":"17167:1:101","nodeType":"YulLiteral","src":"17167:1:101","type":"","value":"0"},"variables":[{"name":"_1","nativeSrc":"17161:2:101","nodeType":"YulTypedName","src":"17161:2:101","type":""}]},{"nativeSrc":"17181:7:101","nodeType":"YulAssignment","src":"17181:7:101","value":{"kind":"number","nativeSrc":"17187:1:101","nodeType":"YulLiteral","src":"17187:1:101","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"17181:2:101","nodeType":"YulIdentifier","src":"17181:2:101"}]},{"nativeSrc":"17201:5:101","nodeType":"YulLeave","src":"17201:5:101"}]},"nativeSrc":"17042:174:101","nodeType":"YulCase","src":"17042:174:101","value":{"kind":"number","nativeSrc":"17047:1:101","nodeType":"YulLiteral","src":"17047:1:101","type":"","value":"2"}}],"expression":{"name":"base","nativeSrc":"16961:4:101","nodeType":"YulIdentifier","src":"16961:4:101"},"nativeSrc":"16954:262:101","nodeType":"YulSwitch","src":"16954:262:101"},{"body":{"nativeSrc":"17314:114:101","nodeType":"YulBlock","src":"17314:114:101","statements":[{"nativeSrc":"17328:28:101","nodeType":"YulAssignment","src":"17328:28:101","value":{"arguments":[{"name":"base","nativeSrc":"17341:4:101","nodeType":"YulIdentifier","src":"17341:4:101"},{"name":"exponent","nativeSrc":"17347:8:101","nodeType":"YulIdentifier","src":"17347:8:101"}],"functionName":{"name":"exp","nativeSrc":"17337:3:101","nodeType":"YulIdentifier","src":"17337:3:101"},"nativeSrc":"17337:19:101","nodeType":"YulFunctionCall","src":"17337:19:101"},"variableNames":[{"name":"power","nativeSrc":"17328:5:101","nodeType":"YulIdentifier","src":"17328:5:101"}]},{"nativeSrc":"17369:11:101","nodeType":"YulVariableDeclaration","src":"17369:11:101","value":{"kind":"number","nativeSrc":"17379:1:101","nodeType":"YulLiteral","src":"17379:1:101","type":"","value":"0"},"variables":[{"name":"_2","nativeSrc":"17373:2:101","nodeType":"YulTypedName","src":"17373:2:101","type":""}]},{"nativeSrc":"17393:7:101","nodeType":"YulAssignment","src":"17393:7:101","value":{"kind":"number","nativeSrc":"17399:1:101","nodeType":"YulLiteral","src":"17399:1:101","type":"","value":"0"},"variableNames":[{"name":"_2","nativeSrc":"17393:2:101","nodeType":"YulIdentifier","src":"17393:2:101"}]},{"nativeSrc":"17413:5:101","nodeType":"YulLeave","src":"17413:5:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"base","nativeSrc":"17238:4:101","nodeType":"YulIdentifier","src":"17238:4:101"},{"kind":"number","nativeSrc":"17244:2:101","nodeType":"YulLiteral","src":"17244:2:101","type":"","value":"11"}],"functionName":{"name":"lt","nativeSrc":"17235:2:101","nodeType":"YulIdentifier","src":"17235:2:101"},"nativeSrc":"17235:12:101","nodeType":"YulFunctionCall","src":"17235:12:101"},{"arguments":[{"name":"exponent","nativeSrc":"17252:8:101","nodeType":"YulIdentifier","src":"17252:8:101"},{"kind":"number","nativeSrc":"17262:2:101","nodeType":"YulLiteral","src":"17262:2:101","type":"","value":"78"}],"functionName":{"name":"lt","nativeSrc":"17249:2:101","nodeType":"YulIdentifier","src":"17249:2:101"},"nativeSrc":"17249:16:101","nodeType":"YulFunctionCall","src":"17249:16:101"}],"functionName":{"name":"and","nativeSrc":"17231:3:101","nodeType":"YulIdentifier","src":"17231:3:101"},"nativeSrc":"17231:35:101","nodeType":"YulFunctionCall","src":"17231:35:101"},{"arguments":[{"arguments":[{"name":"base","nativeSrc":"17275:4:101","nodeType":"YulIdentifier","src":"17275:4:101"},{"kind":"number","nativeSrc":"17281:3:101","nodeType":"YulLiteral","src":"17281:3:101","type":"","value":"307"}],"functionName":{"name":"lt","nativeSrc":"17272:2:101","nodeType":"YulIdentifier","src":"17272:2:101"},"nativeSrc":"17272:13:101","nodeType":"YulFunctionCall","src":"17272:13:101"},{"arguments":[{"name":"exponent","nativeSrc":"17290:8:101","nodeType":"YulIdentifier","src":"17290:8:101"},{"kind":"number","nativeSrc":"17300:2:101","nodeType":"YulLiteral","src":"17300:2:101","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"17287:2:101","nodeType":"YulIdentifier","src":"17287:2:101"},"nativeSrc":"17287:16:101","nodeType":"YulFunctionCall","src":"17287:16:101"}],"functionName":{"name":"and","nativeSrc":"17268:3:101","nodeType":"YulIdentifier","src":"17268:3:101"},"nativeSrc":"17268:36:101","nodeType":"YulFunctionCall","src":"17268:36:101"}],"functionName":{"name":"or","nativeSrc":"17228:2:101","nodeType":"YulIdentifier","src":"17228:2:101"},"nativeSrc":"17228:77:101","nodeType":"YulFunctionCall","src":"17228:77:101"},"nativeSrc":"17225:203:101","nodeType":"YulIf","src":"17225:203:101"},{"nativeSrc":"17437:65:101","nodeType":"YulVariableDeclaration","src":"17437:65:101","value":{"arguments":[{"name":"base","nativeSrc":"17479:4:101","nodeType":"YulIdentifier","src":"17479:4:101"},{"name":"exponent","nativeSrc":"17485:8:101","nodeType":"YulIdentifier","src":"17485:8:101"},{"arguments":[{"kind":"number","nativeSrc":"17499:1:101","nodeType":"YulLiteral","src":"17499:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"17495:3:101","nodeType":"YulIdentifier","src":"17495:3:101"},"nativeSrc":"17495:6:101","nodeType":"YulFunctionCall","src":"17495:6:101"}],"functionName":{"name":"checked_exp_helper","nativeSrc":"17460:18:101","nodeType":"YulIdentifier","src":"17460:18:101"},"nativeSrc":"17460:42:101","nodeType":"YulFunctionCall","src":"17460:42:101"},"variables":[{"name":"power_1","nativeSrc":"17441:7:101","nodeType":"YulTypedName","src":"17441:7:101","type":""},{"name":"base_1","nativeSrc":"17450:6:101","nodeType":"YulTypedName","src":"17450:6:101","type":""}]},{"body":{"nativeSrc":"17547:22:101","nodeType":"YulBlock","src":"17547:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"17549:16:101","nodeType":"YulIdentifier","src":"17549:16:101"},"nativeSrc":"17549:18:101","nodeType":"YulFunctionCall","src":"17549:18:101"},"nativeSrc":"17549:18:101","nodeType":"YulExpressionStatement","src":"17549:18:101"}]},"condition":{"arguments":[{"name":"power_1","nativeSrc":"17517:7:101","nodeType":"YulIdentifier","src":"17517:7:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17534:1:101","nodeType":"YulLiteral","src":"17534:1:101","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"17530:3:101","nodeType":"YulIdentifier","src":"17530:3:101"},"nativeSrc":"17530:6:101","nodeType":"YulFunctionCall","src":"17530:6:101"},{"name":"base_1","nativeSrc":"17538:6:101","nodeType":"YulIdentifier","src":"17538:6:101"}],"functionName":{"name":"div","nativeSrc":"17526:3:101","nodeType":"YulIdentifier","src":"17526:3:101"},"nativeSrc":"17526:19:101","nodeType":"YulFunctionCall","src":"17526:19:101"}],"functionName":{"name":"gt","nativeSrc":"17514:2:101","nodeType":"YulIdentifier","src":"17514:2:101"},"nativeSrc":"17514:32:101","nodeType":"YulFunctionCall","src":"17514:32:101"},"nativeSrc":"17511:58:101","nodeType":"YulIf","src":"17511:58:101"},{"nativeSrc":"17578:29:101","nodeType":"YulAssignment","src":"17578:29:101","value":{"arguments":[{"name":"power_1","nativeSrc":"17591:7:101","nodeType":"YulIdentifier","src":"17591:7:101"},{"name":"base_1","nativeSrc":"17600:6:101","nodeType":"YulIdentifier","src":"17600:6:101"}],"functionName":{"name":"mul","nativeSrc":"17587:3:101","nodeType":"YulIdentifier","src":"17587:3:101"},"nativeSrc":"17587:20:101","nodeType":"YulFunctionCall","src":"17587:20:101"},"variableNames":[{"name":"power","nativeSrc":"17578:5:101","nodeType":"YulIdentifier","src":"17578:5:101"}]}]},"name":"checked_exp_unsigned","nativeSrc":"16711:902:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"16741:4:101","nodeType":"YulTypedName","src":"16741:4:101","type":""},{"name":"exponent","nativeSrc":"16747:8:101","nodeType":"YulTypedName","src":"16747:8:101","type":""}],"returnVariables":[{"name":"power","nativeSrc":"16760:5:101","nodeType":"YulTypedName","src":"16760:5:101","type":""}],"src":"16711:902:101"},{"body":{"nativeSrc":"17686:72:101","nodeType":"YulBlock","src":"17686:72:101","statements":[{"nativeSrc":"17696:56:101","nodeType":"YulAssignment","src":"17696:56:101","value":{"arguments":[{"name":"base","nativeSrc":"17726:4:101","nodeType":"YulIdentifier","src":"17726:4:101"},{"arguments":[{"name":"exponent","nativeSrc":"17736:8:101","nodeType":"YulIdentifier","src":"17736:8:101"},{"kind":"number","nativeSrc":"17746:4:101","nodeType":"YulLiteral","src":"17746:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"17732:3:101","nodeType":"YulIdentifier","src":"17732:3:101"},"nativeSrc":"17732:19:101","nodeType":"YulFunctionCall","src":"17732:19:101"}],"functionName":{"name":"checked_exp_unsigned","nativeSrc":"17705:20:101","nodeType":"YulIdentifier","src":"17705:20:101"},"nativeSrc":"17705:47:101","nodeType":"YulFunctionCall","src":"17705:47:101"},"variableNames":[{"name":"power","nativeSrc":"17696:5:101","nodeType":"YulIdentifier","src":"17696:5:101"}]}]},"name":"checked_exp_t_uint256_t_uint8","nativeSrc":"17618:140:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"17657:4:101","nodeType":"YulTypedName","src":"17657:4:101","type":""},{"name":"exponent","nativeSrc":"17663:8:101","nodeType":"YulTypedName","src":"17663:8:101","type":""}],"returnVariables":[{"name":"power","nativeSrc":"17676:5:101","nodeType":"YulTypedName","src":"17676:5:101","type":""}],"src":"17618:140:101"},{"body":{"nativeSrc":"17844:103:101","nodeType":"YulBlock","src":"17844:103:101","statements":[{"body":{"nativeSrc":"17890:16:101","nodeType":"YulBlock","src":"17890:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17899:1:101","nodeType":"YulLiteral","src":"17899:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"17902:1:101","nodeType":"YulLiteral","src":"17902:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17892:6:101","nodeType":"YulIdentifier","src":"17892:6:101"},"nativeSrc":"17892:12:101","nodeType":"YulFunctionCall","src":"17892:12:101"},"nativeSrc":"17892:12:101","nodeType":"YulExpressionStatement","src":"17892:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17865:7:101","nodeType":"YulIdentifier","src":"17865:7:101"},{"name":"headStart","nativeSrc":"17874:9:101","nodeType":"YulIdentifier","src":"17874:9:101"}],"functionName":{"name":"sub","nativeSrc":"17861:3:101","nodeType":"YulIdentifier","src":"17861:3:101"},"nativeSrc":"17861:23:101","nodeType":"YulFunctionCall","src":"17861:23:101"},{"kind":"number","nativeSrc":"17886:2:101","nodeType":"YulLiteral","src":"17886:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"17857:3:101","nodeType":"YulIdentifier","src":"17857:3:101"},"nativeSrc":"17857:32:101","nodeType":"YulFunctionCall","src":"17857:32:101"},"nativeSrc":"17854:52:101","nodeType":"YulIf","src":"17854:52:101"},{"nativeSrc":"17915:26:101","nodeType":"YulAssignment","src":"17915:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"17931:9:101","nodeType":"YulIdentifier","src":"17931:9:101"}],"functionName":{"name":"mload","nativeSrc":"17925:5:101","nodeType":"YulIdentifier","src":"17925:5:101"},"nativeSrc":"17925:16:101","nodeType":"YulFunctionCall","src":"17925:16:101"},"variableNames":[{"name":"value0","nativeSrc":"17915:6:101","nodeType":"YulIdentifier","src":"17915:6:101"}]}]},"name":"abi_decode_tuple_t_bytes32_fromMemory","nativeSrc":"17763:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17810:9:101","nodeType":"YulTypedName","src":"17810:9:101","type":""},{"name":"dataEnd","nativeSrc":"17821:7:101","nodeType":"YulTypedName","src":"17821:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17833:6:101","nodeType":"YulTypedName","src":"17833:6:101","type":""}],"src":"17763:184:101"},{"body":{"nativeSrc":"18088:130:101","nodeType":"YulBlock","src":"18088:130:101","statements":[{"nativeSrc":"18098:26:101","nodeType":"YulAssignment","src":"18098:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"18110:9:101","nodeType":"YulIdentifier","src":"18110:9:101"},{"kind":"number","nativeSrc":"18121:2:101","nodeType":"YulLiteral","src":"18121:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18106:3:101","nodeType":"YulIdentifier","src":"18106:3:101"},"nativeSrc":"18106:18:101","nodeType":"YulFunctionCall","src":"18106:18:101"},"variableNames":[{"name":"tail","nativeSrc":"18098:4:101","nodeType":"YulIdentifier","src":"18098:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18140:9:101","nodeType":"YulIdentifier","src":"18140:9:101"},{"arguments":[{"name":"value0","nativeSrc":"18155:6:101","nodeType":"YulIdentifier","src":"18155:6:101"},{"kind":"number","nativeSrc":"18163:4:101","nodeType":"YulLiteral","src":"18163:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"18151:3:101","nodeType":"YulIdentifier","src":"18151:3:101"},"nativeSrc":"18151:17:101","nodeType":"YulFunctionCall","src":"18151:17:101"}],"functionName":{"name":"mstore","nativeSrc":"18133:6:101","nodeType":"YulIdentifier","src":"18133:6:101"},"nativeSrc":"18133:36:101","nodeType":"YulFunctionCall","src":"18133:36:101"},"nativeSrc":"18133:36:101","nodeType":"YulExpressionStatement","src":"18133:36:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18189:9:101","nodeType":"YulIdentifier","src":"18189:9:101"},{"kind":"number","nativeSrc":"18200:2:101","nodeType":"YulLiteral","src":"18200:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18185:3:101","nodeType":"YulIdentifier","src":"18185:3:101"},"nativeSrc":"18185:18:101","nodeType":"YulFunctionCall","src":"18185:18:101"},{"name":"value1","nativeSrc":"18205:6:101","nodeType":"YulIdentifier","src":"18205:6:101"}],"functionName":{"name":"mstore","nativeSrc":"18178:6:101","nodeType":"YulIdentifier","src":"18178:6:101"},"nativeSrc":"18178:34:101","nodeType":"YulFunctionCall","src":"18178:34:101"},"nativeSrc":"18178:34:101","nodeType":"YulExpressionStatement","src":"18178:34:101"}]},"name":"abi_encode_tuple_t_rational_16_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"17952:266:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18049:9:101","nodeType":"YulTypedName","src":"18049:9:101","type":""},{"name":"value1","nativeSrc":"18060:6:101","nodeType":"YulTypedName","src":"18060:6:101","type":""},{"name":"value0","nativeSrc":"18068:6:101","nodeType":"YulTypedName","src":"18068:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18079:4:101","nodeType":"YulTypedName","src":"18079:4:101","type":""}],"src":"17952:266:101"},{"body":{"nativeSrc":"18462:320:101","nodeType":"YulBlock","src":"18462:320:101","statements":[{"nativeSrc":"18472:27:101","nodeType":"YulAssignment","src":"18472:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"18484:9:101","nodeType":"YulIdentifier","src":"18484:9:101"},{"kind":"number","nativeSrc":"18495:3:101","nodeType":"YulLiteral","src":"18495:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"18480:3:101","nodeType":"YulIdentifier","src":"18480:3:101"},"nativeSrc":"18480:19:101","nodeType":"YulFunctionCall","src":"18480:19:101"},"variableNames":[{"name":"tail","nativeSrc":"18472:4:101","nodeType":"YulIdentifier","src":"18472:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18515:9:101","nodeType":"YulIdentifier","src":"18515:9:101"},{"name":"value0","nativeSrc":"18526:6:101","nodeType":"YulIdentifier","src":"18526:6:101"}],"functionName":{"name":"mstore","nativeSrc":"18508:6:101","nodeType":"YulIdentifier","src":"18508:6:101"},"nativeSrc":"18508:25:101","nodeType":"YulFunctionCall","src":"18508:25:101"},"nativeSrc":"18508:25:101","nodeType":"YulExpressionStatement","src":"18508:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18553:9:101","nodeType":"YulIdentifier","src":"18553:9:101"},{"kind":"number","nativeSrc":"18564:2:101","nodeType":"YulLiteral","src":"18564:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18549:3:101","nodeType":"YulIdentifier","src":"18549:3:101"},"nativeSrc":"18549:18:101","nodeType":"YulFunctionCall","src":"18549:18:101"},{"name":"value1","nativeSrc":"18569:6:101","nodeType":"YulIdentifier","src":"18569:6:101"}],"functionName":{"name":"mstore","nativeSrc":"18542:6:101","nodeType":"YulIdentifier","src":"18542:6:101"},"nativeSrc":"18542:34:101","nodeType":"YulFunctionCall","src":"18542:34:101"},"nativeSrc":"18542:34:101","nodeType":"YulExpressionStatement","src":"18542:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18596:9:101","nodeType":"YulIdentifier","src":"18596:9:101"},{"kind":"number","nativeSrc":"18607:2:101","nodeType":"YulLiteral","src":"18607:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18592:3:101","nodeType":"YulIdentifier","src":"18592:3:101"},"nativeSrc":"18592:18:101","nodeType":"YulFunctionCall","src":"18592:18:101"},{"name":"value2","nativeSrc":"18612:6:101","nodeType":"YulIdentifier","src":"18612:6:101"}],"functionName":{"name":"mstore","nativeSrc":"18585:6:101","nodeType":"YulIdentifier","src":"18585:6:101"},"nativeSrc":"18585:34:101","nodeType":"YulFunctionCall","src":"18585:34:101"},"nativeSrc":"18585:34:101","nodeType":"YulExpressionStatement","src":"18585:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18639:9:101","nodeType":"YulIdentifier","src":"18639:9:101"},{"kind":"number","nativeSrc":"18650:2:101","nodeType":"YulLiteral","src":"18650:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"18635:3:101","nodeType":"YulIdentifier","src":"18635:3:101"},"nativeSrc":"18635:18:101","nodeType":"YulFunctionCall","src":"18635:18:101"},{"name":"value3","nativeSrc":"18655:6:101","nodeType":"YulIdentifier","src":"18655:6:101"}],"functionName":{"name":"mstore","nativeSrc":"18628:6:101","nodeType":"YulIdentifier","src":"18628:6:101"},"nativeSrc":"18628:34:101","nodeType":"YulFunctionCall","src":"18628:34:101"},"nativeSrc":"18628:34:101","nodeType":"YulExpressionStatement","src":"18628:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18682:9:101","nodeType":"YulIdentifier","src":"18682:9:101"},{"kind":"number","nativeSrc":"18693:3:101","nodeType":"YulLiteral","src":"18693:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"18678:3:101","nodeType":"YulIdentifier","src":"18678:3:101"},"nativeSrc":"18678:19:101","nodeType":"YulFunctionCall","src":"18678:19:101"},{"arguments":[{"name":"value4","nativeSrc":"18703:6:101","nodeType":"YulIdentifier","src":"18703:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18719:3:101","nodeType":"YulLiteral","src":"18719:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"18724:1:101","nodeType":"YulLiteral","src":"18724:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18715:3:101","nodeType":"YulIdentifier","src":"18715:3:101"},"nativeSrc":"18715:11:101","nodeType":"YulFunctionCall","src":"18715:11:101"},{"kind":"number","nativeSrc":"18728:1:101","nodeType":"YulLiteral","src":"18728:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18711:3:101","nodeType":"YulIdentifier","src":"18711:3:101"},"nativeSrc":"18711:19:101","nodeType":"YulFunctionCall","src":"18711:19:101"}],"functionName":{"name":"and","nativeSrc":"18699:3:101","nodeType":"YulIdentifier","src":"18699:3:101"},"nativeSrc":"18699:32:101","nodeType":"YulFunctionCall","src":"18699:32:101"}],"functionName":{"name":"mstore","nativeSrc":"18671:6:101","nodeType":"YulIdentifier","src":"18671:6:101"},"nativeSrc":"18671:61:101","nodeType":"YulFunctionCall","src":"18671:61:101"},"nativeSrc":"18671:61:101","nodeType":"YulExpressionStatement","src":"18671:61:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18752:9:101","nodeType":"YulIdentifier","src":"18752:9:101"},{"kind":"number","nativeSrc":"18763:3:101","nodeType":"YulLiteral","src":"18763:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"18748:3:101","nodeType":"YulIdentifier","src":"18748:3:101"},"nativeSrc":"18748:19:101","nodeType":"YulFunctionCall","src":"18748:19:101"},{"name":"value5","nativeSrc":"18769:6:101","nodeType":"YulIdentifier","src":"18769:6:101"}],"functionName":{"name":"mstore","nativeSrc":"18741:6:101","nodeType":"YulIdentifier","src":"18741:6:101"},"nativeSrc":"18741:35:101","nodeType":"YulFunctionCall","src":"18741:35:101"},"nativeSrc":"18741:35:101","nodeType":"YulExpressionStatement","src":"18741:35:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_int256_t_address_t_uint256__to_t_uint256_t_uint256_t_uint256_t_int256_t_address_t_uint256__fromStack_reversed","nativeSrc":"18223:559:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18391:9:101","nodeType":"YulTypedName","src":"18391:9:101","type":""},{"name":"value5","nativeSrc":"18402:6:101","nodeType":"YulTypedName","src":"18402:6:101","type":""},{"name":"value4","nativeSrc":"18410:6:101","nodeType":"YulTypedName","src":"18410:6:101","type":""},{"name":"value3","nativeSrc":"18418:6:101","nodeType":"YulTypedName","src":"18418:6:101","type":""},{"name":"value2","nativeSrc":"18426:6:101","nodeType":"YulTypedName","src":"18426:6:101","type":""},{"name":"value1","nativeSrc":"18434:6:101","nodeType":"YulTypedName","src":"18434:6:101","type":""},{"name":"value0","nativeSrc":"18442:6:101","nodeType":"YulTypedName","src":"18442:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18453:4:101","nodeType":"YulTypedName","src":"18453:4:101","type":""}],"src":"18223:559:101"},{"body":{"nativeSrc":"18916:171:101","nodeType":"YulBlock","src":"18916:171:101","statements":[{"nativeSrc":"18926:26:101","nodeType":"YulAssignment","src":"18926:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"18938:9:101","nodeType":"YulIdentifier","src":"18938:9:101"},{"kind":"number","nativeSrc":"18949:2:101","nodeType":"YulLiteral","src":"18949:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18934:3:101","nodeType":"YulIdentifier","src":"18934:3:101"},"nativeSrc":"18934:18:101","nodeType":"YulFunctionCall","src":"18934:18:101"},"variableNames":[{"name":"tail","nativeSrc":"18926:4:101","nodeType":"YulIdentifier","src":"18926:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18968:9:101","nodeType":"YulIdentifier","src":"18968:9:101"},{"arguments":[{"name":"value0","nativeSrc":"18983:6:101","nodeType":"YulIdentifier","src":"18983:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18999:3:101","nodeType":"YulLiteral","src":"18999:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"19004:1:101","nodeType":"YulLiteral","src":"19004:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18995:3:101","nodeType":"YulIdentifier","src":"18995:3:101"},"nativeSrc":"18995:11:101","nodeType":"YulFunctionCall","src":"18995:11:101"},{"kind":"number","nativeSrc":"19008:1:101","nodeType":"YulLiteral","src":"19008:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18991:3:101","nodeType":"YulIdentifier","src":"18991:3:101"},"nativeSrc":"18991:19:101","nodeType":"YulFunctionCall","src":"18991:19:101"}],"functionName":{"name":"and","nativeSrc":"18979:3:101","nodeType":"YulIdentifier","src":"18979:3:101"},"nativeSrc":"18979:32:101","nodeType":"YulFunctionCall","src":"18979:32:101"}],"functionName":{"name":"mstore","nativeSrc":"18961:6:101","nodeType":"YulIdentifier","src":"18961:6:101"},"nativeSrc":"18961:51:101","nodeType":"YulFunctionCall","src":"18961:51:101"},"nativeSrc":"18961:51:101","nodeType":"YulExpressionStatement","src":"18961:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19032:9:101","nodeType":"YulIdentifier","src":"19032:9:101"},{"kind":"number","nativeSrc":"19043:2:101","nodeType":"YulLiteral","src":"19043:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19028:3:101","nodeType":"YulIdentifier","src":"19028:3:101"},"nativeSrc":"19028:18:101","nodeType":"YulFunctionCall","src":"19028:18:101"},{"arguments":[{"name":"value1","nativeSrc":"19052:6:101","nodeType":"YulIdentifier","src":"19052:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19068:3:101","nodeType":"YulLiteral","src":"19068:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"19073:1:101","nodeType":"YulLiteral","src":"19073:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"19064:3:101","nodeType":"YulIdentifier","src":"19064:3:101"},"nativeSrc":"19064:11:101","nodeType":"YulFunctionCall","src":"19064:11:101"},{"kind":"number","nativeSrc":"19077:1:101","nodeType":"YulLiteral","src":"19077:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"19060:3:101","nodeType":"YulIdentifier","src":"19060:3:101"},"nativeSrc":"19060:19:101","nodeType":"YulFunctionCall","src":"19060:19:101"}],"functionName":{"name":"and","nativeSrc":"19048:3:101","nodeType":"YulIdentifier","src":"19048:3:101"},"nativeSrc":"19048:32:101","nodeType":"YulFunctionCall","src":"19048:32:101"}],"functionName":{"name":"mstore","nativeSrc":"19021:6:101","nodeType":"YulIdentifier","src":"19021:6:101"},"nativeSrc":"19021:60:101","nodeType":"YulFunctionCall","src":"19021:60:101"},"nativeSrc":"19021:60:101","nodeType":"YulExpressionStatement","src":"19021:60:101"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nativeSrc":"18787:300:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18877:9:101","nodeType":"YulTypedName","src":"18877:9:101","type":""},{"name":"value1","nativeSrc":"18888:6:101","nodeType":"YulTypedName","src":"18888:6:101","type":""},{"name":"value0","nativeSrc":"18896:6:101","nodeType":"YulTypedName","src":"18896:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18907:4:101","nodeType":"YulTypedName","src":"18907:4:101","type":""}],"src":"18787:300:101"},{"body":{"nativeSrc":"19224:307:101","nodeType":"YulBlock","src":"19224:307:101","statements":[{"body":{"nativeSrc":"19270:16:101","nodeType":"YulBlock","src":"19270:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19279:1:101","nodeType":"YulLiteral","src":"19279:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"19282:1:101","nodeType":"YulLiteral","src":"19282:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19272:6:101","nodeType":"YulIdentifier","src":"19272:6:101"},"nativeSrc":"19272:12:101","nodeType":"YulFunctionCall","src":"19272:12:101"},"nativeSrc":"19272:12:101","nodeType":"YulExpressionStatement","src":"19272:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"19245:7:101","nodeType":"YulIdentifier","src":"19245:7:101"},{"name":"headStart","nativeSrc":"19254:9:101","nodeType":"YulIdentifier","src":"19254:9:101"}],"functionName":{"name":"sub","nativeSrc":"19241:3:101","nodeType":"YulIdentifier","src":"19241:3:101"},"nativeSrc":"19241:23:101","nodeType":"YulFunctionCall","src":"19241:23:101"},{"kind":"number","nativeSrc":"19266:2:101","nodeType":"YulLiteral","src":"19266:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"19237:3:101","nodeType":"YulIdentifier","src":"19237:3:101"},"nativeSrc":"19237:32:101","nodeType":"YulFunctionCall","src":"19237:32:101"},"nativeSrc":"19234:52:101","nodeType":"YulIf","src":"19234:52:101"},{"nativeSrc":"19295:29:101","nodeType":"YulVariableDeclaration","src":"19295:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"19314:9:101","nodeType":"YulIdentifier","src":"19314:9:101"}],"functionName":{"name":"mload","nativeSrc":"19308:5:101","nodeType":"YulIdentifier","src":"19308:5:101"},"nativeSrc":"19308:16:101","nodeType":"YulFunctionCall","src":"19308:16:101"},"variables":[{"name":"value","nativeSrc":"19299:5:101","nodeType":"YulTypedName","src":"19299:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"19368:5:101","nodeType":"YulIdentifier","src":"19368:5:101"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"19333:34:101","nodeType":"YulIdentifier","src":"19333:34:101"},"nativeSrc":"19333:41:101","nodeType":"YulFunctionCall","src":"19333:41:101"},"nativeSrc":"19333:41:101","nodeType":"YulExpressionStatement","src":"19333:41:101"},{"nativeSrc":"19383:15:101","nodeType":"YulAssignment","src":"19383:15:101","value":{"name":"value","nativeSrc":"19393:5:101","nodeType":"YulIdentifier","src":"19393:5:101"},"variableNames":[{"name":"value0","nativeSrc":"19383:6:101","nodeType":"YulIdentifier","src":"19383:6:101"}]},{"nativeSrc":"19407:40:101","nodeType":"YulVariableDeclaration","src":"19407:40:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19432:9:101","nodeType":"YulIdentifier","src":"19432:9:101"},{"kind":"number","nativeSrc":"19443:2:101","nodeType":"YulLiteral","src":"19443:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19428:3:101","nodeType":"YulIdentifier","src":"19428:3:101"},"nativeSrc":"19428:18:101","nodeType":"YulFunctionCall","src":"19428:18:101"}],"functionName":{"name":"mload","nativeSrc":"19422:5:101","nodeType":"YulIdentifier","src":"19422:5:101"},"nativeSrc":"19422:25:101","nodeType":"YulFunctionCall","src":"19422:25:101"},"variables":[{"name":"value_1","nativeSrc":"19411:7:101","nodeType":"YulTypedName","src":"19411:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"19491:7:101","nodeType":"YulIdentifier","src":"19491:7:101"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"19456:34:101","nodeType":"YulIdentifier","src":"19456:34:101"},"nativeSrc":"19456:43:101","nodeType":"YulFunctionCall","src":"19456:43:101"},"nativeSrc":"19456:43:101","nodeType":"YulExpressionStatement","src":"19456:43:101"},{"nativeSrc":"19508:17:101","nodeType":"YulAssignment","src":"19508:17:101","value":{"name":"value_1","nativeSrc":"19518:7:101","nodeType":"YulIdentifier","src":"19518:7:101"},"variableNames":[{"name":"value1","nativeSrc":"19508:6:101","nodeType":"YulIdentifier","src":"19508:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$28869t_contract$_IEToken_$28869_fromMemory","nativeSrc":"19092:439:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19182:9:101","nodeType":"YulTypedName","src":"19182:9:101","type":""},{"name":"dataEnd","nativeSrc":"19193:7:101","nodeType":"YulTypedName","src":"19193:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"19205:6:101","nodeType":"YulTypedName","src":"19205:6:101","type":""},{"name":"value1","nativeSrc":"19213:6:101","nodeType":"YulTypedName","src":"19213:6:101","type":""}],"src":"19092:439:101"},{"body":{"nativeSrc":"19672:130:101","nodeType":"YulBlock","src":"19672:130:101","statements":[{"nativeSrc":"19682:26:101","nodeType":"YulAssignment","src":"19682:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"19694:9:101","nodeType":"YulIdentifier","src":"19694:9:101"},{"kind":"number","nativeSrc":"19705:2:101","nodeType":"YulLiteral","src":"19705:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19690:3:101","nodeType":"YulIdentifier","src":"19690:3:101"},"nativeSrc":"19690:18:101","nodeType":"YulFunctionCall","src":"19690:18:101"},"variableNames":[{"name":"tail","nativeSrc":"19682:4:101","nodeType":"YulIdentifier","src":"19682:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19724:9:101","nodeType":"YulIdentifier","src":"19724:9:101"},{"arguments":[{"name":"value0","nativeSrc":"19739:6:101","nodeType":"YulIdentifier","src":"19739:6:101"},{"kind":"number","nativeSrc":"19747:4:101","nodeType":"YulLiteral","src":"19747:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"19735:3:101","nodeType":"YulIdentifier","src":"19735:3:101"},"nativeSrc":"19735:17:101","nodeType":"YulFunctionCall","src":"19735:17:101"}],"functionName":{"name":"mstore","nativeSrc":"19717:6:101","nodeType":"YulIdentifier","src":"19717:6:101"},"nativeSrc":"19717:36:101","nodeType":"YulFunctionCall","src":"19717:36:101"},"nativeSrc":"19717:36:101","nodeType":"YulExpressionStatement","src":"19717:36:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19773:9:101","nodeType":"YulIdentifier","src":"19773:9:101"},{"kind":"number","nativeSrc":"19784:2:101","nodeType":"YulLiteral","src":"19784:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19769:3:101","nodeType":"YulIdentifier","src":"19769:3:101"},"nativeSrc":"19769:18:101","nodeType":"YulFunctionCall","src":"19769:18:101"},{"name":"value1","nativeSrc":"19789:6:101","nodeType":"YulIdentifier","src":"19789:6:101"}],"functionName":{"name":"mstore","nativeSrc":"19762:6:101","nodeType":"YulIdentifier","src":"19762:6:101"},"nativeSrc":"19762:34:101","nodeType":"YulFunctionCall","src":"19762:34:101"},"nativeSrc":"19762:34:101","nodeType":"YulExpressionStatement","src":"19762:34:101"}]},"name":"abi_encode_tuple_t_rational_32_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"19536:266:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19633:9:101","nodeType":"YulTypedName","src":"19633:9:101","type":""},{"name":"value1","nativeSrc":"19644:6:101","nodeType":"YulTypedName","src":"19644:6:101","type":""},{"name":"value0","nativeSrc":"19652:6:101","nodeType":"YulTypedName","src":"19652:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19663:4:101","nodeType":"YulTypedName","src":"19663:4:101","type":""}],"src":"19536:266:101"},{"body":{"nativeSrc":"19855:128:101","nodeType":"YulBlock","src":"19855:128:101","statements":[{"nativeSrc":"19865:55:101","nodeType":"YulAssignment","src":"19865:55:101","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"19881:1:101","nodeType":"YulIdentifier","src":"19881:1:101"},{"kind":"number","nativeSrc":"19884:12:101","nodeType":"YulLiteral","src":"19884:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"19877:3:101","nodeType":"YulIdentifier","src":"19877:3:101"},"nativeSrc":"19877:20:101","nodeType":"YulFunctionCall","src":"19877:20:101"},{"arguments":[{"name":"y","nativeSrc":"19903:1:101","nodeType":"YulIdentifier","src":"19903:1:101"},{"kind":"number","nativeSrc":"19906:12:101","nodeType":"YulLiteral","src":"19906:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"19899:3:101","nodeType":"YulIdentifier","src":"19899:3:101"},"nativeSrc":"19899:20:101","nodeType":"YulFunctionCall","src":"19899:20:101"}],"functionName":{"name":"sub","nativeSrc":"19873:3:101","nodeType":"YulIdentifier","src":"19873:3:101"},"nativeSrc":"19873:47:101","nodeType":"YulFunctionCall","src":"19873:47:101"},"variableNames":[{"name":"diff","nativeSrc":"19865:4:101","nodeType":"YulIdentifier","src":"19865:4:101"}]},{"body":{"nativeSrc":"19955:22:101","nodeType":"YulBlock","src":"19955:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"19957:16:101","nodeType":"YulIdentifier","src":"19957:16:101"},"nativeSrc":"19957:18:101","nodeType":"YulFunctionCall","src":"19957:18:101"},"nativeSrc":"19957:18:101","nodeType":"YulExpressionStatement","src":"19957:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"19935:4:101","nodeType":"YulIdentifier","src":"19935:4:101"},{"kind":"number","nativeSrc":"19941:12:101","nodeType":"YulLiteral","src":"19941:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"gt","nativeSrc":"19932:2:101","nodeType":"YulIdentifier","src":"19932:2:101"},"nativeSrc":"19932:22:101","nodeType":"YulFunctionCall","src":"19932:22:101"},"nativeSrc":"19929:48:101","nodeType":"YulIf","src":"19929:48:101"}]},"name":"checked_sub_t_uint40","nativeSrc":"19807:176:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"19837:1:101","nodeType":"YulTypedName","src":"19837:1:101","type":""},{"name":"y","nativeSrc":"19840:1:101","nodeType":"YulTypedName","src":"19840:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"19846:4:101","nodeType":"YulTypedName","src":"19846:4:101","type":""}],"src":"19807:176:101"},{"body":{"nativeSrc":"20090:180:101","nodeType":"YulBlock","src":"20090:180:101","statements":[{"body":{"nativeSrc":"20136:16:101","nodeType":"YulBlock","src":"20136:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20145:1:101","nodeType":"YulLiteral","src":"20145:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"20148:1:101","nodeType":"YulLiteral","src":"20148:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"20138:6:101","nodeType":"YulIdentifier","src":"20138:6:101"},"nativeSrc":"20138:12:101","nodeType":"YulFunctionCall","src":"20138:12:101"},"nativeSrc":"20138:12:101","nodeType":"YulExpressionStatement","src":"20138:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"20111:7:101","nodeType":"YulIdentifier","src":"20111:7:101"},{"name":"headStart","nativeSrc":"20120:9:101","nodeType":"YulIdentifier","src":"20120:9:101"}],"functionName":{"name":"sub","nativeSrc":"20107:3:101","nodeType":"YulIdentifier","src":"20107:3:101"},"nativeSrc":"20107:23:101","nodeType":"YulFunctionCall","src":"20107:23:101"},{"kind":"number","nativeSrc":"20132:2:101","nodeType":"YulLiteral","src":"20132:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"20103:3:101","nodeType":"YulIdentifier","src":"20103:3:101"},"nativeSrc":"20103:32:101","nodeType":"YulFunctionCall","src":"20103:32:101"},"nativeSrc":"20100:52:101","nodeType":"YulIf","src":"20100:52:101"},{"nativeSrc":"20161:29:101","nodeType":"YulVariableDeclaration","src":"20161:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"20180:9:101","nodeType":"YulIdentifier","src":"20180:9:101"}],"functionName":{"name":"mload","nativeSrc":"20174:5:101","nodeType":"YulIdentifier","src":"20174:5:101"},"nativeSrc":"20174:16:101","nodeType":"YulFunctionCall","src":"20174:16:101"},"variables":[{"name":"value","nativeSrc":"20165:5:101","nodeType":"YulTypedName","src":"20165:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"20234:5:101","nodeType":"YulIdentifier","src":"20234:5:101"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"20199:34:101","nodeType":"YulIdentifier","src":"20199:34:101"},"nativeSrc":"20199:41:101","nodeType":"YulFunctionCall","src":"20199:41:101"},"nativeSrc":"20199:41:101","nodeType":"YulExpressionStatement","src":"20199:41:101"},{"nativeSrc":"20249:15:101","nodeType":"YulAssignment","src":"20249:15:101","value":{"name":"value","nativeSrc":"20259:5:101","nodeType":"YulIdentifier","src":"20259:5:101"},"variableNames":[{"name":"value0","nativeSrc":"20249:6:101","nodeType":"YulIdentifier","src":"20249:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory","nativeSrc":"19988:282:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20056:9:101","nodeType":"YulTypedName","src":"20056:9:101","type":""},{"name":"dataEnd","nativeSrc":"20067:7:101","nodeType":"YulTypedName","src":"20067:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"20079:6:101","nodeType":"YulTypedName","src":"20079:6:101","type":""}],"src":"19988:282:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function validator_revert_contract_IERC4626(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function validator_revert_bool(value)\n    {\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IERC4626_$6400t_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_bool(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_struct_PolicyData_calldata(offset, end) -> value\n    {\n        if slt(sub(end, offset), 384) { revert(0, 0) }\n        value := offset\n    }\n    function abi_decode_tuple_t_addresst_struct$_PolicyData_$22256_calldata_ptrt_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 448) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        value1 := abi_decode_struct_PolicyData_calldata(add(headStart, 32), dataEnd)\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 416))\n        value2 := value_1\n    }\n    function abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function allocate_memory_1999() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 384)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let array := allocate_memory(add(and(add(length, 0x1f), not(31)), 32))\n        mstore(array, length)\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        calldatacopy(add(array, 32), add(_1, 32), length)\n        mstore(add(add(array, length), 32), 0)\n        value1 := array\n    }\n    function abi_decode_tuple_t_uint256t_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_bool(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_contract$_IEToken_$28869__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_contract$_IEToken_$28869_t_contract$_IEToken_$28869__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 384) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_calldata(headStart, dataEnd)\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256t_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_uint256t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_contract$_IERC4626_$6400__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        mcopy(add(headStart, 64), add(value0, 32), length)\n        mstore(add(add(headStart, length), 64), 0)\n        tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_struct$_PolicyData_$22256_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 768) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_calldata(headStart, dataEnd)\n        value1 := abi_decode_struct_PolicyData_calldata(add(headStart, 384), dataEnd)\n    }\n    function abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_uint256t_uint256t_uint256t_address(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 512) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_calldata(headStart, dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 416))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 448))\n        value3 := value_2\n        let value_3 := calldataload(add(headStart, 480))\n        validator_revert_contract_IERC4626(value_3)\n        value4 := value_3\n    }\n    function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_sub_t_int256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        let _1 := slt(y, 0)\n        if or(and(iszero(_1), sgt(diff, x)), and(_1, slt(diff, x))) { panic_error_0x11() }\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function abi_decode_uint40(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptr(headStart, dataEnd) -> value0\n    {\n        let _1 := slt(sub(dataEnd, headStart), 384)\n        if _1 { revert(0, 0) }\n        _1 := 0\n        let value := allocate_memory_1999()\n        let value_1 := 0\n        value_1 := calldataload(headStart)\n        mstore(value, value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 32))\n        mstore(add(value, 32), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 64))\n        mstore(add(value, 64), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 96))\n        mstore(add(value, 96), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(add(value, 128), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 160))\n        mstore(add(value, 160), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(value, 192), value_7)\n        let value_8 := 0\n        value_8 := calldataload(add(headStart, 224))\n        mstore(add(value, 224), value_8)\n        let value_9 := 0\n        value_9 := calldataload(add(headStart, 256))\n        mstore(add(value, 256), value_9)\n        let value_10 := 0\n        value_10 := calldataload(add(headStart, 288))\n        mstore(add(value, 288), value_10)\n        mstore(add(value, 320), abi_decode_uint40(add(headStart, 320)))\n        mstore(add(value, 352), abi_decode_uint40(add(headStart, 352)))\n        value0 := value\n    }\n    function checked_add_t_int256(x, y) -> sum\n    {\n        sum := add(x, y)\n        let _1 := slt(sum, y)\n        let _2 := slt(x, 0)\n        if or(and(iszero(_2), _1), and(_2, iszero(_1))) { panic_error_0x11() }\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        product := mul(x, y)\n        if iszero(or(iszero(x), eq(y, div(product, x)))) { panic_error_0x11() }\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function negate_t_int256(value) -> ret\n    {\n        if eq(value, shl(255, 1)) { panic_error_0x11() }\n        ret := sub(0, value)\n    }\n    function abi_encode_tuple_t_int256_t_int256__to_t_int256_t_int256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_bool_t_uint256__to_t_bool_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, iszero(iszero(value0)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_uint256_t_uint256_t_bool__to_t_uint256_t_uint256_t_bool__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), iszero(iszero(value2)))\n    }\n    function abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bool(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_int256__to_t_uint256_t_uint256_t_uint256_t_int256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint8_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value0 := value\n    }\n    function checked_exp_helper(_base, exponent, max) -> power, base\n    {\n        power := 1\n        base := _base\n        for { } gt(exponent, 1) { }\n        {\n            if gt(base, div(max, base)) { panic_error_0x11() }\n            if and(exponent, 1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(1, exponent)\n        }\n    }\n    function checked_exp_unsigned(base, exponent) -> power\n    {\n        if iszero(exponent)\n        {\n            power := 1\n            leave\n        }\n        if iszero(base)\n        {\n            power := 0\n            leave\n        }\n        switch base\n        case 1 {\n            power := 1\n            leave\n        }\n        case 2 {\n            if gt(exponent, 255) { panic_error_0x11() }\n            power := shl(exponent, 1)\n            let _1 := 0\n            _1 := 0\n            leave\n        }\n        if or(and(lt(base, 11), lt(exponent, 78)), and(lt(base, 307), lt(exponent, 32)))\n        {\n            power := exp(base, exponent)\n            let _2 := 0\n            _2 := 0\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent, not(0))\n        if gt(power_1, div(not(0), base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_exp_t_uint256_t_uint8(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, and(exponent, 0xff))\n    }\n    function abi_decode_tuple_t_bytes32_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_rational_16_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_int256_t_address_t_uint256__to_t_uint256_t_uint256_t_uint256_t_int256_t_address_t_uint256__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 160), value5)\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$28869t_contract$_IEToken_$28869_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_rational_32_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), value1)\n    }\n    function checked_sub_t_uint40(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffffff), and(y, 0xffffffffff))\n        if gt(diff, 0xffffffffff) { panic_error_0x11() }\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"7234":[{"length":32,"start":9283},{"length":32,"start":9324},{"length":32,"start":9729}],"25474":[{"length":32,"start":752},{"length":32,"start":2288},{"length":32,"start":3465},{"length":32,"start":5177},{"length":32,"start":6094},{"length":32,"start":6259},{"length":32,"start":6724},{"length":32,"start":12885}],"25663":[{"length":32,"start":952},{"length":32,"start":1014},{"length":32,"start":3223},{"length":32,"start":5298},{"length":32,"start":5531},{"length":32,"start":6623},{"length":32,"start":6677},{"length":32,"start":6832},{"length":32,"start":7724},{"length":32,"start":8091},{"length":32,"start":8267},{"length":32,"start":8436},{"length":32,"start":10632},{"length":32,"start":11831},{"length":32,"start":11890},{"length":32,"start":11934}],"25667":[{"length":32,"start":1051},{"length":32,"start":1139},{"length":32,"start":5703},{"length":32,"start":5936},{"length":32,"start":6518},{"length":32,"start":6572},{"length":32,"start":7004},{"length":32,"start":7919},{"length":32,"start":8646},{"length":32,"start":8812},{"length":32,"start":10860},{"length":32,"start":12020},{"length":32,"start":12079},{"length":32,"start":12123}]},"linkReferences":{},"object":"6080604052600436106101fc575f3560e01c806376185ff111610113578063ac860f741161009d578063e5a6b10f1161006d578063e5a6b10f146105e7578063e823584a146105fb578063ee1f9a6a1461060f578063f39a4bc51461062e578063f79ac18314610642575f5ffd5b8063ac860f741461054d578063ad3cb1cc1461056c578063d336078c146105a9578063d5c6c166146105c8575f5ffd5b80638129fc1c116100e35780638129fc1c146104bf57806381ced71f146104d357806397a146c0146104f2578063a0ce58b814610511578063a7f8a5e214610530575f5ffd5b806376185ff1146104465780637b83037b146104655780637bb62319146104975780637d919a97146104ab575f5ffd5b80634d15eb031161019457806350093f041161016457806350093f041461036357806352d1902d14610382578063536c9a4314610396578063536ebbfc146103aa5780635e445859146103dc575f5ffd5b80634d15eb03146102e25780634eb978a4146103285780634f1ef2861461033c5780634fe0bd1e1461034f575f5ffd5b80631dda2899116101cf5780631dda28991461028757806326ccbd22146102a65780632d8f892a146102ba5780634863c8b0146102ce575f5ffd5b806301ffc9a7146102005780631388856514610234578063194448e5146102525780631a548a2714610273575b5f5ffd5b34801561020b575f5ffd5b5061021f61021a3660046134ab565b610661565b60405190151581526020015b60405180910390f35b34801561023f575f5ffd5b506065545b60405190815260200161022b565b34801561025d575f5ffd5b5061027161026c3660046134f3565b61068c565b005b34801561027e575f5ffd5b50606454610244565b348015610292575f5ffd5b506102716102a1366004613541565b6108e5565b3480156102b1575f5ffd5b506102446109c0565b3480156102c5575f5ffd5b506102446109d6565b3480156102d9575f5ffd5b50610244610a0c565b3480156102ed575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b03909116815260200161022b565b348015610333575f5ffd5b50610271610a2d565b61027161034a3660046135ef565b610b62565b34801561035a575f5ffd5b50610244610b81565b34801561036e575f5ffd5b5061027161037d366004613696565b610b9f565b34801561038d575f5ffd5b50610244610d4b565b3480156103a1575f5ffd5b50610244610d67565b3480156103b5575f5ffd5b507f0000000000000000000000000000000000000000000000000000000000000000610310565b3480156103e7575f5ffd5b50604080516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811682527f00000000000000000000000000000000000000000000000000000000000000001660208201520161022b565b348015610451575f5ffd5b506102716104603660046136b9565b610d7e565b348015610470575f5ffd5b507f0000000000000000000000000000000000000000000000000000000000000000610310565b3480156104a2575f5ffd5b50610244610e04565b3480156104b6575f5ffd5b50603254610244565b3480156104ca575f5ffd5b50610271610e34565b3480156104de575f5ffd5b506102716104ed3660046136d4565b610f2b565b3480156104fd575f5ffd5b5061027161050c3660046136eb565b610f91565b34801561051c575f5ffd5b5061024461052b36600461370b565b6110f4565b34801561053b575f5ffd5b506066546001600160a01b0316610310565b348015610558575f5ffd5b506102716105673660046136d4565b611208565b348015610577575f5ffd5b5061059c604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161022b919061372e565b3480156105b4575f5ffd5b506102446105c33660046136d4565b61138e565b3480156105d3575f5ffd5b506102716105e2366004613763565b61142e565b3480156105f2575f5ffd5b506103106117cb565b348015610606575f5ffd5b5061024461184c565b34801561061a575f5ffd5b50610271610629366004613798565b611868565b348015610639575f5ffd5b50610244611936565b34801561064d575f5ffd5b5061027161065c3660046136b9565b611a39565b5f61066b82611bf0565b8061068657506001600160e01b0319821663f7e4b01b60e01b145b92915050565b5f5f6106966117cb565b90506001600160a01b038416158061071e5750806001600160a01b0316846001600160a01b03166338d52e0f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106ef573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061071391906137ee565b6001600160a01b0316145b61073b57604051638959269160e01b815260040160405180910390fd5b5f61074e6066546001600160a01b031690565b90505f6001600160a01b03821615610863576040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156107a4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107c89190613809565b905080156108615785156107e9576107e08382611c25565b95509150610861565b604051635d043b2960e11b815260048101829052306024820181905260448201526001600160a01b0384169063ba087652906064016020604051808303815f875af115801561083a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061085e9190613809565b91505b505b606680546001600160a01b0319166001600160a01b0388161790556108946032548261088f9190613834565b611d68565b5f60325560405184151581526001600160a01b0380881691908416907f243f9479bbdaf9f3395e726975293ee3724f3819f4322a018c98afb9de70a1e09060200160405180910390a3505050505050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461092e5760405163799e780f60e01b815260040160405180910390fd5b8160a0013560645f8282546109439190613853565b909155505f905061096061095b60a085013584613834565b611dcd565b905080156109955761097f61097a3685900385018561387f565b611e20565b61099081855f866040013511611f7d565b6109a7565b6109a761097a3685900385018561387f565b6109ba846109b58385613853565b6122fc565b50505050565b5f6065546064546109d19190613927565b905090565b6066545f90600160a01b900463ffffffff1615610a06576066546109d190600160a01b900463ffffffff166123b5565b505f1990565b6066545f906109d190655af3107a400090600160e01b900461ffff1661394e565b5f610a406066546001600160a01b031690565b90506001600160a01b038116610a6957604051638959269160e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201525f906001600160a01b038316906307a2d13a9082906370a0823190602401602060405180830381865afa158015610ab5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ad99190613809565b6040518263ffffffff1660e01b8152600401610af791815260200190565b602060405180830381865afa158015610b12573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b369190613809565b90505f60325482610b479190613834565b90508015610b5d576032829055610b5d81611d68565b505050565b610b6a612438565b610b73826124de565b610b7d82826124e7565b5050565b5f610b92610b8d610a0c565b6125a3565b6065546109d19190613834565b5f610bb8610bb3655af3107a400085613979565b6125c4565b9050670de0b6b3a76400008311158015610be4575082610be2655af3107a400061ffff841661394e565b145b8390610c0f576040516346c20ab760e01b8152600401610c0691815260200190565b60405180910390fd5b505f610c1a846125a3565b905082158015610c2b575080606554125b15610c6757606554610c3c90613998565b610c4582613998565b60405163287223f960e01b815260048101929092526024820152604401610c06565b5f816065541215610cc65781606554610c7f90613998565b610c899190613927565b60658390559050610cc681307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161515611f7d565b6066547f5b2441044bd7b1320018e9cf93f7a9a26d14db096298500121b8370aff51133d90610d0790655af3107a400090600160e01b900461ffff1661394e565b6040805191825260208201889052810183905260600160405180910390a150506066805461ffff909216600160e01b0261ffff60e01b199092169190911790555050565b5f610d546125f6565b505f516020613b3c5f395f51905f525b90565b5f5f6065541215610d7757505f90565b5060655490565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610dc75760405163799e780f60e01b815260040160405180910390fd5b8060a0013560645f828254610ddc9190613853565b90915550610def905060a082013561263f565b610e0161097a3683900383018361387f565b50565b6066545f90600160c01b900463ffffffff1615610a06576066546109d190600160c01b900463ffffffff166123b5565b5f610e3d612658565b805490915060ff600160401b820416159067ffffffffffffffff165f81158015610e645750825b90505f8267ffffffffffffffff166001148015610e805750303b155b905081158015610e8e575080155b15610eac5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610ed657845460ff60401b1916600160401b1785555b610ede612680565b8315610f2457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b610f348161263f565b610f53333083610f426117cb565b6001600160a01b0316929190612698565b6040805160018152602081018390527fd60d524f1cae273480bb0a4ddfb992b6ac0b61c8e12ffbe2e4e31463f9e9019991015b60405180910390a150565b5f198214611043577f1366686786a1d0cde83e2e2241a477fcf29662506a51f052f72e47b15729bf0b610fc26109d6565b60408051918252602082018590525f9082015260600160405180910390a1610fe9826126ce565b6066805463ffffffff60a01b1916600160a01b63ffffffff93841681029190911791829055849261101e9291909104166123b5565b14829061104157604051634a8fd66f60e01b8152600401610c0691815260200190565b505b5f198114610b7d577f1366686786a1d0cde83e2e2241a477fcf29662506a51f052f72e47b15729bf0b611074610e04565b604080519182526020820184905260019082015260600160405180910390a161109c816126ce565b6066805463ffffffff60c01b1916600160c01b63ffffffff9384168102919091179182905583926110d19291909104166123b5565b148190610b5d57604051634a8fd66f60e01b8152600401610c0691815260200190565b5f816001600160a01b03811661112957604051638eaba6f960e01b81526001600160a01b039091166004820152602401610c06565b505f61113d6066546001600160a01b031690565b6001600160a01b03161461115357611153610a2d565b5f198303611175575f6065541361116b57505f610686565b60655492506111a7565b6065548390808213156111a45760405163241b522760e11b815260048101929092526024820152604401610c06565b50505b8260655f8282546111b89190613834565b909155506111c8905082846122fc565b604080515f8152602081018590527fd60d524f1cae273480bb0a4ddfb992b6ac0b61c8e12ffbe2e4e31463f9e90199910160405180910390a15090919050565b5f61121b6066546001600160a01b031690565b90506001600160a01b03811661124457604051638959269160e01b815260040160405180910390fd5b5f61124d612753565b90505f19830361125f5780925061128e565b82818082111561128b5760405163531309fb60e11b815260048101929092526024820152604401610c06565b50505b8260325f82825461129f91906139b2565b909155506112ad90506117cb565b60405163095ea7b360e01b81526001600160a01b03848116600483015260248201869052919091169063095ea7b3906044016020604051808303815f875af11580156112fb573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061131f91906139c5565b50604051636e553f6560e01b8152600481018490523060248201526001600160a01b03831690636e553f65906044016020604051808303815f875af115801561136a573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109ba9190613809565b5f611397610a2d565b5f6113aa6066546001600160a01b031690565b90505f19830361141d5760405163ce96cb7760e01b81523060048201526001600160a01b0382169063ce96cb7790602401602060405180830381865afa1580156113f6573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141a9190613809565b92505b61142781846127c4565b5090919050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146114775760405163799e780f60e01b815260040160405180910390fd5b61148960a08084013590830135613853565b60645f82825461149991906139b2565b9091555050604082013515611587576001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663a227dc41833560408501356114f56114f03688900388018861387f565b612877565b61150c6115073689900389018961387f565b6128bf565b61151e6115073689900389018961387f565b6115289190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526084015f604051808303815f87803b158015611570575f5ffd5b505af1158015611582573d5f5f3e3d5ffd5b505050505b604081013515611633576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016634ffcda8c823560408401356115d96114f03687900387018761387f565b6040516001600160e01b031960e086901b1681526004810193909352602483019190915260448201526064015f604051808303815f87803b15801561161c575f5ffd5b505af115801561162e573d5f5f3e3d5ffd5b505050505b60608201351561171c576001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663a227dc418335606085013561168a6116853688900388018861387f565b612902565b6116a161169c3689900389018961387f565b612943565b6116b361169c3689900389018961387f565b6116bd9190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526084015f604051808303815f87803b158015611705575f5ffd5b505af1158015611717573d5f5f3e3d5ffd5b505050505b606081013515610b7d576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016634ffcda8c8235606084013561176e6116853687900387018761387f565b6040516001600160e01b031960e086901b1681526004810193909352602483019190915260448201526064015f604051808303815f87803b1580156117b1575f5ffd5b505af11580156117c3573d5f5f3e3d5ffd5b505050505050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611828573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d191906137ee565b5f5f6065541215611863576065546109d190613998565b505f90565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146118b15760405163799e780f60e01b815260040160405180910390fd5b8460a0013560645f8282546118c69190613853565b909155505f90506118de61095b60a088013587613834565b90508015611916576119006118f83688900388018861387f565b85858561297c565b61191181835f896040013511611f7d565b611928565b6119286118f83688900388018861387f565b6117c3826109b58388613853565b5f8061194a6066546001600160a01b031690565b6001600160a01b03161461196057611960610a2d565b611968610b81565b905080158015906119a157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b156119d3576119d0817f0000000000000000000000000000000000000000000000000000000000000000612b49565b90505b8015801590611a0a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b15610d64576109d1817f0000000000000000000000000000000000000000000000000000000000000000612b49565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611a825760405163799e780f60e01b815260040160405180910390fd5b8060a0013560645f828254611a9791906139b2565b9091555050604081013515611b48576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016634ffcda8c82356040840135611aee6114f03687900387018761387f565b6040516001600160e01b031960e086901b1681526004810193909352602483019190915260448201526064015f604051808303815f87803b158015611b31575f5ffd5b505af1158015611b43573d5f5f3e3d5ffd5b505050505b606081013515610e01576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016634ffcda8c82356060840135611b9a6116853687900387018761387f565b6040516001600160e01b031960e086901b1681526004810193909352602483019190915260448201526064015b5f604051808303815f87803b158015611bde575f5ffd5b505af1158015610f24573d5f5f3e3d5ffd5b5f6001600160e01b031982166301ffc9a760e01b148061068657506001600160e01b03198216634d15eb0360e01b1492915050565b604051636c82bbbf60e11b81523060048201525f9081906001600160a01b0385169063d905777e90602401602060405180830381865afa925050508015611c89575060408051601f3d908101601f19168201909252611c8691810190613809565b60015b15611ca05783811015611c9e57600191508093505b505b604051635d043b2960e11b815260048101849052306024820181905260448201526001600160a01b0385169063ba087652906064016020604051808303815f875af1925050508015611d0f575060408051601f3d908101601f19168201909252611d0c91810190613809565b60015b611d5e57836001600160a01b03167f25bce30047860a48c9d8830dbf31873be5434f4d28f14a5808a4ea8e35d0829684604051611d4e91815260200190565b60405180910390a2506001611d61565b91505b9250929050565b5f8112611d7d57611d788161263f565b611dc4565b5f611d8a61095b83613998565b90508015611d9783613998565b829091611dc057604051630fc2324b60e11b815260048101929092526024820152604401610c06565b5050505b610e0181612d5e565b5f5f82606554611ddd9190613834565b90505f611deb610b8d610a0c565b9050808212611dff5750606555505f919050565b606581905580611e0e83613998565b611e189190613927565b949350505050565b604081015115611ee3577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a227dc41825f01518360400151611e6b85612877565b611e74866128bf565b866101000151611e849190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526084015f604051808303815f87803b158015611ecc575f5ffd5b505af1158015611ede573d5f5f3e3d5ffd5b505050505b606081015115610e01577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a227dc41825f01518360600151611f2e85612902565b611f3786612943565b866101200151611f479190613834565b6040516001600160e01b031960e087901b1681526004810194909452602484019290925260448301526064820152608401611bc7565b8281156121a1576040516333481fc960e01b81523060048201525f907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906333481fc990602401602060405180830381865afa158015611fe8573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061200c9190613809565b90506120166109d6565b61202086836139b2565b116120bc576040516330f7e76b60e21b8152600481018690526001600160a01b0385811660248301527f0000000000000000000000000000000000000000000000000000000000000000169063c3df9dac906044016020604051808303815f875af1158015612091573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120b59190613809565b915061219f565b6120c46109d6565b81101561219f575f6120d46109d6565b6120de87846139b2565b6120e89190613853565b90506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663c3df9dac6121238389613853565b6040516001600160e01b031960e084901b16815260048101919091526001600160a01b03881660248201526044016020604051808303815f875af115801561216d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121919190613809565b61219b90826139b2565b9250505b505b80156109ba576121af610e04565b6040516333481fc960e01b815230600482015282907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906333481fc990602401602060405180830381865afa158015612213573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122379190613809565b61224191906139b2565b116122d9576040516330f7e76b60e21b8152600481018290526001600160a01b0384811660248301527f0000000000000000000000000000000000000000000000000000000000000000169063c3df9dac906044016020604051808303815f875af11580156122b2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122d69190613809565b90505b808015610f245760405163093f664360e01b8152600401610c0691815260200190565b816001600160a01b03811661233057604051636427f27360e11b81526001600160a01b039091166004820152602401610c06565b50805f0361233c575050565b5f612345612753565b905081811015612388575f6123626066546001600160a01b031690565b90506001600160a01b0381161561238657612386816123818486613853565b6127c4565b505b6001600160a01b0383163014610b5d57610b5d83836123a56117cb565b6001600160a01b03169190612d8e565b5f6123be6117cb565b6001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123f9573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061241d91906139e0565b61242890600a613ae3565b6106869063ffffffff841661394e565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806124be57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166124b25f516020613b3c5f395f51905f52546001600160a01b031690565b6001600160a01b031614155b156124dc5760405163703e46dd60e11b815260040160405180910390fd5b565b610e0181612dc3565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015612541575060408051601f3d908101601f1916820190925261253e91810190613809565b60015b61256957604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610c06565b5f516020613b3c5f395f51905f52811461259957604051632a87526960e21b815260048101829052602401610c06565b610b5d8383612fad565b6064545f906125bb9083670de0b6b3a7640000613002565b61068690613998565b5f61ffff8211156125f2576040516306dfcc6560e41b81526010600482015260248101839052604401610c06565b5090565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146124dc5760405163703e46dd60e11b815260040160405180910390fd5b8060655f8282546126509190613927565b909155505050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610686565b6126886130b3565b6126906130d8565b6124dc6130e8565b6126a684848484600161312e565b6109ba57604051635274afe760e01b81526001600160a01b0385166004820152602401610c06565b5f6106866126da6117cb565b6001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015612715573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061273991906139e0565b61274490600a613ae3565b61274e9084613979565b61319b565b5f61275c6117cb565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa1580156127a0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d19190613809565b604051632d182be560e21b815260048101829052306024820181905260448201526001600160a01b0383169063b460af94906064016020604051808303815f875af1158015612815573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128399190613809565b5060325481111561285d576128556032548261088f9190613853565b5f6032555050565b8060325f82825461286e9190613853565b90915550505050565b5f610686670de0b6b3a764000061288d846131cb565b64ffffffffff1684604001516128a3919061394e565b6301e133808561010001516128b8919061394e565b9190613002565b5f6128c9826131cb565b64ffffffffff1682610140015164ffffffffff16426128e89190613853565b8361010001516128f8919061394e565b6106869190613979565b5f610686670de0b6b3a7640000612918846131cb565b64ffffffffff16846060015161292e919061394e565b6301e133808561012001516128b8919061394e565b5f61294d826131cb565b64ffffffffff1682610140015164ffffffffff164261296c9190613853565b8361012001516128f8919061394e565b604084015115612a60577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633ad2820b855f015186604001516129c788612877565b6129d0896128bf565b888a61010001516129e19190613853565b6129eb9190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526001600160a01b038416608482015260a4810186905260c4015f604051808303815f87803b158015612a49575f5ffd5b505af1158015612a5b573d5f5f3e3d5ffd5b505050505b6060840151156109ba577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633ad2820b855f01518660600151612aab88612902565b612ab489612943565b878a6101200151612ac59190613853565b612acf9190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526001600160a01b038416608482015260a4810185905260c4015f604051808303815f87803b158015612b2d575f5ffd5b505af1158015612b3f573d5f5f3e3d5ffd5b5050505050505050565b6040516333481fc960e01b81523060048201525f9081906001600160a01b038416906333481fc990602401602060405180830381865afa158015612b8f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bb39190613809565b9050805f03612bc55783915050610686565b5f612bd085836131e2565b90508060655f828254612be39190613834565b90915550612bf3905030826122fc565b80612bfc6117cb565b604051636eb1769f60e11b81523060048201526001600160a01b038781166024830152919091169063dd62ed3e90604401602060405180830381865afa158015612c48573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c6c9190613809565b1015612cee57612c7a6117cb565b60405163095ea7b360e01b81526001600160a01b03868116600483015260248201859052919091169063095ea7b3906044016020604051808303815f875af1158015612cc8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cec91906139c5565b505b60405163918344d360e01b8152600481018290523060248201526001600160a01b0385169063918344d3906044015f604051808303815f87803b158015612d33575f5ffd5b505af1158015612d45573d5f5f3e3d5ffd5b505050508085612d559190613853565b95945050505050565b6040518181527f731c439c5bae15be1344eec709967e046b4f7d3f7e37abeffc5247f448fa18bf90602001610f86565b612d9b83838360016131f1565b610b5d57604051635274afe760e01b81526001600160a01b0384166004820152602401610c06565b612dcc81613253565b5f8190505f5f826001600160a01b0316635e4458596040518163ffffffff1660e01b81526004016040805180830381865afa158015612e0d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e319190613af1565b915091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161480612e9c57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316155b7f0000000000000000000000000000000000000000000000000000000000000000839091612ef0576040516313afea8960e21b81526001600160a01b03928316600482015291166024820152604401610c06565b50507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161480612f5957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316155b7f00000000000000000000000000000000000000000000000000000000000000008290916117c3576040516313afea8960e21b81526001600160a01b03928316600482015291166024820152604401610c06565b612fb682613304565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115612ffa57610b5d8282613367565b610b7d613407565b5f5f5f61300f8686613426565b91509150815f036130335783818161302957613029613965565b04925050506130ac565b81841161304a5761304a6003851502601118613442565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150505b9392505050565b6130bb613453565b6124dc57604051631afcd79f60e31b815260040160405180910390fd5b6130e06130b3565b6124dc61346c565b6130f06130b3565b604080516080810182525f8082526020820181905291810191909152612710606090910152606680546001600160f01b03191661027160e41b179055565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f5114831661318a57838315161561317e573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b5f63ffffffff8211156125f2576040516306dfcc6560e41b81526020600482015260248101839052604401610c06565b5f8161014001518261016001516106869190613b1e565b5f8282188284100282186130ac565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f5114831661324757838315161561323b573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132b9573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132dd91906137ee565b6001600160a01b031614610e015760405163d2b3d33f60e01b815260040160405180910390fd5b806001600160a01b03163b5f0361333957604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610c06565b5f516020613b3c5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f6133748484613474565b905080801561339557505f3d118061339557505f846001600160a01b03163b115b156133aa576133a2613487565b915050610686565b80156133d457604051639996b31560e01b81526001600160a01b0385166004820152602401610c06565b3d156133e7576133e26134a0565b613400565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b34156124dc5760405163b398979f60e01b815260040160405180910390fd5b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f61345c612658565b54600160401b900460ff16919050565b6124dc6130b3565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f602082840312156134bb575f5ffd5b81356001600160e01b0319811681146130ac575f5ffd5b6001600160a01b0381168114610e01575f5ffd5b8015158114610e01575f5ffd5b5f5f60408385031215613504575f5ffd5b823561350f816134d2565b9150602083013561351f816134e6565b809150509250929050565b5f610180828403121561353b575f5ffd5b50919050565b5f5f5f6101c08486031215613554575f5ffd5b833561355f816134d2565b925061356e856020860161352a565b929592945050506101a0919091013590565b634e487b7160e01b5f52604160045260245ffd5b604051610180810167ffffffffffffffff811182821017156135b8576135b8613580565b60405290565b604051601f8201601f1916810167ffffffffffffffff811182821017156135e7576135e7613580565b604052919050565b5f5f60408385031215613600575f5ffd5b823561360b816134d2565b9150602083013567ffffffffffffffff811115613626575f5ffd5b8301601f81018513613636575f5ffd5b803567ffffffffffffffff81111561365057613650613580565b613663601f8201601f19166020016135be565b818152866020838501011115613677575f5ffd5b816020840160208301375f602083830101528093505050509250929050565b5f5f604083850312156136a7575f5ffd5b82359150602083013561351f816134e6565b5f61018082840312156136ca575f5ffd5b6130ac838361352a565b5f602082840312156136e4575f5ffd5b5035919050565b5f5f604083850312156136fc575f5ffd5b50508035926020909101359150565b5f5f6040838503121561371c575f5ffd5b82359150602083013561351f816134d2565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f5f6103008385031215613775575f5ffd5b61377f848461352a565b915061378f84610180850161352a565b90509250929050565b5f5f5f5f5f61020086880312156137ad575f5ffd5b6137b7878761352a565b945061018086013593506101a086013592506101c086013591506101e08601356137e0816134d2565b809150509295509295909350565b5f602082840312156137fe575f5ffd5b81516130ac816134d2565b5f60208284031215613819575f5ffd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b8181035f83128015838313168383128216171561340057613400613820565b8181038181111561068657610686613820565b803564ffffffffff8116811461387a575f5ffd5b919050565b5f610180828403128015613891575f5ffd5b5061389a613594565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e08084013590820152610100808401359082015261012080840135908201526139076101408401613866565b61014082015261391a6101608401613866565b6101608201529392505050565b8082018281125f83128015821682158216171561394657613946613820565b505092915050565b808202811582820484141761068657610686613820565b634e487b7160e01b5f52601260045260245ffd5b5f8261399357634e487b7160e01b5f52601260045260245ffd5b500490565b5f600160ff1b82016139ac576139ac613820565b505f0390565b8082018082111561068657610686613820565b5f602082840312156139d5575f5ffd5b81516130ac816134e6565b5f602082840312156139f0575f5ffd5b815160ff811681146130ac575f5ffd5b6001815b6001841115613a3b57808504811115613a1f57613a1f613820565b6001841615613a2d57908102905b60019390931c928002613a04565b935093915050565b5f82613a5157506001610686565b81613a5d57505f610686565b8160018114613a735760028114613a7d57613a99565b6001915050610686565b60ff841115613a8e57613a8e613820565b50506001821b610686565b5060208310610133831016604e8410600b8410161715613abc575081810a610686565b613ac85f198484613a00565b805f1904821115613adb57613adb613820565b029392505050565b5f6130ac60ff841683613a43565b5f5f60408385031215613b02575f5ffd5b8251613b0d816134d2565b602084015190925061351f816134d2565b64ffffffffff82811682821603908111156106865761068661382056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca2646970667358221220b2d4b25aa785541e2de701afff848eb212cf3813d99cd439cb335d0936bffd3664736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1FC JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x76185FF1 GT PUSH2 0x113 JUMPI DUP1 PUSH4 0xAC860F74 GT PUSH2 0x9D JUMPI DUP1 PUSH4 0xE5A6B10F GT PUSH2 0x6D JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x5E7 JUMPI DUP1 PUSH4 0xE823584A EQ PUSH2 0x5FB JUMPI DUP1 PUSH4 0xEE1F9A6A EQ PUSH2 0x60F JUMPI DUP1 PUSH4 0xF39A4BC5 EQ PUSH2 0x62E JUMPI DUP1 PUSH4 0xF79AC183 EQ PUSH2 0x642 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAC860F74 EQ PUSH2 0x54D JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x56C JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0x5A9 JUMPI DUP1 PUSH4 0xD5C6C166 EQ PUSH2 0x5C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8129FC1C GT PUSH2 0xE3 JUMPI DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x4BF JUMPI DUP1 PUSH4 0x81CED71F EQ PUSH2 0x4D3 JUMPI DUP1 PUSH4 0x97A146C0 EQ PUSH2 0x4F2 JUMPI DUP1 PUSH4 0xA0CE58B8 EQ PUSH2 0x511 JUMPI DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0x530 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x76185FF1 EQ PUSH2 0x446 JUMPI DUP1 PUSH4 0x7B83037B EQ PUSH2 0x465 JUMPI DUP1 PUSH4 0x7BB62319 EQ PUSH2 0x497 JUMPI DUP1 PUSH4 0x7D919A97 EQ PUSH2 0x4AB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D15EB03 GT PUSH2 0x194 JUMPI DUP1 PUSH4 0x50093F04 GT PUSH2 0x164 JUMPI DUP1 PUSH4 0x50093F04 EQ PUSH2 0x363 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x382 JUMPI DUP1 PUSH4 0x536C9A43 EQ PUSH2 0x396 JUMPI DUP1 PUSH4 0x536EBBFC EQ PUSH2 0x3AA JUMPI DUP1 PUSH4 0x5E445859 EQ PUSH2 0x3DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x2E2 JUMPI DUP1 PUSH4 0x4EB978A4 EQ PUSH2 0x328 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x33C JUMPI DUP1 PUSH4 0x4FE0BD1E EQ PUSH2 0x34F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1DDA2899 GT PUSH2 0x1CF JUMPI DUP1 PUSH4 0x1DDA2899 EQ PUSH2 0x287 JUMPI DUP1 PUSH4 0x26CCBD22 EQ PUSH2 0x2A6 JUMPI DUP1 PUSH4 0x2D8F892A EQ PUSH2 0x2BA JUMPI DUP1 PUSH4 0x4863C8B0 EQ PUSH2 0x2CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x200 JUMPI DUP1 PUSH4 0x13888565 EQ PUSH2 0x234 JUMPI DUP1 PUSH4 0x194448E5 EQ PUSH2 0x252 JUMPI DUP1 PUSH4 0x1A548A27 EQ PUSH2 0x273 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x20B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x21F PUSH2 0x21A CALLDATASIZE PUSH1 0x4 PUSH2 0x34AB JUMP JUMPDEST PUSH2 0x661 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x23F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x65 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x22B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x26C CALLDATASIZE PUSH1 0x4 PUSH2 0x34F3 JUMP JUMPDEST PUSH2 0x68C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x27E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x64 SLOAD PUSH2 0x244 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x292 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x2A1 CALLDATASIZE PUSH1 0x4 PUSH2 0x3541 JUMP JUMPDEST PUSH2 0x8E5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x9C0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x9D6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xA0C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x22B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x333 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0xA2D JUMP JUMPDEST PUSH2 0x271 PUSH2 0x34A CALLDATASIZE PUSH1 0x4 PUSH2 0x35EF JUMP JUMPDEST PUSH2 0xB62 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x35A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xB81 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x36E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x37D CALLDATASIZE PUSH1 0x4 PUSH2 0x3696 JUMP JUMPDEST PUSH2 0xB9F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x38D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xD4B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xD67 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x310 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3E7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND DUP3 MSTORE PUSH32 0x0 AND PUSH1 0x20 DUP3 ADD MSTORE ADD PUSH2 0x22B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x451 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x460 CALLDATASIZE PUSH1 0x4 PUSH2 0x36B9 JUMP JUMPDEST PUSH2 0xD7E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x470 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x310 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xE04 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x32 SLOAD PUSH2 0x244 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4CA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0xE34 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4DE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x4ED CALLDATASIZE PUSH1 0x4 PUSH2 0x36D4 JUMP JUMPDEST PUSH2 0xF2B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x50C CALLDATASIZE PUSH1 0x4 PUSH2 0x36EB JUMP JUMPDEST PUSH2 0xF91 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x51C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x52B CALLDATASIZE PUSH1 0x4 PUSH2 0x370B JUMP JUMPDEST PUSH2 0x10F4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x310 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x558 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x567 CALLDATASIZE PUSH1 0x4 PUSH2 0x36D4 JUMP JUMPDEST PUSH2 0x1208 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x577 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x59C PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x22B SWAP2 SWAP1 PUSH2 0x372E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x5C3 CALLDATASIZE PUSH1 0x4 PUSH2 0x36D4 JUMP JUMPDEST PUSH2 0x138E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x5E2 CALLDATASIZE PUSH1 0x4 PUSH2 0x3763 JUMP JUMPDEST PUSH2 0x142E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x310 PUSH2 0x17CB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x606 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x184C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x61A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x629 CALLDATASIZE PUSH1 0x4 PUSH2 0x3798 JUMP JUMPDEST PUSH2 0x1868 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x639 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x1936 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x64D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x65C CALLDATASIZE PUSH1 0x4 PUSH2 0x36B9 JUMP JUMPDEST PUSH2 0x1A39 JUMP JUMPDEST PUSH0 PUSH2 0x66B DUP3 PUSH2 0x1BF0 JUMP JUMPDEST DUP1 PUSH2 0x686 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xF7E4B01B PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x696 PUSH2 0x17CB JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO DUP1 PUSH2 0x71E JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x38D52E0F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x6EF JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x713 SWAP2 SWAP1 PUSH2 0x37EE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x73B JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x74E PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0x863 JUMPI PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x7A4 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x7C8 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x861 JUMPI DUP6 ISZERO PUSH2 0x7E9 JUMPI PUSH2 0x7E0 DUP4 DUP3 PUSH2 0x1C25 JUMP JUMPDEST SWAP6 POP SWAP2 POP PUSH2 0x861 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x83A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x85E SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP2 POP JUMPDEST POP JUMPDEST PUSH1 0x66 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND OR SWAP1 SSTORE PUSH2 0x894 PUSH1 0x32 SLOAD DUP3 PUSH2 0x88F SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH2 0x1D68 JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE PUSH1 0x40 MLOAD DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND SWAP2 SWAP1 DUP5 AND SWAP1 PUSH32 0x243F9479BBDAF9F3395E726975293EE3724F3819F4322A018C98AFB9DE70A1E0 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x92E JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0xA0 ADD CALLDATALOAD PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x943 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH0 SWAP1 POP PUSH2 0x960 PUSH2 0x95B PUSH1 0xA0 DUP6 ADD CALLDATALOAD DUP5 PUSH2 0x3834 JUMP JUMPDEST PUSH2 0x1DCD JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x995 JUMPI PUSH2 0x97F PUSH2 0x97A CALLDATASIZE DUP6 SWAP1 SUB DUP6 ADD DUP6 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x1E20 JUMP JUMPDEST PUSH2 0x990 DUP2 DUP6 PUSH0 DUP7 PUSH1 0x40 ADD CALLDATALOAD GT PUSH2 0x1F7D JUMP JUMPDEST PUSH2 0x9A7 JUMP JUMPDEST PUSH2 0x9A7 PUSH2 0x97A CALLDATASIZE DUP6 SWAP1 SUB DUP6 ADD DUP6 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x9BA DUP5 PUSH2 0x9B5 DUP4 DUP6 PUSH2 0x3853 JUMP JUMPDEST PUSH2 0x22FC JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x65 SLOAD PUSH1 0x64 SLOAD PUSH2 0x9D1 SWAP2 SWAP1 PUSH2 0x3927 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x66 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0xA06 JUMPI PUSH1 0x66 SLOAD PUSH2 0x9D1 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x23B5 JUMP JUMPDEST POP PUSH0 NOT SWAP1 JUMP JUMPDEST PUSH1 0x66 SLOAD PUSH0 SWAP1 PUSH2 0x9D1 SWAP1 PUSH6 0x5AF3107A4000 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x394E JUMP JUMPDEST PUSH0 PUSH2 0xA40 PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xA69 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xAB5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xAD9 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAF7 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB12 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xB36 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x32 SLOAD DUP3 PUSH2 0xB47 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0xB5D JUMPI PUSH1 0x32 DUP3 SWAP1 SSTORE PUSH2 0xB5D DUP2 PUSH2 0x1D68 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xB6A PUSH2 0x2438 JUMP JUMPDEST PUSH2 0xB73 DUP3 PUSH2 0x24DE JUMP JUMPDEST PUSH2 0xB7D DUP3 DUP3 PUSH2 0x24E7 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0xB92 PUSH2 0xB8D PUSH2 0xA0C JUMP JUMPDEST PUSH2 0x25A3 JUMP JUMPDEST PUSH1 0x65 SLOAD PUSH2 0x9D1 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH0 PUSH2 0xBB8 PUSH2 0xBB3 PUSH6 0x5AF3107A4000 DUP6 PUSH2 0x3979 JUMP JUMPDEST PUSH2 0x25C4 JUMP JUMPDEST SWAP1 POP PUSH8 0xDE0B6B3A7640000 DUP4 GT ISZERO DUP1 ISZERO PUSH2 0xBE4 JUMPI POP DUP3 PUSH2 0xBE2 PUSH6 0x5AF3107A4000 PUSH2 0xFFFF DUP5 AND PUSH2 0x394E JUMP JUMPDEST EQ JUMPDEST DUP4 SWAP1 PUSH2 0xC0F JUMPI PUSH1 0x40 MLOAD PUSH4 0x46C20AB7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC06 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH0 PUSH2 0xC1A DUP5 PUSH2 0x25A3 JUMP JUMPDEST SWAP1 POP DUP3 ISZERO DUP1 ISZERO PUSH2 0xC2B JUMPI POP DUP1 PUSH1 0x65 SLOAD SLT JUMPDEST ISZERO PUSH2 0xC67 JUMPI PUSH1 0x65 SLOAD PUSH2 0xC3C SWAP1 PUSH2 0x3998 JUMP JUMPDEST PUSH2 0xC45 DUP3 PUSH2 0x3998 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x287223F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x65 SLOAD SLT ISZERO PUSH2 0xCC6 JUMPI DUP2 PUSH1 0x65 SLOAD PUSH2 0xC7F SWAP1 PUSH2 0x3998 JUMP JUMPDEST PUSH2 0xC89 SWAP2 SWAP1 PUSH2 0x3927 JUMP JUMPDEST PUSH1 0x65 DUP4 SWAP1 SSTORE SWAP1 POP PUSH2 0xCC6 DUP2 ADDRESS PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO PUSH2 0x1F7D JUMP JUMPDEST PUSH1 0x66 SLOAD PUSH32 0x5B2441044BD7B1320018E9CF93F7A9A26D14DB096298500121B8370AFF51133D SWAP1 PUSH2 0xD07 SWAP1 PUSH6 0x5AF3107A4000 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x394E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP9 SWAP1 MSTORE DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP PUSH1 0x66 DUP1 SLOAD PUSH2 0xFFFF SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH2 0xFFFF PUSH1 0xE0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD54 PUSH2 0x25F6 JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x3B3C PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x65 SLOAD SLT ISZERO PUSH2 0xD77 JUMPI POP PUSH0 SWAP1 JUMP JUMPDEST POP PUSH1 0x65 SLOAD SWAP1 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xDC7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xA0 ADD CALLDATALOAD PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xDDC SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0xDEF SWAP1 POP PUSH1 0xA0 DUP3 ADD CALLDATALOAD PUSH2 0x263F JUMP JUMPDEST PUSH2 0xE01 PUSH2 0x97A CALLDATASIZE DUP4 SWAP1 SUB DUP4 ADD DUP4 PUSH2 0x387F JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x66 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0xA06 JUMPI PUSH1 0x66 SLOAD PUSH2 0x9D1 SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x23B5 JUMP JUMPDEST PUSH0 PUSH2 0xE3D PUSH2 0x2658 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0xE64 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0xE80 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xE8E JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xEAC JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0xED6 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0xEDE PUSH2 0x2680 JUMP JUMPDEST DUP4 ISZERO PUSH2 0xF24 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH2 0xF34 DUP2 PUSH2 0x263F JUMP JUMPDEST PUSH2 0xF53 CALLER ADDRESS DUP4 PUSH2 0xF42 PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x2698 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE PUSH32 0xD60D524F1CAE273480BB0A4DDFB992B6AC0B61C8E12FFBE2E4E31463F9E90199 SWAP2 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH0 NOT DUP3 EQ PUSH2 0x1043 JUMPI PUSH32 0x1366686786A1D0CDE83E2E2241A477FCF29662506A51F052F72E47B15729BF0B PUSH2 0xFC2 PUSH2 0x9D6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP6 SWAP1 MSTORE PUSH0 SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0xFE9 DUP3 PUSH2 0x26CE JUMP JUMPDEST PUSH1 0x66 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xA0 SHL NOT AND PUSH1 0x1 PUSH1 0xA0 SHL PUSH4 0xFFFFFFFF SWAP4 DUP5 AND DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP2 DUP3 SWAP1 SSTORE DUP5 SWAP3 PUSH2 0x101E SWAP3 SWAP2 SWAP1 SWAP2 DIV AND PUSH2 0x23B5 JUMP JUMPDEST EQ DUP3 SWAP1 PUSH2 0x1041 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A8FD66F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC06 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP JUMPDEST PUSH0 NOT DUP2 EQ PUSH2 0xB7D JUMPI PUSH32 0x1366686786A1D0CDE83E2E2241A477FCF29662506A51F052F72E47B15729BF0B PUSH2 0x1074 PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP5 SWAP1 MSTORE PUSH1 0x1 SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0x109C DUP2 PUSH2 0x26CE JUMP JUMPDEST PUSH1 0x66 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xC0 SHL NOT AND PUSH1 0x1 PUSH1 0xC0 SHL PUSH4 0xFFFFFFFF SWAP4 DUP5 AND DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP2 DUP3 SWAP1 SSTORE DUP4 SWAP3 PUSH2 0x10D1 SWAP3 SWAP2 SWAP1 SWAP2 DIV AND PUSH2 0x23B5 JUMP JUMPDEST EQ DUP2 SWAP1 PUSH2 0xB5D JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A8FD66F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC06 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1129 JUMPI PUSH1 0x40 MLOAD PUSH4 0x8EABA6F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST POP PUSH0 PUSH2 0x113D PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1153 JUMPI PUSH2 0x1153 PUSH2 0xA2D JUMP JUMPDEST PUSH0 NOT DUP4 SUB PUSH2 0x1175 JUMPI PUSH0 PUSH1 0x65 SLOAD SGT PUSH2 0x116B JUMPI POP PUSH0 PUSH2 0x686 JUMP JUMPDEST PUSH1 0x65 SLOAD SWAP3 POP PUSH2 0x11A7 JUMP JUMPDEST PUSH1 0x65 SLOAD DUP4 SWAP1 DUP1 DUP3 SGT ISZERO PUSH2 0x11A4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x241B5227 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x65 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x11B8 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x11C8 SWAP1 POP DUP3 DUP5 PUSH2 0x22FC JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP6 SWAP1 MSTORE PUSH32 0xD60D524F1CAE273480BB0A4DDFB992B6AC0B61C8E12FFBE2E4E31463F9E90199 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x121B PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1244 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x124D PUSH2 0x2753 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x125F JUMPI DUP1 SWAP3 POP PUSH2 0x128E JUMP JUMPDEST DUP3 DUP2 DUP1 DUP3 GT ISZERO PUSH2 0x128B JUMPI PUSH1 0x40 MLOAD PUSH4 0x531309FB PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x129F SWAP2 SWAP1 PUSH2 0x39B2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x12AD SWAP1 POP PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP7 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x12FB JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x131F SWAP2 SWAP1 PUSH2 0x39C5 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x136A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9BA SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH0 PUSH2 0x1397 PUSH2 0xA2D JUMP JUMPDEST PUSH0 PUSH2 0x13AA PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x141D JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13F6 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x141A SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP3 POP JUMPDEST PUSH2 0x1427 DUP2 DUP5 PUSH2 0x27C4 JUMP JUMPDEST POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x1477 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1489 PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP4 ADD CALLDATALOAD PUSH2 0x3853 JUMP JUMPDEST PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1499 SWAP2 SWAP1 PUSH2 0x39B2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD ISZERO PUSH2 0x1587 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xA227DC41 DUP4 CALLDATALOAD PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x14F5 PUSH2 0x14F0 CALLDATASIZE DUP9 SWAP1 SUB DUP9 ADD DUP9 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x2877 JUMP JUMPDEST PUSH2 0x150C PUSH2 0x1507 CALLDATASIZE DUP10 SWAP1 SUB DUP10 ADD DUP10 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x28BF JUMP JUMPDEST PUSH2 0x151E PUSH2 0x1507 CALLDATASIZE DUP10 SWAP1 SUB DUP10 ADD DUP10 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x1528 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1570 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1582 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x40 DUP2 ADD CALLDATALOAD ISZERO PUSH2 0x1633 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x4FFCDA8C DUP3 CALLDATALOAD PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x15D9 PUSH2 0x14F0 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x24 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x161C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x162E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP3 ADD CALLDATALOAD ISZERO PUSH2 0x171C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xA227DC41 DUP4 CALLDATALOAD PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x168A PUSH2 0x1685 CALLDATASIZE DUP9 SWAP1 SUB DUP9 ADD DUP9 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x2902 JUMP JUMPDEST PUSH2 0x16A1 PUSH2 0x169C CALLDATASIZE DUP10 SWAP1 SUB DUP10 ADD DUP10 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x2943 JUMP JUMPDEST PUSH2 0x16B3 PUSH2 0x169C CALLDATASIZE DUP10 SWAP1 SUB DUP10 ADD DUP10 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x16BD SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1705 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1717 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP2 ADD CALLDATALOAD ISZERO PUSH2 0xB7D JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x4FFCDA8C DUP3 CALLDATALOAD PUSH1 0x60 DUP5 ADD CALLDATALOAD PUSH2 0x176E PUSH2 0x1685 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x24 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x17B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x17C3 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1828 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9D1 SWAP2 SWAP1 PUSH2 0x37EE JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x65 SLOAD SLT ISZERO PUSH2 0x1863 JUMPI PUSH1 0x65 SLOAD PUSH2 0x9D1 SWAP1 PUSH2 0x3998 JUMP JUMPDEST POP PUSH0 SWAP1 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x18B1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 PUSH1 0xA0 ADD CALLDATALOAD PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x18C6 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH0 SWAP1 POP PUSH2 0x18DE PUSH2 0x95B PUSH1 0xA0 DUP9 ADD CALLDATALOAD DUP8 PUSH2 0x3834 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x1916 JUMPI PUSH2 0x1900 PUSH2 0x18F8 CALLDATASIZE DUP9 SWAP1 SUB DUP9 ADD DUP9 PUSH2 0x387F JUMP JUMPDEST DUP6 DUP6 DUP6 PUSH2 0x297C JUMP JUMPDEST PUSH2 0x1911 DUP2 DUP4 PUSH0 DUP10 PUSH1 0x40 ADD CALLDATALOAD GT PUSH2 0x1F7D JUMP JUMPDEST PUSH2 0x1928 JUMP JUMPDEST PUSH2 0x1928 PUSH2 0x18F8 CALLDATASIZE DUP9 SWAP1 SUB DUP9 ADD DUP9 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x17C3 DUP3 PUSH2 0x9B5 DUP4 DUP9 PUSH2 0x3853 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x194A PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1960 JUMPI PUSH2 0x1960 PUSH2 0xA2D JUMP JUMPDEST PUSH2 0x1968 PUSH2 0xB81 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x19A1 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x19D3 JUMPI PUSH2 0x19D0 DUP2 PUSH32 0x0 PUSH2 0x2B49 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x1A0A JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0xD64 JUMPI PUSH2 0x9D1 DUP2 PUSH32 0x0 PUSH2 0x2B49 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x1A82 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xA0 ADD CALLDATALOAD PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1A97 SWAP2 SWAP1 PUSH2 0x39B2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP2 ADD CALLDATALOAD ISZERO PUSH2 0x1B48 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x4FFCDA8C DUP3 CALLDATALOAD PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x1AEE PUSH2 0x14F0 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x24 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1B31 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1B43 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP2 ADD CALLDATALOAD ISZERO PUSH2 0xE01 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x4FFCDA8C DUP3 CALLDATALOAD PUSH1 0x60 DUP5 ADD CALLDATALOAD PUSH2 0x1B9A PUSH2 0x1685 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x24 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1BDE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xF24 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x686 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6C82BBBF PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xD905777E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1C89 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1C86 SWAP2 DUP2 ADD SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x1 JUMPDEST ISZERO PUSH2 0x1CA0 JUMPI DUP4 DUP2 LT ISZERO PUSH2 0x1C9E JUMPI PUSH1 0x1 SWAP2 POP DUP1 SWAP4 POP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1D0F JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1D0C SWAP2 DUP2 ADD SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1D5E JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x25BCE30047860A48C9D8830DBF31873BE5434F4D28F14A5808A4EA8E35D08296 DUP5 PUSH1 0x40 MLOAD PUSH2 0x1D4E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 PUSH2 0x1D61 JUMP JUMPDEST SWAP2 POP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SLT PUSH2 0x1D7D JUMPI PUSH2 0x1D78 DUP2 PUSH2 0x263F JUMP JUMPDEST PUSH2 0x1DC4 JUMP JUMPDEST PUSH0 PUSH2 0x1D8A PUSH2 0x95B DUP4 PUSH2 0x3998 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x1D97 DUP4 PUSH2 0x3998 JUMP JUMPDEST DUP3 SWAP1 SWAP2 PUSH2 0x1DC0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFC2324B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP POP POP JUMPDEST PUSH2 0xE01 DUP2 PUSH2 0x2D5E JUMP JUMPDEST PUSH0 PUSH0 DUP3 PUSH1 0x65 SLOAD PUSH2 0x1DDD SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1DEB PUSH2 0xB8D PUSH2 0xA0C JUMP JUMPDEST SWAP1 POP DUP1 DUP3 SLT PUSH2 0x1DFF JUMPI POP PUSH1 0x65 SSTORE POP PUSH0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x65 DUP2 SWAP1 SSTORE DUP1 PUSH2 0x1E0E DUP4 PUSH2 0x3998 JUMP JUMPDEST PUSH2 0x1E18 SWAP2 SWAP1 PUSH2 0x3927 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD ISZERO PUSH2 0x1EE3 JUMPI PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xA227DC41 DUP3 PUSH0 ADD MLOAD DUP4 PUSH1 0x40 ADD MLOAD PUSH2 0x1E6B DUP6 PUSH2 0x2877 JUMP JUMPDEST PUSH2 0x1E74 DUP7 PUSH2 0x28BF JUMP JUMPDEST DUP7 PUSH2 0x100 ADD MLOAD PUSH2 0x1E84 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1ECC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1EDE JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP2 ADD MLOAD ISZERO PUSH2 0xE01 JUMPI PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xA227DC41 DUP3 PUSH0 ADD MLOAD DUP4 PUSH1 0x60 ADD MLOAD PUSH2 0x1F2E DUP6 PUSH2 0x2902 JUMP JUMPDEST PUSH2 0x1F37 DUP7 PUSH2 0x2943 JUMP JUMPDEST DUP7 PUSH2 0x120 ADD MLOAD PUSH2 0x1F47 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1BC7 JUMP JUMPDEST DUP3 DUP2 ISZERO PUSH2 0x21A1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x33481FC9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x33481FC9 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1FE8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x200C SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP PUSH2 0x2016 PUSH2 0x9D6 JUMP JUMPDEST PUSH2 0x2020 DUP7 DUP4 PUSH2 0x39B2 JUMP JUMPDEST GT PUSH2 0x20BC JUMPI PUSH1 0x40 MLOAD PUSH4 0x30F7E76B PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH32 0x0 AND SWAP1 PUSH4 0xC3DF9DAC SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2091 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x20B5 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP2 POP PUSH2 0x219F JUMP JUMPDEST PUSH2 0x20C4 PUSH2 0x9D6 JUMP JUMPDEST DUP2 LT ISZERO PUSH2 0x219F JUMPI PUSH0 PUSH2 0x20D4 PUSH2 0x9D6 JUMP JUMPDEST PUSH2 0x20DE DUP8 DUP5 PUSH2 0x39B2 JUMP JUMPDEST PUSH2 0x20E8 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xC3DF9DAC PUSH2 0x2123 DUP4 DUP10 PUSH2 0x3853 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x216D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2191 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH2 0x219B SWAP1 DUP3 PUSH2 0x39B2 JUMP JUMPDEST SWAP3 POP POP JUMPDEST POP JUMPDEST DUP1 ISZERO PUSH2 0x9BA JUMPI PUSH2 0x21AF PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x33481FC9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE DUP3 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x33481FC9 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2213 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2237 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH2 0x2241 SWAP2 SWAP1 PUSH2 0x39B2 JUMP JUMPDEST GT PUSH2 0x22D9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x30F7E76B PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH32 0x0 AND SWAP1 PUSH4 0xC3DF9DAC SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x22B2 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x22D6 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP1 DUP1 ISZERO PUSH2 0xF24 JUMPI PUSH1 0x40 MLOAD PUSH4 0x93F6643 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC06 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x2330 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6427F273 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST POP DUP1 PUSH0 SUB PUSH2 0x233C JUMPI POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2345 PUSH2 0x2753 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x2388 JUMPI PUSH0 PUSH2 0x2362 PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x2386 JUMPI PUSH2 0x2386 DUP2 PUSH2 0x2381 DUP5 DUP7 PUSH2 0x3853 JUMP JUMPDEST PUSH2 0x27C4 JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ADDRESS EQ PUSH2 0xB5D JUMPI PUSH2 0xB5D DUP4 DUP4 PUSH2 0x23A5 PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x2D8E JUMP JUMPDEST PUSH0 PUSH2 0x23BE PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x23F9 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x241D SWAP2 SWAP1 PUSH2 0x39E0 JUMP JUMPDEST PUSH2 0x2428 SWAP1 PUSH1 0xA PUSH2 0x3AE3 JUMP JUMPDEST PUSH2 0x686 SWAP1 PUSH4 0xFFFFFFFF DUP5 AND PUSH2 0x394E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x24BE JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x24B2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x3B3C PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x24DC JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0xE01 DUP2 PUSH2 0x2DC3 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2541 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x253E SWAP2 DUP2 ADD SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2569 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x3B3C PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x2599 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH2 0xB5D DUP4 DUP4 PUSH2 0x2FAD JUMP JUMPDEST PUSH1 0x64 SLOAD PUSH0 SWAP1 PUSH2 0x25BB SWAP1 DUP4 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3002 JUMP JUMPDEST PUSH2 0x686 SWAP1 PUSH2 0x3998 JUMP JUMPDEST PUSH0 PUSH2 0xFFFF DUP3 GT ISZERO PUSH2 0x25F2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x10 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x24DC JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x65 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x2650 SWAP2 SWAP1 PUSH2 0x3927 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x686 JUMP JUMPDEST PUSH2 0x2688 PUSH2 0x30B3 JUMP JUMPDEST PUSH2 0x2690 PUSH2 0x30D8 JUMP JUMPDEST PUSH2 0x24DC PUSH2 0x30E8 JUMP JUMPDEST PUSH2 0x26A6 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x312E JUMP JUMPDEST PUSH2 0x9BA JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 PUSH2 0x686 PUSH2 0x26DA PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2715 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2739 SWAP2 SWAP1 PUSH2 0x39E0 JUMP JUMPDEST PUSH2 0x2744 SWAP1 PUSH1 0xA PUSH2 0x3AE3 JUMP JUMPDEST PUSH2 0x274E SWAP1 DUP5 PUSH2 0x3979 JUMP JUMPDEST PUSH2 0x319B JUMP JUMPDEST PUSH0 PUSH2 0x275C PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x27A0 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9D1 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2815 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2839 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST POP PUSH1 0x32 SLOAD DUP2 GT ISZERO PUSH2 0x285D JUMPI PUSH2 0x2855 PUSH1 0x32 SLOAD DUP3 PUSH2 0x88F SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE POP POP JUMP JUMPDEST DUP1 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x286E SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x686 PUSH8 0xDE0B6B3A7640000 PUSH2 0x288D DUP5 PUSH2 0x31CB JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP5 PUSH1 0x40 ADD MLOAD PUSH2 0x28A3 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH4 0x1E13380 DUP6 PUSH2 0x100 ADD MLOAD PUSH2 0x28B8 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x3002 JUMP JUMPDEST PUSH0 PUSH2 0x28C9 DUP3 PUSH2 0x31CB JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x28E8 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST DUP4 PUSH2 0x100 ADD MLOAD PUSH2 0x28F8 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH2 0x686 SWAP2 SWAP1 PUSH2 0x3979 JUMP JUMPDEST PUSH0 PUSH2 0x686 PUSH8 0xDE0B6B3A7640000 PUSH2 0x2918 DUP5 PUSH2 0x31CB JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP5 PUSH1 0x60 ADD MLOAD PUSH2 0x292E SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH4 0x1E13380 DUP6 PUSH2 0x120 ADD MLOAD PUSH2 0x28B8 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH0 PUSH2 0x294D DUP3 PUSH2 0x31CB JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x296C SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST DUP4 PUSH2 0x120 ADD MLOAD PUSH2 0x28F8 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH1 0x40 DUP5 ADD MLOAD ISZERO PUSH2 0x2A60 JUMPI PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3AD2820B DUP6 PUSH0 ADD MLOAD DUP7 PUSH1 0x40 ADD MLOAD PUSH2 0x29C7 DUP9 PUSH2 0x2877 JUMP JUMPDEST PUSH2 0x29D0 DUP10 PUSH2 0x28BF JUMP JUMPDEST DUP9 DUP11 PUSH2 0x100 ADD MLOAD PUSH2 0x29E1 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST PUSH2 0x29EB SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xC4 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2A49 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2A5B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP5 ADD MLOAD ISZERO PUSH2 0x9BA JUMPI PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3AD2820B DUP6 PUSH0 ADD MLOAD DUP7 PUSH1 0x60 ADD MLOAD PUSH2 0x2AAB DUP9 PUSH2 0x2902 JUMP JUMPDEST PUSH2 0x2AB4 DUP10 PUSH2 0x2943 JUMP JUMPDEST DUP8 DUP11 PUSH2 0x120 ADD MLOAD PUSH2 0x2AC5 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST PUSH2 0x2ACF SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xC4 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2B2D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2B3F JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x33481FC9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x33481FC9 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2B8F JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2BB3 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP DUP1 PUSH0 SUB PUSH2 0x2BC5 JUMPI DUP4 SWAP2 POP POP PUSH2 0x686 JUMP JUMPDEST PUSH0 PUSH2 0x2BD0 DUP6 DUP4 PUSH2 0x31E2 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x65 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x2BE3 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x2BF3 SWAP1 POP ADDRESS DUP3 PUSH2 0x22FC JUMP JUMPDEST DUP1 PUSH2 0x2BFC PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6EB1769F PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2C48 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2C6C SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST LT ISZERO PUSH2 0x2CEE JUMPI PUSH2 0x2C7A PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2CC8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2CEC SWAP2 SWAP1 PUSH2 0x39C5 JUMP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x918344D3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x918344D3 SWAP1 PUSH1 0x44 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2D33 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2D45 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP DUP1 DUP6 PUSH2 0x2D55 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x731C439C5BAE15BE1344EEC709967E046B4F7D3F7E37ABEFFC5247F448FA18BF SWAP1 PUSH1 0x20 ADD PUSH2 0xF86 JUMP JUMPDEST PUSH2 0x2D9B DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x31F1 JUMP JUMPDEST PUSH2 0xB5D JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH2 0x2DCC DUP2 PUSH2 0x3253 JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH0 PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x5E445859 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2E0D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2E31 SWAP2 SWAP1 PUSH2 0x3AF1 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x2E9C JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO JUMPDEST PUSH32 0x0 DUP4 SWAP1 SWAP2 PUSH2 0x2EF0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x13AFEA89 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x2F59 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO JUMPDEST PUSH32 0x0 DUP3 SWAP1 SWAP2 PUSH2 0x17C3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x13AFEA89 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH2 0x2FB6 DUP3 PUSH2 0x3304 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x2FFA JUMPI PUSH2 0xB5D DUP3 DUP3 PUSH2 0x3367 JUMP JUMPDEST PUSH2 0xB7D PUSH2 0x3407 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x300F DUP7 DUP7 PUSH2 0x3426 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x3033 JUMPI DUP4 DUP2 DUP2 PUSH2 0x3029 JUMPI PUSH2 0x3029 PUSH2 0x3965 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x30AC JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x304A JUMPI PUSH2 0x304A PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x3442 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x30BB PUSH2 0x3453 JUMP JUMPDEST PUSH2 0x24DC JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x30E0 PUSH2 0x30B3 JUMP JUMPDEST PUSH2 0x24DC PUSH2 0x346C JUMP JUMPDEST PUSH2 0x30F0 PUSH2 0x30B3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x2710 PUSH1 0x60 SWAP1 SWAP2 ADD MSTORE PUSH1 0x66 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF0 SHL SUB NOT AND PUSH2 0x271 PUSH1 0xE4 SHL OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x318A JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x317E JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP3 GT ISZERO PUSH2 0x25F2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x140 ADD MLOAD DUP3 PUSH2 0x160 ADD MLOAD PUSH2 0x686 SWAP2 SWAP1 PUSH2 0x3B1E JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0x30AC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x3247 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x323B JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x32B9 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x32DD SWAP2 SWAP1 PUSH2 0x37EE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE01 JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x3339 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x3B3C PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x3374 DUP5 DUP5 PUSH2 0x3474 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x3395 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x3395 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x33AA JUMPI PUSH2 0x33A2 PUSH2 0x3487 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x686 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x33D4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x33E7 JUMPI PUSH2 0x33E2 PUSH2 0x34A0 JUMP JUMPDEST PUSH2 0x3400 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x24DC JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 PUSH2 0x345C PUSH2 0x2658 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x24DC PUSH2 0x30B3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x34BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x30AC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xE01 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xE01 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3504 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x350F DUP2 PUSH2 0x34D2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x351F DUP2 PUSH2 0x34E6 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x353B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1C0 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3554 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x355F DUP2 PUSH2 0x34D2 JUMP JUMPDEST SWAP3 POP PUSH2 0x356E DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x352A JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH2 0x1A0 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x35B8 JUMPI PUSH2 0x35B8 PUSH2 0x3580 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x35E7 JUMPI PUSH2 0x35E7 PUSH2 0x3580 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3600 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x360B DUP2 PUSH2 0x34D2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3626 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x3636 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3650 JUMPI PUSH2 0x3650 PUSH2 0x3580 JUMP JUMPDEST PUSH2 0x3663 PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x35BE JUMP JUMPDEST DUP2 DUP2 MSTORE DUP7 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x3677 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP4 POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x36A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x351F DUP2 PUSH2 0x34E6 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x36CA JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x30AC DUP4 DUP4 PUSH2 0x352A JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x36E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x36FC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP1 CALLDATALOAD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x371C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x351F DUP2 PUSH2 0x34D2 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x300 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3775 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x377F DUP5 DUP5 PUSH2 0x352A JUMP JUMPDEST SWAP2 POP PUSH2 0x378F DUP5 PUSH2 0x180 DUP6 ADD PUSH2 0x352A JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x200 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x37AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x37B7 DUP8 DUP8 PUSH2 0x352A JUMP JUMPDEST SWAP5 POP PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP4 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH2 0x1C0 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH2 0x1E0 DUP7 ADD CALLDATALOAD PUSH2 0x37E0 DUP2 PUSH2 0x34D2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x37FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x30AC DUP2 PUSH2 0x34D2 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3819 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB PUSH0 DUP4 SLT DUP1 ISZERO DUP4 DUP4 SGT AND DUP4 DUP4 SLT DUP3 AND OR ISZERO PUSH2 0x3400 JUMPI PUSH2 0x3400 PUSH2 0x3820 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x3820 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x387A JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT DUP1 ISZERO PUSH2 0x3891 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x389A PUSH2 0x3594 JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x3907 PUSH2 0x140 DUP5 ADD PUSH2 0x3866 JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x391A PUSH2 0x160 DUP5 ADD PUSH2 0x3866 JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x3946 JUMPI PUSH2 0x3946 PUSH2 0x3820 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x3820 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH2 0x3993 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x39AC JUMPI PUSH2 0x39AC PUSH2 0x3820 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x3820 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x39D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x30AC DUP2 PUSH2 0x34E6 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x39F0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x30AC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x3A3B JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x3A1F JUMPI PUSH2 0x3A1F PUSH2 0x3820 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x3A2D JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x3A04 JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x3A51 JUMPI POP PUSH1 0x1 PUSH2 0x686 JUMP JUMPDEST DUP2 PUSH2 0x3A5D JUMPI POP PUSH0 PUSH2 0x686 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x3A73 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x3A7D JUMPI PUSH2 0x3A99 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x686 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x3A8E JUMPI PUSH2 0x3A8E PUSH2 0x3820 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x686 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x3ABC JUMPI POP DUP2 DUP2 EXP PUSH2 0x686 JUMP JUMPDEST PUSH2 0x3AC8 PUSH0 NOT DUP5 DUP5 PUSH2 0x3A00 JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x3ADB JUMPI PUSH2 0x3ADB PUSH2 0x3820 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x30AC PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x3A43 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3B02 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x3B0D DUP2 PUSH2 0x34D2 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x351F DUP2 PUSH2 0x34D2 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x3820 JUMP INVALID CALLDATASIZE ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCA2646970667358221220B2 0xD4 0xB2 GAS 0xA7 DUP6 SLOAD 0x1E 0x2D SWAPN 0x1 0xAF SELFDESTRUCT DUP5 DUP15 0xB2 SLT 0xCF CODESIZE SGT 0xD9 SWAP13 0xD4 CODECOPY 0xCB CALLER TSTORE MULMOD CALLDATASIZE 0xBF REVERT CALLDATASIZE PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"1321:28111:74:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8968:198;;;;;;;;;;-1:-1:-1;8968:198:74;;;;;:::i;:::-;;:::i;:::-;;;470:14:101;;463:22;445:41;;433:2;418:18;8968:198:74;;;;;;;;11503:76;;;;;;;;;;-1:-1:-1;11566:8:74;;11503:76;;;641:25:101;;;629:2;614:18;11503:76:74;497:175:101;6826:990:75;;;;;;;;;;-1:-1:-1;6826:990:75;;;;;:::i;:::-;;:::i;:::-;;10529:99:74;;;;;;;;;;-1:-1:-1;10604:19:74;;10529:99;;25078:524;;;;;;;;;;-1:-1:-1;25078:524:74;;;;;:::i;:::-;;:::i;10231:130::-;;;;;;;;;;;;;:::i;13985:148::-;;;;;;;;;;;;;:::i;13732:143::-;;;;;;;;;;;;;:::i;2366:94:73:-;;;;;;;;;;-1:-1:-1;2444:11:73;2366:94;;;-1:-1:-1;;;;;2408:32:101;;;2390:51;;2378:2;2363:18;2366:94:73;2223:224:101;11927:366:75;;;;;;;;;;;;;:::i;3911:214:33:-;;;;;;:::i;:::-;;:::i;11682:236:74:-;;;;;;;;;;;;;:::i;15309:817::-;;;;;;;;;;-1:-1:-1;15309:817:74;;;;;:::i;:::-;;:::i;3466:126:33:-;;;;;;;;;;;;;:::i;10782:114:74:-;;;;;;;;;;;;;:::i;12016:90::-;;;;;;;;;;-1:-1:-1;12091:10:74;12016:90;;12110:108;;;;;;;;;;-1:-1:-1;12110:108:74;;;-1:-1:-1;;;;;12190:10:74;5035:32:101;;5017:51;;12202:10:74;5104:32:101;5099:2;5084:18;;5077:60;4990:18;12110:108:74;4809:334:101;28938:213:74;;;;;;;;;;-1:-1:-1;28938:213:74;;;;;:::i;:::-;;:::i;11922:90::-;;;;;;;;;;-1:-1:-1;11997:10:74;11922:90;;14243:148;;;;;;;;;;;;;:::i;5400:81:75:-;;;;;;;;;;-1:-1:-1;5467:9:75;;5400:81;;7767:76:74;;;;;;;;;;;;;:::i;20380:195::-;;;;;;;;;;-1:-1:-1;20380:195:74;;;;;:::i;:::-;;:::i;17014:596::-;;;;;;;;;;-1:-1:-1;17014:596:74;;;;;:::i;:::-;;:::i;21621:577::-;;;;;;;;;;-1:-1:-1;21621:577:74;;;;;:::i;:::-;;:::i;9196:98::-;;;;;;;;;;-1:-1:-1;9271:7:74;:18;-1:-1:-1;;;;;9271:18:74;9196:98;;11246:445:75;;;;;;;;;;-1:-1:-1;11246:445:75;;;;;:::i;:::-;;:::i;1732:58:33:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1732:58:33;;;;;;;;;;;;:::i;10717:268:75:-;;;;;;;;;;-1:-1:-1;10717:268:75;;;;;:::i;:::-;;:::i;22611:1691:74:-;;;;;;;;;;-1:-1:-1;22611:1691:74;;;;;:::i;:::-;;:::i;2464:97:73:-;;;;;;;;;;;;;:::i;11098:116:74:-;;;;;;;;;;;;;:::i;24341:698::-;;;;;;;;;;-1:-1:-1;24341:698:74;;;;;:::i;:::-;;:::i;27340:399::-;;;;;;;;;;;;;:::i;22237:335::-;;;;;;;;;;-1:-1:-1;22237:335:74;;;;;:::i;:::-;;:::i;8968:198::-;9053:4;9072:36;9096:11;9072:23;:36::i;:::-;:89;;;-1:-1:-1;;;;;;;9112:49:74;;-1:-1:-1;;;9112:49:74;9072:89;9065:96;8968:198;-1:-1:-1;;8968:198:74:o;6826:990:75:-;6900:11;6917:20;6940:10;:8;:10::i;:::-;6917:33;-1:-1:-1;;;;;;6964:36:75;;;;:79;;;7037:5;-1:-1:-1;;;;;7004:39:75;:13;-1:-1:-1;;;;;7004:19:75;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;7004:39:75;;6964:79;6956:109;;;;-1:-1:-1;;;6956:109:75;;;;;;;;;;;;7071:14;7088:12;9271:7:74;:18;-1:-1:-1;;;;;9271:18:74;;9196:98;7088:12:75;7071:29;-1:-1:-1;7106:18:75;-1:-1:-1;;;;;7135:28:75;;;7131:459;;7192:30;;-1:-1:-1;;;7192:30:75;;7216:4;7192:30;;;2390:51:101;7173:16:75;;-1:-1:-1;;;;;7192:15:75;;;;;2363:18:101;;7192:30:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7173:49;-1:-1:-1;7234:13:75;;7230:354;;7263:5;7259:317;;;7381:33;7398:5;7405:8;7381:16;:33::i;:::-;7358:56;-1:-1:-1;7358:56:75;-1:-1:-1;7259:317:75;;;7513:52;;-1:-1:-1;;;7513:52:75;;;;;9252:25:101;;;7544:4:75;9293:18:101;;;9286:60;;;9362:18;;;9355:60;-1:-1:-1;;;;;7513:12:75;;;;;9225:18:101;;7513:52:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7500:65;;7259:317;7165:425;7131:459;9388:7:74;:26;;-1:-1:-1;;;;;;9388:26:74;-1:-1:-1;;;;;9388:26:74;;;;;7680:54:75;7723:9;;7702:10;7695:38;;;;:::i;:::-;7680:14;:54::i;:::-;7752:1;7740:9;:13;7764:47;;470:14:101;;463:22;445:41;;-1:-1:-1;;;;;7764:47:75;;;;;;;;;;433:2:101;418:18;7764:47:75;;;;;;;6894:922;;;;6826:990;;:::o;25078:524:74:-;1373:10:73;-1:-1:-1;;;;;1395:11:73;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:73;;;;;;;;;;;;25263:6:74::1;:18;;;25240:19;;:41;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;25287:21:74::1;::::0;-1:-1:-1;25311:61:74::1;25328:43;25352:18;::::0;::::1;;25335:6:::0;25328:43:::1;:::i;:::-;25311:16;:61::i;:::-;25287:85:::0;-1:-1:-1;25382:18:74;;25378:165:::1;;25410:18;;;::::0;;::::1;::::0;::::1;25421:6:::0;25410:18:::1;:::i;:::-;:10;:18::i;:::-;25436:61;25451:13;25466:12;25495:1;25480:6;:12;;;:16;25436:14;:61::i;:::-;25378:165;;;25518:18;;;::::0;;::::1;::::0;::::1;25529:6:::0;25518:18:::1;:::i;:::-;25548:49;25560:12:::0;25574:22:::1;25583:13:::0;25574:6;:22:::1;:::i;:::-;25548:11;:49::i;:::-;25234:368;25078:524:::0;;;:::o;10231:130::-;10287:7;10347:8;;10324:19;;10317:38;;;;:::i;:::-;10302:54;;10231:130;:::o;13985:148::-;14051:7;:19;14029:7;;-1:-1:-1;;;14051:19:74;;;;:24;:77;;14108:7;:19;14098:30;;-1:-1:-1;;;14108:19:74;;;;14098:9;:30::i;14051:77::-;-1:-1:-1;;;14078:17:74;13985:148::o;13732:143::-;13807:7;:20;13777:7;;13799:51;;1600:4;;-1:-1:-1;;;13807:20:74;;;;13799:51;:::i;11927:366:75:-;11966:11;11980:12;9271:7:74;:18;-1:-1:-1;;;;;9271:18:74;;9196:98;11980:12:75;11966:26;-1:-1:-1;;;;;;12006:25:75;;11998:55;;;;-1:-1:-1;;;11998:55:75;;;;;;;;;;;;12103:27;;-1:-1:-1;;;12103:27:75;;12124:4;12103:27;;;2390:51:101;12059:22:75;;-1:-1:-1;;;;;12084:18:75;;;;;;;12103:12;;2363:18:101;;12103:27:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12084:47;;;;;;;;;;;;;641:25:101;;629:2;614:18;;497:175;12084:47:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12059:72;;12137:13;12185:9;;12160:14;12153:42;;;;:::i;:::-;12137:58;-1:-1:-1;12205:11:75;;12201:88;;12226:9;:26;;;12260:22;12275:6;12260:14;:22::i;:::-;11960:333;;;11927:366::o;3911:214:33:-;2568:13;:11;:13::i;:::-;4026:36:::1;4044:17;4026;:36::i;:::-;4072:46;4094:17;4113:4;4072:21;:46::i;:::-;3911:214:::0;;:::o;11682:236:74:-;11729:7;11885:27;11897:14;:12;:14::i;:::-;11885:11;:27::i;:::-;11874:8;;:38;;;;:::i;15309:817::-;15384:21;15408:43;15409:30;1600:4;15409:8;:30;:::i;:::-;15408:41;:43::i;:::-;15384:67;;1544:4;15472:8;:15;;:76;;;;-1:-1:-1;15540:8:74;15491:45;1600:4;15491:23;;;:45;:::i;:::-;:57;15472:76;15576:8;15457:134;;;;;-1:-1:-1;;;15457:134:74;;;;;;641:25:101;;629:2;614:18;;497:175;15457:134:74;;;;;;;;;;15598:17;15618:21;15630:8;15618:11;:21::i;:::-;15598:41;;15650:10;15649:11;:36;;;;;15675:10;15664:8;;:21;15649:36;15645:97;;;15720:8;;15719:9;;;:::i;:::-;15730:11;15731:10;15730:11;:::i;:::-;15694:48;;-1:-1:-1;;;15694:48:74;;;;;12714:25:101;;;;12755:18;;;12748:34;12687:18;;15694:48:74;12544:244:101;15645:97:74;15749:14;15784:10;15773:8;;:21;15769:218;;;15860:10;15849:8;;15848:9;;;:::i;:::-;:22;;;;:::i;:::-;15879:8;:21;;;15831:40;-1:-1:-1;15908:72:74;15831:40;15939:4;15954:10;-1:-1:-1;;;;;15946:33:74;;;15908:14;:72::i;:::-;16017:7;:20;15997:81;;16017:42;;1600:4;;-1:-1:-1;;;16017:20:74;;;;:42;:::i;:::-;15997:81;;;12995:25:101;;;13051:2;13036:18;;13029:34;;;13079:18;;13072:34;;;12983:2;12968:18;15997:81:74;;;;;;;-1:-1:-1;;16084:7:74;:37;;;;;;-1:-1:-1;;;16084:37:74;-1:-1:-1;;;;16084:37:74;;;;;;;;;-1:-1:-1;;15309:817:74:o;3466:126:33:-;3527:7;2839:20;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;;2869:1:33::1;3466:126:::0;:::o;10782:114:74:-;10832:7;10866:1;10854:8;;:13;;:37;;-1:-1:-1;10890:1:74;;10231:130::o;10854:37::-;-1:-1:-1;10878:8:74;;;10782:114::o;28938:213::-;1373:10:73;-1:-1:-1;;;;;1395:11:73;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:73;;;;;;;;;;;;29058:6:74::1;:18;;;29035:19;;:41;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;29082:40:74::1;::::0;-1:-1:-1;29103:18:74::1;::::0;::::1;;29082:20;:40::i;:::-;29128:18;;;::::0;;::::1;::::0;::::1;29139:6:::0;29128:18:::1;:::i;:::-;28938:213:::0;:::o;14243:148::-;14309:7;:19;14287:7;;-1:-1:-1;;;14309:19:74;;;;:24;:77;;14366:7;:19;14356:30;;-1:-1:-1;;;14366:19:74;;;;14356:9;:30::i;7767:76::-;4158:30:32;4191:26;:24;:26::i;:::-;4302:15;;4158:59;;-1:-1:-1;4302:15:32;-1:-1:-1;;;4302:15:32;;;4301:16;;4348:14;;4279:19;4724:16;;:34;;;;;4744:14;4724:34;4704:54;;4768:17;4788:11;:16;;4803:1;4788:16;:50;;;;-1:-1:-1;4816:4:32;4808:25;:30;4788:50;4768:70;;4854:12;4853:13;:30;;;;;4871:12;4870:13;4853:30;4849:91;;;4906:23;;-1:-1:-1;;;4906:23:32;;;;;;;;;;;4849:91;4949:18;;-1:-1:-1;;4949:18:32;4966:1;4949:18;;;4977:67;;;;5011:22;;-1:-1:-1;;;;5011:22:32;-1:-1:-1;;;5011:22:32;;;4977:67;7814:24:74::1;:22;:24::i;:::-;5068:14:32::0;5064:101;;;5098:23;;-1:-1:-1;;;;5098:23:32;;;5140:14;;-1:-1:-1;13270:50:101;;5140:14:32;;13258:2:101;13243:18;5140:14:32;;;;;;;5064:101;4092:1079;;;;;7767:76:74:o;20380:195::-;20433:28;20454:6;20433:20;:28::i;:::-;20467:62;20495:10;20515:4;20522:6;20467:10;:8;:10::i;:::-;-1:-1:-1;;;;;20467:27:74;;:62;;:27;:62::i;:::-;20540:30;;;20557:4;13499:41:101;;13571:2;13556:18;;13549:34;;;20540:30:74;;13472:18:101;20540:30:74;;;;;;;;20380:195;:::o;17014:596::-;-1:-1:-1;;17096:10:74;:31;17092:255;;17142:50;17159:13;:11;:13::i;:::-;17142:50;;;13790:25:101;;;13846:2;13831:18;;13824:34;;;17186:5:74;13874:18:101;;;13867:50;13778:2;13763:18;17142:50:74;;;;;;;17222:27;17238:10;17222:15;:27::i;:::-;17200:7;:49;;-1:-1:-1;;;;17200:49:74;-1:-1:-1;;;17200:49:74;;;;;;;;;;;;;;17299:10;;17265:30;;17275:19;;;;;17265:9;:30::i;:::-;:44;17328:10;17257:83;;;;;-1:-1:-1;;;17257:83:74;;;;;;641:25:101;;629:2;614:18;;497:175;17257:83:74;;17092:255;-1:-1:-1;;17356:10:74;:31;17352:254;;17402:49;17419:13;:11;:13::i;:::-;17402:49;;;13790:25:101;;;13846:2;13831:18;;13824:34;;;17446:4:74;13874:18:101;;;13867:50;13778:2;13763:18;17402:49:74;;;;;;;17481:27;17497:10;17481:15;:27::i;:::-;17459:7;:49;;-1:-1:-1;;;;17459:49:74;-1:-1:-1;;;17459:49:74;;;;;;;;;;;;;;17558:10;;17524:30;;17534:19;;;;;17524:9;:30::i;:::-;:44;17587:10;17516:83;;;;;-1:-1:-1;;;17516:83:74;;;;;;641:25:101;;629:2;614:18;;497:175;21621:577:74;21705:7;21728:11;-1:-1:-1;;;;;21728:25:74;;21720:67;;;;-1:-1:-1;;;21720:67:74;;-1:-1:-1;;;;;2408:32:101;;;21720:67:74;;;2390:51:101;2363:18;;21720:67:74;2223:224:101;21720:67:74;-1:-1:-1;21830:1:74;21805:12;9271:7;:18;-1:-1:-1;;;;;9271:18:74;;9196:98;21805:12;-1:-1:-1;;;;;21797:35:74;;21793:57;;21834:16;:14;:16::i;:::-;-1:-1:-1;;21860:6:74;:27;21856:207;;21913:1;21901:8;;:13;21897:27;;-1:-1:-1;21923:1:74;21916:8;;21897:27;21949:8;;21932:26;;21856:207;;;22005:8;;21994:6;;21987:26;;;;21979:77;;;;-1:-1:-1;;;21979:77:74;;;;;12714:25:101;;;;12755:18;;;12748:34;12687:18;;21979:77:74;12544:244:101;21979:77:74;;;21856:207;22087:6;22068:8;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;22100:32:74;;-1:-1:-1;22112:11:74;22125:6;22100:11;:32::i;:::-;22143:31;;;22160:5;13499:41:101;;13571:2;13556:18;;13549:34;;;22143:31:74;;13472:18:101;22143:31:74;;;;;;;-1:-1:-1;22187:6:74;;21621:577;-1:-1:-1;21621:577:74:o;11246:445:75:-;11308:11;11322:12;9271:7:74;:18;-1:-1:-1;;;;;9271:18:74;;9196:98;11322:12:75;11308:26;-1:-1:-1;;;;;;11348:25:75;;11340:55;;;;-1:-1:-1;;;11340:55:75;;;;;;;;;;;;11401:15;11419:10;:8;:10::i;:::-;11401:28;;-1:-1:-1;;11439:6:75;:27;11435:143;;11485:7;11476:16;;11435:143;;;11521:6;11531:7;11521:17;;;;11513:58;;;;-1:-1:-1;;;11513:58:75;;;;;12714:25:101;;;;12755:18;;;12748:34;12687:18;;11513:58:75;12544:244:101;11513:58:75;;;11435:143;11596:6;11583:9;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;11608:10:75;;-1:-1:-1;11608:8:75;:10::i;:::-;:39;;-1:-1:-1;;;11608:39:75;;-1:-1:-1;;;;;14754:32:101;;;11608:39:75;;;14736:51:101;14803:18;;;14796:34;;;11608:18:75;;;;;;;14709::101;;11608:39:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;11653:33:75;;-1:-1:-1;;;11653:33:75;;;;;15265:25:101;;;11680:4:75;15306:18:101;;;15299:60;-1:-1:-1;;;;;11653:10:75;;;;;15238:18:101;;11653:33:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;10717:268::-;10783:18;10809:16;:14;:16::i;:::-;10831:11;10845:12;9271:7:74;:18;-1:-1:-1;;;;;9271:18:74;;9196:98;10845:12:75;10831:26;;-1:-1:-1;;10867:6:75;:27;10863:71;;10905:29;;-1:-1:-1;;;10905:29:75;;10928:4;10905:29;;;2390:51:101;-1:-1:-1;;;;;10905:14:75;;;;;2363:18:101;;10905:29:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10896:38;;10863:71;10940:21;10950:2;10954:6;10940:9;:21::i;:::-;-1:-1:-1;10974:6:75;;10717:268;-1:-1:-1;10717:268:75:o;22611:1691:74:-;1373:10:73;-1:-1:-1;;;;;1395:11:73;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:73;;;;;;;;;;;;23184:45:74::1;23208:21;::::0;;::::1;;::::0;23184;::::1;;:45;:::i;:::-;23161:19;;:68;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;23619:15:74::1;::::0;::::1;;:20:::0;23615:230:::1;;-1:-1:-1::0;;;;;23647:10:74::1;:20;;23677:12:::0;::::1;23699:15;::::0;::::1;;23724:26;:24;;::::0;;::::1;::::0;::::1;23677:9:::0;23724:24:::1;:::i;:::-;;:26::i;:::-;23807:29;:27;;::::0;;::::1;::::0;::::1;:9:::0;:27:::1;:::i;:::-;;:29::i;:::-;23767;:27;;::::0;;::::1;::::0;::::1;:9:::0;:27:::1;:::i;:29::-;23760:77;;;;:::i;:::-;23647:198;::::0;-1:-1:-1;;;;;;23647:198:74::1;::::0;;;;;;::::1;::::0;::::1;15599:25:101::0;;;;15640:18;;;15633:34;;;;15683:18;;;15676:34;15726:18;;;15719:34;15571:19;;23647:198:74::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23615:230;23855:15;::::0;::::1;;:19:::0;23851:102:::1;;-1:-1:-1::0;;;;;23876:10:74::1;:18;;23895:12:::0;::::1;23909:15;::::0;::::1;;23926:26;:24;;::::0;;::::1;::::0;::::1;23895:9:::0;23926:24:::1;:::i;:26::-;23876:77;::::0;-1:-1:-1;;;;;;23876:77:74::1;::::0;;;;;;::::1;::::0;::::1;12995:25:101::0;;;;13036:18;;;13029:34;;;;13079:18;;;13072:34;12968:18;;23876:77:74::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23851:102;23963:15;::::0;::::1;;:20:::0;23959:230:::1;;-1:-1:-1::0;;;;;23991:10:74::1;:20;;24021:12:::0;::::1;24043:15;::::0;::::1;;24068:26;:24;;::::0;;::::1;::::0;::::1;24021:9:::0;24068:24:::1;:::i;:::-;;:26::i;:::-;24151:29;:27;;::::0;;::::1;::::0;::::1;:9:::0;:27:::1;:::i;:::-;;:29::i;:::-;24111;:27;;::::0;;::::1;::::0;::::1;:9:::0;:27:::1;:::i;:29::-;24104:77;;;;:::i;:::-;23991:198;::::0;-1:-1:-1;;;;;;23991:198:74::1;::::0;;;;;;::::1;::::0;::::1;15599:25:101::0;;;;15640:18;;;15633:34;;;;15683:18;;;15676:34;15726:18;;;15719:34;15571:19;;23991:198:74::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23959:230;24199:15;::::0;::::1;;:19:::0;24195:102:::1;;-1:-1:-1::0;;;;;24220:10:74::1;:18;;24239:12:::0;::::1;24253:15;::::0;::::1;;24270:26;:24;;::::0;;::::1;::::0;::::1;24239:9:::0;24270:24:::1;:::i;:26::-;24220:77;::::0;-1:-1:-1;;;;;;24220:77:74::1;::::0;;;;;;::::1;::::0;::::1;12995:25:101::0;;;;13036:18;;;13029:34;;;;13079:18;;;13072:34;12968:18;;24220:77:74::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22611:1691:::0;;:::o;2464:97:73:-;2505:14;2534:11;-1:-1:-1;;;;;2534:20:73;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;11098:116:74:-;11149:7;11183:1;11171:8;;:13;;:38;;11200:8;;11199:9;;;:::i;11171:38::-;-1:-1:-1;11187:1:74;;11098:116::o;24341:698::-;1373:10:73;-1:-1:-1;;;;;1395:11:73;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:73;;;;;;;;;;;;24578:6:74::1;:18;;;24555:19;;:41;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;24602:21:74::1;::::0;-1:-1:-1;24626:72:74::1;24643:54;24678:18;::::0;::::1;;24650:17:::0;24643:54:::1;:::i;24626:72::-;24602:96:::0;-1:-1:-1;24708:18:74;;24704:265:::1;;24736:68;;;::::0;;::::1;::::0;::::1;24757:6:::0;24736:68:::1;:::i;:::-;24765:11;24778;24791:12;24736:20;:68::i;:::-;24812:61;24827:13;24842:12;24871:1;24856:6;:12;;;:16;24812:14;:61::i;:::-;24704:265;;;24894:68;;;::::0;;::::1;::::0;::::1;24915:6:::0;24894:68:::1;:::i;:::-;24974:60;24986:12:::0;25000:33:::1;25020:13:::0;25000:17;:33:::1;:::i;27340:399::-:0;27380:17;;27417:12;9271:7;:18;-1:-1:-1;;;;;9271:18:74;;9196:98;27417:12;-1:-1:-1;;;;;27409:35:74;;27405:57;;27446:16;:14;:16::i;:::-;27480;:14;:16::i;:::-;27468:28;-1:-1:-1;27506:14:74;;;;;:51;;-1:-1:-1;27532:10:74;-1:-1:-1;;;;;27524:33:74;;;27506:51;27502:102;;;27571:33;27582:9;27593:10;27571;:33::i;:::-;27559:45;;27502:102;27614:14;;;;;:51;;-1:-1:-1;27640:10:74;-1:-1:-1;;;;;27632:33:74;;;27614:51;27610:102;;;27679:33;27690:9;27701:10;27679;:33::i;22237:335::-;1373:10:73;-1:-1:-1;;;;;1395:11:73;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:73;;;;;;;;;;;;22357:6:74::1;:18;;;22334:19;;:41;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;22385:12:74::1;::::0;::::1;;:16:::0;22381:90:::1;;-1:-1:-1::0;;;;;22403:10:74::1;:18;;22422:9:::0;::::1;22433:12;::::0;::::1;;22447:23;:21;;::::0;;::::1;::::0;::::1;22422:6:::0;22447:21:::1;:::i;:23::-;22403:68;::::0;-1:-1:-1;;;;;;22403:68:74::1;::::0;;;;;;::::1;::::0;::::1;12995:25:101::0;;;;13036:18;;;13029:34;;;;13079:18;;;13072:34;12968:18;;22403:68:74::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22381:90;22481:12;::::0;::::1;;:16:::0;22477:90:::1;;-1:-1:-1::0;;;;;22499:10:74::1;:18;;22518:9:::0;::::1;22529:12;::::0;::::1;;22543:23;:21;;::::0;;::::1;::::0;::::1;22518:6:::0;22543:21:::1;:::i;:23::-;22499:68;::::0;-1:-1:-1;;;;;;22499:68:74::1;::::0;;;;;;::::1;::::0;::::1;12995:25:101::0;;;;13036:18;;;13029:34;;;;13079:18;;;13072:34;12968:18;;22499:68:74::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2156:206:73::0;2241:4;-1:-1:-1;;;;;;2260:40:73;;-1:-1:-1;;;2260:40:73;;:97;;-1:-1:-1;;;;;;;2304:53:73;;-1:-1:-1;;;2304:53:73;2253:104;2156:206;-1:-1:-1;;2156:206:73:o;9360:617:75:-;9505:36;;-1:-1:-1;;;9505:36:75;;9535:4;9505:36;;;2390:51:101;9462:18:75;;;;-1:-1:-1;;;;;9505:21:75;;;;;2363:18:101;;9505:36:75;;;;;;;;;;;;;;;;;;-1:-1:-1;9505:36:75;;;;;;;;-1:-1:-1;;9505:36:75;;;;;;;;;;;;:::i;:::-;;;9501:234;;;9588:14;9579:6;:23;9575:94;;;9623:4;9614:13;;9654:6;9637:23;;9575:94;9542:184;9501:234;9744:64;;-1:-1:-1;;;9744:64:75;;;;;9252:25:101;;;9787:4:75;9293:18:101;;;9286:60;;;9362:18;;;9355:60;-1:-1:-1;;;;;9744:18:75;;;;;9225::101;;9744:64:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;9744:64:75;;;;;;;;-1:-1:-1;;9744:64:75;;;;;;;;;;;;:::i;:::-;;;9740:233;;9917:11;-1:-1:-1;;;;;9888:57:75;;9930:14;9888:57;;;;641:25:101;;629:2;614:18;;497:175;9888:57:75;;;;;;;;-1:-1:-1;9962:4:75;9740:233;;;9855:6;-1:-1:-1;9740:233:75;9360:617;;;;;:::o;9850:377:74:-;9947:1;9927:16;:21;9923:256;;9958:47;9987:16;9958:20;:47::i;:::-;9923:256;;;10026:14;10043:35;10060:17;10061:16;10060:17;:::i;10043:35::-;10026:52;-1:-1:-1;10094:11:74;;10144:17;10145:16;10144:17;:::i;:::-;10164:6;10086:86;;;;;;-1:-1:-1;;;10086:86:74;;;;;12714:25:101;;;;12755:18;;;12748:34;12687:18;;10086:86:74;12544:244:101;10086:86:74;;;10018:161;9923:256;10184:38;10205:16;10184:20;:38::i;19299:327::-;19357:7;19372:17;19403:5;19392:8;;:16;;;;:::i;:::-;19372:36;;19414:17;19434:27;19446:14;:12;:14::i;19434:27::-;19414:47;;19485:10;19471;:24;19467:82;;-1:-1:-1;19505:8:74;:21;-1:-1:-1;19541:1:74;;19299:327;-1:-1:-1;19299:327:74:o;19467:82::-;19554:8;:21;;;19565:10;19596:11;19597:10;19596:11;:::i;:::-;:24;;;;:::i;:::-;19581:40;19299:327;-1:-1:-1;;;;19299:327:74:o;25767:489::-;25839:12;;;;:16;25835:206;;25865:10;-1:-1:-1;;;;;25865:20:74;;25895:6;:9;;;25914:6;:12;;;25936:23;:6;:21;:23::i;:::-;25999:26;:6;:24;:26::i;:::-;25976:6;:12;;;25969:57;;;;:::i;:::-;25865:169;;-1:-1:-1;;;;;;25865:169:74;;;;;;;;;;15599:25:101;;;;15640:18;;;15633:34;;;;15683:18;;;15676:34;15726:18;;;15719:34;15571:19;;25865:169:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25835:206;26050:12;;;;:16;26046:206;;26076:10;-1:-1:-1;;;;;26076:20:74;;26106:6;:9;;;26125:6;:12;;;26147:23;:6;:21;:23::i;:::-;26210:26;:6;:24;:26::i;:::-;26187:6;:12;;;26180:57;;;;:::i;:::-;26076:169;;-1:-1:-1;;;;;;26076:169:74;;;;;;;;;;15599:25:101;;;;15640:18;;;15633:34;;;;15683:18;;;15676:34;15726:18;;;15719:34;15571:19;;26076:169:74;15370:389:101;18069:892:74;18169:6;18181:401;;;;18217:33;;-1:-1:-1;;;18217:33:74;;18244:4;18217:33;;;2390:51:101;18200:14:74;;18217:10;-1:-1:-1;;;;;18217:18:74;;;;2363::101;;18217:33:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18200:50;;18281:13;:11;:13::i;:::-;18262:15;18271:6;18262;:15;:::i;:::-;:32;18258:318;;18313:41;;-1:-1:-1;;;18313:41:74;;;;;15265:25:101;;;-1:-1:-1;;;;;15326:32:101;;;15306:18;;;15299:60;18313:10:74;:23;;;;15238:18:101;;18313:41:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18306:48;;18258:318;;;18382:13;:11;:13::i;:::-;18373:6;:22;18369:207;;;18431:18;18470:13;:11;:13::i;:::-;18452:15;18461:6;18452;:15;:::i;:::-;:31;;;;:::i;:::-;18431:52;-1:-1:-1;;;;;;18513:10:74;:23;;18537:19;18431:52;18537:6;:19;:::i;:::-;18513:54;;-1:-1:-1;;;;;;18513:54:74;;;;;;;;;;15265:25:101;;;;-1:-1:-1;;;;;15326:32:101;;15306:18;;;15299:60;15238:18;;18513:54:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18500:67;;:10;:67;:::i;:::-;18493:74;;18397:179;18369:207;18192:390;18181:401;18591:9;;18587:370;;18755:13;:11;:13::i;:::-;18711:33;;-1:-1:-1;;;18711:33:74;;18738:4;18711:33;;;2390:51:101;18747:4:74;;18711:10;-1:-1:-1;;;;;18711:18:74;;;;2363::101;;18711:33:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;;;;:::i;:::-;:57;18707:128;;18787:39;;-1:-1:-1;;;18787:39:74;;;;;15265:25:101;;;-1:-1:-1;;;;;15326:32:101;;;15306:18;;;15299:60;18787:10:74;:23;;;;15238:18:101;;18787:39:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18780:46;;18707:128;18916:4;:9;;18908:42;;;;-1:-1:-1;;;18908:42:74;;;;;;641:25:101;;629:2;614:18;;497:175;4034:510:75;4115:11;-1:-1:-1;;;;;4115:25:75;;4107:71;;;;-1:-1:-1;;;4107:71:75;;-1:-1:-1;;;;;2408:32:101;;;4107:71:75;;;2390:51:101;2363:18;;4107:71:75;2223:224:101;4107:71:75;;4188:6;4198:1;4188:11;4184:24;;4034:510;;:::o;4184:24::-;4213:15;4231:10;:8;:10::i;:::-;4213:28;;4261:6;4251:7;:16;4247:209;;;4277:11;4291:12;9271:7:74;:18;-1:-1:-1;;;;;9271:18:74;;9196:98;4291:12:75;4277:26;-1:-1:-1;;;;;;4315:25:75;;;4311:81;;4352:31;4362:2;4366:16;4375:7;4366:6;:16;:::i;:::-;4352:9;:31::i;:::-;4269:187;4247:209;-1:-1:-1;;;;;4465:28:75;;4488:4;4465:28;4461:78;;4495:44;4519:11;4532:6;4495:10;:8;:10::i;:::-;-1:-1:-1;;;;;4495:23:75;;:44;:23;:44::i;13248:164:74:-;13304:7;13386:10;:8;:10::i;:::-;-1:-1:-1;;;;;13386:19:74;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13380:27;;:2;:27;:::i;:::-;13363:44;;:14;;;:44;:::i;4328:312:33:-;4408:4;-1:-1:-1;;;;;4417:6:33;4400:23;;;:120;;;4514:6;-1:-1:-1;;;;;4478:42:33;:32;-1:-1:-1;;;;;;;;;;;1519:53:29;-1:-1:-1;;;;;1519:53:29;;1441:138;4478:32:33;-1:-1:-1;;;;;4478:42:33;;;4400:120;4383:251;;;4594:29;;-1:-1:-1;;;4594:29:33;;;;;;;;;;;4383:251;4328:312::o;1807:106:73:-;1880:28;1900:7;1880:19;:28::i;5782:538:33:-;5899:17;-1:-1:-1;;;;;5881:50:33;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5881:52:33;;;;;;;;-1:-1:-1;;5881:52:33;;;;;;;;;;;;:::i;:::-;;;5877:437;;6243:60;;-1:-1:-1;;;6243:60:33;;-1:-1:-1;;;;;2408:32:101;;6243:60:33;;;2390:51:101;2363:18;;6243:60:33;2223:224:101;5877:437:33;-1:-1:-1;;;;;;;;;;;5975:40:33;;5971:120;;6042:34;;-1:-1:-1;;;6042:34:33;;;;;641:25:101;;;614:18;;6042:34:33;497:175:101;5971:120:33;6104:54;6134:17;6153:4;6104:29;:54::i;13112:132:74:-;13200:19;;13171:6;;13200:38;;13227:5;1544:4;13200:26;:38::i;:::-;13192:47;;;:::i;16296:213:64:-;16352:6;16382:16;16374:24;;16370:103;;;16421:41;;-1:-1:-1;;;16421:41:64;;16452:2;16421:41;;;18133:36:101;18185:18;;;18178:34;;;18106:18;;16421:41:64;17952:266:101;16370:103:64;-1:-1:-1;16496:5:64;16296:213::o;4757::33:-;4831:4;-1:-1:-1;;;;;4840:6:33;4823:23;;4819:145;;4924:29;;-1:-1:-1;;;4924:29:33;;;;;;;;;;;19845:108:74;19933:14;19914:8;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;;;19845:108:74:o;9071:205:32:-;9129:30;;3147:66;9186:27;8819:122;7981:127:74;6929:20:32;:18;:20::i;:::-;8047:16:74::1;:14;:16::i;:::-;8069:34;:32;:34::i;1662:232:40:-:0;1767:47;1785:5;1792:4;1798:2;1802:5;1809:4;1767:17;:47::i;:::-;1762:126;;1837:40;;-1:-1:-1;;;1837:40:40;;-1:-1:-1;;;;;2408:32:101;;1837:40:40;;;2390:51:101;2363:18;;1837:40:40;2223:224:101;13416:183:74;13480:6;13545:49;13561:10;:8;:10::i;:::-;-1:-1:-1;;;;;13561:19:74;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13555:27;;:2;:27;:::i;:::-;13546:36;;:6;:36;:::i;:::-;13545:47;:49::i;10077:121:75:-;10120:7;10157:10;:8;:10::i;:::-;10142:51;;-1:-1:-1;;;10142:51:75;;10187:4;10142:51;;;2390::101;-1:-1:-1;;;;;10142:36:75;;;;;;;2363:18:101;;10142:51:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;8525:386::-;8597:58;;-1:-1:-1;;;8597:58:75;;;;;9252:25:101;;;8634:4:75;9293:18:101;;;9286:60;;;9362:18;;;9355:60;-1:-1:-1;;;;;8597:20:75;;;;;9225:18:101;;8597:58:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8674:9;;8665:6;:18;8661:246;;;8797:42;8828:9;;8819:6;:18;;;;:::i;8797:42::-;8859:1;8847:9;:13;3911:214:33;;:::o;8661:246:75:-;8894:6;8881:9;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;8525:386:75;;:::o;8724:178:71:-;8797:7;8819:78;643:4;8880:16;8889:6;8880:8;:16::i;:::-;8865:31;;:6;:12;;;:31;;;;:::i;:::-;696:8;8820:6;:12;;;:31;;;;:::i;:::-;8819:40;:78;:40;:78::i;9199:171::-;9275:7;9349:16;9358:6;9349:8;:16::i;:::-;9297:68;;9332:6;:12;;;9314:30;;:15;:30;;;;:::i;:::-;9298:6;:12;;;:47;;;;:::i;:::-;9297:68;;;;:::i;9751:178::-;9824:7;9846:78;643:4;9907:16;9916:6;9907:8;:16::i;:::-;9892:31;;:6;:12;;;:31;;;;:::i;:::-;696:8;9847:6;:12;;;:31;;;;:::i;10226:171::-;10302:7;10376:16;10385:6;10376:8;:16::i;:::-;10324:68;;10359:6;:12;;;10341:30;;:15;:30;;;;:::i;:::-;10325:6;:12;;;:47;;;;:::i;26473:717:74:-;26639:12;;;;:16;26635:273;;26665:10;-1:-1:-1;;;;;26665:30:74;;26705:6;:9;;;26724:6;:12;;;26746:23;:6;:21;:23::i;:::-;26823:26;:6;:24;:26::i;:::-;26801:11;26786:6;:12;;;:26;;;;:::i;:::-;26779:71;;;;:::i;:::-;26665:236;;-1:-1:-1;;;;;;26665:236:74;;;;;;;;;;18508:25:101;;;;18549:18;;;18542:34;;;;18592:18;;;18585:34;18635:18;;;18628:34;-1:-1:-1;;;;;18699:32:101;;18678:19;;;18671:61;18748:19;;;18741:35;;;18480:19;;26665:236:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26635:273;26917:12;;;;:16;26913:273;;26943:10;-1:-1:-1;;;;;26943:30:74;;26983:6;:9;;;27002:6;:12;;;27024:23;:6;:21;:23::i;:::-;27101:26;:6;:24;:26::i;:::-;27079:11;27064:6;:12;;;:26;;;;:::i;:::-;27057:71;;;;:::i;:::-;26943:236;;-1:-1:-1;;;;;;26943:236:74;;;;;;;;;;18508:25:101;;;;18549:18;;;18542:34;;;;18592:18;;;18585:34;18635:18;;;18628:34;-1:-1:-1;;;;;18699:32:101;;18678:19;;;18671:61;18748:19;;;18741:35;;;18480:19;;26943:236:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26473:717;;;;:::o;28074:825::-;28191:26;;-1:-1:-1;;;28191:26:74;;28211:4;28191:26;;;2390:51:101;28150:7:74;;;;-1:-1:-1;;;;;28191:11:74;;;;;2363:18:101;;28191:26:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28165:52;;28227:15;28246:1;28227:20;28223:48;;28256:15;28249:22;;;;;28223:48;28277:19;28299:42;28308:15;28325;28299:8;:42::i;:::-;28277:64;;28366:11;28347:8;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;28444:39:74;;-1:-1:-1;28464:4:74;28471:11;28444;:39::i;:::-;28590:11;28538:10;:8;:10::i;:::-;:49;;-1:-1:-1;;;28538:49:74;;28567:4;28538:49;;;5017:51:101;-1:-1:-1;;;;;5104:32:101;;;5084:18;;;5077:60;28538:20:74;;;;;;;4990:18:101;;28538:49:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:63;28534:272;;;28750:10;:8;:10::i;:::-;:49;;-1:-1:-1;;;28750:49:74;;-1:-1:-1;;;;;14754:32:101;;;28750:49:74;;;14736:51:101;14803:18;;;14796:34;;;28750:18:74;;;;;;;14709::101;;28750:49:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28534:272;28811:41;;-1:-1:-1;;;28811:41:74;;;;;15265:25:101;;;28846:4:74;15306:18:101;;;15299:60;-1:-1:-1;;;;;28811:13:74;;;;;15238:18:101;;28811:41:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28883:11;28865:15;:29;;;;:::i;:::-;28858:36;28074:825;-1:-1:-1;;;;;28074:825:74:o;5829:100:75:-;5898:26;;641:25:101;;;5898:26:75;;629:2:101;614:18;5898:26:75;497:175:101;1219:204:40;1306:37;1320:5;1327:2;1331:5;1338:4;1306:13;:37::i;:::-;1301:116;;1366:40;;-1:-1:-1;;;1366:40:40;;-1:-1:-1;;;;;2408:32:101;;1366:40:40;;;2390:51:101;2363:18;;1366:40:40;2223:224:101;8442:467:74;8525:34;8551:7;8525:25;:34::i;:::-;8565:22;8607:7;8565:50;;8622:13;8637;8654:5;-1:-1:-1;;;;;8654:10:74;;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8621:45;;;;8689:10;-1:-1:-1;;;;;8680:19:74;:5;-1:-1:-1;;;;;8680:19:74;;:56;;;-1:-1:-1;8711:10:74;-1:-1:-1;;;;;8703:33:74;;8680:56;8766:10;8778:5;8672:113;;;;;;-1:-1:-1;;;8672:113:74;;-1:-1:-1;;;;;5035:32:101;;;8672:113:74;;;5017:51:101;5104:32;;5084:18;;;5077:60;4990:18;;8672:113:74;4809:334:101;8672:113:74;;;8808:10;-1:-1:-1;;;;;8799:19:74;:5;-1:-1:-1;;;;;8799:19:74;;:56;;;-1:-1:-1;8830:10:74;-1:-1:-1;;;;;8822:33:74;;8799:56;8885:10;8897:5;8791:113;;;;;;-1:-1:-1;;;8791:113:74;;-1:-1:-1;;;;;5035:32:101;;;8791:113:74;;;5017:51:101;5104:32;;5084:18;;;5077:60;4990:18;;8791:113:74;4809:334:101;2264:344:29;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:29;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;2454:148::-;2573:18;:16;:18::i;7258:3683:63:-;7340:14;7391:12;7405:11;7420:12;7427:1;7430;7420:6;:12::i;:::-;7390:42;;;;7514:4;7522:1;7514:9;7510:365;;7849:11;7843:3;:17;;;;;:::i;:::-;;7836:24;;;;;;7510:365;8000:4;7985:11;:19;7981:142;;8024:84;5328:5;8044:16;;5327:36;940:4:53;5322:42:63;8024:11;:84::i;:::-;8375:17;8526:11;8523:1;8520;8513:25;8918:12;8948:15;;;8933:31;;9083:22;;;;;9816:1;9797;:15;;9796:21;;10049;;;10045:25;;10034:36;10119:21;;;10115:25;;10104:36;10191:21;;;10187:25;;10176:36;10262:21;;;10258:25;;10247:36;10335:21;;;10331:25;;10320:36;10409:21;;;10405:25;;;10394:36;9325:12;;;;9321:23;;;9346:1;9317:31;8638:18;;;8628:29;;;9432:11;;;;8681:19;;;;9176:14;;;;9425:18;;;;10884:13;;-1:-1:-1;;7258:3683:63;;;;;;:::o;7082:141:32:-;7149:17;:15;:17::i;:::-;7144:73;;7189:17;;-1:-1:-1;;;7189:17:32;;;;;;;;;;;3293:91:75;6929:20:32;:18;:20::i;:::-;3351:28:75::1;:26;:28::i;8163:275:74:-:0;6929:20:32;:18;:20::i;:::-;8292:141:74::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;8292:141:74;;;::::1;::::0;::::1;::::0;;;;;;;;;;1651:3:::1;8292:141:::0;;;;;8282:7:::1;:151:::0;;-1:-1:-1;;;;;;8282:151:74;-1:-1:-1;;;8282:151:74::1;::::0;;8163:275::o;10165:1393:40:-;10460:4;10454:11;-1:-1:-1;;;10323:12:40;10478:22;;;-1:-1:-1;;;;;10526:26:40;;;10520:4;10513:40;10579:24;;10573:4;10566:38;10624:4;10617:19;;;10323:12;10700:4;10323:12;10688:4;10323:12;;10672:5;10665;10660:45;10649:56;;10917:1;10910:4;10904:11;10901:18;10892:7;10888:32;10878:606;;11049:6;11039:7;11032:15;11028:28;11025:165;;;11105:16;11099:4;11094:3;11079:43;11155:16;11150:3;11143:29;11025:165;11466:1;11458:5;11446:18;11443:25;11424:16;11417:24;11413:56;11404:7;11400:70;11389:81;;10878:606;11504:4;11497:17;-1:-1:-1;11540:1:40;11534:4;11527:15;10165:1393;;-1:-1:-1;;;;;10165:1393:40:o;15296:213:64:-;15352:6;15382:16;15374:24;;15370:103;;;15421:41;;-1:-1:-1;;;15421:41:64;;15452:2;15421:41;;;18133:36:101;18185:18;;;18178:34;;;18106:18;;15421:41:64;17952:266:101;10461:125:71;10528:6;10569;:12;;;10549:6;:17;;;:32;;;;:::i;5633:111:63:-;5691:7;5328:5;;;5725;;;5327:36;5322:42;;5717:20;5087:294;8373:1244:40;8600:4;8594:11;-1:-1:-1;;;8467:12:40;8618:22;;;-1:-1:-1;;;;;8666:24:40;;8660:4;8653:38;8711:4;8704:19;;;8467:12;8787:4;8467:12;8775:4;8467:12;;8759:5;8752;8747:45;8736:56;;9004:1;8997:4;8991:11;8988:18;8979:7;8975:32;8965:606;;9136:6;9126:7;9119:15;9115:28;9112:165;;;9192:16;9186:4;9181:3;9166:43;9242:16;9237:3;9230:29;9112:165;9553:1;9545:5;9533:18;9530:25;9511:16;9504:24;9500:56;9491:7;9487:70;9476:81;;8965:606;9591:4;9584:17;-1:-1:-1;8373:1244:40;;-1:-1:-1;;;;8373:1244:40:o;1917:180:73:-;2041:11;-1:-1:-1;;;;;1995:57:73;2016:7;-1:-1:-1;;;;;1995:40:73;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1995:57:73;;1991:101;;2061:31;;-1:-1:-1;;;2061:31:73;;;;;;;;;;;1671:281:29;1748:17;-1:-1:-1;;;;;1748:29:29;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:29;;-1:-1:-1;;;;;2408:32:101;;1805:47:29;;;2390:51:101;2363:18;;1805:47:29;2223:224:101;1744:119:29;-1:-1:-1;;;;;;;;;;;1872:73:29;;-1:-1:-1;;;;;;1872:73:29;-1:-1:-1;;;;;1872:73:29;;;;;;;;;;1671:281::o;4691:549:45:-;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:45;4583:16:49;4886:33:45;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:45;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;:::-;4962:32;;;;;4870:364;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:45;;-1:-1:-1;;;;;2408:32:101;;5045:24:45;;;2390:51:101;2363:18;;5045:24:45;2223:224:101;5011:223:45;4583:16:49;5090:33:45;5086:148;;5139:27;:25;:27::i;:::-;5086:148;;;5204:19;;-1:-1:-1;;;5204:19:45;;;;;;;;;;;5086:148;4788:452;4691:549;;;;:::o;6113:122:29:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:29;;;;;;;;;;;1027:550:63;1088:12;;-1:-1:-1;;1471:1:63;1468;1461:20;1501:9;;;;1549:11;;;1535:12;;;;1531:30;;;;;1027:550;-1:-1:-1;;1027:550:63:o;1776:194:53:-;1881:10;1875:4;1868:24;1918:4;1912;1905:18;1949:4;1943;1936:18;8485:120:32;8535:4;8558:26;:24;:26::i;:::-;:40;-1:-1:-1;;;8558:40:32;;;;;;-1:-1:-1;8485:120:32:o;1737:66:73:-;6929:20:32;:18;:20::i;3383:242:49:-;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:49:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;14:286:101;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:101;;209:43;;199:71;;266:1;263;256:12;677:141;-1:-1:-1;;;;;762:31:101;;752:42;;742:70;;808:1;805;798:12;823:118;909:5;902:13;895:21;888:5;885:32;875:60;;931:1;928;921:12;946:409;1028:6;1036;1089:2;1077:9;1068:7;1064:23;1060:32;1057:52;;;1105:1;1102;1095:12;1057:52;1144:9;1131:23;1163:41;1198:5;1163:41;:::i;:::-;1223:5;-1:-1:-1;1280:2:101;1265:18;;1252:32;1293:30;1252:32;1293:30;:::i;:::-;1342:7;1332:17;;;946:409;;;;;:::o;1542:159::-;1605:5;1650:3;1641:6;1636:3;1632:16;1628:26;1625:46;;;1667:1;1664;1657:12;1625:46;-1:-1:-1;1689:6:101;1542:159;-1:-1:-1;1542:159:101:o;1706:512::-;1814:6;1822;1830;1883:3;1871:9;1862:7;1858:23;1854:33;1851:53;;;1900:1;1897;1890:12;1851:53;1939:9;1926:23;1958:41;1993:5;1958:41;:::i;:::-;2018:5;-1:-1:-1;2042:66:101;2100:7;2095:2;2080:18;;2042:66;:::i;:::-;1706:512;;2032:76;;-1:-1:-1;;;2181:3:101;2166:19;;;;2153:33;;1706:512::o;2452:127::-;2513:10;2508:3;2504:20;2501:1;2494:31;2544:4;2541:1;2534:15;2568:4;2565:1;2558:15;2584:252;2656:2;2650:9;2698:3;2686:16;;2732:18;2717:34;;2753:22;;;2714:62;2711:88;;;2779:18;;:::i;:::-;2815:2;2808:22;2584:252;:::o;2841:275::-;2912:2;2906:9;2977:2;2958:13;;-1:-1:-1;;2954:27:101;2942:40;;3012:18;2997:34;;3033:22;;;2994:62;2991:88;;;3059:18;;:::i;:::-;3095:2;3088:22;2841:275;;-1:-1:-1;2841:275:101:o;3121:910::-;3198:6;3206;3259:2;3247:9;3238:7;3234:23;3230:32;3227:52;;;3275:1;3272;3265:12;3227:52;3314:9;3301:23;3333:41;3368:5;3333:41;:::i;:::-;3393:5;-1:-1:-1;3449:2:101;3434:18;;3421:32;3476:18;3465:30;;3462:50;;;3508:1;3505;3498:12;3462:50;3531:22;;3584:4;3576:13;;3572:27;-1:-1:-1;3562:55:101;;3613:1;3610;3603:12;3562:55;3653:2;3640:16;3679:18;3671:6;3668:30;3665:56;;;3701:18;;:::i;:::-;3743:57;3790:2;3767:17;;-1:-1:-1;;3763:31:101;3796:2;3759:40;3743:57;:::i;:::-;3823:6;3816:5;3809:21;3871:7;3866:2;3857:6;3853:2;3849:15;3845:24;3842:37;3839:57;;;3892:1;3889;3882:12;3839:57;3947:6;3942:2;3938;3934:11;3929:2;3922:5;3918:14;3905:49;3999:1;3994:2;3985:6;3978:5;3974:18;3970:27;3963:38;4020:5;4010:15;;;;;3121:910;;;;;:::o;4036:361::-;4101:6;4109;4162:2;4150:9;4141:7;4137:23;4133:32;4130:52;;;4178:1;4175;4168:12;4130:52;4223:23;;;-1:-1:-1;4322:2:101;4307:18;;4294:32;4335:30;4294:32;4335:30;:::i;5148:246::-;5238:6;5291:3;5279:9;5270:7;5266:23;5262:33;5259:53;;;5308:1;5305;5298:12;5259:53;5331:57;5380:7;5369:9;5331:57;:::i;5399:226::-;5458:6;5511:2;5499:9;5490:7;5486:23;5482:32;5479:52;;;5527:1;5524;5517:12;5479:52;-1:-1:-1;5572:23:101;;5399:226;-1:-1:-1;5399:226:101:o;5630:346::-;5698:6;5706;5759:2;5747:9;5738:7;5734:23;5730:32;5727:52;;;5775:1;5772;5765:12;5727:52;-1:-1:-1;;5820:23:101;;;5940:2;5925:18;;;5912:32;;-1:-1:-1;5630:346:101:o;5981:377::-;6049:6;6057;6110:2;6098:9;6089:7;6085:23;6081:32;6078:52;;;6126:1;6123;6116:12;6078:52;6171:23;;;-1:-1:-1;6270:2:101;6255:18;;6242:32;6283:43;6242:32;6283:43;:::i;6588:418::-;6737:2;6726:9;6719:21;6700:4;6769:6;6763:13;6812:6;6807:2;6796:9;6792:18;6785:34;6871:6;6866:2;6858:6;6854:15;6849:2;6838:9;6834:18;6828:50;6927:1;6922:2;6913:6;6902:9;6898:22;6894:31;6887:42;6997:2;6990;6986:7;6981:2;6973:6;6969:15;6965:29;6954:9;6950:45;6946:54;6938:62;;;6588:418;;;;:::o;7011:380::-;7141:6;7149;7202:3;7190:9;7181:7;7177:23;7173:33;7170:53;;;7219:1;7216;7209:12;7170:53;7242:57;7291:7;7280:9;7242:57;:::i;:::-;7232:67;;7318;7377:7;7371:3;7360:9;7356:19;7318:67;:::i;:::-;7308:77;;7011:380;;;;;:::o;7627:755::-;7753:6;7761;7769;7777;7785;7838:3;7826:9;7817:7;7813:23;7809:33;7806:53;;;7855:1;7852;7845:12;7806:53;7878:57;7927:7;7916:9;7878:57;:::i;:::-;7868:67;-1:-1:-1;8004:3:101;7989:19;;7976:33;;-1:-1:-1;8106:3:101;8091:19;;8078:33;;-1:-1:-1;8210:3:101;8195:19;;8182:33;;-1:-1:-1;8293:3:101;8278:19;;8265:33;8307:43;8265:33;8307:43;:::i;:::-;8369:7;8359:17;;;7627:755;;;;;;;;:::o;8387:261::-;8457:6;8510:2;8498:9;8489:7;8485:23;8481:32;8478:52;;;8526:1;8523;8516:12;8478:52;8558:9;8552:16;8577:41;8612:5;8577:41;:::i;8861:184::-;8931:6;8984:2;8972:9;8963:7;8959:23;8955:32;8952:52;;;9000:1;8997;8990:12;8952:52;-1:-1:-1;9023:16:101;;8861:184;-1:-1:-1;8861:184:101:o;9426:127::-;9487:10;9482:3;9478:20;9475:1;9468:31;9518:4;9515:1;9508:15;9542:4;9539:1;9532:15;9558:200;9624:9;;;9597:4;9652:9;;9680:10;;9692:12;;;9676:29;9715:12;;;9707:21;;9673:56;9670:82;;;9732:18;;:::i;9763:128::-;9830:9;;;9851:11;;;9848:37;;;9865:18;;:::i;9896:165::-;9963:20;;10023:12;10012:24;;10002:35;;9992:63;;10051:1;10048;10041:12;9992:63;9896:165;;;:::o;10066:1584::-;10154:6;10214:3;10202:9;10193:7;10189:23;10185:33;10230:2;10227:22;;;10245:1;10242;10235:12;10227:22;-1:-1:-1;10287:22:101;;:::i;:::-;10354:23;;10386:22;;10481:2;10466:18;;;10453:32;10501:14;;;10494:31;10598:2;10583:18;;;10570:32;10618:14;;;10611:31;10715:2;10700:18;;;10687:32;10735:14;;;10728:31;10832:3;10817:19;;;10804:33;10853:15;;;10846:32;10951:3;10936:19;;;10923:33;10972:15;;;10965:32;11070:3;11055:19;;;11042:33;11091:15;;;11084:32;11189:3;11174:19;;;11161:33;11210:15;;;11203:32;11308:3;11293:19;;;11280:33;11329:15;;;11322:32;11429:3;11414:19;;;11401:33;11450:15;;;11443:33;11509:38;11542:3;11527:19;;11509:38;:::i;:::-;11503:3;11496:5;11492:15;11485:63;11581:38;11614:3;11603:9;11599:19;11581:38;:::i;:::-;11575:3;11564:15;;11557:63;11568:5;10066:1584;-1:-1:-1;;;10066:1584:101:o;11655:216::-;11719:9;;;11747:11;;;11694:3;11777:9;;11805:10;;11801:19;;11830:10;;11822:19;;11798:44;11795:70;;;11845:18;;:::i;:::-;11795:70;;11655:216;;;;:::o;11876:168::-;11949:9;;;11980;;11997:15;;;11991:22;;11977:37;11967:71;;12018:18;;:::i;12049:127::-;12110:10;12105:3;12101:20;12098:1;12091:31;12141:4;12138:1;12131:15;12165:4;12162:1;12155:15;12181:217;12221:1;12247;12237:132;;12291:10;12286:3;12282:20;12279:1;12272:31;12326:4;12323:1;12316:15;12354:4;12351:1;12344:15;12237:132;-1:-1:-1;12383:9:101;;12181:217::o;12403:136::-;12438:3;-1:-1:-1;;;12459:22:101;;12456:48;;12484:18;;:::i;:::-;-1:-1:-1;12524:1:101;12520:13;;12403:136::o;14432:125::-;14497:9;;;14518:10;;;14515:36;;;14531:18;;:::i;14841:245::-;14908:6;14961:2;14949:9;14940:7;14936:23;14932:32;14929:52;;;14977:1;14974;14967:12;14929:52;15009:9;15003:16;15028:28;15050:5;15028:28;:::i;16053:273::-;16121:6;16174:2;16162:9;16153:7;16149:23;16145:32;16142:52;;;16190:1;16187;16180:12;16142:52;16222:9;16216:16;16272:4;16265:5;16261:16;16254:5;16251:27;16241:55;;16292:1;16289;16282:12;16331:375;16419:1;16437:5;16451:249;16472:1;16462:8;16459:15;16451:249;;;16522:4;16517:3;16513:14;16507:4;16504:24;16501:50;;;16531:18;;:::i;:::-;16581:1;16571:8;16567:16;16564:49;;;16595:16;;;;16564:49;16678:1;16674:16;;;;;16634:15;;16451:249;;;16331:375;;;;;;:::o;16711:902::-;16760:5;16790:8;16780:80;;-1:-1:-1;16831:1:101;16845:5;;16780:80;16879:4;16869:76;;-1:-1:-1;16916:1:101;16930:5;;16869:76;16961:4;16979:1;16974:59;;;;17047:1;17042:174;;;;16954:262;;16974:59;17004:1;16995:10;;17018:5;;;17042:174;17079:3;17069:8;17066:17;17063:43;;;17086:18;;:::i;:::-;-1:-1:-1;;17142:1:101;17128:16;;17201:5;;16954:262;;17300:2;17290:8;17287:16;17281:3;17275:4;17272:13;17268:36;17262:2;17252:8;17249:16;17244:2;17238:4;17235:12;17231:35;17228:77;17225:203;;;-1:-1:-1;17337:19:101;;;17413:5;;17225:203;17460:42;-1:-1:-1;;17485:8:101;17479:4;17460:42;:::i;:::-;17538:6;17534:1;17530:6;17526:19;17517:7;17514:32;17511:58;;;17549:18;;:::i;:::-;17587:20;;16711:902;-1:-1:-1;;;16711:902:101:o;17618:140::-;17676:5;17705:47;17746:4;17736:8;17732:19;17726:4;17705:47;:::i;19092:439::-;19205:6;19213;19266:2;19254:9;19245:7;19241:23;19237:32;19234:52;;;19282:1;19279;19272:12;19234:52;19314:9;19308:16;19333:41;19368:5;19333:41;:::i;:::-;19443:2;19428:18;;19422:25;19393:5;;-1:-1:-1;19456:43:101;19422:25;19456:43;:::i;19807:176::-;19906:12;19899:20;;;19877;;;19873:47;;19932:22;;19929:48;;;19957:18;;:::i"},"methodIdentifiers":{"UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","activePurePremiums()":"1a548a27","borrowedActivePP()":"e823584a","currency()":"e5a6b10f","deficitRatio()":"4863c8b0","depositIntoYieldVault(uint256)":"ac860f74","etks()":"5e445859","fundsAvailable()":"4fe0bd1e","initialize()":"8129fc1c","investedInYV()":"7d919a97","jrLoanLimit()":"2d8f892a","juniorEtk()":"536ebbfc","policyCancelled((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256,address)":"ee1f9a6a","policyCreated((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))":"f79ac183","policyExpired((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))":"76185ff1","policyPool()":"4d15eb03","policyReplaced((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))":"d5c6c166","policyResolvedWithPayout(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)":"1dda2899","proxiableUUID()":"52d1902d","purePremiums()":"26ccbd22","receiveGrant(uint256)":"81ced71f","recordEarnings()":"4eb978a4","repayLoans()":"f39a4bc5","seniorEtk()":"7b83037b","setDeficitRatio(uint256,bool)":"50093f04","setLoanLimits(uint256,uint256)":"97a146c0","setYieldVault(address,bool)":"194448e5","srLoanLimit()":"7bb62319","supportsInterface(bytes4)":"01ffc9a7","surplus()":"13888565","upgradeToAndCall(address,bytes)":"4f1ef286","withdrawFromYieldVault(uint256)":"d336078c","withdrawWonPremiums(uint256,address)":"a0ce58b8","wonPurePremiums()":"536c9a43","yieldVault()":"a7f8a5e2"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"policyPool_\",\"type\":\"address\"},{\"internalType\":\"contract IEToken\",\"name\":\"juniorEtk_\",\"type\":\"address\"},{\"internalType\":\"contract IEToken\",\"name\":\"seniorEtk_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountLeft\",\"type\":\"uint256\"}],\"name\":\"CannotBeBorrowed\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"int256\",\"name\":\"currentDeficit\",\"type\":\"int256\"},{\"internalType\":\"int256\",\"name\":\"newMaxDeficit\",\"type\":\"int256\"}],\"name\":\"DeficitExceedsMaxDeficit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newDeficitRatio\",\"type\":\"uint256\"}],\"name\":\"InvalidDeficitRatio\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"}],\"name\":\"InvalidDestination\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"loanLimit\",\"type\":\"uint256\"}],\"name\":\"InvalidLoanLimit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"oldEToken\",\"type\":\"address\"},{\"internalType\":\"contract IEToken\",\"name\":\"newEToken\",\"type\":\"address\"}],\"name\":\"InvalidUpgradeETokenChanged\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidYieldVault\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"losses\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"excess\",\"type\":\"uint256\"}],\"name\":\"LossesCannotExceedMaxDeficit\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"required\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"available\",\"type\":\"uint256\"}],\"name\":\"NotEnoughCash\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OnlyPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ReserveInvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UpgradeCannotChangePolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountRequired\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"surplus\",\"type\":\"int256\"}],\"name\":\"WithdrawExceedsSurplus\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldRatio\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newRatio\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"adjustment\",\"type\":\"uint256\"}],\"name\":\"DeficitRatioChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"earnings\",\"type\":\"int256\"}],\"name\":\"EarningsRecorded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"ErrorIgnoredDeinvestingVault\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldLimit\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newLimit\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"isSenior\",\"type\":\"bool\"}],\"name\":\"LoanLimitChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"moneyIn\",\"type\":\"bool\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"WonPremiumsInOut\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"newVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"forced\",\"type\":\"bool\"}],\"name\":\"YieldVaultChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"activePurePremiums\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"borrowedActivePP\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"deficitRatio\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"depositIntoYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"etks\",\"outputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"fundsAvailable\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"investedInYV\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"jrLoanLimit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"juniorEtk\",\"outputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"policyHolder\",\"type\":\"address\"}],\"name\":\"policyCancelled\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"policyCreated\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"policyExpired\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"oldPolicy\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"newPolicy\",\"type\":\"tuple\"}],\"name\":\"policyReplaced\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"policyHolder\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"policyResolvedWithPayout\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"purePremiums\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"receiveGrant\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"recordEarnings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"repayLoans\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"available\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"seniorEtk\",\"outputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newRatio\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"adjustment\",\"type\":\"bool\"}],\"name\":\"setDeficitRatio\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newLimitJr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"newLimitSr\",\"type\":\"uint256\"}],\"name\":\"setLoanLimits\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"newYieldVault\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"force\",\"type\":\"bool\"}],\"name\":\"setYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"srLoanLimit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"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\":\"surplus\",\"outputs\":[{\"internalType\":\"int256\",\"name\":\"\",\"type\":\"int256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFromYieldVault\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"deinvested\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"}],\"name\":\"withdrawWonPremiums\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"wonPurePremiums\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"yieldVault\",\"outputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"Pure premiums is the part of the premium that is expected to cover the losses. The contract keeps track of the pure premiums of the active policies (_activePurePremiums) and the surplus or deficit generated by the finalized policies (pure premiums collected - losses). Collaborates with a junior {EToken} and a senior {EToken} that act as lenders when the premiums aren't enough to cover the losses.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"CannotBeBorrowed(uint256)\":[{\"params\":{\"amountLeft\":\"The remaining amount that could not be borrowed\"}}],\"DeficitExceedsMaxDeficit(int256,int256)\":[{\"params\":{\"currentDeficit\":\"Current deficit (positive value, i.e., `-surplus`)\",\"newMaxDeficit\":\"New maximum deficit (positive value, i.e., `-maxDeficit`)\"}}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidDeficitRatio(uint256)\":[{\"params\":{\"newDeficitRatio\":\"The proposed ratio (wad)\"}}],\"InvalidDestination(address)\":[{\"params\":{\"destination\":\"The provided destination address\"}}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"InvalidLoanLimit(uint256)\":[{\"params\":{\"loanLimit\":\"The provided limit value\"}}],\"InvalidUpgradeETokenChanged(address,address)\":[{\"details\":\"Upgrades must keep the same junior/senior eToken wiring (unless the current eToken is zero-address).\",\"params\":{\"newEToken\":\"The eToken reported by the new implementation\",\"oldEToken\":\"The currently configured eToken\"}}],\"LossesCannotExceedMaxDeficit(uint256,uint256)\":[{\"details\":\"`excess` is the remaining unpaid amount returned by `_payFromPremiums(losses)` after clamping to `_maxDeficit()`.\",\"params\":{\"excess\":\"The unpaid portion that exceeds the max-deficit capacity\",\"losses\":\"The total losses being applied\"}}],\"NotEnoughCash(uint256,uint256)\":[{\"params\":{\"available\":\"The currently available liquid balance\",\"required\":\"The requested amount of liquid funds\"}}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"ReserveInvalidReceiver(address)\":[{\"params\":{\"receiver\":\"The receiver that was provided (cannot be the zero address)\"}}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}],\"WithdrawExceedsSurplus(uint256,int256)\":[{\"params\":{\"amountRequired\":\"The requested amount to withdraw\",\"surplus\":\"The current surplus (can be negative)\"}}]},\"events\":{\"DeficitRatioChanged(uint256,uint256,uint256)\":{\"params\":{\"adjustment\":\"Adjustement (etk loan) made to adjust the contract, so deficit <= maxDeficit\",\"newRatio\":\"Ratio after the change\",\"oldRatio\":\"Ratio before the change\"}},\"EarningsRecorded(int256)\":{\"params\":{\"earnings\":\"The amount of earnings generated since last record. It's positive in the case of earnings or negative when there are losses.\"}},\"ErrorIgnoredDeinvestingVault(address,uint256)\":{\"params\":{\"oldVault\":\"The vault that failed to redeem\",\"shares\":\"The number of shares attempted to redeem\"}},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"LoanLimitChanged(uint256,uint256,bool)\":{\"params\":{\"isSenior\":\"If true, the limit changed is the senior limit, otherwise is the junior limit\",\"newLimit\":\"Limit after the change\",\"oldLimit\":\"Limit before the change\"}},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"},\"WonPremiumsInOut(bool,uint256)\":{\"details\":\"Emitted by `receiveGrant` when funds are received without liability, and by `withdrawWonPremiums` when surplus is withdrawn (typically to the treasury).\",\"params\":{\"moneyIn\":\"Indicates if money came in or out (false).\",\"value\":\"The amount of money received or given\"}},\"YieldVaultChanged(address,address,bool)\":{\"details\":\"When replacing an existing vault, the reserve attempts to redeem the full position (unless `force` is used).\",\"params\":{\"forced\":\"True if the switch ignored a partial/failed deinvestment and proceeded anyway\",\"newVault\":\"The new yield vault (can be `address(0)`)\",\"oldVault\":\"The previous yield vault (can be `address(0)`)\"}}},\"kind\":\"dev\",\"methods\":{\"activePurePremiums()\":{\"details\":\"Returns the total amount of pure premiums that were collected by the active policies of the risk modules linked to this PremiumsAccount.\"},\"borrowedActivePP()\":{\"details\":\"Returns the amount of active pure premiums that was used to cover payouts of finalized policies (in excess of collected pure premiums). This is limited by `_maxDeficit()`\"},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"deficitRatio()\":{\"details\":\"Returns the percentage of the active pure premiums that can be used to cover losses of finalized policies.\"},\"depositIntoYieldVault(uint256)\":{\"custom:pre\":\"_balance() >= amount\",\"params\":{\"amount\":\"Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`\"}},\"fundsAvailable()\":{\"details\":\"Returns the amount of funds available to cover losses or repay eToken loans.\"},\"initialize()\":{\"details\":\"Initializes the PremiumsAccount\"},\"jrLoanLimit()\":{\"details\":\"Returns the limit on the Junior eToken loans (infinite if _params.jrLoanLimit == 0)\"},\"policyCancelled((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256,address)\":{\"params\":{\"jrCocRefund\":\"The jrCoc that will be reimbursed to the policy holder\",\"policyHolder\":\"Owner of the policy that will receive the reimbursement\",\"policyToCancel\":\"The policy that is being cancelled\",\"purePremiumRefund\":\"The pure premium amount that will be reimbursed to the policy holder\",\"srCocRefund\":\"The srCoc that will be reimbursed to the policy holder\"}},\"policyCreated((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"params\":{\"policy\":\"The policy to add (created in this transaction)\"}},\"policyExpired((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"params\":{\"policy\":\"The policy that has expired\"}},\"policyReplaced((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"params\":{\"newPolicy\":\"The policy that will replace the old one (created in this transaction)\",\"oldPolicy\":\"The policy to replace (created in a previous transaction)\"}},\"policyResolvedWithPayout(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"params\":{\"payout\":\"The amount that has to be transferred to `policyHolder`\",\"policy\":\"The policy that was resolved\",\"policyHolder\":\"The one that will receive the payout\"}},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"receiveGrant(uint256)\":{\"custom:emits\":\"{WonPremiumsInOut} with `moneyIn = true`\",\"custom:pre\":\"`msg.sender` approved `currency()` to this contract for at least `amount`\",\"details\":\"Can be used for example if the PolicyPool subscribes an excess loss policy with other company.\",\"params\":{\"amount\":\"The amount to be transferred.\"}},\"recordEarnings()\":{\"custom:emits\":\"{EarningsRecorded}\",\"details\":\"Computes the value of the assets invested in the yieldVault() and then calls `_yieldEarnings` to      reflect the earnings/losses in the way defined for each reserve.\"},\"repayLoans()\":{\"returns\":{\"available\":\"The funds still available after repayment\"}},\"setDeficitRatio(uint256,bool)\":{\"custom:emits\":\"{DeficitRatioChanged}\",\"custom:pre\":\"`newRatio <= WAD``newRatio` must be exactly representable with 4 decimals:             `uint256(uint16(newRatio / FOUR_DECIMAL_TO_WAD)) * FOUR_DECIMAL_TO_WAD == newRatio`If `adjustment == false`, then `_surplus >= _maxDeficit(newRatio)`\",\"custom:throws\":\"{InvalidDeficitRatio} if `newRatio` is out of range or not representable with 4 decimals{DeficitExceedsMaxDeficit} if `adjustment == false` and `_surplus < _maxDeficit(newRatio)`\",\"params\":{\"adjustment\":\"If true, allows borrowing from eTokens to satisfy the new max-deficit bound when needed.\",\"newRatio\":\"New deficit ratio (wad). Must be `<= WAD` and exactly representable with 4 decimals                 (multiple of `FOUR_DECIMAL_TO_WAD`).\"}},\"setLoanLimits(uint256,uint256)\":{\"custom:emits\":\"{LoanLimitChanged} once per updated limit (up to two emits)\",\"custom:pre\":\"For each limit `newLimit` that is updated (`newLimit != type(uint256).max`), it must be representable with 0 decimals:             `_toAmount(_toZeroDecimals(newLimit)) == newLimit`\",\"custom:throws\":\"{InvalidLoanLimit} if any provided limit cannot be packed/unpacked without losing precision\",\"params\":{\"newLimitJr\":\"The new limit to be set for the loans taken from the Junior eToken.                   If newLimitJr == MAX_UINT, it's ignored. If == 0, means the loans are unbounded.\",\"newLimitSr\":\"The new limit to be set for the loans taken from the Senior eToken.                   If newLimitSr == MAX_UINT, it's ignored. If == 0, means the loans are unbounded.\"}},\"setYieldVault(address,bool)\":{\"custom:emits\":\"{YieldVaultChanged}\",\"params\":{\"force\":\"When a previous yield vault exists, before setting the new one, the funds are deinvested. When              `force` is true, an error in the deinvestment of the assets (or some assets not withdrawable)              will be ignored. When `force` is false, it will revert if `oldVault.balanceOf(address(this)) != 0`.\",\"newYieldVault\":\"The address of the new yield vault to assign to the reserve. If is `address(0)` it means                      the reserve will not have a yield vault. If not `address(0)` it MUST be an IERC4626                      where `newYieldVault.asset()` equals `.currency()`\"}},\"srLoanLimit()\":{\"details\":\"Returns the limit on the Senior eToken loans (infinite if _params.srLoanLimit == 0)\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"surplus()\":{\"details\":\"Returns the surplus between pure premiums collected and payouts of finalized policies. Losses where more than premiums collected, returns a negative number that indicates the amount of the active pure premiums that was used to cover finalized premiums.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"},\"withdrawFromYieldVault(uint256)\":{\"custom:pre\":\"yieldVault() != address(0)yieldVault().maxWithdraw(address(this)) >= amount             (this condition is not checked here; exceeding it is expected to revert in the vault during _deinvest()).\",\"params\":{\"amount\":\"Amount to withdraw from the `yieldVault()`. If equal type(uint256).max, deinvests maxWithdraw()\"},\"returns\":{\"deinvested\":\"The amount that was deinvested and added as liquid funds to the reserve\"}},\"withdrawWonPremiums(uint256,address)\":{\"custom:emits\":\"{WonPremiumsInOut} with `moneyIn = false`\",\"custom:pre\":\"`destination != address(0)`If `amount != type(uint256).max`, then `int256(amount) <= _surplus`\",\"custom:throws\":\"{InvalidDestination} if `destination == address(0)`{WithdrawExceedsSurplus} if `amount != type(uint256).max` and `int256(amount) > _surplus`\",\"details\":\"This might be needed in some cases for example if we are deprecating the protocol or the excess premiums are needed to compensate something. Or to extract profits accrued either by Ensuro or the partners.\",\"params\":{\"amount\":\"The amount to withdraw. If amount == type(uint256).max it withdraws as much as possible and doesn't               fails. If amount != type(uint256).max it tries to withdraw that amount or it fails\",\"destination\":\"The address that will receive the transferred funds.\"},\"returns\":{\"_0\":\"Returns the actual amount withdrawn.\"}},\"wonPurePremiums()\":{\"details\":\"Returns the surplus between pure premiums collected and payouts of finalized policies. Returns 0 if no surplus or deficit.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"},\"_activePurePremiums\":{\"details\":\"The active pure premiums field keeps track of the pure premiums collected by the active policies of risk modules linked with this PremiumsAccount.\"},\"_juniorEtk\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"},\"_seniorEtk\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"},\"_surplus\":{\"details\":\"The surplus field keeps track of the surplus or deficit (when negative) of the actual payouts made by the PremiumsAccount versus the collected pure premiums. On the negative side, it has a limit defined by `_maxDeficit()`, after that limit, internal loans are taken from the eTokens.\"}},\"title\":\"Ensuro Premiums Account\",\"version\":1},\"userdoc\":{\"errors\":{\"CannotBeBorrowed(uint256)\":[{\"notice\":\"Thrown when the required funds cannot be fully borrowed from the configured eTokens within their limits.\"}],\"DeficitExceedsMaxDeficit(int256,int256)\":[{\"notice\":\"Thrown when attempting to set a deficit ratio without adjustment while the current deficit exceeds the new maximum allowed deficit.\"}],\"InvalidDeficitRatio(uint256)\":[{\"notice\":\"Thrown when a new deficit ratio is invalid (out of range or not representable with 4 decimals).\"}],\"InvalidDestination(address)\":[{\"notice\":\"Thrown when the destination address is invalid.\"}],\"InvalidLoanLimit(uint256)\":[{\"notice\":\"Thrown when a loan limit cannot be represented with 0 decimals when packing/unpacking.\"}],\"InvalidUpgradeETokenChanged(address,address)\":[{\"notice\":\"Thrown during upgrade validation if the configured eToken addresses change unexpectedly.\"}],\"InvalidYieldVault()\":[{\"notice\":\"Thrown when the yield vault is unset or invalid for the configured currency.\"}],\"LossesCannotExceedMaxDeficit(uint256,uint256)\":[{\"notice\":\"Thrown when yield-vault losses would push the account below its maximum allowed deficit.\"}],\"NotEnoughCash(uint256,uint256)\":[{\"notice\":\"Thrown when trying to invest more cash than currently liquid in the reserve.\"}],\"ReserveInvalidReceiver(address)\":[{\"notice\":\"Thrown when attempting to transfer to the zero address.\"}],\"WithdrawExceedsSurplus(uint256,int256)\":[{\"notice\":\"Thrown when attempting to withdraw more than the current surplus (when `amount != type(uint256).max`).\"}]},\"events\":{\"DeficitRatioChanged(uint256,uint256,uint256)\":{\"notice\":\"Emitted when the deficitRatio is changed\"},\"EarningsRecorded(int256)\":{\"notice\":\"Event emitted when investment yields are accounted in the reserve\"},\"ErrorIgnoredDeinvestingVault(address,uint256)\":{\"notice\":\"Emitted when a forced deinvestment ignored a redeem failure.\"},\"LoanLimitChanged(uint256,uint256,bool)\":{\"notice\":\"Emitted when the loan limits are changed\"},\"WonPremiumsInOut(bool,uint256)\":{\"notice\":\"Emitted when \\\"won premiums\\\" move in or out of the PremiumsAccount.\"},\"YieldVaultChanged(address,address,bool)\":{\"notice\":\"Emitted when the yield vault is changed.\"}},\"kind\":\"user\",\"methods\":{\"depositIntoYieldVault(uint256)\":{\"notice\":\"Moves money that's liquid in the contract to the yield vault, to generate yields\"},\"etks()\":{\"notice\":\"Returns the juniorEtk and seniorEtk. See {juniorEtk()} and {seniorEtk()}\"},\"investedInYV()\":{\"notice\":\"Returns the amount of funds that were invested in the yieldVault, up to the last recorded earnings / losses\"},\"juniorEtk()\":{\"notice\":\"The junior eToken, the primary source of solvency, used if the premiums account is exhausted.\"},\"policyCancelled((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256,address)\":{\"notice\":\"Reflects the cancellation of a policy, doing the required refunds.\"},\"policyCreated((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Adds a policy to the PremiumsAccount. Stores the pure premiums and locks the aditional funds from junior and senior eTokens.\"},\"policyExpired((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"The PremiumsAccount is notified that the policy has expired, unlocks the SCR and earns the pure premium.\"},\"policyPool()\":{\"notice\":\"Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\"},\"policyReplaced((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Replaces a policy with another in PremiumsAccount. Stores the pure premiums difference and re-locks the aditional funds from junior and senior eTokens.\"},\"policyResolvedWithPayout(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"notice\":\"The PremiumsAccount is notified that the policy was resolved and issues the payout to the policyHolder.\"},\"purePremiums()\":{\"notice\":\"The total amount of premiums hold by this PremiumsAccount\"},\"receiveGrant(uint256)\":{\"notice\":\"Endpoint to receive \\\"free money\\\" and inject that money into the premium pool.\"},\"repayLoans()\":{\"notice\":\"Function that repays the loan(s) if fundsAvailable\"},\"seniorEtk()\":{\"notice\":\"The senior eToken, the secondary source of solvency, used if the premiums account is exhausted and junior too\"},\"setDeficitRatio(uint256,bool)\":{\"notice\":\"Changes the `deficitRatio` parameter.\"},\"setLoanLimits(uint256,uint256)\":{\"notice\":\"Changes the `jrLoanLimit` or `srLoanLimit` parameter.\"},\"setYieldVault(address,bool)\":{\"notice\":\"Sets the new yield vault for this reserve. If the reserve had previously a yield vault, it will deinvest all the funds, making all of the liquid in the reserve balance.\"},\"withdrawFromYieldVault(uint256)\":{\"notice\":\"Deinvest from the vault a given amount.\"},\"withdrawWonPremiums(uint256,address)\":{\"notice\":\"Withdraws excess premiums (surplus) to the destination.\"},\"yieldVault()\":{\"notice\":\"Returns the address of the yield vault, where the part of the funds are invested to generate additional      yields. Can be `address(0)` if no yieldVault has been set.\"}},\"notice\":\"This contract holds the pure premiums of a set of risk modules.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/PremiumsAccount.sol\":\"PremiumsAccount\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/PolicyPoolComponent.sol\":{\"keccak256\":\"0x59be0e577af81ab215ac850da84692d6ae7a465917701260f390bc92240c4707\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://c55648f183f32e74d6d83cfc2a8eb606c75a6c3bc598e8ec2a38f9fb3b676f8c\",\"dweb:/ipfs/QmdDFuZz6cn9ywUuxv4bTY3STMWQMWTAzitbocywFMoByb\"]},\"contracts/PremiumsAccount.sol\":{\"keccak256\":\"0x91ed08362a953b0d5434492fa5a6c75c9d927dca02799e391d42c89c65f20e04\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://d06554497153c92a8a757426c4a4692d087601c01faa2c5eeb7a82db6eb6faac\",\"dweb:/ipfs/QmXkASFUm6f4xBqx6sRoVzeN7p2fgRtkoee9uZbuifhPuD\"]},\"contracts/Reserve.sol\":{\"keccak256\":\"0x2c4bd6d6c13fd006af456f228df1242eb857f5ec27fe09175579ded50dc28392\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b573114bbfb87368b5fbc535b2bf05b4bffb797618054f54e589eb078c6d4a9e\",\"dweb:/ipfs/QmP3gkDPDYhdLVh86nAtndb4CGNTMdM2FNantCKPTjD3TA\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":25608,"contract":"contracts/PremiumsAccount.sol:PremiumsAccount","label":"__gap","offset":0,"slot":"0","type":"t_array(t_uint256)50_storage"},{"astId":27384,"contract":"contracts/PremiumsAccount.sol:PremiumsAccount","label":"_invested","offset":0,"slot":"50","type":"t_uint256"},{"astId":28014,"contract":"contracts/PremiumsAccount.sol:PremiumsAccount","label":"__gap","offset":0,"slot":"51","type":"t_array(t_uint256)49_storage"},{"astId":25670,"contract":"contracts/PremiumsAccount.sol:PremiumsAccount","label":"_activePurePremiums","offset":0,"slot":"100","type":"t_uint256"},{"astId":25673,"contract":"contracts/PremiumsAccount.sol:PremiumsAccount","label":"_surplus","offset":0,"slot":"101","type":"t_int256"},{"astId":25687,"contract":"contracts/PremiumsAccount.sol:PremiumsAccount","label":"_params","offset":0,"slot":"102","type":"t_struct(PackedParams)25684_storage"},{"astId":27361,"contract":"contracts/PremiumsAccount.sol:PremiumsAccount","label":"__gap","offset":0,"slot":"103","type":"t_array(t_uint256)47_storage"}],"types":{"t_array(t_uint256)47_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[47]","numberOfBytes":"1504"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_contract(IERC4626)6400":{"encoding":"inplace","label":"contract IERC4626","numberOfBytes":"20"},"t_int256":{"encoding":"inplace","label":"int256","numberOfBytes":"32"},"t_struct(PackedParams)25684_storage":{"encoding":"inplace","label":"struct PremiumsAccount.PackedParams","members":[{"astId":25677,"contract":"contracts/PremiumsAccount.sol:PremiumsAccount","label":"yieldVault","offset":0,"slot":"0","type":"t_contract(IERC4626)6400"},{"astId":25679,"contract":"contracts/PremiumsAccount.sol:PremiumsAccount","label":"jrLoanLimit","offset":20,"slot":"0","type":"t_uint32"},{"astId":25681,"contract":"contracts/PremiumsAccount.sol:PremiumsAccount","label":"srLoanLimit","offset":24,"slot":"0","type":"t_uint32"},{"astId":25683,"contract":"contracts/PremiumsAccount.sol:PremiumsAccount","label":"deficitRatio","offset":28,"slot":"0","type":"t_uint16"}],"numberOfBytes":"32"},"t_uint16":{"encoding":"inplace","label":"uint16","numberOfBytes":"2"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint32":{"encoding":"inplace","label":"uint32","numberOfBytes":"4"}}}}},"contracts/Reserve.sol":{"Reserve":{"abi":[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"InvalidYieldVault","type":"error"},{"inputs":[],"name":"NoZeroPolicyPool","type":"error"},{"inputs":[{"internalType":"uint256","name":"required","type":"uint256"},{"internalType":"uint256","name":"available","type":"uint256"}],"name":"NotEnoughCash","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"OnlyPolicyPool","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ReserveInvalidReceiver","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[],"name":"UpgradeCannotChangePolicyPool","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"int256","name":"earnings","type":"int256"}],"name":"EarningsRecorded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"ErrorIgnoredDeinvestingVault","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":true,"internalType":"contract IERC4626","name":"newVault","type":"address"},{"indexed":false,"internalType":"bool","name":"forced","type":"bool"}],"name":"YieldVaultChanged","type":"event"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositIntoYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"investedInYV","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recordEarnings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC4626","name":"newYieldVault","type":"address"},{"internalType":"bool","name":"force","type":"bool"}],"name":"setYieldVault","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":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFromYieldVault","outputs":[{"internalType":"uint256","name":"deinvested","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yieldVault","outputs":[{"internalType":"contract IERC4626","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","currency()":"e5a6b10f","depositIntoYieldVault(uint256)":"ac860f74","investedInYV()":"7d919a97","policyPool()":"4d15eb03","proxiableUUID()":"52d1902d","recordEarnings()":"4eb978a4","setYieldVault(address,bool)":"194448e5","supportsInterface(bytes4)":"01ffc9a7","upgradeToAndCall(address,bytes)":"4f1ef286","withdrawFromYieldVault(uint256)":"d336078c","yieldVault()":"a7f8a5e2"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidYieldVault\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"required\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"available\",\"type\":\"uint256\"}],\"name\":\"NotEnoughCash\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OnlyPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ReserveInvalidReceiver\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UpgradeCannotChangePolicyPool\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"earnings\",\"type\":\"int256\"}],\"name\":\"EarningsRecorded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"ErrorIgnoredDeinvestingVault\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"newVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"forced\",\"type\":\"bool\"}],\"name\":\"YieldVaultChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"depositIntoYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"investedInYV\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"recordEarnings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"newYieldVault\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"force\",\"type\":\"bool\"}],\"name\":\"setYieldVault\",\"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\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFromYieldVault\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"deinvested\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"yieldVault\",\"outputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"These contracts have an asset manager {IAssetManager} that's a strategy contract that runs in the same context (called with delegatecall) that apply some strategy to reinvest the assets managed by the contract to generate additional returns.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotEnoughCash(uint256,uint256)\":[{\"params\":{\"available\":\"The currently available liquid balance\",\"required\":\"The requested amount of liquid funds\"}}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"ReserveInvalidReceiver(address)\":[{\"params\":{\"receiver\":\"The receiver that was provided (cannot be the zero address)\"}}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"events\":{\"EarningsRecorded(int256)\":{\"params\":{\"earnings\":\"The amount of earnings generated since last record. It's positive in the case of earnings or negative when there are losses.\"}},\"ErrorIgnoredDeinvestingVault(address,uint256)\":{\"params\":{\"oldVault\":\"The vault that failed to redeem\",\"shares\":\"The number of shares attempted to redeem\"}},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"},\"YieldVaultChanged(address,address,bool)\":{\"details\":\"When replacing an existing vault, the reserve attempts to redeem the full position (unless `force` is used).\",\"params\":{\"forced\":\"True if the switch ignored a partial/failed deinvestment and proceeded anyway\",\"newVault\":\"The new yield vault (can be `address(0)`)\",\"oldVault\":\"The previous yield vault (can be `address(0)`)\"}}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"depositIntoYieldVault(uint256)\":{\"custom:pre\":\"_balance() >= amount\",\"params\":{\"amount\":\"Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`\"}},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"recordEarnings()\":{\"custom:emits\":\"{EarningsRecorded}\",\"details\":\"Computes the value of the assets invested in the yieldVault() and then calls `_yieldEarnings` to      reflect the earnings/losses in the way defined for each reserve.\"},\"setYieldVault(address,bool)\":{\"custom:emits\":\"{YieldVaultChanged}\",\"params\":{\"force\":\"When a previous yield vault exists, before setting the new one, the funds are deinvested. When              `force` is true, an error in the deinvestment of the assets (or some assets not withdrawable)              will be ignored. When `force` is false, it will revert if `oldVault.balanceOf(address(this)) != 0`.\",\"newYieldVault\":\"The address of the new yield vault to assign to the reserve. If is `address(0)` it means                      the reserve will not have a yield vault. If not `address(0)` it MUST be an IERC4626                      where `newYieldVault.asset()` equals `.currency()`\"}},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"},\"withdrawFromYieldVault(uint256)\":{\"custom:pre\":\"yieldVault() != address(0)yieldVault().maxWithdraw(address(this)) >= amount             (this condition is not checked here; exceeding it is expected to revert in the vault during _deinvest()).\",\"params\":{\"amount\":\"Amount to withdraw from the `yieldVault()`. If equal type(uint256).max, deinvests maxWithdraw()\"},\"returns\":{\"deinvested\":\"The amount that was deinvested and added as liquid funds to the reserve\"}}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"},\"_invested\":{\"details\":\"Tracks the amount of assets invested in the yieldVault, up to the last time it was recorded\"}},\"title\":\"Base contract for Ensuro cash reserves\",\"version\":1},\"userdoc\":{\"errors\":{\"InvalidYieldVault()\":[{\"notice\":\"Thrown when the yield vault is unset or invalid for the configured currency.\"}],\"NotEnoughCash(uint256,uint256)\":[{\"notice\":\"Thrown when trying to invest more cash than currently liquid in the reserve.\"}],\"ReserveInvalidReceiver(address)\":[{\"notice\":\"Thrown when attempting to transfer to the zero address.\"}]},\"events\":{\"EarningsRecorded(int256)\":{\"notice\":\"Event emitted when investment yields are accounted in the reserve\"},\"ErrorIgnoredDeinvestingVault(address,uint256)\":{\"notice\":\"Emitted when a forced deinvestment ignored a redeem failure.\"},\"YieldVaultChanged(address,address,bool)\":{\"notice\":\"Emitted when the yield vault is changed.\"}},\"kind\":\"user\",\"methods\":{\"depositIntoYieldVault(uint256)\":{\"notice\":\"Moves money that's liquid in the contract to the yield vault, to generate yields\"},\"investedInYV()\":{\"notice\":\"Returns the amount of funds that were invested in the yieldVault, up to the last recorded earnings / losses\"},\"policyPool()\":{\"notice\":\"Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\"},\"setYieldVault(address,bool)\":{\"notice\":\"Sets the new yield vault for this reserve. If the reserve had previously a yield vault, it will deinvest all the funds, making all of the liquid in the reserve balance.\"},\"withdrawFromYieldVault(uint256)\":{\"notice\":\"Deinvest from the vault a given amount.\"},\"yieldVault()\":{\"notice\":\"Returns the address of the yield vault, where the part of the funds are invested to generate additional      yields. Can be `address(0)` if no yieldVault has been set.\"}},\"notice\":\"Implements the methods related with management of the reserves and payments. {EToken} and {PremiumsAccount} inherit from this contract.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/Reserve.sol\":\"Reserve\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/PolicyPoolComponent.sol\":{\"keccak256\":\"0x59be0e577af81ab215ac850da84692d6ae7a465917701260f390bc92240c4707\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://c55648f183f32e74d6d83cfc2a8eb606c75a6c3bc598e8ec2a38f9fb3b676f8c\",\"dweb:/ipfs/QmdDFuZz6cn9ywUuxv4bTY3STMWQMWTAzitbocywFMoByb\"]},\"contracts/Reserve.sol\":{\"keccak256\":\"0x2c4bd6d6c13fd006af456f228df1242eb857f5ec27fe09175579ded50dc28392\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b573114bbfb87368b5fbc535b2bf05b4bffb797618054f54e589eb078c6d4a9e\",\"dweb:/ipfs/QmP3gkDPDYhdLVh86nAtndb4CGNTMdM2FNantCKPTjD3TA\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":25608,"contract":"contracts/Reserve.sol:Reserve","label":"__gap","offset":0,"slot":"0","type":"t_array(t_uint256)50_storage"},{"astId":27384,"contract":"contracts/Reserve.sol:Reserve","label":"_invested","offset":0,"slot":"50","type":"t_uint256"},{"astId":28014,"contract":"contracts/Reserve.sol:Reserve","label":"__gap","offset":0,"slot":"51","type":"t_array(t_uint256)49_storage"}],"types":{"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"contracts/RiskModule.sol":{"RiskModule":{"abi":[{"inputs":[{"internalType":"contract IPolicyPool","name":"policyPool_","type":"address"},{"internalType":"contract IPremiumsAccount","name":"premiumsAccount_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"uint40","name":"now","type":"uint40"}],"name":"ExpirationMustBeInTheFuture","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"customer","type":"address"}],"name":"InvalidCustomer","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[{"internalType":"contract IUnderwriter","name":"uw","type":"address"}],"name":"InvalidUnderwriter","type":"error"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"InvalidWallet","type":"error"},{"inputs":[],"name":"NoZeroPolicyPool","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"OnlyPolicyPool","type":"error"},{"inputs":[{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"PremiumExceedsPayout","type":"error"},{"inputs":[{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"minPremium","type":"uint256"}],"name":"PremiumLessThanMinimum","type":"error"},{"inputs":[],"name":"PremiumsAccountMustBePartOfThePool","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[],"name":"UpgradeCannotChangePolicyPool","type":"error"},{"inputs":[],"name":"UpgradeCannotChangePremiumsAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"},{"indexed":false,"internalType":"address","name":"newWallet","type":"address"}],"name":"PartnerWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract IUnderwriter","name":"oldUW","type":"address"},{"indexed":false,"internalType":"contract IUnderwriter","name":"newUW","type":"address"}],"name":"UnderwriterChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"cancelPolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"components":[{"internalType":"uint256","name":"moc","type":"uint256"},{"internalType":"uint256","name":"jrCollRatio","type":"uint256"},{"internalType":"uint256","name":"collRatio","type":"uint256"},{"internalType":"uint256","name":"ensuroPpFee","type":"uint256"},{"internalType":"uint256","name":"ensuroCocFee","type":"uint256"},{"internalType":"uint256","name":"jrRoc","type":"uint256"},{"internalType":"uint256","name":"srRoc","type":"uint256"}],"internalType":"struct Policy.Params","name":"p","type":"tuple"}],"name":"getMinimumPremium","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"contract IUnderwriter","name":"underwriter_","type":"address"},{"internalType":"address","name":"wallet_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"inputData","type":"bytes[]"},{"internalType":"address","name":"onBehalfOf","type":"address"}],"name":"newPolicies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"inputData","type":"bytes"},{"internalType":"address","name":"onBehalfOf","type":"address"}],"name":"newPolicy","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premiumsAccount","outputs":[{"internalType":"contract IPremiumsAccount","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"replacePolicy","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"resolvePolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IUnderwriter","name":"newUW","type":"address"}],"name":"setUnderwriter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setWallet","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":[],"name":"underwriter","outputs":[{"internalType":"contract IUnderwriter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_25524":{"entryPoint":null,"id":25524,"parameterSlots":1,"returnSlots":0},"@_28122":{"entryPoint":null,"id":28122,"parameterSlots":2,"returnSlots":0},"@_disableInitializers_7172":{"entryPoint":288,"id":7172,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_7217":{"entryPoint":null,"id":7217,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_7203":{"entryPoint":null,"id":7203,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory":{"entryPoint":542,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IPolicyPool_$29171t_contract$_IPremiumsAccount_$29276_fromMemory":{"entryPoint":486,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"validator_revert_contract_IPolicyPool":{"entryPoint":466,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:1118:101","nodeType":"YulBlock","src":"0:1118:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"72:86:101","nodeType":"YulBlock","src":"72:86:101","statements":[{"body":{"nativeSrc":"136:16:101","nodeType":"YulBlock","src":"136:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"145:1:101","nodeType":"YulLiteral","src":"145:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"148:1:101","nodeType":"YulLiteral","src":"148:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"138:6:101","nodeType":"YulIdentifier","src":"138:6:101"},"nativeSrc":"138:12:101","nodeType":"YulFunctionCall","src":"138:12:101"},"nativeSrc":"138:12:101","nodeType":"YulExpressionStatement","src":"138:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"95:5:101","nodeType":"YulIdentifier","src":"95:5:101"},{"arguments":[{"name":"value","nativeSrc":"106:5:101","nodeType":"YulIdentifier","src":"106:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"121:3:101","nodeType":"YulLiteral","src":"121:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"126:1:101","nodeType":"YulLiteral","src":"126:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"117:3:101","nodeType":"YulIdentifier","src":"117:3:101"},"nativeSrc":"117:11:101","nodeType":"YulFunctionCall","src":"117:11:101"},{"kind":"number","nativeSrc":"130:1:101","nodeType":"YulLiteral","src":"130:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"113:3:101","nodeType":"YulIdentifier","src":"113:3:101"},"nativeSrc":"113:19:101","nodeType":"YulFunctionCall","src":"113:19:101"}],"functionName":{"name":"and","nativeSrc":"102:3:101","nodeType":"YulIdentifier","src":"102:3:101"},"nativeSrc":"102:31:101","nodeType":"YulFunctionCall","src":"102:31:101"}],"functionName":{"name":"eq","nativeSrc":"92:2:101","nodeType":"YulIdentifier","src":"92:2:101"},"nativeSrc":"92:42:101","nodeType":"YulFunctionCall","src":"92:42:101"}],"functionName":{"name":"iszero","nativeSrc":"85:6:101","nodeType":"YulIdentifier","src":"85:6:101"},"nativeSrc":"85:50:101","nodeType":"YulFunctionCall","src":"85:50:101"},"nativeSrc":"82:70:101","nodeType":"YulIf","src":"82:70:101"}]},"name":"validator_revert_contract_IPolicyPool","nativeSrc":"14:144:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"61:5:101","nodeType":"YulTypedName","src":"61:5:101","type":""}],"src":"14:144:101"},{"body":{"nativeSrc":"308:313:101","nodeType":"YulBlock","src":"308:313:101","statements":[{"body":{"nativeSrc":"354:16:101","nodeType":"YulBlock","src":"354:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"363:1:101","nodeType":"YulLiteral","src":"363:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"366:1:101","nodeType":"YulLiteral","src":"366:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"356:6:101","nodeType":"YulIdentifier","src":"356:6:101"},"nativeSrc":"356:12:101","nodeType":"YulFunctionCall","src":"356:12:101"},"nativeSrc":"356:12:101","nodeType":"YulExpressionStatement","src":"356:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"329:7:101","nodeType":"YulIdentifier","src":"329:7:101"},{"name":"headStart","nativeSrc":"338:9:101","nodeType":"YulIdentifier","src":"338:9:101"}],"functionName":{"name":"sub","nativeSrc":"325:3:101","nodeType":"YulIdentifier","src":"325:3:101"},"nativeSrc":"325:23:101","nodeType":"YulFunctionCall","src":"325:23:101"},{"kind":"number","nativeSrc":"350:2:101","nodeType":"YulLiteral","src":"350:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"321:3:101","nodeType":"YulIdentifier","src":"321:3:101"},"nativeSrc":"321:32:101","nodeType":"YulFunctionCall","src":"321:32:101"},"nativeSrc":"318:52:101","nodeType":"YulIf","src":"318:52:101"},{"nativeSrc":"379:29:101","nodeType":"YulVariableDeclaration","src":"379:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"398:9:101","nodeType":"YulIdentifier","src":"398:9:101"}],"functionName":{"name":"mload","nativeSrc":"392:5:101","nodeType":"YulIdentifier","src":"392:5:101"},"nativeSrc":"392:16:101","nodeType":"YulFunctionCall","src":"392:16:101"},"variables":[{"name":"value","nativeSrc":"383:5:101","nodeType":"YulTypedName","src":"383:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"455:5:101","nodeType":"YulIdentifier","src":"455:5:101"}],"functionName":{"name":"validator_revert_contract_IPolicyPool","nativeSrc":"417:37:101","nodeType":"YulIdentifier","src":"417:37:101"},"nativeSrc":"417:44:101","nodeType":"YulFunctionCall","src":"417:44:101"},"nativeSrc":"417:44:101","nodeType":"YulExpressionStatement","src":"417:44:101"},{"nativeSrc":"470:15:101","nodeType":"YulAssignment","src":"470:15:101","value":{"name":"value","nativeSrc":"480:5:101","nodeType":"YulIdentifier","src":"480:5:101"},"variableNames":[{"name":"value0","nativeSrc":"470:6:101","nodeType":"YulIdentifier","src":"470:6:101"}]},{"nativeSrc":"494:40:101","nodeType":"YulVariableDeclaration","src":"494:40:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"519:9:101","nodeType":"YulIdentifier","src":"519:9:101"},{"kind":"number","nativeSrc":"530:2:101","nodeType":"YulLiteral","src":"530:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"515:3:101","nodeType":"YulIdentifier","src":"515:3:101"},"nativeSrc":"515:18:101","nodeType":"YulFunctionCall","src":"515:18:101"}],"functionName":{"name":"mload","nativeSrc":"509:5:101","nodeType":"YulIdentifier","src":"509:5:101"},"nativeSrc":"509:25:101","nodeType":"YulFunctionCall","src":"509:25:101"},"variables":[{"name":"value_1","nativeSrc":"498:7:101","nodeType":"YulTypedName","src":"498:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"581:7:101","nodeType":"YulIdentifier","src":"581:7:101"}],"functionName":{"name":"validator_revert_contract_IPolicyPool","nativeSrc":"543:37:101","nodeType":"YulIdentifier","src":"543:37:101"},"nativeSrc":"543:46:101","nodeType":"YulFunctionCall","src":"543:46:101"},"nativeSrc":"543:46:101","nodeType":"YulExpressionStatement","src":"543:46:101"},{"nativeSrc":"598:17:101","nodeType":"YulAssignment","src":"598:17:101","value":{"name":"value_1","nativeSrc":"608:7:101","nodeType":"YulIdentifier","src":"608:7:101"},"variableNames":[{"name":"value1","nativeSrc":"598:6:101","nodeType":"YulIdentifier","src":"598:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$29171t_contract$_IPremiumsAccount_$29276_fromMemory","nativeSrc":"163:458:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"266:9:101","nodeType":"YulTypedName","src":"266:9:101","type":""},{"name":"dataEnd","nativeSrc":"277:7:101","nodeType":"YulTypedName","src":"277:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"289:6:101","nodeType":"YulTypedName","src":"289:6:101","type":""},{"name":"value1","nativeSrc":"297:6:101","nodeType":"YulTypedName","src":"297:6:101","type":""}],"src":"163:458:101"},{"body":{"nativeSrc":"728:183:101","nodeType":"YulBlock","src":"728:183:101","statements":[{"body":{"nativeSrc":"774:16:101","nodeType":"YulBlock","src":"774:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"783:1:101","nodeType":"YulLiteral","src":"783:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"786:1:101","nodeType":"YulLiteral","src":"786:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"776:6:101","nodeType":"YulIdentifier","src":"776:6:101"},"nativeSrc":"776:12:101","nodeType":"YulFunctionCall","src":"776:12:101"},"nativeSrc":"776:12:101","nodeType":"YulExpressionStatement","src":"776:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"749:7:101","nodeType":"YulIdentifier","src":"749:7:101"},{"name":"headStart","nativeSrc":"758:9:101","nodeType":"YulIdentifier","src":"758:9:101"}],"functionName":{"name":"sub","nativeSrc":"745:3:101","nodeType":"YulIdentifier","src":"745:3:101"},"nativeSrc":"745:23:101","nodeType":"YulFunctionCall","src":"745:23:101"},{"kind":"number","nativeSrc":"770:2:101","nodeType":"YulLiteral","src":"770:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"741:3:101","nodeType":"YulIdentifier","src":"741:3:101"},"nativeSrc":"741:32:101","nodeType":"YulFunctionCall","src":"741:32:101"},"nativeSrc":"738:52:101","nodeType":"YulIf","src":"738:52:101"},{"nativeSrc":"799:29:101","nodeType":"YulVariableDeclaration","src":"799:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"818:9:101","nodeType":"YulIdentifier","src":"818:9:101"}],"functionName":{"name":"mload","nativeSrc":"812:5:101","nodeType":"YulIdentifier","src":"812:5:101"},"nativeSrc":"812:16:101","nodeType":"YulFunctionCall","src":"812:16:101"},"variables":[{"name":"value","nativeSrc":"803:5:101","nodeType":"YulTypedName","src":"803:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"875:5:101","nodeType":"YulIdentifier","src":"875:5:101"}],"functionName":{"name":"validator_revert_contract_IPolicyPool","nativeSrc":"837:37:101","nodeType":"YulIdentifier","src":"837:37:101"},"nativeSrc":"837:44:101","nodeType":"YulFunctionCall","src":"837:44:101"},"nativeSrc":"837:44:101","nodeType":"YulExpressionStatement","src":"837:44:101"},{"nativeSrc":"890:15:101","nodeType":"YulAssignment","src":"890:15:101","value":{"name":"value","nativeSrc":"900:5:101","nodeType":"YulIdentifier","src":"900:5:101"},"variableNames":[{"name":"value0","nativeSrc":"890:6:101","nodeType":"YulIdentifier","src":"890:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory","nativeSrc":"626:285:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"694:9:101","nodeType":"YulTypedName","src":"694:9:101","type":""},{"name":"dataEnd","nativeSrc":"705:7:101","nodeType":"YulTypedName","src":"705:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"717:6:101","nodeType":"YulTypedName","src":"717:6:101","type":""}],"src":"626:285:101"},{"body":{"nativeSrc":"1015:101:101","nodeType":"YulBlock","src":"1015:101:101","statements":[{"nativeSrc":"1025:26:101","nodeType":"YulAssignment","src":"1025:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1037:9:101","nodeType":"YulIdentifier","src":"1037:9:101"},{"kind":"number","nativeSrc":"1048:2:101","nodeType":"YulLiteral","src":"1048:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1033:3:101","nodeType":"YulIdentifier","src":"1033:3:101"},"nativeSrc":"1033:18:101","nodeType":"YulFunctionCall","src":"1033:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1025:4:101","nodeType":"YulIdentifier","src":"1025:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1067:9:101","nodeType":"YulIdentifier","src":"1067:9:101"},{"arguments":[{"name":"value0","nativeSrc":"1082:6:101","nodeType":"YulIdentifier","src":"1082:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1098:2:101","nodeType":"YulLiteral","src":"1098:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"1102:1:101","nodeType":"YulLiteral","src":"1102:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1094:3:101","nodeType":"YulIdentifier","src":"1094:3:101"},"nativeSrc":"1094:10:101","nodeType":"YulFunctionCall","src":"1094:10:101"},{"kind":"number","nativeSrc":"1106:1:101","nodeType":"YulLiteral","src":"1106:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1090:3:101","nodeType":"YulIdentifier","src":"1090:3:101"},"nativeSrc":"1090:18:101","nodeType":"YulFunctionCall","src":"1090:18:101"}],"functionName":{"name":"and","nativeSrc":"1078:3:101","nodeType":"YulIdentifier","src":"1078:3:101"},"nativeSrc":"1078:31:101","nodeType":"YulFunctionCall","src":"1078:31:101"}],"functionName":{"name":"mstore","nativeSrc":"1060:6:101","nodeType":"YulIdentifier","src":"1060:6:101"},"nativeSrc":"1060:50:101","nodeType":"YulFunctionCall","src":"1060:50:101"},"nativeSrc":"1060:50:101","nodeType":"YulExpressionStatement","src":"1060:50:101"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"916:200:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"984:9:101","nodeType":"YulTypedName","src":"984:9:101","type":""},{"name":"value0","nativeSrc":"995:6:101","nodeType":"YulTypedName","src":"995:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1006:4:101","nodeType":"YulTypedName","src":"1006:4:101","type":""}],"src":"916:200:101"}]},"contents":"{\n    { }\n    function validator_revert_contract_IPolicyPool(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$29171t_contract$_IPremiumsAccount_$29276_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IPolicyPool(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IPolicyPool(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IPolicyPool(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(64, 1), 1)))\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60e060405230608052348015610013575f5ffd5b50604051612323380380612323833981016040819052610032916101e6565b816001600160a01b03811661005a57604051636b23cf0160e01b815260040160405180910390fd5b610062610120565b806001600160a01b031660a0816001600160a01b03168152505050816001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa1580156100c3573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906100e7919061021e565b6001600160a01b03161461010e5760405163fec343d560e01b815260040160405180910390fd5b6001600160a01b031660c05250610240565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156101705760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101cf5780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6001600160a01b03811681146101cf575f5ffd5b5f5f604083850312156101f7575f5ffd5b8251610202816101d2565b6020840151909250610213816101d2565b809150509250929050565b5f6020828403121561022e575f5ffd5b8151610239816101d2565b9392505050565b60805160a05160c05161207a6102a95f395f818161028d015261129901525f81816101d70152818161071e0152818161082e01528181610a0001528181610aa301528181610bac01526113e501525f8181610edb01528181610f04015261104e015261207a5ff3fe608060405260043610610105575f3560e01c806368beecf911610092578063ad3cb1cc11610062578063ad3cb1cc146102ef578063bd644c561461032c578063deaa59df1461034b578063e5a6b10f1461036a578063f00db2601461037e575f5ffd5b806368beecf91461025357806373a952e81461027f57806373d0efd0146102b15780638dab1952146102d0575f5ffd5b8063485cc955116100d8578063485cc955146101aa5780634d15eb03146101c95780634f1ef2861461020f578063521eb2731461022257806352d1902d1461023f575f5ffd5b806301ffc9a71461010957806308bb5f7b1461013d5780631f0f3e181461015e57806323d09ac91461017d575b5f5ffd5b348015610114575f5ffd5b50610128610123366004611650565b61039b565b60405190151581526020015b60405180910390f35b348015610148575f5ffd5b5061015c61015736600461168b565b6103c6565b005b348015610169575f5ffd5b5061015c6101783660046116a6565b610469565b348015610188575f5ffd5b5061019c6101973660046117d7565b6104af565b604051908152602001610134565b3480156101b5575f5ffd5b5061015c6101c4366004611889565b6104cb565b3480156101d4575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610134565b61015c61021d3660046118c0565b6105c4565b34801561022d575f5ffd5b506033546001600160a01b03166101f7565b34801561024a575f5ffd5b5061019c6105e3565b34801561025e575f5ffd5b5061027261026d3660046119a9565b6105fe565b6040516101349190611a7e565b34801561028a575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000006101f7565b3480156102bc575f5ffd5b5061015c6102cb3660046119a9565b6107a8565b3480156102db575f5ffd5b506102726102ea366004611a8d565b6108b3565b3480156102fa575f5ffd5b5061031f604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516101349190611ad4565b348015610337575f5ffd5b5061015c610346366004611b09565b610a8c565b348015610356575f5ffd5b5061015c61036536600461168b565b610b0b565b348015610375575f5ffd5b506101f7610ba9565b348015610389575f5ffd5b506032546001600160a01b03166101f7565b5f6103a582610c2f565b806103c057506001600160e01b031982166321b7e09b60e01b145b92915050565b806001600160a01b0381166103ff57604051633f8317d160e21b81526001600160a01b0390911660048201526024015b60405180910390fd5b50603254604080516001600160a01b03928316815291831660208301527fae536502f25a82de70abed467008489d54fa0cbf58cdc51718efe6d49406724f910160405180910390a1603280546001600160a01b0319166001600160a01b0392909216919091179055565b5f5b828110156104a9576104a084848381811061048857610488611b3a565b905060200281019061049a9190611b4e565b846108b3565b5060010161046b565b50505050565b5f6104bd8287878688610c64565b60e001519695505050505050565b5f6104d4610e8e565b805490915060ff600160401b82041615906001600160401b03165f811580156104fa5750825b90505f826001600160401b031660011480156105155750303b155b905081158015610523575080155b156105415760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561056b57845460ff60401b1916600160401b1785555b6105758787610eb6565b83156105bb57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6105cc610ed0565b6105d582610f76565b6105df8282610f82565b5050565b5f6105ec611043565b505f5160206120255f395f51905f5290565b6106066115ed565b603254604051634dd4a16b60e11b81525f918291829182918291829182916001600160a01b031690639ba942d6906106469030908e908e90600401611b90565b61030060405180830381865afa158015610662573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106869190611cf8565b96509650965096509650965096505f1985036106b1576106ae868589610140015186856104af565b94505b4264ffffffffff168364ffffffffff1610156106f15760405163a67fcb1d60e01b815264ffffffffff8085166004830152421660248201526044016103f6565b61070481868887878c610140015161108c565b60405163663d833760e01b81529098506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063663d833790610759908a908c9033908890600401611d71565b6020604051808303815f875af1158015610775573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107999190611db9565b88525050505050505092915050565b60325460405163197c2bfd60e11b81525f918291829182916001600160a01b03909116906332f857fa906107e49030908a908a90600401611b90565b6101e060405180830381865afa158015610800573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108249190611dd0565b93509350935093507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316636f520b73858585856040518563ffffffff1660e01b815260040161087e9493929190611e0f565b5f604051808303815f87803b158015610895575f5ffd5b505af11580156108a7573d5f5f3e3d5ffd5b50505050505050505050565b6108bb6115ed565b603254604051635d04bd1560e11b81525f91829182918291829182916001600160a01b039091169063ba097a2a906108fb9030908e908e90600401611b90565b61018060405180830381865afa158015610917573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061093b9190611e3c565b9550955095509550955095505f4290505f1986036109635761096087868387866104af565b95505b838164ffffffffff808216908316116109a05760405163a67fcb1d60e01b815264ffffffffff9283166004820152911660248201526044016103f6565b508990506001600160a01b0381166109d757604051632c74914160e11b81526001600160a01b0390911660048201526024016103f6565b506109e682878988888661108c565b604051630d100acb60e01b81529098506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690630d100acb90610a3b908b9033908e908990600401611e9d565b6020604051808303815f875af1158015610a57573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7b9190611db9565b8852505050505050505b9392505050565b604051635eb2262b60e11b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063bd644c5690610ada9085908590600401611edf565b5f604051808303815f87803b158015610af1575f5ffd5b505af1158015610b03573d5f5f3e3d5ffd5b505050505050565b806001600160a01b038116610b3f57604051633146914d60e11b81526001600160a01b0390911660048201526024016103f6565b50603354604080516001600160a01b03928316815291831660208301527fe3d815eb4e0fdd9b02285235cb46b09f34bee9bd0eb8d8dc3a1fe84694079bc2910160405180910390a1603380546001600160a01b0319166001600160a01b0392909216919091179055565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c06573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c2a9190611f87565b905090565b5f6001600160e01b031982166301ffc9a760e01b14806103c057506001600160e01b03198216634d15eb0360e01b1492915050565b610ca46040518061010001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b8551610cc590670de0b6b3a7640000610cbe888883611193565b9190611193565b81526020860151610ce0908690670de0b6b3a7640000611193565b6020820181905281511015610d0a578051602082018051610d02908390611fb6565b905250610d11565b5f60208201525b6040860151610d2a908690670de0b6b3a7640000611193565b604082015260208101518151610d409190611fc9565b81604001511115610d755760208101518151610d5c9190611fc9565b81604001818151610d6d9190611fb6565b905250610d7c565b5f60408201525b610dc1610d898385611fdc565b64ffffffffff168760a00151610d9f9190611ff9565b610db56301e13380670de0b6b3a7640000611ff9565b60208401519190611193565b6060820152610e0b610dd38385611fdc565b64ffffffffff168760c00151610de99190611ff9565b610dff6301e13380670de0b6b3a7640000611ff9565b60408401519190611193565b6080820181905260608201515f91610e2291611fc9565b6080880151909150610e3e908290670de0b6b3a7640000611193565b60608801518351610e5791670de0b6b3a7640000611193565b610e619190611fc9565b60a0830181905282518291610e7591611fc9565b610e7f9190611fc9565b60e08301525095945050505050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a006103c0565b610ebe611243565b610ec6611268565b6105df8282611270565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480610f5657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610f4a5f5160206120255f395f51905f52546001600160a01b031690565b6001600160a01b031614155b15610f745760405163703e46dd60e11b815260040160405180910390fd5b565b610f7f8161128a565b50565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015610fdc575060408051601f3d908101601f19168201909252610fd991810190611db9565b60015b61100457604051634c9c8ce360e01b81526001600160a01b03831660048201526024016103f6565b5f5160206120255f395f51905f52811461103457604051632a87526960e21b8152600481018290526024016103f6565b61103e8383611348565b505050565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f745760405163703e46dd60e11b815260040160405180910390fd5b6110946115ed565b85858082106110bf5760405163319308d960e11b8152600481019290925260248201526044016103f6565b50506110c96115ed565b602081018690526080810185905264ffffffffff80841661014083015284166101608201525f6110fc8988888888610c64565b805160a0808501919091526020820151604080860191909152820151606080860191909152820151610100850152608082015161012085015281015160c084015260e08101519091508890818111156111715760405163fc09662760e01b8152600481019290925260248201526044016103f6565b505060e08101516111829089611fb6565b60e083015250979650505050505050565b5f5f5f6111a0868661139d565b91509150815f036111c4578381816111ba576111ba612010565b0492505050610a85565b8184116111db576111db60038515026011186113b9565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b61124b6113ca565b610f7457604051631afcd79f60e31b815260040160405180910390fd5b610f74611243565b611278611243565b61128181610b0b565b6105df826103c6565b611293816113e3565b5f8190507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112fd573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113219190611f87565b6001600160a01b0316146105df5760405163050f87e160e21b815260040160405180910390fd5b61135182611494565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156113955761103e82826114f7565b6105df611597565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f6113d3610e8e565b54600160401b900460ff16919050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015611449573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061146d9190611f87565b6001600160a01b031614610f7f5760405163d2b3d33f60e01b815260040160405180910390fd5b806001600160a01b03163b5f036114c957604051634c9c8ce360e01b81526001600160a01b03821660048201526024016103f6565b5f5160206120255f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f61150484846115b6565b905080801561152557505f3d118061152557505f846001600160a01b03163b115b1561153a576115326115c9565b9150506103c0565b801561156457604051639996b31560e01b81526001600160a01b03851660048201526024016103f6565b3d15611577576115726115e2565b611590565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b3415610f745760405163b398979f60e01b815260040160405180910390fd5b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b6040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b5f60208284031215611660575f5ffd5b81356001600160e01b031981168114610a85575f5ffd5b6001600160a01b0381168114610f7f575f5ffd5b5f6020828403121561169b575f5ffd5b8135610a8581611677565b5f5f5f604084860312156116b8575f5ffd5b83356001600160401b038111156116cd575f5ffd5b8401601f810186136116dd575f5ffd5b80356001600160401b038111156116f2575f5ffd5b8660208260051b8401011115611706575f5ffd5b60209182019450925084013561171b81611677565b809150509250925092565b64ffffffffff81168114610f7f575f5ffd5b803561174381611726565b919050565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b038111828210171561177e5761177e611748565b60405290565b60405161018081016001600160401b038111828210171561177e5761177e611748565b604051601f8201601f191681016001600160401b03811182821017156117cf576117cf611748565b604052919050565b5f5f5f5f5f8587036101608112156117ed575f5ffd5b8635955060208701359450604087013561180681611726565b9350606087013561181681611726565b925060e0607f1982011215611829575f5ffd5b5061183261175c565b608087810135825260a080890135602084015260c0808a0135604085015260e08a013560608501526101008a0135928401929092526101208901359083015261014090970135968101969096525092959194509290565b5f5f6040838503121561189a575f5ffd5b82356118a581611677565b915060208301356118b581611677565b809150509250929050565b5f5f604083850312156118d1575f5ffd5b82356118dc81611677565b915060208301356001600160401b038111156118f6575f5ffd5b8301601f81018513611906575f5ffd5b80356001600160401b0381111561191f5761191f611748565b611932601f8201601f19166020016117a7565b818152866020838501011115611946575f5ffd5b816020840160208301375f602083830101528093505050509250929050565b5f5f83601f840112611975575f5ffd5b5081356001600160401b0381111561198b575f5ffd5b6020830191508360208285010111156119a2575f5ffd5b9250929050565b5f5f602083850312156119ba575f5ffd5b82356001600160401b038111156119cf575f5ffd5b6119db85828601611965565b90969095509350505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e0830152610100810151610100830152610120810151610120830152610140810151611a6361014084018264ffffffffff169052565b5061016081015161103e61016084018264ffffffffff169052565b61018081016103c082846119e7565b5f5f5f60408486031215611a9f575f5ffd5b83356001600160401b03811115611ab4575f5ffd5b611ac086828701611965565b909450925050602084013561171b81611677565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f5f8284036101a0811215611b1c575f5ffd5b610180811215611b2a575f5ffd5b5091936101808501359350915050565b634e487b7160e01b5f52603260045260245ffd5b5f5f8335601e19843603018112611b63575f5ffd5b8301803591506001600160401b03821115611b7c575f5ffd5b6020019150368190038213156119a2575f5ffd5b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b805161174381611726565b5f6101808284031215611beb575f5ffd5b611bf3611784565b825181526020808401519082015260408084015190820152606080840151908201526080808401519082015260a0808401519082015260c0808401519082015260e08084015190820152610100808401519082015261012080840151908201529050611c626101408301611bcf565b610140820152611c756101608301611bcf565b61016082015292915050565b80516001600160601b0381168114611743575f5ffd5b5f60e08284031215611ca7575f5ffd5b611caf61175c565b825181526020808401519082015260408084015190820152606080840151908201526080808401519082015260a0808401519082015260c0928301519281019290925250919050565b5f5f5f5f5f5f5f610300888a031215611d0f575f5ffd5b611d198989611bda565b6101808901516101a08a01516101c08b01516101e08c0151939a5091985096509450611d4481611726565b9250611d536102008901611c81565b9150611d63896102208a01611c97565b905092959891949750929550565b6103408101611d8082876119e7565b611d8e6101808301866119e7565b6001600160a01b03939093166103008201526001600160601b03919091166103209091015292915050565b5f60208284031215611dc9575f5ffd5b5051919050565b5f5f5f5f6101e08587031215611de4575f5ffd5b611dee8686611bda565b6101808601516101a08701516101c090970151919890975090945092505050565b6101e08101611e1e82876119e7565b84610180830152836101a0830152826101c083015295945050505050565b5f5f5f5f5f5f6101808789031215611e52575f5ffd5b86516020880151604089015160608a01519298509096509450611e7481611726565b9250611e8260808801611c81565b9150611e918860a08901611c97565b90509295509295509295565b6101e08101611eac82876119e7565b6001600160a01b03948516610180830152929093166101a08401526001600160601b03166101c090920191909152919050565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e08084013590820152610100808401359082015261012080840135908201526101a08101611f516101408501611738565b64ffffffffff16610140830152611f6b6101608501611738565b64ffffffffff1661016083015261018090910191909152919050565b5f60208284031215611f97575f5ffd5b8151610a8581611677565b634e487b7160e01b5f52601160045260245ffd5b818103818111156103c0576103c0611fa2565b808201808211156103c0576103c0611fa2565b64ffffffffff82811682821603908111156103c0576103c0611fa2565b80820281158282048414176103c0576103c0611fa2565b634e487b7160e01b5f52601260045260245ffdfe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca2646970667358221220edc61d32e4b136dd05376b7b6b80e1aed5ae1f9cd496aaccb31494d2872f455664736f6c634300081e0033","opcodes":"PUSH1 0xE0 PUSH1 0x40 MSTORE ADDRESS PUSH1 0x80 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x13 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x2323 CODESIZE SUB DUP1 PUSH2 0x2323 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x32 SWAP2 PUSH2 0x1E6 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x5A JUMPI PUSH1 0x40 MLOAD PUSH4 0x6B23CF01 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x62 PUSH2 0x120 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xA0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP POP POP DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC3 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xE7 SWAP2 SWAP1 PUSH2 0x21E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x10E JUMPI PUSH1 0x40 MLOAD PUSH4 0xFEC343D5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xC0 MSTORE POP PUSH2 0x240 JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x170 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0x1CF JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1CF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1F7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x202 DUP2 PUSH2 0x1D2 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x213 DUP2 PUSH2 0x1D2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x239 DUP2 PUSH2 0x1D2 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH2 0x207A PUSH2 0x2A9 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x28D ADD MSTORE PUSH2 0x1299 ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x1D7 ADD MSTORE DUP2 DUP2 PUSH2 0x71E ADD MSTORE DUP2 DUP2 PUSH2 0x82E ADD MSTORE DUP2 DUP2 PUSH2 0xA00 ADD MSTORE DUP2 DUP2 PUSH2 0xAA3 ADD MSTORE DUP2 DUP2 PUSH2 0xBAC ADD MSTORE PUSH2 0x13E5 ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0xEDB ADD MSTORE DUP2 DUP2 PUSH2 0xF04 ADD MSTORE PUSH2 0x104E ADD MSTORE PUSH2 0x207A PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x105 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x68BEECF9 GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x2EF JUMPI DUP1 PUSH4 0xBD644C56 EQ PUSH2 0x32C JUMPI DUP1 PUSH4 0xDEAA59DF EQ PUSH2 0x34B JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x36A JUMPI DUP1 PUSH4 0xF00DB260 EQ PUSH2 0x37E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x68BEECF9 EQ PUSH2 0x253 JUMPI DUP1 PUSH4 0x73A952E8 EQ PUSH2 0x27F JUMPI DUP1 PUSH4 0x73D0EFD0 EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0x8DAB1952 EQ PUSH2 0x2D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x485CC955 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0x485CC955 EQ PUSH2 0x1AA JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x1C9 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x20F JUMPI DUP1 PUSH4 0x521EB273 EQ PUSH2 0x222 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x23F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x109 JUMPI DUP1 PUSH4 0x8BB5F7B EQ PUSH2 0x13D JUMPI DUP1 PUSH4 0x1F0F3E18 EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0x23D09AC9 EQ PUSH2 0x17D JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x114 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x128 PUSH2 0x123 CALLDATASIZE PUSH1 0x4 PUSH2 0x1650 JUMP JUMPDEST PUSH2 0x39B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x148 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x157 CALLDATASIZE PUSH1 0x4 PUSH2 0x168B JUMP JUMPDEST PUSH2 0x3C6 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x169 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x178 CALLDATASIZE PUSH1 0x4 PUSH2 0x16A6 JUMP JUMPDEST PUSH2 0x469 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x188 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x19C PUSH2 0x197 CALLDATASIZE PUSH1 0x4 PUSH2 0x17D7 JUMP JUMPDEST PUSH2 0x4AF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x134 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x1C4 CALLDATASIZE PUSH1 0x4 PUSH2 0x1889 JUMP JUMPDEST PUSH2 0x4CB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1D4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x134 JUMP JUMPDEST PUSH2 0x15C PUSH2 0x21D CALLDATASIZE PUSH1 0x4 PUSH2 0x18C0 JUMP JUMPDEST PUSH2 0x5C4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x22D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1F7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x24A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x19C PUSH2 0x5E3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x272 PUSH2 0x26D CALLDATASIZE PUSH1 0x4 PUSH2 0x19A9 JUMP JUMPDEST PUSH2 0x5FE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x1A7E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x1F7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x2CB CALLDATASIZE PUSH1 0x4 PUSH2 0x19A9 JUMP JUMPDEST PUSH2 0x7A8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2DB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x272 PUSH2 0x2EA CALLDATASIZE PUSH1 0x4 PUSH2 0x1A8D JUMP JUMPDEST PUSH2 0x8B3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2FA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x31F PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x1AD4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x337 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x346 CALLDATASIZE PUSH1 0x4 PUSH2 0x1B09 JUMP JUMPDEST PUSH2 0xA8C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x356 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x365 CALLDATASIZE PUSH1 0x4 PUSH2 0x168B JUMP JUMPDEST PUSH2 0xB0B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x375 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1F7 PUSH2 0xBA9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x389 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x32 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1F7 JUMP JUMPDEST PUSH0 PUSH2 0x3A5 DUP3 PUSH2 0xC2F JUMP JUMPDEST DUP1 PUSH2 0x3C0 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x21B7E09B PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x3FF JUMPI PUSH1 0x40 MLOAD PUSH4 0x3F8317D1 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x32 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0xAE536502F25A82DE70ABED467008489D54FA0CBF58CDC51718EFE6D49406724F SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x32 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x4A9 JUMPI PUSH2 0x4A0 DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x488 JUMPI PUSH2 0x488 PUSH2 0x1B3A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x49A SWAP2 SWAP1 PUSH2 0x1B4E JUMP JUMPDEST DUP5 PUSH2 0x8B3 JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x46B JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x4BD DUP3 DUP8 DUP8 DUP7 DUP9 PUSH2 0xC64 JUMP JUMPDEST PUSH1 0xE0 ADD MLOAD SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x4D4 PUSH2 0xE8E JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x4FA JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x515 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x523 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x541 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x56B JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x575 DUP8 DUP8 PUSH2 0xEB6 JUMP JUMPDEST DUP4 ISZERO PUSH2 0x5BB JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x5CC PUSH2 0xED0 JUMP JUMPDEST PUSH2 0x5D5 DUP3 PUSH2 0xF76 JUMP JUMPDEST PUSH2 0x5DF DUP3 DUP3 PUSH2 0xF82 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x5EC PUSH2 0x1043 JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2025 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x606 PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x32 SLOAD PUSH1 0x40 MLOAD PUSH4 0x4DD4A16B PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x9BA942D6 SWAP1 PUSH2 0x646 SWAP1 ADDRESS SWAP1 DUP15 SWAP1 DUP15 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B90 JUMP JUMPDEST PUSH2 0x300 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x662 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x686 SWAP2 SWAP1 PUSH2 0x1CF8 JUMP JUMPDEST SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP PUSH0 NOT DUP6 SUB PUSH2 0x6B1 JUMPI PUSH2 0x6AE DUP7 DUP6 DUP10 PUSH2 0x140 ADD MLOAD DUP7 DUP6 PUSH2 0x4AF JUMP JUMPDEST SWAP5 POP JUMPDEST TIMESTAMP PUSH5 0xFFFFFFFFFF AND DUP4 PUSH5 0xFFFFFFFFFF AND LT ISZERO PUSH2 0x6F1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA67FCB1D PUSH1 0xE0 SHL DUP2 MSTORE PUSH5 0xFFFFFFFFFF DUP1 DUP6 AND PUSH1 0x4 DUP4 ADD MSTORE TIMESTAMP AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3F6 JUMP JUMPDEST PUSH2 0x704 DUP2 DUP7 DUP9 DUP8 DUP8 DUP13 PUSH2 0x140 ADD MLOAD PUSH2 0x108C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x663D8337 PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP9 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x663D8337 SWAP1 PUSH2 0x759 SWAP1 DUP11 SWAP1 DUP13 SWAP1 CALLER SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x1D71 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x775 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x799 SWAP2 SWAP1 PUSH2 0x1DB9 JUMP JUMPDEST DUP9 MSTORE POP POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x32 SLOAD PUSH1 0x40 MLOAD PUSH4 0x197C2BFD PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x32F857FA SWAP1 PUSH2 0x7E4 SWAP1 ADDRESS SWAP1 DUP11 SWAP1 DUP11 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B90 JUMP JUMPDEST PUSH2 0x1E0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x800 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x824 SWAP2 SWAP1 PUSH2 0x1DD0 JUMP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 POP SWAP4 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x6F520B73 DUP6 DUP6 DUP6 DUP6 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x87E SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1E0F JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x895 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x8A7 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x8BB PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x32 SLOAD PUSH1 0x40 MLOAD PUSH4 0x5D04BD15 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0xBA097A2A SWAP1 PUSH2 0x8FB SWAP1 ADDRESS SWAP1 DUP15 SWAP1 DUP15 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B90 JUMP JUMPDEST PUSH2 0x180 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x917 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x93B SWAP2 SWAP1 PUSH2 0x1E3C JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP SWAP6 POP SWAP6 POP SWAP6 POP PUSH0 TIMESTAMP SWAP1 POP PUSH0 NOT DUP7 SUB PUSH2 0x963 JUMPI PUSH2 0x960 DUP8 DUP7 DUP4 DUP8 DUP7 PUSH2 0x4AF JUMP JUMPDEST SWAP6 POP JUMPDEST DUP4 DUP2 PUSH5 0xFFFFFFFFFF DUP1 DUP3 AND SWAP1 DUP4 AND GT PUSH2 0x9A0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA67FCB1D PUSH1 0xE0 SHL DUP2 MSTORE PUSH5 0xFFFFFFFFFF SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3F6 JUMP JUMPDEST POP DUP10 SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x9D7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2C749141 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST POP PUSH2 0x9E6 DUP3 DUP8 DUP10 DUP9 DUP9 DUP7 PUSH2 0x108C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD100ACB PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP9 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0xD100ACB SWAP1 PUSH2 0xA3B SWAP1 DUP12 SWAP1 CALLER SWAP1 DUP15 SWAP1 DUP10 SWAP1 PUSH1 0x4 ADD PUSH2 0x1E9D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA57 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xA7B SWAP2 SWAP1 PUSH2 0x1DB9 JUMP JUMPDEST DUP9 MSTORE POP POP POP POP POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5EB2262B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0xBD644C56 SWAP1 PUSH2 0xADA SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0x1EDF JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xAF1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xB03 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xB3F JUMPI PUSH1 0x40 MLOAD PUSH4 0x3146914D PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST POP PUSH1 0x33 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0xE3D815EB4E0FDD9B02285235CB46B09F34BEE9BD0EB8D8DC3A1FE84694079BC2 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x33 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC06 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC2A SWAP2 SWAP1 PUSH2 0x1F87 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x3C0 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xCA4 PUSH1 0x40 MLOAD DUP1 PUSH2 0x100 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP6 MLOAD PUSH2 0xCC5 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0xCBE DUP9 DUP9 DUP4 PUSH2 0x1193 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x1193 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP7 ADD MLOAD PUSH2 0xCE0 SWAP1 DUP7 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE DUP2 MLOAD LT ISZERO PUSH2 0xD0A JUMPI DUP1 MLOAD PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH2 0xD02 SWAP1 DUP4 SWAP1 PUSH2 0x1FB6 JUMP JUMPDEST SWAP1 MSTORE POP PUSH2 0xD11 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD MSTORE JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD PUSH2 0xD2A SWAP1 DUP7 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x20 DUP2 ADD MLOAD DUP2 MLOAD PUSH2 0xD40 SWAP2 SWAP1 PUSH2 0x1FC9 JUMP JUMPDEST DUP2 PUSH1 0x40 ADD MLOAD GT ISZERO PUSH2 0xD75 JUMPI PUSH1 0x20 DUP2 ADD MLOAD DUP2 MLOAD PUSH2 0xD5C SWAP2 SWAP1 PUSH2 0x1FC9 JUMP JUMPDEST DUP2 PUSH1 0x40 ADD DUP2 DUP2 MLOAD PUSH2 0xD6D SWAP2 SWAP1 PUSH2 0x1FB6 JUMP JUMPDEST SWAP1 MSTORE POP PUSH2 0xD7C JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD MSTORE JUMPDEST PUSH2 0xDC1 PUSH2 0xD89 DUP4 DUP6 PUSH2 0x1FDC JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP8 PUSH1 0xA0 ADD MLOAD PUSH2 0xD9F SWAP2 SWAP1 PUSH2 0x1FF9 JUMP JUMPDEST PUSH2 0xDB5 PUSH4 0x1E13380 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1FF9 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP2 SWAP1 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0xE0B PUSH2 0xDD3 DUP4 DUP6 PUSH2 0x1FDC JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP8 PUSH1 0xC0 ADD MLOAD PUSH2 0xDE9 SWAP2 SWAP1 PUSH2 0x1FF9 JUMP JUMPDEST PUSH2 0xDFF PUSH4 0x1E13380 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1FF9 JUMP JUMPDEST PUSH1 0x40 DUP5 ADD MLOAD SWAP2 SWAP1 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x60 DUP3 ADD MLOAD PUSH0 SWAP2 PUSH2 0xE22 SWAP2 PUSH2 0x1FC9 JUMP JUMPDEST PUSH1 0x80 DUP9 ADD MLOAD SWAP1 SWAP2 POP PUSH2 0xE3E SWAP1 DUP3 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x60 DUP9 ADD MLOAD DUP4 MLOAD PUSH2 0xE57 SWAP2 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1193 JUMP JUMPDEST PUSH2 0xE61 SWAP2 SWAP1 PUSH2 0x1FC9 JUMP JUMPDEST PUSH1 0xA0 DUP4 ADD DUP2 SWAP1 MSTORE DUP3 MLOAD DUP3 SWAP2 PUSH2 0xE75 SWAP2 PUSH2 0x1FC9 JUMP JUMPDEST PUSH2 0xE7F SWAP2 SWAP1 PUSH2 0x1FC9 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x3C0 JUMP JUMPDEST PUSH2 0xEBE PUSH2 0x1243 JUMP JUMPDEST PUSH2 0xEC6 PUSH2 0x1268 JUMP JUMPDEST PUSH2 0x5DF DUP3 DUP3 PUSH2 0x1270 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0xF56 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF4A PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2025 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0xF74 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0xF7F DUP2 PUSH2 0x128A JUMP JUMPDEST POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xFDC JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xFD9 SWAP2 DUP2 ADD SWAP1 PUSH2 0x1DB9 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1004 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2025 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x1034 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST PUSH2 0x103E DUP4 DUP4 PUSH2 0x1348 JUMP JUMPDEST POP POP POP JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xF74 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1094 PUSH2 0x15ED JUMP JUMPDEST DUP6 DUP6 DUP1 DUP3 LT PUSH2 0x10BF JUMPI PUSH1 0x40 MLOAD PUSH4 0x319308D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3F6 JUMP JUMPDEST POP POP PUSH2 0x10C9 PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x20 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH5 0xFFFFFFFFFF DUP1 DUP5 AND PUSH2 0x140 DUP4 ADD MSTORE DUP5 AND PUSH2 0x160 DUP3 ADD MSTORE PUSH0 PUSH2 0x10FC DUP10 DUP9 DUP9 DUP9 DUP9 PUSH2 0xC64 JUMP JUMPDEST DUP1 MLOAD PUSH1 0xA0 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x40 DUP1 DUP7 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP3 ADD MLOAD PUSH1 0x60 DUP1 DUP7 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP3 ADD MLOAD PUSH2 0x100 DUP6 ADD MSTORE PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x120 DUP6 ADD MSTORE DUP2 ADD MLOAD PUSH1 0xC0 DUP5 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD SWAP1 SWAP2 POP DUP9 SWAP1 DUP2 DUP2 GT ISZERO PUSH2 0x1171 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFC096627 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3F6 JUMP JUMPDEST POP POP PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x1182 SWAP1 DUP10 PUSH2 0x1FB6 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x11A0 DUP7 DUP7 PUSH2 0x139D JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x11C4 JUMPI DUP4 DUP2 DUP2 PUSH2 0x11BA JUMPI PUSH2 0x11BA PUSH2 0x2010 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0xA85 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x11DB JUMPI PUSH2 0x11DB PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x13B9 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x124B PUSH2 0x13CA JUMP JUMPDEST PUSH2 0xF74 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xF74 PUSH2 0x1243 JUMP JUMPDEST PUSH2 0x1278 PUSH2 0x1243 JUMP JUMPDEST PUSH2 0x1281 DUP2 PUSH2 0xB0B JUMP JUMPDEST PUSH2 0x5DF DUP3 PUSH2 0x3C6 JUMP JUMPDEST PUSH2 0x1293 DUP2 PUSH2 0x13E3 JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x12FD JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1321 SWAP2 SWAP1 PUSH2 0x1F87 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5DF JUMPI PUSH1 0x40 MLOAD PUSH4 0x50F87E1 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1351 DUP3 PUSH2 0x1494 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x1395 JUMPI PUSH2 0x103E DUP3 DUP3 PUSH2 0x14F7 JUMP JUMPDEST PUSH2 0x5DF PUSH2 0x1597 JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 PUSH2 0x13D3 PUSH2 0xE8E JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1449 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x146D SWAP2 SWAP1 PUSH2 0x1F87 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF7F JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x14C9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2025 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x1504 DUP5 DUP5 PUSH2 0x15B6 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1525 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x1525 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x153A JUMPI PUSH2 0x1532 PUSH2 0x15C9 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3C0 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1564 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x1577 JUMPI PUSH2 0x1572 PUSH2 0x15E2 JUMP JUMPDEST PUSH2 0x1590 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0xF74 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1660 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xA85 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xF7F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x169B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xA85 DUP2 PUSH2 0x1677 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x16B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x16CD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x16DD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x16F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP5 ADD ADD GT ISZERO PUSH2 0x1706 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 SWAP2 DUP3 ADD SWAP5 POP SWAP3 POP DUP5 ADD CALLDATALOAD PUSH2 0x171B DUP2 PUSH2 0x1677 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xF7F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x1743 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x177E JUMPI PUSH2 0x177E PUSH2 0x1748 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x177E JUMPI PUSH2 0x177E PUSH2 0x1748 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x17CF JUMPI PUSH2 0x17CF PUSH2 0x1748 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 DUP6 DUP8 SUB PUSH2 0x160 DUP2 SLT ISZERO PUSH2 0x17ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH2 0x1806 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP4 POP PUSH1 0x60 DUP8 ADD CALLDATALOAD PUSH2 0x1816 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP3 POP PUSH1 0xE0 PUSH1 0x7F NOT DUP3 ADD SLT ISZERO PUSH2 0x1829 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1832 PUSH2 0x175C JUMP JUMPDEST PUSH1 0x80 DUP8 DUP2 ADD CALLDATALOAD DUP3 MSTORE PUSH1 0xA0 DUP1 DUP10 ADD CALLDATALOAD PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0xC0 DUP1 DUP11 ADD CALLDATALOAD PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0xE0 DUP11 ADD CALLDATALOAD PUSH1 0x60 DUP6 ADD MSTORE PUSH2 0x100 DUP11 ADD CALLDATALOAD SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH2 0x120 DUP10 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH2 0x140 SWAP1 SWAP8 ADD CALLDATALOAD SWAP7 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x189A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x18A5 DUP2 PUSH2 0x1677 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x18B5 DUP2 PUSH2 0x1677 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x18D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x18DC DUP2 PUSH2 0x1677 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x18F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1906 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x191F JUMPI PUSH2 0x191F PUSH2 0x1748 JUMP JUMPDEST PUSH2 0x1932 PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x17A7 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP7 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x1946 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP4 POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x1975 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x198B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x19A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x19BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x19CF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x19DB DUP6 DUP3 DUP7 ADD PUSH2 0x1965 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0x1A63 PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP2 ADD MLOAD PUSH2 0x103E PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST PUSH2 0x180 DUP2 ADD PUSH2 0x3C0 DUP3 DUP5 PUSH2 0x19E7 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1A9F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1AB4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1AC0 DUP7 DUP3 DUP8 ADD PUSH2 0x1965 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x171B DUP2 PUSH2 0x1677 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP3 DUP5 SUB PUSH2 0x1A0 DUP2 SLT ISZERO PUSH2 0x1B1C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x180 DUP2 SLT ISZERO PUSH2 0x1B2A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP4 PUSH2 0x180 DUP6 ADD CALLDATALOAD SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x1B63 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x1B7C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x19A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE DUP2 ADD DUP3 SWAP1 MSTORE DUP2 DUP4 PUSH1 0x60 DUP4 ADD CALLDATACOPY PUSH0 DUP2 DUP4 ADD PUSH1 0x60 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP3 ADD PUSH1 0x1F NOT AND ADD ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH2 0x1743 DUP2 PUSH2 0x1726 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1BEB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1BF3 PUSH2 0x1784 JUMP JUMPDEST DUP3 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0x1C62 PUSH2 0x140 DUP4 ADD PUSH2 0x1BCF JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x1C75 PUSH2 0x160 DUP4 ADD PUSH2 0x1BCF JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1743 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xE0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1CA7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1CAF PUSH2 0x175C JUMP JUMPDEST DUP3 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 SWAP3 DUP4 ADD MLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x300 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x1D0F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1D19 DUP10 DUP10 PUSH2 0x1BDA JUMP JUMPDEST PUSH2 0x180 DUP10 ADD MLOAD PUSH2 0x1A0 DUP11 ADD MLOAD PUSH2 0x1C0 DUP12 ADD MLOAD PUSH2 0x1E0 DUP13 ADD MLOAD SWAP4 SWAP11 POP SWAP2 SWAP9 POP SWAP7 POP SWAP5 POP PUSH2 0x1D44 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP3 POP PUSH2 0x1D53 PUSH2 0x200 DUP10 ADD PUSH2 0x1C81 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D63 DUP10 PUSH2 0x220 DUP11 ADD PUSH2 0x1C97 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH2 0x340 DUP2 ADD PUSH2 0x1D80 DUP3 DUP8 PUSH2 0x19E7 JUMP JUMPDEST PUSH2 0x1D8E PUSH2 0x180 DUP4 ADD DUP7 PUSH2 0x19E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND PUSH2 0x300 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH2 0x320 SWAP1 SWAP2 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DC9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1DE4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1DEE DUP7 DUP7 PUSH2 0x1BDA JUMP JUMPDEST PUSH2 0x180 DUP7 ADD MLOAD PUSH2 0x1A0 DUP8 ADD MLOAD PUSH2 0x1C0 SWAP1 SWAP8 ADD MLOAD SWAP2 SWAP9 SWAP1 SWAP8 POP SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0x1E1E DUP3 DUP8 PUSH2 0x19E7 JUMP JUMPDEST DUP5 PUSH2 0x180 DUP4 ADD MSTORE DUP4 PUSH2 0x1A0 DUP4 ADD MSTORE DUP3 PUSH2 0x1C0 DUP4 ADD MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x180 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x1E52 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 MLOAD PUSH1 0x20 DUP9 ADD MLOAD PUSH1 0x40 DUP10 ADD MLOAD PUSH1 0x60 DUP11 ADD MLOAD SWAP3 SWAP9 POP SWAP1 SWAP7 POP SWAP5 POP PUSH2 0x1E74 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP3 POP PUSH2 0x1E82 PUSH1 0x80 DUP9 ADD PUSH2 0x1C81 JUMP JUMPDEST SWAP2 POP PUSH2 0x1E91 DUP9 PUSH1 0xA0 DUP10 ADD PUSH2 0x1C97 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0x1EAC DUP3 DUP8 PUSH2 0x19E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND PUSH2 0x180 DUP4 ADD MSTORE SWAP3 SWAP1 SWAP4 AND PUSH2 0x1A0 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x1C0 SWAP1 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x1A0 DUP2 ADD PUSH2 0x1F51 PUSH2 0x140 DUP6 ADD PUSH2 0x1738 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND PUSH2 0x140 DUP4 ADD MSTORE PUSH2 0x1F6B PUSH2 0x160 DUP6 ADD PUSH2 0x1738 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND PUSH2 0x160 DUP4 ADD MSTORE PUSH2 0x180 SWAP1 SWAP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F97 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xA85 DUP2 PUSH2 0x1677 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x3C0 JUMPI PUSH2 0x3C0 PUSH2 0x1FA2 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x3C0 JUMPI PUSH2 0x3C0 PUSH2 0x1FA2 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x3C0 JUMPI PUSH2 0x3C0 PUSH2 0x1FA2 JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x3C0 JUMPI PUSH2 0x3C0 PUSH2 0x1FA2 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID CALLDATASIZE ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCA2646970667358221220ED 0xC6 SAR ORIGIN RETF 0xB1 CALLDATASIZE 0xDD SDIV CALLDATACOPY PUSH12 0x7B6B80E1AED5AE1F9CD496AA 0xCC 0xB3 EQ SWAP5 0xD2 DUP8 0x2F GASLIMIT JUMP PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"708:8644:76:-:0;;;1084:4:33;1041:48;;1540:294:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1632:11;-1:-1:-1;;;;;1540:34:73;;1536:65;;1583:18;;-1:-1:-1;;;1583:18:73;;;;;;;;;;;1536:65;1607:22;:20;:22::i;:::-;1649:11;-1:-1:-1;;;;;1635:25:73;;;-1:-1:-1;;;;;1635:25:73;;;;;1493:172;1718:11:76::1;-1:-1:-1::0;;;;;1655:74:76::1;1683:16;-1:-1:-1::0;;;;;1655:57:76::1;;:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1655:74:76::1;;1651:138;;1746:36;;-1:-1:-1::0;;;1746:36:76::1;;;;;;;;;;;1651:138;-1:-1:-1::0;;;;;1794:35:76::1;;::::0;-1:-1:-1;708:8644:76;;7709:422:32;3147:66;7898:15;;;;;;;7894:76;;;7936:23;;-1:-1:-1;;;7936:23:32;;;;;;;;;;;7894:76;7983:14;;-1:-1:-1;;;;;7983:14:32;;;:34;7979:146;;8033:33;;-1:-1:-1;;;;;;8033:33:32;-1:-1:-1;;;;;8033:33:32;;;;;8085:29;;1060:50:101;;;8085:29:32;;1048:2:101;1033:18;8085:29:32;;;;;;;7979:146;7758:373;7709:422::o;14:144:101:-;-1:-1:-1;;;;;102:31:101;;92:42;;82:70;;148:1;145;138:12;163:458;289:6;297;350:2;338:9;329:7;325:23;321:32;318:52;;;366:1;363;356:12;318:52;398:9;392:16;417:44;455:5;417:44;:::i;:::-;530:2;515:18;;509:25;480:5;;-1:-1:-1;543:46:101;509:25;543:46;:::i;:::-;608:7;598:17;;;163:458;;;;;:::o;626:285::-;717:6;770:2;758:9;749:7;745:23;741:32;738:52;;;786:1;783;776:12;738:52;818:9;812:16;837:44;875:5;837:44;:::i;:::-;900:5;626:285;-1:-1:-1;;;626:285:101:o;916:200::-;708:8644:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@UPGRADE_INTERFACE_VERSION_7238":{"entryPoint":null,"id":7238,"parameterSlots":0,"returnSlots":0},"@__PolicyPoolComponent_init_25530":{"entryPoint":4712,"id":25530,"parameterSlots":0,"returnSlots":0},"@__RiskModule_init_28159":{"entryPoint":3766,"id":28159,"parameterSlots":2,"returnSlots":0},"@__RiskModule_init_unchained_28178":{"entryPoint":4720,"id":28178,"parameterSlots":2,"returnSlots":0},"@_authorizeUpgrade_25541":{"entryPoint":3958,"id":25541,"parameterSlots":1,"returnSlots":0},"@_checkInitializing_7126":{"entryPoint":4675,"id":7126,"parameterSlots":0,"returnSlots":0},"@_checkNonPayable_6903":{"entryPoint":5527,"id":6903,"parameterSlots":0,"returnSlots":0},"@_checkNotDelegated_7332":{"entryPoint":4163,"id":7332,"parameterSlots":0,"returnSlots":0},"@_checkProxy_7316":{"entryPoint":3792,"id":7316,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_7217":{"entryPoint":3726,"id":7217,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_7203":{"entryPoint":null,"id":7203,"parameterSlots":0,"returnSlots":1},"@_isInitializing_7194":{"entryPoint":5066,"id":7194,"parameterSlots":0,"returnSlots":1},"@_setImplementation_6683":{"entryPoint":5268,"id":6683,"parameterSlots":1,"returnSlots":0},"@_upgradeToAndCallUUPS_7383":{"entryPoint":3970,"id":7383,"parameterSlots":2,"returnSlots":0},"@_upgradeValidations_25558":{"entryPoint":5091,"id":25558,"parameterSlots":1,"returnSlots":0},"@_upgradeValidations_28208":{"entryPoint":4746,"id":28208,"parameterSlots":1,"returnSlots":0},"@bubbleRevert_10900":{"entryPoint":5602,"id":10900,"parameterSlots":0,"returnSlots":0},"@cancelPolicy_28626":{"entryPoint":1960,"id":28626,"parameterSlots":2,"returnSlots":0},"@currency_25603":{"entryPoint":2985,"id":25603,"parameterSlots":0,"returnSlots":1},"@delegatecallNoReturn_10862":{"entryPoint":5558,"id":10862,"parameterSlots":2,"returnSlots":1},"@functionDelegateCall_9894":{"entryPoint":5367,"id":9894,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_11669":{"entryPoint":null,"id":11669,"parameterSlots":1,"returnSlots":1},"@getImplementation_6656":{"entryPoint":null,"id":6656,"parameterSlots":0,"returnSlots":1},"@getMinimumPremium_22476":{"entryPoint":3172,"id":22476,"parameterSlots":5,"returnSlots":1},"@getMinimumPremium_28348":{"entryPoint":1199,"id":28348,"parameterSlots":5,"returnSlots":1},"@initialize_22611":{"entryPoint":4236,"id":22611,"parameterSlots":6,"returnSlots":1},"@initialize_28139":{"entryPoint":1227,"id":28139,"parameterSlots":2,"returnSlots":0},"@mul512_14312":{"entryPoint":5021,"id":14312,"parameterSlots":2,"returnSlots":2},"@mulDiv_14799":{"entryPoint":4499,"id":14799,"parameterSlots":3,"returnSlots":1},"@newPolicies_28488":{"entryPoint":1129,"id":28488,"parameterSlots":3,"returnSlots":0},"@newPolicy_28458":{"entryPoint":2227,"id":28458,"parameterSlots":3,"returnSlots":1},"@panic_11416":{"entryPoint":5049,"id":11416,"parameterSlots":1,"returnSlots":0},"@policyPool_25592":{"entryPoint":null,"id":25592,"parameterSlots":0,"returnSlots":1},"@premiumsAccount_28321":{"entryPoint":null,"id":28321,"parameterSlots":0,"returnSlots":1},"@proxiableUUID_7274":{"entryPoint":1507,"id":7274,"parameterSlots":0,"returnSlots":1},"@replacePolicy_28590":{"entryPoint":1534,"id":28590,"parameterSlots":2,"returnSlots":1},"@resolvePolicy_28643":{"entryPoint":2700,"id":28643,"parameterSlots":2,"returnSlots":0},"@returnDataSize_10886":{"entryPoint":null,"id":10886,"parameterSlots":0,"returnSlots":1},"@returnData_10894":{"entryPoint":5577,"id":10894,"parameterSlots":0,"returnSlots":1},"@setUnderwriter_28310":{"entryPoint":966,"id":28310,"parameterSlots":1,"returnSlots":0},"@setWallet_28268":{"entryPoint":2827,"id":28268,"parameterSlots":1,"returnSlots":0},"@supportsInterface_25582":{"entryPoint":3119,"id":25582,"parameterSlots":1,"returnSlots":1},"@supportsInterface_28230":{"entryPoint":923,"id":28230,"parameterSlots":1,"returnSlots":1},"@ternary_14561":{"entryPoint":null,"id":14561,"parameterSlots":3,"returnSlots":1},"@toUint_17678":{"entryPoint":null,"id":17678,"parameterSlots":1,"returnSlots":1},"@underwriter_28278":{"entryPoint":null,"id":28278,"parameterSlots":0,"returnSlots":1},"@upgradeToAndCall_6719":{"entryPoint":4936,"id":6719,"parameterSlots":2,"returnSlots":0},"@upgradeToAndCall_7294":{"entryPoint":1476,"id":7294,"parameterSlots":2,"returnSlots":0},"@wallet_28240":{"entryPoint":null,"id":28240,"parameterSlots":0,"returnSlots":1},"abi_decode_bytes_calldata":{"entryPoint":6501,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_struct_Params_fromMemory":{"entryPoint":7319,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_struct_PolicyData_fromMemory":{"entryPoint":7130,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_bytes_memory_ptr":{"entryPoint":6336,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptrt_address":{"entryPoint":5798,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_bytes32_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":5712,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes_calldata_ptr":{"entryPoint":6569,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes_calldata_ptrt_address":{"entryPoint":6797,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory":{"entryPoint":8071,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IPremiumsAccount_$29276_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IUnderwriter_$29363":{"entryPoint":5771,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IUnderwriter_$29363t_address":{"entryPoint":6281,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_uint256":{"entryPoint":6921,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256_fromMemory":{"entryPoint":7632,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$22230_memory_ptr_fromMemory":{"entryPoint":7416,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":7609,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$22230_memory_ptr_fromMemory":{"entryPoint":7740,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_uint256t_uint256t_uint40t_uint40t_struct$_Params_$22230_memory_ptr":{"entryPoint":6103,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_uint40":{"entryPoint":5944,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint40_fromMemory":{"entryPoint":7119,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint96_fromMemory":{"entryPoint":7297,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_struct_PolicyData":{"entryPoint":6631,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_bytes_calldata_ptr__to_t_address_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":7056,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IPremiumsAccount_$29276__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IUnderwriter_$29363__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IUnderwriter_$29363_t_contract$_IUnderwriter_$29363__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":6868,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$22256_calldata_ptr_t_uint256__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256__fromStack_reversed":{"entryPoint":7903,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr__fromStack_reversed":{"entryPoint":6782,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_address_t_address_t_uint96__to_t_struct$_PolicyData_$22256_memory_ptr_t_address_t_address_t_uint96__fromStack_reversed":{"entryPoint":7837,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_struct$_PolicyData_$22256_memory_ptr_t_address_t_uint96__to_t_struct$_PolicyData_$22256_memory_ptr_t_struct$_PolicyData_$22256_memory_ptr_t_address_t_uint96__fromStack_reversed":{"entryPoint":7537,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":7695,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint40_t_uint40__to_t_uint40_t_uint40__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint40":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":6990,"id":null,"parameterSlots":2,"returnSlots":2},"allocate_memory":{"entryPoint":6055,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_memory_2372":{"entryPoint":5980,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_2373":{"entryPoint":6020,"id":null,"parameterSlots":0,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":8137,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":8185,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":8118,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint40":{"entryPoint":8156,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":8098,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":8208,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":6970,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":5960,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_contract_IUnderwriter":{"entryPoint":5751,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_uint40":{"entryPoint":5926,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:24245:101","nodeType":"YulBlock","src":"0:24245:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"83:217:101","nodeType":"YulBlock","src":"83:217:101","statements":[{"body":{"nativeSrc":"129:16:101","nodeType":"YulBlock","src":"129:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"138:1:101","nodeType":"YulLiteral","src":"138:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"141:1:101","nodeType":"YulLiteral","src":"141:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"131:6:101","nodeType":"YulIdentifier","src":"131:6:101"},"nativeSrc":"131:12:101","nodeType":"YulFunctionCall","src":"131:12:101"},"nativeSrc":"131:12:101","nodeType":"YulExpressionStatement","src":"131:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"104:7:101","nodeType":"YulIdentifier","src":"104:7:101"},{"name":"headStart","nativeSrc":"113:9:101","nodeType":"YulIdentifier","src":"113:9:101"}],"functionName":{"name":"sub","nativeSrc":"100:3:101","nodeType":"YulIdentifier","src":"100:3:101"},"nativeSrc":"100:23:101","nodeType":"YulFunctionCall","src":"100:23:101"},{"kind":"number","nativeSrc":"125:2:101","nodeType":"YulLiteral","src":"125:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"96:3:101","nodeType":"YulIdentifier","src":"96:3:101"},"nativeSrc":"96:32:101","nodeType":"YulFunctionCall","src":"96:32:101"},"nativeSrc":"93:52:101","nodeType":"YulIf","src":"93:52:101"},{"nativeSrc":"154:36:101","nodeType":"YulVariableDeclaration","src":"154:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"180:9:101","nodeType":"YulIdentifier","src":"180:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"167:12:101","nodeType":"YulIdentifier","src":"167:12:101"},"nativeSrc":"167:23:101","nodeType":"YulFunctionCall","src":"167:23:101"},"variables":[{"name":"value","nativeSrc":"158:5:101","nodeType":"YulTypedName","src":"158:5:101","type":""}]},{"body":{"nativeSrc":"254:16:101","nodeType":"YulBlock","src":"254:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:101","nodeType":"YulLiteral","src":"263:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:101","nodeType":"YulLiteral","src":"266:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:101","nodeType":"YulIdentifier","src":"256:6:101"},"nativeSrc":"256:12:101","nodeType":"YulFunctionCall","src":"256:12:101"},"nativeSrc":"256:12:101","nodeType":"YulExpressionStatement","src":"256:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"212:5:101","nodeType":"YulIdentifier","src":"212:5:101"},{"arguments":[{"name":"value","nativeSrc":"223:5:101","nodeType":"YulIdentifier","src":"223:5:101"},{"arguments":[{"kind":"number","nativeSrc":"234:3:101","nodeType":"YulLiteral","src":"234:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"239:10:101","nodeType":"YulLiteral","src":"239:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"230:3:101","nodeType":"YulIdentifier","src":"230:3:101"},"nativeSrc":"230:20:101","nodeType":"YulFunctionCall","src":"230:20:101"}],"functionName":{"name":"and","nativeSrc":"219:3:101","nodeType":"YulIdentifier","src":"219:3:101"},"nativeSrc":"219:32:101","nodeType":"YulFunctionCall","src":"219:32:101"}],"functionName":{"name":"eq","nativeSrc":"209:2:101","nodeType":"YulIdentifier","src":"209:2:101"},"nativeSrc":"209:43:101","nodeType":"YulFunctionCall","src":"209:43:101"}],"functionName":{"name":"iszero","nativeSrc":"202:6:101","nodeType":"YulIdentifier","src":"202:6:101"},"nativeSrc":"202:51:101","nodeType":"YulFunctionCall","src":"202:51:101"},"nativeSrc":"199:71:101","nodeType":"YulIf","src":"199:71:101"},{"nativeSrc":"279:15:101","nodeType":"YulAssignment","src":"279:15:101","value":{"name":"value","nativeSrc":"289:5:101","nodeType":"YulIdentifier","src":"289:5:101"},"variableNames":[{"name":"value0","nativeSrc":"279:6:101","nodeType":"YulIdentifier","src":"279:6:101"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14:286:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"49:9:101","nodeType":"YulTypedName","src":"49:9:101","type":""},{"name":"dataEnd","nativeSrc":"60:7:101","nodeType":"YulTypedName","src":"60:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"72:6:101","nodeType":"YulTypedName","src":"72:6:101","type":""}],"src":"14:286:101"},{"body":{"nativeSrc":"400:92:101","nodeType":"YulBlock","src":"400:92:101","statements":[{"nativeSrc":"410:26:101","nodeType":"YulAssignment","src":"410:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:101","nodeType":"YulIdentifier","src":"422:9:101"},{"kind":"number","nativeSrc":"433:2:101","nodeType":"YulLiteral","src":"433:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"418:3:101","nodeType":"YulIdentifier","src":"418:3:101"},"nativeSrc":"418:18:101","nodeType":"YulFunctionCall","src":"418:18:101"},"variableNames":[{"name":"tail","nativeSrc":"410:4:101","nodeType":"YulIdentifier","src":"410:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"452:9:101","nodeType":"YulIdentifier","src":"452:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"477:6:101","nodeType":"YulIdentifier","src":"477:6:101"}],"functionName":{"name":"iszero","nativeSrc":"470:6:101","nodeType":"YulIdentifier","src":"470:6:101"},"nativeSrc":"470:14:101","nodeType":"YulFunctionCall","src":"470:14:101"}],"functionName":{"name":"iszero","nativeSrc":"463:6:101","nodeType":"YulIdentifier","src":"463:6:101"},"nativeSrc":"463:22:101","nodeType":"YulFunctionCall","src":"463:22:101"}],"functionName":{"name":"mstore","nativeSrc":"445:6:101","nodeType":"YulIdentifier","src":"445:6:101"},"nativeSrc":"445:41:101","nodeType":"YulFunctionCall","src":"445:41:101"},"nativeSrc":"445:41:101","nodeType":"YulExpressionStatement","src":"445:41:101"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"305:187:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"369:9:101","nodeType":"YulTypedName","src":"369:9:101","type":""},{"name":"value0","nativeSrc":"380:6:101","nodeType":"YulTypedName","src":"380:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"391:4:101","nodeType":"YulTypedName","src":"391:4:101","type":""}],"src":"305:187:101"},{"body":{"nativeSrc":"556:86:101","nodeType":"YulBlock","src":"556:86:101","statements":[{"body":{"nativeSrc":"620:16:101","nodeType":"YulBlock","src":"620:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"629:1:101","nodeType":"YulLiteral","src":"629:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"632:1:101","nodeType":"YulLiteral","src":"632:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"622:6:101","nodeType":"YulIdentifier","src":"622:6:101"},"nativeSrc":"622:12:101","nodeType":"YulFunctionCall","src":"622:12:101"},"nativeSrc":"622:12:101","nodeType":"YulExpressionStatement","src":"622:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"579:5:101","nodeType":"YulIdentifier","src":"579:5:101"},{"arguments":[{"name":"value","nativeSrc":"590:5:101","nodeType":"YulIdentifier","src":"590:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"605:3:101","nodeType":"YulLiteral","src":"605:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"610:1:101","nodeType":"YulLiteral","src":"610:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"601:3:101","nodeType":"YulIdentifier","src":"601:3:101"},"nativeSrc":"601:11:101","nodeType":"YulFunctionCall","src":"601:11:101"},{"kind":"number","nativeSrc":"614:1:101","nodeType":"YulLiteral","src":"614:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"597:3:101","nodeType":"YulIdentifier","src":"597:3:101"},"nativeSrc":"597:19:101","nodeType":"YulFunctionCall","src":"597:19:101"}],"functionName":{"name":"and","nativeSrc":"586:3:101","nodeType":"YulIdentifier","src":"586:3:101"},"nativeSrc":"586:31:101","nodeType":"YulFunctionCall","src":"586:31:101"}],"functionName":{"name":"eq","nativeSrc":"576:2:101","nodeType":"YulIdentifier","src":"576:2:101"},"nativeSrc":"576:42:101","nodeType":"YulFunctionCall","src":"576:42:101"}],"functionName":{"name":"iszero","nativeSrc":"569:6:101","nodeType":"YulIdentifier","src":"569:6:101"},"nativeSrc":"569:50:101","nodeType":"YulFunctionCall","src":"569:50:101"},"nativeSrc":"566:70:101","nodeType":"YulIf","src":"566:70:101"}]},"name":"validator_revert_contract_IUnderwriter","nativeSrc":"497:145:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"545:5:101","nodeType":"YulTypedName","src":"545:5:101","type":""}],"src":"497:145:101"},{"body":{"nativeSrc":"739:191:101","nodeType":"YulBlock","src":"739:191:101","statements":[{"body":{"nativeSrc":"785:16:101","nodeType":"YulBlock","src":"785:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"794:1:101","nodeType":"YulLiteral","src":"794:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"797:1:101","nodeType":"YulLiteral","src":"797:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"787:6:101","nodeType":"YulIdentifier","src":"787:6:101"},"nativeSrc":"787:12:101","nodeType":"YulFunctionCall","src":"787:12:101"},"nativeSrc":"787:12:101","nodeType":"YulExpressionStatement","src":"787:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"760:7:101","nodeType":"YulIdentifier","src":"760:7:101"},{"name":"headStart","nativeSrc":"769:9:101","nodeType":"YulIdentifier","src":"769:9:101"}],"functionName":{"name":"sub","nativeSrc":"756:3:101","nodeType":"YulIdentifier","src":"756:3:101"},"nativeSrc":"756:23:101","nodeType":"YulFunctionCall","src":"756:23:101"},{"kind":"number","nativeSrc":"781:2:101","nodeType":"YulLiteral","src":"781:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"752:3:101","nodeType":"YulIdentifier","src":"752:3:101"},"nativeSrc":"752:32:101","nodeType":"YulFunctionCall","src":"752:32:101"},"nativeSrc":"749:52:101","nodeType":"YulIf","src":"749:52:101"},{"nativeSrc":"810:36:101","nodeType":"YulVariableDeclaration","src":"810:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"836:9:101","nodeType":"YulIdentifier","src":"836:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"823:12:101","nodeType":"YulIdentifier","src":"823:12:101"},"nativeSrc":"823:23:101","nodeType":"YulFunctionCall","src":"823:23:101"},"variables":[{"name":"value","nativeSrc":"814:5:101","nodeType":"YulTypedName","src":"814:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"894:5:101","nodeType":"YulIdentifier","src":"894:5:101"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"855:38:101","nodeType":"YulIdentifier","src":"855:38:101"},"nativeSrc":"855:45:101","nodeType":"YulFunctionCall","src":"855:45:101"},"nativeSrc":"855:45:101","nodeType":"YulExpressionStatement","src":"855:45:101"},{"nativeSrc":"909:15:101","nodeType":"YulAssignment","src":"909:15:101","value":{"name":"value","nativeSrc":"919:5:101","nodeType":"YulIdentifier","src":"919:5:101"},"variableNames":[{"name":"value0","nativeSrc":"909:6:101","nodeType":"YulIdentifier","src":"909:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IUnderwriter_$29363","nativeSrc":"647:283:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"705:9:101","nodeType":"YulTypedName","src":"705:9:101","type":""},{"name":"dataEnd","nativeSrc":"716:7:101","nodeType":"YulTypedName","src":"716:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"728:6:101","nodeType":"YulTypedName","src":"728:6:101","type":""}],"src":"647:283:101"},{"body":{"nativeSrc":"1068:643:101","nodeType":"YulBlock","src":"1068:643:101","statements":[{"body":{"nativeSrc":"1114:16:101","nodeType":"YulBlock","src":"1114:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1123:1:101","nodeType":"YulLiteral","src":"1123:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1126:1:101","nodeType":"YulLiteral","src":"1126:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1116:6:101","nodeType":"YulIdentifier","src":"1116:6:101"},"nativeSrc":"1116:12:101","nodeType":"YulFunctionCall","src":"1116:12:101"},"nativeSrc":"1116:12:101","nodeType":"YulExpressionStatement","src":"1116:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1089:7:101","nodeType":"YulIdentifier","src":"1089:7:101"},{"name":"headStart","nativeSrc":"1098:9:101","nodeType":"YulIdentifier","src":"1098:9:101"}],"functionName":{"name":"sub","nativeSrc":"1085:3:101","nodeType":"YulIdentifier","src":"1085:3:101"},"nativeSrc":"1085:23:101","nodeType":"YulFunctionCall","src":"1085:23:101"},{"kind":"number","nativeSrc":"1110:2:101","nodeType":"YulLiteral","src":"1110:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1081:3:101","nodeType":"YulIdentifier","src":"1081:3:101"},"nativeSrc":"1081:32:101","nodeType":"YulFunctionCall","src":"1081:32:101"},"nativeSrc":"1078:52:101","nodeType":"YulIf","src":"1078:52:101"},{"nativeSrc":"1139:37:101","nodeType":"YulVariableDeclaration","src":"1139:37:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1166:9:101","nodeType":"YulIdentifier","src":"1166:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"1153:12:101","nodeType":"YulIdentifier","src":"1153:12:101"},"nativeSrc":"1153:23:101","nodeType":"YulFunctionCall","src":"1153:23:101"},"variables":[{"name":"offset","nativeSrc":"1143:6:101","nodeType":"YulTypedName","src":"1143:6:101","type":""}]},{"body":{"nativeSrc":"1219:16:101","nodeType":"YulBlock","src":"1219:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1228:1:101","nodeType":"YulLiteral","src":"1228:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1231:1:101","nodeType":"YulLiteral","src":"1231:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1221:6:101","nodeType":"YulIdentifier","src":"1221:6:101"},"nativeSrc":"1221:12:101","nodeType":"YulFunctionCall","src":"1221:12:101"},"nativeSrc":"1221:12:101","nodeType":"YulExpressionStatement","src":"1221:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1191:6:101","nodeType":"YulIdentifier","src":"1191:6:101"},{"kind":"number","nativeSrc":"1199:18:101","nodeType":"YulLiteral","src":"1199:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1188:2:101","nodeType":"YulIdentifier","src":"1188:2:101"},"nativeSrc":"1188:30:101","nodeType":"YulFunctionCall","src":"1188:30:101"},"nativeSrc":"1185:50:101","nodeType":"YulIf","src":"1185:50:101"},{"nativeSrc":"1244:32:101","nodeType":"YulVariableDeclaration","src":"1244:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1258:9:101","nodeType":"YulIdentifier","src":"1258:9:101"},{"name":"offset","nativeSrc":"1269:6:101","nodeType":"YulIdentifier","src":"1269:6:101"}],"functionName":{"name":"add","nativeSrc":"1254:3:101","nodeType":"YulIdentifier","src":"1254:3:101"},"nativeSrc":"1254:22:101","nodeType":"YulFunctionCall","src":"1254:22:101"},"variables":[{"name":"_1","nativeSrc":"1248:2:101","nodeType":"YulTypedName","src":"1248:2:101","type":""}]},{"body":{"nativeSrc":"1324:16:101","nodeType":"YulBlock","src":"1324:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1333:1:101","nodeType":"YulLiteral","src":"1333:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1336:1:101","nodeType":"YulLiteral","src":"1336:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1326:6:101","nodeType":"YulIdentifier","src":"1326:6:101"},"nativeSrc":"1326:12:101","nodeType":"YulFunctionCall","src":"1326:12:101"},"nativeSrc":"1326:12:101","nodeType":"YulExpressionStatement","src":"1326:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1303:2:101","nodeType":"YulIdentifier","src":"1303:2:101"},{"kind":"number","nativeSrc":"1307:4:101","nodeType":"YulLiteral","src":"1307:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"1299:3:101","nodeType":"YulIdentifier","src":"1299:3:101"},"nativeSrc":"1299:13:101","nodeType":"YulFunctionCall","src":"1299:13:101"},{"name":"dataEnd","nativeSrc":"1314:7:101","nodeType":"YulIdentifier","src":"1314:7:101"}],"functionName":{"name":"slt","nativeSrc":"1295:3:101","nodeType":"YulIdentifier","src":"1295:3:101"},"nativeSrc":"1295:27:101","nodeType":"YulFunctionCall","src":"1295:27:101"}],"functionName":{"name":"iszero","nativeSrc":"1288:6:101","nodeType":"YulIdentifier","src":"1288:6:101"},"nativeSrc":"1288:35:101","nodeType":"YulFunctionCall","src":"1288:35:101"},"nativeSrc":"1285:55:101","nodeType":"YulIf","src":"1285:55:101"},{"nativeSrc":"1349:30:101","nodeType":"YulVariableDeclaration","src":"1349:30:101","value":{"arguments":[{"name":"_1","nativeSrc":"1376:2:101","nodeType":"YulIdentifier","src":"1376:2:101"}],"functionName":{"name":"calldataload","nativeSrc":"1363:12:101","nodeType":"YulIdentifier","src":"1363:12:101"},"nativeSrc":"1363:16:101","nodeType":"YulFunctionCall","src":"1363:16:101"},"variables":[{"name":"length","nativeSrc":"1353:6:101","nodeType":"YulTypedName","src":"1353:6:101","type":""}]},{"body":{"nativeSrc":"1422:16:101","nodeType":"YulBlock","src":"1422:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1431:1:101","nodeType":"YulLiteral","src":"1431:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1434:1:101","nodeType":"YulLiteral","src":"1434:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1424:6:101","nodeType":"YulIdentifier","src":"1424:6:101"},"nativeSrc":"1424:12:101","nodeType":"YulFunctionCall","src":"1424:12:101"},"nativeSrc":"1424:12:101","nodeType":"YulExpressionStatement","src":"1424:12:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1394:6:101","nodeType":"YulIdentifier","src":"1394:6:101"},{"kind":"number","nativeSrc":"1402:18:101","nodeType":"YulLiteral","src":"1402:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1391:2:101","nodeType":"YulIdentifier","src":"1391:2:101"},"nativeSrc":"1391:30:101","nodeType":"YulFunctionCall","src":"1391:30:101"},"nativeSrc":"1388:50:101","nodeType":"YulIf","src":"1388:50:101"},{"body":{"nativeSrc":"1498:16:101","nodeType":"YulBlock","src":"1498:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1507:1:101","nodeType":"YulLiteral","src":"1507:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1510:1:101","nodeType":"YulLiteral","src":"1510:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1500:6:101","nodeType":"YulIdentifier","src":"1500:6:101"},"nativeSrc":"1500:12:101","nodeType":"YulFunctionCall","src":"1500:12:101"},"nativeSrc":"1500:12:101","nodeType":"YulExpressionStatement","src":"1500:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1461:2:101","nodeType":"YulIdentifier","src":"1461:2:101"},{"arguments":[{"kind":"number","nativeSrc":"1469:1:101","nodeType":"YulLiteral","src":"1469:1:101","type":"","value":"5"},{"name":"length","nativeSrc":"1472:6:101","nodeType":"YulIdentifier","src":"1472:6:101"}],"functionName":{"name":"shl","nativeSrc":"1465:3:101","nodeType":"YulIdentifier","src":"1465:3:101"},"nativeSrc":"1465:14:101","nodeType":"YulFunctionCall","src":"1465:14:101"}],"functionName":{"name":"add","nativeSrc":"1457:3:101","nodeType":"YulIdentifier","src":"1457:3:101"},"nativeSrc":"1457:23:101","nodeType":"YulFunctionCall","src":"1457:23:101"},{"kind":"number","nativeSrc":"1482:4:101","nodeType":"YulLiteral","src":"1482:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1453:3:101","nodeType":"YulIdentifier","src":"1453:3:101"},"nativeSrc":"1453:34:101","nodeType":"YulFunctionCall","src":"1453:34:101"},{"name":"dataEnd","nativeSrc":"1489:7:101","nodeType":"YulIdentifier","src":"1489:7:101"}],"functionName":{"name":"gt","nativeSrc":"1450:2:101","nodeType":"YulIdentifier","src":"1450:2:101"},"nativeSrc":"1450:47:101","nodeType":"YulFunctionCall","src":"1450:47:101"},"nativeSrc":"1447:67:101","nodeType":"YulIf","src":"1447:67:101"},{"nativeSrc":"1523:23:101","nodeType":"YulAssignment","src":"1523:23:101","value":{"arguments":[{"name":"_1","nativeSrc":"1537:2:101","nodeType":"YulIdentifier","src":"1537:2:101"},{"kind":"number","nativeSrc":"1541:4:101","nodeType":"YulLiteral","src":"1541:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1533:3:101","nodeType":"YulIdentifier","src":"1533:3:101"},"nativeSrc":"1533:13:101","nodeType":"YulFunctionCall","src":"1533:13:101"},"variableNames":[{"name":"value0","nativeSrc":"1523:6:101","nodeType":"YulIdentifier","src":"1523:6:101"}]},{"nativeSrc":"1555:16:101","nodeType":"YulAssignment","src":"1555:16:101","value":{"name":"length","nativeSrc":"1565:6:101","nodeType":"YulIdentifier","src":"1565:6:101"},"variableNames":[{"name":"value1","nativeSrc":"1555:6:101","nodeType":"YulIdentifier","src":"1555:6:101"}]},{"nativeSrc":"1580:47:101","nodeType":"YulVariableDeclaration","src":"1580:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1610:9:101","nodeType":"YulIdentifier","src":"1610:9:101"},{"kind":"number","nativeSrc":"1621:4:101","nodeType":"YulLiteral","src":"1621:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1606:3:101","nodeType":"YulIdentifier","src":"1606:3:101"},"nativeSrc":"1606:20:101","nodeType":"YulFunctionCall","src":"1606:20:101"}],"functionName":{"name":"calldataload","nativeSrc":"1593:12:101","nodeType":"YulIdentifier","src":"1593:12:101"},"nativeSrc":"1593:34:101","nodeType":"YulFunctionCall","src":"1593:34:101"},"variables":[{"name":"value","nativeSrc":"1584:5:101","nodeType":"YulTypedName","src":"1584:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1675:5:101","nodeType":"YulIdentifier","src":"1675:5:101"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"1636:38:101","nodeType":"YulIdentifier","src":"1636:38:101"},"nativeSrc":"1636:45:101","nodeType":"YulFunctionCall","src":"1636:45:101"},"nativeSrc":"1636:45:101","nodeType":"YulExpressionStatement","src":"1636:45:101"},{"nativeSrc":"1690:15:101","nodeType":"YulAssignment","src":"1690:15:101","value":{"name":"value","nativeSrc":"1700:5:101","nodeType":"YulIdentifier","src":"1700:5:101"},"variableNames":[{"name":"value2","nativeSrc":"1690:6:101","nodeType":"YulIdentifier","src":"1690:6:101"}]}]},"name":"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptrt_address","nativeSrc":"935:776:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1018:9:101","nodeType":"YulTypedName","src":"1018:9:101","type":""},{"name":"dataEnd","nativeSrc":"1029:7:101","nodeType":"YulTypedName","src":"1029:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1041:6:101","nodeType":"YulTypedName","src":"1041:6:101","type":""},{"name":"value1","nativeSrc":"1049:6:101","nodeType":"YulTypedName","src":"1049:6:101","type":""},{"name":"value2","nativeSrc":"1057:6:101","nodeType":"YulTypedName","src":"1057:6:101","type":""}],"src":"935:776:101"},{"body":{"nativeSrc":"1760:79:101","nodeType":"YulBlock","src":"1760:79:101","statements":[{"body":{"nativeSrc":"1817:16:101","nodeType":"YulBlock","src":"1817:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1826:1:101","nodeType":"YulLiteral","src":"1826:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1829:1:101","nodeType":"YulLiteral","src":"1829:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1819:6:101","nodeType":"YulIdentifier","src":"1819:6:101"},"nativeSrc":"1819:12:101","nodeType":"YulFunctionCall","src":"1819:12:101"},"nativeSrc":"1819:12:101","nodeType":"YulExpressionStatement","src":"1819:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1783:5:101","nodeType":"YulIdentifier","src":"1783:5:101"},{"arguments":[{"name":"value","nativeSrc":"1794:5:101","nodeType":"YulIdentifier","src":"1794:5:101"},{"kind":"number","nativeSrc":"1801:12:101","nodeType":"YulLiteral","src":"1801:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"1790:3:101","nodeType":"YulIdentifier","src":"1790:3:101"},"nativeSrc":"1790:24:101","nodeType":"YulFunctionCall","src":"1790:24:101"}],"functionName":{"name":"eq","nativeSrc":"1780:2:101","nodeType":"YulIdentifier","src":"1780:2:101"},"nativeSrc":"1780:35:101","nodeType":"YulFunctionCall","src":"1780:35:101"}],"functionName":{"name":"iszero","nativeSrc":"1773:6:101","nodeType":"YulIdentifier","src":"1773:6:101"},"nativeSrc":"1773:43:101","nodeType":"YulFunctionCall","src":"1773:43:101"},"nativeSrc":"1770:63:101","nodeType":"YulIf","src":"1770:63:101"}]},"name":"validator_revert_uint40","nativeSrc":"1716:123:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"1749:5:101","nodeType":"YulTypedName","src":"1749:5:101","type":""}],"src":"1716:123:101"},{"body":{"nativeSrc":"1892:84:101","nodeType":"YulBlock","src":"1892:84:101","statements":[{"nativeSrc":"1902:29:101","nodeType":"YulAssignment","src":"1902:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"1924:6:101","nodeType":"YulIdentifier","src":"1924:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"1911:12:101","nodeType":"YulIdentifier","src":"1911:12:101"},"nativeSrc":"1911:20:101","nodeType":"YulFunctionCall","src":"1911:20:101"},"variableNames":[{"name":"value","nativeSrc":"1902:5:101","nodeType":"YulIdentifier","src":"1902:5:101"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1964:5:101","nodeType":"YulIdentifier","src":"1964:5:101"}],"functionName":{"name":"validator_revert_uint40","nativeSrc":"1940:23:101","nodeType":"YulIdentifier","src":"1940:23:101"},"nativeSrc":"1940:30:101","nodeType":"YulFunctionCall","src":"1940:30:101"},"nativeSrc":"1940:30:101","nodeType":"YulExpressionStatement","src":"1940:30:101"}]},"name":"abi_decode_uint40","nativeSrc":"1844:132:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"1871:6:101","nodeType":"YulTypedName","src":"1871:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"1882:5:101","nodeType":"YulTypedName","src":"1882:5:101","type":""}],"src":"1844:132:101"},{"body":{"nativeSrc":"2013:95:101","nodeType":"YulBlock","src":"2013:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2030:1:101","nodeType":"YulLiteral","src":"2030:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"2037:3:101","nodeType":"YulLiteral","src":"2037:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"2042:10:101","nodeType":"YulLiteral","src":"2042:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"2033:3:101","nodeType":"YulIdentifier","src":"2033:3:101"},"nativeSrc":"2033:20:101","nodeType":"YulFunctionCall","src":"2033:20:101"}],"functionName":{"name":"mstore","nativeSrc":"2023:6:101","nodeType":"YulIdentifier","src":"2023:6:101"},"nativeSrc":"2023:31:101","nodeType":"YulFunctionCall","src":"2023:31:101"},"nativeSrc":"2023:31:101","nodeType":"YulExpressionStatement","src":"2023:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2070:1:101","nodeType":"YulLiteral","src":"2070:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"2073:4:101","nodeType":"YulLiteral","src":"2073:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"2063:6:101","nodeType":"YulIdentifier","src":"2063:6:101"},"nativeSrc":"2063:15:101","nodeType":"YulFunctionCall","src":"2063:15:101"},"nativeSrc":"2063:15:101","nodeType":"YulExpressionStatement","src":"2063:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2094:1:101","nodeType":"YulLiteral","src":"2094:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2097:4:101","nodeType":"YulLiteral","src":"2097:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"2087:6:101","nodeType":"YulIdentifier","src":"2087:6:101"},"nativeSrc":"2087:15:101","nodeType":"YulFunctionCall","src":"2087:15:101"},"nativeSrc":"2087:15:101","nodeType":"YulExpressionStatement","src":"2087:15:101"}]},"name":"panic_error_0x41","nativeSrc":"1981:127:101","nodeType":"YulFunctionDefinition","src":"1981:127:101"},{"body":{"nativeSrc":"2159:207:101","nodeType":"YulBlock","src":"2159:207:101","statements":[{"nativeSrc":"2169:19:101","nodeType":"YulAssignment","src":"2169:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"2185:2:101","nodeType":"YulLiteral","src":"2185:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"2179:5:101","nodeType":"YulIdentifier","src":"2179:5:101"},"nativeSrc":"2179:9:101","nodeType":"YulFunctionCall","src":"2179:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"2169:6:101","nodeType":"YulIdentifier","src":"2169:6:101"}]},{"nativeSrc":"2197:35:101","nodeType":"YulVariableDeclaration","src":"2197:35:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"2219:6:101","nodeType":"YulIdentifier","src":"2219:6:101"},{"kind":"number","nativeSrc":"2227:4:101","nodeType":"YulLiteral","src":"2227:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"2215:3:101","nodeType":"YulIdentifier","src":"2215:3:101"},"nativeSrc":"2215:17:101","nodeType":"YulFunctionCall","src":"2215:17:101"},"variables":[{"name":"newFreePtr","nativeSrc":"2201:10:101","nodeType":"YulTypedName","src":"2201:10:101","type":""}]},{"body":{"nativeSrc":"2307:22:101","nodeType":"YulBlock","src":"2307:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2309:16:101","nodeType":"YulIdentifier","src":"2309:16:101"},"nativeSrc":"2309:18:101","nodeType":"YulFunctionCall","src":"2309:18:101"},"nativeSrc":"2309:18:101","nodeType":"YulExpressionStatement","src":"2309:18:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"2250:10:101","nodeType":"YulIdentifier","src":"2250:10:101"},{"kind":"number","nativeSrc":"2262:18:101","nodeType":"YulLiteral","src":"2262:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2247:2:101","nodeType":"YulIdentifier","src":"2247:2:101"},"nativeSrc":"2247:34:101","nodeType":"YulFunctionCall","src":"2247:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"2286:10:101","nodeType":"YulIdentifier","src":"2286:10:101"},{"name":"memPtr","nativeSrc":"2298:6:101","nodeType":"YulIdentifier","src":"2298:6:101"}],"functionName":{"name":"lt","nativeSrc":"2283:2:101","nodeType":"YulIdentifier","src":"2283:2:101"},"nativeSrc":"2283:22:101","nodeType":"YulFunctionCall","src":"2283:22:101"}],"functionName":{"name":"or","nativeSrc":"2244:2:101","nodeType":"YulIdentifier","src":"2244:2:101"},"nativeSrc":"2244:62:101","nodeType":"YulFunctionCall","src":"2244:62:101"},"nativeSrc":"2241:88:101","nodeType":"YulIf","src":"2241:88:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2345:2:101","nodeType":"YulLiteral","src":"2345:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"2349:10:101","nodeType":"YulIdentifier","src":"2349:10:101"}],"functionName":{"name":"mstore","nativeSrc":"2338:6:101","nodeType":"YulIdentifier","src":"2338:6:101"},"nativeSrc":"2338:22:101","nodeType":"YulFunctionCall","src":"2338:22:101"},"nativeSrc":"2338:22:101","nodeType":"YulExpressionStatement","src":"2338:22:101"}]},"name":"allocate_memory_2372","nativeSrc":"2113:253:101","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"2148:6:101","nodeType":"YulTypedName","src":"2148:6:101","type":""}],"src":"2113:253:101"},{"body":{"nativeSrc":"2417:209:101","nodeType":"YulBlock","src":"2417:209:101","statements":[{"nativeSrc":"2427:19:101","nodeType":"YulAssignment","src":"2427:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"2443:2:101","nodeType":"YulLiteral","src":"2443:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"2437:5:101","nodeType":"YulIdentifier","src":"2437:5:101"},"nativeSrc":"2437:9:101","nodeType":"YulFunctionCall","src":"2437:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"2427:6:101","nodeType":"YulIdentifier","src":"2427:6:101"}]},{"nativeSrc":"2455:37:101","nodeType":"YulVariableDeclaration","src":"2455:37:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"2477:6:101","nodeType":"YulIdentifier","src":"2477:6:101"},{"kind":"number","nativeSrc":"2485:6:101","nodeType":"YulLiteral","src":"2485:6:101","type":"","value":"0x0180"}],"functionName":{"name":"add","nativeSrc":"2473:3:101","nodeType":"YulIdentifier","src":"2473:3:101"},"nativeSrc":"2473:19:101","nodeType":"YulFunctionCall","src":"2473:19:101"},"variables":[{"name":"newFreePtr","nativeSrc":"2459:10:101","nodeType":"YulTypedName","src":"2459:10:101","type":""}]},{"body":{"nativeSrc":"2567:22:101","nodeType":"YulBlock","src":"2567:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2569:16:101","nodeType":"YulIdentifier","src":"2569:16:101"},"nativeSrc":"2569:18:101","nodeType":"YulFunctionCall","src":"2569:18:101"},"nativeSrc":"2569:18:101","nodeType":"YulExpressionStatement","src":"2569:18:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"2510:10:101","nodeType":"YulIdentifier","src":"2510:10:101"},{"kind":"number","nativeSrc":"2522:18:101","nodeType":"YulLiteral","src":"2522:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2507:2:101","nodeType":"YulIdentifier","src":"2507:2:101"},"nativeSrc":"2507:34:101","nodeType":"YulFunctionCall","src":"2507:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"2546:10:101","nodeType":"YulIdentifier","src":"2546:10:101"},{"name":"memPtr","nativeSrc":"2558:6:101","nodeType":"YulIdentifier","src":"2558:6:101"}],"functionName":{"name":"lt","nativeSrc":"2543:2:101","nodeType":"YulIdentifier","src":"2543:2:101"},"nativeSrc":"2543:22:101","nodeType":"YulFunctionCall","src":"2543:22:101"}],"functionName":{"name":"or","nativeSrc":"2504:2:101","nodeType":"YulIdentifier","src":"2504:2:101"},"nativeSrc":"2504:62:101","nodeType":"YulFunctionCall","src":"2504:62:101"},"nativeSrc":"2501:88:101","nodeType":"YulIf","src":"2501:88:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2605:2:101","nodeType":"YulLiteral","src":"2605:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"2609:10:101","nodeType":"YulIdentifier","src":"2609:10:101"}],"functionName":{"name":"mstore","nativeSrc":"2598:6:101","nodeType":"YulIdentifier","src":"2598:6:101"},"nativeSrc":"2598:22:101","nodeType":"YulFunctionCall","src":"2598:22:101"},"nativeSrc":"2598:22:101","nodeType":"YulExpressionStatement","src":"2598:22:101"}]},"name":"allocate_memory_2373","nativeSrc":"2371:255:101","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"2406:6:101","nodeType":"YulTypedName","src":"2406:6:101","type":""}],"src":"2371:255:101"},{"body":{"nativeSrc":"2676:230:101","nodeType":"YulBlock","src":"2676:230:101","statements":[{"nativeSrc":"2686:19:101","nodeType":"YulAssignment","src":"2686:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"2702:2:101","nodeType":"YulLiteral","src":"2702:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"2696:5:101","nodeType":"YulIdentifier","src":"2696:5:101"},"nativeSrc":"2696:9:101","nodeType":"YulFunctionCall","src":"2696:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"2686:6:101","nodeType":"YulIdentifier","src":"2686:6:101"}]},{"nativeSrc":"2714:58:101","nodeType":"YulVariableDeclaration","src":"2714:58:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"2736:6:101","nodeType":"YulIdentifier","src":"2736:6:101"},{"arguments":[{"arguments":[{"name":"size","nativeSrc":"2752:4:101","nodeType":"YulIdentifier","src":"2752:4:101"},{"kind":"number","nativeSrc":"2758:2:101","nodeType":"YulLiteral","src":"2758:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2748:3:101","nodeType":"YulIdentifier","src":"2748:3:101"},"nativeSrc":"2748:13:101","nodeType":"YulFunctionCall","src":"2748:13:101"},{"arguments":[{"kind":"number","nativeSrc":"2767:2:101","nodeType":"YulLiteral","src":"2767:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"2763:3:101","nodeType":"YulIdentifier","src":"2763:3:101"},"nativeSrc":"2763:7:101","nodeType":"YulFunctionCall","src":"2763:7:101"}],"functionName":{"name":"and","nativeSrc":"2744:3:101","nodeType":"YulIdentifier","src":"2744:3:101"},"nativeSrc":"2744:27:101","nodeType":"YulFunctionCall","src":"2744:27:101"}],"functionName":{"name":"add","nativeSrc":"2732:3:101","nodeType":"YulIdentifier","src":"2732:3:101"},"nativeSrc":"2732:40:101","nodeType":"YulFunctionCall","src":"2732:40:101"},"variables":[{"name":"newFreePtr","nativeSrc":"2718:10:101","nodeType":"YulTypedName","src":"2718:10:101","type":""}]},{"body":{"nativeSrc":"2847:22:101","nodeType":"YulBlock","src":"2847:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2849:16:101","nodeType":"YulIdentifier","src":"2849:16:101"},"nativeSrc":"2849:18:101","nodeType":"YulFunctionCall","src":"2849:18:101"},"nativeSrc":"2849:18:101","nodeType":"YulExpressionStatement","src":"2849:18:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"2790:10:101","nodeType":"YulIdentifier","src":"2790:10:101"},{"kind":"number","nativeSrc":"2802:18:101","nodeType":"YulLiteral","src":"2802:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2787:2:101","nodeType":"YulIdentifier","src":"2787:2:101"},"nativeSrc":"2787:34:101","nodeType":"YulFunctionCall","src":"2787:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"2826:10:101","nodeType":"YulIdentifier","src":"2826:10:101"},{"name":"memPtr","nativeSrc":"2838:6:101","nodeType":"YulIdentifier","src":"2838:6:101"}],"functionName":{"name":"lt","nativeSrc":"2823:2:101","nodeType":"YulIdentifier","src":"2823:2:101"},"nativeSrc":"2823:22:101","nodeType":"YulFunctionCall","src":"2823:22:101"}],"functionName":{"name":"or","nativeSrc":"2784:2:101","nodeType":"YulIdentifier","src":"2784:2:101"},"nativeSrc":"2784:62:101","nodeType":"YulFunctionCall","src":"2784:62:101"},"nativeSrc":"2781:88:101","nodeType":"YulIf","src":"2781:88:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2885:2:101","nodeType":"YulLiteral","src":"2885:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"2889:10:101","nodeType":"YulIdentifier","src":"2889:10:101"}],"functionName":{"name":"mstore","nativeSrc":"2878:6:101","nodeType":"YulIdentifier","src":"2878:6:101"},"nativeSrc":"2878:22:101","nodeType":"YulFunctionCall","src":"2878:22:101"},"nativeSrc":"2878:22:101","nodeType":"YulExpressionStatement","src":"2878:22:101"}]},"name":"allocate_memory","nativeSrc":"2631:275:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nativeSrc":"2656:4:101","nodeType":"YulTypedName","src":"2656:4:101","type":""}],"returnVariables":[{"name":"memPtr","nativeSrc":"2665:6:101","nodeType":"YulTypedName","src":"2665:6:101","type":""}],"src":"2631:275:101"},{"body":{"nativeSrc":"3072:1497:101","nodeType":"YulBlock","src":"3072:1497:101","statements":[{"nativeSrc":"3082:33:101","nodeType":"YulVariableDeclaration","src":"3082:33:101","value":{"arguments":[{"name":"dataEnd","nativeSrc":"3096:7:101","nodeType":"YulIdentifier","src":"3096:7:101"},{"name":"headStart","nativeSrc":"3105:9:101","nodeType":"YulIdentifier","src":"3105:9:101"}],"functionName":{"name":"sub","nativeSrc":"3092:3:101","nodeType":"YulIdentifier","src":"3092:3:101"},"nativeSrc":"3092:23:101","nodeType":"YulFunctionCall","src":"3092:23:101"},"variables":[{"name":"_1","nativeSrc":"3086:2:101","nodeType":"YulTypedName","src":"3086:2:101","type":""}]},{"body":{"nativeSrc":"3140:16:101","nodeType":"YulBlock","src":"3140:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3149:1:101","nodeType":"YulLiteral","src":"3149:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3152:1:101","nodeType":"YulLiteral","src":"3152:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3142:6:101","nodeType":"YulIdentifier","src":"3142:6:101"},"nativeSrc":"3142:12:101","nodeType":"YulFunctionCall","src":"3142:12:101"},"nativeSrc":"3142:12:101","nodeType":"YulExpressionStatement","src":"3142:12:101"}]},"condition":{"arguments":[{"name":"_1","nativeSrc":"3131:2:101","nodeType":"YulIdentifier","src":"3131:2:101"},{"kind":"number","nativeSrc":"3135:3:101","nodeType":"YulLiteral","src":"3135:3:101","type":"","value":"352"}],"functionName":{"name":"slt","nativeSrc":"3127:3:101","nodeType":"YulIdentifier","src":"3127:3:101"},"nativeSrc":"3127:12:101","nodeType":"YulFunctionCall","src":"3127:12:101"},"nativeSrc":"3124:32:101","nodeType":"YulIf","src":"3124:32:101"},{"nativeSrc":"3165:14:101","nodeType":"YulVariableDeclaration","src":"3165:14:101","value":{"kind":"number","nativeSrc":"3178:1:101","nodeType":"YulLiteral","src":"3178:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3169:5:101","nodeType":"YulTypedName","src":"3169:5:101","type":""}]},{"nativeSrc":"3188:32:101","nodeType":"YulAssignment","src":"3188:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3210:9:101","nodeType":"YulIdentifier","src":"3210:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"3197:12:101","nodeType":"YulIdentifier","src":"3197:12:101"},"nativeSrc":"3197:23:101","nodeType":"YulFunctionCall","src":"3197:23:101"},"variableNames":[{"name":"value","nativeSrc":"3188:5:101","nodeType":"YulIdentifier","src":"3188:5:101"}]},{"nativeSrc":"3229:15:101","nodeType":"YulAssignment","src":"3229:15:101","value":{"name":"value","nativeSrc":"3239:5:101","nodeType":"YulIdentifier","src":"3239:5:101"},"variableNames":[{"name":"value0","nativeSrc":"3229:6:101","nodeType":"YulIdentifier","src":"3229:6:101"}]},{"nativeSrc":"3253:16:101","nodeType":"YulVariableDeclaration","src":"3253:16:101","value":{"kind":"number","nativeSrc":"3268:1:101","nodeType":"YulLiteral","src":"3268:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"3257:7:101","nodeType":"YulTypedName","src":"3257:7:101","type":""}]},{"nativeSrc":"3278:43:101","nodeType":"YulAssignment","src":"3278:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3306:9:101","nodeType":"YulIdentifier","src":"3306:9:101"},{"kind":"number","nativeSrc":"3317:2:101","nodeType":"YulLiteral","src":"3317:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3302:3:101","nodeType":"YulIdentifier","src":"3302:3:101"},"nativeSrc":"3302:18:101","nodeType":"YulFunctionCall","src":"3302:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3289:12:101","nodeType":"YulIdentifier","src":"3289:12:101"},"nativeSrc":"3289:32:101","nodeType":"YulFunctionCall","src":"3289:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"3278:7:101","nodeType":"YulIdentifier","src":"3278:7:101"}]},{"nativeSrc":"3330:17:101","nodeType":"YulAssignment","src":"3330:17:101","value":{"name":"value_1","nativeSrc":"3340:7:101","nodeType":"YulIdentifier","src":"3340:7:101"},"variableNames":[{"name":"value1","nativeSrc":"3330:6:101","nodeType":"YulIdentifier","src":"3330:6:101"}]},{"nativeSrc":"3356:47:101","nodeType":"YulVariableDeclaration","src":"3356:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3388:9:101","nodeType":"YulIdentifier","src":"3388:9:101"},{"kind":"number","nativeSrc":"3399:2:101","nodeType":"YulLiteral","src":"3399:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3384:3:101","nodeType":"YulIdentifier","src":"3384:3:101"},"nativeSrc":"3384:18:101","nodeType":"YulFunctionCall","src":"3384:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3371:12:101","nodeType":"YulIdentifier","src":"3371:12:101"},"nativeSrc":"3371:32:101","nodeType":"YulFunctionCall","src":"3371:32:101"},"variables":[{"name":"value_2","nativeSrc":"3360:7:101","nodeType":"YulTypedName","src":"3360:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"3436:7:101","nodeType":"YulIdentifier","src":"3436:7:101"}],"functionName":{"name":"validator_revert_uint40","nativeSrc":"3412:23:101","nodeType":"YulIdentifier","src":"3412:23:101"},"nativeSrc":"3412:32:101","nodeType":"YulFunctionCall","src":"3412:32:101"},"nativeSrc":"3412:32:101","nodeType":"YulExpressionStatement","src":"3412:32:101"},{"nativeSrc":"3453:17:101","nodeType":"YulAssignment","src":"3453:17:101","value":{"name":"value_2","nativeSrc":"3463:7:101","nodeType":"YulIdentifier","src":"3463:7:101"},"variableNames":[{"name":"value2","nativeSrc":"3453:6:101","nodeType":"YulIdentifier","src":"3453:6:101"}]},{"nativeSrc":"3479:47:101","nodeType":"YulVariableDeclaration","src":"3479:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3511:9:101","nodeType":"YulIdentifier","src":"3511:9:101"},{"kind":"number","nativeSrc":"3522:2:101","nodeType":"YulLiteral","src":"3522:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3507:3:101","nodeType":"YulIdentifier","src":"3507:3:101"},"nativeSrc":"3507:18:101","nodeType":"YulFunctionCall","src":"3507:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3494:12:101","nodeType":"YulIdentifier","src":"3494:12:101"},"nativeSrc":"3494:32:101","nodeType":"YulFunctionCall","src":"3494:32:101"},"variables":[{"name":"value_3","nativeSrc":"3483:7:101","nodeType":"YulTypedName","src":"3483:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"3559:7:101","nodeType":"YulIdentifier","src":"3559:7:101"}],"functionName":{"name":"validator_revert_uint40","nativeSrc":"3535:23:101","nodeType":"YulIdentifier","src":"3535:23:101"},"nativeSrc":"3535:32:101","nodeType":"YulFunctionCall","src":"3535:32:101"},"nativeSrc":"3535:32:101","nodeType":"YulExpressionStatement","src":"3535:32:101"},{"nativeSrc":"3576:17:101","nodeType":"YulAssignment","src":"3576:17:101","value":{"name":"value_3","nativeSrc":"3586:7:101","nodeType":"YulIdentifier","src":"3586:7:101"},"variableNames":[{"name":"value3","nativeSrc":"3576:6:101","nodeType":"YulIdentifier","src":"3576:6:101"}]},{"body":{"nativeSrc":"3634:16:101","nodeType":"YulBlock","src":"3634:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3643:1:101","nodeType":"YulLiteral","src":"3643:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3646:1:101","nodeType":"YulLiteral","src":"3646:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3636:6:101","nodeType":"YulIdentifier","src":"3636:6:101"},"nativeSrc":"3636:12:101","nodeType":"YulFunctionCall","src":"3636:12:101"},"nativeSrc":"3636:12:101","nodeType":"YulExpressionStatement","src":"3636:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"3613:2:101","nodeType":"YulIdentifier","src":"3613:2:101"},{"arguments":[{"kind":"number","nativeSrc":"3621:3:101","nodeType":"YulLiteral","src":"3621:3:101","type":"","value":"127"}],"functionName":{"name":"not","nativeSrc":"3617:3:101","nodeType":"YulIdentifier","src":"3617:3:101"},"nativeSrc":"3617:8:101","nodeType":"YulFunctionCall","src":"3617:8:101"}],"functionName":{"name":"add","nativeSrc":"3609:3:101","nodeType":"YulIdentifier","src":"3609:3:101"},"nativeSrc":"3609:17:101","nodeType":"YulFunctionCall","src":"3609:17:101"},{"kind":"number","nativeSrc":"3628:4:101","nodeType":"YulLiteral","src":"3628:4:101","type":"","value":"0xe0"}],"functionName":{"name":"slt","nativeSrc":"3605:3:101","nodeType":"YulIdentifier","src":"3605:3:101"},"nativeSrc":"3605:28:101","nodeType":"YulFunctionCall","src":"3605:28:101"},"nativeSrc":"3602:48:101","nodeType":"YulIf","src":"3602:48:101"},{"nativeSrc":"3659:37:101","nodeType":"YulVariableDeclaration","src":"3659:37:101","value":{"arguments":[],"functionName":{"name":"allocate_memory_2372","nativeSrc":"3674:20:101","nodeType":"YulIdentifier","src":"3674:20:101"},"nativeSrc":"3674:22:101","nodeType":"YulFunctionCall","src":"3674:22:101"},"variables":[{"name":"value_4","nativeSrc":"3663:7:101","nodeType":"YulTypedName","src":"3663:7:101","type":""}]},{"nativeSrc":"3705:16:101","nodeType":"YulVariableDeclaration","src":"3705:16:101","value":{"kind":"number","nativeSrc":"3720:1:101","nodeType":"YulLiteral","src":"3720:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"3709:7:101","nodeType":"YulTypedName","src":"3709:7:101","type":""}]},{"nativeSrc":"3730:44:101","nodeType":"YulAssignment","src":"3730:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3758:9:101","nodeType":"YulIdentifier","src":"3758:9:101"},{"kind":"number","nativeSrc":"3769:3:101","nodeType":"YulLiteral","src":"3769:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"3754:3:101","nodeType":"YulIdentifier","src":"3754:3:101"},"nativeSrc":"3754:19:101","nodeType":"YulFunctionCall","src":"3754:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"3741:12:101","nodeType":"YulIdentifier","src":"3741:12:101"},"nativeSrc":"3741:33:101","nodeType":"YulFunctionCall","src":"3741:33:101"},"variableNames":[{"name":"value_5","nativeSrc":"3730:7:101","nodeType":"YulIdentifier","src":"3730:7:101"}]},{"expression":{"arguments":[{"name":"value_4","nativeSrc":"3790:7:101","nodeType":"YulIdentifier","src":"3790:7:101"},{"name":"value_5","nativeSrc":"3799:7:101","nodeType":"YulIdentifier","src":"3799:7:101"}],"functionName":{"name":"mstore","nativeSrc":"3783:6:101","nodeType":"YulIdentifier","src":"3783:6:101"},"nativeSrc":"3783:24:101","nodeType":"YulFunctionCall","src":"3783:24:101"},"nativeSrc":"3783:24:101","nodeType":"YulExpressionStatement","src":"3783:24:101"},{"nativeSrc":"3816:16:101","nodeType":"YulVariableDeclaration","src":"3816:16:101","value":{"kind":"number","nativeSrc":"3831:1:101","nodeType":"YulLiteral","src":"3831:1:101","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"3820:7:101","nodeType":"YulTypedName","src":"3820:7:101","type":""}]},{"nativeSrc":"3841:44:101","nodeType":"YulAssignment","src":"3841:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3869:9:101","nodeType":"YulIdentifier","src":"3869:9:101"},{"kind":"number","nativeSrc":"3880:3:101","nodeType":"YulLiteral","src":"3880:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"3865:3:101","nodeType":"YulIdentifier","src":"3865:3:101"},"nativeSrc":"3865:19:101","nodeType":"YulFunctionCall","src":"3865:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"3852:12:101","nodeType":"YulIdentifier","src":"3852:12:101"},"nativeSrc":"3852:33:101","nodeType":"YulFunctionCall","src":"3852:33:101"},"variableNames":[{"name":"value_6","nativeSrc":"3841:7:101","nodeType":"YulIdentifier","src":"3841:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_4","nativeSrc":"3905:7:101","nodeType":"YulIdentifier","src":"3905:7:101"},{"kind":"number","nativeSrc":"3914:2:101","nodeType":"YulLiteral","src":"3914:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3901:3:101","nodeType":"YulIdentifier","src":"3901:3:101"},"nativeSrc":"3901:16:101","nodeType":"YulFunctionCall","src":"3901:16:101"},{"name":"value_6","nativeSrc":"3919:7:101","nodeType":"YulIdentifier","src":"3919:7:101"}],"functionName":{"name":"mstore","nativeSrc":"3894:6:101","nodeType":"YulIdentifier","src":"3894:6:101"},"nativeSrc":"3894:33:101","nodeType":"YulFunctionCall","src":"3894:33:101"},"nativeSrc":"3894:33:101","nodeType":"YulExpressionStatement","src":"3894:33:101"},{"nativeSrc":"3936:16:101","nodeType":"YulVariableDeclaration","src":"3936:16:101","value":{"kind":"number","nativeSrc":"3951:1:101","nodeType":"YulLiteral","src":"3951:1:101","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"3940:7:101","nodeType":"YulTypedName","src":"3940:7:101","type":""}]},{"nativeSrc":"3961:44:101","nodeType":"YulAssignment","src":"3961:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3989:9:101","nodeType":"YulIdentifier","src":"3989:9:101"},{"kind":"number","nativeSrc":"4000:3:101","nodeType":"YulLiteral","src":"4000:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"3985:3:101","nodeType":"YulIdentifier","src":"3985:3:101"},"nativeSrc":"3985:19:101","nodeType":"YulFunctionCall","src":"3985:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"3972:12:101","nodeType":"YulIdentifier","src":"3972:12:101"},"nativeSrc":"3972:33:101","nodeType":"YulFunctionCall","src":"3972:33:101"},"variableNames":[{"name":"value_7","nativeSrc":"3961:7:101","nodeType":"YulIdentifier","src":"3961:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_4","nativeSrc":"4025:7:101","nodeType":"YulIdentifier","src":"4025:7:101"},{"kind":"number","nativeSrc":"4034:2:101","nodeType":"YulLiteral","src":"4034:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4021:3:101","nodeType":"YulIdentifier","src":"4021:3:101"},"nativeSrc":"4021:16:101","nodeType":"YulFunctionCall","src":"4021:16:101"},{"name":"value_7","nativeSrc":"4039:7:101","nodeType":"YulIdentifier","src":"4039:7:101"}],"functionName":{"name":"mstore","nativeSrc":"4014:6:101","nodeType":"YulIdentifier","src":"4014:6:101"},"nativeSrc":"4014:33:101","nodeType":"YulFunctionCall","src":"4014:33:101"},"nativeSrc":"4014:33:101","nodeType":"YulExpressionStatement","src":"4014:33:101"},{"nativeSrc":"4056:16:101","nodeType":"YulVariableDeclaration","src":"4056:16:101","value":{"kind":"number","nativeSrc":"4071:1:101","nodeType":"YulLiteral","src":"4071:1:101","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"4060:7:101","nodeType":"YulTypedName","src":"4060:7:101","type":""}]},{"nativeSrc":"4081:45:101","nodeType":"YulAssignment","src":"4081:45:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4109:9:101","nodeType":"YulIdentifier","src":"4109:9:101"},{"kind":"number","nativeSrc":"4120:4:101","nodeType":"YulLiteral","src":"4120:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"4105:3:101","nodeType":"YulIdentifier","src":"4105:3:101"},"nativeSrc":"4105:20:101","nodeType":"YulFunctionCall","src":"4105:20:101"}],"functionName":{"name":"calldataload","nativeSrc":"4092:12:101","nodeType":"YulIdentifier","src":"4092:12:101"},"nativeSrc":"4092:34:101","nodeType":"YulFunctionCall","src":"4092:34:101"},"variableNames":[{"name":"value_8","nativeSrc":"4081:7:101","nodeType":"YulIdentifier","src":"4081:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_4","nativeSrc":"4146:7:101","nodeType":"YulIdentifier","src":"4146:7:101"},{"kind":"number","nativeSrc":"4155:2:101","nodeType":"YulLiteral","src":"4155:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4142:3:101","nodeType":"YulIdentifier","src":"4142:3:101"},"nativeSrc":"4142:16:101","nodeType":"YulFunctionCall","src":"4142:16:101"},{"name":"value_8","nativeSrc":"4160:7:101","nodeType":"YulIdentifier","src":"4160:7:101"}],"functionName":{"name":"mstore","nativeSrc":"4135:6:101","nodeType":"YulIdentifier","src":"4135:6:101"},"nativeSrc":"4135:33:101","nodeType":"YulFunctionCall","src":"4135:33:101"},"nativeSrc":"4135:33:101","nodeType":"YulExpressionStatement","src":"4135:33:101"},{"nativeSrc":"4177:16:101","nodeType":"YulVariableDeclaration","src":"4177:16:101","value":{"kind":"number","nativeSrc":"4192:1:101","nodeType":"YulLiteral","src":"4192:1:101","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"4181:7:101","nodeType":"YulTypedName","src":"4181:7:101","type":""}]},{"nativeSrc":"4202:44:101","nodeType":"YulAssignment","src":"4202:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4230:9:101","nodeType":"YulIdentifier","src":"4230:9:101"},{"kind":"number","nativeSrc":"4241:3:101","nodeType":"YulLiteral","src":"4241:3:101","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"4226:3:101","nodeType":"YulIdentifier","src":"4226:3:101"},"nativeSrc":"4226:19:101","nodeType":"YulFunctionCall","src":"4226:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"4213:12:101","nodeType":"YulIdentifier","src":"4213:12:101"},"nativeSrc":"4213:33:101","nodeType":"YulFunctionCall","src":"4213:33:101"},"variableNames":[{"name":"value_9","nativeSrc":"4202:7:101","nodeType":"YulIdentifier","src":"4202:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_4","nativeSrc":"4266:7:101","nodeType":"YulIdentifier","src":"4266:7:101"},{"kind":"number","nativeSrc":"4275:3:101","nodeType":"YulLiteral","src":"4275:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4262:3:101","nodeType":"YulIdentifier","src":"4262:3:101"},"nativeSrc":"4262:17:101","nodeType":"YulFunctionCall","src":"4262:17:101"},{"name":"value_9","nativeSrc":"4281:7:101","nodeType":"YulIdentifier","src":"4281:7:101"}],"functionName":{"name":"mstore","nativeSrc":"4255:6:101","nodeType":"YulIdentifier","src":"4255:6:101"},"nativeSrc":"4255:34:101","nodeType":"YulFunctionCall","src":"4255:34:101"},"nativeSrc":"4255:34:101","nodeType":"YulExpressionStatement","src":"4255:34:101"},{"nativeSrc":"4298:17:101","nodeType":"YulVariableDeclaration","src":"4298:17:101","value":{"kind":"number","nativeSrc":"4314:1:101","nodeType":"YulLiteral","src":"4314:1:101","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"4302:8:101","nodeType":"YulTypedName","src":"4302:8:101","type":""}]},{"nativeSrc":"4324:45:101","nodeType":"YulAssignment","src":"4324:45:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4353:9:101","nodeType":"YulIdentifier","src":"4353:9:101"},{"kind":"number","nativeSrc":"4364:3:101","nodeType":"YulLiteral","src":"4364:3:101","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"4349:3:101","nodeType":"YulIdentifier","src":"4349:3:101"},"nativeSrc":"4349:19:101","nodeType":"YulFunctionCall","src":"4349:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"4336:12:101","nodeType":"YulIdentifier","src":"4336:12:101"},"nativeSrc":"4336:33:101","nodeType":"YulFunctionCall","src":"4336:33:101"},"variableNames":[{"name":"value_10","nativeSrc":"4324:8:101","nodeType":"YulIdentifier","src":"4324:8:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_4","nativeSrc":"4389:7:101","nodeType":"YulIdentifier","src":"4389:7:101"},{"kind":"number","nativeSrc":"4398:3:101","nodeType":"YulLiteral","src":"4398:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"4385:3:101","nodeType":"YulIdentifier","src":"4385:3:101"},"nativeSrc":"4385:17:101","nodeType":"YulFunctionCall","src":"4385:17:101"},{"name":"value_10","nativeSrc":"4404:8:101","nodeType":"YulIdentifier","src":"4404:8:101"}],"functionName":{"name":"mstore","nativeSrc":"4378:6:101","nodeType":"YulIdentifier","src":"4378:6:101"},"nativeSrc":"4378:35:101","nodeType":"YulFunctionCall","src":"4378:35:101"},"nativeSrc":"4378:35:101","nodeType":"YulExpressionStatement","src":"4378:35:101"},{"nativeSrc":"4422:17:101","nodeType":"YulVariableDeclaration","src":"4422:17:101","value":{"kind":"number","nativeSrc":"4438:1:101","nodeType":"YulLiteral","src":"4438:1:101","type":"","value":"0"},"variables":[{"name":"value_11","nativeSrc":"4426:8:101","nodeType":"YulTypedName","src":"4426:8:101","type":""}]},{"nativeSrc":"4448:45:101","nodeType":"YulAssignment","src":"4448:45:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4477:9:101","nodeType":"YulIdentifier","src":"4477:9:101"},{"kind":"number","nativeSrc":"4488:3:101","nodeType":"YulLiteral","src":"4488:3:101","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"4473:3:101","nodeType":"YulIdentifier","src":"4473:3:101"},"nativeSrc":"4473:19:101","nodeType":"YulFunctionCall","src":"4473:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"4460:12:101","nodeType":"YulIdentifier","src":"4460:12:101"},"nativeSrc":"4460:33:101","nodeType":"YulFunctionCall","src":"4460:33:101"},"variableNames":[{"name":"value_11","nativeSrc":"4448:8:101","nodeType":"YulIdentifier","src":"4448:8:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_4","nativeSrc":"4513:7:101","nodeType":"YulIdentifier","src":"4513:7:101"},{"kind":"number","nativeSrc":"4522:3:101","nodeType":"YulLiteral","src":"4522:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"4509:3:101","nodeType":"YulIdentifier","src":"4509:3:101"},"nativeSrc":"4509:17:101","nodeType":"YulFunctionCall","src":"4509:17:101"},{"name":"value_11","nativeSrc":"4528:8:101","nodeType":"YulIdentifier","src":"4528:8:101"}],"functionName":{"name":"mstore","nativeSrc":"4502:6:101","nodeType":"YulIdentifier","src":"4502:6:101"},"nativeSrc":"4502:35:101","nodeType":"YulFunctionCall","src":"4502:35:101"},"nativeSrc":"4502:35:101","nodeType":"YulExpressionStatement","src":"4502:35:101"},{"nativeSrc":"4546:17:101","nodeType":"YulAssignment","src":"4546:17:101","value":{"name":"value_4","nativeSrc":"4556:7:101","nodeType":"YulIdentifier","src":"4556:7:101"},"variableNames":[{"name":"value4","nativeSrc":"4546:6:101","nodeType":"YulIdentifier","src":"4546:6:101"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256t_uint40t_uint40t_struct$_Params_$22230_memory_ptr","nativeSrc":"2911:1658:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3006:9:101","nodeType":"YulTypedName","src":"3006:9:101","type":""},{"name":"dataEnd","nativeSrc":"3017:7:101","nodeType":"YulTypedName","src":"3017:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3029:6:101","nodeType":"YulTypedName","src":"3029:6:101","type":""},{"name":"value1","nativeSrc":"3037:6:101","nodeType":"YulTypedName","src":"3037:6:101","type":""},{"name":"value2","nativeSrc":"3045:6:101","nodeType":"YulTypedName","src":"3045:6:101","type":""},{"name":"value3","nativeSrc":"3053:6:101","nodeType":"YulTypedName","src":"3053:6:101","type":""},{"name":"value4","nativeSrc":"3061:6:101","nodeType":"YulTypedName","src":"3061:6:101","type":""}],"src":"2911:1658:101"},{"body":{"nativeSrc":"4675:76:101","nodeType":"YulBlock","src":"4675:76:101","statements":[{"nativeSrc":"4685:26:101","nodeType":"YulAssignment","src":"4685:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4697:9:101","nodeType":"YulIdentifier","src":"4697:9:101"},{"kind":"number","nativeSrc":"4708:2:101","nodeType":"YulLiteral","src":"4708:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4693:3:101","nodeType":"YulIdentifier","src":"4693:3:101"},"nativeSrc":"4693:18:101","nodeType":"YulFunctionCall","src":"4693:18:101"},"variableNames":[{"name":"tail","nativeSrc":"4685:4:101","nodeType":"YulIdentifier","src":"4685:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4727:9:101","nodeType":"YulIdentifier","src":"4727:9:101"},{"name":"value0","nativeSrc":"4738:6:101","nodeType":"YulIdentifier","src":"4738:6:101"}],"functionName":{"name":"mstore","nativeSrc":"4720:6:101","nodeType":"YulIdentifier","src":"4720:6:101"},"nativeSrc":"4720:25:101","nodeType":"YulFunctionCall","src":"4720:25:101"},"nativeSrc":"4720:25:101","nodeType":"YulExpressionStatement","src":"4720:25:101"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"4574:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4644:9:101","nodeType":"YulTypedName","src":"4644:9:101","type":""},{"name":"value0","nativeSrc":"4655:6:101","nodeType":"YulTypedName","src":"4655:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4666:4:101","nodeType":"YulTypedName","src":"4666:4:101","type":""}],"src":"4574:177:101"},{"body":{"nativeSrc":"4865:329:101","nodeType":"YulBlock","src":"4865:329:101","statements":[{"body":{"nativeSrc":"4911:16:101","nodeType":"YulBlock","src":"4911:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4920:1:101","nodeType":"YulLiteral","src":"4920:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4923:1:101","nodeType":"YulLiteral","src":"4923:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4913:6:101","nodeType":"YulIdentifier","src":"4913:6:101"},"nativeSrc":"4913:12:101","nodeType":"YulFunctionCall","src":"4913:12:101"},"nativeSrc":"4913:12:101","nodeType":"YulExpressionStatement","src":"4913:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4886:7:101","nodeType":"YulIdentifier","src":"4886:7:101"},{"name":"headStart","nativeSrc":"4895:9:101","nodeType":"YulIdentifier","src":"4895:9:101"}],"functionName":{"name":"sub","nativeSrc":"4882:3:101","nodeType":"YulIdentifier","src":"4882:3:101"},"nativeSrc":"4882:23:101","nodeType":"YulFunctionCall","src":"4882:23:101"},{"kind":"number","nativeSrc":"4907:2:101","nodeType":"YulLiteral","src":"4907:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4878:3:101","nodeType":"YulIdentifier","src":"4878:3:101"},"nativeSrc":"4878:32:101","nodeType":"YulFunctionCall","src":"4878:32:101"},"nativeSrc":"4875:52:101","nodeType":"YulIf","src":"4875:52:101"},{"nativeSrc":"4936:36:101","nodeType":"YulVariableDeclaration","src":"4936:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4962:9:101","nodeType":"YulIdentifier","src":"4962:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"4949:12:101","nodeType":"YulIdentifier","src":"4949:12:101"},"nativeSrc":"4949:23:101","nodeType":"YulFunctionCall","src":"4949:23:101"},"variables":[{"name":"value","nativeSrc":"4940:5:101","nodeType":"YulTypedName","src":"4940:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5020:5:101","nodeType":"YulIdentifier","src":"5020:5:101"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"4981:38:101","nodeType":"YulIdentifier","src":"4981:38:101"},"nativeSrc":"4981:45:101","nodeType":"YulFunctionCall","src":"4981:45:101"},"nativeSrc":"4981:45:101","nodeType":"YulExpressionStatement","src":"4981:45:101"},{"nativeSrc":"5035:15:101","nodeType":"YulAssignment","src":"5035:15:101","value":{"name":"value","nativeSrc":"5045:5:101","nodeType":"YulIdentifier","src":"5045:5:101"},"variableNames":[{"name":"value0","nativeSrc":"5035:6:101","nodeType":"YulIdentifier","src":"5035:6:101"}]},{"nativeSrc":"5059:47:101","nodeType":"YulVariableDeclaration","src":"5059:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5091:9:101","nodeType":"YulIdentifier","src":"5091:9:101"},{"kind":"number","nativeSrc":"5102:2:101","nodeType":"YulLiteral","src":"5102:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5087:3:101","nodeType":"YulIdentifier","src":"5087:3:101"},"nativeSrc":"5087:18:101","nodeType":"YulFunctionCall","src":"5087:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"5074:12:101","nodeType":"YulIdentifier","src":"5074:12:101"},"nativeSrc":"5074:32:101","nodeType":"YulFunctionCall","src":"5074:32:101"},"variables":[{"name":"value_1","nativeSrc":"5063:7:101","nodeType":"YulTypedName","src":"5063:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"5154:7:101","nodeType":"YulIdentifier","src":"5154:7:101"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"5115:38:101","nodeType":"YulIdentifier","src":"5115:38:101"},"nativeSrc":"5115:47:101","nodeType":"YulFunctionCall","src":"5115:47:101"},"nativeSrc":"5115:47:101","nodeType":"YulExpressionStatement","src":"5115:47:101"},{"nativeSrc":"5171:17:101","nodeType":"YulAssignment","src":"5171:17:101","value":{"name":"value_1","nativeSrc":"5181:7:101","nodeType":"YulIdentifier","src":"5181:7:101"},"variableNames":[{"name":"value1","nativeSrc":"5171:6:101","nodeType":"YulIdentifier","src":"5171:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IUnderwriter_$29363t_address","nativeSrc":"4756:438:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4823:9:101","nodeType":"YulTypedName","src":"4823:9:101","type":""},{"name":"dataEnd","nativeSrc":"4834:7:101","nodeType":"YulTypedName","src":"4834:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4846:6:101","nodeType":"YulTypedName","src":"4846:6:101","type":""},{"name":"value1","nativeSrc":"4854:6:101","nodeType":"YulTypedName","src":"4854:6:101","type":""}],"src":"4756:438:101"},{"body":{"nativeSrc":"5321:102:101","nodeType":"YulBlock","src":"5321:102:101","statements":[{"nativeSrc":"5331:26:101","nodeType":"YulAssignment","src":"5331:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5343:9:101","nodeType":"YulIdentifier","src":"5343:9:101"},{"kind":"number","nativeSrc":"5354:2:101","nodeType":"YulLiteral","src":"5354:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5339:3:101","nodeType":"YulIdentifier","src":"5339:3:101"},"nativeSrc":"5339:18:101","nodeType":"YulFunctionCall","src":"5339:18:101"},"variableNames":[{"name":"tail","nativeSrc":"5331:4:101","nodeType":"YulIdentifier","src":"5331:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5373:9:101","nodeType":"YulIdentifier","src":"5373:9:101"},{"arguments":[{"name":"value0","nativeSrc":"5388:6:101","nodeType":"YulIdentifier","src":"5388:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5404:3:101","nodeType":"YulLiteral","src":"5404:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"5409:1:101","nodeType":"YulLiteral","src":"5409:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5400:3:101","nodeType":"YulIdentifier","src":"5400:3:101"},"nativeSrc":"5400:11:101","nodeType":"YulFunctionCall","src":"5400:11:101"},{"kind":"number","nativeSrc":"5413:1:101","nodeType":"YulLiteral","src":"5413:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5396:3:101","nodeType":"YulIdentifier","src":"5396:3:101"},"nativeSrc":"5396:19:101","nodeType":"YulFunctionCall","src":"5396:19:101"}],"functionName":{"name":"and","nativeSrc":"5384:3:101","nodeType":"YulIdentifier","src":"5384:3:101"},"nativeSrc":"5384:32:101","nodeType":"YulFunctionCall","src":"5384:32:101"}],"functionName":{"name":"mstore","nativeSrc":"5366:6:101","nodeType":"YulIdentifier","src":"5366:6:101"},"nativeSrc":"5366:51:101","nodeType":"YulFunctionCall","src":"5366:51:101"},"nativeSrc":"5366:51:101","nodeType":"YulExpressionStatement","src":"5366:51:101"}]},"name":"abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed","nativeSrc":"5199:224:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5290:9:101","nodeType":"YulTypedName","src":"5290:9:101","type":""},{"name":"value0","nativeSrc":"5301:6:101","nodeType":"YulTypedName","src":"5301:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5312:4:101","nodeType":"YulTypedName","src":"5312:4:101","type":""}],"src":"5199:224:101"},{"body":{"nativeSrc":"5524:818:101","nodeType":"YulBlock","src":"5524:818:101","statements":[{"body":{"nativeSrc":"5570:16:101","nodeType":"YulBlock","src":"5570:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5579:1:101","nodeType":"YulLiteral","src":"5579:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5582:1:101","nodeType":"YulLiteral","src":"5582:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5572:6:101","nodeType":"YulIdentifier","src":"5572:6:101"},"nativeSrc":"5572:12:101","nodeType":"YulFunctionCall","src":"5572:12:101"},"nativeSrc":"5572:12:101","nodeType":"YulExpressionStatement","src":"5572:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5545:7:101","nodeType":"YulIdentifier","src":"5545:7:101"},{"name":"headStart","nativeSrc":"5554:9:101","nodeType":"YulIdentifier","src":"5554:9:101"}],"functionName":{"name":"sub","nativeSrc":"5541:3:101","nodeType":"YulIdentifier","src":"5541:3:101"},"nativeSrc":"5541:23:101","nodeType":"YulFunctionCall","src":"5541:23:101"},{"kind":"number","nativeSrc":"5566:2:101","nodeType":"YulLiteral","src":"5566:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"5537:3:101","nodeType":"YulIdentifier","src":"5537:3:101"},"nativeSrc":"5537:32:101","nodeType":"YulFunctionCall","src":"5537:32:101"},"nativeSrc":"5534:52:101","nodeType":"YulIf","src":"5534:52:101"},{"nativeSrc":"5595:36:101","nodeType":"YulVariableDeclaration","src":"5595:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5621:9:101","nodeType":"YulIdentifier","src":"5621:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"5608:12:101","nodeType":"YulIdentifier","src":"5608:12:101"},"nativeSrc":"5608:23:101","nodeType":"YulFunctionCall","src":"5608:23:101"},"variables":[{"name":"value","nativeSrc":"5599:5:101","nodeType":"YulTypedName","src":"5599:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5679:5:101","nodeType":"YulIdentifier","src":"5679:5:101"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"5640:38:101","nodeType":"YulIdentifier","src":"5640:38:101"},"nativeSrc":"5640:45:101","nodeType":"YulFunctionCall","src":"5640:45:101"},"nativeSrc":"5640:45:101","nodeType":"YulExpressionStatement","src":"5640:45:101"},{"nativeSrc":"5694:15:101","nodeType":"YulAssignment","src":"5694:15:101","value":{"name":"value","nativeSrc":"5704:5:101","nodeType":"YulIdentifier","src":"5704:5:101"},"variableNames":[{"name":"value0","nativeSrc":"5694:6:101","nodeType":"YulIdentifier","src":"5694:6:101"}]},{"nativeSrc":"5718:46:101","nodeType":"YulVariableDeclaration","src":"5718:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5749:9:101","nodeType":"YulIdentifier","src":"5749:9:101"},{"kind":"number","nativeSrc":"5760:2:101","nodeType":"YulLiteral","src":"5760:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5745:3:101","nodeType":"YulIdentifier","src":"5745:3:101"},"nativeSrc":"5745:18:101","nodeType":"YulFunctionCall","src":"5745:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"5732:12:101","nodeType":"YulIdentifier","src":"5732:12:101"},"nativeSrc":"5732:32:101","nodeType":"YulFunctionCall","src":"5732:32:101"},"variables":[{"name":"offset","nativeSrc":"5722:6:101","nodeType":"YulTypedName","src":"5722:6:101","type":""}]},{"body":{"nativeSrc":"5807:16:101","nodeType":"YulBlock","src":"5807:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5816:1:101","nodeType":"YulLiteral","src":"5816:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5819:1:101","nodeType":"YulLiteral","src":"5819:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5809:6:101","nodeType":"YulIdentifier","src":"5809:6:101"},"nativeSrc":"5809:12:101","nodeType":"YulFunctionCall","src":"5809:12:101"},"nativeSrc":"5809:12:101","nodeType":"YulExpressionStatement","src":"5809:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"5779:6:101","nodeType":"YulIdentifier","src":"5779:6:101"},{"kind":"number","nativeSrc":"5787:18:101","nodeType":"YulLiteral","src":"5787:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"5776:2:101","nodeType":"YulIdentifier","src":"5776:2:101"},"nativeSrc":"5776:30:101","nodeType":"YulFunctionCall","src":"5776:30:101"},"nativeSrc":"5773:50:101","nodeType":"YulIf","src":"5773:50:101"},{"nativeSrc":"5832:32:101","nodeType":"YulVariableDeclaration","src":"5832:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5846:9:101","nodeType":"YulIdentifier","src":"5846:9:101"},{"name":"offset","nativeSrc":"5857:6:101","nodeType":"YulIdentifier","src":"5857:6:101"}],"functionName":{"name":"add","nativeSrc":"5842:3:101","nodeType":"YulIdentifier","src":"5842:3:101"},"nativeSrc":"5842:22:101","nodeType":"YulFunctionCall","src":"5842:22:101"},"variables":[{"name":"_1","nativeSrc":"5836:2:101","nodeType":"YulTypedName","src":"5836:2:101","type":""}]},{"body":{"nativeSrc":"5912:16:101","nodeType":"YulBlock","src":"5912:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5921:1:101","nodeType":"YulLiteral","src":"5921:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5924:1:101","nodeType":"YulLiteral","src":"5924:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5914:6:101","nodeType":"YulIdentifier","src":"5914:6:101"},"nativeSrc":"5914:12:101","nodeType":"YulFunctionCall","src":"5914:12:101"},"nativeSrc":"5914:12:101","nodeType":"YulExpressionStatement","src":"5914:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"5891:2:101","nodeType":"YulIdentifier","src":"5891:2:101"},{"kind":"number","nativeSrc":"5895:4:101","nodeType":"YulLiteral","src":"5895:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"5887:3:101","nodeType":"YulIdentifier","src":"5887:3:101"},"nativeSrc":"5887:13:101","nodeType":"YulFunctionCall","src":"5887:13:101"},{"name":"dataEnd","nativeSrc":"5902:7:101","nodeType":"YulIdentifier","src":"5902:7:101"}],"functionName":{"name":"slt","nativeSrc":"5883:3:101","nodeType":"YulIdentifier","src":"5883:3:101"},"nativeSrc":"5883:27:101","nodeType":"YulFunctionCall","src":"5883:27:101"}],"functionName":{"name":"iszero","nativeSrc":"5876:6:101","nodeType":"YulIdentifier","src":"5876:6:101"},"nativeSrc":"5876:35:101","nodeType":"YulFunctionCall","src":"5876:35:101"},"nativeSrc":"5873:55:101","nodeType":"YulIf","src":"5873:55:101"},{"nativeSrc":"5937:30:101","nodeType":"YulVariableDeclaration","src":"5937:30:101","value":{"arguments":[{"name":"_1","nativeSrc":"5964:2:101","nodeType":"YulIdentifier","src":"5964:2:101"}],"functionName":{"name":"calldataload","nativeSrc":"5951:12:101","nodeType":"YulIdentifier","src":"5951:12:101"},"nativeSrc":"5951:16:101","nodeType":"YulFunctionCall","src":"5951:16:101"},"variables":[{"name":"length","nativeSrc":"5941:6:101","nodeType":"YulTypedName","src":"5941:6:101","type":""}]},{"body":{"nativeSrc":"6010:22:101","nodeType":"YulBlock","src":"6010:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"6012:16:101","nodeType":"YulIdentifier","src":"6012:16:101"},"nativeSrc":"6012:18:101","nodeType":"YulFunctionCall","src":"6012:18:101"},"nativeSrc":"6012:18:101","nodeType":"YulExpressionStatement","src":"6012:18:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"5982:6:101","nodeType":"YulIdentifier","src":"5982:6:101"},{"kind":"number","nativeSrc":"5990:18:101","nodeType":"YulLiteral","src":"5990:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"5979:2:101","nodeType":"YulIdentifier","src":"5979:2:101"},"nativeSrc":"5979:30:101","nodeType":"YulFunctionCall","src":"5979:30:101"},"nativeSrc":"5976:56:101","nodeType":"YulIf","src":"5976:56:101"},{"nativeSrc":"6041:70:101","nodeType":"YulVariableDeclaration","src":"6041:70:101","value":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"6082:6:101","nodeType":"YulIdentifier","src":"6082:6:101"},{"kind":"number","nativeSrc":"6090:4:101","nodeType":"YulLiteral","src":"6090:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"6078:3:101","nodeType":"YulIdentifier","src":"6078:3:101"},"nativeSrc":"6078:17:101","nodeType":"YulFunctionCall","src":"6078:17:101"},{"arguments":[{"kind":"number","nativeSrc":"6101:2:101","nodeType":"YulLiteral","src":"6101:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"6097:3:101","nodeType":"YulIdentifier","src":"6097:3:101"},"nativeSrc":"6097:7:101","nodeType":"YulFunctionCall","src":"6097:7:101"}],"functionName":{"name":"and","nativeSrc":"6074:3:101","nodeType":"YulIdentifier","src":"6074:3:101"},"nativeSrc":"6074:31:101","nodeType":"YulFunctionCall","src":"6074:31:101"},{"kind":"number","nativeSrc":"6107:2:101","nodeType":"YulLiteral","src":"6107:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6070:3:101","nodeType":"YulIdentifier","src":"6070:3:101"},"nativeSrc":"6070:40:101","nodeType":"YulFunctionCall","src":"6070:40:101"}],"functionName":{"name":"allocate_memory","nativeSrc":"6054:15:101","nodeType":"YulIdentifier","src":"6054:15:101"},"nativeSrc":"6054:57:101","nodeType":"YulFunctionCall","src":"6054:57:101"},"variables":[{"name":"array","nativeSrc":"6045:5:101","nodeType":"YulTypedName","src":"6045:5:101","type":""}]},{"expression":{"arguments":[{"name":"array","nativeSrc":"6127:5:101","nodeType":"YulIdentifier","src":"6127:5:101"},{"name":"length","nativeSrc":"6134:6:101","nodeType":"YulIdentifier","src":"6134:6:101"}],"functionName":{"name":"mstore","nativeSrc":"6120:6:101","nodeType":"YulIdentifier","src":"6120:6:101"},"nativeSrc":"6120:21:101","nodeType":"YulFunctionCall","src":"6120:21:101"},"nativeSrc":"6120:21:101","nodeType":"YulExpressionStatement","src":"6120:21:101"},{"body":{"nativeSrc":"6191:16:101","nodeType":"YulBlock","src":"6191:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6200:1:101","nodeType":"YulLiteral","src":"6200:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6203:1:101","nodeType":"YulLiteral","src":"6203:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6193:6:101","nodeType":"YulIdentifier","src":"6193:6:101"},"nativeSrc":"6193:12:101","nodeType":"YulFunctionCall","src":"6193:12:101"},"nativeSrc":"6193:12:101","nodeType":"YulExpressionStatement","src":"6193:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"6164:2:101","nodeType":"YulIdentifier","src":"6164:2:101"},{"name":"length","nativeSrc":"6168:6:101","nodeType":"YulIdentifier","src":"6168:6:101"}],"functionName":{"name":"add","nativeSrc":"6160:3:101","nodeType":"YulIdentifier","src":"6160:3:101"},"nativeSrc":"6160:15:101","nodeType":"YulFunctionCall","src":"6160:15:101"},{"kind":"number","nativeSrc":"6177:2:101","nodeType":"YulLiteral","src":"6177:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6156:3:101","nodeType":"YulIdentifier","src":"6156:3:101"},"nativeSrc":"6156:24:101","nodeType":"YulFunctionCall","src":"6156:24:101"},{"name":"dataEnd","nativeSrc":"6182:7:101","nodeType":"YulIdentifier","src":"6182:7:101"}],"functionName":{"name":"gt","nativeSrc":"6153:2:101","nodeType":"YulIdentifier","src":"6153:2:101"},"nativeSrc":"6153:37:101","nodeType":"YulFunctionCall","src":"6153:37:101"},"nativeSrc":"6150:57:101","nodeType":"YulIf","src":"6150:57:101"},{"expression":{"arguments":[{"arguments":[{"name":"array","nativeSrc":"6233:5:101","nodeType":"YulIdentifier","src":"6233:5:101"},{"kind":"number","nativeSrc":"6240:2:101","nodeType":"YulLiteral","src":"6240:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6229:3:101","nodeType":"YulIdentifier","src":"6229:3:101"},"nativeSrc":"6229:14:101","nodeType":"YulFunctionCall","src":"6229:14:101"},{"arguments":[{"name":"_1","nativeSrc":"6249:2:101","nodeType":"YulIdentifier","src":"6249:2:101"},{"kind":"number","nativeSrc":"6253:2:101","nodeType":"YulLiteral","src":"6253:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6245:3:101","nodeType":"YulIdentifier","src":"6245:3:101"},"nativeSrc":"6245:11:101","nodeType":"YulFunctionCall","src":"6245:11:101"},{"name":"length","nativeSrc":"6258:6:101","nodeType":"YulIdentifier","src":"6258:6:101"}],"functionName":{"name":"calldatacopy","nativeSrc":"6216:12:101","nodeType":"YulIdentifier","src":"6216:12:101"},"nativeSrc":"6216:49:101","nodeType":"YulFunctionCall","src":"6216:49:101"},"nativeSrc":"6216:49:101","nodeType":"YulExpressionStatement","src":"6216:49:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"array","nativeSrc":"6289:5:101","nodeType":"YulIdentifier","src":"6289:5:101"},{"name":"length","nativeSrc":"6296:6:101","nodeType":"YulIdentifier","src":"6296:6:101"}],"functionName":{"name":"add","nativeSrc":"6285:3:101","nodeType":"YulIdentifier","src":"6285:3:101"},"nativeSrc":"6285:18:101","nodeType":"YulFunctionCall","src":"6285:18:101"},{"kind":"number","nativeSrc":"6305:2:101","nodeType":"YulLiteral","src":"6305:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6281:3:101","nodeType":"YulIdentifier","src":"6281:3:101"},"nativeSrc":"6281:27:101","nodeType":"YulFunctionCall","src":"6281:27:101"},{"kind":"number","nativeSrc":"6310:1:101","nodeType":"YulLiteral","src":"6310:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"6274:6:101","nodeType":"YulIdentifier","src":"6274:6:101"},"nativeSrc":"6274:38:101","nodeType":"YulFunctionCall","src":"6274:38:101"},"nativeSrc":"6274:38:101","nodeType":"YulExpressionStatement","src":"6274:38:101"},{"nativeSrc":"6321:15:101","nodeType":"YulAssignment","src":"6321:15:101","value":{"name":"array","nativeSrc":"6331:5:101","nodeType":"YulIdentifier","src":"6331:5:101"},"variableNames":[{"name":"value1","nativeSrc":"6321:6:101","nodeType":"YulIdentifier","src":"6321:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr","nativeSrc":"5428:914:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5482:9:101","nodeType":"YulTypedName","src":"5482:9:101","type":""},{"name":"dataEnd","nativeSrc":"5493:7:101","nodeType":"YulTypedName","src":"5493:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5505:6:101","nodeType":"YulTypedName","src":"5505:6:101","type":""},{"name":"value1","nativeSrc":"5513:6:101","nodeType":"YulTypedName","src":"5513:6:101","type":""}],"src":"5428:914:101"},{"body":{"nativeSrc":"6448:102:101","nodeType":"YulBlock","src":"6448:102:101","statements":[{"nativeSrc":"6458:26:101","nodeType":"YulAssignment","src":"6458:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6470:9:101","nodeType":"YulIdentifier","src":"6470:9:101"},{"kind":"number","nativeSrc":"6481:2:101","nodeType":"YulLiteral","src":"6481:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6466:3:101","nodeType":"YulIdentifier","src":"6466:3:101"},"nativeSrc":"6466:18:101","nodeType":"YulFunctionCall","src":"6466:18:101"},"variableNames":[{"name":"tail","nativeSrc":"6458:4:101","nodeType":"YulIdentifier","src":"6458:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6500:9:101","nodeType":"YulIdentifier","src":"6500:9:101"},{"arguments":[{"name":"value0","nativeSrc":"6515:6:101","nodeType":"YulIdentifier","src":"6515:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6531:3:101","nodeType":"YulLiteral","src":"6531:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"6536:1:101","nodeType":"YulLiteral","src":"6536:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6527:3:101","nodeType":"YulIdentifier","src":"6527:3:101"},"nativeSrc":"6527:11:101","nodeType":"YulFunctionCall","src":"6527:11:101"},{"kind":"number","nativeSrc":"6540:1:101","nodeType":"YulLiteral","src":"6540:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6523:3:101","nodeType":"YulIdentifier","src":"6523:3:101"},"nativeSrc":"6523:19:101","nodeType":"YulFunctionCall","src":"6523:19:101"}],"functionName":{"name":"and","nativeSrc":"6511:3:101","nodeType":"YulIdentifier","src":"6511:3:101"},"nativeSrc":"6511:32:101","nodeType":"YulFunctionCall","src":"6511:32:101"}],"functionName":{"name":"mstore","nativeSrc":"6493:6:101","nodeType":"YulIdentifier","src":"6493:6:101"},"nativeSrc":"6493:51:101","nodeType":"YulFunctionCall","src":"6493:51:101"},"nativeSrc":"6493:51:101","nodeType":"YulExpressionStatement","src":"6493:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"6347:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6417:9:101","nodeType":"YulTypedName","src":"6417:9:101","type":""},{"name":"value0","nativeSrc":"6428:6:101","nodeType":"YulTypedName","src":"6428:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6439:4:101","nodeType":"YulTypedName","src":"6439:4:101","type":""}],"src":"6347:203:101"},{"body":{"nativeSrc":"6656:76:101","nodeType":"YulBlock","src":"6656:76:101","statements":[{"nativeSrc":"6666:26:101","nodeType":"YulAssignment","src":"6666:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6678:9:101","nodeType":"YulIdentifier","src":"6678:9:101"},{"kind":"number","nativeSrc":"6689:2:101","nodeType":"YulLiteral","src":"6689:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6674:3:101","nodeType":"YulIdentifier","src":"6674:3:101"},"nativeSrc":"6674:18:101","nodeType":"YulFunctionCall","src":"6674:18:101"},"variableNames":[{"name":"tail","nativeSrc":"6666:4:101","nodeType":"YulIdentifier","src":"6666:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6708:9:101","nodeType":"YulIdentifier","src":"6708:9:101"},{"name":"value0","nativeSrc":"6719:6:101","nodeType":"YulIdentifier","src":"6719:6:101"}],"functionName":{"name":"mstore","nativeSrc":"6701:6:101","nodeType":"YulIdentifier","src":"6701:6:101"},"nativeSrc":"6701:25:101","nodeType":"YulFunctionCall","src":"6701:25:101"},"nativeSrc":"6701:25:101","nodeType":"YulExpressionStatement","src":"6701:25:101"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"6555:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6625:9:101","nodeType":"YulTypedName","src":"6625:9:101","type":""},{"name":"value0","nativeSrc":"6636:6:101","nodeType":"YulTypedName","src":"6636:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6647:4:101","nodeType":"YulTypedName","src":"6647:4:101","type":""}],"src":"6555:177:101"},{"body":{"nativeSrc":"6809:275:101","nodeType":"YulBlock","src":"6809:275:101","statements":[{"body":{"nativeSrc":"6858:16:101","nodeType":"YulBlock","src":"6858:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6867:1:101","nodeType":"YulLiteral","src":"6867:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6870:1:101","nodeType":"YulLiteral","src":"6870:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6860:6:101","nodeType":"YulIdentifier","src":"6860:6:101"},"nativeSrc":"6860:12:101","nodeType":"YulFunctionCall","src":"6860:12:101"},"nativeSrc":"6860:12:101","nodeType":"YulExpressionStatement","src":"6860:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"6837:6:101","nodeType":"YulIdentifier","src":"6837:6:101"},{"kind":"number","nativeSrc":"6845:4:101","nodeType":"YulLiteral","src":"6845:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"6833:3:101","nodeType":"YulIdentifier","src":"6833:3:101"},"nativeSrc":"6833:17:101","nodeType":"YulFunctionCall","src":"6833:17:101"},{"name":"end","nativeSrc":"6852:3:101","nodeType":"YulIdentifier","src":"6852:3:101"}],"functionName":{"name":"slt","nativeSrc":"6829:3:101","nodeType":"YulIdentifier","src":"6829:3:101"},"nativeSrc":"6829:27:101","nodeType":"YulFunctionCall","src":"6829:27:101"}],"functionName":{"name":"iszero","nativeSrc":"6822:6:101","nodeType":"YulIdentifier","src":"6822:6:101"},"nativeSrc":"6822:35:101","nodeType":"YulFunctionCall","src":"6822:35:101"},"nativeSrc":"6819:55:101","nodeType":"YulIf","src":"6819:55:101"},{"nativeSrc":"6883:30:101","nodeType":"YulAssignment","src":"6883:30:101","value":{"arguments":[{"name":"offset","nativeSrc":"6906:6:101","nodeType":"YulIdentifier","src":"6906:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"6893:12:101","nodeType":"YulIdentifier","src":"6893:12:101"},"nativeSrc":"6893:20:101","nodeType":"YulFunctionCall","src":"6893:20:101"},"variableNames":[{"name":"length","nativeSrc":"6883:6:101","nodeType":"YulIdentifier","src":"6883:6:101"}]},{"body":{"nativeSrc":"6956:16:101","nodeType":"YulBlock","src":"6956:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6965:1:101","nodeType":"YulLiteral","src":"6965:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6968:1:101","nodeType":"YulLiteral","src":"6968:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6958:6:101","nodeType":"YulIdentifier","src":"6958:6:101"},"nativeSrc":"6958:12:101","nodeType":"YulFunctionCall","src":"6958:12:101"},"nativeSrc":"6958:12:101","nodeType":"YulExpressionStatement","src":"6958:12:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"6928:6:101","nodeType":"YulIdentifier","src":"6928:6:101"},{"kind":"number","nativeSrc":"6936:18:101","nodeType":"YulLiteral","src":"6936:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6925:2:101","nodeType":"YulIdentifier","src":"6925:2:101"},"nativeSrc":"6925:30:101","nodeType":"YulFunctionCall","src":"6925:30:101"},"nativeSrc":"6922:50:101","nodeType":"YulIf","src":"6922:50:101"},{"nativeSrc":"6981:29:101","nodeType":"YulAssignment","src":"6981:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"6997:6:101","nodeType":"YulIdentifier","src":"6997:6:101"},{"kind":"number","nativeSrc":"7005:4:101","nodeType":"YulLiteral","src":"7005:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6993:3:101","nodeType":"YulIdentifier","src":"6993:3:101"},"nativeSrc":"6993:17:101","nodeType":"YulFunctionCall","src":"6993:17:101"},"variableNames":[{"name":"arrayPos","nativeSrc":"6981:8:101","nodeType":"YulIdentifier","src":"6981:8:101"}]},{"body":{"nativeSrc":"7062:16:101","nodeType":"YulBlock","src":"7062:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7071:1:101","nodeType":"YulLiteral","src":"7071:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7074:1:101","nodeType":"YulLiteral","src":"7074:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7064:6:101","nodeType":"YulIdentifier","src":"7064:6:101"},"nativeSrc":"7064:12:101","nodeType":"YulFunctionCall","src":"7064:12:101"},"nativeSrc":"7064:12:101","nodeType":"YulExpressionStatement","src":"7064:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"7033:6:101","nodeType":"YulIdentifier","src":"7033:6:101"},{"name":"length","nativeSrc":"7041:6:101","nodeType":"YulIdentifier","src":"7041:6:101"}],"functionName":{"name":"add","nativeSrc":"7029:3:101","nodeType":"YulIdentifier","src":"7029:3:101"},"nativeSrc":"7029:19:101","nodeType":"YulFunctionCall","src":"7029:19:101"},{"kind":"number","nativeSrc":"7050:4:101","nodeType":"YulLiteral","src":"7050:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7025:3:101","nodeType":"YulIdentifier","src":"7025:3:101"},"nativeSrc":"7025:30:101","nodeType":"YulFunctionCall","src":"7025:30:101"},{"name":"end","nativeSrc":"7057:3:101","nodeType":"YulIdentifier","src":"7057:3:101"}],"functionName":{"name":"gt","nativeSrc":"7022:2:101","nodeType":"YulIdentifier","src":"7022:2:101"},"nativeSrc":"7022:39:101","nodeType":"YulFunctionCall","src":"7022:39:101"},"nativeSrc":"7019:59:101","nodeType":"YulIf","src":"7019:59:101"}]},"name":"abi_decode_bytes_calldata","nativeSrc":"6737:347:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"6772:6:101","nodeType":"YulTypedName","src":"6772:6:101","type":""},{"name":"end","nativeSrc":"6780:3:101","nodeType":"YulTypedName","src":"6780:3:101","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"6788:8:101","nodeType":"YulTypedName","src":"6788:8:101","type":""},{"name":"length","nativeSrc":"6798:6:101","nodeType":"YulTypedName","src":"6798:6:101","type":""}],"src":"6737:347:101"},{"body":{"nativeSrc":"7178:320:101","nodeType":"YulBlock","src":"7178:320:101","statements":[{"body":{"nativeSrc":"7224:16:101","nodeType":"YulBlock","src":"7224:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7233:1:101","nodeType":"YulLiteral","src":"7233:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7236:1:101","nodeType":"YulLiteral","src":"7236:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7226:6:101","nodeType":"YulIdentifier","src":"7226:6:101"},"nativeSrc":"7226:12:101","nodeType":"YulFunctionCall","src":"7226:12:101"},"nativeSrc":"7226:12:101","nodeType":"YulExpressionStatement","src":"7226:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7199:7:101","nodeType":"YulIdentifier","src":"7199:7:101"},{"name":"headStart","nativeSrc":"7208:9:101","nodeType":"YulIdentifier","src":"7208:9:101"}],"functionName":{"name":"sub","nativeSrc":"7195:3:101","nodeType":"YulIdentifier","src":"7195:3:101"},"nativeSrc":"7195:23:101","nodeType":"YulFunctionCall","src":"7195:23:101"},{"kind":"number","nativeSrc":"7220:2:101","nodeType":"YulLiteral","src":"7220:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"7191:3:101","nodeType":"YulIdentifier","src":"7191:3:101"},"nativeSrc":"7191:32:101","nodeType":"YulFunctionCall","src":"7191:32:101"},"nativeSrc":"7188:52:101","nodeType":"YulIf","src":"7188:52:101"},{"nativeSrc":"7249:37:101","nodeType":"YulVariableDeclaration","src":"7249:37:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7276:9:101","nodeType":"YulIdentifier","src":"7276:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"7263:12:101","nodeType":"YulIdentifier","src":"7263:12:101"},"nativeSrc":"7263:23:101","nodeType":"YulFunctionCall","src":"7263:23:101"},"variables":[{"name":"offset","nativeSrc":"7253:6:101","nodeType":"YulTypedName","src":"7253:6:101","type":""}]},{"body":{"nativeSrc":"7329:16:101","nodeType":"YulBlock","src":"7329:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7338:1:101","nodeType":"YulLiteral","src":"7338:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7341:1:101","nodeType":"YulLiteral","src":"7341:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7331:6:101","nodeType":"YulIdentifier","src":"7331:6:101"},"nativeSrc":"7331:12:101","nodeType":"YulFunctionCall","src":"7331:12:101"},"nativeSrc":"7331:12:101","nodeType":"YulExpressionStatement","src":"7331:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"7301:6:101","nodeType":"YulIdentifier","src":"7301:6:101"},{"kind":"number","nativeSrc":"7309:18:101","nodeType":"YulLiteral","src":"7309:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7298:2:101","nodeType":"YulIdentifier","src":"7298:2:101"},"nativeSrc":"7298:30:101","nodeType":"YulFunctionCall","src":"7298:30:101"},"nativeSrc":"7295:50:101","nodeType":"YulIf","src":"7295:50:101"},{"nativeSrc":"7354:84:101","nodeType":"YulVariableDeclaration","src":"7354:84:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7410:9:101","nodeType":"YulIdentifier","src":"7410:9:101"},{"name":"offset","nativeSrc":"7421:6:101","nodeType":"YulIdentifier","src":"7421:6:101"}],"functionName":{"name":"add","nativeSrc":"7406:3:101","nodeType":"YulIdentifier","src":"7406:3:101"},"nativeSrc":"7406:22:101","nodeType":"YulFunctionCall","src":"7406:22:101"},{"name":"dataEnd","nativeSrc":"7430:7:101","nodeType":"YulIdentifier","src":"7430:7:101"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"7380:25:101","nodeType":"YulIdentifier","src":"7380:25:101"},"nativeSrc":"7380:58:101","nodeType":"YulFunctionCall","src":"7380:58:101"},"variables":[{"name":"value0_1","nativeSrc":"7358:8:101","nodeType":"YulTypedName","src":"7358:8:101","type":""},{"name":"value1_1","nativeSrc":"7368:8:101","nodeType":"YulTypedName","src":"7368:8:101","type":""}]},{"nativeSrc":"7447:18:101","nodeType":"YulAssignment","src":"7447:18:101","value":{"name":"value0_1","nativeSrc":"7457:8:101","nodeType":"YulIdentifier","src":"7457:8:101"},"variableNames":[{"name":"value0","nativeSrc":"7447:6:101","nodeType":"YulIdentifier","src":"7447:6:101"}]},{"nativeSrc":"7474:18:101","nodeType":"YulAssignment","src":"7474:18:101","value":{"name":"value1_1","nativeSrc":"7484:8:101","nodeType":"YulIdentifier","src":"7484:8:101"},"variableNames":[{"name":"value1","nativeSrc":"7474:6:101","nodeType":"YulIdentifier","src":"7474:6:101"}]}]},"name":"abi_decode_tuple_t_bytes_calldata_ptr","nativeSrc":"7089:409:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7136:9:101","nodeType":"YulTypedName","src":"7136:9:101","type":""},{"name":"dataEnd","nativeSrc":"7147:7:101","nodeType":"YulTypedName","src":"7147:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7159:6:101","nodeType":"YulTypedName","src":"7159:6:101","type":""},{"name":"value1","nativeSrc":"7167:6:101","nodeType":"YulTypedName","src":"7167:6:101","type":""}],"src":"7089:409:101"},{"body":{"nativeSrc":"7546:53:101","nodeType":"YulBlock","src":"7546:53:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"7563:3:101","nodeType":"YulIdentifier","src":"7563:3:101"},{"arguments":[{"name":"value","nativeSrc":"7572:5:101","nodeType":"YulIdentifier","src":"7572:5:101"},{"kind":"number","nativeSrc":"7579:12:101","nodeType":"YulLiteral","src":"7579:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"7568:3:101","nodeType":"YulIdentifier","src":"7568:3:101"},"nativeSrc":"7568:24:101","nodeType":"YulFunctionCall","src":"7568:24:101"}],"functionName":{"name":"mstore","nativeSrc":"7556:6:101","nodeType":"YulIdentifier","src":"7556:6:101"},"nativeSrc":"7556:37:101","nodeType":"YulFunctionCall","src":"7556:37:101"},"nativeSrc":"7556:37:101","nodeType":"YulExpressionStatement","src":"7556:37:101"}]},"name":"abi_encode_uint40","nativeSrc":"7503:96:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"7530:5:101","nodeType":"YulTypedName","src":"7530:5:101","type":""},{"name":"pos","nativeSrc":"7537:3:101","nodeType":"YulTypedName","src":"7537:3:101","type":""}],"src":"7503:96:101"},{"body":{"nativeSrc":"7658:781:101","nodeType":"YulBlock","src":"7658:781:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"7675:3:101","nodeType":"YulIdentifier","src":"7675:3:101"},{"arguments":[{"name":"value","nativeSrc":"7686:5:101","nodeType":"YulIdentifier","src":"7686:5:101"}],"functionName":{"name":"mload","nativeSrc":"7680:5:101","nodeType":"YulIdentifier","src":"7680:5:101"},"nativeSrc":"7680:12:101","nodeType":"YulFunctionCall","src":"7680:12:101"}],"functionName":{"name":"mstore","nativeSrc":"7668:6:101","nodeType":"YulIdentifier","src":"7668:6:101"},"nativeSrc":"7668:25:101","nodeType":"YulFunctionCall","src":"7668:25:101"},"nativeSrc":"7668:25:101","nodeType":"YulExpressionStatement","src":"7668:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"7713:3:101","nodeType":"YulIdentifier","src":"7713:3:101"},{"kind":"number","nativeSrc":"7718:4:101","nodeType":"YulLiteral","src":"7718:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7709:3:101","nodeType":"YulIdentifier","src":"7709:3:101"},"nativeSrc":"7709:14:101","nodeType":"YulFunctionCall","src":"7709:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7735:5:101","nodeType":"YulIdentifier","src":"7735:5:101"},{"kind":"number","nativeSrc":"7742:4:101","nodeType":"YulLiteral","src":"7742:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7731:3:101","nodeType":"YulIdentifier","src":"7731:3:101"},"nativeSrc":"7731:16:101","nodeType":"YulFunctionCall","src":"7731:16:101"}],"functionName":{"name":"mload","nativeSrc":"7725:5:101","nodeType":"YulIdentifier","src":"7725:5:101"},"nativeSrc":"7725:23:101","nodeType":"YulFunctionCall","src":"7725:23:101"}],"functionName":{"name":"mstore","nativeSrc":"7702:6:101","nodeType":"YulIdentifier","src":"7702:6:101"},"nativeSrc":"7702:47:101","nodeType":"YulFunctionCall","src":"7702:47:101"},"nativeSrc":"7702:47:101","nodeType":"YulExpressionStatement","src":"7702:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"7769:3:101","nodeType":"YulIdentifier","src":"7769:3:101"},{"kind":"number","nativeSrc":"7774:4:101","nodeType":"YulLiteral","src":"7774:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"7765:3:101","nodeType":"YulIdentifier","src":"7765:3:101"},"nativeSrc":"7765:14:101","nodeType":"YulFunctionCall","src":"7765:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7791:5:101","nodeType":"YulIdentifier","src":"7791:5:101"},{"kind":"number","nativeSrc":"7798:4:101","nodeType":"YulLiteral","src":"7798:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"7787:3:101","nodeType":"YulIdentifier","src":"7787:3:101"},"nativeSrc":"7787:16:101","nodeType":"YulFunctionCall","src":"7787:16:101"}],"functionName":{"name":"mload","nativeSrc":"7781:5:101","nodeType":"YulIdentifier","src":"7781:5:101"},"nativeSrc":"7781:23:101","nodeType":"YulFunctionCall","src":"7781:23:101"}],"functionName":{"name":"mstore","nativeSrc":"7758:6:101","nodeType":"YulIdentifier","src":"7758:6:101"},"nativeSrc":"7758:47:101","nodeType":"YulFunctionCall","src":"7758:47:101"},"nativeSrc":"7758:47:101","nodeType":"YulExpressionStatement","src":"7758:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"7825:3:101","nodeType":"YulIdentifier","src":"7825:3:101"},{"kind":"number","nativeSrc":"7830:4:101","nodeType":"YulLiteral","src":"7830:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"7821:3:101","nodeType":"YulIdentifier","src":"7821:3:101"},"nativeSrc":"7821:14:101","nodeType":"YulFunctionCall","src":"7821:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7847:5:101","nodeType":"YulIdentifier","src":"7847:5:101"},{"kind":"number","nativeSrc":"7854:4:101","nodeType":"YulLiteral","src":"7854:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"7843:3:101","nodeType":"YulIdentifier","src":"7843:3:101"},"nativeSrc":"7843:16:101","nodeType":"YulFunctionCall","src":"7843:16:101"}],"functionName":{"name":"mload","nativeSrc":"7837:5:101","nodeType":"YulIdentifier","src":"7837:5:101"},"nativeSrc":"7837:23:101","nodeType":"YulFunctionCall","src":"7837:23:101"}],"functionName":{"name":"mstore","nativeSrc":"7814:6:101","nodeType":"YulIdentifier","src":"7814:6:101"},"nativeSrc":"7814:47:101","nodeType":"YulFunctionCall","src":"7814:47:101"},"nativeSrc":"7814:47:101","nodeType":"YulExpressionStatement","src":"7814:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"7881:3:101","nodeType":"YulIdentifier","src":"7881:3:101"},{"kind":"number","nativeSrc":"7886:4:101","nodeType":"YulLiteral","src":"7886:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"7877:3:101","nodeType":"YulIdentifier","src":"7877:3:101"},"nativeSrc":"7877:14:101","nodeType":"YulFunctionCall","src":"7877:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7903:5:101","nodeType":"YulIdentifier","src":"7903:5:101"},{"kind":"number","nativeSrc":"7910:4:101","nodeType":"YulLiteral","src":"7910:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"7899:3:101","nodeType":"YulIdentifier","src":"7899:3:101"},"nativeSrc":"7899:16:101","nodeType":"YulFunctionCall","src":"7899:16:101"}],"functionName":{"name":"mload","nativeSrc":"7893:5:101","nodeType":"YulIdentifier","src":"7893:5:101"},"nativeSrc":"7893:23:101","nodeType":"YulFunctionCall","src":"7893:23:101"}],"functionName":{"name":"mstore","nativeSrc":"7870:6:101","nodeType":"YulIdentifier","src":"7870:6:101"},"nativeSrc":"7870:47:101","nodeType":"YulFunctionCall","src":"7870:47:101"},"nativeSrc":"7870:47:101","nodeType":"YulExpressionStatement","src":"7870:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"7937:3:101","nodeType":"YulIdentifier","src":"7937:3:101"},{"kind":"number","nativeSrc":"7942:4:101","nodeType":"YulLiteral","src":"7942:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"7933:3:101","nodeType":"YulIdentifier","src":"7933:3:101"},"nativeSrc":"7933:14:101","nodeType":"YulFunctionCall","src":"7933:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7959:5:101","nodeType":"YulIdentifier","src":"7959:5:101"},{"kind":"number","nativeSrc":"7966:4:101","nodeType":"YulLiteral","src":"7966:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"7955:3:101","nodeType":"YulIdentifier","src":"7955:3:101"},"nativeSrc":"7955:16:101","nodeType":"YulFunctionCall","src":"7955:16:101"}],"functionName":{"name":"mload","nativeSrc":"7949:5:101","nodeType":"YulIdentifier","src":"7949:5:101"},"nativeSrc":"7949:23:101","nodeType":"YulFunctionCall","src":"7949:23:101"}],"functionName":{"name":"mstore","nativeSrc":"7926:6:101","nodeType":"YulIdentifier","src":"7926:6:101"},"nativeSrc":"7926:47:101","nodeType":"YulFunctionCall","src":"7926:47:101"},"nativeSrc":"7926:47:101","nodeType":"YulExpressionStatement","src":"7926:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"7993:3:101","nodeType":"YulIdentifier","src":"7993:3:101"},{"kind":"number","nativeSrc":"7998:4:101","nodeType":"YulLiteral","src":"7998:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"7989:3:101","nodeType":"YulIdentifier","src":"7989:3:101"},"nativeSrc":"7989:14:101","nodeType":"YulFunctionCall","src":"7989:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8015:5:101","nodeType":"YulIdentifier","src":"8015:5:101"},{"kind":"number","nativeSrc":"8022:4:101","nodeType":"YulLiteral","src":"8022:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"8011:3:101","nodeType":"YulIdentifier","src":"8011:3:101"},"nativeSrc":"8011:16:101","nodeType":"YulFunctionCall","src":"8011:16:101"}],"functionName":{"name":"mload","nativeSrc":"8005:5:101","nodeType":"YulIdentifier","src":"8005:5:101"},"nativeSrc":"8005:23:101","nodeType":"YulFunctionCall","src":"8005:23:101"}],"functionName":{"name":"mstore","nativeSrc":"7982:6:101","nodeType":"YulIdentifier","src":"7982:6:101"},"nativeSrc":"7982:47:101","nodeType":"YulFunctionCall","src":"7982:47:101"},"nativeSrc":"7982:47:101","nodeType":"YulExpressionStatement","src":"7982:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"8049:3:101","nodeType":"YulIdentifier","src":"8049:3:101"},{"kind":"number","nativeSrc":"8054:4:101","nodeType":"YulLiteral","src":"8054:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"8045:3:101","nodeType":"YulIdentifier","src":"8045:3:101"},"nativeSrc":"8045:14:101","nodeType":"YulFunctionCall","src":"8045:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8071:5:101","nodeType":"YulIdentifier","src":"8071:5:101"},{"kind":"number","nativeSrc":"8078:4:101","nodeType":"YulLiteral","src":"8078:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"8067:3:101","nodeType":"YulIdentifier","src":"8067:3:101"},"nativeSrc":"8067:16:101","nodeType":"YulFunctionCall","src":"8067:16:101"}],"functionName":{"name":"mload","nativeSrc":"8061:5:101","nodeType":"YulIdentifier","src":"8061:5:101"},"nativeSrc":"8061:23:101","nodeType":"YulFunctionCall","src":"8061:23:101"}],"functionName":{"name":"mstore","nativeSrc":"8038:6:101","nodeType":"YulIdentifier","src":"8038:6:101"},"nativeSrc":"8038:47:101","nodeType":"YulFunctionCall","src":"8038:47:101"},"nativeSrc":"8038:47:101","nodeType":"YulExpressionStatement","src":"8038:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"8105:3:101","nodeType":"YulIdentifier","src":"8105:3:101"},{"kind":"number","nativeSrc":"8110:6:101","nodeType":"YulLiteral","src":"8110:6:101","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"8101:3:101","nodeType":"YulIdentifier","src":"8101:3:101"},"nativeSrc":"8101:16:101","nodeType":"YulFunctionCall","src":"8101:16:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8129:5:101","nodeType":"YulIdentifier","src":"8129:5:101"},{"kind":"number","nativeSrc":"8136:6:101","nodeType":"YulLiteral","src":"8136:6:101","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"8125:3:101","nodeType":"YulIdentifier","src":"8125:3:101"},"nativeSrc":"8125:18:101","nodeType":"YulFunctionCall","src":"8125:18:101"}],"functionName":{"name":"mload","nativeSrc":"8119:5:101","nodeType":"YulIdentifier","src":"8119:5:101"},"nativeSrc":"8119:25:101","nodeType":"YulFunctionCall","src":"8119:25:101"}],"functionName":{"name":"mstore","nativeSrc":"8094:6:101","nodeType":"YulIdentifier","src":"8094:6:101"},"nativeSrc":"8094:51:101","nodeType":"YulFunctionCall","src":"8094:51:101"},"nativeSrc":"8094:51:101","nodeType":"YulExpressionStatement","src":"8094:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"8165:3:101","nodeType":"YulIdentifier","src":"8165:3:101"},{"kind":"number","nativeSrc":"8170:6:101","nodeType":"YulLiteral","src":"8170:6:101","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"8161:3:101","nodeType":"YulIdentifier","src":"8161:3:101"},"nativeSrc":"8161:16:101","nodeType":"YulFunctionCall","src":"8161:16:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8189:5:101","nodeType":"YulIdentifier","src":"8189:5:101"},{"kind":"number","nativeSrc":"8196:6:101","nodeType":"YulLiteral","src":"8196:6:101","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"8185:3:101","nodeType":"YulIdentifier","src":"8185:3:101"},"nativeSrc":"8185:18:101","nodeType":"YulFunctionCall","src":"8185:18:101"}],"functionName":{"name":"mload","nativeSrc":"8179:5:101","nodeType":"YulIdentifier","src":"8179:5:101"},"nativeSrc":"8179:25:101","nodeType":"YulFunctionCall","src":"8179:25:101"}],"functionName":{"name":"mstore","nativeSrc":"8154:6:101","nodeType":"YulIdentifier","src":"8154:6:101"},"nativeSrc":"8154:51:101","nodeType":"YulFunctionCall","src":"8154:51:101"},"nativeSrc":"8154:51:101","nodeType":"YulExpressionStatement","src":"8154:51:101"},{"nativeSrc":"8214:45:101","nodeType":"YulVariableDeclaration","src":"8214:45:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8244:5:101","nodeType":"YulIdentifier","src":"8244:5:101"},{"kind":"number","nativeSrc":"8251:6:101","nodeType":"YulLiteral","src":"8251:6:101","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"8240:3:101","nodeType":"YulIdentifier","src":"8240:3:101"},"nativeSrc":"8240:18:101","nodeType":"YulFunctionCall","src":"8240:18:101"}],"functionName":{"name":"mload","nativeSrc":"8234:5:101","nodeType":"YulIdentifier","src":"8234:5:101"},"nativeSrc":"8234:25:101","nodeType":"YulFunctionCall","src":"8234:25:101"},"variables":[{"name":"memberValue0","nativeSrc":"8218:12:101","nodeType":"YulTypedName","src":"8218:12:101","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"8286:12:101","nodeType":"YulIdentifier","src":"8286:12:101"},{"arguments":[{"name":"pos","nativeSrc":"8304:3:101","nodeType":"YulIdentifier","src":"8304:3:101"},{"kind":"number","nativeSrc":"8309:6:101","nodeType":"YulLiteral","src":"8309:6:101","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"8300:3:101","nodeType":"YulIdentifier","src":"8300:3:101"},"nativeSrc":"8300:16:101","nodeType":"YulFunctionCall","src":"8300:16:101"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"8268:17:101","nodeType":"YulIdentifier","src":"8268:17:101"},"nativeSrc":"8268:49:101","nodeType":"YulFunctionCall","src":"8268:49:101"},"nativeSrc":"8268:49:101","nodeType":"YulExpressionStatement","src":"8268:49:101"},{"nativeSrc":"8326:47:101","nodeType":"YulVariableDeclaration","src":"8326:47:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8358:5:101","nodeType":"YulIdentifier","src":"8358:5:101"},{"kind":"number","nativeSrc":"8365:6:101","nodeType":"YulLiteral","src":"8365:6:101","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"8354:3:101","nodeType":"YulIdentifier","src":"8354:3:101"},"nativeSrc":"8354:18:101","nodeType":"YulFunctionCall","src":"8354:18:101"}],"functionName":{"name":"mload","nativeSrc":"8348:5:101","nodeType":"YulIdentifier","src":"8348:5:101"},"nativeSrc":"8348:25:101","nodeType":"YulFunctionCall","src":"8348:25:101"},"variables":[{"name":"memberValue0_1","nativeSrc":"8330:14:101","nodeType":"YulTypedName","src":"8330:14:101","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nativeSrc":"8400:14:101","nodeType":"YulIdentifier","src":"8400:14:101"},{"arguments":[{"name":"pos","nativeSrc":"8420:3:101","nodeType":"YulIdentifier","src":"8420:3:101"},{"kind":"number","nativeSrc":"8425:6:101","nodeType":"YulLiteral","src":"8425:6:101","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"8416:3:101","nodeType":"YulIdentifier","src":"8416:3:101"},"nativeSrc":"8416:16:101","nodeType":"YulFunctionCall","src":"8416:16:101"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"8382:17:101","nodeType":"YulIdentifier","src":"8382:17:101"},"nativeSrc":"8382:51:101","nodeType":"YulFunctionCall","src":"8382:51:101"},"nativeSrc":"8382:51:101","nodeType":"YulExpressionStatement","src":"8382:51:101"}]},"name":"abi_encode_struct_PolicyData","nativeSrc":"7604:835:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"7642:5:101","nodeType":"YulTypedName","src":"7642:5:101","type":""},{"name":"pos","nativeSrc":"7649:3:101","nodeType":"YulTypedName","src":"7649:3:101","type":""}],"src":"7604:835:101"},{"body":{"nativeSrc":"8603:99:101","nodeType":"YulBlock","src":"8603:99:101","statements":[{"nativeSrc":"8613:27:101","nodeType":"YulAssignment","src":"8613:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8625:9:101","nodeType":"YulIdentifier","src":"8625:9:101"},{"kind":"number","nativeSrc":"8636:3:101","nodeType":"YulLiteral","src":"8636:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"8621:3:101","nodeType":"YulIdentifier","src":"8621:3:101"},"nativeSrc":"8621:19:101","nodeType":"YulFunctionCall","src":"8621:19:101"},"variableNames":[{"name":"tail","nativeSrc":"8613:4:101","nodeType":"YulIdentifier","src":"8613:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"8678:6:101","nodeType":"YulIdentifier","src":"8678:6:101"},{"name":"headStart","nativeSrc":"8686:9:101","nodeType":"YulIdentifier","src":"8686:9:101"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"8649:28:101","nodeType":"YulIdentifier","src":"8649:28:101"},"nativeSrc":"8649:47:101","nodeType":"YulFunctionCall","src":"8649:47:101"},"nativeSrc":"8649:47:101","nodeType":"YulExpressionStatement","src":"8649:47:101"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr__fromStack_reversed","nativeSrc":"8444:258:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8572:9:101","nodeType":"YulTypedName","src":"8572:9:101","type":""},{"name":"value0","nativeSrc":"8583:6:101","nodeType":"YulTypedName","src":"8583:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8594:4:101","nodeType":"YulTypedName","src":"8594:4:101","type":""}],"src":"8444:258:101"},{"body":{"nativeSrc":"8834:102:101","nodeType":"YulBlock","src":"8834:102:101","statements":[{"nativeSrc":"8844:26:101","nodeType":"YulAssignment","src":"8844:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8856:9:101","nodeType":"YulIdentifier","src":"8856:9:101"},{"kind":"number","nativeSrc":"8867:2:101","nodeType":"YulLiteral","src":"8867:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8852:3:101","nodeType":"YulIdentifier","src":"8852:3:101"},"nativeSrc":"8852:18:101","nodeType":"YulFunctionCall","src":"8852:18:101"},"variableNames":[{"name":"tail","nativeSrc":"8844:4:101","nodeType":"YulIdentifier","src":"8844:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8886:9:101","nodeType":"YulIdentifier","src":"8886:9:101"},{"arguments":[{"name":"value0","nativeSrc":"8901:6:101","nodeType":"YulIdentifier","src":"8901:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"8917:3:101","nodeType":"YulLiteral","src":"8917:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"8922:1:101","nodeType":"YulLiteral","src":"8922:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"8913:3:101","nodeType":"YulIdentifier","src":"8913:3:101"},"nativeSrc":"8913:11:101","nodeType":"YulFunctionCall","src":"8913:11:101"},{"kind":"number","nativeSrc":"8926:1:101","nodeType":"YulLiteral","src":"8926:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"8909:3:101","nodeType":"YulIdentifier","src":"8909:3:101"},"nativeSrc":"8909:19:101","nodeType":"YulFunctionCall","src":"8909:19:101"}],"functionName":{"name":"and","nativeSrc":"8897:3:101","nodeType":"YulIdentifier","src":"8897:3:101"},"nativeSrc":"8897:32:101","nodeType":"YulFunctionCall","src":"8897:32:101"}],"functionName":{"name":"mstore","nativeSrc":"8879:6:101","nodeType":"YulIdentifier","src":"8879:6:101"},"nativeSrc":"8879:51:101","nodeType":"YulFunctionCall","src":"8879:51:101"},"nativeSrc":"8879:51:101","nodeType":"YulExpressionStatement","src":"8879:51:101"}]},"name":"abi_encode_tuple_t_contract$_IPremiumsAccount_$29276__to_t_address__fromStack_reversed","nativeSrc":"8707:229:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8803:9:101","nodeType":"YulTypedName","src":"8803:9:101","type":""},{"name":"value0","nativeSrc":"8814:6:101","nodeType":"YulTypedName","src":"8814:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8825:4:101","nodeType":"YulTypedName","src":"8825:4:101","type":""}],"src":"8707:229:101"},{"body":{"nativeSrc":"9047:452:101","nodeType":"YulBlock","src":"9047:452:101","statements":[{"body":{"nativeSrc":"9093:16:101","nodeType":"YulBlock","src":"9093:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9102:1:101","nodeType":"YulLiteral","src":"9102:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9105:1:101","nodeType":"YulLiteral","src":"9105:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9095:6:101","nodeType":"YulIdentifier","src":"9095:6:101"},"nativeSrc":"9095:12:101","nodeType":"YulFunctionCall","src":"9095:12:101"},"nativeSrc":"9095:12:101","nodeType":"YulExpressionStatement","src":"9095:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9068:7:101","nodeType":"YulIdentifier","src":"9068:7:101"},{"name":"headStart","nativeSrc":"9077:9:101","nodeType":"YulIdentifier","src":"9077:9:101"}],"functionName":{"name":"sub","nativeSrc":"9064:3:101","nodeType":"YulIdentifier","src":"9064:3:101"},"nativeSrc":"9064:23:101","nodeType":"YulFunctionCall","src":"9064:23:101"},{"kind":"number","nativeSrc":"9089:2:101","nodeType":"YulLiteral","src":"9089:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"9060:3:101","nodeType":"YulIdentifier","src":"9060:3:101"},"nativeSrc":"9060:32:101","nodeType":"YulFunctionCall","src":"9060:32:101"},"nativeSrc":"9057:52:101","nodeType":"YulIf","src":"9057:52:101"},{"nativeSrc":"9118:37:101","nodeType":"YulVariableDeclaration","src":"9118:37:101","value":{"arguments":[{"name":"headStart","nativeSrc":"9145:9:101","nodeType":"YulIdentifier","src":"9145:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"9132:12:101","nodeType":"YulIdentifier","src":"9132:12:101"},"nativeSrc":"9132:23:101","nodeType":"YulFunctionCall","src":"9132:23:101"},"variables":[{"name":"offset","nativeSrc":"9122:6:101","nodeType":"YulTypedName","src":"9122:6:101","type":""}]},{"body":{"nativeSrc":"9198:16:101","nodeType":"YulBlock","src":"9198:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9207:1:101","nodeType":"YulLiteral","src":"9207:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9210:1:101","nodeType":"YulLiteral","src":"9210:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9200:6:101","nodeType":"YulIdentifier","src":"9200:6:101"},"nativeSrc":"9200:12:101","nodeType":"YulFunctionCall","src":"9200:12:101"},"nativeSrc":"9200:12:101","nodeType":"YulExpressionStatement","src":"9200:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"9170:6:101","nodeType":"YulIdentifier","src":"9170:6:101"},{"kind":"number","nativeSrc":"9178:18:101","nodeType":"YulLiteral","src":"9178:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"9167:2:101","nodeType":"YulIdentifier","src":"9167:2:101"},"nativeSrc":"9167:30:101","nodeType":"YulFunctionCall","src":"9167:30:101"},"nativeSrc":"9164:50:101","nodeType":"YulIf","src":"9164:50:101"},{"nativeSrc":"9223:84:101","nodeType":"YulVariableDeclaration","src":"9223:84:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9279:9:101","nodeType":"YulIdentifier","src":"9279:9:101"},{"name":"offset","nativeSrc":"9290:6:101","nodeType":"YulIdentifier","src":"9290:6:101"}],"functionName":{"name":"add","nativeSrc":"9275:3:101","nodeType":"YulIdentifier","src":"9275:3:101"},"nativeSrc":"9275:22:101","nodeType":"YulFunctionCall","src":"9275:22:101"},{"name":"dataEnd","nativeSrc":"9299:7:101","nodeType":"YulIdentifier","src":"9299:7:101"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"9249:25:101","nodeType":"YulIdentifier","src":"9249:25:101"},"nativeSrc":"9249:58:101","nodeType":"YulFunctionCall","src":"9249:58:101"},"variables":[{"name":"value0_1","nativeSrc":"9227:8:101","nodeType":"YulTypedName","src":"9227:8:101","type":""},{"name":"value1_1","nativeSrc":"9237:8:101","nodeType":"YulTypedName","src":"9237:8:101","type":""}]},{"nativeSrc":"9316:18:101","nodeType":"YulAssignment","src":"9316:18:101","value":{"name":"value0_1","nativeSrc":"9326:8:101","nodeType":"YulIdentifier","src":"9326:8:101"},"variableNames":[{"name":"value0","nativeSrc":"9316:6:101","nodeType":"YulIdentifier","src":"9316:6:101"}]},{"nativeSrc":"9343:18:101","nodeType":"YulAssignment","src":"9343:18:101","value":{"name":"value1_1","nativeSrc":"9353:8:101","nodeType":"YulIdentifier","src":"9353:8:101"},"variableNames":[{"name":"value1","nativeSrc":"9343:6:101","nodeType":"YulIdentifier","src":"9343:6:101"}]},{"nativeSrc":"9370:45:101","nodeType":"YulVariableDeclaration","src":"9370:45:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9400:9:101","nodeType":"YulIdentifier","src":"9400:9:101"},{"kind":"number","nativeSrc":"9411:2:101","nodeType":"YulLiteral","src":"9411:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9396:3:101","nodeType":"YulIdentifier","src":"9396:3:101"},"nativeSrc":"9396:18:101","nodeType":"YulFunctionCall","src":"9396:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"9383:12:101","nodeType":"YulIdentifier","src":"9383:12:101"},"nativeSrc":"9383:32:101","nodeType":"YulFunctionCall","src":"9383:32:101"},"variables":[{"name":"value","nativeSrc":"9374:5:101","nodeType":"YulTypedName","src":"9374:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"9463:5:101","nodeType":"YulIdentifier","src":"9463:5:101"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"9424:38:101","nodeType":"YulIdentifier","src":"9424:38:101"},"nativeSrc":"9424:45:101","nodeType":"YulFunctionCall","src":"9424:45:101"},"nativeSrc":"9424:45:101","nodeType":"YulExpressionStatement","src":"9424:45:101"},{"nativeSrc":"9478:15:101","nodeType":"YulAssignment","src":"9478:15:101","value":{"name":"value","nativeSrc":"9488:5:101","nodeType":"YulIdentifier","src":"9488:5:101"},"variableNames":[{"name":"value2","nativeSrc":"9478:6:101","nodeType":"YulIdentifier","src":"9478:6:101"}]}]},"name":"abi_decode_tuple_t_bytes_calldata_ptrt_address","nativeSrc":"8941:558:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8997:9:101","nodeType":"YulTypedName","src":"8997:9:101","type":""},{"name":"dataEnd","nativeSrc":"9008:7:101","nodeType":"YulTypedName","src":"9008:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9020:6:101","nodeType":"YulTypedName","src":"9020:6:101","type":""},{"name":"value1","nativeSrc":"9028:6:101","nodeType":"YulTypedName","src":"9028:6:101","type":""},{"name":"value2","nativeSrc":"9036:6:101","nodeType":"YulTypedName","src":"9036:6:101","type":""}],"src":"8941:558:101"},{"body":{"nativeSrc":"9625:297:101","nodeType":"YulBlock","src":"9625:297:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9642:9:101","nodeType":"YulIdentifier","src":"9642:9:101"},{"kind":"number","nativeSrc":"9653:2:101","nodeType":"YulLiteral","src":"9653:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"9635:6:101","nodeType":"YulIdentifier","src":"9635:6:101"},"nativeSrc":"9635:21:101","nodeType":"YulFunctionCall","src":"9635:21:101"},"nativeSrc":"9635:21:101","nodeType":"YulExpressionStatement","src":"9635:21:101"},{"nativeSrc":"9665:27:101","nodeType":"YulVariableDeclaration","src":"9665:27:101","value":{"arguments":[{"name":"value0","nativeSrc":"9685:6:101","nodeType":"YulIdentifier","src":"9685:6:101"}],"functionName":{"name":"mload","nativeSrc":"9679:5:101","nodeType":"YulIdentifier","src":"9679:5:101"},"nativeSrc":"9679:13:101","nodeType":"YulFunctionCall","src":"9679:13:101"},"variables":[{"name":"length","nativeSrc":"9669:6:101","nodeType":"YulTypedName","src":"9669:6:101","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9712:9:101","nodeType":"YulIdentifier","src":"9712:9:101"},{"kind":"number","nativeSrc":"9723:2:101","nodeType":"YulLiteral","src":"9723:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9708:3:101","nodeType":"YulIdentifier","src":"9708:3:101"},"nativeSrc":"9708:18:101","nodeType":"YulFunctionCall","src":"9708:18:101"},{"name":"length","nativeSrc":"9728:6:101","nodeType":"YulIdentifier","src":"9728:6:101"}],"functionName":{"name":"mstore","nativeSrc":"9701:6:101","nodeType":"YulIdentifier","src":"9701:6:101"},"nativeSrc":"9701:34:101","nodeType":"YulFunctionCall","src":"9701:34:101"},"nativeSrc":"9701:34:101","nodeType":"YulExpressionStatement","src":"9701:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9754:9:101","nodeType":"YulIdentifier","src":"9754:9:101"},{"kind":"number","nativeSrc":"9765:2:101","nodeType":"YulLiteral","src":"9765:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9750:3:101","nodeType":"YulIdentifier","src":"9750:3:101"},"nativeSrc":"9750:18:101","nodeType":"YulFunctionCall","src":"9750:18:101"},{"arguments":[{"name":"value0","nativeSrc":"9774:6:101","nodeType":"YulIdentifier","src":"9774:6:101"},{"kind":"number","nativeSrc":"9782:2:101","nodeType":"YulLiteral","src":"9782:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9770:3:101","nodeType":"YulIdentifier","src":"9770:3:101"},"nativeSrc":"9770:15:101","nodeType":"YulFunctionCall","src":"9770:15:101"},{"name":"length","nativeSrc":"9787:6:101","nodeType":"YulIdentifier","src":"9787:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"9744:5:101","nodeType":"YulIdentifier","src":"9744:5:101"},"nativeSrc":"9744:50:101","nodeType":"YulFunctionCall","src":"9744:50:101"},"nativeSrc":"9744:50:101","nodeType":"YulExpressionStatement","src":"9744:50:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9818:9:101","nodeType":"YulIdentifier","src":"9818:9:101"},{"name":"length","nativeSrc":"9829:6:101","nodeType":"YulIdentifier","src":"9829:6:101"}],"functionName":{"name":"add","nativeSrc":"9814:3:101","nodeType":"YulIdentifier","src":"9814:3:101"},"nativeSrc":"9814:22:101","nodeType":"YulFunctionCall","src":"9814:22:101"},{"kind":"number","nativeSrc":"9838:2:101","nodeType":"YulLiteral","src":"9838:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9810:3:101","nodeType":"YulIdentifier","src":"9810:3:101"},"nativeSrc":"9810:31:101","nodeType":"YulFunctionCall","src":"9810:31:101"},{"kind":"number","nativeSrc":"9843:1:101","nodeType":"YulLiteral","src":"9843:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"9803:6:101","nodeType":"YulIdentifier","src":"9803:6:101"},"nativeSrc":"9803:42:101","nodeType":"YulFunctionCall","src":"9803:42:101"},"nativeSrc":"9803:42:101","nodeType":"YulExpressionStatement","src":"9803:42:101"},{"nativeSrc":"9854:62:101","nodeType":"YulAssignment","src":"9854:62:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9870:9:101","nodeType":"YulIdentifier","src":"9870:9:101"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"9889:6:101","nodeType":"YulIdentifier","src":"9889:6:101"},{"kind":"number","nativeSrc":"9897:2:101","nodeType":"YulLiteral","src":"9897:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"9885:3:101","nodeType":"YulIdentifier","src":"9885:3:101"},"nativeSrc":"9885:15:101","nodeType":"YulFunctionCall","src":"9885:15:101"},{"arguments":[{"kind":"number","nativeSrc":"9906:2:101","nodeType":"YulLiteral","src":"9906:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"9902:3:101","nodeType":"YulIdentifier","src":"9902:3:101"},"nativeSrc":"9902:7:101","nodeType":"YulFunctionCall","src":"9902:7:101"}],"functionName":{"name":"and","nativeSrc":"9881:3:101","nodeType":"YulIdentifier","src":"9881:3:101"},"nativeSrc":"9881:29:101","nodeType":"YulFunctionCall","src":"9881:29:101"}],"functionName":{"name":"add","nativeSrc":"9866:3:101","nodeType":"YulIdentifier","src":"9866:3:101"},"nativeSrc":"9866:45:101","nodeType":"YulFunctionCall","src":"9866:45:101"},{"kind":"number","nativeSrc":"9913:2:101","nodeType":"YulLiteral","src":"9913:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9862:3:101","nodeType":"YulIdentifier","src":"9862:3:101"},"nativeSrc":"9862:54:101","nodeType":"YulFunctionCall","src":"9862:54:101"},"variableNames":[{"name":"tail","nativeSrc":"9854:4:101","nodeType":"YulIdentifier","src":"9854:4:101"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"9504:418:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9594:9:101","nodeType":"YulTypedName","src":"9594:9:101","type":""},{"name":"value0","nativeSrc":"9605:6:101","nodeType":"YulTypedName","src":"9605:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9616:4:101","nodeType":"YulTypedName","src":"9616:4:101","type":""}],"src":"9504:418:101"},{"body":{"nativeSrc":"10045:257:101","nodeType":"YulBlock","src":"10045:257:101","statements":[{"nativeSrc":"10055:33:101","nodeType":"YulVariableDeclaration","src":"10055:33:101","value":{"arguments":[{"name":"dataEnd","nativeSrc":"10069:7:101","nodeType":"YulIdentifier","src":"10069:7:101"},{"name":"headStart","nativeSrc":"10078:9:101","nodeType":"YulIdentifier","src":"10078:9:101"}],"functionName":{"name":"sub","nativeSrc":"10065:3:101","nodeType":"YulIdentifier","src":"10065:3:101"},"nativeSrc":"10065:23:101","nodeType":"YulFunctionCall","src":"10065:23:101"},"variables":[{"name":"_1","nativeSrc":"10059:2:101","nodeType":"YulTypedName","src":"10059:2:101","type":""}]},{"body":{"nativeSrc":"10113:16:101","nodeType":"YulBlock","src":"10113:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10122:1:101","nodeType":"YulLiteral","src":"10122:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"10125:1:101","nodeType":"YulLiteral","src":"10125:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10115:6:101","nodeType":"YulIdentifier","src":"10115:6:101"},"nativeSrc":"10115:12:101","nodeType":"YulFunctionCall","src":"10115:12:101"},"nativeSrc":"10115:12:101","nodeType":"YulExpressionStatement","src":"10115:12:101"}]},"condition":{"arguments":[{"name":"_1","nativeSrc":"10104:2:101","nodeType":"YulIdentifier","src":"10104:2:101"},{"kind":"number","nativeSrc":"10108:3:101","nodeType":"YulLiteral","src":"10108:3:101","type":"","value":"416"}],"functionName":{"name":"slt","nativeSrc":"10100:3:101","nodeType":"YulIdentifier","src":"10100:3:101"},"nativeSrc":"10100:12:101","nodeType":"YulFunctionCall","src":"10100:12:101"},"nativeSrc":"10097:32:101","nodeType":"YulIf","src":"10097:32:101"},{"body":{"nativeSrc":"10154:16:101","nodeType":"YulBlock","src":"10154:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10163:1:101","nodeType":"YulLiteral","src":"10163:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"10166:1:101","nodeType":"YulLiteral","src":"10166:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10156:6:101","nodeType":"YulIdentifier","src":"10156:6:101"},"nativeSrc":"10156:12:101","nodeType":"YulFunctionCall","src":"10156:12:101"},"nativeSrc":"10156:12:101","nodeType":"YulExpressionStatement","src":"10156:12:101"}]},"condition":{"arguments":[{"name":"_1","nativeSrc":"10145:2:101","nodeType":"YulIdentifier","src":"10145:2:101"},{"kind":"number","nativeSrc":"10149:3:101","nodeType":"YulLiteral","src":"10149:3:101","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"10141:3:101","nodeType":"YulIdentifier","src":"10141:3:101"},"nativeSrc":"10141:12:101","nodeType":"YulFunctionCall","src":"10141:12:101"},"nativeSrc":"10138:32:101","nodeType":"YulIf","src":"10138:32:101"},{"nativeSrc":"10179:19:101","nodeType":"YulAssignment","src":"10179:19:101","value":{"name":"headStart","nativeSrc":"10189:9:101","nodeType":"YulIdentifier","src":"10189:9:101"},"variableNames":[{"name":"value0","nativeSrc":"10179:6:101","nodeType":"YulIdentifier","src":"10179:6:101"}]},{"nativeSrc":"10207:14:101","nodeType":"YulVariableDeclaration","src":"10207:14:101","value":{"kind":"number","nativeSrc":"10220:1:101","nodeType":"YulLiteral","src":"10220:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"10211:5:101","nodeType":"YulTypedName","src":"10211:5:101","type":""}]},{"nativeSrc":"10230:42:101","nodeType":"YulAssignment","src":"10230:42:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10256:9:101","nodeType":"YulIdentifier","src":"10256:9:101"},{"kind":"number","nativeSrc":"10267:3:101","nodeType":"YulLiteral","src":"10267:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"10252:3:101","nodeType":"YulIdentifier","src":"10252:3:101"},"nativeSrc":"10252:19:101","nodeType":"YulFunctionCall","src":"10252:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"10239:12:101","nodeType":"YulIdentifier","src":"10239:12:101"},"nativeSrc":"10239:33:101","nodeType":"YulFunctionCall","src":"10239:33:101"},"variableNames":[{"name":"value","nativeSrc":"10230:5:101","nodeType":"YulIdentifier","src":"10230:5:101"}]},{"nativeSrc":"10281:15:101","nodeType":"YulAssignment","src":"10281:15:101","value":{"name":"value","nativeSrc":"10291:5:101","nodeType":"YulIdentifier","src":"10291:5:101"},"variableNames":[{"name":"value1","nativeSrc":"10281:6:101","nodeType":"YulIdentifier","src":"10281:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_uint256","nativeSrc":"9927:375:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10003:9:101","nodeType":"YulTypedName","src":"10003:9:101","type":""},{"name":"dataEnd","nativeSrc":"10014:7:101","nodeType":"YulTypedName","src":"10014:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10026:6:101","nodeType":"YulTypedName","src":"10026:6:101","type":""},{"name":"value1","nativeSrc":"10034:6:101","nodeType":"YulTypedName","src":"10034:6:101","type":""}],"src":"9927:375:101"},{"body":{"nativeSrc":"10377:191:101","nodeType":"YulBlock","src":"10377:191:101","statements":[{"body":{"nativeSrc":"10423:16:101","nodeType":"YulBlock","src":"10423:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10432:1:101","nodeType":"YulLiteral","src":"10432:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"10435:1:101","nodeType":"YulLiteral","src":"10435:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10425:6:101","nodeType":"YulIdentifier","src":"10425:6:101"},"nativeSrc":"10425:12:101","nodeType":"YulFunctionCall","src":"10425:12:101"},"nativeSrc":"10425:12:101","nodeType":"YulExpressionStatement","src":"10425:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10398:7:101","nodeType":"YulIdentifier","src":"10398:7:101"},{"name":"headStart","nativeSrc":"10407:9:101","nodeType":"YulIdentifier","src":"10407:9:101"}],"functionName":{"name":"sub","nativeSrc":"10394:3:101","nodeType":"YulIdentifier","src":"10394:3:101"},"nativeSrc":"10394:23:101","nodeType":"YulFunctionCall","src":"10394:23:101"},{"kind":"number","nativeSrc":"10419:2:101","nodeType":"YulLiteral","src":"10419:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"10390:3:101","nodeType":"YulIdentifier","src":"10390:3:101"},"nativeSrc":"10390:32:101","nodeType":"YulFunctionCall","src":"10390:32:101"},"nativeSrc":"10387:52:101","nodeType":"YulIf","src":"10387:52:101"},{"nativeSrc":"10448:36:101","nodeType":"YulVariableDeclaration","src":"10448:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10474:9:101","nodeType":"YulIdentifier","src":"10474:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"10461:12:101","nodeType":"YulIdentifier","src":"10461:12:101"},"nativeSrc":"10461:23:101","nodeType":"YulFunctionCall","src":"10461:23:101"},"variables":[{"name":"value","nativeSrc":"10452:5:101","nodeType":"YulTypedName","src":"10452:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10532:5:101","nodeType":"YulIdentifier","src":"10532:5:101"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"10493:38:101","nodeType":"YulIdentifier","src":"10493:38:101"},"nativeSrc":"10493:45:101","nodeType":"YulFunctionCall","src":"10493:45:101"},"nativeSrc":"10493:45:101","nodeType":"YulExpressionStatement","src":"10493:45:101"},{"nativeSrc":"10547:15:101","nodeType":"YulAssignment","src":"10547:15:101","value":{"name":"value","nativeSrc":"10557:5:101","nodeType":"YulIdentifier","src":"10557:5:101"},"variableNames":[{"name":"value0","nativeSrc":"10547:6:101","nodeType":"YulIdentifier","src":"10547:6:101"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"10307:261:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10343:9:101","nodeType":"YulTypedName","src":"10343:9:101","type":""},{"name":"dataEnd","nativeSrc":"10354:7:101","nodeType":"YulTypedName","src":"10354:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10366:6:101","nodeType":"YulTypedName","src":"10366:6:101","type":""}],"src":"10307:261:101"},{"body":{"nativeSrc":"10697:102:101","nodeType":"YulBlock","src":"10697:102:101","statements":[{"nativeSrc":"10707:26:101","nodeType":"YulAssignment","src":"10707:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10719:9:101","nodeType":"YulIdentifier","src":"10719:9:101"},{"kind":"number","nativeSrc":"10730:2:101","nodeType":"YulLiteral","src":"10730:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10715:3:101","nodeType":"YulIdentifier","src":"10715:3:101"},"nativeSrc":"10715:18:101","nodeType":"YulFunctionCall","src":"10715:18:101"},"variableNames":[{"name":"tail","nativeSrc":"10707:4:101","nodeType":"YulIdentifier","src":"10707:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10749:9:101","nodeType":"YulIdentifier","src":"10749:9:101"},{"arguments":[{"name":"value0","nativeSrc":"10764:6:101","nodeType":"YulIdentifier","src":"10764:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"10780:3:101","nodeType":"YulLiteral","src":"10780:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"10785:1:101","nodeType":"YulLiteral","src":"10785:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"10776:3:101","nodeType":"YulIdentifier","src":"10776:3:101"},"nativeSrc":"10776:11:101","nodeType":"YulFunctionCall","src":"10776:11:101"},{"kind":"number","nativeSrc":"10789:1:101","nodeType":"YulLiteral","src":"10789:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"10772:3:101","nodeType":"YulIdentifier","src":"10772:3:101"},"nativeSrc":"10772:19:101","nodeType":"YulFunctionCall","src":"10772:19:101"}],"functionName":{"name":"and","nativeSrc":"10760:3:101","nodeType":"YulIdentifier","src":"10760:3:101"},"nativeSrc":"10760:32:101","nodeType":"YulFunctionCall","src":"10760:32:101"}],"functionName":{"name":"mstore","nativeSrc":"10742:6:101","nodeType":"YulIdentifier","src":"10742:6:101"},"nativeSrc":"10742:51:101","nodeType":"YulFunctionCall","src":"10742:51:101"},"nativeSrc":"10742:51:101","nodeType":"YulExpressionStatement","src":"10742:51:101"}]},"name":"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed","nativeSrc":"10573:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10666:9:101","nodeType":"YulTypedName","src":"10666:9:101","type":""},{"name":"value0","nativeSrc":"10677:6:101","nodeType":"YulTypedName","src":"10677:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10688:4:101","nodeType":"YulTypedName","src":"10688:4:101","type":""}],"src":"10573:226:101"},{"body":{"nativeSrc":"10927:102:101","nodeType":"YulBlock","src":"10927:102:101","statements":[{"nativeSrc":"10937:26:101","nodeType":"YulAssignment","src":"10937:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10949:9:101","nodeType":"YulIdentifier","src":"10949:9:101"},{"kind":"number","nativeSrc":"10960:2:101","nodeType":"YulLiteral","src":"10960:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10945:3:101","nodeType":"YulIdentifier","src":"10945:3:101"},"nativeSrc":"10945:18:101","nodeType":"YulFunctionCall","src":"10945:18:101"},"variableNames":[{"name":"tail","nativeSrc":"10937:4:101","nodeType":"YulIdentifier","src":"10937:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10979:9:101","nodeType":"YulIdentifier","src":"10979:9:101"},{"arguments":[{"name":"value0","nativeSrc":"10994:6:101","nodeType":"YulIdentifier","src":"10994:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11010:3:101","nodeType":"YulLiteral","src":"11010:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"11015:1:101","nodeType":"YulLiteral","src":"11015:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11006:3:101","nodeType":"YulIdentifier","src":"11006:3:101"},"nativeSrc":"11006:11:101","nodeType":"YulFunctionCall","src":"11006:11:101"},{"kind":"number","nativeSrc":"11019:1:101","nodeType":"YulLiteral","src":"11019:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11002:3:101","nodeType":"YulIdentifier","src":"11002:3:101"},"nativeSrc":"11002:19:101","nodeType":"YulFunctionCall","src":"11002:19:101"}],"functionName":{"name":"and","nativeSrc":"10990:3:101","nodeType":"YulIdentifier","src":"10990:3:101"},"nativeSrc":"10990:32:101","nodeType":"YulFunctionCall","src":"10990:32:101"}],"functionName":{"name":"mstore","nativeSrc":"10972:6:101","nodeType":"YulIdentifier","src":"10972:6:101"},"nativeSrc":"10972:51:101","nodeType":"YulFunctionCall","src":"10972:51:101"},"nativeSrc":"10972:51:101","nodeType":"YulExpressionStatement","src":"10972:51:101"}]},"name":"abi_encode_tuple_t_contract$_IUnderwriter_$29363__to_t_address__fromStack_reversed","nativeSrc":"10804:225:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10896:9:101","nodeType":"YulTypedName","src":"10896:9:101","type":""},{"name":"value0","nativeSrc":"10907:6:101","nodeType":"YulTypedName","src":"10907:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10918:4:101","nodeType":"YulTypedName","src":"10918:4:101","type":""}],"src":"10804:225:101"},{"body":{"nativeSrc":"11207:171:101","nodeType":"YulBlock","src":"11207:171:101","statements":[{"nativeSrc":"11217:26:101","nodeType":"YulAssignment","src":"11217:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"11229:9:101","nodeType":"YulIdentifier","src":"11229:9:101"},{"kind":"number","nativeSrc":"11240:2:101","nodeType":"YulLiteral","src":"11240:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11225:3:101","nodeType":"YulIdentifier","src":"11225:3:101"},"nativeSrc":"11225:18:101","nodeType":"YulFunctionCall","src":"11225:18:101"},"variableNames":[{"name":"tail","nativeSrc":"11217:4:101","nodeType":"YulIdentifier","src":"11217:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11259:9:101","nodeType":"YulIdentifier","src":"11259:9:101"},{"arguments":[{"name":"value0","nativeSrc":"11274:6:101","nodeType":"YulIdentifier","src":"11274:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11290:3:101","nodeType":"YulLiteral","src":"11290:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"11295:1:101","nodeType":"YulLiteral","src":"11295:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11286:3:101","nodeType":"YulIdentifier","src":"11286:3:101"},"nativeSrc":"11286:11:101","nodeType":"YulFunctionCall","src":"11286:11:101"},{"kind":"number","nativeSrc":"11299:1:101","nodeType":"YulLiteral","src":"11299:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11282:3:101","nodeType":"YulIdentifier","src":"11282:3:101"},"nativeSrc":"11282:19:101","nodeType":"YulFunctionCall","src":"11282:19:101"}],"functionName":{"name":"and","nativeSrc":"11270:3:101","nodeType":"YulIdentifier","src":"11270:3:101"},"nativeSrc":"11270:32:101","nodeType":"YulFunctionCall","src":"11270:32:101"}],"functionName":{"name":"mstore","nativeSrc":"11252:6:101","nodeType":"YulIdentifier","src":"11252:6:101"},"nativeSrc":"11252:51:101","nodeType":"YulFunctionCall","src":"11252:51:101"},"nativeSrc":"11252:51:101","nodeType":"YulExpressionStatement","src":"11252:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11323:9:101","nodeType":"YulIdentifier","src":"11323:9:101"},{"kind":"number","nativeSrc":"11334:2:101","nodeType":"YulLiteral","src":"11334:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11319:3:101","nodeType":"YulIdentifier","src":"11319:3:101"},"nativeSrc":"11319:18:101","nodeType":"YulFunctionCall","src":"11319:18:101"},{"arguments":[{"name":"value1","nativeSrc":"11343:6:101","nodeType":"YulIdentifier","src":"11343:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11359:3:101","nodeType":"YulLiteral","src":"11359:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"11364:1:101","nodeType":"YulLiteral","src":"11364:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11355:3:101","nodeType":"YulIdentifier","src":"11355:3:101"},"nativeSrc":"11355:11:101","nodeType":"YulFunctionCall","src":"11355:11:101"},{"kind":"number","nativeSrc":"11368:1:101","nodeType":"YulLiteral","src":"11368:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11351:3:101","nodeType":"YulIdentifier","src":"11351:3:101"},"nativeSrc":"11351:19:101","nodeType":"YulFunctionCall","src":"11351:19:101"}],"functionName":{"name":"and","nativeSrc":"11339:3:101","nodeType":"YulIdentifier","src":"11339:3:101"},"nativeSrc":"11339:32:101","nodeType":"YulFunctionCall","src":"11339:32:101"}],"functionName":{"name":"mstore","nativeSrc":"11312:6:101","nodeType":"YulIdentifier","src":"11312:6:101"},"nativeSrc":"11312:60:101","nodeType":"YulFunctionCall","src":"11312:60:101"},"nativeSrc":"11312:60:101","nodeType":"YulExpressionStatement","src":"11312:60:101"}]},"name":"abi_encode_tuple_t_contract$_IUnderwriter_$29363_t_contract$_IUnderwriter_$29363__to_t_address_t_address__fromStack_reversed","nativeSrc":"11034:344:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11168:9:101","nodeType":"YulTypedName","src":"11168:9:101","type":""},{"name":"value1","nativeSrc":"11179:6:101","nodeType":"YulTypedName","src":"11179:6:101","type":""},{"name":"value0","nativeSrc":"11187:6:101","nodeType":"YulTypedName","src":"11187:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11198:4:101","nodeType":"YulTypedName","src":"11198:4:101","type":""}],"src":"11034:344:101"},{"body":{"nativeSrc":"11415:95:101","nodeType":"YulBlock","src":"11415:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11432:1:101","nodeType":"YulLiteral","src":"11432:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"11439:3:101","nodeType":"YulLiteral","src":"11439:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"11444:10:101","nodeType":"YulLiteral","src":"11444:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"11435:3:101","nodeType":"YulIdentifier","src":"11435:3:101"},"nativeSrc":"11435:20:101","nodeType":"YulFunctionCall","src":"11435:20:101"}],"functionName":{"name":"mstore","nativeSrc":"11425:6:101","nodeType":"YulIdentifier","src":"11425:6:101"},"nativeSrc":"11425:31:101","nodeType":"YulFunctionCall","src":"11425:31:101"},"nativeSrc":"11425:31:101","nodeType":"YulExpressionStatement","src":"11425:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11472:1:101","nodeType":"YulLiteral","src":"11472:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"11475:4:101","nodeType":"YulLiteral","src":"11475:4:101","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"11465:6:101","nodeType":"YulIdentifier","src":"11465:6:101"},"nativeSrc":"11465:15:101","nodeType":"YulFunctionCall","src":"11465:15:101"},"nativeSrc":"11465:15:101","nodeType":"YulExpressionStatement","src":"11465:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11496:1:101","nodeType":"YulLiteral","src":"11496:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11499:4:101","nodeType":"YulLiteral","src":"11499:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"11489:6:101","nodeType":"YulIdentifier","src":"11489:6:101"},"nativeSrc":"11489:15:101","nodeType":"YulFunctionCall","src":"11489:15:101"},"nativeSrc":"11489:15:101","nodeType":"YulExpressionStatement","src":"11489:15:101"}]},"name":"panic_error_0x32","nativeSrc":"11383:127:101","nodeType":"YulFunctionDefinition","src":"11383:127:101"},{"body":{"nativeSrc":"11609:427:101","nodeType":"YulBlock","src":"11609:427:101","statements":[{"nativeSrc":"11619:51:101","nodeType":"YulVariableDeclaration","src":"11619:51:101","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"11658:11:101","nodeType":"YulIdentifier","src":"11658:11:101"}],"functionName":{"name":"calldataload","nativeSrc":"11645:12:101","nodeType":"YulIdentifier","src":"11645:12:101"},"nativeSrc":"11645:25:101","nodeType":"YulFunctionCall","src":"11645:25:101"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"11623:18:101","nodeType":"YulTypedName","src":"11623:18:101","type":""}]},{"body":{"nativeSrc":"11759:16:101","nodeType":"YulBlock","src":"11759:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11768:1:101","nodeType":"YulLiteral","src":"11768:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11771:1:101","nodeType":"YulLiteral","src":"11771:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11761:6:101","nodeType":"YulIdentifier","src":"11761:6:101"},"nativeSrc":"11761:12:101","nodeType":"YulFunctionCall","src":"11761:12:101"},"nativeSrc":"11761:12:101","nodeType":"YulExpressionStatement","src":"11761:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"11693:18:101","nodeType":"YulIdentifier","src":"11693:18:101"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"11721:12:101","nodeType":"YulIdentifier","src":"11721:12:101"},"nativeSrc":"11721:14:101","nodeType":"YulFunctionCall","src":"11721:14:101"},{"name":"base_ref","nativeSrc":"11737:8:101","nodeType":"YulIdentifier","src":"11737:8:101"}],"functionName":{"name":"sub","nativeSrc":"11717:3:101","nodeType":"YulIdentifier","src":"11717:3:101"},"nativeSrc":"11717:29:101","nodeType":"YulFunctionCall","src":"11717:29:101"},{"arguments":[{"kind":"number","nativeSrc":"11752:2:101","nodeType":"YulLiteral","src":"11752:2:101","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"11748:3:101","nodeType":"YulIdentifier","src":"11748:3:101"},"nativeSrc":"11748:7:101","nodeType":"YulFunctionCall","src":"11748:7:101"}],"functionName":{"name":"add","nativeSrc":"11713:3:101","nodeType":"YulIdentifier","src":"11713:3:101"},"nativeSrc":"11713:43:101","nodeType":"YulFunctionCall","src":"11713:43:101"}],"functionName":{"name":"slt","nativeSrc":"11689:3:101","nodeType":"YulIdentifier","src":"11689:3:101"},"nativeSrc":"11689:68:101","nodeType":"YulFunctionCall","src":"11689:68:101"}],"functionName":{"name":"iszero","nativeSrc":"11682:6:101","nodeType":"YulIdentifier","src":"11682:6:101"},"nativeSrc":"11682:76:101","nodeType":"YulFunctionCall","src":"11682:76:101"},"nativeSrc":"11679:96:101","nodeType":"YulIf","src":"11679:96:101"},{"nativeSrc":"11784:47:101","nodeType":"YulVariableDeclaration","src":"11784:47:101","value":{"arguments":[{"name":"base_ref","nativeSrc":"11802:8:101","nodeType":"YulIdentifier","src":"11802:8:101"},{"name":"rel_offset_of_tail","nativeSrc":"11812:18:101","nodeType":"YulIdentifier","src":"11812:18:101"}],"functionName":{"name":"add","nativeSrc":"11798:3:101","nodeType":"YulIdentifier","src":"11798:3:101"},"nativeSrc":"11798:33:101","nodeType":"YulFunctionCall","src":"11798:33:101"},"variables":[{"name":"addr_1","nativeSrc":"11788:6:101","nodeType":"YulTypedName","src":"11788:6:101","type":""}]},{"nativeSrc":"11840:30:101","nodeType":"YulAssignment","src":"11840:30:101","value":{"arguments":[{"name":"addr_1","nativeSrc":"11863:6:101","nodeType":"YulIdentifier","src":"11863:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"11850:12:101","nodeType":"YulIdentifier","src":"11850:12:101"},"nativeSrc":"11850:20:101","nodeType":"YulFunctionCall","src":"11850:20:101"},"variableNames":[{"name":"length","nativeSrc":"11840:6:101","nodeType":"YulIdentifier","src":"11840:6:101"}]},{"body":{"nativeSrc":"11913:16:101","nodeType":"YulBlock","src":"11913:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11922:1:101","nodeType":"YulLiteral","src":"11922:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11925:1:101","nodeType":"YulLiteral","src":"11925:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11915:6:101","nodeType":"YulIdentifier","src":"11915:6:101"},"nativeSrc":"11915:12:101","nodeType":"YulFunctionCall","src":"11915:12:101"},"nativeSrc":"11915:12:101","nodeType":"YulExpressionStatement","src":"11915:12:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"11885:6:101","nodeType":"YulIdentifier","src":"11885:6:101"},{"kind":"number","nativeSrc":"11893:18:101","nodeType":"YulLiteral","src":"11893:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"11882:2:101","nodeType":"YulIdentifier","src":"11882:2:101"},"nativeSrc":"11882:30:101","nodeType":"YulFunctionCall","src":"11882:30:101"},"nativeSrc":"11879:50:101","nodeType":"YulIf","src":"11879:50:101"},{"nativeSrc":"11938:25:101","nodeType":"YulAssignment","src":"11938:25:101","value":{"arguments":[{"name":"addr_1","nativeSrc":"11950:6:101","nodeType":"YulIdentifier","src":"11950:6:101"},{"kind":"number","nativeSrc":"11958:4:101","nodeType":"YulLiteral","src":"11958:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"11946:3:101","nodeType":"YulIdentifier","src":"11946:3:101"},"nativeSrc":"11946:17:101","nodeType":"YulFunctionCall","src":"11946:17:101"},"variableNames":[{"name":"addr","nativeSrc":"11938:4:101","nodeType":"YulIdentifier","src":"11938:4:101"}]},{"body":{"nativeSrc":"12014:16:101","nodeType":"YulBlock","src":"12014:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12023:1:101","nodeType":"YulLiteral","src":"12023:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"12026:1:101","nodeType":"YulLiteral","src":"12026:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12016:6:101","nodeType":"YulIdentifier","src":"12016:6:101"},"nativeSrc":"12016:12:101","nodeType":"YulFunctionCall","src":"12016:12:101"},"nativeSrc":"12016:12:101","nodeType":"YulExpressionStatement","src":"12016:12:101"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"11979:4:101","nodeType":"YulIdentifier","src":"11979:4:101"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"11989:12:101","nodeType":"YulIdentifier","src":"11989:12:101"},"nativeSrc":"11989:14:101","nodeType":"YulFunctionCall","src":"11989:14:101"},{"name":"length","nativeSrc":"12005:6:101","nodeType":"YulIdentifier","src":"12005:6:101"}],"functionName":{"name":"sub","nativeSrc":"11985:3:101","nodeType":"YulIdentifier","src":"11985:3:101"},"nativeSrc":"11985:27:101","nodeType":"YulFunctionCall","src":"11985:27:101"}],"functionName":{"name":"sgt","nativeSrc":"11975:3:101","nodeType":"YulIdentifier","src":"11975:3:101"},"nativeSrc":"11975:38:101","nodeType":"YulFunctionCall","src":"11975:38:101"},"nativeSrc":"11972:58:101","nodeType":"YulIf","src":"11972:58:101"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"11515:521:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"11566:8:101","nodeType":"YulTypedName","src":"11566:8:101","type":""},{"name":"ptr_to_tail","nativeSrc":"11576:11:101","nodeType":"YulTypedName","src":"11576:11:101","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"11592:4:101","nodeType":"YulTypedName","src":"11592:4:101","type":""},{"name":"length","nativeSrc":"11598:6:101","nodeType":"YulTypedName","src":"11598:6:101","type":""}],"src":"11515:521:101"},{"body":{"nativeSrc":"12149:101:101","nodeType":"YulBlock","src":"12149:101:101","statements":[{"nativeSrc":"12159:26:101","nodeType":"YulAssignment","src":"12159:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12171:9:101","nodeType":"YulIdentifier","src":"12171:9:101"},{"kind":"number","nativeSrc":"12182:2:101","nodeType":"YulLiteral","src":"12182:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12167:3:101","nodeType":"YulIdentifier","src":"12167:3:101"},"nativeSrc":"12167:18:101","nodeType":"YulFunctionCall","src":"12167:18:101"},"variableNames":[{"name":"tail","nativeSrc":"12159:4:101","nodeType":"YulIdentifier","src":"12159:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12201:9:101","nodeType":"YulIdentifier","src":"12201:9:101"},{"arguments":[{"name":"value0","nativeSrc":"12216:6:101","nodeType":"YulIdentifier","src":"12216:6:101"},{"kind":"number","nativeSrc":"12224:18:101","nodeType":"YulLiteral","src":"12224:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"12212:3:101","nodeType":"YulIdentifier","src":"12212:3:101"},"nativeSrc":"12212:31:101","nodeType":"YulFunctionCall","src":"12212:31:101"}],"functionName":{"name":"mstore","nativeSrc":"12194:6:101","nodeType":"YulIdentifier","src":"12194:6:101"},"nativeSrc":"12194:50:101","nodeType":"YulFunctionCall","src":"12194:50:101"},"nativeSrc":"12194:50:101","nodeType":"YulExpressionStatement","src":"12194:50:101"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nativeSrc":"12041:209:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12118:9:101","nodeType":"YulTypedName","src":"12118:9:101","type":""},{"name":"value0","nativeSrc":"12129:6:101","nodeType":"YulTypedName","src":"12129:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12140:4:101","nodeType":"YulTypedName","src":"12140:4:101","type":""}],"src":"12041:209:101"},{"body":{"nativeSrc":"12412:328:101","nodeType":"YulBlock","src":"12412:328:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12429:9:101","nodeType":"YulIdentifier","src":"12429:9:101"},{"arguments":[{"name":"value0","nativeSrc":"12444:6:101","nodeType":"YulIdentifier","src":"12444:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12460:3:101","nodeType":"YulLiteral","src":"12460:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"12465:1:101","nodeType":"YulLiteral","src":"12465:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12456:3:101","nodeType":"YulIdentifier","src":"12456:3:101"},"nativeSrc":"12456:11:101","nodeType":"YulFunctionCall","src":"12456:11:101"},{"kind":"number","nativeSrc":"12469:1:101","nodeType":"YulLiteral","src":"12469:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12452:3:101","nodeType":"YulIdentifier","src":"12452:3:101"},"nativeSrc":"12452:19:101","nodeType":"YulFunctionCall","src":"12452:19:101"}],"functionName":{"name":"and","nativeSrc":"12440:3:101","nodeType":"YulIdentifier","src":"12440:3:101"},"nativeSrc":"12440:32:101","nodeType":"YulFunctionCall","src":"12440:32:101"}],"functionName":{"name":"mstore","nativeSrc":"12422:6:101","nodeType":"YulIdentifier","src":"12422:6:101"},"nativeSrc":"12422:51:101","nodeType":"YulFunctionCall","src":"12422:51:101"},"nativeSrc":"12422:51:101","nodeType":"YulExpressionStatement","src":"12422:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12493:9:101","nodeType":"YulIdentifier","src":"12493:9:101"},{"kind":"number","nativeSrc":"12504:2:101","nodeType":"YulLiteral","src":"12504:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12489:3:101","nodeType":"YulIdentifier","src":"12489:3:101"},"nativeSrc":"12489:18:101","nodeType":"YulFunctionCall","src":"12489:18:101"},{"kind":"number","nativeSrc":"12509:2:101","nodeType":"YulLiteral","src":"12509:2:101","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"12482:6:101","nodeType":"YulIdentifier","src":"12482:6:101"},"nativeSrc":"12482:30:101","nodeType":"YulFunctionCall","src":"12482:30:101"},"nativeSrc":"12482:30:101","nodeType":"YulExpressionStatement","src":"12482:30:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12532:9:101","nodeType":"YulIdentifier","src":"12532:9:101"},{"kind":"number","nativeSrc":"12543:2:101","nodeType":"YulLiteral","src":"12543:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12528:3:101","nodeType":"YulIdentifier","src":"12528:3:101"},"nativeSrc":"12528:18:101","nodeType":"YulFunctionCall","src":"12528:18:101"},{"name":"value2","nativeSrc":"12548:6:101","nodeType":"YulIdentifier","src":"12548:6:101"}],"functionName":{"name":"mstore","nativeSrc":"12521:6:101","nodeType":"YulIdentifier","src":"12521:6:101"},"nativeSrc":"12521:34:101","nodeType":"YulFunctionCall","src":"12521:34:101"},"nativeSrc":"12521:34:101","nodeType":"YulExpressionStatement","src":"12521:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12581:9:101","nodeType":"YulIdentifier","src":"12581:9:101"},{"kind":"number","nativeSrc":"12592:2:101","nodeType":"YulLiteral","src":"12592:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12577:3:101","nodeType":"YulIdentifier","src":"12577:3:101"},"nativeSrc":"12577:18:101","nodeType":"YulFunctionCall","src":"12577:18:101"},{"name":"value1","nativeSrc":"12597:6:101","nodeType":"YulIdentifier","src":"12597:6:101"},{"name":"value2","nativeSrc":"12605:6:101","nodeType":"YulIdentifier","src":"12605:6:101"}],"functionName":{"name":"calldatacopy","nativeSrc":"12564:12:101","nodeType":"YulIdentifier","src":"12564:12:101"},"nativeSrc":"12564:48:101","nodeType":"YulFunctionCall","src":"12564:48:101"},"nativeSrc":"12564:48:101","nodeType":"YulExpressionStatement","src":"12564:48:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12636:9:101","nodeType":"YulIdentifier","src":"12636:9:101"},{"name":"value2","nativeSrc":"12647:6:101","nodeType":"YulIdentifier","src":"12647:6:101"}],"functionName":{"name":"add","nativeSrc":"12632:3:101","nodeType":"YulIdentifier","src":"12632:3:101"},"nativeSrc":"12632:22:101","nodeType":"YulFunctionCall","src":"12632:22:101"},{"kind":"number","nativeSrc":"12656:2:101","nodeType":"YulLiteral","src":"12656:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12628:3:101","nodeType":"YulIdentifier","src":"12628:3:101"},"nativeSrc":"12628:31:101","nodeType":"YulFunctionCall","src":"12628:31:101"},{"kind":"number","nativeSrc":"12661:1:101","nodeType":"YulLiteral","src":"12661:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"12621:6:101","nodeType":"YulIdentifier","src":"12621:6:101"},"nativeSrc":"12621:42:101","nodeType":"YulFunctionCall","src":"12621:42:101"},"nativeSrc":"12621:42:101","nodeType":"YulExpressionStatement","src":"12621:42:101"},{"nativeSrc":"12672:62:101","nodeType":"YulAssignment","src":"12672:62:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12688:9:101","nodeType":"YulIdentifier","src":"12688:9:101"},{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"12707:6:101","nodeType":"YulIdentifier","src":"12707:6:101"},{"kind":"number","nativeSrc":"12715:2:101","nodeType":"YulLiteral","src":"12715:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"12703:3:101","nodeType":"YulIdentifier","src":"12703:3:101"},"nativeSrc":"12703:15:101","nodeType":"YulFunctionCall","src":"12703:15:101"},{"arguments":[{"kind":"number","nativeSrc":"12724:2:101","nodeType":"YulLiteral","src":"12724:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"12720:3:101","nodeType":"YulIdentifier","src":"12720:3:101"},"nativeSrc":"12720:7:101","nodeType":"YulFunctionCall","src":"12720:7:101"}],"functionName":{"name":"and","nativeSrc":"12699:3:101","nodeType":"YulIdentifier","src":"12699:3:101"},"nativeSrc":"12699:29:101","nodeType":"YulFunctionCall","src":"12699:29:101"}],"functionName":{"name":"add","nativeSrc":"12684:3:101","nodeType":"YulIdentifier","src":"12684:3:101"},"nativeSrc":"12684:45:101","nodeType":"YulFunctionCall","src":"12684:45:101"},{"kind":"number","nativeSrc":"12731:2:101","nodeType":"YulLiteral","src":"12731:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12680:3:101","nodeType":"YulIdentifier","src":"12680:3:101"},"nativeSrc":"12680:54:101","nodeType":"YulFunctionCall","src":"12680:54:101"},"variableNames":[{"name":"tail","nativeSrc":"12672:4:101","nodeType":"YulIdentifier","src":"12672:4:101"}]}]},"name":"abi_encode_tuple_t_address_t_bytes_calldata_ptr__to_t_address_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"12255:485:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12365:9:101","nodeType":"YulTypedName","src":"12365:9:101","type":""},{"name":"value2","nativeSrc":"12376:6:101","nodeType":"YulTypedName","src":"12376:6:101","type":""},{"name":"value1","nativeSrc":"12384:6:101","nodeType":"YulTypedName","src":"12384:6:101","type":""},{"name":"value0","nativeSrc":"12392:6:101","nodeType":"YulTypedName","src":"12392:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12403:4:101","nodeType":"YulTypedName","src":"12403:4:101","type":""}],"src":"12255:485:101"},{"body":{"nativeSrc":"12804:77:101","nodeType":"YulBlock","src":"12804:77:101","statements":[{"nativeSrc":"12814:22:101","nodeType":"YulAssignment","src":"12814:22:101","value":{"arguments":[{"name":"offset","nativeSrc":"12829:6:101","nodeType":"YulIdentifier","src":"12829:6:101"}],"functionName":{"name":"mload","nativeSrc":"12823:5:101","nodeType":"YulIdentifier","src":"12823:5:101"},"nativeSrc":"12823:13:101","nodeType":"YulFunctionCall","src":"12823:13:101"},"variableNames":[{"name":"value","nativeSrc":"12814:5:101","nodeType":"YulIdentifier","src":"12814:5:101"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12869:5:101","nodeType":"YulIdentifier","src":"12869:5:101"}],"functionName":{"name":"validator_revert_uint40","nativeSrc":"12845:23:101","nodeType":"YulIdentifier","src":"12845:23:101"},"nativeSrc":"12845:30:101","nodeType":"YulFunctionCall","src":"12845:30:101"},"nativeSrc":"12845:30:101","nodeType":"YulExpressionStatement","src":"12845:30:101"}]},"name":"abi_decode_uint40_fromMemory","nativeSrc":"12745:136:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"12783:6:101","nodeType":"YulTypedName","src":"12783:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"12794:5:101","nodeType":"YulTypedName","src":"12794:5:101","type":""}],"src":"12745:136:101"},{"body":{"nativeSrc":"12964:1371:101","nodeType":"YulBlock","src":"12964:1371:101","statements":[{"body":{"nativeSrc":"13010:16:101","nodeType":"YulBlock","src":"13010:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13019:1:101","nodeType":"YulLiteral","src":"13019:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"13022:1:101","nodeType":"YulLiteral","src":"13022:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13012:6:101","nodeType":"YulIdentifier","src":"13012:6:101"},"nativeSrc":"13012:12:101","nodeType":"YulFunctionCall","src":"13012:12:101"},"nativeSrc":"13012:12:101","nodeType":"YulExpressionStatement","src":"13012:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"12985:3:101","nodeType":"YulIdentifier","src":"12985:3:101"},{"name":"headStart","nativeSrc":"12990:9:101","nodeType":"YulIdentifier","src":"12990:9:101"}],"functionName":{"name":"sub","nativeSrc":"12981:3:101","nodeType":"YulIdentifier","src":"12981:3:101"},"nativeSrc":"12981:19:101","nodeType":"YulFunctionCall","src":"12981:19:101"},{"kind":"number","nativeSrc":"13002:6:101","nodeType":"YulLiteral","src":"13002:6:101","type":"","value":"0x0180"}],"functionName":{"name":"slt","nativeSrc":"12977:3:101","nodeType":"YulIdentifier","src":"12977:3:101"},"nativeSrc":"12977:32:101","nodeType":"YulFunctionCall","src":"12977:32:101"},"nativeSrc":"12974:52:101","nodeType":"YulIf","src":"12974:52:101"},{"nativeSrc":"13035:31:101","nodeType":"YulAssignment","src":"13035:31:101","value":{"arguments":[],"functionName":{"name":"allocate_memory_2373","nativeSrc":"13044:20:101","nodeType":"YulIdentifier","src":"13044:20:101"},"nativeSrc":"13044:22:101","nodeType":"YulFunctionCall","src":"13044:22:101"},"variableNames":[{"name":"value","nativeSrc":"13035:5:101","nodeType":"YulIdentifier","src":"13035:5:101"}]},{"nativeSrc":"13075:16:101","nodeType":"YulVariableDeclaration","src":"13075:16:101","value":{"kind":"number","nativeSrc":"13090:1:101","nodeType":"YulLiteral","src":"13090:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"13079:7:101","nodeType":"YulTypedName","src":"13079:7:101","type":""}]},{"nativeSrc":"13100:27:101","nodeType":"YulAssignment","src":"13100:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"13117:9:101","nodeType":"YulIdentifier","src":"13117:9:101"}],"functionName":{"name":"mload","nativeSrc":"13111:5:101","nodeType":"YulIdentifier","src":"13111:5:101"},"nativeSrc":"13111:16:101","nodeType":"YulFunctionCall","src":"13111:16:101"},"variableNames":[{"name":"value_1","nativeSrc":"13100:7:101","nodeType":"YulIdentifier","src":"13100:7:101"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13143:5:101","nodeType":"YulIdentifier","src":"13143:5:101"},{"name":"value_1","nativeSrc":"13150:7:101","nodeType":"YulIdentifier","src":"13150:7:101"}],"functionName":{"name":"mstore","nativeSrc":"13136:6:101","nodeType":"YulIdentifier","src":"13136:6:101"},"nativeSrc":"13136:22:101","nodeType":"YulFunctionCall","src":"13136:22:101"},"nativeSrc":"13136:22:101","nodeType":"YulExpressionStatement","src":"13136:22:101"},{"nativeSrc":"13167:16:101","nodeType":"YulVariableDeclaration","src":"13167:16:101","value":{"kind":"number","nativeSrc":"13182:1:101","nodeType":"YulLiteral","src":"13182:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"13171:7:101","nodeType":"YulTypedName","src":"13171:7:101","type":""}]},{"nativeSrc":"13192:36:101","nodeType":"YulAssignment","src":"13192:36:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13213:9:101","nodeType":"YulIdentifier","src":"13213:9:101"},{"kind":"number","nativeSrc":"13224:2:101","nodeType":"YulLiteral","src":"13224:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13209:3:101","nodeType":"YulIdentifier","src":"13209:3:101"},"nativeSrc":"13209:18:101","nodeType":"YulFunctionCall","src":"13209:18:101"}],"functionName":{"name":"mload","nativeSrc":"13203:5:101","nodeType":"YulIdentifier","src":"13203:5:101"},"nativeSrc":"13203:25:101","nodeType":"YulFunctionCall","src":"13203:25:101"},"variableNames":[{"name":"value_2","nativeSrc":"13192:7:101","nodeType":"YulIdentifier","src":"13192:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"13248:5:101","nodeType":"YulIdentifier","src":"13248:5:101"},{"kind":"number","nativeSrc":"13255:2:101","nodeType":"YulLiteral","src":"13255:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13244:3:101","nodeType":"YulIdentifier","src":"13244:3:101"},"nativeSrc":"13244:14:101","nodeType":"YulFunctionCall","src":"13244:14:101"},{"name":"value_2","nativeSrc":"13260:7:101","nodeType":"YulIdentifier","src":"13260:7:101"}],"functionName":{"name":"mstore","nativeSrc":"13237:6:101","nodeType":"YulIdentifier","src":"13237:6:101"},"nativeSrc":"13237:31:101","nodeType":"YulFunctionCall","src":"13237:31:101"},"nativeSrc":"13237:31:101","nodeType":"YulExpressionStatement","src":"13237:31:101"},{"nativeSrc":"13277:16:101","nodeType":"YulVariableDeclaration","src":"13277:16:101","value":{"kind":"number","nativeSrc":"13292:1:101","nodeType":"YulLiteral","src":"13292:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"13281:7:101","nodeType":"YulTypedName","src":"13281:7:101","type":""}]},{"nativeSrc":"13302:36:101","nodeType":"YulAssignment","src":"13302:36:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13323:9:101","nodeType":"YulIdentifier","src":"13323:9:101"},{"kind":"number","nativeSrc":"13334:2:101","nodeType":"YulLiteral","src":"13334:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13319:3:101","nodeType":"YulIdentifier","src":"13319:3:101"},"nativeSrc":"13319:18:101","nodeType":"YulFunctionCall","src":"13319:18:101"}],"functionName":{"name":"mload","nativeSrc":"13313:5:101","nodeType":"YulIdentifier","src":"13313:5:101"},"nativeSrc":"13313:25:101","nodeType":"YulFunctionCall","src":"13313:25:101"},"variableNames":[{"name":"value_3","nativeSrc":"13302:7:101","nodeType":"YulIdentifier","src":"13302:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"13358:5:101","nodeType":"YulIdentifier","src":"13358:5:101"},{"kind":"number","nativeSrc":"13365:2:101","nodeType":"YulLiteral","src":"13365:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13354:3:101","nodeType":"YulIdentifier","src":"13354:3:101"},"nativeSrc":"13354:14:101","nodeType":"YulFunctionCall","src":"13354:14:101"},{"name":"value_3","nativeSrc":"13370:7:101","nodeType":"YulIdentifier","src":"13370:7:101"}],"functionName":{"name":"mstore","nativeSrc":"13347:6:101","nodeType":"YulIdentifier","src":"13347:6:101"},"nativeSrc":"13347:31:101","nodeType":"YulFunctionCall","src":"13347:31:101"},"nativeSrc":"13347:31:101","nodeType":"YulExpressionStatement","src":"13347:31:101"},{"nativeSrc":"13387:16:101","nodeType":"YulVariableDeclaration","src":"13387:16:101","value":{"kind":"number","nativeSrc":"13402:1:101","nodeType":"YulLiteral","src":"13402:1:101","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"13391:7:101","nodeType":"YulTypedName","src":"13391:7:101","type":""}]},{"nativeSrc":"13412:36:101","nodeType":"YulAssignment","src":"13412:36:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13433:9:101","nodeType":"YulIdentifier","src":"13433:9:101"},{"kind":"number","nativeSrc":"13444:2:101","nodeType":"YulLiteral","src":"13444:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13429:3:101","nodeType":"YulIdentifier","src":"13429:3:101"},"nativeSrc":"13429:18:101","nodeType":"YulFunctionCall","src":"13429:18:101"}],"functionName":{"name":"mload","nativeSrc":"13423:5:101","nodeType":"YulIdentifier","src":"13423:5:101"},"nativeSrc":"13423:25:101","nodeType":"YulFunctionCall","src":"13423:25:101"},"variableNames":[{"name":"value_4","nativeSrc":"13412:7:101","nodeType":"YulIdentifier","src":"13412:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"13468:5:101","nodeType":"YulIdentifier","src":"13468:5:101"},{"kind":"number","nativeSrc":"13475:2:101","nodeType":"YulLiteral","src":"13475:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13464:3:101","nodeType":"YulIdentifier","src":"13464:3:101"},"nativeSrc":"13464:14:101","nodeType":"YulFunctionCall","src":"13464:14:101"},{"name":"value_4","nativeSrc":"13480:7:101","nodeType":"YulIdentifier","src":"13480:7:101"}],"functionName":{"name":"mstore","nativeSrc":"13457:6:101","nodeType":"YulIdentifier","src":"13457:6:101"},"nativeSrc":"13457:31:101","nodeType":"YulFunctionCall","src":"13457:31:101"},"nativeSrc":"13457:31:101","nodeType":"YulExpressionStatement","src":"13457:31:101"},{"nativeSrc":"13497:16:101","nodeType":"YulVariableDeclaration","src":"13497:16:101","value":{"kind":"number","nativeSrc":"13512:1:101","nodeType":"YulLiteral","src":"13512:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"13501:7:101","nodeType":"YulTypedName","src":"13501:7:101","type":""}]},{"nativeSrc":"13522:37:101","nodeType":"YulAssignment","src":"13522:37:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13543:9:101","nodeType":"YulIdentifier","src":"13543:9:101"},{"kind":"number","nativeSrc":"13554:3:101","nodeType":"YulLiteral","src":"13554:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"13539:3:101","nodeType":"YulIdentifier","src":"13539:3:101"},"nativeSrc":"13539:19:101","nodeType":"YulFunctionCall","src":"13539:19:101"}],"functionName":{"name":"mload","nativeSrc":"13533:5:101","nodeType":"YulIdentifier","src":"13533:5:101"},"nativeSrc":"13533:26:101","nodeType":"YulFunctionCall","src":"13533:26:101"},"variableNames":[{"name":"value_5","nativeSrc":"13522:7:101","nodeType":"YulIdentifier","src":"13522:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"13579:5:101","nodeType":"YulIdentifier","src":"13579:5:101"},{"kind":"number","nativeSrc":"13586:3:101","nodeType":"YulLiteral","src":"13586:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"13575:3:101","nodeType":"YulIdentifier","src":"13575:3:101"},"nativeSrc":"13575:15:101","nodeType":"YulFunctionCall","src":"13575:15:101"},{"name":"value_5","nativeSrc":"13592:7:101","nodeType":"YulIdentifier","src":"13592:7:101"}],"functionName":{"name":"mstore","nativeSrc":"13568:6:101","nodeType":"YulIdentifier","src":"13568:6:101"},"nativeSrc":"13568:32:101","nodeType":"YulFunctionCall","src":"13568:32:101"},"nativeSrc":"13568:32:101","nodeType":"YulExpressionStatement","src":"13568:32:101"},{"nativeSrc":"13609:16:101","nodeType":"YulVariableDeclaration","src":"13609:16:101","value":{"kind":"number","nativeSrc":"13624:1:101","nodeType":"YulLiteral","src":"13624:1:101","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"13613:7:101","nodeType":"YulTypedName","src":"13613:7:101","type":""}]},{"nativeSrc":"13634:37:101","nodeType":"YulAssignment","src":"13634:37:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13655:9:101","nodeType":"YulIdentifier","src":"13655:9:101"},{"kind":"number","nativeSrc":"13666:3:101","nodeType":"YulLiteral","src":"13666:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"13651:3:101","nodeType":"YulIdentifier","src":"13651:3:101"},"nativeSrc":"13651:19:101","nodeType":"YulFunctionCall","src":"13651:19:101"}],"functionName":{"name":"mload","nativeSrc":"13645:5:101","nodeType":"YulIdentifier","src":"13645:5:101"},"nativeSrc":"13645:26:101","nodeType":"YulFunctionCall","src":"13645:26:101"},"variableNames":[{"name":"value_6","nativeSrc":"13634:7:101","nodeType":"YulIdentifier","src":"13634:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"13691:5:101","nodeType":"YulIdentifier","src":"13691:5:101"},{"kind":"number","nativeSrc":"13698:3:101","nodeType":"YulLiteral","src":"13698:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"13687:3:101","nodeType":"YulIdentifier","src":"13687:3:101"},"nativeSrc":"13687:15:101","nodeType":"YulFunctionCall","src":"13687:15:101"},{"name":"value_6","nativeSrc":"13704:7:101","nodeType":"YulIdentifier","src":"13704:7:101"}],"functionName":{"name":"mstore","nativeSrc":"13680:6:101","nodeType":"YulIdentifier","src":"13680:6:101"},"nativeSrc":"13680:32:101","nodeType":"YulFunctionCall","src":"13680:32:101"},"nativeSrc":"13680:32:101","nodeType":"YulExpressionStatement","src":"13680:32:101"},{"nativeSrc":"13721:16:101","nodeType":"YulVariableDeclaration","src":"13721:16:101","value":{"kind":"number","nativeSrc":"13736:1:101","nodeType":"YulLiteral","src":"13736:1:101","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"13725:7:101","nodeType":"YulTypedName","src":"13725:7:101","type":""}]},{"nativeSrc":"13746:37:101","nodeType":"YulAssignment","src":"13746:37:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13767:9:101","nodeType":"YulIdentifier","src":"13767:9:101"},{"kind":"number","nativeSrc":"13778:3:101","nodeType":"YulLiteral","src":"13778:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"13763:3:101","nodeType":"YulIdentifier","src":"13763:3:101"},"nativeSrc":"13763:19:101","nodeType":"YulFunctionCall","src":"13763:19:101"}],"functionName":{"name":"mload","nativeSrc":"13757:5:101","nodeType":"YulIdentifier","src":"13757:5:101"},"nativeSrc":"13757:26:101","nodeType":"YulFunctionCall","src":"13757:26:101"},"variableNames":[{"name":"value_7","nativeSrc":"13746:7:101","nodeType":"YulIdentifier","src":"13746:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"13803:5:101","nodeType":"YulIdentifier","src":"13803:5:101"},{"kind":"number","nativeSrc":"13810:3:101","nodeType":"YulLiteral","src":"13810:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"13799:3:101","nodeType":"YulIdentifier","src":"13799:3:101"},"nativeSrc":"13799:15:101","nodeType":"YulFunctionCall","src":"13799:15:101"},{"name":"value_7","nativeSrc":"13816:7:101","nodeType":"YulIdentifier","src":"13816:7:101"}],"functionName":{"name":"mstore","nativeSrc":"13792:6:101","nodeType":"YulIdentifier","src":"13792:6:101"},"nativeSrc":"13792:32:101","nodeType":"YulFunctionCall","src":"13792:32:101"},"nativeSrc":"13792:32:101","nodeType":"YulExpressionStatement","src":"13792:32:101"},{"nativeSrc":"13833:16:101","nodeType":"YulVariableDeclaration","src":"13833:16:101","value":{"kind":"number","nativeSrc":"13848:1:101","nodeType":"YulLiteral","src":"13848:1:101","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"13837:7:101","nodeType":"YulTypedName","src":"13837:7:101","type":""}]},{"nativeSrc":"13858:37:101","nodeType":"YulAssignment","src":"13858:37:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13879:9:101","nodeType":"YulIdentifier","src":"13879:9:101"},{"kind":"number","nativeSrc":"13890:3:101","nodeType":"YulLiteral","src":"13890:3:101","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"13875:3:101","nodeType":"YulIdentifier","src":"13875:3:101"},"nativeSrc":"13875:19:101","nodeType":"YulFunctionCall","src":"13875:19:101"}],"functionName":{"name":"mload","nativeSrc":"13869:5:101","nodeType":"YulIdentifier","src":"13869:5:101"},"nativeSrc":"13869:26:101","nodeType":"YulFunctionCall","src":"13869:26:101"},"variableNames":[{"name":"value_8","nativeSrc":"13858:7:101","nodeType":"YulIdentifier","src":"13858:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"13915:5:101","nodeType":"YulIdentifier","src":"13915:5:101"},{"kind":"number","nativeSrc":"13922:3:101","nodeType":"YulLiteral","src":"13922:3:101","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"13911:3:101","nodeType":"YulIdentifier","src":"13911:3:101"},"nativeSrc":"13911:15:101","nodeType":"YulFunctionCall","src":"13911:15:101"},{"name":"value_8","nativeSrc":"13928:7:101","nodeType":"YulIdentifier","src":"13928:7:101"}],"functionName":{"name":"mstore","nativeSrc":"13904:6:101","nodeType":"YulIdentifier","src":"13904:6:101"},"nativeSrc":"13904:32:101","nodeType":"YulFunctionCall","src":"13904:32:101"},"nativeSrc":"13904:32:101","nodeType":"YulExpressionStatement","src":"13904:32:101"},{"nativeSrc":"13945:16:101","nodeType":"YulVariableDeclaration","src":"13945:16:101","value":{"kind":"number","nativeSrc":"13960:1:101","nodeType":"YulLiteral","src":"13960:1:101","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"13949:7:101","nodeType":"YulTypedName","src":"13949:7:101","type":""}]},{"nativeSrc":"13970:37:101","nodeType":"YulAssignment","src":"13970:37:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13991:9:101","nodeType":"YulIdentifier","src":"13991:9:101"},{"kind":"number","nativeSrc":"14002:3:101","nodeType":"YulLiteral","src":"14002:3:101","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"13987:3:101","nodeType":"YulIdentifier","src":"13987:3:101"},"nativeSrc":"13987:19:101","nodeType":"YulFunctionCall","src":"13987:19:101"}],"functionName":{"name":"mload","nativeSrc":"13981:5:101","nodeType":"YulIdentifier","src":"13981:5:101"},"nativeSrc":"13981:26:101","nodeType":"YulFunctionCall","src":"13981:26:101"},"variableNames":[{"name":"value_9","nativeSrc":"13970:7:101","nodeType":"YulIdentifier","src":"13970:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"14027:5:101","nodeType":"YulIdentifier","src":"14027:5:101"},{"kind":"number","nativeSrc":"14034:3:101","nodeType":"YulLiteral","src":"14034:3:101","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"14023:3:101","nodeType":"YulIdentifier","src":"14023:3:101"},"nativeSrc":"14023:15:101","nodeType":"YulFunctionCall","src":"14023:15:101"},{"name":"value_9","nativeSrc":"14040:7:101","nodeType":"YulIdentifier","src":"14040:7:101"}],"functionName":{"name":"mstore","nativeSrc":"14016:6:101","nodeType":"YulIdentifier","src":"14016:6:101"},"nativeSrc":"14016:32:101","nodeType":"YulFunctionCall","src":"14016:32:101"},"nativeSrc":"14016:32:101","nodeType":"YulExpressionStatement","src":"14016:32:101"},{"nativeSrc":"14057:17:101","nodeType":"YulVariableDeclaration","src":"14057:17:101","value":{"kind":"number","nativeSrc":"14073:1:101","nodeType":"YulLiteral","src":"14073:1:101","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"14061:8:101","nodeType":"YulTypedName","src":"14061:8:101","type":""}]},{"nativeSrc":"14083:38:101","nodeType":"YulAssignment","src":"14083:38:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14105:9:101","nodeType":"YulIdentifier","src":"14105:9:101"},{"kind":"number","nativeSrc":"14116:3:101","nodeType":"YulLiteral","src":"14116:3:101","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"14101:3:101","nodeType":"YulIdentifier","src":"14101:3:101"},"nativeSrc":"14101:19:101","nodeType":"YulFunctionCall","src":"14101:19:101"}],"functionName":{"name":"mload","nativeSrc":"14095:5:101","nodeType":"YulIdentifier","src":"14095:5:101"},"nativeSrc":"14095:26:101","nodeType":"YulFunctionCall","src":"14095:26:101"},"variableNames":[{"name":"value_10","nativeSrc":"14083:8:101","nodeType":"YulIdentifier","src":"14083:8:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"14141:5:101","nodeType":"YulIdentifier","src":"14141:5:101"},{"kind":"number","nativeSrc":"14148:3:101","nodeType":"YulLiteral","src":"14148:3:101","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"14137:3:101","nodeType":"YulIdentifier","src":"14137:3:101"},"nativeSrc":"14137:15:101","nodeType":"YulFunctionCall","src":"14137:15:101"},{"name":"value_10","nativeSrc":"14154:8:101","nodeType":"YulIdentifier","src":"14154:8:101"}],"functionName":{"name":"mstore","nativeSrc":"14130:6:101","nodeType":"YulIdentifier","src":"14130:6:101"},"nativeSrc":"14130:33:101","nodeType":"YulFunctionCall","src":"14130:33:101"},"nativeSrc":"14130:33:101","nodeType":"YulExpressionStatement","src":"14130:33:101"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"14183:5:101","nodeType":"YulIdentifier","src":"14183:5:101"},{"kind":"number","nativeSrc":"14190:3:101","nodeType":"YulLiteral","src":"14190:3:101","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"14179:3:101","nodeType":"YulIdentifier","src":"14179:3:101"},"nativeSrc":"14179:15:101","nodeType":"YulFunctionCall","src":"14179:15:101"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14229:9:101","nodeType":"YulIdentifier","src":"14229:9:101"},{"kind":"number","nativeSrc":"14240:3:101","nodeType":"YulLiteral","src":"14240:3:101","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"14225:3:101","nodeType":"YulIdentifier","src":"14225:3:101"},"nativeSrc":"14225:19:101","nodeType":"YulFunctionCall","src":"14225:19:101"}],"functionName":{"name":"abi_decode_uint40_fromMemory","nativeSrc":"14196:28:101","nodeType":"YulIdentifier","src":"14196:28:101"},"nativeSrc":"14196:49:101","nodeType":"YulFunctionCall","src":"14196:49:101"}],"functionName":{"name":"mstore","nativeSrc":"14172:6:101","nodeType":"YulIdentifier","src":"14172:6:101"},"nativeSrc":"14172:74:101","nodeType":"YulFunctionCall","src":"14172:74:101"},"nativeSrc":"14172:74:101","nodeType":"YulExpressionStatement","src":"14172:74:101"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"14266:5:101","nodeType":"YulIdentifier","src":"14266:5:101"},{"kind":"number","nativeSrc":"14273:3:101","nodeType":"YulLiteral","src":"14273:3:101","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"14262:3:101","nodeType":"YulIdentifier","src":"14262:3:101"},"nativeSrc":"14262:15:101","nodeType":"YulFunctionCall","src":"14262:15:101"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14312:9:101","nodeType":"YulIdentifier","src":"14312:9:101"},{"kind":"number","nativeSrc":"14323:3:101","nodeType":"YulLiteral","src":"14323:3:101","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"14308:3:101","nodeType":"YulIdentifier","src":"14308:3:101"},"nativeSrc":"14308:19:101","nodeType":"YulFunctionCall","src":"14308:19:101"}],"functionName":{"name":"abi_decode_uint40_fromMemory","nativeSrc":"14279:28:101","nodeType":"YulIdentifier","src":"14279:28:101"},"nativeSrc":"14279:49:101","nodeType":"YulFunctionCall","src":"14279:49:101"}],"functionName":{"name":"mstore","nativeSrc":"14255:6:101","nodeType":"YulIdentifier","src":"14255:6:101"},"nativeSrc":"14255:74:101","nodeType":"YulFunctionCall","src":"14255:74:101"},"nativeSrc":"14255:74:101","nodeType":"YulExpressionStatement","src":"14255:74:101"}]},"name":"abi_decode_struct_PolicyData_fromMemory","nativeSrc":"12886:1449:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12935:9:101","nodeType":"YulTypedName","src":"12935:9:101","type":""},{"name":"end","nativeSrc":"12946:3:101","nodeType":"YulTypedName","src":"12946:3:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"12954:5:101","nodeType":"YulTypedName","src":"12954:5:101","type":""}],"src":"12886:1449:101"},{"body":{"nativeSrc":"14399:124:101","nodeType":"YulBlock","src":"14399:124:101","statements":[{"nativeSrc":"14409:22:101","nodeType":"YulAssignment","src":"14409:22:101","value":{"arguments":[{"name":"offset","nativeSrc":"14424:6:101","nodeType":"YulIdentifier","src":"14424:6:101"}],"functionName":{"name":"mload","nativeSrc":"14418:5:101","nodeType":"YulIdentifier","src":"14418:5:101"},"nativeSrc":"14418:13:101","nodeType":"YulFunctionCall","src":"14418:13:101"},"variableNames":[{"name":"value","nativeSrc":"14409:5:101","nodeType":"YulIdentifier","src":"14409:5:101"}]},{"body":{"nativeSrc":"14501:16:101","nodeType":"YulBlock","src":"14501:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14510:1:101","nodeType":"YulLiteral","src":"14510:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"14513:1:101","nodeType":"YulLiteral","src":"14513:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14503:6:101","nodeType":"YulIdentifier","src":"14503:6:101"},"nativeSrc":"14503:12:101","nodeType":"YulFunctionCall","src":"14503:12:101"},"nativeSrc":"14503:12:101","nodeType":"YulExpressionStatement","src":"14503:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"14453:5:101","nodeType":"YulIdentifier","src":"14453:5:101"},{"arguments":[{"name":"value","nativeSrc":"14464:5:101","nodeType":"YulIdentifier","src":"14464:5:101"},{"kind":"number","nativeSrc":"14471:26:101","nodeType":"YulLiteral","src":"14471:26:101","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"14460:3:101","nodeType":"YulIdentifier","src":"14460:3:101"},"nativeSrc":"14460:38:101","nodeType":"YulFunctionCall","src":"14460:38:101"}],"functionName":{"name":"eq","nativeSrc":"14450:2:101","nodeType":"YulIdentifier","src":"14450:2:101"},"nativeSrc":"14450:49:101","nodeType":"YulFunctionCall","src":"14450:49:101"}],"functionName":{"name":"iszero","nativeSrc":"14443:6:101","nodeType":"YulIdentifier","src":"14443:6:101"},"nativeSrc":"14443:57:101","nodeType":"YulFunctionCall","src":"14443:57:101"},"nativeSrc":"14440:77:101","nodeType":"YulIf","src":"14440:77:101"}]},"name":"abi_decode_uint96_fromMemory","nativeSrc":"14340:183:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"14378:6:101","nodeType":"YulTypedName","src":"14378:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"14389:5:101","nodeType":"YulTypedName","src":"14389:5:101","type":""}],"src":"14340:183:101"},{"body":{"nativeSrc":"14602:864:101","nodeType":"YulBlock","src":"14602:864:101","statements":[{"body":{"nativeSrc":"14646:16:101","nodeType":"YulBlock","src":"14646:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14655:1:101","nodeType":"YulLiteral","src":"14655:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"14658:1:101","nodeType":"YulLiteral","src":"14658:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14648:6:101","nodeType":"YulIdentifier","src":"14648:6:101"},"nativeSrc":"14648:12:101","nodeType":"YulFunctionCall","src":"14648:12:101"},"nativeSrc":"14648:12:101","nodeType":"YulExpressionStatement","src":"14648:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"14623:3:101","nodeType":"YulIdentifier","src":"14623:3:101"},{"name":"headStart","nativeSrc":"14628:9:101","nodeType":"YulIdentifier","src":"14628:9:101"}],"functionName":{"name":"sub","nativeSrc":"14619:3:101","nodeType":"YulIdentifier","src":"14619:3:101"},"nativeSrc":"14619:19:101","nodeType":"YulFunctionCall","src":"14619:19:101"},{"kind":"number","nativeSrc":"14640:4:101","nodeType":"YulLiteral","src":"14640:4:101","type":"","value":"0xe0"}],"functionName":{"name":"slt","nativeSrc":"14615:3:101","nodeType":"YulIdentifier","src":"14615:3:101"},"nativeSrc":"14615:30:101","nodeType":"YulFunctionCall","src":"14615:30:101"},"nativeSrc":"14612:50:101","nodeType":"YulIf","src":"14612:50:101"},{"nativeSrc":"14671:31:101","nodeType":"YulAssignment","src":"14671:31:101","value":{"arguments":[],"functionName":{"name":"allocate_memory_2372","nativeSrc":"14680:20:101","nodeType":"YulIdentifier","src":"14680:20:101"},"nativeSrc":"14680:22:101","nodeType":"YulFunctionCall","src":"14680:22:101"},"variableNames":[{"name":"value","nativeSrc":"14671:5:101","nodeType":"YulIdentifier","src":"14671:5:101"}]},{"nativeSrc":"14711:16:101","nodeType":"YulVariableDeclaration","src":"14711:16:101","value":{"kind":"number","nativeSrc":"14726:1:101","nodeType":"YulLiteral","src":"14726:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"14715:7:101","nodeType":"YulTypedName","src":"14715:7:101","type":""}]},{"nativeSrc":"14736:27:101","nodeType":"YulAssignment","src":"14736:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"14753:9:101","nodeType":"YulIdentifier","src":"14753:9:101"}],"functionName":{"name":"mload","nativeSrc":"14747:5:101","nodeType":"YulIdentifier","src":"14747:5:101"},"nativeSrc":"14747:16:101","nodeType":"YulFunctionCall","src":"14747:16:101"},"variableNames":[{"name":"value_1","nativeSrc":"14736:7:101","nodeType":"YulIdentifier","src":"14736:7:101"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"14779:5:101","nodeType":"YulIdentifier","src":"14779:5:101"},{"name":"value_1","nativeSrc":"14786:7:101","nodeType":"YulIdentifier","src":"14786:7:101"}],"functionName":{"name":"mstore","nativeSrc":"14772:6:101","nodeType":"YulIdentifier","src":"14772:6:101"},"nativeSrc":"14772:22:101","nodeType":"YulFunctionCall","src":"14772:22:101"},"nativeSrc":"14772:22:101","nodeType":"YulExpressionStatement","src":"14772:22:101"},{"nativeSrc":"14803:16:101","nodeType":"YulVariableDeclaration","src":"14803:16:101","value":{"kind":"number","nativeSrc":"14818:1:101","nodeType":"YulLiteral","src":"14818:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"14807:7:101","nodeType":"YulTypedName","src":"14807:7:101","type":""}]},{"nativeSrc":"14828:36:101","nodeType":"YulAssignment","src":"14828:36:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14849:9:101","nodeType":"YulIdentifier","src":"14849:9:101"},{"kind":"number","nativeSrc":"14860:2:101","nodeType":"YulLiteral","src":"14860:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14845:3:101","nodeType":"YulIdentifier","src":"14845:3:101"},"nativeSrc":"14845:18:101","nodeType":"YulFunctionCall","src":"14845:18:101"}],"functionName":{"name":"mload","nativeSrc":"14839:5:101","nodeType":"YulIdentifier","src":"14839:5:101"},"nativeSrc":"14839:25:101","nodeType":"YulFunctionCall","src":"14839:25:101"},"variableNames":[{"name":"value_2","nativeSrc":"14828:7:101","nodeType":"YulIdentifier","src":"14828:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"14884:5:101","nodeType":"YulIdentifier","src":"14884:5:101"},{"kind":"number","nativeSrc":"14891:2:101","nodeType":"YulLiteral","src":"14891:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14880:3:101","nodeType":"YulIdentifier","src":"14880:3:101"},"nativeSrc":"14880:14:101","nodeType":"YulFunctionCall","src":"14880:14:101"},{"name":"value_2","nativeSrc":"14896:7:101","nodeType":"YulIdentifier","src":"14896:7:101"}],"functionName":{"name":"mstore","nativeSrc":"14873:6:101","nodeType":"YulIdentifier","src":"14873:6:101"},"nativeSrc":"14873:31:101","nodeType":"YulFunctionCall","src":"14873:31:101"},"nativeSrc":"14873:31:101","nodeType":"YulExpressionStatement","src":"14873:31:101"},{"nativeSrc":"14913:16:101","nodeType":"YulVariableDeclaration","src":"14913:16:101","value":{"kind":"number","nativeSrc":"14928:1:101","nodeType":"YulLiteral","src":"14928:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"14917:7:101","nodeType":"YulTypedName","src":"14917:7:101","type":""}]},{"nativeSrc":"14938:36:101","nodeType":"YulAssignment","src":"14938:36:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14959:9:101","nodeType":"YulIdentifier","src":"14959:9:101"},{"kind":"number","nativeSrc":"14970:2:101","nodeType":"YulLiteral","src":"14970:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14955:3:101","nodeType":"YulIdentifier","src":"14955:3:101"},"nativeSrc":"14955:18:101","nodeType":"YulFunctionCall","src":"14955:18:101"}],"functionName":{"name":"mload","nativeSrc":"14949:5:101","nodeType":"YulIdentifier","src":"14949:5:101"},"nativeSrc":"14949:25:101","nodeType":"YulFunctionCall","src":"14949:25:101"},"variableNames":[{"name":"value_3","nativeSrc":"14938:7:101","nodeType":"YulIdentifier","src":"14938:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"14994:5:101","nodeType":"YulIdentifier","src":"14994:5:101"},{"kind":"number","nativeSrc":"15001:2:101","nodeType":"YulLiteral","src":"15001:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14990:3:101","nodeType":"YulIdentifier","src":"14990:3:101"},"nativeSrc":"14990:14:101","nodeType":"YulFunctionCall","src":"14990:14:101"},{"name":"value_3","nativeSrc":"15006:7:101","nodeType":"YulIdentifier","src":"15006:7:101"}],"functionName":{"name":"mstore","nativeSrc":"14983:6:101","nodeType":"YulIdentifier","src":"14983:6:101"},"nativeSrc":"14983:31:101","nodeType":"YulFunctionCall","src":"14983:31:101"},"nativeSrc":"14983:31:101","nodeType":"YulExpressionStatement","src":"14983:31:101"},{"nativeSrc":"15023:16:101","nodeType":"YulVariableDeclaration","src":"15023:16:101","value":{"kind":"number","nativeSrc":"15038:1:101","nodeType":"YulLiteral","src":"15038:1:101","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"15027:7:101","nodeType":"YulTypedName","src":"15027:7:101","type":""}]},{"nativeSrc":"15048:36:101","nodeType":"YulAssignment","src":"15048:36:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15069:9:101","nodeType":"YulIdentifier","src":"15069:9:101"},{"kind":"number","nativeSrc":"15080:2:101","nodeType":"YulLiteral","src":"15080:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15065:3:101","nodeType":"YulIdentifier","src":"15065:3:101"},"nativeSrc":"15065:18:101","nodeType":"YulFunctionCall","src":"15065:18:101"}],"functionName":{"name":"mload","nativeSrc":"15059:5:101","nodeType":"YulIdentifier","src":"15059:5:101"},"nativeSrc":"15059:25:101","nodeType":"YulFunctionCall","src":"15059:25:101"},"variableNames":[{"name":"value_4","nativeSrc":"15048:7:101","nodeType":"YulIdentifier","src":"15048:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"15104:5:101","nodeType":"YulIdentifier","src":"15104:5:101"},{"kind":"number","nativeSrc":"15111:2:101","nodeType":"YulLiteral","src":"15111:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15100:3:101","nodeType":"YulIdentifier","src":"15100:3:101"},"nativeSrc":"15100:14:101","nodeType":"YulFunctionCall","src":"15100:14:101"},{"name":"value_4","nativeSrc":"15116:7:101","nodeType":"YulIdentifier","src":"15116:7:101"}],"functionName":{"name":"mstore","nativeSrc":"15093:6:101","nodeType":"YulIdentifier","src":"15093:6:101"},"nativeSrc":"15093:31:101","nodeType":"YulFunctionCall","src":"15093:31:101"},"nativeSrc":"15093:31:101","nodeType":"YulExpressionStatement","src":"15093:31:101"},{"nativeSrc":"15133:16:101","nodeType":"YulVariableDeclaration","src":"15133:16:101","value":{"kind":"number","nativeSrc":"15148:1:101","nodeType":"YulLiteral","src":"15148:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"15137:7:101","nodeType":"YulTypedName","src":"15137:7:101","type":""}]},{"nativeSrc":"15158:37:101","nodeType":"YulAssignment","src":"15158:37:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15179:9:101","nodeType":"YulIdentifier","src":"15179:9:101"},{"kind":"number","nativeSrc":"15190:3:101","nodeType":"YulLiteral","src":"15190:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"15175:3:101","nodeType":"YulIdentifier","src":"15175:3:101"},"nativeSrc":"15175:19:101","nodeType":"YulFunctionCall","src":"15175:19:101"}],"functionName":{"name":"mload","nativeSrc":"15169:5:101","nodeType":"YulIdentifier","src":"15169:5:101"},"nativeSrc":"15169:26:101","nodeType":"YulFunctionCall","src":"15169:26:101"},"variableNames":[{"name":"value_5","nativeSrc":"15158:7:101","nodeType":"YulIdentifier","src":"15158:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"15215:5:101","nodeType":"YulIdentifier","src":"15215:5:101"},{"kind":"number","nativeSrc":"15222:3:101","nodeType":"YulLiteral","src":"15222:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"15211:3:101","nodeType":"YulIdentifier","src":"15211:3:101"},"nativeSrc":"15211:15:101","nodeType":"YulFunctionCall","src":"15211:15:101"},{"name":"value_5","nativeSrc":"15228:7:101","nodeType":"YulIdentifier","src":"15228:7:101"}],"functionName":{"name":"mstore","nativeSrc":"15204:6:101","nodeType":"YulIdentifier","src":"15204:6:101"},"nativeSrc":"15204:32:101","nodeType":"YulFunctionCall","src":"15204:32:101"},"nativeSrc":"15204:32:101","nodeType":"YulExpressionStatement","src":"15204:32:101"},{"nativeSrc":"15245:16:101","nodeType":"YulVariableDeclaration","src":"15245:16:101","value":{"kind":"number","nativeSrc":"15260:1:101","nodeType":"YulLiteral","src":"15260:1:101","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"15249:7:101","nodeType":"YulTypedName","src":"15249:7:101","type":""}]},{"nativeSrc":"15270:37:101","nodeType":"YulAssignment","src":"15270:37:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15291:9:101","nodeType":"YulIdentifier","src":"15291:9:101"},{"kind":"number","nativeSrc":"15302:3:101","nodeType":"YulLiteral","src":"15302:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"15287:3:101","nodeType":"YulIdentifier","src":"15287:3:101"},"nativeSrc":"15287:19:101","nodeType":"YulFunctionCall","src":"15287:19:101"}],"functionName":{"name":"mload","nativeSrc":"15281:5:101","nodeType":"YulIdentifier","src":"15281:5:101"},"nativeSrc":"15281:26:101","nodeType":"YulFunctionCall","src":"15281:26:101"},"variableNames":[{"name":"value_6","nativeSrc":"15270:7:101","nodeType":"YulIdentifier","src":"15270:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"15327:5:101","nodeType":"YulIdentifier","src":"15327:5:101"},{"kind":"number","nativeSrc":"15334:3:101","nodeType":"YulLiteral","src":"15334:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"15323:3:101","nodeType":"YulIdentifier","src":"15323:3:101"},"nativeSrc":"15323:15:101","nodeType":"YulFunctionCall","src":"15323:15:101"},{"name":"value_6","nativeSrc":"15340:7:101","nodeType":"YulIdentifier","src":"15340:7:101"}],"functionName":{"name":"mstore","nativeSrc":"15316:6:101","nodeType":"YulIdentifier","src":"15316:6:101"},"nativeSrc":"15316:32:101","nodeType":"YulFunctionCall","src":"15316:32:101"},"nativeSrc":"15316:32:101","nodeType":"YulExpressionStatement","src":"15316:32:101"},{"nativeSrc":"15357:16:101","nodeType":"YulVariableDeclaration","src":"15357:16:101","value":{"kind":"number","nativeSrc":"15372:1:101","nodeType":"YulLiteral","src":"15372:1:101","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"15361:7:101","nodeType":"YulTypedName","src":"15361:7:101","type":""}]},{"nativeSrc":"15382:37:101","nodeType":"YulAssignment","src":"15382:37:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15403:9:101","nodeType":"YulIdentifier","src":"15403:9:101"},{"kind":"number","nativeSrc":"15414:3:101","nodeType":"YulLiteral","src":"15414:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"15399:3:101","nodeType":"YulIdentifier","src":"15399:3:101"},"nativeSrc":"15399:19:101","nodeType":"YulFunctionCall","src":"15399:19:101"}],"functionName":{"name":"mload","nativeSrc":"15393:5:101","nodeType":"YulIdentifier","src":"15393:5:101"},"nativeSrc":"15393:26:101","nodeType":"YulFunctionCall","src":"15393:26:101"},"variableNames":[{"name":"value_7","nativeSrc":"15382:7:101","nodeType":"YulIdentifier","src":"15382:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"15439:5:101","nodeType":"YulIdentifier","src":"15439:5:101"},{"kind":"number","nativeSrc":"15446:3:101","nodeType":"YulLiteral","src":"15446:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"15435:3:101","nodeType":"YulIdentifier","src":"15435:3:101"},"nativeSrc":"15435:15:101","nodeType":"YulFunctionCall","src":"15435:15:101"},{"name":"value_7","nativeSrc":"15452:7:101","nodeType":"YulIdentifier","src":"15452:7:101"}],"functionName":{"name":"mstore","nativeSrc":"15428:6:101","nodeType":"YulIdentifier","src":"15428:6:101"},"nativeSrc":"15428:32:101","nodeType":"YulFunctionCall","src":"15428:32:101"},"nativeSrc":"15428:32:101","nodeType":"YulExpressionStatement","src":"15428:32:101"}]},"name":"abi_decode_struct_Params_fromMemory","nativeSrc":"14528:938:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14573:9:101","nodeType":"YulTypedName","src":"14573:9:101","type":""},{"name":"end","nativeSrc":"14584:3:101","nodeType":"YulTypedName","src":"14584:3:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"14592:5:101","nodeType":"YulTypedName","src":"14592:5:101","type":""}],"src":"14528:938:101"},{"body":{"nativeSrc":"15706:701:101","nodeType":"YulBlock","src":"15706:701:101","statements":[{"body":{"nativeSrc":"15753:16:101","nodeType":"YulBlock","src":"15753:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15762:1:101","nodeType":"YulLiteral","src":"15762:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"15765:1:101","nodeType":"YulLiteral","src":"15765:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15755:6:101","nodeType":"YulIdentifier","src":"15755:6:101"},"nativeSrc":"15755:12:101","nodeType":"YulFunctionCall","src":"15755:12:101"},"nativeSrc":"15755:12:101","nodeType":"YulExpressionStatement","src":"15755:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15727:7:101","nodeType":"YulIdentifier","src":"15727:7:101"},{"name":"headStart","nativeSrc":"15736:9:101","nodeType":"YulIdentifier","src":"15736:9:101"}],"functionName":{"name":"sub","nativeSrc":"15723:3:101","nodeType":"YulIdentifier","src":"15723:3:101"},"nativeSrc":"15723:23:101","nodeType":"YulFunctionCall","src":"15723:23:101"},{"kind":"number","nativeSrc":"15748:3:101","nodeType":"YulLiteral","src":"15748:3:101","type":"","value":"768"}],"functionName":{"name":"slt","nativeSrc":"15719:3:101","nodeType":"YulIdentifier","src":"15719:3:101"},"nativeSrc":"15719:33:101","nodeType":"YulFunctionCall","src":"15719:33:101"},"nativeSrc":"15716:53:101","nodeType":"YulIf","src":"15716:53:101"},{"nativeSrc":"15778:69:101","nodeType":"YulAssignment","src":"15778:69:101","value":{"arguments":[{"name":"headStart","nativeSrc":"15828:9:101","nodeType":"YulIdentifier","src":"15828:9:101"},{"name":"dataEnd","nativeSrc":"15839:7:101","nodeType":"YulIdentifier","src":"15839:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData_fromMemory","nativeSrc":"15788:39:101","nodeType":"YulIdentifier","src":"15788:39:101"},"nativeSrc":"15788:59:101","nodeType":"YulFunctionCall","src":"15788:59:101"},"variableNames":[{"name":"value0","nativeSrc":"15778:6:101","nodeType":"YulIdentifier","src":"15778:6:101"}]},{"nativeSrc":"15856:14:101","nodeType":"YulVariableDeclaration","src":"15856:14:101","value":{"kind":"number","nativeSrc":"15869:1:101","nodeType":"YulLiteral","src":"15869:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"15860:5:101","nodeType":"YulTypedName","src":"15860:5:101","type":""}]},{"nativeSrc":"15879:35:101","nodeType":"YulAssignment","src":"15879:35:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15898:9:101","nodeType":"YulIdentifier","src":"15898:9:101"},{"kind":"number","nativeSrc":"15909:3:101","nodeType":"YulLiteral","src":"15909:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"15894:3:101","nodeType":"YulIdentifier","src":"15894:3:101"},"nativeSrc":"15894:19:101","nodeType":"YulFunctionCall","src":"15894:19:101"}],"functionName":{"name":"mload","nativeSrc":"15888:5:101","nodeType":"YulIdentifier","src":"15888:5:101"},"nativeSrc":"15888:26:101","nodeType":"YulFunctionCall","src":"15888:26:101"},"variableNames":[{"name":"value","nativeSrc":"15879:5:101","nodeType":"YulIdentifier","src":"15879:5:101"}]},{"nativeSrc":"15923:15:101","nodeType":"YulAssignment","src":"15923:15:101","value":{"name":"value","nativeSrc":"15933:5:101","nodeType":"YulIdentifier","src":"15933:5:101"},"variableNames":[{"name":"value1","nativeSrc":"15923:6:101","nodeType":"YulIdentifier","src":"15923:6:101"}]},{"nativeSrc":"15947:16:101","nodeType":"YulVariableDeclaration","src":"15947:16:101","value":{"kind":"number","nativeSrc":"15962:1:101","nodeType":"YulLiteral","src":"15962:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"15951:7:101","nodeType":"YulTypedName","src":"15951:7:101","type":""}]},{"nativeSrc":"15972:37:101","nodeType":"YulAssignment","src":"15972:37:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15993:9:101","nodeType":"YulIdentifier","src":"15993:9:101"},{"kind":"number","nativeSrc":"16004:3:101","nodeType":"YulLiteral","src":"16004:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"15989:3:101","nodeType":"YulIdentifier","src":"15989:3:101"},"nativeSrc":"15989:19:101","nodeType":"YulFunctionCall","src":"15989:19:101"}],"functionName":{"name":"mload","nativeSrc":"15983:5:101","nodeType":"YulIdentifier","src":"15983:5:101"},"nativeSrc":"15983:26:101","nodeType":"YulFunctionCall","src":"15983:26:101"},"variableNames":[{"name":"value_1","nativeSrc":"15972:7:101","nodeType":"YulIdentifier","src":"15972:7:101"}]},{"nativeSrc":"16018:17:101","nodeType":"YulAssignment","src":"16018:17:101","value":{"name":"value_1","nativeSrc":"16028:7:101","nodeType":"YulIdentifier","src":"16028:7:101"},"variableNames":[{"name":"value2","nativeSrc":"16018:6:101","nodeType":"YulIdentifier","src":"16018:6:101"}]},{"nativeSrc":"16044:16:101","nodeType":"YulVariableDeclaration","src":"16044:16:101","value":{"kind":"number","nativeSrc":"16059:1:101","nodeType":"YulLiteral","src":"16059:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"16048:7:101","nodeType":"YulTypedName","src":"16048:7:101","type":""}]},{"nativeSrc":"16069:37:101","nodeType":"YulAssignment","src":"16069:37:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16090:9:101","nodeType":"YulIdentifier","src":"16090:9:101"},{"kind":"number","nativeSrc":"16101:3:101","nodeType":"YulLiteral","src":"16101:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"16086:3:101","nodeType":"YulIdentifier","src":"16086:3:101"},"nativeSrc":"16086:19:101","nodeType":"YulFunctionCall","src":"16086:19:101"}],"functionName":{"name":"mload","nativeSrc":"16080:5:101","nodeType":"YulIdentifier","src":"16080:5:101"},"nativeSrc":"16080:26:101","nodeType":"YulFunctionCall","src":"16080:26:101"},"variableNames":[{"name":"value_2","nativeSrc":"16069:7:101","nodeType":"YulIdentifier","src":"16069:7:101"}]},{"nativeSrc":"16115:17:101","nodeType":"YulAssignment","src":"16115:17:101","value":{"name":"value_2","nativeSrc":"16125:7:101","nodeType":"YulIdentifier","src":"16125:7:101"},"variableNames":[{"name":"value3","nativeSrc":"16115:6:101","nodeType":"YulIdentifier","src":"16115:6:101"}]},{"nativeSrc":"16141:41:101","nodeType":"YulVariableDeclaration","src":"16141:41:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16166:9:101","nodeType":"YulIdentifier","src":"16166:9:101"},{"kind":"number","nativeSrc":"16177:3:101","nodeType":"YulLiteral","src":"16177:3:101","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"16162:3:101","nodeType":"YulIdentifier","src":"16162:3:101"},"nativeSrc":"16162:19:101","nodeType":"YulFunctionCall","src":"16162:19:101"}],"functionName":{"name":"mload","nativeSrc":"16156:5:101","nodeType":"YulIdentifier","src":"16156:5:101"},"nativeSrc":"16156:26:101","nodeType":"YulFunctionCall","src":"16156:26:101"},"variables":[{"name":"value_3","nativeSrc":"16145:7:101","nodeType":"YulTypedName","src":"16145:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"16215:7:101","nodeType":"YulIdentifier","src":"16215:7:101"}],"functionName":{"name":"validator_revert_uint40","nativeSrc":"16191:23:101","nodeType":"YulIdentifier","src":"16191:23:101"},"nativeSrc":"16191:32:101","nodeType":"YulFunctionCall","src":"16191:32:101"},"nativeSrc":"16191:32:101","nodeType":"YulExpressionStatement","src":"16191:32:101"},{"nativeSrc":"16232:17:101","nodeType":"YulAssignment","src":"16232:17:101","value":{"name":"value_3","nativeSrc":"16242:7:101","nodeType":"YulIdentifier","src":"16242:7:101"},"variableNames":[{"name":"value4","nativeSrc":"16232:6:101","nodeType":"YulIdentifier","src":"16232:6:101"}]},{"nativeSrc":"16258:59:101","nodeType":"YulAssignment","src":"16258:59:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16301:9:101","nodeType":"YulIdentifier","src":"16301:9:101"},{"kind":"number","nativeSrc":"16312:3:101","nodeType":"YulLiteral","src":"16312:3:101","type":"","value":"512"}],"functionName":{"name":"add","nativeSrc":"16297:3:101","nodeType":"YulIdentifier","src":"16297:3:101"},"nativeSrc":"16297:19:101","nodeType":"YulFunctionCall","src":"16297:19:101"}],"functionName":{"name":"abi_decode_uint96_fromMemory","nativeSrc":"16268:28:101","nodeType":"YulIdentifier","src":"16268:28:101"},"nativeSrc":"16268:49:101","nodeType":"YulFunctionCall","src":"16268:49:101"},"variableNames":[{"name":"value5","nativeSrc":"16258:6:101","nodeType":"YulIdentifier","src":"16258:6:101"}]},{"nativeSrc":"16326:75:101","nodeType":"YulAssignment","src":"16326:75:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16376:9:101","nodeType":"YulIdentifier","src":"16376:9:101"},{"kind":"number","nativeSrc":"16387:3:101","nodeType":"YulLiteral","src":"16387:3:101","type":"","value":"544"}],"functionName":{"name":"add","nativeSrc":"16372:3:101","nodeType":"YulIdentifier","src":"16372:3:101"},"nativeSrc":"16372:19:101","nodeType":"YulFunctionCall","src":"16372:19:101"},{"name":"dataEnd","nativeSrc":"16393:7:101","nodeType":"YulIdentifier","src":"16393:7:101"}],"functionName":{"name":"abi_decode_struct_Params_fromMemory","nativeSrc":"16336:35:101","nodeType":"YulIdentifier","src":"16336:35:101"},"nativeSrc":"16336:65:101","nodeType":"YulFunctionCall","src":"16336:65:101"},"variableNames":[{"name":"value6","nativeSrc":"16326:6:101","nodeType":"YulIdentifier","src":"16326:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$22230_memory_ptr_fromMemory","nativeSrc":"15471:936:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15624:9:101","nodeType":"YulTypedName","src":"15624:9:101","type":""},{"name":"dataEnd","nativeSrc":"15635:7:101","nodeType":"YulTypedName","src":"15635:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15647:6:101","nodeType":"YulTypedName","src":"15647:6:101","type":""},{"name":"value1","nativeSrc":"15655:6:101","nodeType":"YulTypedName","src":"15655:6:101","type":""},{"name":"value2","nativeSrc":"15663:6:101","nodeType":"YulTypedName","src":"15663:6:101","type":""},{"name":"value3","nativeSrc":"15671:6:101","nodeType":"YulTypedName","src":"15671:6:101","type":""},{"name":"value4","nativeSrc":"15679:6:101","nodeType":"YulTypedName","src":"15679:6:101","type":""},{"name":"value5","nativeSrc":"15687:6:101","nodeType":"YulTypedName","src":"15687:6:101","type":""},{"name":"value6","nativeSrc":"15695:6:101","nodeType":"YulTypedName","src":"15695:6:101","type":""}],"src":"15471:936:101"},{"body":{"nativeSrc":"16537:157:101","nodeType":"YulBlock","src":"16537:157:101","statements":[{"nativeSrc":"16547:26:101","nodeType":"YulAssignment","src":"16547:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"16559:9:101","nodeType":"YulIdentifier","src":"16559:9:101"},{"kind":"number","nativeSrc":"16570:2:101","nodeType":"YulLiteral","src":"16570:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16555:3:101","nodeType":"YulIdentifier","src":"16555:3:101"},"nativeSrc":"16555:18:101","nodeType":"YulFunctionCall","src":"16555:18:101"},"variableNames":[{"name":"tail","nativeSrc":"16547:4:101","nodeType":"YulIdentifier","src":"16547:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16589:9:101","nodeType":"YulIdentifier","src":"16589:9:101"},{"arguments":[{"name":"value0","nativeSrc":"16604:6:101","nodeType":"YulIdentifier","src":"16604:6:101"},{"kind":"number","nativeSrc":"16612:12:101","nodeType":"YulLiteral","src":"16612:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"16600:3:101","nodeType":"YulIdentifier","src":"16600:3:101"},"nativeSrc":"16600:25:101","nodeType":"YulFunctionCall","src":"16600:25:101"}],"functionName":{"name":"mstore","nativeSrc":"16582:6:101","nodeType":"YulIdentifier","src":"16582:6:101"},"nativeSrc":"16582:44:101","nodeType":"YulFunctionCall","src":"16582:44:101"},"nativeSrc":"16582:44:101","nodeType":"YulExpressionStatement","src":"16582:44:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16646:9:101","nodeType":"YulIdentifier","src":"16646:9:101"},{"kind":"number","nativeSrc":"16657:2:101","nodeType":"YulLiteral","src":"16657:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16642:3:101","nodeType":"YulIdentifier","src":"16642:3:101"},"nativeSrc":"16642:18:101","nodeType":"YulFunctionCall","src":"16642:18:101"},{"arguments":[{"name":"value1","nativeSrc":"16666:6:101","nodeType":"YulIdentifier","src":"16666:6:101"},{"kind":"number","nativeSrc":"16674:12:101","nodeType":"YulLiteral","src":"16674:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"16662:3:101","nodeType":"YulIdentifier","src":"16662:3:101"},"nativeSrc":"16662:25:101","nodeType":"YulFunctionCall","src":"16662:25:101"}],"functionName":{"name":"mstore","nativeSrc":"16635:6:101","nodeType":"YulIdentifier","src":"16635:6:101"},"nativeSrc":"16635:53:101","nodeType":"YulFunctionCall","src":"16635:53:101"},"nativeSrc":"16635:53:101","nodeType":"YulExpressionStatement","src":"16635:53:101"}]},"name":"abi_encode_tuple_t_uint40_t_uint40__to_t_uint40_t_uint40__fromStack_reversed","nativeSrc":"16412:282:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16498:9:101","nodeType":"YulTypedName","src":"16498:9:101","type":""},{"name":"value1","nativeSrc":"16509:6:101","nodeType":"YulTypedName","src":"16509:6:101","type":""},{"name":"value0","nativeSrc":"16517:6:101","nodeType":"YulTypedName","src":"16517:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16528:4:101","nodeType":"YulTypedName","src":"16528:4:101","type":""}],"src":"16412:282:101"},{"body":{"nativeSrc":"16998:312:101","nodeType":"YulBlock","src":"16998:312:101","statements":[{"nativeSrc":"17008:27:101","nodeType":"YulAssignment","src":"17008:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"17020:9:101","nodeType":"YulIdentifier","src":"17020:9:101"},{"kind":"number","nativeSrc":"17031:3:101","nodeType":"YulLiteral","src":"17031:3:101","type":"","value":"832"}],"functionName":{"name":"add","nativeSrc":"17016:3:101","nodeType":"YulIdentifier","src":"17016:3:101"},"nativeSrc":"17016:19:101","nodeType":"YulFunctionCall","src":"17016:19:101"},"variableNames":[{"name":"tail","nativeSrc":"17008:4:101","nodeType":"YulIdentifier","src":"17008:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"17073:6:101","nodeType":"YulIdentifier","src":"17073:6:101"},{"name":"headStart","nativeSrc":"17081:9:101","nodeType":"YulIdentifier","src":"17081:9:101"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"17044:28:101","nodeType":"YulIdentifier","src":"17044:28:101"},"nativeSrc":"17044:47:101","nodeType":"YulFunctionCall","src":"17044:47:101"},"nativeSrc":"17044:47:101","nodeType":"YulExpressionStatement","src":"17044:47:101"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"17129:6:101","nodeType":"YulIdentifier","src":"17129:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"17141:9:101","nodeType":"YulIdentifier","src":"17141:9:101"},{"kind":"number","nativeSrc":"17152:3:101","nodeType":"YulLiteral","src":"17152:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"17137:3:101","nodeType":"YulIdentifier","src":"17137:3:101"},"nativeSrc":"17137:19:101","nodeType":"YulFunctionCall","src":"17137:19:101"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"17100:28:101","nodeType":"YulIdentifier","src":"17100:28:101"},"nativeSrc":"17100:57:101","nodeType":"YulFunctionCall","src":"17100:57:101"},"nativeSrc":"17100:57:101","nodeType":"YulExpressionStatement","src":"17100:57:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17177:9:101","nodeType":"YulIdentifier","src":"17177:9:101"},{"kind":"number","nativeSrc":"17188:3:101","nodeType":"YulLiteral","src":"17188:3:101","type":"","value":"768"}],"functionName":{"name":"add","nativeSrc":"17173:3:101","nodeType":"YulIdentifier","src":"17173:3:101"},"nativeSrc":"17173:19:101","nodeType":"YulFunctionCall","src":"17173:19:101"},{"arguments":[{"name":"value2","nativeSrc":"17198:6:101","nodeType":"YulIdentifier","src":"17198:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17214:3:101","nodeType":"YulLiteral","src":"17214:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"17219:1:101","nodeType":"YulLiteral","src":"17219:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"17210:3:101","nodeType":"YulIdentifier","src":"17210:3:101"},"nativeSrc":"17210:11:101","nodeType":"YulFunctionCall","src":"17210:11:101"},{"kind":"number","nativeSrc":"17223:1:101","nodeType":"YulLiteral","src":"17223:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"17206:3:101","nodeType":"YulIdentifier","src":"17206:3:101"},"nativeSrc":"17206:19:101","nodeType":"YulFunctionCall","src":"17206:19:101"}],"functionName":{"name":"and","nativeSrc":"17194:3:101","nodeType":"YulIdentifier","src":"17194:3:101"},"nativeSrc":"17194:32:101","nodeType":"YulFunctionCall","src":"17194:32:101"}],"functionName":{"name":"mstore","nativeSrc":"17166:6:101","nodeType":"YulIdentifier","src":"17166:6:101"},"nativeSrc":"17166:61:101","nodeType":"YulFunctionCall","src":"17166:61:101"},"nativeSrc":"17166:61:101","nodeType":"YulExpressionStatement","src":"17166:61:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17247:9:101","nodeType":"YulIdentifier","src":"17247:9:101"},{"kind":"number","nativeSrc":"17258:3:101","nodeType":"YulLiteral","src":"17258:3:101","type":"","value":"800"}],"functionName":{"name":"add","nativeSrc":"17243:3:101","nodeType":"YulIdentifier","src":"17243:3:101"},"nativeSrc":"17243:19:101","nodeType":"YulFunctionCall","src":"17243:19:101"},{"arguments":[{"name":"value3","nativeSrc":"17268:6:101","nodeType":"YulIdentifier","src":"17268:6:101"},{"kind":"number","nativeSrc":"17276:26:101","nodeType":"YulLiteral","src":"17276:26:101","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"17264:3:101","nodeType":"YulIdentifier","src":"17264:3:101"},"nativeSrc":"17264:39:101","nodeType":"YulFunctionCall","src":"17264:39:101"}],"functionName":{"name":"mstore","nativeSrc":"17236:6:101","nodeType":"YulIdentifier","src":"17236:6:101"},"nativeSrc":"17236:68:101","nodeType":"YulFunctionCall","src":"17236:68:101"},"nativeSrc":"17236:68:101","nodeType":"YulExpressionStatement","src":"17236:68:101"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_struct$_PolicyData_$22256_memory_ptr_t_address_t_uint96__to_t_struct$_PolicyData_$22256_memory_ptr_t_struct$_PolicyData_$22256_memory_ptr_t_address_t_uint96__fromStack_reversed","nativeSrc":"16699:611:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16943:9:101","nodeType":"YulTypedName","src":"16943:9:101","type":""},{"name":"value3","nativeSrc":"16954:6:101","nodeType":"YulTypedName","src":"16954:6:101","type":""},{"name":"value2","nativeSrc":"16962:6:101","nodeType":"YulTypedName","src":"16962:6:101","type":""},{"name":"value1","nativeSrc":"16970:6:101","nodeType":"YulTypedName","src":"16970:6:101","type":""},{"name":"value0","nativeSrc":"16978:6:101","nodeType":"YulTypedName","src":"16978:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16989:4:101","nodeType":"YulTypedName","src":"16989:4:101","type":""}],"src":"16699:611:101"},{"body":{"nativeSrc":"17396:149:101","nodeType":"YulBlock","src":"17396:149:101","statements":[{"body":{"nativeSrc":"17442:16:101","nodeType":"YulBlock","src":"17442:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17451:1:101","nodeType":"YulLiteral","src":"17451:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"17454:1:101","nodeType":"YulLiteral","src":"17454:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17444:6:101","nodeType":"YulIdentifier","src":"17444:6:101"},"nativeSrc":"17444:12:101","nodeType":"YulFunctionCall","src":"17444:12:101"},"nativeSrc":"17444:12:101","nodeType":"YulExpressionStatement","src":"17444:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17417:7:101","nodeType":"YulIdentifier","src":"17417:7:101"},{"name":"headStart","nativeSrc":"17426:9:101","nodeType":"YulIdentifier","src":"17426:9:101"}],"functionName":{"name":"sub","nativeSrc":"17413:3:101","nodeType":"YulIdentifier","src":"17413:3:101"},"nativeSrc":"17413:23:101","nodeType":"YulFunctionCall","src":"17413:23:101"},{"kind":"number","nativeSrc":"17438:2:101","nodeType":"YulLiteral","src":"17438:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"17409:3:101","nodeType":"YulIdentifier","src":"17409:3:101"},"nativeSrc":"17409:32:101","nodeType":"YulFunctionCall","src":"17409:32:101"},"nativeSrc":"17406:52:101","nodeType":"YulIf","src":"17406:52:101"},{"nativeSrc":"17467:14:101","nodeType":"YulVariableDeclaration","src":"17467:14:101","value":{"kind":"number","nativeSrc":"17480:1:101","nodeType":"YulLiteral","src":"17480:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"17471:5:101","nodeType":"YulTypedName","src":"17471:5:101","type":""}]},{"nativeSrc":"17490:25:101","nodeType":"YulAssignment","src":"17490:25:101","value":{"arguments":[{"name":"headStart","nativeSrc":"17505:9:101","nodeType":"YulIdentifier","src":"17505:9:101"}],"functionName":{"name":"mload","nativeSrc":"17499:5:101","nodeType":"YulIdentifier","src":"17499:5:101"},"nativeSrc":"17499:16:101","nodeType":"YulFunctionCall","src":"17499:16:101"},"variableNames":[{"name":"value","nativeSrc":"17490:5:101","nodeType":"YulIdentifier","src":"17490:5:101"}]},{"nativeSrc":"17524:15:101","nodeType":"YulAssignment","src":"17524:15:101","value":{"name":"value","nativeSrc":"17534:5:101","nodeType":"YulIdentifier","src":"17534:5:101"},"variableNames":[{"name":"value0","nativeSrc":"17524:6:101","nodeType":"YulIdentifier","src":"17524:6:101"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"17315:230:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17362:9:101","nodeType":"YulTypedName","src":"17362:9:101","type":""},{"name":"dataEnd","nativeSrc":"17373:7:101","nodeType":"YulTypedName","src":"17373:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17385:6:101","nodeType":"YulTypedName","src":"17385:6:101","type":""}],"src":"17315:230:101"},{"body":{"nativeSrc":"17711:432:101","nodeType":"YulBlock","src":"17711:432:101","statements":[{"body":{"nativeSrc":"17758:16:101","nodeType":"YulBlock","src":"17758:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17767:1:101","nodeType":"YulLiteral","src":"17767:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"17770:1:101","nodeType":"YulLiteral","src":"17770:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17760:6:101","nodeType":"YulIdentifier","src":"17760:6:101"},"nativeSrc":"17760:12:101","nodeType":"YulFunctionCall","src":"17760:12:101"},"nativeSrc":"17760:12:101","nodeType":"YulExpressionStatement","src":"17760:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17732:7:101","nodeType":"YulIdentifier","src":"17732:7:101"},{"name":"headStart","nativeSrc":"17741:9:101","nodeType":"YulIdentifier","src":"17741:9:101"}],"functionName":{"name":"sub","nativeSrc":"17728:3:101","nodeType":"YulIdentifier","src":"17728:3:101"},"nativeSrc":"17728:23:101","nodeType":"YulFunctionCall","src":"17728:23:101"},{"kind":"number","nativeSrc":"17753:3:101","nodeType":"YulLiteral","src":"17753:3:101","type":"","value":"480"}],"functionName":{"name":"slt","nativeSrc":"17724:3:101","nodeType":"YulIdentifier","src":"17724:3:101"},"nativeSrc":"17724:33:101","nodeType":"YulFunctionCall","src":"17724:33:101"},"nativeSrc":"17721:53:101","nodeType":"YulIf","src":"17721:53:101"},{"nativeSrc":"17783:69:101","nodeType":"YulAssignment","src":"17783:69:101","value":{"arguments":[{"name":"headStart","nativeSrc":"17833:9:101","nodeType":"YulIdentifier","src":"17833:9:101"},{"name":"dataEnd","nativeSrc":"17844:7:101","nodeType":"YulIdentifier","src":"17844:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData_fromMemory","nativeSrc":"17793:39:101","nodeType":"YulIdentifier","src":"17793:39:101"},"nativeSrc":"17793:59:101","nodeType":"YulFunctionCall","src":"17793:59:101"},"variableNames":[{"name":"value0","nativeSrc":"17783:6:101","nodeType":"YulIdentifier","src":"17783:6:101"}]},{"nativeSrc":"17861:14:101","nodeType":"YulVariableDeclaration","src":"17861:14:101","value":{"kind":"number","nativeSrc":"17874:1:101","nodeType":"YulLiteral","src":"17874:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"17865:5:101","nodeType":"YulTypedName","src":"17865:5:101","type":""}]},{"nativeSrc":"17884:35:101","nodeType":"YulAssignment","src":"17884:35:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17903:9:101","nodeType":"YulIdentifier","src":"17903:9:101"},{"kind":"number","nativeSrc":"17914:3:101","nodeType":"YulLiteral","src":"17914:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"17899:3:101","nodeType":"YulIdentifier","src":"17899:3:101"},"nativeSrc":"17899:19:101","nodeType":"YulFunctionCall","src":"17899:19:101"}],"functionName":{"name":"mload","nativeSrc":"17893:5:101","nodeType":"YulIdentifier","src":"17893:5:101"},"nativeSrc":"17893:26:101","nodeType":"YulFunctionCall","src":"17893:26:101"},"variableNames":[{"name":"value","nativeSrc":"17884:5:101","nodeType":"YulIdentifier","src":"17884:5:101"}]},{"nativeSrc":"17928:15:101","nodeType":"YulAssignment","src":"17928:15:101","value":{"name":"value","nativeSrc":"17938:5:101","nodeType":"YulIdentifier","src":"17938:5:101"},"variableNames":[{"name":"value1","nativeSrc":"17928:6:101","nodeType":"YulIdentifier","src":"17928:6:101"}]},{"nativeSrc":"17952:16:101","nodeType":"YulVariableDeclaration","src":"17952:16:101","value":{"kind":"number","nativeSrc":"17967:1:101","nodeType":"YulLiteral","src":"17967:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"17956:7:101","nodeType":"YulTypedName","src":"17956:7:101","type":""}]},{"nativeSrc":"17977:37:101","nodeType":"YulAssignment","src":"17977:37:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17998:9:101","nodeType":"YulIdentifier","src":"17998:9:101"},{"kind":"number","nativeSrc":"18009:3:101","nodeType":"YulLiteral","src":"18009:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"17994:3:101","nodeType":"YulIdentifier","src":"17994:3:101"},"nativeSrc":"17994:19:101","nodeType":"YulFunctionCall","src":"17994:19:101"}],"functionName":{"name":"mload","nativeSrc":"17988:5:101","nodeType":"YulIdentifier","src":"17988:5:101"},"nativeSrc":"17988:26:101","nodeType":"YulFunctionCall","src":"17988:26:101"},"variableNames":[{"name":"value_1","nativeSrc":"17977:7:101","nodeType":"YulIdentifier","src":"17977:7:101"}]},{"nativeSrc":"18023:17:101","nodeType":"YulAssignment","src":"18023:17:101","value":{"name":"value_1","nativeSrc":"18033:7:101","nodeType":"YulIdentifier","src":"18033:7:101"},"variableNames":[{"name":"value2","nativeSrc":"18023:6:101","nodeType":"YulIdentifier","src":"18023:6:101"}]},{"nativeSrc":"18049:16:101","nodeType":"YulVariableDeclaration","src":"18049:16:101","value":{"kind":"number","nativeSrc":"18064:1:101","nodeType":"YulLiteral","src":"18064:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"18053:7:101","nodeType":"YulTypedName","src":"18053:7:101","type":""}]},{"nativeSrc":"18074:37:101","nodeType":"YulAssignment","src":"18074:37:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18095:9:101","nodeType":"YulIdentifier","src":"18095:9:101"},{"kind":"number","nativeSrc":"18106:3:101","nodeType":"YulLiteral","src":"18106:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"18091:3:101","nodeType":"YulIdentifier","src":"18091:3:101"},"nativeSrc":"18091:19:101","nodeType":"YulFunctionCall","src":"18091:19:101"}],"functionName":{"name":"mload","nativeSrc":"18085:5:101","nodeType":"YulIdentifier","src":"18085:5:101"},"nativeSrc":"18085:26:101","nodeType":"YulFunctionCall","src":"18085:26:101"},"variableNames":[{"name":"value_2","nativeSrc":"18074:7:101","nodeType":"YulIdentifier","src":"18074:7:101"}]},{"nativeSrc":"18120:17:101","nodeType":"YulAssignment","src":"18120:17:101","value":{"name":"value_2","nativeSrc":"18130:7:101","nodeType":"YulIdentifier","src":"18130:7:101"},"variableNames":[{"name":"value3","nativeSrc":"18120:6:101","nodeType":"YulIdentifier","src":"18120:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256_fromMemory","nativeSrc":"17550:593:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17653:9:101","nodeType":"YulTypedName","src":"17653:9:101","type":""},{"name":"dataEnd","nativeSrc":"17664:7:101","nodeType":"YulTypedName","src":"17664:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17676:6:101","nodeType":"YulTypedName","src":"17676:6:101","type":""},{"name":"value1","nativeSrc":"17684:6:101","nodeType":"YulTypedName","src":"17684:6:101","type":""},{"name":"value2","nativeSrc":"17692:6:101","nodeType":"YulTypedName","src":"17692:6:101","type":""},{"name":"value3","nativeSrc":"17700:6:101","nodeType":"YulTypedName","src":"17700:6:101","type":""}],"src":"17550:593:101"},{"body":{"nativeSrc":"18391:231:101","nodeType":"YulBlock","src":"18391:231:101","statements":[{"nativeSrc":"18401:27:101","nodeType":"YulAssignment","src":"18401:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"18413:9:101","nodeType":"YulIdentifier","src":"18413:9:101"},{"kind":"number","nativeSrc":"18424:3:101","nodeType":"YulLiteral","src":"18424:3:101","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"18409:3:101","nodeType":"YulIdentifier","src":"18409:3:101"},"nativeSrc":"18409:19:101","nodeType":"YulFunctionCall","src":"18409:19:101"},"variableNames":[{"name":"tail","nativeSrc":"18401:4:101","nodeType":"YulIdentifier","src":"18401:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"18466:6:101","nodeType":"YulIdentifier","src":"18466:6:101"},{"name":"headStart","nativeSrc":"18474:9:101","nodeType":"YulIdentifier","src":"18474:9:101"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"18437:28:101","nodeType":"YulIdentifier","src":"18437:28:101"},"nativeSrc":"18437:47:101","nodeType":"YulFunctionCall","src":"18437:47:101"},"nativeSrc":"18437:47:101","nodeType":"YulExpressionStatement","src":"18437:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18504:9:101","nodeType":"YulIdentifier","src":"18504:9:101"},{"kind":"number","nativeSrc":"18515:3:101","nodeType":"YulLiteral","src":"18515:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"18500:3:101","nodeType":"YulIdentifier","src":"18500:3:101"},"nativeSrc":"18500:19:101","nodeType":"YulFunctionCall","src":"18500:19:101"},{"name":"value1","nativeSrc":"18521:6:101","nodeType":"YulIdentifier","src":"18521:6:101"}],"functionName":{"name":"mstore","nativeSrc":"18493:6:101","nodeType":"YulIdentifier","src":"18493:6:101"},"nativeSrc":"18493:35:101","nodeType":"YulFunctionCall","src":"18493:35:101"},"nativeSrc":"18493:35:101","nodeType":"YulExpressionStatement","src":"18493:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18548:9:101","nodeType":"YulIdentifier","src":"18548:9:101"},{"kind":"number","nativeSrc":"18559:3:101","nodeType":"YulLiteral","src":"18559:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"18544:3:101","nodeType":"YulIdentifier","src":"18544:3:101"},"nativeSrc":"18544:19:101","nodeType":"YulFunctionCall","src":"18544:19:101"},{"name":"value2","nativeSrc":"18565:6:101","nodeType":"YulIdentifier","src":"18565:6:101"}],"functionName":{"name":"mstore","nativeSrc":"18537:6:101","nodeType":"YulIdentifier","src":"18537:6:101"},"nativeSrc":"18537:35:101","nodeType":"YulFunctionCall","src":"18537:35:101"},"nativeSrc":"18537:35:101","nodeType":"YulExpressionStatement","src":"18537:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18592:9:101","nodeType":"YulIdentifier","src":"18592:9:101"},{"kind":"number","nativeSrc":"18603:3:101","nodeType":"YulLiteral","src":"18603:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"18588:3:101","nodeType":"YulIdentifier","src":"18588:3:101"},"nativeSrc":"18588:19:101","nodeType":"YulFunctionCall","src":"18588:19:101"},{"name":"value3","nativeSrc":"18609:6:101","nodeType":"YulIdentifier","src":"18609:6:101"}],"functionName":{"name":"mstore","nativeSrc":"18581:6:101","nodeType":"YulIdentifier","src":"18581:6:101"},"nativeSrc":"18581:35:101","nodeType":"YulFunctionCall","src":"18581:35:101"},"nativeSrc":"18581:35:101","nodeType":"YulExpressionStatement","src":"18581:35:101"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"18148:474:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18336:9:101","nodeType":"YulTypedName","src":"18336:9:101","type":""},{"name":"value3","nativeSrc":"18347:6:101","nodeType":"YulTypedName","src":"18347:6:101","type":""},{"name":"value2","nativeSrc":"18355:6:101","nodeType":"YulTypedName","src":"18355:6:101","type":""},{"name":"value1","nativeSrc":"18363:6:101","nodeType":"YulTypedName","src":"18363:6:101","type":""},{"name":"value0","nativeSrc":"18371:6:101","nodeType":"YulTypedName","src":"18371:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18382:4:101","nodeType":"YulTypedName","src":"18382:4:101","type":""}],"src":"18148:474:101"},{"body":{"nativeSrc":"18816:610:101","nodeType":"YulBlock","src":"18816:610:101","statements":[{"body":{"nativeSrc":"18863:16:101","nodeType":"YulBlock","src":"18863:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18872:1:101","nodeType":"YulLiteral","src":"18872:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"18875:1:101","nodeType":"YulLiteral","src":"18875:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18865:6:101","nodeType":"YulIdentifier","src":"18865:6:101"},"nativeSrc":"18865:12:101","nodeType":"YulFunctionCall","src":"18865:12:101"},"nativeSrc":"18865:12:101","nodeType":"YulExpressionStatement","src":"18865:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18837:7:101","nodeType":"YulIdentifier","src":"18837:7:101"},{"name":"headStart","nativeSrc":"18846:9:101","nodeType":"YulIdentifier","src":"18846:9:101"}],"functionName":{"name":"sub","nativeSrc":"18833:3:101","nodeType":"YulIdentifier","src":"18833:3:101"},"nativeSrc":"18833:23:101","nodeType":"YulFunctionCall","src":"18833:23:101"},{"kind":"number","nativeSrc":"18858:3:101","nodeType":"YulLiteral","src":"18858:3:101","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"18829:3:101","nodeType":"YulIdentifier","src":"18829:3:101"},"nativeSrc":"18829:33:101","nodeType":"YulFunctionCall","src":"18829:33:101"},"nativeSrc":"18826:53:101","nodeType":"YulIf","src":"18826:53:101"},{"nativeSrc":"18888:14:101","nodeType":"YulVariableDeclaration","src":"18888:14:101","value":{"kind":"number","nativeSrc":"18901:1:101","nodeType":"YulLiteral","src":"18901:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"18892:5:101","nodeType":"YulTypedName","src":"18892:5:101","type":""}]},{"nativeSrc":"18911:25:101","nodeType":"YulAssignment","src":"18911:25:101","value":{"arguments":[{"name":"headStart","nativeSrc":"18926:9:101","nodeType":"YulIdentifier","src":"18926:9:101"}],"functionName":{"name":"mload","nativeSrc":"18920:5:101","nodeType":"YulIdentifier","src":"18920:5:101"},"nativeSrc":"18920:16:101","nodeType":"YulFunctionCall","src":"18920:16:101"},"variableNames":[{"name":"value","nativeSrc":"18911:5:101","nodeType":"YulIdentifier","src":"18911:5:101"}]},{"nativeSrc":"18945:15:101","nodeType":"YulAssignment","src":"18945:15:101","value":{"name":"value","nativeSrc":"18955:5:101","nodeType":"YulIdentifier","src":"18955:5:101"},"variableNames":[{"name":"value0","nativeSrc":"18945:6:101","nodeType":"YulIdentifier","src":"18945:6:101"}]},{"nativeSrc":"18969:16:101","nodeType":"YulVariableDeclaration","src":"18969:16:101","value":{"kind":"number","nativeSrc":"18984:1:101","nodeType":"YulLiteral","src":"18984:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"18973:7:101","nodeType":"YulTypedName","src":"18973:7:101","type":""}]},{"nativeSrc":"18994:36:101","nodeType":"YulAssignment","src":"18994:36:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19015:9:101","nodeType":"YulIdentifier","src":"19015:9:101"},{"kind":"number","nativeSrc":"19026:2:101","nodeType":"YulLiteral","src":"19026:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19011:3:101","nodeType":"YulIdentifier","src":"19011:3:101"},"nativeSrc":"19011:18:101","nodeType":"YulFunctionCall","src":"19011:18:101"}],"functionName":{"name":"mload","nativeSrc":"19005:5:101","nodeType":"YulIdentifier","src":"19005:5:101"},"nativeSrc":"19005:25:101","nodeType":"YulFunctionCall","src":"19005:25:101"},"variableNames":[{"name":"value_1","nativeSrc":"18994:7:101","nodeType":"YulIdentifier","src":"18994:7:101"}]},{"nativeSrc":"19039:17:101","nodeType":"YulAssignment","src":"19039:17:101","value":{"name":"value_1","nativeSrc":"19049:7:101","nodeType":"YulIdentifier","src":"19049:7:101"},"variableNames":[{"name":"value1","nativeSrc":"19039:6:101","nodeType":"YulIdentifier","src":"19039:6:101"}]},{"nativeSrc":"19065:16:101","nodeType":"YulVariableDeclaration","src":"19065:16:101","value":{"kind":"number","nativeSrc":"19080:1:101","nodeType":"YulLiteral","src":"19080:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"19069:7:101","nodeType":"YulTypedName","src":"19069:7:101","type":""}]},{"nativeSrc":"19090:36:101","nodeType":"YulAssignment","src":"19090:36:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19111:9:101","nodeType":"YulIdentifier","src":"19111:9:101"},{"kind":"number","nativeSrc":"19122:2:101","nodeType":"YulLiteral","src":"19122:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19107:3:101","nodeType":"YulIdentifier","src":"19107:3:101"},"nativeSrc":"19107:18:101","nodeType":"YulFunctionCall","src":"19107:18:101"}],"functionName":{"name":"mload","nativeSrc":"19101:5:101","nodeType":"YulIdentifier","src":"19101:5:101"},"nativeSrc":"19101:25:101","nodeType":"YulFunctionCall","src":"19101:25:101"},"variableNames":[{"name":"value_2","nativeSrc":"19090:7:101","nodeType":"YulIdentifier","src":"19090:7:101"}]},{"nativeSrc":"19135:17:101","nodeType":"YulAssignment","src":"19135:17:101","value":{"name":"value_2","nativeSrc":"19145:7:101","nodeType":"YulIdentifier","src":"19145:7:101"},"variableNames":[{"name":"value2","nativeSrc":"19135:6:101","nodeType":"YulIdentifier","src":"19135:6:101"}]},{"nativeSrc":"19161:40:101","nodeType":"YulVariableDeclaration","src":"19161:40:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19186:9:101","nodeType":"YulIdentifier","src":"19186:9:101"},{"kind":"number","nativeSrc":"19197:2:101","nodeType":"YulLiteral","src":"19197:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"19182:3:101","nodeType":"YulIdentifier","src":"19182:3:101"},"nativeSrc":"19182:18:101","nodeType":"YulFunctionCall","src":"19182:18:101"}],"functionName":{"name":"mload","nativeSrc":"19176:5:101","nodeType":"YulIdentifier","src":"19176:5:101"},"nativeSrc":"19176:25:101","nodeType":"YulFunctionCall","src":"19176:25:101"},"variables":[{"name":"value_3","nativeSrc":"19165:7:101","nodeType":"YulTypedName","src":"19165:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"19234:7:101","nodeType":"YulIdentifier","src":"19234:7:101"}],"functionName":{"name":"validator_revert_uint40","nativeSrc":"19210:23:101","nodeType":"YulIdentifier","src":"19210:23:101"},"nativeSrc":"19210:32:101","nodeType":"YulFunctionCall","src":"19210:32:101"},"nativeSrc":"19210:32:101","nodeType":"YulExpressionStatement","src":"19210:32:101"},{"nativeSrc":"19251:17:101","nodeType":"YulAssignment","src":"19251:17:101","value":{"name":"value_3","nativeSrc":"19261:7:101","nodeType":"YulIdentifier","src":"19261:7:101"},"variableNames":[{"name":"value3","nativeSrc":"19251:6:101","nodeType":"YulIdentifier","src":"19251:6:101"}]},{"nativeSrc":"19277:59:101","nodeType":"YulAssignment","src":"19277:59:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19320:9:101","nodeType":"YulIdentifier","src":"19320:9:101"},{"kind":"number","nativeSrc":"19331:3:101","nodeType":"YulLiteral","src":"19331:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"19316:3:101","nodeType":"YulIdentifier","src":"19316:3:101"},"nativeSrc":"19316:19:101","nodeType":"YulFunctionCall","src":"19316:19:101"}],"functionName":{"name":"abi_decode_uint96_fromMemory","nativeSrc":"19287:28:101","nodeType":"YulIdentifier","src":"19287:28:101"},"nativeSrc":"19287:49:101","nodeType":"YulFunctionCall","src":"19287:49:101"},"variableNames":[{"name":"value4","nativeSrc":"19277:6:101","nodeType":"YulIdentifier","src":"19277:6:101"}]},{"nativeSrc":"19345:75:101","nodeType":"YulAssignment","src":"19345:75:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19395:9:101","nodeType":"YulIdentifier","src":"19395:9:101"},{"kind":"number","nativeSrc":"19406:3:101","nodeType":"YulLiteral","src":"19406:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"19391:3:101","nodeType":"YulIdentifier","src":"19391:3:101"},"nativeSrc":"19391:19:101","nodeType":"YulFunctionCall","src":"19391:19:101"},{"name":"dataEnd","nativeSrc":"19412:7:101","nodeType":"YulIdentifier","src":"19412:7:101"}],"functionName":{"name":"abi_decode_struct_Params_fromMemory","nativeSrc":"19355:35:101","nodeType":"YulIdentifier","src":"19355:35:101"},"nativeSrc":"19355:65:101","nodeType":"YulFunctionCall","src":"19355:65:101"},"variableNames":[{"name":"value5","nativeSrc":"19345:6:101","nodeType":"YulIdentifier","src":"19345:6:101"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$22230_memory_ptr_fromMemory","nativeSrc":"18627:799:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18742:9:101","nodeType":"YulTypedName","src":"18742:9:101","type":""},{"name":"dataEnd","nativeSrc":"18753:7:101","nodeType":"YulTypedName","src":"18753:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18765:6:101","nodeType":"YulTypedName","src":"18765:6:101","type":""},{"name":"value1","nativeSrc":"18773:6:101","nodeType":"YulTypedName","src":"18773:6:101","type":""},{"name":"value2","nativeSrc":"18781:6:101","nodeType":"YulTypedName","src":"18781:6:101","type":""},{"name":"value3","nativeSrc":"18789:6:101","nodeType":"YulTypedName","src":"18789:6:101","type":""},{"name":"value4","nativeSrc":"18797:6:101","nodeType":"YulTypedName","src":"18797:6:101","type":""},{"name":"value5","nativeSrc":"18805:6:101","nodeType":"YulTypedName","src":"18805:6:101","type":""}],"src":"18627:799:101"},{"body":{"nativeSrc":"19672:316:101","nodeType":"YulBlock","src":"19672:316:101","statements":[{"nativeSrc":"19682:27:101","nodeType":"YulAssignment","src":"19682:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"19694:9:101","nodeType":"YulIdentifier","src":"19694:9:101"},{"kind":"number","nativeSrc":"19705:3:101","nodeType":"YulLiteral","src":"19705:3:101","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"19690:3:101","nodeType":"YulIdentifier","src":"19690:3:101"},"nativeSrc":"19690:19:101","nodeType":"YulFunctionCall","src":"19690:19:101"},"variableNames":[{"name":"tail","nativeSrc":"19682:4:101","nodeType":"YulIdentifier","src":"19682:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"19747:6:101","nodeType":"YulIdentifier","src":"19747:6:101"},{"name":"headStart","nativeSrc":"19755:9:101","nodeType":"YulIdentifier","src":"19755:9:101"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"19718:28:101","nodeType":"YulIdentifier","src":"19718:28:101"},"nativeSrc":"19718:47:101","nodeType":"YulFunctionCall","src":"19718:47:101"},"nativeSrc":"19718:47:101","nodeType":"YulExpressionStatement","src":"19718:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19785:9:101","nodeType":"YulIdentifier","src":"19785:9:101"},{"kind":"number","nativeSrc":"19796:3:101","nodeType":"YulLiteral","src":"19796:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"19781:3:101","nodeType":"YulIdentifier","src":"19781:3:101"},"nativeSrc":"19781:19:101","nodeType":"YulFunctionCall","src":"19781:19:101"},{"arguments":[{"name":"value1","nativeSrc":"19806:6:101","nodeType":"YulIdentifier","src":"19806:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19822:3:101","nodeType":"YulLiteral","src":"19822:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"19827:1:101","nodeType":"YulLiteral","src":"19827:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"19818:3:101","nodeType":"YulIdentifier","src":"19818:3:101"},"nativeSrc":"19818:11:101","nodeType":"YulFunctionCall","src":"19818:11:101"},{"kind":"number","nativeSrc":"19831:1:101","nodeType":"YulLiteral","src":"19831:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"19814:3:101","nodeType":"YulIdentifier","src":"19814:3:101"},"nativeSrc":"19814:19:101","nodeType":"YulFunctionCall","src":"19814:19:101"}],"functionName":{"name":"and","nativeSrc":"19802:3:101","nodeType":"YulIdentifier","src":"19802:3:101"},"nativeSrc":"19802:32:101","nodeType":"YulFunctionCall","src":"19802:32:101"}],"functionName":{"name":"mstore","nativeSrc":"19774:6:101","nodeType":"YulIdentifier","src":"19774:6:101"},"nativeSrc":"19774:61:101","nodeType":"YulFunctionCall","src":"19774:61:101"},"nativeSrc":"19774:61:101","nodeType":"YulExpressionStatement","src":"19774:61:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19855:9:101","nodeType":"YulIdentifier","src":"19855:9:101"},{"kind":"number","nativeSrc":"19866:3:101","nodeType":"YulLiteral","src":"19866:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"19851:3:101","nodeType":"YulIdentifier","src":"19851:3:101"},"nativeSrc":"19851:19:101","nodeType":"YulFunctionCall","src":"19851:19:101"},{"arguments":[{"name":"value2","nativeSrc":"19876:6:101","nodeType":"YulIdentifier","src":"19876:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19892:3:101","nodeType":"YulLiteral","src":"19892:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"19897:1:101","nodeType":"YulLiteral","src":"19897:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"19888:3:101","nodeType":"YulIdentifier","src":"19888:3:101"},"nativeSrc":"19888:11:101","nodeType":"YulFunctionCall","src":"19888:11:101"},{"kind":"number","nativeSrc":"19901:1:101","nodeType":"YulLiteral","src":"19901:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"19884:3:101","nodeType":"YulIdentifier","src":"19884:3:101"},"nativeSrc":"19884:19:101","nodeType":"YulFunctionCall","src":"19884:19:101"}],"functionName":{"name":"and","nativeSrc":"19872:3:101","nodeType":"YulIdentifier","src":"19872:3:101"},"nativeSrc":"19872:32:101","nodeType":"YulFunctionCall","src":"19872:32:101"}],"functionName":{"name":"mstore","nativeSrc":"19844:6:101","nodeType":"YulIdentifier","src":"19844:6:101"},"nativeSrc":"19844:61:101","nodeType":"YulFunctionCall","src":"19844:61:101"},"nativeSrc":"19844:61:101","nodeType":"YulExpressionStatement","src":"19844:61:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19925:9:101","nodeType":"YulIdentifier","src":"19925:9:101"},{"kind":"number","nativeSrc":"19936:3:101","nodeType":"YulLiteral","src":"19936:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"19921:3:101","nodeType":"YulIdentifier","src":"19921:3:101"},"nativeSrc":"19921:19:101","nodeType":"YulFunctionCall","src":"19921:19:101"},{"arguments":[{"name":"value3","nativeSrc":"19946:6:101","nodeType":"YulIdentifier","src":"19946:6:101"},{"kind":"number","nativeSrc":"19954:26:101","nodeType":"YulLiteral","src":"19954:26:101","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19942:3:101","nodeType":"YulIdentifier","src":"19942:3:101"},"nativeSrc":"19942:39:101","nodeType":"YulFunctionCall","src":"19942:39:101"}],"functionName":{"name":"mstore","nativeSrc":"19914:6:101","nodeType":"YulIdentifier","src":"19914:6:101"},"nativeSrc":"19914:68:101","nodeType":"YulFunctionCall","src":"19914:68:101"},"nativeSrc":"19914:68:101","nodeType":"YulExpressionStatement","src":"19914:68:101"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_address_t_address_t_uint96__to_t_struct$_PolicyData_$22256_memory_ptr_t_address_t_address_t_uint96__fromStack_reversed","nativeSrc":"19431:557:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19617:9:101","nodeType":"YulTypedName","src":"19617:9:101","type":""},{"name":"value3","nativeSrc":"19628:6:101","nodeType":"YulTypedName","src":"19628:6:101","type":""},{"name":"value2","nativeSrc":"19636:6:101","nodeType":"YulTypedName","src":"19636:6:101","type":""},{"name":"value1","nativeSrc":"19644:6:101","nodeType":"YulTypedName","src":"19644:6:101","type":""},{"name":"value0","nativeSrc":"19652:6:101","nodeType":"YulTypedName","src":"19652:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19663:4:101","nodeType":"YulTypedName","src":"19663:4:101","type":""}],"src":"19431:557:101"},{"body":{"nativeSrc":"20182:1553:101","nodeType":"YulBlock","src":"20182:1553:101","statements":[{"nativeSrc":"20192:27:101","nodeType":"YulAssignment","src":"20192:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"20204:9:101","nodeType":"YulIdentifier","src":"20204:9:101"},{"kind":"number","nativeSrc":"20215:3:101","nodeType":"YulLiteral","src":"20215:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"20200:3:101","nodeType":"YulIdentifier","src":"20200:3:101"},"nativeSrc":"20200:19:101","nodeType":"YulFunctionCall","src":"20200:19:101"},"variableNames":[{"name":"tail","nativeSrc":"20192:4:101","nodeType":"YulIdentifier","src":"20192:4:101"}]},{"nativeSrc":"20228:14:101","nodeType":"YulVariableDeclaration","src":"20228:14:101","value":{"kind":"number","nativeSrc":"20241:1:101","nodeType":"YulLiteral","src":"20241:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"20232:5:101","nodeType":"YulTypedName","src":"20232:5:101","type":""}]},{"nativeSrc":"20251:29:101","nodeType":"YulAssignment","src":"20251:29:101","value":{"arguments":[{"name":"value0","nativeSrc":"20273:6:101","nodeType":"YulIdentifier","src":"20273:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"20260:12:101","nodeType":"YulIdentifier","src":"20260:12:101"},"nativeSrc":"20260:20:101","nodeType":"YulFunctionCall","src":"20260:20:101"},"variableNames":[{"name":"value","nativeSrc":"20251:5:101","nodeType":"YulIdentifier","src":"20251:5:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20296:9:101","nodeType":"YulIdentifier","src":"20296:9:101"},{"name":"value","nativeSrc":"20307:5:101","nodeType":"YulIdentifier","src":"20307:5:101"}],"functionName":{"name":"mstore","nativeSrc":"20289:6:101","nodeType":"YulIdentifier","src":"20289:6:101"},"nativeSrc":"20289:24:101","nodeType":"YulFunctionCall","src":"20289:24:101"},"nativeSrc":"20289:24:101","nodeType":"YulExpressionStatement","src":"20289:24:101"},{"nativeSrc":"20322:16:101","nodeType":"YulVariableDeclaration","src":"20322:16:101","value":{"kind":"number","nativeSrc":"20337:1:101","nodeType":"YulLiteral","src":"20337:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"20326:7:101","nodeType":"YulTypedName","src":"20326:7:101","type":""}]},{"nativeSrc":"20347:42:101","nodeType":"YulAssignment","src":"20347:42:101","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"20375:6:101","nodeType":"YulIdentifier","src":"20375:6:101"},{"kind":"number","nativeSrc":"20383:4:101","nodeType":"YulLiteral","src":"20383:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"20371:3:101","nodeType":"YulIdentifier","src":"20371:3:101"},"nativeSrc":"20371:17:101","nodeType":"YulFunctionCall","src":"20371:17:101"}],"functionName":{"name":"calldataload","nativeSrc":"20358:12:101","nodeType":"YulIdentifier","src":"20358:12:101"},"nativeSrc":"20358:31:101","nodeType":"YulFunctionCall","src":"20358:31:101"},"variableNames":[{"name":"value_1","nativeSrc":"20347:7:101","nodeType":"YulIdentifier","src":"20347:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20409:9:101","nodeType":"YulIdentifier","src":"20409:9:101"},{"kind":"number","nativeSrc":"20420:4:101","nodeType":"YulLiteral","src":"20420:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"20405:3:101","nodeType":"YulIdentifier","src":"20405:3:101"},"nativeSrc":"20405:20:101","nodeType":"YulFunctionCall","src":"20405:20:101"},{"name":"value_1","nativeSrc":"20427:7:101","nodeType":"YulIdentifier","src":"20427:7:101"}],"functionName":{"name":"mstore","nativeSrc":"20398:6:101","nodeType":"YulIdentifier","src":"20398:6:101"},"nativeSrc":"20398:37:101","nodeType":"YulFunctionCall","src":"20398:37:101"},"nativeSrc":"20398:37:101","nodeType":"YulExpressionStatement","src":"20398:37:101"},{"nativeSrc":"20444:16:101","nodeType":"YulVariableDeclaration","src":"20444:16:101","value":{"kind":"number","nativeSrc":"20459:1:101","nodeType":"YulLiteral","src":"20459:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"20448:7:101","nodeType":"YulTypedName","src":"20448:7:101","type":""}]},{"nativeSrc":"20469:42:101","nodeType":"YulAssignment","src":"20469:42:101","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"20497:6:101","nodeType":"YulIdentifier","src":"20497:6:101"},{"kind":"number","nativeSrc":"20505:4:101","nodeType":"YulLiteral","src":"20505:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"20493:3:101","nodeType":"YulIdentifier","src":"20493:3:101"},"nativeSrc":"20493:17:101","nodeType":"YulFunctionCall","src":"20493:17:101"}],"functionName":{"name":"calldataload","nativeSrc":"20480:12:101","nodeType":"YulIdentifier","src":"20480:12:101"},"nativeSrc":"20480:31:101","nodeType":"YulFunctionCall","src":"20480:31:101"},"variableNames":[{"name":"value_2","nativeSrc":"20469:7:101","nodeType":"YulIdentifier","src":"20469:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20531:9:101","nodeType":"YulIdentifier","src":"20531:9:101"},{"kind":"number","nativeSrc":"20542:4:101","nodeType":"YulLiteral","src":"20542:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"20527:3:101","nodeType":"YulIdentifier","src":"20527:3:101"},"nativeSrc":"20527:20:101","nodeType":"YulFunctionCall","src":"20527:20:101"},{"name":"value_2","nativeSrc":"20549:7:101","nodeType":"YulIdentifier","src":"20549:7:101"}],"functionName":{"name":"mstore","nativeSrc":"20520:6:101","nodeType":"YulIdentifier","src":"20520:6:101"},"nativeSrc":"20520:37:101","nodeType":"YulFunctionCall","src":"20520:37:101"},"nativeSrc":"20520:37:101","nodeType":"YulExpressionStatement","src":"20520:37:101"},{"nativeSrc":"20566:16:101","nodeType":"YulVariableDeclaration","src":"20566:16:101","value":{"kind":"number","nativeSrc":"20581:1:101","nodeType":"YulLiteral","src":"20581:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"20570:7:101","nodeType":"YulTypedName","src":"20570:7:101","type":""}]},{"nativeSrc":"20591:42:101","nodeType":"YulAssignment","src":"20591:42:101","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"20619:6:101","nodeType":"YulIdentifier","src":"20619:6:101"},{"kind":"number","nativeSrc":"20627:4:101","nodeType":"YulLiteral","src":"20627:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"20615:3:101","nodeType":"YulIdentifier","src":"20615:3:101"},"nativeSrc":"20615:17:101","nodeType":"YulFunctionCall","src":"20615:17:101"}],"functionName":{"name":"calldataload","nativeSrc":"20602:12:101","nodeType":"YulIdentifier","src":"20602:12:101"},"nativeSrc":"20602:31:101","nodeType":"YulFunctionCall","src":"20602:31:101"},"variableNames":[{"name":"value_3","nativeSrc":"20591:7:101","nodeType":"YulIdentifier","src":"20591:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20653:9:101","nodeType":"YulIdentifier","src":"20653:9:101"},{"kind":"number","nativeSrc":"20664:4:101","nodeType":"YulLiteral","src":"20664:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"20649:3:101","nodeType":"YulIdentifier","src":"20649:3:101"},"nativeSrc":"20649:20:101","nodeType":"YulFunctionCall","src":"20649:20:101"},{"name":"value_3","nativeSrc":"20671:7:101","nodeType":"YulIdentifier","src":"20671:7:101"}],"functionName":{"name":"mstore","nativeSrc":"20642:6:101","nodeType":"YulIdentifier","src":"20642:6:101"},"nativeSrc":"20642:37:101","nodeType":"YulFunctionCall","src":"20642:37:101"},"nativeSrc":"20642:37:101","nodeType":"YulExpressionStatement","src":"20642:37:101"},{"nativeSrc":"20688:16:101","nodeType":"YulVariableDeclaration","src":"20688:16:101","value":{"kind":"number","nativeSrc":"20703:1:101","nodeType":"YulLiteral","src":"20703:1:101","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"20692:7:101","nodeType":"YulTypedName","src":"20692:7:101","type":""}]},{"nativeSrc":"20713:42:101","nodeType":"YulAssignment","src":"20713:42:101","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"20741:6:101","nodeType":"YulIdentifier","src":"20741:6:101"},{"kind":"number","nativeSrc":"20749:4:101","nodeType":"YulLiteral","src":"20749:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"20737:3:101","nodeType":"YulIdentifier","src":"20737:3:101"},"nativeSrc":"20737:17:101","nodeType":"YulFunctionCall","src":"20737:17:101"}],"functionName":{"name":"calldataload","nativeSrc":"20724:12:101","nodeType":"YulIdentifier","src":"20724:12:101"},"nativeSrc":"20724:31:101","nodeType":"YulFunctionCall","src":"20724:31:101"},"variableNames":[{"name":"value_4","nativeSrc":"20713:7:101","nodeType":"YulIdentifier","src":"20713:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20775:9:101","nodeType":"YulIdentifier","src":"20775:9:101"},{"kind":"number","nativeSrc":"20786:4:101","nodeType":"YulLiteral","src":"20786:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"20771:3:101","nodeType":"YulIdentifier","src":"20771:3:101"},"nativeSrc":"20771:20:101","nodeType":"YulFunctionCall","src":"20771:20:101"},{"name":"value_4","nativeSrc":"20793:7:101","nodeType":"YulIdentifier","src":"20793:7:101"}],"functionName":{"name":"mstore","nativeSrc":"20764:6:101","nodeType":"YulIdentifier","src":"20764:6:101"},"nativeSrc":"20764:37:101","nodeType":"YulFunctionCall","src":"20764:37:101"},"nativeSrc":"20764:37:101","nodeType":"YulExpressionStatement","src":"20764:37:101"},{"nativeSrc":"20810:16:101","nodeType":"YulVariableDeclaration","src":"20810:16:101","value":{"kind":"number","nativeSrc":"20825:1:101","nodeType":"YulLiteral","src":"20825:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"20814:7:101","nodeType":"YulTypedName","src":"20814:7:101","type":""}]},{"nativeSrc":"20835:42:101","nodeType":"YulAssignment","src":"20835:42:101","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"20863:6:101","nodeType":"YulIdentifier","src":"20863:6:101"},{"kind":"number","nativeSrc":"20871:4:101","nodeType":"YulLiteral","src":"20871:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"20859:3:101","nodeType":"YulIdentifier","src":"20859:3:101"},"nativeSrc":"20859:17:101","nodeType":"YulFunctionCall","src":"20859:17:101"}],"functionName":{"name":"calldataload","nativeSrc":"20846:12:101","nodeType":"YulIdentifier","src":"20846:12:101"},"nativeSrc":"20846:31:101","nodeType":"YulFunctionCall","src":"20846:31:101"},"variableNames":[{"name":"value_5","nativeSrc":"20835:7:101","nodeType":"YulIdentifier","src":"20835:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20897:9:101","nodeType":"YulIdentifier","src":"20897:9:101"},{"kind":"number","nativeSrc":"20908:4:101","nodeType":"YulLiteral","src":"20908:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"20893:3:101","nodeType":"YulIdentifier","src":"20893:3:101"},"nativeSrc":"20893:20:101","nodeType":"YulFunctionCall","src":"20893:20:101"},{"name":"value_5","nativeSrc":"20915:7:101","nodeType":"YulIdentifier","src":"20915:7:101"}],"functionName":{"name":"mstore","nativeSrc":"20886:6:101","nodeType":"YulIdentifier","src":"20886:6:101"},"nativeSrc":"20886:37:101","nodeType":"YulFunctionCall","src":"20886:37:101"},"nativeSrc":"20886:37:101","nodeType":"YulExpressionStatement","src":"20886:37:101"},{"nativeSrc":"20932:16:101","nodeType":"YulVariableDeclaration","src":"20932:16:101","value":{"kind":"number","nativeSrc":"20947:1:101","nodeType":"YulLiteral","src":"20947:1:101","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"20936:7:101","nodeType":"YulTypedName","src":"20936:7:101","type":""}]},{"nativeSrc":"20957:42:101","nodeType":"YulAssignment","src":"20957:42:101","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"20985:6:101","nodeType":"YulIdentifier","src":"20985:6:101"},{"kind":"number","nativeSrc":"20993:4:101","nodeType":"YulLiteral","src":"20993:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"20981:3:101","nodeType":"YulIdentifier","src":"20981:3:101"},"nativeSrc":"20981:17:101","nodeType":"YulFunctionCall","src":"20981:17:101"}],"functionName":{"name":"calldataload","nativeSrc":"20968:12:101","nodeType":"YulIdentifier","src":"20968:12:101"},"nativeSrc":"20968:31:101","nodeType":"YulFunctionCall","src":"20968:31:101"},"variableNames":[{"name":"value_6","nativeSrc":"20957:7:101","nodeType":"YulIdentifier","src":"20957:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21019:9:101","nodeType":"YulIdentifier","src":"21019:9:101"},{"kind":"number","nativeSrc":"21030:4:101","nodeType":"YulLiteral","src":"21030:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"21015:3:101","nodeType":"YulIdentifier","src":"21015:3:101"},"nativeSrc":"21015:20:101","nodeType":"YulFunctionCall","src":"21015:20:101"},{"name":"value_6","nativeSrc":"21037:7:101","nodeType":"YulIdentifier","src":"21037:7:101"}],"functionName":{"name":"mstore","nativeSrc":"21008:6:101","nodeType":"YulIdentifier","src":"21008:6:101"},"nativeSrc":"21008:37:101","nodeType":"YulFunctionCall","src":"21008:37:101"},"nativeSrc":"21008:37:101","nodeType":"YulExpressionStatement","src":"21008:37:101"},{"nativeSrc":"21054:16:101","nodeType":"YulVariableDeclaration","src":"21054:16:101","value":{"kind":"number","nativeSrc":"21069:1:101","nodeType":"YulLiteral","src":"21069:1:101","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"21058:7:101","nodeType":"YulTypedName","src":"21058:7:101","type":""}]},{"nativeSrc":"21079:42:101","nodeType":"YulAssignment","src":"21079:42:101","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"21107:6:101","nodeType":"YulIdentifier","src":"21107:6:101"},{"kind":"number","nativeSrc":"21115:4:101","nodeType":"YulLiteral","src":"21115:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"21103:3:101","nodeType":"YulIdentifier","src":"21103:3:101"},"nativeSrc":"21103:17:101","nodeType":"YulFunctionCall","src":"21103:17:101"}],"functionName":{"name":"calldataload","nativeSrc":"21090:12:101","nodeType":"YulIdentifier","src":"21090:12:101"},"nativeSrc":"21090:31:101","nodeType":"YulFunctionCall","src":"21090:31:101"},"variableNames":[{"name":"value_7","nativeSrc":"21079:7:101","nodeType":"YulIdentifier","src":"21079:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21141:9:101","nodeType":"YulIdentifier","src":"21141:9:101"},{"kind":"number","nativeSrc":"21152:4:101","nodeType":"YulLiteral","src":"21152:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"21137:3:101","nodeType":"YulIdentifier","src":"21137:3:101"},"nativeSrc":"21137:20:101","nodeType":"YulFunctionCall","src":"21137:20:101"},{"name":"value_7","nativeSrc":"21159:7:101","nodeType":"YulIdentifier","src":"21159:7:101"}],"functionName":{"name":"mstore","nativeSrc":"21130:6:101","nodeType":"YulIdentifier","src":"21130:6:101"},"nativeSrc":"21130:37:101","nodeType":"YulFunctionCall","src":"21130:37:101"},"nativeSrc":"21130:37:101","nodeType":"YulExpressionStatement","src":"21130:37:101"},{"nativeSrc":"21176:16:101","nodeType":"YulVariableDeclaration","src":"21176:16:101","value":{"kind":"number","nativeSrc":"21191:1:101","nodeType":"YulLiteral","src":"21191:1:101","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"21180:7:101","nodeType":"YulTypedName","src":"21180:7:101","type":""}]},{"nativeSrc":"21201:44:101","nodeType":"YulAssignment","src":"21201:44:101","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"21229:6:101","nodeType":"YulIdentifier","src":"21229:6:101"},{"kind":"number","nativeSrc":"21237:6:101","nodeType":"YulLiteral","src":"21237:6:101","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"21225:3:101","nodeType":"YulIdentifier","src":"21225:3:101"},"nativeSrc":"21225:19:101","nodeType":"YulFunctionCall","src":"21225:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"21212:12:101","nodeType":"YulIdentifier","src":"21212:12:101"},"nativeSrc":"21212:33:101","nodeType":"YulFunctionCall","src":"21212:33:101"},"variableNames":[{"name":"value_8","nativeSrc":"21201:7:101","nodeType":"YulIdentifier","src":"21201:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21265:9:101","nodeType":"YulIdentifier","src":"21265:9:101"},{"kind":"number","nativeSrc":"21276:6:101","nodeType":"YulLiteral","src":"21276:6:101","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"21261:3:101","nodeType":"YulIdentifier","src":"21261:3:101"},"nativeSrc":"21261:22:101","nodeType":"YulFunctionCall","src":"21261:22:101"},{"name":"value_8","nativeSrc":"21285:7:101","nodeType":"YulIdentifier","src":"21285:7:101"}],"functionName":{"name":"mstore","nativeSrc":"21254:6:101","nodeType":"YulIdentifier","src":"21254:6:101"},"nativeSrc":"21254:39:101","nodeType":"YulFunctionCall","src":"21254:39:101"},"nativeSrc":"21254:39:101","nodeType":"YulExpressionStatement","src":"21254:39:101"},{"nativeSrc":"21302:16:101","nodeType":"YulVariableDeclaration","src":"21302:16:101","value":{"kind":"number","nativeSrc":"21317:1:101","nodeType":"YulLiteral","src":"21317:1:101","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"21306:7:101","nodeType":"YulTypedName","src":"21306:7:101","type":""}]},{"nativeSrc":"21327:44:101","nodeType":"YulAssignment","src":"21327:44:101","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"21355:6:101","nodeType":"YulIdentifier","src":"21355:6:101"},{"kind":"number","nativeSrc":"21363:6:101","nodeType":"YulLiteral","src":"21363:6:101","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"21351:3:101","nodeType":"YulIdentifier","src":"21351:3:101"},"nativeSrc":"21351:19:101","nodeType":"YulFunctionCall","src":"21351:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"21338:12:101","nodeType":"YulIdentifier","src":"21338:12:101"},"nativeSrc":"21338:33:101","nodeType":"YulFunctionCall","src":"21338:33:101"},"variableNames":[{"name":"value_9","nativeSrc":"21327:7:101","nodeType":"YulIdentifier","src":"21327:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21391:9:101","nodeType":"YulIdentifier","src":"21391:9:101"},{"kind":"number","nativeSrc":"21402:6:101","nodeType":"YulLiteral","src":"21402:6:101","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"21387:3:101","nodeType":"YulIdentifier","src":"21387:3:101"},"nativeSrc":"21387:22:101","nodeType":"YulFunctionCall","src":"21387:22:101"},{"name":"value_9","nativeSrc":"21411:7:101","nodeType":"YulIdentifier","src":"21411:7:101"}],"functionName":{"name":"mstore","nativeSrc":"21380:6:101","nodeType":"YulIdentifier","src":"21380:6:101"},"nativeSrc":"21380:39:101","nodeType":"YulFunctionCall","src":"21380:39:101"},"nativeSrc":"21380:39:101","nodeType":"YulExpressionStatement","src":"21380:39:101"},{"nativeSrc":"21428:58:101","nodeType":"YulVariableDeclaration","src":"21428:58:101","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"21470:6:101","nodeType":"YulIdentifier","src":"21470:6:101"},{"kind":"number","nativeSrc":"21478:6:101","nodeType":"YulLiteral","src":"21478:6:101","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"21466:3:101","nodeType":"YulIdentifier","src":"21466:3:101"},"nativeSrc":"21466:19:101","nodeType":"YulFunctionCall","src":"21466:19:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"21448:17:101","nodeType":"YulIdentifier","src":"21448:17:101"},"nativeSrc":"21448:38:101","nodeType":"YulFunctionCall","src":"21448:38:101"},"variables":[{"name":"memberValue0","nativeSrc":"21432:12:101","nodeType":"YulTypedName","src":"21432:12:101","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"21513:12:101","nodeType":"YulIdentifier","src":"21513:12:101"},{"arguments":[{"name":"headStart","nativeSrc":"21531:9:101","nodeType":"YulIdentifier","src":"21531:9:101"},{"kind":"number","nativeSrc":"21542:6:101","nodeType":"YulLiteral","src":"21542:6:101","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"21527:3:101","nodeType":"YulIdentifier","src":"21527:3:101"},"nativeSrc":"21527:22:101","nodeType":"YulFunctionCall","src":"21527:22:101"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"21495:17:101","nodeType":"YulIdentifier","src":"21495:17:101"},"nativeSrc":"21495:55:101","nodeType":"YulFunctionCall","src":"21495:55:101"},"nativeSrc":"21495:55:101","nodeType":"YulExpressionStatement","src":"21495:55:101"},{"nativeSrc":"21559:60:101","nodeType":"YulVariableDeclaration","src":"21559:60:101","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"21603:6:101","nodeType":"YulIdentifier","src":"21603:6:101"},{"kind":"number","nativeSrc":"21611:6:101","nodeType":"YulLiteral","src":"21611:6:101","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"21599:3:101","nodeType":"YulIdentifier","src":"21599:3:101"},"nativeSrc":"21599:19:101","nodeType":"YulFunctionCall","src":"21599:19:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"21581:17:101","nodeType":"YulIdentifier","src":"21581:17:101"},"nativeSrc":"21581:38:101","nodeType":"YulFunctionCall","src":"21581:38:101"},"variables":[{"name":"memberValue0_1","nativeSrc":"21563:14:101","nodeType":"YulTypedName","src":"21563:14:101","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nativeSrc":"21646:14:101","nodeType":"YulIdentifier","src":"21646:14:101"},{"arguments":[{"name":"headStart","nativeSrc":"21666:9:101","nodeType":"YulIdentifier","src":"21666:9:101"},{"kind":"number","nativeSrc":"21677:6:101","nodeType":"YulLiteral","src":"21677:6:101","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"21662:3:101","nodeType":"YulIdentifier","src":"21662:3:101"},"nativeSrc":"21662:22:101","nodeType":"YulFunctionCall","src":"21662:22:101"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"21628:17:101","nodeType":"YulIdentifier","src":"21628:17:101"},"nativeSrc":"21628:57:101","nodeType":"YulFunctionCall","src":"21628:57:101"},"nativeSrc":"21628:57:101","nodeType":"YulExpressionStatement","src":"21628:57:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21705:9:101","nodeType":"YulIdentifier","src":"21705:9:101"},{"kind":"number","nativeSrc":"21716:3:101","nodeType":"YulLiteral","src":"21716:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"21701:3:101","nodeType":"YulIdentifier","src":"21701:3:101"},"nativeSrc":"21701:19:101","nodeType":"YulFunctionCall","src":"21701:19:101"},{"name":"value1","nativeSrc":"21722:6:101","nodeType":"YulIdentifier","src":"21722:6:101"}],"functionName":{"name":"mstore","nativeSrc":"21694:6:101","nodeType":"YulIdentifier","src":"21694:6:101"},"nativeSrc":"21694:35:101","nodeType":"YulFunctionCall","src":"21694:35:101"},"nativeSrc":"21694:35:101","nodeType":"YulExpressionStatement","src":"21694:35:101"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$22256_calldata_ptr_t_uint256__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256__fromStack_reversed","nativeSrc":"19993:1742:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20143:9:101","nodeType":"YulTypedName","src":"20143:9:101","type":""},{"name":"value1","nativeSrc":"20154:6:101","nodeType":"YulTypedName","src":"20154:6:101","type":""},{"name":"value0","nativeSrc":"20162:6:101","nodeType":"YulTypedName","src":"20162:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20173:4:101","nodeType":"YulTypedName","src":"20173:4:101","type":""}],"src":"19993:1742:101"},{"body":{"nativeSrc":"21869:171:101","nodeType":"YulBlock","src":"21869:171:101","statements":[{"nativeSrc":"21879:26:101","nodeType":"YulAssignment","src":"21879:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"21891:9:101","nodeType":"YulIdentifier","src":"21891:9:101"},{"kind":"number","nativeSrc":"21902:2:101","nodeType":"YulLiteral","src":"21902:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21887:3:101","nodeType":"YulIdentifier","src":"21887:3:101"},"nativeSrc":"21887:18:101","nodeType":"YulFunctionCall","src":"21887:18:101"},"variableNames":[{"name":"tail","nativeSrc":"21879:4:101","nodeType":"YulIdentifier","src":"21879:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"21921:9:101","nodeType":"YulIdentifier","src":"21921:9:101"},{"arguments":[{"name":"value0","nativeSrc":"21936:6:101","nodeType":"YulIdentifier","src":"21936:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"21952:3:101","nodeType":"YulLiteral","src":"21952:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"21957:1:101","nodeType":"YulLiteral","src":"21957:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"21948:3:101","nodeType":"YulIdentifier","src":"21948:3:101"},"nativeSrc":"21948:11:101","nodeType":"YulFunctionCall","src":"21948:11:101"},{"kind":"number","nativeSrc":"21961:1:101","nodeType":"YulLiteral","src":"21961:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"21944:3:101","nodeType":"YulIdentifier","src":"21944:3:101"},"nativeSrc":"21944:19:101","nodeType":"YulFunctionCall","src":"21944:19:101"}],"functionName":{"name":"and","nativeSrc":"21932:3:101","nodeType":"YulIdentifier","src":"21932:3:101"},"nativeSrc":"21932:32:101","nodeType":"YulFunctionCall","src":"21932:32:101"}],"functionName":{"name":"mstore","nativeSrc":"21914:6:101","nodeType":"YulIdentifier","src":"21914:6:101"},"nativeSrc":"21914:51:101","nodeType":"YulFunctionCall","src":"21914:51:101"},"nativeSrc":"21914:51:101","nodeType":"YulExpressionStatement","src":"21914:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21985:9:101","nodeType":"YulIdentifier","src":"21985:9:101"},{"kind":"number","nativeSrc":"21996:2:101","nodeType":"YulLiteral","src":"21996:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21981:3:101","nodeType":"YulIdentifier","src":"21981:3:101"},"nativeSrc":"21981:18:101","nodeType":"YulFunctionCall","src":"21981:18:101"},{"arguments":[{"name":"value1","nativeSrc":"22005:6:101","nodeType":"YulIdentifier","src":"22005:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22021:3:101","nodeType":"YulLiteral","src":"22021:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"22026:1:101","nodeType":"YulLiteral","src":"22026:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22017:3:101","nodeType":"YulIdentifier","src":"22017:3:101"},"nativeSrc":"22017:11:101","nodeType":"YulFunctionCall","src":"22017:11:101"},{"kind":"number","nativeSrc":"22030:1:101","nodeType":"YulLiteral","src":"22030:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"22013:3:101","nodeType":"YulIdentifier","src":"22013:3:101"},"nativeSrc":"22013:19:101","nodeType":"YulFunctionCall","src":"22013:19:101"}],"functionName":{"name":"and","nativeSrc":"22001:3:101","nodeType":"YulIdentifier","src":"22001:3:101"},"nativeSrc":"22001:32:101","nodeType":"YulFunctionCall","src":"22001:32:101"}],"functionName":{"name":"mstore","nativeSrc":"21974:6:101","nodeType":"YulIdentifier","src":"21974:6:101"},"nativeSrc":"21974:60:101","nodeType":"YulFunctionCall","src":"21974:60:101"},"nativeSrc":"21974:60:101","nodeType":"YulExpressionStatement","src":"21974:60:101"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nativeSrc":"21740:300:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21830:9:101","nodeType":"YulTypedName","src":"21830:9:101","type":""},{"name":"value1","nativeSrc":"21841:6:101","nodeType":"YulTypedName","src":"21841:6:101","type":""},{"name":"value0","nativeSrc":"21849:6:101","nodeType":"YulTypedName","src":"21849:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"21860:4:101","nodeType":"YulTypedName","src":"21860:4:101","type":""}],"src":"21740:300:101"},{"body":{"nativeSrc":"22149:184:101","nodeType":"YulBlock","src":"22149:184:101","statements":[{"body":{"nativeSrc":"22195:16:101","nodeType":"YulBlock","src":"22195:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22204:1:101","nodeType":"YulLiteral","src":"22204:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"22207:1:101","nodeType":"YulLiteral","src":"22207:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22197:6:101","nodeType":"YulIdentifier","src":"22197:6:101"},"nativeSrc":"22197:12:101","nodeType":"YulFunctionCall","src":"22197:12:101"},"nativeSrc":"22197:12:101","nodeType":"YulExpressionStatement","src":"22197:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"22170:7:101","nodeType":"YulIdentifier","src":"22170:7:101"},{"name":"headStart","nativeSrc":"22179:9:101","nodeType":"YulIdentifier","src":"22179:9:101"}],"functionName":{"name":"sub","nativeSrc":"22166:3:101","nodeType":"YulIdentifier","src":"22166:3:101"},"nativeSrc":"22166:23:101","nodeType":"YulFunctionCall","src":"22166:23:101"},{"kind":"number","nativeSrc":"22191:2:101","nodeType":"YulLiteral","src":"22191:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"22162:3:101","nodeType":"YulIdentifier","src":"22162:3:101"},"nativeSrc":"22162:32:101","nodeType":"YulFunctionCall","src":"22162:32:101"},"nativeSrc":"22159:52:101","nodeType":"YulIf","src":"22159:52:101"},{"nativeSrc":"22220:29:101","nodeType":"YulVariableDeclaration","src":"22220:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"22239:9:101","nodeType":"YulIdentifier","src":"22239:9:101"}],"functionName":{"name":"mload","nativeSrc":"22233:5:101","nodeType":"YulIdentifier","src":"22233:5:101"},"nativeSrc":"22233:16:101","nodeType":"YulFunctionCall","src":"22233:16:101"},"variables":[{"name":"value","nativeSrc":"22224:5:101","nodeType":"YulTypedName","src":"22224:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"22297:5:101","nodeType":"YulIdentifier","src":"22297:5:101"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"22258:38:101","nodeType":"YulIdentifier","src":"22258:38:101"},"nativeSrc":"22258:45:101","nodeType":"YulFunctionCall","src":"22258:45:101"},"nativeSrc":"22258:45:101","nodeType":"YulExpressionStatement","src":"22258:45:101"},{"nativeSrc":"22312:15:101","nodeType":"YulAssignment","src":"22312:15:101","value":{"name":"value","nativeSrc":"22322:5:101","nodeType":"YulIdentifier","src":"22322:5:101"},"variableNames":[{"name":"value0","nativeSrc":"22312:6:101","nodeType":"YulIdentifier","src":"22312:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory","nativeSrc":"22045:288:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22115:9:101","nodeType":"YulTypedName","src":"22115:9:101","type":""},{"name":"dataEnd","nativeSrc":"22126:7:101","nodeType":"YulTypedName","src":"22126:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"22138:6:101","nodeType":"YulTypedName","src":"22138:6:101","type":""}],"src":"22045:288:101"},{"body":{"nativeSrc":"22370:95:101","nodeType":"YulBlock","src":"22370:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22387:1:101","nodeType":"YulLiteral","src":"22387:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"22394:3:101","nodeType":"YulLiteral","src":"22394:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"22399:10:101","nodeType":"YulLiteral","src":"22399:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"22390:3:101","nodeType":"YulIdentifier","src":"22390:3:101"},"nativeSrc":"22390:20:101","nodeType":"YulFunctionCall","src":"22390:20:101"}],"functionName":{"name":"mstore","nativeSrc":"22380:6:101","nodeType":"YulIdentifier","src":"22380:6:101"},"nativeSrc":"22380:31:101","nodeType":"YulFunctionCall","src":"22380:31:101"},"nativeSrc":"22380:31:101","nodeType":"YulExpressionStatement","src":"22380:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"22427:1:101","nodeType":"YulLiteral","src":"22427:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"22430:4:101","nodeType":"YulLiteral","src":"22430:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"22420:6:101","nodeType":"YulIdentifier","src":"22420:6:101"},"nativeSrc":"22420:15:101","nodeType":"YulFunctionCall","src":"22420:15:101"},"nativeSrc":"22420:15:101","nodeType":"YulExpressionStatement","src":"22420:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"22451:1:101","nodeType":"YulLiteral","src":"22451:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"22454:4:101","nodeType":"YulLiteral","src":"22454:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"22444:6:101","nodeType":"YulIdentifier","src":"22444:6:101"},"nativeSrc":"22444:15:101","nodeType":"YulFunctionCall","src":"22444:15:101"},"nativeSrc":"22444:15:101","nodeType":"YulExpressionStatement","src":"22444:15:101"}]},"name":"panic_error_0x11","nativeSrc":"22338:127:101","nodeType":"YulFunctionDefinition","src":"22338:127:101"},{"body":{"nativeSrc":"22519:79:101","nodeType":"YulBlock","src":"22519:79:101","statements":[{"nativeSrc":"22529:17:101","nodeType":"YulAssignment","src":"22529:17:101","value":{"arguments":[{"name":"x","nativeSrc":"22541:1:101","nodeType":"YulIdentifier","src":"22541:1:101"},{"name":"y","nativeSrc":"22544:1:101","nodeType":"YulIdentifier","src":"22544:1:101"}],"functionName":{"name":"sub","nativeSrc":"22537:3:101","nodeType":"YulIdentifier","src":"22537:3:101"},"nativeSrc":"22537:9:101","nodeType":"YulFunctionCall","src":"22537:9:101"},"variableNames":[{"name":"diff","nativeSrc":"22529:4:101","nodeType":"YulIdentifier","src":"22529:4:101"}]},{"body":{"nativeSrc":"22570:22:101","nodeType":"YulBlock","src":"22570:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"22572:16:101","nodeType":"YulIdentifier","src":"22572:16:101"},"nativeSrc":"22572:18:101","nodeType":"YulFunctionCall","src":"22572:18:101"},"nativeSrc":"22572:18:101","nodeType":"YulExpressionStatement","src":"22572:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"22561:4:101","nodeType":"YulIdentifier","src":"22561:4:101"},{"name":"x","nativeSrc":"22567:1:101","nodeType":"YulIdentifier","src":"22567:1:101"}],"functionName":{"name":"gt","nativeSrc":"22558:2:101","nodeType":"YulIdentifier","src":"22558:2:101"},"nativeSrc":"22558:11:101","nodeType":"YulFunctionCall","src":"22558:11:101"},"nativeSrc":"22555:37:101","nodeType":"YulIf","src":"22555:37:101"}]},"name":"checked_sub_t_uint256","nativeSrc":"22470:128:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"22501:1:101","nodeType":"YulTypedName","src":"22501:1:101","type":""},{"name":"y","nativeSrc":"22504:1:101","nodeType":"YulTypedName","src":"22504:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"22510:4:101","nodeType":"YulTypedName","src":"22510:4:101","type":""}],"src":"22470:128:101"},{"body":{"nativeSrc":"22651:77:101","nodeType":"YulBlock","src":"22651:77:101","statements":[{"nativeSrc":"22661:16:101","nodeType":"YulAssignment","src":"22661:16:101","value":{"arguments":[{"name":"x","nativeSrc":"22672:1:101","nodeType":"YulIdentifier","src":"22672:1:101"},{"name":"y","nativeSrc":"22675:1:101","nodeType":"YulIdentifier","src":"22675:1:101"}],"functionName":{"name":"add","nativeSrc":"22668:3:101","nodeType":"YulIdentifier","src":"22668:3:101"},"nativeSrc":"22668:9:101","nodeType":"YulFunctionCall","src":"22668:9:101"},"variableNames":[{"name":"sum","nativeSrc":"22661:3:101","nodeType":"YulIdentifier","src":"22661:3:101"}]},{"body":{"nativeSrc":"22700:22:101","nodeType":"YulBlock","src":"22700:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"22702:16:101","nodeType":"YulIdentifier","src":"22702:16:101"},"nativeSrc":"22702:18:101","nodeType":"YulFunctionCall","src":"22702:18:101"},"nativeSrc":"22702:18:101","nodeType":"YulExpressionStatement","src":"22702:18:101"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"22692:1:101","nodeType":"YulIdentifier","src":"22692:1:101"},{"name":"sum","nativeSrc":"22695:3:101","nodeType":"YulIdentifier","src":"22695:3:101"}],"functionName":{"name":"gt","nativeSrc":"22689:2:101","nodeType":"YulIdentifier","src":"22689:2:101"},"nativeSrc":"22689:10:101","nodeType":"YulFunctionCall","src":"22689:10:101"},"nativeSrc":"22686:36:101","nodeType":"YulIf","src":"22686:36:101"}]},"name":"checked_add_t_uint256","nativeSrc":"22603:125:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"22634:1:101","nodeType":"YulTypedName","src":"22634:1:101","type":""},{"name":"y","nativeSrc":"22637:1:101","nodeType":"YulTypedName","src":"22637:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"22643:3:101","nodeType":"YulTypedName","src":"22643:3:101","type":""}],"src":"22603:125:101"},{"body":{"nativeSrc":"22781:128:101","nodeType":"YulBlock","src":"22781:128:101","statements":[{"nativeSrc":"22791:55:101","nodeType":"YulAssignment","src":"22791:55:101","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"22807:1:101","nodeType":"YulIdentifier","src":"22807:1:101"},{"kind":"number","nativeSrc":"22810:12:101","nodeType":"YulLiteral","src":"22810:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"22803:3:101","nodeType":"YulIdentifier","src":"22803:3:101"},"nativeSrc":"22803:20:101","nodeType":"YulFunctionCall","src":"22803:20:101"},{"arguments":[{"name":"y","nativeSrc":"22829:1:101","nodeType":"YulIdentifier","src":"22829:1:101"},{"kind":"number","nativeSrc":"22832:12:101","nodeType":"YulLiteral","src":"22832:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"22825:3:101","nodeType":"YulIdentifier","src":"22825:3:101"},"nativeSrc":"22825:20:101","nodeType":"YulFunctionCall","src":"22825:20:101"}],"functionName":{"name":"sub","nativeSrc":"22799:3:101","nodeType":"YulIdentifier","src":"22799:3:101"},"nativeSrc":"22799:47:101","nodeType":"YulFunctionCall","src":"22799:47:101"},"variableNames":[{"name":"diff","nativeSrc":"22791:4:101","nodeType":"YulIdentifier","src":"22791:4:101"}]},{"body":{"nativeSrc":"22881:22:101","nodeType":"YulBlock","src":"22881:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"22883:16:101","nodeType":"YulIdentifier","src":"22883:16:101"},"nativeSrc":"22883:18:101","nodeType":"YulFunctionCall","src":"22883:18:101"},"nativeSrc":"22883:18:101","nodeType":"YulExpressionStatement","src":"22883:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"22861:4:101","nodeType":"YulIdentifier","src":"22861:4:101"},{"kind":"number","nativeSrc":"22867:12:101","nodeType":"YulLiteral","src":"22867:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"gt","nativeSrc":"22858:2:101","nodeType":"YulIdentifier","src":"22858:2:101"},"nativeSrc":"22858:22:101","nodeType":"YulFunctionCall","src":"22858:22:101"},"nativeSrc":"22855:48:101","nodeType":"YulIf","src":"22855:48:101"}]},"name":"checked_sub_t_uint40","nativeSrc":"22733:176:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"22763:1:101","nodeType":"YulTypedName","src":"22763:1:101","type":""},{"name":"y","nativeSrc":"22766:1:101","nodeType":"YulTypedName","src":"22766:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"22772:4:101","nodeType":"YulTypedName","src":"22772:4:101","type":""}],"src":"22733:176:101"},{"body":{"nativeSrc":"22966:116:101","nodeType":"YulBlock","src":"22966:116:101","statements":[{"nativeSrc":"22976:20:101","nodeType":"YulAssignment","src":"22976:20:101","value":{"arguments":[{"name":"x","nativeSrc":"22991:1:101","nodeType":"YulIdentifier","src":"22991:1:101"},{"name":"y","nativeSrc":"22994:1:101","nodeType":"YulIdentifier","src":"22994:1:101"}],"functionName":{"name":"mul","nativeSrc":"22987:3:101","nodeType":"YulIdentifier","src":"22987:3:101"},"nativeSrc":"22987:9:101","nodeType":"YulFunctionCall","src":"22987:9:101"},"variableNames":[{"name":"product","nativeSrc":"22976:7:101","nodeType":"YulIdentifier","src":"22976:7:101"}]},{"body":{"nativeSrc":"23054:22:101","nodeType":"YulBlock","src":"23054:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"23056:16:101","nodeType":"YulIdentifier","src":"23056:16:101"},"nativeSrc":"23056:18:101","nodeType":"YulFunctionCall","src":"23056:18:101"},"nativeSrc":"23056:18:101","nodeType":"YulExpressionStatement","src":"23056:18:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nativeSrc":"23025:1:101","nodeType":"YulIdentifier","src":"23025:1:101"}],"functionName":{"name":"iszero","nativeSrc":"23018:6:101","nodeType":"YulIdentifier","src":"23018:6:101"},"nativeSrc":"23018:9:101","nodeType":"YulFunctionCall","src":"23018:9:101"},{"arguments":[{"name":"y","nativeSrc":"23032:1:101","nodeType":"YulIdentifier","src":"23032:1:101"},{"arguments":[{"name":"product","nativeSrc":"23039:7:101","nodeType":"YulIdentifier","src":"23039:7:101"},{"name":"x","nativeSrc":"23048:1:101","nodeType":"YulIdentifier","src":"23048:1:101"}],"functionName":{"name":"div","nativeSrc":"23035:3:101","nodeType":"YulIdentifier","src":"23035:3:101"},"nativeSrc":"23035:15:101","nodeType":"YulFunctionCall","src":"23035:15:101"}],"functionName":{"name":"eq","nativeSrc":"23029:2:101","nodeType":"YulIdentifier","src":"23029:2:101"},"nativeSrc":"23029:22:101","nodeType":"YulFunctionCall","src":"23029:22:101"}],"functionName":{"name":"or","nativeSrc":"23015:2:101","nodeType":"YulIdentifier","src":"23015:2:101"},"nativeSrc":"23015:37:101","nodeType":"YulFunctionCall","src":"23015:37:101"}],"functionName":{"name":"iszero","nativeSrc":"23008:6:101","nodeType":"YulIdentifier","src":"23008:6:101"},"nativeSrc":"23008:45:101","nodeType":"YulFunctionCall","src":"23008:45:101"},"nativeSrc":"23005:71:101","nodeType":"YulIf","src":"23005:71:101"}]},"name":"checked_mul_t_uint256","nativeSrc":"22914:168:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"22945:1:101","nodeType":"YulTypedName","src":"22945:1:101","type":""},{"name":"y","nativeSrc":"22948:1:101","nodeType":"YulTypedName","src":"22948:1:101","type":""}],"returnVariables":[{"name":"product","nativeSrc":"22954:7:101","nodeType":"YulTypedName","src":"22954:7:101","type":""}],"src":"22914:168:101"},{"body":{"nativeSrc":"23168:103:101","nodeType":"YulBlock","src":"23168:103:101","statements":[{"body":{"nativeSrc":"23214:16:101","nodeType":"YulBlock","src":"23214:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23223:1:101","nodeType":"YulLiteral","src":"23223:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"23226:1:101","nodeType":"YulLiteral","src":"23226:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23216:6:101","nodeType":"YulIdentifier","src":"23216:6:101"},"nativeSrc":"23216:12:101","nodeType":"YulFunctionCall","src":"23216:12:101"},"nativeSrc":"23216:12:101","nodeType":"YulExpressionStatement","src":"23216:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"23189:7:101","nodeType":"YulIdentifier","src":"23189:7:101"},{"name":"headStart","nativeSrc":"23198:9:101","nodeType":"YulIdentifier","src":"23198:9:101"}],"functionName":{"name":"sub","nativeSrc":"23185:3:101","nodeType":"YulIdentifier","src":"23185:3:101"},"nativeSrc":"23185:23:101","nodeType":"YulFunctionCall","src":"23185:23:101"},{"kind":"number","nativeSrc":"23210:2:101","nodeType":"YulLiteral","src":"23210:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"23181:3:101","nodeType":"YulIdentifier","src":"23181:3:101"},"nativeSrc":"23181:32:101","nodeType":"YulFunctionCall","src":"23181:32:101"},"nativeSrc":"23178:52:101","nodeType":"YulIf","src":"23178:52:101"},{"nativeSrc":"23239:26:101","nodeType":"YulAssignment","src":"23239:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"23255:9:101","nodeType":"YulIdentifier","src":"23255:9:101"}],"functionName":{"name":"mload","nativeSrc":"23249:5:101","nodeType":"YulIdentifier","src":"23249:5:101"},"nativeSrc":"23249:16:101","nodeType":"YulFunctionCall","src":"23249:16:101"},"variableNames":[{"name":"value0","nativeSrc":"23239:6:101","nodeType":"YulIdentifier","src":"23239:6:101"}]}]},"name":"abi_decode_tuple_t_bytes32_fromMemory","nativeSrc":"23087:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23134:9:101","nodeType":"YulTypedName","src":"23134:9:101","type":""},{"name":"dataEnd","nativeSrc":"23145:7:101","nodeType":"YulTypedName","src":"23145:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"23157:6:101","nodeType":"YulTypedName","src":"23157:6:101","type":""}],"src":"23087:184:101"},{"body":{"nativeSrc":"23405:119:101","nodeType":"YulBlock","src":"23405:119:101","statements":[{"nativeSrc":"23415:26:101","nodeType":"YulAssignment","src":"23415:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"23427:9:101","nodeType":"YulIdentifier","src":"23427:9:101"},{"kind":"number","nativeSrc":"23438:2:101","nodeType":"YulLiteral","src":"23438:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"23423:3:101","nodeType":"YulIdentifier","src":"23423:3:101"},"nativeSrc":"23423:18:101","nodeType":"YulFunctionCall","src":"23423:18:101"},"variableNames":[{"name":"tail","nativeSrc":"23415:4:101","nodeType":"YulIdentifier","src":"23415:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"23457:9:101","nodeType":"YulIdentifier","src":"23457:9:101"},{"name":"value0","nativeSrc":"23468:6:101","nodeType":"YulIdentifier","src":"23468:6:101"}],"functionName":{"name":"mstore","nativeSrc":"23450:6:101","nodeType":"YulIdentifier","src":"23450:6:101"},"nativeSrc":"23450:25:101","nodeType":"YulFunctionCall","src":"23450:25:101"},"nativeSrc":"23450:25:101","nodeType":"YulExpressionStatement","src":"23450:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23495:9:101","nodeType":"YulIdentifier","src":"23495:9:101"},{"kind":"number","nativeSrc":"23506:2:101","nodeType":"YulLiteral","src":"23506:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23491:3:101","nodeType":"YulIdentifier","src":"23491:3:101"},"nativeSrc":"23491:18:101","nodeType":"YulFunctionCall","src":"23491:18:101"},{"name":"value1","nativeSrc":"23511:6:101","nodeType":"YulIdentifier","src":"23511:6:101"}],"functionName":{"name":"mstore","nativeSrc":"23484:6:101","nodeType":"YulIdentifier","src":"23484:6:101"},"nativeSrc":"23484:34:101","nodeType":"YulFunctionCall","src":"23484:34:101"},"nativeSrc":"23484:34:101","nodeType":"YulExpressionStatement","src":"23484:34:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"23276:248:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23366:9:101","nodeType":"YulTypedName","src":"23366:9:101","type":""},{"name":"value1","nativeSrc":"23377:6:101","nodeType":"YulTypedName","src":"23377:6:101","type":""},{"name":"value0","nativeSrc":"23385:6:101","nodeType":"YulTypedName","src":"23385:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"23396:4:101","nodeType":"YulTypedName","src":"23396:4:101","type":""}],"src":"23276:248:101"},{"body":{"nativeSrc":"23561:95:101","nodeType":"YulBlock","src":"23561:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23578:1:101","nodeType":"YulLiteral","src":"23578:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"23585:3:101","nodeType":"YulLiteral","src":"23585:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"23590:10:101","nodeType":"YulLiteral","src":"23590:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"23581:3:101","nodeType":"YulIdentifier","src":"23581:3:101"},"nativeSrc":"23581:20:101","nodeType":"YulFunctionCall","src":"23581:20:101"}],"functionName":{"name":"mstore","nativeSrc":"23571:6:101","nodeType":"YulIdentifier","src":"23571:6:101"},"nativeSrc":"23571:31:101","nodeType":"YulFunctionCall","src":"23571:31:101"},"nativeSrc":"23571:31:101","nodeType":"YulExpressionStatement","src":"23571:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"23618:1:101","nodeType":"YulLiteral","src":"23618:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"23621:4:101","nodeType":"YulLiteral","src":"23621:4:101","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"23611:6:101","nodeType":"YulIdentifier","src":"23611:6:101"},"nativeSrc":"23611:15:101","nodeType":"YulFunctionCall","src":"23611:15:101"},"nativeSrc":"23611:15:101","nodeType":"YulExpressionStatement","src":"23611:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"23642:1:101","nodeType":"YulLiteral","src":"23642:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"23645:4:101","nodeType":"YulLiteral","src":"23645:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"23635:6:101","nodeType":"YulIdentifier","src":"23635:6:101"},"nativeSrc":"23635:15:101","nodeType":"YulFunctionCall","src":"23635:15:101"},"nativeSrc":"23635:15:101","nodeType":"YulExpressionStatement","src":"23635:15:101"}]},"name":"panic_error_0x12","nativeSrc":"23529:127:101","nodeType":"YulFunctionDefinition","src":"23529:127:101"},{"body":{"nativeSrc":"23768:184:101","nodeType":"YulBlock","src":"23768:184:101","statements":[{"body":{"nativeSrc":"23814:16:101","nodeType":"YulBlock","src":"23814:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23823:1:101","nodeType":"YulLiteral","src":"23823:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"23826:1:101","nodeType":"YulLiteral","src":"23826:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23816:6:101","nodeType":"YulIdentifier","src":"23816:6:101"},"nativeSrc":"23816:12:101","nodeType":"YulFunctionCall","src":"23816:12:101"},"nativeSrc":"23816:12:101","nodeType":"YulExpressionStatement","src":"23816:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"23789:7:101","nodeType":"YulIdentifier","src":"23789:7:101"},{"name":"headStart","nativeSrc":"23798:9:101","nodeType":"YulIdentifier","src":"23798:9:101"}],"functionName":{"name":"sub","nativeSrc":"23785:3:101","nodeType":"YulIdentifier","src":"23785:3:101"},"nativeSrc":"23785:23:101","nodeType":"YulFunctionCall","src":"23785:23:101"},{"kind":"number","nativeSrc":"23810:2:101","nodeType":"YulLiteral","src":"23810:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"23781:3:101","nodeType":"YulIdentifier","src":"23781:3:101"},"nativeSrc":"23781:32:101","nodeType":"YulFunctionCall","src":"23781:32:101"},"nativeSrc":"23778:52:101","nodeType":"YulIf","src":"23778:52:101"},{"nativeSrc":"23839:29:101","nodeType":"YulVariableDeclaration","src":"23839:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"23858:9:101","nodeType":"YulIdentifier","src":"23858:9:101"}],"functionName":{"name":"mload","nativeSrc":"23852:5:101","nodeType":"YulIdentifier","src":"23852:5:101"},"nativeSrc":"23852:16:101","nodeType":"YulFunctionCall","src":"23852:16:101"},"variables":[{"name":"value","nativeSrc":"23843:5:101","nodeType":"YulTypedName","src":"23843:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"23916:5:101","nodeType":"YulIdentifier","src":"23916:5:101"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"23877:38:101","nodeType":"YulIdentifier","src":"23877:38:101"},"nativeSrc":"23877:45:101","nodeType":"YulFunctionCall","src":"23877:45:101"},"nativeSrc":"23877:45:101","nodeType":"YulExpressionStatement","src":"23877:45:101"},{"nativeSrc":"23931:15:101","nodeType":"YulAssignment","src":"23931:15:101","value":{"name":"value","nativeSrc":"23941:5:101","nodeType":"YulIdentifier","src":"23941:5:101"},"variableNames":[{"name":"value0","nativeSrc":"23931:6:101","nodeType":"YulIdentifier","src":"23931:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPremiumsAccount_$29276_fromMemory","nativeSrc":"23661:291:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23734:9:101","nodeType":"YulTypedName","src":"23734:9:101","type":""},{"name":"dataEnd","nativeSrc":"23745:7:101","nodeType":"YulTypedName","src":"23745:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"23757:6:101","nodeType":"YulTypedName","src":"23757:6:101","type":""}],"src":"23661:291:101"},{"body":{"nativeSrc":"24059:184:101","nodeType":"YulBlock","src":"24059:184:101","statements":[{"body":{"nativeSrc":"24105:16:101","nodeType":"YulBlock","src":"24105:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24114:1:101","nodeType":"YulLiteral","src":"24114:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"24117:1:101","nodeType":"YulLiteral","src":"24117:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24107:6:101","nodeType":"YulIdentifier","src":"24107:6:101"},"nativeSrc":"24107:12:101","nodeType":"YulFunctionCall","src":"24107:12:101"},"nativeSrc":"24107:12:101","nodeType":"YulExpressionStatement","src":"24107:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"24080:7:101","nodeType":"YulIdentifier","src":"24080:7:101"},{"name":"headStart","nativeSrc":"24089:9:101","nodeType":"YulIdentifier","src":"24089:9:101"}],"functionName":{"name":"sub","nativeSrc":"24076:3:101","nodeType":"YulIdentifier","src":"24076:3:101"},"nativeSrc":"24076:23:101","nodeType":"YulFunctionCall","src":"24076:23:101"},{"kind":"number","nativeSrc":"24101:2:101","nodeType":"YulLiteral","src":"24101:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"24072:3:101","nodeType":"YulIdentifier","src":"24072:3:101"},"nativeSrc":"24072:32:101","nodeType":"YulFunctionCall","src":"24072:32:101"},"nativeSrc":"24069:52:101","nodeType":"YulIf","src":"24069:52:101"},{"nativeSrc":"24130:29:101","nodeType":"YulVariableDeclaration","src":"24130:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"24149:9:101","nodeType":"YulIdentifier","src":"24149:9:101"}],"functionName":{"name":"mload","nativeSrc":"24143:5:101","nodeType":"YulIdentifier","src":"24143:5:101"},"nativeSrc":"24143:16:101","nodeType":"YulFunctionCall","src":"24143:16:101"},"variables":[{"name":"value","nativeSrc":"24134:5:101","nodeType":"YulTypedName","src":"24134:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"24207:5:101","nodeType":"YulIdentifier","src":"24207:5:101"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"24168:38:101","nodeType":"YulIdentifier","src":"24168:38:101"},"nativeSrc":"24168:45:101","nodeType":"YulFunctionCall","src":"24168:45:101"},"nativeSrc":"24168:45:101","nodeType":"YulExpressionStatement","src":"24168:45:101"},{"nativeSrc":"24222:15:101","nodeType":"YulAssignment","src":"24222:15:101","value":{"name":"value","nativeSrc":"24232:5:101","nodeType":"YulIdentifier","src":"24232:5:101"},"variableNames":[{"name":"value0","nativeSrc":"24222:6:101","nodeType":"YulIdentifier","src":"24222:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory","nativeSrc":"23957:286:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24025:9:101","nodeType":"YulTypedName","src":"24025:9:101","type":""},{"name":"dataEnd","nativeSrc":"24036:7:101","nodeType":"YulTypedName","src":"24036:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"24048:6:101","nodeType":"YulTypedName","src":"24048:6:101","type":""}],"src":"23957:286:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function validator_revert_contract_IUnderwriter(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IUnderwriter_$29363(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IUnderwriter(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptrt_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        if gt(add(add(_1, shl(5, length)), 0x20), dataEnd) { revert(0, 0) }\n        value0 := add(_1, 0x20)\n        value1 := length\n        let value := calldataload(add(headStart, 0x20))\n        validator_revert_contract_IUnderwriter(value)\n        value2 := value\n    }\n    function validator_revert_uint40(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint40(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_uint40(value)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function allocate_memory_2372() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xe0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory_2373() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0180)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_tuple_t_uint256t_uint256t_uint40t_uint40t_struct$_Params_$22230_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        let _1 := sub(dataEnd, headStart)\n        if slt(_1, 352) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_uint40(value_2)\n        value2 := value_2\n        let value_3 := calldataload(add(headStart, 96))\n        validator_revert_uint40(value_3)\n        value3 := value_3\n        if slt(add(_1, not(127)), 0xe0) { revert(0, 0) }\n        let value_4 := allocate_memory_2372()\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(value_4, value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 160))\n        mstore(add(value_4, 32), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(value_4, 64), value_7)\n        let value_8 := 0\n        value_8 := calldataload(add(headStart, 0xe0))\n        mstore(add(value_4, 96), value_8)\n        let value_9 := 0\n        value_9 := calldataload(add(headStart, 256))\n        mstore(add(value_4, 128), value_9)\n        let value_10 := 0\n        value_10 := calldataload(add(headStart, 288))\n        mstore(add(value_4, 160), value_10)\n        let value_11 := 0\n        value_11 := calldataload(add(headStart, 320))\n        mstore(add(value_4, 192), value_11)\n        value4 := value_4\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_contract$_IUnderwriter_$29363t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IUnderwriter(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IUnderwriter(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IUnderwriter(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let array := allocate_memory(add(and(add(length, 0x1f), not(31)), 32))\n        mstore(array, length)\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        calldatacopy(add(array, 32), add(_1, 32), length)\n        mstore(add(add(array, length), 32), 0)\n        value1 := array\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_bytes_calldata(offset, end) -> arrayPos, length\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        length := calldataload(offset)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        arrayPos := add(offset, 0x20)\n        if gt(add(add(offset, length), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n    }\n    function abi_encode_uint40(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffff))\n    }\n    function abi_encode_struct_PolicyData(value, pos)\n    {\n        mstore(pos, mload(value))\n        mstore(add(pos, 0x20), mload(add(value, 0x20)))\n        mstore(add(pos, 0x40), mload(add(value, 0x40)))\n        mstore(add(pos, 0x60), mload(add(value, 0x60)))\n        mstore(add(pos, 0x80), mload(add(value, 0x80)))\n        mstore(add(pos, 0xa0), mload(add(value, 0xa0)))\n        mstore(add(pos, 0xc0), mload(add(value, 0xc0)))\n        mstore(add(pos, 0xe0), mload(add(value, 0xe0)))\n        mstore(add(pos, 0x0100), mload(add(value, 0x0100)))\n        mstore(add(pos, 0x0120), mload(add(value, 0x0120)))\n        let memberValue0 := mload(add(value, 0x0140))\n        abi_encode_uint40(memberValue0, add(pos, 0x0140))\n        let memberValue0_1 := mload(add(value, 0x0160))\n        abi_encode_uint40(memberValue0_1, add(pos, 0x0160))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 384)\n        abi_encode_struct_PolicyData(value0, headStart)\n    }\n    function abi_encode_tuple_t_contract$_IPremiumsAccount_$29276__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_bytes_calldata_ptrt_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n        let value := calldataload(add(headStart, 32))\n        validator_revert_contract_IUnderwriter(value)\n        value2 := value\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        mcopy(add(headStart, 64), add(value0, 32), length)\n        mstore(add(add(headStart, length), 64), 0)\n        tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_uint256(headStart, dataEnd) -> value0, value1\n    {\n        let _1 := sub(dataEnd, headStart)\n        if slt(_1, 416) { revert(0, 0) }\n        if slt(_1, 384) { revert(0, 0) }\n        value0 := headStart\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IUnderwriter(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_contract$_IUnderwriter_$29363__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_contract$_IUnderwriter_$29363_t_contract$_IUnderwriter_$29363__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function access_calldata_tail_t_bytes_calldata_ptr(base_ref, ptr_to_tail) -> addr, length\n    {\n        let rel_offset_of_tail := calldataload(ptr_to_tail)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(30)))) { revert(0, 0) }\n        let addr_1 := add(base_ref, rel_offset_of_tail)\n        length := calldataload(addr_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        addr := add(addr_1, 0x20)\n        if sgt(addr, sub(calldatasize(), length)) { revert(0, 0) }\n    }\n    function abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_bytes_calldata_ptr__to_t_address_t_bytes_memory_ptr__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), value2)\n        calldatacopy(add(headStart, 96), value1, value2)\n        mstore(add(add(headStart, value2), 96), 0)\n        tail := add(add(headStart, and(add(value2, 31), not(31))), 96)\n    }\n    function abi_decode_uint40_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_uint40(value)\n    }\n    function abi_decode_struct_PolicyData_fromMemory(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0x0180) { revert(0, 0) }\n        value := allocate_memory_2373()\n        let value_1 := 0\n        value_1 := mload(headStart)\n        mstore(value, value_1)\n        let value_2 := 0\n        value_2 := mload(add(headStart, 32))\n        mstore(add(value, 32), value_2)\n        let value_3 := 0\n        value_3 := mload(add(headStart, 64))\n        mstore(add(value, 64), value_3)\n        let value_4 := 0\n        value_4 := mload(add(headStart, 96))\n        mstore(add(value, 96), value_4)\n        let value_5 := 0\n        value_5 := mload(add(headStart, 128))\n        mstore(add(value, 128), value_5)\n        let value_6 := 0\n        value_6 := mload(add(headStart, 160))\n        mstore(add(value, 160), value_6)\n        let value_7 := 0\n        value_7 := mload(add(headStart, 192))\n        mstore(add(value, 192), value_7)\n        let value_8 := 0\n        value_8 := mload(add(headStart, 224))\n        mstore(add(value, 224), value_8)\n        let value_9 := 0\n        value_9 := mload(add(headStart, 256))\n        mstore(add(value, 256), value_9)\n        let value_10 := 0\n        value_10 := mload(add(headStart, 288))\n        mstore(add(value, 288), value_10)\n        mstore(add(value, 320), abi_decode_uint40_fromMemory(add(headStart, 320)))\n        mstore(add(value, 352), abi_decode_uint40_fromMemory(add(headStart, 352)))\n    }\n    function abi_decode_uint96_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_struct_Params_fromMemory(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0xe0) { revert(0, 0) }\n        value := allocate_memory_2372()\n        let value_1 := 0\n        value_1 := mload(headStart)\n        mstore(value, value_1)\n        let value_2 := 0\n        value_2 := mload(add(headStart, 32))\n        mstore(add(value, 32), value_2)\n        let value_3 := 0\n        value_3 := mload(add(headStart, 64))\n        mstore(add(value, 64), value_3)\n        let value_4 := 0\n        value_4 := mload(add(headStart, 96))\n        mstore(add(value, 96), value_4)\n        let value_5 := 0\n        value_5 := mload(add(headStart, 128))\n        mstore(add(value, 128), value_5)\n        let value_6 := 0\n        value_6 := mload(add(headStart, 160))\n        mstore(add(value, 160), value_6)\n        let value_7 := 0\n        value_7 := mload(add(headStart, 192))\n        mstore(add(value, 192), value_7)\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$22230_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 768) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_fromMemory(headStart, dataEnd)\n        let value := 0\n        value := mload(add(headStart, 384))\n        value1 := value\n        let value_1 := 0\n        value_1 := mload(add(headStart, 416))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := mload(add(headStart, 448))\n        value3 := value_2\n        let value_3 := mload(add(headStart, 480))\n        validator_revert_uint40(value_3)\n        value4 := value_3\n        value5 := abi_decode_uint96_fromMemory(add(headStart, 512))\n        value6 := abi_decode_struct_Params_fromMemory(add(headStart, 544), dataEnd)\n    }\n    function abi_encode_tuple_t_uint40_t_uint40__to_t_uint40_t_uint40__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffff))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_struct$_PolicyData_$22256_memory_ptr_t_address_t_uint96__to_t_struct$_PolicyData_$22256_memory_ptr_t_struct$_PolicyData_$22256_memory_ptr_t_address_t_uint96__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 832)\n        abi_encode_struct_PolicyData(value0, headStart)\n        abi_encode_struct_PolicyData(value1, add(headStart, 384))\n        mstore(add(headStart, 768), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 800), and(value3, 0xffffffffffffffffffffffff))\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := mload(headStart)\n        value0 := value\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 480) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_fromMemory(headStart, dataEnd)\n        let value := 0\n        value := mload(add(headStart, 384))\n        value1 := value\n        let value_1 := 0\n        value_1 := mload(add(headStart, 416))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := mload(add(headStart, 448))\n        value3 := value_2\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 480)\n        abi_encode_struct_PolicyData(value0, headStart)\n        mstore(add(headStart, 384), value1)\n        mstore(add(headStart, 416), value2)\n        mstore(add(headStart, 448), value3)\n    }\n    function abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$22230_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 384) { revert(0, 0) }\n        let value := 0\n        value := mload(headStart)\n        value0 := value\n        let value_1 := 0\n        value_1 := mload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := mload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := mload(add(headStart, 96))\n        validator_revert_uint40(value_3)\n        value3 := value_3\n        value4 := abi_decode_uint96_fromMemory(add(headStart, 128))\n        value5 := abi_decode_struct_Params_fromMemory(add(headStart, 160), dataEnd)\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_address_t_address_t_uint96__to_t_struct$_PolicyData_$22256_memory_ptr_t_address_t_address_t_uint96__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 480)\n        abi_encode_struct_PolicyData(value0, headStart)\n        mstore(add(headStart, 384), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 416), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 448), and(value3, 0xffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$22256_calldata_ptr_t_uint256__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 416)\n        let value := 0\n        value := calldataload(value0)\n        mstore(headStart, value)\n        let value_1 := 0\n        value_1 := calldataload(add(value0, 0x20))\n        mstore(add(headStart, 0x20), value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(value0, 0x40))\n        mstore(add(headStart, 0x40), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(value0, 0x60))\n        mstore(add(headStart, 0x60), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(value0, 0x80))\n        mstore(add(headStart, 0x80), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(value0, 0xa0))\n        mstore(add(headStart, 0xa0), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(value0, 0xc0))\n        mstore(add(headStart, 0xc0), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(value0, 0xe0))\n        mstore(add(headStart, 0xe0), value_7)\n        let value_8 := 0\n        value_8 := calldataload(add(value0, 0x0100))\n        mstore(add(headStart, 0x0100), value_8)\n        let value_9 := 0\n        value_9 := calldataload(add(value0, 0x0120))\n        mstore(add(headStart, 0x0120), value_9)\n        let memberValue0 := abi_decode_uint40(add(value0, 0x0140))\n        abi_encode_uint40(memberValue0, add(headStart, 0x0140))\n        let memberValue0_1 := abi_decode_uint40(add(value0, 0x0160))\n        abi_encode_uint40(memberValue0_1, add(headStart, 0x0160))\n        mstore(add(headStart, 384), value1)\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IUnderwriter(value)\n        value0 := value\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function checked_sub_t_uint40(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffffff), and(y, 0xffffffffff))\n        if gt(diff, 0xffffffffff) { panic_error_0x11() }\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        product := mul(x, y)\n        if iszero(or(iszero(x), eq(y, div(product, x)))) { panic_error_0x11() }\n    }\n    function abi_decode_tuple_t_bytes32_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function abi_decode_tuple_t_contract$_IPremiumsAccount_$29276_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IUnderwriter(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IUnderwriter(value)\n        value0 := value\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"7234":[{"length":32,"start":3803},{"length":32,"start":3844},{"length":32,"start":4174}],"25474":[{"length":32,"start":471},{"length":32,"start":1822},{"length":32,"start":2094},{"length":32,"start":2560},{"length":32,"start":2723},{"length":32,"start":2988},{"length":32,"start":5093}],"28047":[{"length":32,"start":653},{"length":32,"start":4761}]},"linkReferences":{},"object":"608060405260043610610105575f3560e01c806368beecf911610092578063ad3cb1cc11610062578063ad3cb1cc146102ef578063bd644c561461032c578063deaa59df1461034b578063e5a6b10f1461036a578063f00db2601461037e575f5ffd5b806368beecf91461025357806373a952e81461027f57806373d0efd0146102b15780638dab1952146102d0575f5ffd5b8063485cc955116100d8578063485cc955146101aa5780634d15eb03146101c95780634f1ef2861461020f578063521eb2731461022257806352d1902d1461023f575f5ffd5b806301ffc9a71461010957806308bb5f7b1461013d5780631f0f3e181461015e57806323d09ac91461017d575b5f5ffd5b348015610114575f5ffd5b50610128610123366004611650565b61039b565b60405190151581526020015b60405180910390f35b348015610148575f5ffd5b5061015c61015736600461168b565b6103c6565b005b348015610169575f5ffd5b5061015c6101783660046116a6565b610469565b348015610188575f5ffd5b5061019c6101973660046117d7565b6104af565b604051908152602001610134565b3480156101b5575f5ffd5b5061015c6101c4366004611889565b6104cb565b3480156101d4575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610134565b61015c61021d3660046118c0565b6105c4565b34801561022d575f5ffd5b506033546001600160a01b03166101f7565b34801561024a575f5ffd5b5061019c6105e3565b34801561025e575f5ffd5b5061027261026d3660046119a9565b6105fe565b6040516101349190611a7e565b34801561028a575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000006101f7565b3480156102bc575f5ffd5b5061015c6102cb3660046119a9565b6107a8565b3480156102db575f5ffd5b506102726102ea366004611a8d565b6108b3565b3480156102fa575f5ffd5b5061031f604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516101349190611ad4565b348015610337575f5ffd5b5061015c610346366004611b09565b610a8c565b348015610356575f5ffd5b5061015c61036536600461168b565b610b0b565b348015610375575f5ffd5b506101f7610ba9565b348015610389575f5ffd5b506032546001600160a01b03166101f7565b5f6103a582610c2f565b806103c057506001600160e01b031982166321b7e09b60e01b145b92915050565b806001600160a01b0381166103ff57604051633f8317d160e21b81526001600160a01b0390911660048201526024015b60405180910390fd5b50603254604080516001600160a01b03928316815291831660208301527fae536502f25a82de70abed467008489d54fa0cbf58cdc51718efe6d49406724f910160405180910390a1603280546001600160a01b0319166001600160a01b0392909216919091179055565b5f5b828110156104a9576104a084848381811061048857610488611b3a565b905060200281019061049a9190611b4e565b846108b3565b5060010161046b565b50505050565b5f6104bd8287878688610c64565b60e001519695505050505050565b5f6104d4610e8e565b805490915060ff600160401b82041615906001600160401b03165f811580156104fa5750825b90505f826001600160401b031660011480156105155750303b155b905081158015610523575080155b156105415760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561056b57845460ff60401b1916600160401b1785555b6105758787610eb6565b83156105bb57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6105cc610ed0565b6105d582610f76565b6105df8282610f82565b5050565b5f6105ec611043565b505f5160206120255f395f51905f5290565b6106066115ed565b603254604051634dd4a16b60e11b81525f918291829182918291829182916001600160a01b031690639ba942d6906106469030908e908e90600401611b90565b61030060405180830381865afa158015610662573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106869190611cf8565b96509650965096509650965096505f1985036106b1576106ae868589610140015186856104af565b94505b4264ffffffffff168364ffffffffff1610156106f15760405163a67fcb1d60e01b815264ffffffffff8085166004830152421660248201526044016103f6565b61070481868887878c610140015161108c565b60405163663d833760e01b81529098506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063663d833790610759908a908c9033908890600401611d71565b6020604051808303815f875af1158015610775573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107999190611db9565b88525050505050505092915050565b60325460405163197c2bfd60e11b81525f918291829182916001600160a01b03909116906332f857fa906107e49030908a908a90600401611b90565b6101e060405180830381865afa158015610800573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108249190611dd0565b93509350935093507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316636f520b73858585856040518563ffffffff1660e01b815260040161087e9493929190611e0f565b5f604051808303815f87803b158015610895575f5ffd5b505af11580156108a7573d5f5f3e3d5ffd5b50505050505050505050565b6108bb6115ed565b603254604051635d04bd1560e11b81525f91829182918291829182916001600160a01b039091169063ba097a2a906108fb9030908e908e90600401611b90565b61018060405180830381865afa158015610917573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061093b9190611e3c565b9550955095509550955095505f4290505f1986036109635761096087868387866104af565b95505b838164ffffffffff808216908316116109a05760405163a67fcb1d60e01b815264ffffffffff9283166004820152911660248201526044016103f6565b508990506001600160a01b0381166109d757604051632c74914160e11b81526001600160a01b0390911660048201526024016103f6565b506109e682878988888661108c565b604051630d100acb60e01b81529098506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690630d100acb90610a3b908b9033908e908990600401611e9d565b6020604051808303815f875af1158015610a57573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7b9190611db9565b8852505050505050505b9392505050565b604051635eb2262b60e11b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063bd644c5690610ada9085908590600401611edf565b5f604051808303815f87803b158015610af1575f5ffd5b505af1158015610b03573d5f5f3e3d5ffd5b505050505050565b806001600160a01b038116610b3f57604051633146914d60e11b81526001600160a01b0390911660048201526024016103f6565b50603354604080516001600160a01b03928316815291831660208301527fe3d815eb4e0fdd9b02285235cb46b09f34bee9bd0eb8d8dc3a1fe84694079bc2910160405180910390a1603380546001600160a01b0319166001600160a01b0392909216919091179055565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c06573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c2a9190611f87565b905090565b5f6001600160e01b031982166301ffc9a760e01b14806103c057506001600160e01b03198216634d15eb0360e01b1492915050565b610ca46040518061010001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b8551610cc590670de0b6b3a7640000610cbe888883611193565b9190611193565b81526020860151610ce0908690670de0b6b3a7640000611193565b6020820181905281511015610d0a578051602082018051610d02908390611fb6565b905250610d11565b5f60208201525b6040860151610d2a908690670de0b6b3a7640000611193565b604082015260208101518151610d409190611fc9565b81604001511115610d755760208101518151610d5c9190611fc9565b81604001818151610d6d9190611fb6565b905250610d7c565b5f60408201525b610dc1610d898385611fdc565b64ffffffffff168760a00151610d9f9190611ff9565b610db56301e13380670de0b6b3a7640000611ff9565b60208401519190611193565b6060820152610e0b610dd38385611fdc565b64ffffffffff168760c00151610de99190611ff9565b610dff6301e13380670de0b6b3a7640000611ff9565b60408401519190611193565b6080820181905260608201515f91610e2291611fc9565b6080880151909150610e3e908290670de0b6b3a7640000611193565b60608801518351610e5791670de0b6b3a7640000611193565b610e619190611fc9565b60a0830181905282518291610e7591611fc9565b610e7f9190611fc9565b60e08301525095945050505050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a006103c0565b610ebe611243565b610ec6611268565b6105df8282611270565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480610f5657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610f4a5f5160206120255f395f51905f52546001600160a01b031690565b6001600160a01b031614155b15610f745760405163703e46dd60e11b815260040160405180910390fd5b565b610f7f8161128a565b50565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015610fdc575060408051601f3d908101601f19168201909252610fd991810190611db9565b60015b61100457604051634c9c8ce360e01b81526001600160a01b03831660048201526024016103f6565b5f5160206120255f395f51905f52811461103457604051632a87526960e21b8152600481018290526024016103f6565b61103e8383611348565b505050565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f745760405163703e46dd60e11b815260040160405180910390fd5b6110946115ed565b85858082106110bf5760405163319308d960e11b8152600481019290925260248201526044016103f6565b50506110c96115ed565b602081018690526080810185905264ffffffffff80841661014083015284166101608201525f6110fc8988888888610c64565b805160a0808501919091526020820151604080860191909152820151606080860191909152820151610100850152608082015161012085015281015160c084015260e08101519091508890818111156111715760405163fc09662760e01b8152600481019290925260248201526044016103f6565b505060e08101516111829089611fb6565b60e083015250979650505050505050565b5f5f5f6111a0868661139d565b91509150815f036111c4578381816111ba576111ba612010565b0492505050610a85565b8184116111db576111db60038515026011186113b9565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b61124b6113ca565b610f7457604051631afcd79f60e31b815260040160405180910390fd5b610f74611243565b611278611243565b61128181610b0b565b6105df826103c6565b611293816113e3565b5f8190507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112fd573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113219190611f87565b6001600160a01b0316146105df5760405163050f87e160e21b815260040160405180910390fd5b61135182611494565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156113955761103e82826114f7565b6105df611597565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f6113d3610e8e565b54600160401b900460ff16919050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015611449573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061146d9190611f87565b6001600160a01b031614610f7f5760405163d2b3d33f60e01b815260040160405180910390fd5b806001600160a01b03163b5f036114c957604051634c9c8ce360e01b81526001600160a01b03821660048201526024016103f6565b5f5160206120255f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f61150484846115b6565b905080801561152557505f3d118061152557505f846001600160a01b03163b115b1561153a576115326115c9565b9150506103c0565b801561156457604051639996b31560e01b81526001600160a01b03851660048201526024016103f6565b3d15611577576115726115e2565b611590565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b3415610f745760405163b398979f60e01b815260040160405180910390fd5b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b6040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b5f60208284031215611660575f5ffd5b81356001600160e01b031981168114610a85575f5ffd5b6001600160a01b0381168114610f7f575f5ffd5b5f6020828403121561169b575f5ffd5b8135610a8581611677565b5f5f5f604084860312156116b8575f5ffd5b83356001600160401b038111156116cd575f5ffd5b8401601f810186136116dd575f5ffd5b80356001600160401b038111156116f2575f5ffd5b8660208260051b8401011115611706575f5ffd5b60209182019450925084013561171b81611677565b809150509250925092565b64ffffffffff81168114610f7f575f5ffd5b803561174381611726565b919050565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b038111828210171561177e5761177e611748565b60405290565b60405161018081016001600160401b038111828210171561177e5761177e611748565b604051601f8201601f191681016001600160401b03811182821017156117cf576117cf611748565b604052919050565b5f5f5f5f5f8587036101608112156117ed575f5ffd5b8635955060208701359450604087013561180681611726565b9350606087013561181681611726565b925060e0607f1982011215611829575f5ffd5b5061183261175c565b608087810135825260a080890135602084015260c0808a0135604085015260e08a013560608501526101008a0135928401929092526101208901359083015261014090970135968101969096525092959194509290565b5f5f6040838503121561189a575f5ffd5b82356118a581611677565b915060208301356118b581611677565b809150509250929050565b5f5f604083850312156118d1575f5ffd5b82356118dc81611677565b915060208301356001600160401b038111156118f6575f5ffd5b8301601f81018513611906575f5ffd5b80356001600160401b0381111561191f5761191f611748565b611932601f8201601f19166020016117a7565b818152866020838501011115611946575f5ffd5b816020840160208301375f602083830101528093505050509250929050565b5f5f83601f840112611975575f5ffd5b5081356001600160401b0381111561198b575f5ffd5b6020830191508360208285010111156119a2575f5ffd5b9250929050565b5f5f602083850312156119ba575f5ffd5b82356001600160401b038111156119cf575f5ffd5b6119db85828601611965565b90969095509350505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e0830152610100810151610100830152610120810151610120830152610140810151611a6361014084018264ffffffffff169052565b5061016081015161103e61016084018264ffffffffff169052565b61018081016103c082846119e7565b5f5f5f60408486031215611a9f575f5ffd5b83356001600160401b03811115611ab4575f5ffd5b611ac086828701611965565b909450925050602084013561171b81611677565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f5f8284036101a0811215611b1c575f5ffd5b610180811215611b2a575f5ffd5b5091936101808501359350915050565b634e487b7160e01b5f52603260045260245ffd5b5f5f8335601e19843603018112611b63575f5ffd5b8301803591506001600160401b03821115611b7c575f5ffd5b6020019150368190038213156119a2575f5ffd5b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b805161174381611726565b5f6101808284031215611beb575f5ffd5b611bf3611784565b825181526020808401519082015260408084015190820152606080840151908201526080808401519082015260a0808401519082015260c0808401519082015260e08084015190820152610100808401519082015261012080840151908201529050611c626101408301611bcf565b610140820152611c756101608301611bcf565b61016082015292915050565b80516001600160601b0381168114611743575f5ffd5b5f60e08284031215611ca7575f5ffd5b611caf61175c565b825181526020808401519082015260408084015190820152606080840151908201526080808401519082015260a0808401519082015260c0928301519281019290925250919050565b5f5f5f5f5f5f5f610300888a031215611d0f575f5ffd5b611d198989611bda565b6101808901516101a08a01516101c08b01516101e08c0151939a5091985096509450611d4481611726565b9250611d536102008901611c81565b9150611d63896102208a01611c97565b905092959891949750929550565b6103408101611d8082876119e7565b611d8e6101808301866119e7565b6001600160a01b03939093166103008201526001600160601b03919091166103209091015292915050565b5f60208284031215611dc9575f5ffd5b5051919050565b5f5f5f5f6101e08587031215611de4575f5ffd5b611dee8686611bda565b6101808601516101a08701516101c090970151919890975090945092505050565b6101e08101611e1e82876119e7565b84610180830152836101a0830152826101c083015295945050505050565b5f5f5f5f5f5f6101808789031215611e52575f5ffd5b86516020880151604089015160608a01519298509096509450611e7481611726565b9250611e8260808801611c81565b9150611e918860a08901611c97565b90509295509295509295565b6101e08101611eac82876119e7565b6001600160a01b03948516610180830152929093166101a08401526001600160601b03166101c090920191909152919050565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e08084013590820152610100808401359082015261012080840135908201526101a08101611f516101408501611738565b64ffffffffff16610140830152611f6b6101608501611738565b64ffffffffff1661016083015261018090910191909152919050565b5f60208284031215611f97575f5ffd5b8151610a8581611677565b634e487b7160e01b5f52601160045260245ffd5b818103818111156103c0576103c0611fa2565b808201808211156103c0576103c0611fa2565b64ffffffffff82811682821603908111156103c0576103c0611fa2565b80820281158282048414176103c0576103c0611fa2565b634e487b7160e01b5f52601260045260245ffdfe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca2646970667358221220edc61d32e4b136dd05376b7b6b80e1aed5ae1f9cd496aaccb31494d2872f455664736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x105 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x68BEECF9 GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x2EF JUMPI DUP1 PUSH4 0xBD644C56 EQ PUSH2 0x32C JUMPI DUP1 PUSH4 0xDEAA59DF EQ PUSH2 0x34B JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x36A JUMPI DUP1 PUSH4 0xF00DB260 EQ PUSH2 0x37E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x68BEECF9 EQ PUSH2 0x253 JUMPI DUP1 PUSH4 0x73A952E8 EQ PUSH2 0x27F JUMPI DUP1 PUSH4 0x73D0EFD0 EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0x8DAB1952 EQ PUSH2 0x2D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x485CC955 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0x485CC955 EQ PUSH2 0x1AA JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x1C9 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x20F JUMPI DUP1 PUSH4 0x521EB273 EQ PUSH2 0x222 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x23F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x109 JUMPI DUP1 PUSH4 0x8BB5F7B EQ PUSH2 0x13D JUMPI DUP1 PUSH4 0x1F0F3E18 EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0x23D09AC9 EQ PUSH2 0x17D JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x114 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x128 PUSH2 0x123 CALLDATASIZE PUSH1 0x4 PUSH2 0x1650 JUMP JUMPDEST PUSH2 0x39B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x148 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x157 CALLDATASIZE PUSH1 0x4 PUSH2 0x168B JUMP JUMPDEST PUSH2 0x3C6 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x169 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x178 CALLDATASIZE PUSH1 0x4 PUSH2 0x16A6 JUMP JUMPDEST PUSH2 0x469 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x188 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x19C PUSH2 0x197 CALLDATASIZE PUSH1 0x4 PUSH2 0x17D7 JUMP JUMPDEST PUSH2 0x4AF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x134 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x1C4 CALLDATASIZE PUSH1 0x4 PUSH2 0x1889 JUMP JUMPDEST PUSH2 0x4CB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1D4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x134 JUMP JUMPDEST PUSH2 0x15C PUSH2 0x21D CALLDATASIZE PUSH1 0x4 PUSH2 0x18C0 JUMP JUMPDEST PUSH2 0x5C4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x22D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1F7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x24A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x19C PUSH2 0x5E3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x272 PUSH2 0x26D CALLDATASIZE PUSH1 0x4 PUSH2 0x19A9 JUMP JUMPDEST PUSH2 0x5FE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x1A7E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x1F7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x2CB CALLDATASIZE PUSH1 0x4 PUSH2 0x19A9 JUMP JUMPDEST PUSH2 0x7A8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2DB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x272 PUSH2 0x2EA CALLDATASIZE PUSH1 0x4 PUSH2 0x1A8D JUMP JUMPDEST PUSH2 0x8B3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2FA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x31F PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x1AD4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x337 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x346 CALLDATASIZE PUSH1 0x4 PUSH2 0x1B09 JUMP JUMPDEST PUSH2 0xA8C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x356 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x365 CALLDATASIZE PUSH1 0x4 PUSH2 0x168B JUMP JUMPDEST PUSH2 0xB0B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x375 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1F7 PUSH2 0xBA9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x389 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x32 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1F7 JUMP JUMPDEST PUSH0 PUSH2 0x3A5 DUP3 PUSH2 0xC2F JUMP JUMPDEST DUP1 PUSH2 0x3C0 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x21B7E09B PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x3FF JUMPI PUSH1 0x40 MLOAD PUSH4 0x3F8317D1 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x32 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0xAE536502F25A82DE70ABED467008489D54FA0CBF58CDC51718EFE6D49406724F SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x32 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x4A9 JUMPI PUSH2 0x4A0 DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x488 JUMPI PUSH2 0x488 PUSH2 0x1B3A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x49A SWAP2 SWAP1 PUSH2 0x1B4E JUMP JUMPDEST DUP5 PUSH2 0x8B3 JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x46B JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x4BD DUP3 DUP8 DUP8 DUP7 DUP9 PUSH2 0xC64 JUMP JUMPDEST PUSH1 0xE0 ADD MLOAD SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x4D4 PUSH2 0xE8E JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x4FA JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x515 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x523 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x541 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x56B JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x575 DUP8 DUP8 PUSH2 0xEB6 JUMP JUMPDEST DUP4 ISZERO PUSH2 0x5BB JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x5CC PUSH2 0xED0 JUMP JUMPDEST PUSH2 0x5D5 DUP3 PUSH2 0xF76 JUMP JUMPDEST PUSH2 0x5DF DUP3 DUP3 PUSH2 0xF82 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x5EC PUSH2 0x1043 JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2025 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x606 PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x32 SLOAD PUSH1 0x40 MLOAD PUSH4 0x4DD4A16B PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x9BA942D6 SWAP1 PUSH2 0x646 SWAP1 ADDRESS SWAP1 DUP15 SWAP1 DUP15 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B90 JUMP JUMPDEST PUSH2 0x300 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x662 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x686 SWAP2 SWAP1 PUSH2 0x1CF8 JUMP JUMPDEST SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP PUSH0 NOT DUP6 SUB PUSH2 0x6B1 JUMPI PUSH2 0x6AE DUP7 DUP6 DUP10 PUSH2 0x140 ADD MLOAD DUP7 DUP6 PUSH2 0x4AF JUMP JUMPDEST SWAP5 POP JUMPDEST TIMESTAMP PUSH5 0xFFFFFFFFFF AND DUP4 PUSH5 0xFFFFFFFFFF AND LT ISZERO PUSH2 0x6F1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA67FCB1D PUSH1 0xE0 SHL DUP2 MSTORE PUSH5 0xFFFFFFFFFF DUP1 DUP6 AND PUSH1 0x4 DUP4 ADD MSTORE TIMESTAMP AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3F6 JUMP JUMPDEST PUSH2 0x704 DUP2 DUP7 DUP9 DUP8 DUP8 DUP13 PUSH2 0x140 ADD MLOAD PUSH2 0x108C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x663D8337 PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP9 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x663D8337 SWAP1 PUSH2 0x759 SWAP1 DUP11 SWAP1 DUP13 SWAP1 CALLER SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x1D71 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x775 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x799 SWAP2 SWAP1 PUSH2 0x1DB9 JUMP JUMPDEST DUP9 MSTORE POP POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x32 SLOAD PUSH1 0x40 MLOAD PUSH4 0x197C2BFD PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x32F857FA SWAP1 PUSH2 0x7E4 SWAP1 ADDRESS SWAP1 DUP11 SWAP1 DUP11 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B90 JUMP JUMPDEST PUSH2 0x1E0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x800 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x824 SWAP2 SWAP1 PUSH2 0x1DD0 JUMP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 POP SWAP4 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x6F520B73 DUP6 DUP6 DUP6 DUP6 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x87E SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1E0F JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x895 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x8A7 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x8BB PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x32 SLOAD PUSH1 0x40 MLOAD PUSH4 0x5D04BD15 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0xBA097A2A SWAP1 PUSH2 0x8FB SWAP1 ADDRESS SWAP1 DUP15 SWAP1 DUP15 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B90 JUMP JUMPDEST PUSH2 0x180 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x917 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x93B SWAP2 SWAP1 PUSH2 0x1E3C JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP SWAP6 POP SWAP6 POP SWAP6 POP PUSH0 TIMESTAMP SWAP1 POP PUSH0 NOT DUP7 SUB PUSH2 0x963 JUMPI PUSH2 0x960 DUP8 DUP7 DUP4 DUP8 DUP7 PUSH2 0x4AF JUMP JUMPDEST SWAP6 POP JUMPDEST DUP4 DUP2 PUSH5 0xFFFFFFFFFF DUP1 DUP3 AND SWAP1 DUP4 AND GT PUSH2 0x9A0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA67FCB1D PUSH1 0xE0 SHL DUP2 MSTORE PUSH5 0xFFFFFFFFFF SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3F6 JUMP JUMPDEST POP DUP10 SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x9D7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2C749141 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST POP PUSH2 0x9E6 DUP3 DUP8 DUP10 DUP9 DUP9 DUP7 PUSH2 0x108C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD100ACB PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP9 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0xD100ACB SWAP1 PUSH2 0xA3B SWAP1 DUP12 SWAP1 CALLER SWAP1 DUP15 SWAP1 DUP10 SWAP1 PUSH1 0x4 ADD PUSH2 0x1E9D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA57 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xA7B SWAP2 SWAP1 PUSH2 0x1DB9 JUMP JUMPDEST DUP9 MSTORE POP POP POP POP POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5EB2262B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0xBD644C56 SWAP1 PUSH2 0xADA SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0x1EDF JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xAF1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xB03 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xB3F JUMPI PUSH1 0x40 MLOAD PUSH4 0x3146914D PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST POP PUSH1 0x33 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0xE3D815EB4E0FDD9B02285235CB46B09F34BEE9BD0EB8D8DC3A1FE84694079BC2 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x33 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC06 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC2A SWAP2 SWAP1 PUSH2 0x1F87 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x3C0 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xCA4 PUSH1 0x40 MLOAD DUP1 PUSH2 0x100 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP6 MLOAD PUSH2 0xCC5 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0xCBE DUP9 DUP9 DUP4 PUSH2 0x1193 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x1193 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP7 ADD MLOAD PUSH2 0xCE0 SWAP1 DUP7 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE DUP2 MLOAD LT ISZERO PUSH2 0xD0A JUMPI DUP1 MLOAD PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH2 0xD02 SWAP1 DUP4 SWAP1 PUSH2 0x1FB6 JUMP JUMPDEST SWAP1 MSTORE POP PUSH2 0xD11 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD MSTORE JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD PUSH2 0xD2A SWAP1 DUP7 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x20 DUP2 ADD MLOAD DUP2 MLOAD PUSH2 0xD40 SWAP2 SWAP1 PUSH2 0x1FC9 JUMP JUMPDEST DUP2 PUSH1 0x40 ADD MLOAD GT ISZERO PUSH2 0xD75 JUMPI PUSH1 0x20 DUP2 ADD MLOAD DUP2 MLOAD PUSH2 0xD5C SWAP2 SWAP1 PUSH2 0x1FC9 JUMP JUMPDEST DUP2 PUSH1 0x40 ADD DUP2 DUP2 MLOAD PUSH2 0xD6D SWAP2 SWAP1 PUSH2 0x1FB6 JUMP JUMPDEST SWAP1 MSTORE POP PUSH2 0xD7C JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD MSTORE JUMPDEST PUSH2 0xDC1 PUSH2 0xD89 DUP4 DUP6 PUSH2 0x1FDC JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP8 PUSH1 0xA0 ADD MLOAD PUSH2 0xD9F SWAP2 SWAP1 PUSH2 0x1FF9 JUMP JUMPDEST PUSH2 0xDB5 PUSH4 0x1E13380 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1FF9 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP2 SWAP1 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0xE0B PUSH2 0xDD3 DUP4 DUP6 PUSH2 0x1FDC JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP8 PUSH1 0xC0 ADD MLOAD PUSH2 0xDE9 SWAP2 SWAP1 PUSH2 0x1FF9 JUMP JUMPDEST PUSH2 0xDFF PUSH4 0x1E13380 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1FF9 JUMP JUMPDEST PUSH1 0x40 DUP5 ADD MLOAD SWAP2 SWAP1 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x60 DUP3 ADD MLOAD PUSH0 SWAP2 PUSH2 0xE22 SWAP2 PUSH2 0x1FC9 JUMP JUMPDEST PUSH1 0x80 DUP9 ADD MLOAD SWAP1 SWAP2 POP PUSH2 0xE3E SWAP1 DUP3 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x60 DUP9 ADD MLOAD DUP4 MLOAD PUSH2 0xE57 SWAP2 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1193 JUMP JUMPDEST PUSH2 0xE61 SWAP2 SWAP1 PUSH2 0x1FC9 JUMP JUMPDEST PUSH1 0xA0 DUP4 ADD DUP2 SWAP1 MSTORE DUP3 MLOAD DUP3 SWAP2 PUSH2 0xE75 SWAP2 PUSH2 0x1FC9 JUMP JUMPDEST PUSH2 0xE7F SWAP2 SWAP1 PUSH2 0x1FC9 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x3C0 JUMP JUMPDEST PUSH2 0xEBE PUSH2 0x1243 JUMP JUMPDEST PUSH2 0xEC6 PUSH2 0x1268 JUMP JUMPDEST PUSH2 0x5DF DUP3 DUP3 PUSH2 0x1270 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0xF56 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF4A PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2025 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0xF74 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0xF7F DUP2 PUSH2 0x128A JUMP JUMPDEST POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xFDC JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xFD9 SWAP2 DUP2 ADD SWAP1 PUSH2 0x1DB9 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1004 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2025 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x1034 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST PUSH2 0x103E DUP4 DUP4 PUSH2 0x1348 JUMP JUMPDEST POP POP POP JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xF74 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1094 PUSH2 0x15ED JUMP JUMPDEST DUP6 DUP6 DUP1 DUP3 LT PUSH2 0x10BF JUMPI PUSH1 0x40 MLOAD PUSH4 0x319308D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3F6 JUMP JUMPDEST POP POP PUSH2 0x10C9 PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x20 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH5 0xFFFFFFFFFF DUP1 DUP5 AND PUSH2 0x140 DUP4 ADD MSTORE DUP5 AND PUSH2 0x160 DUP3 ADD MSTORE PUSH0 PUSH2 0x10FC DUP10 DUP9 DUP9 DUP9 DUP9 PUSH2 0xC64 JUMP JUMPDEST DUP1 MLOAD PUSH1 0xA0 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x40 DUP1 DUP7 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP3 ADD MLOAD PUSH1 0x60 DUP1 DUP7 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP3 ADD MLOAD PUSH2 0x100 DUP6 ADD MSTORE PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x120 DUP6 ADD MSTORE DUP2 ADD MLOAD PUSH1 0xC0 DUP5 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD SWAP1 SWAP2 POP DUP9 SWAP1 DUP2 DUP2 GT ISZERO PUSH2 0x1171 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFC096627 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3F6 JUMP JUMPDEST POP POP PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x1182 SWAP1 DUP10 PUSH2 0x1FB6 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x11A0 DUP7 DUP7 PUSH2 0x139D JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x11C4 JUMPI DUP4 DUP2 DUP2 PUSH2 0x11BA JUMPI PUSH2 0x11BA PUSH2 0x2010 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0xA85 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x11DB JUMPI PUSH2 0x11DB PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x13B9 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x124B PUSH2 0x13CA JUMP JUMPDEST PUSH2 0xF74 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xF74 PUSH2 0x1243 JUMP JUMPDEST PUSH2 0x1278 PUSH2 0x1243 JUMP JUMPDEST PUSH2 0x1281 DUP2 PUSH2 0xB0B JUMP JUMPDEST PUSH2 0x5DF DUP3 PUSH2 0x3C6 JUMP JUMPDEST PUSH2 0x1293 DUP2 PUSH2 0x13E3 JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x12FD JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1321 SWAP2 SWAP1 PUSH2 0x1F87 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5DF JUMPI PUSH1 0x40 MLOAD PUSH4 0x50F87E1 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1351 DUP3 PUSH2 0x1494 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x1395 JUMPI PUSH2 0x103E DUP3 DUP3 PUSH2 0x14F7 JUMP JUMPDEST PUSH2 0x5DF PUSH2 0x1597 JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 PUSH2 0x13D3 PUSH2 0xE8E JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1449 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x146D SWAP2 SWAP1 PUSH2 0x1F87 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF7F JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x14C9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2025 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x1504 DUP5 DUP5 PUSH2 0x15B6 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1525 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x1525 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x153A JUMPI PUSH2 0x1532 PUSH2 0x15C9 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3C0 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1564 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x1577 JUMPI PUSH2 0x1572 PUSH2 0x15E2 JUMP JUMPDEST PUSH2 0x1590 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0xF74 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1660 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xA85 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xF7F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x169B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xA85 DUP2 PUSH2 0x1677 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x16B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x16CD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x16DD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x16F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP5 ADD ADD GT ISZERO PUSH2 0x1706 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 SWAP2 DUP3 ADD SWAP5 POP SWAP3 POP DUP5 ADD CALLDATALOAD PUSH2 0x171B DUP2 PUSH2 0x1677 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xF7F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x1743 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x177E JUMPI PUSH2 0x177E PUSH2 0x1748 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x177E JUMPI PUSH2 0x177E PUSH2 0x1748 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x17CF JUMPI PUSH2 0x17CF PUSH2 0x1748 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 DUP6 DUP8 SUB PUSH2 0x160 DUP2 SLT ISZERO PUSH2 0x17ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH2 0x1806 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP4 POP PUSH1 0x60 DUP8 ADD CALLDATALOAD PUSH2 0x1816 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP3 POP PUSH1 0xE0 PUSH1 0x7F NOT DUP3 ADD SLT ISZERO PUSH2 0x1829 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1832 PUSH2 0x175C JUMP JUMPDEST PUSH1 0x80 DUP8 DUP2 ADD CALLDATALOAD DUP3 MSTORE PUSH1 0xA0 DUP1 DUP10 ADD CALLDATALOAD PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0xC0 DUP1 DUP11 ADD CALLDATALOAD PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0xE0 DUP11 ADD CALLDATALOAD PUSH1 0x60 DUP6 ADD MSTORE PUSH2 0x100 DUP11 ADD CALLDATALOAD SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH2 0x120 DUP10 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH2 0x140 SWAP1 SWAP8 ADD CALLDATALOAD SWAP7 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x189A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x18A5 DUP2 PUSH2 0x1677 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x18B5 DUP2 PUSH2 0x1677 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x18D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x18DC DUP2 PUSH2 0x1677 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x18F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1906 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x191F JUMPI PUSH2 0x191F PUSH2 0x1748 JUMP JUMPDEST PUSH2 0x1932 PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x17A7 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP7 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x1946 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP4 POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x1975 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x198B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x19A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x19BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x19CF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x19DB DUP6 DUP3 DUP7 ADD PUSH2 0x1965 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0x1A63 PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP2 ADD MLOAD PUSH2 0x103E PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST PUSH2 0x180 DUP2 ADD PUSH2 0x3C0 DUP3 DUP5 PUSH2 0x19E7 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1A9F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1AB4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1AC0 DUP7 DUP3 DUP8 ADD PUSH2 0x1965 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x171B DUP2 PUSH2 0x1677 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP3 DUP5 SUB PUSH2 0x1A0 DUP2 SLT ISZERO PUSH2 0x1B1C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x180 DUP2 SLT ISZERO PUSH2 0x1B2A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP4 PUSH2 0x180 DUP6 ADD CALLDATALOAD SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x1B63 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x1B7C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x19A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE DUP2 ADD DUP3 SWAP1 MSTORE DUP2 DUP4 PUSH1 0x60 DUP4 ADD CALLDATACOPY PUSH0 DUP2 DUP4 ADD PUSH1 0x60 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP3 ADD PUSH1 0x1F NOT AND ADD ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH2 0x1743 DUP2 PUSH2 0x1726 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1BEB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1BF3 PUSH2 0x1784 JUMP JUMPDEST DUP3 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0x1C62 PUSH2 0x140 DUP4 ADD PUSH2 0x1BCF JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x1C75 PUSH2 0x160 DUP4 ADD PUSH2 0x1BCF JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1743 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xE0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1CA7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1CAF PUSH2 0x175C JUMP JUMPDEST DUP3 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 SWAP3 DUP4 ADD MLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x300 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x1D0F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1D19 DUP10 DUP10 PUSH2 0x1BDA JUMP JUMPDEST PUSH2 0x180 DUP10 ADD MLOAD PUSH2 0x1A0 DUP11 ADD MLOAD PUSH2 0x1C0 DUP12 ADD MLOAD PUSH2 0x1E0 DUP13 ADD MLOAD SWAP4 SWAP11 POP SWAP2 SWAP9 POP SWAP7 POP SWAP5 POP PUSH2 0x1D44 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP3 POP PUSH2 0x1D53 PUSH2 0x200 DUP10 ADD PUSH2 0x1C81 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D63 DUP10 PUSH2 0x220 DUP11 ADD PUSH2 0x1C97 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH2 0x340 DUP2 ADD PUSH2 0x1D80 DUP3 DUP8 PUSH2 0x19E7 JUMP JUMPDEST PUSH2 0x1D8E PUSH2 0x180 DUP4 ADD DUP7 PUSH2 0x19E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND PUSH2 0x300 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH2 0x320 SWAP1 SWAP2 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DC9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1DE4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1DEE DUP7 DUP7 PUSH2 0x1BDA JUMP JUMPDEST PUSH2 0x180 DUP7 ADD MLOAD PUSH2 0x1A0 DUP8 ADD MLOAD PUSH2 0x1C0 SWAP1 SWAP8 ADD MLOAD SWAP2 SWAP9 SWAP1 SWAP8 POP SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0x1E1E DUP3 DUP8 PUSH2 0x19E7 JUMP JUMPDEST DUP5 PUSH2 0x180 DUP4 ADD MSTORE DUP4 PUSH2 0x1A0 DUP4 ADD MSTORE DUP3 PUSH2 0x1C0 DUP4 ADD MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x180 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x1E52 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 MLOAD PUSH1 0x20 DUP9 ADD MLOAD PUSH1 0x40 DUP10 ADD MLOAD PUSH1 0x60 DUP11 ADD MLOAD SWAP3 SWAP9 POP SWAP1 SWAP7 POP SWAP5 POP PUSH2 0x1E74 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP3 POP PUSH2 0x1E82 PUSH1 0x80 DUP9 ADD PUSH2 0x1C81 JUMP JUMPDEST SWAP2 POP PUSH2 0x1E91 DUP9 PUSH1 0xA0 DUP10 ADD PUSH2 0x1C97 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0x1EAC DUP3 DUP8 PUSH2 0x19E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND PUSH2 0x180 DUP4 ADD MSTORE SWAP3 SWAP1 SWAP4 AND PUSH2 0x1A0 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x1C0 SWAP1 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x1A0 DUP2 ADD PUSH2 0x1F51 PUSH2 0x140 DUP6 ADD PUSH2 0x1738 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND PUSH2 0x140 DUP4 ADD MSTORE PUSH2 0x1F6B PUSH2 0x160 DUP6 ADD PUSH2 0x1738 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND PUSH2 0x160 DUP4 ADD MSTORE PUSH2 0x180 SWAP1 SWAP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F97 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xA85 DUP2 PUSH2 0x1677 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x3C0 JUMPI PUSH2 0x3C0 PUSH2 0x1FA2 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x3C0 JUMPI PUSH2 0x3C0 PUSH2 0x1FA2 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x3C0 JUMPI PUSH2 0x3C0 PUSH2 0x1FA2 JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x3C0 JUMPI PUSH2 0x3C0 PUSH2 0x1FA2 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID CALLDATASIZE ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCA2646970667358221220ED 0xC6 SAR ORIGIN RETF 0xB1 CALLDATASIZE 0xDD SDIV CALLDATACOPY PUSH12 0x7B6B80E1AED5AE1F9CD496AA 0xCC 0xB3 EQ SWAP5 0xD2 DUP8 0x2F GASLIMIT JUMP PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"708:8644:76:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3207:193;;;;;;;;;;-1:-1:-1;3207:193:76;;;;;:::i;:::-;;:::i;:::-;;;470:14:101;;463:22;445:41;;433:2;418:18;3207:193:76;;;;;;;;4499:202;;;;;;;;;;-1:-1:-1;4499:202:76;;;;;:::i;:::-;;:::i;:::-;;6620:185;;;;;;;;;;-1:-1:-1;6620:185:76;;;;;:::i;:::-;;:::i;4850:267::-;;;;;;;;;;-1:-1:-1;4850:267:76;;;;;:::i;:::-;;:::i;:::-;;;4720:25:101;;;4708:2;4693:18;4850:267:76;4574:177:101;2048:134:76;;;;;;;;;;-1:-1:-1;2048:134:76;;;;;:::i;:::-;;:::i;2366:94:73:-;;;;;;;;;;-1:-1:-1;2444:11:73;2366:94;;;-1:-1:-1;;;;;5384:32:101;;;5366:51;;5354:2;5339:18;2366:94:73;5199:224:101;3911:214:33;;;;;;:::i;:::-;;:::i;3434:82:76:-;;;;;;;;;;-1:-1:-1;3504:7:76;;-1:-1:-1;;;;;3504:7:76;3434:82;;3466:126:33;;;;;;;;;;;;;:::i;7052:847:76:-;;;;;;;;;;-1:-1:-1;7052:847:76;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4735:111::-;;;;;;;;;;-1:-1:-1;4825:16:76;4735:111;;8180:373;;;;;;;;;;-1:-1:-1;8180:373:76;;;;;:::i;:::-;;:::i;5430:847::-;;;;;;;;;;-1:-1:-1;5430:847:76;;;;;:::i;:::-;;:::i;1732:58:33:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1732:58:33;;;;;;;;;;;;:::i;8936:135:76:-;;;;;;;;;;-1:-1:-1;8936:135:76;;;;;:::i;:::-;;:::i;3805:190::-;;;;;;;;;;-1:-1:-1;3805:190:76;;;;;:::i;:::-;;:::i;2464:97:73:-;;;;;;;;;;;;;:::i;4143:88:76:-;;;;;;;;;;-1:-1:-1;4214:12:76;;-1:-1:-1;;;;;4214:12:76;4143:88;;3207:193;3292:4;3311:36;3335:11;3311:23;:36::i;:::-;:84;;;-1:-1:-1;;;;;;;3351:44:76;;-1:-1:-1;;;3351:44:76;3311:84;3304:91;3207:193;-1:-1:-1;;3207:193:76:o;4499:202::-;4572:5;-1:-1:-1;;;;;4564:28:76;;4556:64;;;;-1:-1:-1;;;4556:64:76;;-1:-1:-1;;;;;5384:32:101;;;4556:64:76;;;5366:51:101;5339:18;;4556:64:76;;;;;;;;;-1:-1:-1;4650:12:76;;4631:39;;;-1:-1:-1;;;;;4650:12:76;;;11252:51:101;;11339:32;;;11334:2;11319:18;;11312:60;4631:39:76;;11225:18:101;4631:39:76;;;;;;;4676:12;:20;;-1:-1:-1;;;;;;4676:20:76;-1:-1:-1;;;;;4676:20:76;;;;;;;;;;4499:202::o;6620:185::-;6709:9;6704:97;6724:20;;;6704:97;;;6759:35;6769:9;;6779:1;6769:12;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;6783:10;6759:9;:35::i;:::-;-1:-1:-1;6746:3:76;;6704:97;;;;6620:185;;;:::o;4850:267::-;5013:7;5035:64;5060:1;5063:6;5071:8;5081:10;5093:5;5035:24;:64::i;:::-;:77;;;;4850:267;-1:-1:-1;;;;;;4850:267:76:o;2048:134::-;4158:30:32;4191:26;:24;:26::i;:::-;4302:15;;4158:59;;-1:-1:-1;4302:15:32;-1:-1:-1;;;4302:15:32;;;4301:16;;-1:-1:-1;;;;;4348:14:32;4279:19;4724:16;;:34;;;;;4744:14;4724:34;4704:54;;4768:17;4788:11;-1:-1:-1;;;;;4788:16:32;4803:1;4788:16;:50;;;;-1:-1:-1;4816:4:32;4808:25;:30;4788:50;4768:70;;4854:12;4853:13;:30;;;;;4871:12;4870:13;4853:30;4849:91;;;4906:23;;-1:-1:-1;;;4906:23:32;;;;;;;;;;;4849:91;4949:18;;-1:-1:-1;;4949:18:32;4966:1;4949:18;;;4977:67;;;;5011:22;;-1:-1:-1;;;;5011:22:32;-1:-1:-1;;;5011:22:32;;;4977:67;2137:40:76::1;2155:12;2169:7;2137:17;:40::i;:::-;5068:14:32::0;5064:101;;;5098:23;;-1:-1:-1;;;;5098:23:32;;;5140:14;;-1:-1:-1;12194:50:101;;5140:14:32;;12182:2:101;12167:18;5140:14:32;;;;;;;5064:101;4092:1079;;;;;2048:134:76;;:::o;3911:214:33:-;2568:13;:11;:13::i;:::-;4026:36:::1;4044:17;4026;:36::i;:::-;4072:46;4094:17;4113:4;4072:21;:46::i;:::-;3911:214:::0;;:::o;3466:126::-;3527:7;2839:20;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;;3466:126:33;:::o;7052:847:76:-;7127:31;;:::i;:::-;7372:12;;:61;;-1:-1:-1;;;7372:61:76;;7174:34;;;;;;;;;;;;;;-1:-1:-1;;;;;7372:12:76;;:35;;:61;;7416:4;;7423:9;;;;7372:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7166:267;;;;;;;;;;;;;;-1:-1:-1;;7444:7:76;:28;7440:132;;7492:73;7510:6;7518:8;7528:9;:15;;;7545:10;7557:7;7492:17;:73::i;:::-;7482:83;;7440:132;7601:15;7581:36;;:10;:36;;;7577:113;;;7626:64;;-1:-1:-1;;;7626:64:76;;16612:12:101;16600:25;;;7626:64:76;;;16582:44:101;7673:15:76;16662:25:101;16642:18;;;16635:53;16555:18;;7626:64:76;16412:282:101;7577:113:76;7705:82;7723:7;7732;7741:6;7749:8;7759:10;7771:9;:15;;;7705:17;:82::i;:::-;7806:68;;-1:-1:-1;;;7806:68:76;;7696:91;;-1:-1:-1;;;;;;7806:11:76;:25;;;;:68;;7832:9;;7696:91;;7851:10;;7863;;7806:68;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7794:80;;-1:-1:-1;;;;;;;7052:847:76;;;;:::o;8180:373::-;8394:12;;:62;;-1:-1:-1;;;8394:62:76;;8259:39;;;;;;;;-1:-1:-1;;;;;8394:12:76;;;;:36;;:62;;8439:4;;8446:9;;;;8394:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8251:205;;;;;;;;8463:11;-1:-1:-1;;;;;8463:24:76;;8488:14;8504:17;8523:11;8536;8463:85;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8245:308;;;;8180:373;;:::o;5430:847::-;5511:31;;:::i;:::-;5714:12;;:53;;-1:-1:-1;;;5714:53:76;;5558:14;;;;;;;;;;;;-1:-1:-1;;;;;5714:12:76;;;;:27;;:53;;5750:4;;5757:9;;;;5714:53;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5550:217;;;;;;;;;;;;5774:11;5795:15;5774:37;;-1:-1:-1;;5821:7:76;:28;5817:121;;5869:62;5887:6;5895:8;5905:4;5911:10;5923:7;5869:17;:62::i;:::-;5859:72;;5817:121;5951:10;5964:4;5951:17;;;;;;;;5943:73;;;;-1:-1:-1;;;5943:73:76;;16612:12:101;16600:25;;;5943:73:76;;;16582:44:101;16662:25;;16642:18;;;16635:53;16555:18;;5943:73:76;16412:282:101;5943:73:76;-1:-1:-1;6030:10:76;;-1:-1:-1;;;;;;6030:24:76;;6022:62;;;;-1:-1:-1;;;6022:62:76;;-1:-1:-1;;;;;5384:32:101;;;6022:62:76;;;5366:51:101;5339:18;;6022:62:76;5199:224:101;6022:62:76;;6099:71;6117:7;6126;6135:6;6143:8;6153:10;6165:4;6099:17;:71::i;:::-;6188:65;;-1:-1:-1;;;6188:65:76;;6090:80;;-1:-1:-1;;;;;;6188:11:76;:21;;;;:65;;6090:80;;6218:10;;6230;;6242;;6188:65;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6176:77;;-1:-1:-1;;;;;;;5430:847:76;;;;;;:::o;8936:135::-;9025:41;;-1:-1:-1;;;9025:41:76;;-1:-1:-1;;;;;9025:11:76;:25;;;;:41;;9051:6;;9059;;9025:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8936:135;;:::o;3805:190::-;3864:9;-1:-1:-1;;;;;3864:23:76;;3856:58;;;;-1:-1:-1;;;3856:58:76;;-1:-1:-1;;;;;5384:32:101;;;3856:58:76;;;5366:51:101;5339:18;;3856:58:76;5199:224:101;3856:58:76;-1:-1:-1;3946:7:76;;3925:40;;;-1:-1:-1;;;;;3946:7:76;;;11252:51:101;;11339:32;;;11334:2;11319:18;;11312:60;3925:40:76;;11225:18:101;3925:40:76;;;;;;;3971:7;:19;;-1:-1:-1;;;;;;3971:19:76;-1:-1:-1;;;;;3971:19:76;;;;;;;;;;3805:190::o;2464:97:73:-;2505:14;2534:11;-1:-1:-1;;;;;2534:20:73;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2527:29;;2464:97;:::o;2156:206::-;2241:4;-1:-1:-1;;;;;;2260:40:73;;-1:-1:-1;;;2260:40:73;;:97;;-1:-1:-1;;;;;;;2304:53:73;;-1:-1:-1;;;2304:53:73;2253:104;2156:206;-1:-1:-1;;2156:206:73:o;5144:1314:71:-;5309:36;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5309:36:71;5414:12;;5378:54;;643:4;5378:28;:6;5392:8;643:4;5378:13;:28::i;:::-;:35;:54;:35;:54::i;:::-;5353:79;;5471:20;;;;5457:40;;:6;;643:4;5457:13;:40::i;:::-;5438:16;;;:59;;;5526:22;;-1:-1:-1;5503:145:71;;;5578:22;;5558:16;;;:42;;;;5578:22;;5558:42;:::i;:::-;;;-1:-1:-1;5503:145:71;;;5640:1;5621:16;;;:20;5503:145;5687:18;;;;5673:38;;:6;;643:4;5673:13;:38::i;:::-;5654:16;;;:57;5766:16;;;;5741:22;;:41;;5766:16;5741:41;:::i;:::-;5721:10;:16;;;:62;5717:185;;;5838:16;;;;5813:22;;:41;;5838:16;5813:41;:::i;:::-;5793:10;:16;;:61;;;;;;;:::i;:::-;;;-1:-1:-1;5717:185:71;;;5894:1;5875:16;;;:20;5717:185;5949:86;5991:18;6004:5;5991:10;:18;:::i;:::-;5973:37;;:8;:14;;;:37;;;;:::i;:::-;6012:22;696:8;643:4;6012:22;:::i;:::-;5949:16;;;;;:86;:23;:86::i;:::-;5930:16;;;:105;6060:86;6102:18;6115:5;6102:10;:18;:::i;:::-;6084:37;;:8;:14;;;:37;;;;:::i;:::-;6123:22;696:8;643:4;6123:22;:::i;:::-;6060:16;;;;;:86;:23;:86::i;:::-;6041:16;;;:105;;;6171:16;;;;6152;;6171:35;;;:::i;:::-;6330:21;;;;6152:54;;-1:-1:-1;6314:43:71;;6152:54;;643:4;6314:15;:43::i;:::-;6279:20;;;;6249:22;;:56;;643:4;6249:29;:56::i;:::-;:108;;;;:::i;:::-;6213:27;;;:144;;;6390:22;;6445:8;;6390:52;;;:::i;:::-;:63;;;;:::i;:::-;6364:23;;;:89;-1:-1:-1;6364:10:71;5144:1314;-1:-1:-1;;;;;5144:1314:71:o;9071:205:32:-;9129:30;;3147:66;9186:27;8819:122;2447:192:76;6929:20:32;:18;:20::i;:::-;2550:28:76::1;:26;:28::i;:::-;2584:50;2612:12;2626:7;2584:27;:50::i;4328:312:33:-:0;4408:4;-1:-1:-1;;;;;4417:6:33;4400:23;;;:120;;;4514:6;-1:-1:-1;;;;;4478:42:33;:32;-1:-1:-1;;;;;;;;;;;1519:53:29;-1:-1:-1;;;;;1519:53:29;;1441:138;4478:32:33;-1:-1:-1;;;;;4478:42:33;;;4400:120;4383:251;;;4594:29;;-1:-1:-1;;;4594:29:33;;;;;;;;;;;4383:251;4328:312::o;1807:106:73:-;1880:28;1900:7;1880:19;:28::i;:::-;1807:106;:::o;5782:538:33:-;5899:17;-1:-1:-1;;;;;5881:50:33;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5881:52:33;;;;;;;;-1:-1:-1;;5881:52:33;;;;;;;;;;;;:::i;:::-;;;5877:437;;6243:60;;-1:-1:-1;;;6243:60:33;;-1:-1:-1;;;;;5384:32:101;;6243:60:33;;;5366:51:101;5339:18;;6243:60:33;5199:224:101;5877:437:33;-1:-1:-1;;;;;;;;;;;5975:40:33;;5971:120;;6042:34;;-1:-1:-1;;;6042:34:33;;;;;4720:25:101;;;4693:18;;6042:34:33;4574:177:101;5971:120:33;6104:54;6134:17;6153:4;6104:29;:54::i;:::-;5934:235;5782:538;;:::o;4757:213::-;4831:4;-1:-1:-1;;;;;4840:6:33;4823:23;;4819:145;;4924:29;;-1:-1:-1;;;4924:29:33;;;;;;;;;;;7346:997:71;7525:27;;:::i;:::-;7568:7;7578:6;7568:16;;;7560:64;;;;-1:-1:-1;;;7560:64:71;;;;;23450:25:101;;;;23491:18;;;23484:34;23423:18;;7560:64:71;23276:248:101;7560:64:71;;;7630:24;;:::i;:::-;7661:13;;;:22;;;7689:15;;;:26;;;7721:20;;;;:12;;;:20;7747:30;;:17;;;:30;-1:-1:-1;7823:64:71;7841:8;7677:6;7707:8;7767:10;7736:5;7823:17;:64::i;:::-;7915:22;;7894:18;;;;:43;;;;7958:16;;;;7943:12;;;;:31;;;;7995:16;;;-1:-1:-1;7980:12:71;;;:31;;;;8032:16;;;8017:12;;;:31;8069:16;;;;8054:12;;;:31;8117:27;;;8091:23;;;:53;8159:23;;;;7784:103;;-1:-1:-1;8186:7:71;;8159:34;;;;8151:101;;;;-1:-1:-1;;;8151:101:71;;;;;23450:25:101;;;;23491:18;;;23484:34;23423:18;;8151:101:71;23276:248:101;8151:101:71;-1:-1:-1;;8296:23:71;;;;8286:33;;:7;:33;:::i;:::-;8259:24;;;:60;-1:-1:-1;8259:24:71;7346:997;-1:-1:-1;;;;;;;7346:997:71:o;7258:3683:63:-;7340:14;7391:12;7405:11;7420:12;7427:1;7430;7420:6;:12::i;:::-;7390:42;;;;7514:4;7522:1;7514:9;7510:365;;7849:11;7843:3;:17;;;;;:::i;:::-;;7836:24;;;;;;7510:365;8000:4;7985:11;:19;7981:142;;8024:84;5328:5;8044:16;;5327:36;940:4:53;5322:42:63;8024:11;:84::i;:::-;8375:17;8526:11;8523:1;8520;8513:25;8918:12;8948:15;;;8933:31;;9083:22;;;;;9816:1;9797;:15;;9796:21;;10049;;;10045:25;;10034:36;10119:21;;;10115:25;;10104:36;10191:21;;;10187:25;;10176:36;10262:21;;;10258:25;;10247:36;10335:21;;;10331:25;;10320:36;10409:21;;;10405:25;;;10394:36;9325:12;;;;9321:23;;;9346:1;9317:31;8638:18;;;8628:29;;;9432:11;;;;8681:19;;;;9176:14;;;;9425:18;;;;10884:13;;-1:-1:-1;;7258:3683:63;;;;;:::o;7082:141:32:-;7149:17;:15;:17::i;:::-;7144:73;;7189:17;;-1:-1:-1;;;7189:17:32;;;;;;;;;;;1737:66:73;6929:20:32;:18;:20::i;2694:170:76:-;6929:20:32;:18;:20::i;:::-;2807:18:76::1;2817:7;2807:9;:18::i;:::-;2831:28;2846:12;2831:14;:28::i;2868:280::-:0;2951:34;2977:7;2951:25;:34::i;:::-;2991:17;3023:7;2991:40;;3068:16;-1:-1:-1;;;;;3041:43:76;:5;-1:-1:-1;;;;;3041:21:76;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3041:43:76;;3037:107;;3101:36;;-1:-1:-1;;;3101:36:76;;;;;;;;;;;2264:344:29;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:29;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;2454:148::-;2573:18;:16;:18::i;1027:550:63:-;1088:12;;-1:-1:-1;;1471:1:63;1468;1461:20;1501:9;;;;1549:11;;;1535:12;;;;1531:30;;;;;1027:550;-1:-1:-1;;1027:550:63:o;1776:194:53:-;1881:10;1875:4;1868:24;1918:4;1912;1905:18;1949:4;1943;1936:18;8485:120:32;8535:4;8558:26;:24;:26::i;:::-;:40;-1:-1:-1;;;8558:40:32;;;;;;-1:-1:-1;8485:120:32:o;1917:180:73:-;2041:11;-1:-1:-1;;;;;1995:57:73;2016:7;-1:-1:-1;;;;;1995:40:73;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1995:57:73;;1991:101;;2061:31;;-1:-1:-1;;;2061:31:73;;;;;;;;;;;1671:281:29;1748:17;-1:-1:-1;;;;;1748:29:29;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:29;;-1:-1:-1;;;;;5384:32:101;;1805:47:29;;;5366:51:101;5339:18;;1805:47:29;5199:224:101;1744:119:29;-1:-1:-1;;;;;;;;;;;1872:73:29;;-1:-1:-1;;;;;;1872:73:29;-1:-1:-1;;;;;1872:73:29;;;;;;;;;;1671:281::o;4691:549:45:-;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:45;4583:16:49;4886:33:45;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:45;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;:::-;4962:32;;;;;4870:364;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:45;;-1:-1:-1;;;;;5384:32:101;;5045:24:45;;;5366:51:101;5339:18;;5045:24:45;5199:224:101;5011:223:45;4583:16:49;5090:33:45;5086:148;;5139:27;:25;:27::i;:::-;5086:148;;;5204:19;;-1:-1:-1;;;5204:19:45;;;;;;;;;;;5086:148;4788:452;4691:549;;;;:::o;6113:122:29:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:29;;;;;;;;;;;3383:242:49;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:49:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:286:101:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:101;;209:43;;199:71;;266:1;263;256:12;497:145;-1:-1:-1;;;;;586:31:101;;576:42;;566:70;;632:1;629;622:12;647:283;728:6;781:2;769:9;760:7;756:23;752:32;749:52;;;797:1;794;787:12;749:52;836:9;823:23;855:45;894:5;855:45;:::i;935:776::-;1041:6;1049;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1166:9;1153:23;-1:-1:-1;;;;;1191:6:101;1188:30;1185:50;;;1231:1;1228;1221:12;1185:50;1254:22;;1307:4;1299:13;;1295:27;-1:-1:-1;1285:55:101;;1336:1;1333;1326:12;1285:55;1376:2;1363:16;-1:-1:-1;;;;;1394:6:101;1391:30;1388:50;;;1434:1;1431;1424:12;1388:50;1489:7;1482:4;1472:6;1469:1;1465:14;1461:2;1457:23;1453:34;1450:47;1447:67;;;1510:1;1507;1500:12;1447:67;1541:4;1533:13;;;;-1:-1:-1;1565:6:101;-1:-1:-1;1606:20:101;;1593:34;1636:45;1593:34;1636:45;:::i;:::-;1700:5;1690:15;;;935:776;;;;;:::o;1716:123::-;1801:12;1794:5;1790:24;1783:5;1780:35;1770:63;;1829:1;1826;1819:12;1844:132;1911:20;;1940:30;1911:20;1940:30;:::i;:::-;1844:132;;;:::o;1981:127::-;2042:10;2037:3;2033:20;2030:1;2023:31;2073:4;2070:1;2063:15;2097:4;2094:1;2087:15;2113:253;2185:2;2179:9;2227:4;2215:17;;-1:-1:-1;;;;;2247:34:101;;2283:22;;;2244:62;2241:88;;;2309:18;;:::i;:::-;2345:2;2338:22;2113:253;:::o;2371:255::-;2443:2;2437:9;2485:6;2473:19;;-1:-1:-1;;;;;2507:34:101;;2543:22;;;2504:62;2501:88;;;2569:18;;:::i;2631:275::-;2702:2;2696:9;2767:2;2748:13;;-1:-1:-1;;2744:27:101;2732:40;;-1:-1:-1;;;;;2787:34:101;;2823:22;;;2784:62;2781:88;;;2849:18;;:::i;:::-;2885:2;2878:22;2631:275;;-1:-1:-1;2631:275:101:o;2911:1658::-;3029:6;3037;3045;3053;3061;3105:9;3096:7;3092:23;3135:3;3131:2;3127:12;3124:32;;;3152:1;3149;3142:12;3124:32;3197:23;;;-1:-1:-1;3317:2:101;3302:18;;3289:32;;-1:-1:-1;3399:2:101;3384:18;;3371:32;3412;3371;3412;:::i;:::-;3463:7;-1:-1:-1;3522:2:101;3507:18;;3494:32;3535;3494;3535;:::i;:::-;3586:7;-1:-1:-1;3628:4:101;-1:-1:-1;;3609:17:101;;3605:28;3602:48;;;3646:1;3643;3636:12;3602:48;;3674:22;;:::i;:::-;3769:3;3754:19;;;3741:33;3783:24;;3880:3;3865:19;;;3852:33;3914:2;3901:16;;3894:33;4000:3;3985:19;;;3972:33;4034:2;4021:16;;4014:33;4120:4;4105:20;;4092:34;4155:2;4142:16;;4135:33;4241:3;4226:19;;4213:33;4262:17;;;4255:34;;;;4364:3;4349:19;;4336:33;4385:17;;;4378:35;4488:3;4473:19;;;4460:33;4509:17;;;4502:35;;;;-1:-1:-1;2911:1658:101;;;;-1:-1:-1;2911:1658:101;3790:7;2911:1658::o;4756:438::-;4846:6;4854;4907:2;4895:9;4886:7;4882:23;4878:32;4875:52;;;4923:1;4920;4913:12;4875:52;4962:9;4949:23;4981:45;5020:5;4981:45;:::i;:::-;5045:5;-1:-1:-1;5102:2:101;5087:18;;5074:32;5115:47;5074:32;5115:47;:::i;:::-;5181:7;5171:17;;;4756:438;;;;;:::o;5428:914::-;5505:6;5513;5566:2;5554:9;5545:7;5541:23;5537:32;5534:52;;;5582:1;5579;5572:12;5534:52;5621:9;5608:23;5640:45;5679:5;5640:45;:::i;:::-;5704:5;-1:-1:-1;5760:2:101;5745:18;;5732:32;-1:-1:-1;;;;;5776:30:101;;5773:50;;;5819:1;5816;5809:12;5773:50;5842:22;;5895:4;5887:13;;5883:27;-1:-1:-1;5873:55:101;;5924:1;5921;5914:12;5873:55;5964:2;5951:16;-1:-1:-1;;;;;5982:6:101;5979:30;5976:56;;;6012:18;;:::i;:::-;6054:57;6101:2;6078:17;;-1:-1:-1;;6074:31:101;6107:2;6070:40;6054:57;:::i;:::-;6134:6;6127:5;6120:21;6182:7;6177:2;6168:6;6164:2;6160:15;6156:24;6153:37;6150:57;;;6203:1;6200;6193:12;6150:57;6258:6;6253:2;6249;6245:11;6240:2;6233:5;6229:14;6216:49;6310:1;6305:2;6296:6;6289:5;6285:18;6281:27;6274:38;6331:5;6321:15;;;;;5428:914;;;;;:::o;6737:347::-;6788:8;6798:6;6852:3;6845:4;6837:6;6833:17;6829:27;6819:55;;6870:1;6867;6860:12;6819:55;-1:-1:-1;6893:20:101;;-1:-1:-1;;;;;6925:30:101;;6922:50;;;6968:1;6965;6958:12;6922:50;7005:4;6997:6;6993:17;6981:29;;7057:3;7050:4;7041:6;7033;7029:19;7025:30;7022:39;7019:59;;;7074:1;7071;7064:12;7019:59;6737:347;;;;;:::o;7089:409::-;7159:6;7167;7220:2;7208:9;7199:7;7195:23;7191:32;7188:52;;;7236:1;7233;7226:12;7188:52;7276:9;7263:23;-1:-1:-1;;;;;7301:6:101;7298:30;7295:50;;;7341:1;7338;7331:12;7295:50;7380:58;7430:7;7421:6;7410:9;7406:22;7380:58;:::i;:::-;7457:8;;7354:84;;-1:-1:-1;7089:409:101;-1:-1:-1;;;;7089:409:101:o;7604:835::-;7686:5;7680:12;7675:3;7668:25;7742:4;7735:5;7731:16;7725:23;7718:4;7713:3;7709:14;7702:47;7798:4;7791:5;7787:16;7781:23;7774:4;7769:3;7765:14;7758:47;7854:4;7847:5;7843:16;7837:23;7830:4;7825:3;7821:14;7814:47;7910:4;7903:5;7899:16;7893:23;7886:4;7881:3;7877:14;7870:47;7966:4;7959:5;7955:16;7949:23;7942:4;7937:3;7933:14;7926:47;8022:4;8015:5;8011:16;8005:23;7998:4;7993:3;7989:14;7982:47;8078:4;8071:5;8067:16;8061:23;8054:4;8049:3;8045:14;8038:47;8136:6;8129:5;8125:18;8119:25;8110:6;8105:3;8101:16;8094:51;8196:6;8189:5;8185:18;8179:25;8170:6;8165:3;8161:16;8154:51;8251:6;8244:5;8240:18;8234:25;8268:49;8309:6;8304:3;8300:16;8286:12;7579;7568:24;7556:37;;7503:96;8268:49;;8365:6;8358:5;8354:18;8348:25;8382:51;8425:6;8420:3;8416:16;8400:14;7579:12;7568:24;7556:37;;7503:96;8444:258;8636:3;8621:19;;8649:47;8625:9;8678:6;8649:47;:::i;8941:558::-;9020:6;9028;9036;9089:2;9077:9;9068:7;9064:23;9060:32;9057:52;;;9105:1;9102;9095:12;9057:52;9145:9;9132:23;-1:-1:-1;;;;;9170:6:101;9167:30;9164:50;;;9210:1;9207;9200:12;9164:50;9249:58;9299:7;9290:6;9279:9;9275:22;9249:58;:::i;:::-;9326:8;;-1:-1:-1;9223:84:101;-1:-1:-1;;9411:2:101;9396:18;;9383:32;9424:45;9383:32;9424:45;:::i;9504:418::-;9653:2;9642:9;9635:21;9616:4;9685:6;9679:13;9728:6;9723:2;9712:9;9708:18;9701:34;9787:6;9782:2;9774:6;9770:15;9765:2;9754:9;9750:18;9744:50;9843:1;9838:2;9829:6;9818:9;9814:22;9810:31;9803:42;9913:2;9906;9902:7;9897:2;9889:6;9885:15;9881:29;9870:9;9866:45;9862:54;9854:62;;;9504:418;;;;:::o;9927:375::-;10026:6;10034;10078:9;10069:7;10065:23;10108:3;10104:2;10100:12;10097:32;;;10125:1;10122;10115:12;10097:32;10149:3;10145:2;10141:12;10138:32;;;10166:1;10163;10156:12;10138:32;-1:-1:-1;10189:9:101;;10267:3;10252:19;;10239:33;;-1:-1:-1;9927:375:101;-1:-1:-1;;9927:375:101:o;11383:127::-;11444:10;11439:3;11435:20;11432:1;11425:31;11475:4;11472:1;11465:15;11499:4;11496:1;11489:15;11515:521;11592:4;11598:6;11658:11;11645:25;11752:2;11748:7;11737:8;11721:14;11717:29;11713:43;11693:18;11689:68;11679:96;;11771:1;11768;11761:12;11679:96;11798:33;;11850:20;;;-1:-1:-1;;;;;;11882:30:101;;11879:50;;;11925:1;11922;11915:12;11879:50;11958:4;11946:17;;-1:-1:-1;11989:14:101;11985:27;;;11975:38;;11972:58;;;12026:1;12023;12016:12;12255:485;-1:-1:-1;;;;;12440:32:101;;12422:51;;12509:2;12504;12489:18;;12482:30;;;12528:18;;12521:34;;;12548:6;12597;12592:2;12577:18;;12564:48;12661:1;12632:22;;;12656:2;12628:31;;;12621:42;;;;12724:2;12703:15;;;-1:-1:-1;;12699:29:101;12684:45;12680:54;;12255:485;-1:-1:-1;;12255:485:101:o;12745:136::-;12823:13;;12845:30;12823:13;12845:30;:::i;12886:1449::-;12954:5;13002:6;12990:9;12985:3;12981:19;12977:32;12974:52;;;13022:1;13019;13012:12;12974:52;13044:22;;:::i;:::-;13111:16;;13136:22;;13224:2;13209:18;;;13203:25;13244:14;;;13237:31;13334:2;13319:18;;;13313:25;13354:14;;;13347:31;13444:2;13429:18;;;13423:25;13464:14;;;13457:31;13554:3;13539:19;;;13533:26;13575:15;;;13568:32;13666:3;13651:19;;;13645:26;13687:15;;;13680:32;13778:3;13763:19;;;13757:26;13799:15;;;13792:32;13890:3;13875:19;;;13869:26;13911:15;;;13904:32;14002:3;13987:19;;;13981:26;14023:15;;;14016:32;14116:3;14101:19;;;14095:26;14137:15;;;14130:33;13035:31;-1:-1:-1;14196:49:101;14240:3;14225:19;;14196:49;:::i;:::-;14190:3;14183:5;14179:15;14172:74;14279:49;14323:3;14312:9;14308:19;14279:49;:::i;:::-;14273:3;14266:5;14262:15;14255:74;12886:1449;;;;:::o;14340:183::-;14418:13;;-1:-1:-1;;;;;14460:38:101;;14450:49;;14440:77;;14513:1;14510;14503:12;14528:938;14592:5;14640:4;14628:9;14623:3;14619:19;14615:30;14612:50;;;14658:1;14655;14648:12;14612:50;14680:22;;:::i;:::-;14747:16;;14772:22;;14860:2;14845:18;;;14839:25;14880:14;;;14873:31;14970:2;14955:18;;;14949:25;14990:14;;;14983:31;15080:2;15065:18;;;15059:25;15100:14;;;15093:31;15190:3;15175:19;;;15169:26;15211:15;;;15204:32;15302:3;15287:19;;;15281:26;15323:15;;;15316:32;15414:3;15399:19;;;15393:26;15435:15;;;15428:32;;;;-1:-1:-1;14671:31:101;14528:938;-1:-1:-1;14528:938:101:o;15471:936::-;15647:6;15655;15663;15671;15679;15687;15695;15748:3;15736:9;15727:7;15723:23;15719:33;15716:53;;;15765:1;15762;15755:12;15716:53;15788:59;15839:7;15828:9;15788:59;:::i;:::-;15909:3;15894:19;;15888:26;16004:3;15989:19;;15983:26;16101:3;16086:19;;16080:26;16177:3;16162:19;;16156:26;15778:69;;-1:-1:-1;15888:26:101;;-1:-1:-1;15983:26:101;-1:-1:-1;16080:26:101;-1:-1:-1;16191:32:101;16156:26;16191:32;:::i;:::-;16242:7;-1:-1:-1;16268:49:101;16312:3;16297:19;;16268:49;:::i;:::-;16258:59;;16336:65;16393:7;16387:3;16376:9;16372:19;16336:65;:::i;:::-;16326:75;;15471:936;;;;;;;;;;:::o;16699:611::-;17031:3;17016:19;;17044:47;17020:9;17073:6;17044:47;:::i;:::-;17100:57;17152:3;17141:9;17137:19;17129:6;17100:57;:::i;:::-;-1:-1:-1;;;;;17194:32:101;;;;17188:3;17173:19;;17166:61;-1:-1:-1;;;;;17264:39:101;;;;17258:3;17243:19;;;17236:68;16699:611;;-1:-1:-1;;16699:611:101:o;17315:230::-;17385:6;17438:2;17426:9;17417:7;17413:23;17409:32;17406:52;;;17454:1;17451;17444:12;17406:52;-1:-1:-1;17499:16:101;;17315:230;-1:-1:-1;17315:230:101:o;17550:593::-;17676:6;17684;17692;17700;17753:3;17741:9;17732:7;17728:23;17724:33;17721:53;;;17770:1;17767;17760:12;17721:53;17793:59;17844:7;17833:9;17793:59;:::i;:::-;17914:3;17899:19;;17893:26;18009:3;17994:19;;17988:26;18106:3;18091:19;;;18085:26;17783:69;;17893:26;;-1:-1:-1;18085:26:101;;-1:-1:-1;17550:593:101;-1:-1:-1;;;17550:593:101:o;18148:474::-;18424:3;18409:19;;18437:47;18413:9;18466:6;18437:47;:::i;:::-;18521:6;18515:3;18504:9;18500:19;18493:35;18565:6;18559:3;18548:9;18544:19;18537:35;18609:6;18603:3;18592:9;18588:19;18581:35;18148:474;;;;;;;:::o;18627:799::-;18765:6;18773;18781;18789;18797;18805;18858:3;18846:9;18837:7;18833:23;18829:33;18826:53;;;18875:1;18872;18865:12;18826:53;18920:16;;19026:2;19011:18;;19005:25;19122:2;19107:18;;19101:25;19197:2;19182:18;;19176:25;18920:16;;-1:-1:-1;19005:25:101;;-1:-1:-1;19101:25:101;-1:-1:-1;19210:32:101;19176:25;19210:32;:::i;:::-;19261:7;-1:-1:-1;19287:49:101;19331:3;19316:19;;19287:49;:::i;:::-;19277:59;;19355:65;19412:7;19406:3;19395:9;19391:19;19355:65;:::i;:::-;19345:75;;18627:799;;;;;;;;:::o;19431:557::-;19705:3;19690:19;;19718:47;19694:9;19747:6;19718:47;:::i;:::-;-1:-1:-1;;;;;19802:32:101;;;19796:3;19781:19;;19774:61;19872:32;;;;19866:3;19851:19;;19844:61;-1:-1:-1;;;;;19942:39:101;19936:3;19921:19;;;19914:68;;;;19431:557;;-1:-1:-1;19431:557:101:o;19993:1742::-;20260:20;;20289:24;;20383:4;20371:17;;;20358:31;20405:20;;;20398:37;20505:4;20493:17;;;20480:31;20527:20;;;20520:37;20627:4;20615:17;;;20602:31;20649:20;;;20642:37;20749:4;20737:17;;;20724:31;20771:20;;;20764:37;20871:4;20859:17;;;20846:31;20893:20;;;20886:37;20993:4;20981:17;;;20968:31;21015:20;;;21008:37;21115:4;21103:17;;;21090:31;21137:20;;;21130:37;21237:6;21225:19;;;21212:33;21261:22;;;21254:39;21363:6;21351:19;;;21338:33;21387:22;;;21380:39;20215:3;20200:19;;21448:38;21478:6;21466:19;;21448:38;:::i;:::-;7579:12;7568:24;21542:6;21527:22;;7556:37;21581:38;21611:6;21599:19;;21581:38;:::i;:::-;7579:12;7568:24;21677:6;21662:22;;7556:37;21716:3;21701:19;;;21694:35;;;;19993:1742;;-1:-1:-1;19993:1742:101:o;22045:288::-;22138:6;22191:2;22179:9;22170:7;22166:23;22162:32;22159:52;;;22207:1;22204;22197:12;22159:52;22239:9;22233:16;22258:45;22297:5;22258:45;:::i;22338:127::-;22399:10;22394:3;22390:20;22387:1;22380:31;22430:4;22427:1;22420:15;22454:4;22451:1;22444:15;22470:128;22537:9;;;22558:11;;;22555:37;;;22572:18;;:::i;22603:125::-;22668:9;;;22689:10;;;22686:36;;;22702:18;;:::i;22733:176::-;22832:12;22825:20;;;22803;;;22799:47;;22858:22;;22855:48;;;22883:18;;:::i;22914:168::-;22987:9;;;23018;;23035:15;;;23029:22;;23015:37;23005:71;;23056:18;;:::i;23529:127::-;23590:10;23585:3;23581:20;23578:1;23571:31;23621:4;23618:1;23611:15;23645:4;23642:1;23635:15"},"methodIdentifiers":{"UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","cancelPolicy(bytes)":"73d0efd0","currency()":"e5a6b10f","getMinimumPremium(uint256,uint256,uint40,uint40,(uint256,uint256,uint256,uint256,uint256,uint256,uint256))":"23d09ac9","initialize(address,address)":"485cc955","newPolicies(bytes[],address)":"1f0f3e18","newPolicy(bytes,address)":"8dab1952","policyPool()":"4d15eb03","premiumsAccount()":"73a952e8","proxiableUUID()":"52d1902d","replacePolicy(bytes)":"68beecf9","resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)":"bd644c56","setUnderwriter(address)":"08bb5f7b","setWallet(address)":"deaa59df","supportsInterface(bytes4)":"01ffc9a7","underwriter()":"f00db260","upgradeToAndCall(address,bytes)":"4f1ef286","wallet()":"521eb273"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"policyPool_\",\"type\":\"address\"},{\"internalType\":\"contract IPremiumsAccount\",\"name\":\"premiumsAccount_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"now\",\"type\":\"uint40\"}],\"name\":\"ExpirationMustBeInTheFuture\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"customer\",\"type\":\"address\"}],\"name\":\"InvalidCustomer\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"contract IUnderwriter\",\"name\":\"uw\",\"type\":\"address\"}],\"name\":\"InvalidUnderwriter\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"wallet\",\"type\":\"address\"}],\"name\":\"InvalidWallet\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroPolicyPool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OnlyPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"PremiumExceedsPayout\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minPremium\",\"type\":\"uint256\"}],\"name\":\"PremiumLessThanMinimum\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"PremiumsAccountMustBePartOfThePool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UpgradeCannotChangePolicyPool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UpgradeCannotChangePremiumsAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"oldWallet\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newWallet\",\"type\":\"address\"}],\"name\":\"PartnerWalletChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"contract IUnderwriter\",\"name\":\"oldUW\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"contract IUnderwriter\",\"name\":\"newUW\",\"type\":\"address\"}],\"name\":\"UnderwriterChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"cancelPolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"moc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCollRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"collRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroPpFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCocFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrRoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srRoc\",\"type\":\"uint256\"}],\"internalType\":\"struct Policy.Params\",\"name\":\"p\",\"type\":\"tuple\"}],\"name\":\"getMinimumPremium\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IUnderwriter\",\"name\":\"underwriter_\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"wallet_\",\"type\":\"address\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes[]\",\"name\":\"inputData\",\"type\":\"bytes[]\"},{\"internalType\":\"address\",\"name\":\"onBehalfOf\",\"type\":\"address\"}],\"name\":\"newPolicies\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"},{\"internalType\":\"address\",\"name\":\"onBehalfOf\",\"type\":\"address\"}],\"name\":\"newPolicy\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"premiumsAccount\",\"outputs\":[{\"internalType\":\"contract IPremiumsAccount\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"replacePolicy\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"resolvePolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IUnderwriter\",\"name\":\"newUW\",\"type\":\"address\"}],\"name\":\"setUnderwriter\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newWallet\",\"type\":\"address\"}],\"name\":\"setWallet\",\"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\":[],\"name\":\"underwriter\",\"outputs\":[{\"internalType\":\"contract IUnderwriter\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"wallet\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"Risk Module that keeps the configuration and is responsible for injecting policies and policy resolution\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"PremiumLessThanMinimum(uint256,uint256)\":[{\"details\":\"The minPremium is the one that results of computing the CoCs, purePremium and ensuroCommission for the given parameters, assuming partnerCommission = 0.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"cancelPolicy(bytes)\":{\"details\":\"Cancels a policy, giving back all (or part) of the pure premium and the non-accrued CoC\",\"params\":{\"inputData\":\"Input data that will be decoded by the _underwriter to construct the oldPolicy and the                  parameters for the new policy.\"}},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"initialize(address,address)\":{\"details\":\"Initializes the RiskModule\",\"params\":{\"underwriter_\":\"Contract in charge of decoding and validating the input and pricing the policies\",\"wallet_\":\"Address of the RiskModule provider\"}},\"newPolicies(bytes[],address)\":{\"details\":\"Creates several policies, the premium is paid by msg.sender\",\"params\":{\"inputData\":\"Input data that will be decoded by the _underwriter to construct the parameters for the                  new policy.\",\"onBehalfOf\":\"The address that will be the owner of the created policy (same for all the policies)\"}},\"newPolicy(bytes,address)\":{\"details\":\"Creates a new policy. The premium will paid by msg.sender\",\"params\":{\"inputData\":\"Input data that will be decoded by the _underwriter to construct the parameters for the                  new policy.\",\"onBehalfOf\":\"The address that will be the owner of the created policy\"}},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"replacePolicy(bytes)\":{\"details\":\"Replaces a policy with a new one, with the same owner\",\"params\":{\"inputData\":\"Input data that will be decoded by the _underwriter to construct the oldPolicy and the                  parameters for the new policy.\"}},\"resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"details\":\"Resolves a policy, if payout > 0, it pays to the policy holder. Requirements: - payout <= policy.payout - block.timestamp >= policy.expiration Emits: - {PolicyPool.PolicyResolved}\",\"params\":{\"payout\":\"The payout to transfer to the policy holder\",\"policy\":\"The policy previously created (from {NewPolicy} event)\"}},\"setUnderwriter(address)\":{\"details\":\"Changes the underwriter contract, responsible for pricing and validating new policies, replacements and cancellations. Events: - {RiskModule-UnderwriterChanged}\",\"params\":{\"newUW\":\"The new underwriter contract. It can't be address(0)\"}},\"setWallet(address)\":{\"details\":\"Changes the wallet that will receive the partner commission of the policies created by this risk module. Events: - {RiskModule-PartnerWalletChanged}\",\"params\":{\"newWallet\":\"The new wallet that will receive the partner commissions. It can't be address(0).\"}},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"},\"_premiumsAccount\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"}},\"title\":\"Ensuro Risk Module contract\",\"version\":1},\"userdoc\":{\"errors\":{\"PremiumExceedsPayout(uint256,uint256)\":[{\"notice\":\"Raised when the premium exceeds the payoutreceived premium is less than the minimum\"}],\"PremiumLessThanMinimum(uint256,uint256)\":[{\"notice\":\"Raised when the received premium is less than the minimum\"}]},\"kind\":\"user\",\"methods\":{\"policyPool()\":{\"notice\":\"Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\"},\"premiumsAccount()\":{\"notice\":\"Returns the {PremiumsAccount} where the premiums of this risk module are collected. Never changes.\"},\"underwriter()\":{\"notice\":\"Returns the underwriter contract, responsible for pricing and validating new policies, replacements and cancellations.\"},\"wallet()\":{\"notice\":\"Returns the address of the partner that receives the partnerCommission\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/RiskModule.sol\":\"RiskModule\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/PolicyPoolComponent.sol\":{\"keccak256\":\"0x59be0e577af81ab215ac850da84692d6ae7a465917701260f390bc92240c4707\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://c55648f183f32e74d6d83cfc2a8eb606c75a6c3bc598e8ec2a38f9fb3b676f8c\",\"dweb:/ipfs/QmdDFuZz6cn9ywUuxv4bTY3STMWQMWTAzitbocywFMoByb\"]},\"contracts/RiskModule.sol\":{\"keccak256\":\"0x4af5f3f209900f192826e166344e0edc4e89de3aaee4a470e9ee1ef1a863ff1e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://459864526e7d577709f22c0bcbc7bf9cc67e81f65de2cee086b1b4ef56956f98\",\"dweb:/ipfs/QmYePgYEDcfMFtZuYK55qM15LxNpwHB55Pa3WQYsw34d9H\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]},\"contracts/interfaces/IUnderwriter.sol\":{\"keccak256\":\"0x2d2ed693a29e809ddc60c4669a6ea5bf8a74497593e8e099ea76c27505472acb\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4534e64481c50a88d782c615dce9ac3bda35509e0252ca306456665e57f26527\",\"dweb:/ipfs/QmdNGFXjRm2t8cZe5zi9C6YNh9BMHDnk4dfWNfHxmHgqwJ\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":25608,"contract":"contracts/RiskModule.sol:RiskModule","label":"__gap","offset":0,"slot":"0","type":"t_array(t_uint256)50_storage"},{"astId":28050,"contract":"contracts/RiskModule.sol:RiskModule","label":"_underwriter","offset":0,"slot":"50","type":"t_contract(IUnderwriter)29363"},{"astId":28052,"contract":"contracts/RiskModule.sol:RiskModule","label":"_wallet","offset":0,"slot":"51","type":"t_address"},{"astId":28648,"contract":"contracts/RiskModule.sol:RiskModule","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)48_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_uint256)48_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[48]","numberOfBytes":"1536"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_contract(IUnderwriter)29363":{"encoding":"inplace","label":"contract IUnderwriter","numberOfBytes":"20"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"contracts/interfaces/ICooler.sol":{"ICooler":{"abi":[{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"cooldownPeriod","outputs":[{"internalType":"uint40","name":"","type":"uint40"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"}],"name":"pendingWithdrawals","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":{"cooldownPeriod(address,address,uint256)":"5ce095ee","pendingWithdrawals(address)":"f3f43703"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"cooldownPeriod\",\"outputs\":[{\"internalType\":\"uint40\",\"name\":\"\",\"type\":\"uint40\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"}],\"name\":\"pendingWithdrawals\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"details\":\"This contract will hold the tokens during the cooldown period\",\"kind\":\"dev\",\"methods\":{\"cooldownPeriod(address,address,uint256)\":{\"params\":{\"amount\":\"The amount requested to withdraw\",\"eToken\":\"The eToken (see {EToken})\",\"owner\":\"The owner of the tokens requested to withdraw\"},\"returns\":{\"_0\":\"The cooldown period in seconds\"}},\"pendingWithdrawals(address)\":{\"params\":{\"eToken\":\"The eToken (see {EToken})\"},\"returns\":{\"_0\":\"The amount in currency that is pending\"}}},\"title\":\"ICooler - Interface of Cooler contracts, for eTokens that have cooldown\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"cooldownPeriod(address,address,uint256)\":{\"notice\":\"Returns the cooldown period in seconds required for withdrawals in a given eToken\"},\"pendingWithdrawals(address)\":{\"notice\":\"Returns the amount of pending (scheduled) withdrawals for a given eToken\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/ICooler.sol\":\"ICooler\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/interfaces/ICooler.sol\":{\"keccak256\":\"0xd2f546d8a15bbc201e1811a050fce315eb72016c4360bf31066a8041f4159cae\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://3a974feacac260a76883322b18e3f0251aa3430f24bab1b7b4c21853a3498a9a\",\"dweb:/ipfs/QmQFixSYSFiJem2UYPJa2ky2eorFNXBncDZ1yrxPMRK66F\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/interfaces/IEToken.sol":{"IEToken":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"policyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"SCRLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"policyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"int256","name":"adjustment","type":"int256"}],"name":"SCRUnlocked","type":"event"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"addBorrower","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"updated","type":"bool"}],"name":"getCurrentScale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"getLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"internalLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"},{"internalType":"uint256","name":"scrAmount","type":"uint256"},{"internalType":"uint256","name":"policyInterestRate","type":"uint256"}],"name":"lockScr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redistribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"removeBorrower","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"onBehalfOf","type":"address"}],"name":"repayLoan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"scr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"scrInterestRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenInterestRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalWithdrawable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"},{"internalType":"uint256","name":"scrAmount","type":"uint256"},{"internalType":"uint256","name":"policyInterestRate","type":"uint256"},{"internalType":"int256","name":"adjustment","type":"int256"}],"name":"unlockScr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"},{"internalType":"uint256","name":"scrAmount","type":"uint256"},{"internalType":"uint256","name":"policyInterestRate","type":"uint256"},{"internalType":"int256","name":"adjustment","type":"int256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"refundAmount","type":"uint256"}],"name":"unlockScrWithRefund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"receiver","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"withdrawn","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"addBorrower(address)":"e3a8e29c","cooler()":"cf6a9a94","deposit(uint256,address,address)":"2e2d2984","getCurrentScale(bool)":"79d989fb","getLoan(address)":"33481fc9","internalLoan(uint256,address)":"c3df9dac","lockScr(uint256,uint256,uint256)":"4ffcda8c","redistribute(uint256)":"a0ce552d","removeBorrower(address)":"76c7fc55","repayLoan(uint256,address)":"918344d3","scr()":"6c6f4542","scrInterestRate()":"9d90724d","tokenInterestRate()":"159ec2df","totalWithdrawable()":"0600a865","unlockScr(uint256,uint256,uint256,int256)":"a227dc41","unlockScrWithRefund(uint256,uint256,uint256,int256,address,uint256)":"3ad2820b","withdraw(uint256,address,address,address)":"23e103a8"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"interestRate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SCRLocked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"interestRate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"adjustment\",\"type\":\"int256\"}],\"name\":\"SCRUnlocked\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"addBorrower\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cooler\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"updated\",\"type\":\"bool\"}],\"name\":\"getCurrentScale\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"getLoan\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"internalLoan\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"scrAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"policyInterestRate\",\"type\":\"uint256\"}],\"name\":\"lockScr\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redistribute\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"removeBorrower\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"onBehalfOf\",\"type\":\"address\"}],\"name\":\"repayLoan\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"scr\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"scrInterestRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"tokenInterestRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalWithdrawable\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"scrAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"policyInterestRate\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"adjustment\",\"type\":\"int256\"}],\"name\":\"unlockScr\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"scrAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"policyInterestRate\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"adjustment\",\"type\":\"int256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"refundAmount\",\"type\":\"uint256\"}],\"name\":\"unlockScrWithRefund\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"withdrawn\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"events\":{\"SCRLocked(uint256,uint256,uint256)\":{\"params\":{\"interestRate\":\"The annualized interestRate paid for the capital (wad)\",\"policyId\":\"The id of the policy that locks the capital\",\"value\":\"The amount locked\"}},\"SCRUnlocked(uint256,uint256,uint256,int256)\":{\"params\":{\"adjustment\":\"Discrete amount of adjustment done to the totalSupply to reflect when more or less                   than the received cost of capital has been accrued since the SCR was locked.\",\"interestRate\":\"The annualized interestRate that was paid for the capital (wad)\",\"policyId\":\"The id of the policy that unlocks the capital (should be the that locked before with SCRLocked)\",\"value\":\"The amount unlocked\"}}},\"kind\":\"dev\",\"methods\":{\"addBorrower(address)\":{\"custom:emits\":\"InternalBorrowerAdded\",\"custom:pre\":\"Must be called by `policyPool()`\",\"details\":\"Borrowers (typically PremiumsAccounts) can: - lock/unlock SCR via {lockScr}/{unlockScr}/{unlockScrWithRefund} - take internal loans via {internalLoan}\",\"params\":{\"borrower\":\"The address of the _borrower_, a PremiumsAccount that has this eToken as senior or junior eToken.\"}},\"deposit(uint256,address,address)\":{\"custom:emits\":\"Transfer with `from` = 0x0 and to = `provider` (mint)\",\"custom:pre\":\"Must be called by `policyPool()`The amount was transferred`utilizationRate()` after the deposit is >= `minUtilizationRate()`If there is a whitelist, caller must be authorized to deposit. If caller != receiver, then transfer from caller             to received must be authorized\",\"details\":\"Called from the PolicyPool, assumes the amount has already been transferred. `amount` of eToken are minted and given to the provider in exchange of the liquidity provided.\",\"params\":{\"amount\":\"The amount deposited.\",\"caller\":\"The user that initiates the deposit\",\"receiver\":\"The user that will receive the minted eTokens\"}},\"getCurrentScale(bool)\":{\"params\":{\"updated\":\"When it's false, it returns the last scale stored. When it's true, it projects that scale applying                the accrued returns of the scr\"}},\"internalLoan(uint256,address)\":{\"custom:emits\":\"{InternalLoan}{ERC20-Transfer} transferring `lent` to `receiver`\",\"custom:pre\":\"Must be called by a _borrower_ previously added with `addBorrower`.\",\"details\":\"This reduces the `totalSupply()` of the eToken, and stores a debt that will be repaid (hopefully) with `repayLoan`.\",\"params\":{\"amount\":\"The amount required\",\"receiver\":\"The received of the funds lent. This is usually the policyholder if the loan is used for a payout.\"},\"returns\":{\"_0\":\"Returns the amount that wasn't able to fulfil. `amount - lent`\"}},\"lockScr(uint256,uint256,uint256)\":{\"custom:emits\":\"SCRLocked\",\"custom:pre\":\"Must be called by a _borrower_ (PremiumsAccount) previously added with `addBorrower`.`scrAmount` <= `fundsAvailableToLock()`\",\"params\":{\"policyId\":\"The id of the policy that locks the capital\",\"policyInterestRate\":\"The annualized interest rate (wad) to be paid for the `scrAmount`\",\"scrAmount\":\"The amount to lock\"}},\"redistribute(uint256)\":{\"params\":{\"amount\":\"The amount of eTokens to burn\"}},\"removeBorrower(address)\":{\"custom:emits\":\"InternalBorrowerRemoved with the defaulted debt\",\"custom:pre\":\"Must be called by `policyPool()`\",\"params\":{\"borrower\":\"The address of the _borrower_, a PremiumsAccount that has this eToken as senior or junior eToken.\"}},\"repayLoan(uint256,address)\":{\"custom:emits\":\"{InternalLoanRepaid}{ERC20-Transfer} transferring `amount` from `msg.sender` to `this`\",\"custom:pre\":\"`msg.sender` approved the spending of `currency()` for at least `amount`\",\"params\":{\"amount\":\"The amount to repaid, that will be transferred from `msg.sender` balance.\",\"onBehalfOf\":\"The address of the borrower that took the loan. Usually `onBehalfOf == msg.sender` but we keep it open because in some cases with might need someone else pays the debt.\"}},\"unlockScr(uint256,uint256,uint256,int256)\":{\"custom:emits\":\"SCRUnlocked\",\"custom:pre\":\"Must be called by a _borrower_ (PremiumsAccount) previously added with `addBorrower`.`scrAmount` must be <= {scr}\",\"details\":\"The capital no longer needed as solvency, enabling withdrawal.\",\"params\":{\"adjustment\":\"Discrete amount of adjustment done to the totalSupply to reflect when more or less                   than the received cost of capital has been accrued since the SCR was locked.\",\"policyId\":\"The id of the policy that locked the scr originally\",\"policyInterestRate\":\"The annualized interest rate that was paid for the `scrAmount`, must be the same that                           was sent in `lockScr` call.\",\"scrAmount\":\"The amount to unlock\"}},\"unlockScrWithRefund(uint256,uint256,uint256,int256,address,uint256)\":{\"custom:emits\":\"SCRUnlockedCoCRefunded\",\"custom:pre\":\"Must be called by a _borrower_ previously added with `addBorrower`.\",\"details\":\"The capital no longer needed as solvency . It refunds part of the Coc received that wasn't accrued (or if it was already accrued, it is adjusted). The refund doesn't affect the totalSupply. It just changes the reserves.\",\"params\":{\"policyId\":\"The id of the policy that locked the scr originally\",\"policyInterestRate\":\"The annualized interest rate that was paid for the `scrAmount`, must be the same that was sent in `lockScr` call.\",\"receiver\":\"The address of the receiver of the refund\",\"refundAmount\":\"The amount to refund\",\"scrAmount\":\"The amount to unlock\"}},\"withdraw(uint256,address,address,address)\":{\"custom:emits\":\"Transfer with `from` = `provider` and to = `0x0` (burn)\",\"custom:pre\":\"Must be called by `policyPool()`\",\"details\":\"`withdrawn` eTokens are be burned and the user receives the same amount in `currency()`. If `amount == type(uint256).max`, it withdraws up to `maxWithdraw` (i.e., as much as possible). Otherwise, it reverts if `amount > maxWithdraw`.\",\"params\":{\"amount\":\"The amount to withdraw. If `amount == type(uint256).max`, withdraws up to `maxWithdraw`.\",\"caller\":\"The user that initiates the withdrawal\",\"owner\":\"The owner of the eTokens (either caller==owner or caller has allowance)\",\"receiver\":\"The address that will receive the resulting `currency()`\"}}},\"title\":\"IEToken interface\",\"version\":1},\"userdoc\":{\"events\":{\"SCRLocked(uint256,uint256,uint256)\":{\"notice\":\"Event emitted when part of the funds of the eToken are locked as solvency capital.\"},\"SCRUnlocked(uint256,uint256,uint256,int256)\":{\"notice\":\"Event emitted when the locked funds are unlocked and no longer used as solvency capital.\"}},\"kind\":\"user\",\"methods\":{\"addBorrower(address)\":{\"notice\":\"Adds an authorized _borrower_ to the eToken. This _borrower_ will be allowed to lock/unlock funds and to take loans.\"},\"cooler()\":{\"notice\":\"Returns the cooler contract plugged into the eToken\"},\"deposit(uint256,address,address)\":{\"notice\":\"Registers a deposit of liquidity in the pool.\"},\"getCurrentScale(bool)\":{\"notice\":\"Returns the number that scales the shares to reflect the earnings or losses (rebasing token)\"},\"getLoan(address)\":{\"notice\":\"Returns the updated debt (principal + interest) of the `borrower`.\"},\"internalLoan(uint256,address)\":{\"notice\":\"Lends `amount` to the borrower (msg.sender), transferring the money to `receiver`.\"},\"lockScr(uint256,uint256,uint256)\":{\"notice\":\"Locks part of the liquidity of the EToken as solvency capital.\"},\"redistribute(uint256)\":{\"notice\":\"Redistributes a given amount of eTokens of the caller between the remaining LPs\"},\"removeBorrower(address)\":{\"notice\":\"Removes an authorized _borrower_ to the eToken. The _borrower_ can't no longer lock funds or take loans.\"},\"repayLoan(uint256,address)\":{\"notice\":\"Repays a loan taken with `internalLoan`.\"},\"scr()\":{\"notice\":\"Returns the amount of capital that's locked as solvency capital for active policies.\"},\"scrInterestRate()\":{\"notice\":\"The weighted average annualized interest rate paid by the currently locked `scr()`.\"},\"tokenInterestRate()\":{\"notice\":\"The annualized interest rate at which the `totalSupply()` grows\"},\"totalWithdrawable()\":{\"notice\":\"Returns the total amount that can be withdrawn\"},\"unlockScr(uint256,uint256,uint256,int256)\":{\"notice\":\"Unlocks solvency capital previously locked with `lockScr`.\"},\"unlockScrWithRefund(uint256,uint256,uint256,int256,address,uint256)\":{\"notice\":\"Unlocks solvency capital previously locked with `lockScr`, doing a refund of the CoC previously received\"},\"withdraw(uint256,address,address,address)\":{\"notice\":\"Withdraws an amount from an eToken.\"}},\"notice\":\"Interface for EToken smart contracts, these are the capital pools.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IEToken.sol\":\"IEToken\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/interfaces/ILPWhitelist.sol":{"ILPWhitelist":{"abi":[{"inputs":[{"internalType":"contract IEToken","name":"etoken","type":"address"},{"internalType":"address","name":"provider","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"acceptsDeposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"etoken","type":"address"},{"internalType":"address","name":"providerFrom","type":"address"},{"internalType":"address","name":"providerTo","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"acceptsTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"etoken","type":"address"},{"internalType":"address","name":"provider","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"acceptsWithdrawal","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":{"acceptsDeposit(address,address,uint256)":"37ee20dd","acceptsTransfer(address,address,address,uint256)":"5fcdca37","acceptsWithdrawal(address,address,uint256)":"9051c763"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"etoken\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"provider\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"acceptsDeposit\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"etoken\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"providerFrom\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"providerTo\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"acceptsTransfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"etoken\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"provider\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"acceptsWithdrawal\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"kind\":\"dev\",\"methods\":{\"acceptsDeposit(address,address,uint256)\":{\"details\":\"Indicates whether or not a liquidity provider can do a deposit in an eToken.\",\"params\":{\"amount\":\"The amount of the deposit\",\"etoken\":\"The eToken (see {EToken}) where the provider wants to deposit money.\",\"provider\":\"The address of the liquidity provider (user) that wants to deposit\"},\"returns\":{\"_0\":\"true if `provider` deposit is accepted, false if not\"}},\"acceptsTransfer(address,address,address,uint256)\":{\"details\":\"Indicates whether or not the eTokens can be transferred from `providerFrom` to `providerTo`\",\"params\":{\"amount\":\"The amount of tokens to be transferred\",\"etoken\":\"The eToken (see {EToken}) that the LPs have the intention to transfer.\",\"providerFrom\":\"The current owner of the tokens\",\"providerTo\":\"The destination of the tokens if the transfer is accepted\"},\"returns\":{\"_0\":\"true if the transfer operation is accepted, false if not.\"}},\"acceptsWithdrawal(address,address,uint256)\":{\"details\":\"Indicates whether or not a liquidity provider can withdraw an eToken.\",\"params\":{\"amount\":\"The amount of the withdrawal\",\"etoken\":\"The eToken (see {EToken}) where the provider wants to withdraw money.\",\"provider\":\"The address of the liquidity provider (user) that wants to withdraw\"},\"returns\":{\"_0\":\"true if `provider` withdraw request is accepted, false if not\"}}},\"title\":\"ILPWhitelist - Interface that handles the whitelisting of Liquidity Providers\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/ILPWhitelist.sol\":\"ILPWhitelist\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/ILPWhitelist.sol\":{\"keccak256\":\"0x71555d613cf2e4efa341593f2611adc078e4b3f745a15db0c3cba2717f1312eb\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://474679208452130bd5f1acb2ee3c8585f219a441925af65121fee370882de42a\",\"dweb:/ipfs/QmcPoJQnQWKZteafe1T2sEVQHG1YPX8a731W7hqZZVyyxq\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/interfaces/IPolicyHolder.sol":{"IPolicyHolder":{"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"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"policyId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"onPayoutReceived","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":"cancelledPolicyId","type":"uint256"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"name":"onPolicyCancelled","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":"policyId","type":"uint256"}],"name":"onPolicyExpired","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":"oldPolicyId","type":"uint256"},{"internalType":"uint256","name":"newPolicyId","type":"uint256"}],"name":"onPolicyReplaced","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","onPayoutReceived(address,address,uint256,uint256)":"d6281d3e","onPolicyCancelled(address,address,uint256,uint256,uint256,uint256)":"62eb345e","onPolicyExpired(address,address,uint256)":"e8e617b7","onPolicyReplaced(address,address,uint256,uint256)":"5ee0c7dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"onPayoutReceived\",\"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\":\"cancelledPolicyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"name\":\"onPolicyCancelled\",\"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\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"onPolicyExpired\",\"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\":\"oldPolicyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"newPolicyId\",\"type\":\"uint256\"}],\"name\":\"onPolicyReplaced\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for any contract that wants to be a holder of Ensuro Policies and receive the payouts\",\"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`.\"},\"onPayoutReceived(address,address,uint256,uint256)\":{\"details\":\"Whenever an Policy is resolved with payout > 0, this function is called It must return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the payout will be successful. If any other value is returned or it reverts, the policy resolution / payout will be reverted. The selector can be obtained in Solidity with `IPolicyHolder.onPayoutReceived.selector`.\"},\"onPolicyCancelled(address,address,uint256,uint256,uint256,uint256)\":{\"details\":\"Whenever a policy is cancelled, this function is called It must return its Solidity selector to confirm the operation. If interface is not implemented by the recipient, it will be ignored and the cancellation will be successful. If any other value is returned or it reverts, the policy cancellation will be reverted. The selector can be obtained in Solidity with `IPolicyHolder.onPolicyCancelled.selector`.\"},\"onPolicyExpired(address,address,uint256)\":{\"details\":\"Whenever an Policy is expired or resolved with payout = 0, this function is called It should return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the payout will be successful. No mather what's the return value or even if this function reverts, this function will not revert the policy expiration. The selector can be obtained in Solidity with `IPolicyHolder.onPolicyExpired.selector`.\"},\"onPolicyReplaced(address,address,uint256,uint256)\":{\"details\":\"Whenever a policy is replaced, this function is called It must return its Solidity selector to confirm the operation. If interface is not implemented by the recipient, it will be ignored and the replacement will be successful. If any other value is returned or it reverts, the policy replacement will be reverted. The selector can be obtained in Solidity with `IPolicyHolder.onPolicyReplaced.selector`.\"}},\"title\":\"Policy holder interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IPolicyHolder.sol\":\"IPolicyHolder\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0x88cd5e3bee2e8c36b8d9058fbcaa81ad5704281b25634122234b55ea853d8055\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8dc7e7ab5b8ea36c15027ab04221b05d1c970f47a53e9fd47ead8ca665d49c7e\",\"dweb:/ipfs/Qmeeph7fsDyfRr8vb2L8KcDEmKPb224TAayMvgqgGAnqpL\"]},\"contracts/interfaces/IPolicyHolder.sol\":{\"keccak256\":\"0xedfdb90379573eaab3213424a517042dd7f015cdb4ee734859609a019275797e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://321e424f1c9afd92e0cb38e4131ce30aaf7df551388b6d1d1abe60ea9dcd0e8a\",\"dweb:/ipfs/QmfFraGLbyy67ugA373JcZfPf7J34uzMHXbyBjoH9enWsK\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/interfaces/IPolicyPool.sol":{"IPolicyPool":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"indexed":false,"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"NewPolicy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"indexed":true,"internalType":"uint256","name":"cancelledPolicyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"name":"PolicyCancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"indexed":true,"internalType":"uint256","name":"oldPolicyId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newPolicyId","type":"uint256"}],"name":"PolicyReplaced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"indexed":true,"internalType":"uint256","name":"policyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"payout","type":"uint256"}],"name":"PolicyResolved","type":"event"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policyToCancel","type":"tuple"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"name":"cancelPolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"depositWithPermit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"expirePolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"getPolicyHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"address","name":"payer","type":"address"},{"internalType":"address","name":"policyHolder","type":"address"},{"internalType":"uint96","name":"internalId","type":"uint96"}],"name":"newPolicy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"oldPolicy","type":"tuple"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"newPolicy_","type":"tuple"},{"internalType":"address","name":"payer","type":"address"},{"internalType":"uint96","name":"internalId","type":"uint96"}],"name":"replacePolicy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"resolvePolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"cancelPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)":"6f520b73","currency()":"e5a6b10f","deposit(address,uint256,address)":"f45346dc","depositWithPermit(address,uint256,address,uint256,uint8,bytes32,bytes32)":"de27010a","expirePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))":"f720bbbf","getPolicyHash(uint256)":"792da09e","isActive(uint256)":"82afd23b","newPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,address,uint96)":"0d100acb","replacePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,uint96)":"663d8337","resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)":"bd644c56","treasury()":"61d027b3","withdraw(address,uint256,address,address)":"dfcd412e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"indexed\":false,\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"NewPolicy\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"cancelledPolicyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"name\":\"PolicyCancelled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"oldPolicyId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"newPolicyId\",\"type\":\"uint256\"}],\"name\":\"PolicyReplaced\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"PolicyResolved\",\"type\":\"event\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policyToCancel\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"name\":\"cancelPolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"depositWithPermit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"expirePolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"getPolicyHash\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"isActive\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"address\",\"name\":\"payer\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"policyHolder\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"}],\"name\":\"newPolicy\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"oldPolicy\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"newPolicy_\",\"type\":\"tuple\"},{\"internalType\":\"address\",\"name\":\"payer\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"}],\"name\":\"replacePolicy\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"resolvePolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"treasury\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"Some methods of this interface will be called by other components of the protocol (like RiskModule or      PremiumsAccount).\",\"events\":{\"NewPolicy(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"details\":\"Contains all the data about the policy that is later required for doing operations with the policy like      resolution or expiration.\",\"params\":{\"policy\":\"The {Policy-PolicyData} struct with all the immutable fields of the policy.\",\"riskModule\":\"The risk module that created the policy\"}},\"PolicyCancelled(address,uint256,uint256,uint256,uint256)\":{\"details\":\"After this, the policy is no longer active. The refund amounts are transferred to the policy holder.\",\"params\":{\"cancelledPolicyId\":\"The id of the cancelled policy.\",\"jrCocRefund\":\"The amount of Jr CoC refunded\",\"purePremiumRefund\":\"The amount of pure premium refunded\",\"riskModule\":\"The risk module that created the policy\",\"srCocRefund\":\"The amount of Sr CoC refunded\"}},\"PolicyReplaced(address,uint256,uint256)\":{\"details\":\"The event contains only the id of the replacement policy, the full data is available in the NewPolicy event.\",\"params\":{\"newPolicyId\":\"The id of the new policy.\",\"oldPolicyId\":\"The id of the replaced policy.\",\"riskModule\":\"The risk module that created the policy\"}},\"PolicyResolved(address,uint256,uint256)\":{\"details\":\"If the policy expired, the `payout` is 0, otherwise is the amount transferred to the policyholder.\",\"params\":{\"payout\":\"The payout that has been paid to the policy holder. 0 when the policy expired.\",\"policyId\":\"The unique id of the policy\",\"riskModule\":\"The risk module where that created the policy initially.\"}}},\"kind\":\"dev\",\"methods\":{\"cancelPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)\":{\"custom:emits\":\"PolicyCancelled with the refund amountsERC20-Transfer transfers of the refunds amount to the policy holder\",\"custom:pre\":\"`msg.sender` must be an active or deprecated RiskModulePolicy not expired Events:\",\"details\":\"After this call the policy is not claimable and funds are unlocked\",\"params\":{\"jrCocRefund\":\"The amount to refund from jrCoc (<= policyToCancel.jrCoc)\",\"policyToCancel\":\"A policy created previously and not expired, that will be cancelled\",\"purePremiumRefund\":\"The amount to refund from pure premiums (<= policyToCancel.purePremium)\",\"srCocRefund\":\"The amount to refund from srCoc (<= policyToCancel.jrCoc)\"}},\"deposit(address,uint256,address)\":{\"custom:emits\":\"EToken-Transfer from 0x0 to `receiver`, reflects the eTokens minted.ERC20-Transfer from `msg.sender` to address(eToken)\",\"custom:pre\":\"`msg.sender` approved the spending of `currency()` for at least `amount``eToken` is an active eToken installed in the pool.\",\"details\":\"Forwards the call to {EToken-deposit}, after transferring the funds.      The user will receive etokens for the same amount deposited.\",\"params\":{\"amount\":\"The amount to deposit\",\"eToken\":\"The address of the eToken to which the user wants to provide liquidity\",\"receiver\":\"The user that will receive the minted tokens\"}},\"depositWithPermit(address,uint256,address,uint256,uint8,bytes32,bytes32)\":{\"custom:emits\":\"EToken-Transfer from 0x0 to `receiver`, reflects the eTokens minted.ERC20-Transfer from `msg.sender` to address(eToken)\",\"custom:pre\":\"`msg.sender` approved the spending of `currency()` for at least `amount``eToken` is an active eToken installed in the pool.\",\"details\":\"Forwards the call to {EToken-deposit}, after transferring the funds.      The user will receive etokens for the same amount deposited. EIP-2612 compatible version, allows sending a      signed permit in the same operation.\",\"params\":{\"amount\":\"The amount to deposit\",\"deadline\":\"The deadline of the permit\",\"eToken\":\"The address of the eToken to which the user wants to provide liquidity\",\"r\":\"Component of the secp256k1 signature\",\"receiver\":\"The user that will receive the minted tokens\",\"s\":\"Component of the secp256k1 signature\",\"v\":\"Component of the secp256k1 signature\"}},\"expirePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"custom:emits\":\"PolicyResolved with the payout == 0\",\"custom:pre\":\"`policy`: must be a Policy not resolved before`policy.expiration` <= block.timestamp\",\"details\":\"Resolves a policy with a payout 0, unlocking the solvency. Can be called by anyone, but only after      `Policy.expiration`.\",\"params\":{\"policy\":\"A policy previously created with `newPolicy`\"}},\"getPolicyHash(uint256)\":{\"details\":\"Returns `bytes32(0)` if the policy isn't active.\",\"params\":{\"policyId\":\"The id of the policy queried\"},\"returns\":{\"_0\":\"Returns the hash of a given policy id\"}},\"isActive(uint256)\":{\"details\":\"A policy is active when it's still in the PolicyPool, not yet resolved or expired.      Be aware that a policy might be active but the `block.timestamp` might be after the expiration date, so it      can't be triggered with a payout.\",\"params\":{\"policyId\":\"The id of the policy queried\"},\"returns\":{\"_0\":\"Whether the policy is active or not\"}},\"newPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,address,uint96)\":{\"custom:emits\":\"NewPolicy with all the details about the policyERC20-Transfer transfers from `payer` to the different receivers of the premium               (see Premium Split in the docs)\",\"custom:pre\":\"`msg.sender` must be an active RiskModule`rm.premiumsAccount()` must be an active PremiumsAccount`payer` approved the spending of `currency()` for at least `policy.premium``internalId` must be unique within the risk module (`msg.sender`) and not used before\",\"custom:throws\":\"PolicyAlreadyExists when reusing an internalId\",\"details\":\"It charges the premium and distributes it to the different parties (PremiumsAccount, ETokens, treasury)\",\"params\":{\"internalId\":\"A unique id within the RiskModule, that will be used to compute the policy id\",\"payer\":\"The address that will pay for the premium\",\"policy\":\"A policy created with {Policy-initialize}\",\"policyHolder\":\"The address of the policy holder\"},\"returns\":{\"_0\":\"The policy id, identifying the NFT and the policy\"}},\"replacePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,uint96)\":{\"custom:emits\":\"PolicyReplaced with the ids of the new and replaced policyNewPolicy with all the details of the new policy\",\"custom:pre\":\"`msg.sender` must be an active RiskModule`rm.premiumsAccount()` must be an active PremiumsAccount`payer` approved the spending of `currency()` for at least `newPolicy_.premium - oldPolicy.premium``internalId` must be unique within `policy.riskModule` and not used before\",\"custom:throws\":\"PolicyAlreadyExpired when trying to replace an expired policyInvalidPolicyReplacement when trying to reduce some of the premium componentsa\",\"details\":\"After this call, the oldPolicy is no longer active and a new policy is created. Diferencial changes to      premiums and locked SCR.\",\"params\":{\"internalId\":\"A unique id within the RiskModule, that will be used to compute the policy id\",\"newPolicy_\":\"A policy created with {Policy-initialize}\",\"oldPolicy\":\"A policy created previously and not expired\",\"payer\":\"The address that will pay for the premium difference\"},\"returns\":{\"_0\":\"The policy id, identifying the NFT and the policy\"}},\"resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"custom:emits\":\"PolicyResolved with the payout amountERC20-Transfer to the policyholder with the payout\",\"custom:pre\":\"`msg.sender` must be an active or deprecated RiskModule`payout`: must be less than equal to `policy.payout`.`policy`: must be a Policy not resolved before and not expired (if payout > 0).\",\"details\":\"After this call the policy is no longer active and the funds have been unlocked.\",\"params\":{\"payout\":\"The amount to pay to the policyholder\",\"policy\":\"A policy previously created with `newPolicy`\"}},\"withdraw(address,uint256,address,address)\":{\"custom:emits\":\"EToken-Transfer from `owner` to `0x0`, reflects the eTokens burned.ERC20-Transfer from address(eToken) to `receiver`\",\"custom:pre\":\"`eToken` is an active (or deprecated) eToken installed in the pool.\",\"details\":\"Forwards the call to {EToken-withdraw}. `amount` of eTokens will be burned and the user will receive the      same amount in `currency()`.\",\"params\":{\"amount\":\"The amount to withdraw. If equal to type(uint256).max, means full withdrawal.               If the balance is not enough or can't be withdrawn (locked as SCR), it withdraws               as much as it can, but doesn't fails.\",\"eToken\":\"The address of the eToken from where the user wants to withdraw liquidity\",\"owner\":\"The user that owns the eTokens (must be msg.sender or have allowance)\",\"receiver\":\"The user that will receive the resulting `currency()`\"},\"returns\":{\"_0\":\"Returns the actual amount withdrawn.\"}}},\"title\":\"Interface of PolicyPool contracts\",\"version\":1},\"userdoc\":{\"events\":{\"NewPolicy(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Event emitted every time a new policy is added to the pool\"},\"PolicyCancelled(address,uint256,uint256,uint256,uint256)\":{\"notice\":\"Event emitted when a policy is cancelled, and part of the paid premium is refunded.\"},\"PolicyReplaced(address,uint256,uint256)\":{\"notice\":\"Event emitted every time a new policy replaces an old Policy.\"},\"PolicyResolved(address,uint256,uint256)\":{\"notice\":\"Event emitted every time a policy is removed from the pool\"}},\"kind\":\"user\",\"methods\":{\"cancelPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)\":{\"notice\":\"Cancels a policy, doing optional refunds of parts of the premium.\"},\"currency()\":{\"notice\":\"Reference to the main currency (ERC20, e.g. USDC) used in the protocol\"},\"deposit(address,uint256,address)\":{\"notice\":\"Deposits liquidity into an eToken\"},\"depositWithPermit(address,uint256,address,uint256,uint8,bytes32,bytes32)\":{\"notice\":\"Deposits liquidity into an eToken, EIP-2612 compatible version.\"},\"expirePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Expires a policy, unlocked the solvency.\"},\"getPolicyHash(uint256)\":{\"notice\":\"Returns the stored hash of the policy\"},\"isActive(uint256)\":{\"notice\":\"Returns whether a policy is active\"},\"newPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,address,uint96)\":{\"notice\":\"Creates a new Policy\"},\"replacePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,uint96)\":{\"notice\":\"Replaces a policy with another\"},\"resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"notice\":\"Resolves a policy with a payout, sending the payment to the owner of the policy NFT.\"},\"treasury()\":{\"notice\":\"Address of the treasury, that receives protocol fees.\"},\"withdraw(address,uint256,address,address)\":{\"notice\":\"Withdraws an amount from an eToken\"}},\"notice\":\"There's a single instance of PolicyPool contract for a given deployment of the protocol\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IPolicyPool.sol\":\"IPolicyPool\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/interfaces/IPolicyPoolComponent.sol":{"IPolicyPoolComponent":{"abi":[{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","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":{"policyPool()":"4d15eb03","supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"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.\"}},\"title\":\"IPolicyPoolComponent interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"policyPool()\":{\"notice\":\"Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\"}},\"notice\":\"Interface for Contracts linked (owned) by a PolicyPool. Useful to avoid cyclic dependencies\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IPolicyPoolComponent.sol\":\"IPolicyPoolComponent\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/interfaces/IPremiumsAccount.sol":{"IPremiumsAccount":{"abi":[{"inputs":[],"name":"etks","outputs":[{"internalType":"contract IEToken","name":"juniorEtk","type":"address"},{"internalType":"contract IEToken","name":"seniorEtk","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"juniorEtk","outputs":[{"internalType":"contract IEToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policyToCancel","type":"tuple"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"},{"internalType":"address","name":"policyHolder","type":"address"}],"name":"policyCancelled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"policyCreated","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"policyExpired","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"oldPolicy","type":"tuple"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"newPolicy","type":"tuple"}],"name":"policyReplaced","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"policyHolder","type":"address"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"policyResolvedWithPayout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"purePremiums","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"seniorEtk","outputs":[{"internalType":"contract IEToken","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"etks()":"5e445859","juniorEtk()":"536ebbfc","policyCancelled((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256,address)":"ee1f9a6a","policyCreated((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))":"f79ac183","policyExpired((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))":"76185ff1","policyReplaced((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))":"d5c6c166","policyResolvedWithPayout(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)":"1dda2899","purePremiums()":"26ccbd22","seniorEtk()":"7b83037b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"etks\",\"outputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"juniorEtk\",\"type\":\"address\"},{\"internalType\":\"contract IEToken\",\"name\":\"seniorEtk\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"juniorEtk\",\"outputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policyToCancel\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"policyHolder\",\"type\":\"address\"}],\"name\":\"policyCancelled\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"policyCreated\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"policyExpired\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"oldPolicy\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"newPolicy\",\"type\":\"tuple\"}],\"name\":\"policyReplaced\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"policyHolder\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"policyResolvedWithPayout\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"purePremiums\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"seniorEtk\",\"outputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"kind\":\"dev\",\"methods\":{\"policyCancelled((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256,address)\":{\"custom:emits\":\"{EToken-SCRUnlocked}\",\"custom:pre\":\"Must be called by `policyPool()`\",\"params\":{\"jrCocRefund\":\"The jrCoc that will be reimbursed to the policy holder\",\"policyHolder\":\"Owner of the policy that will receive the reimbursement\",\"policyToCancel\":\"The policy that is being cancelled\",\"purePremiumRefund\":\"The pure premium amount that will be reimbursed to the policy holder\",\"srCocRefund\":\"The srCoc that will be reimbursed to the policy holder\"}},\"policyCreated((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"custom:emits\":\"{EToken-SCRLocked}\",\"custom:pre\":\"Must be called by `policyPool()`\",\"params\":{\"policy\":\"The policy to add (created in this transaction)\"}},\"policyExpired((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"custom:emits\":\"{ERC20-Transfer}: `to == policyHolder`, `amount == payout`{EToken-InternalLoanRepaid}: optional, if a loan was taken before\",\"custom:pre\":\"Must be called by `policyPool()`\",\"params\":{\"policy\":\"The policy that has expired\"}},\"policyReplaced((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"custom:emits\":\"{EToken-SCRUnlocked}{EToken-SCRLocked}\",\"custom:pre\":\"Must be called by `policyPool()`\",\"params\":{\"newPolicy\":\"The policy that will replace the old one (created in this transaction)\",\"oldPolicy\":\"The policy to replace (created in a previous transaction)\"}},\"policyResolvedWithPayout(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"custom:emits\":\"{ERC20-Transfer}: `to == policyHolder`, `amount == payout`{EToken-InternalLoan}: optional, if a loan needs to be taken{EToken-SCRUnlocked}\",\"custom:pre\":\"Must be called by `policyPool()`\",\"params\":{\"payout\":\"The amount that has to be transferred to `policyHolder`\",\"policy\":\"The policy that was resolved\",\"policyHolder\":\"The one that will receive the payout\"}}},\"title\":\"IPremiumsAccount interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"etks()\":{\"notice\":\"Returns the juniorEtk and seniorEtk. See {juniorEtk()} and {seniorEtk()}\"},\"juniorEtk()\":{\"notice\":\"The junior eToken, the primary source of solvency, used if the premiums account is exhausted.\"},\"policyCancelled((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256,address)\":{\"notice\":\"Reflects the cancellation of a policy, doing the required refunds.\"},\"policyCreated((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Adds a policy to the PremiumsAccount. Stores the pure premiums and locks the aditional funds from junior and senior eTokens.\"},\"policyExpired((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"The PremiumsAccount is notified that the policy has expired, unlocks the SCR and earns the pure premium.\"},\"policyReplaced((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Replaces a policy with another in PremiumsAccount. Stores the pure premiums difference and re-locks the aditional funds from junior and senior eTokens.\"},\"policyResolvedWithPayout(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"notice\":\"The PremiumsAccount is notified that the policy was resolved and issues the payout to the policyHolder.\"},\"purePremiums()\":{\"notice\":\"The total amount of premiums hold by this PremiumsAccount\"},\"seniorEtk()\":{\"notice\":\"The senior eToken, the secondary source of solvency, used if the premiums account is exhausted and junior too\"}},\"notice\":\"Interface for Premiums Account contracts.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IPremiumsAccount.sol\":\"IPremiumsAccount\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/interfaces/IRiskModule.sol":{"IRiskModule":{"abi":[{"inputs":[],"name":"premiumsAccount","outputs":[{"internalType":"contract IPremiumsAccount","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"premiumsAccount()":"73a952e8","wallet()":"521eb273"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"premiumsAccount\",\"outputs\":[{\"internalType\":\"contract IPremiumsAccount\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"wallet\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"kind\":\"dev\",\"methods\":{},\"title\":\"IRiskModule interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"premiumsAccount()\":{\"notice\":\"Returns the {PremiumsAccount} where the premiums of this risk module are collected. Never changes.\"},\"wallet()\":{\"notice\":\"Returns the address of the partner that receives the partnerCommission\"}},\"notice\":\"Interface for RiskModule smart contracts. Gives access to RiskModule configuration parameters\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IRiskModule.sol\":\"IRiskModule\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/interfaces/IUnderwriter.sol":{"IUnderwriter":{"abi":[{"inputs":[{"internalType":"address","name":"rm","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"priceNewPolicy","outputs":[{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"uint96","name":"internalId","type":"uint96"},{"components":[{"internalType":"uint256","name":"moc","type":"uint256"},{"internalType":"uint256","name":"jrCollRatio","type":"uint256"},{"internalType":"uint256","name":"collRatio","type":"uint256"},{"internalType":"uint256","name":"ensuroPpFee","type":"uint256"},{"internalType":"uint256","name":"ensuroCocFee","type":"uint256"},{"internalType":"uint256","name":"jrRoc","type":"uint256"},{"internalType":"uint256","name":"srRoc","type":"uint256"}],"internalType":"struct Policy.Params","name":"params","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rm","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"pricePolicyCancellation","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policyToCancel","type":"tuple"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rm","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"pricePolicyReplacement","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"oldPolicy","type":"tuple"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"uint96","name":"internalId","type":"uint96"},{"components":[{"internalType":"uint256","name":"moc","type":"uint256"},{"internalType":"uint256","name":"jrCollRatio","type":"uint256"},{"internalType":"uint256","name":"collRatio","type":"uint256"},{"internalType":"uint256","name":"ensuroPpFee","type":"uint256"},{"internalType":"uint256","name":"ensuroCocFee","type":"uint256"},{"internalType":"uint256","name":"jrRoc","type":"uint256"},{"internalType":"uint256","name":"srRoc","type":"uint256"}],"internalType":"struct Policy.Params","name":"params","type":"tuple"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"priceNewPolicy(address,bytes)":"ba097a2a","pricePolicyCancellation(address,bytes)":"32f857fa","pricePolicyReplacement(address,bytes)":"9ba942d6"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"rm\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"priceNewPolicy\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"moc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCollRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"collRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroPpFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCocFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrRoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srRoc\",\"type\":\"uint256\"}],\"internalType\":\"struct Policy.Params\",\"name\":\"params\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"rm\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"pricePolicyCancellation\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policyToCancel\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"rm\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"pricePolicyReplacement\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"oldPolicy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"moc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCollRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"collRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroPpFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCocFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrRoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srRoc\",\"type\":\"uint256\"}],\"internalType\":\"struct Policy.Params\",\"name\":\"params\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"kind\":\"dev\",\"methods\":{\"priceNewPolicy(address,bytes)\":{\"custom:pre\":\"`inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.The caller must satisfy any access/authentication requirements imposed by the implementation.\",\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"expiration\":\" Policy expiration timestamp (seconds since epoch).\",\"internalId\":\" Unique id within `rm` used to derive the policy id.\",\"lossProb\":\"   Loss probability used for pricing/risk calculations.\",\"params\":\"     Additional policy parameters used by {Policy-initialize}.\",\"payout\":\"     The policy payout.\",\"premium\":\"    The total premium for the policy.\"}},\"pricePolicyCancellation(address,bytes)\":{\"custom:pre\":\"`inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.The caller must satisfy any access/authentication requirements imposed by the implementation.\",\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"jrCocRefund\":\"      Amount to refund from junior CoC (or a sentinel value, if supported).\",\"policyToCancel\":\"   The policy to cancel (as {Policy-PolicyData}).\",\"purePremiumRefund\":\"Amount to refund from pure premium.\",\"srCocRefund\":\"      Amount to refund from senior CoC (or a sentinel value, if supported).\"}},\"pricePolicyReplacement(address,bytes)\":{\"custom:pre\":\"`inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.The caller must satisfy any access/authentication requirements imposed by the implementation.\",\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"expiration\":\" Replacement policy expiration timestamp.\",\"internalId\":\" Unique id within `rm` for the replacement policy.\",\"lossProb\":\"   Loss probability used for pricing/risk calculations.\",\"oldPolicy\":\"  The policy being replaced (as {Policy-PolicyData}).\",\"params\":\"     Additional policy parameters used by {Policy-initialize}.\",\"payout\":\"     The replacement policy payout.\",\"premium\":\"    The replacement policy premium.\"}}},\"title\":\"Underwriter interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"priceNewPolicy(address,bytes)\":{\"notice\":\"Prices a new policy request for RiskModule `rm`.\"},\"pricePolicyCancellation(address,bytes)\":{\"notice\":\"Prices a policy cancellation request for RiskModule `rm`.\"},\"pricePolicyReplacement(address,bytes)\":{\"notice\":\"Prices a policy replacement request for RiskModule `rm`.\"}},\"notice\":\"Interface for a contract that validates inputs and converts it into the fields required to create a policy\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IUnderwriter.sol\":\"IUnderwriter\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/interfaces/IUnderwriter.sol\":{\"keccak256\":\"0x2d2ed693a29e809ddc60c4669a6ea5bf8a74497593e8e099ea76c27505472acb\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4534e64481c50a88d782c615dce9ac3bda35509e0252ca306456665e57f26527\",\"dweb:/ipfs/QmdNGFXjRm2t8cZe5zi9C6YNh9BMHDnk4dfWNfHxmHgqwJ\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/mocks/ForwardProxy.sol":{"ForwardProxy":{"abi":[{"inputs":[{"internalType":"address","name":"forwardTo","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"forwardTo","type":"address"}],"name":"setForwardTo","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_29382":{"entryPoint":null,"id":29382,"parameterSlots":1,"returnSlots":0},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":78,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:306:101","nodeType":"YulBlock","src":"0:306:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"95:209:101","nodeType":"YulBlock","src":"95:209:101","statements":[{"body":{"nativeSrc":"141:16:101","nodeType":"YulBlock","src":"141:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"150:1:101","nodeType":"YulLiteral","src":"150:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"153:1:101","nodeType":"YulLiteral","src":"153:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"143:6:101","nodeType":"YulIdentifier","src":"143:6:101"},"nativeSrc":"143:12:101","nodeType":"YulFunctionCall","src":"143:12:101"},"nativeSrc":"143:12:101","nodeType":"YulExpressionStatement","src":"143:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"116:7:101","nodeType":"YulIdentifier","src":"116:7:101"},{"name":"headStart","nativeSrc":"125:9:101","nodeType":"YulIdentifier","src":"125:9:101"}],"functionName":{"name":"sub","nativeSrc":"112:3:101","nodeType":"YulIdentifier","src":"112:3:101"},"nativeSrc":"112:23:101","nodeType":"YulFunctionCall","src":"112:23:101"},{"kind":"number","nativeSrc":"137:2:101","nodeType":"YulLiteral","src":"137:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"108:3:101","nodeType":"YulIdentifier","src":"108:3:101"},"nativeSrc":"108:32:101","nodeType":"YulFunctionCall","src":"108:32:101"},"nativeSrc":"105:52:101","nodeType":"YulIf","src":"105:52:101"},{"nativeSrc":"166:29:101","nodeType":"YulVariableDeclaration","src":"166:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"185:9:101","nodeType":"YulIdentifier","src":"185:9:101"}],"functionName":{"name":"mload","nativeSrc":"179:5:101","nodeType":"YulIdentifier","src":"179:5:101"},"nativeSrc":"179:16:101","nodeType":"YulFunctionCall","src":"179:16:101"},"variables":[{"name":"value","nativeSrc":"170:5:101","nodeType":"YulTypedName","src":"170:5:101","type":""}]},{"body":{"nativeSrc":"258:16:101","nodeType":"YulBlock","src":"258:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"267:1:101","nodeType":"YulLiteral","src":"267:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"270:1:101","nodeType":"YulLiteral","src":"270:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"260:6:101","nodeType":"YulIdentifier","src":"260:6:101"},"nativeSrc":"260:12:101","nodeType":"YulFunctionCall","src":"260:12:101"},"nativeSrc":"260:12:101","nodeType":"YulExpressionStatement","src":"260:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"217:5:101","nodeType":"YulIdentifier","src":"217:5:101"},{"arguments":[{"name":"value","nativeSrc":"228:5:101","nodeType":"YulIdentifier","src":"228:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"243:3:101","nodeType":"YulLiteral","src":"243:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"248:1:101","nodeType":"YulLiteral","src":"248:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"239:3:101","nodeType":"YulIdentifier","src":"239:3:101"},"nativeSrc":"239:11:101","nodeType":"YulFunctionCall","src":"239:11:101"},{"kind":"number","nativeSrc":"252:1:101","nodeType":"YulLiteral","src":"252:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"235:3:101","nodeType":"YulIdentifier","src":"235:3:101"},"nativeSrc":"235:19:101","nodeType":"YulFunctionCall","src":"235:19:101"}],"functionName":{"name":"and","nativeSrc":"224:3:101","nodeType":"YulIdentifier","src":"224:3:101"},"nativeSrc":"224:31:101","nodeType":"YulFunctionCall","src":"224:31:101"}],"functionName":{"name":"eq","nativeSrc":"214:2:101","nodeType":"YulIdentifier","src":"214:2:101"},"nativeSrc":"214:42:101","nodeType":"YulFunctionCall","src":"214:42:101"}],"functionName":{"name":"iszero","nativeSrc":"207:6:101","nodeType":"YulIdentifier","src":"207:6:101"},"nativeSrc":"207:50:101","nodeType":"YulFunctionCall","src":"207:50:101"},"nativeSrc":"204:70:101","nodeType":"YulIf","src":"204:70:101"},{"nativeSrc":"283:15:101","nodeType":"YulAssignment","src":"283:15:101","value":{"name":"value","nativeSrc":"293:5:101","nodeType":"YulIdentifier","src":"293:5:101"},"variableNames":[{"name":"value0","nativeSrc":"283:6:101","nodeType":"YulIdentifier","src":"283:6:101"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"14:290:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"61:9:101","nodeType":"YulTypedName","src":"61:9:101","type":""},{"name":"dataEnd","nativeSrc":"72:7:101","nodeType":"YulTypedName","src":"72:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"84:6:101","nodeType":"YulTypedName","src":"84:6:101","type":""}],"src":"14:290:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"6080604052348015600e575f5ffd5b50604051610176380380610176833981016040819052602b91604e565b5f80546001600160a01b0319166001600160a01b03929092169190911790556079565b5f60208284031215605d575f5ffd5b81516001600160a01b03811681146072575f5ffd5b9392505050565b60f1806100855f395ff3fe608060405260043610601b575f3560e01c8063d4b27001146023575b6021605a565b005b348015602d575f5ffd5b50602160393660046090565b5f80546001600160a01b0319166001600160a01b0392909216919091179055565b6070606c5f546001600160a01b031690565b6072565b565b365f5f375f5f365f5f855af13d5f5f3e808015608c573d5ff35b3d5ffd5b5f60208284031215609f575f5ffd5b81356001600160a01b038116811460b4575f5ffd5b939250505056fea264697066735822122014c9dd935ae6ba96707406628fe8df5c525e4bffddf4941290293e5d3ed3323164736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x176 CODESIZE SUB DUP1 PUSH2 0x176 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH1 0x2B SWAP2 PUSH1 0x4E JUMP JUMPDEST PUSH0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x79 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH1 0x5D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH1 0x72 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0xF1 DUP1 PUSH2 0x85 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x1B JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xD4B27001 EQ PUSH1 0x23 JUMPI JUMPDEST PUSH1 0x21 PUSH1 0x5A JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH1 0x2D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x21 PUSH1 0x39 CALLDATASIZE PUSH1 0x4 PUSH1 0x90 JUMP JUMPDEST PUSH0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x70 PUSH1 0x6C PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x72 JUMP JUMPDEST JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 PUSH0 DUP6 GAS CALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH1 0x8C JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH1 0x9F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH1 0xB4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EQ 0xC9 0xDD SWAP4 GAS DUPN 0xBA SWAP7 PUSH17 0x7406628FE8DF5C525E4BFFDDF494129029 RETURNDATACOPY TSTORE RETURNDATACOPY 0xD3 ORIGIN BALANCE PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"552:1606:92:-:0;;;619:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;656:10;:22;;-1:-1:-1;;;;;;656:22:92;-1:-1:-1;;;;;656:22:92;;;;;;;;;;552:1606;;14:290:101;84:6;137:2;125:9;116:7;112:23;108:32;105:52;;;153:1;150;143:12;105:52;179:16;;-1:-1:-1;;;;;224:31:101;;214:42;;204:70;;270:1;267;260:12;204:70;293:5;14:290;-1:-1:-1;;;14:290:101:o;:::-;552:1606:92;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_6939":{"entryPoint":null,"id":6939,"parameterSlots":0,"returnSlots":0},"@_delegate_29391":{"entryPoint":114,"id":29391,"parameterSlots":1,"returnSlots":0},"@_fallback_6931":{"entryPoint":90,"id":6931,"parameterSlots":0,"returnSlots":0},"@_implementation_29401":{"entryPoint":null,"id":29401,"parameterSlots":0,"returnSlots":1},"@setForwardTo_29411":{"entryPoint":null,"id":29411,"parameterSlots":1,"returnSlots":0},"abi_decode_tuple_t_address":{"entryPoint":144,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:302:101","nodeType":"YulBlock","src":"0:302:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"84:216:101","nodeType":"YulBlock","src":"84:216:101","statements":[{"body":{"nativeSrc":"130:16:101","nodeType":"YulBlock","src":"130:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"139:1:101","nodeType":"YulLiteral","src":"139:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"142:1:101","nodeType":"YulLiteral","src":"142:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"132:6:101","nodeType":"YulIdentifier","src":"132:6:101"},"nativeSrc":"132:12:101","nodeType":"YulFunctionCall","src":"132:12:101"},"nativeSrc":"132:12:101","nodeType":"YulExpressionStatement","src":"132:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"105:7:101","nodeType":"YulIdentifier","src":"105:7:101"},{"name":"headStart","nativeSrc":"114:9:101","nodeType":"YulIdentifier","src":"114:9:101"}],"functionName":{"name":"sub","nativeSrc":"101:3:101","nodeType":"YulIdentifier","src":"101:3:101"},"nativeSrc":"101:23:101","nodeType":"YulFunctionCall","src":"101:23:101"},{"kind":"number","nativeSrc":"126:2:101","nodeType":"YulLiteral","src":"126:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"97:3:101","nodeType":"YulIdentifier","src":"97:3:101"},"nativeSrc":"97:32:101","nodeType":"YulFunctionCall","src":"97:32:101"},"nativeSrc":"94:52:101","nodeType":"YulIf","src":"94:52:101"},{"nativeSrc":"155:36:101","nodeType":"YulVariableDeclaration","src":"155:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"181:9:101","nodeType":"YulIdentifier","src":"181:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"168:12:101","nodeType":"YulIdentifier","src":"168:12:101"},"nativeSrc":"168:23:101","nodeType":"YulFunctionCall","src":"168:23:101"},"variables":[{"name":"value","nativeSrc":"159:5:101","nodeType":"YulTypedName","src":"159:5:101","type":""}]},{"body":{"nativeSrc":"254:16:101","nodeType":"YulBlock","src":"254:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:101","nodeType":"YulLiteral","src":"263:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:101","nodeType":"YulLiteral","src":"266:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:101","nodeType":"YulIdentifier","src":"256:6:101"},"nativeSrc":"256:12:101","nodeType":"YulFunctionCall","src":"256:12:101"},"nativeSrc":"256:12:101","nodeType":"YulExpressionStatement","src":"256:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"213:5:101","nodeType":"YulIdentifier","src":"213:5:101"},{"arguments":[{"name":"value","nativeSrc":"224:5:101","nodeType":"YulIdentifier","src":"224:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"239:3:101","nodeType":"YulLiteral","src":"239:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"244:1:101","nodeType":"YulLiteral","src":"244:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"235:3:101","nodeType":"YulIdentifier","src":"235:3:101"},"nativeSrc":"235:11:101","nodeType":"YulFunctionCall","src":"235:11:101"},{"kind":"number","nativeSrc":"248:1:101","nodeType":"YulLiteral","src":"248:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"231:3:101","nodeType":"YulIdentifier","src":"231:3:101"},"nativeSrc":"231:19:101","nodeType":"YulFunctionCall","src":"231:19:101"}],"functionName":{"name":"and","nativeSrc":"220:3:101","nodeType":"YulIdentifier","src":"220:3:101"},"nativeSrc":"220:31:101","nodeType":"YulFunctionCall","src":"220:31:101"}],"functionName":{"name":"eq","nativeSrc":"210:2:101","nodeType":"YulIdentifier","src":"210:2:101"},"nativeSrc":"210:42:101","nodeType":"YulFunctionCall","src":"210:42:101"}],"functionName":{"name":"iszero","nativeSrc":"203:6:101","nodeType":"YulIdentifier","src":"203:6:101"},"nativeSrc":"203:50:101","nodeType":"YulFunctionCall","src":"203:50:101"},"nativeSrc":"200:70:101","nodeType":"YulIf","src":"200:70:101"},{"nativeSrc":"279:15:101","nodeType":"YulAssignment","src":"279:15:101","value":{"name":"value","nativeSrc":"289:5:101","nodeType":"YulIdentifier","src":"289:5:101"},"variableNames":[{"name":"value0","nativeSrc":"279:6:101","nodeType":"YulIdentifier","src":"279:6:101"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"14:286:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"50:9:101","nodeType":"YulTypedName","src":"50:9:101","type":""},{"name":"dataEnd","nativeSrc":"61:7:101","nodeType":"YulTypedName","src":"61:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"73:6:101","nodeType":"YulTypedName","src":"73:6:101","type":""}],"src":"14:286:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405260043610601b575f3560e01c8063d4b27001146023575b6021605a565b005b348015602d575f5ffd5b50602160393660046090565b5f80546001600160a01b0319166001600160a01b0392909216919091179055565b6070606c5f546001600160a01b031690565b6072565b565b365f5f375f5f365f5f855af13d5f5f3e808015608c573d5ff35b3d5ffd5b5f60208284031215609f575f5ffd5b81356001600160a01b038116811460b4575f5ffd5b939250505056fea264697066735822122014c9dd935ae6ba96707406628fe8df5c525e4bffddf4941290293e5d3ed3323164736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x1B JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xD4B27001 EQ PUSH1 0x23 JUMPI JUMPDEST PUSH1 0x21 PUSH1 0x5A JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH1 0x2D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x21 PUSH1 0x39 CALLDATASIZE PUSH1 0x4 PUSH1 0x90 JUMP JUMPDEST PUSH0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x70 PUSH1 0x6C PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x72 JUMP JUMPDEST JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 PUSH0 DUP6 GAS CALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH1 0x8C JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH1 0x9F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH1 0xB4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EQ 0xC9 0xDD SWAP4 GAS DUPN 0xBA SWAP7 PUSH17 0x7406628FE8DF5C525E4BFFDDF494129029 RETURNDATACOPY TSTORE RETURNDATACOPY 0xD3 ORIGIN BALANCE PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"552:1606:92:-:0;;;;;;;;;;;;;;;;;;2676:11:30;:9;:11::i;:::-;552:1606:92;2073:83;;;;;;;;;;-1:-1:-1;2073:83:92;;;;;:::i;:::-;2129:10;:22;;-1:-1:-1;;;;;;2129:22:92;-1:-1:-1;;;;;2129:22:92;;;;;;;;;;2073:83;2350::30;2398:28;2408:17;2032:7:92;2054:10;-1:-1:-1;;;;;2054:10:92;;1965:104;2408:17:30;2398:9;:28::i;:::-;2350:83::o;873:919:92:-;1244:14;1241:1;1238;1225:34;1519:1;1516;1500:14;1497:1;1494;1478:14;1471:5;1466:55;1583:16;1580:1;1577;1562:38;1615:6;1670:52;;;;1757:16;1754:1;1747:27;1670:52;1697:16;1694:1;1687:27;14:286:101;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;168:23;;-1:-1:-1;;;;;220:31:101;;210:42;;200:70;;266:1;263;256:12;200:70;289:5;14:286;-1:-1:-1;;;14:286:101:o"},"methodIdentifiers":{"setForwardTo(address)":"d4b27001"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"forwardTo\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"forwardTo\",\"type\":\"address\"}],\"name\":\"setForwardTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"This contract provides a fallback function that forwards all calls to another contract using the EVM instruction `call`. Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a different contract through the {_delegate} function. The success and return data of the delegated call will be returned back to the caller of the proxy.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/mocks/ForwardProxy.sol\":\"ForwardProxy\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0x80935e4fae2c414f4e7789e13a820d06901182a5733ab006f8d68b5b09db993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://752d991d6ca1087587b48103bc623f74888054f58581ff29166d90889c4765c5\",\"dweb:/ipfs/QmRBsa6K2ChKxVWYY54YiyYhDBPbmY5HyKCtij5LoWh56o\"]},\"contracts/mocks/ForwardProxy.sol\":{\"keccak256\":\"0x3ec679a7979e4d0a93a4fdd3db90bc34ab000b888664c88260649fef9e302a5b\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://28bf69dcdbd93e4f429e26a2260bc58ef19efcb2163ccdf28e295c4264284900\",\"dweb:/ipfs/QmY8FFry1PtXKm32WPmGzNyLcWagg1qhhy5dvqgL7qiTmk\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":29372,"contract":"contracts/mocks/ForwardProxy.sol:ForwardProxy","label":"_forwardTo","offset":0,"slot":"0","type":"t_address"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"}}}}},"contracts/mocks/InterfaceIdCalculator.sol":{"InterfaceIdCalculator":{"abi":[{"inputs":[],"name":"IACCESSCONTROL_INTERFACEID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ICOOLER_INTERFACEID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IERC165_INTERFACEID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IERC20METADATA_INTERFACEID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IERC20_INTERFACEID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IERC721_INTERFACEID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IETOKEN_INTERFACEID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ILPWHITELIST_INTERFACEID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IPOLICYHOLDER_INTERFACEID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IPOLICYPOOLCOMPONENT_INTERFACEID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IPOLICYPOOL_INTERFACEID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IPREMIUMSACCOUNT_INTERFACEID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IRISKMODULE_INTERFACEID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"6080604052348015600e575f5ffd5b506101d88061001c5f395ff3fe608060405234801561000f575f5ffd5b50600436106100cb575f3560e01c80638786bcbd1161008857806396047c991161006357806396047c991461016a578063a23a166114610178578063c1bd03a614610186578063fef87f0b14610194575f5ffd5b80638786bcbd146101405780638b98dad01461014e578063933c234b1461015c575f5ffd5b806311f34418146100cf578063362466de146100fa578063731e0f7f146101085780637874bf9814610116578063800915a514610124578063824bab6914610132575b5f5ffd5b6100dd63f7e4b01b60e01b81565b6040516001600160e01b0319909116815260200160405180910390f35b6100dd634d15eb0360e01b81565b6100dd63a219a02560e01b81565b6100dd636d5136b160e11b81565b6100dd63f8722d8960e01b81565b6100dd63af14a2ed60e01b81565b6100dd630162fc8560e11b81565b6100dd6321b7e09b60e01b81565b6100dd637965db0b60e01b81565b6100dd6380ac58cd60e01b81565b6100dd6301ffc9a760e01b81565b6100dd6336372b0760e01b81565b6100dd63c476978760e01b8156fea2646970667358221220a4513d4f554183c23150eda46b366d69a64c561b4efadfbd1f9ac79c8264671e64736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1D8 DUP1 PUSH2 0x1C PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCB JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8786BCBD GT PUSH2 0x88 JUMPI DUP1 PUSH4 0x96047C99 GT PUSH2 0x63 JUMPI DUP1 PUSH4 0x96047C99 EQ PUSH2 0x16A JUMPI DUP1 PUSH4 0xA23A1661 EQ PUSH2 0x178 JUMPI DUP1 PUSH4 0xC1BD03A6 EQ PUSH2 0x186 JUMPI DUP1 PUSH4 0xFEF87F0B EQ PUSH2 0x194 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8786BCBD EQ PUSH2 0x140 JUMPI DUP1 PUSH4 0x8B98DAD0 EQ PUSH2 0x14E JUMPI DUP1 PUSH4 0x933C234B EQ PUSH2 0x15C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x11F34418 EQ PUSH2 0xCF JUMPI DUP1 PUSH4 0x362466DE EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0x731E0F7F EQ PUSH2 0x108 JUMPI DUP1 PUSH4 0x7874BF98 EQ PUSH2 0x116 JUMPI DUP1 PUSH4 0x800915A5 EQ PUSH2 0x124 JUMPI DUP1 PUSH4 0x824BAB69 EQ PUSH2 0x132 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xDD PUSH4 0xF7E4B01B PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDD PUSH4 0x4D15EB03 PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0xA219A025 PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0x6D5136B1 PUSH1 0xE1 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0xF8722D89 PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0xAF14A2ED PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0x162FC85 PUSH1 0xE1 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0x21B7E09B PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0x7965DB0B PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0x80AC58CD PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0x36372B07 PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0xC4769787 PUSH1 0xE0 SHL DUP2 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG4 MLOAD RETURNDATASIZE 0x4F SSTORE COINBASE DUP4 0xC2 BALANCE POP 0xED LOG4 PUSH12 0x366D69A64C561B4EFADFBD1F SWAP11 0xC7 SWAP13 DUP3 PUSH5 0x671E64736F PUSH13 0x634300081E0033000000000000 ","sourceMap":"962:1104:93:-:0;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@IACCESSCONTROL_INTERFACEID_29470":{"entryPoint":null,"id":29470,"parameterSlots":0,"returnSlots":0},"@ICOOLER_INTERFACEID_29518":{"entryPoint":null,"id":29518,"parameterSlots":0,"returnSlots":0},"@IERC165_INTERFACEID_29446":{"entryPoint":null,"id":29446,"parameterSlots":0,"returnSlots":0},"@IERC20METADATA_INTERFACEID_29458":{"entryPoint":null,"id":29458,"parameterSlots":0,"returnSlots":0},"@IERC20_INTERFACEID_29452":{"entryPoint":null,"id":29452,"parameterSlots":0,"returnSlots":0},"@IERC721_INTERFACEID_29464":{"entryPoint":null,"id":29464,"parameterSlots":0,"returnSlots":0},"@IETOKEN_INTERFACEID_29488":{"entryPoint":null,"id":29488,"parameterSlots":0,"returnSlots":0},"@ILPWHITELIST_INTERFACEID_29506":{"entryPoint":null,"id":29506,"parameterSlots":0,"returnSlots":0},"@IPOLICYHOLDER_INTERFACEID_29512":{"entryPoint":null,"id":29512,"parameterSlots":0,"returnSlots":0},"@IPOLICYPOOLCOMPONENT_INTERFACEID_29482":{"entryPoint":null,"id":29482,"parameterSlots":0,"returnSlots":0},"@IPOLICYPOOL_INTERFACEID_29476":{"entryPoint":null,"id":29476,"parameterSlots":0,"returnSlots":0},"@IPREMIUMSACCOUNT_INTERFACEID_29500":{"entryPoint":null,"id":29500,"parameterSlots":0,"returnSlots":0},"@IRISKMODULE_INTERFACEID_29494":{"entryPoint":null,"id":29494,"parameterSlots":0,"returnSlots":0},"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:218:101","nodeType":"YulBlock","src":"0:218:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"113:103:101","nodeType":"YulBlock","src":"113:103:101","statements":[{"nativeSrc":"123:26:101","nodeType":"YulAssignment","src":"123:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"135:9:101","nodeType":"YulIdentifier","src":"135:9:101"},{"kind":"number","nativeSrc":"146:2:101","nodeType":"YulLiteral","src":"146:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"131:3:101","nodeType":"YulIdentifier","src":"131:3:101"},"nativeSrc":"131:18:101","nodeType":"YulFunctionCall","src":"131:18:101"},"variableNames":[{"name":"tail","nativeSrc":"123:4:101","nodeType":"YulIdentifier","src":"123:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"165:9:101","nodeType":"YulIdentifier","src":"165:9:101"},{"arguments":[{"name":"value0","nativeSrc":"180:6:101","nodeType":"YulIdentifier","src":"180:6:101"},{"arguments":[{"kind":"number","nativeSrc":"192:3:101","nodeType":"YulLiteral","src":"192:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"197:10:101","nodeType":"YulLiteral","src":"197:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"188:3:101","nodeType":"YulIdentifier","src":"188:3:101"},"nativeSrc":"188:20:101","nodeType":"YulFunctionCall","src":"188:20:101"}],"functionName":{"name":"and","nativeSrc":"176:3:101","nodeType":"YulIdentifier","src":"176:3:101"},"nativeSrc":"176:33:101","nodeType":"YulFunctionCall","src":"176:33:101"}],"functionName":{"name":"mstore","nativeSrc":"158:6:101","nodeType":"YulIdentifier","src":"158:6:101"},"nativeSrc":"158:52:101","nodeType":"YulFunctionCall","src":"158:52:101"},"nativeSrc":"158:52:101","nodeType":"YulExpressionStatement","src":"158:52:101"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nativeSrc":"14:202:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"82:9:101","nodeType":"YulTypedName","src":"82:9:101","type":""},{"name":"value0","nativeSrc":"93:6:101","nodeType":"YulTypedName","src":"93:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"104:4:101","nodeType":"YulTypedName","src":"104:4:101","type":""}],"src":"14:202:101"}]},"contents":"{\n    { }\n    function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, shl(224, 0xffffffff)))\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b50600436106100cb575f3560e01c80638786bcbd1161008857806396047c991161006357806396047c991461016a578063a23a166114610178578063c1bd03a614610186578063fef87f0b14610194575f5ffd5b80638786bcbd146101405780638b98dad01461014e578063933c234b1461015c575f5ffd5b806311f34418146100cf578063362466de146100fa578063731e0f7f146101085780637874bf9814610116578063800915a514610124578063824bab6914610132575b5f5ffd5b6100dd63f7e4b01b60e01b81565b6040516001600160e01b0319909116815260200160405180910390f35b6100dd634d15eb0360e01b81565b6100dd63a219a02560e01b81565b6100dd636d5136b160e11b81565b6100dd63f8722d8960e01b81565b6100dd63af14a2ed60e01b81565b6100dd630162fc8560e11b81565b6100dd6321b7e09b60e01b81565b6100dd637965db0b60e01b81565b6100dd6380ac58cd60e01b81565b6100dd6301ffc9a760e01b81565b6100dd6336372b0760e01b81565b6100dd63c476978760e01b8156fea2646970667358221220a4513d4f554183c23150eda46b366d69a64c561b4efadfbd1f9ac79c8264671e64736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCB JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8786BCBD GT PUSH2 0x88 JUMPI DUP1 PUSH4 0x96047C99 GT PUSH2 0x63 JUMPI DUP1 PUSH4 0x96047C99 EQ PUSH2 0x16A JUMPI DUP1 PUSH4 0xA23A1661 EQ PUSH2 0x178 JUMPI DUP1 PUSH4 0xC1BD03A6 EQ PUSH2 0x186 JUMPI DUP1 PUSH4 0xFEF87F0B EQ PUSH2 0x194 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8786BCBD EQ PUSH2 0x140 JUMPI DUP1 PUSH4 0x8B98DAD0 EQ PUSH2 0x14E JUMPI DUP1 PUSH4 0x933C234B EQ PUSH2 0x15C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x11F34418 EQ PUSH2 0xCF JUMPI DUP1 PUSH4 0x362466DE EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0x731E0F7F EQ PUSH2 0x108 JUMPI DUP1 PUSH4 0x7874BF98 EQ PUSH2 0x116 JUMPI DUP1 PUSH4 0x800915A5 EQ PUSH2 0x124 JUMPI DUP1 PUSH4 0x824BAB69 EQ PUSH2 0x132 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xDD PUSH4 0xF7E4B01B PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDD PUSH4 0x4D15EB03 PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0xA219A025 PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0x6D5136B1 PUSH1 0xE1 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0xF8722D89 PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0xAF14A2ED PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0x162FC85 PUSH1 0xE1 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0x21B7E09B PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0x7965DB0B PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0x80AC58CD PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0x36372B07 PUSH1 0xE0 SHL DUP2 JUMP JUMPDEST PUSH2 0xDD PUSH4 0xC4769787 PUSH1 0xE0 SHL DUP2 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG4 MLOAD RETURNDATASIZE 0x4F SSTORE COINBASE DUP4 0xC2 BALANCE POP 0xED LOG4 PUSH12 0x366D69A64C561B4EFADFBD1F SWAP11 0xC7 SWAP13 DUP3 PUSH5 0x671E64736F PUSH13 0x634300081E0033000000000000 ","sourceMap":"962:1104:93:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1731:88;;-1:-1:-1;;;1731:88:93;;;;;-1:-1:-1;;;;;;176:33:101;;;158:52;;146:2;131:18;1731:88:93;;;;;;;1475:96;;-1:-1:-1;;;1475:96:93;;1143:84;;-1:-1:-1;;;1143:84:93;;1575:70;;-1:-1:-1;;;1575:70:93;;1823:80;;-1:-1:-1;;;1823:80:93;;1993:70;;-1:-1:-1;;;1993:70:93;;1907:82;;-1:-1:-1;;;1907:82:93;;1649:78;;-1:-1:-1;;;1649:78:93;;1305:84;;-1:-1:-1;;;1305:84:93;;1231:70;;-1:-1:-1;;;1231:70:93;;997;;-1:-1:-1;;;997:70:93;;1071:68;;-1:-1:-1;;;1071:68:93;;1393:78;;-1:-1:-1;;;1393:78:93;"},"methodIdentifiers":{"IACCESSCONTROL_INTERFACEID()":"933c234b","ICOOLER_INTERFACEID()":"824bab69","IERC165_INTERFACEID()":"a23a1661","IERC20METADATA_INTERFACEID()":"731e0f7f","IERC20_INTERFACEID()":"c1bd03a6","IERC721_INTERFACEID()":"96047c99","IETOKEN_INTERFACEID()":"7874bf98","ILPWHITELIST_INTERFACEID()":"800915a5","IPOLICYHOLDER_INTERFACEID()":"8786bcbd","IPOLICYPOOLCOMPONENT_INTERFACEID()":"362466de","IPOLICYPOOL_INTERFACEID()":"fef87f0b","IPREMIUMSACCOUNT_INTERFACEID()":"11f34418","IRISKMODULE_INTERFACEID()":"8b98dad0"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"IACCESSCONTROL_INTERFACEID\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"ICOOLER_INTERFACEID\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"IERC165_INTERFACEID\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"IERC20METADATA_INTERFACEID\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"IERC20_INTERFACEID\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"IERC721_INTERFACEID\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"IETOKEN_INTERFACEID\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"ILPWHITELIST_INTERFACEID\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"IPOLICYHOLDER_INTERFACEID\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"IPOLICYPOOLCOMPONENT_INTERFACEID\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"IPOLICYPOOL_INTERFACEID\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"IPREMIUMSACCOUNT_INTERFACEID\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"IRISKMODULE_INTERFACEID\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/mocks/InterfaceIdCalculator.sol\":\"InterfaceIdCalculator\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xbff9f59c84e5337689161ce7641c0ef8e872d6a7536fbc1f5133f128887aba3c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b308f882e796f7b79c9502deacb0a62983035c6f6f4e962b319ba6a1f4a77d3d\",\"dweb:/ipfs/QmaWCW7ahEQqFjwhSUhV7Ae7WhfNvzSpE7DQ58hvEooqPL\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xf78f05f3b8c9f75570e85300d7b4600d7f6f6a198449273f31d44c1641adb46f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e28b872613b45e0e801d4995aa4380be2531147bfe2d85c1d6275f1de514fba3\",\"dweb:/ipfs/QmeeFcfShHYaS3BdgVj78nxR28ZaVUwbvr66ud8bT6kzw9\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0x88cd5e3bee2e8c36b8d9058fbcaa81ad5704281b25634122234b55ea853d8055\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8dc7e7ab5b8ea36c15027ab04221b05d1c970f47a53e9fd47ead8ca665d49c7e\",\"dweb:/ipfs/Qmeeph7fsDyfRr8vb2L8KcDEmKPb224TAayMvgqgGAnqpL\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/interfaces/ICooler.sol\":{\"keccak256\":\"0xd2f546d8a15bbc201e1811a050fce315eb72016c4360bf31066a8041f4159cae\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://3a974feacac260a76883322b18e3f0251aa3430f24bab1b7b4c21853a3498a9a\",\"dweb:/ipfs/QmQFixSYSFiJem2UYPJa2ky2eorFNXBncDZ1yrxPMRK66F\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/ILPWhitelist.sol\":{\"keccak256\":\"0x71555d613cf2e4efa341593f2611adc078e4b3f745a15db0c3cba2717f1312eb\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://474679208452130bd5f1acb2ee3c8585f219a441925af65121fee370882de42a\",\"dweb:/ipfs/QmcPoJQnQWKZteafe1T2sEVQHG1YPX8a731W7hqZZVyyxq\"]},\"contracts/interfaces/IPolicyHolder.sol\":{\"keccak256\":\"0xedfdb90379573eaab3213424a517042dd7f015cdb4ee734859609a019275797e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://321e424f1c9afd92e0cb38e4131ce30aaf7df551388b6d1d1abe60ea9dcd0e8a\",\"dweb:/ipfs/QmfFraGLbyy67ugA373JcZfPf7J34uzMHXbyBjoH9enWsK\"]},\"contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]},\"contracts/mocks/InterfaceIdCalculator.sol\":{\"keccak256\":\"0xa11bf26a76c3325b075b70e85b3a39d9f6fbe7bdaf71e4e7bc4cd1cb2b73610d\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://0146d6ef6666c91989e9bc556e1a8f071b066cf5f784354a17ad80dcbce33847\",\"dweb:/ipfs/Qmf8yjnYXnzSAEmudffeMYZqDfMoLwBC3WNfG8dRBcV6uN\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/mocks/PolicyHolderMock.sol":{"PolicyHolderMock":{"abi":[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum PolicyHolderMock.NotificationKind","name":"kind","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"policyId","type":"uint256"},{"indexed":false,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"address","name":"from","type":"address"}],"name":"NotificationReceived","type":"event"},{"inputs":[],"name":"badlyImplemented","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"badlyImplementedReplace","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emptyRevert","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fail","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"failCancellation","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"failReplace","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"noERC165","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notImplemented","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"policyId_","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","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":"policyId_","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"onPayoutReceived","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":"cancelledPolicyId","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"onPolicyCancelled","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":"policyId_","type":"uint256"}],"name":"onPolicyExpired","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":"oldPolicyId","type":"uint256"},{"internalType":"uint256","name":"newPolicyId","type":"uint256"}],"name":"onPolicyReplaced","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"payout","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"policyId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"badlyImplemented_","type":"bool"}],"name":"setBadlyImplemented","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"badlyImplementedReplace_","type":"bool"}],"name":"setBadlyImplementedReplace","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"emptyRevert_","type":"bool"}],"name":"setEmptyRevert","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"fail_","type":"bool"}],"name":"setFail","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"fail_","type":"bool"}],"name":"setFailCancellation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"failReplace_","type":"bool"}],"name":"setFailReplace","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"noERC165_","type":"bool"}],"name":"setNoERC165","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"notImplemented_","type":"bool"}],"name":"setNotImplemented","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"spendGasCount_","type":"uint256"}],"name":"setSpendGasCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"spendGasCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_29606":{"entryPoint":null,"id":29606,"parameterSlots":0,"returnSlots":0}},"generatedSources":[],"linkReferences":{},"object":"6080604052348015600e575f5ffd5b506002805467ff00ffffff0000ff191690555f196001555f600355610c39806100365f395ff3fe608060405234801561000f575f5ffd5b5060043610610187575f3560e01c80639568ca0f116100d9578063c3af904e11610093578063d99ba4081161006e578063d99ba40814610421578063e8e617b714610435578063ee89ef3a14610448578063f57c302e14610450575f5ffd5b8063c3af904e146103e7578063cc6a6523146103fb578063d6281d3e1461040e575f5ffd5b80639568ca0f1461033b5780639d7694021461034d578063a9cc47181461036e578063aeec8f9d1461037b578063b8d6d18d146103a9578063bcce5399146103d3575f5ffd5b8063352870141161014457806362eb345e1161011f57806362eb345e146102ea57806363bd1d4a146102fd5780636db65619146103145780637806ce8114610328575f5ffd5b806335287014146102935780635177cd13146102a85780635ee0c7dd146102d7575f5ffd5b806301ffc9a71461018b578063150b7a02146101b3578063286ee351146101df5780632bb2adb3146102095780632fb643621461023757806331ca294414610267575b5f5ffd5b61019e6101993660046109a8565b610459565b60405190151581526020015b60405180910390f35b6101c66101c13660046109ea565b6104c0565b6040516001600160e01b031990911681526020016101aa565b6102076101ed366004610a7f565b600280549115156101000261ff0019909216919091179055565b005b610207610217366004610a7f565b60028054911515600160281b0265ff000000000019909216919091179055565b610207610245366004610a7f565b60028054911515600160381b0267ff0000000000000019909216919091179055565b610207610275366004610a7f565b6002805491151563010000000263ff00000019909216919091179055565b60025461019e90640100000000900460ff1681565b6102076102b6366004610a7f565b60028054911515600160301b0266ff00000000000019909216919091179055565b6101c66102e5366004610a9e565b6105b3565b6101c66102f8366004610add565b6106a8565b61030660015481565b6040519081526020016101aa565b60025461019e906301000000900460ff1681565b610207610336366004610b2e565b600355565b60025461019e90610100900460ff1681565b61020761035b366004610a7f565b6002805460ff1916911515919091179055565b60025461019e9060ff1681565b610207610389366004610a7f565b600280549115156401000000000264ff0000000019909216919091179055565b6102076103b7366004610a7f565b60028054911515620100000262ff000019909216919091179055565b60025461019e90600160381b900460ff1681565b60025461019e90600160281b900460ff1681565b60025461019e9062010000900460ff1681565b6101c661041c366004610a9e565b61079c565b60025461019e90600160301b900460ff1681565b6101c6610443366004610b45565b610888565b6103065f5481565b61030660035481565b6002545f90600160381b900460ff1615610471575f5ffd5b600254640100000000900460ff161561048b57505f919050565b6001600160e01b03198216630162fc8560e11b14806104ba57506001600160e01b031982166301ffc9a760e01b145b92915050565b6002545f9060ff1615610546576002546301000000900460ff16156104e3575f5ffd5b60405162461bcd60e51b815260206004820152602d60248201527f6f6e45524337323152656365697665643a205468657920746f6c64206d65204960448201526c081a185d99481d1bc819985a5b609a1b60648201526084015b60405180910390fd5b5f8481555f196001556040515f516020610be45f395f51905f52916105709187908a908a90610b7f565b60405180910390a1600254600160281b900460ff16156105985750630badf00d60e01b6105aa565b6105a0610974565b50630a85bd0160e11b5b95945050505050565b6002545f90610100900460ff1615610639576002546301000000900460ff16156105db575f5ffd5b60405162461bcd60e51b815260206004820152602d60248201527f6f6e506f6c6963795265706c616365643a205468657920746f6c64206d65204960448201526c081a185d99481d1bc819985a5b609a1b606482015260840161053d565b5f83905560018290556040515f516020610be45f395f51905f529061066690600390869089908990610b7f565b60405180910390a1600254600160301b900460ff161561068e5750630badf00d60e01b6106a0565b610696610974565b50635ee0c7dd60e01b5b949350505050565b6002545f9062010000900460ff1615610730576002546301000000900460ff16156106d1575f5ffd5b60405162461bcd60e51b815260206004820152602e60248201527f6f6e506f6c69637943616e63656c6c65643a205468657920746f6c64206d652060448201526d12481a185d99481d1bc819985a5b60921b606482015260840161053d565b5f8590556040515f516020610be45f395f51905f52906107589060049088908b908b90610b7f565b60405180910390a1600254600160301b900460ff16156107805750630badfeed60e01b610792565b610788610974565b506331759a2f60e11b5b9695505050505050565b6002545f9060ff161561081d576002546301000000900460ff16156107bf575f5ffd5b60405162461bcd60e51b815260206004820152602d60248201527f6f6e5061796f757452656365697665643a205468657920746f6c64206d65204960448201526c081a185d99481d1bc819985a5b609a1b606482015260840161053d565b5f83905560018281556040515f516020610be45f395f51905f529161084791869089908990610b7f565b60405180910390a1600254600160281b900460ff161561086f5750630badf00d60e01b6106a0565b610877610974565b50636b140e9f60e11b949350505050565b6002545f9060ff1615610908576002546301000000900460ff16156108ab575f5ffd5b60405162461bcd60e51b815260206004820152602c60248201527f6f6e506f6c696379457870697265643a205468657920746f6c64206d6520492060448201526b1a185d99481d1bc819985a5b60a21b606482015260840161053d565b5f8281556001556040515f516020610be45f395f51905f529061093390600290859088908890610b7f565b60405180910390a1600254600160281b900460ff161561095b5750630badf00d60e01b61096d565b610963610974565b5063e8e617b760e01b5b9392505050565b5f5b6003548110156109a55761098b816001610bc4565b61099c610999836064610bc4565b90565b55600101610976565b50565b5f602082840312156109b8575f5ffd5b81356001600160e01b03198116811461096d575f5ffd5b80356001600160a01b03811681146109e5575f5ffd5b919050565b5f5f5f5f5f608086880312156109fe575f5ffd5b610a07866109cf565b9450610a15602087016109cf565b935060408601359250606086013567ffffffffffffffff811115610a37575f5ffd5b8601601f81018813610a47575f5ffd5b803567ffffffffffffffff811115610a5d575f5ffd5b886020828401011115610a6e575f5ffd5b959894975092955050506020019190565b5f60208284031215610a8f575f5ffd5b8135801515811461096d575f5ffd5b5f5f5f5f60808587031215610ab1575f5ffd5b610aba856109cf565b9350610ac8602086016109cf565b93969395505050506040820135916060013590565b5f5f5f5f5f5f60c08789031215610af2575f5ffd5b610afb876109cf565b9550610b09602088016109cf565b95989597505050506040840135936060810135936080820135935060a0909101359150565b5f60208284031215610b3e575f5ffd5b5035919050565b5f5f5f60608486031215610b57575f5ffd5b610b60846109cf565b9250610b6e602085016109cf565b929592945050506040919091013590565b6080810160058610610b9f57634e487b7160e01b5f52602160045260245ffd5b94815260208101939093526001600160a01b0391821660408401521660609091015290565b808201808211156104ba57634e487b7160e01b5f52601160045260245ffdfecb6442f1752a34d49fd946725ee915eae9914b3fe3f3193b98232c772393e7c5a26469706673582212201e273d11c8e5e44dc3ff1411fab09eeed0fd5692370cb7a792decd8b3dd2c2fe64736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x2 DUP1 SLOAD PUSH8 0xFF00FFFFFF0000FF NOT AND SWAP1 SSTORE PUSH0 NOT PUSH1 0x1 SSTORE PUSH0 PUSH1 0x3 SSTORE PUSH2 0xC39 DUP1 PUSH2 0x36 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x187 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x9568CA0F GT PUSH2 0xD9 JUMPI DUP1 PUSH4 0xC3AF904E GT PUSH2 0x93 JUMPI DUP1 PUSH4 0xD99BA408 GT PUSH2 0x6E JUMPI DUP1 PUSH4 0xD99BA408 EQ PUSH2 0x421 JUMPI DUP1 PUSH4 0xE8E617B7 EQ PUSH2 0x435 JUMPI DUP1 PUSH4 0xEE89EF3A EQ PUSH2 0x448 JUMPI DUP1 PUSH4 0xF57C302E EQ PUSH2 0x450 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC3AF904E EQ PUSH2 0x3E7 JUMPI DUP1 PUSH4 0xCC6A6523 EQ PUSH2 0x3FB JUMPI DUP1 PUSH4 0xD6281D3E EQ PUSH2 0x40E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x9568CA0F EQ PUSH2 0x33B JUMPI DUP1 PUSH4 0x9D769402 EQ PUSH2 0x34D JUMPI DUP1 PUSH4 0xA9CC4718 EQ PUSH2 0x36E JUMPI DUP1 PUSH4 0xAEEC8F9D EQ PUSH2 0x37B JUMPI DUP1 PUSH4 0xB8D6D18D EQ PUSH2 0x3A9 JUMPI DUP1 PUSH4 0xBCCE5399 EQ PUSH2 0x3D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x35287014 GT PUSH2 0x144 JUMPI DUP1 PUSH4 0x62EB345E GT PUSH2 0x11F JUMPI DUP1 PUSH4 0x62EB345E EQ PUSH2 0x2EA JUMPI DUP1 PUSH4 0x63BD1D4A EQ PUSH2 0x2FD JUMPI DUP1 PUSH4 0x6DB65619 EQ PUSH2 0x314 JUMPI DUP1 PUSH4 0x7806CE81 EQ PUSH2 0x328 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x35287014 EQ PUSH2 0x293 JUMPI DUP1 PUSH4 0x5177CD13 EQ PUSH2 0x2A8 JUMPI DUP1 PUSH4 0x5EE0C7DD EQ PUSH2 0x2D7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x18B JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x1B3 JUMPI DUP1 PUSH4 0x286EE351 EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0x2BB2ADB3 EQ PUSH2 0x209 JUMPI DUP1 PUSH4 0x2FB64362 EQ PUSH2 0x237 JUMPI DUP1 PUSH4 0x31CA2944 EQ PUSH2 0x267 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x19E PUSH2 0x199 CALLDATASIZE PUSH1 0x4 PUSH2 0x9A8 JUMP JUMPDEST PUSH2 0x459 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1C6 PUSH2 0x1C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x9EA JUMP JUMPDEST PUSH2 0x4C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1AA JUMP JUMPDEST PUSH2 0x207 PUSH2 0x1ED CALLDATASIZE PUSH1 0x4 PUSH2 0xA7F JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD SWAP2 ISZERO ISZERO PUSH2 0x100 MUL PUSH2 0xFF00 NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x207 PUSH2 0x217 CALLDATASIZE PUSH1 0x4 PUSH2 0xA7F JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD SWAP2 ISZERO ISZERO PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH6 0xFF0000000000 NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x207 PUSH2 0x245 CALLDATASIZE PUSH1 0x4 PUSH2 0xA7F JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD SWAP2 ISZERO ISZERO PUSH1 0x1 PUSH1 0x38 SHL MUL PUSH8 0xFF00000000000000 NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x207 PUSH2 0x275 CALLDATASIZE PUSH1 0x4 PUSH2 0xA7F JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD SWAP2 ISZERO ISZERO PUSH4 0x1000000 MUL PUSH4 0xFF000000 NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x19E SWAP1 PUSH5 0x100000000 SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x207 PUSH2 0x2B6 CALLDATASIZE PUSH1 0x4 PUSH2 0xA7F JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD SWAP2 ISZERO ISZERO PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH7 0xFF000000000000 NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x1C6 PUSH2 0x2E5 CALLDATASIZE PUSH1 0x4 PUSH2 0xA9E JUMP JUMPDEST PUSH2 0x5B3 JUMP JUMPDEST PUSH2 0x1C6 PUSH2 0x2F8 CALLDATASIZE PUSH1 0x4 PUSH2 0xADD JUMP JUMPDEST PUSH2 0x6A8 JUMP JUMPDEST PUSH2 0x306 PUSH1 0x1 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1AA JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x19E SWAP1 PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x207 PUSH2 0x336 CALLDATASIZE PUSH1 0x4 PUSH2 0xB2E JUMP JUMPDEST PUSH1 0x3 SSTORE JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x19E SWAP1 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x207 PUSH2 0x35B CALLDATASIZE PUSH1 0x4 PUSH2 0xA7F JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x19E SWAP1 PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x207 PUSH2 0x389 CALLDATASIZE PUSH1 0x4 PUSH2 0xA7F JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD SWAP2 ISZERO ISZERO PUSH5 0x100000000 MUL PUSH5 0xFF00000000 NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x207 PUSH2 0x3B7 CALLDATASIZE PUSH1 0x4 PUSH2 0xA7F JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD SWAP2 ISZERO ISZERO PUSH3 0x10000 MUL PUSH3 0xFF0000 NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x19E SWAP1 PUSH1 0x1 PUSH1 0x38 SHL SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x19E SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x19E SWAP1 PUSH3 0x10000 SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x1C6 PUSH2 0x41C CALLDATASIZE PUSH1 0x4 PUSH2 0xA9E JUMP JUMPDEST PUSH2 0x79C JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x19E SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x1C6 PUSH2 0x443 CALLDATASIZE PUSH1 0x4 PUSH2 0xB45 JUMP JUMPDEST PUSH2 0x888 JUMP JUMPDEST PUSH2 0x306 PUSH0 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x306 PUSH1 0x3 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x38 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x471 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x2 SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x48B JUMPI POP PUSH0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x162FC85 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0x4BA JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH0 SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0x546 JUMPI PUSH1 0x2 SLOAD PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x4E3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6F6E45524337323152656365697665643A205468657920746F6C64206D652049 PUSH1 0x44 DUP3 ADD MSTORE PUSH13 0x81A185D99481D1BC819985A5B PUSH1 0x9A SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP5 DUP2 SSTORE PUSH0 NOT PUSH1 0x1 SSTORE PUSH1 0x40 MLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0xBE4 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x570 SWAP2 DUP8 SWAP1 DUP11 SWAP1 DUP11 SWAP1 PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x598 JUMPI POP PUSH4 0xBADF00D PUSH1 0xE0 SHL PUSH2 0x5AA JUMP JUMPDEST PUSH2 0x5A0 PUSH2 0x974 JUMP JUMPDEST POP PUSH4 0xA85BD01 PUSH1 0xE1 SHL JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH0 SWAP1 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x639 JUMPI PUSH1 0x2 SLOAD PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x5DB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6F6E506F6C6963795265706C616365643A205468657920746F6C64206D652049 PUSH1 0x44 DUP3 ADD MSTORE PUSH13 0x81A185D99481D1BC819985A5B PUSH1 0x9A SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x53D JUMP JUMPDEST PUSH0 DUP4 SWAP1 SSTORE PUSH1 0x1 DUP3 SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0xBE4 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH2 0x666 SWAP1 PUSH1 0x3 SWAP1 DUP7 SWAP1 DUP10 SWAP1 DUP10 SWAP1 PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x68E JUMPI POP PUSH4 0xBADF00D PUSH1 0xE0 SHL PUSH2 0x6A0 JUMP JUMPDEST PUSH2 0x696 PUSH2 0x974 JUMP JUMPDEST POP PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH0 SWAP1 PUSH3 0x10000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x730 JUMPI PUSH1 0x2 SLOAD PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x6D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6F6E506F6C69637943616E63656C6C65643A205468657920746F6C64206D6520 PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x12481A185D99481D1BC819985A5B PUSH1 0x92 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x53D JUMP JUMPDEST PUSH0 DUP6 SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0xBE4 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH2 0x758 SWAP1 PUSH1 0x4 SWAP1 DUP9 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x780 JUMPI POP PUSH4 0xBADFEED PUSH1 0xE0 SHL PUSH2 0x792 JUMP JUMPDEST PUSH2 0x788 PUSH2 0x974 JUMP JUMPDEST POP PUSH4 0x31759A2F PUSH1 0xE1 SHL JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH0 SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0x81D JUMPI PUSH1 0x2 SLOAD PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x7BF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6F6E5061796F757452656365697665643A205468657920746F6C64206D652049 PUSH1 0x44 DUP3 ADD MSTORE PUSH13 0x81A185D99481D1BC819985A5B PUSH1 0x9A SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x53D JUMP JUMPDEST PUSH0 DUP4 SWAP1 SSTORE PUSH1 0x1 DUP3 DUP2 SSTORE PUSH1 0x40 MLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0xBE4 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x847 SWAP2 DUP7 SWAP1 DUP10 SWAP1 DUP10 SWAP1 PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x86F JUMPI POP PUSH4 0xBADF00D PUSH1 0xE0 SHL PUSH2 0x6A0 JUMP JUMPDEST PUSH2 0x877 PUSH2 0x974 JUMP JUMPDEST POP PUSH4 0x6B140E9F PUSH1 0xE1 SHL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH0 SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0x908 JUMPI PUSH1 0x2 SLOAD PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x8AB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6F6E506F6C696379457870697265643A205468657920746F6C64206D65204920 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x1A185D99481D1BC819985A5B PUSH1 0xA2 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x53D JUMP JUMPDEST PUSH0 DUP3 DUP2 SSTORE PUSH1 0x1 SSTORE PUSH1 0x40 MLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0xBE4 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH2 0x933 SWAP1 PUSH1 0x2 SWAP1 DUP6 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x95B JUMPI POP PUSH4 0xBADF00D PUSH1 0xE0 SHL PUSH2 0x96D JUMP JUMPDEST PUSH2 0x963 PUSH2 0x974 JUMP JUMPDEST POP PUSH4 0xE8E617B7 PUSH1 0xE0 SHL JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 JUMPDEST PUSH1 0x3 SLOAD DUP2 LT ISZERO PUSH2 0x9A5 JUMPI PUSH2 0x98B DUP2 PUSH1 0x1 PUSH2 0xBC4 JUMP JUMPDEST PUSH2 0x99C PUSH2 0x999 DUP4 PUSH1 0x64 PUSH2 0xBC4 JUMP JUMPDEST SWAP1 JUMP JUMPDEST SSTORE PUSH1 0x1 ADD PUSH2 0x976 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x9B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x96D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x9E5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x9FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xA07 DUP7 PUSH2 0x9CF JUMP JUMPDEST SWAP5 POP PUSH2 0xA15 PUSH1 0x20 DUP8 ADD PUSH2 0x9CF JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA37 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 ADD PUSH1 0x1F DUP2 ADD DUP9 SGT PUSH2 0xA47 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA5D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP9 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0xA6E JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP3 SWAP6 POP POP POP PUSH1 0x20 ADD SWAP2 SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA8F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x96D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xAB1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xABA DUP6 PUSH2 0x9CF JUMP JUMPDEST SWAP4 POP PUSH2 0xAC8 PUSH1 0x20 DUP7 ADD PUSH2 0x9CF JUMP JUMPDEST SWAP4 SWAP7 SWAP4 SWAP6 POP POP POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD SWAP2 PUSH1 0x60 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0xAF2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xAFB DUP8 PUSH2 0x9CF JUMP JUMPDEST SWAP6 POP PUSH2 0xB09 PUSH1 0x20 DUP9 ADD PUSH2 0x9CF JUMP JUMPDEST SWAP6 SWAP9 SWAP6 SWAP8 POP POP POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP4 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP4 PUSH1 0x80 DUP3 ADD CALLDATALOAD SWAP4 POP PUSH1 0xA0 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB3E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB57 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xB60 DUP5 PUSH2 0x9CF JUMP JUMPDEST SWAP3 POP PUSH2 0xB6E PUSH1 0x20 DUP6 ADD PUSH2 0x9CF JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x80 DUP2 ADD PUSH1 0x5 DUP7 LT PUSH2 0xB9F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP5 DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x40 DUP5 ADD MSTORE AND PUSH1 0x60 SWAP1 SWAP2 ADD MSTORE SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x4BA JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID 0xCB PUSH5 0x42F1752A34 0xD4 SWAP16 0xD9 CHAINID PUSH19 0x5EE915EAE9914B3FE3F3193B98232C772393E7 0xC5 LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x1E 0x27 RETURNDATASIZE GT 0xC8 JUMPF 0xE44D 0xC3 SELFDESTRUCT EQ GT STATICCALL 0xB0 SWAP15 RETURNCONTRACT 0xD0 REVERT JUMP SWAP3 CALLDATACOPY 0xC 0xB7 0xA7 SWAP3 0xDE 0xCD DUP12 RETURNDATASIZE 0xD2 0xC2 INVALID PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"375:5329:94:-:0;;;972:197;;;;;;;;;-1:-1:-1;992:4:94;:12;;-1:-1:-1;;1093:16:94;;;-1:-1:-1;;992:12:94;1115:26;999:5;1068:11;1147:17;375:5329;;;;;;"},"deployedBytecode":{"functionDebugData":{"@badlyImplementedReplace_29549":{"entryPoint":null,"id":29549,"parameterSlots":0,"returnSlots":0},"@badlyImplemented_29547":{"entryPoint":null,"id":29547,"parameterSlots":0,"returnSlots":0},"@emptyRevert_29543":{"entryPoint":null,"id":29543,"parameterSlots":0,"returnSlots":0},"@failCancellation_29541":{"entryPoint":null,"id":29541,"parameterSlots":0,"returnSlots":0},"@failReplace_29539":{"entryPoint":null,"id":29539,"parameterSlots":0,"returnSlots":0},"@fail_29537":{"entryPoint":null,"id":29537,"parameterSlots":0,"returnSlots":0},"@getUint256Slot_11702":{"entryPoint":null,"id":11702,"parameterSlots":1,"returnSlots":1},"@noERC165_29551":{"entryPoint":null,"id":29551,"parameterSlots":0,"returnSlots":0},"@notImplemented_29545":{"entryPoint":null,"id":29545,"parameterSlots":0,"returnSlots":0},"@onERC721Received_29816":{"entryPoint":1216,"id":29816,"parameterSlots":5,"returnSlots":1},"@onPayoutReceived_29923":{"entryPoint":1948,"id":29923,"parameterSlots":4,"returnSlots":1},"@onPolicyCancelled_30031":{"entryPoint":1704,"id":30031,"parameterSlots":6,"returnSlots":1},"@onPolicyExpired_29868":{"entryPoint":2184,"id":29868,"parameterSlots":3,"returnSlots":1},"@onPolicyReplaced_29978":{"entryPoint":1459,"id":29978,"parameterSlots":4,"returnSlots":1},"@payout_29535":{"entryPoint":null,"id":29535,"parameterSlots":0,"returnSlots":0},"@policyId_29533":{"entryPoint":null,"id":29533,"parameterSlots":0,"returnSlots":0},"@setBadlyImplementedReplace_29676":{"entryPoint":null,"id":29676,"parameterSlots":1,"returnSlots":0},"@setBadlyImplemented_29666":{"entryPoint":null,"id":29666,"parameterSlots":1,"returnSlots":0},"@setEmptyRevert_29696":{"entryPoint":null,"id":29696,"parameterSlots":1,"returnSlots":0},"@setFailCancellation_29636":{"entryPoint":null,"id":29636,"parameterSlots":1,"returnSlots":0},"@setFailReplace_29626":{"entryPoint":null,"id":29626,"parameterSlots":1,"returnSlots":0},"@setFail_29616":{"entryPoint":null,"id":29616,"parameterSlots":1,"returnSlots":0},"@setNoERC165_29686":{"entryPoint":null,"id":29686,"parameterSlots":1,"returnSlots":0},"@setNotImplemented_29656":{"entryPoint":null,"id":29656,"parameterSlots":1,"returnSlots":0},"@setSpendGasCount_29646":{"entryPoint":null,"id":29646,"parameterSlots":1,"returnSlots":0},"@spendGasCount_29553":{"entryPoint":null,"id":29553,"parameterSlots":0,"returnSlots":0},"@spendGas_29728":{"entryPoint":2420,"id":29728,"parameterSlots":0,"returnSlots":0},"@supportsInterface_29758":{"entryPoint":1113,"id":29758,"parameterSlots":1,"returnSlots":1},"abi_decode_address":{"entryPoint":2511,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":2885,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr":{"entryPoint":2538,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256":{"entryPoint":2718,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256t_uint256":{"entryPoint":2781,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_bool":{"entryPoint":2687,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":2472,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":2862,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_enum$_NotificationKind_$29559_t_uint256_t_address_t_address__to_t_uint8_t_uint256_t_address_t_address__fromStack_reversed":{"entryPoint":2943,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_stringliteral_46ae0231b151a29cb76b0eb0bfc0feea3dce0b818e71e3685082cfa188eaf63d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_58698f5e11d9176307777359c7e820c4c719f9fb53f283df2e9b7afae0920593__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_66a42fcc0cb3a241433f702d08559d4868da600fb6c417c0d22bf3e4e199a226__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_7ddfbdd1d4ac69255d0a55452a77fbdbf1242396b0bad9544763e87828ab15fb__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_cafcf11cef247dfc7f6d14af31b85636a2a800b1462b08970c9283203a393627__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":3012,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:6963:101","nodeType":"YulBlock","src":"0:6963:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"83:217:101","nodeType":"YulBlock","src":"83:217:101","statements":[{"body":{"nativeSrc":"129:16:101","nodeType":"YulBlock","src":"129:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"138:1:101","nodeType":"YulLiteral","src":"138:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"141:1:101","nodeType":"YulLiteral","src":"141:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"131:6:101","nodeType":"YulIdentifier","src":"131:6:101"},"nativeSrc":"131:12:101","nodeType":"YulFunctionCall","src":"131:12:101"},"nativeSrc":"131:12:101","nodeType":"YulExpressionStatement","src":"131:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"104:7:101","nodeType":"YulIdentifier","src":"104:7:101"},{"name":"headStart","nativeSrc":"113:9:101","nodeType":"YulIdentifier","src":"113:9:101"}],"functionName":{"name":"sub","nativeSrc":"100:3:101","nodeType":"YulIdentifier","src":"100:3:101"},"nativeSrc":"100:23:101","nodeType":"YulFunctionCall","src":"100:23:101"},{"kind":"number","nativeSrc":"125:2:101","nodeType":"YulLiteral","src":"125:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"96:3:101","nodeType":"YulIdentifier","src":"96:3:101"},"nativeSrc":"96:32:101","nodeType":"YulFunctionCall","src":"96:32:101"},"nativeSrc":"93:52:101","nodeType":"YulIf","src":"93:52:101"},{"nativeSrc":"154:36:101","nodeType":"YulVariableDeclaration","src":"154:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"180:9:101","nodeType":"YulIdentifier","src":"180:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"167:12:101","nodeType":"YulIdentifier","src":"167:12:101"},"nativeSrc":"167:23:101","nodeType":"YulFunctionCall","src":"167:23:101"},"variables":[{"name":"value","nativeSrc":"158:5:101","nodeType":"YulTypedName","src":"158:5:101","type":""}]},{"body":{"nativeSrc":"254:16:101","nodeType":"YulBlock","src":"254:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:101","nodeType":"YulLiteral","src":"263:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:101","nodeType":"YulLiteral","src":"266:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:101","nodeType":"YulIdentifier","src":"256:6:101"},"nativeSrc":"256:12:101","nodeType":"YulFunctionCall","src":"256:12:101"},"nativeSrc":"256:12:101","nodeType":"YulExpressionStatement","src":"256:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"212:5:101","nodeType":"YulIdentifier","src":"212:5:101"},{"arguments":[{"name":"value","nativeSrc":"223:5:101","nodeType":"YulIdentifier","src":"223:5:101"},{"arguments":[{"kind":"number","nativeSrc":"234:3:101","nodeType":"YulLiteral","src":"234:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"239:10:101","nodeType":"YulLiteral","src":"239:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"230:3:101","nodeType":"YulIdentifier","src":"230:3:101"},"nativeSrc":"230:20:101","nodeType":"YulFunctionCall","src":"230:20:101"}],"functionName":{"name":"and","nativeSrc":"219:3:101","nodeType":"YulIdentifier","src":"219:3:101"},"nativeSrc":"219:32:101","nodeType":"YulFunctionCall","src":"219:32:101"}],"functionName":{"name":"eq","nativeSrc":"209:2:101","nodeType":"YulIdentifier","src":"209:2:101"},"nativeSrc":"209:43:101","nodeType":"YulFunctionCall","src":"209:43:101"}],"functionName":{"name":"iszero","nativeSrc":"202:6:101","nodeType":"YulIdentifier","src":"202:6:101"},"nativeSrc":"202:51:101","nodeType":"YulFunctionCall","src":"202:51:101"},"nativeSrc":"199:71:101","nodeType":"YulIf","src":"199:71:101"},{"nativeSrc":"279:15:101","nodeType":"YulAssignment","src":"279:15:101","value":{"name":"value","nativeSrc":"289:5:101","nodeType":"YulIdentifier","src":"289:5:101"},"variableNames":[{"name":"value0","nativeSrc":"279:6:101","nodeType":"YulIdentifier","src":"279:6:101"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14:286:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"49:9:101","nodeType":"YulTypedName","src":"49:9:101","type":""},{"name":"dataEnd","nativeSrc":"60:7:101","nodeType":"YulTypedName","src":"60:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"72:6:101","nodeType":"YulTypedName","src":"72:6:101","type":""}],"src":"14:286:101"},{"body":{"nativeSrc":"400:92:101","nodeType":"YulBlock","src":"400:92:101","statements":[{"nativeSrc":"410:26:101","nodeType":"YulAssignment","src":"410:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:101","nodeType":"YulIdentifier","src":"422:9:101"},{"kind":"number","nativeSrc":"433:2:101","nodeType":"YulLiteral","src":"433:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"418:3:101","nodeType":"YulIdentifier","src":"418:3:101"},"nativeSrc":"418:18:101","nodeType":"YulFunctionCall","src":"418:18:101"},"variableNames":[{"name":"tail","nativeSrc":"410:4:101","nodeType":"YulIdentifier","src":"410:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"452:9:101","nodeType":"YulIdentifier","src":"452:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"477:6:101","nodeType":"YulIdentifier","src":"477:6:101"}],"functionName":{"name":"iszero","nativeSrc":"470:6:101","nodeType":"YulIdentifier","src":"470:6:101"},"nativeSrc":"470:14:101","nodeType":"YulFunctionCall","src":"470:14:101"}],"functionName":{"name":"iszero","nativeSrc":"463:6:101","nodeType":"YulIdentifier","src":"463:6:101"},"nativeSrc":"463:22:101","nodeType":"YulFunctionCall","src":"463:22:101"}],"functionName":{"name":"mstore","nativeSrc":"445:6:101","nodeType":"YulIdentifier","src":"445:6:101"},"nativeSrc":"445:41:101","nodeType":"YulFunctionCall","src":"445:41:101"},"nativeSrc":"445:41:101","nodeType":"YulExpressionStatement","src":"445:41:101"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"305:187:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"369:9:101","nodeType":"YulTypedName","src":"369:9:101","type":""},{"name":"value0","nativeSrc":"380:6:101","nodeType":"YulTypedName","src":"380:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"391:4:101","nodeType":"YulTypedName","src":"391:4:101","type":""}],"src":"305:187:101"},{"body":{"nativeSrc":"546:124:101","nodeType":"YulBlock","src":"546:124:101","statements":[{"nativeSrc":"556:29:101","nodeType":"YulAssignment","src":"556:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"578:6:101","nodeType":"YulIdentifier","src":"578:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"565:12:101","nodeType":"YulIdentifier","src":"565:12:101"},"nativeSrc":"565:20:101","nodeType":"YulFunctionCall","src":"565:20:101"},"variableNames":[{"name":"value","nativeSrc":"556:5:101","nodeType":"YulIdentifier","src":"556:5:101"}]},{"body":{"nativeSrc":"648:16:101","nodeType":"YulBlock","src":"648:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"657:1:101","nodeType":"YulLiteral","src":"657:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"660:1:101","nodeType":"YulLiteral","src":"660:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"650:6:101","nodeType":"YulIdentifier","src":"650:6:101"},"nativeSrc":"650:12:101","nodeType":"YulFunctionCall","src":"650:12:101"},"nativeSrc":"650:12:101","nodeType":"YulExpressionStatement","src":"650:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"607:5:101","nodeType":"YulIdentifier","src":"607:5:101"},{"arguments":[{"name":"value","nativeSrc":"618:5:101","nodeType":"YulIdentifier","src":"618:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"633:3:101","nodeType":"YulLiteral","src":"633:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"638:1:101","nodeType":"YulLiteral","src":"638:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"629:3:101","nodeType":"YulIdentifier","src":"629:3:101"},"nativeSrc":"629:11:101","nodeType":"YulFunctionCall","src":"629:11:101"},{"kind":"number","nativeSrc":"642:1:101","nodeType":"YulLiteral","src":"642:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"625:3:101","nodeType":"YulIdentifier","src":"625:3:101"},"nativeSrc":"625:19:101","nodeType":"YulFunctionCall","src":"625:19:101"}],"functionName":{"name":"and","nativeSrc":"614:3:101","nodeType":"YulIdentifier","src":"614:3:101"},"nativeSrc":"614:31:101","nodeType":"YulFunctionCall","src":"614:31:101"}],"functionName":{"name":"eq","nativeSrc":"604:2:101","nodeType":"YulIdentifier","src":"604:2:101"},"nativeSrc":"604:42:101","nodeType":"YulFunctionCall","src":"604:42:101"}],"functionName":{"name":"iszero","nativeSrc":"597:6:101","nodeType":"YulIdentifier","src":"597:6:101"},"nativeSrc":"597:50:101","nodeType":"YulFunctionCall","src":"597:50:101"},"nativeSrc":"594:70:101","nodeType":"YulIf","src":"594:70:101"}]},"name":"abi_decode_address","nativeSrc":"497:173:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"525:6:101","nodeType":"YulTypedName","src":"525:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"536:5:101","nodeType":"YulTypedName","src":"536:5:101","type":""}],"src":"497:173:101"},{"body":{"nativeSrc":"815:709:101","nodeType":"YulBlock","src":"815:709:101","statements":[{"body":{"nativeSrc":"862:16:101","nodeType":"YulBlock","src":"862:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"871:1:101","nodeType":"YulLiteral","src":"871:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"874:1:101","nodeType":"YulLiteral","src":"874:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"864:6:101","nodeType":"YulIdentifier","src":"864:6:101"},"nativeSrc":"864:12:101","nodeType":"YulFunctionCall","src":"864:12:101"},"nativeSrc":"864:12:101","nodeType":"YulExpressionStatement","src":"864:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"836:7:101","nodeType":"YulIdentifier","src":"836:7:101"},{"name":"headStart","nativeSrc":"845:9:101","nodeType":"YulIdentifier","src":"845:9:101"}],"functionName":{"name":"sub","nativeSrc":"832:3:101","nodeType":"YulIdentifier","src":"832:3:101"},"nativeSrc":"832:23:101","nodeType":"YulFunctionCall","src":"832:23:101"},{"kind":"number","nativeSrc":"857:3:101","nodeType":"YulLiteral","src":"857:3:101","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"828:3:101","nodeType":"YulIdentifier","src":"828:3:101"},"nativeSrc":"828:33:101","nodeType":"YulFunctionCall","src":"828:33:101"},"nativeSrc":"825:53:101","nodeType":"YulIf","src":"825:53:101"},{"nativeSrc":"887:39:101","nodeType":"YulAssignment","src":"887:39:101","value":{"arguments":[{"name":"headStart","nativeSrc":"916:9:101","nodeType":"YulIdentifier","src":"916:9:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"897:18:101","nodeType":"YulIdentifier","src":"897:18:101"},"nativeSrc":"897:29:101","nodeType":"YulFunctionCall","src":"897:29:101"},"variableNames":[{"name":"value0","nativeSrc":"887:6:101","nodeType":"YulIdentifier","src":"887:6:101"}]},{"nativeSrc":"935:48:101","nodeType":"YulAssignment","src":"935:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"968:9:101","nodeType":"YulIdentifier","src":"968:9:101"},{"kind":"number","nativeSrc":"979:2:101","nodeType":"YulLiteral","src":"979:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"964:3:101","nodeType":"YulIdentifier","src":"964:3:101"},"nativeSrc":"964:18:101","nodeType":"YulFunctionCall","src":"964:18:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"945:18:101","nodeType":"YulIdentifier","src":"945:18:101"},"nativeSrc":"945:38:101","nodeType":"YulFunctionCall","src":"945:38:101"},"variableNames":[{"name":"value1","nativeSrc":"935:6:101","nodeType":"YulIdentifier","src":"935:6:101"}]},{"nativeSrc":"992:14:101","nodeType":"YulVariableDeclaration","src":"992:14:101","value":{"kind":"number","nativeSrc":"1005:1:101","nodeType":"YulLiteral","src":"1005:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"996:5:101","nodeType":"YulTypedName","src":"996:5:101","type":""}]},{"nativeSrc":"1015:41:101","nodeType":"YulAssignment","src":"1015:41:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1041:9:101","nodeType":"YulIdentifier","src":"1041:9:101"},{"kind":"number","nativeSrc":"1052:2:101","nodeType":"YulLiteral","src":"1052:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1037:3:101","nodeType":"YulIdentifier","src":"1037:3:101"},"nativeSrc":"1037:18:101","nodeType":"YulFunctionCall","src":"1037:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"1024:12:101","nodeType":"YulIdentifier","src":"1024:12:101"},"nativeSrc":"1024:32:101","nodeType":"YulFunctionCall","src":"1024:32:101"},"variableNames":[{"name":"value","nativeSrc":"1015:5:101","nodeType":"YulIdentifier","src":"1015:5:101"}]},{"nativeSrc":"1065:15:101","nodeType":"YulAssignment","src":"1065:15:101","value":{"name":"value","nativeSrc":"1075:5:101","nodeType":"YulIdentifier","src":"1075:5:101"},"variableNames":[{"name":"value2","nativeSrc":"1065:6:101","nodeType":"YulIdentifier","src":"1065:6:101"}]},{"nativeSrc":"1089:46:101","nodeType":"YulVariableDeclaration","src":"1089:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1120:9:101","nodeType":"YulIdentifier","src":"1120:9:101"},{"kind":"number","nativeSrc":"1131:2:101","nodeType":"YulLiteral","src":"1131:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1116:3:101","nodeType":"YulIdentifier","src":"1116:3:101"},"nativeSrc":"1116:18:101","nodeType":"YulFunctionCall","src":"1116:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"1103:12:101","nodeType":"YulIdentifier","src":"1103:12:101"},"nativeSrc":"1103:32:101","nodeType":"YulFunctionCall","src":"1103:32:101"},"variables":[{"name":"offset","nativeSrc":"1093:6:101","nodeType":"YulTypedName","src":"1093:6:101","type":""}]},{"body":{"nativeSrc":"1178:16:101","nodeType":"YulBlock","src":"1178:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1187:1:101","nodeType":"YulLiteral","src":"1187:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1190:1:101","nodeType":"YulLiteral","src":"1190:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1180:6:101","nodeType":"YulIdentifier","src":"1180:6:101"},"nativeSrc":"1180:12:101","nodeType":"YulFunctionCall","src":"1180:12:101"},"nativeSrc":"1180:12:101","nodeType":"YulExpressionStatement","src":"1180:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1150:6:101","nodeType":"YulIdentifier","src":"1150:6:101"},{"kind":"number","nativeSrc":"1158:18:101","nodeType":"YulLiteral","src":"1158:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1147:2:101","nodeType":"YulIdentifier","src":"1147:2:101"},"nativeSrc":"1147:30:101","nodeType":"YulFunctionCall","src":"1147:30:101"},"nativeSrc":"1144:50:101","nodeType":"YulIf","src":"1144:50:101"},{"nativeSrc":"1203:32:101","nodeType":"YulVariableDeclaration","src":"1203:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1217:9:101","nodeType":"YulIdentifier","src":"1217:9:101"},{"name":"offset","nativeSrc":"1228:6:101","nodeType":"YulIdentifier","src":"1228:6:101"}],"functionName":{"name":"add","nativeSrc":"1213:3:101","nodeType":"YulIdentifier","src":"1213:3:101"},"nativeSrc":"1213:22:101","nodeType":"YulFunctionCall","src":"1213:22:101"},"variables":[{"name":"_1","nativeSrc":"1207:2:101","nodeType":"YulTypedName","src":"1207:2:101","type":""}]},{"body":{"nativeSrc":"1283:16:101","nodeType":"YulBlock","src":"1283:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1292:1:101","nodeType":"YulLiteral","src":"1292:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1295:1:101","nodeType":"YulLiteral","src":"1295:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1285:6:101","nodeType":"YulIdentifier","src":"1285:6:101"},"nativeSrc":"1285:12:101","nodeType":"YulFunctionCall","src":"1285:12:101"},"nativeSrc":"1285:12:101","nodeType":"YulExpressionStatement","src":"1285:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1262:2:101","nodeType":"YulIdentifier","src":"1262:2:101"},{"kind":"number","nativeSrc":"1266:4:101","nodeType":"YulLiteral","src":"1266:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"1258:3:101","nodeType":"YulIdentifier","src":"1258:3:101"},"nativeSrc":"1258:13:101","nodeType":"YulFunctionCall","src":"1258:13:101"},{"name":"dataEnd","nativeSrc":"1273:7:101","nodeType":"YulIdentifier","src":"1273:7:101"}],"functionName":{"name":"slt","nativeSrc":"1254:3:101","nodeType":"YulIdentifier","src":"1254:3:101"},"nativeSrc":"1254:27:101","nodeType":"YulFunctionCall","src":"1254:27:101"}],"functionName":{"name":"iszero","nativeSrc":"1247:6:101","nodeType":"YulIdentifier","src":"1247:6:101"},"nativeSrc":"1247:35:101","nodeType":"YulFunctionCall","src":"1247:35:101"},"nativeSrc":"1244:55:101","nodeType":"YulIf","src":"1244:55:101"},{"nativeSrc":"1308:30:101","nodeType":"YulVariableDeclaration","src":"1308:30:101","value":{"arguments":[{"name":"_1","nativeSrc":"1335:2:101","nodeType":"YulIdentifier","src":"1335:2:101"}],"functionName":{"name":"calldataload","nativeSrc":"1322:12:101","nodeType":"YulIdentifier","src":"1322:12:101"},"nativeSrc":"1322:16:101","nodeType":"YulFunctionCall","src":"1322:16:101"},"variables":[{"name":"length","nativeSrc":"1312:6:101","nodeType":"YulTypedName","src":"1312:6:101","type":""}]},{"body":{"nativeSrc":"1381:16:101","nodeType":"YulBlock","src":"1381:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1390:1:101","nodeType":"YulLiteral","src":"1390:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1393:1:101","nodeType":"YulLiteral","src":"1393:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1383:6:101","nodeType":"YulIdentifier","src":"1383:6:101"},"nativeSrc":"1383:12:101","nodeType":"YulFunctionCall","src":"1383:12:101"},"nativeSrc":"1383:12:101","nodeType":"YulExpressionStatement","src":"1383:12:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1353:6:101","nodeType":"YulIdentifier","src":"1353:6:101"},{"kind":"number","nativeSrc":"1361:18:101","nodeType":"YulLiteral","src":"1361:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1350:2:101","nodeType":"YulIdentifier","src":"1350:2:101"},"nativeSrc":"1350:30:101","nodeType":"YulFunctionCall","src":"1350:30:101"},"nativeSrc":"1347:50:101","nodeType":"YulIf","src":"1347:50:101"},{"body":{"nativeSrc":"1447:16:101","nodeType":"YulBlock","src":"1447:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1456:1:101","nodeType":"YulLiteral","src":"1456:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1459:1:101","nodeType":"YulLiteral","src":"1459:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1449:6:101","nodeType":"YulIdentifier","src":"1449:6:101"},"nativeSrc":"1449:12:101","nodeType":"YulFunctionCall","src":"1449:12:101"},"nativeSrc":"1449:12:101","nodeType":"YulExpressionStatement","src":"1449:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1420:2:101","nodeType":"YulIdentifier","src":"1420:2:101"},{"name":"length","nativeSrc":"1424:6:101","nodeType":"YulIdentifier","src":"1424:6:101"}],"functionName":{"name":"add","nativeSrc":"1416:3:101","nodeType":"YulIdentifier","src":"1416:3:101"},"nativeSrc":"1416:15:101","nodeType":"YulFunctionCall","src":"1416:15:101"},{"kind":"number","nativeSrc":"1433:2:101","nodeType":"YulLiteral","src":"1433:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1412:3:101","nodeType":"YulIdentifier","src":"1412:3:101"},"nativeSrc":"1412:24:101","nodeType":"YulFunctionCall","src":"1412:24:101"},{"name":"dataEnd","nativeSrc":"1438:7:101","nodeType":"YulIdentifier","src":"1438:7:101"}],"functionName":{"name":"gt","nativeSrc":"1409:2:101","nodeType":"YulIdentifier","src":"1409:2:101"},"nativeSrc":"1409:37:101","nodeType":"YulFunctionCall","src":"1409:37:101"},"nativeSrc":"1406:57:101","nodeType":"YulIf","src":"1406:57:101"},{"nativeSrc":"1472:21:101","nodeType":"YulAssignment","src":"1472:21:101","value":{"arguments":[{"name":"_1","nativeSrc":"1486:2:101","nodeType":"YulIdentifier","src":"1486:2:101"},{"kind":"number","nativeSrc":"1490:2:101","nodeType":"YulLiteral","src":"1490:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1482:3:101","nodeType":"YulIdentifier","src":"1482:3:101"},"nativeSrc":"1482:11:101","nodeType":"YulFunctionCall","src":"1482:11:101"},"variableNames":[{"name":"value3","nativeSrc":"1472:6:101","nodeType":"YulIdentifier","src":"1472:6:101"}]},{"nativeSrc":"1502:16:101","nodeType":"YulAssignment","src":"1502:16:101","value":{"name":"length","nativeSrc":"1512:6:101","nodeType":"YulIdentifier","src":"1512:6:101"},"variableNames":[{"name":"value4","nativeSrc":"1502:6:101","nodeType":"YulIdentifier","src":"1502:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr","nativeSrc":"675:849:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"749:9:101","nodeType":"YulTypedName","src":"749:9:101","type":""},{"name":"dataEnd","nativeSrc":"760:7:101","nodeType":"YulTypedName","src":"760:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"772:6:101","nodeType":"YulTypedName","src":"772:6:101","type":""},{"name":"value1","nativeSrc":"780:6:101","nodeType":"YulTypedName","src":"780:6:101","type":""},{"name":"value2","nativeSrc":"788:6:101","nodeType":"YulTypedName","src":"788:6:101","type":""},{"name":"value3","nativeSrc":"796:6:101","nodeType":"YulTypedName","src":"796:6:101","type":""},{"name":"value4","nativeSrc":"804:6:101","nodeType":"YulTypedName","src":"804:6:101","type":""}],"src":"675:849:101"},{"body":{"nativeSrc":"1628:103:101","nodeType":"YulBlock","src":"1628:103:101","statements":[{"nativeSrc":"1638:26:101","nodeType":"YulAssignment","src":"1638:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1650:9:101","nodeType":"YulIdentifier","src":"1650:9:101"},{"kind":"number","nativeSrc":"1661:2:101","nodeType":"YulLiteral","src":"1661:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1646:3:101","nodeType":"YulIdentifier","src":"1646:3:101"},"nativeSrc":"1646:18:101","nodeType":"YulFunctionCall","src":"1646:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1638:4:101","nodeType":"YulIdentifier","src":"1638:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1680:9:101","nodeType":"YulIdentifier","src":"1680:9:101"},{"arguments":[{"name":"value0","nativeSrc":"1695:6:101","nodeType":"YulIdentifier","src":"1695:6:101"},{"arguments":[{"kind":"number","nativeSrc":"1707:3:101","nodeType":"YulLiteral","src":"1707:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"1712:10:101","nodeType":"YulLiteral","src":"1712:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"1703:3:101","nodeType":"YulIdentifier","src":"1703:3:101"},"nativeSrc":"1703:20:101","nodeType":"YulFunctionCall","src":"1703:20:101"}],"functionName":{"name":"and","nativeSrc":"1691:3:101","nodeType":"YulIdentifier","src":"1691:3:101"},"nativeSrc":"1691:33:101","nodeType":"YulFunctionCall","src":"1691:33:101"}],"functionName":{"name":"mstore","nativeSrc":"1673:6:101","nodeType":"YulIdentifier","src":"1673:6:101"},"nativeSrc":"1673:52:101","nodeType":"YulFunctionCall","src":"1673:52:101"},"nativeSrc":"1673:52:101","nodeType":"YulExpressionStatement","src":"1673:52:101"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nativeSrc":"1529:202:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1597:9:101","nodeType":"YulTypedName","src":"1597:9:101","type":""},{"name":"value0","nativeSrc":"1608:6:101","nodeType":"YulTypedName","src":"1608:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1619:4:101","nodeType":"YulTypedName","src":"1619:4:101","type":""}],"src":"1529:202:101"},{"body":{"nativeSrc":"1803:206:101","nodeType":"YulBlock","src":"1803:206:101","statements":[{"body":{"nativeSrc":"1849:16:101","nodeType":"YulBlock","src":"1849:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1858:1:101","nodeType":"YulLiteral","src":"1858:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1861:1:101","nodeType":"YulLiteral","src":"1861:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1851:6:101","nodeType":"YulIdentifier","src":"1851:6:101"},"nativeSrc":"1851:12:101","nodeType":"YulFunctionCall","src":"1851:12:101"},"nativeSrc":"1851:12:101","nodeType":"YulExpressionStatement","src":"1851:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1824:7:101","nodeType":"YulIdentifier","src":"1824:7:101"},{"name":"headStart","nativeSrc":"1833:9:101","nodeType":"YulIdentifier","src":"1833:9:101"}],"functionName":{"name":"sub","nativeSrc":"1820:3:101","nodeType":"YulIdentifier","src":"1820:3:101"},"nativeSrc":"1820:23:101","nodeType":"YulFunctionCall","src":"1820:23:101"},{"kind":"number","nativeSrc":"1845:2:101","nodeType":"YulLiteral","src":"1845:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1816:3:101","nodeType":"YulIdentifier","src":"1816:3:101"},"nativeSrc":"1816:32:101","nodeType":"YulFunctionCall","src":"1816:32:101"},"nativeSrc":"1813:52:101","nodeType":"YulIf","src":"1813:52:101"},{"nativeSrc":"1874:36:101","nodeType":"YulVariableDeclaration","src":"1874:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1900:9:101","nodeType":"YulIdentifier","src":"1900:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"1887:12:101","nodeType":"YulIdentifier","src":"1887:12:101"},"nativeSrc":"1887:23:101","nodeType":"YulFunctionCall","src":"1887:23:101"},"variables":[{"name":"value","nativeSrc":"1878:5:101","nodeType":"YulTypedName","src":"1878:5:101","type":""}]},{"body":{"nativeSrc":"1963:16:101","nodeType":"YulBlock","src":"1963:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1972:1:101","nodeType":"YulLiteral","src":"1972:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1975:1:101","nodeType":"YulLiteral","src":"1975:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1965:6:101","nodeType":"YulIdentifier","src":"1965:6:101"},"nativeSrc":"1965:12:101","nodeType":"YulFunctionCall","src":"1965:12:101"},"nativeSrc":"1965:12:101","nodeType":"YulExpressionStatement","src":"1965:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1932:5:101","nodeType":"YulIdentifier","src":"1932:5:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1953:5:101","nodeType":"YulIdentifier","src":"1953:5:101"}],"functionName":{"name":"iszero","nativeSrc":"1946:6:101","nodeType":"YulIdentifier","src":"1946:6:101"},"nativeSrc":"1946:13:101","nodeType":"YulFunctionCall","src":"1946:13:101"}],"functionName":{"name":"iszero","nativeSrc":"1939:6:101","nodeType":"YulIdentifier","src":"1939:6:101"},"nativeSrc":"1939:21:101","nodeType":"YulFunctionCall","src":"1939:21:101"}],"functionName":{"name":"eq","nativeSrc":"1929:2:101","nodeType":"YulIdentifier","src":"1929:2:101"},"nativeSrc":"1929:32:101","nodeType":"YulFunctionCall","src":"1929:32:101"}],"functionName":{"name":"iszero","nativeSrc":"1922:6:101","nodeType":"YulIdentifier","src":"1922:6:101"},"nativeSrc":"1922:40:101","nodeType":"YulFunctionCall","src":"1922:40:101"},"nativeSrc":"1919:60:101","nodeType":"YulIf","src":"1919:60:101"},{"nativeSrc":"1988:15:101","nodeType":"YulAssignment","src":"1988:15:101","value":{"name":"value","nativeSrc":"1998:5:101","nodeType":"YulIdentifier","src":"1998:5:101"},"variableNames":[{"name":"value0","nativeSrc":"1988:6:101","nodeType":"YulIdentifier","src":"1988:6:101"}]}]},"name":"abi_decode_tuple_t_bool","nativeSrc":"1736:273:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1769:9:101","nodeType":"YulTypedName","src":"1769:9:101","type":""},{"name":"dataEnd","nativeSrc":"1780:7:101","nodeType":"YulTypedName","src":"1780:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1792:6:101","nodeType":"YulTypedName","src":"1792:6:101","type":""}],"src":"1736:273:101"},{"body":{"nativeSrc":"2135:374:101","nodeType":"YulBlock","src":"2135:374:101","statements":[{"body":{"nativeSrc":"2182:16:101","nodeType":"YulBlock","src":"2182:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2191:1:101","nodeType":"YulLiteral","src":"2191:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2194:1:101","nodeType":"YulLiteral","src":"2194:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2184:6:101","nodeType":"YulIdentifier","src":"2184:6:101"},"nativeSrc":"2184:12:101","nodeType":"YulFunctionCall","src":"2184:12:101"},"nativeSrc":"2184:12:101","nodeType":"YulExpressionStatement","src":"2184:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2156:7:101","nodeType":"YulIdentifier","src":"2156:7:101"},{"name":"headStart","nativeSrc":"2165:9:101","nodeType":"YulIdentifier","src":"2165:9:101"}],"functionName":{"name":"sub","nativeSrc":"2152:3:101","nodeType":"YulIdentifier","src":"2152:3:101"},"nativeSrc":"2152:23:101","nodeType":"YulFunctionCall","src":"2152:23:101"},{"kind":"number","nativeSrc":"2177:3:101","nodeType":"YulLiteral","src":"2177:3:101","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"2148:3:101","nodeType":"YulIdentifier","src":"2148:3:101"},"nativeSrc":"2148:33:101","nodeType":"YulFunctionCall","src":"2148:33:101"},"nativeSrc":"2145:53:101","nodeType":"YulIf","src":"2145:53:101"},{"nativeSrc":"2207:39:101","nodeType":"YulAssignment","src":"2207:39:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2236:9:101","nodeType":"YulIdentifier","src":"2236:9:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2217:18:101","nodeType":"YulIdentifier","src":"2217:18:101"},"nativeSrc":"2217:29:101","nodeType":"YulFunctionCall","src":"2217:29:101"},"variableNames":[{"name":"value0","nativeSrc":"2207:6:101","nodeType":"YulIdentifier","src":"2207:6:101"}]},{"nativeSrc":"2255:48:101","nodeType":"YulAssignment","src":"2255:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2288:9:101","nodeType":"YulIdentifier","src":"2288:9:101"},{"kind":"number","nativeSrc":"2299:2:101","nodeType":"YulLiteral","src":"2299:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2284:3:101","nodeType":"YulIdentifier","src":"2284:3:101"},"nativeSrc":"2284:18:101","nodeType":"YulFunctionCall","src":"2284:18:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2265:18:101","nodeType":"YulIdentifier","src":"2265:18:101"},"nativeSrc":"2265:38:101","nodeType":"YulFunctionCall","src":"2265:38:101"},"variableNames":[{"name":"value1","nativeSrc":"2255:6:101","nodeType":"YulIdentifier","src":"2255:6:101"}]},{"nativeSrc":"2312:14:101","nodeType":"YulVariableDeclaration","src":"2312:14:101","value":{"kind":"number","nativeSrc":"2325:1:101","nodeType":"YulLiteral","src":"2325:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"2316:5:101","nodeType":"YulTypedName","src":"2316:5:101","type":""}]},{"nativeSrc":"2335:41:101","nodeType":"YulAssignment","src":"2335:41:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2361:9:101","nodeType":"YulIdentifier","src":"2361:9:101"},{"kind":"number","nativeSrc":"2372:2:101","nodeType":"YulLiteral","src":"2372:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"2357:3:101","nodeType":"YulIdentifier","src":"2357:3:101"},"nativeSrc":"2357:18:101","nodeType":"YulFunctionCall","src":"2357:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"2344:12:101","nodeType":"YulIdentifier","src":"2344:12:101"},"nativeSrc":"2344:32:101","nodeType":"YulFunctionCall","src":"2344:32:101"},"variableNames":[{"name":"value","nativeSrc":"2335:5:101","nodeType":"YulIdentifier","src":"2335:5:101"}]},{"nativeSrc":"2385:15:101","nodeType":"YulAssignment","src":"2385:15:101","value":{"name":"value","nativeSrc":"2395:5:101","nodeType":"YulIdentifier","src":"2395:5:101"},"variableNames":[{"name":"value2","nativeSrc":"2385:6:101","nodeType":"YulIdentifier","src":"2385:6:101"}]},{"nativeSrc":"2409:16:101","nodeType":"YulVariableDeclaration","src":"2409:16:101","value":{"kind":"number","nativeSrc":"2424:1:101","nodeType":"YulLiteral","src":"2424:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"2413:7:101","nodeType":"YulTypedName","src":"2413:7:101","type":""}]},{"nativeSrc":"2434:43:101","nodeType":"YulAssignment","src":"2434:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2462:9:101","nodeType":"YulIdentifier","src":"2462:9:101"},{"kind":"number","nativeSrc":"2473:2:101","nodeType":"YulLiteral","src":"2473:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"2458:3:101","nodeType":"YulIdentifier","src":"2458:3:101"},"nativeSrc":"2458:18:101","nodeType":"YulFunctionCall","src":"2458:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"2445:12:101","nodeType":"YulIdentifier","src":"2445:12:101"},"nativeSrc":"2445:32:101","nodeType":"YulFunctionCall","src":"2445:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"2434:7:101","nodeType":"YulIdentifier","src":"2434:7:101"}]},{"nativeSrc":"2486:17:101","nodeType":"YulAssignment","src":"2486:17:101","value":{"name":"value_1","nativeSrc":"2496:7:101","nodeType":"YulIdentifier","src":"2496:7:101"},"variableNames":[{"name":"value3","nativeSrc":"2486:6:101","nodeType":"YulIdentifier","src":"2486:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256","nativeSrc":"2014:495:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2077:9:101","nodeType":"YulTypedName","src":"2077:9:101","type":""},{"name":"dataEnd","nativeSrc":"2088:7:101","nodeType":"YulTypedName","src":"2088:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2100:6:101","nodeType":"YulTypedName","src":"2100:6:101","type":""},{"name":"value1","nativeSrc":"2108:6:101","nodeType":"YulTypedName","src":"2108:6:101","type":""},{"name":"value2","nativeSrc":"2116:6:101","nodeType":"YulTypedName","src":"2116:6:101","type":""},{"name":"value3","nativeSrc":"2124:6:101","nodeType":"YulTypedName","src":"2124:6:101","type":""}],"src":"2014:495:101"},{"body":{"nativeSrc":"2669:582:101","nodeType":"YulBlock","src":"2669:582:101","statements":[{"body":{"nativeSrc":"2716:16:101","nodeType":"YulBlock","src":"2716:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2725:1:101","nodeType":"YulLiteral","src":"2725:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2728:1:101","nodeType":"YulLiteral","src":"2728:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2718:6:101","nodeType":"YulIdentifier","src":"2718:6:101"},"nativeSrc":"2718:12:101","nodeType":"YulFunctionCall","src":"2718:12:101"},"nativeSrc":"2718:12:101","nodeType":"YulExpressionStatement","src":"2718:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2690:7:101","nodeType":"YulIdentifier","src":"2690:7:101"},{"name":"headStart","nativeSrc":"2699:9:101","nodeType":"YulIdentifier","src":"2699:9:101"}],"functionName":{"name":"sub","nativeSrc":"2686:3:101","nodeType":"YulIdentifier","src":"2686:3:101"},"nativeSrc":"2686:23:101","nodeType":"YulFunctionCall","src":"2686:23:101"},{"kind":"number","nativeSrc":"2711:3:101","nodeType":"YulLiteral","src":"2711:3:101","type":"","value":"192"}],"functionName":{"name":"slt","nativeSrc":"2682:3:101","nodeType":"YulIdentifier","src":"2682:3:101"},"nativeSrc":"2682:33:101","nodeType":"YulFunctionCall","src":"2682:33:101"},"nativeSrc":"2679:53:101","nodeType":"YulIf","src":"2679:53:101"},{"nativeSrc":"2741:39:101","nodeType":"YulAssignment","src":"2741:39:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2770:9:101","nodeType":"YulIdentifier","src":"2770:9:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2751:18:101","nodeType":"YulIdentifier","src":"2751:18:101"},"nativeSrc":"2751:29:101","nodeType":"YulFunctionCall","src":"2751:29:101"},"variableNames":[{"name":"value0","nativeSrc":"2741:6:101","nodeType":"YulIdentifier","src":"2741:6:101"}]},{"nativeSrc":"2789:48:101","nodeType":"YulAssignment","src":"2789:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2822:9:101","nodeType":"YulIdentifier","src":"2822:9:101"},{"kind":"number","nativeSrc":"2833:2:101","nodeType":"YulLiteral","src":"2833:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2818:3:101","nodeType":"YulIdentifier","src":"2818:3:101"},"nativeSrc":"2818:18:101","nodeType":"YulFunctionCall","src":"2818:18:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2799:18:101","nodeType":"YulIdentifier","src":"2799:18:101"},"nativeSrc":"2799:38:101","nodeType":"YulFunctionCall","src":"2799:38:101"},"variableNames":[{"name":"value1","nativeSrc":"2789:6:101","nodeType":"YulIdentifier","src":"2789:6:101"}]},{"nativeSrc":"2846:14:101","nodeType":"YulVariableDeclaration","src":"2846:14:101","value":{"kind":"number","nativeSrc":"2859:1:101","nodeType":"YulLiteral","src":"2859:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"2850:5:101","nodeType":"YulTypedName","src":"2850:5:101","type":""}]},{"nativeSrc":"2869:41:101","nodeType":"YulAssignment","src":"2869:41:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2895:9:101","nodeType":"YulIdentifier","src":"2895:9:101"},{"kind":"number","nativeSrc":"2906:2:101","nodeType":"YulLiteral","src":"2906:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"2891:3:101","nodeType":"YulIdentifier","src":"2891:3:101"},"nativeSrc":"2891:18:101","nodeType":"YulFunctionCall","src":"2891:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"2878:12:101","nodeType":"YulIdentifier","src":"2878:12:101"},"nativeSrc":"2878:32:101","nodeType":"YulFunctionCall","src":"2878:32:101"},"variableNames":[{"name":"value","nativeSrc":"2869:5:101","nodeType":"YulIdentifier","src":"2869:5:101"}]},{"nativeSrc":"2919:15:101","nodeType":"YulAssignment","src":"2919:15:101","value":{"name":"value","nativeSrc":"2929:5:101","nodeType":"YulIdentifier","src":"2929:5:101"},"variableNames":[{"name":"value2","nativeSrc":"2919:6:101","nodeType":"YulIdentifier","src":"2919:6:101"}]},{"nativeSrc":"2943:16:101","nodeType":"YulVariableDeclaration","src":"2943:16:101","value":{"kind":"number","nativeSrc":"2958:1:101","nodeType":"YulLiteral","src":"2958:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"2947:7:101","nodeType":"YulTypedName","src":"2947:7:101","type":""}]},{"nativeSrc":"2968:43:101","nodeType":"YulAssignment","src":"2968:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2996:9:101","nodeType":"YulIdentifier","src":"2996:9:101"},{"kind":"number","nativeSrc":"3007:2:101","nodeType":"YulLiteral","src":"3007:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"2992:3:101","nodeType":"YulIdentifier","src":"2992:3:101"},"nativeSrc":"2992:18:101","nodeType":"YulFunctionCall","src":"2992:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"2979:12:101","nodeType":"YulIdentifier","src":"2979:12:101"},"nativeSrc":"2979:32:101","nodeType":"YulFunctionCall","src":"2979:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"2968:7:101","nodeType":"YulIdentifier","src":"2968:7:101"}]},{"nativeSrc":"3020:17:101","nodeType":"YulAssignment","src":"3020:17:101","value":{"name":"value_1","nativeSrc":"3030:7:101","nodeType":"YulIdentifier","src":"3030:7:101"},"variableNames":[{"name":"value3","nativeSrc":"3020:6:101","nodeType":"YulIdentifier","src":"3020:6:101"}]},{"nativeSrc":"3046:16:101","nodeType":"YulVariableDeclaration","src":"3046:16:101","value":{"kind":"number","nativeSrc":"3061:1:101","nodeType":"YulLiteral","src":"3061:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"3050:7:101","nodeType":"YulTypedName","src":"3050:7:101","type":""}]},{"nativeSrc":"3071:44:101","nodeType":"YulAssignment","src":"3071:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3099:9:101","nodeType":"YulIdentifier","src":"3099:9:101"},{"kind":"number","nativeSrc":"3110:3:101","nodeType":"YulLiteral","src":"3110:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"3095:3:101","nodeType":"YulIdentifier","src":"3095:3:101"},"nativeSrc":"3095:19:101","nodeType":"YulFunctionCall","src":"3095:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"3082:12:101","nodeType":"YulIdentifier","src":"3082:12:101"},"nativeSrc":"3082:33:101","nodeType":"YulFunctionCall","src":"3082:33:101"},"variableNames":[{"name":"value_2","nativeSrc":"3071:7:101","nodeType":"YulIdentifier","src":"3071:7:101"}]},{"nativeSrc":"3124:17:101","nodeType":"YulAssignment","src":"3124:17:101","value":{"name":"value_2","nativeSrc":"3134:7:101","nodeType":"YulIdentifier","src":"3134:7:101"},"variableNames":[{"name":"value4","nativeSrc":"3124:6:101","nodeType":"YulIdentifier","src":"3124:6:101"}]},{"nativeSrc":"3150:16:101","nodeType":"YulVariableDeclaration","src":"3150:16:101","value":{"kind":"number","nativeSrc":"3165:1:101","nodeType":"YulLiteral","src":"3165:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"3154:7:101","nodeType":"YulTypedName","src":"3154:7:101","type":""}]},{"nativeSrc":"3175:44:101","nodeType":"YulAssignment","src":"3175:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3203:9:101","nodeType":"YulIdentifier","src":"3203:9:101"},{"kind":"number","nativeSrc":"3214:3:101","nodeType":"YulLiteral","src":"3214:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"3199:3:101","nodeType":"YulIdentifier","src":"3199:3:101"},"nativeSrc":"3199:19:101","nodeType":"YulFunctionCall","src":"3199:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"3186:12:101","nodeType":"YulIdentifier","src":"3186:12:101"},"nativeSrc":"3186:33:101","nodeType":"YulFunctionCall","src":"3186:33:101"},"variableNames":[{"name":"value_3","nativeSrc":"3175:7:101","nodeType":"YulIdentifier","src":"3175:7:101"}]},{"nativeSrc":"3228:17:101","nodeType":"YulAssignment","src":"3228:17:101","value":{"name":"value_3","nativeSrc":"3238:7:101","nodeType":"YulIdentifier","src":"3238:7:101"},"variableNames":[{"name":"value5","nativeSrc":"3228:6:101","nodeType":"YulIdentifier","src":"3228:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256t_uint256","nativeSrc":"2514:737:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2595:9:101","nodeType":"YulTypedName","src":"2595:9:101","type":""},{"name":"dataEnd","nativeSrc":"2606:7:101","nodeType":"YulTypedName","src":"2606:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2618:6:101","nodeType":"YulTypedName","src":"2618:6:101","type":""},{"name":"value1","nativeSrc":"2626:6:101","nodeType":"YulTypedName","src":"2626:6:101","type":""},{"name":"value2","nativeSrc":"2634:6:101","nodeType":"YulTypedName","src":"2634:6:101","type":""},{"name":"value3","nativeSrc":"2642:6:101","nodeType":"YulTypedName","src":"2642:6:101","type":""},{"name":"value4","nativeSrc":"2650:6:101","nodeType":"YulTypedName","src":"2650:6:101","type":""},{"name":"value5","nativeSrc":"2658:6:101","nodeType":"YulTypedName","src":"2658:6:101","type":""}],"src":"2514:737:101"},{"body":{"nativeSrc":"3357:76:101","nodeType":"YulBlock","src":"3357:76:101","statements":[{"nativeSrc":"3367:26:101","nodeType":"YulAssignment","src":"3367:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3379:9:101","nodeType":"YulIdentifier","src":"3379:9:101"},{"kind":"number","nativeSrc":"3390:2:101","nodeType":"YulLiteral","src":"3390:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3375:3:101","nodeType":"YulIdentifier","src":"3375:3:101"},"nativeSrc":"3375:18:101","nodeType":"YulFunctionCall","src":"3375:18:101"},"variableNames":[{"name":"tail","nativeSrc":"3367:4:101","nodeType":"YulIdentifier","src":"3367:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3409:9:101","nodeType":"YulIdentifier","src":"3409:9:101"},{"name":"value0","nativeSrc":"3420:6:101","nodeType":"YulIdentifier","src":"3420:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3402:6:101","nodeType":"YulIdentifier","src":"3402:6:101"},"nativeSrc":"3402:25:101","nodeType":"YulFunctionCall","src":"3402:25:101"},"nativeSrc":"3402:25:101","nodeType":"YulExpressionStatement","src":"3402:25:101"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"3256:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3326:9:101","nodeType":"YulTypedName","src":"3326:9:101","type":""},{"name":"value0","nativeSrc":"3337:6:101","nodeType":"YulTypedName","src":"3337:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3348:4:101","nodeType":"YulTypedName","src":"3348:4:101","type":""}],"src":"3256:177:101"},{"body":{"nativeSrc":"3508:156:101","nodeType":"YulBlock","src":"3508:156:101","statements":[{"body":{"nativeSrc":"3554:16:101","nodeType":"YulBlock","src":"3554:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3563:1:101","nodeType":"YulLiteral","src":"3563:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3566:1:101","nodeType":"YulLiteral","src":"3566:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3556:6:101","nodeType":"YulIdentifier","src":"3556:6:101"},"nativeSrc":"3556:12:101","nodeType":"YulFunctionCall","src":"3556:12:101"},"nativeSrc":"3556:12:101","nodeType":"YulExpressionStatement","src":"3556:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3529:7:101","nodeType":"YulIdentifier","src":"3529:7:101"},{"name":"headStart","nativeSrc":"3538:9:101","nodeType":"YulIdentifier","src":"3538:9:101"}],"functionName":{"name":"sub","nativeSrc":"3525:3:101","nodeType":"YulIdentifier","src":"3525:3:101"},"nativeSrc":"3525:23:101","nodeType":"YulFunctionCall","src":"3525:23:101"},{"kind":"number","nativeSrc":"3550:2:101","nodeType":"YulLiteral","src":"3550:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"3521:3:101","nodeType":"YulIdentifier","src":"3521:3:101"},"nativeSrc":"3521:32:101","nodeType":"YulFunctionCall","src":"3521:32:101"},"nativeSrc":"3518:52:101","nodeType":"YulIf","src":"3518:52:101"},{"nativeSrc":"3579:14:101","nodeType":"YulVariableDeclaration","src":"3579:14:101","value":{"kind":"number","nativeSrc":"3592:1:101","nodeType":"YulLiteral","src":"3592:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3583:5:101","nodeType":"YulTypedName","src":"3583:5:101","type":""}]},{"nativeSrc":"3602:32:101","nodeType":"YulAssignment","src":"3602:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3624:9:101","nodeType":"YulIdentifier","src":"3624:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"3611:12:101","nodeType":"YulIdentifier","src":"3611:12:101"},"nativeSrc":"3611:23:101","nodeType":"YulFunctionCall","src":"3611:23:101"},"variableNames":[{"name":"value","nativeSrc":"3602:5:101","nodeType":"YulIdentifier","src":"3602:5:101"}]},{"nativeSrc":"3643:15:101","nodeType":"YulAssignment","src":"3643:15:101","value":{"name":"value","nativeSrc":"3653:5:101","nodeType":"YulIdentifier","src":"3653:5:101"},"variableNames":[{"name":"value0","nativeSrc":"3643:6:101","nodeType":"YulIdentifier","src":"3643:6:101"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"3438:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3474:9:101","nodeType":"YulTypedName","src":"3474:9:101","type":""},{"name":"dataEnd","nativeSrc":"3485:7:101","nodeType":"YulTypedName","src":"3485:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3497:6:101","nodeType":"YulTypedName","src":"3497:6:101","type":""}],"src":"3438:226:101"},{"body":{"nativeSrc":"3773:270:101","nodeType":"YulBlock","src":"3773:270:101","statements":[{"body":{"nativeSrc":"3819:16:101","nodeType":"YulBlock","src":"3819:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3828:1:101","nodeType":"YulLiteral","src":"3828:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3831:1:101","nodeType":"YulLiteral","src":"3831:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3821:6:101","nodeType":"YulIdentifier","src":"3821:6:101"},"nativeSrc":"3821:12:101","nodeType":"YulFunctionCall","src":"3821:12:101"},"nativeSrc":"3821:12:101","nodeType":"YulExpressionStatement","src":"3821:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3794:7:101","nodeType":"YulIdentifier","src":"3794:7:101"},{"name":"headStart","nativeSrc":"3803:9:101","nodeType":"YulIdentifier","src":"3803:9:101"}],"functionName":{"name":"sub","nativeSrc":"3790:3:101","nodeType":"YulIdentifier","src":"3790:3:101"},"nativeSrc":"3790:23:101","nodeType":"YulFunctionCall","src":"3790:23:101"},{"kind":"number","nativeSrc":"3815:2:101","nodeType":"YulLiteral","src":"3815:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"3786:3:101","nodeType":"YulIdentifier","src":"3786:3:101"},"nativeSrc":"3786:32:101","nodeType":"YulFunctionCall","src":"3786:32:101"},"nativeSrc":"3783:52:101","nodeType":"YulIf","src":"3783:52:101"},{"nativeSrc":"3844:39:101","nodeType":"YulAssignment","src":"3844:39:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3873:9:101","nodeType":"YulIdentifier","src":"3873:9:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"3854:18:101","nodeType":"YulIdentifier","src":"3854:18:101"},"nativeSrc":"3854:29:101","nodeType":"YulFunctionCall","src":"3854:29:101"},"variableNames":[{"name":"value0","nativeSrc":"3844:6:101","nodeType":"YulIdentifier","src":"3844:6:101"}]},{"nativeSrc":"3892:48:101","nodeType":"YulAssignment","src":"3892:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3925:9:101","nodeType":"YulIdentifier","src":"3925:9:101"},{"kind":"number","nativeSrc":"3936:2:101","nodeType":"YulLiteral","src":"3936:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3921:3:101","nodeType":"YulIdentifier","src":"3921:3:101"},"nativeSrc":"3921:18:101","nodeType":"YulFunctionCall","src":"3921:18:101"}],"functionName":{"name":"abi_decode_address","nativeSrc":"3902:18:101","nodeType":"YulIdentifier","src":"3902:18:101"},"nativeSrc":"3902:38:101","nodeType":"YulFunctionCall","src":"3902:38:101"},"variableNames":[{"name":"value1","nativeSrc":"3892:6:101","nodeType":"YulIdentifier","src":"3892:6:101"}]},{"nativeSrc":"3949:14:101","nodeType":"YulVariableDeclaration","src":"3949:14:101","value":{"kind":"number","nativeSrc":"3962:1:101","nodeType":"YulLiteral","src":"3962:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3953:5:101","nodeType":"YulTypedName","src":"3953:5:101","type":""}]},{"nativeSrc":"3972:41:101","nodeType":"YulAssignment","src":"3972:41:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3998:9:101","nodeType":"YulIdentifier","src":"3998:9:101"},{"kind":"number","nativeSrc":"4009:2:101","nodeType":"YulLiteral","src":"4009:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3994:3:101","nodeType":"YulIdentifier","src":"3994:3:101"},"nativeSrc":"3994:18:101","nodeType":"YulFunctionCall","src":"3994:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3981:12:101","nodeType":"YulIdentifier","src":"3981:12:101"},"nativeSrc":"3981:32:101","nodeType":"YulFunctionCall","src":"3981:32:101"},"variableNames":[{"name":"value","nativeSrc":"3972:5:101","nodeType":"YulIdentifier","src":"3972:5:101"}]},{"nativeSrc":"4022:15:101","nodeType":"YulAssignment","src":"4022:15:101","value":{"name":"value","nativeSrc":"4032:5:101","nodeType":"YulIdentifier","src":"4032:5:101"},"variableNames":[{"name":"value2","nativeSrc":"4022:6:101","nodeType":"YulIdentifier","src":"4022:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"3669:374:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3723:9:101","nodeType":"YulTypedName","src":"3723:9:101","type":""},{"name":"dataEnd","nativeSrc":"3734:7:101","nodeType":"YulTypedName","src":"3734:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3746:6:101","nodeType":"YulTypedName","src":"3746:6:101","type":""},{"name":"value1","nativeSrc":"3754:6:101","nodeType":"YulTypedName","src":"3754:6:101","type":""},{"name":"value2","nativeSrc":"3762:6:101","nodeType":"YulTypedName","src":"3762:6:101","type":""}],"src":"3669:374:101"},{"body":{"nativeSrc":"4222:235:101","nodeType":"YulBlock","src":"4222:235:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4239:9:101","nodeType":"YulIdentifier","src":"4239:9:101"},{"kind":"number","nativeSrc":"4250:2:101","nodeType":"YulLiteral","src":"4250:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"4232:6:101","nodeType":"YulIdentifier","src":"4232:6:101"},"nativeSrc":"4232:21:101","nodeType":"YulFunctionCall","src":"4232:21:101"},"nativeSrc":"4232:21:101","nodeType":"YulExpressionStatement","src":"4232:21:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4273:9:101","nodeType":"YulIdentifier","src":"4273:9:101"},{"kind":"number","nativeSrc":"4284:2:101","nodeType":"YulLiteral","src":"4284:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4269:3:101","nodeType":"YulIdentifier","src":"4269:3:101"},"nativeSrc":"4269:18:101","nodeType":"YulFunctionCall","src":"4269:18:101"},{"kind":"number","nativeSrc":"4289:2:101","nodeType":"YulLiteral","src":"4289:2:101","type":"","value":"45"}],"functionName":{"name":"mstore","nativeSrc":"4262:6:101","nodeType":"YulIdentifier","src":"4262:6:101"},"nativeSrc":"4262:30:101","nodeType":"YulFunctionCall","src":"4262:30:101"},"nativeSrc":"4262:30:101","nodeType":"YulExpressionStatement","src":"4262:30:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4312:9:101","nodeType":"YulIdentifier","src":"4312:9:101"},{"kind":"number","nativeSrc":"4323:2:101","nodeType":"YulLiteral","src":"4323:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4308:3:101","nodeType":"YulIdentifier","src":"4308:3:101"},"nativeSrc":"4308:18:101","nodeType":"YulFunctionCall","src":"4308:18:101"},{"hexValue":"6f6e45524337323152656365697665643a205468657920746f6c64206d652049","kind":"string","nativeSrc":"4328:34:101","nodeType":"YulLiteral","src":"4328:34:101","type":"","value":"onERC721Received: They told me I"}],"functionName":{"name":"mstore","nativeSrc":"4301:6:101","nodeType":"YulIdentifier","src":"4301:6:101"},"nativeSrc":"4301:62:101","nodeType":"YulFunctionCall","src":"4301:62:101"},"nativeSrc":"4301:62:101","nodeType":"YulExpressionStatement","src":"4301:62:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4383:9:101","nodeType":"YulIdentifier","src":"4383:9:101"},{"kind":"number","nativeSrc":"4394:2:101","nodeType":"YulLiteral","src":"4394:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4379:3:101","nodeType":"YulIdentifier","src":"4379:3:101"},"nativeSrc":"4379:18:101","nodeType":"YulFunctionCall","src":"4379:18:101"},{"hexValue":"206861766520746f206661696c","kind":"string","nativeSrc":"4399:15:101","nodeType":"YulLiteral","src":"4399:15:101","type":"","value":" have to fail"}],"functionName":{"name":"mstore","nativeSrc":"4372:6:101","nodeType":"YulIdentifier","src":"4372:6:101"},"nativeSrc":"4372:43:101","nodeType":"YulFunctionCall","src":"4372:43:101"},"nativeSrc":"4372:43:101","nodeType":"YulExpressionStatement","src":"4372:43:101"},{"nativeSrc":"4424:27:101","nodeType":"YulAssignment","src":"4424:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4436:9:101","nodeType":"YulIdentifier","src":"4436:9:101"},{"kind":"number","nativeSrc":"4447:3:101","nodeType":"YulLiteral","src":"4447:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4432:3:101","nodeType":"YulIdentifier","src":"4432:3:101"},"nativeSrc":"4432:19:101","nodeType":"YulFunctionCall","src":"4432:19:101"},"variableNames":[{"name":"tail","nativeSrc":"4424:4:101","nodeType":"YulIdentifier","src":"4424:4:101"}]}]},"name":"abi_encode_tuple_t_stringliteral_46ae0231b151a29cb76b0eb0bfc0feea3dce0b818e71e3685082cfa188eaf63d__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"4048:409:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4199:9:101","nodeType":"YulTypedName","src":"4199:9:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4213:4:101","nodeType":"YulTypedName","src":"4213:4:101","type":""}],"src":"4048:409:101"},{"body":{"nativeSrc":"4667:411:101","nodeType":"YulBlock","src":"4667:411:101","statements":[{"nativeSrc":"4677:27:101","nodeType":"YulAssignment","src":"4677:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4689:9:101","nodeType":"YulIdentifier","src":"4689:9:101"},{"kind":"number","nativeSrc":"4700:3:101","nodeType":"YulLiteral","src":"4700:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4685:3:101","nodeType":"YulIdentifier","src":"4685:3:101"},"nativeSrc":"4685:19:101","nodeType":"YulFunctionCall","src":"4685:19:101"},"variableNames":[{"name":"tail","nativeSrc":"4677:4:101","nodeType":"YulIdentifier","src":"4677:4:101"}]},{"body":{"nativeSrc":"4746:111:101","nodeType":"YulBlock","src":"4746:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4767:1:101","nodeType":"YulLiteral","src":"4767:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4774:3:101","nodeType":"YulLiteral","src":"4774:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"4779:10:101","nodeType":"YulLiteral","src":"4779:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4770:3:101","nodeType":"YulIdentifier","src":"4770:3:101"},"nativeSrc":"4770:20:101","nodeType":"YulFunctionCall","src":"4770:20:101"}],"functionName":{"name":"mstore","nativeSrc":"4760:6:101","nodeType":"YulIdentifier","src":"4760:6:101"},"nativeSrc":"4760:31:101","nodeType":"YulFunctionCall","src":"4760:31:101"},"nativeSrc":"4760:31:101","nodeType":"YulExpressionStatement","src":"4760:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4811:1:101","nodeType":"YulLiteral","src":"4811:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"4814:4:101","nodeType":"YulLiteral","src":"4814:4:101","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"4804:6:101","nodeType":"YulIdentifier","src":"4804:6:101"},"nativeSrc":"4804:15:101","nodeType":"YulFunctionCall","src":"4804:15:101"},"nativeSrc":"4804:15:101","nodeType":"YulExpressionStatement","src":"4804:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4839:1:101","nodeType":"YulLiteral","src":"4839:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4842:4:101","nodeType":"YulLiteral","src":"4842:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4832:6:101","nodeType":"YulIdentifier","src":"4832:6:101"},"nativeSrc":"4832:15:101","nodeType":"YulFunctionCall","src":"4832:15:101"},"nativeSrc":"4832:15:101","nodeType":"YulExpressionStatement","src":"4832:15:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"4726:6:101","nodeType":"YulIdentifier","src":"4726:6:101"},{"kind":"number","nativeSrc":"4734:1:101","nodeType":"YulLiteral","src":"4734:1:101","type":"","value":"5"}],"functionName":{"name":"lt","nativeSrc":"4723:2:101","nodeType":"YulIdentifier","src":"4723:2:101"},"nativeSrc":"4723:13:101","nodeType":"YulFunctionCall","src":"4723:13:101"}],"functionName":{"name":"iszero","nativeSrc":"4716:6:101","nodeType":"YulIdentifier","src":"4716:6:101"},"nativeSrc":"4716:21:101","nodeType":"YulFunctionCall","src":"4716:21:101"},"nativeSrc":"4713:144:101","nodeType":"YulIf","src":"4713:144:101"},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4873:9:101","nodeType":"YulIdentifier","src":"4873:9:101"},{"name":"value0","nativeSrc":"4884:6:101","nodeType":"YulIdentifier","src":"4884:6:101"}],"functionName":{"name":"mstore","nativeSrc":"4866:6:101","nodeType":"YulIdentifier","src":"4866:6:101"},"nativeSrc":"4866:25:101","nodeType":"YulFunctionCall","src":"4866:25:101"},"nativeSrc":"4866:25:101","nodeType":"YulExpressionStatement","src":"4866:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4911:9:101","nodeType":"YulIdentifier","src":"4911:9:101"},{"kind":"number","nativeSrc":"4922:2:101","nodeType":"YulLiteral","src":"4922:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4907:3:101","nodeType":"YulIdentifier","src":"4907:3:101"},"nativeSrc":"4907:18:101","nodeType":"YulFunctionCall","src":"4907:18:101"},{"name":"value1","nativeSrc":"4927:6:101","nodeType":"YulIdentifier","src":"4927:6:101"}],"functionName":{"name":"mstore","nativeSrc":"4900:6:101","nodeType":"YulIdentifier","src":"4900:6:101"},"nativeSrc":"4900:34:101","nodeType":"YulFunctionCall","src":"4900:34:101"},"nativeSrc":"4900:34:101","nodeType":"YulExpressionStatement","src":"4900:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4954:9:101","nodeType":"YulIdentifier","src":"4954:9:101"},{"kind":"number","nativeSrc":"4965:2:101","nodeType":"YulLiteral","src":"4965:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4950:3:101","nodeType":"YulIdentifier","src":"4950:3:101"},"nativeSrc":"4950:18:101","nodeType":"YulFunctionCall","src":"4950:18:101"},{"arguments":[{"name":"value2","nativeSrc":"4974:6:101","nodeType":"YulIdentifier","src":"4974:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4990:3:101","nodeType":"YulLiteral","src":"4990:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"4995:1:101","nodeType":"YulLiteral","src":"4995:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4986:3:101","nodeType":"YulIdentifier","src":"4986:3:101"},"nativeSrc":"4986:11:101","nodeType":"YulFunctionCall","src":"4986:11:101"},{"kind":"number","nativeSrc":"4999:1:101","nodeType":"YulLiteral","src":"4999:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4982:3:101","nodeType":"YulIdentifier","src":"4982:3:101"},"nativeSrc":"4982:19:101","nodeType":"YulFunctionCall","src":"4982:19:101"}],"functionName":{"name":"and","nativeSrc":"4970:3:101","nodeType":"YulIdentifier","src":"4970:3:101"},"nativeSrc":"4970:32:101","nodeType":"YulFunctionCall","src":"4970:32:101"}],"functionName":{"name":"mstore","nativeSrc":"4943:6:101","nodeType":"YulIdentifier","src":"4943:6:101"},"nativeSrc":"4943:60:101","nodeType":"YulFunctionCall","src":"4943:60:101"},"nativeSrc":"4943:60:101","nodeType":"YulExpressionStatement","src":"4943:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5023:9:101","nodeType":"YulIdentifier","src":"5023:9:101"},{"kind":"number","nativeSrc":"5034:2:101","nodeType":"YulLiteral","src":"5034:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5019:3:101","nodeType":"YulIdentifier","src":"5019:3:101"},"nativeSrc":"5019:18:101","nodeType":"YulFunctionCall","src":"5019:18:101"},{"arguments":[{"name":"value3","nativeSrc":"5043:6:101","nodeType":"YulIdentifier","src":"5043:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5059:3:101","nodeType":"YulLiteral","src":"5059:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"5064:1:101","nodeType":"YulLiteral","src":"5064:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5055:3:101","nodeType":"YulIdentifier","src":"5055:3:101"},"nativeSrc":"5055:11:101","nodeType":"YulFunctionCall","src":"5055:11:101"},{"kind":"number","nativeSrc":"5068:1:101","nodeType":"YulLiteral","src":"5068:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5051:3:101","nodeType":"YulIdentifier","src":"5051:3:101"},"nativeSrc":"5051:19:101","nodeType":"YulFunctionCall","src":"5051:19:101"}],"functionName":{"name":"and","nativeSrc":"5039:3:101","nodeType":"YulIdentifier","src":"5039:3:101"},"nativeSrc":"5039:32:101","nodeType":"YulFunctionCall","src":"5039:32:101"}],"functionName":{"name":"mstore","nativeSrc":"5012:6:101","nodeType":"YulIdentifier","src":"5012:6:101"},"nativeSrc":"5012:60:101","nodeType":"YulFunctionCall","src":"5012:60:101"},"nativeSrc":"5012:60:101","nodeType":"YulExpressionStatement","src":"5012:60:101"}]},"name":"abi_encode_tuple_t_enum$_NotificationKind_$29559_t_uint256_t_address_t_address__to_t_uint8_t_uint256_t_address_t_address__fromStack_reversed","nativeSrc":"4462:616:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4612:9:101","nodeType":"YulTypedName","src":"4612:9:101","type":""},{"name":"value3","nativeSrc":"4623:6:101","nodeType":"YulTypedName","src":"4623:6:101","type":""},{"name":"value2","nativeSrc":"4631:6:101","nodeType":"YulTypedName","src":"4631:6:101","type":""},{"name":"value1","nativeSrc":"4639:6:101","nodeType":"YulTypedName","src":"4639:6:101","type":""},{"name":"value0","nativeSrc":"4647:6:101","nodeType":"YulTypedName","src":"4647:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4658:4:101","nodeType":"YulTypedName","src":"4658:4:101","type":""}],"src":"4462:616:101"},{"body":{"nativeSrc":"5257:235:101","nodeType":"YulBlock","src":"5257:235:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5274:9:101","nodeType":"YulIdentifier","src":"5274:9:101"},{"kind":"number","nativeSrc":"5285:2:101","nodeType":"YulLiteral","src":"5285:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"5267:6:101","nodeType":"YulIdentifier","src":"5267:6:101"},"nativeSrc":"5267:21:101","nodeType":"YulFunctionCall","src":"5267:21:101"},"nativeSrc":"5267:21:101","nodeType":"YulExpressionStatement","src":"5267:21:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5308:9:101","nodeType":"YulIdentifier","src":"5308:9:101"},{"kind":"number","nativeSrc":"5319:2:101","nodeType":"YulLiteral","src":"5319:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5304:3:101","nodeType":"YulIdentifier","src":"5304:3:101"},"nativeSrc":"5304:18:101","nodeType":"YulFunctionCall","src":"5304:18:101"},{"kind":"number","nativeSrc":"5324:2:101","nodeType":"YulLiteral","src":"5324:2:101","type":"","value":"45"}],"functionName":{"name":"mstore","nativeSrc":"5297:6:101","nodeType":"YulIdentifier","src":"5297:6:101"},"nativeSrc":"5297:30:101","nodeType":"YulFunctionCall","src":"5297:30:101"},"nativeSrc":"5297:30:101","nodeType":"YulExpressionStatement","src":"5297:30:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5347:9:101","nodeType":"YulIdentifier","src":"5347:9:101"},{"kind":"number","nativeSrc":"5358:2:101","nodeType":"YulLiteral","src":"5358:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5343:3:101","nodeType":"YulIdentifier","src":"5343:3:101"},"nativeSrc":"5343:18:101","nodeType":"YulFunctionCall","src":"5343:18:101"},{"hexValue":"6f6e506f6c6963795265706c616365643a205468657920746f6c64206d652049","kind":"string","nativeSrc":"5363:34:101","nodeType":"YulLiteral","src":"5363:34:101","type":"","value":"onPolicyReplaced: They told me I"}],"functionName":{"name":"mstore","nativeSrc":"5336:6:101","nodeType":"YulIdentifier","src":"5336:6:101"},"nativeSrc":"5336:62:101","nodeType":"YulFunctionCall","src":"5336:62:101"},"nativeSrc":"5336:62:101","nodeType":"YulExpressionStatement","src":"5336:62:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5418:9:101","nodeType":"YulIdentifier","src":"5418:9:101"},{"kind":"number","nativeSrc":"5429:2:101","nodeType":"YulLiteral","src":"5429:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5414:3:101","nodeType":"YulIdentifier","src":"5414:3:101"},"nativeSrc":"5414:18:101","nodeType":"YulFunctionCall","src":"5414:18:101"},{"hexValue":"206861766520746f206661696c","kind":"string","nativeSrc":"5434:15:101","nodeType":"YulLiteral","src":"5434:15:101","type":"","value":" have to fail"}],"functionName":{"name":"mstore","nativeSrc":"5407:6:101","nodeType":"YulIdentifier","src":"5407:6:101"},"nativeSrc":"5407:43:101","nodeType":"YulFunctionCall","src":"5407:43:101"},"nativeSrc":"5407:43:101","nodeType":"YulExpressionStatement","src":"5407:43:101"},{"nativeSrc":"5459:27:101","nodeType":"YulAssignment","src":"5459:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5471:9:101","nodeType":"YulIdentifier","src":"5471:9:101"},{"kind":"number","nativeSrc":"5482:3:101","nodeType":"YulLiteral","src":"5482:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"5467:3:101","nodeType":"YulIdentifier","src":"5467:3:101"},"nativeSrc":"5467:19:101","nodeType":"YulFunctionCall","src":"5467:19:101"},"variableNames":[{"name":"tail","nativeSrc":"5459:4:101","nodeType":"YulIdentifier","src":"5459:4:101"}]}]},"name":"abi_encode_tuple_t_stringliteral_7ddfbdd1d4ac69255d0a55452a77fbdbf1242396b0bad9544763e87828ab15fb__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"5083:409:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5234:9:101","nodeType":"YulTypedName","src":"5234:9:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5248:4:101","nodeType":"YulTypedName","src":"5248:4:101","type":""}],"src":"5083:409:101"},{"body":{"nativeSrc":"5671:236:101","nodeType":"YulBlock","src":"5671:236:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5688:9:101","nodeType":"YulIdentifier","src":"5688:9:101"},{"kind":"number","nativeSrc":"5699:2:101","nodeType":"YulLiteral","src":"5699:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"5681:6:101","nodeType":"YulIdentifier","src":"5681:6:101"},"nativeSrc":"5681:21:101","nodeType":"YulFunctionCall","src":"5681:21:101"},"nativeSrc":"5681:21:101","nodeType":"YulExpressionStatement","src":"5681:21:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5722:9:101","nodeType":"YulIdentifier","src":"5722:9:101"},{"kind":"number","nativeSrc":"5733:2:101","nodeType":"YulLiteral","src":"5733:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5718:3:101","nodeType":"YulIdentifier","src":"5718:3:101"},"nativeSrc":"5718:18:101","nodeType":"YulFunctionCall","src":"5718:18:101"},{"kind":"number","nativeSrc":"5738:2:101","nodeType":"YulLiteral","src":"5738:2:101","type":"","value":"46"}],"functionName":{"name":"mstore","nativeSrc":"5711:6:101","nodeType":"YulIdentifier","src":"5711:6:101"},"nativeSrc":"5711:30:101","nodeType":"YulFunctionCall","src":"5711:30:101"},"nativeSrc":"5711:30:101","nodeType":"YulExpressionStatement","src":"5711:30:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5761:9:101","nodeType":"YulIdentifier","src":"5761:9:101"},{"kind":"number","nativeSrc":"5772:2:101","nodeType":"YulLiteral","src":"5772:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5757:3:101","nodeType":"YulIdentifier","src":"5757:3:101"},"nativeSrc":"5757:18:101","nodeType":"YulFunctionCall","src":"5757:18:101"},{"hexValue":"6f6e506f6c69637943616e63656c6c65643a205468657920746f6c64206d6520","kind":"string","nativeSrc":"5777:34:101","nodeType":"YulLiteral","src":"5777:34:101","type":"","value":"onPolicyCancelled: They told me "}],"functionName":{"name":"mstore","nativeSrc":"5750:6:101","nodeType":"YulIdentifier","src":"5750:6:101"},"nativeSrc":"5750:62:101","nodeType":"YulFunctionCall","src":"5750:62:101"},"nativeSrc":"5750:62:101","nodeType":"YulExpressionStatement","src":"5750:62:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5832:9:101","nodeType":"YulIdentifier","src":"5832:9:101"},{"kind":"number","nativeSrc":"5843:2:101","nodeType":"YulLiteral","src":"5843:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5828:3:101","nodeType":"YulIdentifier","src":"5828:3:101"},"nativeSrc":"5828:18:101","nodeType":"YulFunctionCall","src":"5828:18:101"},{"hexValue":"49206861766520746f206661696c","kind":"string","nativeSrc":"5848:16:101","nodeType":"YulLiteral","src":"5848:16:101","type":"","value":"I have to fail"}],"functionName":{"name":"mstore","nativeSrc":"5821:6:101","nodeType":"YulIdentifier","src":"5821:6:101"},"nativeSrc":"5821:44:101","nodeType":"YulFunctionCall","src":"5821:44:101"},"nativeSrc":"5821:44:101","nodeType":"YulExpressionStatement","src":"5821:44:101"},{"nativeSrc":"5874:27:101","nodeType":"YulAssignment","src":"5874:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5886:9:101","nodeType":"YulIdentifier","src":"5886:9:101"},{"kind":"number","nativeSrc":"5897:3:101","nodeType":"YulLiteral","src":"5897:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"5882:3:101","nodeType":"YulIdentifier","src":"5882:3:101"},"nativeSrc":"5882:19:101","nodeType":"YulFunctionCall","src":"5882:19:101"},"variableNames":[{"name":"tail","nativeSrc":"5874:4:101","nodeType":"YulIdentifier","src":"5874:4:101"}]}]},"name":"abi_encode_tuple_t_stringliteral_cafcf11cef247dfc7f6d14af31b85636a2a800b1462b08970c9283203a393627__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"5497:410:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5648:9:101","nodeType":"YulTypedName","src":"5648:9:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5662:4:101","nodeType":"YulTypedName","src":"5662:4:101","type":""}],"src":"5497:410:101"},{"body":{"nativeSrc":"6086:235:101","nodeType":"YulBlock","src":"6086:235:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6103:9:101","nodeType":"YulIdentifier","src":"6103:9:101"},{"kind":"number","nativeSrc":"6114:2:101","nodeType":"YulLiteral","src":"6114:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"6096:6:101","nodeType":"YulIdentifier","src":"6096:6:101"},"nativeSrc":"6096:21:101","nodeType":"YulFunctionCall","src":"6096:21:101"},"nativeSrc":"6096:21:101","nodeType":"YulExpressionStatement","src":"6096:21:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6137:9:101","nodeType":"YulIdentifier","src":"6137:9:101"},{"kind":"number","nativeSrc":"6148:2:101","nodeType":"YulLiteral","src":"6148:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6133:3:101","nodeType":"YulIdentifier","src":"6133:3:101"},"nativeSrc":"6133:18:101","nodeType":"YulFunctionCall","src":"6133:18:101"},{"kind":"number","nativeSrc":"6153:2:101","nodeType":"YulLiteral","src":"6153:2:101","type":"","value":"45"}],"functionName":{"name":"mstore","nativeSrc":"6126:6:101","nodeType":"YulIdentifier","src":"6126:6:101"},"nativeSrc":"6126:30:101","nodeType":"YulFunctionCall","src":"6126:30:101"},"nativeSrc":"6126:30:101","nodeType":"YulExpressionStatement","src":"6126:30:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6176:9:101","nodeType":"YulIdentifier","src":"6176:9:101"},{"kind":"number","nativeSrc":"6187:2:101","nodeType":"YulLiteral","src":"6187:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6172:3:101","nodeType":"YulIdentifier","src":"6172:3:101"},"nativeSrc":"6172:18:101","nodeType":"YulFunctionCall","src":"6172:18:101"},{"hexValue":"6f6e5061796f757452656365697665643a205468657920746f6c64206d652049","kind":"string","nativeSrc":"6192:34:101","nodeType":"YulLiteral","src":"6192:34:101","type":"","value":"onPayoutReceived: They told me I"}],"functionName":{"name":"mstore","nativeSrc":"6165:6:101","nodeType":"YulIdentifier","src":"6165:6:101"},"nativeSrc":"6165:62:101","nodeType":"YulFunctionCall","src":"6165:62:101"},"nativeSrc":"6165:62:101","nodeType":"YulExpressionStatement","src":"6165:62:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6247:9:101","nodeType":"YulIdentifier","src":"6247:9:101"},{"kind":"number","nativeSrc":"6258:2:101","nodeType":"YulLiteral","src":"6258:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"6243:3:101","nodeType":"YulIdentifier","src":"6243:3:101"},"nativeSrc":"6243:18:101","nodeType":"YulFunctionCall","src":"6243:18:101"},{"hexValue":"206861766520746f206661696c","kind":"string","nativeSrc":"6263:15:101","nodeType":"YulLiteral","src":"6263:15:101","type":"","value":" have to fail"}],"functionName":{"name":"mstore","nativeSrc":"6236:6:101","nodeType":"YulIdentifier","src":"6236:6:101"},"nativeSrc":"6236:43:101","nodeType":"YulFunctionCall","src":"6236:43:101"},"nativeSrc":"6236:43:101","nodeType":"YulExpressionStatement","src":"6236:43:101"},{"nativeSrc":"6288:27:101","nodeType":"YulAssignment","src":"6288:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6300:9:101","nodeType":"YulIdentifier","src":"6300:9:101"},{"kind":"number","nativeSrc":"6311:3:101","nodeType":"YulLiteral","src":"6311:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"6296:3:101","nodeType":"YulIdentifier","src":"6296:3:101"},"nativeSrc":"6296:19:101","nodeType":"YulFunctionCall","src":"6296:19:101"},"variableNames":[{"name":"tail","nativeSrc":"6288:4:101","nodeType":"YulIdentifier","src":"6288:4:101"}]}]},"name":"abi_encode_tuple_t_stringliteral_58698f5e11d9176307777359c7e820c4c719f9fb53f283df2e9b7afae0920593__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"5912:409:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6063:9:101","nodeType":"YulTypedName","src":"6063:9:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6077:4:101","nodeType":"YulTypedName","src":"6077:4:101","type":""}],"src":"5912:409:101"},{"body":{"nativeSrc":"6500:234:101","nodeType":"YulBlock","src":"6500:234:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6517:9:101","nodeType":"YulIdentifier","src":"6517:9:101"},{"kind":"number","nativeSrc":"6528:2:101","nodeType":"YulLiteral","src":"6528:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"6510:6:101","nodeType":"YulIdentifier","src":"6510:6:101"},"nativeSrc":"6510:21:101","nodeType":"YulFunctionCall","src":"6510:21:101"},"nativeSrc":"6510:21:101","nodeType":"YulExpressionStatement","src":"6510:21:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6551:9:101","nodeType":"YulIdentifier","src":"6551:9:101"},{"kind":"number","nativeSrc":"6562:2:101","nodeType":"YulLiteral","src":"6562:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6547:3:101","nodeType":"YulIdentifier","src":"6547:3:101"},"nativeSrc":"6547:18:101","nodeType":"YulFunctionCall","src":"6547:18:101"},{"kind":"number","nativeSrc":"6567:2:101","nodeType":"YulLiteral","src":"6567:2:101","type":"","value":"44"}],"functionName":{"name":"mstore","nativeSrc":"6540:6:101","nodeType":"YulIdentifier","src":"6540:6:101"},"nativeSrc":"6540:30:101","nodeType":"YulFunctionCall","src":"6540:30:101"},"nativeSrc":"6540:30:101","nodeType":"YulExpressionStatement","src":"6540:30:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6590:9:101","nodeType":"YulIdentifier","src":"6590:9:101"},{"kind":"number","nativeSrc":"6601:2:101","nodeType":"YulLiteral","src":"6601:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6586:3:101","nodeType":"YulIdentifier","src":"6586:3:101"},"nativeSrc":"6586:18:101","nodeType":"YulFunctionCall","src":"6586:18:101"},{"hexValue":"6f6e506f6c696379457870697265643a205468657920746f6c64206d65204920","kind":"string","nativeSrc":"6606:34:101","nodeType":"YulLiteral","src":"6606:34:101","type":"","value":"onPolicyExpired: They told me I "}],"functionName":{"name":"mstore","nativeSrc":"6579:6:101","nodeType":"YulIdentifier","src":"6579:6:101"},"nativeSrc":"6579:62:101","nodeType":"YulFunctionCall","src":"6579:62:101"},"nativeSrc":"6579:62:101","nodeType":"YulExpressionStatement","src":"6579:62:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6661:9:101","nodeType":"YulIdentifier","src":"6661:9:101"},{"kind":"number","nativeSrc":"6672:2:101","nodeType":"YulLiteral","src":"6672:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"6657:3:101","nodeType":"YulIdentifier","src":"6657:3:101"},"nativeSrc":"6657:18:101","nodeType":"YulFunctionCall","src":"6657:18:101"},{"hexValue":"6861766520746f206661696c","kind":"string","nativeSrc":"6677:14:101","nodeType":"YulLiteral","src":"6677:14:101","type":"","value":"have to fail"}],"functionName":{"name":"mstore","nativeSrc":"6650:6:101","nodeType":"YulIdentifier","src":"6650:6:101"},"nativeSrc":"6650:42:101","nodeType":"YulFunctionCall","src":"6650:42:101"},"nativeSrc":"6650:42:101","nodeType":"YulExpressionStatement","src":"6650:42:101"},{"nativeSrc":"6701:27:101","nodeType":"YulAssignment","src":"6701:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6713:9:101","nodeType":"YulIdentifier","src":"6713:9:101"},{"kind":"number","nativeSrc":"6724:3:101","nodeType":"YulLiteral","src":"6724:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"6709:3:101","nodeType":"YulIdentifier","src":"6709:3:101"},"nativeSrc":"6709:19:101","nodeType":"YulFunctionCall","src":"6709:19:101"},"variableNames":[{"name":"tail","nativeSrc":"6701:4:101","nodeType":"YulIdentifier","src":"6701:4:101"}]}]},"name":"abi_encode_tuple_t_stringliteral_66a42fcc0cb3a241433f702d08559d4868da600fb6c417c0d22bf3e4e199a226__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"6326:408:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6477:9:101","nodeType":"YulTypedName","src":"6477:9:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6491:4:101","nodeType":"YulTypedName","src":"6491:4:101","type":""}],"src":"6326:408:101"},{"body":{"nativeSrc":"6787:174:101","nodeType":"YulBlock","src":"6787:174:101","statements":[{"nativeSrc":"6797:16:101","nodeType":"YulAssignment","src":"6797:16:101","value":{"arguments":[{"name":"x","nativeSrc":"6808:1:101","nodeType":"YulIdentifier","src":"6808:1:101"},{"name":"y","nativeSrc":"6811:1:101","nodeType":"YulIdentifier","src":"6811:1:101"}],"functionName":{"name":"add","nativeSrc":"6804:3:101","nodeType":"YulIdentifier","src":"6804:3:101"},"nativeSrc":"6804:9:101","nodeType":"YulFunctionCall","src":"6804:9:101"},"variableNames":[{"name":"sum","nativeSrc":"6797:3:101","nodeType":"YulIdentifier","src":"6797:3:101"}]},{"body":{"nativeSrc":"6844:111:101","nodeType":"YulBlock","src":"6844:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6865:1:101","nodeType":"YulLiteral","src":"6865:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"6872:3:101","nodeType":"YulLiteral","src":"6872:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"6877:10:101","nodeType":"YulLiteral","src":"6877:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"6868:3:101","nodeType":"YulIdentifier","src":"6868:3:101"},"nativeSrc":"6868:20:101","nodeType":"YulFunctionCall","src":"6868:20:101"}],"functionName":{"name":"mstore","nativeSrc":"6858:6:101","nodeType":"YulIdentifier","src":"6858:6:101"},"nativeSrc":"6858:31:101","nodeType":"YulFunctionCall","src":"6858:31:101"},"nativeSrc":"6858:31:101","nodeType":"YulExpressionStatement","src":"6858:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6909:1:101","nodeType":"YulLiteral","src":"6909:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"6912:4:101","nodeType":"YulLiteral","src":"6912:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"6902:6:101","nodeType":"YulIdentifier","src":"6902:6:101"},"nativeSrc":"6902:15:101","nodeType":"YulFunctionCall","src":"6902:15:101"},"nativeSrc":"6902:15:101","nodeType":"YulExpressionStatement","src":"6902:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6937:1:101","nodeType":"YulLiteral","src":"6937:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6940:4:101","nodeType":"YulLiteral","src":"6940:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"6930:6:101","nodeType":"YulIdentifier","src":"6930:6:101"},"nativeSrc":"6930:15:101","nodeType":"YulFunctionCall","src":"6930:15:101"},"nativeSrc":"6930:15:101","nodeType":"YulExpressionStatement","src":"6930:15:101"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"6828:1:101","nodeType":"YulIdentifier","src":"6828:1:101"},{"name":"sum","nativeSrc":"6831:3:101","nodeType":"YulIdentifier","src":"6831:3:101"}],"functionName":{"name":"gt","nativeSrc":"6825:2:101","nodeType":"YulIdentifier","src":"6825:2:101"},"nativeSrc":"6825:10:101","nodeType":"YulFunctionCall","src":"6825:10:101"},"nativeSrc":"6822:133:101","nodeType":"YulIf","src":"6822:133:101"}]},"name":"checked_add_t_uint256","nativeSrc":"6739:222:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"6770:1:101","nodeType":"YulTypedName","src":"6770:1:101","type":""},{"name":"y","nativeSrc":"6773:1:101","nodeType":"YulTypedName","src":"6773:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"6779:3:101","nodeType":"YulTypedName","src":"6779:3:101","type":""}],"src":"6739:222:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\n        let offset := calldataload(add(headStart, 96))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        value3 := add(_1, 32)\n        value4 := length\n    }\n    function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, shl(224, 0xffffffff)))\n    }\n    function abi_decode_tuple_t_bool(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 96))\n        value3 := value_1\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 192) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 96))\n        value3 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 128))\n        value4 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 160))\n        value5 := value_3\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\n    }\n    function abi_encode_tuple_t_stringliteral_46ae0231b151a29cb76b0eb0bfc0feea3dce0b818e71e3685082cfa188eaf63d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 45)\n        mstore(add(headStart, 64), \"onERC721Received: They told me I\")\n        mstore(add(headStart, 96), \" have to fail\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_enum$_NotificationKind_$29559_t_uint256_t_address_t_address__to_t_uint8_t_uint256_t_address_t_address__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        if iszero(lt(value0, 5))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 96), and(value3, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_stringliteral_7ddfbdd1d4ac69255d0a55452a77fbdbf1242396b0bad9544763e87828ab15fb__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 45)\n        mstore(add(headStart, 64), \"onPolicyReplaced: They told me I\")\n        mstore(add(headStart, 96), \" have to fail\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_cafcf11cef247dfc7f6d14af31b85636a2a800b1462b08970c9283203a393627__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 46)\n        mstore(add(headStart, 64), \"onPolicyCancelled: They told me \")\n        mstore(add(headStart, 96), \"I have to fail\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_58698f5e11d9176307777359c7e820c4c719f9fb53f283df2e9b7afae0920593__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 45)\n        mstore(add(headStart, 64), \"onPayoutReceived: They told me I\")\n        mstore(add(headStart, 96), \" have to fail\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_66a42fcc0cb3a241433f702d08559d4868da600fb6c417c0d22bf3e4e199a226__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 44)\n        mstore(add(headStart, 64), \"onPolicyExpired: They told me I \")\n        mstore(add(headStart, 96), \"have to fail\")\n        tail := add(headStart, 128)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b5060043610610187575f3560e01c80639568ca0f116100d9578063c3af904e11610093578063d99ba4081161006e578063d99ba40814610421578063e8e617b714610435578063ee89ef3a14610448578063f57c302e14610450575f5ffd5b8063c3af904e146103e7578063cc6a6523146103fb578063d6281d3e1461040e575f5ffd5b80639568ca0f1461033b5780639d7694021461034d578063a9cc47181461036e578063aeec8f9d1461037b578063b8d6d18d146103a9578063bcce5399146103d3575f5ffd5b8063352870141161014457806362eb345e1161011f57806362eb345e146102ea57806363bd1d4a146102fd5780636db65619146103145780637806ce8114610328575f5ffd5b806335287014146102935780635177cd13146102a85780635ee0c7dd146102d7575f5ffd5b806301ffc9a71461018b578063150b7a02146101b3578063286ee351146101df5780632bb2adb3146102095780632fb643621461023757806331ca294414610267575b5f5ffd5b61019e6101993660046109a8565b610459565b60405190151581526020015b60405180910390f35b6101c66101c13660046109ea565b6104c0565b6040516001600160e01b031990911681526020016101aa565b6102076101ed366004610a7f565b600280549115156101000261ff0019909216919091179055565b005b610207610217366004610a7f565b60028054911515600160281b0265ff000000000019909216919091179055565b610207610245366004610a7f565b60028054911515600160381b0267ff0000000000000019909216919091179055565b610207610275366004610a7f565b6002805491151563010000000263ff00000019909216919091179055565b60025461019e90640100000000900460ff1681565b6102076102b6366004610a7f565b60028054911515600160301b0266ff00000000000019909216919091179055565b6101c66102e5366004610a9e565b6105b3565b6101c66102f8366004610add565b6106a8565b61030660015481565b6040519081526020016101aa565b60025461019e906301000000900460ff1681565b610207610336366004610b2e565b600355565b60025461019e90610100900460ff1681565b61020761035b366004610a7f565b6002805460ff1916911515919091179055565b60025461019e9060ff1681565b610207610389366004610a7f565b600280549115156401000000000264ff0000000019909216919091179055565b6102076103b7366004610a7f565b60028054911515620100000262ff000019909216919091179055565b60025461019e90600160381b900460ff1681565b60025461019e90600160281b900460ff1681565b60025461019e9062010000900460ff1681565b6101c661041c366004610a9e565b61079c565b60025461019e90600160301b900460ff1681565b6101c6610443366004610b45565b610888565b6103065f5481565b61030660035481565b6002545f90600160381b900460ff1615610471575f5ffd5b600254640100000000900460ff161561048b57505f919050565b6001600160e01b03198216630162fc8560e11b14806104ba57506001600160e01b031982166301ffc9a760e01b145b92915050565b6002545f9060ff1615610546576002546301000000900460ff16156104e3575f5ffd5b60405162461bcd60e51b815260206004820152602d60248201527f6f6e45524337323152656365697665643a205468657920746f6c64206d65204960448201526c081a185d99481d1bc819985a5b609a1b60648201526084015b60405180910390fd5b5f8481555f196001556040515f516020610be45f395f51905f52916105709187908a908a90610b7f565b60405180910390a1600254600160281b900460ff16156105985750630badf00d60e01b6105aa565b6105a0610974565b50630a85bd0160e11b5b95945050505050565b6002545f90610100900460ff1615610639576002546301000000900460ff16156105db575f5ffd5b60405162461bcd60e51b815260206004820152602d60248201527f6f6e506f6c6963795265706c616365643a205468657920746f6c64206d65204960448201526c081a185d99481d1bc819985a5b609a1b606482015260840161053d565b5f83905560018290556040515f516020610be45f395f51905f529061066690600390869089908990610b7f565b60405180910390a1600254600160301b900460ff161561068e5750630badf00d60e01b6106a0565b610696610974565b50635ee0c7dd60e01b5b949350505050565b6002545f9062010000900460ff1615610730576002546301000000900460ff16156106d1575f5ffd5b60405162461bcd60e51b815260206004820152602e60248201527f6f6e506f6c69637943616e63656c6c65643a205468657920746f6c64206d652060448201526d12481a185d99481d1bc819985a5b60921b606482015260840161053d565b5f8590556040515f516020610be45f395f51905f52906107589060049088908b908b90610b7f565b60405180910390a1600254600160301b900460ff16156107805750630badfeed60e01b610792565b610788610974565b506331759a2f60e11b5b9695505050505050565b6002545f9060ff161561081d576002546301000000900460ff16156107bf575f5ffd5b60405162461bcd60e51b815260206004820152602d60248201527f6f6e5061796f757452656365697665643a205468657920746f6c64206d65204960448201526c081a185d99481d1bc819985a5b609a1b606482015260840161053d565b5f83905560018281556040515f516020610be45f395f51905f529161084791869089908990610b7f565b60405180910390a1600254600160281b900460ff161561086f5750630badf00d60e01b6106a0565b610877610974565b50636b140e9f60e11b949350505050565b6002545f9060ff1615610908576002546301000000900460ff16156108ab575f5ffd5b60405162461bcd60e51b815260206004820152602c60248201527f6f6e506f6c696379457870697265643a205468657920746f6c64206d6520492060448201526b1a185d99481d1bc819985a5b60a21b606482015260840161053d565b5f8281556001556040515f516020610be45f395f51905f529061093390600290859088908890610b7f565b60405180910390a1600254600160281b900460ff161561095b5750630badf00d60e01b61096d565b610963610974565b5063e8e617b760e01b5b9392505050565b5f5b6003548110156109a55761098b816001610bc4565b61099c610999836064610bc4565b90565b55600101610976565b50565b5f602082840312156109b8575f5ffd5b81356001600160e01b03198116811461096d575f5ffd5b80356001600160a01b03811681146109e5575f5ffd5b919050565b5f5f5f5f5f608086880312156109fe575f5ffd5b610a07866109cf565b9450610a15602087016109cf565b935060408601359250606086013567ffffffffffffffff811115610a37575f5ffd5b8601601f81018813610a47575f5ffd5b803567ffffffffffffffff811115610a5d575f5ffd5b886020828401011115610a6e575f5ffd5b959894975092955050506020019190565b5f60208284031215610a8f575f5ffd5b8135801515811461096d575f5ffd5b5f5f5f5f60808587031215610ab1575f5ffd5b610aba856109cf565b9350610ac8602086016109cf565b93969395505050506040820135916060013590565b5f5f5f5f5f5f60c08789031215610af2575f5ffd5b610afb876109cf565b9550610b09602088016109cf565b95989597505050506040840135936060810135936080820135935060a0909101359150565b5f60208284031215610b3e575f5ffd5b5035919050565b5f5f5f60608486031215610b57575f5ffd5b610b60846109cf565b9250610b6e602085016109cf565b929592945050506040919091013590565b6080810160058610610b9f57634e487b7160e01b5f52602160045260245ffd5b94815260208101939093526001600160a01b0391821660408401521660609091015290565b808201808211156104ba57634e487b7160e01b5f52601160045260245ffdfecb6442f1752a34d49fd946725ee915eae9914b3fe3f3193b98232c772393e7c5a26469706673582212201e273d11c8e5e44dc3ff1411fab09eeed0fd5692370cb7a792decd8b3dd2c2fe64736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x187 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x9568CA0F GT PUSH2 0xD9 JUMPI DUP1 PUSH4 0xC3AF904E GT PUSH2 0x93 JUMPI DUP1 PUSH4 0xD99BA408 GT PUSH2 0x6E JUMPI DUP1 PUSH4 0xD99BA408 EQ PUSH2 0x421 JUMPI DUP1 PUSH4 0xE8E617B7 EQ PUSH2 0x435 JUMPI DUP1 PUSH4 0xEE89EF3A EQ PUSH2 0x448 JUMPI DUP1 PUSH4 0xF57C302E EQ PUSH2 0x450 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC3AF904E EQ PUSH2 0x3E7 JUMPI DUP1 PUSH4 0xCC6A6523 EQ PUSH2 0x3FB JUMPI DUP1 PUSH4 0xD6281D3E EQ PUSH2 0x40E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x9568CA0F EQ PUSH2 0x33B JUMPI DUP1 PUSH4 0x9D769402 EQ PUSH2 0x34D JUMPI DUP1 PUSH4 0xA9CC4718 EQ PUSH2 0x36E JUMPI DUP1 PUSH4 0xAEEC8F9D EQ PUSH2 0x37B JUMPI DUP1 PUSH4 0xB8D6D18D EQ PUSH2 0x3A9 JUMPI DUP1 PUSH4 0xBCCE5399 EQ PUSH2 0x3D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x35287014 GT PUSH2 0x144 JUMPI DUP1 PUSH4 0x62EB345E GT PUSH2 0x11F JUMPI DUP1 PUSH4 0x62EB345E EQ PUSH2 0x2EA JUMPI DUP1 PUSH4 0x63BD1D4A EQ PUSH2 0x2FD JUMPI DUP1 PUSH4 0x6DB65619 EQ PUSH2 0x314 JUMPI DUP1 PUSH4 0x7806CE81 EQ PUSH2 0x328 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x35287014 EQ PUSH2 0x293 JUMPI DUP1 PUSH4 0x5177CD13 EQ PUSH2 0x2A8 JUMPI DUP1 PUSH4 0x5EE0C7DD EQ PUSH2 0x2D7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x18B JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x1B3 JUMPI DUP1 PUSH4 0x286EE351 EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0x2BB2ADB3 EQ PUSH2 0x209 JUMPI DUP1 PUSH4 0x2FB64362 EQ PUSH2 0x237 JUMPI DUP1 PUSH4 0x31CA2944 EQ PUSH2 0x267 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x19E PUSH2 0x199 CALLDATASIZE PUSH1 0x4 PUSH2 0x9A8 JUMP JUMPDEST PUSH2 0x459 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1C6 PUSH2 0x1C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x9EA JUMP JUMPDEST PUSH2 0x4C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1AA JUMP JUMPDEST PUSH2 0x207 PUSH2 0x1ED CALLDATASIZE PUSH1 0x4 PUSH2 0xA7F JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD SWAP2 ISZERO ISZERO PUSH2 0x100 MUL PUSH2 0xFF00 NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x207 PUSH2 0x217 CALLDATASIZE PUSH1 0x4 PUSH2 0xA7F JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD SWAP2 ISZERO ISZERO PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH6 0xFF0000000000 NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x207 PUSH2 0x245 CALLDATASIZE PUSH1 0x4 PUSH2 0xA7F JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD SWAP2 ISZERO ISZERO PUSH1 0x1 PUSH1 0x38 SHL MUL PUSH8 0xFF00000000000000 NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x207 PUSH2 0x275 CALLDATASIZE PUSH1 0x4 PUSH2 0xA7F JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD SWAP2 ISZERO ISZERO PUSH4 0x1000000 MUL PUSH4 0xFF000000 NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x19E SWAP1 PUSH5 0x100000000 SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x207 PUSH2 0x2B6 CALLDATASIZE PUSH1 0x4 PUSH2 0xA7F JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD SWAP2 ISZERO ISZERO PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH7 0xFF000000000000 NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x1C6 PUSH2 0x2E5 CALLDATASIZE PUSH1 0x4 PUSH2 0xA9E JUMP JUMPDEST PUSH2 0x5B3 JUMP JUMPDEST PUSH2 0x1C6 PUSH2 0x2F8 CALLDATASIZE PUSH1 0x4 PUSH2 0xADD JUMP JUMPDEST PUSH2 0x6A8 JUMP JUMPDEST PUSH2 0x306 PUSH1 0x1 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1AA JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x19E SWAP1 PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x207 PUSH2 0x336 CALLDATASIZE PUSH1 0x4 PUSH2 0xB2E JUMP JUMPDEST PUSH1 0x3 SSTORE JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x19E SWAP1 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x207 PUSH2 0x35B CALLDATASIZE PUSH1 0x4 PUSH2 0xA7F JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x19E SWAP1 PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x207 PUSH2 0x389 CALLDATASIZE PUSH1 0x4 PUSH2 0xA7F JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD SWAP2 ISZERO ISZERO PUSH5 0x100000000 MUL PUSH5 0xFF00000000 NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x207 PUSH2 0x3B7 CALLDATASIZE PUSH1 0x4 PUSH2 0xA7F JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD SWAP2 ISZERO ISZERO PUSH3 0x10000 MUL PUSH3 0xFF0000 NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x19E SWAP1 PUSH1 0x1 PUSH1 0x38 SHL SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x19E SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x19E SWAP1 PUSH3 0x10000 SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x1C6 PUSH2 0x41C CALLDATASIZE PUSH1 0x4 PUSH2 0xA9E JUMP JUMPDEST PUSH2 0x79C JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x19E SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x1C6 PUSH2 0x443 CALLDATASIZE PUSH1 0x4 PUSH2 0xB45 JUMP JUMPDEST PUSH2 0x888 JUMP JUMPDEST PUSH2 0x306 PUSH0 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x306 PUSH1 0x3 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x38 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x471 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x2 SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x48B JUMPI POP PUSH0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x162FC85 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0x4BA JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH0 SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0x546 JUMPI PUSH1 0x2 SLOAD PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x4E3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6F6E45524337323152656365697665643A205468657920746F6C64206D652049 PUSH1 0x44 DUP3 ADD MSTORE PUSH13 0x81A185D99481D1BC819985A5B PUSH1 0x9A SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP5 DUP2 SSTORE PUSH0 NOT PUSH1 0x1 SSTORE PUSH1 0x40 MLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0xBE4 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x570 SWAP2 DUP8 SWAP1 DUP11 SWAP1 DUP11 SWAP1 PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x598 JUMPI POP PUSH4 0xBADF00D PUSH1 0xE0 SHL PUSH2 0x5AA JUMP JUMPDEST PUSH2 0x5A0 PUSH2 0x974 JUMP JUMPDEST POP PUSH4 0xA85BD01 PUSH1 0xE1 SHL JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH0 SWAP1 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x639 JUMPI PUSH1 0x2 SLOAD PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x5DB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6F6E506F6C6963795265706C616365643A205468657920746F6C64206D652049 PUSH1 0x44 DUP3 ADD MSTORE PUSH13 0x81A185D99481D1BC819985A5B PUSH1 0x9A SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x53D JUMP JUMPDEST PUSH0 DUP4 SWAP1 SSTORE PUSH1 0x1 DUP3 SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0xBE4 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH2 0x666 SWAP1 PUSH1 0x3 SWAP1 DUP7 SWAP1 DUP10 SWAP1 DUP10 SWAP1 PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x68E JUMPI POP PUSH4 0xBADF00D PUSH1 0xE0 SHL PUSH2 0x6A0 JUMP JUMPDEST PUSH2 0x696 PUSH2 0x974 JUMP JUMPDEST POP PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH0 SWAP1 PUSH3 0x10000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x730 JUMPI PUSH1 0x2 SLOAD PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x6D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6F6E506F6C69637943616E63656C6C65643A205468657920746F6C64206D6520 PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x12481A185D99481D1BC819985A5B PUSH1 0x92 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x53D JUMP JUMPDEST PUSH0 DUP6 SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0xBE4 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH2 0x758 SWAP1 PUSH1 0x4 SWAP1 DUP9 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x780 JUMPI POP PUSH4 0xBADFEED PUSH1 0xE0 SHL PUSH2 0x792 JUMP JUMPDEST PUSH2 0x788 PUSH2 0x974 JUMP JUMPDEST POP PUSH4 0x31759A2F PUSH1 0xE1 SHL JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH0 SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0x81D JUMPI PUSH1 0x2 SLOAD PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x7BF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6F6E5061796F757452656365697665643A205468657920746F6C64206D652049 PUSH1 0x44 DUP3 ADD MSTORE PUSH13 0x81A185D99481D1BC819985A5B PUSH1 0x9A SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x53D JUMP JUMPDEST PUSH0 DUP4 SWAP1 SSTORE PUSH1 0x1 DUP3 DUP2 SSTORE PUSH1 0x40 MLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0xBE4 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x847 SWAP2 DUP7 SWAP1 DUP10 SWAP1 DUP10 SWAP1 PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x86F JUMPI POP PUSH4 0xBADF00D PUSH1 0xE0 SHL PUSH2 0x6A0 JUMP JUMPDEST PUSH2 0x877 PUSH2 0x974 JUMP JUMPDEST POP PUSH4 0x6B140E9F PUSH1 0xE1 SHL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH0 SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0x908 JUMPI PUSH1 0x2 SLOAD PUSH4 0x1000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x8AB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6F6E506F6C696379457870697265643A205468657920746F6C64206D65204920 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x1A185D99481D1BC819985A5B PUSH1 0xA2 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x53D JUMP JUMPDEST PUSH0 DUP3 DUP2 SSTORE PUSH1 0x1 SSTORE PUSH1 0x40 MLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0xBE4 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH2 0x933 SWAP1 PUSH1 0x2 SWAP1 DUP6 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x95B JUMPI POP PUSH4 0xBADF00D PUSH1 0xE0 SHL PUSH2 0x96D JUMP JUMPDEST PUSH2 0x963 PUSH2 0x974 JUMP JUMPDEST POP PUSH4 0xE8E617B7 PUSH1 0xE0 SHL JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 JUMPDEST PUSH1 0x3 SLOAD DUP2 LT ISZERO PUSH2 0x9A5 JUMPI PUSH2 0x98B DUP2 PUSH1 0x1 PUSH2 0xBC4 JUMP JUMPDEST PUSH2 0x99C PUSH2 0x999 DUP4 PUSH1 0x64 PUSH2 0xBC4 JUMP JUMPDEST SWAP1 JUMP JUMPDEST SSTORE PUSH1 0x1 ADD PUSH2 0x976 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x9B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x96D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x9E5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x9FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xA07 DUP7 PUSH2 0x9CF JUMP JUMPDEST SWAP5 POP PUSH2 0xA15 PUSH1 0x20 DUP8 ADD PUSH2 0x9CF JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA37 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 ADD PUSH1 0x1F DUP2 ADD DUP9 SGT PUSH2 0xA47 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA5D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP9 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0xA6E JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP3 SWAP6 POP POP POP PUSH1 0x20 ADD SWAP2 SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA8F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x96D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xAB1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xABA DUP6 PUSH2 0x9CF JUMP JUMPDEST SWAP4 POP PUSH2 0xAC8 PUSH1 0x20 DUP7 ADD PUSH2 0x9CF JUMP JUMPDEST SWAP4 SWAP7 SWAP4 SWAP6 POP POP POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD SWAP2 PUSH1 0x60 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0xAF2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xAFB DUP8 PUSH2 0x9CF JUMP JUMPDEST SWAP6 POP PUSH2 0xB09 PUSH1 0x20 DUP9 ADD PUSH2 0x9CF JUMP JUMPDEST SWAP6 SWAP9 SWAP6 SWAP8 POP POP POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP4 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP4 PUSH1 0x80 DUP3 ADD CALLDATALOAD SWAP4 POP PUSH1 0xA0 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB3E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB57 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xB60 DUP5 PUSH2 0x9CF JUMP JUMPDEST SWAP3 POP PUSH2 0xB6E PUSH1 0x20 DUP6 ADD PUSH2 0x9CF JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x80 DUP2 ADD PUSH1 0x5 DUP7 LT PUSH2 0xB9F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP5 DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x40 DUP5 ADD MSTORE AND PUSH1 0x60 SWAP1 SWAP2 ADD MSTORE SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x4BA JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID 0xCB PUSH5 0x42F1752A34 0xD4 SWAP16 0xD9 CHAINID PUSH19 0x5EE915EAE9914B3FE3F3193B98232C772393E7 0xC5 LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x1E 0x27 RETURNDATASIZE GT 0xC8 JUMPF 0xE44D 0xC3 SELFDESTRUCT EQ GT STATICCALL 0xB0 SWAP15 RETURNCONTRACT 0xD0 REVERT JUMP SWAP3 CALLDATACOPY 0xC 0xB7 0xA7 SWAP3 0xDE 0xCD DUP12 RETURNDATASIZE 0xD2 0xC2 INVALID PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"375:5329:94:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2311:292;;;;;;:::i;:::-;;:::i;:::-;;;470:14:101;;463:22;445:41;;433:2;418:18;2311:292:94;;;;;;;;2607:586;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;1691:33:101;;;1673:52;;1661:2;1646:18;2607:586:94;1529:202:101;1238:89:94;;;;;;:::i;:::-;1296:11;:26;;;;;;;-1:-1:-1;;1296:26:94;;;;;;;;;1238:89;;;1629:109;;;;;;:::i;:::-;1697:16;:36;;;;;-1:-1:-1;;;1697:36:94;-1:-1:-1;;1697:36:94;;;;;;;;;1629:109;1883:77;;;;;;:::i;:::-;1935:8;:20;;;;;-1:-1:-1;;;1935:20:94;-1:-1:-1;;1935:20:94;;;;;;;;;1883:77;1964:89;;;;;;:::i;:::-;2022:11;:26;;;;;;;-1:-1:-1;;2022:26:94;;;;;;;;;1964:89;580:26;;;;;;;;;;;;1742:137;;;;;;:::i;:::-;1824:23;:50;;;;;-1:-1:-1;;;1824:50:94;-1:-1:-1;;1824:50:94;;;;;;;;;1742:137;4428:602;;;;;;:::i;:::-;;:::i;5034:668::-;;;;;;:::i;:::-;;:::i;449:21::-;;;;;;;;;3402:25:101;;;3390:2;3375:18;449:21:94;3256:177:101;553:23:94;;;;;;;;;;;;1420:100;;;;;;:::i;:::-;1485:13;:30;1420:100;494:23;;;;;;;;;;;;1173:61;;;;;;:::i;:::-;1217:4;:12;;-1:-1:-1;;1217:12:94;;;;;;;;;;1173:61;474:16;;;;;;;;;1524:101;;;;;;:::i;:::-;1588:14;:32;;;;;;;-1:-1:-1;;1588:32:94;;;;;;;;;1524:101;1331:85;;;;;;:::i;:::-;1387:16;:24;;;;;;;-1:-1:-1;;1387:24:94;;;;;;;;;1331:85;681:20;;;;;-1:-1:-1;;;681:20:94;;;;;;610:28;;;;;-1:-1:-1;;;610:28:94;;;;;;521;;;;;;;;;;;;3790:572;;;;;;:::i;:::-;;:::i;642:35::-;;;;;-1:-1:-1;;;642:35:94;;;;;;3197:527;;;;;;:::i;:::-;;:::i;422:23::-;;;;;;705:28;;;;;;2311:292;2403:8;;2387:4;;-1:-1:-1;;;2403:8:94;;;;2399:59;;;2448:1;;2438:12;2428:30;2467:14;;;;;;;2463:32;;;-1:-1:-1;2490:5:94;;2311:292;-1:-1:-1;2311:292:94:o;2463:32::-;-1:-1:-1;;;;;;2508:46:94;;-1:-1:-1;;;2508:46:94;;:90;;-1:-1:-1;;;;;;;2558:40:94;;-1:-1:-1;;;2558:40:94;2508:90;2501:97;2311:292;-1:-1:-1;;2311:292:94:o;2607:586::-;2765:4;;2747:6;;2765:4;;2761:151;;;2781:11;;;;;;;2777:135;;;2833:1;;2823:12;2811:34;2857:55;;-1:-1:-1;;;2857:55:94;;4250:2:101;2857:55:94;;;4232:21:101;4289:2;4269:18;;;4262:30;4328:34;4308:18;;;4301:62;-1:-1:-1;;;4379:18:101;;;4372:43;4432:19;;2857:55:94;;;;;;;;2777:135;2919:8;:20;;;-1:-1:-1;;2945:6:94;:26;2982:80;;-1:-1:-1;;;;;;;;;;;2982:80:94;;;2930:9;;3047:8;;3057:4;;2982:80;:::i;:::-;;;;;;;;3073:16;;-1:-1:-1;;;3073:16:94;;;;3069:47;;;-1:-1:-1;;;;3091:25:94;;3069:47;3123:10;:8;:10::i;:::-;-1:-1:-1;;;;2607:586:94;;;;;;;;:::o;4428:602::-;4593:11;;4575:6;;4593:11;;;;;4589:158;;;4616:11;;;;;;;4612:135;;;4668:1;;4658:12;4646:34;4692:55;;-1:-1:-1;;;4692:55:94;;5285:2:101;4692:55:94;;;5267:21:101;5324:2;5304:18;;;5297:30;5363:34;5343:18;;;5336:62;-1:-1:-1;;;5414:18:101;;;5407:43;5467:19;;4692:55:94;5083:409:101;4612:135:94;4753:8;:22;;;4781:6;:20;;;4812:82;;-1:-1:-1;;;;;;;;;;;4812:82:94;;;4833:31;;4764:11;;4879:8;;4889:4;;4812:82;:::i;:::-;;;;;;;;4905:23;;-1:-1:-1;;;4905:23:94;;;;4901:54;;;-1:-1:-1;;;;4930:25:94;;4901:54;4962:10;:8;:10::i;:::-;-1:-1:-1;;;;4428:602:94;;;;;;;:::o;5034:668::-;5271:16;;5253:6;;5271:16;;;;;5267:164;;;5299:11;;;;;;;5295:136;;;5351:1;;5341:12;5329:34;5375:56;;-1:-1:-1;;;5375:56:94;;5699:2:101;5375:56:94;;;5681:21:101;5738:2;5718:18;;;5711:30;5777:34;5757:18;;;5750:62;-1:-1:-1;;;5828:18:101;;;5821:44;5882:19;;5375:56:94;5497:410:101;5295:136:94;5437:8;:28;;;5476:89;;-1:-1:-1;;;;;;;;;;;5476:89:94;;;5497:32;;5448:17;;5550:8;;5560:4;;5476:89;:::i;:::-;;;;;;;;5576:23;;-1:-1:-1;;;5576:23:94;;;;5572:54;;;-1:-1:-1;;;;5601:25:94;;5572:54;5633:10;:8;:10::i;:::-;-1:-1:-1;;;;5034:668:94;;;;;;;;;:::o;3790:572::-;3948:4;;3930:6;;3948:4;;3944:151;;;3964:11;;;;;;;3960:135;;;4016:1;;4006:12;3994:34;4040:55;;-1:-1:-1;;;4040:55:94;;6114:2:101;4040:55:94;;;6096:21:101;6153:2;6133:18;;;6126:30;6192:34;6172:18;;;6165:62;-1:-1:-1;;;6243:18:101;;;6236:43;6296:19;;4040:55:94;5912:409:101;3960:135:94;4101:8;:20;;;4127:6;:15;;;4153:80;;-1:-1:-1;;;;;;;;;;;4153:80:94;;;4112:9;;4218:8;;4228:4;;4153:80;:::i;:::-;;;;;;;;4244:16;;-1:-1:-1;;;4244:16:94;;;;4240:47;;;-1:-1:-1;;;;4262:25:94;;4240:47;4294:10;:8;:10::i;:::-;-1:-1:-1;;;;3790:572:94;;;;;;:::o;3197:527::-;3318:4;;3300:6;;3318:4;;3314:150;;;3334:11;;;;;;;3330:134;;;3386:1;;3376:12;3364:34;3410:54;;-1:-1:-1;;;3410:54:94;;6528:2:101;3410:54:94;;;6510:21:101;6567:2;6547:18;;;6540:30;6606:34;6586:18;;;6579:62;-1:-1:-1;;;6657:18:101;;;6650:42;6709:19;;3410:54:94;6326:408:101;3330:134:94;3470:8;:20;;;3496:6;:10;3517:79;;-1:-1:-1;;;;;;;;;;;3517:79:94;;;3538:30;;3481:9;;3581:8;;3591:4;;3517:79;:::i;:::-;;;;;;;;3607:16;;-1:-1:-1;;;3607:16:94;;;;3603:47;;;-1:-1:-1;;;;3625:25:94;;3603:47;3657:10;:8;:10::i;:::-;-1:-1:-1;;;;3197:527:94;;;;;;:::o;2057:195::-;2136:9;2131:117;2155:13;;2151:1;:17;2131:117;;;2236:5;:1;2240;2236:5;:::i;:::-;2183:44;2218:7;2224:1;2218:3;:7;:::i;:::-;2822:4:55;2679:163;2183:44:94;:58;2170:3;;2131:117;;;;2057:195::o;14:286:101:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:101;;209:43;;199:71;;266:1;263;256:12;497:173;565:20;;-1:-1:-1;;;;;614:31:101;;604:42;;594:70;;660:1;657;650:12;594:70;497:173;;;:::o;675:849::-;772:6;780;788;796;804;857:3;845:9;836:7;832:23;828:33;825:53;;;874:1;871;864:12;825:53;897:29;916:9;897:29;:::i;:::-;887:39;;945:38;979:2;968:9;964:18;945:38;:::i;:::-;935:48;-1:-1:-1;1052:2:101;1037:18;;1024:32;;-1:-1:-1;1131:2:101;1116:18;;1103:32;1158:18;1147:30;;1144:50;;;1190:1;1187;1180:12;1144:50;1213:22;;1266:4;1258:13;;1254:27;-1:-1:-1;1244:55:101;;1295:1;1292;1285:12;1244:55;1335:2;1322:16;1361:18;1353:6;1350:30;1347:50;;;1393:1;1390;1383:12;1347:50;1438:7;1433:2;1424:6;1420:2;1416:15;1412:24;1409:37;1406:57;;;1459:1;1456;1449:12;1406:57;675:849;;;;-1:-1:-1;675:849:101;;-1:-1:-1;;;1490:2:101;1482:11;;1512:6;675:849::o;1736:273::-;1792:6;1845:2;1833:9;1824:7;1820:23;1816:32;1813:52;;;1861:1;1858;1851:12;1813:52;1900:9;1887:23;1953:5;1946:13;1939:21;1932:5;1929:32;1919:60;;1975:1;1972;1965:12;2014:495;2100:6;2108;2116;2124;2177:3;2165:9;2156:7;2152:23;2148:33;2145:53;;;2194:1;2191;2184:12;2145:53;2217:29;2236:9;2217:29;:::i;:::-;2207:39;;2265:38;2299:2;2288:9;2284:18;2265:38;:::i;:::-;2014:495;;2255:48;;-1:-1:-1;;;;2372:2:101;2357:18;;2344:32;;2473:2;2458:18;2445:32;;2014:495::o;2514:737::-;2618:6;2626;2634;2642;2650;2658;2711:3;2699:9;2690:7;2686:23;2682:33;2679:53;;;2728:1;2725;2718:12;2679:53;2751:29;2770:9;2751:29;:::i;:::-;2741:39;;2799:38;2833:2;2822:9;2818:18;2799:38;:::i;:::-;2514:737;;2789:48;;-1:-1:-1;;;;2906:2:101;2891:18;;2878:32;;3007:2;2992:18;;2979:32;;3110:3;3095:19;;3082:33;;-1:-1:-1;3214:3:101;3199:19;;;3186:33;;-1:-1:-1;2514:737:101:o;3438:226::-;3497:6;3550:2;3538:9;3529:7;3525:23;3521:32;3518:52;;;3566:1;3563;3556:12;3518:52;-1:-1:-1;3611:23:101;;3438:226;-1:-1:-1;3438:226:101:o;3669:374::-;3746:6;3754;3762;3815:2;3803:9;3794:7;3790:23;3786:32;3783:52;;;3831:1;3828;3821:12;3783:52;3854:29;3873:9;3854:29;:::i;:::-;3844:39;;3902:38;3936:2;3925:9;3921:18;3902:38;:::i;:::-;3669:374;;3892:48;;-1:-1:-1;;;4009:2:101;3994:18;;;;3981:32;;3669:374::o;4462:616::-;4700:3;4685:19;;4734:1;4723:13;;4713:144;;4779:10;4774:3;4770:20;4767:1;4760:31;4814:4;4811:1;4804:15;4842:4;4839:1;4832:15;4713:144;4866:25;;;4922:2;4907:18;;4900:34;;;;-1:-1:-1;;;;;4970:32:101;;;4965:2;4950:18;;4943:60;5039:32;5034:2;5019:18;;;5012:60;4462:616;:::o;6739:222::-;6804:9;;;6825:10;;;6822:133;;;6877:10;6872:3;6868:20;6865:1;6858:31;6912:4;6909:1;6902:15;6940:4;6937:1;6930:15"},"methodIdentifiers":{"badlyImplemented()":"c3af904e","badlyImplementedReplace()":"d99ba408","emptyRevert()":"6db65619","fail()":"a9cc4718","failCancellation()":"cc6a6523","failReplace()":"9568ca0f","noERC165()":"bcce5399","notImplemented()":"35287014","onERC721Received(address,address,uint256,bytes)":"150b7a02","onPayoutReceived(address,address,uint256,uint256)":"d6281d3e","onPolicyCancelled(address,address,uint256,uint256,uint256,uint256)":"62eb345e","onPolicyExpired(address,address,uint256)":"e8e617b7","onPolicyReplaced(address,address,uint256,uint256)":"5ee0c7dd","payout()":"63bd1d4a","policyId()":"ee89ef3a","setBadlyImplemented(bool)":"2bb2adb3","setBadlyImplementedReplace(bool)":"5177cd13","setEmptyRevert(bool)":"31ca2944","setFail(bool)":"9d769402","setFailCancellation(bool)":"b8d6d18d","setFailReplace(bool)":"286ee351","setNoERC165(bool)":"2fb64362","setNotImplemented(bool)":"aeec8f9d","setSpendGasCount(uint256)":"7806ce81","spendGasCount()":"f57c302e","supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"enum PolicyHolderMock.NotificationKind\",\"name\":\"kind\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"}],\"name\":\"NotificationReceived\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"badlyImplemented\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"badlyImplementedReplace\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"emptyRevert\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"fail\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"failCancellation\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"failReplace\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"noERC165\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"notImplemented\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"policyId_\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"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\":\"policyId_\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"onPayoutReceived\",\"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\":\"cancelledPolicyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"onPolicyCancelled\",\"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\":\"policyId_\",\"type\":\"uint256\"}],\"name\":\"onPolicyExpired\",\"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\":\"oldPolicyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"newPolicyId\",\"type\":\"uint256\"}],\"name\":\"onPolicyReplaced\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"payout\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"badlyImplemented_\",\"type\":\"bool\"}],\"name\":\"setBadlyImplemented\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"badlyImplementedReplace_\",\"type\":\"bool\"}],\"name\":\"setBadlyImplementedReplace\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"emptyRevert_\",\"type\":\"bool\"}],\"name\":\"setEmptyRevert\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"fail_\",\"type\":\"bool\"}],\"name\":\"setFail\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"fail_\",\"type\":\"bool\"}],\"name\":\"setFailCancellation\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"failReplace_\",\"type\":\"bool\"}],\"name\":\"setFailReplace\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"noERC165_\",\"type\":\"bool\"}],\"name\":\"setNoERC165\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"notImplemented_\",\"type\":\"bool\"}],\"name\":\"setNotImplemented\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"spendGasCount_\",\"type\":\"uint256\"}],\"name\":\"setSpendGasCount\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"spendGasCount\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"onPayoutReceived(address,address,uint256,uint256)\":{\"details\":\"See {IPolicyHolderV2-onPayoutReceived}.\"},\"onPolicyReplaced(address,address,uint256,uint256)\":{\"details\":\"See {IPolicyHolderV2-onPolicyReplaced}.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/mocks/PolicyHolderMock.sol\":\"PolicyHolderMock\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0x88cd5e3bee2e8c36b8d9058fbcaa81ad5704281b25634122234b55ea853d8055\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8dc7e7ab5b8ea36c15027ab04221b05d1c970f47a53e9fd47ead8ca665d49c7e\",\"dweb:/ipfs/Qmeeph7fsDyfRr8vb2L8KcDEmKPb224TAayMvgqgGAnqpL\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"contracts/interfaces/IPolicyHolder.sol\":{\"keccak256\":\"0xedfdb90379573eaab3213424a517042dd7f015cdb4ee734859609a019275797e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://321e424f1c9afd92e0cb38e4131ce30aaf7df551388b6d1d1abe60ea9dcd0e8a\",\"dweb:/ipfs/QmfFraGLbyy67ugA373JcZfPf7J34uzMHXbyBjoH9enWsK\"]},\"contracts/mocks/PolicyHolderMock.sol\":{\"keccak256\":\"0x45bb3ad07b193bc0a225db1a363d58df975e5413b83936188bd69473004adb96\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://43c16004e73a16544625c8d1feaa88e023dbceda456347fd56b836f7fabdccca\",\"dweb:/ipfs/QmThvcs26PxGKStZgrM6JCacLuPPhubaS2tezxPpmaB79t\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":29533,"contract":"contracts/mocks/PolicyHolderMock.sol:PolicyHolderMock","label":"policyId","offset":0,"slot":"0","type":"t_uint256"},{"astId":29535,"contract":"contracts/mocks/PolicyHolderMock.sol:PolicyHolderMock","label":"payout","offset":0,"slot":"1","type":"t_uint256"},{"astId":29537,"contract":"contracts/mocks/PolicyHolderMock.sol:PolicyHolderMock","label":"fail","offset":0,"slot":"2","type":"t_bool"},{"astId":29539,"contract":"contracts/mocks/PolicyHolderMock.sol:PolicyHolderMock","label":"failReplace","offset":1,"slot":"2","type":"t_bool"},{"astId":29541,"contract":"contracts/mocks/PolicyHolderMock.sol:PolicyHolderMock","label":"failCancellation","offset":2,"slot":"2","type":"t_bool"},{"astId":29543,"contract":"contracts/mocks/PolicyHolderMock.sol:PolicyHolderMock","label":"emptyRevert","offset":3,"slot":"2","type":"t_bool"},{"astId":29545,"contract":"contracts/mocks/PolicyHolderMock.sol:PolicyHolderMock","label":"notImplemented","offset":4,"slot":"2","type":"t_bool"},{"astId":29547,"contract":"contracts/mocks/PolicyHolderMock.sol:PolicyHolderMock","label":"badlyImplemented","offset":5,"slot":"2","type":"t_bool"},{"astId":29549,"contract":"contracts/mocks/PolicyHolderMock.sol:PolicyHolderMock","label":"badlyImplementedReplace","offset":6,"slot":"2","type":"t_bool"},{"astId":29551,"contract":"contracts/mocks/PolicyHolderMock.sol:PolicyHolderMock","label":"noERC165","offset":7,"slot":"2","type":"t_bool"},{"astId":29553,"contract":"contracts/mocks/PolicyHolderMock.sol:PolicyHolderMock","label":"spendGasCount","offset":0,"slot":"3","type":"t_uint256"}],"types":{"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"contracts/mocks/PolicyPoolComponentMock.sol":{"PolicyPoolComponentMock":{"abi":[{"inputs":[{"internalType":"contract IPolicyPool","name":"policyPool_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_30056":{"entryPoint":null,"id":30056,"parameterSlots":1,"returnSlots":0},"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory":{"entryPoint":59,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:327:101","nodeType":"YulBlock","src":"0:327:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"116:209:101","nodeType":"YulBlock","src":"116:209:101","statements":[{"body":{"nativeSrc":"162:16:101","nodeType":"YulBlock","src":"162:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"171:1:101","nodeType":"YulLiteral","src":"171:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"174:1:101","nodeType":"YulLiteral","src":"174:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"164:6:101","nodeType":"YulIdentifier","src":"164:6:101"},"nativeSrc":"164:12:101","nodeType":"YulFunctionCall","src":"164:12:101"},"nativeSrc":"164:12:101","nodeType":"YulExpressionStatement","src":"164:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"137:7:101","nodeType":"YulIdentifier","src":"137:7:101"},{"name":"headStart","nativeSrc":"146:9:101","nodeType":"YulIdentifier","src":"146:9:101"}],"functionName":{"name":"sub","nativeSrc":"133:3:101","nodeType":"YulIdentifier","src":"133:3:101"},"nativeSrc":"133:23:101","nodeType":"YulFunctionCall","src":"133:23:101"},{"kind":"number","nativeSrc":"158:2:101","nodeType":"YulLiteral","src":"158:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"129:3:101","nodeType":"YulIdentifier","src":"129:3:101"},"nativeSrc":"129:32:101","nodeType":"YulFunctionCall","src":"129:32:101"},"nativeSrc":"126:52:101","nodeType":"YulIf","src":"126:52:101"},{"nativeSrc":"187:29:101","nodeType":"YulVariableDeclaration","src":"187:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"206:9:101","nodeType":"YulIdentifier","src":"206:9:101"}],"functionName":{"name":"mload","nativeSrc":"200:5:101","nodeType":"YulIdentifier","src":"200:5:101"},"nativeSrc":"200:16:101","nodeType":"YulFunctionCall","src":"200:16:101"},"variables":[{"name":"value","nativeSrc":"191:5:101","nodeType":"YulTypedName","src":"191:5:101","type":""}]},{"body":{"nativeSrc":"279:16:101","nodeType":"YulBlock","src":"279:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"288:1:101","nodeType":"YulLiteral","src":"288:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"291:1:101","nodeType":"YulLiteral","src":"291:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"281:6:101","nodeType":"YulIdentifier","src":"281:6:101"},"nativeSrc":"281:12:101","nodeType":"YulFunctionCall","src":"281:12:101"},"nativeSrc":"281:12:101","nodeType":"YulExpressionStatement","src":"281:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"238:5:101","nodeType":"YulIdentifier","src":"238:5:101"},{"arguments":[{"name":"value","nativeSrc":"249:5:101","nodeType":"YulIdentifier","src":"249:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"264:3:101","nodeType":"YulLiteral","src":"264:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"269:1:101","nodeType":"YulLiteral","src":"269:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"260:3:101","nodeType":"YulIdentifier","src":"260:3:101"},"nativeSrc":"260:11:101","nodeType":"YulFunctionCall","src":"260:11:101"},{"kind":"number","nativeSrc":"273:1:101","nodeType":"YulLiteral","src":"273:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"256:3:101","nodeType":"YulIdentifier","src":"256:3:101"},"nativeSrc":"256:19:101","nodeType":"YulFunctionCall","src":"256:19:101"}],"functionName":{"name":"and","nativeSrc":"245:3:101","nodeType":"YulIdentifier","src":"245:3:101"},"nativeSrc":"245:31:101","nodeType":"YulFunctionCall","src":"245:31:101"}],"functionName":{"name":"eq","nativeSrc":"235:2:101","nodeType":"YulIdentifier","src":"235:2:101"},"nativeSrc":"235:42:101","nodeType":"YulFunctionCall","src":"235:42:101"}],"functionName":{"name":"iszero","nativeSrc":"228:6:101","nodeType":"YulIdentifier","src":"228:6:101"},"nativeSrc":"228:50:101","nodeType":"YulFunctionCall","src":"228:50:101"},"nativeSrc":"225:70:101","nodeType":"YulIf","src":"225:70:101"},{"nativeSrc":"304:15:101","nodeType":"YulAssignment","src":"304:15:101","value":{"name":"value","nativeSrc":"314:5:101","nodeType":"YulIdentifier","src":"314:5:101"},"variableNames":[{"name":"value0","nativeSrc":"304:6:101","nodeType":"YulIdentifier","src":"304:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory","nativeSrc":"14:311:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"82:9:101","nodeType":"YulTypedName","src":"82:9:101","type":""},{"name":"dataEnd","nativeSrc":"93:7:101","nodeType":"YulTypedName","src":"93:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"105:6:101","nodeType":"YulTypedName","src":"105:6:101","type":""}],"src":"14:311:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60a0604052348015600e575f5ffd5b506040516101a23803806101a2833981016040819052602b91603b565b6001600160a01b03166080526066565b5f60208284031215604a575f5ffd5b81516001600160a01b0381168114605f575f5ffd5b9392505050565b60805161012561007d5f395f606501526101255ff3fe6080604052348015600e575f5ffd5b50600436106030575f3560e01c806301ffc9a71460345780634d15eb03146058575b5f5ffd5b6043603f36600460c3565b608e565b60405190151581526020015b60405180910390f35b6040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602001604f565b5f6001600160e01b031982166301ffc9a760e01b148060bd57506001600160e01b03198216634d15eb0360e01b145b92915050565b5f6020828403121560d2575f5ffd5b81356001600160e01b03198116811460e8575f5ffd5b939250505056fea26469706673582212203681283fcb04752f01f7485e16f92e6f83d1f00a6d219828e6629f378602106264736f6c634300081e0033","opcodes":"PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x1A2 CODESIZE SUB DUP1 PUSH2 0x1A2 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH1 0x2B SWAP2 PUSH1 0x3B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 MSTORE PUSH1 0x66 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH1 0x4A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH1 0x5F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH2 0x125 PUSH2 0x7D PUSH0 CODECOPY PUSH0 PUSH1 0x65 ADD MSTORE PUSH2 0x125 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x30 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1FFC9A7 EQ PUSH1 0x34 JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH1 0x58 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x43 PUSH1 0x3F CALLDATASIZE PUSH1 0x4 PUSH1 0xC3 JUMP JUMPDEST PUSH1 0x8E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4F JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH1 0xBD JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH1 0xD2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH1 0xE8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLDATASIZE DUP2 0x28 EXTCODEHASH 0xCB DIV PUSH22 0x2F01F7485E16F92E6F83D1F00A6D219828E6629F3786 MUL LT PUSH3 0x64736F PUSH13 0x634300081E0033000000000000 ","sourceMap":"283:548:95:-:0;;;391:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;434:25:95;;;283:548;;14:311:101;105:6;158:2;146:9;137:7;133:23;129:32;126:52;;;174:1;171;164:12;126:52;200:16;;-1:-1:-1;;;;;245:31:101;;235:42;;225:70;;291:1;288;281:12;225:70;314:5;14:311;-1:-1:-1;;;14:311:101:o;:::-;283:548:95;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@policyPool_30066":{"entryPoint":null,"id":30066,"parameterSlots":0,"returnSlots":1},"@supportsInterface_30090":{"entryPoint":142,"id":30090,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":195,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:723:101","nodeType":"YulBlock","src":"0:723:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"83:217:101","nodeType":"YulBlock","src":"83:217:101","statements":[{"body":{"nativeSrc":"129:16:101","nodeType":"YulBlock","src":"129:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"138:1:101","nodeType":"YulLiteral","src":"138:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"141:1:101","nodeType":"YulLiteral","src":"141:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"131:6:101","nodeType":"YulIdentifier","src":"131:6:101"},"nativeSrc":"131:12:101","nodeType":"YulFunctionCall","src":"131:12:101"},"nativeSrc":"131:12:101","nodeType":"YulExpressionStatement","src":"131:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"104:7:101","nodeType":"YulIdentifier","src":"104:7:101"},{"name":"headStart","nativeSrc":"113:9:101","nodeType":"YulIdentifier","src":"113:9:101"}],"functionName":{"name":"sub","nativeSrc":"100:3:101","nodeType":"YulIdentifier","src":"100:3:101"},"nativeSrc":"100:23:101","nodeType":"YulFunctionCall","src":"100:23:101"},{"kind":"number","nativeSrc":"125:2:101","nodeType":"YulLiteral","src":"125:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"96:3:101","nodeType":"YulIdentifier","src":"96:3:101"},"nativeSrc":"96:32:101","nodeType":"YulFunctionCall","src":"96:32:101"},"nativeSrc":"93:52:101","nodeType":"YulIf","src":"93:52:101"},{"nativeSrc":"154:36:101","nodeType":"YulVariableDeclaration","src":"154:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"180:9:101","nodeType":"YulIdentifier","src":"180:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"167:12:101","nodeType":"YulIdentifier","src":"167:12:101"},"nativeSrc":"167:23:101","nodeType":"YulFunctionCall","src":"167:23:101"},"variables":[{"name":"value","nativeSrc":"158:5:101","nodeType":"YulTypedName","src":"158:5:101","type":""}]},{"body":{"nativeSrc":"254:16:101","nodeType":"YulBlock","src":"254:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:101","nodeType":"YulLiteral","src":"263:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:101","nodeType":"YulLiteral","src":"266:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:101","nodeType":"YulIdentifier","src":"256:6:101"},"nativeSrc":"256:12:101","nodeType":"YulFunctionCall","src":"256:12:101"},"nativeSrc":"256:12:101","nodeType":"YulExpressionStatement","src":"256:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"212:5:101","nodeType":"YulIdentifier","src":"212:5:101"},{"arguments":[{"name":"value","nativeSrc":"223:5:101","nodeType":"YulIdentifier","src":"223:5:101"},{"arguments":[{"kind":"number","nativeSrc":"234:3:101","nodeType":"YulLiteral","src":"234:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"239:10:101","nodeType":"YulLiteral","src":"239:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"230:3:101","nodeType":"YulIdentifier","src":"230:3:101"},"nativeSrc":"230:20:101","nodeType":"YulFunctionCall","src":"230:20:101"}],"functionName":{"name":"and","nativeSrc":"219:3:101","nodeType":"YulIdentifier","src":"219:3:101"},"nativeSrc":"219:32:101","nodeType":"YulFunctionCall","src":"219:32:101"}],"functionName":{"name":"eq","nativeSrc":"209:2:101","nodeType":"YulIdentifier","src":"209:2:101"},"nativeSrc":"209:43:101","nodeType":"YulFunctionCall","src":"209:43:101"}],"functionName":{"name":"iszero","nativeSrc":"202:6:101","nodeType":"YulIdentifier","src":"202:6:101"},"nativeSrc":"202:51:101","nodeType":"YulFunctionCall","src":"202:51:101"},"nativeSrc":"199:71:101","nodeType":"YulIf","src":"199:71:101"},{"nativeSrc":"279:15:101","nodeType":"YulAssignment","src":"279:15:101","value":{"name":"value","nativeSrc":"289:5:101","nodeType":"YulIdentifier","src":"289:5:101"},"variableNames":[{"name":"value0","nativeSrc":"279:6:101","nodeType":"YulIdentifier","src":"279:6:101"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14:286:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"49:9:101","nodeType":"YulTypedName","src":"49:9:101","type":""},{"name":"dataEnd","nativeSrc":"60:7:101","nodeType":"YulTypedName","src":"60:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"72:6:101","nodeType":"YulTypedName","src":"72:6:101","type":""}],"src":"14:286:101"},{"body":{"nativeSrc":"400:92:101","nodeType":"YulBlock","src":"400:92:101","statements":[{"nativeSrc":"410:26:101","nodeType":"YulAssignment","src":"410:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:101","nodeType":"YulIdentifier","src":"422:9:101"},{"kind":"number","nativeSrc":"433:2:101","nodeType":"YulLiteral","src":"433:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"418:3:101","nodeType":"YulIdentifier","src":"418:3:101"},"nativeSrc":"418:18:101","nodeType":"YulFunctionCall","src":"418:18:101"},"variableNames":[{"name":"tail","nativeSrc":"410:4:101","nodeType":"YulIdentifier","src":"410:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"452:9:101","nodeType":"YulIdentifier","src":"452:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"477:6:101","nodeType":"YulIdentifier","src":"477:6:101"}],"functionName":{"name":"iszero","nativeSrc":"470:6:101","nodeType":"YulIdentifier","src":"470:6:101"},"nativeSrc":"470:14:101","nodeType":"YulFunctionCall","src":"470:14:101"}],"functionName":{"name":"iszero","nativeSrc":"463:6:101","nodeType":"YulIdentifier","src":"463:6:101"},"nativeSrc":"463:22:101","nodeType":"YulFunctionCall","src":"463:22:101"}],"functionName":{"name":"mstore","nativeSrc":"445:6:101","nodeType":"YulIdentifier","src":"445:6:101"},"nativeSrc":"445:41:101","nodeType":"YulFunctionCall","src":"445:41:101"},"nativeSrc":"445:41:101","nodeType":"YulExpressionStatement","src":"445:41:101"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"305:187:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"369:9:101","nodeType":"YulTypedName","src":"369:9:101","type":""},{"name":"value0","nativeSrc":"380:6:101","nodeType":"YulTypedName","src":"380:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"391:4:101","nodeType":"YulTypedName","src":"391:4:101","type":""}],"src":"305:187:101"},{"body":{"nativeSrc":"619:102:101","nodeType":"YulBlock","src":"619:102:101","statements":[{"nativeSrc":"629:26:101","nodeType":"YulAssignment","src":"629:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"641:9:101","nodeType":"YulIdentifier","src":"641:9:101"},{"kind":"number","nativeSrc":"652:2:101","nodeType":"YulLiteral","src":"652:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"637:3:101","nodeType":"YulIdentifier","src":"637:3:101"},"nativeSrc":"637:18:101","nodeType":"YulFunctionCall","src":"637:18:101"},"variableNames":[{"name":"tail","nativeSrc":"629:4:101","nodeType":"YulIdentifier","src":"629:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"671:9:101","nodeType":"YulIdentifier","src":"671:9:101"},{"arguments":[{"name":"value0","nativeSrc":"686:6:101","nodeType":"YulIdentifier","src":"686:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"702:3:101","nodeType":"YulLiteral","src":"702:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"707:1:101","nodeType":"YulLiteral","src":"707:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"698:3:101","nodeType":"YulIdentifier","src":"698:3:101"},"nativeSrc":"698:11:101","nodeType":"YulFunctionCall","src":"698:11:101"},{"kind":"number","nativeSrc":"711:1:101","nodeType":"YulLiteral","src":"711:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"694:3:101","nodeType":"YulIdentifier","src":"694:3:101"},"nativeSrc":"694:19:101","nodeType":"YulFunctionCall","src":"694:19:101"}],"functionName":{"name":"and","nativeSrc":"682:3:101","nodeType":"YulIdentifier","src":"682:3:101"},"nativeSrc":"682:32:101","nodeType":"YulFunctionCall","src":"682:32:101"}],"functionName":{"name":"mstore","nativeSrc":"664:6:101","nodeType":"YulIdentifier","src":"664:6:101"},"nativeSrc":"664:51:101","nodeType":"YulFunctionCall","src":"664:51:101"},"nativeSrc":"664:51:101","nodeType":"YulExpressionStatement","src":"664:51:101"}]},"name":"abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed","nativeSrc":"497:224:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"588:9:101","nodeType":"YulTypedName","src":"588:9:101","type":""},{"name":"value0","nativeSrc":"599:6:101","nodeType":"YulTypedName","src":"599:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"610:4:101","nodeType":"YulTypedName","src":"610:4:101","type":""}],"src":"497:224:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"30045":[{"length":32,"start":101}]},"linkReferences":{},"object":"6080604052348015600e575f5ffd5b50600436106030575f3560e01c806301ffc9a71460345780634d15eb03146058575b5f5ffd5b6043603f36600460c3565b608e565b60405190151581526020015b60405180910390f35b6040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602001604f565b5f6001600160e01b031982166301ffc9a760e01b148060bd57506001600160e01b03198216634d15eb0360e01b145b92915050565b5f6020828403121560d2575f5ffd5b81356001600160e01b03198116811460e8575f5ffd5b939250505056fea26469706673582212203681283fcb04752f01f7485e16f92e6f83d1f00a6d219828e6629f378602106264736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x30 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1FFC9A7 EQ PUSH1 0x34 JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH1 0x58 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x43 PUSH1 0x3F CALLDATASIZE PUSH1 0x4 PUSH1 0xC3 JUMP JUMPDEST PUSH1 0x8E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4F JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH1 0xBD JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH1 0xD2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH1 0xE8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLDATASIZE DUP2 0x28 EXTCODEHASH 0xCB DIV PUSH22 0x2F01F7485E16F92E6F83D1F00A6D219828E6629F3786 MUL LT PUSH3 0x64736F PUSH13 0x634300081E0033000000000000 ","sourceMap":"283:548:95:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;623:206;;;;;;:::i;:::-;;:::i;:::-;;;470:14:101;;463:22;445:41;;433:2;418:18;623:206:95;;;;;;;;468:96;;;-1:-1:-1;;;;;548:11:95;682:32:101;664:51;;652:2;637:18;468:96:95;497:224:101;623:206:95;708:4;-1:-1:-1;;;;;;727:40:95;;-1:-1:-1;;;727:40:95;;:97;;-1:-1:-1;;;;;;;771:53:95;;-1:-1:-1;;;771:53:95;727:97;720:104;623:206;-1:-1:-1;;623:206:95:o;14:286:101:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:101;;209:43;;199:71;;266:1;263;256:12;199:71;289:5;14:286;-1:-1:-1;;;14:286:101:o"},"methodIdentifiers":{"policyPool()":"4d15eb03","supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"policyPool_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"policyPool()\":{\"notice\":\"Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/mocks/PolicyPoolComponentMock.sol\":\"PolicyPoolComponentMock\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]},\"contracts/mocks/PolicyPoolComponentMock.sol\":{\"keccak256\":\"0xc28020c854a2ea830e18c4f1e00586270aef851b0e4c274919dfaf116088c618\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://442e742705c246bc37bd4f662018bc2c63e41e2d3d30738d737bbbc236b54924\",\"dweb:/ipfs/QmWdVPuJir7oYCeSSU9P92dyfM3zFRFdtEDHdPBy9oFYYL\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/mocks/PolicyPoolMock.sol":{"PolicyPoolMock":{"abi":[{"inputs":[{"internalType":"contract IERC20Metadata","name":"currency_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"PremiumExceedsPayout","type":"error"},{"inputs":[{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"minPremium","type":"uint256"}],"name":"PremiumLessThanMinimum","type":"error"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"ZeroHash","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"indexed":false,"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"NewPolicy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"indexed":true,"internalType":"uint256","name":"cancelledPolicyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"name":"PolicyCancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"indexed":true,"internalType":"uint256","name":"oldPolicyId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newPolicyId","type":"uint256"}],"name":"PolicyReplaced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"indexed":true,"internalType":"uint256","name":"policyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"payout","type":"uint256"}],"name":"PolicyResolved","type":"event"},{"inputs":[],"name":"MAX_INT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policyToCancel","type":"tuple"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"name":"cancelPolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"depositWithPermit","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"expirePolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"extractRiskModule","outputs":[{"internalType":"contract IRiskModule","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"getPolicyHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"moc","type":"uint256"},{"internalType":"uint256","name":"jrCollRatio","type":"uint256"},{"internalType":"uint256","name":"collRatio","type":"uint256"},{"internalType":"uint256","name":"ensuroPpFee","type":"uint256"},{"internalType":"uint256","name":"ensuroCocFee","type":"uint256"},{"internalType":"uint256","name":"jrRoc","type":"uint256"},{"internalType":"uint256","name":"srRoc","type":"uint256"}],"internalType":"struct Policy.Params","name":"rmParams","type":"tuple"},{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"uint40","name":"start","type":"uint40"}],"name":"initializeAndEmitPolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint96","name":"internalId","type":"uint96"}],"name":"newPolicy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"oldPolicy","type":"tuple"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"newPolicy_","type":"tuple"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint96","name":"internalId","type":"uint96"}],"name":"replacePolicy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"resolvePolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_30137":{"entryPoint":null,"id":30137,"parameterSlots":1,"returnSlots":0},"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory":{"entryPoint":78,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:329:101","nodeType":"YulBlock","src":"0:329:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"118:209:101","nodeType":"YulBlock","src":"118:209:101","statements":[{"body":{"nativeSrc":"164:16:101","nodeType":"YulBlock","src":"164:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"173:1:101","nodeType":"YulLiteral","src":"173:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"176:1:101","nodeType":"YulLiteral","src":"176:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"166:6:101","nodeType":"YulIdentifier","src":"166:6:101"},"nativeSrc":"166:12:101","nodeType":"YulFunctionCall","src":"166:12:101"},"nativeSrc":"166:12:101","nodeType":"YulExpressionStatement","src":"166:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"139:7:101","nodeType":"YulIdentifier","src":"139:7:101"},{"name":"headStart","nativeSrc":"148:9:101","nodeType":"YulIdentifier","src":"148:9:101"}],"functionName":{"name":"sub","nativeSrc":"135:3:101","nodeType":"YulIdentifier","src":"135:3:101"},"nativeSrc":"135:23:101","nodeType":"YulFunctionCall","src":"135:23:101"},{"kind":"number","nativeSrc":"160:2:101","nodeType":"YulLiteral","src":"160:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"131:3:101","nodeType":"YulIdentifier","src":"131:3:101"},"nativeSrc":"131:32:101","nodeType":"YulFunctionCall","src":"131:32:101"},"nativeSrc":"128:52:101","nodeType":"YulIf","src":"128:52:101"},{"nativeSrc":"189:29:101","nodeType":"YulVariableDeclaration","src":"189:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"208:9:101","nodeType":"YulIdentifier","src":"208:9:101"}],"functionName":{"name":"mload","nativeSrc":"202:5:101","nodeType":"YulIdentifier","src":"202:5:101"},"nativeSrc":"202:16:101","nodeType":"YulFunctionCall","src":"202:16:101"},"variables":[{"name":"value","nativeSrc":"193:5:101","nodeType":"YulTypedName","src":"193:5:101","type":""}]},{"body":{"nativeSrc":"281:16:101","nodeType":"YulBlock","src":"281:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"290:1:101","nodeType":"YulLiteral","src":"290:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"293:1:101","nodeType":"YulLiteral","src":"293:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"283:6:101","nodeType":"YulIdentifier","src":"283:6:101"},"nativeSrc":"283:12:101","nodeType":"YulFunctionCall","src":"283:12:101"},"nativeSrc":"283:12:101","nodeType":"YulExpressionStatement","src":"283:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"240:5:101","nodeType":"YulIdentifier","src":"240:5:101"},{"arguments":[{"name":"value","nativeSrc":"251:5:101","nodeType":"YulIdentifier","src":"251:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"266:3:101","nodeType":"YulLiteral","src":"266:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"271:1:101","nodeType":"YulLiteral","src":"271:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"262:3:101","nodeType":"YulIdentifier","src":"262:3:101"},"nativeSrc":"262:11:101","nodeType":"YulFunctionCall","src":"262:11:101"},{"kind":"number","nativeSrc":"275:1:101","nodeType":"YulLiteral","src":"275:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"258:3:101","nodeType":"YulIdentifier","src":"258:3:101"},"nativeSrc":"258:19:101","nodeType":"YulFunctionCall","src":"258:19:101"}],"functionName":{"name":"and","nativeSrc":"247:3:101","nodeType":"YulIdentifier","src":"247:3:101"},"nativeSrc":"247:31:101","nodeType":"YulFunctionCall","src":"247:31:101"}],"functionName":{"name":"eq","nativeSrc":"237:2:101","nodeType":"YulIdentifier","src":"237:2:101"},"nativeSrc":"237:42:101","nodeType":"YulFunctionCall","src":"237:42:101"}],"functionName":{"name":"iszero","nativeSrc":"230:6:101","nodeType":"YulIdentifier","src":"230:6:101"},"nativeSrc":"230:50:101","nodeType":"YulFunctionCall","src":"230:50:101"},"nativeSrc":"227:70:101","nodeType":"YulIf","src":"227:70:101"},{"nativeSrc":"306:15:101","nodeType":"YulAssignment","src":"306:15:101","value":{"name":"value","nativeSrc":"316:5:101","nodeType":"YulIdentifier","src":"316:5:101"},"variableNames":[{"name":"value0","nativeSrc":"306:6:101","nodeType":"YulIdentifier","src":"306:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory","nativeSrc":"14:313:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"84:9:101","nodeType":"YulTypedName","src":"84:9:101","type":""},{"name":"dataEnd","nativeSrc":"95:7:101","nodeType":"YulTypedName","src":"95:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"107:6:101","nodeType":"YulTypedName","src":"107:6:101","type":""}],"src":"14:313:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"6080604052348015600e575f5ffd5b5060405161110c38038061110c833981016040819052602b91604e565b5f80546001600160a01b0319166001600160a01b03929092169190911790556079565b5f60208284031215605d575f5ffd5b81516001600160a01b03811681146072575f5ffd5b9392505050565b611086806100865f395ff3fe608060405234801561000f575f5ffd5b50600436106100f0575f3560e01c806382afd23b11610093578063dfcd412e11610063578063dfcd412e14610202578063e5a6b10f14610215578063f45346dc14610225578063f720bbbf14610233575f5ffd5b806382afd23b14610197578063ab55daea146101c8578063bd644c56146101dc578063de27010a146101ef575f5ffd5b806361d027b3116100ce57806361d027b314610137578063663d8337146101515780636f520b7314610164578063792da09e14610178575f5ffd5b8063098d3228146100f45780630c0aab9d1461010f5780630d100acb14610124575b5f5ffd5b6100fc5f1981565b6040519081526020015b60405180910390f35b61012261011d366004610b37565b610246565b005b6100fc610132366004610cb6565b6102b4565b5f5b6040516001600160a01b039091168152602001610106565b6100fc61015f366004610d10565b61032d565b610122610172366004610d5e565b50505050565b6100fc610186366004610d99565b5f9081526002602052604090205490565b6101b86101a5366004610d99565b5f90815260026020526040902054151590565b6040519015158152602001610106565b6101396101d6366004610d99565b60601c90565b6101226101ea366004610dc1565b6103d7565b6101226101fd366004610dec565b6103f3565b6100fc610210366004610e5d565b610440565b5f546001600160a01b0316610139565b6101226101fd366004610ead565b610122610241366004610eec565b61048a565b5f610268878787878764ffffffffff88161561026257876104a5565b426104a5565b90505f6001600160a01b03167f988ac1a1c4820f963124b6fa0394627ad4fa3de7583a76399b998c1d7e43af3f826040516102a39190610f07565b60405180910390a250505050505050565b5f6102cb6001600160601b0383163360601b610fc1565b85526102d6856105ac565b85515f9081526002602052604090819020919091555133907f988ac1a1c4820f963124b6fa0394627ad4fa3de7583a76399b998c1d7e43af3f9061031b908890610f07565b60405180910390a25050915192915050565b5f6103446001600160601b0383163360601b610fc1565b845261034f846105ac565b84515f90815260026020526040908190209190915551339081907f988ac1a1c4820f963124b6fa0394627ad4fa3de7583a76399b998c1d7e43af3f90610396908890610f07565b60405180910390a28451865160405133907f4ff4ac703cb703b7ea535d47e65e64b4cabf11b3e2eb41f152dab17971953add905f90a4505091519392505050565b6103ef6103e936849003840184610fda565b826105fe565b5050565b60405162461bcd60e51b815260206004820152601760248201527f4e6f7420496d706c656d656e746564206465706f73697400000000000000000060448201526064015b60405180910390fd5b60405162461bcd60e51b815260206004820152601860248201527f4e6f7420496d706c656d656e746564207769746864726177000000000000000060448201525f90606401610437565b6104a261049c36839003830183610fda565b5f6105fe565b50565b6104ad610a56565b85858082106104d85760405163319308d960e11b815260048101929092526024820152604401610437565b50506104e2610a56565b602081018690526080810185905264ffffffffff80841661014083015284166101608201525f610515898888888861074e565b805160a0808501919091526020820151604080860191909152820151606080860191909152820151610100850152608082015161012085015281015160c084015260e081015190915088908181111561058a5760405163fc09662760e01b815260048101929092526024820152604401610437565b505060e081015161059b9089610ff5565b60e083015250979650505050505050565b5f816040516020016105be9190610f07565b60408051601f198184030181529190528051602090910120905081816105f857604051636ee9f64760e01b81526004016104379190610f07565b50919050565b81515f036106415760405162461bcd60e51b815260206004820152601060248201526f141bdb1a58de481b9bdd08199bdd5b9960821b6044820152606401610437565b81515f9081526002602052604090205461065a836105ac565b1461069c5760405162461bcd60e51b8152602060048201526012602482015271090c2e6d040c8decae6dc4ee840dac2e8c6d60731b6044820152606401610437565b81515f908152600160208181526040808420848155928301849055600280840185905560038401859055600484018590556005840185905560068401859055600784018590556008840185905560098401859055600a909301805469ffffffffffffffffffff19169055855184529181528183209290925583519051838152909133917f54f4a270ea08f88dc23b2520d6b063fecb24d956c4496f447926d736338f545e910160405180910390a35050565b61078e6040518061010001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b85516107af90670de0b6b3a76400006107a8888883610978565b9190610978565b815260208601516107ca908690670de0b6b3a7640000610978565b60208201819052815110156107f45780516020820180516107ec908390610ff5565b9052506107fb565b5f60208201525b6040860151610814908690670de0b6b3a7640000610978565b60408201526020810151815161082a9190610fc1565b8160400151111561085f57602081015181516108469190610fc1565b816040018181516108579190610ff5565b905250610866565b5f60408201525b6108ab6108738385611008565b64ffffffffff168760a001516108899190611025565b61089f6301e13380670de0b6b3a7640000611025565b60208401519190610978565b60608201526108f56108bd8385611008565b64ffffffffff168760c001516108d39190611025565b6108e96301e13380670de0b6b3a7640000611025565b60408401519190610978565b6080820181905260608201515f9161090c91610fc1565b6080880151909150610928908290670de0b6b3a7640000610978565b6060880151835161094191670de0b6b3a7640000610978565b61094b9190610fc1565b60a083018190528251829161095f91610fc1565b6109699190610fc1565b60e08301525095945050505050565b5f5f5f6109858686610a29565b91509150815f036109a95783818161099f5761099f61103c565b0492505050610a22565b8184116109c0576109c06003851502601118610a45565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150505b9392505050565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b6040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b60405160e0810167ffffffffffffffff81118282101715610ae857634e487b7160e01b5f52604160045260245ffd5b60405290565b604051610180810167ffffffffffffffff81118282101715610ae857634e487b7160e01b5f52604160045260245ffd5b803564ffffffffff81168114610b32575f5ffd5b919050565b5f5f5f5f5f5f868803610180811215610b4e575f5ffd5b60e0811215610b5b575f5ffd5b50610b64610ab9565b873581526020808901359082015260408089013590820152606080890135908201526080808901359082015260a0808901359082015260c08089013590820152955060e0870135945061010087013593506101208701359250610bca6101408801610b1e565b9150610bd96101608801610b1e565b90509295509295509295565b5f6101808284031215610bf6575f5ffd5b610bfe610aee565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e08084013590820152610100808401359082015261012080840135908201529050610c6d6101408301610b1e565b610140820152610c806101608301610b1e565b61016082015292915050565b6001600160a01b03811681146104a2575f5ffd5b80356001600160601b0381168114610b32575f5ffd5b5f5f5f5f6101e08587031215610cca575f5ffd5b610cd48686610be5565b9350610180850135610ce581610c8c565b92506101a0850135610cf681610c8c565b9150610d056101c08601610ca0565b905092959194509250565b5f5f5f5f6103408587031215610d24575f5ffd5b610d2e8686610be5565b9350610d3e866101808701610be5565b9250610300850135610d4f81610c8c565b9150610d056103208601610ca0565b5f5f5f5f6101e08587031215610d72575f5ffd5b610d7c8686610be5565b9661018086013596506101a0860135956101c00135945092505050565b5f60208284031215610da9575f5ffd5b5035919050565b5f61018082840312156105f8575f5ffd5b5f5f6101a08385031215610dd3575f5ffd5b610ddd8484610db0565b94610180939093013593505050565b5f5f5f5f5f5f5f60e0888a031215610e02575f5ffd5b8735610e0d81610c8c565b9650602088013595506040880135610e2481610c8c565b945060608801359350608088013560ff81168114610e40575f5ffd5b9699959850939692959460a0840135945060c09093013592915050565b5f5f5f5f60808587031215610e70575f5ffd5b8435610e7b81610c8c565b9350602085013592506040850135610e9281610c8c565b91506060850135610ea281610c8c565b939692955090935050565b5f5f5f60608486031215610ebf575f5ffd5b8335610eca81610c8c565b9250602084013591506040840135610ee181610c8c565b809150509250925092565b5f6101808284031215610efd575f5ffd5b610a228383610db0565b5f61018082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e083015160e0830152610100830151610100830152610120830151610120830152610140830151610f8b61014084018264ffffffffff169052565b50610160830151610fa661016084018264ffffffffff169052565b5092915050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610fd457610fd4610fad565b92915050565b5f6101808284031215610feb575f5ffd5b610a228383610be5565b81810381811115610fd457610fd4610fad565b64ffffffffff8281168282160390811115610fd457610fd4610fad565b8082028115828204841417610fd457610fd4610fad565b634e487b7160e01b5f52601260045260245ffdfea2646970667358221220fc94ce456b11482c8dc8ba0d4489c34b97cd2d24acaed776f6d703503704818a64736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x110C CODESIZE SUB DUP1 PUSH2 0x110C DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH1 0x2B SWAP2 PUSH1 0x4E JUMP JUMPDEST PUSH0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x79 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH1 0x5D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH1 0x72 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1086 DUP1 PUSH2 0x86 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xF0 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x82AFD23B GT PUSH2 0x93 JUMPI DUP1 PUSH4 0xDFCD412E GT PUSH2 0x63 JUMPI DUP1 PUSH4 0xDFCD412E EQ PUSH2 0x202 JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x215 JUMPI DUP1 PUSH4 0xF45346DC EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0xF720BBBF EQ PUSH2 0x233 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x82AFD23B EQ PUSH2 0x197 JUMPI DUP1 PUSH4 0xAB55DAEA EQ PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xBD644C56 EQ PUSH2 0x1DC JUMPI DUP1 PUSH4 0xDE27010A EQ PUSH2 0x1EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x61D027B3 GT PUSH2 0xCE JUMPI DUP1 PUSH4 0x61D027B3 EQ PUSH2 0x137 JUMPI DUP1 PUSH4 0x663D8337 EQ PUSH2 0x151 JUMPI DUP1 PUSH4 0x6F520B73 EQ PUSH2 0x164 JUMPI DUP1 PUSH4 0x792DA09E EQ PUSH2 0x178 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x98D3228 EQ PUSH2 0xF4 JUMPI DUP1 PUSH4 0xC0AAB9D EQ PUSH2 0x10F JUMPI DUP1 PUSH4 0xD100ACB EQ PUSH2 0x124 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xFC PUSH0 NOT DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x122 PUSH2 0x11D CALLDATASIZE PUSH1 0x4 PUSH2 0xB37 JUMP JUMPDEST PUSH2 0x246 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFC PUSH2 0x132 CALLDATASIZE PUSH1 0x4 PUSH2 0xCB6 JUMP JUMPDEST PUSH2 0x2B4 JUMP JUMPDEST PUSH0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x106 JUMP JUMPDEST PUSH2 0xFC PUSH2 0x15F CALLDATASIZE PUSH1 0x4 PUSH2 0xD10 JUMP JUMPDEST PUSH2 0x32D JUMP JUMPDEST PUSH2 0x122 PUSH2 0x172 CALLDATASIZE PUSH1 0x4 PUSH2 0xD5E JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0xFC PUSH2 0x186 CALLDATASIZE PUSH1 0x4 PUSH2 0xD99 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x1B8 PUSH2 0x1A5 CALLDATASIZE PUSH1 0x4 PUSH2 0xD99 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x106 JUMP JUMPDEST PUSH2 0x139 PUSH2 0x1D6 CALLDATASIZE PUSH1 0x4 PUSH2 0xD99 JUMP JUMPDEST PUSH1 0x60 SHR SWAP1 JUMP JUMPDEST PUSH2 0x122 PUSH2 0x1EA CALLDATASIZE PUSH1 0x4 PUSH2 0xDC1 JUMP JUMPDEST PUSH2 0x3D7 JUMP JUMPDEST PUSH2 0x122 PUSH2 0x1FD CALLDATASIZE PUSH1 0x4 PUSH2 0xDEC JUMP JUMPDEST PUSH2 0x3F3 JUMP JUMPDEST PUSH2 0xFC PUSH2 0x210 CALLDATASIZE PUSH1 0x4 PUSH2 0xE5D JUMP JUMPDEST PUSH2 0x440 JUMP JUMPDEST PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x139 JUMP JUMPDEST PUSH2 0x122 PUSH2 0x1FD CALLDATASIZE PUSH1 0x4 PUSH2 0xEAD JUMP JUMPDEST PUSH2 0x122 PUSH2 0x241 CALLDATASIZE PUSH1 0x4 PUSH2 0xEEC JUMP JUMPDEST PUSH2 0x48A JUMP JUMPDEST PUSH0 PUSH2 0x268 DUP8 DUP8 DUP8 DUP8 DUP8 PUSH5 0xFFFFFFFFFF DUP9 AND ISZERO PUSH2 0x262 JUMPI DUP8 PUSH2 0x4A5 JUMP JUMPDEST TIMESTAMP PUSH2 0x4A5 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x988AC1A1C4820F963124B6FA0394627AD4FA3DE7583A76399B998C1D7E43AF3F DUP3 PUSH1 0x40 MLOAD PUSH2 0x2A3 SWAP2 SWAP1 PUSH2 0xF07 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2CB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP4 AND CALLER PUSH1 0x60 SHL PUSH2 0xFC1 JUMP JUMPDEST DUP6 MSTORE PUSH2 0x2D6 DUP6 PUSH2 0x5AC JUMP JUMPDEST DUP6 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE MLOAD CALLER SWAP1 PUSH32 0x988AC1A1C4820F963124B6FA0394627AD4FA3DE7583A76399B998C1D7E43AF3F SWAP1 PUSH2 0x31B SWAP1 DUP9 SWAP1 PUSH2 0xF07 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP SWAP2 MLOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x344 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP4 AND CALLER PUSH1 0x60 SHL PUSH2 0xFC1 JUMP JUMPDEST DUP5 MSTORE PUSH2 0x34F DUP5 PUSH2 0x5AC JUMP JUMPDEST DUP5 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE MLOAD CALLER SWAP1 DUP2 SWAP1 PUSH32 0x988AC1A1C4820F963124B6FA0394627AD4FA3DE7583A76399B998C1D7E43AF3F SWAP1 PUSH2 0x396 SWAP1 DUP9 SWAP1 PUSH2 0xF07 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP5 MLOAD DUP7 MLOAD PUSH1 0x40 MLOAD CALLER SWAP1 PUSH32 0x4FF4AC703CB703B7EA535D47E65E64B4CABF11B3E2EB41F152DAB17971953ADD SWAP1 PUSH0 SWAP1 LOG4 POP POP SWAP2 MLOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x3EF PUSH2 0x3E9 CALLDATASIZE DUP5 SWAP1 SUB DUP5 ADD DUP5 PUSH2 0xFDA JUMP JUMPDEST DUP3 PUSH2 0x5FE JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4E6F7420496D706C656D656E746564206465706F736974000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4E6F7420496D706C656D656E7465642077697468647261770000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x64 ADD PUSH2 0x437 JUMP JUMPDEST PUSH2 0x4A2 PUSH2 0x49C CALLDATASIZE DUP4 SWAP1 SUB DUP4 ADD DUP4 PUSH2 0xFDA JUMP JUMPDEST PUSH0 PUSH2 0x5FE JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x4AD PUSH2 0xA56 JUMP JUMPDEST DUP6 DUP6 DUP1 DUP3 LT PUSH2 0x4D8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x319308D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x437 JUMP JUMPDEST POP POP PUSH2 0x4E2 PUSH2 0xA56 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH5 0xFFFFFFFFFF DUP1 DUP5 AND PUSH2 0x140 DUP4 ADD MSTORE DUP5 AND PUSH2 0x160 DUP3 ADD MSTORE PUSH0 PUSH2 0x515 DUP10 DUP9 DUP9 DUP9 DUP9 PUSH2 0x74E JUMP JUMPDEST DUP1 MLOAD PUSH1 0xA0 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x40 DUP1 DUP7 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP3 ADD MLOAD PUSH1 0x60 DUP1 DUP7 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP3 ADD MLOAD PUSH2 0x100 DUP6 ADD MSTORE PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x120 DUP6 ADD MSTORE DUP2 ADD MLOAD PUSH1 0xC0 DUP5 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD SWAP1 SWAP2 POP DUP9 SWAP1 DUP2 DUP2 GT ISZERO PUSH2 0x58A JUMPI PUSH1 0x40 MLOAD PUSH4 0xFC096627 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x437 JUMP JUMPDEST POP POP PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x59B SWAP1 DUP10 PUSH2 0xFF5 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x5BE SWAP2 SWAP1 PUSH2 0xF07 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP1 POP DUP2 DUP2 PUSH2 0x5F8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6EE9F647 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x437 SWAP2 SWAP1 PUSH2 0xF07 JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP2 MLOAD PUSH0 SUB PUSH2 0x641 JUMPI 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 0x141BDB1A58DE481B9BDD08199BDD5B99 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x437 JUMP JUMPDEST DUP2 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x65A DUP4 PUSH2 0x5AC JUMP JUMPDEST EQ PUSH2 0x69C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH18 0x90C2E6D040C8DECAE6DC4EE840DAC2E8C6D PUSH1 0x73 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x437 JUMP JUMPDEST DUP2 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP5 DUP2 SSTORE SWAP3 DUP4 ADD DUP5 SWAP1 SSTORE PUSH1 0x2 DUP1 DUP5 ADD DUP6 SWAP1 SSTORE PUSH1 0x3 DUP5 ADD DUP6 SWAP1 SSTORE PUSH1 0x4 DUP5 ADD DUP6 SWAP1 SSTORE PUSH1 0x5 DUP5 ADD DUP6 SWAP1 SSTORE PUSH1 0x6 DUP5 ADD DUP6 SWAP1 SSTORE PUSH1 0x7 DUP5 ADD DUP6 SWAP1 SSTORE PUSH1 0x8 DUP5 ADD DUP6 SWAP1 SSTORE PUSH1 0x9 DUP5 ADD DUP6 SWAP1 SSTORE PUSH1 0xA SWAP1 SWAP4 ADD DUP1 SLOAD PUSH10 0xFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE DUP6 MLOAD DUP5 MSTORE SWAP2 DUP2 MSTORE DUP2 DUP4 KECCAK256 SWAP3 SWAP1 SWAP3 SSTORE DUP4 MLOAD SWAP1 MLOAD DUP4 DUP2 MSTORE SWAP1 SWAP2 CALLER SWAP2 PUSH32 0x54F4A270EA08F88DC23B2520D6B063FECB24D956C4496F447926D736338F545E SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x78E PUSH1 0x40 MLOAD DUP1 PUSH2 0x100 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP6 MLOAD PUSH2 0x7AF SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x7A8 DUP9 DUP9 DUP4 PUSH2 0x978 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x978 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP7 ADD MLOAD PUSH2 0x7CA SWAP1 DUP7 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x978 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE DUP2 MLOAD LT ISZERO PUSH2 0x7F4 JUMPI DUP1 MLOAD PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH2 0x7EC SWAP1 DUP4 SWAP1 PUSH2 0xFF5 JUMP JUMPDEST SWAP1 MSTORE POP PUSH2 0x7FB JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD MSTORE JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD PUSH2 0x814 SWAP1 DUP7 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x978 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x20 DUP2 ADD MLOAD DUP2 MLOAD PUSH2 0x82A SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST DUP2 PUSH1 0x40 ADD MLOAD GT ISZERO PUSH2 0x85F JUMPI PUSH1 0x20 DUP2 ADD MLOAD DUP2 MLOAD PUSH2 0x846 SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST DUP2 PUSH1 0x40 ADD DUP2 DUP2 MLOAD PUSH2 0x857 SWAP2 SWAP1 PUSH2 0xFF5 JUMP JUMPDEST SWAP1 MSTORE POP PUSH2 0x866 JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD MSTORE JUMPDEST PUSH2 0x8AB PUSH2 0x873 DUP4 DUP6 PUSH2 0x1008 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP8 PUSH1 0xA0 ADD MLOAD PUSH2 0x889 SWAP2 SWAP1 PUSH2 0x1025 JUMP JUMPDEST PUSH2 0x89F PUSH4 0x1E13380 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1025 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP2 SWAP1 PUSH2 0x978 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x8F5 PUSH2 0x8BD DUP4 DUP6 PUSH2 0x1008 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP8 PUSH1 0xC0 ADD MLOAD PUSH2 0x8D3 SWAP2 SWAP1 PUSH2 0x1025 JUMP JUMPDEST PUSH2 0x8E9 PUSH4 0x1E13380 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1025 JUMP JUMPDEST PUSH1 0x40 DUP5 ADD MLOAD SWAP2 SWAP1 PUSH2 0x978 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x60 DUP3 ADD MLOAD PUSH0 SWAP2 PUSH2 0x90C SWAP2 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x80 DUP9 ADD MLOAD SWAP1 SWAP2 POP PUSH2 0x928 SWAP1 DUP3 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x978 JUMP JUMPDEST PUSH1 0x60 DUP9 ADD MLOAD DUP4 MLOAD PUSH2 0x941 SWAP2 PUSH8 0xDE0B6B3A7640000 PUSH2 0x978 JUMP JUMPDEST PUSH2 0x94B SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0xA0 DUP4 ADD DUP2 SWAP1 MSTORE DUP3 MLOAD DUP3 SWAP2 PUSH2 0x95F SWAP2 PUSH2 0xFC1 JUMP JUMPDEST PUSH2 0x969 SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x985 DUP7 DUP7 PUSH2 0xA29 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x9A9 JUMPI DUP4 DUP2 DUP2 PUSH2 0x99F JUMPI PUSH2 0x99F PUSH2 0x103C JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0xA22 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x9C0 JUMPI PUSH2 0x9C0 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0xA45 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xAE8 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xAE8 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xB32 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 DUP7 DUP9 SUB PUSH2 0x180 DUP2 SLT ISZERO PUSH2 0xB4E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0xE0 DUP2 SLT ISZERO PUSH2 0xB5B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xB64 PUSH2 0xAB9 JUMP JUMPDEST DUP8 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP10 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP10 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP10 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP10 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP10 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP10 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP6 POP PUSH1 0xE0 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH2 0x100 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x120 DUP8 ADD CALLDATALOAD SWAP3 POP PUSH2 0xBCA PUSH2 0x140 DUP9 ADD PUSH2 0xB1E JUMP JUMPDEST SWAP2 POP PUSH2 0xBD9 PUSH2 0x160 DUP9 ADD PUSH2 0xB1E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xBF6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xBFE PUSH2 0xAEE JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0xC6D PUSH2 0x140 DUP4 ADD PUSH2 0xB1E JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0xC80 PUSH2 0x160 DUP4 ADD PUSH2 0xB1E JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x4A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xB32 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xCCA JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xCD4 DUP7 DUP7 PUSH2 0xBE5 JUMP JUMPDEST SWAP4 POP PUSH2 0x180 DUP6 ADD CALLDATALOAD PUSH2 0xCE5 DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP3 POP PUSH2 0x1A0 DUP6 ADD CALLDATALOAD PUSH2 0xCF6 DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP2 POP PUSH2 0xD05 PUSH2 0x1C0 DUP7 ADD PUSH2 0xCA0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x340 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xD24 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xD2E DUP7 DUP7 PUSH2 0xBE5 JUMP JUMPDEST SWAP4 POP PUSH2 0xD3E DUP7 PUSH2 0x180 DUP8 ADD PUSH2 0xBE5 JUMP JUMPDEST SWAP3 POP PUSH2 0x300 DUP6 ADD CALLDATALOAD PUSH2 0xD4F DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP2 POP PUSH2 0xD05 PUSH2 0x320 DUP7 ADD PUSH2 0xCA0 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xD72 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xD7C DUP7 DUP7 PUSH2 0xBE5 JUMP JUMPDEST SWAP7 PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP7 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP6 PUSH2 0x1C0 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDA9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH2 0x1A0 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDD3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xDDD DUP5 DUP5 PUSH2 0xDB0 JUMP JUMPDEST SWAP5 PUSH2 0x180 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0xE02 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0xE0D DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD PUSH2 0xE24 DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0xE40 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xE70 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0xE7B DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0xE92 DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0xEA2 DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xEBF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0xECA DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0xEE1 DUP2 PUSH2 0xC8C JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xEFD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xA22 DUP4 DUP4 PUSH2 0xDB0 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 ADD SWAP1 POP DUP3 MLOAD DUP3 MSTORE PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP4 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP4 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP4 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP4 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP4 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP4 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP4 ADD MLOAD PUSH2 0xF8B PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP4 ADD MLOAD PUSH2 0xFA6 PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xFD4 JUMPI PUSH2 0xFD4 PUSH2 0xFAD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFEB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xA22 DUP4 DUP4 PUSH2 0xBE5 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xFD4 JUMPI PUSH2 0xFD4 PUSH2 0xFAD JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0xFD4 JUMPI PUSH2 0xFD4 PUSH2 0xFAD JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0xFD4 JUMPI PUSH2 0xFD4 PUSH2 0xFAD JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xFC SWAP5 0xCE GASLIMIT PUSH12 0x11482C8DC8BA0D4489C34B97 0xCD 0x2D 0x24 0xAC 0xAE 0xD7 PUSH23 0xF6D703503704818A64736F6C634300081E003300000000 ","sourceMap":"420:3610:96:-:0;;;758:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;802:9;:21;;-1:-1:-1;;;;;;802:21:96;-1:-1:-1;;;;;802:21:96;;;;;;;;;;420:3610;;14:313:101;107:6;160:2;148:9;139:7;135:23;131:32;128:52;;;176:1;173;166:12;128:52;202:16;;-1:-1:-1;;;;;247:31:101;;237:42;;227:70;;293:1;290;283:12;227:70;316:5;14:313;-1:-1:-1;;;14:313:101:o;:::-;420:3610:96;;;;;;"},"deployedBytecode":{"functionDebugData":{"@MAX_INT_30114":{"entryPoint":null,"id":30114,"parameterSlots":0,"returnSlots":0},"@_resolvePolicy_30370":{"entryPoint":1534,"id":30370,"parameterSlots":2,"returnSlots":0},"@cancelPolicy_30298":{"entryPoint":null,"id":30298,"parameterSlots":4,"returnSlots":0},"@currency_30147":{"entryPoint":null,"id":30147,"parameterSlots":0,"returnSlots":1},"@depositWithPermit_30469":{"entryPoint":1011,"id":30469,"parameterSlots":7,"returnSlots":0},"@deposit_30445":{"entryPoint":null,"id":30445,"parameterSlots":3,"returnSlots":0},"@expirePolicy_30398":{"entryPoint":1162,"id":30398,"parameterSlots":1,"returnSlots":0},"@extractRiskModule_30319":{"entryPoint":null,"id":30319,"parameterSlots":1,"returnSlots":1},"@getMinimumPremium_22476":{"entryPoint":1870,"id":22476,"parameterSlots":5,"returnSlots":1},"@getPolicyHash_30429":{"entryPoint":null,"id":30429,"parameterSlots":1,"returnSlots":1},"@hash_22760":{"entryPoint":1452,"id":22760,"parameterSlots":1,"returnSlots":1},"@initializeAndEmitPolicy_30541":{"entryPoint":582,"id":30541,"parameterSlots":6,"returnSlots":0},"@initialize_22611":{"entryPoint":1189,"id":22611,"parameterSlots":6,"returnSlots":1},"@isActive_30416":{"entryPoint":null,"id":30416,"parameterSlots":1,"returnSlots":1},"@mul512_14312":{"entryPoint":2601,"id":14312,"parameterSlots":2,"returnSlots":2},"@mulDiv_14799":{"entryPoint":2424,"id":14799,"parameterSlots":3,"returnSlots":1},"@newPolicy_30213":{"entryPoint":692,"id":30213,"parameterSlots":4,"returnSlots":1},"@panic_11416":{"entryPoint":2629,"id":11416,"parameterSlots":1,"returnSlots":0},"@replacePolicy_30284":{"entryPoint":813,"id":30284,"parameterSlots":4,"returnSlots":1},"@resolvePolicy_30385":{"entryPoint":983,"id":30385,"parameterSlots":2,"returnSlots":0},"@ternary_14561":{"entryPoint":null,"id":14561,"parameterSlots":3,"returnSlots":1},"@toUint_17678":{"entryPoint":null,"id":17678,"parameterSlots":1,"returnSlots":1},"@treasury_30159":{"entryPoint":null,"id":30159,"parameterSlots":0,"returnSlots":1},"@withdraw_30489":{"entryPoint":1088,"id":30489,"parameterSlots":4,"returnSlots":1},"abi_decode_struct_PolicyData":{"entryPoint":3045,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_struct_PolicyData_calldata":{"entryPoint":3504,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_address":{"entryPoint":3757,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_addresst_address":{"entryPoint":3677,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_addresst_uint256t_uint8t_bytes32t_bytes32":{"entryPoint":3564,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_struct$_Params_$22230_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint40":{"entryPoint":2871,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptr":{"entryPoint":3820,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_uint256":{"entryPoint":3521,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptr":{"entryPoint":4058,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_addresst_addresst_uint96":{"entryPoint":3254,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_struct$_PolicyData_$22256_memory_ptrt_addresst_uint96":{"entryPoint":3344,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256":{"entryPoint":3422,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_uint256":{"entryPoint":3481,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint40":{"entryPoint":2846,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint96":{"entryPoint":3232,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IRiskModule_$29295__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_4056b1a890a2c3818b7771ad8e47567b7f58fbbd321bfc4356d4990f533b901a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_42cb6adf2172fcd554545cbd0fc5a0dbec5675a8a159c6f6ca5b7e35bd632f79__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_d1c133ca691942c2b9c7b9bbdea503640377a82463f9986cfe69df5983647c2d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_dfce19cc5c9d715e1c1447fc4d85b7dd2f48c5fc48e7b8cdfb74121bafc6775d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr__fromStack_reversed":{"entryPoint":3847,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint40":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"allocate_memory":{"entryPoint":2745,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_1485":{"entryPoint":2798,"id":null,"parameterSlots":0,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":4033,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":4133,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":4085,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint40":{"entryPoint":4104,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":4013,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":4156,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":3212,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:14508:101","nodeType":"YulBlock","src":"0:14508:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"115:76:101","nodeType":"YulBlock","src":"115:76:101","statements":[{"nativeSrc":"125:26:101","nodeType":"YulAssignment","src":"125:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"137:9:101","nodeType":"YulIdentifier","src":"137:9:101"},{"kind":"number","nativeSrc":"148:2:101","nodeType":"YulLiteral","src":"148:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"133:3:101","nodeType":"YulIdentifier","src":"133:3:101"},"nativeSrc":"133:18:101","nodeType":"YulFunctionCall","src":"133:18:101"},"variableNames":[{"name":"tail","nativeSrc":"125:4:101","nodeType":"YulIdentifier","src":"125:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"167:9:101","nodeType":"YulIdentifier","src":"167:9:101"},{"name":"value0","nativeSrc":"178:6:101","nodeType":"YulIdentifier","src":"178:6:101"}],"functionName":{"name":"mstore","nativeSrc":"160:6:101","nodeType":"YulIdentifier","src":"160:6:101"},"nativeSrc":"160:25:101","nodeType":"YulFunctionCall","src":"160:25:101"},"nativeSrc":"160:25:101","nodeType":"YulExpressionStatement","src":"160:25:101"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"14:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"84:9:101","nodeType":"YulTypedName","src":"84:9:101","type":""},{"name":"value0","nativeSrc":"95:6:101","nodeType":"YulTypedName","src":"95:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"106:4:101","nodeType":"YulTypedName","src":"106:4:101","type":""}],"src":"14:177:101"},{"body":{"nativeSrc":"237:304:101","nodeType":"YulBlock","src":"237:304:101","statements":[{"nativeSrc":"247:19:101","nodeType":"YulAssignment","src":"247:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"263:2:101","nodeType":"YulLiteral","src":"263:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"257:5:101","nodeType":"YulIdentifier","src":"257:5:101"},"nativeSrc":"257:9:101","nodeType":"YulFunctionCall","src":"257:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"247:6:101","nodeType":"YulIdentifier","src":"247:6:101"}]},{"nativeSrc":"275:35:101","nodeType":"YulVariableDeclaration","src":"275:35:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"297:6:101","nodeType":"YulIdentifier","src":"297:6:101"},{"kind":"number","nativeSrc":"305:4:101","nodeType":"YulLiteral","src":"305:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"293:3:101","nodeType":"YulIdentifier","src":"293:3:101"},"nativeSrc":"293:17:101","nodeType":"YulFunctionCall","src":"293:17:101"},"variables":[{"name":"newFreePtr","nativeSrc":"279:10:101","nodeType":"YulTypedName","src":"279:10:101","type":""}]},{"body":{"nativeSrc":"393:111:101","nodeType":"YulBlock","src":"393:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"414:1:101","nodeType":"YulLiteral","src":"414:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"421:3:101","nodeType":"YulLiteral","src":"421:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"426:10:101","nodeType":"YulLiteral","src":"426:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"417:3:101","nodeType":"YulIdentifier","src":"417:3:101"},"nativeSrc":"417:20:101","nodeType":"YulFunctionCall","src":"417:20:101"}],"functionName":{"name":"mstore","nativeSrc":"407:6:101","nodeType":"YulIdentifier","src":"407:6:101"},"nativeSrc":"407:31:101","nodeType":"YulFunctionCall","src":"407:31:101"},"nativeSrc":"407:31:101","nodeType":"YulExpressionStatement","src":"407:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"458:1:101","nodeType":"YulLiteral","src":"458:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"461:4:101","nodeType":"YulLiteral","src":"461:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"451:6:101","nodeType":"YulIdentifier","src":"451:6:101"},"nativeSrc":"451:15:101","nodeType":"YulFunctionCall","src":"451:15:101"},"nativeSrc":"451:15:101","nodeType":"YulExpressionStatement","src":"451:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"486:1:101","nodeType":"YulLiteral","src":"486:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"489:4:101","nodeType":"YulLiteral","src":"489:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"479:6:101","nodeType":"YulIdentifier","src":"479:6:101"},"nativeSrc":"479:15:101","nodeType":"YulFunctionCall","src":"479:15:101"},"nativeSrc":"479:15:101","nodeType":"YulExpressionStatement","src":"479:15:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"328:10:101","nodeType":"YulIdentifier","src":"328:10:101"},{"kind":"number","nativeSrc":"340:18:101","nodeType":"YulLiteral","src":"340:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"325:2:101","nodeType":"YulIdentifier","src":"325:2:101"},"nativeSrc":"325:34:101","nodeType":"YulFunctionCall","src":"325:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"364:10:101","nodeType":"YulIdentifier","src":"364:10:101"},{"name":"memPtr","nativeSrc":"376:6:101","nodeType":"YulIdentifier","src":"376:6:101"}],"functionName":{"name":"lt","nativeSrc":"361:2:101","nodeType":"YulIdentifier","src":"361:2:101"},"nativeSrc":"361:22:101","nodeType":"YulFunctionCall","src":"361:22:101"}],"functionName":{"name":"or","nativeSrc":"322:2:101","nodeType":"YulIdentifier","src":"322:2:101"},"nativeSrc":"322:62:101","nodeType":"YulFunctionCall","src":"322:62:101"},"nativeSrc":"319:185:101","nodeType":"YulIf","src":"319:185:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"520:2:101","nodeType":"YulLiteral","src":"520:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"524:10:101","nodeType":"YulIdentifier","src":"524:10:101"}],"functionName":{"name":"mstore","nativeSrc":"513:6:101","nodeType":"YulIdentifier","src":"513:6:101"},"nativeSrc":"513:22:101","nodeType":"YulFunctionCall","src":"513:22:101"},"nativeSrc":"513:22:101","nodeType":"YulExpressionStatement","src":"513:22:101"}]},"name":"allocate_memory","nativeSrc":"196:345:101","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"226:6:101","nodeType":"YulTypedName","src":"226:6:101","type":""}],"src":"196:345:101"},{"body":{"nativeSrc":"592:306:101","nodeType":"YulBlock","src":"592:306:101","statements":[{"nativeSrc":"602:19:101","nodeType":"YulAssignment","src":"602:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"618:2:101","nodeType":"YulLiteral","src":"618:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"612:5:101","nodeType":"YulIdentifier","src":"612:5:101"},"nativeSrc":"612:9:101","nodeType":"YulFunctionCall","src":"612:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"602:6:101","nodeType":"YulIdentifier","src":"602:6:101"}]},{"nativeSrc":"630:37:101","nodeType":"YulVariableDeclaration","src":"630:37:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"652:6:101","nodeType":"YulIdentifier","src":"652:6:101"},{"kind":"number","nativeSrc":"660:6:101","nodeType":"YulLiteral","src":"660:6:101","type":"","value":"0x0180"}],"functionName":{"name":"add","nativeSrc":"648:3:101","nodeType":"YulIdentifier","src":"648:3:101"},"nativeSrc":"648:19:101","nodeType":"YulFunctionCall","src":"648:19:101"},"variables":[{"name":"newFreePtr","nativeSrc":"634:10:101","nodeType":"YulTypedName","src":"634:10:101","type":""}]},{"body":{"nativeSrc":"750:111:101","nodeType":"YulBlock","src":"750:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"771:1:101","nodeType":"YulLiteral","src":"771:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"778:3:101","nodeType":"YulLiteral","src":"778:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"783:10:101","nodeType":"YulLiteral","src":"783:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"774:3:101","nodeType":"YulIdentifier","src":"774:3:101"},"nativeSrc":"774:20:101","nodeType":"YulFunctionCall","src":"774:20:101"}],"functionName":{"name":"mstore","nativeSrc":"764:6:101","nodeType":"YulIdentifier","src":"764:6:101"},"nativeSrc":"764:31:101","nodeType":"YulFunctionCall","src":"764:31:101"},"nativeSrc":"764:31:101","nodeType":"YulExpressionStatement","src":"764:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"815:1:101","nodeType":"YulLiteral","src":"815:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"818:4:101","nodeType":"YulLiteral","src":"818:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"808:6:101","nodeType":"YulIdentifier","src":"808:6:101"},"nativeSrc":"808:15:101","nodeType":"YulFunctionCall","src":"808:15:101"},"nativeSrc":"808:15:101","nodeType":"YulExpressionStatement","src":"808:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"843:1:101","nodeType":"YulLiteral","src":"843:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"846:4:101","nodeType":"YulLiteral","src":"846:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"836:6:101","nodeType":"YulIdentifier","src":"836:6:101"},"nativeSrc":"836:15:101","nodeType":"YulFunctionCall","src":"836:15:101"},"nativeSrc":"836:15:101","nodeType":"YulExpressionStatement","src":"836:15:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"685:10:101","nodeType":"YulIdentifier","src":"685:10:101"},{"kind":"number","nativeSrc":"697:18:101","nodeType":"YulLiteral","src":"697:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"682:2:101","nodeType":"YulIdentifier","src":"682:2:101"},"nativeSrc":"682:34:101","nodeType":"YulFunctionCall","src":"682:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"721:10:101","nodeType":"YulIdentifier","src":"721:10:101"},{"name":"memPtr","nativeSrc":"733:6:101","nodeType":"YulIdentifier","src":"733:6:101"}],"functionName":{"name":"lt","nativeSrc":"718:2:101","nodeType":"YulIdentifier","src":"718:2:101"},"nativeSrc":"718:22:101","nodeType":"YulFunctionCall","src":"718:22:101"}],"functionName":{"name":"or","nativeSrc":"679:2:101","nodeType":"YulIdentifier","src":"679:2:101"},"nativeSrc":"679:62:101","nodeType":"YulFunctionCall","src":"679:62:101"},"nativeSrc":"676:185:101","nodeType":"YulIf","src":"676:185:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"877:2:101","nodeType":"YulLiteral","src":"877:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"881:10:101","nodeType":"YulIdentifier","src":"881:10:101"}],"functionName":{"name":"mstore","nativeSrc":"870:6:101","nodeType":"YulIdentifier","src":"870:6:101"},"nativeSrc":"870:22:101","nodeType":"YulFunctionCall","src":"870:22:101"},"nativeSrc":"870:22:101","nodeType":"YulExpressionStatement","src":"870:22:101"}]},"name":"allocate_memory_1485","nativeSrc":"546:352:101","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"581:6:101","nodeType":"YulTypedName","src":"581:6:101","type":""}],"src":"546:352:101"},{"body":{"nativeSrc":"951:117:101","nodeType":"YulBlock","src":"951:117:101","statements":[{"nativeSrc":"961:29:101","nodeType":"YulAssignment","src":"961:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"983:6:101","nodeType":"YulIdentifier","src":"983:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"970:12:101","nodeType":"YulIdentifier","src":"970:12:101"},"nativeSrc":"970:20:101","nodeType":"YulFunctionCall","src":"970:20:101"},"variableNames":[{"name":"value","nativeSrc":"961:5:101","nodeType":"YulIdentifier","src":"961:5:101"}]},{"body":{"nativeSrc":"1046:16:101","nodeType":"YulBlock","src":"1046:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1055:1:101","nodeType":"YulLiteral","src":"1055:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1058:1:101","nodeType":"YulLiteral","src":"1058:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1048:6:101","nodeType":"YulIdentifier","src":"1048:6:101"},"nativeSrc":"1048:12:101","nodeType":"YulFunctionCall","src":"1048:12:101"},"nativeSrc":"1048:12:101","nodeType":"YulExpressionStatement","src":"1048:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1012:5:101","nodeType":"YulIdentifier","src":"1012:5:101"},{"arguments":[{"name":"value","nativeSrc":"1023:5:101","nodeType":"YulIdentifier","src":"1023:5:101"},{"kind":"number","nativeSrc":"1030:12:101","nodeType":"YulLiteral","src":"1030:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"1019:3:101","nodeType":"YulIdentifier","src":"1019:3:101"},"nativeSrc":"1019:24:101","nodeType":"YulFunctionCall","src":"1019:24:101"}],"functionName":{"name":"eq","nativeSrc":"1009:2:101","nodeType":"YulIdentifier","src":"1009:2:101"},"nativeSrc":"1009:35:101","nodeType":"YulFunctionCall","src":"1009:35:101"}],"functionName":{"name":"iszero","nativeSrc":"1002:6:101","nodeType":"YulIdentifier","src":"1002:6:101"},"nativeSrc":"1002:43:101","nodeType":"YulFunctionCall","src":"1002:43:101"},"nativeSrc":"999:63:101","nodeType":"YulIf","src":"999:63:101"}]},"name":"abi_decode_uint40","nativeSrc":"903:165:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"930:6:101","nodeType":"YulTypedName","src":"930:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"941:5:101","nodeType":"YulTypedName","src":"941:5:101","type":""}],"src":"903:165:101"},{"body":{"nativeSrc":"1251:1432:101","nodeType":"YulBlock","src":"1251:1432:101","statements":[{"nativeSrc":"1261:33:101","nodeType":"YulVariableDeclaration","src":"1261:33:101","value":{"arguments":[{"name":"dataEnd","nativeSrc":"1275:7:101","nodeType":"YulIdentifier","src":"1275:7:101"},{"name":"headStart","nativeSrc":"1284:9:101","nodeType":"YulIdentifier","src":"1284:9:101"}],"functionName":{"name":"sub","nativeSrc":"1271:3:101","nodeType":"YulIdentifier","src":"1271:3:101"},"nativeSrc":"1271:23:101","nodeType":"YulFunctionCall","src":"1271:23:101"},"variables":[{"name":"_1","nativeSrc":"1265:2:101","nodeType":"YulTypedName","src":"1265:2:101","type":""}]},{"body":{"nativeSrc":"1319:16:101","nodeType":"YulBlock","src":"1319:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1328:1:101","nodeType":"YulLiteral","src":"1328:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1331:1:101","nodeType":"YulLiteral","src":"1331:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1321:6:101","nodeType":"YulIdentifier","src":"1321:6:101"},"nativeSrc":"1321:12:101","nodeType":"YulFunctionCall","src":"1321:12:101"},"nativeSrc":"1321:12:101","nodeType":"YulExpressionStatement","src":"1321:12:101"}]},"condition":{"arguments":[{"name":"_1","nativeSrc":"1310:2:101","nodeType":"YulIdentifier","src":"1310:2:101"},{"kind":"number","nativeSrc":"1314:3:101","nodeType":"YulLiteral","src":"1314:3:101","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"1306:3:101","nodeType":"YulIdentifier","src":"1306:3:101"},"nativeSrc":"1306:12:101","nodeType":"YulFunctionCall","src":"1306:12:101"},"nativeSrc":"1303:32:101","nodeType":"YulIf","src":"1303:32:101"},{"body":{"nativeSrc":"1361:16:101","nodeType":"YulBlock","src":"1361:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1370:1:101","nodeType":"YulLiteral","src":"1370:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1373:1:101","nodeType":"YulLiteral","src":"1373:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1363:6:101","nodeType":"YulIdentifier","src":"1363:6:101"},"nativeSrc":"1363:12:101","nodeType":"YulFunctionCall","src":"1363:12:101"},"nativeSrc":"1363:12:101","nodeType":"YulExpressionStatement","src":"1363:12:101"}]},"condition":{"arguments":[{"name":"_1","nativeSrc":"1351:2:101","nodeType":"YulIdentifier","src":"1351:2:101"},{"kind":"number","nativeSrc":"1355:4:101","nodeType":"YulLiteral","src":"1355:4:101","type":"","value":"0xe0"}],"functionName":{"name":"slt","nativeSrc":"1347:3:101","nodeType":"YulIdentifier","src":"1347:3:101"},"nativeSrc":"1347:13:101","nodeType":"YulFunctionCall","src":"1347:13:101"},"nativeSrc":"1344:33:101","nodeType":"YulIf","src":"1344:33:101"},{"nativeSrc":"1386:30:101","nodeType":"YulVariableDeclaration","src":"1386:30:101","value":{"arguments":[],"functionName":{"name":"allocate_memory","nativeSrc":"1399:15:101","nodeType":"YulIdentifier","src":"1399:15:101"},"nativeSrc":"1399:17:101","nodeType":"YulFunctionCall","src":"1399:17:101"},"variables":[{"name":"value","nativeSrc":"1390:5:101","nodeType":"YulTypedName","src":"1390:5:101","type":""}]},{"nativeSrc":"1425:16:101","nodeType":"YulVariableDeclaration","src":"1425:16:101","value":{"kind":"number","nativeSrc":"1440:1:101","nodeType":"YulLiteral","src":"1440:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"1429:7:101","nodeType":"YulTypedName","src":"1429:7:101","type":""}]},{"nativeSrc":"1450:34:101","nodeType":"YulAssignment","src":"1450:34:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1474:9:101","nodeType":"YulIdentifier","src":"1474:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"1461:12:101","nodeType":"YulIdentifier","src":"1461:12:101"},"nativeSrc":"1461:23:101","nodeType":"YulFunctionCall","src":"1461:23:101"},"variableNames":[{"name":"value_1","nativeSrc":"1450:7:101","nodeType":"YulIdentifier","src":"1450:7:101"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1500:5:101","nodeType":"YulIdentifier","src":"1500:5:101"},{"name":"value_1","nativeSrc":"1507:7:101","nodeType":"YulIdentifier","src":"1507:7:101"}],"functionName":{"name":"mstore","nativeSrc":"1493:6:101","nodeType":"YulIdentifier","src":"1493:6:101"},"nativeSrc":"1493:22:101","nodeType":"YulFunctionCall","src":"1493:22:101"},"nativeSrc":"1493:22:101","nodeType":"YulExpressionStatement","src":"1493:22:101"},{"nativeSrc":"1524:16:101","nodeType":"YulVariableDeclaration","src":"1524:16:101","value":{"kind":"number","nativeSrc":"1539:1:101","nodeType":"YulLiteral","src":"1539:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"1528:7:101","nodeType":"YulTypedName","src":"1528:7:101","type":""}]},{"nativeSrc":"1549:43:101","nodeType":"YulAssignment","src":"1549:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1577:9:101","nodeType":"YulIdentifier","src":"1577:9:101"},{"kind":"number","nativeSrc":"1588:2:101","nodeType":"YulLiteral","src":"1588:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1573:3:101","nodeType":"YulIdentifier","src":"1573:3:101"},"nativeSrc":"1573:18:101","nodeType":"YulFunctionCall","src":"1573:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"1560:12:101","nodeType":"YulIdentifier","src":"1560:12:101"},"nativeSrc":"1560:32:101","nodeType":"YulFunctionCall","src":"1560:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"1549:7:101","nodeType":"YulIdentifier","src":"1549:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1612:5:101","nodeType":"YulIdentifier","src":"1612:5:101"},{"kind":"number","nativeSrc":"1619:2:101","nodeType":"YulLiteral","src":"1619:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1608:3:101","nodeType":"YulIdentifier","src":"1608:3:101"},"nativeSrc":"1608:14:101","nodeType":"YulFunctionCall","src":"1608:14:101"},{"name":"value_2","nativeSrc":"1624:7:101","nodeType":"YulIdentifier","src":"1624:7:101"}],"functionName":{"name":"mstore","nativeSrc":"1601:6:101","nodeType":"YulIdentifier","src":"1601:6:101"},"nativeSrc":"1601:31:101","nodeType":"YulFunctionCall","src":"1601:31:101"},"nativeSrc":"1601:31:101","nodeType":"YulExpressionStatement","src":"1601:31:101"},{"nativeSrc":"1641:16:101","nodeType":"YulVariableDeclaration","src":"1641:16:101","value":{"kind":"number","nativeSrc":"1656:1:101","nodeType":"YulLiteral","src":"1656:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"1645:7:101","nodeType":"YulTypedName","src":"1645:7:101","type":""}]},{"nativeSrc":"1666:43:101","nodeType":"YulAssignment","src":"1666:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1694:9:101","nodeType":"YulIdentifier","src":"1694:9:101"},{"kind":"number","nativeSrc":"1705:2:101","nodeType":"YulLiteral","src":"1705:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1690:3:101","nodeType":"YulIdentifier","src":"1690:3:101"},"nativeSrc":"1690:18:101","nodeType":"YulFunctionCall","src":"1690:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"1677:12:101","nodeType":"YulIdentifier","src":"1677:12:101"},"nativeSrc":"1677:32:101","nodeType":"YulFunctionCall","src":"1677:32:101"},"variableNames":[{"name":"value_3","nativeSrc":"1666:7:101","nodeType":"YulIdentifier","src":"1666:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1729:5:101","nodeType":"YulIdentifier","src":"1729:5:101"},{"kind":"number","nativeSrc":"1736:2:101","nodeType":"YulLiteral","src":"1736:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1725:3:101","nodeType":"YulIdentifier","src":"1725:3:101"},"nativeSrc":"1725:14:101","nodeType":"YulFunctionCall","src":"1725:14:101"},{"name":"value_3","nativeSrc":"1741:7:101","nodeType":"YulIdentifier","src":"1741:7:101"}],"functionName":{"name":"mstore","nativeSrc":"1718:6:101","nodeType":"YulIdentifier","src":"1718:6:101"},"nativeSrc":"1718:31:101","nodeType":"YulFunctionCall","src":"1718:31:101"},"nativeSrc":"1718:31:101","nodeType":"YulExpressionStatement","src":"1718:31:101"},{"nativeSrc":"1758:16:101","nodeType":"YulVariableDeclaration","src":"1758:16:101","value":{"kind":"number","nativeSrc":"1773:1:101","nodeType":"YulLiteral","src":"1773:1:101","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"1762:7:101","nodeType":"YulTypedName","src":"1762:7:101","type":""}]},{"nativeSrc":"1783:43:101","nodeType":"YulAssignment","src":"1783:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1811:9:101","nodeType":"YulIdentifier","src":"1811:9:101"},{"kind":"number","nativeSrc":"1822:2:101","nodeType":"YulLiteral","src":"1822:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1807:3:101","nodeType":"YulIdentifier","src":"1807:3:101"},"nativeSrc":"1807:18:101","nodeType":"YulFunctionCall","src":"1807:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"1794:12:101","nodeType":"YulIdentifier","src":"1794:12:101"},"nativeSrc":"1794:32:101","nodeType":"YulFunctionCall","src":"1794:32:101"},"variableNames":[{"name":"value_4","nativeSrc":"1783:7:101","nodeType":"YulIdentifier","src":"1783:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1846:5:101","nodeType":"YulIdentifier","src":"1846:5:101"},{"kind":"number","nativeSrc":"1853:2:101","nodeType":"YulLiteral","src":"1853:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1842:3:101","nodeType":"YulIdentifier","src":"1842:3:101"},"nativeSrc":"1842:14:101","nodeType":"YulFunctionCall","src":"1842:14:101"},{"name":"value_4","nativeSrc":"1858:7:101","nodeType":"YulIdentifier","src":"1858:7:101"}],"functionName":{"name":"mstore","nativeSrc":"1835:6:101","nodeType":"YulIdentifier","src":"1835:6:101"},"nativeSrc":"1835:31:101","nodeType":"YulFunctionCall","src":"1835:31:101"},"nativeSrc":"1835:31:101","nodeType":"YulExpressionStatement","src":"1835:31:101"},{"nativeSrc":"1875:16:101","nodeType":"YulVariableDeclaration","src":"1875:16:101","value":{"kind":"number","nativeSrc":"1890:1:101","nodeType":"YulLiteral","src":"1890:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"1879:7:101","nodeType":"YulTypedName","src":"1879:7:101","type":""}]},{"nativeSrc":"1900:44:101","nodeType":"YulAssignment","src":"1900:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1928:9:101","nodeType":"YulIdentifier","src":"1928:9:101"},{"kind":"number","nativeSrc":"1939:3:101","nodeType":"YulLiteral","src":"1939:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"1924:3:101","nodeType":"YulIdentifier","src":"1924:3:101"},"nativeSrc":"1924:19:101","nodeType":"YulFunctionCall","src":"1924:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"1911:12:101","nodeType":"YulIdentifier","src":"1911:12:101"},"nativeSrc":"1911:33:101","nodeType":"YulFunctionCall","src":"1911:33:101"},"variableNames":[{"name":"value_5","nativeSrc":"1900:7:101","nodeType":"YulIdentifier","src":"1900:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1964:5:101","nodeType":"YulIdentifier","src":"1964:5:101"},{"kind":"number","nativeSrc":"1971:3:101","nodeType":"YulLiteral","src":"1971:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"1960:3:101","nodeType":"YulIdentifier","src":"1960:3:101"},"nativeSrc":"1960:15:101","nodeType":"YulFunctionCall","src":"1960:15:101"},{"name":"value_5","nativeSrc":"1977:7:101","nodeType":"YulIdentifier","src":"1977:7:101"}],"functionName":{"name":"mstore","nativeSrc":"1953:6:101","nodeType":"YulIdentifier","src":"1953:6:101"},"nativeSrc":"1953:32:101","nodeType":"YulFunctionCall","src":"1953:32:101"},"nativeSrc":"1953:32:101","nodeType":"YulExpressionStatement","src":"1953:32:101"},{"nativeSrc":"1994:16:101","nodeType":"YulVariableDeclaration","src":"1994:16:101","value":{"kind":"number","nativeSrc":"2009:1:101","nodeType":"YulLiteral","src":"2009:1:101","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"1998:7:101","nodeType":"YulTypedName","src":"1998:7:101","type":""}]},{"nativeSrc":"2019:44:101","nodeType":"YulAssignment","src":"2019:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2047:9:101","nodeType":"YulIdentifier","src":"2047:9:101"},{"kind":"number","nativeSrc":"2058:3:101","nodeType":"YulLiteral","src":"2058:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"2043:3:101","nodeType":"YulIdentifier","src":"2043:3:101"},"nativeSrc":"2043:19:101","nodeType":"YulFunctionCall","src":"2043:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"2030:12:101","nodeType":"YulIdentifier","src":"2030:12:101"},"nativeSrc":"2030:33:101","nodeType":"YulFunctionCall","src":"2030:33:101"},"variableNames":[{"name":"value_6","nativeSrc":"2019:7:101","nodeType":"YulIdentifier","src":"2019:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2083:5:101","nodeType":"YulIdentifier","src":"2083:5:101"},{"kind":"number","nativeSrc":"2090:3:101","nodeType":"YulLiteral","src":"2090:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"2079:3:101","nodeType":"YulIdentifier","src":"2079:3:101"},"nativeSrc":"2079:15:101","nodeType":"YulFunctionCall","src":"2079:15:101"},{"name":"value_6","nativeSrc":"2096:7:101","nodeType":"YulIdentifier","src":"2096:7:101"}],"functionName":{"name":"mstore","nativeSrc":"2072:6:101","nodeType":"YulIdentifier","src":"2072:6:101"},"nativeSrc":"2072:32:101","nodeType":"YulFunctionCall","src":"2072:32:101"},"nativeSrc":"2072:32:101","nodeType":"YulExpressionStatement","src":"2072:32:101"},{"nativeSrc":"2113:16:101","nodeType":"YulVariableDeclaration","src":"2113:16:101","value":{"kind":"number","nativeSrc":"2128:1:101","nodeType":"YulLiteral","src":"2128:1:101","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"2117:7:101","nodeType":"YulTypedName","src":"2117:7:101","type":""}]},{"nativeSrc":"2138:44:101","nodeType":"YulAssignment","src":"2138:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2166:9:101","nodeType":"YulIdentifier","src":"2166:9:101"},{"kind":"number","nativeSrc":"2177:3:101","nodeType":"YulLiteral","src":"2177:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"2162:3:101","nodeType":"YulIdentifier","src":"2162:3:101"},"nativeSrc":"2162:19:101","nodeType":"YulFunctionCall","src":"2162:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"2149:12:101","nodeType":"YulIdentifier","src":"2149:12:101"},"nativeSrc":"2149:33:101","nodeType":"YulFunctionCall","src":"2149:33:101"},"variableNames":[{"name":"value_7","nativeSrc":"2138:7:101","nodeType":"YulIdentifier","src":"2138:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2202:5:101","nodeType":"YulIdentifier","src":"2202:5:101"},{"kind":"number","nativeSrc":"2209:3:101","nodeType":"YulLiteral","src":"2209:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"2198:3:101","nodeType":"YulIdentifier","src":"2198:3:101"},"nativeSrc":"2198:15:101","nodeType":"YulFunctionCall","src":"2198:15:101"},{"name":"value_7","nativeSrc":"2215:7:101","nodeType":"YulIdentifier","src":"2215:7:101"}],"functionName":{"name":"mstore","nativeSrc":"2191:6:101","nodeType":"YulIdentifier","src":"2191:6:101"},"nativeSrc":"2191:32:101","nodeType":"YulFunctionCall","src":"2191:32:101"},"nativeSrc":"2191:32:101","nodeType":"YulExpressionStatement","src":"2191:32:101"},{"nativeSrc":"2232:15:101","nodeType":"YulAssignment","src":"2232:15:101","value":{"name":"value","nativeSrc":"2242:5:101","nodeType":"YulIdentifier","src":"2242:5:101"},"variableNames":[{"name":"value0","nativeSrc":"2232:6:101","nodeType":"YulIdentifier","src":"2232:6:101"}]},{"nativeSrc":"2256:16:101","nodeType":"YulVariableDeclaration","src":"2256:16:101","value":{"kind":"number","nativeSrc":"2271:1:101","nodeType":"YulLiteral","src":"2271:1:101","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"2260:7:101","nodeType":"YulTypedName","src":"2260:7:101","type":""}]},{"nativeSrc":"2281:45:101","nodeType":"YulAssignment","src":"2281:45:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2309:9:101","nodeType":"YulIdentifier","src":"2309:9:101"},{"kind":"number","nativeSrc":"2320:4:101","nodeType":"YulLiteral","src":"2320:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"2305:3:101","nodeType":"YulIdentifier","src":"2305:3:101"},"nativeSrc":"2305:20:101","nodeType":"YulFunctionCall","src":"2305:20:101"}],"functionName":{"name":"calldataload","nativeSrc":"2292:12:101","nodeType":"YulIdentifier","src":"2292:12:101"},"nativeSrc":"2292:34:101","nodeType":"YulFunctionCall","src":"2292:34:101"},"variableNames":[{"name":"value_8","nativeSrc":"2281:7:101","nodeType":"YulIdentifier","src":"2281:7:101"}]},{"nativeSrc":"2335:17:101","nodeType":"YulAssignment","src":"2335:17:101","value":{"name":"value_8","nativeSrc":"2345:7:101","nodeType":"YulIdentifier","src":"2345:7:101"},"variableNames":[{"name":"value1","nativeSrc":"2335:6:101","nodeType":"YulIdentifier","src":"2335:6:101"}]},{"nativeSrc":"2361:16:101","nodeType":"YulVariableDeclaration","src":"2361:16:101","value":{"kind":"number","nativeSrc":"2376:1:101","nodeType":"YulLiteral","src":"2376:1:101","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"2365:7:101","nodeType":"YulTypedName","src":"2365:7:101","type":""}]},{"nativeSrc":"2386:44:101","nodeType":"YulAssignment","src":"2386:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2414:9:101","nodeType":"YulIdentifier","src":"2414:9:101"},{"kind":"number","nativeSrc":"2425:3:101","nodeType":"YulLiteral","src":"2425:3:101","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"2410:3:101","nodeType":"YulIdentifier","src":"2410:3:101"},"nativeSrc":"2410:19:101","nodeType":"YulFunctionCall","src":"2410:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"2397:12:101","nodeType":"YulIdentifier","src":"2397:12:101"},"nativeSrc":"2397:33:101","nodeType":"YulFunctionCall","src":"2397:33:101"},"variableNames":[{"name":"value_9","nativeSrc":"2386:7:101","nodeType":"YulIdentifier","src":"2386:7:101"}]},{"nativeSrc":"2439:17:101","nodeType":"YulAssignment","src":"2439:17:101","value":{"name":"value_9","nativeSrc":"2449:7:101","nodeType":"YulIdentifier","src":"2449:7:101"},"variableNames":[{"name":"value2","nativeSrc":"2439:6:101","nodeType":"YulIdentifier","src":"2439:6:101"}]},{"nativeSrc":"2465:17:101","nodeType":"YulVariableDeclaration","src":"2465:17:101","value":{"kind":"number","nativeSrc":"2481:1:101","nodeType":"YulLiteral","src":"2481:1:101","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"2469:8:101","nodeType":"YulTypedName","src":"2469:8:101","type":""}]},{"nativeSrc":"2491:45:101","nodeType":"YulAssignment","src":"2491:45:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2520:9:101","nodeType":"YulIdentifier","src":"2520:9:101"},{"kind":"number","nativeSrc":"2531:3:101","nodeType":"YulLiteral","src":"2531:3:101","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"2516:3:101","nodeType":"YulIdentifier","src":"2516:3:101"},"nativeSrc":"2516:19:101","nodeType":"YulFunctionCall","src":"2516:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"2503:12:101","nodeType":"YulIdentifier","src":"2503:12:101"},"nativeSrc":"2503:33:101","nodeType":"YulFunctionCall","src":"2503:33:101"},"variableNames":[{"name":"value_10","nativeSrc":"2491:8:101","nodeType":"YulIdentifier","src":"2491:8:101"}]},{"nativeSrc":"2545:18:101","nodeType":"YulAssignment","src":"2545:18:101","value":{"name":"value_10","nativeSrc":"2555:8:101","nodeType":"YulIdentifier","src":"2555:8:101"},"variableNames":[{"name":"value3","nativeSrc":"2545:6:101","nodeType":"YulIdentifier","src":"2545:6:101"}]},{"nativeSrc":"2572:48:101","nodeType":"YulAssignment","src":"2572:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2604:9:101","nodeType":"YulIdentifier","src":"2604:9:101"},{"kind":"number","nativeSrc":"2615:3:101","nodeType":"YulLiteral","src":"2615:3:101","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"2600:3:101","nodeType":"YulIdentifier","src":"2600:3:101"},"nativeSrc":"2600:19:101","nodeType":"YulFunctionCall","src":"2600:19:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"2582:17:101","nodeType":"YulIdentifier","src":"2582:17:101"},"nativeSrc":"2582:38:101","nodeType":"YulFunctionCall","src":"2582:38:101"},"variableNames":[{"name":"value4","nativeSrc":"2572:6:101","nodeType":"YulIdentifier","src":"2572:6:101"}]},{"nativeSrc":"2629:48:101","nodeType":"YulAssignment","src":"2629:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2661:9:101","nodeType":"YulIdentifier","src":"2661:9:101"},{"kind":"number","nativeSrc":"2672:3:101","nodeType":"YulLiteral","src":"2672:3:101","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"2657:3:101","nodeType":"YulIdentifier","src":"2657:3:101"},"nativeSrc":"2657:19:101","nodeType":"YulFunctionCall","src":"2657:19:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"2639:17:101","nodeType":"YulIdentifier","src":"2639:17:101"},"nativeSrc":"2639:38:101","nodeType":"YulFunctionCall","src":"2639:38:101"},"variableNames":[{"name":"value5","nativeSrc":"2629:6:101","nodeType":"YulIdentifier","src":"2629:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_Params_$22230_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint40","nativeSrc":"1073:1610:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1177:9:101","nodeType":"YulTypedName","src":"1177:9:101","type":""},{"name":"dataEnd","nativeSrc":"1188:7:101","nodeType":"YulTypedName","src":"1188:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1200:6:101","nodeType":"YulTypedName","src":"1200:6:101","type":""},{"name":"value1","nativeSrc":"1208:6:101","nodeType":"YulTypedName","src":"1208:6:101","type":""},{"name":"value2","nativeSrc":"1216:6:101","nodeType":"YulTypedName","src":"1216:6:101","type":""},{"name":"value3","nativeSrc":"1224:6:101","nodeType":"YulTypedName","src":"1224:6:101","type":""},{"name":"value4","nativeSrc":"1232:6:101","nodeType":"YulTypedName","src":"1232:6:101","type":""},{"name":"value5","nativeSrc":"1240:6:101","nodeType":"YulTypedName","src":"1240:6:101","type":""}],"src":"1073:1610:101"},{"body":{"nativeSrc":"2755:1419:101","nodeType":"YulBlock","src":"2755:1419:101","statements":[{"body":{"nativeSrc":"2801:16:101","nodeType":"YulBlock","src":"2801:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2810:1:101","nodeType":"YulLiteral","src":"2810:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2813:1:101","nodeType":"YulLiteral","src":"2813:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2803:6:101","nodeType":"YulIdentifier","src":"2803:6:101"},"nativeSrc":"2803:12:101","nodeType":"YulFunctionCall","src":"2803:12:101"},"nativeSrc":"2803:12:101","nodeType":"YulExpressionStatement","src":"2803:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"2776:3:101","nodeType":"YulIdentifier","src":"2776:3:101"},{"name":"headStart","nativeSrc":"2781:9:101","nodeType":"YulIdentifier","src":"2781:9:101"}],"functionName":{"name":"sub","nativeSrc":"2772:3:101","nodeType":"YulIdentifier","src":"2772:3:101"},"nativeSrc":"2772:19:101","nodeType":"YulFunctionCall","src":"2772:19:101"},{"kind":"number","nativeSrc":"2793:6:101","nodeType":"YulLiteral","src":"2793:6:101","type":"","value":"0x0180"}],"functionName":{"name":"slt","nativeSrc":"2768:3:101","nodeType":"YulIdentifier","src":"2768:3:101"},"nativeSrc":"2768:32:101","nodeType":"YulFunctionCall","src":"2768:32:101"},"nativeSrc":"2765:52:101","nodeType":"YulIf","src":"2765:52:101"},{"nativeSrc":"2826:31:101","nodeType":"YulAssignment","src":"2826:31:101","value":{"arguments":[],"functionName":{"name":"allocate_memory_1485","nativeSrc":"2835:20:101","nodeType":"YulIdentifier","src":"2835:20:101"},"nativeSrc":"2835:22:101","nodeType":"YulFunctionCall","src":"2835:22:101"},"variableNames":[{"name":"value","nativeSrc":"2826:5:101","nodeType":"YulIdentifier","src":"2826:5:101"}]},{"nativeSrc":"2866:16:101","nodeType":"YulVariableDeclaration","src":"2866:16:101","value":{"kind":"number","nativeSrc":"2881:1:101","nodeType":"YulLiteral","src":"2881:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"2870:7:101","nodeType":"YulTypedName","src":"2870:7:101","type":""}]},{"nativeSrc":"2891:34:101","nodeType":"YulAssignment","src":"2891:34:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2915:9:101","nodeType":"YulIdentifier","src":"2915:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"2902:12:101","nodeType":"YulIdentifier","src":"2902:12:101"},"nativeSrc":"2902:23:101","nodeType":"YulFunctionCall","src":"2902:23:101"},"variableNames":[{"name":"value_1","nativeSrc":"2891:7:101","nodeType":"YulIdentifier","src":"2891:7:101"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2941:5:101","nodeType":"YulIdentifier","src":"2941:5:101"},{"name":"value_1","nativeSrc":"2948:7:101","nodeType":"YulIdentifier","src":"2948:7:101"}],"functionName":{"name":"mstore","nativeSrc":"2934:6:101","nodeType":"YulIdentifier","src":"2934:6:101"},"nativeSrc":"2934:22:101","nodeType":"YulFunctionCall","src":"2934:22:101"},"nativeSrc":"2934:22:101","nodeType":"YulExpressionStatement","src":"2934:22:101"},{"nativeSrc":"2965:16:101","nodeType":"YulVariableDeclaration","src":"2965:16:101","value":{"kind":"number","nativeSrc":"2980:1:101","nodeType":"YulLiteral","src":"2980:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"2969:7:101","nodeType":"YulTypedName","src":"2969:7:101","type":""}]},{"nativeSrc":"2990:43:101","nodeType":"YulAssignment","src":"2990:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3018:9:101","nodeType":"YulIdentifier","src":"3018:9:101"},{"kind":"number","nativeSrc":"3029:2:101","nodeType":"YulLiteral","src":"3029:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3014:3:101","nodeType":"YulIdentifier","src":"3014:3:101"},"nativeSrc":"3014:18:101","nodeType":"YulFunctionCall","src":"3014:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3001:12:101","nodeType":"YulIdentifier","src":"3001:12:101"},"nativeSrc":"3001:32:101","nodeType":"YulFunctionCall","src":"3001:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"2990:7:101","nodeType":"YulIdentifier","src":"2990:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3053:5:101","nodeType":"YulIdentifier","src":"3053:5:101"},{"kind":"number","nativeSrc":"3060:2:101","nodeType":"YulLiteral","src":"3060:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3049:3:101","nodeType":"YulIdentifier","src":"3049:3:101"},"nativeSrc":"3049:14:101","nodeType":"YulFunctionCall","src":"3049:14:101"},{"name":"value_2","nativeSrc":"3065:7:101","nodeType":"YulIdentifier","src":"3065:7:101"}],"functionName":{"name":"mstore","nativeSrc":"3042:6:101","nodeType":"YulIdentifier","src":"3042:6:101"},"nativeSrc":"3042:31:101","nodeType":"YulFunctionCall","src":"3042:31:101"},"nativeSrc":"3042:31:101","nodeType":"YulExpressionStatement","src":"3042:31:101"},{"nativeSrc":"3082:16:101","nodeType":"YulVariableDeclaration","src":"3082:16:101","value":{"kind":"number","nativeSrc":"3097:1:101","nodeType":"YulLiteral","src":"3097:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"3086:7:101","nodeType":"YulTypedName","src":"3086:7:101","type":""}]},{"nativeSrc":"3107:43:101","nodeType":"YulAssignment","src":"3107:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3135:9:101","nodeType":"YulIdentifier","src":"3135:9:101"},{"kind":"number","nativeSrc":"3146:2:101","nodeType":"YulLiteral","src":"3146:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3131:3:101","nodeType":"YulIdentifier","src":"3131:3:101"},"nativeSrc":"3131:18:101","nodeType":"YulFunctionCall","src":"3131:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3118:12:101","nodeType":"YulIdentifier","src":"3118:12:101"},"nativeSrc":"3118:32:101","nodeType":"YulFunctionCall","src":"3118:32:101"},"variableNames":[{"name":"value_3","nativeSrc":"3107:7:101","nodeType":"YulIdentifier","src":"3107:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3170:5:101","nodeType":"YulIdentifier","src":"3170:5:101"},{"kind":"number","nativeSrc":"3177:2:101","nodeType":"YulLiteral","src":"3177:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3166:3:101","nodeType":"YulIdentifier","src":"3166:3:101"},"nativeSrc":"3166:14:101","nodeType":"YulFunctionCall","src":"3166:14:101"},{"name":"value_3","nativeSrc":"3182:7:101","nodeType":"YulIdentifier","src":"3182:7:101"}],"functionName":{"name":"mstore","nativeSrc":"3159:6:101","nodeType":"YulIdentifier","src":"3159:6:101"},"nativeSrc":"3159:31:101","nodeType":"YulFunctionCall","src":"3159:31:101"},"nativeSrc":"3159:31:101","nodeType":"YulExpressionStatement","src":"3159:31:101"},{"nativeSrc":"3199:16:101","nodeType":"YulVariableDeclaration","src":"3199:16:101","value":{"kind":"number","nativeSrc":"3214:1:101","nodeType":"YulLiteral","src":"3214:1:101","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"3203:7:101","nodeType":"YulTypedName","src":"3203:7:101","type":""}]},{"nativeSrc":"3224:43:101","nodeType":"YulAssignment","src":"3224:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3252:9:101","nodeType":"YulIdentifier","src":"3252:9:101"},{"kind":"number","nativeSrc":"3263:2:101","nodeType":"YulLiteral","src":"3263:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3248:3:101","nodeType":"YulIdentifier","src":"3248:3:101"},"nativeSrc":"3248:18:101","nodeType":"YulFunctionCall","src":"3248:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"3235:12:101","nodeType":"YulIdentifier","src":"3235:12:101"},"nativeSrc":"3235:32:101","nodeType":"YulFunctionCall","src":"3235:32:101"},"variableNames":[{"name":"value_4","nativeSrc":"3224:7:101","nodeType":"YulIdentifier","src":"3224:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3287:5:101","nodeType":"YulIdentifier","src":"3287:5:101"},{"kind":"number","nativeSrc":"3294:2:101","nodeType":"YulLiteral","src":"3294:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3283:3:101","nodeType":"YulIdentifier","src":"3283:3:101"},"nativeSrc":"3283:14:101","nodeType":"YulFunctionCall","src":"3283:14:101"},{"name":"value_4","nativeSrc":"3299:7:101","nodeType":"YulIdentifier","src":"3299:7:101"}],"functionName":{"name":"mstore","nativeSrc":"3276:6:101","nodeType":"YulIdentifier","src":"3276:6:101"},"nativeSrc":"3276:31:101","nodeType":"YulFunctionCall","src":"3276:31:101"},"nativeSrc":"3276:31:101","nodeType":"YulExpressionStatement","src":"3276:31:101"},{"nativeSrc":"3316:16:101","nodeType":"YulVariableDeclaration","src":"3316:16:101","value":{"kind":"number","nativeSrc":"3331:1:101","nodeType":"YulLiteral","src":"3331:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"3320:7:101","nodeType":"YulTypedName","src":"3320:7:101","type":""}]},{"nativeSrc":"3341:44:101","nodeType":"YulAssignment","src":"3341:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3369:9:101","nodeType":"YulIdentifier","src":"3369:9:101"},{"kind":"number","nativeSrc":"3380:3:101","nodeType":"YulLiteral","src":"3380:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"3365:3:101","nodeType":"YulIdentifier","src":"3365:3:101"},"nativeSrc":"3365:19:101","nodeType":"YulFunctionCall","src":"3365:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"3352:12:101","nodeType":"YulIdentifier","src":"3352:12:101"},"nativeSrc":"3352:33:101","nodeType":"YulFunctionCall","src":"3352:33:101"},"variableNames":[{"name":"value_5","nativeSrc":"3341:7:101","nodeType":"YulIdentifier","src":"3341:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3405:5:101","nodeType":"YulIdentifier","src":"3405:5:101"},{"kind":"number","nativeSrc":"3412:3:101","nodeType":"YulLiteral","src":"3412:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"3401:3:101","nodeType":"YulIdentifier","src":"3401:3:101"},"nativeSrc":"3401:15:101","nodeType":"YulFunctionCall","src":"3401:15:101"},{"name":"value_5","nativeSrc":"3418:7:101","nodeType":"YulIdentifier","src":"3418:7:101"}],"functionName":{"name":"mstore","nativeSrc":"3394:6:101","nodeType":"YulIdentifier","src":"3394:6:101"},"nativeSrc":"3394:32:101","nodeType":"YulFunctionCall","src":"3394:32:101"},"nativeSrc":"3394:32:101","nodeType":"YulExpressionStatement","src":"3394:32:101"},{"nativeSrc":"3435:16:101","nodeType":"YulVariableDeclaration","src":"3435:16:101","value":{"kind":"number","nativeSrc":"3450:1:101","nodeType":"YulLiteral","src":"3450:1:101","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"3439:7:101","nodeType":"YulTypedName","src":"3439:7:101","type":""}]},{"nativeSrc":"3460:44:101","nodeType":"YulAssignment","src":"3460:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3488:9:101","nodeType":"YulIdentifier","src":"3488:9:101"},{"kind":"number","nativeSrc":"3499:3:101","nodeType":"YulLiteral","src":"3499:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"3484:3:101","nodeType":"YulIdentifier","src":"3484:3:101"},"nativeSrc":"3484:19:101","nodeType":"YulFunctionCall","src":"3484:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"3471:12:101","nodeType":"YulIdentifier","src":"3471:12:101"},"nativeSrc":"3471:33:101","nodeType":"YulFunctionCall","src":"3471:33:101"},"variableNames":[{"name":"value_6","nativeSrc":"3460:7:101","nodeType":"YulIdentifier","src":"3460:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3524:5:101","nodeType":"YulIdentifier","src":"3524:5:101"},{"kind":"number","nativeSrc":"3531:3:101","nodeType":"YulLiteral","src":"3531:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"3520:3:101","nodeType":"YulIdentifier","src":"3520:3:101"},"nativeSrc":"3520:15:101","nodeType":"YulFunctionCall","src":"3520:15:101"},{"name":"value_6","nativeSrc":"3537:7:101","nodeType":"YulIdentifier","src":"3537:7:101"}],"functionName":{"name":"mstore","nativeSrc":"3513:6:101","nodeType":"YulIdentifier","src":"3513:6:101"},"nativeSrc":"3513:32:101","nodeType":"YulFunctionCall","src":"3513:32:101"},"nativeSrc":"3513:32:101","nodeType":"YulExpressionStatement","src":"3513:32:101"},{"nativeSrc":"3554:16:101","nodeType":"YulVariableDeclaration","src":"3554:16:101","value":{"kind":"number","nativeSrc":"3569:1:101","nodeType":"YulLiteral","src":"3569:1:101","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"3558:7:101","nodeType":"YulTypedName","src":"3558:7:101","type":""}]},{"nativeSrc":"3579:44:101","nodeType":"YulAssignment","src":"3579:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3607:9:101","nodeType":"YulIdentifier","src":"3607:9:101"},{"kind":"number","nativeSrc":"3618:3:101","nodeType":"YulLiteral","src":"3618:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"3603:3:101","nodeType":"YulIdentifier","src":"3603:3:101"},"nativeSrc":"3603:19:101","nodeType":"YulFunctionCall","src":"3603:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"3590:12:101","nodeType":"YulIdentifier","src":"3590:12:101"},"nativeSrc":"3590:33:101","nodeType":"YulFunctionCall","src":"3590:33:101"},"variableNames":[{"name":"value_7","nativeSrc":"3579:7:101","nodeType":"YulIdentifier","src":"3579:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3643:5:101","nodeType":"YulIdentifier","src":"3643:5:101"},{"kind":"number","nativeSrc":"3650:3:101","nodeType":"YulLiteral","src":"3650:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"3639:3:101","nodeType":"YulIdentifier","src":"3639:3:101"},"nativeSrc":"3639:15:101","nodeType":"YulFunctionCall","src":"3639:15:101"},{"name":"value_7","nativeSrc":"3656:7:101","nodeType":"YulIdentifier","src":"3656:7:101"}],"functionName":{"name":"mstore","nativeSrc":"3632:6:101","nodeType":"YulIdentifier","src":"3632:6:101"},"nativeSrc":"3632:32:101","nodeType":"YulFunctionCall","src":"3632:32:101"},"nativeSrc":"3632:32:101","nodeType":"YulExpressionStatement","src":"3632:32:101"},{"nativeSrc":"3673:16:101","nodeType":"YulVariableDeclaration","src":"3673:16:101","value":{"kind":"number","nativeSrc":"3688:1:101","nodeType":"YulLiteral","src":"3688:1:101","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"3677:7:101","nodeType":"YulTypedName","src":"3677:7:101","type":""}]},{"nativeSrc":"3698:44:101","nodeType":"YulAssignment","src":"3698:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3726:9:101","nodeType":"YulIdentifier","src":"3726:9:101"},{"kind":"number","nativeSrc":"3737:3:101","nodeType":"YulLiteral","src":"3737:3:101","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"3722:3:101","nodeType":"YulIdentifier","src":"3722:3:101"},"nativeSrc":"3722:19:101","nodeType":"YulFunctionCall","src":"3722:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"3709:12:101","nodeType":"YulIdentifier","src":"3709:12:101"},"nativeSrc":"3709:33:101","nodeType":"YulFunctionCall","src":"3709:33:101"},"variableNames":[{"name":"value_8","nativeSrc":"3698:7:101","nodeType":"YulIdentifier","src":"3698:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3762:5:101","nodeType":"YulIdentifier","src":"3762:5:101"},{"kind":"number","nativeSrc":"3769:3:101","nodeType":"YulLiteral","src":"3769:3:101","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"3758:3:101","nodeType":"YulIdentifier","src":"3758:3:101"},"nativeSrc":"3758:15:101","nodeType":"YulFunctionCall","src":"3758:15:101"},{"name":"value_8","nativeSrc":"3775:7:101","nodeType":"YulIdentifier","src":"3775:7:101"}],"functionName":{"name":"mstore","nativeSrc":"3751:6:101","nodeType":"YulIdentifier","src":"3751:6:101"},"nativeSrc":"3751:32:101","nodeType":"YulFunctionCall","src":"3751:32:101"},"nativeSrc":"3751:32:101","nodeType":"YulExpressionStatement","src":"3751:32:101"},{"nativeSrc":"3792:16:101","nodeType":"YulVariableDeclaration","src":"3792:16:101","value":{"kind":"number","nativeSrc":"3807:1:101","nodeType":"YulLiteral","src":"3807:1:101","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"3796:7:101","nodeType":"YulTypedName","src":"3796:7:101","type":""}]},{"nativeSrc":"3817:44:101","nodeType":"YulAssignment","src":"3817:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3845:9:101","nodeType":"YulIdentifier","src":"3845:9:101"},{"kind":"number","nativeSrc":"3856:3:101","nodeType":"YulLiteral","src":"3856:3:101","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"3841:3:101","nodeType":"YulIdentifier","src":"3841:3:101"},"nativeSrc":"3841:19:101","nodeType":"YulFunctionCall","src":"3841:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"3828:12:101","nodeType":"YulIdentifier","src":"3828:12:101"},"nativeSrc":"3828:33:101","nodeType":"YulFunctionCall","src":"3828:33:101"},"variableNames":[{"name":"value_9","nativeSrc":"3817:7:101","nodeType":"YulIdentifier","src":"3817:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3881:5:101","nodeType":"YulIdentifier","src":"3881:5:101"},{"kind":"number","nativeSrc":"3888:3:101","nodeType":"YulLiteral","src":"3888:3:101","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"3877:3:101","nodeType":"YulIdentifier","src":"3877:3:101"},"nativeSrc":"3877:15:101","nodeType":"YulFunctionCall","src":"3877:15:101"},{"name":"value_9","nativeSrc":"3894:7:101","nodeType":"YulIdentifier","src":"3894:7:101"}],"functionName":{"name":"mstore","nativeSrc":"3870:6:101","nodeType":"YulIdentifier","src":"3870:6:101"},"nativeSrc":"3870:32:101","nodeType":"YulFunctionCall","src":"3870:32:101"},"nativeSrc":"3870:32:101","nodeType":"YulExpressionStatement","src":"3870:32:101"},{"nativeSrc":"3911:17:101","nodeType":"YulVariableDeclaration","src":"3911:17:101","value":{"kind":"number","nativeSrc":"3927:1:101","nodeType":"YulLiteral","src":"3927:1:101","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"3915:8:101","nodeType":"YulTypedName","src":"3915:8:101","type":""}]},{"nativeSrc":"3937:45:101","nodeType":"YulAssignment","src":"3937:45:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3966:9:101","nodeType":"YulIdentifier","src":"3966:9:101"},{"kind":"number","nativeSrc":"3977:3:101","nodeType":"YulLiteral","src":"3977:3:101","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"3962:3:101","nodeType":"YulIdentifier","src":"3962:3:101"},"nativeSrc":"3962:19:101","nodeType":"YulFunctionCall","src":"3962:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"3949:12:101","nodeType":"YulIdentifier","src":"3949:12:101"},"nativeSrc":"3949:33:101","nodeType":"YulFunctionCall","src":"3949:33:101"},"variableNames":[{"name":"value_10","nativeSrc":"3937:8:101","nodeType":"YulIdentifier","src":"3937:8:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4002:5:101","nodeType":"YulIdentifier","src":"4002:5:101"},{"kind":"number","nativeSrc":"4009:3:101","nodeType":"YulLiteral","src":"4009:3:101","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"3998:3:101","nodeType":"YulIdentifier","src":"3998:3:101"},"nativeSrc":"3998:15:101","nodeType":"YulFunctionCall","src":"3998:15:101"},{"name":"value_10","nativeSrc":"4015:8:101","nodeType":"YulIdentifier","src":"4015:8:101"}],"functionName":{"name":"mstore","nativeSrc":"3991:6:101","nodeType":"YulIdentifier","src":"3991:6:101"},"nativeSrc":"3991:33:101","nodeType":"YulFunctionCall","src":"3991:33:101"},"nativeSrc":"3991:33:101","nodeType":"YulExpressionStatement","src":"3991:33:101"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4044:5:101","nodeType":"YulIdentifier","src":"4044:5:101"},{"kind":"number","nativeSrc":"4051:3:101","nodeType":"YulLiteral","src":"4051:3:101","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"4040:3:101","nodeType":"YulIdentifier","src":"4040:3:101"},"nativeSrc":"4040:15:101","nodeType":"YulFunctionCall","src":"4040:15:101"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4079:9:101","nodeType":"YulIdentifier","src":"4079:9:101"},{"kind":"number","nativeSrc":"4090:3:101","nodeType":"YulLiteral","src":"4090:3:101","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"4075:3:101","nodeType":"YulIdentifier","src":"4075:3:101"},"nativeSrc":"4075:19:101","nodeType":"YulFunctionCall","src":"4075:19:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"4057:17:101","nodeType":"YulIdentifier","src":"4057:17:101"},"nativeSrc":"4057:38:101","nodeType":"YulFunctionCall","src":"4057:38:101"}],"functionName":{"name":"mstore","nativeSrc":"4033:6:101","nodeType":"YulIdentifier","src":"4033:6:101"},"nativeSrc":"4033:63:101","nodeType":"YulFunctionCall","src":"4033:63:101"},"nativeSrc":"4033:63:101","nodeType":"YulExpressionStatement","src":"4033:63:101"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4116:5:101","nodeType":"YulIdentifier","src":"4116:5:101"},{"kind":"number","nativeSrc":"4123:3:101","nodeType":"YulLiteral","src":"4123:3:101","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"4112:3:101","nodeType":"YulIdentifier","src":"4112:3:101"},"nativeSrc":"4112:15:101","nodeType":"YulFunctionCall","src":"4112:15:101"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4151:9:101","nodeType":"YulIdentifier","src":"4151:9:101"},{"kind":"number","nativeSrc":"4162:3:101","nodeType":"YulLiteral","src":"4162:3:101","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"4147:3:101","nodeType":"YulIdentifier","src":"4147:3:101"},"nativeSrc":"4147:19:101","nodeType":"YulFunctionCall","src":"4147:19:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"4129:17:101","nodeType":"YulIdentifier","src":"4129:17:101"},"nativeSrc":"4129:38:101","nodeType":"YulFunctionCall","src":"4129:38:101"}],"functionName":{"name":"mstore","nativeSrc":"4105:6:101","nodeType":"YulIdentifier","src":"4105:6:101"},"nativeSrc":"4105:63:101","nodeType":"YulFunctionCall","src":"4105:63:101"},"nativeSrc":"4105:63:101","nodeType":"YulExpressionStatement","src":"4105:63:101"}]},"name":"abi_decode_struct_PolicyData","nativeSrc":"2688:1486:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2726:9:101","nodeType":"YulTypedName","src":"2726:9:101","type":""},{"name":"end","nativeSrc":"2737:3:101","nodeType":"YulTypedName","src":"2737:3:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"2745:5:101","nodeType":"YulTypedName","src":"2745:5:101","type":""}],"src":"2688:1486:101"},{"body":{"nativeSrc":"4224:86:101","nodeType":"YulBlock","src":"4224:86:101","statements":[{"body":{"nativeSrc":"4288:16:101","nodeType":"YulBlock","src":"4288:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4297:1:101","nodeType":"YulLiteral","src":"4297:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4300:1:101","nodeType":"YulLiteral","src":"4300:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4290:6:101","nodeType":"YulIdentifier","src":"4290:6:101"},"nativeSrc":"4290:12:101","nodeType":"YulFunctionCall","src":"4290:12:101"},"nativeSrc":"4290:12:101","nodeType":"YulExpressionStatement","src":"4290:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4247:5:101","nodeType":"YulIdentifier","src":"4247:5:101"},{"arguments":[{"name":"value","nativeSrc":"4258:5:101","nodeType":"YulIdentifier","src":"4258:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4273:3:101","nodeType":"YulLiteral","src":"4273:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"4278:1:101","nodeType":"YulLiteral","src":"4278:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4269:3:101","nodeType":"YulIdentifier","src":"4269:3:101"},"nativeSrc":"4269:11:101","nodeType":"YulFunctionCall","src":"4269:11:101"},{"kind":"number","nativeSrc":"4282:1:101","nodeType":"YulLiteral","src":"4282:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4265:3:101","nodeType":"YulIdentifier","src":"4265:3:101"},"nativeSrc":"4265:19:101","nodeType":"YulFunctionCall","src":"4265:19:101"}],"functionName":{"name":"and","nativeSrc":"4254:3:101","nodeType":"YulIdentifier","src":"4254:3:101"},"nativeSrc":"4254:31:101","nodeType":"YulFunctionCall","src":"4254:31:101"}],"functionName":{"name":"eq","nativeSrc":"4244:2:101","nodeType":"YulIdentifier","src":"4244:2:101"},"nativeSrc":"4244:42:101","nodeType":"YulFunctionCall","src":"4244:42:101"}],"functionName":{"name":"iszero","nativeSrc":"4237:6:101","nodeType":"YulIdentifier","src":"4237:6:101"},"nativeSrc":"4237:50:101","nodeType":"YulFunctionCall","src":"4237:50:101"},"nativeSrc":"4234:70:101","nodeType":"YulIf","src":"4234:70:101"}]},"name":"validator_revert_address","nativeSrc":"4179:131:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"4213:5:101","nodeType":"YulTypedName","src":"4213:5:101","type":""}],"src":"4179:131:101"},{"body":{"nativeSrc":"4363:131:101","nodeType":"YulBlock","src":"4363:131:101","statements":[{"nativeSrc":"4373:29:101","nodeType":"YulAssignment","src":"4373:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"4395:6:101","nodeType":"YulIdentifier","src":"4395:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"4382:12:101","nodeType":"YulIdentifier","src":"4382:12:101"},"nativeSrc":"4382:20:101","nodeType":"YulFunctionCall","src":"4382:20:101"},"variableNames":[{"name":"value","nativeSrc":"4373:5:101","nodeType":"YulIdentifier","src":"4373:5:101"}]},{"body":{"nativeSrc":"4472:16:101","nodeType":"YulBlock","src":"4472:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4481:1:101","nodeType":"YulLiteral","src":"4481:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4484:1:101","nodeType":"YulLiteral","src":"4484:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4474:6:101","nodeType":"YulIdentifier","src":"4474:6:101"},"nativeSrc":"4474:12:101","nodeType":"YulFunctionCall","src":"4474:12:101"},"nativeSrc":"4474:12:101","nodeType":"YulExpressionStatement","src":"4474:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4424:5:101","nodeType":"YulIdentifier","src":"4424:5:101"},{"arguments":[{"name":"value","nativeSrc":"4435:5:101","nodeType":"YulIdentifier","src":"4435:5:101"},{"kind":"number","nativeSrc":"4442:26:101","nodeType":"YulLiteral","src":"4442:26:101","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"4431:3:101","nodeType":"YulIdentifier","src":"4431:3:101"},"nativeSrc":"4431:38:101","nodeType":"YulFunctionCall","src":"4431:38:101"}],"functionName":{"name":"eq","nativeSrc":"4421:2:101","nodeType":"YulIdentifier","src":"4421:2:101"},"nativeSrc":"4421:49:101","nodeType":"YulFunctionCall","src":"4421:49:101"}],"functionName":{"name":"iszero","nativeSrc":"4414:6:101","nodeType":"YulIdentifier","src":"4414:6:101"},"nativeSrc":"4414:57:101","nodeType":"YulFunctionCall","src":"4414:57:101"},"nativeSrc":"4411:77:101","nodeType":"YulIf","src":"4411:77:101"}]},"name":"abi_decode_uint96","nativeSrc":"4315:179:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"4342:6:101","nodeType":"YulTypedName","src":"4342:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"4353:5:101","nodeType":"YulTypedName","src":"4353:5:101","type":""}],"src":"4315:179:101"},{"body":{"nativeSrc":"4648:437:101","nodeType":"YulBlock","src":"4648:437:101","statements":[{"body":{"nativeSrc":"4695:16:101","nodeType":"YulBlock","src":"4695:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4704:1:101","nodeType":"YulLiteral","src":"4704:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4707:1:101","nodeType":"YulLiteral","src":"4707:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4697:6:101","nodeType":"YulIdentifier","src":"4697:6:101"},"nativeSrc":"4697:12:101","nodeType":"YulFunctionCall","src":"4697:12:101"},"nativeSrc":"4697:12:101","nodeType":"YulExpressionStatement","src":"4697:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4669:7:101","nodeType":"YulIdentifier","src":"4669:7:101"},{"name":"headStart","nativeSrc":"4678:9:101","nodeType":"YulIdentifier","src":"4678:9:101"}],"functionName":{"name":"sub","nativeSrc":"4665:3:101","nodeType":"YulIdentifier","src":"4665:3:101"},"nativeSrc":"4665:23:101","nodeType":"YulFunctionCall","src":"4665:23:101"},{"kind":"number","nativeSrc":"4690:3:101","nodeType":"YulLiteral","src":"4690:3:101","type":"","value":"480"}],"functionName":{"name":"slt","nativeSrc":"4661:3:101","nodeType":"YulIdentifier","src":"4661:3:101"},"nativeSrc":"4661:33:101","nodeType":"YulFunctionCall","src":"4661:33:101"},"nativeSrc":"4658:53:101","nodeType":"YulIf","src":"4658:53:101"},{"nativeSrc":"4720:58:101","nodeType":"YulAssignment","src":"4720:58:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4759:9:101","nodeType":"YulIdentifier","src":"4759:9:101"},{"name":"dataEnd","nativeSrc":"4770:7:101","nodeType":"YulIdentifier","src":"4770:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"4730:28:101","nodeType":"YulIdentifier","src":"4730:28:101"},"nativeSrc":"4730:48:101","nodeType":"YulFunctionCall","src":"4730:48:101"},"variableNames":[{"name":"value0","nativeSrc":"4720:6:101","nodeType":"YulIdentifier","src":"4720:6:101"}]},{"nativeSrc":"4787:46:101","nodeType":"YulVariableDeclaration","src":"4787:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4817:9:101","nodeType":"YulIdentifier","src":"4817:9:101"},{"kind":"number","nativeSrc":"4828:3:101","nodeType":"YulLiteral","src":"4828:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"4813:3:101","nodeType":"YulIdentifier","src":"4813:3:101"},"nativeSrc":"4813:19:101","nodeType":"YulFunctionCall","src":"4813:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"4800:12:101","nodeType":"YulIdentifier","src":"4800:12:101"},"nativeSrc":"4800:33:101","nodeType":"YulFunctionCall","src":"4800:33:101"},"variables":[{"name":"value","nativeSrc":"4791:5:101","nodeType":"YulTypedName","src":"4791:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4867:5:101","nodeType":"YulIdentifier","src":"4867:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4842:24:101","nodeType":"YulIdentifier","src":"4842:24:101"},"nativeSrc":"4842:31:101","nodeType":"YulFunctionCall","src":"4842:31:101"},"nativeSrc":"4842:31:101","nodeType":"YulExpressionStatement","src":"4842:31:101"},{"nativeSrc":"4882:15:101","nodeType":"YulAssignment","src":"4882:15:101","value":{"name":"value","nativeSrc":"4892:5:101","nodeType":"YulIdentifier","src":"4892:5:101"},"variableNames":[{"name":"value1","nativeSrc":"4882:6:101","nodeType":"YulIdentifier","src":"4882:6:101"}]},{"nativeSrc":"4906:48:101","nodeType":"YulVariableDeclaration","src":"4906:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4938:9:101","nodeType":"YulIdentifier","src":"4938:9:101"},{"kind":"number","nativeSrc":"4949:3:101","nodeType":"YulLiteral","src":"4949:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"4934:3:101","nodeType":"YulIdentifier","src":"4934:3:101"},"nativeSrc":"4934:19:101","nodeType":"YulFunctionCall","src":"4934:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"4921:12:101","nodeType":"YulIdentifier","src":"4921:12:101"},"nativeSrc":"4921:33:101","nodeType":"YulFunctionCall","src":"4921:33:101"},"variables":[{"name":"value_1","nativeSrc":"4910:7:101","nodeType":"YulTypedName","src":"4910:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"4988:7:101","nodeType":"YulIdentifier","src":"4988:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4963:24:101","nodeType":"YulIdentifier","src":"4963:24:101"},"nativeSrc":"4963:33:101","nodeType":"YulFunctionCall","src":"4963:33:101"},"nativeSrc":"4963:33:101","nodeType":"YulExpressionStatement","src":"4963:33:101"},{"nativeSrc":"5005:17:101","nodeType":"YulAssignment","src":"5005:17:101","value":{"name":"value_1","nativeSrc":"5015:7:101","nodeType":"YulIdentifier","src":"5015:7:101"},"variableNames":[{"name":"value2","nativeSrc":"5005:6:101","nodeType":"YulIdentifier","src":"5005:6:101"}]},{"nativeSrc":"5031:48:101","nodeType":"YulAssignment","src":"5031:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5063:9:101","nodeType":"YulIdentifier","src":"5063:9:101"},{"kind":"number","nativeSrc":"5074:3:101","nodeType":"YulLiteral","src":"5074:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"5059:3:101","nodeType":"YulIdentifier","src":"5059:3:101"},"nativeSrc":"5059:19:101","nodeType":"YulFunctionCall","src":"5059:19:101"}],"functionName":{"name":"abi_decode_uint96","nativeSrc":"5041:17:101","nodeType":"YulIdentifier","src":"5041:17:101"},"nativeSrc":"5041:38:101","nodeType":"YulFunctionCall","src":"5041:38:101"},"variableNames":[{"name":"value3","nativeSrc":"5031:6:101","nodeType":"YulIdentifier","src":"5031:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_addresst_addresst_uint96","nativeSrc":"4499:586:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4590:9:101","nodeType":"YulTypedName","src":"4590:9:101","type":""},{"name":"dataEnd","nativeSrc":"4601:7:101","nodeType":"YulTypedName","src":"4601:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4613:6:101","nodeType":"YulTypedName","src":"4613:6:101","type":""},{"name":"value1","nativeSrc":"4621:6:101","nodeType":"YulTypedName","src":"4621:6:101","type":""},{"name":"value2","nativeSrc":"4629:6:101","nodeType":"YulTypedName","src":"4629:6:101","type":""},{"name":"value3","nativeSrc":"4637:6:101","nodeType":"YulTypedName","src":"4637:6:101","type":""}],"src":"4499:586:101"},{"body":{"nativeSrc":"5191:102:101","nodeType":"YulBlock","src":"5191:102:101","statements":[{"nativeSrc":"5201:26:101","nodeType":"YulAssignment","src":"5201:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5213:9:101","nodeType":"YulIdentifier","src":"5213:9:101"},{"kind":"number","nativeSrc":"5224:2:101","nodeType":"YulLiteral","src":"5224:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5209:3:101","nodeType":"YulIdentifier","src":"5209:3:101"},"nativeSrc":"5209:18:101","nodeType":"YulFunctionCall","src":"5209:18:101"},"variableNames":[{"name":"tail","nativeSrc":"5201:4:101","nodeType":"YulIdentifier","src":"5201:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5243:9:101","nodeType":"YulIdentifier","src":"5243:9:101"},{"arguments":[{"name":"value0","nativeSrc":"5258:6:101","nodeType":"YulIdentifier","src":"5258:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5274:3:101","nodeType":"YulLiteral","src":"5274:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"5279:1:101","nodeType":"YulLiteral","src":"5279:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5270:3:101","nodeType":"YulIdentifier","src":"5270:3:101"},"nativeSrc":"5270:11:101","nodeType":"YulFunctionCall","src":"5270:11:101"},{"kind":"number","nativeSrc":"5283:1:101","nodeType":"YulLiteral","src":"5283:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5266:3:101","nodeType":"YulIdentifier","src":"5266:3:101"},"nativeSrc":"5266:19:101","nodeType":"YulFunctionCall","src":"5266:19:101"}],"functionName":{"name":"and","nativeSrc":"5254:3:101","nodeType":"YulIdentifier","src":"5254:3:101"},"nativeSrc":"5254:32:101","nodeType":"YulFunctionCall","src":"5254:32:101"}],"functionName":{"name":"mstore","nativeSrc":"5236:6:101","nodeType":"YulIdentifier","src":"5236:6:101"},"nativeSrc":"5236:51:101","nodeType":"YulFunctionCall","src":"5236:51:101"},"nativeSrc":"5236:51:101","nodeType":"YulExpressionStatement","src":"5236:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"5090:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5160:9:101","nodeType":"YulTypedName","src":"5160:9:101","type":""},{"name":"value0","nativeSrc":"5171:6:101","nodeType":"YulTypedName","src":"5171:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5182:4:101","nodeType":"YulTypedName","src":"5182:4:101","type":""}],"src":"5090:203:101"},{"body":{"nativeSrc":"5476:389:101","nodeType":"YulBlock","src":"5476:389:101","statements":[{"body":{"nativeSrc":"5523:16:101","nodeType":"YulBlock","src":"5523:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5532:1:101","nodeType":"YulLiteral","src":"5532:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5535:1:101","nodeType":"YulLiteral","src":"5535:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5525:6:101","nodeType":"YulIdentifier","src":"5525:6:101"},"nativeSrc":"5525:12:101","nodeType":"YulFunctionCall","src":"5525:12:101"},"nativeSrc":"5525:12:101","nodeType":"YulExpressionStatement","src":"5525:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5497:7:101","nodeType":"YulIdentifier","src":"5497:7:101"},{"name":"headStart","nativeSrc":"5506:9:101","nodeType":"YulIdentifier","src":"5506:9:101"}],"functionName":{"name":"sub","nativeSrc":"5493:3:101","nodeType":"YulIdentifier","src":"5493:3:101"},"nativeSrc":"5493:23:101","nodeType":"YulFunctionCall","src":"5493:23:101"},{"kind":"number","nativeSrc":"5518:3:101","nodeType":"YulLiteral","src":"5518:3:101","type":"","value":"832"}],"functionName":{"name":"slt","nativeSrc":"5489:3:101","nodeType":"YulIdentifier","src":"5489:3:101"},"nativeSrc":"5489:33:101","nodeType":"YulFunctionCall","src":"5489:33:101"},"nativeSrc":"5486:53:101","nodeType":"YulIf","src":"5486:53:101"},{"nativeSrc":"5548:58:101","nodeType":"YulAssignment","src":"5548:58:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5587:9:101","nodeType":"YulIdentifier","src":"5587:9:101"},{"name":"dataEnd","nativeSrc":"5598:7:101","nodeType":"YulIdentifier","src":"5598:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"5558:28:101","nodeType":"YulIdentifier","src":"5558:28:101"},"nativeSrc":"5558:48:101","nodeType":"YulFunctionCall","src":"5558:48:101"},"variableNames":[{"name":"value0","nativeSrc":"5548:6:101","nodeType":"YulIdentifier","src":"5548:6:101"}]},{"nativeSrc":"5615:68:101","nodeType":"YulAssignment","src":"5615:68:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5658:9:101","nodeType":"YulIdentifier","src":"5658:9:101"},{"kind":"number","nativeSrc":"5669:3:101","nodeType":"YulLiteral","src":"5669:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"5654:3:101","nodeType":"YulIdentifier","src":"5654:3:101"},"nativeSrc":"5654:19:101","nodeType":"YulFunctionCall","src":"5654:19:101"},{"name":"dataEnd","nativeSrc":"5675:7:101","nodeType":"YulIdentifier","src":"5675:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"5625:28:101","nodeType":"YulIdentifier","src":"5625:28:101"},"nativeSrc":"5625:58:101","nodeType":"YulFunctionCall","src":"5625:58:101"},"variableNames":[{"name":"value1","nativeSrc":"5615:6:101","nodeType":"YulIdentifier","src":"5615:6:101"}]},{"nativeSrc":"5692:46:101","nodeType":"YulVariableDeclaration","src":"5692:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5722:9:101","nodeType":"YulIdentifier","src":"5722:9:101"},{"kind":"number","nativeSrc":"5733:3:101","nodeType":"YulLiteral","src":"5733:3:101","type":"","value":"768"}],"functionName":{"name":"add","nativeSrc":"5718:3:101","nodeType":"YulIdentifier","src":"5718:3:101"},"nativeSrc":"5718:19:101","nodeType":"YulFunctionCall","src":"5718:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"5705:12:101","nodeType":"YulIdentifier","src":"5705:12:101"},"nativeSrc":"5705:33:101","nodeType":"YulFunctionCall","src":"5705:33:101"},"variables":[{"name":"value","nativeSrc":"5696:5:101","nodeType":"YulTypedName","src":"5696:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5772:5:101","nodeType":"YulIdentifier","src":"5772:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"5747:24:101","nodeType":"YulIdentifier","src":"5747:24:101"},"nativeSrc":"5747:31:101","nodeType":"YulFunctionCall","src":"5747:31:101"},"nativeSrc":"5747:31:101","nodeType":"YulExpressionStatement","src":"5747:31:101"},{"nativeSrc":"5787:15:101","nodeType":"YulAssignment","src":"5787:15:101","value":{"name":"value","nativeSrc":"5797:5:101","nodeType":"YulIdentifier","src":"5797:5:101"},"variableNames":[{"name":"value2","nativeSrc":"5787:6:101","nodeType":"YulIdentifier","src":"5787:6:101"}]},{"nativeSrc":"5811:48:101","nodeType":"YulAssignment","src":"5811:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5843:9:101","nodeType":"YulIdentifier","src":"5843:9:101"},{"kind":"number","nativeSrc":"5854:3:101","nodeType":"YulLiteral","src":"5854:3:101","type":"","value":"800"}],"functionName":{"name":"add","nativeSrc":"5839:3:101","nodeType":"YulIdentifier","src":"5839:3:101"},"nativeSrc":"5839:19:101","nodeType":"YulFunctionCall","src":"5839:19:101"}],"functionName":{"name":"abi_decode_uint96","nativeSrc":"5821:17:101","nodeType":"YulIdentifier","src":"5821:17:101"},"nativeSrc":"5821:38:101","nodeType":"YulFunctionCall","src":"5821:38:101"},"variableNames":[{"name":"value3","nativeSrc":"5811:6:101","nodeType":"YulIdentifier","src":"5811:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_struct$_PolicyData_$22256_memory_ptrt_addresst_uint96","nativeSrc":"5298:567:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5418:9:101","nodeType":"YulTypedName","src":"5418:9:101","type":""},{"name":"dataEnd","nativeSrc":"5429:7:101","nodeType":"YulTypedName","src":"5429:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5441:6:101","nodeType":"YulTypedName","src":"5441:6:101","type":""},{"name":"value1","nativeSrc":"5449:6:101","nodeType":"YulTypedName","src":"5449:6:101","type":""},{"name":"value2","nativeSrc":"5457:6:101","nodeType":"YulTypedName","src":"5457:6:101","type":""},{"name":"value3","nativeSrc":"5465:6:101","nodeType":"YulTypedName","src":"5465:6:101","type":""}],"src":"5298:567:101"},{"body":{"nativeSrc":"6020:442:101","nodeType":"YulBlock","src":"6020:442:101","statements":[{"body":{"nativeSrc":"6067:16:101","nodeType":"YulBlock","src":"6067:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6076:1:101","nodeType":"YulLiteral","src":"6076:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6079:1:101","nodeType":"YulLiteral","src":"6079:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6069:6:101","nodeType":"YulIdentifier","src":"6069:6:101"},"nativeSrc":"6069:12:101","nodeType":"YulFunctionCall","src":"6069:12:101"},"nativeSrc":"6069:12:101","nodeType":"YulExpressionStatement","src":"6069:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6041:7:101","nodeType":"YulIdentifier","src":"6041:7:101"},{"name":"headStart","nativeSrc":"6050:9:101","nodeType":"YulIdentifier","src":"6050:9:101"}],"functionName":{"name":"sub","nativeSrc":"6037:3:101","nodeType":"YulIdentifier","src":"6037:3:101"},"nativeSrc":"6037:23:101","nodeType":"YulFunctionCall","src":"6037:23:101"},{"kind":"number","nativeSrc":"6062:3:101","nodeType":"YulLiteral","src":"6062:3:101","type":"","value":"480"}],"functionName":{"name":"slt","nativeSrc":"6033:3:101","nodeType":"YulIdentifier","src":"6033:3:101"},"nativeSrc":"6033:33:101","nodeType":"YulFunctionCall","src":"6033:33:101"},"nativeSrc":"6030:53:101","nodeType":"YulIf","src":"6030:53:101"},{"nativeSrc":"6092:58:101","nodeType":"YulAssignment","src":"6092:58:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6131:9:101","nodeType":"YulIdentifier","src":"6131:9:101"},{"name":"dataEnd","nativeSrc":"6142:7:101","nodeType":"YulIdentifier","src":"6142:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"6102:28:101","nodeType":"YulIdentifier","src":"6102:28:101"},"nativeSrc":"6102:48:101","nodeType":"YulFunctionCall","src":"6102:48:101"},"variableNames":[{"name":"value0","nativeSrc":"6092:6:101","nodeType":"YulIdentifier","src":"6092:6:101"}]},{"nativeSrc":"6159:14:101","nodeType":"YulVariableDeclaration","src":"6159:14:101","value":{"kind":"number","nativeSrc":"6172:1:101","nodeType":"YulLiteral","src":"6172:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"6163:5:101","nodeType":"YulTypedName","src":"6163:5:101","type":""}]},{"nativeSrc":"6182:42:101","nodeType":"YulAssignment","src":"6182:42:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6208:9:101","nodeType":"YulIdentifier","src":"6208:9:101"},{"kind":"number","nativeSrc":"6219:3:101","nodeType":"YulLiteral","src":"6219:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"6204:3:101","nodeType":"YulIdentifier","src":"6204:3:101"},"nativeSrc":"6204:19:101","nodeType":"YulFunctionCall","src":"6204:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"6191:12:101","nodeType":"YulIdentifier","src":"6191:12:101"},"nativeSrc":"6191:33:101","nodeType":"YulFunctionCall","src":"6191:33:101"},"variableNames":[{"name":"value","nativeSrc":"6182:5:101","nodeType":"YulIdentifier","src":"6182:5:101"}]},{"nativeSrc":"6233:15:101","nodeType":"YulAssignment","src":"6233:15:101","value":{"name":"value","nativeSrc":"6243:5:101","nodeType":"YulIdentifier","src":"6243:5:101"},"variableNames":[{"name":"value1","nativeSrc":"6233:6:101","nodeType":"YulIdentifier","src":"6233:6:101"}]},{"nativeSrc":"6257:16:101","nodeType":"YulVariableDeclaration","src":"6257:16:101","value":{"kind":"number","nativeSrc":"6272:1:101","nodeType":"YulLiteral","src":"6272:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"6261:7:101","nodeType":"YulTypedName","src":"6261:7:101","type":""}]},{"nativeSrc":"6282:44:101","nodeType":"YulAssignment","src":"6282:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6310:9:101","nodeType":"YulIdentifier","src":"6310:9:101"},{"kind":"number","nativeSrc":"6321:3:101","nodeType":"YulLiteral","src":"6321:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"6306:3:101","nodeType":"YulIdentifier","src":"6306:3:101"},"nativeSrc":"6306:19:101","nodeType":"YulFunctionCall","src":"6306:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"6293:12:101","nodeType":"YulIdentifier","src":"6293:12:101"},"nativeSrc":"6293:33:101","nodeType":"YulFunctionCall","src":"6293:33:101"},"variableNames":[{"name":"value_1","nativeSrc":"6282:7:101","nodeType":"YulIdentifier","src":"6282:7:101"}]},{"nativeSrc":"6335:17:101","nodeType":"YulAssignment","src":"6335:17:101","value":{"name":"value_1","nativeSrc":"6345:7:101","nodeType":"YulIdentifier","src":"6345:7:101"},"variableNames":[{"name":"value2","nativeSrc":"6335:6:101","nodeType":"YulIdentifier","src":"6335:6:101"}]},{"nativeSrc":"6361:16:101","nodeType":"YulVariableDeclaration","src":"6361:16:101","value":{"kind":"number","nativeSrc":"6376:1:101","nodeType":"YulLiteral","src":"6376:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"6365:7:101","nodeType":"YulTypedName","src":"6365:7:101","type":""}]},{"nativeSrc":"6386:44:101","nodeType":"YulAssignment","src":"6386:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6414:9:101","nodeType":"YulIdentifier","src":"6414:9:101"},{"kind":"number","nativeSrc":"6425:3:101","nodeType":"YulLiteral","src":"6425:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"6410:3:101","nodeType":"YulIdentifier","src":"6410:3:101"},"nativeSrc":"6410:19:101","nodeType":"YulFunctionCall","src":"6410:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"6397:12:101","nodeType":"YulIdentifier","src":"6397:12:101"},"nativeSrc":"6397:33:101","nodeType":"YulFunctionCall","src":"6397:33:101"},"variableNames":[{"name":"value_2","nativeSrc":"6386:7:101","nodeType":"YulIdentifier","src":"6386:7:101"}]},{"nativeSrc":"6439:17:101","nodeType":"YulAssignment","src":"6439:17:101","value":{"name":"value_2","nativeSrc":"6449:7:101","nodeType":"YulIdentifier","src":"6449:7:101"},"variableNames":[{"name":"value3","nativeSrc":"6439:6:101","nodeType":"YulIdentifier","src":"6439:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256","nativeSrc":"5870:592:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5962:9:101","nodeType":"YulTypedName","src":"5962:9:101","type":""},{"name":"dataEnd","nativeSrc":"5973:7:101","nodeType":"YulTypedName","src":"5973:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5985:6:101","nodeType":"YulTypedName","src":"5985:6:101","type":""},{"name":"value1","nativeSrc":"5993:6:101","nodeType":"YulTypedName","src":"5993:6:101","type":""},{"name":"value2","nativeSrc":"6001:6:101","nodeType":"YulTypedName","src":"6001:6:101","type":""},{"name":"value3","nativeSrc":"6009:6:101","nodeType":"YulTypedName","src":"6009:6:101","type":""}],"src":"5870:592:101"},{"body":{"nativeSrc":"6537:156:101","nodeType":"YulBlock","src":"6537:156:101","statements":[{"body":{"nativeSrc":"6583:16:101","nodeType":"YulBlock","src":"6583:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6592:1:101","nodeType":"YulLiteral","src":"6592:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6595:1:101","nodeType":"YulLiteral","src":"6595:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6585:6:101","nodeType":"YulIdentifier","src":"6585:6:101"},"nativeSrc":"6585:12:101","nodeType":"YulFunctionCall","src":"6585:12:101"},"nativeSrc":"6585:12:101","nodeType":"YulExpressionStatement","src":"6585:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6558:7:101","nodeType":"YulIdentifier","src":"6558:7:101"},{"name":"headStart","nativeSrc":"6567:9:101","nodeType":"YulIdentifier","src":"6567:9:101"}],"functionName":{"name":"sub","nativeSrc":"6554:3:101","nodeType":"YulIdentifier","src":"6554:3:101"},"nativeSrc":"6554:23:101","nodeType":"YulFunctionCall","src":"6554:23:101"},{"kind":"number","nativeSrc":"6579:2:101","nodeType":"YulLiteral","src":"6579:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"6550:3:101","nodeType":"YulIdentifier","src":"6550:3:101"},"nativeSrc":"6550:32:101","nodeType":"YulFunctionCall","src":"6550:32:101"},"nativeSrc":"6547:52:101","nodeType":"YulIf","src":"6547:52:101"},{"nativeSrc":"6608:14:101","nodeType":"YulVariableDeclaration","src":"6608:14:101","value":{"kind":"number","nativeSrc":"6621:1:101","nodeType":"YulLiteral","src":"6621:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"6612:5:101","nodeType":"YulTypedName","src":"6612:5:101","type":""}]},{"nativeSrc":"6631:32:101","nodeType":"YulAssignment","src":"6631:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6653:9:101","nodeType":"YulIdentifier","src":"6653:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"6640:12:101","nodeType":"YulIdentifier","src":"6640:12:101"},"nativeSrc":"6640:23:101","nodeType":"YulFunctionCall","src":"6640:23:101"},"variableNames":[{"name":"value","nativeSrc":"6631:5:101","nodeType":"YulIdentifier","src":"6631:5:101"}]},{"nativeSrc":"6672:15:101","nodeType":"YulAssignment","src":"6672:15:101","value":{"name":"value","nativeSrc":"6682:5:101","nodeType":"YulIdentifier","src":"6682:5:101"},"variableNames":[{"name":"value0","nativeSrc":"6672:6:101","nodeType":"YulIdentifier","src":"6672:6:101"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"6467:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6503:9:101","nodeType":"YulTypedName","src":"6503:9:101","type":""},{"name":"dataEnd","nativeSrc":"6514:7:101","nodeType":"YulTypedName","src":"6514:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6526:6:101","nodeType":"YulTypedName","src":"6526:6:101","type":""}],"src":"6467:226:101"},{"body":{"nativeSrc":"6799:76:101","nodeType":"YulBlock","src":"6799:76:101","statements":[{"nativeSrc":"6809:26:101","nodeType":"YulAssignment","src":"6809:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6821:9:101","nodeType":"YulIdentifier","src":"6821:9:101"},{"kind":"number","nativeSrc":"6832:2:101","nodeType":"YulLiteral","src":"6832:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6817:3:101","nodeType":"YulIdentifier","src":"6817:3:101"},"nativeSrc":"6817:18:101","nodeType":"YulFunctionCall","src":"6817:18:101"},"variableNames":[{"name":"tail","nativeSrc":"6809:4:101","nodeType":"YulIdentifier","src":"6809:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6851:9:101","nodeType":"YulIdentifier","src":"6851:9:101"},{"name":"value0","nativeSrc":"6862:6:101","nodeType":"YulIdentifier","src":"6862:6:101"}],"functionName":{"name":"mstore","nativeSrc":"6844:6:101","nodeType":"YulIdentifier","src":"6844:6:101"},"nativeSrc":"6844:25:101","nodeType":"YulFunctionCall","src":"6844:25:101"},"nativeSrc":"6844:25:101","nodeType":"YulExpressionStatement","src":"6844:25:101"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"6698:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6768:9:101","nodeType":"YulTypedName","src":"6768:9:101","type":""},{"name":"value0","nativeSrc":"6779:6:101","nodeType":"YulTypedName","src":"6779:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6790:4:101","nodeType":"YulTypedName","src":"6790:4:101","type":""}],"src":"6698:177:101"},{"body":{"nativeSrc":"6975:92:101","nodeType":"YulBlock","src":"6975:92:101","statements":[{"nativeSrc":"6985:26:101","nodeType":"YulAssignment","src":"6985:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6997:9:101","nodeType":"YulIdentifier","src":"6997:9:101"},{"kind":"number","nativeSrc":"7008:2:101","nodeType":"YulLiteral","src":"7008:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6993:3:101","nodeType":"YulIdentifier","src":"6993:3:101"},"nativeSrc":"6993:18:101","nodeType":"YulFunctionCall","src":"6993:18:101"},"variableNames":[{"name":"tail","nativeSrc":"6985:4:101","nodeType":"YulIdentifier","src":"6985:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7027:9:101","nodeType":"YulIdentifier","src":"7027:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"7052:6:101","nodeType":"YulIdentifier","src":"7052:6:101"}],"functionName":{"name":"iszero","nativeSrc":"7045:6:101","nodeType":"YulIdentifier","src":"7045:6:101"},"nativeSrc":"7045:14:101","nodeType":"YulFunctionCall","src":"7045:14:101"}],"functionName":{"name":"iszero","nativeSrc":"7038:6:101","nodeType":"YulIdentifier","src":"7038:6:101"},"nativeSrc":"7038:22:101","nodeType":"YulFunctionCall","src":"7038:22:101"}],"functionName":{"name":"mstore","nativeSrc":"7020:6:101","nodeType":"YulIdentifier","src":"7020:6:101"},"nativeSrc":"7020:41:101","nodeType":"YulFunctionCall","src":"7020:41:101"},"nativeSrc":"7020:41:101","nodeType":"YulExpressionStatement","src":"7020:41:101"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"6880:187:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6944:9:101","nodeType":"YulTypedName","src":"6944:9:101","type":""},{"name":"value0","nativeSrc":"6955:6:101","nodeType":"YulTypedName","src":"6955:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6966:4:101","nodeType":"YulTypedName","src":"6966:4:101","type":""}],"src":"6880:187:101"},{"body":{"nativeSrc":"7194:102:101","nodeType":"YulBlock","src":"7194:102:101","statements":[{"nativeSrc":"7204:26:101","nodeType":"YulAssignment","src":"7204:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7216:9:101","nodeType":"YulIdentifier","src":"7216:9:101"},{"kind":"number","nativeSrc":"7227:2:101","nodeType":"YulLiteral","src":"7227:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7212:3:101","nodeType":"YulIdentifier","src":"7212:3:101"},"nativeSrc":"7212:18:101","nodeType":"YulFunctionCall","src":"7212:18:101"},"variableNames":[{"name":"tail","nativeSrc":"7204:4:101","nodeType":"YulIdentifier","src":"7204:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7246:9:101","nodeType":"YulIdentifier","src":"7246:9:101"},{"arguments":[{"name":"value0","nativeSrc":"7261:6:101","nodeType":"YulIdentifier","src":"7261:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7277:3:101","nodeType":"YulLiteral","src":"7277:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"7282:1:101","nodeType":"YulLiteral","src":"7282:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7273:3:101","nodeType":"YulIdentifier","src":"7273:3:101"},"nativeSrc":"7273:11:101","nodeType":"YulFunctionCall","src":"7273:11:101"},{"kind":"number","nativeSrc":"7286:1:101","nodeType":"YulLiteral","src":"7286:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7269:3:101","nodeType":"YulIdentifier","src":"7269:3:101"},"nativeSrc":"7269:19:101","nodeType":"YulFunctionCall","src":"7269:19:101"}],"functionName":{"name":"and","nativeSrc":"7257:3:101","nodeType":"YulIdentifier","src":"7257:3:101"},"nativeSrc":"7257:32:101","nodeType":"YulFunctionCall","src":"7257:32:101"}],"functionName":{"name":"mstore","nativeSrc":"7239:6:101","nodeType":"YulIdentifier","src":"7239:6:101"},"nativeSrc":"7239:51:101","nodeType":"YulFunctionCall","src":"7239:51:101"},"nativeSrc":"7239:51:101","nodeType":"YulExpressionStatement","src":"7239:51:101"}]},"name":"abi_encode_tuple_t_contract$_IRiskModule_$29295__to_t_address__fromStack_reversed","nativeSrc":"7072:224:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7163:9:101","nodeType":"YulTypedName","src":"7163:9:101","type":""},{"name":"value0","nativeSrc":"7174:6:101","nodeType":"YulTypedName","src":"7174:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7185:4:101","nodeType":"YulTypedName","src":"7185:4:101","type":""}],"src":"7072:224:101"},{"body":{"nativeSrc":"7374:86:101","nodeType":"YulBlock","src":"7374:86:101","statements":[{"body":{"nativeSrc":"7414:16:101","nodeType":"YulBlock","src":"7414:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7423:1:101","nodeType":"YulLiteral","src":"7423:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7426:1:101","nodeType":"YulLiteral","src":"7426:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7416:6:101","nodeType":"YulIdentifier","src":"7416:6:101"},"nativeSrc":"7416:12:101","nodeType":"YulFunctionCall","src":"7416:12:101"},"nativeSrc":"7416:12:101","nodeType":"YulExpressionStatement","src":"7416:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"7395:3:101","nodeType":"YulIdentifier","src":"7395:3:101"},{"name":"offset","nativeSrc":"7400:6:101","nodeType":"YulIdentifier","src":"7400:6:101"}],"functionName":{"name":"sub","nativeSrc":"7391:3:101","nodeType":"YulIdentifier","src":"7391:3:101"},"nativeSrc":"7391:16:101","nodeType":"YulFunctionCall","src":"7391:16:101"},{"kind":"number","nativeSrc":"7409:3:101","nodeType":"YulLiteral","src":"7409:3:101","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"7387:3:101","nodeType":"YulIdentifier","src":"7387:3:101"},"nativeSrc":"7387:26:101","nodeType":"YulFunctionCall","src":"7387:26:101"},"nativeSrc":"7384:46:101","nodeType":"YulIf","src":"7384:46:101"},{"nativeSrc":"7439:15:101","nodeType":"YulAssignment","src":"7439:15:101","value":{"name":"offset","nativeSrc":"7448:6:101","nodeType":"YulIdentifier","src":"7448:6:101"},"variableNames":[{"name":"value","nativeSrc":"7439:5:101","nodeType":"YulIdentifier","src":"7439:5:101"}]}]},"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"7301:159:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"7348:6:101","nodeType":"YulTypedName","src":"7348:6:101","type":""},{"name":"end","nativeSrc":"7356:3:101","nodeType":"YulTypedName","src":"7356:3:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"7364:5:101","nodeType":"YulTypedName","src":"7364:5:101","type":""}],"src":"7301:159:101"},{"body":{"nativeSrc":"7583:243:101","nodeType":"YulBlock","src":"7583:243:101","statements":[{"body":{"nativeSrc":"7630:16:101","nodeType":"YulBlock","src":"7630:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7639:1:101","nodeType":"YulLiteral","src":"7639:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7642:1:101","nodeType":"YulLiteral","src":"7642:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7632:6:101","nodeType":"YulIdentifier","src":"7632:6:101"},"nativeSrc":"7632:12:101","nodeType":"YulFunctionCall","src":"7632:12:101"},"nativeSrc":"7632:12:101","nodeType":"YulExpressionStatement","src":"7632:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7604:7:101","nodeType":"YulIdentifier","src":"7604:7:101"},{"name":"headStart","nativeSrc":"7613:9:101","nodeType":"YulIdentifier","src":"7613:9:101"}],"functionName":{"name":"sub","nativeSrc":"7600:3:101","nodeType":"YulIdentifier","src":"7600:3:101"},"nativeSrc":"7600:23:101","nodeType":"YulFunctionCall","src":"7600:23:101"},{"kind":"number","nativeSrc":"7625:3:101","nodeType":"YulLiteral","src":"7625:3:101","type":"","value":"416"}],"functionName":{"name":"slt","nativeSrc":"7596:3:101","nodeType":"YulIdentifier","src":"7596:3:101"},"nativeSrc":"7596:33:101","nodeType":"YulFunctionCall","src":"7596:33:101"},"nativeSrc":"7593:53:101","nodeType":"YulIf","src":"7593:53:101"},{"nativeSrc":"7655:67:101","nodeType":"YulAssignment","src":"7655:67:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7703:9:101","nodeType":"YulIdentifier","src":"7703:9:101"},{"name":"dataEnd","nativeSrc":"7714:7:101","nodeType":"YulIdentifier","src":"7714:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"7665:37:101","nodeType":"YulIdentifier","src":"7665:37:101"},"nativeSrc":"7665:57:101","nodeType":"YulFunctionCall","src":"7665:57:101"},"variableNames":[{"name":"value0","nativeSrc":"7655:6:101","nodeType":"YulIdentifier","src":"7655:6:101"}]},{"nativeSrc":"7731:14:101","nodeType":"YulVariableDeclaration","src":"7731:14:101","value":{"kind":"number","nativeSrc":"7744:1:101","nodeType":"YulLiteral","src":"7744:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"7735:5:101","nodeType":"YulTypedName","src":"7735:5:101","type":""}]},{"nativeSrc":"7754:42:101","nodeType":"YulAssignment","src":"7754:42:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7780:9:101","nodeType":"YulIdentifier","src":"7780:9:101"},{"kind":"number","nativeSrc":"7791:3:101","nodeType":"YulLiteral","src":"7791:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"7776:3:101","nodeType":"YulIdentifier","src":"7776:3:101"},"nativeSrc":"7776:19:101","nodeType":"YulFunctionCall","src":"7776:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"7763:12:101","nodeType":"YulIdentifier","src":"7763:12:101"},"nativeSrc":"7763:33:101","nodeType":"YulFunctionCall","src":"7763:33:101"},"variableNames":[{"name":"value","nativeSrc":"7754:5:101","nodeType":"YulIdentifier","src":"7754:5:101"}]},{"nativeSrc":"7805:15:101","nodeType":"YulAssignment","src":"7805:15:101","value":{"name":"value","nativeSrc":"7815:5:101","nodeType":"YulIdentifier","src":"7815:5:101"},"variableNames":[{"name":"value1","nativeSrc":"7805:6:101","nodeType":"YulIdentifier","src":"7805:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_uint256","nativeSrc":"7465:361:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7541:9:101","nodeType":"YulTypedName","src":"7541:9:101","type":""},{"name":"dataEnd","nativeSrc":"7552:7:101","nodeType":"YulTypedName","src":"7552:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7564:6:101","nodeType":"YulTypedName","src":"7564:6:101","type":""},{"name":"value1","nativeSrc":"7572:6:101","nodeType":"YulTypedName","src":"7572:6:101","type":""}],"src":"7465:361:101"},{"body":{"nativeSrc":"8018:867:101","nodeType":"YulBlock","src":"8018:867:101","statements":[{"body":{"nativeSrc":"8065:16:101","nodeType":"YulBlock","src":"8065:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8074:1:101","nodeType":"YulLiteral","src":"8074:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8077:1:101","nodeType":"YulLiteral","src":"8077:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8067:6:101","nodeType":"YulIdentifier","src":"8067:6:101"},"nativeSrc":"8067:12:101","nodeType":"YulFunctionCall","src":"8067:12:101"},"nativeSrc":"8067:12:101","nodeType":"YulExpressionStatement","src":"8067:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8039:7:101","nodeType":"YulIdentifier","src":"8039:7:101"},{"name":"headStart","nativeSrc":"8048:9:101","nodeType":"YulIdentifier","src":"8048:9:101"}],"functionName":{"name":"sub","nativeSrc":"8035:3:101","nodeType":"YulIdentifier","src":"8035:3:101"},"nativeSrc":"8035:23:101","nodeType":"YulFunctionCall","src":"8035:23:101"},{"kind":"number","nativeSrc":"8060:3:101","nodeType":"YulLiteral","src":"8060:3:101","type":"","value":"224"}],"functionName":{"name":"slt","nativeSrc":"8031:3:101","nodeType":"YulIdentifier","src":"8031:3:101"},"nativeSrc":"8031:33:101","nodeType":"YulFunctionCall","src":"8031:33:101"},"nativeSrc":"8028:53:101","nodeType":"YulIf","src":"8028:53:101"},{"nativeSrc":"8090:36:101","nodeType":"YulVariableDeclaration","src":"8090:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8116:9:101","nodeType":"YulIdentifier","src":"8116:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"8103:12:101","nodeType":"YulIdentifier","src":"8103:12:101"},"nativeSrc":"8103:23:101","nodeType":"YulFunctionCall","src":"8103:23:101"},"variables":[{"name":"value","nativeSrc":"8094:5:101","nodeType":"YulTypedName","src":"8094:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8160:5:101","nodeType":"YulIdentifier","src":"8160:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"8135:24:101","nodeType":"YulIdentifier","src":"8135:24:101"},"nativeSrc":"8135:31:101","nodeType":"YulFunctionCall","src":"8135:31:101"},"nativeSrc":"8135:31:101","nodeType":"YulExpressionStatement","src":"8135:31:101"},{"nativeSrc":"8175:15:101","nodeType":"YulAssignment","src":"8175:15:101","value":{"name":"value","nativeSrc":"8185:5:101","nodeType":"YulIdentifier","src":"8185:5:101"},"variableNames":[{"name":"value0","nativeSrc":"8175:6:101","nodeType":"YulIdentifier","src":"8175:6:101"}]},{"nativeSrc":"8199:16:101","nodeType":"YulVariableDeclaration","src":"8199:16:101","value":{"kind":"number","nativeSrc":"8214:1:101","nodeType":"YulLiteral","src":"8214:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"8203:7:101","nodeType":"YulTypedName","src":"8203:7:101","type":""}]},{"nativeSrc":"8224:43:101","nodeType":"YulAssignment","src":"8224:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8252:9:101","nodeType":"YulIdentifier","src":"8252:9:101"},{"kind":"number","nativeSrc":"8263:2:101","nodeType":"YulLiteral","src":"8263:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8248:3:101","nodeType":"YulIdentifier","src":"8248:3:101"},"nativeSrc":"8248:18:101","nodeType":"YulFunctionCall","src":"8248:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"8235:12:101","nodeType":"YulIdentifier","src":"8235:12:101"},"nativeSrc":"8235:32:101","nodeType":"YulFunctionCall","src":"8235:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"8224:7:101","nodeType":"YulIdentifier","src":"8224:7:101"}]},{"nativeSrc":"8276:17:101","nodeType":"YulAssignment","src":"8276:17:101","value":{"name":"value_1","nativeSrc":"8286:7:101","nodeType":"YulIdentifier","src":"8286:7:101"},"variableNames":[{"name":"value1","nativeSrc":"8276:6:101","nodeType":"YulIdentifier","src":"8276:6:101"}]},{"nativeSrc":"8302:47:101","nodeType":"YulVariableDeclaration","src":"8302:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8334:9:101","nodeType":"YulIdentifier","src":"8334:9:101"},{"kind":"number","nativeSrc":"8345:2:101","nodeType":"YulLiteral","src":"8345:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8330:3:101","nodeType":"YulIdentifier","src":"8330:3:101"},"nativeSrc":"8330:18:101","nodeType":"YulFunctionCall","src":"8330:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"8317:12:101","nodeType":"YulIdentifier","src":"8317:12:101"},"nativeSrc":"8317:32:101","nodeType":"YulFunctionCall","src":"8317:32:101"},"variables":[{"name":"value_2","nativeSrc":"8306:7:101","nodeType":"YulTypedName","src":"8306:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"8383:7:101","nodeType":"YulIdentifier","src":"8383:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"8358:24:101","nodeType":"YulIdentifier","src":"8358:24:101"},"nativeSrc":"8358:33:101","nodeType":"YulFunctionCall","src":"8358:33:101"},"nativeSrc":"8358:33:101","nodeType":"YulExpressionStatement","src":"8358:33:101"},{"nativeSrc":"8400:17:101","nodeType":"YulAssignment","src":"8400:17:101","value":{"name":"value_2","nativeSrc":"8410:7:101","nodeType":"YulIdentifier","src":"8410:7:101"},"variableNames":[{"name":"value2","nativeSrc":"8400:6:101","nodeType":"YulIdentifier","src":"8400:6:101"}]},{"nativeSrc":"8426:16:101","nodeType":"YulVariableDeclaration","src":"8426:16:101","value":{"kind":"number","nativeSrc":"8441:1:101","nodeType":"YulLiteral","src":"8441:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"8430:7:101","nodeType":"YulTypedName","src":"8430:7:101","type":""}]},{"nativeSrc":"8451:43:101","nodeType":"YulAssignment","src":"8451:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8479:9:101","nodeType":"YulIdentifier","src":"8479:9:101"},{"kind":"number","nativeSrc":"8490:2:101","nodeType":"YulLiteral","src":"8490:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8475:3:101","nodeType":"YulIdentifier","src":"8475:3:101"},"nativeSrc":"8475:18:101","nodeType":"YulFunctionCall","src":"8475:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"8462:12:101","nodeType":"YulIdentifier","src":"8462:12:101"},"nativeSrc":"8462:32:101","nodeType":"YulFunctionCall","src":"8462:32:101"},"variableNames":[{"name":"value_3","nativeSrc":"8451:7:101","nodeType":"YulIdentifier","src":"8451:7:101"}]},{"nativeSrc":"8503:17:101","nodeType":"YulAssignment","src":"8503:17:101","value":{"name":"value_3","nativeSrc":"8513:7:101","nodeType":"YulIdentifier","src":"8513:7:101"},"variableNames":[{"name":"value3","nativeSrc":"8503:6:101","nodeType":"YulIdentifier","src":"8503:6:101"}]},{"nativeSrc":"8529:48:101","nodeType":"YulVariableDeclaration","src":"8529:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8561:9:101","nodeType":"YulIdentifier","src":"8561:9:101"},{"kind":"number","nativeSrc":"8572:3:101","nodeType":"YulLiteral","src":"8572:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"8557:3:101","nodeType":"YulIdentifier","src":"8557:3:101"},"nativeSrc":"8557:19:101","nodeType":"YulFunctionCall","src":"8557:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"8544:12:101","nodeType":"YulIdentifier","src":"8544:12:101"},"nativeSrc":"8544:33:101","nodeType":"YulFunctionCall","src":"8544:33:101"},"variables":[{"name":"value_4","nativeSrc":"8533:7:101","nodeType":"YulTypedName","src":"8533:7:101","type":""}]},{"body":{"nativeSrc":"8629:16:101","nodeType":"YulBlock","src":"8629:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8638:1:101","nodeType":"YulLiteral","src":"8638:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8641:1:101","nodeType":"YulLiteral","src":"8641:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8631:6:101","nodeType":"YulIdentifier","src":"8631:6:101"},"nativeSrc":"8631:12:101","nodeType":"YulFunctionCall","src":"8631:12:101"},"nativeSrc":"8631:12:101","nodeType":"YulExpressionStatement","src":"8631:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value_4","nativeSrc":"8599:7:101","nodeType":"YulIdentifier","src":"8599:7:101"},{"arguments":[{"name":"value_4","nativeSrc":"8612:7:101","nodeType":"YulIdentifier","src":"8612:7:101"},{"kind":"number","nativeSrc":"8621:4:101","nodeType":"YulLiteral","src":"8621:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"8608:3:101","nodeType":"YulIdentifier","src":"8608:3:101"},"nativeSrc":"8608:18:101","nodeType":"YulFunctionCall","src":"8608:18:101"}],"functionName":{"name":"eq","nativeSrc":"8596:2:101","nodeType":"YulIdentifier","src":"8596:2:101"},"nativeSrc":"8596:31:101","nodeType":"YulFunctionCall","src":"8596:31:101"}],"functionName":{"name":"iszero","nativeSrc":"8589:6:101","nodeType":"YulIdentifier","src":"8589:6:101"},"nativeSrc":"8589:39:101","nodeType":"YulFunctionCall","src":"8589:39:101"},"nativeSrc":"8586:59:101","nodeType":"YulIf","src":"8586:59:101"},{"nativeSrc":"8654:17:101","nodeType":"YulAssignment","src":"8654:17:101","value":{"name":"value_4","nativeSrc":"8664:7:101","nodeType":"YulIdentifier","src":"8664:7:101"},"variableNames":[{"name":"value4","nativeSrc":"8654:6:101","nodeType":"YulIdentifier","src":"8654:6:101"}]},{"nativeSrc":"8680:16:101","nodeType":"YulVariableDeclaration","src":"8680:16:101","value":{"kind":"number","nativeSrc":"8695:1:101","nodeType":"YulLiteral","src":"8695:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"8684:7:101","nodeType":"YulTypedName","src":"8684:7:101","type":""}]},{"nativeSrc":"8705:44:101","nodeType":"YulAssignment","src":"8705:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8733:9:101","nodeType":"YulIdentifier","src":"8733:9:101"},{"kind":"number","nativeSrc":"8744:3:101","nodeType":"YulLiteral","src":"8744:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"8729:3:101","nodeType":"YulIdentifier","src":"8729:3:101"},"nativeSrc":"8729:19:101","nodeType":"YulFunctionCall","src":"8729:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"8716:12:101","nodeType":"YulIdentifier","src":"8716:12:101"},"nativeSrc":"8716:33:101","nodeType":"YulFunctionCall","src":"8716:33:101"},"variableNames":[{"name":"value_5","nativeSrc":"8705:7:101","nodeType":"YulIdentifier","src":"8705:7:101"}]},{"nativeSrc":"8758:17:101","nodeType":"YulAssignment","src":"8758:17:101","value":{"name":"value_5","nativeSrc":"8768:7:101","nodeType":"YulIdentifier","src":"8768:7:101"},"variableNames":[{"name":"value5","nativeSrc":"8758:6:101","nodeType":"YulIdentifier","src":"8758:6:101"}]},{"nativeSrc":"8784:16:101","nodeType":"YulVariableDeclaration","src":"8784:16:101","value":{"kind":"number","nativeSrc":"8799:1:101","nodeType":"YulLiteral","src":"8799:1:101","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"8788:7:101","nodeType":"YulTypedName","src":"8788:7:101","type":""}]},{"nativeSrc":"8809:44:101","nodeType":"YulAssignment","src":"8809:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8837:9:101","nodeType":"YulIdentifier","src":"8837:9:101"},{"kind":"number","nativeSrc":"8848:3:101","nodeType":"YulLiteral","src":"8848:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"8833:3:101","nodeType":"YulIdentifier","src":"8833:3:101"},"nativeSrc":"8833:19:101","nodeType":"YulFunctionCall","src":"8833:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"8820:12:101","nodeType":"YulIdentifier","src":"8820:12:101"},"nativeSrc":"8820:33:101","nodeType":"YulFunctionCall","src":"8820:33:101"},"variableNames":[{"name":"value_6","nativeSrc":"8809:7:101","nodeType":"YulIdentifier","src":"8809:7:101"}]},{"nativeSrc":"8862:17:101","nodeType":"YulAssignment","src":"8862:17:101","value":{"name":"value_6","nativeSrc":"8872:7:101","nodeType":"YulIdentifier","src":"8872:7:101"},"variableNames":[{"name":"value6","nativeSrc":"8862:6:101","nodeType":"YulIdentifier","src":"8862:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_addresst_uint256t_uint8t_bytes32t_bytes32","nativeSrc":"7831:1054:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7936:9:101","nodeType":"YulTypedName","src":"7936:9:101","type":""},{"name":"dataEnd","nativeSrc":"7947:7:101","nodeType":"YulTypedName","src":"7947:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7959:6:101","nodeType":"YulTypedName","src":"7959:6:101","type":""},{"name":"value1","nativeSrc":"7967:6:101","nodeType":"YulTypedName","src":"7967:6:101","type":""},{"name":"value2","nativeSrc":"7975:6:101","nodeType":"YulTypedName","src":"7975:6:101","type":""},{"name":"value3","nativeSrc":"7983:6:101","nodeType":"YulTypedName","src":"7983:6:101","type":""},{"name":"value4","nativeSrc":"7991:6:101","nodeType":"YulTypedName","src":"7991:6:101","type":""},{"name":"value5","nativeSrc":"7999:6:101","nodeType":"YulTypedName","src":"7999:6:101","type":""},{"name":"value6","nativeSrc":"8007:6:101","nodeType":"YulTypedName","src":"8007:6:101","type":""}],"src":"7831:1054:101"},{"body":{"nativeSrc":"9028:529:101","nodeType":"YulBlock","src":"9028:529:101","statements":[{"body":{"nativeSrc":"9075:16:101","nodeType":"YulBlock","src":"9075:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9084:1:101","nodeType":"YulLiteral","src":"9084:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9087:1:101","nodeType":"YulLiteral","src":"9087:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9077:6:101","nodeType":"YulIdentifier","src":"9077:6:101"},"nativeSrc":"9077:12:101","nodeType":"YulFunctionCall","src":"9077:12:101"},"nativeSrc":"9077:12:101","nodeType":"YulExpressionStatement","src":"9077:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9049:7:101","nodeType":"YulIdentifier","src":"9049:7:101"},{"name":"headStart","nativeSrc":"9058:9:101","nodeType":"YulIdentifier","src":"9058:9:101"}],"functionName":{"name":"sub","nativeSrc":"9045:3:101","nodeType":"YulIdentifier","src":"9045:3:101"},"nativeSrc":"9045:23:101","nodeType":"YulFunctionCall","src":"9045:23:101"},{"kind":"number","nativeSrc":"9070:3:101","nodeType":"YulLiteral","src":"9070:3:101","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"9041:3:101","nodeType":"YulIdentifier","src":"9041:3:101"},"nativeSrc":"9041:33:101","nodeType":"YulFunctionCall","src":"9041:33:101"},"nativeSrc":"9038:53:101","nodeType":"YulIf","src":"9038:53:101"},{"nativeSrc":"9100:36:101","nodeType":"YulVariableDeclaration","src":"9100:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"9126:9:101","nodeType":"YulIdentifier","src":"9126:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"9113:12:101","nodeType":"YulIdentifier","src":"9113:12:101"},"nativeSrc":"9113:23:101","nodeType":"YulFunctionCall","src":"9113:23:101"},"variables":[{"name":"value","nativeSrc":"9104:5:101","nodeType":"YulTypedName","src":"9104:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"9170:5:101","nodeType":"YulIdentifier","src":"9170:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"9145:24:101","nodeType":"YulIdentifier","src":"9145:24:101"},"nativeSrc":"9145:31:101","nodeType":"YulFunctionCall","src":"9145:31:101"},"nativeSrc":"9145:31:101","nodeType":"YulExpressionStatement","src":"9145:31:101"},{"nativeSrc":"9185:15:101","nodeType":"YulAssignment","src":"9185:15:101","value":{"name":"value","nativeSrc":"9195:5:101","nodeType":"YulIdentifier","src":"9195:5:101"},"variableNames":[{"name":"value0","nativeSrc":"9185:6:101","nodeType":"YulIdentifier","src":"9185:6:101"}]},{"nativeSrc":"9209:16:101","nodeType":"YulVariableDeclaration","src":"9209:16:101","value":{"kind":"number","nativeSrc":"9224:1:101","nodeType":"YulLiteral","src":"9224:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"9213:7:101","nodeType":"YulTypedName","src":"9213:7:101","type":""}]},{"nativeSrc":"9234:43:101","nodeType":"YulAssignment","src":"9234:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9262:9:101","nodeType":"YulIdentifier","src":"9262:9:101"},{"kind":"number","nativeSrc":"9273:2:101","nodeType":"YulLiteral","src":"9273:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9258:3:101","nodeType":"YulIdentifier","src":"9258:3:101"},"nativeSrc":"9258:18:101","nodeType":"YulFunctionCall","src":"9258:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"9245:12:101","nodeType":"YulIdentifier","src":"9245:12:101"},"nativeSrc":"9245:32:101","nodeType":"YulFunctionCall","src":"9245:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"9234:7:101","nodeType":"YulIdentifier","src":"9234:7:101"}]},{"nativeSrc":"9286:17:101","nodeType":"YulAssignment","src":"9286:17:101","value":{"name":"value_1","nativeSrc":"9296:7:101","nodeType":"YulIdentifier","src":"9296:7:101"},"variableNames":[{"name":"value1","nativeSrc":"9286:6:101","nodeType":"YulIdentifier","src":"9286:6:101"}]},{"nativeSrc":"9312:47:101","nodeType":"YulVariableDeclaration","src":"9312:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9344:9:101","nodeType":"YulIdentifier","src":"9344:9:101"},{"kind":"number","nativeSrc":"9355:2:101","nodeType":"YulLiteral","src":"9355:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9340:3:101","nodeType":"YulIdentifier","src":"9340:3:101"},"nativeSrc":"9340:18:101","nodeType":"YulFunctionCall","src":"9340:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"9327:12:101","nodeType":"YulIdentifier","src":"9327:12:101"},"nativeSrc":"9327:32:101","nodeType":"YulFunctionCall","src":"9327:32:101"},"variables":[{"name":"value_2","nativeSrc":"9316:7:101","nodeType":"YulTypedName","src":"9316:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"9393:7:101","nodeType":"YulIdentifier","src":"9393:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"9368:24:101","nodeType":"YulIdentifier","src":"9368:24:101"},"nativeSrc":"9368:33:101","nodeType":"YulFunctionCall","src":"9368:33:101"},"nativeSrc":"9368:33:101","nodeType":"YulExpressionStatement","src":"9368:33:101"},{"nativeSrc":"9410:17:101","nodeType":"YulAssignment","src":"9410:17:101","value":{"name":"value_2","nativeSrc":"9420:7:101","nodeType":"YulIdentifier","src":"9420:7:101"},"variableNames":[{"name":"value2","nativeSrc":"9410:6:101","nodeType":"YulIdentifier","src":"9410:6:101"}]},{"nativeSrc":"9436:47:101","nodeType":"YulVariableDeclaration","src":"9436:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9468:9:101","nodeType":"YulIdentifier","src":"9468:9:101"},{"kind":"number","nativeSrc":"9479:2:101","nodeType":"YulLiteral","src":"9479:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"9464:3:101","nodeType":"YulIdentifier","src":"9464:3:101"},"nativeSrc":"9464:18:101","nodeType":"YulFunctionCall","src":"9464:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"9451:12:101","nodeType":"YulIdentifier","src":"9451:12:101"},"nativeSrc":"9451:32:101","nodeType":"YulFunctionCall","src":"9451:32:101"},"variables":[{"name":"value_3","nativeSrc":"9440:7:101","nodeType":"YulTypedName","src":"9440:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"9517:7:101","nodeType":"YulIdentifier","src":"9517:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"9492:24:101","nodeType":"YulIdentifier","src":"9492:24:101"},"nativeSrc":"9492:33:101","nodeType":"YulFunctionCall","src":"9492:33:101"},"nativeSrc":"9492:33:101","nodeType":"YulExpressionStatement","src":"9492:33:101"},{"nativeSrc":"9534:17:101","nodeType":"YulAssignment","src":"9534:17:101","value":{"name":"value_3","nativeSrc":"9544:7:101","nodeType":"YulIdentifier","src":"9544:7:101"},"variableNames":[{"name":"value3","nativeSrc":"9534:6:101","nodeType":"YulIdentifier","src":"9534:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_addresst_address","nativeSrc":"8890:667:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8970:9:101","nodeType":"YulTypedName","src":"8970:9:101","type":""},{"name":"dataEnd","nativeSrc":"8981:7:101","nodeType":"YulTypedName","src":"8981:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8993:6:101","nodeType":"YulTypedName","src":"8993:6:101","type":""},{"name":"value1","nativeSrc":"9001:6:101","nodeType":"YulTypedName","src":"9001:6:101","type":""},{"name":"value2","nativeSrc":"9009:6:101","nodeType":"YulTypedName","src":"9009:6:101","type":""},{"name":"value3","nativeSrc":"9017:6:101","nodeType":"YulTypedName","src":"9017:6:101","type":""}],"src":"8890:667:101"},{"body":{"nativeSrc":"9686:102:101","nodeType":"YulBlock","src":"9686:102:101","statements":[{"nativeSrc":"9696:26:101","nodeType":"YulAssignment","src":"9696:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"9708:9:101","nodeType":"YulIdentifier","src":"9708:9:101"},{"kind":"number","nativeSrc":"9719:2:101","nodeType":"YulLiteral","src":"9719:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9704:3:101","nodeType":"YulIdentifier","src":"9704:3:101"},"nativeSrc":"9704:18:101","nodeType":"YulFunctionCall","src":"9704:18:101"},"variableNames":[{"name":"tail","nativeSrc":"9696:4:101","nodeType":"YulIdentifier","src":"9696:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9738:9:101","nodeType":"YulIdentifier","src":"9738:9:101"},{"arguments":[{"name":"value0","nativeSrc":"9753:6:101","nodeType":"YulIdentifier","src":"9753:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9769:3:101","nodeType":"YulLiteral","src":"9769:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"9774:1:101","nodeType":"YulLiteral","src":"9774:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"9765:3:101","nodeType":"YulIdentifier","src":"9765:3:101"},"nativeSrc":"9765:11:101","nodeType":"YulFunctionCall","src":"9765:11:101"},{"kind":"number","nativeSrc":"9778:1:101","nodeType":"YulLiteral","src":"9778:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"9761:3:101","nodeType":"YulIdentifier","src":"9761:3:101"},"nativeSrc":"9761:19:101","nodeType":"YulFunctionCall","src":"9761:19:101"}],"functionName":{"name":"and","nativeSrc":"9749:3:101","nodeType":"YulIdentifier","src":"9749:3:101"},"nativeSrc":"9749:32:101","nodeType":"YulFunctionCall","src":"9749:32:101"}],"functionName":{"name":"mstore","nativeSrc":"9731:6:101","nodeType":"YulIdentifier","src":"9731:6:101"},"nativeSrc":"9731:51:101","nodeType":"YulFunctionCall","src":"9731:51:101"},"nativeSrc":"9731:51:101","nodeType":"YulExpressionStatement","src":"9731:51:101"}]},"name":"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed","nativeSrc":"9562:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9655:9:101","nodeType":"YulTypedName","src":"9655:9:101","type":""},{"name":"value0","nativeSrc":"9666:6:101","nodeType":"YulTypedName","src":"9666:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9677:4:101","nodeType":"YulTypedName","src":"9677:4:101","type":""}],"src":"9562:226:101"},{"body":{"nativeSrc":"9914:404:101","nodeType":"YulBlock","src":"9914:404:101","statements":[{"body":{"nativeSrc":"9960:16:101","nodeType":"YulBlock","src":"9960:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9969:1:101","nodeType":"YulLiteral","src":"9969:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9972:1:101","nodeType":"YulLiteral","src":"9972:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9962:6:101","nodeType":"YulIdentifier","src":"9962:6:101"},"nativeSrc":"9962:12:101","nodeType":"YulFunctionCall","src":"9962:12:101"},"nativeSrc":"9962:12:101","nodeType":"YulExpressionStatement","src":"9962:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9935:7:101","nodeType":"YulIdentifier","src":"9935:7:101"},{"name":"headStart","nativeSrc":"9944:9:101","nodeType":"YulIdentifier","src":"9944:9:101"}],"functionName":{"name":"sub","nativeSrc":"9931:3:101","nodeType":"YulIdentifier","src":"9931:3:101"},"nativeSrc":"9931:23:101","nodeType":"YulFunctionCall","src":"9931:23:101"},{"kind":"number","nativeSrc":"9956:2:101","nodeType":"YulLiteral","src":"9956:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"9927:3:101","nodeType":"YulIdentifier","src":"9927:3:101"},"nativeSrc":"9927:32:101","nodeType":"YulFunctionCall","src":"9927:32:101"},"nativeSrc":"9924:52:101","nodeType":"YulIf","src":"9924:52:101"},{"nativeSrc":"9985:36:101","nodeType":"YulVariableDeclaration","src":"9985:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10011:9:101","nodeType":"YulIdentifier","src":"10011:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"9998:12:101","nodeType":"YulIdentifier","src":"9998:12:101"},"nativeSrc":"9998:23:101","nodeType":"YulFunctionCall","src":"9998:23:101"},"variables":[{"name":"value","nativeSrc":"9989:5:101","nodeType":"YulTypedName","src":"9989:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10055:5:101","nodeType":"YulIdentifier","src":"10055:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10030:24:101","nodeType":"YulIdentifier","src":"10030:24:101"},"nativeSrc":"10030:31:101","nodeType":"YulFunctionCall","src":"10030:31:101"},"nativeSrc":"10030:31:101","nodeType":"YulExpressionStatement","src":"10030:31:101"},{"nativeSrc":"10070:15:101","nodeType":"YulAssignment","src":"10070:15:101","value":{"name":"value","nativeSrc":"10080:5:101","nodeType":"YulIdentifier","src":"10080:5:101"},"variableNames":[{"name":"value0","nativeSrc":"10070:6:101","nodeType":"YulIdentifier","src":"10070:6:101"}]},{"nativeSrc":"10094:16:101","nodeType":"YulVariableDeclaration","src":"10094:16:101","value":{"kind":"number","nativeSrc":"10109:1:101","nodeType":"YulLiteral","src":"10109:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"10098:7:101","nodeType":"YulTypedName","src":"10098:7:101","type":""}]},{"nativeSrc":"10119:43:101","nodeType":"YulAssignment","src":"10119:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10147:9:101","nodeType":"YulIdentifier","src":"10147:9:101"},{"kind":"number","nativeSrc":"10158:2:101","nodeType":"YulLiteral","src":"10158:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10143:3:101","nodeType":"YulIdentifier","src":"10143:3:101"},"nativeSrc":"10143:18:101","nodeType":"YulFunctionCall","src":"10143:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"10130:12:101","nodeType":"YulIdentifier","src":"10130:12:101"},"nativeSrc":"10130:32:101","nodeType":"YulFunctionCall","src":"10130:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"10119:7:101","nodeType":"YulIdentifier","src":"10119:7:101"}]},{"nativeSrc":"10171:17:101","nodeType":"YulAssignment","src":"10171:17:101","value":{"name":"value_1","nativeSrc":"10181:7:101","nodeType":"YulIdentifier","src":"10181:7:101"},"variableNames":[{"name":"value1","nativeSrc":"10171:6:101","nodeType":"YulIdentifier","src":"10171:6:101"}]},{"nativeSrc":"10197:47:101","nodeType":"YulVariableDeclaration","src":"10197:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10229:9:101","nodeType":"YulIdentifier","src":"10229:9:101"},{"kind":"number","nativeSrc":"10240:2:101","nodeType":"YulLiteral","src":"10240:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10225:3:101","nodeType":"YulIdentifier","src":"10225:3:101"},"nativeSrc":"10225:18:101","nodeType":"YulFunctionCall","src":"10225:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"10212:12:101","nodeType":"YulIdentifier","src":"10212:12:101"},"nativeSrc":"10212:32:101","nodeType":"YulFunctionCall","src":"10212:32:101"},"variables":[{"name":"value_2","nativeSrc":"10201:7:101","nodeType":"YulTypedName","src":"10201:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"10278:7:101","nodeType":"YulIdentifier","src":"10278:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10253:24:101","nodeType":"YulIdentifier","src":"10253:24:101"},"nativeSrc":"10253:33:101","nodeType":"YulFunctionCall","src":"10253:33:101"},"nativeSrc":"10253:33:101","nodeType":"YulExpressionStatement","src":"10253:33:101"},{"nativeSrc":"10295:17:101","nodeType":"YulAssignment","src":"10295:17:101","value":{"name":"value_2","nativeSrc":"10305:7:101","nodeType":"YulIdentifier","src":"10305:7:101"},"variableNames":[{"name":"value2","nativeSrc":"10295:6:101","nodeType":"YulIdentifier","src":"10295:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_address","nativeSrc":"9793:525:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9864:9:101","nodeType":"YulTypedName","src":"9864:9:101","type":""},{"name":"dataEnd","nativeSrc":"9875:7:101","nodeType":"YulTypedName","src":"9875:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9887:6:101","nodeType":"YulTypedName","src":"9887:6:101","type":""},{"name":"value1","nativeSrc":"9895:6:101","nodeType":"YulTypedName","src":"9895:6:101","type":""},{"name":"value2","nativeSrc":"9903:6:101","nodeType":"YulTypedName","src":"9903:6:101","type":""}],"src":"9793:525:101"},{"body":{"nativeSrc":"10424:145:101","nodeType":"YulBlock","src":"10424:145:101","statements":[{"body":{"nativeSrc":"10471:16:101","nodeType":"YulBlock","src":"10471:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10480:1:101","nodeType":"YulLiteral","src":"10480:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"10483:1:101","nodeType":"YulLiteral","src":"10483:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10473:6:101","nodeType":"YulIdentifier","src":"10473:6:101"},"nativeSrc":"10473:12:101","nodeType":"YulFunctionCall","src":"10473:12:101"},"nativeSrc":"10473:12:101","nodeType":"YulExpressionStatement","src":"10473:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10445:7:101","nodeType":"YulIdentifier","src":"10445:7:101"},{"name":"headStart","nativeSrc":"10454:9:101","nodeType":"YulIdentifier","src":"10454:9:101"}],"functionName":{"name":"sub","nativeSrc":"10441:3:101","nodeType":"YulIdentifier","src":"10441:3:101"},"nativeSrc":"10441:23:101","nodeType":"YulFunctionCall","src":"10441:23:101"},{"kind":"number","nativeSrc":"10466:3:101","nodeType":"YulLiteral","src":"10466:3:101","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"10437:3:101","nodeType":"YulIdentifier","src":"10437:3:101"},"nativeSrc":"10437:33:101","nodeType":"YulFunctionCall","src":"10437:33:101"},"nativeSrc":"10434:53:101","nodeType":"YulIf","src":"10434:53:101"},{"nativeSrc":"10496:67:101","nodeType":"YulAssignment","src":"10496:67:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10544:9:101","nodeType":"YulIdentifier","src":"10544:9:101"},{"name":"dataEnd","nativeSrc":"10555:7:101","nodeType":"YulIdentifier","src":"10555:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"10506:37:101","nodeType":"YulIdentifier","src":"10506:37:101"},"nativeSrc":"10506:57:101","nodeType":"YulFunctionCall","src":"10506:57:101"},"variableNames":[{"name":"value0","nativeSrc":"10496:6:101","nodeType":"YulIdentifier","src":"10496:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptr","nativeSrc":"10323:246:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10390:9:101","nodeType":"YulTypedName","src":"10390:9:101","type":""},{"name":"dataEnd","nativeSrc":"10401:7:101","nodeType":"YulTypedName","src":"10401:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10413:6:101","nodeType":"YulTypedName","src":"10413:6:101","type":""}],"src":"10323:246:101"},{"body":{"nativeSrc":"10617:53:101","nodeType":"YulBlock","src":"10617:53:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"10634:3:101","nodeType":"YulIdentifier","src":"10634:3:101"},{"arguments":[{"name":"value","nativeSrc":"10643:5:101","nodeType":"YulIdentifier","src":"10643:5:101"},{"kind":"number","nativeSrc":"10650:12:101","nodeType":"YulLiteral","src":"10650:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"10639:3:101","nodeType":"YulIdentifier","src":"10639:3:101"},"nativeSrc":"10639:24:101","nodeType":"YulFunctionCall","src":"10639:24:101"}],"functionName":{"name":"mstore","nativeSrc":"10627:6:101","nodeType":"YulIdentifier","src":"10627:6:101"},"nativeSrc":"10627:37:101","nodeType":"YulFunctionCall","src":"10627:37:101"},"nativeSrc":"10627:37:101","nodeType":"YulExpressionStatement","src":"10627:37:101"}]},"name":"abi_encode_uint40","nativeSrc":"10574:96:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"10601:5:101","nodeType":"YulTypedName","src":"10601:5:101","type":""},{"name":"pos","nativeSrc":"10608:3:101","nodeType":"YulTypedName","src":"10608:3:101","type":""}],"src":"10574:96:101"},{"body":{"nativeSrc":"10834:901:101","nodeType":"YulBlock","src":"10834:901:101","statements":[{"nativeSrc":"10844:27:101","nodeType":"YulAssignment","src":"10844:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10856:9:101","nodeType":"YulIdentifier","src":"10856:9:101"},{"kind":"number","nativeSrc":"10867:3:101","nodeType":"YulLiteral","src":"10867:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"10852:3:101","nodeType":"YulIdentifier","src":"10852:3:101"},"nativeSrc":"10852:19:101","nodeType":"YulFunctionCall","src":"10852:19:101"},"variableNames":[{"name":"tail","nativeSrc":"10844:4:101","nodeType":"YulIdentifier","src":"10844:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10887:9:101","nodeType":"YulIdentifier","src":"10887:9:101"},{"arguments":[{"name":"value0","nativeSrc":"10904:6:101","nodeType":"YulIdentifier","src":"10904:6:101"}],"functionName":{"name":"mload","nativeSrc":"10898:5:101","nodeType":"YulIdentifier","src":"10898:5:101"},"nativeSrc":"10898:13:101","nodeType":"YulFunctionCall","src":"10898:13:101"}],"functionName":{"name":"mstore","nativeSrc":"10880:6:101","nodeType":"YulIdentifier","src":"10880:6:101"},"nativeSrc":"10880:32:101","nodeType":"YulFunctionCall","src":"10880:32:101"},"nativeSrc":"10880:32:101","nodeType":"YulExpressionStatement","src":"10880:32:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10932:9:101","nodeType":"YulIdentifier","src":"10932:9:101"},{"kind":"number","nativeSrc":"10943:4:101","nodeType":"YulLiteral","src":"10943:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"10928:3:101","nodeType":"YulIdentifier","src":"10928:3:101"},"nativeSrc":"10928:20:101","nodeType":"YulFunctionCall","src":"10928:20:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"10960:6:101","nodeType":"YulIdentifier","src":"10960:6:101"},{"kind":"number","nativeSrc":"10968:4:101","nodeType":"YulLiteral","src":"10968:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"10956:3:101","nodeType":"YulIdentifier","src":"10956:3:101"},"nativeSrc":"10956:17:101","nodeType":"YulFunctionCall","src":"10956:17:101"}],"functionName":{"name":"mload","nativeSrc":"10950:5:101","nodeType":"YulIdentifier","src":"10950:5:101"},"nativeSrc":"10950:24:101","nodeType":"YulFunctionCall","src":"10950:24:101"}],"functionName":{"name":"mstore","nativeSrc":"10921:6:101","nodeType":"YulIdentifier","src":"10921:6:101"},"nativeSrc":"10921:54:101","nodeType":"YulFunctionCall","src":"10921:54:101"},"nativeSrc":"10921:54:101","nodeType":"YulExpressionStatement","src":"10921:54:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10995:9:101","nodeType":"YulIdentifier","src":"10995:9:101"},{"kind":"number","nativeSrc":"11006:4:101","nodeType":"YulLiteral","src":"11006:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"10991:3:101","nodeType":"YulIdentifier","src":"10991:3:101"},"nativeSrc":"10991:20:101","nodeType":"YulFunctionCall","src":"10991:20:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"11023:6:101","nodeType":"YulIdentifier","src":"11023:6:101"},{"kind":"number","nativeSrc":"11031:4:101","nodeType":"YulLiteral","src":"11031:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"11019:3:101","nodeType":"YulIdentifier","src":"11019:3:101"},"nativeSrc":"11019:17:101","nodeType":"YulFunctionCall","src":"11019:17:101"}],"functionName":{"name":"mload","nativeSrc":"11013:5:101","nodeType":"YulIdentifier","src":"11013:5:101"},"nativeSrc":"11013:24:101","nodeType":"YulFunctionCall","src":"11013:24:101"}],"functionName":{"name":"mstore","nativeSrc":"10984:6:101","nodeType":"YulIdentifier","src":"10984:6:101"},"nativeSrc":"10984:54:101","nodeType":"YulFunctionCall","src":"10984:54:101"},"nativeSrc":"10984:54:101","nodeType":"YulExpressionStatement","src":"10984:54:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11058:9:101","nodeType":"YulIdentifier","src":"11058:9:101"},{"kind":"number","nativeSrc":"11069:4:101","nodeType":"YulLiteral","src":"11069:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"11054:3:101","nodeType":"YulIdentifier","src":"11054:3:101"},"nativeSrc":"11054:20:101","nodeType":"YulFunctionCall","src":"11054:20:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"11086:6:101","nodeType":"YulIdentifier","src":"11086:6:101"},{"kind":"number","nativeSrc":"11094:4:101","nodeType":"YulLiteral","src":"11094:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"11082:3:101","nodeType":"YulIdentifier","src":"11082:3:101"},"nativeSrc":"11082:17:101","nodeType":"YulFunctionCall","src":"11082:17:101"}],"functionName":{"name":"mload","nativeSrc":"11076:5:101","nodeType":"YulIdentifier","src":"11076:5:101"},"nativeSrc":"11076:24:101","nodeType":"YulFunctionCall","src":"11076:24:101"}],"functionName":{"name":"mstore","nativeSrc":"11047:6:101","nodeType":"YulIdentifier","src":"11047:6:101"},"nativeSrc":"11047:54:101","nodeType":"YulFunctionCall","src":"11047:54:101"},"nativeSrc":"11047:54:101","nodeType":"YulExpressionStatement","src":"11047:54:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11121:9:101","nodeType":"YulIdentifier","src":"11121:9:101"},{"kind":"number","nativeSrc":"11132:4:101","nodeType":"YulLiteral","src":"11132:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"11117:3:101","nodeType":"YulIdentifier","src":"11117:3:101"},"nativeSrc":"11117:20:101","nodeType":"YulFunctionCall","src":"11117:20:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"11149:6:101","nodeType":"YulIdentifier","src":"11149:6:101"},{"kind":"number","nativeSrc":"11157:4:101","nodeType":"YulLiteral","src":"11157:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"11145:3:101","nodeType":"YulIdentifier","src":"11145:3:101"},"nativeSrc":"11145:17:101","nodeType":"YulFunctionCall","src":"11145:17:101"}],"functionName":{"name":"mload","nativeSrc":"11139:5:101","nodeType":"YulIdentifier","src":"11139:5:101"},"nativeSrc":"11139:24:101","nodeType":"YulFunctionCall","src":"11139:24:101"}],"functionName":{"name":"mstore","nativeSrc":"11110:6:101","nodeType":"YulIdentifier","src":"11110:6:101"},"nativeSrc":"11110:54:101","nodeType":"YulFunctionCall","src":"11110:54:101"},"nativeSrc":"11110:54:101","nodeType":"YulExpressionStatement","src":"11110:54:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11184:9:101","nodeType":"YulIdentifier","src":"11184:9:101"},{"kind":"number","nativeSrc":"11195:4:101","nodeType":"YulLiteral","src":"11195:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"11180:3:101","nodeType":"YulIdentifier","src":"11180:3:101"},"nativeSrc":"11180:20:101","nodeType":"YulFunctionCall","src":"11180:20:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"11212:6:101","nodeType":"YulIdentifier","src":"11212:6:101"},{"kind":"number","nativeSrc":"11220:4:101","nodeType":"YulLiteral","src":"11220:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"11208:3:101","nodeType":"YulIdentifier","src":"11208:3:101"},"nativeSrc":"11208:17:101","nodeType":"YulFunctionCall","src":"11208:17:101"}],"functionName":{"name":"mload","nativeSrc":"11202:5:101","nodeType":"YulIdentifier","src":"11202:5:101"},"nativeSrc":"11202:24:101","nodeType":"YulFunctionCall","src":"11202:24:101"}],"functionName":{"name":"mstore","nativeSrc":"11173:6:101","nodeType":"YulIdentifier","src":"11173:6:101"},"nativeSrc":"11173:54:101","nodeType":"YulFunctionCall","src":"11173:54:101"},"nativeSrc":"11173:54:101","nodeType":"YulExpressionStatement","src":"11173:54:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11247:9:101","nodeType":"YulIdentifier","src":"11247:9:101"},{"kind":"number","nativeSrc":"11258:4:101","nodeType":"YulLiteral","src":"11258:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"11243:3:101","nodeType":"YulIdentifier","src":"11243:3:101"},"nativeSrc":"11243:20:101","nodeType":"YulFunctionCall","src":"11243:20:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"11275:6:101","nodeType":"YulIdentifier","src":"11275:6:101"},{"kind":"number","nativeSrc":"11283:4:101","nodeType":"YulLiteral","src":"11283:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"11271:3:101","nodeType":"YulIdentifier","src":"11271:3:101"},"nativeSrc":"11271:17:101","nodeType":"YulFunctionCall","src":"11271:17:101"}],"functionName":{"name":"mload","nativeSrc":"11265:5:101","nodeType":"YulIdentifier","src":"11265:5:101"},"nativeSrc":"11265:24:101","nodeType":"YulFunctionCall","src":"11265:24:101"}],"functionName":{"name":"mstore","nativeSrc":"11236:6:101","nodeType":"YulIdentifier","src":"11236:6:101"},"nativeSrc":"11236:54:101","nodeType":"YulFunctionCall","src":"11236:54:101"},"nativeSrc":"11236:54:101","nodeType":"YulExpressionStatement","src":"11236:54:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11310:9:101","nodeType":"YulIdentifier","src":"11310:9:101"},{"kind":"number","nativeSrc":"11321:4:101","nodeType":"YulLiteral","src":"11321:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"11306:3:101","nodeType":"YulIdentifier","src":"11306:3:101"},"nativeSrc":"11306:20:101","nodeType":"YulFunctionCall","src":"11306:20:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"11338:6:101","nodeType":"YulIdentifier","src":"11338:6:101"},{"kind":"number","nativeSrc":"11346:4:101","nodeType":"YulLiteral","src":"11346:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"11334:3:101","nodeType":"YulIdentifier","src":"11334:3:101"},"nativeSrc":"11334:17:101","nodeType":"YulFunctionCall","src":"11334:17:101"}],"functionName":{"name":"mload","nativeSrc":"11328:5:101","nodeType":"YulIdentifier","src":"11328:5:101"},"nativeSrc":"11328:24:101","nodeType":"YulFunctionCall","src":"11328:24:101"}],"functionName":{"name":"mstore","nativeSrc":"11299:6:101","nodeType":"YulIdentifier","src":"11299:6:101"},"nativeSrc":"11299:54:101","nodeType":"YulFunctionCall","src":"11299:54:101"},"nativeSrc":"11299:54:101","nodeType":"YulExpressionStatement","src":"11299:54:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11373:9:101","nodeType":"YulIdentifier","src":"11373:9:101"},{"kind":"number","nativeSrc":"11384:6:101","nodeType":"YulLiteral","src":"11384:6:101","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"11369:3:101","nodeType":"YulIdentifier","src":"11369:3:101"},"nativeSrc":"11369:22:101","nodeType":"YulFunctionCall","src":"11369:22:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"11403:6:101","nodeType":"YulIdentifier","src":"11403:6:101"},{"kind":"number","nativeSrc":"11411:6:101","nodeType":"YulLiteral","src":"11411:6:101","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"11399:3:101","nodeType":"YulIdentifier","src":"11399:3:101"},"nativeSrc":"11399:19:101","nodeType":"YulFunctionCall","src":"11399:19:101"}],"functionName":{"name":"mload","nativeSrc":"11393:5:101","nodeType":"YulIdentifier","src":"11393:5:101"},"nativeSrc":"11393:26:101","nodeType":"YulFunctionCall","src":"11393:26:101"}],"functionName":{"name":"mstore","nativeSrc":"11362:6:101","nodeType":"YulIdentifier","src":"11362:6:101"},"nativeSrc":"11362:58:101","nodeType":"YulFunctionCall","src":"11362:58:101"},"nativeSrc":"11362:58:101","nodeType":"YulExpressionStatement","src":"11362:58:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11440:9:101","nodeType":"YulIdentifier","src":"11440:9:101"},{"kind":"number","nativeSrc":"11451:6:101","nodeType":"YulLiteral","src":"11451:6:101","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"11436:3:101","nodeType":"YulIdentifier","src":"11436:3:101"},"nativeSrc":"11436:22:101","nodeType":"YulFunctionCall","src":"11436:22:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"11470:6:101","nodeType":"YulIdentifier","src":"11470:6:101"},{"kind":"number","nativeSrc":"11478:6:101","nodeType":"YulLiteral","src":"11478:6:101","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"11466:3:101","nodeType":"YulIdentifier","src":"11466:3:101"},"nativeSrc":"11466:19:101","nodeType":"YulFunctionCall","src":"11466:19:101"}],"functionName":{"name":"mload","nativeSrc":"11460:5:101","nodeType":"YulIdentifier","src":"11460:5:101"},"nativeSrc":"11460:26:101","nodeType":"YulFunctionCall","src":"11460:26:101"}],"functionName":{"name":"mstore","nativeSrc":"11429:6:101","nodeType":"YulIdentifier","src":"11429:6:101"},"nativeSrc":"11429:58:101","nodeType":"YulFunctionCall","src":"11429:58:101"},"nativeSrc":"11429:58:101","nodeType":"YulExpressionStatement","src":"11429:58:101"},{"nativeSrc":"11496:46:101","nodeType":"YulVariableDeclaration","src":"11496:46:101","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"11526:6:101","nodeType":"YulIdentifier","src":"11526:6:101"},{"kind":"number","nativeSrc":"11534:6:101","nodeType":"YulLiteral","src":"11534:6:101","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"11522:3:101","nodeType":"YulIdentifier","src":"11522:3:101"},"nativeSrc":"11522:19:101","nodeType":"YulFunctionCall","src":"11522:19:101"}],"functionName":{"name":"mload","nativeSrc":"11516:5:101","nodeType":"YulIdentifier","src":"11516:5:101"},"nativeSrc":"11516:26:101","nodeType":"YulFunctionCall","src":"11516:26:101"},"variables":[{"name":"memberValue0","nativeSrc":"11500:12:101","nodeType":"YulTypedName","src":"11500:12:101","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"11569:12:101","nodeType":"YulIdentifier","src":"11569:12:101"},{"arguments":[{"name":"headStart","nativeSrc":"11587:9:101","nodeType":"YulIdentifier","src":"11587:9:101"},{"kind":"number","nativeSrc":"11598:6:101","nodeType":"YulLiteral","src":"11598:6:101","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"11583:3:101","nodeType":"YulIdentifier","src":"11583:3:101"},"nativeSrc":"11583:22:101","nodeType":"YulFunctionCall","src":"11583:22:101"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"11551:17:101","nodeType":"YulIdentifier","src":"11551:17:101"},"nativeSrc":"11551:55:101","nodeType":"YulFunctionCall","src":"11551:55:101"},"nativeSrc":"11551:55:101","nodeType":"YulExpressionStatement","src":"11551:55:101"},{"nativeSrc":"11615:48:101","nodeType":"YulVariableDeclaration","src":"11615:48:101","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"11647:6:101","nodeType":"YulIdentifier","src":"11647:6:101"},{"kind":"number","nativeSrc":"11655:6:101","nodeType":"YulLiteral","src":"11655:6:101","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"11643:3:101","nodeType":"YulIdentifier","src":"11643:3:101"},"nativeSrc":"11643:19:101","nodeType":"YulFunctionCall","src":"11643:19:101"}],"functionName":{"name":"mload","nativeSrc":"11637:5:101","nodeType":"YulIdentifier","src":"11637:5:101"},"nativeSrc":"11637:26:101","nodeType":"YulFunctionCall","src":"11637:26:101"},"variables":[{"name":"memberValue0_1","nativeSrc":"11619:14:101","nodeType":"YulTypedName","src":"11619:14:101","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nativeSrc":"11690:14:101","nodeType":"YulIdentifier","src":"11690:14:101"},{"arguments":[{"name":"headStart","nativeSrc":"11710:9:101","nodeType":"YulIdentifier","src":"11710:9:101"},{"kind":"number","nativeSrc":"11721:6:101","nodeType":"YulLiteral","src":"11721:6:101","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"11706:3:101","nodeType":"YulIdentifier","src":"11706:3:101"},"nativeSrc":"11706:22:101","nodeType":"YulFunctionCall","src":"11706:22:101"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"11672:17:101","nodeType":"YulIdentifier","src":"11672:17:101"},"nativeSrc":"11672:57:101","nodeType":"YulFunctionCall","src":"11672:57:101"},"nativeSrc":"11672:57:101","nodeType":"YulExpressionStatement","src":"11672:57:101"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr__fromStack_reversed","nativeSrc":"10675:1060:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10803:9:101","nodeType":"YulTypedName","src":"10803:9:101","type":""},{"name":"value0","nativeSrc":"10814:6:101","nodeType":"YulTypedName","src":"10814:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10825:4:101","nodeType":"YulTypedName","src":"10825:4:101","type":""}],"src":"10675:1060:101"},{"body":{"nativeSrc":"11772:95:101","nodeType":"YulBlock","src":"11772:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11789:1:101","nodeType":"YulLiteral","src":"11789:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"11796:3:101","nodeType":"YulLiteral","src":"11796:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"11801:10:101","nodeType":"YulLiteral","src":"11801:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"11792:3:101","nodeType":"YulIdentifier","src":"11792:3:101"},"nativeSrc":"11792:20:101","nodeType":"YulFunctionCall","src":"11792:20:101"}],"functionName":{"name":"mstore","nativeSrc":"11782:6:101","nodeType":"YulIdentifier","src":"11782:6:101"},"nativeSrc":"11782:31:101","nodeType":"YulFunctionCall","src":"11782:31:101"},"nativeSrc":"11782:31:101","nodeType":"YulExpressionStatement","src":"11782:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11829:1:101","nodeType":"YulLiteral","src":"11829:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"11832:4:101","nodeType":"YulLiteral","src":"11832:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"11822:6:101","nodeType":"YulIdentifier","src":"11822:6:101"},"nativeSrc":"11822:15:101","nodeType":"YulFunctionCall","src":"11822:15:101"},"nativeSrc":"11822:15:101","nodeType":"YulExpressionStatement","src":"11822:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11853:1:101","nodeType":"YulLiteral","src":"11853:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11856:4:101","nodeType":"YulLiteral","src":"11856:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"11846:6:101","nodeType":"YulIdentifier","src":"11846:6:101"},"nativeSrc":"11846:15:101","nodeType":"YulFunctionCall","src":"11846:15:101"},"nativeSrc":"11846:15:101","nodeType":"YulExpressionStatement","src":"11846:15:101"}]},"name":"panic_error_0x11","nativeSrc":"11740:127:101","nodeType":"YulFunctionDefinition","src":"11740:127:101"},{"body":{"nativeSrc":"11920:77:101","nodeType":"YulBlock","src":"11920:77:101","statements":[{"nativeSrc":"11930:16:101","nodeType":"YulAssignment","src":"11930:16:101","value":{"arguments":[{"name":"x","nativeSrc":"11941:1:101","nodeType":"YulIdentifier","src":"11941:1:101"},{"name":"y","nativeSrc":"11944:1:101","nodeType":"YulIdentifier","src":"11944:1:101"}],"functionName":{"name":"add","nativeSrc":"11937:3:101","nodeType":"YulIdentifier","src":"11937:3:101"},"nativeSrc":"11937:9:101","nodeType":"YulFunctionCall","src":"11937:9:101"},"variableNames":[{"name":"sum","nativeSrc":"11930:3:101","nodeType":"YulIdentifier","src":"11930:3:101"}]},{"body":{"nativeSrc":"11969:22:101","nodeType":"YulBlock","src":"11969:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"11971:16:101","nodeType":"YulIdentifier","src":"11971:16:101"},"nativeSrc":"11971:18:101","nodeType":"YulFunctionCall","src":"11971:18:101"},"nativeSrc":"11971:18:101","nodeType":"YulExpressionStatement","src":"11971:18:101"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"11961:1:101","nodeType":"YulIdentifier","src":"11961:1:101"},{"name":"sum","nativeSrc":"11964:3:101","nodeType":"YulIdentifier","src":"11964:3:101"}],"functionName":{"name":"gt","nativeSrc":"11958:2:101","nodeType":"YulIdentifier","src":"11958:2:101"},"nativeSrc":"11958:10:101","nodeType":"YulFunctionCall","src":"11958:10:101"},"nativeSrc":"11955:36:101","nodeType":"YulIf","src":"11955:36:101"}]},"name":"checked_add_t_uint256","nativeSrc":"11872:125:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"11903:1:101","nodeType":"YulTypedName","src":"11903:1:101","type":""},{"name":"y","nativeSrc":"11906:1:101","nodeType":"YulTypedName","src":"11906:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"11912:3:101","nodeType":"YulTypedName","src":"11912:3:101","type":""}],"src":"11872:125:101"},{"body":{"nativeSrc":"12101:136:101","nodeType":"YulBlock","src":"12101:136:101","statements":[{"body":{"nativeSrc":"12148:16:101","nodeType":"YulBlock","src":"12148:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12157:1:101","nodeType":"YulLiteral","src":"12157:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"12160:1:101","nodeType":"YulLiteral","src":"12160:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12150:6:101","nodeType":"YulIdentifier","src":"12150:6:101"},"nativeSrc":"12150:12:101","nodeType":"YulFunctionCall","src":"12150:12:101"},"nativeSrc":"12150:12:101","nodeType":"YulExpressionStatement","src":"12150:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12122:7:101","nodeType":"YulIdentifier","src":"12122:7:101"},{"name":"headStart","nativeSrc":"12131:9:101","nodeType":"YulIdentifier","src":"12131:9:101"}],"functionName":{"name":"sub","nativeSrc":"12118:3:101","nodeType":"YulIdentifier","src":"12118:3:101"},"nativeSrc":"12118:23:101","nodeType":"YulFunctionCall","src":"12118:23:101"},{"kind":"number","nativeSrc":"12143:3:101","nodeType":"YulLiteral","src":"12143:3:101","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"12114:3:101","nodeType":"YulIdentifier","src":"12114:3:101"},"nativeSrc":"12114:33:101","nodeType":"YulFunctionCall","src":"12114:33:101"},"nativeSrc":"12111:53:101","nodeType":"YulIf","src":"12111:53:101"},{"nativeSrc":"12173:58:101","nodeType":"YulAssignment","src":"12173:58:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12212:9:101","nodeType":"YulIdentifier","src":"12212:9:101"},{"name":"dataEnd","nativeSrc":"12223:7:101","nodeType":"YulIdentifier","src":"12223:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"12183:28:101","nodeType":"YulIdentifier","src":"12183:28:101"},"nativeSrc":"12183:48:101","nodeType":"YulFunctionCall","src":"12183:48:101"},"variableNames":[{"name":"value0","nativeSrc":"12173:6:101","nodeType":"YulIdentifier","src":"12173:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptr","nativeSrc":"12002:235:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12067:9:101","nodeType":"YulTypedName","src":"12067:9:101","type":""},{"name":"dataEnd","nativeSrc":"12078:7:101","nodeType":"YulTypedName","src":"12078:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12090:6:101","nodeType":"YulTypedName","src":"12090:6:101","type":""}],"src":"12002:235:101"},{"body":{"nativeSrc":"12416:173:101","nodeType":"YulBlock","src":"12416:173:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12433:9:101","nodeType":"YulIdentifier","src":"12433:9:101"},{"kind":"number","nativeSrc":"12444:2:101","nodeType":"YulLiteral","src":"12444:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"12426:6:101","nodeType":"YulIdentifier","src":"12426:6:101"},"nativeSrc":"12426:21:101","nodeType":"YulFunctionCall","src":"12426:21:101"},"nativeSrc":"12426:21:101","nodeType":"YulExpressionStatement","src":"12426:21:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12467:9:101","nodeType":"YulIdentifier","src":"12467:9:101"},{"kind":"number","nativeSrc":"12478:2:101","nodeType":"YulLiteral","src":"12478:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12463:3:101","nodeType":"YulIdentifier","src":"12463:3:101"},"nativeSrc":"12463:18:101","nodeType":"YulFunctionCall","src":"12463:18:101"},{"kind":"number","nativeSrc":"12483:2:101","nodeType":"YulLiteral","src":"12483:2:101","type":"","value":"23"}],"functionName":{"name":"mstore","nativeSrc":"12456:6:101","nodeType":"YulIdentifier","src":"12456:6:101"},"nativeSrc":"12456:30:101","nodeType":"YulFunctionCall","src":"12456:30:101"},"nativeSrc":"12456:30:101","nodeType":"YulExpressionStatement","src":"12456:30:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12506:9:101","nodeType":"YulIdentifier","src":"12506:9:101"},{"kind":"number","nativeSrc":"12517:2:101","nodeType":"YulLiteral","src":"12517:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12502:3:101","nodeType":"YulIdentifier","src":"12502:3:101"},"nativeSrc":"12502:18:101","nodeType":"YulFunctionCall","src":"12502:18:101"},{"hexValue":"4e6f7420496d706c656d656e746564206465706f736974","kind":"string","nativeSrc":"12522:25:101","nodeType":"YulLiteral","src":"12522:25:101","type":"","value":"Not Implemented deposit"}],"functionName":{"name":"mstore","nativeSrc":"12495:6:101","nodeType":"YulIdentifier","src":"12495:6:101"},"nativeSrc":"12495:53:101","nodeType":"YulFunctionCall","src":"12495:53:101"},"nativeSrc":"12495:53:101","nodeType":"YulExpressionStatement","src":"12495:53:101"},{"nativeSrc":"12557:26:101","nodeType":"YulAssignment","src":"12557:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12569:9:101","nodeType":"YulIdentifier","src":"12569:9:101"},{"kind":"number","nativeSrc":"12580:2:101","nodeType":"YulLiteral","src":"12580:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12565:3:101","nodeType":"YulIdentifier","src":"12565:3:101"},"nativeSrc":"12565:18:101","nodeType":"YulFunctionCall","src":"12565:18:101"},"variableNames":[{"name":"tail","nativeSrc":"12557:4:101","nodeType":"YulIdentifier","src":"12557:4:101"}]}]},"name":"abi_encode_tuple_t_stringliteral_4056b1a890a2c3818b7771ad8e47567b7f58fbbd321bfc4356d4990f533b901a__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"12242:347:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12393:9:101","nodeType":"YulTypedName","src":"12393:9:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12407:4:101","nodeType":"YulTypedName","src":"12407:4:101","type":""}],"src":"12242:347:101"},{"body":{"nativeSrc":"12768:174:101","nodeType":"YulBlock","src":"12768:174:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12785:9:101","nodeType":"YulIdentifier","src":"12785:9:101"},{"kind":"number","nativeSrc":"12796:2:101","nodeType":"YulLiteral","src":"12796:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"12778:6:101","nodeType":"YulIdentifier","src":"12778:6:101"},"nativeSrc":"12778:21:101","nodeType":"YulFunctionCall","src":"12778:21:101"},"nativeSrc":"12778:21:101","nodeType":"YulExpressionStatement","src":"12778:21:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12819:9:101","nodeType":"YulIdentifier","src":"12819:9:101"},{"kind":"number","nativeSrc":"12830:2:101","nodeType":"YulLiteral","src":"12830:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12815:3:101","nodeType":"YulIdentifier","src":"12815:3:101"},"nativeSrc":"12815:18:101","nodeType":"YulFunctionCall","src":"12815:18:101"},{"kind":"number","nativeSrc":"12835:2:101","nodeType":"YulLiteral","src":"12835:2:101","type":"","value":"24"}],"functionName":{"name":"mstore","nativeSrc":"12808:6:101","nodeType":"YulIdentifier","src":"12808:6:101"},"nativeSrc":"12808:30:101","nodeType":"YulFunctionCall","src":"12808:30:101"},"nativeSrc":"12808:30:101","nodeType":"YulExpressionStatement","src":"12808:30:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12858:9:101","nodeType":"YulIdentifier","src":"12858:9:101"},{"kind":"number","nativeSrc":"12869:2:101","nodeType":"YulLiteral","src":"12869:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12854:3:101","nodeType":"YulIdentifier","src":"12854:3:101"},"nativeSrc":"12854:18:101","nodeType":"YulFunctionCall","src":"12854:18:101"},{"hexValue":"4e6f7420496d706c656d656e746564207769746864726177","kind":"string","nativeSrc":"12874:26:101","nodeType":"YulLiteral","src":"12874:26:101","type":"","value":"Not Implemented withdraw"}],"functionName":{"name":"mstore","nativeSrc":"12847:6:101","nodeType":"YulIdentifier","src":"12847:6:101"},"nativeSrc":"12847:54:101","nodeType":"YulFunctionCall","src":"12847:54:101"},"nativeSrc":"12847:54:101","nodeType":"YulExpressionStatement","src":"12847:54:101"},{"nativeSrc":"12910:26:101","nodeType":"YulAssignment","src":"12910:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12922:9:101","nodeType":"YulIdentifier","src":"12922:9:101"},{"kind":"number","nativeSrc":"12933:2:101","nodeType":"YulLiteral","src":"12933:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12918:3:101","nodeType":"YulIdentifier","src":"12918:3:101"},"nativeSrc":"12918:18:101","nodeType":"YulFunctionCall","src":"12918:18:101"},"variableNames":[{"name":"tail","nativeSrc":"12910:4:101","nodeType":"YulIdentifier","src":"12910:4:101"}]}]},"name":"abi_encode_tuple_t_stringliteral_d1c133ca691942c2b9c7b9bbdea503640377a82463f9986cfe69df5983647c2d__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"12594:348:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12745:9:101","nodeType":"YulTypedName","src":"12745:9:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12759:4:101","nodeType":"YulTypedName","src":"12759:4:101","type":""}],"src":"12594:348:101"},{"body":{"nativeSrc":"13076:119:101","nodeType":"YulBlock","src":"13076:119:101","statements":[{"nativeSrc":"13086:26:101","nodeType":"YulAssignment","src":"13086:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"13098:9:101","nodeType":"YulIdentifier","src":"13098:9:101"},{"kind":"number","nativeSrc":"13109:2:101","nodeType":"YulLiteral","src":"13109:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13094:3:101","nodeType":"YulIdentifier","src":"13094:3:101"},"nativeSrc":"13094:18:101","nodeType":"YulFunctionCall","src":"13094:18:101"},"variableNames":[{"name":"tail","nativeSrc":"13086:4:101","nodeType":"YulIdentifier","src":"13086:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13128:9:101","nodeType":"YulIdentifier","src":"13128:9:101"},{"name":"value0","nativeSrc":"13139:6:101","nodeType":"YulIdentifier","src":"13139:6:101"}],"functionName":{"name":"mstore","nativeSrc":"13121:6:101","nodeType":"YulIdentifier","src":"13121:6:101"},"nativeSrc":"13121:25:101","nodeType":"YulFunctionCall","src":"13121:25:101"},"nativeSrc":"13121:25:101","nodeType":"YulExpressionStatement","src":"13121:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13166:9:101","nodeType":"YulIdentifier","src":"13166:9:101"},{"kind":"number","nativeSrc":"13177:2:101","nodeType":"YulLiteral","src":"13177:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13162:3:101","nodeType":"YulIdentifier","src":"13162:3:101"},"nativeSrc":"13162:18:101","nodeType":"YulFunctionCall","src":"13162:18:101"},{"name":"value1","nativeSrc":"13182:6:101","nodeType":"YulIdentifier","src":"13182:6:101"}],"functionName":{"name":"mstore","nativeSrc":"13155:6:101","nodeType":"YulIdentifier","src":"13155:6:101"},"nativeSrc":"13155:34:101","nodeType":"YulFunctionCall","src":"13155:34:101"},"nativeSrc":"13155:34:101","nodeType":"YulExpressionStatement","src":"13155:34:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"12947:248:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13037:9:101","nodeType":"YulTypedName","src":"13037:9:101","type":""},{"name":"value1","nativeSrc":"13048:6:101","nodeType":"YulTypedName","src":"13048:6:101","type":""},{"name":"value0","nativeSrc":"13056:6:101","nodeType":"YulTypedName","src":"13056:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13067:4:101","nodeType":"YulTypedName","src":"13067:4:101","type":""}],"src":"12947:248:101"},{"body":{"nativeSrc":"13249:79:101","nodeType":"YulBlock","src":"13249:79:101","statements":[{"nativeSrc":"13259:17:101","nodeType":"YulAssignment","src":"13259:17:101","value":{"arguments":[{"name":"x","nativeSrc":"13271:1:101","nodeType":"YulIdentifier","src":"13271:1:101"},{"name":"y","nativeSrc":"13274:1:101","nodeType":"YulIdentifier","src":"13274:1:101"}],"functionName":{"name":"sub","nativeSrc":"13267:3:101","nodeType":"YulIdentifier","src":"13267:3:101"},"nativeSrc":"13267:9:101","nodeType":"YulFunctionCall","src":"13267:9:101"},"variableNames":[{"name":"diff","nativeSrc":"13259:4:101","nodeType":"YulIdentifier","src":"13259:4:101"}]},{"body":{"nativeSrc":"13300:22:101","nodeType":"YulBlock","src":"13300:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"13302:16:101","nodeType":"YulIdentifier","src":"13302:16:101"},"nativeSrc":"13302:18:101","nodeType":"YulFunctionCall","src":"13302:18:101"},"nativeSrc":"13302:18:101","nodeType":"YulExpressionStatement","src":"13302:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"13291:4:101","nodeType":"YulIdentifier","src":"13291:4:101"},{"name":"x","nativeSrc":"13297:1:101","nodeType":"YulIdentifier","src":"13297:1:101"}],"functionName":{"name":"gt","nativeSrc":"13288:2:101","nodeType":"YulIdentifier","src":"13288:2:101"},"nativeSrc":"13288:11:101","nodeType":"YulFunctionCall","src":"13288:11:101"},"nativeSrc":"13285:37:101","nodeType":"YulIf","src":"13285:37:101"}]},"name":"checked_sub_t_uint256","nativeSrc":"13200:128:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"13231:1:101","nodeType":"YulTypedName","src":"13231:1:101","type":""},{"name":"y","nativeSrc":"13234:1:101","nodeType":"YulTypedName","src":"13234:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"13240:4:101","nodeType":"YulTypedName","src":"13240:4:101","type":""}],"src":"13200:128:101"},{"body":{"nativeSrc":"13507:166:101","nodeType":"YulBlock","src":"13507:166:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13524:9:101","nodeType":"YulIdentifier","src":"13524:9:101"},{"kind":"number","nativeSrc":"13535:2:101","nodeType":"YulLiteral","src":"13535:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13517:6:101","nodeType":"YulIdentifier","src":"13517:6:101"},"nativeSrc":"13517:21:101","nodeType":"YulFunctionCall","src":"13517:21:101"},"nativeSrc":"13517:21:101","nodeType":"YulExpressionStatement","src":"13517:21:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13558:9:101","nodeType":"YulIdentifier","src":"13558:9:101"},{"kind":"number","nativeSrc":"13569:2:101","nodeType":"YulLiteral","src":"13569:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13554:3:101","nodeType":"YulIdentifier","src":"13554:3:101"},"nativeSrc":"13554:18:101","nodeType":"YulFunctionCall","src":"13554:18:101"},{"kind":"number","nativeSrc":"13574:2:101","nodeType":"YulLiteral","src":"13574:2:101","type":"","value":"16"}],"functionName":{"name":"mstore","nativeSrc":"13547:6:101","nodeType":"YulIdentifier","src":"13547:6:101"},"nativeSrc":"13547:30:101","nodeType":"YulFunctionCall","src":"13547:30:101"},"nativeSrc":"13547:30:101","nodeType":"YulExpressionStatement","src":"13547:30:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13597:9:101","nodeType":"YulIdentifier","src":"13597:9:101"},{"kind":"number","nativeSrc":"13608:2:101","nodeType":"YulLiteral","src":"13608:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13593:3:101","nodeType":"YulIdentifier","src":"13593:3:101"},"nativeSrc":"13593:18:101","nodeType":"YulFunctionCall","src":"13593:18:101"},{"hexValue":"506f6c696379206e6f7420666f756e64","kind":"string","nativeSrc":"13613:18:101","nodeType":"YulLiteral","src":"13613:18:101","type":"","value":"Policy not found"}],"functionName":{"name":"mstore","nativeSrc":"13586:6:101","nodeType":"YulIdentifier","src":"13586:6:101"},"nativeSrc":"13586:46:101","nodeType":"YulFunctionCall","src":"13586:46:101"},"nativeSrc":"13586:46:101","nodeType":"YulExpressionStatement","src":"13586:46:101"},{"nativeSrc":"13641:26:101","nodeType":"YulAssignment","src":"13641:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"13653:9:101","nodeType":"YulIdentifier","src":"13653:9:101"},{"kind":"number","nativeSrc":"13664:2:101","nodeType":"YulLiteral","src":"13664:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13649:3:101","nodeType":"YulIdentifier","src":"13649:3:101"},"nativeSrc":"13649:18:101","nodeType":"YulFunctionCall","src":"13649:18:101"},"variableNames":[{"name":"tail","nativeSrc":"13641:4:101","nodeType":"YulIdentifier","src":"13641:4:101"}]}]},"name":"abi_encode_tuple_t_stringliteral_42cb6adf2172fcd554545cbd0fc5a0dbec5675a8a159c6f6ca5b7e35bd632f79__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"13333:340:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13484:9:101","nodeType":"YulTypedName","src":"13484:9:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13498:4:101","nodeType":"YulTypedName","src":"13498:4:101","type":""}],"src":"13333:340:101"},{"body":{"nativeSrc":"13852:168:101","nodeType":"YulBlock","src":"13852:168:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13869:9:101","nodeType":"YulIdentifier","src":"13869:9:101"},{"kind":"number","nativeSrc":"13880:2:101","nodeType":"YulLiteral","src":"13880:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13862:6:101","nodeType":"YulIdentifier","src":"13862:6:101"},"nativeSrc":"13862:21:101","nodeType":"YulFunctionCall","src":"13862:21:101"},"nativeSrc":"13862:21:101","nodeType":"YulExpressionStatement","src":"13862:21:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13903:9:101","nodeType":"YulIdentifier","src":"13903:9:101"},{"kind":"number","nativeSrc":"13914:2:101","nodeType":"YulLiteral","src":"13914:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13899:3:101","nodeType":"YulIdentifier","src":"13899:3:101"},"nativeSrc":"13899:18:101","nodeType":"YulFunctionCall","src":"13899:18:101"},{"kind":"number","nativeSrc":"13919:2:101","nodeType":"YulLiteral","src":"13919:2:101","type":"","value":"18"}],"functionName":{"name":"mstore","nativeSrc":"13892:6:101","nodeType":"YulIdentifier","src":"13892:6:101"},"nativeSrc":"13892:30:101","nodeType":"YulFunctionCall","src":"13892:30:101"},"nativeSrc":"13892:30:101","nodeType":"YulExpressionStatement","src":"13892:30:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13942:9:101","nodeType":"YulIdentifier","src":"13942:9:101"},{"kind":"number","nativeSrc":"13953:2:101","nodeType":"YulLiteral","src":"13953:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13938:3:101","nodeType":"YulIdentifier","src":"13938:3:101"},"nativeSrc":"13938:18:101","nodeType":"YulFunctionCall","src":"13938:18:101"},{"hexValue":"4861736820646f65736e2774206d61746368","kind":"string","nativeSrc":"13958:20:101","nodeType":"YulLiteral","src":"13958:20:101","type":"","value":"Hash doesn't match"}],"functionName":{"name":"mstore","nativeSrc":"13931:6:101","nodeType":"YulIdentifier","src":"13931:6:101"},"nativeSrc":"13931:48:101","nodeType":"YulFunctionCall","src":"13931:48:101"},"nativeSrc":"13931:48:101","nodeType":"YulExpressionStatement","src":"13931:48:101"},{"nativeSrc":"13988:26:101","nodeType":"YulAssignment","src":"13988:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"14000:9:101","nodeType":"YulIdentifier","src":"14000:9:101"},{"kind":"number","nativeSrc":"14011:2:101","nodeType":"YulLiteral","src":"14011:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13996:3:101","nodeType":"YulIdentifier","src":"13996:3:101"},"nativeSrc":"13996:18:101","nodeType":"YulFunctionCall","src":"13996:18:101"},"variableNames":[{"name":"tail","nativeSrc":"13988:4:101","nodeType":"YulIdentifier","src":"13988:4:101"}]}]},"name":"abi_encode_tuple_t_stringliteral_dfce19cc5c9d715e1c1447fc4d85b7dd2f48c5fc48e7b8cdfb74121bafc6775d__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"13678:342:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13829:9:101","nodeType":"YulTypedName","src":"13829:9:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13843:4:101","nodeType":"YulTypedName","src":"13843:4:101","type":""}],"src":"13678:342:101"},{"body":{"nativeSrc":"14073:128:101","nodeType":"YulBlock","src":"14073:128:101","statements":[{"nativeSrc":"14083:55:101","nodeType":"YulAssignment","src":"14083:55:101","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"14099:1:101","nodeType":"YulIdentifier","src":"14099:1:101"},{"kind":"number","nativeSrc":"14102:12:101","nodeType":"YulLiteral","src":"14102:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"14095:3:101","nodeType":"YulIdentifier","src":"14095:3:101"},"nativeSrc":"14095:20:101","nodeType":"YulFunctionCall","src":"14095:20:101"},{"arguments":[{"name":"y","nativeSrc":"14121:1:101","nodeType":"YulIdentifier","src":"14121:1:101"},{"kind":"number","nativeSrc":"14124:12:101","nodeType":"YulLiteral","src":"14124:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"14117:3:101","nodeType":"YulIdentifier","src":"14117:3:101"},"nativeSrc":"14117:20:101","nodeType":"YulFunctionCall","src":"14117:20:101"}],"functionName":{"name":"sub","nativeSrc":"14091:3:101","nodeType":"YulIdentifier","src":"14091:3:101"},"nativeSrc":"14091:47:101","nodeType":"YulFunctionCall","src":"14091:47:101"},"variableNames":[{"name":"diff","nativeSrc":"14083:4:101","nodeType":"YulIdentifier","src":"14083:4:101"}]},{"body":{"nativeSrc":"14173:22:101","nodeType":"YulBlock","src":"14173:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"14175:16:101","nodeType":"YulIdentifier","src":"14175:16:101"},"nativeSrc":"14175:18:101","nodeType":"YulFunctionCall","src":"14175:18:101"},"nativeSrc":"14175:18:101","nodeType":"YulExpressionStatement","src":"14175:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"14153:4:101","nodeType":"YulIdentifier","src":"14153:4:101"},{"kind":"number","nativeSrc":"14159:12:101","nodeType":"YulLiteral","src":"14159:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"gt","nativeSrc":"14150:2:101","nodeType":"YulIdentifier","src":"14150:2:101"},"nativeSrc":"14150:22:101","nodeType":"YulFunctionCall","src":"14150:22:101"},"nativeSrc":"14147:48:101","nodeType":"YulIf","src":"14147:48:101"}]},"name":"checked_sub_t_uint40","nativeSrc":"14025:176:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"14055:1:101","nodeType":"YulTypedName","src":"14055:1:101","type":""},{"name":"y","nativeSrc":"14058:1:101","nodeType":"YulTypedName","src":"14058:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"14064:4:101","nodeType":"YulTypedName","src":"14064:4:101","type":""}],"src":"14025:176:101"},{"body":{"nativeSrc":"14258:116:101","nodeType":"YulBlock","src":"14258:116:101","statements":[{"nativeSrc":"14268:20:101","nodeType":"YulAssignment","src":"14268:20:101","value":{"arguments":[{"name":"x","nativeSrc":"14283:1:101","nodeType":"YulIdentifier","src":"14283:1:101"},{"name":"y","nativeSrc":"14286:1:101","nodeType":"YulIdentifier","src":"14286:1:101"}],"functionName":{"name":"mul","nativeSrc":"14279:3:101","nodeType":"YulIdentifier","src":"14279:3:101"},"nativeSrc":"14279:9:101","nodeType":"YulFunctionCall","src":"14279:9:101"},"variableNames":[{"name":"product","nativeSrc":"14268:7:101","nodeType":"YulIdentifier","src":"14268:7:101"}]},{"body":{"nativeSrc":"14346:22:101","nodeType":"YulBlock","src":"14346:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"14348:16:101","nodeType":"YulIdentifier","src":"14348:16:101"},"nativeSrc":"14348:18:101","nodeType":"YulFunctionCall","src":"14348:18:101"},"nativeSrc":"14348:18:101","nodeType":"YulExpressionStatement","src":"14348:18:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nativeSrc":"14317:1:101","nodeType":"YulIdentifier","src":"14317:1:101"}],"functionName":{"name":"iszero","nativeSrc":"14310:6:101","nodeType":"YulIdentifier","src":"14310:6:101"},"nativeSrc":"14310:9:101","nodeType":"YulFunctionCall","src":"14310:9:101"},{"arguments":[{"name":"y","nativeSrc":"14324:1:101","nodeType":"YulIdentifier","src":"14324:1:101"},{"arguments":[{"name":"product","nativeSrc":"14331:7:101","nodeType":"YulIdentifier","src":"14331:7:101"},{"name":"x","nativeSrc":"14340:1:101","nodeType":"YulIdentifier","src":"14340:1:101"}],"functionName":{"name":"div","nativeSrc":"14327:3:101","nodeType":"YulIdentifier","src":"14327:3:101"},"nativeSrc":"14327:15:101","nodeType":"YulFunctionCall","src":"14327:15:101"}],"functionName":{"name":"eq","nativeSrc":"14321:2:101","nodeType":"YulIdentifier","src":"14321:2:101"},"nativeSrc":"14321:22:101","nodeType":"YulFunctionCall","src":"14321:22:101"}],"functionName":{"name":"or","nativeSrc":"14307:2:101","nodeType":"YulIdentifier","src":"14307:2:101"},"nativeSrc":"14307:37:101","nodeType":"YulFunctionCall","src":"14307:37:101"}],"functionName":{"name":"iszero","nativeSrc":"14300:6:101","nodeType":"YulIdentifier","src":"14300:6:101"},"nativeSrc":"14300:45:101","nodeType":"YulFunctionCall","src":"14300:45:101"},"nativeSrc":"14297:71:101","nodeType":"YulIf","src":"14297:71:101"}]},"name":"checked_mul_t_uint256","nativeSrc":"14206:168:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"14237:1:101","nodeType":"YulTypedName","src":"14237:1:101","type":""},{"name":"y","nativeSrc":"14240:1:101","nodeType":"YulTypedName","src":"14240:1:101","type":""}],"returnVariables":[{"name":"product","nativeSrc":"14246:7:101","nodeType":"YulTypedName","src":"14246:7:101","type":""}],"src":"14206:168:101"},{"body":{"nativeSrc":"14411:95:101","nodeType":"YulBlock","src":"14411:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14428:1:101","nodeType":"YulLiteral","src":"14428:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"14435:3:101","nodeType":"YulLiteral","src":"14435:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"14440:10:101","nodeType":"YulLiteral","src":"14440:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"14431:3:101","nodeType":"YulIdentifier","src":"14431:3:101"},"nativeSrc":"14431:20:101","nodeType":"YulFunctionCall","src":"14431:20:101"}],"functionName":{"name":"mstore","nativeSrc":"14421:6:101","nodeType":"YulIdentifier","src":"14421:6:101"},"nativeSrc":"14421:31:101","nodeType":"YulFunctionCall","src":"14421:31:101"},"nativeSrc":"14421:31:101","nodeType":"YulExpressionStatement","src":"14421:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14468:1:101","nodeType":"YulLiteral","src":"14468:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"14471:4:101","nodeType":"YulLiteral","src":"14471:4:101","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"14461:6:101","nodeType":"YulIdentifier","src":"14461:6:101"},"nativeSrc":"14461:15:101","nodeType":"YulFunctionCall","src":"14461:15:101"},"nativeSrc":"14461:15:101","nodeType":"YulExpressionStatement","src":"14461:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14492:1:101","nodeType":"YulLiteral","src":"14492:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"14495:4:101","nodeType":"YulLiteral","src":"14495:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"14485:6:101","nodeType":"YulIdentifier","src":"14485:6:101"},"nativeSrc":"14485:15:101","nodeType":"YulFunctionCall","src":"14485:15:101"},"nativeSrc":"14485:15:101","nodeType":"YulExpressionStatement","src":"14485:15:101"}]},"name":"panic_error_0x12","nativeSrc":"14379:127:101","nodeType":"YulFunctionDefinition","src":"14379:127:101"}]},"contents":"{\n    { }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function allocate_memory() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xe0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory_1485() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0180)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_uint40(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_struct$_Params_$22230_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint40(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        let _1 := sub(dataEnd, headStart)\n        if slt(_1, 384) { revert(0, 0) }\n        if slt(_1, 0xe0) { revert(0, 0) }\n        let value := allocate_memory()\n        let value_1 := 0\n        value_1 := calldataload(headStart)\n        mstore(value, value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 32))\n        mstore(add(value, 32), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 64))\n        mstore(add(value, 64), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 96))\n        mstore(add(value, 96), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(add(value, 128), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 160))\n        mstore(add(value, 160), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(value, 192), value_7)\n        value0 := value\n        let value_8 := 0\n        value_8 := calldataload(add(headStart, 0xe0))\n        value1 := value_8\n        let value_9 := 0\n        value_9 := calldataload(add(headStart, 256))\n        value2 := value_9\n        let value_10 := 0\n        value_10 := calldataload(add(headStart, 288))\n        value3 := value_10\n        value4 := abi_decode_uint40(add(headStart, 320))\n        value5 := abi_decode_uint40(add(headStart, 352))\n    }\n    function abi_decode_struct_PolicyData(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0x0180) { revert(0, 0) }\n        value := allocate_memory_1485()\n        let value_1 := 0\n        value_1 := calldataload(headStart)\n        mstore(value, value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 32))\n        mstore(add(value, 32), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 64))\n        mstore(add(value, 64), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 96))\n        mstore(add(value, 96), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(add(value, 128), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 160))\n        mstore(add(value, 160), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(value, 192), value_7)\n        let value_8 := 0\n        value_8 := calldataload(add(headStart, 224))\n        mstore(add(value, 224), value_8)\n        let value_9 := 0\n        value_9 := calldataload(add(headStart, 256))\n        mstore(add(value, 256), value_9)\n        let value_10 := 0\n        value_10 := calldataload(add(headStart, 288))\n        mstore(add(value, 288), value_10)\n        mstore(add(value, 320), abi_decode_uint40(add(headStart, 320)))\n        mstore(add(value, 352), abi_decode_uint40(add(headStart, 352)))\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_uint96(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_addresst_addresst_uint96(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 480) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData(headStart, dataEnd)\n        let value := calldataload(add(headStart, 384))\n        validator_revert_address(value)\n        value1 := value\n        let value_1 := calldataload(add(headStart, 416))\n        validator_revert_address(value_1)\n        value2 := value_1\n        value3 := abi_decode_uint96(add(headStart, 448))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_struct$_PolicyData_$22256_memory_ptrt_addresst_uint96(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 832) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData(headStart, dataEnd)\n        value1 := abi_decode_struct_PolicyData(add(headStart, 384), dataEnd)\n        let value := calldataload(add(headStart, 768))\n        validator_revert_address(value)\n        value2 := value\n        value3 := abi_decode_uint96(add(headStart, 800))\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 480) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData(headStart, dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 416))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 448))\n        value3 := value_2\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IRiskModule_$29295__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_struct_PolicyData_calldata(offset, end) -> value\n    {\n        if slt(sub(end, offset), 384) { revert(0, 0) }\n        value := offset\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptrt_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 416) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_calldata(headStart, dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_addresst_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        let value_4 := calldataload(add(headStart, 128))\n        if iszero(eq(value_4, and(value_4, 0xff))) { revert(0, 0) }\n        value4 := value_4\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 160))\n        value5 := value_5\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 192))\n        value6 := value_6\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_addresst_address(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n        let value_3 := calldataload(add(headStart, 96))\n        validator_revert_address(value_3)\n        value3 := value_3\n    }\n    function abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$28869t_uint256t_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_calldata_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 384) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_calldata(headStart, dataEnd)\n    }\n    function abi_encode_uint40(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffff))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 384)\n        mstore(headStart, mload(value0))\n        mstore(add(headStart, 0x20), mload(add(value0, 0x20)))\n        mstore(add(headStart, 0x40), mload(add(value0, 0x40)))\n        mstore(add(headStart, 0x60), mload(add(value0, 0x60)))\n        mstore(add(headStart, 0x80), mload(add(value0, 0x80)))\n        mstore(add(headStart, 0xa0), mload(add(value0, 0xa0)))\n        mstore(add(headStart, 0xc0), mload(add(value0, 0xc0)))\n        mstore(add(headStart, 0xe0), mload(add(value0, 0xe0)))\n        mstore(add(headStart, 0x0100), mload(add(value0, 0x0100)))\n        mstore(add(headStart, 0x0120), mload(add(value0, 0x0120)))\n        let memberValue0 := mload(add(value0, 0x0140))\n        abi_encode_uint40(memberValue0, add(headStart, 0x0140))\n        let memberValue0_1 := mload(add(value0, 0x0160))\n        abi_encode_uint40(memberValue0_1, add(headStart, 0x0160))\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 384) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData(headStart, dataEnd)\n    }\n    function abi_encode_tuple_t_stringliteral_4056b1a890a2c3818b7771ad8e47567b7f58fbbd321bfc4356d4990f533b901a__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 23)\n        mstore(add(headStart, 64), \"Not Implemented deposit\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d1c133ca691942c2b9c7b9bbdea503640377a82463f9986cfe69df5983647c2d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Not Implemented withdraw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_stringliteral_42cb6adf2172fcd554545cbd0fc5a0dbec5675a8a159c6f6ca5b7e35bd632f79__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 16)\n        mstore(add(headStart, 64), \"Policy not found\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_dfce19cc5c9d715e1c1447fc4d85b7dd2f48c5fc48e7b8cdfb74121bafc6775d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 18)\n        mstore(add(headStart, 64), \"Hash doesn't match\")\n        tail := add(headStart, 96)\n    }\n    function checked_sub_t_uint40(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffffff), and(y, 0xffffffffff))\n        if gt(diff, 0xffffffffff) { panic_error_0x11() }\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        product := mul(x, y)\n        if iszero(or(iszero(x), eq(y, div(product, x)))) { panic_error_0x11() }\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b50600436106100f0575f3560e01c806382afd23b11610093578063dfcd412e11610063578063dfcd412e14610202578063e5a6b10f14610215578063f45346dc14610225578063f720bbbf14610233575f5ffd5b806382afd23b14610197578063ab55daea146101c8578063bd644c56146101dc578063de27010a146101ef575f5ffd5b806361d027b3116100ce57806361d027b314610137578063663d8337146101515780636f520b7314610164578063792da09e14610178575f5ffd5b8063098d3228146100f45780630c0aab9d1461010f5780630d100acb14610124575b5f5ffd5b6100fc5f1981565b6040519081526020015b60405180910390f35b61012261011d366004610b37565b610246565b005b6100fc610132366004610cb6565b6102b4565b5f5b6040516001600160a01b039091168152602001610106565b6100fc61015f366004610d10565b61032d565b610122610172366004610d5e565b50505050565b6100fc610186366004610d99565b5f9081526002602052604090205490565b6101b86101a5366004610d99565b5f90815260026020526040902054151590565b6040519015158152602001610106565b6101396101d6366004610d99565b60601c90565b6101226101ea366004610dc1565b6103d7565b6101226101fd366004610dec565b6103f3565b6100fc610210366004610e5d565b610440565b5f546001600160a01b0316610139565b6101226101fd366004610ead565b610122610241366004610eec565b61048a565b5f610268878787878764ffffffffff88161561026257876104a5565b426104a5565b90505f6001600160a01b03167f988ac1a1c4820f963124b6fa0394627ad4fa3de7583a76399b998c1d7e43af3f826040516102a39190610f07565b60405180910390a250505050505050565b5f6102cb6001600160601b0383163360601b610fc1565b85526102d6856105ac565b85515f9081526002602052604090819020919091555133907f988ac1a1c4820f963124b6fa0394627ad4fa3de7583a76399b998c1d7e43af3f9061031b908890610f07565b60405180910390a25050915192915050565b5f6103446001600160601b0383163360601b610fc1565b845261034f846105ac565b84515f90815260026020526040908190209190915551339081907f988ac1a1c4820f963124b6fa0394627ad4fa3de7583a76399b998c1d7e43af3f90610396908890610f07565b60405180910390a28451865160405133907f4ff4ac703cb703b7ea535d47e65e64b4cabf11b3e2eb41f152dab17971953add905f90a4505091519392505050565b6103ef6103e936849003840184610fda565b826105fe565b5050565b60405162461bcd60e51b815260206004820152601760248201527f4e6f7420496d706c656d656e746564206465706f73697400000000000000000060448201526064015b60405180910390fd5b60405162461bcd60e51b815260206004820152601860248201527f4e6f7420496d706c656d656e746564207769746864726177000000000000000060448201525f90606401610437565b6104a261049c36839003830183610fda565b5f6105fe565b50565b6104ad610a56565b85858082106104d85760405163319308d960e11b815260048101929092526024820152604401610437565b50506104e2610a56565b602081018690526080810185905264ffffffffff80841661014083015284166101608201525f610515898888888861074e565b805160a0808501919091526020820151604080860191909152820151606080860191909152820151610100850152608082015161012085015281015160c084015260e081015190915088908181111561058a5760405163fc09662760e01b815260048101929092526024820152604401610437565b505060e081015161059b9089610ff5565b60e083015250979650505050505050565b5f816040516020016105be9190610f07565b60408051601f198184030181529190528051602090910120905081816105f857604051636ee9f64760e01b81526004016104379190610f07565b50919050565b81515f036106415760405162461bcd60e51b815260206004820152601060248201526f141bdb1a58de481b9bdd08199bdd5b9960821b6044820152606401610437565b81515f9081526002602052604090205461065a836105ac565b1461069c5760405162461bcd60e51b8152602060048201526012602482015271090c2e6d040c8decae6dc4ee840dac2e8c6d60731b6044820152606401610437565b81515f908152600160208181526040808420848155928301849055600280840185905560038401859055600484018590556005840185905560068401859055600784018590556008840185905560098401859055600a909301805469ffffffffffffffffffff19169055855184529181528183209290925583519051838152909133917f54f4a270ea08f88dc23b2520d6b063fecb24d956c4496f447926d736338f545e910160405180910390a35050565b61078e6040518061010001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b85516107af90670de0b6b3a76400006107a8888883610978565b9190610978565b815260208601516107ca908690670de0b6b3a7640000610978565b60208201819052815110156107f45780516020820180516107ec908390610ff5565b9052506107fb565b5f60208201525b6040860151610814908690670de0b6b3a7640000610978565b60408201526020810151815161082a9190610fc1565b8160400151111561085f57602081015181516108469190610fc1565b816040018181516108579190610ff5565b905250610866565b5f60408201525b6108ab6108738385611008565b64ffffffffff168760a001516108899190611025565b61089f6301e13380670de0b6b3a7640000611025565b60208401519190610978565b60608201526108f56108bd8385611008565b64ffffffffff168760c001516108d39190611025565b6108e96301e13380670de0b6b3a7640000611025565b60408401519190610978565b6080820181905260608201515f9161090c91610fc1565b6080880151909150610928908290670de0b6b3a7640000610978565b6060880151835161094191670de0b6b3a7640000610978565b61094b9190610fc1565b60a083018190528251829161095f91610fc1565b6109699190610fc1565b60e08301525095945050505050565b5f5f5f6109858686610a29565b91509150815f036109a95783818161099f5761099f61103c565b0492505050610a22565b8184116109c0576109c06003851502601118610a45565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150505b9392505050565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b6040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b60405160e0810167ffffffffffffffff81118282101715610ae857634e487b7160e01b5f52604160045260245ffd5b60405290565b604051610180810167ffffffffffffffff81118282101715610ae857634e487b7160e01b5f52604160045260245ffd5b803564ffffffffff81168114610b32575f5ffd5b919050565b5f5f5f5f5f5f868803610180811215610b4e575f5ffd5b60e0811215610b5b575f5ffd5b50610b64610ab9565b873581526020808901359082015260408089013590820152606080890135908201526080808901359082015260a0808901359082015260c08089013590820152955060e0870135945061010087013593506101208701359250610bca6101408801610b1e565b9150610bd96101608801610b1e565b90509295509295509295565b5f6101808284031215610bf6575f5ffd5b610bfe610aee565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e08084013590820152610100808401359082015261012080840135908201529050610c6d6101408301610b1e565b610140820152610c806101608301610b1e565b61016082015292915050565b6001600160a01b03811681146104a2575f5ffd5b80356001600160601b0381168114610b32575f5ffd5b5f5f5f5f6101e08587031215610cca575f5ffd5b610cd48686610be5565b9350610180850135610ce581610c8c565b92506101a0850135610cf681610c8c565b9150610d056101c08601610ca0565b905092959194509250565b5f5f5f5f6103408587031215610d24575f5ffd5b610d2e8686610be5565b9350610d3e866101808701610be5565b9250610300850135610d4f81610c8c565b9150610d056103208601610ca0565b5f5f5f5f6101e08587031215610d72575f5ffd5b610d7c8686610be5565b9661018086013596506101a0860135956101c00135945092505050565b5f60208284031215610da9575f5ffd5b5035919050565b5f61018082840312156105f8575f5ffd5b5f5f6101a08385031215610dd3575f5ffd5b610ddd8484610db0565b94610180939093013593505050565b5f5f5f5f5f5f5f60e0888a031215610e02575f5ffd5b8735610e0d81610c8c565b9650602088013595506040880135610e2481610c8c565b945060608801359350608088013560ff81168114610e40575f5ffd5b9699959850939692959460a0840135945060c09093013592915050565b5f5f5f5f60808587031215610e70575f5ffd5b8435610e7b81610c8c565b9350602085013592506040850135610e9281610c8c565b91506060850135610ea281610c8c565b939692955090935050565b5f5f5f60608486031215610ebf575f5ffd5b8335610eca81610c8c565b9250602084013591506040840135610ee181610c8c565b809150509250925092565b5f6101808284031215610efd575f5ffd5b610a228383610db0565b5f61018082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e083015160e0830152610100830151610100830152610120830151610120830152610140830151610f8b61014084018264ffffffffff169052565b50610160830151610fa661016084018264ffffffffff169052565b5092915050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610fd457610fd4610fad565b92915050565b5f6101808284031215610feb575f5ffd5b610a228383610be5565b81810381811115610fd457610fd4610fad565b64ffffffffff8281168282160390811115610fd457610fd4610fad565b8082028115828204841417610fd457610fd4610fad565b634e487b7160e01b5f52601260045260245ffdfea2646970667358221220fc94ce456b11482c8dc8ba0d4489c34b97cd2d24acaed776f6d703503704818a64736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xF0 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x82AFD23B GT PUSH2 0x93 JUMPI DUP1 PUSH4 0xDFCD412E GT PUSH2 0x63 JUMPI DUP1 PUSH4 0xDFCD412E EQ PUSH2 0x202 JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x215 JUMPI DUP1 PUSH4 0xF45346DC EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0xF720BBBF EQ PUSH2 0x233 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x82AFD23B EQ PUSH2 0x197 JUMPI DUP1 PUSH4 0xAB55DAEA EQ PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xBD644C56 EQ PUSH2 0x1DC JUMPI DUP1 PUSH4 0xDE27010A EQ PUSH2 0x1EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x61D027B3 GT PUSH2 0xCE JUMPI DUP1 PUSH4 0x61D027B3 EQ PUSH2 0x137 JUMPI DUP1 PUSH4 0x663D8337 EQ PUSH2 0x151 JUMPI DUP1 PUSH4 0x6F520B73 EQ PUSH2 0x164 JUMPI DUP1 PUSH4 0x792DA09E EQ PUSH2 0x178 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x98D3228 EQ PUSH2 0xF4 JUMPI DUP1 PUSH4 0xC0AAB9D EQ PUSH2 0x10F JUMPI DUP1 PUSH4 0xD100ACB EQ PUSH2 0x124 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xFC PUSH0 NOT DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x122 PUSH2 0x11D CALLDATASIZE PUSH1 0x4 PUSH2 0xB37 JUMP JUMPDEST PUSH2 0x246 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFC PUSH2 0x132 CALLDATASIZE PUSH1 0x4 PUSH2 0xCB6 JUMP JUMPDEST PUSH2 0x2B4 JUMP JUMPDEST PUSH0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x106 JUMP JUMPDEST PUSH2 0xFC PUSH2 0x15F CALLDATASIZE PUSH1 0x4 PUSH2 0xD10 JUMP JUMPDEST PUSH2 0x32D JUMP JUMPDEST PUSH2 0x122 PUSH2 0x172 CALLDATASIZE PUSH1 0x4 PUSH2 0xD5E JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0xFC PUSH2 0x186 CALLDATASIZE PUSH1 0x4 PUSH2 0xD99 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x1B8 PUSH2 0x1A5 CALLDATASIZE PUSH1 0x4 PUSH2 0xD99 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x106 JUMP JUMPDEST PUSH2 0x139 PUSH2 0x1D6 CALLDATASIZE PUSH1 0x4 PUSH2 0xD99 JUMP JUMPDEST PUSH1 0x60 SHR SWAP1 JUMP JUMPDEST PUSH2 0x122 PUSH2 0x1EA CALLDATASIZE PUSH1 0x4 PUSH2 0xDC1 JUMP JUMPDEST PUSH2 0x3D7 JUMP JUMPDEST PUSH2 0x122 PUSH2 0x1FD CALLDATASIZE PUSH1 0x4 PUSH2 0xDEC JUMP JUMPDEST PUSH2 0x3F3 JUMP JUMPDEST PUSH2 0xFC PUSH2 0x210 CALLDATASIZE PUSH1 0x4 PUSH2 0xE5D JUMP JUMPDEST PUSH2 0x440 JUMP JUMPDEST PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x139 JUMP JUMPDEST PUSH2 0x122 PUSH2 0x1FD CALLDATASIZE PUSH1 0x4 PUSH2 0xEAD JUMP JUMPDEST PUSH2 0x122 PUSH2 0x241 CALLDATASIZE PUSH1 0x4 PUSH2 0xEEC JUMP JUMPDEST PUSH2 0x48A JUMP JUMPDEST PUSH0 PUSH2 0x268 DUP8 DUP8 DUP8 DUP8 DUP8 PUSH5 0xFFFFFFFFFF DUP9 AND ISZERO PUSH2 0x262 JUMPI DUP8 PUSH2 0x4A5 JUMP JUMPDEST TIMESTAMP PUSH2 0x4A5 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x988AC1A1C4820F963124B6FA0394627AD4FA3DE7583A76399B998C1D7E43AF3F DUP3 PUSH1 0x40 MLOAD PUSH2 0x2A3 SWAP2 SWAP1 PUSH2 0xF07 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2CB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP4 AND CALLER PUSH1 0x60 SHL PUSH2 0xFC1 JUMP JUMPDEST DUP6 MSTORE PUSH2 0x2D6 DUP6 PUSH2 0x5AC JUMP JUMPDEST DUP6 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE MLOAD CALLER SWAP1 PUSH32 0x988AC1A1C4820F963124B6FA0394627AD4FA3DE7583A76399B998C1D7E43AF3F SWAP1 PUSH2 0x31B SWAP1 DUP9 SWAP1 PUSH2 0xF07 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP SWAP2 MLOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x344 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP4 AND CALLER PUSH1 0x60 SHL PUSH2 0xFC1 JUMP JUMPDEST DUP5 MSTORE PUSH2 0x34F DUP5 PUSH2 0x5AC JUMP JUMPDEST DUP5 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE MLOAD CALLER SWAP1 DUP2 SWAP1 PUSH32 0x988AC1A1C4820F963124B6FA0394627AD4FA3DE7583A76399B998C1D7E43AF3F SWAP1 PUSH2 0x396 SWAP1 DUP9 SWAP1 PUSH2 0xF07 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP5 MLOAD DUP7 MLOAD PUSH1 0x40 MLOAD CALLER SWAP1 PUSH32 0x4FF4AC703CB703B7EA535D47E65E64B4CABF11B3E2EB41F152DAB17971953ADD SWAP1 PUSH0 SWAP1 LOG4 POP POP SWAP2 MLOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x3EF PUSH2 0x3E9 CALLDATASIZE DUP5 SWAP1 SUB DUP5 ADD DUP5 PUSH2 0xFDA JUMP JUMPDEST DUP3 PUSH2 0x5FE JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4E6F7420496D706C656D656E746564206465706F736974000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4E6F7420496D706C656D656E7465642077697468647261770000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x64 ADD PUSH2 0x437 JUMP JUMPDEST PUSH2 0x4A2 PUSH2 0x49C CALLDATASIZE DUP4 SWAP1 SUB DUP4 ADD DUP4 PUSH2 0xFDA JUMP JUMPDEST PUSH0 PUSH2 0x5FE JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x4AD PUSH2 0xA56 JUMP JUMPDEST DUP6 DUP6 DUP1 DUP3 LT PUSH2 0x4D8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x319308D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x437 JUMP JUMPDEST POP POP PUSH2 0x4E2 PUSH2 0xA56 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH5 0xFFFFFFFFFF DUP1 DUP5 AND PUSH2 0x140 DUP4 ADD MSTORE DUP5 AND PUSH2 0x160 DUP3 ADD MSTORE PUSH0 PUSH2 0x515 DUP10 DUP9 DUP9 DUP9 DUP9 PUSH2 0x74E JUMP JUMPDEST DUP1 MLOAD PUSH1 0xA0 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x40 DUP1 DUP7 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP3 ADD MLOAD PUSH1 0x60 DUP1 DUP7 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP3 ADD MLOAD PUSH2 0x100 DUP6 ADD MSTORE PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x120 DUP6 ADD MSTORE DUP2 ADD MLOAD PUSH1 0xC0 DUP5 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD SWAP1 SWAP2 POP DUP9 SWAP1 DUP2 DUP2 GT ISZERO PUSH2 0x58A JUMPI PUSH1 0x40 MLOAD PUSH4 0xFC096627 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x437 JUMP JUMPDEST POP POP PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x59B SWAP1 DUP10 PUSH2 0xFF5 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x5BE SWAP2 SWAP1 PUSH2 0xF07 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP1 POP DUP2 DUP2 PUSH2 0x5F8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6EE9F647 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x437 SWAP2 SWAP1 PUSH2 0xF07 JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP2 MLOAD PUSH0 SUB PUSH2 0x641 JUMPI 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 0x141BDB1A58DE481B9BDD08199BDD5B99 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x437 JUMP JUMPDEST DUP2 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x65A DUP4 PUSH2 0x5AC JUMP JUMPDEST EQ PUSH2 0x69C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH18 0x90C2E6D040C8DECAE6DC4EE840DAC2E8C6D PUSH1 0x73 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x437 JUMP JUMPDEST DUP2 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP5 DUP2 SSTORE SWAP3 DUP4 ADD DUP5 SWAP1 SSTORE PUSH1 0x2 DUP1 DUP5 ADD DUP6 SWAP1 SSTORE PUSH1 0x3 DUP5 ADD DUP6 SWAP1 SSTORE PUSH1 0x4 DUP5 ADD DUP6 SWAP1 SSTORE PUSH1 0x5 DUP5 ADD DUP6 SWAP1 SSTORE PUSH1 0x6 DUP5 ADD DUP6 SWAP1 SSTORE PUSH1 0x7 DUP5 ADD DUP6 SWAP1 SSTORE PUSH1 0x8 DUP5 ADD DUP6 SWAP1 SSTORE PUSH1 0x9 DUP5 ADD DUP6 SWAP1 SSTORE PUSH1 0xA SWAP1 SWAP4 ADD DUP1 SLOAD PUSH10 0xFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE DUP6 MLOAD DUP5 MSTORE SWAP2 DUP2 MSTORE DUP2 DUP4 KECCAK256 SWAP3 SWAP1 SWAP3 SSTORE DUP4 MLOAD SWAP1 MLOAD DUP4 DUP2 MSTORE SWAP1 SWAP2 CALLER SWAP2 PUSH32 0x54F4A270EA08F88DC23B2520D6B063FECB24D956C4496F447926D736338F545E SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x78E PUSH1 0x40 MLOAD DUP1 PUSH2 0x100 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP6 MLOAD PUSH2 0x7AF SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x7A8 DUP9 DUP9 DUP4 PUSH2 0x978 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x978 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP7 ADD MLOAD PUSH2 0x7CA SWAP1 DUP7 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x978 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE DUP2 MLOAD LT ISZERO PUSH2 0x7F4 JUMPI DUP1 MLOAD PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH2 0x7EC SWAP1 DUP4 SWAP1 PUSH2 0xFF5 JUMP JUMPDEST SWAP1 MSTORE POP PUSH2 0x7FB JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD MSTORE JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD PUSH2 0x814 SWAP1 DUP7 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x978 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x20 DUP2 ADD MLOAD DUP2 MLOAD PUSH2 0x82A SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST DUP2 PUSH1 0x40 ADD MLOAD GT ISZERO PUSH2 0x85F JUMPI PUSH1 0x20 DUP2 ADD MLOAD DUP2 MLOAD PUSH2 0x846 SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST DUP2 PUSH1 0x40 ADD DUP2 DUP2 MLOAD PUSH2 0x857 SWAP2 SWAP1 PUSH2 0xFF5 JUMP JUMPDEST SWAP1 MSTORE POP PUSH2 0x866 JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD MSTORE JUMPDEST PUSH2 0x8AB PUSH2 0x873 DUP4 DUP6 PUSH2 0x1008 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP8 PUSH1 0xA0 ADD MLOAD PUSH2 0x889 SWAP2 SWAP1 PUSH2 0x1025 JUMP JUMPDEST PUSH2 0x89F PUSH4 0x1E13380 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1025 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP2 SWAP1 PUSH2 0x978 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x8F5 PUSH2 0x8BD DUP4 DUP6 PUSH2 0x1008 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP8 PUSH1 0xC0 ADD MLOAD PUSH2 0x8D3 SWAP2 SWAP1 PUSH2 0x1025 JUMP JUMPDEST PUSH2 0x8E9 PUSH4 0x1E13380 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1025 JUMP JUMPDEST PUSH1 0x40 DUP5 ADD MLOAD SWAP2 SWAP1 PUSH2 0x978 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x60 DUP3 ADD MLOAD PUSH0 SWAP2 PUSH2 0x90C SWAP2 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x80 DUP9 ADD MLOAD SWAP1 SWAP2 POP PUSH2 0x928 SWAP1 DUP3 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x978 JUMP JUMPDEST PUSH1 0x60 DUP9 ADD MLOAD DUP4 MLOAD PUSH2 0x941 SWAP2 PUSH8 0xDE0B6B3A7640000 PUSH2 0x978 JUMP JUMPDEST PUSH2 0x94B SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0xA0 DUP4 ADD DUP2 SWAP1 MSTORE DUP3 MLOAD DUP3 SWAP2 PUSH2 0x95F SWAP2 PUSH2 0xFC1 JUMP JUMPDEST PUSH2 0x969 SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x985 DUP7 DUP7 PUSH2 0xA29 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x9A9 JUMPI DUP4 DUP2 DUP2 PUSH2 0x99F JUMPI PUSH2 0x99F PUSH2 0x103C JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0xA22 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x9C0 JUMPI PUSH2 0x9C0 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0xA45 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xAE8 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xAE8 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xB32 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 DUP7 DUP9 SUB PUSH2 0x180 DUP2 SLT ISZERO PUSH2 0xB4E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0xE0 DUP2 SLT ISZERO PUSH2 0xB5B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xB64 PUSH2 0xAB9 JUMP JUMPDEST DUP8 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP10 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP10 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP10 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP10 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP10 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP10 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP6 POP PUSH1 0xE0 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH2 0x100 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x120 DUP8 ADD CALLDATALOAD SWAP3 POP PUSH2 0xBCA PUSH2 0x140 DUP9 ADD PUSH2 0xB1E JUMP JUMPDEST SWAP2 POP PUSH2 0xBD9 PUSH2 0x160 DUP9 ADD PUSH2 0xB1E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xBF6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xBFE PUSH2 0xAEE JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0xC6D PUSH2 0x140 DUP4 ADD PUSH2 0xB1E JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0xC80 PUSH2 0x160 DUP4 ADD PUSH2 0xB1E JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x4A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xB32 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xCCA JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xCD4 DUP7 DUP7 PUSH2 0xBE5 JUMP JUMPDEST SWAP4 POP PUSH2 0x180 DUP6 ADD CALLDATALOAD PUSH2 0xCE5 DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP3 POP PUSH2 0x1A0 DUP6 ADD CALLDATALOAD PUSH2 0xCF6 DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP2 POP PUSH2 0xD05 PUSH2 0x1C0 DUP7 ADD PUSH2 0xCA0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x340 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xD24 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xD2E DUP7 DUP7 PUSH2 0xBE5 JUMP JUMPDEST SWAP4 POP PUSH2 0xD3E DUP7 PUSH2 0x180 DUP8 ADD PUSH2 0xBE5 JUMP JUMPDEST SWAP3 POP PUSH2 0x300 DUP6 ADD CALLDATALOAD PUSH2 0xD4F DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP2 POP PUSH2 0xD05 PUSH2 0x320 DUP7 ADD PUSH2 0xCA0 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xD72 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xD7C DUP7 DUP7 PUSH2 0xBE5 JUMP JUMPDEST SWAP7 PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP7 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP6 PUSH2 0x1C0 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDA9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH2 0x1A0 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDD3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xDDD DUP5 DUP5 PUSH2 0xDB0 JUMP JUMPDEST SWAP5 PUSH2 0x180 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0xE02 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0xE0D DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD PUSH2 0xE24 DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0xE40 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xE70 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0xE7B DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0xE92 DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0xEA2 DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xEBF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0xECA DUP2 PUSH2 0xC8C JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0xEE1 DUP2 PUSH2 0xC8C JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xEFD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xA22 DUP4 DUP4 PUSH2 0xDB0 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 ADD SWAP1 POP DUP3 MLOAD DUP3 MSTORE PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP4 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP4 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP4 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP4 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP4 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP4 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP4 ADD MLOAD PUSH2 0xF8B PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP4 ADD MLOAD PUSH2 0xFA6 PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xFD4 JUMPI PUSH2 0xFD4 PUSH2 0xFAD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFEB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xA22 DUP4 DUP4 PUSH2 0xBE5 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xFD4 JUMPI PUSH2 0xFD4 PUSH2 0xFAD JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0xFD4 JUMPI PUSH2 0xFD4 PUSH2 0xFAD JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0xFD4 JUMPI PUSH2 0xFD4 PUSH2 0xFAD JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xFC SWAP5 0xCE GASLIMIT PUSH12 0x11482C8DC8BA0D4489C34B97 0xCD 0x2D 0x24 0xAC 0xAE 0xD7 PUSH23 0xF6D703503704818A64736F6C634300081E003300000000 ","sourceMap":"420:3610:96:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;502:100;;-1:-1:-1;;502:100:96;;;;;160:25:101;;;148:2;133:18;502:100:96;;;;;;;;3590:438;;;;;;:::i;:::-;;:::i;:::-;;1024:368;;;;;;:::i;:::-;;:::i;931:89::-;983:7;931:89;;;-1:-1:-1;;;;;5254:32:101;;;5236:51;;5224:2;5209:18;931:89:96;5090:203:101;1396:508:96;;;;;;:::i;:::-;;:::i;1908:172::-;;;;;;:::i;:::-;;;;;;2968:122;;;;;;:::i;:::-;3041:7;3063:22;;;:12;:22;;;;;;;2968:122;2836:128;;;;;;:::i;:::-;2904:4;2923:22;;;:12;:22;;;;;;:36;;;2836:128;;;;7045:14:101;;7038:22;7020:41;;7008:2;6993:18;2836:128:96;6880:187:101;2084:142:96;;;;;;:::i;:::-;2216:2;2204:14;;2084:142;2584:133;;;;;;:::i;:::-;;:::i;3209:155::-;;;;;;:::i;:::-;;:::i;3368:140::-;;;;;;:::i;:::-;;:::i;832:95::-;884:14;913:9;-1:-1:-1;;;;;913:9:96;832:95;;3094:111;;;;;;:::i;2721:::-;;;;;;:::i;:::-;;:::i;3590:438::-;3781:31;3815:154;3840:8;3856:7;3871:6;3885:8;3901:10;3919;;;;:44;;3958:5;3815:17;:154::i;3919:44::-;3939:15;3815:17;:154::i;:::-;3781:188;;4011:1;-1:-1:-1;;;;;3981:42:96;;4016:6;3981:42;;;;;;:::i;:::-;;;;;;;;3775:253;3590:438;;;;;;:::o;1024:368::-;1191:7;1218:49;-1:-1:-1;;;;;1218:49:96;;1235:10;1251:2;1219:34;1218:49;:::i;:::-;1206:61;;1299:13;1206:6;1299:11;:13::i;:::-;1286:9;;1273:23;;;;:12;:23;;;;;;;:39;;;;1323:42;1345:10;;1323:42;;;;1286:6;;1323:42;:::i;:::-;;;;;;;;-1:-1:-1;;1378:9:96;;;1024:368;-1:-1:-1;;1024:368:96:o;1396:508::-;1579:7;1610:49;-1:-1:-1;;;;;1610:49:96;;1627:10;1643:2;1611:34;1610:49;:::i;:::-;1594:65;;1695:17;1594:10;1695:15;:17::i;:::-;1678:13;;1665:27;;;;:12;:27;;;;;;;:47;;;;1769:25;1747:10;;;;1769:25;;;;1678:10;;1769:25;:::i;:::-;;;;;;;;1859:13;;1845:12;;1805:68;;1832:10;;1805:68;;1859:13;;1805:68;-1:-1:-1;;1886:13:96;;;1396:508;-1:-1:-1;;;1396:508:96:o;2584:133::-;2682:30;;;;;;;;2697:6;2682:30;:::i;:::-;2705:6;2682:14;:30::i;:::-;2584:133;;:::o;3209:155::-;3326:33;;-1:-1:-1;;;3326:33:96;;12444:2:101;3326:33:96;;;12426:21:101;12483:2;12463:18;;;12456:30;12522:25;12502:18;;;12495:53;12565:18;;3326:33:96;;;;;;;;3368:140;3469:34;;-1:-1:-1;;;3469:34:96;;12796:2:101;3469:34:96;;;12778:21:101;12835:2;12815:18;;;12808:30;12874:26;12854:18;;;12847:54;3454:7:96;;12918:18:101;;3469:34:96;12594:348:101;2721:111:96;2802:25;;;;;;;;2817:6;2802:25;:::i;:::-;2825:1;2802:14;:25::i;:::-;2721:111;:::o;7346:997:71:-;7525:27;;:::i;:::-;7568:7;7578:6;7568:16;;;7560:64;;;;-1:-1:-1;;;7560:64:71;;;;;13121:25:101;;;;13162:18;;;13155:34;13094:18;;7560:64:71;12947:248:101;7560:64:71;;;7630:24;;:::i;:::-;7661:13;;;:22;;;7689:15;;;:26;;;7721:20;;;;:12;;;:20;7747:30;;:17;;;:30;-1:-1:-1;7823:64:71;7841:8;7677:6;7707:8;7767:10;7736:5;7823:17;:64::i;:::-;7915:22;;7894:18;;;;:43;;;;7958:16;;;;7943:12;;;;:31;;;;7995:16;;;-1:-1:-1;7980:12:71;;;:31;;;;8032:16;;;8017:12;;;:31;8069:16;;;;8054:12;;;:31;8117:27;;;8091:23;;;:53;8159:23;;;;7784:103;;-1:-1:-1;8186:7:71;;8159:34;;;;8151:101;;;;-1:-1:-1;;;8151:101:71;;;;;13121:25:101;;;;13162:18;;;13155:34;13094:18;;8151:101:71;12947:248:101;8151:101:71;-1:-1:-1;;8296:23:71;;;;8286:33;;:7;:33;:::i;:::-;8259:24;;;:60;-1:-1:-1;8259:24:71;7346:997;-1:-1:-1;;;;;;;7346:997:71:o;10651:204::-;10714:15;10768:6;10757:18;;;;;;;;:::i;:::-;;;;-1:-1:-1;;10757:18:71;;;;;;;;;10747:29;;10757:18;10747:29;;;;;-1:-1:-1;10822:6:71;10790:21;10782:48;;;;-1:-1:-1;;;10782:48:71;;;;;;;;:::i;:::-;;10651:204;;;:::o;2230:350:96:-;2326:9;;;:14;2318:43;;;;-1:-1:-1;;;2318:43:96;;13535:2:101;2318:43:96;;;13517:21:101;13574:2;13554:18;;;13547:30;-1:-1:-1;;;13593:18:101;;;13586:46;13649:18;;2318:43:96;13333:340:101;2318:43:96;2405:9;;2392:23;;;;:12;:23;;;;;;2375:13;2405:6;2375:11;:13::i;:::-;:40;2367:71;;;;-1:-1:-1;;;2367:71:96;;13880:2:101;2367:71:96;;;13862:21:101;13919:2;13899:18;;;13892:30;-1:-1:-1;;;13938:18:101;;;13931:48;13996:18;;2367:71:96;13678:342:101;2367:71:96;2460:9;;2451:19;;;;:8;:19;;;;;;;;2444:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2444:26:96;;;2496:9;;2483:23;;;;;;;;2476:30;;;;2557:9;;2517:58;;160:25:101;;;2557:9:96;;2544:10;;2517:58;;133:18:101;2517:58:96;;;;;;;2230:350;;:::o;5144:1314:71:-;5309:36;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5309:36:71;5414:12;;5378:54;;643:4;5378:28;:6;5392:8;643:4;5378:13;:28::i;:::-;:35;:54;:35;:54::i;:::-;5353:79;;5471:20;;;;5457:40;;:6;;643:4;5457:13;:40::i;:::-;5438:16;;;:59;;;5526:22;;-1:-1:-1;5503:145:71;;;5578:22;;5558:16;;;:42;;;;5578:22;;5558:42;:::i;:::-;;;-1:-1:-1;5503:145:71;;;5640:1;5621:16;;;:20;5503:145;5687:18;;;;5673:38;;:6;;643:4;5673:13;:38::i;:::-;5654:16;;;:57;5766:16;;;;5741:22;;:41;;5766:16;5741:41;:::i;:::-;5721:10;:16;;;:62;5717:185;;;5838:16;;;;5813:22;;:41;;5838:16;5813:41;:::i;:::-;5793:10;:16;;:61;;;;;;;:::i;:::-;;;-1:-1:-1;5717:185:71;;;5894:1;5875:16;;;:20;5717:185;5949:86;5991:18;6004:5;5991:10;:18;:::i;:::-;5973:37;;:8;:14;;;:37;;;;:::i;:::-;6012:22;696:8;643:4;6012:22;:::i;:::-;5949:16;;;;;:86;:23;:86::i;:::-;5930:16;;;:105;6060:86;6102:18;6115:5;6102:10;:18;:::i;:::-;6084:37;;:8;:14;;;:37;;;;:::i;:::-;6123:22;696:8;643:4;6123:22;:::i;:::-;6060:16;;;;;:86;:23;:86::i;:::-;6041:16;;;:105;;;6171:16;;;;6152;;6171:35;;;:::i;:::-;6330:21;;;;6152:54;;-1:-1:-1;6314:43:71;;6152:54;;643:4;6314:15;:43::i;:::-;6279:20;;;;6249:22;;:56;;643:4;6249:29;:56::i;:::-;:108;;;;:::i;:::-;6213:27;;;:144;;;6390:22;;6445:8;;6390:52;;;:::i;:::-;:63;;;;:::i;:::-;6364:23;;;:89;-1:-1:-1;6364:10:71;5144:1314;-1:-1:-1;;;;;5144:1314:71:o;7258:3683:63:-;7340:14;7391:12;7405:11;7420:12;7427:1;7430;7420:6;:12::i;:::-;7390:42;;;;7514:4;7522:1;7514:9;7510:365;;7849:11;7843:3;:17;;;;;:::i;:::-;;7836:24;;;;;;7510:365;8000:4;7985:11;:19;7981:142;;8024:84;5328:5;8044:16;;5327:36;940:4:53;5322:42:63;8024:11;:84::i;:::-;8375:17;8526:11;8523:1;8520;8513:25;8918:12;8948:15;;;8933:31;;9083:22;;;;;9816:1;9797;:15;;9796:21;;10049;;;10045:25;;10034:36;10119:21;;;10115:25;;10104:36;10191:21;;;10187:25;;10176:36;10262:21;;;10258:25;;10247:36;10335:21;;;10331:25;;10320:36;10409:21;;;10405:25;;;10394:36;9325:12;;;;9321:23;;;9346:1;9317:31;8638:18;;;8628:29;;;9432:11;;;;8681:19;;;;9176:14;;;;9425:18;;;;10884:13;;-1:-1:-1;;7258:3683:63;;;;;;:::o;1027:550::-;1088:12;;-1:-1:-1;;1471:1:63;1468;1461:20;1501:9;;;;1549:11;;;1535:12;;;;1531:30;;;;;1027:550;-1:-1:-1;;1027:550:63:o;1776:194:53:-;1881:10;1875:4;1868:24;1918:4;1912;1905:18;1949:4;1943;1936:18;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;196:345:101:-;263:2;257:9;305:4;293:17;;340:18;325:34;;361:22;;;322:62;319:185;;;426:10;421:3;417:20;414:1;407:31;461:4;458:1;451:15;489:4;486:1;479:15;319:185;520:2;513:22;196:345;:::o;546:352::-;618:2;612:9;660:6;648:19;;697:18;682:34;;718:22;;;679:62;676:185;;;783:10;778:3;774:20;771:1;764:31;818:4;815:1;808:15;846:4;843:1;836:15;903:165;970:20;;1030:12;1019:24;;1009:35;;999:63;;1058:1;1055;1048:12;999:63;903:165;;;:::o;1073:1610::-;1200:6;1208;1216;1224;1232;1240;1284:9;1275:7;1271:23;1314:3;1310:2;1306:12;1303:32;;;1331:1;1328;1321:12;1303:32;1355:4;1351:2;1347:13;1344:33;;;1373:1;1370;1363:12;1344:33;;1399:17;;:::i;:::-;1461:23;;1493:22;;1588:2;1573:18;;;1560:32;1608:14;;;1601:31;1705:2;1690:18;;;1677:32;1725:14;;;1718:31;1822:2;1807:18;;;1794:32;1842:14;;;1835:31;1939:3;1924:19;;;1911:33;1960:15;;;1953:32;2058:3;2043:19;;;2030:33;2079:15;;;2072:32;2177:3;2162:19;;;2149:33;2198:15;;;2191:32;1500:5;-1:-1:-1;2320:4:101;2305:20;;2292:34;;-1:-1:-1;2425:3:101;2410:19;;2397:33;;-1:-1:-1;2531:3:101;2516:19;;2503:33;;-1:-1:-1;2582:38:101;2615:3;2600:19;;2582:38;:::i;:::-;2572:48;;2639:38;2672:3;2661:9;2657:19;2639:38;:::i;:::-;2629:48;;1073:1610;;;;;;;;:::o;2688:1486::-;2745:5;2793:6;2781:9;2776:3;2772:19;2768:32;2765:52;;;2813:1;2810;2803:12;2765:52;2835:22;;:::i;:::-;2902:23;;2934:22;;3029:2;3014:18;;;3001:32;3049:14;;;3042:31;3146:2;3131:18;;;3118:32;3166:14;;;3159:31;3263:2;3248:18;;;3235:32;3283:14;;;3276:31;3380:3;3365:19;;;3352:33;3401:15;;;3394:32;3499:3;3484:19;;;3471:33;3520:15;;;3513:32;3618:3;3603:19;;;3590:33;3639:15;;;3632:32;3737:3;3722:19;;;3709:33;3758:15;;;3751:32;3856:3;3841:19;;;3828:33;3877:15;;;3870:32;3977:3;3962:19;;;3949:33;3998:15;;;3991:33;2826:31;-1:-1:-1;4057:38:101;4090:3;4075:19;;4057:38;:::i;:::-;4051:3;4044:5;4040:15;4033:63;4129:38;4162:3;4151:9;4147:19;4129:38;:::i;:::-;4123:3;4116:5;4112:15;4105:63;2688:1486;;;;:::o;4179:131::-;-1:-1:-1;;;;;4254:31:101;;4244:42;;4234:70;;4300:1;4297;4290:12;4315:179;4382:20;;-1:-1:-1;;;;;4431:38:101;;4421:49;;4411:77;;4484:1;4481;4474:12;4499:586;4613:6;4621;4629;4637;4690:3;4678:9;4669:7;4665:23;4661:33;4658:53;;;4707:1;4704;4697:12;4658:53;4730:48;4770:7;4759:9;4730:48;:::i;:::-;4720:58;;4828:3;4817:9;4813:19;4800:33;4842:31;4867:5;4842:31;:::i;:::-;4892:5;-1:-1:-1;4949:3:101;4934:19;;4921:33;4963;4921;4963;:::i;:::-;5015:7;-1:-1:-1;5041:38:101;5074:3;5059:19;;5041:38;:::i;:::-;5031:48;;4499:586;;;;;;;:::o;5298:567::-;5441:6;5449;5457;5465;5518:3;5506:9;5497:7;5493:23;5489:33;5486:53;;;5535:1;5532;5525:12;5486:53;5558:48;5598:7;5587:9;5558:48;:::i;:::-;5548:58;;5625;5675:7;5669:3;5658:9;5654:19;5625:58;:::i;:::-;5615:68;;5733:3;5722:9;5718:19;5705:33;5747:31;5772:5;5747:31;:::i;:::-;5797:5;-1:-1:-1;5821:38:101;5854:3;5839:19;;5821:38;:::i;5870:592::-;5985:6;5993;6001;6009;6062:3;6050:9;6041:7;6037:23;6033:33;6030:53;;;6079:1;6076;6069:12;6030:53;6102:48;6142:7;6131:9;6102:48;:::i;:::-;6092:58;6219:3;6204:19;;6191:33;;-1:-1:-1;6321:3:101;6306:19;;6293:33;;6425:3;6410:19;6397:33;;-1:-1:-1;5870:592:101;-1:-1:-1;;;5870:592:101:o;6467:226::-;6526:6;6579:2;6567:9;6558:7;6554:23;6550:32;6547:52;;;6595:1;6592;6585:12;6547:52;-1:-1:-1;6640:23:101;;6467:226;-1:-1:-1;6467:226:101:o;7301:159::-;7364:5;7409:3;7400:6;7395:3;7391:16;7387:26;7384:46;;;7426:1;7423;7416:12;7465:361;7564:6;7572;7625:3;7613:9;7604:7;7600:23;7596:33;7593:53;;;7642:1;7639;7632:12;7593:53;7665:57;7714:7;7703:9;7665:57;:::i;:::-;7655:67;7791:3;7776:19;;;;7763:33;;-1:-1:-1;;;7465:361:101:o;7831:1054::-;7959:6;7967;7975;7983;7991;7999;8007;8060:3;8048:9;8039:7;8035:23;8031:33;8028:53;;;8077:1;8074;8067:12;8028:53;8116:9;8103:23;8135:31;8160:5;8135:31;:::i;:::-;8185:5;-1:-1:-1;8263:2:101;8248:18;;8235:32;;-1:-1:-1;8345:2:101;8330:18;;8317:32;8358:33;8317:32;8358:33;:::i;:::-;8410:7;-1:-1:-1;8490:2:101;8475:18;;8462:32;;-1:-1:-1;8572:3:101;8557:19;;8544:33;8621:4;8608:18;;8596:31;;8586:59;;8641:1;8638;8631:12;8586:59;7831:1054;;;;-1:-1:-1;7831:1054:101;;;;8664:7;8744:3;8729:19;;8716:33;;-1:-1:-1;8848:3:101;8833:19;;;8820:33;;7831:1054;-1:-1:-1;;7831:1054:101:o;8890:667::-;8993:6;9001;9009;9017;9070:3;9058:9;9049:7;9045:23;9041:33;9038:53;;;9087:1;9084;9077:12;9038:53;9126:9;9113:23;9145:31;9170:5;9145:31;:::i;:::-;9195:5;-1:-1:-1;9273:2:101;9258:18;;9245:32;;-1:-1:-1;9355:2:101;9340:18;;9327:32;9368:33;9327:32;9368:33;:::i;:::-;9420:7;-1:-1:-1;9479:2:101;9464:18;;9451:32;9492:33;9451:32;9492:33;:::i;:::-;8890:667;;;;-1:-1:-1;8890:667:101;;-1:-1:-1;;8890:667:101:o;9793:525::-;9887:6;9895;9903;9956:2;9944:9;9935:7;9931:23;9927:32;9924:52;;;9972:1;9969;9962:12;9924:52;10011:9;9998:23;10030:31;10055:5;10030:31;:::i;:::-;10080:5;-1:-1:-1;10158:2:101;10143:18;;10130:32;;-1:-1:-1;10240:2:101;10225:18;;10212:32;10253:33;10212:32;10253:33;:::i;:::-;10305:7;10295:17;;;9793:525;;;;;:::o;10323:246::-;10413:6;10466:3;10454:9;10445:7;10441:23;10437:33;10434:53;;;10483:1;10480;10473:12;10434:53;10506:57;10555:7;10544:9;10506:57;:::i;10675:1060::-;10825:4;10867:3;10856:9;10852:19;10844:27;;10904:6;10898:13;10887:9;10880:32;10968:4;10960:6;10956:17;10950:24;10943:4;10932:9;10928:20;10921:54;11031:4;11023:6;11019:17;11013:24;11006:4;10995:9;10991:20;10984:54;11094:4;11086:6;11082:17;11076:24;11069:4;11058:9;11054:20;11047:54;11157:4;11149:6;11145:17;11139:24;11132:4;11121:9;11117:20;11110:54;11220:4;11212:6;11208:17;11202:24;11195:4;11184:9;11180:20;11173:54;11283:4;11275:6;11271:17;11265:24;11258:4;11247:9;11243:20;11236:54;11346:4;11338:6;11334:17;11328:24;11321:4;11310:9;11306:20;11299:54;11411:6;11403;11399:19;11393:26;11384:6;11373:9;11369:22;11362:58;11478:6;11470;11466:19;11460:26;11451:6;11440:9;11436:22;11429:58;11534:6;11526;11522:19;11516:26;11551:55;11598:6;11587:9;11583:22;11569:12;10650;10639:24;10627:37;;10574:96;11551:55;;11655:6;11647;11643:19;11637:26;11672:57;11721:6;11710:9;11706:22;11690:14;10650:12;10639:24;10627:37;;10574:96;11672:57;;10675:1060;;;;:::o;11740:127::-;11801:10;11796:3;11792:20;11789:1;11782:31;11832:4;11829:1;11822:15;11856:4;11853:1;11846:15;11872:125;11937:9;;;11958:10;;;11955:36;;;11971:18;;:::i;:::-;11872:125;;;;:::o;12002:235::-;12090:6;12143:3;12131:9;12122:7;12118:23;12114:33;12111:53;;;12160:1;12157;12150:12;12111:53;12183:48;12223:7;12212:9;12183:48;:::i;13200:128::-;13267:9;;;13288:11;;;13285:37;;;13302:18;;:::i;14025:176::-;14124:12;14117:20;;;14095;;;14091:47;;14150:22;;14147:48;;;14175:18;;:::i;14206:168::-;14279:9;;;14310;;14327:15;;;14321:22;;14307:37;14297:71;;14348:18;;:::i;14379:127::-;14440:10;14435:3;14431:20;14428:1;14421:31;14471:4;14468:1;14461:15;14495:4;14492:1;14485:15"},"methodIdentifiers":{"MAX_INT()":"098d3228","cancelPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)":"6f520b73","currency()":"e5a6b10f","deposit(address,uint256,address)":"f45346dc","depositWithPermit(address,uint256,address,uint256,uint8,bytes32,bytes32)":"de27010a","expirePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))":"f720bbbf","extractRiskModule(uint256)":"ab55daea","getPolicyHash(uint256)":"792da09e","initializeAndEmitPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256),uint256,uint256,uint256,uint40,uint40)":"0c0aab9d","isActive(uint256)":"82afd23b","newPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,address,uint96)":"0d100acb","replacePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,uint96)":"663d8337","resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)":"bd644c56","treasury()":"61d027b3","withdraw(address,uint256,address,address)":"dfcd412e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"currency_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"PremiumExceedsPayout\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minPremium\",\"type\":\"uint256\"}],\"name\":\"PremiumLessThanMinimum\",\"type\":\"error\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"ZeroHash\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"indexed\":false,\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"NewPolicy\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"cancelledPolicyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"name\":\"PolicyCancelled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"oldPolicyId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"newPolicyId\",\"type\":\"uint256\"}],\"name\":\"PolicyReplaced\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"PolicyResolved\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"MAX_INT\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policyToCancel\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"name\":\"cancelPolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"name\":\"depositWithPermit\",\"outputs\":[],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"expirePolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"extractRiskModule\",\"outputs\":[{\"internalType\":\"contract IRiskModule\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"getPolicyHash\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"moc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCollRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"collRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroPpFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCocFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrRoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srRoc\",\"type\":\"uint256\"}],\"internalType\":\"struct Policy.Params\",\"name\":\"rmParams\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"}],\"name\":\"initializeAndEmitPolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"isActive\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"}],\"name\":\"newPolicy\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"oldPolicy\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"newPolicy_\",\"type\":\"tuple\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"}],\"name\":\"replacePolicy\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"resolvePolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"treasury\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"}],\"devdoc\":{\"errors\":{\"PremiumLessThanMinimum(uint256,uint256)\":[{\"details\":\"The minPremium is the one that results of computing the CoCs, purePremium and ensuroCommission for the given parameters, assuming partnerCommission = 0.\"}]},\"events\":{\"NewPolicy(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"details\":\"Contains all the data about the policy that is later required for doing operations with the policy like      resolution or expiration.\",\"params\":{\"policy\":\"The {Policy-PolicyData} struct with all the immutable fields of the policy.\",\"riskModule\":\"The risk module that created the policy\"}},\"PolicyCancelled(address,uint256,uint256,uint256,uint256)\":{\"details\":\"After this, the policy is no longer active. The refund amounts are transferred to the policy holder.\",\"params\":{\"cancelledPolicyId\":\"The id of the cancelled policy.\",\"jrCocRefund\":\"The amount of Jr CoC refunded\",\"purePremiumRefund\":\"The amount of pure premium refunded\",\"riskModule\":\"The risk module that created the policy\",\"srCocRefund\":\"The amount of Sr CoC refunded\"}},\"PolicyReplaced(address,uint256,uint256)\":{\"details\":\"The event contains only the id of the replacement policy, the full data is available in the NewPolicy event.\",\"params\":{\"newPolicyId\":\"The id of the new policy.\",\"oldPolicyId\":\"The id of the replaced policy.\",\"riskModule\":\"The risk module that created the policy\"}},\"PolicyResolved(address,uint256,uint256)\":{\"details\":\"If the policy expired, the `payout` is 0, otherwise is the amount transferred to the policyholder.\",\"params\":{\"payout\":\"The payout that has been paid to the policy holder. 0 when the policy expired.\",\"policyId\":\"The unique id of the policy\",\"riskModule\":\"The risk module where that created the policy initially.\"}}},\"kind\":\"dev\",\"methods\":{\"cancelPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)\":{\"details\":\"After this call the policy is not claimable and funds are unlocked\",\"params\":{\"jrCocRefund\":\"The amount to refund from jrCoc (<= policyToCancel.jrCoc)\",\"policyToCancel\":\"A policy created previously and not expired, that will be cancelled\",\"purePremiumRefund\":\"The amount to refund from pure premiums (<= policyToCancel.purePremium)\",\"srCocRefund\":\"The amount to refund from srCoc (<= policyToCancel.jrCoc)\"}},\"expirePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"details\":\"Resolves a policy with a payout 0, unlocking the solvency. Can be called by anyone, but only after      `Policy.expiration`.\",\"params\":{\"policy\":\"A policy previously created with `newPolicy`\"}},\"getPolicyHash(uint256)\":{\"details\":\"Returns `bytes32(0)` if the policy isn't active.\",\"params\":{\"policyId\":\"The id of the policy queried\"},\"returns\":{\"_0\":\"Returns the hash of a given policy id\"}},\"initializeAndEmitPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256),uint256,uint256,uint256,uint40,uint40)\":{\"details\":\"Simple passthrough method for testing Policy.initialize\"},\"isActive(uint256)\":{\"details\":\"A policy is active when it's still in the PolicyPool, not yet resolved or expired.      Be aware that a policy might be active but the `block.timestamp` might be after the expiration date, so it      can't be triggered with a payout.\",\"params\":{\"policyId\":\"The id of the policy queried\"},\"returns\":{\"_0\":\"Whether the policy is active or not\"}},\"resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"details\":\"After this call the policy is no longer active and the funds have been unlocked.\",\"params\":{\"payout\":\"The amount to pay to the policyholder\",\"policy\":\"A policy previously created with `newPolicy`\"}}},\"version\":1},\"userdoc\":{\"errors\":{\"PremiumExceedsPayout(uint256,uint256)\":[{\"notice\":\"Raised when the premium exceeds the payoutreceived premium is less than the minimum\"}],\"PremiumLessThanMinimum(uint256,uint256)\":[{\"notice\":\"Raised when the received premium is less than the minimum\"}],\"ZeroHash((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":[{\"notice\":\"Raised when the computed hash is bytes32(0)\"}]},\"events\":{\"NewPolicy(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Event emitted every time a new policy is added to the pool\"},\"PolicyCancelled(address,uint256,uint256,uint256,uint256)\":{\"notice\":\"Event emitted when a policy is cancelled, and part of the paid premium is refunded.\"},\"PolicyReplaced(address,uint256,uint256)\":{\"notice\":\"Event emitted every time a new policy replaces an old Policy.\"},\"PolicyResolved(address,uint256,uint256)\":{\"notice\":\"Event emitted every time a policy is removed from the pool\"}},\"kind\":\"user\",\"methods\":{\"cancelPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)\":{\"notice\":\"Cancels a policy, doing optional refunds of parts of the premium.\"},\"currency()\":{\"notice\":\"Reference to the main currency (ERC20, e.g. USDC) used in the protocol\"},\"expirePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Expires a policy, unlocked the solvency.\"},\"getPolicyHash(uint256)\":{\"notice\":\"Returns the stored hash of the policy\"},\"isActive(uint256)\":{\"notice\":\"Returns whether a policy is active\"},\"resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"notice\":\"Resolves a policy with a payout, sending the payment to the owner of the policy NFT.\"},\"treasury()\":{\"notice\":\"Address of the treasury, that receives protocol fees.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/mocks/PolicyPoolMock.sol\":\"PolicyPoolMock\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0x80935e4fae2c414f4e7789e13a820d06901182a5733ab006f8d68b5b09db993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://752d991d6ca1087587b48103bc623f74888054f58581ff29166d90889c4765c5\",\"dweb:/ipfs/QmRBsa6K2ChKxVWYY54YiyYhDBPbmY5HyKCtij5LoWh56o\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]},\"contracts/mocks/ForwardProxy.sol\":{\"keccak256\":\"0x3ec679a7979e4d0a93a4fdd3db90bc34ab000b888664c88260649fef9e302a5b\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://28bf69dcdbd93e4f429e26a2260bc58ef19efcb2163ccdf28e295c4264284900\",\"dweb:/ipfs/QmY8FFry1PtXKm32WPmGzNyLcWagg1qhhy5dvqgL7qiTmk\"]},\"contracts/mocks/PolicyPoolMock.sol\":{\"keccak256\":\"0x53b14090117f7efd36cb70f5b506bfa38e2c20f0814ee3097c2dba1682b546c1\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://f6218e5fc603a5b767aa36c78852b5943215ac5ee10c614f8b4e5828dc11f6c6\",\"dweb:/ipfs/QmNUnk2UrhraUvjvn6PPjZtnbVukURWCHFAwegDJyNgUUF\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":30117,"contract":"contracts/mocks/PolicyPoolMock.sol:PolicyPoolMock","label":"_currency","offset":0,"slot":"0","type":"t_contract(IERC20Metadata)8863"},{"astId":30122,"contract":"contracts/mocks/PolicyPoolMock.sol:PolicyPoolMock","label":"policies","offset":0,"slot":"1","type":"t_mapping(t_uint256,t_struct(PolicyData)22256_storage)"},{"astId":30126,"contract":"contracts/mocks/PolicyPoolMock.sol:PolicyPoolMock","label":"policyHashes","offset":0,"slot":"2","type":"t_mapping(t_uint256,t_bytes32)"}],"types":{"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_contract(IERC20Metadata)8863":{"encoding":"inplace","label":"contract IERC20Metadata","numberOfBytes":"20"},"t_mapping(t_uint256,t_bytes32)":{"encoding":"mapping","key":"t_uint256","label":"mapping(uint256 => bytes32)","numberOfBytes":"32","value":"t_bytes32"},"t_mapping(t_uint256,t_struct(PolicyData)22256_storage)":{"encoding":"mapping","key":"t_uint256","label":"mapping(uint256 => struct Policy.PolicyData)","numberOfBytes":"32","value":"t_struct(PolicyData)22256_storage"},"t_struct(PolicyData)22256_storage":{"encoding":"inplace","label":"struct Policy.PolicyData","members":[{"astId":22233,"contract":"contracts/mocks/PolicyPoolMock.sol:PolicyPoolMock","label":"id","offset":0,"slot":"0","type":"t_uint256"},{"astId":22235,"contract":"contracts/mocks/PolicyPoolMock.sol:PolicyPoolMock","label":"payout","offset":0,"slot":"1","type":"t_uint256"},{"astId":22237,"contract":"contracts/mocks/PolicyPoolMock.sol:PolicyPoolMock","label":"jrScr","offset":0,"slot":"2","type":"t_uint256"},{"astId":22239,"contract":"contracts/mocks/PolicyPoolMock.sol:PolicyPoolMock","label":"srScr","offset":0,"slot":"3","type":"t_uint256"},{"astId":22241,"contract":"contracts/mocks/PolicyPoolMock.sol:PolicyPoolMock","label":"lossProb","offset":0,"slot":"4","type":"t_uint256"},{"astId":22243,"contract":"contracts/mocks/PolicyPoolMock.sol:PolicyPoolMock","label":"purePremium","offset":0,"slot":"5","type":"t_uint256"},{"astId":22245,"contract":"contracts/mocks/PolicyPoolMock.sol:PolicyPoolMock","label":"ensuroCommission","offset":0,"slot":"6","type":"t_uint256"},{"astId":22247,"contract":"contracts/mocks/PolicyPoolMock.sol:PolicyPoolMock","label":"partnerCommission","offset":0,"slot":"7","type":"t_uint256"},{"astId":22249,"contract":"contracts/mocks/PolicyPoolMock.sol:PolicyPoolMock","label":"jrCoc","offset":0,"slot":"8","type":"t_uint256"},{"astId":22251,"contract":"contracts/mocks/PolicyPoolMock.sol:PolicyPoolMock","label":"srCoc","offset":0,"slot":"9","type":"t_uint256"},{"astId":22253,"contract":"contracts/mocks/PolicyPoolMock.sol:PolicyPoolMock","label":"start","offset":0,"slot":"10","type":"t_uint40"},{"astId":22255,"contract":"contracts/mocks/PolicyPoolMock.sol:PolicyPoolMock","label":"expiration","offset":5,"slot":"10","type":"t_uint40"}],"numberOfBytes":"352"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint40":{"encoding":"inplace","label":"uint40","numberOfBytes":"5"}}}},"PolicyPoolMockForward":{"abi":[{"inputs":[{"internalType":"address","name":"forwardTo","type":"address"},{"internalType":"contract IERC20Metadata","name":"currency_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"MAX_INT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"forwardTo","type":"address"}],"name":"setForwardTo","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_29382":{"entryPoint":null,"id":29382,"parameterSlots":1,"returnSlots":0},"@_30567":{"entryPoint":null,"id":30567,"parameterSlots":2,"returnSlots":0},"abi_decode_tuple_t_addresst_contract$_IERC20Metadata_$8863_fromMemory":{"entryPoint":112,"id":null,"parameterSlots":2,"returnSlots":2},"validator_revert_address":{"entryPoint":90,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:560:101","nodeType":"YulBlock","src":"0:560:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"59:86:101","nodeType":"YulBlock","src":"59:86:101","statements":[{"body":{"nativeSrc":"123:16:101","nodeType":"YulBlock","src":"123:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:101","nodeType":"YulLiteral","src":"132:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:101","nodeType":"YulLiteral","src":"135:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:101","nodeType":"YulIdentifier","src":"125:6:101"},"nativeSrc":"125:12:101","nodeType":"YulFunctionCall","src":"125:12:101"},"nativeSrc":"125:12:101","nodeType":"YulExpressionStatement","src":"125:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"82:5:101","nodeType":"YulIdentifier","src":"82:5:101"},{"arguments":[{"name":"value","nativeSrc":"93:5:101","nodeType":"YulIdentifier","src":"93:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"108:3:101","nodeType":"YulLiteral","src":"108:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"113:1:101","nodeType":"YulLiteral","src":"113:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"104:3:101","nodeType":"YulIdentifier","src":"104:3:101"},"nativeSrc":"104:11:101","nodeType":"YulFunctionCall","src":"104:11:101"},{"kind":"number","nativeSrc":"117:1:101","nodeType":"YulLiteral","src":"117:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"100:3:101","nodeType":"YulIdentifier","src":"100:3:101"},"nativeSrc":"100:19:101","nodeType":"YulFunctionCall","src":"100:19:101"}],"functionName":{"name":"and","nativeSrc":"89:3:101","nodeType":"YulIdentifier","src":"89:3:101"},"nativeSrc":"89:31:101","nodeType":"YulFunctionCall","src":"89:31:101"}],"functionName":{"name":"eq","nativeSrc":"79:2:101","nodeType":"YulIdentifier","src":"79:2:101"},"nativeSrc":"79:42:101","nodeType":"YulFunctionCall","src":"79:42:101"}],"functionName":{"name":"iszero","nativeSrc":"72:6:101","nodeType":"YulIdentifier","src":"72:6:101"},"nativeSrc":"72:50:101","nodeType":"YulFunctionCall","src":"72:50:101"},"nativeSrc":"69:70:101","nodeType":"YulIf","src":"69:70:101"}]},"name":"validator_revert_address","nativeSrc":"14:131:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"48:5:101","nodeType":"YulTypedName","src":"48:5:101","type":""}],"src":"14:131:101"},{"body":{"nativeSrc":"271:287:101","nodeType":"YulBlock","src":"271:287:101","statements":[{"body":{"nativeSrc":"317:16:101","nodeType":"YulBlock","src":"317:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"326:1:101","nodeType":"YulLiteral","src":"326:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"329:1:101","nodeType":"YulLiteral","src":"329:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"319:6:101","nodeType":"YulIdentifier","src":"319:6:101"},"nativeSrc":"319:12:101","nodeType":"YulFunctionCall","src":"319:12:101"},"nativeSrc":"319:12:101","nodeType":"YulExpressionStatement","src":"319:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"292:7:101","nodeType":"YulIdentifier","src":"292:7:101"},{"name":"headStart","nativeSrc":"301:9:101","nodeType":"YulIdentifier","src":"301:9:101"}],"functionName":{"name":"sub","nativeSrc":"288:3:101","nodeType":"YulIdentifier","src":"288:3:101"},"nativeSrc":"288:23:101","nodeType":"YulFunctionCall","src":"288:23:101"},{"kind":"number","nativeSrc":"313:2:101","nodeType":"YulLiteral","src":"313:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"284:3:101","nodeType":"YulIdentifier","src":"284:3:101"},"nativeSrc":"284:32:101","nodeType":"YulFunctionCall","src":"284:32:101"},"nativeSrc":"281:52:101","nodeType":"YulIf","src":"281:52:101"},{"nativeSrc":"342:29:101","nodeType":"YulVariableDeclaration","src":"342:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"361:9:101","nodeType":"YulIdentifier","src":"361:9:101"}],"functionName":{"name":"mload","nativeSrc":"355:5:101","nodeType":"YulIdentifier","src":"355:5:101"},"nativeSrc":"355:16:101","nodeType":"YulFunctionCall","src":"355:16:101"},"variables":[{"name":"value","nativeSrc":"346:5:101","nodeType":"YulTypedName","src":"346:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"405:5:101","nodeType":"YulIdentifier","src":"405:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"380:24:101","nodeType":"YulIdentifier","src":"380:24:101"},"nativeSrc":"380:31:101","nodeType":"YulFunctionCall","src":"380:31:101"},"nativeSrc":"380:31:101","nodeType":"YulExpressionStatement","src":"380:31:101"},{"nativeSrc":"420:15:101","nodeType":"YulAssignment","src":"420:15:101","value":{"name":"value","nativeSrc":"430:5:101","nodeType":"YulIdentifier","src":"430:5:101"},"variableNames":[{"name":"value0","nativeSrc":"420:6:101","nodeType":"YulIdentifier","src":"420:6:101"}]},{"nativeSrc":"444:40:101","nodeType":"YulVariableDeclaration","src":"444:40:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"469:9:101","nodeType":"YulIdentifier","src":"469:9:101"},{"kind":"number","nativeSrc":"480:2:101","nodeType":"YulLiteral","src":"480:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"465:3:101","nodeType":"YulIdentifier","src":"465:3:101"},"nativeSrc":"465:18:101","nodeType":"YulFunctionCall","src":"465:18:101"}],"functionName":{"name":"mload","nativeSrc":"459:5:101","nodeType":"YulIdentifier","src":"459:5:101"},"nativeSrc":"459:25:101","nodeType":"YulFunctionCall","src":"459:25:101"},"variables":[{"name":"value_1","nativeSrc":"448:7:101","nodeType":"YulTypedName","src":"448:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"518:7:101","nodeType":"YulIdentifier","src":"518:7:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"493:24:101","nodeType":"YulIdentifier","src":"493:24:101"},"nativeSrc":"493:33:101","nodeType":"YulFunctionCall","src":"493:33:101"},"nativeSrc":"493:33:101","nodeType":"YulExpressionStatement","src":"493:33:101"},{"nativeSrc":"535:17:101","nodeType":"YulAssignment","src":"535:17:101","value":{"name":"value_1","nativeSrc":"545:7:101","nodeType":"YulIdentifier","src":"545:7:101"},"variableNames":[{"name":"value1","nativeSrc":"535:6:101","nodeType":"YulIdentifier","src":"535:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_contract$_IERC20Metadata_$8863_fromMemory","nativeSrc":"150:408:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"229:9:101","nodeType":"YulTypedName","src":"229:9:101","type":""},{"name":"dataEnd","nativeSrc":"240:7:101","nodeType":"YulTypedName","src":"240:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"252:6:101","nodeType":"YulTypedName","src":"252:6:101","type":""},{"name":"value1","nativeSrc":"260:6:101","nodeType":"YulTypedName","src":"260:6:101","type":""}],"src":"150:408:101"}]},"contents":"{\n    { }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_contract$_IERC20Metadata_$8863_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"6080604052348015600e575f5ffd5b50604051610213380380610213833981016040819052602b916070565b5f80546001600160a01b039384166001600160a01b0319918216179091556001805492909316911617905560a3565b6001600160a01b0381168114606d575f5ffd5b50565b5f5f604083850312156080575f5ffd5b8251608981605a565b6020840151909250609881605a565b809150509250929050565b610163806100b05f395ff3fe608060405260043610610033575f3560e01c8063098d32281461003d578063d4b2700114610064578063e5a6b10f1461009f575b61003b6100c6565b005b348015610048575f5ffd5b506100515f1981565b6040519081526020015b60405180910390f35b34801561006f575f5ffd5b5061003b61007e366004610100565b5f80546001600160a01b0319166001600160a01b0392909216919091179055565b3480156100aa575f5ffd5b506001546040516001600160a01b03909116815260200161005b565b6100df6100da5f546001600160a01b031690565b6100e1565b565b365f5f375f5f365f5f855af13d5f5f3e8080156100fc573d5ff35b3d5ffd5b5f60208284031215610110575f5ffd5b81356001600160a01b0381168114610126575f5ffd5b939250505056fea2646970667358221220019929467b86da74ba417a24f2e667f3c5764c54d99408c8927b0bb59532679764736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x213 CODESIZE SUB DUP1 PUSH2 0x213 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH1 0x2B SWAP2 PUSH1 0x70 JUMP JUMPDEST PUSH0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP2 DUP3 AND OR SWAP1 SWAP2 SSTORE PUSH1 0x1 DUP1 SLOAD SWAP3 SWAP1 SWAP4 AND SWAP2 AND OR SWAP1 SSTORE PUSH1 0xA3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH1 0x6D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH1 0x80 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x89 DUP2 PUSH1 0x5A JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x98 DUP2 PUSH1 0x5A JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x163 DUP1 PUSH2 0xB0 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x33 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x98D3228 EQ PUSH2 0x3D JUMPI DUP1 PUSH4 0xD4B27001 EQ PUSH2 0x64 JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x9F JUMPI JUMPDEST PUSH2 0x3B PUSH2 0xC6 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x48 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51 PUSH0 NOT DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3B PUSH2 0x7E CALLDATASIZE PUSH1 0x4 PUSH2 0x100 JUMP JUMPDEST PUSH0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x1 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x5B JUMP JUMPDEST PUSH2 0xDF PUSH2 0xDA PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0xE1 JUMP JUMPDEST JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 PUSH0 DUP6 GAS CALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0xFC JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x110 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x126 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ADD SWAP10 0x29 CHAINID PUSH28 0x86DA74BA417A24F2E667F3C5764C54D99408C8927B0BB59532679764 PUSH20 0x6F6C634300081E00330000000000000000000000 ","sourceMap":"4262:399:96:-:0;;;4456:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;656:10:92;:22;;-1:-1:-1;;;;;656:22:92;;;-1:-1:-1;;;;;;656:22:92;;;;;;;;4543:21:96;;;;;::::1;::::0;::::1;;::::0;;4262:399;;14:131:101;-1:-1:-1;;;;;89:31:101;;79:42;;69:70;;135:1;132;125:12;69:70;14:131;:::o;150:408::-;252:6;260;313:2;301:9;292:7;288:23;284:32;281:52;;;329:1;326;319:12;281:52;361:9;355:16;380:31;405:5;380:31;:::i;:::-;480:2;465:18;;459:25;430:5;;-1:-1:-1;493:33:101;459:25;493:33;:::i;:::-;545:7;535:17;;;150:408;;;;;:::o;:::-;4262:399:96;;;;;;"},"deployedBytecode":{"functionDebugData":{"@MAX_INT_30548":{"entryPoint":null,"id":30548,"parameterSlots":0,"returnSlots":0},"@_6939":{"entryPoint":null,"id":6939,"parameterSlots":0,"returnSlots":0},"@_delegate_29391":{"entryPoint":225,"id":29391,"parameterSlots":1,"returnSlots":0},"@_fallback_6931":{"entryPoint":198,"id":6931,"parameterSlots":0,"returnSlots":0},"@_implementation_29401":{"entryPoint":null,"id":29401,"parameterSlots":0,"returnSlots":1},"@currency_30576":{"entryPoint":null,"id":30576,"parameterSlots":0,"returnSlots":1},"@setForwardTo_29411":{"entryPoint":null,"id":29411,"parameterSlots":1,"returnSlots":0},"abi_decode_tuple_t_address":{"entryPoint":256,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:715:101","nodeType":"YulBlock","src":"0:715:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"115:76:101","nodeType":"YulBlock","src":"115:76:101","statements":[{"nativeSrc":"125:26:101","nodeType":"YulAssignment","src":"125:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"137:9:101","nodeType":"YulIdentifier","src":"137:9:101"},{"kind":"number","nativeSrc":"148:2:101","nodeType":"YulLiteral","src":"148:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"133:3:101","nodeType":"YulIdentifier","src":"133:3:101"},"nativeSrc":"133:18:101","nodeType":"YulFunctionCall","src":"133:18:101"},"variableNames":[{"name":"tail","nativeSrc":"125:4:101","nodeType":"YulIdentifier","src":"125:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"167:9:101","nodeType":"YulIdentifier","src":"167:9:101"},{"name":"value0","nativeSrc":"178:6:101","nodeType":"YulIdentifier","src":"178:6:101"}],"functionName":{"name":"mstore","nativeSrc":"160:6:101","nodeType":"YulIdentifier","src":"160:6:101"},"nativeSrc":"160:25:101","nodeType":"YulFunctionCall","src":"160:25:101"},"nativeSrc":"160:25:101","nodeType":"YulExpressionStatement","src":"160:25:101"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"14:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"84:9:101","nodeType":"YulTypedName","src":"84:9:101","type":""},{"name":"value0","nativeSrc":"95:6:101","nodeType":"YulTypedName","src":"95:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"106:4:101","nodeType":"YulTypedName","src":"106:4:101","type":""}],"src":"14:177:101"},{"body":{"nativeSrc":"266:216:101","nodeType":"YulBlock","src":"266:216:101","statements":[{"body":{"nativeSrc":"312:16:101","nodeType":"YulBlock","src":"312:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"321:1:101","nodeType":"YulLiteral","src":"321:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"324:1:101","nodeType":"YulLiteral","src":"324:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"314:6:101","nodeType":"YulIdentifier","src":"314:6:101"},"nativeSrc":"314:12:101","nodeType":"YulFunctionCall","src":"314:12:101"},"nativeSrc":"314:12:101","nodeType":"YulExpressionStatement","src":"314:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"287:7:101","nodeType":"YulIdentifier","src":"287:7:101"},{"name":"headStart","nativeSrc":"296:9:101","nodeType":"YulIdentifier","src":"296:9:101"}],"functionName":{"name":"sub","nativeSrc":"283:3:101","nodeType":"YulIdentifier","src":"283:3:101"},"nativeSrc":"283:23:101","nodeType":"YulFunctionCall","src":"283:23:101"},{"kind":"number","nativeSrc":"308:2:101","nodeType":"YulLiteral","src":"308:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"279:3:101","nodeType":"YulIdentifier","src":"279:3:101"},"nativeSrc":"279:32:101","nodeType":"YulFunctionCall","src":"279:32:101"},"nativeSrc":"276:52:101","nodeType":"YulIf","src":"276:52:101"},{"nativeSrc":"337:36:101","nodeType":"YulVariableDeclaration","src":"337:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"363:9:101","nodeType":"YulIdentifier","src":"363:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"350:12:101","nodeType":"YulIdentifier","src":"350:12:101"},"nativeSrc":"350:23:101","nodeType":"YulFunctionCall","src":"350:23:101"},"variables":[{"name":"value","nativeSrc":"341:5:101","nodeType":"YulTypedName","src":"341:5:101","type":""}]},{"body":{"nativeSrc":"436:16:101","nodeType":"YulBlock","src":"436:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"445:1:101","nodeType":"YulLiteral","src":"445:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"448:1:101","nodeType":"YulLiteral","src":"448:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"438:6:101","nodeType":"YulIdentifier","src":"438:6:101"},"nativeSrc":"438:12:101","nodeType":"YulFunctionCall","src":"438:12:101"},"nativeSrc":"438:12:101","nodeType":"YulExpressionStatement","src":"438:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"395:5:101","nodeType":"YulIdentifier","src":"395:5:101"},{"arguments":[{"name":"value","nativeSrc":"406:5:101","nodeType":"YulIdentifier","src":"406:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"421:3:101","nodeType":"YulLiteral","src":"421:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"426:1:101","nodeType":"YulLiteral","src":"426:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"417:3:101","nodeType":"YulIdentifier","src":"417:3:101"},"nativeSrc":"417:11:101","nodeType":"YulFunctionCall","src":"417:11:101"},{"kind":"number","nativeSrc":"430:1:101","nodeType":"YulLiteral","src":"430:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"413:3:101","nodeType":"YulIdentifier","src":"413:3:101"},"nativeSrc":"413:19:101","nodeType":"YulFunctionCall","src":"413:19:101"}],"functionName":{"name":"and","nativeSrc":"402:3:101","nodeType":"YulIdentifier","src":"402:3:101"},"nativeSrc":"402:31:101","nodeType":"YulFunctionCall","src":"402:31:101"}],"functionName":{"name":"eq","nativeSrc":"392:2:101","nodeType":"YulIdentifier","src":"392:2:101"},"nativeSrc":"392:42:101","nodeType":"YulFunctionCall","src":"392:42:101"}],"functionName":{"name":"iszero","nativeSrc":"385:6:101","nodeType":"YulIdentifier","src":"385:6:101"},"nativeSrc":"385:50:101","nodeType":"YulFunctionCall","src":"385:50:101"},"nativeSrc":"382:70:101","nodeType":"YulIf","src":"382:70:101"},{"nativeSrc":"461:15:101","nodeType":"YulAssignment","src":"461:15:101","value":{"name":"value","nativeSrc":"471:5:101","nodeType":"YulIdentifier","src":"471:5:101"},"variableNames":[{"name":"value0","nativeSrc":"461:6:101","nodeType":"YulIdentifier","src":"461:6:101"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"196:286:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"232:9:101","nodeType":"YulTypedName","src":"232:9:101","type":""},{"name":"dataEnd","nativeSrc":"243:7:101","nodeType":"YulTypedName","src":"243:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"255:6:101","nodeType":"YulTypedName","src":"255:6:101","type":""}],"src":"196:286:101"},{"body":{"nativeSrc":"611:102:101","nodeType":"YulBlock","src":"611:102:101","statements":[{"nativeSrc":"621:26:101","nodeType":"YulAssignment","src":"621:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"633:9:101","nodeType":"YulIdentifier","src":"633:9:101"},{"kind":"number","nativeSrc":"644:2:101","nodeType":"YulLiteral","src":"644:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"629:3:101","nodeType":"YulIdentifier","src":"629:3:101"},"nativeSrc":"629:18:101","nodeType":"YulFunctionCall","src":"629:18:101"},"variableNames":[{"name":"tail","nativeSrc":"621:4:101","nodeType":"YulIdentifier","src":"621:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"663:9:101","nodeType":"YulIdentifier","src":"663:9:101"},{"arguments":[{"name":"value0","nativeSrc":"678:6:101","nodeType":"YulIdentifier","src":"678:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"694:3:101","nodeType":"YulLiteral","src":"694:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"699:1:101","nodeType":"YulLiteral","src":"699:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"690:3:101","nodeType":"YulIdentifier","src":"690:3:101"},"nativeSrc":"690:11:101","nodeType":"YulFunctionCall","src":"690:11:101"},{"kind":"number","nativeSrc":"703:1:101","nodeType":"YulLiteral","src":"703:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"686:3:101","nodeType":"YulIdentifier","src":"686:3:101"},"nativeSrc":"686:19:101","nodeType":"YulFunctionCall","src":"686:19:101"}],"functionName":{"name":"and","nativeSrc":"674:3:101","nodeType":"YulIdentifier","src":"674:3:101"},"nativeSrc":"674:32:101","nodeType":"YulFunctionCall","src":"674:32:101"}],"functionName":{"name":"mstore","nativeSrc":"656:6:101","nodeType":"YulIdentifier","src":"656:6:101"},"nativeSrc":"656:51:101","nodeType":"YulFunctionCall","src":"656:51:101"},"nativeSrc":"656:51:101","nodeType":"YulExpressionStatement","src":"656:51:101"}]},"name":"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed","nativeSrc":"487:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"580:9:101","nodeType":"YulTypedName","src":"580:9:101","type":""},{"name":"value0","nativeSrc":"591:6:101","nodeType":"YulTypedName","src":"591:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"602:4:101","nodeType":"YulTypedName","src":"602:4:101","type":""}],"src":"487:226:101"}]},"contents":"{\n    { }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405260043610610033575f3560e01c8063098d32281461003d578063d4b2700114610064578063e5a6b10f1461009f575b61003b6100c6565b005b348015610048575f5ffd5b506100515f1981565b6040519081526020015b60405180910390f35b34801561006f575f5ffd5b5061003b61007e366004610100565b5f80546001600160a01b0319166001600160a01b0392909216919091179055565b3480156100aa575f5ffd5b506001546040516001600160a01b03909116815260200161005b565b6100df6100da5f546001600160a01b031690565b6100e1565b565b365f5f375f5f365f5f855af13d5f5f3e8080156100fc573d5ff35b3d5ffd5b5f60208284031215610110575f5ffd5b81356001600160a01b0381168114610126575f5ffd5b939250505056fea2646970667358221220019929467b86da74ba417a24f2e667f3c5764c54d99408c8927b0bb59532679764736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x33 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x98D3228 EQ PUSH2 0x3D JUMPI DUP1 PUSH4 0xD4B27001 EQ PUSH2 0x64 JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x9F JUMPI JUMPDEST PUSH2 0x3B PUSH2 0xC6 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x48 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51 PUSH0 NOT DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3B PUSH2 0x7E CALLDATASIZE PUSH1 0x4 PUSH2 0x100 JUMP JUMPDEST PUSH0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x1 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x5B JUMP JUMPDEST PUSH2 0xDF PUSH2 0xDA PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0xE1 JUMP JUMPDEST JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 PUSH0 DUP6 GAS CALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0xFC JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x110 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x126 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ADD SWAP10 0x29 CHAINID PUSH28 0x86DA74BA417A24F2E667F3C5764C54D99408C8927B0BB59532679764 PUSH20 0x6F6C634300081E00330000000000000000000000 ","sourceMap":"4262:399:96:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;2676:11:30;:9;:11::i;:::-;4262:399:96;4313:100;;;;;;;;;;;;-1:-1:-1;;4313:100:96;;;;;160:25:101;;;148:2;133:18;4313:100:96;;;;;;;;2073:83:92;;;;;;;;;;-1:-1:-1;2073:83:92;;;;;:::i;:::-;2129:10;:22;;-1:-1:-1;;;;;;2129:22:92;-1:-1:-1;;;;;2129:22:92;;;;;;;;;;2073:83;4573:86:96;;;;;;;;;;-1:-1:-1;4645:9:96;;4573:86;;-1:-1:-1;;;;;4645:9:96;;;656:51:101;;644:2;629:18;4573:86:96;487:226:101;2350:83:30;2398:28;2408:17;2032:7:92;2054:10;-1:-1:-1;;;;;2054:10:92;;1965:104;2408:17:30;2398:9;:28::i;:::-;2350:83::o;873:919:92:-;1244:14;1241:1;1238;1225:34;1519:1;1516;1500:14;1497:1;1494;1478:14;1471:5;1466:55;1583:16;1580:1;1577;1562:38;1615:6;1670:52;;;;1757:16;1754:1;1747:27;1670:52;1697:16;1694:1;1687:27;196:286:101;255:6;308:2;296:9;287:7;283:23;279:32;276:52;;;324:1;321;314:12;276:52;350:23;;-1:-1:-1;;;;;402:31:101;;392:42;;382:70;;448:1;445;438:12;382:70;471:5;196:286;-1:-1:-1;;;196:286:101:o"},"methodIdentifiers":{"MAX_INT()":"098d3228","currency()":"e5a6b10f","setForwardTo(address)":"d4b27001"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"forwardTo\",\"type\":\"address\"},{\"internalType\":\"contract IERC20Metadata\",\"name\":\"currency_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"inputs\":[],\"name\":\"MAX_INT\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"forwardTo\",\"type\":\"address\"}],\"name\":\"setForwardTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"PolicyPool that forwards fallback calls to another contract. Used to simulate calls to EToken      and other contracts that have functions that can be called only from PolicyPool\",\"kind\":\"dev\",\"methods\":{},\"title\":\"PolicyPoolMockForward\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/mocks/PolicyPoolMock.sol\":\"PolicyPoolMockForward\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0x80935e4fae2c414f4e7789e13a820d06901182a5733ab006f8d68b5b09db993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://752d991d6ca1087587b48103bc623f74888054f58581ff29166d90889c4765c5\",\"dweb:/ipfs/QmRBsa6K2ChKxVWYY54YiyYhDBPbmY5HyKCtij5LoWh56o\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]},\"contracts/mocks/ForwardProxy.sol\":{\"keccak256\":\"0x3ec679a7979e4d0a93a4fdd3db90bc34ab000b888664c88260649fef9e302a5b\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://28bf69dcdbd93e4f429e26a2260bc58ef19efcb2163ccdf28e295c4264284900\",\"dweb:/ipfs/QmY8FFry1PtXKm32WPmGzNyLcWagg1qhhy5dvqgL7qiTmk\"]},\"contracts/mocks/PolicyPoolMock.sol\":{\"keccak256\":\"0x53b14090117f7efd36cb70f5b506bfa38e2c20f0814ee3097c2dba1682b546c1\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://f6218e5fc603a5b767aa36c78852b5943215ac5ee10c614f8b4e5828dc11f6c6\",\"dweb:/ipfs/QmNUnk2UrhraUvjvn6PPjZtnbVukURWCHFAwegDJyNgUUF\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":29372,"contract":"contracts/mocks/PolicyPoolMock.sol:PolicyPoolMockForward","label":"_forwardTo","offset":0,"slot":"0","type":"t_address"},{"astId":30551,"contract":"contracts/mocks/PolicyPoolMock.sol:PolicyPoolMockForward","label":"_currency","offset":0,"slot":"1","type":"t_contract(IERC20Metadata)8863"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_contract(IERC20Metadata)8863":{"encoding":"inplace","label":"contract IERC20Metadata","numberOfBytes":"20"}}}}},"contracts/mocks/ReserveMock.sol":{"ReserveMock":{"abi":[{"inputs":[{"internalType":"contract IPolicyPool","name":"policyPool_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"InvalidYieldVault","type":"error"},{"inputs":[],"name":"NoZeroPolicyPool","type":"error"},{"inputs":[{"internalType":"uint256","name":"required","type":"uint256"},{"internalType":"uint256","name":"available","type":"uint256"}],"name":"NotEnoughCash","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"OnlyPolicyPool","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ReserveInvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[],"name":"UpgradeCannotChangePolicyPool","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"int256","name":"earnings","type":"int256"}],"name":"EarningsRecorded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"ErrorIgnoredDeinvestingVault","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":true,"internalType":"contract IERC4626","name":"newVault","type":"address"},{"indexed":false,"internalType":"bool","name":"forced","type":"bool"}],"name":"YieldVaultChanged","type":"event"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addMoney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositIntoYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"investedInYV","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recordEarnings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC4626","name":"newYieldVault","type":"address"},{"internalType":"bool","name":"force","type":"bool"}],"name":"setYieldVault","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":"address","name":"destination","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFromYieldVault","outputs":[{"internalType":"uint256","name":"deinvested","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yieldVault","outputs":[{"internalType":"contract IERC4626","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_25524":{"entryPoint":null,"id":25524,"parameterSlots":1,"returnSlots":0},"@_27434":{"entryPoint":null,"id":27434,"parameterSlots":1,"returnSlots":0},"@_30612":{"entryPoint":null,"id":30612,"parameterSlots":1,"returnSlots":0},"@_disableInitializers_7172":{"entryPoint":119,"id":7172,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_7217":{"entryPoint":null,"id":7217,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_7203":{"entryPoint":null,"id":7203,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory":{"entryPoint":297,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:532:101","nodeType":"YulBlock","src":"0:532:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"116:209:101","nodeType":"YulBlock","src":"116:209:101","statements":[{"body":{"nativeSrc":"162:16:101","nodeType":"YulBlock","src":"162:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"171:1:101","nodeType":"YulLiteral","src":"171:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"174:1:101","nodeType":"YulLiteral","src":"174:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"164:6:101","nodeType":"YulIdentifier","src":"164:6:101"},"nativeSrc":"164:12:101","nodeType":"YulFunctionCall","src":"164:12:101"},"nativeSrc":"164:12:101","nodeType":"YulExpressionStatement","src":"164:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"137:7:101","nodeType":"YulIdentifier","src":"137:7:101"},{"name":"headStart","nativeSrc":"146:9:101","nodeType":"YulIdentifier","src":"146:9:101"}],"functionName":{"name":"sub","nativeSrc":"133:3:101","nodeType":"YulIdentifier","src":"133:3:101"},"nativeSrc":"133:23:101","nodeType":"YulFunctionCall","src":"133:23:101"},{"kind":"number","nativeSrc":"158:2:101","nodeType":"YulLiteral","src":"158:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"129:3:101","nodeType":"YulIdentifier","src":"129:3:101"},"nativeSrc":"129:32:101","nodeType":"YulFunctionCall","src":"129:32:101"},"nativeSrc":"126:52:101","nodeType":"YulIf","src":"126:52:101"},{"nativeSrc":"187:29:101","nodeType":"YulVariableDeclaration","src":"187:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"206:9:101","nodeType":"YulIdentifier","src":"206:9:101"}],"functionName":{"name":"mload","nativeSrc":"200:5:101","nodeType":"YulIdentifier","src":"200:5:101"},"nativeSrc":"200:16:101","nodeType":"YulFunctionCall","src":"200:16:101"},"variables":[{"name":"value","nativeSrc":"191:5:101","nodeType":"YulTypedName","src":"191:5:101","type":""}]},{"body":{"nativeSrc":"279:16:101","nodeType":"YulBlock","src":"279:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"288:1:101","nodeType":"YulLiteral","src":"288:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"291:1:101","nodeType":"YulLiteral","src":"291:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"281:6:101","nodeType":"YulIdentifier","src":"281:6:101"},"nativeSrc":"281:12:101","nodeType":"YulFunctionCall","src":"281:12:101"},"nativeSrc":"281:12:101","nodeType":"YulExpressionStatement","src":"281:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"238:5:101","nodeType":"YulIdentifier","src":"238:5:101"},{"arguments":[{"name":"value","nativeSrc":"249:5:101","nodeType":"YulIdentifier","src":"249:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"264:3:101","nodeType":"YulLiteral","src":"264:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"269:1:101","nodeType":"YulLiteral","src":"269:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"260:3:101","nodeType":"YulIdentifier","src":"260:3:101"},"nativeSrc":"260:11:101","nodeType":"YulFunctionCall","src":"260:11:101"},{"kind":"number","nativeSrc":"273:1:101","nodeType":"YulLiteral","src":"273:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"256:3:101","nodeType":"YulIdentifier","src":"256:3:101"},"nativeSrc":"256:19:101","nodeType":"YulFunctionCall","src":"256:19:101"}],"functionName":{"name":"and","nativeSrc":"245:3:101","nodeType":"YulIdentifier","src":"245:3:101"},"nativeSrc":"245:31:101","nodeType":"YulFunctionCall","src":"245:31:101"}],"functionName":{"name":"eq","nativeSrc":"235:2:101","nodeType":"YulIdentifier","src":"235:2:101"},"nativeSrc":"235:42:101","nodeType":"YulFunctionCall","src":"235:42:101"}],"functionName":{"name":"iszero","nativeSrc":"228:6:101","nodeType":"YulIdentifier","src":"228:6:101"},"nativeSrc":"228:50:101","nodeType":"YulFunctionCall","src":"228:50:101"},"nativeSrc":"225:70:101","nodeType":"YulIf","src":"225:70:101"},{"nativeSrc":"304:15:101","nodeType":"YulAssignment","src":"304:15:101","value":{"name":"value","nativeSrc":"314:5:101","nodeType":"YulIdentifier","src":"314:5:101"},"variableNames":[{"name":"value0","nativeSrc":"304:6:101","nodeType":"YulIdentifier","src":"304:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory","nativeSrc":"14:311:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"82:9:101","nodeType":"YulTypedName","src":"82:9:101","type":""},{"name":"dataEnd","nativeSrc":"93:7:101","nodeType":"YulTypedName","src":"93:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"105:6:101","nodeType":"YulTypedName","src":"105:6:101","type":""}],"src":"14:311:101"},{"body":{"nativeSrc":"429:101:101","nodeType":"YulBlock","src":"429:101:101","statements":[{"nativeSrc":"439:26:101","nodeType":"YulAssignment","src":"439:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"451:9:101","nodeType":"YulIdentifier","src":"451:9:101"},{"kind":"number","nativeSrc":"462:2:101","nodeType":"YulLiteral","src":"462:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"447:3:101","nodeType":"YulIdentifier","src":"447:3:101"},"nativeSrc":"447:18:101","nodeType":"YulFunctionCall","src":"447:18:101"},"variableNames":[{"name":"tail","nativeSrc":"439:4:101","nodeType":"YulIdentifier","src":"439:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"481:9:101","nodeType":"YulIdentifier","src":"481:9:101"},{"arguments":[{"name":"value0","nativeSrc":"496:6:101","nodeType":"YulIdentifier","src":"496:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"512:2:101","nodeType":"YulLiteral","src":"512:2:101","type":"","value":"64"},{"kind":"number","nativeSrc":"516:1:101","nodeType":"YulLiteral","src":"516:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"508:3:101","nodeType":"YulIdentifier","src":"508:3:101"},"nativeSrc":"508:10:101","nodeType":"YulFunctionCall","src":"508:10:101"},{"kind":"number","nativeSrc":"520:1:101","nodeType":"YulLiteral","src":"520:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"504:3:101","nodeType":"YulIdentifier","src":"504:3:101"},"nativeSrc":"504:18:101","nodeType":"YulFunctionCall","src":"504:18:101"}],"functionName":{"name":"and","nativeSrc":"492:3:101","nodeType":"YulIdentifier","src":"492:3:101"},"nativeSrc":"492:31:101","nodeType":"YulFunctionCall","src":"492:31:101"}],"functionName":{"name":"mstore","nativeSrc":"474:6:101","nodeType":"YulIdentifier","src":"474:6:101"},"nativeSrc":"474:50:101","nodeType":"YulFunctionCall","src":"474:50:101"},"nativeSrc":"474:50:101","nodeType":"YulExpressionStatement","src":"474:50:101"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"330:200:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"398:9:101","nodeType":"YulTypedName","src":"398:9:101","type":""},{"name":"value0","nativeSrc":"409:6:101","nodeType":"YulTypedName","src":"409:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"420:4:101","nodeType":"YulTypedName","src":"420:4:101","type":""}],"src":"330:200:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(64, 1), 1)))\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60c060405230608052348015610013575f5ffd5b5060405161188338038061188383398101604081905261003291610129565b80806001600160a01b03811661005b57604051636b23cf0160e01b815260040160405180910390fd5b610063610077565b6001600160a01b031660a052506101569050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100c75760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101265780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b5f60208284031215610139575f5ffd5b81516001600160a01b038116811461014f575f5ffd5b9392505050565b60805160a0516116f06101935f395f818161016a01528181610a33015261108501525f8181610cdd01528181610d060152610e4801526116f05ff3fe6080604052600436106100e4575f3560e01c80637d919a9711610087578063ad3cb1cc11610057578063ad3cb1cc1461024f578063d0bc1a881461028c578063d336078c146102ab578063e5a6b10f146102ca575f5ffd5b80637d919a97146101eb5780638129fc1c146101ff578063a7f8a5e214610213578063ac860f7414610230575f5ffd5b80634d15eb03116100c25780634d15eb031461015c5780634eb978a4146101a25780634f1ef286146101b657806352d1902d146101c9575f5ffd5b806301ffc9a7146100e8578063194448e51461011c5780632ccb1b301461013d575b5f5ffd5b3480156100f3575f5ffd5b506101076101023660046113f7565b6102de565b60405190151581526020015b60405180910390f35b348015610127575f5ffd5b5061013b610136366004611446565b610314565b005b348015610148575f5ffd5b5061013b61015736600461147d565b61056d565b348015610167575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610113565b3480156101ad575f5ffd5b5061013b61057b565b61013b6101c43660046114bb565b6106b0565b3480156101d4575f5ffd5b506101dd6106cb565b604051908152602001610113565b3480156101f6575f5ffd5b506032546101dd565b34801561020a575f5ffd5b5061013b6106e6565b34801561021e575f5ffd5b506064546001600160a01b031661018a565b34801561023b575f5ffd5b5061013b61024a366004611581565b6107dd565b34801561025a575f5ffd5b5061027f604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516101139190611598565b348015610297575f5ffd5b5061013b6102a6366004611581565b61096e565b3480156102b6575f5ffd5b506101dd6102c5366004611581565b610990565b3480156102d5575f5ffd5b5061018a610a30565b5f6001600160e01b031982166301ffc9a760e01b148061030e57506001600160e01b03198216634d15eb0360e01b145b92915050565b5f5f61031e610a30565b90506001600160a01b03841615806103a65750806001600160a01b0316846001600160a01b03166338d52e0f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610377573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061039b91906115cd565b6001600160a01b0316145b6103c357604051638959269160e01b815260040160405180910390fd5b5f6103d66064546001600160a01b031690565b90505f6001600160a01b038216156104eb576040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa15801561042c573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061045091906115e8565b905080156104e9578515610471576104688382610ab6565b955091506104e9565b604051635d043b2960e11b815260048101829052306024820181905260448201526001600160a01b0384169063ba087652906064016020604051808303815f875af11580156104c2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104e691906115e8565b91505b505b606480546001600160a01b0319166001600160a01b03881617905561051c603254826105179190611613565b610bf9565b5f60325560405184151581526001600160a01b0380881691908416907f243f9479bbdaf9f3395e726975293ee3724f3819f4322a018c98afb9de70a1e09060200160405180910390a3505050505050565b6105778282610c19565b5050565b5f61058e6064546001600160a01b031690565b90506001600160a01b0381166105b757604051638959269160e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201525f906001600160a01b038316906307a2d13a9082906370a0823190602401602060405180830381865afa158015610603573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061062791906115e8565b6040518263ffffffff1660e01b815260040161064591815260200190565b602060405180830381865afa158015610660573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061068491906115e8565b90505f603254826106959190611613565b905080156106ab5760328290556106ab81610bf9565b505050565b6106b8610cd2565b6106c182610d78565b6105778282610d81565b5f6106d4610e3d565b505f51602061169b5f395f51905f5290565b5f6106ef610e86565b805490915060ff600160401b820416159067ffffffffffffffff165f811580156107165750825b90505f8267ffffffffffffffff1660011480156107325750303b155b905081158015610740575080155b1561075e5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561078857845460ff60401b1916600160401b1785555b610790610eae565b83156107d657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b5f6107f06064546001600160a01b031690565b90506001600160a01b03811661081957604051638959269160e01b815260040160405180910390fd5b5f610822610ebe565b90505f19830361083457809250610868565b8281808211156108655760405163531309fb60e11b8152600481019290925260248201526044015b60405180910390fd5b50505b8260325f8282546108799190611632565b909155506108879050610a30565b60405163095ea7b360e01b81526001600160a01b03848116600483015260248201869052919091169063095ea7b3906044016020604051808303815f875af11580156108d5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f99190611645565b50604051636e553f6560e01b8152600481018490523060248201526001600160a01b03831690636e553f65906044016020604051808303815f875af1158015610944573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061096891906115e8565b50505050565b61098d33308361097c610a30565b6001600160a01b0316929190610f2f565b50565b5f61099961057b565b5f6109ac6064546001600160a01b031690565b90505f198303610a1f5760405163ce96cb7760e01b81523060048201526001600160a01b0382169063ce96cb7790602401602060405180830381865afa1580156109f8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a1c91906115e8565b92505b610a298184610f65565b5090919050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a8d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab191906115cd565b905090565b604051636c82bbbf60e11b81523060048201525f9081906001600160a01b0385169063d905777e90602401602060405180830381865afa925050508015610b1a575060408051601f3d908101601f19168201909252610b17918101906115e8565b60015b15610b315783811015610b2f57600191508093505b505b604051635d043b2960e11b815260048101849052306024820181905260448201526001600160a01b0385169063ba087652906064016020604051808303815f875af1925050508015610ba0575060408051601f3d908101601f19168201909252610b9d918101906115e8565b60015b610bef57836001600160a01b03167f25bce30047860a48c9d8830dbf31873be5434f4d28f14a5808a4ea8e35d0829684604051610bdf91815260200190565b60405180910390a2506001610bf2565b91505b9250929050565b8060655f828254610c0a9190611660565b9091555061098d905081611018565b816001600160a01b038116610c4d57604051636427f27360e11b81526001600160a01b03909116600482015260240161085c565b50805f03610c59575050565b5f610c62610ebe565b905081811015610ca5575f610c7f6064546001600160a01b031690565b90506001600160a01b03811615610ca357610ca381610c9e8486611687565b610f65565b505b6001600160a01b03831630146106ab576106ab8383610cc2610a30565b6001600160a01b0316919061104e565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480610d5857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610d4c5f51602061169b5f395f51905f52546001600160a01b031690565b6001600160a01b031614155b15610d765760405163703e46dd60e11b815260040160405180910390fd5b565b61098d81611083565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015610ddb575060408051601f3d908101601f19168201909252610dd8918101906115e8565b60015b610e0357604051634c9c8ce360e01b81526001600160a01b038316600482015260240161085c565b5f51602061169b5f395f51905f528114610e3357604051632a87526960e21b81526004810182905260240161085c565b6106ab8383611134565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610d765760405163703e46dd60e11b815260040160405180910390fd5b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0061030e565b610eb6611189565b610d766111ae565b5f610ec7610a30565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015610f0b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab191906115e8565b610f3d8484848460016111b6565b61096857604051635274afe760e01b81526001600160a01b038516600482015260240161085c565b604051632d182be560e21b815260048101829052306024820181905260448201526001600160a01b0383169063b460af94906064016020604051808303815f875af1158015610fb6573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fda91906115e8565b50603254811115610ffe57610ff6603254826105179190611687565b5f6032555050565b8060325f82825461100f9190611687565b90915550505050565b6040518181527f731c439c5bae15be1344eec709967e046b4f7d3f7e37abeffc5247f448fa18bf9060200160405180910390a150565b61105b8383836001611223565b6106ab57604051635274afe760e01b81526001600160a01b038416600482015260240161085c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110e9573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061110d91906115cd565b6001600160a01b03161461098d5760405163d2b3d33f60e01b815260040160405180910390fd5b61113d82611285565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115611181576106ab82826112e8565b610577611388565b6111916113a7565b610d7657604051631afcd79f60e31b815260040160405180910390fd5b610d76611189565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f51148316611212578383151615611206573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f5114831661127957838315161561126d573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b806001600160a01b03163b5f036112ba57604051634c9c8ce360e01b81526001600160a01b038216600482015260240161085c565b5f51602061169b5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f6112f584846113c0565b905080801561131657505f3d118061131657505f846001600160a01b03163b115b1561132b576113236113d3565b91505061030e565b801561135557604051639996b31560e01b81526001600160a01b038516600482015260240161085c565b3d15611368576113636113ec565b611381565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b3415610d765760405163b398979f60e01b815260040160405180910390fd5b5f6113b0610e86565b54600160401b900460ff16919050565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f60208284031215611407575f5ffd5b81356001600160e01b03198116811461141e575f5ffd5b9392505050565b6001600160a01b038116811461098d575f5ffd5b801515811461098d575f5ffd5b5f5f60408385031215611457575f5ffd5b823561146281611425565b9150602083013561147281611439565b809150509250929050565b5f5f6040838503121561148e575f5ffd5b823561149981611425565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b5f5f604083850312156114cc575f5ffd5b82356114d781611425565b9150602083013567ffffffffffffffff8111156114f2575f5ffd5b8301601f81018513611502575f5ffd5b803567ffffffffffffffff81111561151c5761151c6114a7565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561154b5761154b6114a7565b604052818152828201602001871015611562575f5ffd5b816020840160208301375f602083830101528093505050509250929050565b5f60208284031215611591575f5ffd5b5035919050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f602082840312156115dd575f5ffd5b815161141e81611425565b5f602082840312156115f8575f5ffd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b8181035f831280158383131683831282161715611381576113816115ff565b8082018082111561030e5761030e6115ff565b5f60208284031215611655575f5ffd5b815161141e81611439565b8082018281125f83128015821682158216171561167f5761167f6115ff565b505092915050565b8181038181111561030e5761030e6115ff56fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca2646970667358221220acd8caef4742e489b43f1c3c1019a654073e1e1026e1a7717d3f5b579624620e64736f6c634300081e0033","opcodes":"PUSH1 0xC0 PUSH1 0x40 MSTORE ADDRESS PUSH1 0x80 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x13 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x1883 CODESIZE SUB DUP1 PUSH2 0x1883 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x32 SWAP2 PUSH2 0x129 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x5B JUMPI PUSH1 0x40 MLOAD PUSH4 0x6B23CF01 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x63 PUSH2 0x77 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xA0 MSTORE POP PUSH2 0x156 SWAP1 POP JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xC7 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0x126 JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x139 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x14F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH2 0x16F0 PUSH2 0x193 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x16A ADD MSTORE DUP2 DUP2 PUSH2 0xA33 ADD MSTORE PUSH2 0x1085 ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0xCDD ADD MSTORE DUP2 DUP2 PUSH2 0xD06 ADD MSTORE PUSH2 0xE48 ADD MSTORE PUSH2 0x16F0 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xE4 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7D919A97 GT PUSH2 0x87 JUMPI DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0x57 JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x24F JUMPI DUP1 PUSH4 0xD0BC1A88 EQ PUSH2 0x28C JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0x2AB JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x2CA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x7D919A97 EQ PUSH2 0x1EB JUMPI DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x1FF JUMPI DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0x213 JUMPI DUP1 PUSH4 0xAC860F74 EQ PUSH2 0x230 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D15EB03 GT PUSH2 0xC2 JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x15C JUMPI DUP1 PUSH4 0x4EB978A4 EQ PUSH2 0x1A2 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x1B6 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x1C9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xE8 JUMPI DUP1 PUSH4 0x194448E5 EQ PUSH2 0x11C JUMPI DUP1 PUSH4 0x2CCB1B30 EQ PUSH2 0x13D JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x107 PUSH2 0x102 CALLDATASIZE PUSH1 0x4 PUSH2 0x13F7 JUMP JUMPDEST PUSH2 0x2DE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x127 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13B PUSH2 0x136 CALLDATASIZE PUSH1 0x4 PUSH2 0x1446 JUMP JUMPDEST PUSH2 0x314 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x148 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13B PUSH2 0x157 CALLDATASIZE PUSH1 0x4 PUSH2 0x147D JUMP JUMPDEST PUSH2 0x56D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x167 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x113 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13B PUSH2 0x57B JUMP JUMPDEST PUSH2 0x13B PUSH2 0x1C4 CALLDATASIZE PUSH1 0x4 PUSH2 0x14BB JUMP JUMPDEST PUSH2 0x6B0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1D4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1DD PUSH2 0x6CB JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x113 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x32 SLOAD PUSH2 0x1DD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x20A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13B PUSH2 0x6E6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x21E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x23B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13B PUSH2 0x24A CALLDATASIZE PUSH1 0x4 PUSH2 0x1581 JUMP JUMPDEST PUSH2 0x7DD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27F PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x113 SWAP2 SWAP1 PUSH2 0x1598 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x297 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13B PUSH2 0x2A6 CALLDATASIZE PUSH1 0x4 PUSH2 0x1581 JUMP JUMPDEST PUSH2 0x96E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1DD PUSH2 0x2C5 CALLDATASIZE PUSH1 0x4 PUSH2 0x1581 JUMP JUMPDEST PUSH2 0x990 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x18A PUSH2 0xA30 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x30E JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x31E PUSH2 0xA30 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO DUP1 PUSH2 0x3A6 JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x38D52E0F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x377 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x39B SWAP2 SWAP1 PUSH2 0x15CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x3C3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x3D6 PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0x4EB JUMPI PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x42C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x450 SWAP2 SWAP1 PUSH2 0x15E8 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x4E9 JUMPI DUP6 ISZERO PUSH2 0x471 JUMPI PUSH2 0x468 DUP4 DUP3 PUSH2 0xAB6 JUMP JUMPDEST SWAP6 POP SWAP2 POP PUSH2 0x4E9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4C2 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x4E6 SWAP2 SWAP1 PUSH2 0x15E8 JUMP JUMPDEST SWAP2 POP JUMPDEST POP JUMPDEST PUSH1 0x64 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND OR SWAP1 SSTORE PUSH2 0x51C PUSH1 0x32 SLOAD DUP3 PUSH2 0x517 SWAP2 SWAP1 PUSH2 0x1613 JUMP JUMPDEST PUSH2 0xBF9 JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE PUSH1 0x40 MLOAD DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND SWAP2 SWAP1 DUP5 AND SWAP1 PUSH32 0x243F9479BBDAF9F3395E726975293EE3724F3819F4322A018C98AFB9DE70A1E0 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x577 DUP3 DUP3 PUSH2 0xC19 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x58E PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x5B7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x603 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x627 SWAP2 SWAP1 PUSH2 0x15E8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x645 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x660 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x684 SWAP2 SWAP1 PUSH2 0x15E8 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x32 SLOAD DUP3 PUSH2 0x695 SWAP2 SWAP1 PUSH2 0x1613 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x6AB JUMPI PUSH1 0x32 DUP3 SWAP1 SSTORE PUSH2 0x6AB DUP2 PUSH2 0xBF9 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x6B8 PUSH2 0xCD2 JUMP JUMPDEST PUSH2 0x6C1 DUP3 PUSH2 0xD78 JUMP JUMPDEST PUSH2 0x577 DUP3 DUP3 PUSH2 0xD81 JUMP JUMPDEST PUSH0 PUSH2 0x6D4 PUSH2 0xE3D JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x169B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x6EF PUSH2 0xE86 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x716 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x732 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x740 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x75E JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x788 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x790 PUSH2 0xEAE JUMP JUMPDEST DUP4 ISZERO PUSH2 0x7D6 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x7F0 PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x819 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x822 PUSH2 0xEBE JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x834 JUMPI DUP1 SWAP3 POP PUSH2 0x868 JUMP JUMPDEST DUP3 DUP2 DUP1 DUP3 GT ISZERO PUSH2 0x865 JUMPI PUSH1 0x40 MLOAD PUSH4 0x531309FB PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x879 SWAP2 SWAP1 PUSH2 0x1632 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x887 SWAP1 POP PUSH2 0xA30 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP7 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x8D5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x8F9 SWAP2 SWAP1 PUSH2 0x1645 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x944 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x968 SWAP2 SWAP1 PUSH2 0x15E8 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x98D CALLER ADDRESS DUP4 PUSH2 0x97C PUSH2 0xA30 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0xF2F JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x999 PUSH2 0x57B JUMP JUMPDEST PUSH0 PUSH2 0x9AC PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0xA1F JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x9F8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xA1C SWAP2 SWAP1 PUSH2 0x15E8 JUMP JUMPDEST SWAP3 POP JUMPDEST PUSH2 0xA29 DUP2 DUP5 PUSH2 0xF65 JUMP JUMPDEST POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xA8D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xAB1 SWAP2 SWAP1 PUSH2 0x15CD JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6C82BBBF PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xD905777E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xB1A JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xB17 SWAP2 DUP2 ADD SWAP1 PUSH2 0x15E8 JUMP JUMPDEST PUSH1 0x1 JUMPDEST ISZERO PUSH2 0xB31 JUMPI DUP4 DUP2 LT ISZERO PUSH2 0xB2F JUMPI PUSH1 0x1 SWAP2 POP DUP1 SWAP4 POP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xBA0 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xB9D SWAP2 DUP2 ADD SWAP1 PUSH2 0x15E8 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xBEF JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x25BCE30047860A48C9D8830DBF31873BE5434F4D28F14A5808A4EA8E35D08296 DUP5 PUSH1 0x40 MLOAD PUSH2 0xBDF SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 PUSH2 0xBF2 JUMP JUMPDEST SWAP2 POP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 PUSH1 0x65 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xC0A SWAP2 SWAP1 PUSH2 0x1660 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x98D SWAP1 POP DUP2 PUSH2 0x1018 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xC4D JUMPI PUSH1 0x40 MLOAD PUSH4 0x6427F273 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x85C JUMP JUMPDEST POP DUP1 PUSH0 SUB PUSH2 0xC59 JUMPI POP POP JUMP JUMPDEST PUSH0 PUSH2 0xC62 PUSH2 0xEBE JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xCA5 JUMPI PUSH0 PUSH2 0xC7F PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0xCA3 JUMPI PUSH2 0xCA3 DUP2 PUSH2 0xC9E DUP5 DUP7 PUSH2 0x1687 JUMP JUMPDEST PUSH2 0xF65 JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ADDRESS EQ PUSH2 0x6AB JUMPI PUSH2 0x6AB DUP4 DUP4 PUSH2 0xCC2 PUSH2 0xA30 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x104E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0xD58 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xD4C PUSH0 MLOAD PUSH1 0x20 PUSH2 0x169B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0xD76 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x98D DUP2 PUSH2 0x1083 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xDDB JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xDD8 SWAP2 DUP2 ADD SWAP1 PUSH2 0x15E8 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xE03 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x85C JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x169B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0xE33 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x85C JUMP JUMPDEST PUSH2 0x6AB DUP4 DUP4 PUSH2 0x1134 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xD76 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x30E JUMP JUMPDEST PUSH2 0xEB6 PUSH2 0x1189 JUMP JUMPDEST PUSH2 0xD76 PUSH2 0x11AE JUMP JUMPDEST PUSH0 PUSH2 0xEC7 PUSH2 0xA30 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xF0B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xAB1 SWAP2 SWAP1 PUSH2 0x15E8 JUMP JUMPDEST PUSH2 0xF3D DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x11B6 JUMP JUMPDEST PUSH2 0x968 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x85C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xFB6 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xFDA SWAP2 SWAP1 PUSH2 0x15E8 JUMP JUMPDEST POP PUSH1 0x32 SLOAD DUP2 GT ISZERO PUSH2 0xFFE JUMPI PUSH2 0xFF6 PUSH1 0x32 SLOAD DUP3 PUSH2 0x517 SWAP2 SWAP1 PUSH2 0x1687 JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE POP POP JUMP JUMPDEST DUP1 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x100F SWAP2 SWAP1 PUSH2 0x1687 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x731C439C5BAE15BE1344EEC709967E046B4F7D3F7E37ABEFFC5247F448FA18BF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH2 0x105B DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x1223 JUMP JUMPDEST PUSH2 0x6AB JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x85C JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x10E9 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x110D SWAP2 SWAP1 PUSH2 0x15CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x98D JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x113D DUP3 PUSH2 0x1285 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x1181 JUMPI PUSH2 0x6AB DUP3 DUP3 PUSH2 0x12E8 JUMP JUMPDEST PUSH2 0x577 PUSH2 0x1388 JUMP JUMPDEST PUSH2 0x1191 PUSH2 0x13A7 JUMP JUMPDEST PUSH2 0xD76 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD76 PUSH2 0x1189 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x1212 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x1206 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x1279 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x126D JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x12BA JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x85C JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x169B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x12F5 DUP5 DUP5 PUSH2 0x13C0 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1316 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x1316 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x132B JUMPI PUSH2 0x1323 PUSH2 0x13D3 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x30E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1355 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x85C JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x1368 JUMPI PUSH2 0x1363 PUSH2 0x13EC JUMP JUMPDEST PUSH2 0x1381 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0xD76 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x13B0 PUSH2 0xE86 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1407 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x141E JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x98D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x98D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1457 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1462 DUP2 PUSH2 0x1425 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x1472 DUP2 PUSH2 0x1439 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x148E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1499 DUP2 PUSH2 0x1425 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x14CC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x14D7 DUP2 PUSH2 0x1425 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x14F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1502 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x151C JUMPI PUSH2 0x151C PUSH2 0x14A7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x154B JUMPI PUSH2 0x154B PUSH2 0x14A7 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP3 DUP3 ADD PUSH1 0x20 ADD DUP8 LT ISZERO PUSH2 0x1562 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP4 POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1591 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x15DD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x141E DUP2 PUSH2 0x1425 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x15F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB PUSH0 DUP4 SLT DUP1 ISZERO DUP4 DUP4 SGT AND DUP4 DUP4 SLT DUP3 AND OR ISZERO PUSH2 0x1381 JUMPI PUSH2 0x1381 PUSH2 0x15FF JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x30E JUMPI PUSH2 0x30E PUSH2 0x15FF JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1655 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x141E DUP2 PUSH2 0x1439 JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x167F JUMPI PUSH2 0x167F PUSH2 0x15FF JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x30E JUMPI PUSH2 0x30E PUSH2 0x15FF JUMP INVALID CALLDATASIZE ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCA2646970667358221220AC 0xD8 0xCA 0xEF SELFBALANCE TIMESTAMP RETF DUP10 0xB4 EXTCODEHASH SHR EXTCODECOPY LT NOT 0xA6 SLOAD SMOD RETURNDATACOPY 0x1E LT 0x26 RJUMPI 0xA771 PUSH30 0x3F5B579624620E64736F6C634300081E0033000000000000000000000000 ","sourceMap":"1024:1770:97:-:0;;;1084:4:33;1041:48;;1301:60:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1346:11;;-1:-1:-1;;;;;1540:34:73;;1536:65;;1583:18;;-1:-1:-1;;;1583:18:73;;;;;;;;;;;1536:65;1607:22;:20;:22::i;:::-;-1:-1:-1;;;;;1635:25:73;;;-1:-1:-1;1024:1770:97;;-1:-1:-1;1024:1770:97;7709:422:32;3147:66;7898:15;;;;;;;7894:76;;;7936:23;;-1:-1:-1;;;7936:23:32;;;;;;;;;;;7894:76;7983:14;;-1:-1:-1;;;;;7983:14:32;;;:34;7979:146;;8033:33;;-1:-1:-1;;;;;;8033:33:32;-1:-1:-1;;;;;8033:33:32;;;;;8085:29;;474:50:101;;;8085:29:32;;462:2:101;447:18;8085:29:32;;;;;;;7979:146;7758:373;7709:422::o;14:311:101:-;105:6;158:2;146:9;137:7;133:23;129:32;126:52;;;174:1;171;164:12;126:52;200:16;;-1:-1:-1;;;;;245:31:101;;235:42;;225:70;;291:1;288;281:12;225:70;314:5;14:311;-1:-1:-1;;;14:311:101:o;330:200::-;1024:1770:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@UPGRADE_INTERFACE_VERSION_7238":{"entryPoint":null,"id":7238,"parameterSlots":0,"returnSlots":0},"@__PolicyPoolComponent_init_25530":{"entryPoint":4526,"id":25530,"parameterSlots":0,"returnSlots":0},"@__Reserve_init_27444":{"entryPoint":3758,"id":27444,"parameterSlots":0,"returnSlots":0},"@_authorizeUpgrade_25541":{"entryPoint":3448,"id":25541,"parameterSlots":1,"returnSlots":0},"@_balance_27823":{"entryPoint":3774,"id":27823,"parameterSlots":0,"returnSlots":1},"@_checkInitializing_7126":{"entryPoint":4489,"id":7126,"parameterSlots":0,"returnSlots":0},"@_checkNonPayable_6903":{"entryPoint":5000,"id":6903,"parameterSlots":0,"returnSlots":0},"@_checkNotDelegated_7332":{"entryPoint":3645,"id":7332,"parameterSlots":0,"returnSlots":0},"@_checkProxy_7316":{"entryPoint":3282,"id":7316,"parameterSlots":0,"returnSlots":0},"@_deinvest_27730":{"entryPoint":3941,"id":27730,"parameterSlots":2,"returnSlots":0},"@_getInitializableStorage_7217":{"entryPoint":3718,"id":7217,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_7203":{"entryPoint":null,"id":7203,"parameterSlots":0,"returnSlots":1},"@_isInitializing_7194":{"entryPoint":5031,"id":7194,"parameterSlots":0,"returnSlots":1},"@_safeDeInvestAll_27805":{"entryPoint":2742,"id":27805,"parameterSlots":2,"returnSlots":2},"@_safeTransferFrom_9330":{"entryPoint":4534,"id":9330,"parameterSlots":5,"returnSlots":1},"@_safeTransfer_9305":{"entryPoint":4643,"id":9305,"parameterSlots":4,"returnSlots":1},"@_setImplementation_6683":{"entryPoint":4741,"id":6683,"parameterSlots":1,"returnSlots":0},"@_setYieldVault_30644":{"entryPoint":null,"id":30644,"parameterSlots":1,"returnSlots":0},"@_transferTo_27518":{"entryPoint":3097,"id":27518,"parameterSlots":2,"returnSlots":0},"@_upgradeToAndCallUUPS_7383":{"entryPoint":3457,"id":7383,"parameterSlots":2,"returnSlots":0},"@_upgradeValidations_25558":{"entryPoint":4227,"id":25558,"parameterSlots":1,"returnSlots":0},"@_yieldEarnings_27552":{"entryPoint":4120,"id":27552,"parameterSlots":1,"returnSlots":0},"@_yieldEarnings_30662":{"entryPoint":3065,"id":30662,"parameterSlots":1,"returnSlots":0},"@addMoney_30680":{"entryPoint":2414,"id":30680,"parameterSlots":1,"returnSlots":0},"@bubbleRevert_10900":{"entryPoint":5100,"id":10900,"parameterSlots":0,"returnSlots":0},"@currency_25603":{"entryPoint":2608,"id":25603,"parameterSlots":0,"returnSlots":1},"@delegatecallNoReturn_10862":{"entryPoint":5056,"id":10862,"parameterSlots":2,"returnSlots":1},"@depositIntoYieldVault_27946":{"entryPoint":2013,"id":27946,"parameterSlots":1,"returnSlots":0},"@functionDelegateCall_9894":{"entryPoint":4840,"id":9894,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_11669":{"entryPoint":null,"id":11669,"parameterSlots":1,"returnSlots":1},"@getImplementation_6656":{"entryPoint":null,"id":6656,"parameterSlots":0,"returnSlots":1},"@initialize_30622":{"entryPoint":1766,"id":30622,"parameterSlots":0,"returnSlots":0},"@investedInYV_27541":{"entryPoint":null,"id":27541,"parameterSlots":0,"returnSlots":1},"@policyPool_25592":{"entryPoint":null,"id":25592,"parameterSlots":0,"returnSlots":1},"@proxiableUUID_7274":{"entryPoint":1739,"id":7274,"parameterSlots":0,"returnSlots":1},"@recordEarnings_28009":{"entryPoint":1403,"id":28009,"parameterSlots":0,"returnSlots":0},"@returnDataSize_10886":{"entryPoint":null,"id":10886,"parameterSlots":0,"returnSlots":1},"@returnData_10894":{"entryPoint":5075,"id":10894,"parameterSlots":0,"returnSlots":1},"@safeTransferFrom_8979":{"entryPoint":3887,"id":8979,"parameterSlots":4,"returnSlots":0},"@safeTransfer_8948":{"entryPoint":4174,"id":8948,"parameterSlots":3,"returnSlots":0},"@setYieldVault_27683":{"entryPoint":788,"id":27683,"parameterSlots":2,"returnSlots":0},"@supportsInterface_25582":{"entryPoint":734,"id":25582,"parameterSlots":1,"returnSlots":1},"@transferTo_30693":{"entryPoint":1389,"id":30693,"parameterSlots":2,"returnSlots":0},"@upgradeToAndCall_6719":{"entryPoint":4404,"id":6719,"parameterSlots":2,"returnSlots":0},"@upgradeToAndCall_7294":{"entryPoint":1712,"id":7294,"parameterSlots":2,"returnSlots":0},"@withdrawFromYieldVault_27866":{"entryPoint":2448,"id":27866,"parameterSlots":1,"returnSlots":1},"@yieldVault_30632":{"entryPoint":null,"id":30632,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":5581,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_bytes_memory_ptr":{"entryPoint":5307,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":5245,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":5701,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":5111,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC4626_$6400t_bool":{"entryPoint":5190,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":5505,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":5608,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC4626_$6400__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5528,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"checked_add_t_int256":{"entryPoint":5728,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":5682,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_int256":{"entryPoint":5651,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":5767,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":5631,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":5287,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_bool":{"entryPoint":5177,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_contract_IERC4626":{"entryPoint":5157,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:8568:101","nodeType":"YulBlock","src":"0:8568:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"83:217:101","nodeType":"YulBlock","src":"83:217:101","statements":[{"body":{"nativeSrc":"129:16:101","nodeType":"YulBlock","src":"129:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"138:1:101","nodeType":"YulLiteral","src":"138:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"141:1:101","nodeType":"YulLiteral","src":"141:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"131:6:101","nodeType":"YulIdentifier","src":"131:6:101"},"nativeSrc":"131:12:101","nodeType":"YulFunctionCall","src":"131:12:101"},"nativeSrc":"131:12:101","nodeType":"YulExpressionStatement","src":"131:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"104:7:101","nodeType":"YulIdentifier","src":"104:7:101"},{"name":"headStart","nativeSrc":"113:9:101","nodeType":"YulIdentifier","src":"113:9:101"}],"functionName":{"name":"sub","nativeSrc":"100:3:101","nodeType":"YulIdentifier","src":"100:3:101"},"nativeSrc":"100:23:101","nodeType":"YulFunctionCall","src":"100:23:101"},{"kind":"number","nativeSrc":"125:2:101","nodeType":"YulLiteral","src":"125:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"96:3:101","nodeType":"YulIdentifier","src":"96:3:101"},"nativeSrc":"96:32:101","nodeType":"YulFunctionCall","src":"96:32:101"},"nativeSrc":"93:52:101","nodeType":"YulIf","src":"93:52:101"},{"nativeSrc":"154:36:101","nodeType":"YulVariableDeclaration","src":"154:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"180:9:101","nodeType":"YulIdentifier","src":"180:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"167:12:101","nodeType":"YulIdentifier","src":"167:12:101"},"nativeSrc":"167:23:101","nodeType":"YulFunctionCall","src":"167:23:101"},"variables":[{"name":"value","nativeSrc":"158:5:101","nodeType":"YulTypedName","src":"158:5:101","type":""}]},{"body":{"nativeSrc":"254:16:101","nodeType":"YulBlock","src":"254:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:101","nodeType":"YulLiteral","src":"263:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:101","nodeType":"YulLiteral","src":"266:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:101","nodeType":"YulIdentifier","src":"256:6:101"},"nativeSrc":"256:12:101","nodeType":"YulFunctionCall","src":"256:12:101"},"nativeSrc":"256:12:101","nodeType":"YulExpressionStatement","src":"256:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"212:5:101","nodeType":"YulIdentifier","src":"212:5:101"},{"arguments":[{"name":"value","nativeSrc":"223:5:101","nodeType":"YulIdentifier","src":"223:5:101"},{"arguments":[{"kind":"number","nativeSrc":"234:3:101","nodeType":"YulLiteral","src":"234:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"239:10:101","nodeType":"YulLiteral","src":"239:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"230:3:101","nodeType":"YulIdentifier","src":"230:3:101"},"nativeSrc":"230:20:101","nodeType":"YulFunctionCall","src":"230:20:101"}],"functionName":{"name":"and","nativeSrc":"219:3:101","nodeType":"YulIdentifier","src":"219:3:101"},"nativeSrc":"219:32:101","nodeType":"YulFunctionCall","src":"219:32:101"}],"functionName":{"name":"eq","nativeSrc":"209:2:101","nodeType":"YulIdentifier","src":"209:2:101"},"nativeSrc":"209:43:101","nodeType":"YulFunctionCall","src":"209:43:101"}],"functionName":{"name":"iszero","nativeSrc":"202:6:101","nodeType":"YulIdentifier","src":"202:6:101"},"nativeSrc":"202:51:101","nodeType":"YulFunctionCall","src":"202:51:101"},"nativeSrc":"199:71:101","nodeType":"YulIf","src":"199:71:101"},{"nativeSrc":"279:15:101","nodeType":"YulAssignment","src":"279:15:101","value":{"name":"value","nativeSrc":"289:5:101","nodeType":"YulIdentifier","src":"289:5:101"},"variableNames":[{"name":"value0","nativeSrc":"279:6:101","nodeType":"YulIdentifier","src":"279:6:101"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14:286:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"49:9:101","nodeType":"YulTypedName","src":"49:9:101","type":""},{"name":"dataEnd","nativeSrc":"60:7:101","nodeType":"YulTypedName","src":"60:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"72:6:101","nodeType":"YulTypedName","src":"72:6:101","type":""}],"src":"14:286:101"},{"body":{"nativeSrc":"400:92:101","nodeType":"YulBlock","src":"400:92:101","statements":[{"nativeSrc":"410:26:101","nodeType":"YulAssignment","src":"410:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:101","nodeType":"YulIdentifier","src":"422:9:101"},{"kind":"number","nativeSrc":"433:2:101","nodeType":"YulLiteral","src":"433:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"418:3:101","nodeType":"YulIdentifier","src":"418:3:101"},"nativeSrc":"418:18:101","nodeType":"YulFunctionCall","src":"418:18:101"},"variableNames":[{"name":"tail","nativeSrc":"410:4:101","nodeType":"YulIdentifier","src":"410:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"452:9:101","nodeType":"YulIdentifier","src":"452:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"477:6:101","nodeType":"YulIdentifier","src":"477:6:101"}],"functionName":{"name":"iszero","nativeSrc":"470:6:101","nodeType":"YulIdentifier","src":"470:6:101"},"nativeSrc":"470:14:101","nodeType":"YulFunctionCall","src":"470:14:101"}],"functionName":{"name":"iszero","nativeSrc":"463:6:101","nodeType":"YulIdentifier","src":"463:6:101"},"nativeSrc":"463:22:101","nodeType":"YulFunctionCall","src":"463:22:101"}],"functionName":{"name":"mstore","nativeSrc":"445:6:101","nodeType":"YulIdentifier","src":"445:6:101"},"nativeSrc":"445:41:101","nodeType":"YulFunctionCall","src":"445:41:101"},"nativeSrc":"445:41:101","nodeType":"YulExpressionStatement","src":"445:41:101"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"305:187:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"369:9:101","nodeType":"YulTypedName","src":"369:9:101","type":""},{"name":"value0","nativeSrc":"380:6:101","nodeType":"YulTypedName","src":"380:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"391:4:101","nodeType":"YulTypedName","src":"391:4:101","type":""}],"src":"305:187:101"},{"body":{"nativeSrc":"552:86:101","nodeType":"YulBlock","src":"552:86:101","statements":[{"body":{"nativeSrc":"616:16:101","nodeType":"YulBlock","src":"616:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"625:1:101","nodeType":"YulLiteral","src":"625:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"628:1:101","nodeType":"YulLiteral","src":"628:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"618:6:101","nodeType":"YulIdentifier","src":"618:6:101"},"nativeSrc":"618:12:101","nodeType":"YulFunctionCall","src":"618:12:101"},"nativeSrc":"618:12:101","nodeType":"YulExpressionStatement","src":"618:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"575:5:101","nodeType":"YulIdentifier","src":"575:5:101"},{"arguments":[{"name":"value","nativeSrc":"586:5:101","nodeType":"YulIdentifier","src":"586:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"601:3:101","nodeType":"YulLiteral","src":"601:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"606:1:101","nodeType":"YulLiteral","src":"606:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"597:3:101","nodeType":"YulIdentifier","src":"597:3:101"},"nativeSrc":"597:11:101","nodeType":"YulFunctionCall","src":"597:11:101"},{"kind":"number","nativeSrc":"610:1:101","nodeType":"YulLiteral","src":"610:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"593:3:101","nodeType":"YulIdentifier","src":"593:3:101"},"nativeSrc":"593:19:101","nodeType":"YulFunctionCall","src":"593:19:101"}],"functionName":{"name":"and","nativeSrc":"582:3:101","nodeType":"YulIdentifier","src":"582:3:101"},"nativeSrc":"582:31:101","nodeType":"YulFunctionCall","src":"582:31:101"}],"functionName":{"name":"eq","nativeSrc":"572:2:101","nodeType":"YulIdentifier","src":"572:2:101"},"nativeSrc":"572:42:101","nodeType":"YulFunctionCall","src":"572:42:101"}],"functionName":{"name":"iszero","nativeSrc":"565:6:101","nodeType":"YulIdentifier","src":"565:6:101"},"nativeSrc":"565:50:101","nodeType":"YulFunctionCall","src":"565:50:101"},"nativeSrc":"562:70:101","nodeType":"YulIf","src":"562:70:101"}]},"name":"validator_revert_contract_IERC4626","nativeSrc":"497:141:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"541:5:101","nodeType":"YulTypedName","src":"541:5:101","type":""}],"src":"497:141:101"},{"body":{"nativeSrc":"685:76:101","nodeType":"YulBlock","src":"685:76:101","statements":[{"body":{"nativeSrc":"739:16:101","nodeType":"YulBlock","src":"739:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"748:1:101","nodeType":"YulLiteral","src":"748:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"751:1:101","nodeType":"YulLiteral","src":"751:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"741:6:101","nodeType":"YulIdentifier","src":"741:6:101"},"nativeSrc":"741:12:101","nodeType":"YulFunctionCall","src":"741:12:101"},"nativeSrc":"741:12:101","nodeType":"YulExpressionStatement","src":"741:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"708:5:101","nodeType":"YulIdentifier","src":"708:5:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"729:5:101","nodeType":"YulIdentifier","src":"729:5:101"}],"functionName":{"name":"iszero","nativeSrc":"722:6:101","nodeType":"YulIdentifier","src":"722:6:101"},"nativeSrc":"722:13:101","nodeType":"YulFunctionCall","src":"722:13:101"}],"functionName":{"name":"iszero","nativeSrc":"715:6:101","nodeType":"YulIdentifier","src":"715:6:101"},"nativeSrc":"715:21:101","nodeType":"YulFunctionCall","src":"715:21:101"}],"functionName":{"name":"eq","nativeSrc":"705:2:101","nodeType":"YulIdentifier","src":"705:2:101"},"nativeSrc":"705:32:101","nodeType":"YulFunctionCall","src":"705:32:101"}],"functionName":{"name":"iszero","nativeSrc":"698:6:101","nodeType":"YulIdentifier","src":"698:6:101"},"nativeSrc":"698:40:101","nodeType":"YulFunctionCall","src":"698:40:101"},"nativeSrc":"695:60:101","nodeType":"YulIf","src":"695:60:101"}]},"name":"validator_revert_bool","nativeSrc":"643:118:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"674:5:101","nodeType":"YulTypedName","src":"674:5:101","type":""}],"src":"643:118:101"},{"body":{"nativeSrc":"867:308:101","nodeType":"YulBlock","src":"867:308:101","statements":[{"body":{"nativeSrc":"913:16:101","nodeType":"YulBlock","src":"913:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"922:1:101","nodeType":"YulLiteral","src":"922:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"925:1:101","nodeType":"YulLiteral","src":"925:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"915:6:101","nodeType":"YulIdentifier","src":"915:6:101"},"nativeSrc":"915:12:101","nodeType":"YulFunctionCall","src":"915:12:101"},"nativeSrc":"915:12:101","nodeType":"YulExpressionStatement","src":"915:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"888:7:101","nodeType":"YulIdentifier","src":"888:7:101"},{"name":"headStart","nativeSrc":"897:9:101","nodeType":"YulIdentifier","src":"897:9:101"}],"functionName":{"name":"sub","nativeSrc":"884:3:101","nodeType":"YulIdentifier","src":"884:3:101"},"nativeSrc":"884:23:101","nodeType":"YulFunctionCall","src":"884:23:101"},{"kind":"number","nativeSrc":"909:2:101","nodeType":"YulLiteral","src":"909:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"880:3:101","nodeType":"YulIdentifier","src":"880:3:101"},"nativeSrc":"880:32:101","nodeType":"YulFunctionCall","src":"880:32:101"},"nativeSrc":"877:52:101","nodeType":"YulIf","src":"877:52:101"},{"nativeSrc":"938:36:101","nodeType":"YulVariableDeclaration","src":"938:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"964:9:101","nodeType":"YulIdentifier","src":"964:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"951:12:101","nodeType":"YulIdentifier","src":"951:12:101"},"nativeSrc":"951:23:101","nodeType":"YulFunctionCall","src":"951:23:101"},"variables":[{"name":"value","nativeSrc":"942:5:101","nodeType":"YulTypedName","src":"942:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1018:5:101","nodeType":"YulIdentifier","src":"1018:5:101"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"983:34:101","nodeType":"YulIdentifier","src":"983:34:101"},"nativeSrc":"983:41:101","nodeType":"YulFunctionCall","src":"983:41:101"},"nativeSrc":"983:41:101","nodeType":"YulExpressionStatement","src":"983:41:101"},{"nativeSrc":"1033:15:101","nodeType":"YulAssignment","src":"1033:15:101","value":{"name":"value","nativeSrc":"1043:5:101","nodeType":"YulIdentifier","src":"1043:5:101"},"variableNames":[{"name":"value0","nativeSrc":"1033:6:101","nodeType":"YulIdentifier","src":"1033:6:101"}]},{"nativeSrc":"1057:47:101","nodeType":"YulVariableDeclaration","src":"1057:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1089:9:101","nodeType":"YulIdentifier","src":"1089:9:101"},{"kind":"number","nativeSrc":"1100:2:101","nodeType":"YulLiteral","src":"1100:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1085:3:101","nodeType":"YulIdentifier","src":"1085:3:101"},"nativeSrc":"1085:18:101","nodeType":"YulFunctionCall","src":"1085:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"1072:12:101","nodeType":"YulIdentifier","src":"1072:12:101"},"nativeSrc":"1072:32:101","nodeType":"YulFunctionCall","src":"1072:32:101"},"variables":[{"name":"value_1","nativeSrc":"1061:7:101","nodeType":"YulTypedName","src":"1061:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"1135:7:101","nodeType":"YulIdentifier","src":"1135:7:101"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"1113:21:101","nodeType":"YulIdentifier","src":"1113:21:101"},"nativeSrc":"1113:30:101","nodeType":"YulFunctionCall","src":"1113:30:101"},"nativeSrc":"1113:30:101","nodeType":"YulExpressionStatement","src":"1113:30:101"},{"nativeSrc":"1152:17:101","nodeType":"YulAssignment","src":"1152:17:101","value":{"name":"value_1","nativeSrc":"1162:7:101","nodeType":"YulIdentifier","src":"1162:7:101"},"variableNames":[{"name":"value1","nativeSrc":"1152:6:101","nodeType":"YulIdentifier","src":"1152:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IERC4626_$6400t_bool","nativeSrc":"766:409:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"825:9:101","nodeType":"YulTypedName","src":"825:9:101","type":""},{"name":"dataEnd","nativeSrc":"836:7:101","nodeType":"YulTypedName","src":"836:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"848:6:101","nodeType":"YulTypedName","src":"848:6:101","type":""},{"name":"value1","nativeSrc":"856:6:101","nodeType":"YulTypedName","src":"856:6:101","type":""}],"src":"766:409:101"},{"body":{"nativeSrc":"1267:290:101","nodeType":"YulBlock","src":"1267:290:101","statements":[{"body":{"nativeSrc":"1313:16:101","nodeType":"YulBlock","src":"1313:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1322:1:101","nodeType":"YulLiteral","src":"1322:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1325:1:101","nodeType":"YulLiteral","src":"1325:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1315:6:101","nodeType":"YulIdentifier","src":"1315:6:101"},"nativeSrc":"1315:12:101","nodeType":"YulFunctionCall","src":"1315:12:101"},"nativeSrc":"1315:12:101","nodeType":"YulExpressionStatement","src":"1315:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1288:7:101","nodeType":"YulIdentifier","src":"1288:7:101"},{"name":"headStart","nativeSrc":"1297:9:101","nodeType":"YulIdentifier","src":"1297:9:101"}],"functionName":{"name":"sub","nativeSrc":"1284:3:101","nodeType":"YulIdentifier","src":"1284:3:101"},"nativeSrc":"1284:23:101","nodeType":"YulFunctionCall","src":"1284:23:101"},{"kind":"number","nativeSrc":"1309:2:101","nodeType":"YulLiteral","src":"1309:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1280:3:101","nodeType":"YulIdentifier","src":"1280:3:101"},"nativeSrc":"1280:32:101","nodeType":"YulFunctionCall","src":"1280:32:101"},"nativeSrc":"1277:52:101","nodeType":"YulIf","src":"1277:52:101"},{"nativeSrc":"1338:36:101","nodeType":"YulVariableDeclaration","src":"1338:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1364:9:101","nodeType":"YulIdentifier","src":"1364:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"1351:12:101","nodeType":"YulIdentifier","src":"1351:12:101"},"nativeSrc":"1351:23:101","nodeType":"YulFunctionCall","src":"1351:23:101"},"variables":[{"name":"value","nativeSrc":"1342:5:101","nodeType":"YulTypedName","src":"1342:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1418:5:101","nodeType":"YulIdentifier","src":"1418:5:101"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"1383:34:101","nodeType":"YulIdentifier","src":"1383:34:101"},"nativeSrc":"1383:41:101","nodeType":"YulFunctionCall","src":"1383:41:101"},"nativeSrc":"1383:41:101","nodeType":"YulExpressionStatement","src":"1383:41:101"},{"nativeSrc":"1433:15:101","nodeType":"YulAssignment","src":"1433:15:101","value":{"name":"value","nativeSrc":"1443:5:101","nodeType":"YulIdentifier","src":"1443:5:101"},"variableNames":[{"name":"value0","nativeSrc":"1433:6:101","nodeType":"YulIdentifier","src":"1433:6:101"}]},{"nativeSrc":"1457:16:101","nodeType":"YulVariableDeclaration","src":"1457:16:101","value":{"kind":"number","nativeSrc":"1472:1:101","nodeType":"YulLiteral","src":"1472:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"1461:7:101","nodeType":"YulTypedName","src":"1461:7:101","type":""}]},{"nativeSrc":"1482:43:101","nodeType":"YulAssignment","src":"1482:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1510:9:101","nodeType":"YulIdentifier","src":"1510:9:101"},{"kind":"number","nativeSrc":"1521:2:101","nodeType":"YulLiteral","src":"1521:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1506:3:101","nodeType":"YulIdentifier","src":"1506:3:101"},"nativeSrc":"1506:18:101","nodeType":"YulFunctionCall","src":"1506:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"1493:12:101","nodeType":"YulIdentifier","src":"1493:12:101"},"nativeSrc":"1493:32:101","nodeType":"YulFunctionCall","src":"1493:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"1482:7:101","nodeType":"YulIdentifier","src":"1482:7:101"}]},{"nativeSrc":"1534:17:101","nodeType":"YulAssignment","src":"1534:17:101","value":{"name":"value_1","nativeSrc":"1544:7:101","nodeType":"YulIdentifier","src":"1544:7:101"},"variableNames":[{"name":"value1","nativeSrc":"1534:6:101","nodeType":"YulIdentifier","src":"1534:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"1180:377:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1225:9:101","nodeType":"YulTypedName","src":"1225:9:101","type":""},{"name":"dataEnd","nativeSrc":"1236:7:101","nodeType":"YulTypedName","src":"1236:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1248:6:101","nodeType":"YulTypedName","src":"1248:6:101","type":""},{"name":"value1","nativeSrc":"1256:6:101","nodeType":"YulTypedName","src":"1256:6:101","type":""}],"src":"1180:377:101"},{"body":{"nativeSrc":"1684:102:101","nodeType":"YulBlock","src":"1684:102:101","statements":[{"nativeSrc":"1694:26:101","nodeType":"YulAssignment","src":"1694:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1706:9:101","nodeType":"YulIdentifier","src":"1706:9:101"},{"kind":"number","nativeSrc":"1717:2:101","nodeType":"YulLiteral","src":"1717:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1702:3:101","nodeType":"YulIdentifier","src":"1702:3:101"},"nativeSrc":"1702:18:101","nodeType":"YulFunctionCall","src":"1702:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1694:4:101","nodeType":"YulIdentifier","src":"1694:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1736:9:101","nodeType":"YulIdentifier","src":"1736:9:101"},{"arguments":[{"name":"value0","nativeSrc":"1751:6:101","nodeType":"YulIdentifier","src":"1751:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1767:3:101","nodeType":"YulLiteral","src":"1767:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"1772:1:101","nodeType":"YulLiteral","src":"1772:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1763:3:101","nodeType":"YulIdentifier","src":"1763:3:101"},"nativeSrc":"1763:11:101","nodeType":"YulFunctionCall","src":"1763:11:101"},{"kind":"number","nativeSrc":"1776:1:101","nodeType":"YulLiteral","src":"1776:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1759:3:101","nodeType":"YulIdentifier","src":"1759:3:101"},"nativeSrc":"1759:19:101","nodeType":"YulFunctionCall","src":"1759:19:101"}],"functionName":{"name":"and","nativeSrc":"1747:3:101","nodeType":"YulIdentifier","src":"1747:3:101"},"nativeSrc":"1747:32:101","nodeType":"YulFunctionCall","src":"1747:32:101"}],"functionName":{"name":"mstore","nativeSrc":"1729:6:101","nodeType":"YulIdentifier","src":"1729:6:101"},"nativeSrc":"1729:51:101","nodeType":"YulFunctionCall","src":"1729:51:101"},"nativeSrc":"1729:51:101","nodeType":"YulExpressionStatement","src":"1729:51:101"}]},"name":"abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed","nativeSrc":"1562:224:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1653:9:101","nodeType":"YulTypedName","src":"1653:9:101","type":""},{"name":"value0","nativeSrc":"1664:6:101","nodeType":"YulTypedName","src":"1664:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1675:4:101","nodeType":"YulTypedName","src":"1675:4:101","type":""}],"src":"1562:224:101"},{"body":{"nativeSrc":"1823:95:101","nodeType":"YulBlock","src":"1823:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1840:1:101","nodeType":"YulLiteral","src":"1840:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1847:3:101","nodeType":"YulLiteral","src":"1847:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"1852:10:101","nodeType":"YulLiteral","src":"1852:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1843:3:101","nodeType":"YulIdentifier","src":"1843:3:101"},"nativeSrc":"1843:20:101","nodeType":"YulFunctionCall","src":"1843:20:101"}],"functionName":{"name":"mstore","nativeSrc":"1833:6:101","nodeType":"YulIdentifier","src":"1833:6:101"},"nativeSrc":"1833:31:101","nodeType":"YulFunctionCall","src":"1833:31:101"},"nativeSrc":"1833:31:101","nodeType":"YulExpressionStatement","src":"1833:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1880:1:101","nodeType":"YulLiteral","src":"1880:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"1883:4:101","nodeType":"YulLiteral","src":"1883:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"1873:6:101","nodeType":"YulIdentifier","src":"1873:6:101"},"nativeSrc":"1873:15:101","nodeType":"YulFunctionCall","src":"1873:15:101"},"nativeSrc":"1873:15:101","nodeType":"YulExpressionStatement","src":"1873:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1904:1:101","nodeType":"YulLiteral","src":"1904:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1907:4:101","nodeType":"YulLiteral","src":"1907:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1897:6:101","nodeType":"YulIdentifier","src":"1897:6:101"},"nativeSrc":"1897:15:101","nodeType":"YulFunctionCall","src":"1897:15:101"},"nativeSrc":"1897:15:101","nodeType":"YulExpressionStatement","src":"1897:15:101"}]},"name":"panic_error_0x41","nativeSrc":"1791:127:101","nodeType":"YulFunctionDefinition","src":"1791:127:101"},{"body":{"nativeSrc":"2019:993:101","nodeType":"YulBlock","src":"2019:993:101","statements":[{"body":{"nativeSrc":"2065:16:101","nodeType":"YulBlock","src":"2065:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2074:1:101","nodeType":"YulLiteral","src":"2074:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2077:1:101","nodeType":"YulLiteral","src":"2077:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2067:6:101","nodeType":"YulIdentifier","src":"2067:6:101"},"nativeSrc":"2067:12:101","nodeType":"YulFunctionCall","src":"2067:12:101"},"nativeSrc":"2067:12:101","nodeType":"YulExpressionStatement","src":"2067:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2040:7:101","nodeType":"YulIdentifier","src":"2040:7:101"},{"name":"headStart","nativeSrc":"2049:9:101","nodeType":"YulIdentifier","src":"2049:9:101"}],"functionName":{"name":"sub","nativeSrc":"2036:3:101","nodeType":"YulIdentifier","src":"2036:3:101"},"nativeSrc":"2036:23:101","nodeType":"YulFunctionCall","src":"2036:23:101"},{"kind":"number","nativeSrc":"2061:2:101","nodeType":"YulLiteral","src":"2061:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2032:3:101","nodeType":"YulIdentifier","src":"2032:3:101"},"nativeSrc":"2032:32:101","nodeType":"YulFunctionCall","src":"2032:32:101"},"nativeSrc":"2029:52:101","nodeType":"YulIf","src":"2029:52:101"},{"nativeSrc":"2090:36:101","nodeType":"YulVariableDeclaration","src":"2090:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2116:9:101","nodeType":"YulIdentifier","src":"2116:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"2103:12:101","nodeType":"YulIdentifier","src":"2103:12:101"},"nativeSrc":"2103:23:101","nodeType":"YulFunctionCall","src":"2103:23:101"},"variables":[{"name":"value","nativeSrc":"2094:5:101","nodeType":"YulTypedName","src":"2094:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2170:5:101","nodeType":"YulIdentifier","src":"2170:5:101"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"2135:34:101","nodeType":"YulIdentifier","src":"2135:34:101"},"nativeSrc":"2135:41:101","nodeType":"YulFunctionCall","src":"2135:41:101"},"nativeSrc":"2135:41:101","nodeType":"YulExpressionStatement","src":"2135:41:101"},{"nativeSrc":"2185:15:101","nodeType":"YulAssignment","src":"2185:15:101","value":{"name":"value","nativeSrc":"2195:5:101","nodeType":"YulIdentifier","src":"2195:5:101"},"variableNames":[{"name":"value0","nativeSrc":"2185:6:101","nodeType":"YulIdentifier","src":"2185:6:101"}]},{"nativeSrc":"2209:46:101","nodeType":"YulVariableDeclaration","src":"2209:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2240:9:101","nodeType":"YulIdentifier","src":"2240:9:101"},{"kind":"number","nativeSrc":"2251:2:101","nodeType":"YulLiteral","src":"2251:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2236:3:101","nodeType":"YulIdentifier","src":"2236:3:101"},"nativeSrc":"2236:18:101","nodeType":"YulFunctionCall","src":"2236:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"2223:12:101","nodeType":"YulIdentifier","src":"2223:12:101"},"nativeSrc":"2223:32:101","nodeType":"YulFunctionCall","src":"2223:32:101"},"variables":[{"name":"offset","nativeSrc":"2213:6:101","nodeType":"YulTypedName","src":"2213:6:101","type":""}]},{"body":{"nativeSrc":"2298:16:101","nodeType":"YulBlock","src":"2298:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2307:1:101","nodeType":"YulLiteral","src":"2307:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2310:1:101","nodeType":"YulLiteral","src":"2310:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2300:6:101","nodeType":"YulIdentifier","src":"2300:6:101"},"nativeSrc":"2300:12:101","nodeType":"YulFunctionCall","src":"2300:12:101"},"nativeSrc":"2300:12:101","nodeType":"YulExpressionStatement","src":"2300:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"2270:6:101","nodeType":"YulIdentifier","src":"2270:6:101"},{"kind":"number","nativeSrc":"2278:18:101","nodeType":"YulLiteral","src":"2278:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2267:2:101","nodeType":"YulIdentifier","src":"2267:2:101"},"nativeSrc":"2267:30:101","nodeType":"YulFunctionCall","src":"2267:30:101"},"nativeSrc":"2264:50:101","nodeType":"YulIf","src":"2264:50:101"},{"nativeSrc":"2323:32:101","nodeType":"YulVariableDeclaration","src":"2323:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2337:9:101","nodeType":"YulIdentifier","src":"2337:9:101"},{"name":"offset","nativeSrc":"2348:6:101","nodeType":"YulIdentifier","src":"2348:6:101"}],"functionName":{"name":"add","nativeSrc":"2333:3:101","nodeType":"YulIdentifier","src":"2333:3:101"},"nativeSrc":"2333:22:101","nodeType":"YulFunctionCall","src":"2333:22:101"},"variables":[{"name":"_1","nativeSrc":"2327:2:101","nodeType":"YulTypedName","src":"2327:2:101","type":""}]},{"body":{"nativeSrc":"2403:16:101","nodeType":"YulBlock","src":"2403:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2412:1:101","nodeType":"YulLiteral","src":"2412:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2415:1:101","nodeType":"YulLiteral","src":"2415:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2405:6:101","nodeType":"YulIdentifier","src":"2405:6:101"},"nativeSrc":"2405:12:101","nodeType":"YulFunctionCall","src":"2405:12:101"},"nativeSrc":"2405:12:101","nodeType":"YulExpressionStatement","src":"2405:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"2382:2:101","nodeType":"YulIdentifier","src":"2382:2:101"},{"kind":"number","nativeSrc":"2386:4:101","nodeType":"YulLiteral","src":"2386:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2378:3:101","nodeType":"YulIdentifier","src":"2378:3:101"},"nativeSrc":"2378:13:101","nodeType":"YulFunctionCall","src":"2378:13:101"},{"name":"dataEnd","nativeSrc":"2393:7:101","nodeType":"YulIdentifier","src":"2393:7:101"}],"functionName":{"name":"slt","nativeSrc":"2374:3:101","nodeType":"YulIdentifier","src":"2374:3:101"},"nativeSrc":"2374:27:101","nodeType":"YulFunctionCall","src":"2374:27:101"}],"functionName":{"name":"iszero","nativeSrc":"2367:6:101","nodeType":"YulIdentifier","src":"2367:6:101"},"nativeSrc":"2367:35:101","nodeType":"YulFunctionCall","src":"2367:35:101"},"nativeSrc":"2364:55:101","nodeType":"YulIf","src":"2364:55:101"},{"nativeSrc":"2428:30:101","nodeType":"YulVariableDeclaration","src":"2428:30:101","value":{"arguments":[{"name":"_1","nativeSrc":"2455:2:101","nodeType":"YulIdentifier","src":"2455:2:101"}],"functionName":{"name":"calldataload","nativeSrc":"2442:12:101","nodeType":"YulIdentifier","src":"2442:12:101"},"nativeSrc":"2442:16:101","nodeType":"YulFunctionCall","src":"2442:16:101"},"variables":[{"name":"length","nativeSrc":"2432:6:101","nodeType":"YulTypedName","src":"2432:6:101","type":""}]},{"body":{"nativeSrc":"2501:22:101","nodeType":"YulBlock","src":"2501:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2503:16:101","nodeType":"YulIdentifier","src":"2503:16:101"},"nativeSrc":"2503:18:101","nodeType":"YulFunctionCall","src":"2503:18:101"},"nativeSrc":"2503:18:101","nodeType":"YulExpressionStatement","src":"2503:18:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"2473:6:101","nodeType":"YulIdentifier","src":"2473:6:101"},{"kind":"number","nativeSrc":"2481:18:101","nodeType":"YulLiteral","src":"2481:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2470:2:101","nodeType":"YulIdentifier","src":"2470:2:101"},"nativeSrc":"2470:30:101","nodeType":"YulFunctionCall","src":"2470:30:101"},"nativeSrc":"2467:56:101","nodeType":"YulIf","src":"2467:56:101"},{"nativeSrc":"2532:23:101","nodeType":"YulVariableDeclaration","src":"2532:23:101","value":{"arguments":[{"kind":"number","nativeSrc":"2552:2:101","nodeType":"YulLiteral","src":"2552:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"2546:5:101","nodeType":"YulIdentifier","src":"2546:5:101"},"nativeSrc":"2546:9:101","nodeType":"YulFunctionCall","src":"2546:9:101"},"variables":[{"name":"memPtr","nativeSrc":"2536:6:101","nodeType":"YulTypedName","src":"2536:6:101","type":""}]},{"nativeSrc":"2564:85:101","nodeType":"YulVariableDeclaration","src":"2564:85:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"2586:6:101","nodeType":"YulIdentifier","src":"2586:6:101"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"2610:6:101","nodeType":"YulIdentifier","src":"2610:6:101"},{"kind":"number","nativeSrc":"2618:4:101","nodeType":"YulLiteral","src":"2618:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2606:3:101","nodeType":"YulIdentifier","src":"2606:3:101"},"nativeSrc":"2606:17:101","nodeType":"YulFunctionCall","src":"2606:17:101"},{"arguments":[{"kind":"number","nativeSrc":"2629:2:101","nodeType":"YulLiteral","src":"2629:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"2625:3:101","nodeType":"YulIdentifier","src":"2625:3:101"},"nativeSrc":"2625:7:101","nodeType":"YulFunctionCall","src":"2625:7:101"}],"functionName":{"name":"and","nativeSrc":"2602:3:101","nodeType":"YulIdentifier","src":"2602:3:101"},"nativeSrc":"2602:31:101","nodeType":"YulFunctionCall","src":"2602:31:101"},{"kind":"number","nativeSrc":"2635:2:101","nodeType":"YulLiteral","src":"2635:2:101","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"2598:3:101","nodeType":"YulIdentifier","src":"2598:3:101"},"nativeSrc":"2598:40:101","nodeType":"YulFunctionCall","src":"2598:40:101"},{"arguments":[{"kind":"number","nativeSrc":"2644:2:101","nodeType":"YulLiteral","src":"2644:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"2640:3:101","nodeType":"YulIdentifier","src":"2640:3:101"},"nativeSrc":"2640:7:101","nodeType":"YulFunctionCall","src":"2640:7:101"}],"functionName":{"name":"and","nativeSrc":"2594:3:101","nodeType":"YulIdentifier","src":"2594:3:101"},"nativeSrc":"2594:54:101","nodeType":"YulFunctionCall","src":"2594:54:101"}],"functionName":{"name":"add","nativeSrc":"2582:3:101","nodeType":"YulIdentifier","src":"2582:3:101"},"nativeSrc":"2582:67:101","nodeType":"YulFunctionCall","src":"2582:67:101"},"variables":[{"name":"newFreePtr","nativeSrc":"2568:10:101","nodeType":"YulTypedName","src":"2568:10:101","type":""}]},{"body":{"nativeSrc":"2724:22:101","nodeType":"YulBlock","src":"2724:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2726:16:101","nodeType":"YulIdentifier","src":"2726:16:101"},"nativeSrc":"2726:18:101","nodeType":"YulFunctionCall","src":"2726:18:101"},"nativeSrc":"2726:18:101","nodeType":"YulExpressionStatement","src":"2726:18:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"2667:10:101","nodeType":"YulIdentifier","src":"2667:10:101"},{"kind":"number","nativeSrc":"2679:18:101","nodeType":"YulLiteral","src":"2679:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2664:2:101","nodeType":"YulIdentifier","src":"2664:2:101"},"nativeSrc":"2664:34:101","nodeType":"YulFunctionCall","src":"2664:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"2703:10:101","nodeType":"YulIdentifier","src":"2703:10:101"},{"name":"memPtr","nativeSrc":"2715:6:101","nodeType":"YulIdentifier","src":"2715:6:101"}],"functionName":{"name":"lt","nativeSrc":"2700:2:101","nodeType":"YulIdentifier","src":"2700:2:101"},"nativeSrc":"2700:22:101","nodeType":"YulFunctionCall","src":"2700:22:101"}],"functionName":{"name":"or","nativeSrc":"2661:2:101","nodeType":"YulIdentifier","src":"2661:2:101"},"nativeSrc":"2661:62:101","nodeType":"YulFunctionCall","src":"2661:62:101"},"nativeSrc":"2658:88:101","nodeType":"YulIf","src":"2658:88:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2762:2:101","nodeType":"YulLiteral","src":"2762:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"2766:10:101","nodeType":"YulIdentifier","src":"2766:10:101"}],"functionName":{"name":"mstore","nativeSrc":"2755:6:101","nodeType":"YulIdentifier","src":"2755:6:101"},"nativeSrc":"2755:22:101","nodeType":"YulFunctionCall","src":"2755:22:101"},"nativeSrc":"2755:22:101","nodeType":"YulExpressionStatement","src":"2755:22:101"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"2793:6:101","nodeType":"YulIdentifier","src":"2793:6:101"},{"name":"length","nativeSrc":"2801:6:101","nodeType":"YulIdentifier","src":"2801:6:101"}],"functionName":{"name":"mstore","nativeSrc":"2786:6:101","nodeType":"YulIdentifier","src":"2786:6:101"},"nativeSrc":"2786:22:101","nodeType":"YulFunctionCall","src":"2786:22:101"},"nativeSrc":"2786:22:101","nodeType":"YulExpressionStatement","src":"2786:22:101"},{"body":{"nativeSrc":"2858:16:101","nodeType":"YulBlock","src":"2858:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2867:1:101","nodeType":"YulLiteral","src":"2867:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"2870:1:101","nodeType":"YulLiteral","src":"2870:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2860:6:101","nodeType":"YulIdentifier","src":"2860:6:101"},"nativeSrc":"2860:12:101","nodeType":"YulFunctionCall","src":"2860:12:101"},"nativeSrc":"2860:12:101","nodeType":"YulExpressionStatement","src":"2860:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"2831:2:101","nodeType":"YulIdentifier","src":"2831:2:101"},{"name":"length","nativeSrc":"2835:6:101","nodeType":"YulIdentifier","src":"2835:6:101"}],"functionName":{"name":"add","nativeSrc":"2827:3:101","nodeType":"YulIdentifier","src":"2827:3:101"},"nativeSrc":"2827:15:101","nodeType":"YulFunctionCall","src":"2827:15:101"},{"kind":"number","nativeSrc":"2844:2:101","nodeType":"YulLiteral","src":"2844:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2823:3:101","nodeType":"YulIdentifier","src":"2823:3:101"},"nativeSrc":"2823:24:101","nodeType":"YulFunctionCall","src":"2823:24:101"},{"name":"dataEnd","nativeSrc":"2849:7:101","nodeType":"YulIdentifier","src":"2849:7:101"}],"functionName":{"name":"gt","nativeSrc":"2820:2:101","nodeType":"YulIdentifier","src":"2820:2:101"},"nativeSrc":"2820:37:101","nodeType":"YulFunctionCall","src":"2820:37:101"},"nativeSrc":"2817:57:101","nodeType":"YulIf","src":"2817:57:101"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"2900:6:101","nodeType":"YulIdentifier","src":"2900:6:101"},{"kind":"number","nativeSrc":"2908:2:101","nodeType":"YulLiteral","src":"2908:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2896:3:101","nodeType":"YulIdentifier","src":"2896:3:101"},"nativeSrc":"2896:15:101","nodeType":"YulFunctionCall","src":"2896:15:101"},{"arguments":[{"name":"_1","nativeSrc":"2917:2:101","nodeType":"YulIdentifier","src":"2917:2:101"},{"kind":"number","nativeSrc":"2921:2:101","nodeType":"YulLiteral","src":"2921:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2913:3:101","nodeType":"YulIdentifier","src":"2913:3:101"},"nativeSrc":"2913:11:101","nodeType":"YulFunctionCall","src":"2913:11:101"},{"name":"length","nativeSrc":"2926:6:101","nodeType":"YulIdentifier","src":"2926:6:101"}],"functionName":{"name":"calldatacopy","nativeSrc":"2883:12:101","nodeType":"YulIdentifier","src":"2883:12:101"},"nativeSrc":"2883:50:101","nodeType":"YulFunctionCall","src":"2883:50:101"},"nativeSrc":"2883:50:101","nodeType":"YulExpressionStatement","src":"2883:50:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"2957:6:101","nodeType":"YulIdentifier","src":"2957:6:101"},{"name":"length","nativeSrc":"2965:6:101","nodeType":"YulIdentifier","src":"2965:6:101"}],"functionName":{"name":"add","nativeSrc":"2953:3:101","nodeType":"YulIdentifier","src":"2953:3:101"},"nativeSrc":"2953:19:101","nodeType":"YulFunctionCall","src":"2953:19:101"},{"kind":"number","nativeSrc":"2974:2:101","nodeType":"YulLiteral","src":"2974:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2949:3:101","nodeType":"YulIdentifier","src":"2949:3:101"},"nativeSrc":"2949:28:101","nodeType":"YulFunctionCall","src":"2949:28:101"},{"kind":"number","nativeSrc":"2979:1:101","nodeType":"YulLiteral","src":"2979:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"2942:6:101","nodeType":"YulIdentifier","src":"2942:6:101"},"nativeSrc":"2942:39:101","nodeType":"YulFunctionCall","src":"2942:39:101"},"nativeSrc":"2942:39:101","nodeType":"YulExpressionStatement","src":"2942:39:101"},{"nativeSrc":"2990:16:101","nodeType":"YulAssignment","src":"2990:16:101","value":{"name":"memPtr","nativeSrc":"3000:6:101","nodeType":"YulIdentifier","src":"3000:6:101"},"variableNames":[{"name":"value1","nativeSrc":"2990:6:101","nodeType":"YulIdentifier","src":"2990:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr","nativeSrc":"1923:1089:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1977:9:101","nodeType":"YulTypedName","src":"1977:9:101","type":""},{"name":"dataEnd","nativeSrc":"1988:7:101","nodeType":"YulTypedName","src":"1988:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2000:6:101","nodeType":"YulTypedName","src":"2000:6:101","type":""},{"name":"value1","nativeSrc":"2008:6:101","nodeType":"YulTypedName","src":"2008:6:101","type":""}],"src":"1923:1089:101"},{"body":{"nativeSrc":"3118:76:101","nodeType":"YulBlock","src":"3118:76:101","statements":[{"nativeSrc":"3128:26:101","nodeType":"YulAssignment","src":"3128:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3140:9:101","nodeType":"YulIdentifier","src":"3140:9:101"},{"kind":"number","nativeSrc":"3151:2:101","nodeType":"YulLiteral","src":"3151:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3136:3:101","nodeType":"YulIdentifier","src":"3136:3:101"},"nativeSrc":"3136:18:101","nodeType":"YulFunctionCall","src":"3136:18:101"},"variableNames":[{"name":"tail","nativeSrc":"3128:4:101","nodeType":"YulIdentifier","src":"3128:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3170:9:101","nodeType":"YulIdentifier","src":"3170:9:101"},{"name":"value0","nativeSrc":"3181:6:101","nodeType":"YulIdentifier","src":"3181:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3163:6:101","nodeType":"YulIdentifier","src":"3163:6:101"},"nativeSrc":"3163:25:101","nodeType":"YulFunctionCall","src":"3163:25:101"},"nativeSrc":"3163:25:101","nodeType":"YulExpressionStatement","src":"3163:25:101"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"3017:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3087:9:101","nodeType":"YulTypedName","src":"3087:9:101","type":""},{"name":"value0","nativeSrc":"3098:6:101","nodeType":"YulTypedName","src":"3098:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3109:4:101","nodeType":"YulTypedName","src":"3109:4:101","type":""}],"src":"3017:177:101"},{"body":{"nativeSrc":"3300:76:101","nodeType":"YulBlock","src":"3300:76:101","statements":[{"nativeSrc":"3310:26:101","nodeType":"YulAssignment","src":"3310:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3322:9:101","nodeType":"YulIdentifier","src":"3322:9:101"},{"kind":"number","nativeSrc":"3333:2:101","nodeType":"YulLiteral","src":"3333:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3318:3:101","nodeType":"YulIdentifier","src":"3318:3:101"},"nativeSrc":"3318:18:101","nodeType":"YulFunctionCall","src":"3318:18:101"},"variableNames":[{"name":"tail","nativeSrc":"3310:4:101","nodeType":"YulIdentifier","src":"3310:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3352:9:101","nodeType":"YulIdentifier","src":"3352:9:101"},{"name":"value0","nativeSrc":"3363:6:101","nodeType":"YulIdentifier","src":"3363:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3345:6:101","nodeType":"YulIdentifier","src":"3345:6:101"},"nativeSrc":"3345:25:101","nodeType":"YulFunctionCall","src":"3345:25:101"},"nativeSrc":"3345:25:101","nodeType":"YulExpressionStatement","src":"3345:25:101"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"3199:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3269:9:101","nodeType":"YulTypedName","src":"3269:9:101","type":""},{"name":"value0","nativeSrc":"3280:6:101","nodeType":"YulTypedName","src":"3280:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3291:4:101","nodeType":"YulTypedName","src":"3291:4:101","type":""}],"src":"3199:177:101"},{"body":{"nativeSrc":"3499:102:101","nodeType":"YulBlock","src":"3499:102:101","statements":[{"nativeSrc":"3509:26:101","nodeType":"YulAssignment","src":"3509:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3521:9:101","nodeType":"YulIdentifier","src":"3521:9:101"},{"kind":"number","nativeSrc":"3532:2:101","nodeType":"YulLiteral","src":"3532:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3517:3:101","nodeType":"YulIdentifier","src":"3517:3:101"},"nativeSrc":"3517:18:101","nodeType":"YulFunctionCall","src":"3517:18:101"},"variableNames":[{"name":"tail","nativeSrc":"3509:4:101","nodeType":"YulIdentifier","src":"3509:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3551:9:101","nodeType":"YulIdentifier","src":"3551:9:101"},{"arguments":[{"name":"value0","nativeSrc":"3566:6:101","nodeType":"YulIdentifier","src":"3566:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3582:3:101","nodeType":"YulLiteral","src":"3582:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"3587:1:101","nodeType":"YulLiteral","src":"3587:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3578:3:101","nodeType":"YulIdentifier","src":"3578:3:101"},"nativeSrc":"3578:11:101","nodeType":"YulFunctionCall","src":"3578:11:101"},{"kind":"number","nativeSrc":"3591:1:101","nodeType":"YulLiteral","src":"3591:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3574:3:101","nodeType":"YulIdentifier","src":"3574:3:101"},"nativeSrc":"3574:19:101","nodeType":"YulFunctionCall","src":"3574:19:101"}],"functionName":{"name":"and","nativeSrc":"3562:3:101","nodeType":"YulIdentifier","src":"3562:3:101"},"nativeSrc":"3562:32:101","nodeType":"YulFunctionCall","src":"3562:32:101"}],"functionName":{"name":"mstore","nativeSrc":"3544:6:101","nodeType":"YulIdentifier","src":"3544:6:101"},"nativeSrc":"3544:51:101","nodeType":"YulFunctionCall","src":"3544:51:101"},"nativeSrc":"3544:51:101","nodeType":"YulExpressionStatement","src":"3544:51:101"}]},"name":"abi_encode_tuple_t_contract$_IERC4626_$6400__to_t_address__fromStack_reversed","nativeSrc":"3381:220:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3468:9:101","nodeType":"YulTypedName","src":"3468:9:101","type":""},{"name":"value0","nativeSrc":"3479:6:101","nodeType":"YulTypedName","src":"3479:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3490:4:101","nodeType":"YulTypedName","src":"3490:4:101","type":""}],"src":"3381:220:101"},{"body":{"nativeSrc":"3676:156:101","nodeType":"YulBlock","src":"3676:156:101","statements":[{"body":{"nativeSrc":"3722:16:101","nodeType":"YulBlock","src":"3722:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3731:1:101","nodeType":"YulLiteral","src":"3731:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"3734:1:101","nodeType":"YulLiteral","src":"3734:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3724:6:101","nodeType":"YulIdentifier","src":"3724:6:101"},"nativeSrc":"3724:12:101","nodeType":"YulFunctionCall","src":"3724:12:101"},"nativeSrc":"3724:12:101","nodeType":"YulExpressionStatement","src":"3724:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3697:7:101","nodeType":"YulIdentifier","src":"3697:7:101"},{"name":"headStart","nativeSrc":"3706:9:101","nodeType":"YulIdentifier","src":"3706:9:101"}],"functionName":{"name":"sub","nativeSrc":"3693:3:101","nodeType":"YulIdentifier","src":"3693:3:101"},"nativeSrc":"3693:23:101","nodeType":"YulFunctionCall","src":"3693:23:101"},{"kind":"number","nativeSrc":"3718:2:101","nodeType":"YulLiteral","src":"3718:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"3689:3:101","nodeType":"YulIdentifier","src":"3689:3:101"},"nativeSrc":"3689:32:101","nodeType":"YulFunctionCall","src":"3689:32:101"},"nativeSrc":"3686:52:101","nodeType":"YulIf","src":"3686:52:101"},{"nativeSrc":"3747:14:101","nodeType":"YulVariableDeclaration","src":"3747:14:101","value":{"kind":"number","nativeSrc":"3760:1:101","nodeType":"YulLiteral","src":"3760:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3751:5:101","nodeType":"YulTypedName","src":"3751:5:101","type":""}]},{"nativeSrc":"3770:32:101","nodeType":"YulAssignment","src":"3770:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3792:9:101","nodeType":"YulIdentifier","src":"3792:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"3779:12:101","nodeType":"YulIdentifier","src":"3779:12:101"},"nativeSrc":"3779:23:101","nodeType":"YulFunctionCall","src":"3779:23:101"},"variableNames":[{"name":"value","nativeSrc":"3770:5:101","nodeType":"YulIdentifier","src":"3770:5:101"}]},{"nativeSrc":"3811:15:101","nodeType":"YulAssignment","src":"3811:15:101","value":{"name":"value","nativeSrc":"3821:5:101","nodeType":"YulIdentifier","src":"3821:5:101"},"variableNames":[{"name":"value0","nativeSrc":"3811:6:101","nodeType":"YulIdentifier","src":"3811:6:101"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"3606:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3642:9:101","nodeType":"YulTypedName","src":"3642:9:101","type":""},{"name":"dataEnd","nativeSrc":"3653:7:101","nodeType":"YulTypedName","src":"3653:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3665:6:101","nodeType":"YulTypedName","src":"3665:6:101","type":""}],"src":"3606:226:101"},{"body":{"nativeSrc":"3958:297:101","nodeType":"YulBlock","src":"3958:297:101","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3975:9:101","nodeType":"YulIdentifier","src":"3975:9:101"},{"kind":"number","nativeSrc":"3986:2:101","nodeType":"YulLiteral","src":"3986:2:101","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"3968:6:101","nodeType":"YulIdentifier","src":"3968:6:101"},"nativeSrc":"3968:21:101","nodeType":"YulFunctionCall","src":"3968:21:101"},"nativeSrc":"3968:21:101","nodeType":"YulExpressionStatement","src":"3968:21:101"},{"nativeSrc":"3998:27:101","nodeType":"YulVariableDeclaration","src":"3998:27:101","value":{"arguments":[{"name":"value0","nativeSrc":"4018:6:101","nodeType":"YulIdentifier","src":"4018:6:101"}],"functionName":{"name":"mload","nativeSrc":"4012:5:101","nodeType":"YulIdentifier","src":"4012:5:101"},"nativeSrc":"4012:13:101","nodeType":"YulFunctionCall","src":"4012:13:101"},"variables":[{"name":"length","nativeSrc":"4002:6:101","nodeType":"YulTypedName","src":"4002:6:101","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4045:9:101","nodeType":"YulIdentifier","src":"4045:9:101"},{"kind":"number","nativeSrc":"4056:2:101","nodeType":"YulLiteral","src":"4056:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4041:3:101","nodeType":"YulIdentifier","src":"4041:3:101"},"nativeSrc":"4041:18:101","nodeType":"YulFunctionCall","src":"4041:18:101"},{"name":"length","nativeSrc":"4061:6:101","nodeType":"YulIdentifier","src":"4061:6:101"}],"functionName":{"name":"mstore","nativeSrc":"4034:6:101","nodeType":"YulIdentifier","src":"4034:6:101"},"nativeSrc":"4034:34:101","nodeType":"YulFunctionCall","src":"4034:34:101"},"nativeSrc":"4034:34:101","nodeType":"YulExpressionStatement","src":"4034:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4087:9:101","nodeType":"YulIdentifier","src":"4087:9:101"},{"kind":"number","nativeSrc":"4098:2:101","nodeType":"YulLiteral","src":"4098:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4083:3:101","nodeType":"YulIdentifier","src":"4083:3:101"},"nativeSrc":"4083:18:101","nodeType":"YulFunctionCall","src":"4083:18:101"},{"arguments":[{"name":"value0","nativeSrc":"4107:6:101","nodeType":"YulIdentifier","src":"4107:6:101"},{"kind":"number","nativeSrc":"4115:2:101","nodeType":"YulLiteral","src":"4115:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4103:3:101","nodeType":"YulIdentifier","src":"4103:3:101"},"nativeSrc":"4103:15:101","nodeType":"YulFunctionCall","src":"4103:15:101"},{"name":"length","nativeSrc":"4120:6:101","nodeType":"YulIdentifier","src":"4120:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"4077:5:101","nodeType":"YulIdentifier","src":"4077:5:101"},"nativeSrc":"4077:50:101","nodeType":"YulFunctionCall","src":"4077:50:101"},"nativeSrc":"4077:50:101","nodeType":"YulExpressionStatement","src":"4077:50:101"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4151:9:101","nodeType":"YulIdentifier","src":"4151:9:101"},{"name":"length","nativeSrc":"4162:6:101","nodeType":"YulIdentifier","src":"4162:6:101"}],"functionName":{"name":"add","nativeSrc":"4147:3:101","nodeType":"YulIdentifier","src":"4147:3:101"},"nativeSrc":"4147:22:101","nodeType":"YulFunctionCall","src":"4147:22:101"},{"kind":"number","nativeSrc":"4171:2:101","nodeType":"YulLiteral","src":"4171:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4143:3:101","nodeType":"YulIdentifier","src":"4143:3:101"},"nativeSrc":"4143:31:101","nodeType":"YulFunctionCall","src":"4143:31:101"},{"kind":"number","nativeSrc":"4176:1:101","nodeType":"YulLiteral","src":"4176:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"4136:6:101","nodeType":"YulIdentifier","src":"4136:6:101"},"nativeSrc":"4136:42:101","nodeType":"YulFunctionCall","src":"4136:42:101"},"nativeSrc":"4136:42:101","nodeType":"YulExpressionStatement","src":"4136:42:101"},{"nativeSrc":"4187:62:101","nodeType":"YulAssignment","src":"4187:62:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4203:9:101","nodeType":"YulIdentifier","src":"4203:9:101"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"4222:6:101","nodeType":"YulIdentifier","src":"4222:6:101"},{"kind":"number","nativeSrc":"4230:2:101","nodeType":"YulLiteral","src":"4230:2:101","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"4218:3:101","nodeType":"YulIdentifier","src":"4218:3:101"},"nativeSrc":"4218:15:101","nodeType":"YulFunctionCall","src":"4218:15:101"},{"arguments":[{"kind":"number","nativeSrc":"4239:2:101","nodeType":"YulLiteral","src":"4239:2:101","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"4235:3:101","nodeType":"YulIdentifier","src":"4235:3:101"},"nativeSrc":"4235:7:101","nodeType":"YulFunctionCall","src":"4235:7:101"}],"functionName":{"name":"and","nativeSrc":"4214:3:101","nodeType":"YulIdentifier","src":"4214:3:101"},"nativeSrc":"4214:29:101","nodeType":"YulFunctionCall","src":"4214:29:101"}],"functionName":{"name":"add","nativeSrc":"4199:3:101","nodeType":"YulIdentifier","src":"4199:3:101"},"nativeSrc":"4199:45:101","nodeType":"YulFunctionCall","src":"4199:45:101"},{"kind":"number","nativeSrc":"4246:2:101","nodeType":"YulLiteral","src":"4246:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4195:3:101","nodeType":"YulIdentifier","src":"4195:3:101"},"nativeSrc":"4195:54:101","nodeType":"YulFunctionCall","src":"4195:54:101"},"variableNames":[{"name":"tail","nativeSrc":"4187:4:101","nodeType":"YulIdentifier","src":"4187:4:101"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"3837:418:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3927:9:101","nodeType":"YulTypedName","src":"3927:9:101","type":""},{"name":"value0","nativeSrc":"3938:6:101","nodeType":"YulTypedName","src":"3938:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3949:4:101","nodeType":"YulTypedName","src":"3949:4:101","type":""}],"src":"3837:418:101"},{"body":{"nativeSrc":"4384:102:101","nodeType":"YulBlock","src":"4384:102:101","statements":[{"nativeSrc":"4394:26:101","nodeType":"YulAssignment","src":"4394:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4406:9:101","nodeType":"YulIdentifier","src":"4406:9:101"},{"kind":"number","nativeSrc":"4417:2:101","nodeType":"YulLiteral","src":"4417:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4402:3:101","nodeType":"YulIdentifier","src":"4402:3:101"},"nativeSrc":"4402:18:101","nodeType":"YulFunctionCall","src":"4402:18:101"},"variableNames":[{"name":"tail","nativeSrc":"4394:4:101","nodeType":"YulIdentifier","src":"4394:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4436:9:101","nodeType":"YulIdentifier","src":"4436:9:101"},{"arguments":[{"name":"value0","nativeSrc":"4451:6:101","nodeType":"YulIdentifier","src":"4451:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4467:3:101","nodeType":"YulLiteral","src":"4467:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"4472:1:101","nodeType":"YulLiteral","src":"4472:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4463:3:101","nodeType":"YulIdentifier","src":"4463:3:101"},"nativeSrc":"4463:11:101","nodeType":"YulFunctionCall","src":"4463:11:101"},{"kind":"number","nativeSrc":"4476:1:101","nodeType":"YulLiteral","src":"4476:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4459:3:101","nodeType":"YulIdentifier","src":"4459:3:101"},"nativeSrc":"4459:19:101","nodeType":"YulFunctionCall","src":"4459:19:101"}],"functionName":{"name":"and","nativeSrc":"4447:3:101","nodeType":"YulIdentifier","src":"4447:3:101"},"nativeSrc":"4447:32:101","nodeType":"YulFunctionCall","src":"4447:32:101"}],"functionName":{"name":"mstore","nativeSrc":"4429:6:101","nodeType":"YulIdentifier","src":"4429:6:101"},"nativeSrc":"4429:51:101","nodeType":"YulFunctionCall","src":"4429:51:101"},"nativeSrc":"4429:51:101","nodeType":"YulExpressionStatement","src":"4429:51:101"}]},"name":"abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed","nativeSrc":"4260:226:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4353:9:101","nodeType":"YulTypedName","src":"4353:9:101","type":""},{"name":"value0","nativeSrc":"4364:6:101","nodeType":"YulTypedName","src":"4364:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4375:4:101","nodeType":"YulTypedName","src":"4375:4:101","type":""}],"src":"4260:226:101"},{"body":{"nativeSrc":"4572:180:101","nodeType":"YulBlock","src":"4572:180:101","statements":[{"body":{"nativeSrc":"4618:16:101","nodeType":"YulBlock","src":"4618:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4627:1:101","nodeType":"YulLiteral","src":"4627:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4630:1:101","nodeType":"YulLiteral","src":"4630:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4620:6:101","nodeType":"YulIdentifier","src":"4620:6:101"},"nativeSrc":"4620:12:101","nodeType":"YulFunctionCall","src":"4620:12:101"},"nativeSrc":"4620:12:101","nodeType":"YulExpressionStatement","src":"4620:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4593:7:101","nodeType":"YulIdentifier","src":"4593:7:101"},{"name":"headStart","nativeSrc":"4602:9:101","nodeType":"YulIdentifier","src":"4602:9:101"}],"functionName":{"name":"sub","nativeSrc":"4589:3:101","nodeType":"YulIdentifier","src":"4589:3:101"},"nativeSrc":"4589:23:101","nodeType":"YulFunctionCall","src":"4589:23:101"},{"kind":"number","nativeSrc":"4614:2:101","nodeType":"YulLiteral","src":"4614:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"4585:3:101","nodeType":"YulIdentifier","src":"4585:3:101"},"nativeSrc":"4585:32:101","nodeType":"YulFunctionCall","src":"4585:32:101"},"nativeSrc":"4582:52:101","nodeType":"YulIf","src":"4582:52:101"},{"nativeSrc":"4643:29:101","nodeType":"YulVariableDeclaration","src":"4643:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4662:9:101","nodeType":"YulIdentifier","src":"4662:9:101"}],"functionName":{"name":"mload","nativeSrc":"4656:5:101","nodeType":"YulIdentifier","src":"4656:5:101"},"nativeSrc":"4656:16:101","nodeType":"YulFunctionCall","src":"4656:16:101"},"variables":[{"name":"value","nativeSrc":"4647:5:101","nodeType":"YulTypedName","src":"4647:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4716:5:101","nodeType":"YulIdentifier","src":"4716:5:101"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"4681:34:101","nodeType":"YulIdentifier","src":"4681:34:101"},"nativeSrc":"4681:41:101","nodeType":"YulFunctionCall","src":"4681:41:101"},"nativeSrc":"4681:41:101","nodeType":"YulExpressionStatement","src":"4681:41:101"},{"nativeSrc":"4731:15:101","nodeType":"YulAssignment","src":"4731:15:101","value":{"name":"value","nativeSrc":"4741:5:101","nodeType":"YulIdentifier","src":"4741:5:101"},"variableNames":[{"name":"value0","nativeSrc":"4731:6:101","nodeType":"YulIdentifier","src":"4731:6:101"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"4491:261:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4538:9:101","nodeType":"YulTypedName","src":"4538:9:101","type":""},{"name":"dataEnd","nativeSrc":"4549:7:101","nodeType":"YulTypedName","src":"4549:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4561:6:101","nodeType":"YulTypedName","src":"4561:6:101","type":""}],"src":"4491:261:101"},{"body":{"nativeSrc":"4858:102:101","nodeType":"YulBlock","src":"4858:102:101","statements":[{"nativeSrc":"4868:26:101","nodeType":"YulAssignment","src":"4868:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4880:9:101","nodeType":"YulIdentifier","src":"4880:9:101"},{"kind":"number","nativeSrc":"4891:2:101","nodeType":"YulLiteral","src":"4891:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4876:3:101","nodeType":"YulIdentifier","src":"4876:3:101"},"nativeSrc":"4876:18:101","nodeType":"YulFunctionCall","src":"4876:18:101"},"variableNames":[{"name":"tail","nativeSrc":"4868:4:101","nodeType":"YulIdentifier","src":"4868:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4910:9:101","nodeType":"YulIdentifier","src":"4910:9:101"},{"arguments":[{"name":"value0","nativeSrc":"4925:6:101","nodeType":"YulIdentifier","src":"4925:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4941:3:101","nodeType":"YulLiteral","src":"4941:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"4946:1:101","nodeType":"YulLiteral","src":"4946:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4937:3:101","nodeType":"YulIdentifier","src":"4937:3:101"},"nativeSrc":"4937:11:101","nodeType":"YulFunctionCall","src":"4937:11:101"},{"kind":"number","nativeSrc":"4950:1:101","nodeType":"YulLiteral","src":"4950:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4933:3:101","nodeType":"YulIdentifier","src":"4933:3:101"},"nativeSrc":"4933:19:101","nodeType":"YulFunctionCall","src":"4933:19:101"}],"functionName":{"name":"and","nativeSrc":"4921:3:101","nodeType":"YulIdentifier","src":"4921:3:101"},"nativeSrc":"4921:32:101","nodeType":"YulFunctionCall","src":"4921:32:101"}],"functionName":{"name":"mstore","nativeSrc":"4903:6:101","nodeType":"YulIdentifier","src":"4903:6:101"},"nativeSrc":"4903:51:101","nodeType":"YulFunctionCall","src":"4903:51:101"},"nativeSrc":"4903:51:101","nodeType":"YulExpressionStatement","src":"4903:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"4757:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4827:9:101","nodeType":"YulTypedName","src":"4827:9:101","type":""},{"name":"value0","nativeSrc":"4838:6:101","nodeType":"YulTypedName","src":"4838:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4849:4:101","nodeType":"YulTypedName","src":"4849:4:101","type":""}],"src":"4757:203:101"},{"body":{"nativeSrc":"5046:103:101","nodeType":"YulBlock","src":"5046:103:101","statements":[{"body":{"nativeSrc":"5092:16:101","nodeType":"YulBlock","src":"5092:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5101:1:101","nodeType":"YulLiteral","src":"5101:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5104:1:101","nodeType":"YulLiteral","src":"5104:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5094:6:101","nodeType":"YulIdentifier","src":"5094:6:101"},"nativeSrc":"5094:12:101","nodeType":"YulFunctionCall","src":"5094:12:101"},"nativeSrc":"5094:12:101","nodeType":"YulExpressionStatement","src":"5094:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5067:7:101","nodeType":"YulIdentifier","src":"5067:7:101"},{"name":"headStart","nativeSrc":"5076:9:101","nodeType":"YulIdentifier","src":"5076:9:101"}],"functionName":{"name":"sub","nativeSrc":"5063:3:101","nodeType":"YulIdentifier","src":"5063:3:101"},"nativeSrc":"5063:23:101","nodeType":"YulFunctionCall","src":"5063:23:101"},{"kind":"number","nativeSrc":"5088:2:101","nodeType":"YulLiteral","src":"5088:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5059:3:101","nodeType":"YulIdentifier","src":"5059:3:101"},"nativeSrc":"5059:32:101","nodeType":"YulFunctionCall","src":"5059:32:101"},"nativeSrc":"5056:52:101","nodeType":"YulIf","src":"5056:52:101"},{"nativeSrc":"5117:26:101","nodeType":"YulAssignment","src":"5117:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5133:9:101","nodeType":"YulIdentifier","src":"5133:9:101"}],"functionName":{"name":"mload","nativeSrc":"5127:5:101","nodeType":"YulIdentifier","src":"5127:5:101"},"nativeSrc":"5127:16:101","nodeType":"YulFunctionCall","src":"5127:16:101"},"variableNames":[{"name":"value0","nativeSrc":"5117:6:101","nodeType":"YulIdentifier","src":"5117:6:101"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"4965:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5012:9:101","nodeType":"YulTypedName","src":"5012:9:101","type":""},{"name":"dataEnd","nativeSrc":"5023:7:101","nodeType":"YulTypedName","src":"5023:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5035:6:101","nodeType":"YulTypedName","src":"5035:6:101","type":""}],"src":"4965:184:101"},{"body":{"nativeSrc":"5311:214:101","nodeType":"YulBlock","src":"5311:214:101","statements":[{"nativeSrc":"5321:26:101","nodeType":"YulAssignment","src":"5321:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5333:9:101","nodeType":"YulIdentifier","src":"5333:9:101"},{"kind":"number","nativeSrc":"5344:2:101","nodeType":"YulLiteral","src":"5344:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5329:3:101","nodeType":"YulIdentifier","src":"5329:3:101"},"nativeSrc":"5329:18:101","nodeType":"YulFunctionCall","src":"5329:18:101"},"variableNames":[{"name":"tail","nativeSrc":"5321:4:101","nodeType":"YulIdentifier","src":"5321:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5363:9:101","nodeType":"YulIdentifier","src":"5363:9:101"},{"name":"value0","nativeSrc":"5374:6:101","nodeType":"YulIdentifier","src":"5374:6:101"}],"functionName":{"name":"mstore","nativeSrc":"5356:6:101","nodeType":"YulIdentifier","src":"5356:6:101"},"nativeSrc":"5356:25:101","nodeType":"YulFunctionCall","src":"5356:25:101"},"nativeSrc":"5356:25:101","nodeType":"YulExpressionStatement","src":"5356:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5401:9:101","nodeType":"YulIdentifier","src":"5401:9:101"},{"kind":"number","nativeSrc":"5412:2:101","nodeType":"YulLiteral","src":"5412:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5397:3:101","nodeType":"YulIdentifier","src":"5397:3:101"},"nativeSrc":"5397:18:101","nodeType":"YulFunctionCall","src":"5397:18:101"},{"arguments":[{"name":"value1","nativeSrc":"5421:6:101","nodeType":"YulIdentifier","src":"5421:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5437:3:101","nodeType":"YulLiteral","src":"5437:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"5442:1:101","nodeType":"YulLiteral","src":"5442:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5433:3:101","nodeType":"YulIdentifier","src":"5433:3:101"},"nativeSrc":"5433:11:101","nodeType":"YulFunctionCall","src":"5433:11:101"},{"kind":"number","nativeSrc":"5446:1:101","nodeType":"YulLiteral","src":"5446:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5429:3:101","nodeType":"YulIdentifier","src":"5429:3:101"},"nativeSrc":"5429:19:101","nodeType":"YulFunctionCall","src":"5429:19:101"}],"functionName":{"name":"and","nativeSrc":"5417:3:101","nodeType":"YulIdentifier","src":"5417:3:101"},"nativeSrc":"5417:32:101","nodeType":"YulFunctionCall","src":"5417:32:101"}],"functionName":{"name":"mstore","nativeSrc":"5390:6:101","nodeType":"YulIdentifier","src":"5390:6:101"},"nativeSrc":"5390:60:101","nodeType":"YulFunctionCall","src":"5390:60:101"},"nativeSrc":"5390:60:101","nodeType":"YulExpressionStatement","src":"5390:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5470:9:101","nodeType":"YulIdentifier","src":"5470:9:101"},{"kind":"number","nativeSrc":"5481:2:101","nodeType":"YulLiteral","src":"5481:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5466:3:101","nodeType":"YulIdentifier","src":"5466:3:101"},"nativeSrc":"5466:18:101","nodeType":"YulFunctionCall","src":"5466:18:101"},{"arguments":[{"name":"value2","nativeSrc":"5490:6:101","nodeType":"YulIdentifier","src":"5490:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5506:3:101","nodeType":"YulLiteral","src":"5506:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"5511:1:101","nodeType":"YulLiteral","src":"5511:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5502:3:101","nodeType":"YulIdentifier","src":"5502:3:101"},"nativeSrc":"5502:11:101","nodeType":"YulFunctionCall","src":"5502:11:101"},{"kind":"number","nativeSrc":"5515:1:101","nodeType":"YulLiteral","src":"5515:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5498:3:101","nodeType":"YulIdentifier","src":"5498:3:101"},"nativeSrc":"5498:19:101","nodeType":"YulFunctionCall","src":"5498:19:101"}],"functionName":{"name":"and","nativeSrc":"5486:3:101","nodeType":"YulIdentifier","src":"5486:3:101"},"nativeSrc":"5486:32:101","nodeType":"YulFunctionCall","src":"5486:32:101"}],"functionName":{"name":"mstore","nativeSrc":"5459:6:101","nodeType":"YulIdentifier","src":"5459:6:101"},"nativeSrc":"5459:60:101","nodeType":"YulFunctionCall","src":"5459:60:101"},"nativeSrc":"5459:60:101","nodeType":"YulExpressionStatement","src":"5459:60:101"}]},"name":"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed","nativeSrc":"5154:371:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5264:9:101","nodeType":"YulTypedName","src":"5264:9:101","type":""},{"name":"value2","nativeSrc":"5275:6:101","nodeType":"YulTypedName","src":"5275:6:101","type":""},{"name":"value1","nativeSrc":"5283:6:101","nodeType":"YulTypedName","src":"5283:6:101","type":""},{"name":"value0","nativeSrc":"5291:6:101","nodeType":"YulTypedName","src":"5291:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5302:4:101","nodeType":"YulTypedName","src":"5302:4:101","type":""}],"src":"5154:371:101"},{"body":{"nativeSrc":"5562:95:101","nodeType":"YulBlock","src":"5562:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5579:1:101","nodeType":"YulLiteral","src":"5579:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5586:3:101","nodeType":"YulLiteral","src":"5586:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"5591:10:101","nodeType":"YulLiteral","src":"5591:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5582:3:101","nodeType":"YulIdentifier","src":"5582:3:101"},"nativeSrc":"5582:20:101","nodeType":"YulFunctionCall","src":"5582:20:101"}],"functionName":{"name":"mstore","nativeSrc":"5572:6:101","nodeType":"YulIdentifier","src":"5572:6:101"},"nativeSrc":"5572:31:101","nodeType":"YulFunctionCall","src":"5572:31:101"},"nativeSrc":"5572:31:101","nodeType":"YulExpressionStatement","src":"5572:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5619:1:101","nodeType":"YulLiteral","src":"5619:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"5622:4:101","nodeType":"YulLiteral","src":"5622:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"5612:6:101","nodeType":"YulIdentifier","src":"5612:6:101"},"nativeSrc":"5612:15:101","nodeType":"YulFunctionCall","src":"5612:15:101"},"nativeSrc":"5612:15:101","nodeType":"YulExpressionStatement","src":"5612:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5643:1:101","nodeType":"YulLiteral","src":"5643:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5646:4:101","nodeType":"YulLiteral","src":"5646:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5636:6:101","nodeType":"YulIdentifier","src":"5636:6:101"},"nativeSrc":"5636:15:101","nodeType":"YulFunctionCall","src":"5636:15:101"},"nativeSrc":"5636:15:101","nodeType":"YulExpressionStatement","src":"5636:15:101"}]},"name":"panic_error_0x11","nativeSrc":"5530:127:101","nodeType":"YulFunctionDefinition","src":"5530:127:101"},{"body":{"nativeSrc":"5710:152:101","nodeType":"YulBlock","src":"5710:152:101","statements":[{"nativeSrc":"5720:17:101","nodeType":"YulAssignment","src":"5720:17:101","value":{"arguments":[{"name":"x","nativeSrc":"5732:1:101","nodeType":"YulIdentifier","src":"5732:1:101"},{"name":"y","nativeSrc":"5735:1:101","nodeType":"YulIdentifier","src":"5735:1:101"}],"functionName":{"name":"sub","nativeSrc":"5728:3:101","nodeType":"YulIdentifier","src":"5728:3:101"},"nativeSrc":"5728:9:101","nodeType":"YulFunctionCall","src":"5728:9:101"},"variableNames":[{"name":"diff","nativeSrc":"5720:4:101","nodeType":"YulIdentifier","src":"5720:4:101"}]},{"nativeSrc":"5746:19:101","nodeType":"YulVariableDeclaration","src":"5746:19:101","value":{"arguments":[{"name":"y","nativeSrc":"5760:1:101","nodeType":"YulIdentifier","src":"5760:1:101"},{"kind":"number","nativeSrc":"5763:1:101","nodeType":"YulLiteral","src":"5763:1:101","type":"","value":"0"}],"functionName":{"name":"slt","nativeSrc":"5756:3:101","nodeType":"YulIdentifier","src":"5756:3:101"},"nativeSrc":"5756:9:101","nodeType":"YulFunctionCall","src":"5756:9:101"},"variables":[{"name":"_1","nativeSrc":"5750:2:101","nodeType":"YulTypedName","src":"5750:2:101","type":""}]},{"body":{"nativeSrc":"5834:22:101","nodeType":"YulBlock","src":"5834:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"5836:16:101","nodeType":"YulIdentifier","src":"5836:16:101"},"nativeSrc":"5836:18:101","nodeType":"YulFunctionCall","src":"5836:18:101"},"nativeSrc":"5836:18:101","nodeType":"YulExpressionStatement","src":"5836:18:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"5791:2:101","nodeType":"YulIdentifier","src":"5791:2:101"}],"functionName":{"name":"iszero","nativeSrc":"5784:6:101","nodeType":"YulIdentifier","src":"5784:6:101"},"nativeSrc":"5784:10:101","nodeType":"YulFunctionCall","src":"5784:10:101"},{"arguments":[{"name":"diff","nativeSrc":"5800:4:101","nodeType":"YulIdentifier","src":"5800:4:101"},{"name":"x","nativeSrc":"5806:1:101","nodeType":"YulIdentifier","src":"5806:1:101"}],"functionName":{"name":"sgt","nativeSrc":"5796:3:101","nodeType":"YulIdentifier","src":"5796:3:101"},"nativeSrc":"5796:12:101","nodeType":"YulFunctionCall","src":"5796:12:101"}],"functionName":{"name":"and","nativeSrc":"5780:3:101","nodeType":"YulIdentifier","src":"5780:3:101"},"nativeSrc":"5780:29:101","nodeType":"YulFunctionCall","src":"5780:29:101"},{"arguments":[{"name":"_1","nativeSrc":"5815:2:101","nodeType":"YulIdentifier","src":"5815:2:101"},{"arguments":[{"name":"diff","nativeSrc":"5823:4:101","nodeType":"YulIdentifier","src":"5823:4:101"},{"name":"x","nativeSrc":"5829:1:101","nodeType":"YulIdentifier","src":"5829:1:101"}],"functionName":{"name":"slt","nativeSrc":"5819:3:101","nodeType":"YulIdentifier","src":"5819:3:101"},"nativeSrc":"5819:12:101","nodeType":"YulFunctionCall","src":"5819:12:101"}],"functionName":{"name":"and","nativeSrc":"5811:3:101","nodeType":"YulIdentifier","src":"5811:3:101"},"nativeSrc":"5811:21:101","nodeType":"YulFunctionCall","src":"5811:21:101"}],"functionName":{"name":"or","nativeSrc":"5777:2:101","nodeType":"YulIdentifier","src":"5777:2:101"},"nativeSrc":"5777:56:101","nodeType":"YulFunctionCall","src":"5777:56:101"},"nativeSrc":"5774:82:101","nodeType":"YulIf","src":"5774:82:101"}]},"name":"checked_sub_t_int256","nativeSrc":"5662:200:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"5692:1:101","nodeType":"YulTypedName","src":"5692:1:101","type":""},{"name":"y","nativeSrc":"5695:1:101","nodeType":"YulTypedName","src":"5695:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"5701:4:101","nodeType":"YulTypedName","src":"5701:4:101","type":""}],"src":"5662:200:101"},{"body":{"nativeSrc":"5975:101:101","nodeType":"YulBlock","src":"5975:101:101","statements":[{"nativeSrc":"5985:26:101","nodeType":"YulAssignment","src":"5985:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5997:9:101","nodeType":"YulIdentifier","src":"5997:9:101"},{"kind":"number","nativeSrc":"6008:2:101","nodeType":"YulLiteral","src":"6008:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5993:3:101","nodeType":"YulIdentifier","src":"5993:3:101"},"nativeSrc":"5993:18:101","nodeType":"YulFunctionCall","src":"5993:18:101"},"variableNames":[{"name":"tail","nativeSrc":"5985:4:101","nodeType":"YulIdentifier","src":"5985:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6027:9:101","nodeType":"YulIdentifier","src":"6027:9:101"},{"arguments":[{"name":"value0","nativeSrc":"6042:6:101","nodeType":"YulIdentifier","src":"6042:6:101"},{"kind":"number","nativeSrc":"6050:18:101","nodeType":"YulLiteral","src":"6050:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"6038:3:101","nodeType":"YulIdentifier","src":"6038:3:101"},"nativeSrc":"6038:31:101","nodeType":"YulFunctionCall","src":"6038:31:101"}],"functionName":{"name":"mstore","nativeSrc":"6020:6:101","nodeType":"YulIdentifier","src":"6020:6:101"},"nativeSrc":"6020:50:101","nodeType":"YulFunctionCall","src":"6020:50:101"},"nativeSrc":"6020:50:101","nodeType":"YulExpressionStatement","src":"6020:50:101"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nativeSrc":"5867:209:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5944:9:101","nodeType":"YulTypedName","src":"5944:9:101","type":""},{"name":"value0","nativeSrc":"5955:6:101","nodeType":"YulTypedName","src":"5955:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5966:4:101","nodeType":"YulTypedName","src":"5966:4:101","type":""}],"src":"5867:209:101"},{"body":{"nativeSrc":"6210:119:101","nodeType":"YulBlock","src":"6210:119:101","statements":[{"nativeSrc":"6220:26:101","nodeType":"YulAssignment","src":"6220:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6232:9:101","nodeType":"YulIdentifier","src":"6232:9:101"},{"kind":"number","nativeSrc":"6243:2:101","nodeType":"YulLiteral","src":"6243:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6228:3:101","nodeType":"YulIdentifier","src":"6228:3:101"},"nativeSrc":"6228:18:101","nodeType":"YulFunctionCall","src":"6228:18:101"},"variableNames":[{"name":"tail","nativeSrc":"6220:4:101","nodeType":"YulIdentifier","src":"6220:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6262:9:101","nodeType":"YulIdentifier","src":"6262:9:101"},{"name":"value0","nativeSrc":"6273:6:101","nodeType":"YulIdentifier","src":"6273:6:101"}],"functionName":{"name":"mstore","nativeSrc":"6255:6:101","nodeType":"YulIdentifier","src":"6255:6:101"},"nativeSrc":"6255:25:101","nodeType":"YulFunctionCall","src":"6255:25:101"},"nativeSrc":"6255:25:101","nodeType":"YulExpressionStatement","src":"6255:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6300:9:101","nodeType":"YulIdentifier","src":"6300:9:101"},{"kind":"number","nativeSrc":"6311:2:101","nodeType":"YulLiteral","src":"6311:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6296:3:101","nodeType":"YulIdentifier","src":"6296:3:101"},"nativeSrc":"6296:18:101","nodeType":"YulFunctionCall","src":"6296:18:101"},{"name":"value1","nativeSrc":"6316:6:101","nodeType":"YulIdentifier","src":"6316:6:101"}],"functionName":{"name":"mstore","nativeSrc":"6289:6:101","nodeType":"YulIdentifier","src":"6289:6:101"},"nativeSrc":"6289:34:101","nodeType":"YulFunctionCall","src":"6289:34:101"},"nativeSrc":"6289:34:101","nodeType":"YulExpressionStatement","src":"6289:34:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"6081:248:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6171:9:101","nodeType":"YulTypedName","src":"6171:9:101","type":""},{"name":"value1","nativeSrc":"6182:6:101","nodeType":"YulTypedName","src":"6182:6:101","type":""},{"name":"value0","nativeSrc":"6190:6:101","nodeType":"YulTypedName","src":"6190:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6201:4:101","nodeType":"YulTypedName","src":"6201:4:101","type":""}],"src":"6081:248:101"},{"body":{"nativeSrc":"6382:77:101","nodeType":"YulBlock","src":"6382:77:101","statements":[{"nativeSrc":"6392:16:101","nodeType":"YulAssignment","src":"6392:16:101","value":{"arguments":[{"name":"x","nativeSrc":"6403:1:101","nodeType":"YulIdentifier","src":"6403:1:101"},{"name":"y","nativeSrc":"6406:1:101","nodeType":"YulIdentifier","src":"6406:1:101"}],"functionName":{"name":"add","nativeSrc":"6399:3:101","nodeType":"YulIdentifier","src":"6399:3:101"},"nativeSrc":"6399:9:101","nodeType":"YulFunctionCall","src":"6399:9:101"},"variableNames":[{"name":"sum","nativeSrc":"6392:3:101","nodeType":"YulIdentifier","src":"6392:3:101"}]},{"body":{"nativeSrc":"6431:22:101","nodeType":"YulBlock","src":"6431:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"6433:16:101","nodeType":"YulIdentifier","src":"6433:16:101"},"nativeSrc":"6433:18:101","nodeType":"YulFunctionCall","src":"6433:18:101"},"nativeSrc":"6433:18:101","nodeType":"YulExpressionStatement","src":"6433:18:101"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"6423:1:101","nodeType":"YulIdentifier","src":"6423:1:101"},{"name":"sum","nativeSrc":"6426:3:101","nodeType":"YulIdentifier","src":"6426:3:101"}],"functionName":{"name":"gt","nativeSrc":"6420:2:101","nodeType":"YulIdentifier","src":"6420:2:101"},"nativeSrc":"6420:10:101","nodeType":"YulFunctionCall","src":"6420:10:101"},"nativeSrc":"6417:36:101","nodeType":"YulIf","src":"6417:36:101"}]},"name":"checked_add_t_uint256","nativeSrc":"6334:125:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"6365:1:101","nodeType":"YulTypedName","src":"6365:1:101","type":""},{"name":"y","nativeSrc":"6368:1:101","nodeType":"YulTypedName","src":"6368:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"6374:3:101","nodeType":"YulTypedName","src":"6374:3:101","type":""}],"src":"6334:125:101"},{"body":{"nativeSrc":"6593:145:101","nodeType":"YulBlock","src":"6593:145:101","statements":[{"nativeSrc":"6603:26:101","nodeType":"YulAssignment","src":"6603:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6615:9:101","nodeType":"YulIdentifier","src":"6615:9:101"},{"kind":"number","nativeSrc":"6626:2:101","nodeType":"YulLiteral","src":"6626:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6611:3:101","nodeType":"YulIdentifier","src":"6611:3:101"},"nativeSrc":"6611:18:101","nodeType":"YulFunctionCall","src":"6611:18:101"},"variableNames":[{"name":"tail","nativeSrc":"6603:4:101","nodeType":"YulIdentifier","src":"6603:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6645:9:101","nodeType":"YulIdentifier","src":"6645:9:101"},{"arguments":[{"name":"value0","nativeSrc":"6660:6:101","nodeType":"YulIdentifier","src":"6660:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6676:3:101","nodeType":"YulLiteral","src":"6676:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"6681:1:101","nodeType":"YulLiteral","src":"6681:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6672:3:101","nodeType":"YulIdentifier","src":"6672:3:101"},"nativeSrc":"6672:11:101","nodeType":"YulFunctionCall","src":"6672:11:101"},{"kind":"number","nativeSrc":"6685:1:101","nodeType":"YulLiteral","src":"6685:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6668:3:101","nodeType":"YulIdentifier","src":"6668:3:101"},"nativeSrc":"6668:19:101","nodeType":"YulFunctionCall","src":"6668:19:101"}],"functionName":{"name":"and","nativeSrc":"6656:3:101","nodeType":"YulIdentifier","src":"6656:3:101"},"nativeSrc":"6656:32:101","nodeType":"YulFunctionCall","src":"6656:32:101"}],"functionName":{"name":"mstore","nativeSrc":"6638:6:101","nodeType":"YulIdentifier","src":"6638:6:101"},"nativeSrc":"6638:51:101","nodeType":"YulFunctionCall","src":"6638:51:101"},"nativeSrc":"6638:51:101","nodeType":"YulExpressionStatement","src":"6638:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6709:9:101","nodeType":"YulIdentifier","src":"6709:9:101"},{"kind":"number","nativeSrc":"6720:2:101","nodeType":"YulLiteral","src":"6720:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6705:3:101","nodeType":"YulIdentifier","src":"6705:3:101"},"nativeSrc":"6705:18:101","nodeType":"YulFunctionCall","src":"6705:18:101"},{"name":"value1","nativeSrc":"6725:6:101","nodeType":"YulIdentifier","src":"6725:6:101"}],"functionName":{"name":"mstore","nativeSrc":"6698:6:101","nodeType":"YulIdentifier","src":"6698:6:101"},"nativeSrc":"6698:34:101","nodeType":"YulFunctionCall","src":"6698:34:101"},"nativeSrc":"6698:34:101","nodeType":"YulExpressionStatement","src":"6698:34:101"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"6464:274:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6554:9:101","nodeType":"YulTypedName","src":"6554:9:101","type":""},{"name":"value1","nativeSrc":"6565:6:101","nodeType":"YulTypedName","src":"6565:6:101","type":""},{"name":"value0","nativeSrc":"6573:6:101","nodeType":"YulTypedName","src":"6573:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6584:4:101","nodeType":"YulTypedName","src":"6584:4:101","type":""}],"src":"6464:274:101"},{"body":{"nativeSrc":"6821:167:101","nodeType":"YulBlock","src":"6821:167:101","statements":[{"body":{"nativeSrc":"6867:16:101","nodeType":"YulBlock","src":"6867:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6876:1:101","nodeType":"YulLiteral","src":"6876:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6879:1:101","nodeType":"YulLiteral","src":"6879:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6869:6:101","nodeType":"YulIdentifier","src":"6869:6:101"},"nativeSrc":"6869:12:101","nodeType":"YulFunctionCall","src":"6869:12:101"},"nativeSrc":"6869:12:101","nodeType":"YulExpressionStatement","src":"6869:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6842:7:101","nodeType":"YulIdentifier","src":"6842:7:101"},{"name":"headStart","nativeSrc":"6851:9:101","nodeType":"YulIdentifier","src":"6851:9:101"}],"functionName":{"name":"sub","nativeSrc":"6838:3:101","nodeType":"YulIdentifier","src":"6838:3:101"},"nativeSrc":"6838:23:101","nodeType":"YulFunctionCall","src":"6838:23:101"},{"kind":"number","nativeSrc":"6863:2:101","nodeType":"YulLiteral","src":"6863:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"6834:3:101","nodeType":"YulIdentifier","src":"6834:3:101"},"nativeSrc":"6834:32:101","nodeType":"YulFunctionCall","src":"6834:32:101"},"nativeSrc":"6831:52:101","nodeType":"YulIf","src":"6831:52:101"},{"nativeSrc":"6892:29:101","nodeType":"YulVariableDeclaration","src":"6892:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6911:9:101","nodeType":"YulIdentifier","src":"6911:9:101"}],"functionName":{"name":"mload","nativeSrc":"6905:5:101","nodeType":"YulIdentifier","src":"6905:5:101"},"nativeSrc":"6905:16:101","nodeType":"YulFunctionCall","src":"6905:16:101"},"variables":[{"name":"value","nativeSrc":"6896:5:101","nodeType":"YulTypedName","src":"6896:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6952:5:101","nodeType":"YulIdentifier","src":"6952:5:101"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"6930:21:101","nodeType":"YulIdentifier","src":"6930:21:101"},"nativeSrc":"6930:28:101","nodeType":"YulFunctionCall","src":"6930:28:101"},"nativeSrc":"6930:28:101","nodeType":"YulExpressionStatement","src":"6930:28:101"},{"nativeSrc":"6967:15:101","nodeType":"YulAssignment","src":"6967:15:101","value":{"name":"value","nativeSrc":"6977:5:101","nodeType":"YulIdentifier","src":"6977:5:101"},"variableNames":[{"name":"value0","nativeSrc":"6967:6:101","nodeType":"YulIdentifier","src":"6967:6:101"}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nativeSrc":"6743:245:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6787:9:101","nodeType":"YulTypedName","src":"6787:9:101","type":""},{"name":"dataEnd","nativeSrc":"6798:7:101","nodeType":"YulTypedName","src":"6798:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6810:6:101","nodeType":"YulTypedName","src":"6810:6:101","type":""}],"src":"6743:245:101"},{"body":{"nativeSrc":"7122:145:101","nodeType":"YulBlock","src":"7122:145:101","statements":[{"nativeSrc":"7132:26:101","nodeType":"YulAssignment","src":"7132:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7144:9:101","nodeType":"YulIdentifier","src":"7144:9:101"},{"kind":"number","nativeSrc":"7155:2:101","nodeType":"YulLiteral","src":"7155:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7140:3:101","nodeType":"YulIdentifier","src":"7140:3:101"},"nativeSrc":"7140:18:101","nodeType":"YulFunctionCall","src":"7140:18:101"},"variableNames":[{"name":"tail","nativeSrc":"7132:4:101","nodeType":"YulIdentifier","src":"7132:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7174:9:101","nodeType":"YulIdentifier","src":"7174:9:101"},{"name":"value0","nativeSrc":"7185:6:101","nodeType":"YulIdentifier","src":"7185:6:101"}],"functionName":{"name":"mstore","nativeSrc":"7167:6:101","nodeType":"YulIdentifier","src":"7167:6:101"},"nativeSrc":"7167:25:101","nodeType":"YulFunctionCall","src":"7167:25:101"},"nativeSrc":"7167:25:101","nodeType":"YulExpressionStatement","src":"7167:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7212:9:101","nodeType":"YulIdentifier","src":"7212:9:101"},{"kind":"number","nativeSrc":"7223:2:101","nodeType":"YulLiteral","src":"7223:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7208:3:101","nodeType":"YulIdentifier","src":"7208:3:101"},"nativeSrc":"7208:18:101","nodeType":"YulFunctionCall","src":"7208:18:101"},{"arguments":[{"name":"value1","nativeSrc":"7232:6:101","nodeType":"YulIdentifier","src":"7232:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7248:3:101","nodeType":"YulLiteral","src":"7248:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"7253:1:101","nodeType":"YulLiteral","src":"7253:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7244:3:101","nodeType":"YulIdentifier","src":"7244:3:101"},"nativeSrc":"7244:11:101","nodeType":"YulFunctionCall","src":"7244:11:101"},{"kind":"number","nativeSrc":"7257:1:101","nodeType":"YulLiteral","src":"7257:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7240:3:101","nodeType":"YulIdentifier","src":"7240:3:101"},"nativeSrc":"7240:19:101","nodeType":"YulFunctionCall","src":"7240:19:101"}],"functionName":{"name":"and","nativeSrc":"7228:3:101","nodeType":"YulIdentifier","src":"7228:3:101"},"nativeSrc":"7228:32:101","nodeType":"YulFunctionCall","src":"7228:32:101"}],"functionName":{"name":"mstore","nativeSrc":"7201:6:101","nodeType":"YulIdentifier","src":"7201:6:101"},"nativeSrc":"7201:60:101","nodeType":"YulFunctionCall","src":"7201:60:101"},"nativeSrc":"7201:60:101","nodeType":"YulExpressionStatement","src":"7201:60:101"}]},"name":"abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed","nativeSrc":"6993:274:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7083:9:101","nodeType":"YulTypedName","src":"7083:9:101","type":""},{"name":"value1","nativeSrc":"7094:6:101","nodeType":"YulTypedName","src":"7094:6:101","type":""},{"name":"value0","nativeSrc":"7102:6:101","nodeType":"YulTypedName","src":"7102:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7113:4:101","nodeType":"YulTypedName","src":"7113:4:101","type":""}],"src":"6993:274:101"},{"body":{"nativeSrc":"7376:180:101","nodeType":"YulBlock","src":"7376:180:101","statements":[{"body":{"nativeSrc":"7422:16:101","nodeType":"YulBlock","src":"7422:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7431:1:101","nodeType":"YulLiteral","src":"7431:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7434:1:101","nodeType":"YulLiteral","src":"7434:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7424:6:101","nodeType":"YulIdentifier","src":"7424:6:101"},"nativeSrc":"7424:12:101","nodeType":"YulFunctionCall","src":"7424:12:101"},"nativeSrc":"7424:12:101","nodeType":"YulExpressionStatement","src":"7424:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7397:7:101","nodeType":"YulIdentifier","src":"7397:7:101"},{"name":"headStart","nativeSrc":"7406:9:101","nodeType":"YulIdentifier","src":"7406:9:101"}],"functionName":{"name":"sub","nativeSrc":"7393:3:101","nodeType":"YulIdentifier","src":"7393:3:101"},"nativeSrc":"7393:23:101","nodeType":"YulFunctionCall","src":"7393:23:101"},{"kind":"number","nativeSrc":"7418:2:101","nodeType":"YulLiteral","src":"7418:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"7389:3:101","nodeType":"YulIdentifier","src":"7389:3:101"},"nativeSrc":"7389:32:101","nodeType":"YulFunctionCall","src":"7389:32:101"},"nativeSrc":"7386:52:101","nodeType":"YulIf","src":"7386:52:101"},{"nativeSrc":"7447:29:101","nodeType":"YulVariableDeclaration","src":"7447:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7466:9:101","nodeType":"YulIdentifier","src":"7466:9:101"}],"functionName":{"name":"mload","nativeSrc":"7460:5:101","nodeType":"YulIdentifier","src":"7460:5:101"},"nativeSrc":"7460:16:101","nodeType":"YulFunctionCall","src":"7460:16:101"},"variables":[{"name":"value","nativeSrc":"7451:5:101","nodeType":"YulTypedName","src":"7451:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7520:5:101","nodeType":"YulIdentifier","src":"7520:5:101"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"7485:34:101","nodeType":"YulIdentifier","src":"7485:34:101"},"nativeSrc":"7485:41:101","nodeType":"YulFunctionCall","src":"7485:41:101"},"nativeSrc":"7485:41:101","nodeType":"YulExpressionStatement","src":"7485:41:101"},{"nativeSrc":"7535:15:101","nodeType":"YulAssignment","src":"7535:15:101","value":{"name":"value","nativeSrc":"7545:5:101","nodeType":"YulIdentifier","src":"7545:5:101"},"variableNames":[{"name":"value0","nativeSrc":"7535:6:101","nodeType":"YulIdentifier","src":"7535:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory","nativeSrc":"7272:284:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7342:9:101","nodeType":"YulTypedName","src":"7342:9:101","type":""},{"name":"dataEnd","nativeSrc":"7353:7:101","nodeType":"YulTypedName","src":"7353:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7365:6:101","nodeType":"YulTypedName","src":"7365:6:101","type":""}],"src":"7272:284:101"},{"body":{"nativeSrc":"7608:169:101","nodeType":"YulBlock","src":"7608:169:101","statements":[{"nativeSrc":"7618:16:101","nodeType":"YulAssignment","src":"7618:16:101","value":{"arguments":[{"name":"x","nativeSrc":"7629:1:101","nodeType":"YulIdentifier","src":"7629:1:101"},{"name":"y","nativeSrc":"7632:1:101","nodeType":"YulIdentifier","src":"7632:1:101"}],"functionName":{"name":"add","nativeSrc":"7625:3:101","nodeType":"YulIdentifier","src":"7625:3:101"},"nativeSrc":"7625:9:101","nodeType":"YulFunctionCall","src":"7625:9:101"},"variableNames":[{"name":"sum","nativeSrc":"7618:3:101","nodeType":"YulIdentifier","src":"7618:3:101"}]},{"nativeSrc":"7643:21:101","nodeType":"YulVariableDeclaration","src":"7643:21:101","value":{"arguments":[{"name":"sum","nativeSrc":"7657:3:101","nodeType":"YulIdentifier","src":"7657:3:101"},{"name":"y","nativeSrc":"7662:1:101","nodeType":"YulIdentifier","src":"7662:1:101"}],"functionName":{"name":"slt","nativeSrc":"7653:3:101","nodeType":"YulIdentifier","src":"7653:3:101"},"nativeSrc":"7653:11:101","nodeType":"YulFunctionCall","src":"7653:11:101"},"variables":[{"name":"_1","nativeSrc":"7647:2:101","nodeType":"YulTypedName","src":"7647:2:101","type":""}]},{"nativeSrc":"7673:19:101","nodeType":"YulVariableDeclaration","src":"7673:19:101","value":{"arguments":[{"name":"x","nativeSrc":"7687:1:101","nodeType":"YulIdentifier","src":"7687:1:101"},{"kind":"number","nativeSrc":"7690:1:101","nodeType":"YulLiteral","src":"7690:1:101","type":"","value":"0"}],"functionName":{"name":"slt","nativeSrc":"7683:3:101","nodeType":"YulIdentifier","src":"7683:3:101"},"nativeSrc":"7683:9:101","nodeType":"YulFunctionCall","src":"7683:9:101"},"variables":[{"name":"_2","nativeSrc":"7677:2:101","nodeType":"YulTypedName","src":"7677:2:101","type":""}]},{"body":{"nativeSrc":"7749:22:101","nodeType":"YulBlock","src":"7749:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"7751:16:101","nodeType":"YulIdentifier","src":"7751:16:101"},"nativeSrc":"7751:18:101","nodeType":"YulFunctionCall","src":"7751:18:101"},"nativeSrc":"7751:18:101","nodeType":"YulExpressionStatement","src":"7751:18:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"7718:2:101","nodeType":"YulIdentifier","src":"7718:2:101"}],"functionName":{"name":"iszero","nativeSrc":"7711:6:101","nodeType":"YulIdentifier","src":"7711:6:101"},"nativeSrc":"7711:10:101","nodeType":"YulFunctionCall","src":"7711:10:101"},{"name":"_1","nativeSrc":"7723:2:101","nodeType":"YulIdentifier","src":"7723:2:101"}],"functionName":{"name":"and","nativeSrc":"7707:3:101","nodeType":"YulIdentifier","src":"7707:3:101"},"nativeSrc":"7707:19:101","nodeType":"YulFunctionCall","src":"7707:19:101"},{"arguments":[{"name":"_2","nativeSrc":"7732:2:101","nodeType":"YulIdentifier","src":"7732:2:101"},{"arguments":[{"name":"_1","nativeSrc":"7743:2:101","nodeType":"YulIdentifier","src":"7743:2:101"}],"functionName":{"name":"iszero","nativeSrc":"7736:6:101","nodeType":"YulIdentifier","src":"7736:6:101"},"nativeSrc":"7736:10:101","nodeType":"YulFunctionCall","src":"7736:10:101"}],"functionName":{"name":"and","nativeSrc":"7728:3:101","nodeType":"YulIdentifier","src":"7728:3:101"},"nativeSrc":"7728:19:101","nodeType":"YulFunctionCall","src":"7728:19:101"}],"functionName":{"name":"or","nativeSrc":"7704:2:101","nodeType":"YulIdentifier","src":"7704:2:101"},"nativeSrc":"7704:44:101","nodeType":"YulFunctionCall","src":"7704:44:101"},"nativeSrc":"7701:70:101","nodeType":"YulIf","src":"7701:70:101"}]},"name":"checked_add_t_int256","nativeSrc":"7561:216:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"7591:1:101","nodeType":"YulTypedName","src":"7591:1:101","type":""},{"name":"y","nativeSrc":"7594:1:101","nodeType":"YulTypedName","src":"7594:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"7600:3:101","nodeType":"YulTypedName","src":"7600:3:101","type":""}],"src":"7561:216:101"},{"body":{"nativeSrc":"7831:79:101","nodeType":"YulBlock","src":"7831:79:101","statements":[{"nativeSrc":"7841:17:101","nodeType":"YulAssignment","src":"7841:17:101","value":{"arguments":[{"name":"x","nativeSrc":"7853:1:101","nodeType":"YulIdentifier","src":"7853:1:101"},{"name":"y","nativeSrc":"7856:1:101","nodeType":"YulIdentifier","src":"7856:1:101"}],"functionName":{"name":"sub","nativeSrc":"7849:3:101","nodeType":"YulIdentifier","src":"7849:3:101"},"nativeSrc":"7849:9:101","nodeType":"YulFunctionCall","src":"7849:9:101"},"variableNames":[{"name":"diff","nativeSrc":"7841:4:101","nodeType":"YulIdentifier","src":"7841:4:101"}]},{"body":{"nativeSrc":"7882:22:101","nodeType":"YulBlock","src":"7882:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"7884:16:101","nodeType":"YulIdentifier","src":"7884:16:101"},"nativeSrc":"7884:18:101","nodeType":"YulFunctionCall","src":"7884:18:101"},"nativeSrc":"7884:18:101","nodeType":"YulExpressionStatement","src":"7884:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"7873:4:101","nodeType":"YulIdentifier","src":"7873:4:101"},{"name":"x","nativeSrc":"7879:1:101","nodeType":"YulIdentifier","src":"7879:1:101"}],"functionName":{"name":"gt","nativeSrc":"7870:2:101","nodeType":"YulIdentifier","src":"7870:2:101"},"nativeSrc":"7870:11:101","nodeType":"YulFunctionCall","src":"7870:11:101"},"nativeSrc":"7867:37:101","nodeType":"YulIf","src":"7867:37:101"}]},"name":"checked_sub_t_uint256","nativeSrc":"7782:128:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"7813:1:101","nodeType":"YulTypedName","src":"7813:1:101","type":""},{"name":"y","nativeSrc":"7816:1:101","nodeType":"YulTypedName","src":"7816:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"7822:4:101","nodeType":"YulTypedName","src":"7822:4:101","type":""}],"src":"7782:128:101"},{"body":{"nativeSrc":"7996:103:101","nodeType":"YulBlock","src":"7996:103:101","statements":[{"body":{"nativeSrc":"8042:16:101","nodeType":"YulBlock","src":"8042:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8051:1:101","nodeType":"YulLiteral","src":"8051:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8054:1:101","nodeType":"YulLiteral","src":"8054:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8044:6:101","nodeType":"YulIdentifier","src":"8044:6:101"},"nativeSrc":"8044:12:101","nodeType":"YulFunctionCall","src":"8044:12:101"},"nativeSrc":"8044:12:101","nodeType":"YulExpressionStatement","src":"8044:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8017:7:101","nodeType":"YulIdentifier","src":"8017:7:101"},{"name":"headStart","nativeSrc":"8026:9:101","nodeType":"YulIdentifier","src":"8026:9:101"}],"functionName":{"name":"sub","nativeSrc":"8013:3:101","nodeType":"YulIdentifier","src":"8013:3:101"},"nativeSrc":"8013:23:101","nodeType":"YulFunctionCall","src":"8013:23:101"},{"kind":"number","nativeSrc":"8038:2:101","nodeType":"YulLiteral","src":"8038:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"8009:3:101","nodeType":"YulIdentifier","src":"8009:3:101"},"nativeSrc":"8009:32:101","nodeType":"YulFunctionCall","src":"8009:32:101"},"nativeSrc":"8006:52:101","nodeType":"YulIf","src":"8006:52:101"},{"nativeSrc":"8067:26:101","nodeType":"YulAssignment","src":"8067:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8083:9:101","nodeType":"YulIdentifier","src":"8083:9:101"}],"functionName":{"name":"mload","nativeSrc":"8077:5:101","nodeType":"YulIdentifier","src":"8077:5:101"},"nativeSrc":"8077:16:101","nodeType":"YulFunctionCall","src":"8077:16:101"},"variableNames":[{"name":"value0","nativeSrc":"8067:6:101","nodeType":"YulIdentifier","src":"8067:6:101"}]}]},"name":"abi_decode_tuple_t_bytes32_fromMemory","nativeSrc":"7915:184:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7962:9:101","nodeType":"YulTypedName","src":"7962:9:101","type":""},{"name":"dataEnd","nativeSrc":"7973:7:101","nodeType":"YulTypedName","src":"7973:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7985:6:101","nodeType":"YulTypedName","src":"7985:6:101","type":""}],"src":"7915:184:101"},{"body":{"nativeSrc":"8203:76:101","nodeType":"YulBlock","src":"8203:76:101","statements":[{"nativeSrc":"8213:26:101","nodeType":"YulAssignment","src":"8213:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8225:9:101","nodeType":"YulIdentifier","src":"8225:9:101"},{"kind":"number","nativeSrc":"8236:2:101","nodeType":"YulLiteral","src":"8236:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8221:3:101","nodeType":"YulIdentifier","src":"8221:3:101"},"nativeSrc":"8221:18:101","nodeType":"YulFunctionCall","src":"8221:18:101"},"variableNames":[{"name":"tail","nativeSrc":"8213:4:101","nodeType":"YulIdentifier","src":"8213:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8255:9:101","nodeType":"YulIdentifier","src":"8255:9:101"},{"name":"value0","nativeSrc":"8266:6:101","nodeType":"YulIdentifier","src":"8266:6:101"}],"functionName":{"name":"mstore","nativeSrc":"8248:6:101","nodeType":"YulIdentifier","src":"8248:6:101"},"nativeSrc":"8248:25:101","nodeType":"YulFunctionCall","src":"8248:25:101"},"nativeSrc":"8248:25:101","nodeType":"YulExpressionStatement","src":"8248:25:101"}]},"name":"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed","nativeSrc":"8104:175:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8172:9:101","nodeType":"YulTypedName","src":"8172:9:101","type":""},{"name":"value0","nativeSrc":"8183:6:101","nodeType":"YulTypedName","src":"8183:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8194:4:101","nodeType":"YulTypedName","src":"8194:4:101","type":""}],"src":"8104:175:101"},{"body":{"nativeSrc":"8386:180:101","nodeType":"YulBlock","src":"8386:180:101","statements":[{"body":{"nativeSrc":"8432:16:101","nodeType":"YulBlock","src":"8432:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8441:1:101","nodeType":"YulLiteral","src":"8441:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8444:1:101","nodeType":"YulLiteral","src":"8444:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8434:6:101","nodeType":"YulIdentifier","src":"8434:6:101"},"nativeSrc":"8434:12:101","nodeType":"YulFunctionCall","src":"8434:12:101"},"nativeSrc":"8434:12:101","nodeType":"YulExpressionStatement","src":"8434:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8407:7:101","nodeType":"YulIdentifier","src":"8407:7:101"},{"name":"headStart","nativeSrc":"8416:9:101","nodeType":"YulIdentifier","src":"8416:9:101"}],"functionName":{"name":"sub","nativeSrc":"8403:3:101","nodeType":"YulIdentifier","src":"8403:3:101"},"nativeSrc":"8403:23:101","nodeType":"YulFunctionCall","src":"8403:23:101"},{"kind":"number","nativeSrc":"8428:2:101","nodeType":"YulLiteral","src":"8428:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"8399:3:101","nodeType":"YulIdentifier","src":"8399:3:101"},"nativeSrc":"8399:32:101","nodeType":"YulFunctionCall","src":"8399:32:101"},"nativeSrc":"8396:52:101","nodeType":"YulIf","src":"8396:52:101"},{"nativeSrc":"8457:29:101","nodeType":"YulVariableDeclaration","src":"8457:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8476:9:101","nodeType":"YulIdentifier","src":"8476:9:101"}],"functionName":{"name":"mload","nativeSrc":"8470:5:101","nodeType":"YulIdentifier","src":"8470:5:101"},"nativeSrc":"8470:16:101","nodeType":"YulFunctionCall","src":"8470:16:101"},"variables":[{"name":"value","nativeSrc":"8461:5:101","nodeType":"YulTypedName","src":"8461:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8530:5:101","nodeType":"YulIdentifier","src":"8530:5:101"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"8495:34:101","nodeType":"YulIdentifier","src":"8495:34:101"},"nativeSrc":"8495:41:101","nodeType":"YulFunctionCall","src":"8495:41:101"},"nativeSrc":"8495:41:101","nodeType":"YulExpressionStatement","src":"8495:41:101"},{"nativeSrc":"8545:15:101","nodeType":"YulAssignment","src":"8545:15:101","value":{"name":"value","nativeSrc":"8555:5:101","nodeType":"YulIdentifier","src":"8555:5:101"},"variableNames":[{"name":"value0","nativeSrc":"8545:6:101","nodeType":"YulIdentifier","src":"8545:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory","nativeSrc":"8284:282:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8352:9:101","nodeType":"YulTypedName","src":"8352:9:101","type":""},{"name":"dataEnd","nativeSrc":"8363:7:101","nodeType":"YulTypedName","src":"8363:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8375:6:101","nodeType":"YulTypedName","src":"8375:6:101","type":""}],"src":"8284:282:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function validator_revert_contract_IERC4626(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function validator_revert_bool(value)\n    {\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IERC4626_$6400t_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_bool(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(length, 0x1f), not(31)), 63), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, length)\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        calldatacopy(add(memPtr, 32), add(_1, 32), length)\n        mstore(add(add(memPtr, length), 32), 0)\n        value1 := memPtr\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_contract$_IERC4626_$6400__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        mcopy(add(headStart, 64), add(value0, 32), length)\n        mstore(add(add(headStart, length), 64), 0)\n        tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n    }\n    function abi_encode_tuple_t_contract$_IERC20Metadata_$8863__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_sub_t_int256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        let _1 := slt(y, 0)\n        if or(and(iszero(_1), sgt(diff, x)), and(_1, slt(diff, x))) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bool(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$8863_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n    function checked_add_t_int256(x, y) -> sum\n    {\n        sum := add(x, y)\n        let _1 := slt(sum, y)\n        let _2 := slt(x, 0)\n        if or(and(iszero(_2), _1), and(_2, iszero(_1))) { panic_error_0x11() }\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function abi_decode_tuple_t_bytes32_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$29171_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"7234":[{"length":32,"start":3293},{"length":32,"start":3334},{"length":32,"start":3656}],"25474":[{"length":32,"start":362},{"length":32,"start":2611},{"length":32,"start":4229}]},"linkReferences":{},"object":"6080604052600436106100e4575f3560e01c80637d919a9711610087578063ad3cb1cc11610057578063ad3cb1cc1461024f578063d0bc1a881461028c578063d336078c146102ab578063e5a6b10f146102ca575f5ffd5b80637d919a97146101eb5780638129fc1c146101ff578063a7f8a5e214610213578063ac860f7414610230575f5ffd5b80634d15eb03116100c25780634d15eb031461015c5780634eb978a4146101a25780634f1ef286146101b657806352d1902d146101c9575f5ffd5b806301ffc9a7146100e8578063194448e51461011c5780632ccb1b301461013d575b5f5ffd5b3480156100f3575f5ffd5b506101076101023660046113f7565b6102de565b60405190151581526020015b60405180910390f35b348015610127575f5ffd5b5061013b610136366004611446565b610314565b005b348015610148575f5ffd5b5061013b61015736600461147d565b61056d565b348015610167575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610113565b3480156101ad575f5ffd5b5061013b61057b565b61013b6101c43660046114bb565b6106b0565b3480156101d4575f5ffd5b506101dd6106cb565b604051908152602001610113565b3480156101f6575f5ffd5b506032546101dd565b34801561020a575f5ffd5b5061013b6106e6565b34801561021e575f5ffd5b506064546001600160a01b031661018a565b34801561023b575f5ffd5b5061013b61024a366004611581565b6107dd565b34801561025a575f5ffd5b5061027f604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516101139190611598565b348015610297575f5ffd5b5061013b6102a6366004611581565b61096e565b3480156102b6575f5ffd5b506101dd6102c5366004611581565b610990565b3480156102d5575f5ffd5b5061018a610a30565b5f6001600160e01b031982166301ffc9a760e01b148061030e57506001600160e01b03198216634d15eb0360e01b145b92915050565b5f5f61031e610a30565b90506001600160a01b03841615806103a65750806001600160a01b0316846001600160a01b03166338d52e0f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610377573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061039b91906115cd565b6001600160a01b0316145b6103c357604051638959269160e01b815260040160405180910390fd5b5f6103d66064546001600160a01b031690565b90505f6001600160a01b038216156104eb576040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa15801561042c573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061045091906115e8565b905080156104e9578515610471576104688382610ab6565b955091506104e9565b604051635d043b2960e11b815260048101829052306024820181905260448201526001600160a01b0384169063ba087652906064016020604051808303815f875af11580156104c2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104e691906115e8565b91505b505b606480546001600160a01b0319166001600160a01b03881617905561051c603254826105179190611613565b610bf9565b5f60325560405184151581526001600160a01b0380881691908416907f243f9479bbdaf9f3395e726975293ee3724f3819f4322a018c98afb9de70a1e09060200160405180910390a3505050505050565b6105778282610c19565b5050565b5f61058e6064546001600160a01b031690565b90506001600160a01b0381166105b757604051638959269160e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201525f906001600160a01b038316906307a2d13a9082906370a0823190602401602060405180830381865afa158015610603573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061062791906115e8565b6040518263ffffffff1660e01b815260040161064591815260200190565b602060405180830381865afa158015610660573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061068491906115e8565b90505f603254826106959190611613565b905080156106ab5760328290556106ab81610bf9565b505050565b6106b8610cd2565b6106c182610d78565b6105778282610d81565b5f6106d4610e3d565b505f51602061169b5f395f51905f5290565b5f6106ef610e86565b805490915060ff600160401b820416159067ffffffffffffffff165f811580156107165750825b90505f8267ffffffffffffffff1660011480156107325750303b155b905081158015610740575080155b1561075e5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561078857845460ff60401b1916600160401b1785555b610790610eae565b83156107d657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b5f6107f06064546001600160a01b031690565b90506001600160a01b03811661081957604051638959269160e01b815260040160405180910390fd5b5f610822610ebe565b90505f19830361083457809250610868565b8281808211156108655760405163531309fb60e11b8152600481019290925260248201526044015b60405180910390fd5b50505b8260325f8282546108799190611632565b909155506108879050610a30565b60405163095ea7b360e01b81526001600160a01b03848116600483015260248201869052919091169063095ea7b3906044016020604051808303815f875af11580156108d5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f99190611645565b50604051636e553f6560e01b8152600481018490523060248201526001600160a01b03831690636e553f65906044016020604051808303815f875af1158015610944573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061096891906115e8565b50505050565b61098d33308361097c610a30565b6001600160a01b0316929190610f2f565b50565b5f61099961057b565b5f6109ac6064546001600160a01b031690565b90505f198303610a1f5760405163ce96cb7760e01b81523060048201526001600160a01b0382169063ce96cb7790602401602060405180830381865afa1580156109f8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a1c91906115e8565b92505b610a298184610f65565b5090919050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a8d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab191906115cd565b905090565b604051636c82bbbf60e11b81523060048201525f9081906001600160a01b0385169063d905777e90602401602060405180830381865afa925050508015610b1a575060408051601f3d908101601f19168201909252610b17918101906115e8565b60015b15610b315783811015610b2f57600191508093505b505b604051635d043b2960e11b815260048101849052306024820181905260448201526001600160a01b0385169063ba087652906064016020604051808303815f875af1925050508015610ba0575060408051601f3d908101601f19168201909252610b9d918101906115e8565b60015b610bef57836001600160a01b03167f25bce30047860a48c9d8830dbf31873be5434f4d28f14a5808a4ea8e35d0829684604051610bdf91815260200190565b60405180910390a2506001610bf2565b91505b9250929050565b8060655f828254610c0a9190611660565b9091555061098d905081611018565b816001600160a01b038116610c4d57604051636427f27360e11b81526001600160a01b03909116600482015260240161085c565b50805f03610c59575050565b5f610c62610ebe565b905081811015610ca5575f610c7f6064546001600160a01b031690565b90506001600160a01b03811615610ca357610ca381610c9e8486611687565b610f65565b505b6001600160a01b03831630146106ab576106ab8383610cc2610a30565b6001600160a01b0316919061104e565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480610d5857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610d4c5f51602061169b5f395f51905f52546001600160a01b031690565b6001600160a01b031614155b15610d765760405163703e46dd60e11b815260040160405180910390fd5b565b61098d81611083565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015610ddb575060408051601f3d908101601f19168201909252610dd8918101906115e8565b60015b610e0357604051634c9c8ce360e01b81526001600160a01b038316600482015260240161085c565b5f51602061169b5f395f51905f528114610e3357604051632a87526960e21b81526004810182905260240161085c565b6106ab8383611134565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610d765760405163703e46dd60e11b815260040160405180910390fd5b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0061030e565b610eb6611189565b610d766111ae565b5f610ec7610a30565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015610f0b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab191906115e8565b610f3d8484848460016111b6565b61096857604051635274afe760e01b81526001600160a01b038516600482015260240161085c565b604051632d182be560e21b815260048101829052306024820181905260448201526001600160a01b0383169063b460af94906064016020604051808303815f875af1158015610fb6573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fda91906115e8565b50603254811115610ffe57610ff6603254826105179190611687565b5f6032555050565b8060325f82825461100f9190611687565b90915550505050565b6040518181527f731c439c5bae15be1344eec709967e046b4f7d3f7e37abeffc5247f448fa18bf9060200160405180910390a150565b61105b8383836001611223565b6106ab57604051635274afe760e01b81526001600160a01b038416600482015260240161085c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110e9573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061110d91906115cd565b6001600160a01b03161461098d5760405163d2b3d33f60e01b815260040160405180910390fd5b61113d82611285565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115611181576106ab82826112e8565b610577611388565b6111916113a7565b610d7657604051631afcd79f60e31b815260040160405180910390fd5b610d76611189565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f51148316611212578383151615611206573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f5114831661127957838315161561126d573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b806001600160a01b03163b5f036112ba57604051634c9c8ce360e01b81526001600160a01b038216600482015260240161085c565b5f51602061169b5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f6112f584846113c0565b905080801561131657505f3d118061131657505f846001600160a01b03163b115b1561132b576113236113d3565b91505061030e565b801561135557604051639996b31560e01b81526001600160a01b038516600482015260240161085c565b3d15611368576113636113ec565b611381565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b3415610d765760405163b398979f60e01b815260040160405180910390fd5b5f6113b0610e86565b54600160401b900460ff16919050565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f60208284031215611407575f5ffd5b81356001600160e01b03198116811461141e575f5ffd5b9392505050565b6001600160a01b038116811461098d575f5ffd5b801515811461098d575f5ffd5b5f5f60408385031215611457575f5ffd5b823561146281611425565b9150602083013561147281611439565b809150509250929050565b5f5f6040838503121561148e575f5ffd5b823561149981611425565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b5f5f604083850312156114cc575f5ffd5b82356114d781611425565b9150602083013567ffffffffffffffff8111156114f2575f5ffd5b8301601f81018513611502575f5ffd5b803567ffffffffffffffff81111561151c5761151c6114a7565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561154b5761154b6114a7565b604052818152828201602001871015611562575f5ffd5b816020840160208301375f602083830101528093505050509250929050565b5f60208284031215611591575f5ffd5b5035919050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f602082840312156115dd575f5ffd5b815161141e81611425565b5f602082840312156115f8575f5ffd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b8181035f831280158383131683831282161715611381576113816115ff565b8082018082111561030e5761030e6115ff565b5f60208284031215611655575f5ffd5b815161141e81611439565b8082018281125f83128015821682158216171561167f5761167f6115ff565b505092915050565b8181038181111561030e5761030e6115ff56fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca2646970667358221220acd8caef4742e489b43f1c3c1019a654073e1e1026e1a7717d3f5b579624620e64736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xE4 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7D919A97 GT PUSH2 0x87 JUMPI DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0x57 JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x24F JUMPI DUP1 PUSH4 0xD0BC1A88 EQ PUSH2 0x28C JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0x2AB JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x2CA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x7D919A97 EQ PUSH2 0x1EB JUMPI DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x1FF JUMPI DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0x213 JUMPI DUP1 PUSH4 0xAC860F74 EQ PUSH2 0x230 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D15EB03 GT PUSH2 0xC2 JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x15C JUMPI DUP1 PUSH4 0x4EB978A4 EQ PUSH2 0x1A2 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x1B6 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x1C9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xE8 JUMPI DUP1 PUSH4 0x194448E5 EQ PUSH2 0x11C JUMPI DUP1 PUSH4 0x2CCB1B30 EQ PUSH2 0x13D JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x107 PUSH2 0x102 CALLDATASIZE PUSH1 0x4 PUSH2 0x13F7 JUMP JUMPDEST PUSH2 0x2DE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x127 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13B PUSH2 0x136 CALLDATASIZE PUSH1 0x4 PUSH2 0x1446 JUMP JUMPDEST PUSH2 0x314 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x148 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13B PUSH2 0x157 CALLDATASIZE PUSH1 0x4 PUSH2 0x147D JUMP JUMPDEST PUSH2 0x56D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x167 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x113 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13B PUSH2 0x57B JUMP JUMPDEST PUSH2 0x13B PUSH2 0x1C4 CALLDATASIZE PUSH1 0x4 PUSH2 0x14BB JUMP JUMPDEST PUSH2 0x6B0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1D4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1DD PUSH2 0x6CB JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x113 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x32 SLOAD PUSH2 0x1DD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x20A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13B PUSH2 0x6E6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x21E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x23B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13B PUSH2 0x24A CALLDATASIZE PUSH1 0x4 PUSH2 0x1581 JUMP JUMPDEST PUSH2 0x7DD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27F PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x113 SWAP2 SWAP1 PUSH2 0x1598 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x297 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13B PUSH2 0x2A6 CALLDATASIZE PUSH1 0x4 PUSH2 0x1581 JUMP JUMPDEST PUSH2 0x96E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1DD PUSH2 0x2C5 CALLDATASIZE PUSH1 0x4 PUSH2 0x1581 JUMP JUMPDEST PUSH2 0x990 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x18A PUSH2 0xA30 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x30E JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x31E PUSH2 0xA30 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO DUP1 PUSH2 0x3A6 JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x38D52E0F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x377 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x39B SWAP2 SWAP1 PUSH2 0x15CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x3C3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x3D6 PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0x4EB JUMPI PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x42C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x450 SWAP2 SWAP1 PUSH2 0x15E8 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x4E9 JUMPI DUP6 ISZERO PUSH2 0x471 JUMPI PUSH2 0x468 DUP4 DUP3 PUSH2 0xAB6 JUMP JUMPDEST SWAP6 POP SWAP2 POP PUSH2 0x4E9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4C2 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x4E6 SWAP2 SWAP1 PUSH2 0x15E8 JUMP JUMPDEST SWAP2 POP JUMPDEST POP JUMPDEST PUSH1 0x64 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND OR SWAP1 SSTORE PUSH2 0x51C PUSH1 0x32 SLOAD DUP3 PUSH2 0x517 SWAP2 SWAP1 PUSH2 0x1613 JUMP JUMPDEST PUSH2 0xBF9 JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE PUSH1 0x40 MLOAD DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND SWAP2 SWAP1 DUP5 AND SWAP1 PUSH32 0x243F9479BBDAF9F3395E726975293EE3724F3819F4322A018C98AFB9DE70A1E0 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x577 DUP3 DUP3 PUSH2 0xC19 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x58E PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x5B7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x603 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x627 SWAP2 SWAP1 PUSH2 0x15E8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x645 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x660 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x684 SWAP2 SWAP1 PUSH2 0x15E8 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x32 SLOAD DUP3 PUSH2 0x695 SWAP2 SWAP1 PUSH2 0x1613 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x6AB JUMPI PUSH1 0x32 DUP3 SWAP1 SSTORE PUSH2 0x6AB DUP2 PUSH2 0xBF9 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x6B8 PUSH2 0xCD2 JUMP JUMPDEST PUSH2 0x6C1 DUP3 PUSH2 0xD78 JUMP JUMPDEST PUSH2 0x577 DUP3 DUP3 PUSH2 0xD81 JUMP JUMPDEST PUSH0 PUSH2 0x6D4 PUSH2 0xE3D JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x169B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x6EF PUSH2 0xE86 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x716 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x732 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x740 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x75E JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x788 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x790 PUSH2 0xEAE JUMP JUMPDEST DUP4 ISZERO PUSH2 0x7D6 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x7F0 PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x819 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x822 PUSH2 0xEBE JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x834 JUMPI DUP1 SWAP3 POP PUSH2 0x868 JUMP JUMPDEST DUP3 DUP2 DUP1 DUP3 GT ISZERO PUSH2 0x865 JUMPI PUSH1 0x40 MLOAD PUSH4 0x531309FB PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x879 SWAP2 SWAP1 PUSH2 0x1632 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x887 SWAP1 POP PUSH2 0xA30 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP7 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x8D5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x8F9 SWAP2 SWAP1 PUSH2 0x1645 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x944 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x968 SWAP2 SWAP1 PUSH2 0x15E8 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x98D CALLER ADDRESS DUP4 PUSH2 0x97C PUSH2 0xA30 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0xF2F JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x999 PUSH2 0x57B JUMP JUMPDEST PUSH0 PUSH2 0x9AC PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0xA1F JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x9F8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xA1C SWAP2 SWAP1 PUSH2 0x15E8 JUMP JUMPDEST SWAP3 POP JUMPDEST PUSH2 0xA29 DUP2 DUP5 PUSH2 0xF65 JUMP JUMPDEST POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xA8D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xAB1 SWAP2 SWAP1 PUSH2 0x15CD JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6C82BBBF PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xD905777E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xB1A JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xB17 SWAP2 DUP2 ADD SWAP1 PUSH2 0x15E8 JUMP JUMPDEST PUSH1 0x1 JUMPDEST ISZERO PUSH2 0xB31 JUMPI DUP4 DUP2 LT ISZERO PUSH2 0xB2F JUMPI PUSH1 0x1 SWAP2 POP DUP1 SWAP4 POP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xBA0 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xB9D SWAP2 DUP2 ADD SWAP1 PUSH2 0x15E8 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xBEF JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x25BCE30047860A48C9D8830DBF31873BE5434F4D28F14A5808A4EA8E35D08296 DUP5 PUSH1 0x40 MLOAD PUSH2 0xBDF SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 PUSH2 0xBF2 JUMP JUMPDEST SWAP2 POP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 PUSH1 0x65 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xC0A SWAP2 SWAP1 PUSH2 0x1660 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x98D SWAP1 POP DUP2 PUSH2 0x1018 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xC4D JUMPI PUSH1 0x40 MLOAD PUSH4 0x6427F273 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x85C JUMP JUMPDEST POP DUP1 PUSH0 SUB PUSH2 0xC59 JUMPI POP POP JUMP JUMPDEST PUSH0 PUSH2 0xC62 PUSH2 0xEBE JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xCA5 JUMPI PUSH0 PUSH2 0xC7F PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0xCA3 JUMPI PUSH2 0xCA3 DUP2 PUSH2 0xC9E DUP5 DUP7 PUSH2 0x1687 JUMP JUMPDEST PUSH2 0xF65 JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ADDRESS EQ PUSH2 0x6AB JUMPI PUSH2 0x6AB DUP4 DUP4 PUSH2 0xCC2 PUSH2 0xA30 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x104E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0xD58 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xD4C PUSH0 MLOAD PUSH1 0x20 PUSH2 0x169B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0xD76 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x98D DUP2 PUSH2 0x1083 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xDDB JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xDD8 SWAP2 DUP2 ADD SWAP1 PUSH2 0x15E8 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xE03 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x85C JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x169B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0xE33 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x85C JUMP JUMPDEST PUSH2 0x6AB DUP4 DUP4 PUSH2 0x1134 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xD76 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x30E JUMP JUMPDEST PUSH2 0xEB6 PUSH2 0x1189 JUMP JUMPDEST PUSH2 0xD76 PUSH2 0x11AE JUMP JUMPDEST PUSH0 PUSH2 0xEC7 PUSH2 0xA30 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xF0B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xAB1 SWAP2 SWAP1 PUSH2 0x15E8 JUMP JUMPDEST PUSH2 0xF3D DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x11B6 JUMP JUMPDEST PUSH2 0x968 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x85C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xFB6 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xFDA SWAP2 SWAP1 PUSH2 0x15E8 JUMP JUMPDEST POP PUSH1 0x32 SLOAD DUP2 GT ISZERO PUSH2 0xFFE JUMPI PUSH2 0xFF6 PUSH1 0x32 SLOAD DUP3 PUSH2 0x517 SWAP2 SWAP1 PUSH2 0x1687 JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE POP POP JUMP JUMPDEST DUP1 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x100F SWAP2 SWAP1 PUSH2 0x1687 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x731C439C5BAE15BE1344EEC709967E046B4F7D3F7E37ABEFFC5247F448FA18BF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH2 0x105B DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x1223 JUMP JUMPDEST PUSH2 0x6AB JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x85C JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x10E9 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x110D SWAP2 SWAP1 PUSH2 0x15CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x98D JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x113D DUP3 PUSH2 0x1285 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x1181 JUMPI PUSH2 0x6AB DUP3 DUP3 PUSH2 0x12E8 JUMP JUMPDEST PUSH2 0x577 PUSH2 0x1388 JUMP JUMPDEST PUSH2 0x1191 PUSH2 0x13A7 JUMP JUMPDEST PUSH2 0xD76 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD76 PUSH2 0x1189 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x1212 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x1206 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x1279 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x126D JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x12BA JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x85C JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x169B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x12F5 DUP5 DUP5 PUSH2 0x13C0 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1316 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x1316 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x132B JUMPI PUSH2 0x1323 PUSH2 0x13D3 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x30E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1355 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x85C JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x1368 JUMPI PUSH2 0x1363 PUSH2 0x13EC JUMP JUMPDEST PUSH2 0x1381 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0xD76 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x13B0 PUSH2 0xE86 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1407 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x141E JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x98D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x98D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1457 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1462 DUP2 PUSH2 0x1425 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x1472 DUP2 PUSH2 0x1439 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x148E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1499 DUP2 PUSH2 0x1425 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x14CC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x14D7 DUP2 PUSH2 0x1425 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x14F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1502 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x151C JUMPI PUSH2 0x151C PUSH2 0x14A7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x154B JUMPI PUSH2 0x154B PUSH2 0x14A7 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP3 DUP3 ADD PUSH1 0x20 ADD DUP8 LT ISZERO PUSH2 0x1562 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP4 POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1591 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x15DD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x141E DUP2 PUSH2 0x1425 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x15F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB PUSH0 DUP4 SLT DUP1 ISZERO DUP4 DUP4 SGT AND DUP4 DUP4 SLT DUP3 AND OR ISZERO PUSH2 0x1381 JUMPI PUSH2 0x1381 PUSH2 0x15FF JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x30E JUMPI PUSH2 0x30E PUSH2 0x15FF JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1655 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x141E DUP2 PUSH2 0x1439 JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x167F JUMPI PUSH2 0x167F PUSH2 0x15FF JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x30E JUMPI PUSH2 0x30E PUSH2 0x15FF JUMP INVALID CALLDATASIZE ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCA2646970667358221220AC 0xD8 0xCA 0xEF SELFBALANCE TIMESTAMP RETF DUP10 0xB4 EXTCODEHASH SHR EXTCODECOPY LT NOT 0xA6 SLOAD SMOD RETURNDATACOPY 0x1E LT 0x26 RJUMPI 0xA771 PUSH30 0x3F5B579624620E64736F6C634300081E0033000000000000000000000000 ","sourceMap":"1024:1770:97:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2156:206:73;;;;;;;;;;-1:-1:-1;2156:206:73;;;;;:::i;:::-;;:::i;:::-;;;470:14:101;;463:22;445:41;;433:2;418:18;2156:206:73;;;;;;;;6826:990:75;;;;;;;;;;-1:-1:-1;6826:990:75;;;;;:::i;:::-;;:::i;:::-;;2404:109:97;;;;;;;;;;-1:-1:-1;2404:109:97;;;;;:::i;:::-;;:::i;2366:94:73:-;;;;;;;;;;-1:-1:-1;2444:11:73;2366:94;;;-1:-1:-1;;;;;1747:32:101;;;1729:51;;1717:2;1702:18;2366:94:73;1562:224:101;11927:366:75;;;;;;;;;;;;;:::i;3911:214:33:-;;;;;;:::i;:::-;;:::i;3466:126::-;;;;;;;;;;;;;:::i;:::-;;;3163:25:101;;;3151:2;3136:18;3466:126:33;3017:177:101;5400:81:75;;;;;;;;;;-1:-1:-1;5467:9:75;;5400:81;;1419:68:97;;;;;;;;;;;;;:::i;1491:91::-;;;;;;;;;;-1:-1:-1;1566:11:97;;-1:-1:-1;;;;;1566:11:97;1491:91;;11246:445:75;;;;;;;;;;-1:-1:-1;11246:445:75;;;;;:::i;:::-;;:::i;1732:58:33:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1732:58:33;;;;;;;;;;;;:::i;2284:116:97:-;;;;;;;;;;-1:-1:-1;2284:116:97;;;;;:::i;:::-;;:::i;10717:268:75:-;;;;;;;;;;-1:-1:-1;10717:268:75;;;;;:::i;:::-;;:::i;2464:97:73:-;;;;;;;;;;;;;:::i;2156:206::-;2241:4;-1:-1:-1;;;;;;2260:40:73;;-1:-1:-1;;;2260:40:73;;:97;;-1:-1:-1;;;;;;;2304:53:73;;-1:-1:-1;;;2304:53:73;2260:97;2253:104;2156:206;-1:-1:-1;;2156:206:73:o;6826:990:75:-;6900:11;6917:20;6940:10;:8;:10::i;:::-;6917:33;-1:-1:-1;;;;;;6964:36:75;;;;:79;;;7037:5;-1:-1:-1;;;;;7004:39:75;:13;-1:-1:-1;;;;;7004:19:75;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;7004:39:75;;6964:79;6956:109;;;;-1:-1:-1;;;6956:109:75;;;;;;;;;;;;7071:14;7088:12;1566:11:97;;-1:-1:-1;;;;;1566:11:97;;1491:91;7088:12:75;7071:29;-1:-1:-1;7106:18:75;-1:-1:-1;;;;;7135:28:75;;;7131:459;;7192:30;;-1:-1:-1;;;7192:30:75;;7216:4;7192:30;;;1729:51:101;7173:16:75;;-1:-1:-1;;;;;7192:15:75;;;;;1702:18:101;;7192:30:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7173:49;-1:-1:-1;7234:13:75;;7230:354;;7263:5;7259:317;;;7381:33;7398:5;7405:8;7381:16;:33::i;:::-;7358:56;-1:-1:-1;7358:56:75;-1:-1:-1;7259:317:75;;;7513:52;;-1:-1:-1;;;7513:52:75;;;;;5356:25:101;;;7544:4:75;5397:18:101;;;5390:60;;;5466:18;;;5459:60;-1:-1:-1;;;;;7513:12:75;;;;;5329:18:101;;7513:52:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7500:65;;7259:317;7165:425;7131:459;1650:11:97;:19;;-1:-1:-1;;;;;;1650:19:97;-1:-1:-1;;;;;1650:19:97;;;;;7680:54:75;7723:9;;7702:10;7695:38;;;;:::i;:::-;7680:14;:54::i;:::-;7752:1;7740:9;:13;7764:47;;470:14:101;;463:22;445:41;;-1:-1:-1;;;;;7764:47:75;;;;;;;;;;433:2:101;418:18;7764:47:75;;;;;;;6894:922;;;;6826:990;;:::o;2404:109:97:-;2476:32;2488:11;2501:6;2476:11;:32::i;:::-;2404:109;;:::o;11927:366:75:-;11966:11;11980:12;1566:11:97;;-1:-1:-1;;;;;1566:11:97;;1491:91;11980:12:75;11966:26;-1:-1:-1;;;;;;12006:25:75;;11998:55;;;;-1:-1:-1;;;11998:55:75;;;;;;;;;;;;12103:27;;-1:-1:-1;;;12103:27:75;;12124:4;12103:27;;;1729:51:101;12059:22:75;;-1:-1:-1;;;;;12084:18:75;;;;;;;12103:12;;1702:18:101;;12103:27:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12084:47;;;;;;;;;;;;;3163:25:101;;3151:2;3136:18;;3017:177;12084:47:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12059:72;;12137:13;12185:9;;12160:14;12153:42;;;;:::i;:::-;12137:58;-1:-1:-1;12205:11:75;;12201:88;;12226:9;:26;;;12260:22;12275:6;12260:14;:22::i;:::-;11960:333;;;11927:366::o;3911:214:33:-;2568:13;:11;:13::i;:::-;4026:36:::1;4044:17;4026;:36::i;:::-;4072:46;4094:17;4113:4;4072:21;:46::i;3466:126::-:0;3527:7;2839:20;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;;3466:126:33;:::o;1419:68:97:-;4158:30:32;4191:26;:24;:26::i;:::-;4302:15;;4158:59;;-1:-1:-1;4302:15:32;-1:-1:-1;;;4302:15:32;;;4301:16;;4348:14;;4279:19;4724:16;;:34;;;;;4744:14;4724:34;4704:54;;4768:17;4788:11;:16;;4803:1;4788:16;:50;;;;-1:-1:-1;4816:4:32;4808:25;:30;4788:50;4768:70;;4854:12;4853:13;:30;;;;;4871:12;4870:13;4853:30;4849:91;;;4906:23;;-1:-1:-1;;;4906:23:32;;;;;;;;;;;4849:91;4949:18;;-1:-1:-1;;4949:18:32;4966:1;4949:18;;;4977:67;;;;5011:22;;-1:-1:-1;;;;5011:22:32;-1:-1:-1;;;5011:22:32;;;4977:67;1466:16:97::1;:14;:16::i;:::-;5068:14:32::0;5064:101;;;5098:23;;-1:-1:-1;;;;5098:23:32;;;5140:14;;-1:-1:-1;6020:50:101;;5140:14:32;;6008:2:101;5993:18;5140:14:32;;;;;;;5064:101;4092:1079;;;;;1419:68:97:o;11246:445:75:-;11308:11;11322:12;1566:11:97;;-1:-1:-1;;;;;1566:11:97;;1491:91;11322:12:75;11308:26;-1:-1:-1;;;;;;11348:25:75;;11340:55;;;;-1:-1:-1;;;11340:55:75;;;;;;;;;;;;11401:15;11419:10;:8;:10::i;:::-;11401:28;;-1:-1:-1;;11439:6:75;:27;11435:143;;11485:7;11476:16;;11435:143;;;11521:6;11531:7;11521:17;;;;11513:58;;;;-1:-1:-1;;;11513:58:75;;;;;6255:25:101;;;;6296:18;;;6289:34;6228:18;;11513:58:75;;;;;;;;;;;11435:143;11596:6;11583:9;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;11608:10:75;;-1:-1:-1;11608:8:75;:10::i;:::-;:39;;-1:-1:-1;;;11608:39:75;;-1:-1:-1;;;;;6656:32:101;;;11608:39:75;;;6638:51:101;6705:18;;;6698:34;;;11608:18:75;;;;;;;6611::101;;11608:39:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;11653:33:75;;-1:-1:-1;;;11653:33:75;;;;;7167:25:101;;;11680:4:75;7208:18:101;;;7201:60;-1:-1:-1;;;;;11653:10:75;;;;;7140:18:101;;11653:33:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11302:389;;11246:445;:::o;2284:116:97:-;2333:62;2361:10;2381:4;2388:6;2333:10;:8;:10::i;:::-;-1:-1:-1;;;;;2333:27:97;;:62;;:27;:62::i;:::-;2284:116;:::o;10717:268:75:-;10783:18;10809:16;:14;:16::i;:::-;10831:11;10845:12;1566:11:97;;-1:-1:-1;;;;;1566:11:97;;1491:91;10845:12:75;10831:26;;-1:-1:-1;;10867:6:75;:27;10863:71;;10905:29;;-1:-1:-1;;;10905:29:75;;10928:4;10905:29;;;1729:51:101;-1:-1:-1;;;;;10905:14:75;;;;;1702:18:101;;10905:29:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10896:38;;10863:71;10940:21;10950:2;10954:6;10940:9;:21::i;:::-;-1:-1:-1;10974:6:75;;10717:268;-1:-1:-1;10717:268:75:o;2464:97:73:-;2505:14;2534:11;-1:-1:-1;;;;;2534:20:73;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2527:29;;2464:97;:::o;9360:617:75:-;9505:36;;-1:-1:-1;;;9505:36:75;;9535:4;9505:36;;;1729:51:101;9462:18:75;;;;-1:-1:-1;;;;;9505:21:75;;;;;1702:18:101;;9505:36:75;;;;;;;;;;;;;;;;;;-1:-1:-1;9505:36:75;;;;;;;;-1:-1:-1;;9505:36:75;;;;;;;;;;;;:::i;:::-;;;9501:234;;;9588:14;9579:6;:23;9575:94;;;9623:4;9614:13;;9654:6;9637:23;;9575:94;9542:184;9501:234;9744:64;;-1:-1:-1;;;9744:64:75;;;;;5356:25:101;;;9787:4:75;5397:18:101;;;5390:60;;;5466:18;;;5459:60;-1:-1:-1;;;;;9744:18:75;;;;;5329::101;;9744:64:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;9744:64:75;;;;;;;;-1:-1:-1;;9744:64:75;;;;;;;;;;;;:::i;:::-;;;9740:233;;9917:11;-1:-1:-1;;;;;9888:57:75;;9930:14;9888:57;;;;3163:25:101;;3151:2;3136:18;;3017:177;9888:57:75;;;;;;;;-1:-1:-1;9962:4:75;9740:233;;;9855:6;-1:-1:-1;9740:233:75;9360:617;;;;;:::o;2124:156:97:-;2215:16;2197:14;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;2237:38:97;;-1:-1:-1;2258:16:97;2237:20;:38::i;4034:510:75:-;4115:11;-1:-1:-1;;;;;4115:25:75;;4107:71;;;;-1:-1:-1;;;4107:71:75;;-1:-1:-1;;;;;1747:32:101;;;4107:71:75;;;1729:51:101;1702:18;;4107:71:75;1562:224:101;4107:71:75;;4188:6;4198:1;4188:11;4184:24;;4034:510;;:::o;4184:24::-;4213:15;4231:10;:8;:10::i;:::-;4213:28;;4261:6;4251:7;:16;4247:209;;;4277:11;4291:12;1566:11:97;;-1:-1:-1;;;;;1566:11:97;;1491:91;4291:12:75;4277:26;-1:-1:-1;;;;;;4315:25:75;;;4311:81;;4352:31;4362:2;4366:16;4375:7;4366:6;:16;:::i;:::-;4352:9;:31::i;:::-;4269:187;4247:209;-1:-1:-1;;;;;4465:28:75;;4488:4;4465:28;4461:78;;4495:44;4519:11;4532:6;4495:10;:8;:10::i;:::-;-1:-1:-1;;;;;4495:23:75;;:44;:23;:44::i;4328:312:33:-;4408:4;-1:-1:-1;;;;;4417:6:33;4400:23;;;:120;;;4514:6;-1:-1:-1;;;;;4478:42:33;:32;-1:-1:-1;;;;;;;;;;;1519:53:29;-1:-1:-1;;;;;1519:53:29;;1441:138;4478:32:33;-1:-1:-1;;;;;4478:42:33;;;4400:120;4383:251;;;4594:29;;-1:-1:-1;;;4594:29:33;;;;;;;;;;;4383:251;4328:312::o;1807:106:73:-;1880:28;1900:7;1880:19;:28::i;5782:538:33:-;5899:17;-1:-1:-1;;;;;5881:50:33;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5881:52:33;;;;;;;;-1:-1:-1;;5881:52:33;;;;;;;;;;;;:::i;:::-;;;5877:437;;6243:60;;-1:-1:-1;;;6243:60:33;;-1:-1:-1;;;;;1747:32:101;;6243:60:33;;;1729:51:101;1702:18;;6243:60:33;1562:224:101;5877:437:33;-1:-1:-1;;;;;;;;;;;5975:40:33;;5971:120;;6042:34;;-1:-1:-1;;;6042:34:33;;;;;3163:25:101;;;3136:18;;6042:34:33;3017:177:101;5971:120:33;6104:54;6134:17;6153:4;6104:29;:54::i;4757:213::-;4831:4;-1:-1:-1;;;;;4840:6:33;4823:23;;4819:145;;4924:29;;-1:-1:-1;;;4924:29:33;;;;;;;;;;;9071:205:32;9129:30;;3147:66;9186:27;8819:122;3293:91:75;6929:20:32;:18;:20::i;:::-;3351:28:75::1;:26;:28::i;10077:121::-:0;10120:7;10157:10;:8;:10::i;:::-;10142:51;;-1:-1:-1;;;10142:51:75;;10187:4;10142:51;;;1729::101;-1:-1:-1;;;;;10142:36:75;;;;;;;1702:18:101;;10142:51:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;1662:232:40:-;1767:47;1785:5;1792:4;1798:2;1802:5;1809:4;1767:17;:47::i;:::-;1762:126;;1837:40;;-1:-1:-1;;;1837:40:40;;-1:-1:-1;;;;;1747:32:101;;1837:40:40;;;1729:51:101;1702:18;;1837:40:40;1562:224:101;8525:386:75;8597:58;;-1:-1:-1;;;8597:58:75;;;;;5356:25:101;;;8634:4:75;5397:18:101;;;5390:60;;;5466:18;;;5459:60;-1:-1:-1;;;;;8597:20:75;;;;;5329:18:101;;8597:58:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8674:9;;8665:6;:18;8661:246;;;8797:42;8828:9;;8819:6;:18;;;;:::i;8797:42::-;8859:1;8847:9;:13;2404:109:97;;:::o;8661:246:75:-;8894:6;8881:9;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;8525:386:75;;:::o;5829:100::-;5898:26;;3163:25:101;;;5898:26:75;;3151:2:101;3136:18;5898:26:75;;;;;;;5829:100;:::o;1219:204:40:-;1306:37;1320:5;1327:2;1331:5;1338:4;1306:13;:37::i;:::-;1301:116;;1366:40;;-1:-1:-1;;;1366:40:40;;-1:-1:-1;;;;;1747:32:101;;1366:40:40;;;1729:51:101;1702:18;;1366:40:40;1562:224:101;1917:180:73;2041:11;-1:-1:-1;;;;;1995:57:73;2016:7;-1:-1:-1;;;;;1995:40:73;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1995:57:73;;1991:101;;2061:31;;-1:-1:-1;;;2061:31:73;;;;;;;;;;;2264:344:29;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:29;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;2454:148::-;2573:18;:16;:18::i;7082:141:32:-;7149:17;:15;:17::i;:::-;7144:73;;7189:17;;-1:-1:-1;;;7189:17:32;;;;;;;;;;;1737:66:73;6929:20:32;:18;:20::i;10165:1393:40:-;10460:4;10454:11;-1:-1:-1;;;10323:12:40;10478:22;;;-1:-1:-1;;;;;10526:26:40;;;10520:4;10513:40;10579:24;;10573:4;10566:38;10624:4;10617:19;;;10323:12;10700:4;10323:12;10688:4;10323:12;;10672:5;10665;10660:45;10649:56;;10917:1;10910:4;10904:11;10901:18;10892:7;10888:32;10878:606;;11049:6;11039:7;11032:15;11028:28;11025:165;;;11105:16;11099:4;11094:3;11079:43;11155:16;11150:3;11143:29;11025:165;11466:1;11458:5;11446:18;11443:25;11424:16;11417:24;11413:56;11404:7;11400:70;11389:81;;10878:606;11504:4;11497:17;-1:-1:-1;11540:1:40;11534:4;11527:15;10165:1393;;-1:-1:-1;;;;;10165:1393:40:o;8373:1244::-;8600:4;8594:11;-1:-1:-1;;;8467:12:40;8618:22;;;-1:-1:-1;;;;;8666:24:40;;8660:4;8653:38;8711:4;8704:19;;;8467:12;8787:4;8467:12;8775:4;8467:12;;8759:5;8752;8747:45;8736:56;;9004:1;8997:4;8991:11;8988:18;8979:7;8975:32;8965:606;;9136:6;9126:7;9119:15;9115:28;9112:165;;;9192:16;9186:4;9181:3;9166:43;9242:16;9237:3;9230:29;9112:165;9553:1;9545:5;9533:18;9530:25;9511:16;9504:24;9500:56;9491:7;9487:70;9476:81;;8965:606;9591:4;9584:17;-1:-1:-1;8373:1244:40;;-1:-1:-1;;;;8373:1244:40:o;1671:281:29:-;1748:17;-1:-1:-1;;;;;1748:29:29;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:29;;-1:-1:-1;;;;;1747:32:101;;1805:47:29;;;1729:51:101;1702:18;;1805:47:29;1562:224:101;1744:119:29;-1:-1:-1;;;;;;;;;;;1872:73:29;;-1:-1:-1;;;;;;1872:73:29;-1:-1:-1;;;;;1872:73:29;;;;;;;;;;1671:281::o;4691:549:45:-;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:45;4583:16:49;4886:33:45;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:45;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;:::-;4962:32;;;;;4870:364;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:45;;-1:-1:-1;;;;;1747:32:101;;5045:24:45;;;1729:51:101;1702:18;;5045:24:45;1562:224:101;5011:223:45;4583:16:49;5090:33:45;5086:148;;5139:27;:25;:27::i;:::-;5086:148;;;5204:19;;-1:-1:-1;;;5204:19:45;;;;;;;;;;;5086:148;4788:452;4691:549;;;;:::o;6113:122:29:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:29;;;;;;;;;;;8485:120:32;8535:4;8558:26;:24;:26::i;:::-;:40;-1:-1:-1;;;8558:40:32;;;;;;-1:-1:-1;8485:120:32:o;3383:242:49:-;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:49:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;14:286:101;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:101;;209:43;;199:71;;266:1;263;256:12;199:71;289:5;14:286;-1:-1:-1;;;14:286:101:o;497:141::-;-1:-1:-1;;;;;582:31:101;;572:42;;562:70;;628:1;625;618:12;643:118;729:5;722:13;715:21;708:5;705:32;695:60;;751:1;748;741:12;766:409;848:6;856;909:2;897:9;888:7;884:23;880:32;877:52;;;925:1;922;915:12;877:52;964:9;951:23;983:41;1018:5;983:41;:::i;:::-;1043:5;-1:-1:-1;1100:2:101;1085:18;;1072:32;1113:30;1072:32;1113:30;:::i;:::-;1162:7;1152:17;;;766:409;;;;;:::o;1180:377::-;1248:6;1256;1309:2;1297:9;1288:7;1284:23;1280:32;1277:52;;;1325:1;1322;1315:12;1277:52;1364:9;1351:23;1383:41;1418:5;1383:41;:::i;:::-;1443:5;1521:2;1506:18;;;;1493:32;;-1:-1:-1;;;1180:377:101:o;1791:127::-;1852:10;1847:3;1843:20;1840:1;1833:31;1883:4;1880:1;1873:15;1907:4;1904:1;1897:15;1923:1089;2000:6;2008;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2116:9;2103:23;2135:41;2170:5;2135:41;:::i;:::-;2195:5;-1:-1:-1;2251:2:101;2236:18;;2223:32;2278:18;2267:30;;2264:50;;;2310:1;2307;2300:12;2264:50;2333:22;;2386:4;2378:13;;2374:27;-1:-1:-1;2364:55:101;;2415:1;2412;2405:12;2364:55;2455:2;2442:16;2481:18;2473:6;2470:30;2467:56;;;2503:18;;:::i;:::-;2552:2;2546:9;2644:2;2606:17;;-1:-1:-1;;2602:31:101;;;2635:2;2598:40;2594:54;2582:67;;2679:18;2664:34;;2700:22;;;2661:62;2658:88;;;2726:18;;:::i;:::-;2762:2;2755:22;2786;;;2827:15;;;2844:2;2823:24;2820:37;-1:-1:-1;2817:57:101;;;2870:1;2867;2860:12;2817:57;2926:6;2921:2;2917;2913:11;2908:2;2900:6;2896:15;2883:50;2979:1;2974:2;2965:6;2957;2953:19;2949:28;2942:39;3000:6;2990:16;;;;;1923:1089;;;;;:::o;3606:226::-;3665:6;3718:2;3706:9;3697:7;3693:23;3689:32;3686:52;;;3734:1;3731;3724:12;3686:52;-1:-1:-1;3779:23:101;;3606:226;-1:-1:-1;3606:226:101:o;3837:418::-;3986:2;3975:9;3968:21;3949:4;4018:6;4012:13;4061:6;4056:2;4045:9;4041:18;4034:34;4120:6;4115:2;4107:6;4103:15;4098:2;4087:9;4083:18;4077:50;4176:1;4171:2;4162:6;4151:9;4147:22;4143:31;4136:42;4246:2;4239;4235:7;4230:2;4222:6;4218:15;4214:29;4203:9;4199:45;4195:54;4187:62;;;3837:418;;;;:::o;4491:261::-;4561:6;4614:2;4602:9;4593:7;4589:23;4585:32;4582:52;;;4630:1;4627;4620:12;4582:52;4662:9;4656:16;4681:41;4716:5;4681:41;:::i;4965:184::-;5035:6;5088:2;5076:9;5067:7;5063:23;5059:32;5056:52;;;5104:1;5101;5094:12;5056:52;-1:-1:-1;5127:16:101;;4965:184;-1:-1:-1;4965:184:101:o;5530:127::-;5591:10;5586:3;5582:20;5579:1;5572:31;5622:4;5619:1;5612:15;5646:4;5643:1;5636:15;5662:200;5728:9;;;5701:4;5756:9;;5784:10;;5796:12;;;5780:29;5819:12;;;5811:21;;5777:56;5774:82;;;5836:18;;:::i;6334:125::-;6399:9;;;6420:10;;;6417:36;;;6433:18;;:::i;6743:245::-;6810:6;6863:2;6851:9;6842:7;6838:23;6834:32;6831:52;;;6879:1;6876;6869:12;6831:52;6911:9;6905:16;6930:28;6952:5;6930:28;:::i;7561:216::-;7625:9;;;7653:11;;;7600:3;7683:9;;7711:10;;7707:19;;7736:10;;7728:19;;7704:44;7701:70;;;7751:18;;:::i;:::-;7701:70;;7561:216;;;;:::o;7782:128::-;7849:9;;;7870:11;;;7867:37;;;7884:18;;:::i"},"methodIdentifiers":{"UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","addMoney(uint256)":"d0bc1a88","currency()":"e5a6b10f","depositIntoYieldVault(uint256)":"ac860f74","initialize()":"8129fc1c","investedInYV()":"7d919a97","policyPool()":"4d15eb03","proxiableUUID()":"52d1902d","recordEarnings()":"4eb978a4","setYieldVault(address,bool)":"194448e5","supportsInterface(bytes4)":"01ffc9a7","transferTo(address,uint256)":"2ccb1b30","upgradeToAndCall(address,bytes)":"4f1ef286","withdrawFromYieldVault(uint256)":"d336078c","yieldVault()":"a7f8a5e2"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"policyPool_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidYieldVault\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"required\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"available\",\"type\":\"uint256\"}],\"name\":\"NotEnoughCash\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OnlyPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ReserveInvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UpgradeCannotChangePolicyPool\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"earnings\",\"type\":\"int256\"}],\"name\":\"EarningsRecorded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"ErrorIgnoredDeinvestingVault\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"newVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"forced\",\"type\":\"bool\"}],\"name\":\"YieldVaultChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"addMoney\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"depositIntoYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"investedInYV\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"recordEarnings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"newYieldVault\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"force\",\"type\":\"bool\"}],\"name\":\"setYieldVault\",\"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\":\"address\",\"name\":\"destination\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFromYieldVault\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"deinvested\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"yieldVault\",\"outputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"This contract holds the pure premiums of a set of risk modules. The pure premiums is the part of the premium that is expected to cover the losses. The contract keeps track of the pure premiums of the active policies (_activePurePremiums) and the surplus or deficit generated by the finalized policies (pure premiums collected - losses). Collaborates with a junior {EToken} and a senior {EToken} that act as lenders when the premiums aren't enough to cover the losses.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotEnoughCash(uint256,uint256)\":[{\"params\":{\"available\":\"The currently available liquid balance\",\"required\":\"The requested amount of liquid funds\"}}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"ReserveInvalidReceiver(address)\":[{\"params\":{\"receiver\":\"The receiver that was provided (cannot be the zero address)\"}}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"events\":{\"EarningsRecorded(int256)\":{\"params\":{\"earnings\":\"The amount of earnings generated since last record. It's positive in the case of earnings or negative when there are losses.\"}},\"ErrorIgnoredDeinvestingVault(address,uint256)\":{\"params\":{\"oldVault\":\"The vault that failed to redeem\",\"shares\":\"The number of shares attempted to redeem\"}},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"},\"YieldVaultChanged(address,address,bool)\":{\"details\":\"When replacing an existing vault, the reserve attempts to redeem the full position (unless `force` is used).\",\"params\":{\"forced\":\"True if the switch ignored a partial/failed deinvestment and proceeded anyway\",\"newVault\":\"The new yield vault (can be `address(0)`)\",\"oldVault\":\"The previous yield vault (can be `address(0)`)\"}}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"depositIntoYieldVault(uint256)\":{\"custom:pre\":\"_balance() >= amount\",\"params\":{\"amount\":\"Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`\"}},\"initialize()\":{\"details\":\"Initializes the PremiumsAccount\"},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"recordEarnings()\":{\"custom:emits\":\"{EarningsRecorded}\",\"details\":\"Computes the value of the assets invested in the yieldVault() and then calls `_yieldEarnings` to      reflect the earnings/losses in the way defined for each reserve.\"},\"setYieldVault(address,bool)\":{\"custom:emits\":\"{YieldVaultChanged}\",\"params\":{\"force\":\"When a previous yield vault exists, before setting the new one, the funds are deinvested. When              `force` is true, an error in the deinvestment of the assets (or some assets not withdrawable)              will be ignored. When `force` is false, it will revert if `oldVault.balanceOf(address(this)) != 0`.\",\"newYieldVault\":\"The address of the new yield vault to assign to the reserve. If is `address(0)` it means                      the reserve will not have a yield vault. If not `address(0)` it MUST be an IERC4626                      where `newYieldVault.asset()` equals `.currency()`\"}},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"},\"withdrawFromYieldVault(uint256)\":{\"custom:pre\":\"yieldVault() != address(0)yieldVault().maxWithdraw(address(this)) >= amount             (this condition is not checked here; exceeding it is expected to revert in the vault during _deinvest()).\",\"params\":{\"amount\":\"Amount to withdraw from the `yieldVault()`. If equal type(uint256).max, deinvests maxWithdraw()\"},\"returns\":{\"deinvested\":\"The amount that was deinvested and added as liquid funds to the reserve\"}}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"title\":\"Ensuro Premiums Account\",\"version\":1},\"userdoc\":{\"errors\":{\"InvalidYieldVault()\":[{\"notice\":\"Thrown when the yield vault is unset or invalid for the configured currency.\"}],\"NotEnoughCash(uint256,uint256)\":[{\"notice\":\"Thrown when trying to invest more cash than currently liquid in the reserve.\"}],\"ReserveInvalidReceiver(address)\":[{\"notice\":\"Thrown when attempting to transfer to the zero address.\"}]},\"events\":{\"EarningsRecorded(int256)\":{\"notice\":\"Event emitted when investment yields are accounted in the reserve\"},\"ErrorIgnoredDeinvestingVault(address,uint256)\":{\"notice\":\"Emitted when a forced deinvestment ignored a redeem failure.\"},\"YieldVaultChanged(address,address,bool)\":{\"notice\":\"Emitted when the yield vault is changed.\"}},\"kind\":\"user\",\"methods\":{\"depositIntoYieldVault(uint256)\":{\"notice\":\"Moves money that's liquid in the contract to the yield vault, to generate yields\"},\"investedInYV()\":{\"notice\":\"Returns the amount of funds that were invested in the yieldVault, up to the last recorded earnings / losses\"},\"policyPool()\":{\"notice\":\"Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\"},\"setYieldVault(address,bool)\":{\"notice\":\"Sets the new yield vault for this reserve. If the reserve had previously a yield vault, it will deinvest all the funds, making all of the liquid in the reserve balance.\"},\"withdrawFromYieldVault(uint256)\":{\"notice\":\"Deinvest from the vault a given amount.\"},\"yieldVault()\":{\"notice\":\"Returns the address of the yield vault, where the part of the funds are invested to generate additional      yields. Can be `address(0)` if no yieldVault has been set.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/mocks/ReserveMock.sol\":\"ReserveMock\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/PolicyPoolComponent.sol\":{\"keccak256\":\"0x59be0e577af81ab215ac850da84692d6ae7a465917701260f390bc92240c4707\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://c55648f183f32e74d6d83cfc2a8eb606c75a6c3bc598e8ec2a38f9fb3b676f8c\",\"dweb:/ipfs/QmdDFuZz6cn9ywUuxv4bTY3STMWQMWTAzitbocywFMoByb\"]},\"contracts/Reserve.sol\":{\"keccak256\":\"0x2c4bd6d6c13fd006af456f228df1242eb857f5ec27fe09175579ded50dc28392\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b573114bbfb87368b5fbc535b2bf05b4bffb797618054f54e589eb078c6d4a9e\",\"dweb:/ipfs/QmP3gkDPDYhdLVh86nAtndb4CGNTMdM2FNantCKPTjD3TA\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]},\"contracts/mocks/ReserveMock.sol\":{\"keccak256\":\"0xef45cba902093fb7fad2abe5b8b9a79565719c8aeaa015ffa286e537547ce600\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b99e7a976aa61be4c9d595c1480fe646d80d3ce525e8e2354f96ab5d18306ce2\",\"dweb:/ipfs/QmT7b2kjYrbehrfw7qdLREXxhQrZ7cBNTkHfFcGqjukEE7\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":25608,"contract":"contracts/mocks/ReserveMock.sol:ReserveMock","label":"__gap","offset":0,"slot":"0","type":"t_array(t_uint256)50_storage"},{"astId":27384,"contract":"contracts/mocks/ReserveMock.sol:ReserveMock","label":"_invested","offset":0,"slot":"50","type":"t_uint256"},{"astId":28014,"contract":"contracts/mocks/ReserveMock.sol:ReserveMock","label":"__gap","offset":0,"slot":"51","type":"t_array(t_uint256)49_storage"},{"astId":30599,"contract":"contracts/mocks/ReserveMock.sol:ReserveMock","label":"_yieldVault","offset":0,"slot":"100","type":"t_contract(IERC4626)6400"},{"astId":30601,"contract":"contracts/mocks/ReserveMock.sol:ReserveMock","label":"_totalEarnings","offset":0,"slot":"101","type":"t_int256"},{"astId":30698,"contract":"contracts/mocks/ReserveMock.sol:ReserveMock","label":"__gap","offset":0,"slot":"102","type":"t_array(t_uint256)48_storage"}],"types":{"t_array(t_uint256)48_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[48]","numberOfBytes":"1536"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_contract(IERC4626)6400":{"encoding":"inplace","label":"contract IERC4626","numberOfBytes":"20"},"t_int256":{"encoding":"inplace","label":"int256","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"contracts/mocks/RiskModuleMock.sol":{"RiskModuleMock":{"abi":[{"inputs":[{"internalType":"contract IPolicyPool","name":"policyPool_","type":"address"},{"internalType":"contract IPremiumsAccount","name":"premiumsAccount_","type":"address"},{"internalType":"address","name":"wallet_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premiumsAccount","outputs":[{"internalType":"contract IPremiumsAccount","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"forwardTo","type":"address"}],"name":"setForwardTo","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":[],"name":"wallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_29382":{"entryPoint":null,"id":29382,"parameterSlots":1,"returnSlots":0},"@_30748":{"entryPoint":null,"id":30748,"parameterSlots":3,"returnSlots":0},"abi_decode_tuple_t_contract$_IPolicyPool_$29171t_contract$_IPremiumsAccount_$29276t_address_fromMemory":{"entryPoint":111,"id":null,"parameterSlots":2,"returnSlots":3},"validator_revert_contract_IPolicyPool":{"entryPoint":88,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:770:101","nodeType":"YulBlock","src":"0:770:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"72:86:101","nodeType":"YulBlock","src":"72:86:101","statements":[{"body":{"nativeSrc":"136:16:101","nodeType":"YulBlock","src":"136:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"145:1:101","nodeType":"YulLiteral","src":"145:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"148:1:101","nodeType":"YulLiteral","src":"148:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"138:6:101","nodeType":"YulIdentifier","src":"138:6:101"},"nativeSrc":"138:12:101","nodeType":"YulFunctionCall","src":"138:12:101"},"nativeSrc":"138:12:101","nodeType":"YulExpressionStatement","src":"138:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"95:5:101","nodeType":"YulIdentifier","src":"95:5:101"},{"arguments":[{"name":"value","nativeSrc":"106:5:101","nodeType":"YulIdentifier","src":"106:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"121:3:101","nodeType":"YulLiteral","src":"121:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"126:1:101","nodeType":"YulLiteral","src":"126:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"117:3:101","nodeType":"YulIdentifier","src":"117:3:101"},"nativeSrc":"117:11:101","nodeType":"YulFunctionCall","src":"117:11:101"},{"kind":"number","nativeSrc":"130:1:101","nodeType":"YulLiteral","src":"130:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"113:3:101","nodeType":"YulIdentifier","src":"113:3:101"},"nativeSrc":"113:19:101","nodeType":"YulFunctionCall","src":"113:19:101"}],"functionName":{"name":"and","nativeSrc":"102:3:101","nodeType":"YulIdentifier","src":"102:3:101"},"nativeSrc":"102:31:101","nodeType":"YulFunctionCall","src":"102:31:101"}],"functionName":{"name":"eq","nativeSrc":"92:2:101","nodeType":"YulIdentifier","src":"92:2:101"},"nativeSrc":"92:42:101","nodeType":"YulFunctionCall","src":"92:42:101"}],"functionName":{"name":"iszero","nativeSrc":"85:6:101","nodeType":"YulIdentifier","src":"85:6:101"},"nativeSrc":"85:50:101","nodeType":"YulFunctionCall","src":"85:50:101"},"nativeSrc":"82:70:101","nodeType":"YulIf","src":"82:70:101"}]},"name":"validator_revert_contract_IPolicyPool","nativeSrc":"14:144:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"61:5:101","nodeType":"YulTypedName","src":"61:5:101","type":""}],"src":"14:144:101"},{"body":{"nativeSrc":"325:443:101","nodeType":"YulBlock","src":"325:443:101","statements":[{"body":{"nativeSrc":"371:16:101","nodeType":"YulBlock","src":"371:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"380:1:101","nodeType":"YulLiteral","src":"380:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"383:1:101","nodeType":"YulLiteral","src":"383:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"373:6:101","nodeType":"YulIdentifier","src":"373:6:101"},"nativeSrc":"373:12:101","nodeType":"YulFunctionCall","src":"373:12:101"},"nativeSrc":"373:12:101","nodeType":"YulExpressionStatement","src":"373:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"346:7:101","nodeType":"YulIdentifier","src":"346:7:101"},{"name":"headStart","nativeSrc":"355:9:101","nodeType":"YulIdentifier","src":"355:9:101"}],"functionName":{"name":"sub","nativeSrc":"342:3:101","nodeType":"YulIdentifier","src":"342:3:101"},"nativeSrc":"342:23:101","nodeType":"YulFunctionCall","src":"342:23:101"},{"kind":"number","nativeSrc":"367:2:101","nodeType":"YulLiteral","src":"367:2:101","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"338:3:101","nodeType":"YulIdentifier","src":"338:3:101"},"nativeSrc":"338:32:101","nodeType":"YulFunctionCall","src":"338:32:101"},"nativeSrc":"335:52:101","nodeType":"YulIf","src":"335:52:101"},{"nativeSrc":"396:29:101","nodeType":"YulVariableDeclaration","src":"396:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"415:9:101","nodeType":"YulIdentifier","src":"415:9:101"}],"functionName":{"name":"mload","nativeSrc":"409:5:101","nodeType":"YulIdentifier","src":"409:5:101"},"nativeSrc":"409:16:101","nodeType":"YulFunctionCall","src":"409:16:101"},"variables":[{"name":"value","nativeSrc":"400:5:101","nodeType":"YulTypedName","src":"400:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"472:5:101","nodeType":"YulIdentifier","src":"472:5:101"}],"functionName":{"name":"validator_revert_contract_IPolicyPool","nativeSrc":"434:37:101","nodeType":"YulIdentifier","src":"434:37:101"},"nativeSrc":"434:44:101","nodeType":"YulFunctionCall","src":"434:44:101"},"nativeSrc":"434:44:101","nodeType":"YulExpressionStatement","src":"434:44:101"},{"nativeSrc":"487:15:101","nodeType":"YulAssignment","src":"487:15:101","value":{"name":"value","nativeSrc":"497:5:101","nodeType":"YulIdentifier","src":"497:5:101"},"variableNames":[{"name":"value0","nativeSrc":"487:6:101","nodeType":"YulIdentifier","src":"487:6:101"}]},{"nativeSrc":"511:40:101","nodeType":"YulVariableDeclaration","src":"511:40:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"536:9:101","nodeType":"YulIdentifier","src":"536:9:101"},{"kind":"number","nativeSrc":"547:2:101","nodeType":"YulLiteral","src":"547:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"532:3:101","nodeType":"YulIdentifier","src":"532:3:101"},"nativeSrc":"532:18:101","nodeType":"YulFunctionCall","src":"532:18:101"}],"functionName":{"name":"mload","nativeSrc":"526:5:101","nodeType":"YulIdentifier","src":"526:5:101"},"nativeSrc":"526:25:101","nodeType":"YulFunctionCall","src":"526:25:101"},"variables":[{"name":"value_1","nativeSrc":"515:7:101","nodeType":"YulTypedName","src":"515:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"598:7:101","nodeType":"YulIdentifier","src":"598:7:101"}],"functionName":{"name":"validator_revert_contract_IPolicyPool","nativeSrc":"560:37:101","nodeType":"YulIdentifier","src":"560:37:101"},"nativeSrc":"560:46:101","nodeType":"YulFunctionCall","src":"560:46:101"},"nativeSrc":"560:46:101","nodeType":"YulExpressionStatement","src":"560:46:101"},{"nativeSrc":"615:17:101","nodeType":"YulAssignment","src":"615:17:101","value":{"name":"value_1","nativeSrc":"625:7:101","nodeType":"YulIdentifier","src":"625:7:101"},"variableNames":[{"name":"value1","nativeSrc":"615:6:101","nodeType":"YulIdentifier","src":"615:6:101"}]},{"nativeSrc":"641:40:101","nodeType":"YulVariableDeclaration","src":"641:40:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"666:9:101","nodeType":"YulIdentifier","src":"666:9:101"},{"kind":"number","nativeSrc":"677:2:101","nodeType":"YulLiteral","src":"677:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"662:3:101","nodeType":"YulIdentifier","src":"662:3:101"},"nativeSrc":"662:18:101","nodeType":"YulFunctionCall","src":"662:18:101"}],"functionName":{"name":"mload","nativeSrc":"656:5:101","nodeType":"YulIdentifier","src":"656:5:101"},"nativeSrc":"656:25:101","nodeType":"YulFunctionCall","src":"656:25:101"},"variables":[{"name":"value_2","nativeSrc":"645:7:101","nodeType":"YulTypedName","src":"645:7:101","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"728:7:101","nodeType":"YulIdentifier","src":"728:7:101"}],"functionName":{"name":"validator_revert_contract_IPolicyPool","nativeSrc":"690:37:101","nodeType":"YulIdentifier","src":"690:37:101"},"nativeSrc":"690:46:101","nodeType":"YulFunctionCall","src":"690:46:101"},"nativeSrc":"690:46:101","nodeType":"YulExpressionStatement","src":"690:46:101"},{"nativeSrc":"745:17:101","nodeType":"YulAssignment","src":"745:17:101","value":{"name":"value_2","nativeSrc":"755:7:101","nodeType":"YulIdentifier","src":"755:7:101"},"variableNames":[{"name":"value2","nativeSrc":"745:6:101","nodeType":"YulIdentifier","src":"745:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$29171t_contract$_IPremiumsAccount_$29276t_address_fromMemory","nativeSrc":"163:605:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"275:9:101","nodeType":"YulTypedName","src":"275:9:101","type":""},{"name":"dataEnd","nativeSrc":"286:7:101","nodeType":"YulTypedName","src":"286:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"298:6:101","nodeType":"YulTypedName","src":"298:6:101","type":""},{"name":"value1","nativeSrc":"306:6:101","nodeType":"YulTypedName","src":"306:6:101","type":""},{"name":"value2","nativeSrc":"314:6:101","nodeType":"YulTypedName","src":"314:6:101","type":""}],"src":"163:605:101"}]},"contents":"{\n    { }\n    function validator_revert_contract_IPolicyPool(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$29171t_contract$_IPremiumsAccount_$29276t_address_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IPolicyPool(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IPolicyPool(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_contract_IPolicyPool(value_2)\n        value2 := value_2\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60c060405234801561000f575f5ffd5b5060405161030438038061030483398101604081905261002e9161006f565b5f80546001600160a01b0319166001600160a01b039485161790559082166080521660a0526100b9565b6001600160a01b038116811461006c575f5ffd5b50565b5f5f5f60608486031215610081575f5ffd5b835161008c81610058565b602085015190935061009d81610058565b60408501519092506100ae81610058565b809150509250925092565b60805160a05161022b6100d95f395f60d601525f610108015261022b5ff3fe608060405260043610610049575f3560e01c806301ffc9a7146100535780634d15eb0314610098578063521eb273146100c857806373a952e8146100fa578063d4b270011461012c575b610051610167565b005b34801561005e575f5ffd5b5061008361006d3660046101a1565b6001600160e01b0319166321b7e09b60e01b1490565b60405190151581526020015b60405180910390f35b3480156100a3575f5ffd5b505f546001600160a01b03165b6040516001600160a01b03909116815260200161008f565b3480156100d3575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000006100b0565b348015610105575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000006100b0565b348015610137575f5ffd5b506100516101463660046101cf565b5f80546001600160a01b0319166001600160a01b0392909216919091179055565b61018061017b5f546001600160a01b031690565b610182565b565b365f5f375f5f365f5f855af13d5f5f3e80801561019d573d5ff35b3d5ffd5b5f602082840312156101b1575f5ffd5b81356001600160e01b0319811681146101c8575f5ffd5b9392505050565b5f602082840312156101df575f5ffd5b81356001600160a01b03811681146101c8575f5ffdfea26469706673582212209f06b4b91507c9f8c6358277e421be0a513291a6fe5a9918f8c54fb21409bc6064736f6c634300081e0033","opcodes":"PUSH1 0xC0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x304 CODESIZE SUB DUP1 PUSH2 0x304 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2E SWAP2 PUSH2 0x6F JUMP JUMPDEST PUSH0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND OR SWAP1 SSTORE SWAP1 DUP3 AND PUSH1 0x80 MSTORE AND PUSH1 0xA0 MSTORE PUSH2 0xB9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x6C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x81 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 MLOAD PUSH2 0x8C DUP2 PUSH2 0x58 JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MLOAD SWAP1 SWAP4 POP PUSH2 0x9D DUP2 PUSH2 0x58 JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0xAE DUP2 PUSH2 0x58 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH2 0x22B PUSH2 0xD9 PUSH0 CODECOPY PUSH0 PUSH1 0xD6 ADD MSTORE PUSH0 PUSH2 0x108 ADD MSTORE PUSH2 0x22B PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x49 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x53 JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x98 JUMPI DUP1 PUSH4 0x521EB273 EQ PUSH2 0xC8 JUMPI DUP1 PUSH4 0x73A952E8 EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0xD4B27001 EQ PUSH2 0x12C JUMPI JUMPDEST PUSH2 0x51 PUSH2 0x167 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x83 PUSH2 0x6D CALLDATASIZE PUSH1 0x4 PUSH2 0x1A1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH4 0x21B7E09B PUSH1 0xE0 SHL EQ SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x8F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xD3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0xB0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x105 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0xB0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x137 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51 PUSH2 0x146 CALLDATASIZE PUSH1 0x4 PUSH2 0x1CF JUMP JUMPDEST PUSH0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x180 PUSH2 0x17B PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x182 JUMP JUMPDEST JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 PUSH0 DUP6 GAS CALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0x19D JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x1C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1C8 JUMPI PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP16 MOD 0xB4 0xB9 ISZERO SMOD 0xC9 EXTCALL 0xC6 CALLDATALOAD DUP3 PUSH24 0xE421BE0A513291A6FE5A9918F8C54FB21409BC6064736F6C PUSH4 0x4300081E STOP CALLER ","sourceMap":"379:939:98:-:0;;;553:209;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;656:10:92;:22;;-1:-1:-1;;;;;;656:22:92;-1:-1:-1;;;;;656:22:92;;;;;;699:35:98;;::::1;;::::0;740:17:::1;;::::0;379:939;;14:144:101;-1:-1:-1;;;;;102:31:101;;92:42;;82:70;;148:1;145;138:12;82:70;14:144;:::o;163:605::-;298:6;306;314;367:2;355:9;346:7;342:23;338:32;335:52;;;383:1;380;373:12;335:52;415:9;409:16;434:44;472:5;434:44;:::i;:::-;547:2;532:18;;526:25;497:5;;-1:-1:-1;560:46:101;526:25;560:46;:::i;:::-;677:2;662:18;;656:25;625:7;;-1:-1:-1;690:46:101;656:25;690:46;:::i;:::-;755:7;745:17;;;163:605;;;;;:::o;:::-;379:939:98;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_6939":{"entryPoint":null,"id":6939,"parameterSlots":0,"returnSlots":0},"@_delegate_29391":{"entryPoint":386,"id":29391,"parameterSlots":1,"returnSlots":0},"@_fallback_6931":{"entryPoint":359,"id":6931,"parameterSlots":0,"returnSlots":0},"@_implementation_29401":{"entryPoint":null,"id":29401,"parameterSlots":0,"returnSlots":1},"@policyPool_30760":{"entryPoint":null,"id":30760,"parameterSlots":0,"returnSlots":1},"@premiumsAccount_30770":{"entryPoint":null,"id":30770,"parameterSlots":0,"returnSlots":1},"@setForwardTo_29411":{"entryPoint":null,"id":29411,"parameterSlots":1,"returnSlots":0},"@supportsInterface_30795":{"entryPoint":null,"id":30795,"parameterSlots":1,"returnSlots":1},"@wallet_30779":{"entryPoint":null,"id":30779,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":463,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":417,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IPremiumsAccount_$29276__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:1456:101","nodeType":"YulBlock","src":"0:1456:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"83:217:101","nodeType":"YulBlock","src":"83:217:101","statements":[{"body":{"nativeSrc":"129:16:101","nodeType":"YulBlock","src":"129:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"138:1:101","nodeType":"YulLiteral","src":"138:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"141:1:101","nodeType":"YulLiteral","src":"141:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"131:6:101","nodeType":"YulIdentifier","src":"131:6:101"},"nativeSrc":"131:12:101","nodeType":"YulFunctionCall","src":"131:12:101"},"nativeSrc":"131:12:101","nodeType":"YulExpressionStatement","src":"131:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"104:7:101","nodeType":"YulIdentifier","src":"104:7:101"},{"name":"headStart","nativeSrc":"113:9:101","nodeType":"YulIdentifier","src":"113:9:101"}],"functionName":{"name":"sub","nativeSrc":"100:3:101","nodeType":"YulIdentifier","src":"100:3:101"},"nativeSrc":"100:23:101","nodeType":"YulFunctionCall","src":"100:23:101"},{"kind":"number","nativeSrc":"125:2:101","nodeType":"YulLiteral","src":"125:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"96:3:101","nodeType":"YulIdentifier","src":"96:3:101"},"nativeSrc":"96:32:101","nodeType":"YulFunctionCall","src":"96:32:101"},"nativeSrc":"93:52:101","nodeType":"YulIf","src":"93:52:101"},{"nativeSrc":"154:36:101","nodeType":"YulVariableDeclaration","src":"154:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"180:9:101","nodeType":"YulIdentifier","src":"180:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"167:12:101","nodeType":"YulIdentifier","src":"167:12:101"},"nativeSrc":"167:23:101","nodeType":"YulFunctionCall","src":"167:23:101"},"variables":[{"name":"value","nativeSrc":"158:5:101","nodeType":"YulTypedName","src":"158:5:101","type":""}]},{"body":{"nativeSrc":"254:16:101","nodeType":"YulBlock","src":"254:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:101","nodeType":"YulLiteral","src":"263:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:101","nodeType":"YulLiteral","src":"266:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:101","nodeType":"YulIdentifier","src":"256:6:101"},"nativeSrc":"256:12:101","nodeType":"YulFunctionCall","src":"256:12:101"},"nativeSrc":"256:12:101","nodeType":"YulExpressionStatement","src":"256:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"212:5:101","nodeType":"YulIdentifier","src":"212:5:101"},{"arguments":[{"name":"value","nativeSrc":"223:5:101","nodeType":"YulIdentifier","src":"223:5:101"},{"arguments":[{"kind":"number","nativeSrc":"234:3:101","nodeType":"YulLiteral","src":"234:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"239:10:101","nodeType":"YulLiteral","src":"239:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"230:3:101","nodeType":"YulIdentifier","src":"230:3:101"},"nativeSrc":"230:20:101","nodeType":"YulFunctionCall","src":"230:20:101"}],"functionName":{"name":"and","nativeSrc":"219:3:101","nodeType":"YulIdentifier","src":"219:3:101"},"nativeSrc":"219:32:101","nodeType":"YulFunctionCall","src":"219:32:101"}],"functionName":{"name":"eq","nativeSrc":"209:2:101","nodeType":"YulIdentifier","src":"209:2:101"},"nativeSrc":"209:43:101","nodeType":"YulFunctionCall","src":"209:43:101"}],"functionName":{"name":"iszero","nativeSrc":"202:6:101","nodeType":"YulIdentifier","src":"202:6:101"},"nativeSrc":"202:51:101","nodeType":"YulFunctionCall","src":"202:51:101"},"nativeSrc":"199:71:101","nodeType":"YulIf","src":"199:71:101"},{"nativeSrc":"279:15:101","nodeType":"YulAssignment","src":"279:15:101","value":{"name":"value","nativeSrc":"289:5:101","nodeType":"YulIdentifier","src":"289:5:101"},"variableNames":[{"name":"value0","nativeSrc":"279:6:101","nodeType":"YulIdentifier","src":"279:6:101"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14:286:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"49:9:101","nodeType":"YulTypedName","src":"49:9:101","type":""},{"name":"dataEnd","nativeSrc":"60:7:101","nodeType":"YulTypedName","src":"60:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"72:6:101","nodeType":"YulTypedName","src":"72:6:101","type":""}],"src":"14:286:101"},{"body":{"nativeSrc":"400:92:101","nodeType":"YulBlock","src":"400:92:101","statements":[{"nativeSrc":"410:26:101","nodeType":"YulAssignment","src":"410:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:101","nodeType":"YulIdentifier","src":"422:9:101"},{"kind":"number","nativeSrc":"433:2:101","nodeType":"YulLiteral","src":"433:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"418:3:101","nodeType":"YulIdentifier","src":"418:3:101"},"nativeSrc":"418:18:101","nodeType":"YulFunctionCall","src":"418:18:101"},"variableNames":[{"name":"tail","nativeSrc":"410:4:101","nodeType":"YulIdentifier","src":"410:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"452:9:101","nodeType":"YulIdentifier","src":"452:9:101"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"477:6:101","nodeType":"YulIdentifier","src":"477:6:101"}],"functionName":{"name":"iszero","nativeSrc":"470:6:101","nodeType":"YulIdentifier","src":"470:6:101"},"nativeSrc":"470:14:101","nodeType":"YulFunctionCall","src":"470:14:101"}],"functionName":{"name":"iszero","nativeSrc":"463:6:101","nodeType":"YulIdentifier","src":"463:6:101"},"nativeSrc":"463:22:101","nodeType":"YulFunctionCall","src":"463:22:101"}],"functionName":{"name":"mstore","nativeSrc":"445:6:101","nodeType":"YulIdentifier","src":"445:6:101"},"nativeSrc":"445:41:101","nodeType":"YulFunctionCall","src":"445:41:101"},"nativeSrc":"445:41:101","nodeType":"YulExpressionStatement","src":"445:41:101"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"305:187:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"369:9:101","nodeType":"YulTypedName","src":"369:9:101","type":""},{"name":"value0","nativeSrc":"380:6:101","nodeType":"YulTypedName","src":"380:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"391:4:101","nodeType":"YulTypedName","src":"391:4:101","type":""}],"src":"305:187:101"},{"body":{"nativeSrc":"619:102:101","nodeType":"YulBlock","src":"619:102:101","statements":[{"nativeSrc":"629:26:101","nodeType":"YulAssignment","src":"629:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"641:9:101","nodeType":"YulIdentifier","src":"641:9:101"},{"kind":"number","nativeSrc":"652:2:101","nodeType":"YulLiteral","src":"652:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"637:3:101","nodeType":"YulIdentifier","src":"637:3:101"},"nativeSrc":"637:18:101","nodeType":"YulFunctionCall","src":"637:18:101"},"variableNames":[{"name":"tail","nativeSrc":"629:4:101","nodeType":"YulIdentifier","src":"629:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"671:9:101","nodeType":"YulIdentifier","src":"671:9:101"},{"arguments":[{"name":"value0","nativeSrc":"686:6:101","nodeType":"YulIdentifier","src":"686:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"702:3:101","nodeType":"YulLiteral","src":"702:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"707:1:101","nodeType":"YulLiteral","src":"707:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"698:3:101","nodeType":"YulIdentifier","src":"698:3:101"},"nativeSrc":"698:11:101","nodeType":"YulFunctionCall","src":"698:11:101"},{"kind":"number","nativeSrc":"711:1:101","nodeType":"YulLiteral","src":"711:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"694:3:101","nodeType":"YulIdentifier","src":"694:3:101"},"nativeSrc":"694:19:101","nodeType":"YulFunctionCall","src":"694:19:101"}],"functionName":{"name":"and","nativeSrc":"682:3:101","nodeType":"YulIdentifier","src":"682:3:101"},"nativeSrc":"682:32:101","nodeType":"YulFunctionCall","src":"682:32:101"}],"functionName":{"name":"mstore","nativeSrc":"664:6:101","nodeType":"YulIdentifier","src":"664:6:101"},"nativeSrc":"664:51:101","nodeType":"YulFunctionCall","src":"664:51:101"},"nativeSrc":"664:51:101","nodeType":"YulExpressionStatement","src":"664:51:101"}]},"name":"abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed","nativeSrc":"497:224:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"588:9:101","nodeType":"YulTypedName","src":"588:9:101","type":""},{"name":"value0","nativeSrc":"599:6:101","nodeType":"YulTypedName","src":"599:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"610:4:101","nodeType":"YulTypedName","src":"610:4:101","type":""}],"src":"497:224:101"},{"body":{"nativeSrc":"827:102:101","nodeType":"YulBlock","src":"827:102:101","statements":[{"nativeSrc":"837:26:101","nodeType":"YulAssignment","src":"837:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"849:9:101","nodeType":"YulIdentifier","src":"849:9:101"},{"kind":"number","nativeSrc":"860:2:101","nodeType":"YulLiteral","src":"860:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"845:3:101","nodeType":"YulIdentifier","src":"845:3:101"},"nativeSrc":"845:18:101","nodeType":"YulFunctionCall","src":"845:18:101"},"variableNames":[{"name":"tail","nativeSrc":"837:4:101","nodeType":"YulIdentifier","src":"837:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"879:9:101","nodeType":"YulIdentifier","src":"879:9:101"},{"arguments":[{"name":"value0","nativeSrc":"894:6:101","nodeType":"YulIdentifier","src":"894:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"910:3:101","nodeType":"YulLiteral","src":"910:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"915:1:101","nodeType":"YulLiteral","src":"915:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"906:3:101","nodeType":"YulIdentifier","src":"906:3:101"},"nativeSrc":"906:11:101","nodeType":"YulFunctionCall","src":"906:11:101"},{"kind":"number","nativeSrc":"919:1:101","nodeType":"YulLiteral","src":"919:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"902:3:101","nodeType":"YulIdentifier","src":"902:3:101"},"nativeSrc":"902:19:101","nodeType":"YulFunctionCall","src":"902:19:101"}],"functionName":{"name":"and","nativeSrc":"890:3:101","nodeType":"YulIdentifier","src":"890:3:101"},"nativeSrc":"890:32:101","nodeType":"YulFunctionCall","src":"890:32:101"}],"functionName":{"name":"mstore","nativeSrc":"872:6:101","nodeType":"YulIdentifier","src":"872:6:101"},"nativeSrc":"872:51:101","nodeType":"YulFunctionCall","src":"872:51:101"},"nativeSrc":"872:51:101","nodeType":"YulExpressionStatement","src":"872:51:101"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"726:203:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"796:9:101","nodeType":"YulTypedName","src":"796:9:101","type":""},{"name":"value0","nativeSrc":"807:6:101","nodeType":"YulTypedName","src":"807:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"818:4:101","nodeType":"YulTypedName","src":"818:4:101","type":""}],"src":"726:203:101"},{"body":{"nativeSrc":"1061:102:101","nodeType":"YulBlock","src":"1061:102:101","statements":[{"nativeSrc":"1071:26:101","nodeType":"YulAssignment","src":"1071:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1083:9:101","nodeType":"YulIdentifier","src":"1083:9:101"},{"kind":"number","nativeSrc":"1094:2:101","nodeType":"YulLiteral","src":"1094:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1079:3:101","nodeType":"YulIdentifier","src":"1079:3:101"},"nativeSrc":"1079:18:101","nodeType":"YulFunctionCall","src":"1079:18:101"},"variableNames":[{"name":"tail","nativeSrc":"1071:4:101","nodeType":"YulIdentifier","src":"1071:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1113:9:101","nodeType":"YulIdentifier","src":"1113:9:101"},{"arguments":[{"name":"value0","nativeSrc":"1128:6:101","nodeType":"YulIdentifier","src":"1128:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1144:3:101","nodeType":"YulLiteral","src":"1144:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"1149:1:101","nodeType":"YulLiteral","src":"1149:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1140:3:101","nodeType":"YulIdentifier","src":"1140:3:101"},"nativeSrc":"1140:11:101","nodeType":"YulFunctionCall","src":"1140:11:101"},{"kind":"number","nativeSrc":"1153:1:101","nodeType":"YulLiteral","src":"1153:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1136:3:101","nodeType":"YulIdentifier","src":"1136:3:101"},"nativeSrc":"1136:19:101","nodeType":"YulFunctionCall","src":"1136:19:101"}],"functionName":{"name":"and","nativeSrc":"1124:3:101","nodeType":"YulIdentifier","src":"1124:3:101"},"nativeSrc":"1124:32:101","nodeType":"YulFunctionCall","src":"1124:32:101"}],"functionName":{"name":"mstore","nativeSrc":"1106:6:101","nodeType":"YulIdentifier","src":"1106:6:101"},"nativeSrc":"1106:51:101","nodeType":"YulFunctionCall","src":"1106:51:101"},"nativeSrc":"1106:51:101","nodeType":"YulExpressionStatement","src":"1106:51:101"}]},"name":"abi_encode_tuple_t_contract$_IPremiumsAccount_$29276__to_t_address__fromStack_reversed","nativeSrc":"934:229:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1030:9:101","nodeType":"YulTypedName","src":"1030:9:101","type":""},{"name":"value0","nativeSrc":"1041:6:101","nodeType":"YulTypedName","src":"1041:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1052:4:101","nodeType":"YulTypedName","src":"1052:4:101","type":""}],"src":"934:229:101"},{"body":{"nativeSrc":"1238:216:101","nodeType":"YulBlock","src":"1238:216:101","statements":[{"body":{"nativeSrc":"1284:16:101","nodeType":"YulBlock","src":"1284:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1293:1:101","nodeType":"YulLiteral","src":"1293:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1296:1:101","nodeType":"YulLiteral","src":"1296:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1286:6:101","nodeType":"YulIdentifier","src":"1286:6:101"},"nativeSrc":"1286:12:101","nodeType":"YulFunctionCall","src":"1286:12:101"},"nativeSrc":"1286:12:101","nodeType":"YulExpressionStatement","src":"1286:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1259:7:101","nodeType":"YulIdentifier","src":"1259:7:101"},{"name":"headStart","nativeSrc":"1268:9:101","nodeType":"YulIdentifier","src":"1268:9:101"}],"functionName":{"name":"sub","nativeSrc":"1255:3:101","nodeType":"YulIdentifier","src":"1255:3:101"},"nativeSrc":"1255:23:101","nodeType":"YulFunctionCall","src":"1255:23:101"},{"kind":"number","nativeSrc":"1280:2:101","nodeType":"YulLiteral","src":"1280:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1251:3:101","nodeType":"YulIdentifier","src":"1251:3:101"},"nativeSrc":"1251:32:101","nodeType":"YulFunctionCall","src":"1251:32:101"},"nativeSrc":"1248:52:101","nodeType":"YulIf","src":"1248:52:101"},{"nativeSrc":"1309:36:101","nodeType":"YulVariableDeclaration","src":"1309:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1335:9:101","nodeType":"YulIdentifier","src":"1335:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"1322:12:101","nodeType":"YulIdentifier","src":"1322:12:101"},"nativeSrc":"1322:23:101","nodeType":"YulFunctionCall","src":"1322:23:101"},"variables":[{"name":"value","nativeSrc":"1313:5:101","nodeType":"YulTypedName","src":"1313:5:101","type":""}]},{"body":{"nativeSrc":"1408:16:101","nodeType":"YulBlock","src":"1408:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1417:1:101","nodeType":"YulLiteral","src":"1417:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"1420:1:101","nodeType":"YulLiteral","src":"1420:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1410:6:101","nodeType":"YulIdentifier","src":"1410:6:101"},"nativeSrc":"1410:12:101","nodeType":"YulFunctionCall","src":"1410:12:101"},"nativeSrc":"1410:12:101","nodeType":"YulExpressionStatement","src":"1410:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1367:5:101","nodeType":"YulIdentifier","src":"1367:5:101"},{"arguments":[{"name":"value","nativeSrc":"1378:5:101","nodeType":"YulIdentifier","src":"1378:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1393:3:101","nodeType":"YulLiteral","src":"1393:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"1398:1:101","nodeType":"YulLiteral","src":"1398:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1389:3:101","nodeType":"YulIdentifier","src":"1389:3:101"},"nativeSrc":"1389:11:101","nodeType":"YulFunctionCall","src":"1389:11:101"},{"kind":"number","nativeSrc":"1402:1:101","nodeType":"YulLiteral","src":"1402:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1385:3:101","nodeType":"YulIdentifier","src":"1385:3:101"},"nativeSrc":"1385:19:101","nodeType":"YulFunctionCall","src":"1385:19:101"}],"functionName":{"name":"and","nativeSrc":"1374:3:101","nodeType":"YulIdentifier","src":"1374:3:101"},"nativeSrc":"1374:31:101","nodeType":"YulFunctionCall","src":"1374:31:101"}],"functionName":{"name":"eq","nativeSrc":"1364:2:101","nodeType":"YulIdentifier","src":"1364:2:101"},"nativeSrc":"1364:42:101","nodeType":"YulFunctionCall","src":"1364:42:101"}],"functionName":{"name":"iszero","nativeSrc":"1357:6:101","nodeType":"YulIdentifier","src":"1357:6:101"},"nativeSrc":"1357:50:101","nodeType":"YulFunctionCall","src":"1357:50:101"},"nativeSrc":"1354:70:101","nodeType":"YulIf","src":"1354:70:101"},{"nativeSrc":"1433:15:101","nodeType":"YulAssignment","src":"1433:15:101","value":{"name":"value","nativeSrc":"1443:5:101","nodeType":"YulIdentifier","src":"1443:5:101"},"variableNames":[{"name":"value0","nativeSrc":"1433:6:101","nodeType":"YulIdentifier","src":"1433:6:101"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"1168:286:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1204:9:101","nodeType":"YulTypedName","src":"1204:9:101","type":""},{"name":"dataEnd","nativeSrc":"1215:7:101","nodeType":"YulTypedName","src":"1215:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1227:6:101","nodeType":"YulTypedName","src":"1227:6:101","type":""}],"src":"1168:286:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IPolicyPool_$29171__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_contract$_IPremiumsAccount_$29276__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"30720":[{"length":32,"start":264}],"30722":[{"length":32,"start":214}]},"linkReferences":{},"object":"608060405260043610610049575f3560e01c806301ffc9a7146100535780634d15eb0314610098578063521eb273146100c857806373a952e8146100fa578063d4b270011461012c575b610051610167565b005b34801561005e575f5ffd5b5061008361006d3660046101a1565b6001600160e01b0319166321b7e09b60e01b1490565b60405190151581526020015b60405180910390f35b3480156100a3575f5ffd5b505f546001600160a01b03165b6040516001600160a01b03909116815260200161008f565b3480156100d3575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000006100b0565b348015610105575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000006100b0565b348015610137575f5ffd5b506100516101463660046101cf565b5f80546001600160a01b0319166001600160a01b0392909216919091179055565b61018061017b5f546001600160a01b031690565b610182565b565b365f5f375f5f365f5f855af13d5f5f3e80801561019d573d5ff35b3d5ffd5b5f602082840312156101b1575f5ffd5b81356001600160e01b0319811681146101c8575f5ffd5b9392505050565b5f602082840312156101df575f5ffd5b81356001600160a01b03811681146101c8575f5ffdfea26469706673582212209f06b4b91507c9f8c6358277e421be0a513291a6fe5a9918f8c54fb21409bc6064736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x49 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x53 JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x98 JUMPI DUP1 PUSH4 0x521EB273 EQ PUSH2 0xC8 JUMPI DUP1 PUSH4 0x73A952E8 EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0xD4B27001 EQ PUSH2 0x12C JUMPI JUMPDEST PUSH2 0x51 PUSH2 0x167 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x83 PUSH2 0x6D CALLDATASIZE PUSH1 0x4 PUSH2 0x1A1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH4 0x21B7E09B PUSH1 0xE0 SHL EQ SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x8F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xD3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0xB0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x105 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0xB0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x137 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51 PUSH2 0x146 CALLDATASIZE PUSH1 0x4 PUSH2 0x1CF JUMP JUMPDEST PUSH0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x180 PUSH2 0x17B PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x182 JUMP JUMPDEST JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 PUSH0 DUP6 GAS CALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0x19D JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x1C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1C8 JUMPI PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP16 MOD 0xB4 0xB9 ISZERO SMOD 0xC9 EXTCALL 0xC6 CALLDATALOAD DUP3 PUSH24 0xE421BE0A513291A6FE5A9918F8C54FB21409BC6064736F6C PUSH4 0x4300081E STOP CALLER ","sourceMap":"379:939:98:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2676:11:30;:9;:11::i;:::-;379:939:98;1163:153;;;;;;;;;;-1:-1:-1;1163:153:98;;;;;:::i;:::-;-1:-1:-1;;;;;;1267:44:98;-1:-1:-1;;;1267:44:98;;1163:153;;;;470:14:101;;463:22;445:41;;433:2;418:18;1163:153:98;;;;;;;;766:106;;;;;;;;;;-1:-1:-1;818:11:98;856:10;-1:-1:-1;;;;;856:10:98;766:106;;;-1:-1:-1;;;;;682:32:101;;;664:51;;652:2;637:18;766:106:98;497:224:101;1084:75:98;;;;;;;;;;-1:-1:-1;1147:7:98;1084:75;;876:111;;;;;;;;;;-1:-1:-1;966:16:98;876:111;;2073:83:92;;;;;;;;;;-1:-1:-1;2073:83:92;;;;;:::i;:::-;2129:10;:22;;-1:-1:-1;;;;;;2129:22:92;-1:-1:-1;;;;;2129:22:92;;;;;;;;;;2073:83;2350::30;2398:28;2408:17;818:11:98;856:10;-1:-1:-1;;;;;856:10:98;;766:106;2408:17:30;2398:9;:28::i;:::-;2350:83::o;873:919:92:-;1244:14;1241:1;1238;1225:34;1519:1;1516;1500:14;1497:1;1494;1478:14;1471:5;1466:55;1583:16;1580:1;1577;1562:38;1615:6;1670:52;;;;1757:16;1754:1;1747:27;1670:52;1697:16;1694:1;1687:27;14:286:101;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:101;;209:43;;199:71;;266:1;263;256:12;199:71;289:5;14:286;-1:-1:-1;;;14:286:101:o;1168:::-;1227:6;1280:2;1268:9;1259:7;1255:23;1251:32;1248:52;;;1296:1;1293;1286:12;1248:52;1322:23;;-1:-1:-1;;;;;1374:31:101;;1364:42;;1354:70;;1420:1;1417;1410:12"},"methodIdentifiers":{"policyPool()":"4d15eb03","premiumsAccount()":"73a952e8","setForwardTo(address)":"d4b27001","supportsInterface(bytes4)":"01ffc9a7","wallet()":"521eb273"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"policyPool_\",\"type\":\"address\"},{\"internalType\":\"contract IPremiumsAccount\",\"name\":\"premiumsAccount_\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"wallet_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"premiumsAccount\",\"outputs\":[{\"internalType\":\"contract IPremiumsAccount\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"forwardTo\",\"type\":\"address\"}],\"name\":\"setForwardTo\",\"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\":[],\"name\":\"wallet\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"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.\"},\"wallet()\":{\"details\":\"Returns the address of the partner that receives the partnerCommission\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"policyPool()\":{\"notice\":\"Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\"},\"premiumsAccount()\":{\"notice\":\"Returns the {PremiumsAccount} where the premiums of this risk module are collected. Never changes.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/mocks/RiskModuleMock.sol\":\"RiskModuleMock\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0x80935e4fae2c414f4e7789e13a820d06901182a5733ab006f8d68b5b09db993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://752d991d6ca1087587b48103bc623f74888054f58581ff29166d90889c4765c5\",\"dweb:/ipfs/QmRBsa6K2ChKxVWYY54YiyYhDBPbmY5HyKCtij5LoWh56o\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]},\"contracts/mocks/ForwardProxy.sol\":{\"keccak256\":\"0x3ec679a7979e4d0a93a4fdd3db90bc34ab000b888664c88260649fef9e302a5b\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://28bf69dcdbd93e4f429e26a2260bc58ef19efcb2163ccdf28e295c4264284900\",\"dweb:/ipfs/QmY8FFry1PtXKm32WPmGzNyLcWagg1qhhy5dvqgL7qiTmk\"]},\"contracts/mocks/RiskModuleMock.sol\":{\"keccak256\":\"0xb28c57dbdb2f78fc36bea56eadf9e905e0473e7bffdee9aad7a4c19f4b483296\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://42ac0b7fbb7e67bc3ce55266d11abab536d1a9b663fc66f227f7b175e76e7d87\",\"dweb:/ipfs/QmTaiNXj1w8gDFwE1SR68BDyQhu52B5y9MNibZixRYEDMW\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":29372,"contract":"contracts/mocks/RiskModuleMock.sol:RiskModuleMock","label":"_forwardTo","offset":0,"slot":"0","type":"t_address"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"}}}}},"contracts/underwriters/FullSignedUW.sol":{"FullSignedUW":{"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"},{"inputs":[{"internalType":"uint256","name":"actual","type":"uint256"},{"internalType":"uint256","name":"expected","type":"uint256"}],"name":"InvalidInputSize","type":"error"},{"inputs":[],"name":"SignatureRmMismatch","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"UnauthorizedSigner","type":"error"},{"inputs":[{"internalType":"address","name":"rm","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"priceNewPolicy","outputs":[{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"uint96","name":"internalId","type":"uint96"},{"components":[{"internalType":"uint256","name":"moc","type":"uint256"},{"internalType":"uint256","name":"jrCollRatio","type":"uint256"},{"internalType":"uint256","name":"collRatio","type":"uint256"},{"internalType":"uint256","name":"ensuroPpFee","type":"uint256"},{"internalType":"uint256","name":"ensuroCocFee","type":"uint256"},{"internalType":"uint256","name":"jrRoc","type":"uint256"},{"internalType":"uint256","name":"srRoc","type":"uint256"}],"internalType":"struct Policy.Params","name":"params","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rm","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"pricePolicyCancellation","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policyToCancel","type":"tuple"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rm","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"pricePolicyReplacement","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"oldPolicy","type":"tuple"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"uint96","name":"internalId","type":"uint96"},{"components":[{"internalType":"uint256","name":"moc","type":"uint256"},{"internalType":"uint256","name":"jrCollRatio","type":"uint256"},{"internalType":"uint256","name":"collRatio","type":"uint256"},{"internalType":"uint256","name":"ensuroPpFee","type":"uint256"},{"internalType":"uint256","name":"ensuroCocFee","type":"uint256"},{"internalType":"uint256","name":"jrRoc","type":"uint256"},{"internalType":"uint256","name":"srRoc","type":"uint256"}],"internalType":"struct Policy.Params","name":"params","type":"tuple"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"6080604052348015600e575f5ffd5b506111138061001c5f395ff3fe608060405234801561000f575f5ffd5b506004361061003f575f3560e01c806332f857fa146100435780639ba942d61461006f578063ba097a2a14610095575b5f5ffd5b610056610051366004610a6a565b6100ba565b6040516100669493929190610b86565b60405180910390f35b61008261007d366004610a6a565b610197565b6040516100669796959493929190610bf7565b6100a86100a3366004610a6a565b6102bd565b60405161006696959493929190610c58565b6100c26109f0565b5f5f5f6100f48787876101e07fe1cc1aa1166fa42e3a9bf6f2e810db30f295c27e6aeef2638722d3726d7515706103a9565b6101026101e05f8789610ca7565b81019061010f9190610dd8565b83519397509195509350915060601c6001600160a01b0388161461014657604051634b4bde0960e11b815260040160405180910390fd5b5f19820361016a57610157846105b2565b8461010001516101679190610e27565b91505b5f19810361018e5761017b846105fb565b84610120015161018b9190610e27565b90505b93509350935093565b61019f6109f0565b5f5f5f5f5f6101dd6040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b6102158a8a8a6101ef61018080610e3a565b7fb8bf8abee956c23073a3f628100e45da0cf4d7ca1e953d176e06c48753d2863e6103a9565b5f89818a61022561018080610e3a565b9261023293929190610ca7565b81019061023f9190610ed8565b959d50939b509199509750955090925090506001600160a01b038b166102658260601c90565b6001600160a01b03161480156102875750875160601c6001600160a01b038c16145b6102a457604051634b4bde0960e11b815260040160405180910390fd5b6102ad81610634565b9250509397509397509397909450565b5f5f5f5f5f6102fb6040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b61032a8989896101807f4568705da1639073be69afeb2376d89cef780c68efd064ab4c2e8049be434a186103a9565b5f610339610180828a8c610ca7565b8101906103469190610f46565b949b50929950909750955090925090506001600160a01b038a1661036a8260601c90565b6001600160a01b03161461039157604051634b4bde0960e11b815260040160405180910390fd5b61039a81610634565b92505093975093979195509350565b826103b5604184610e3a565b81146103ee57806103c7604185610e3a565b604051632c28914160e11b8152600481019290925260248201526044015b60405180910390fd5b5f6104376103fe8583888a610ca7565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061064392505050565b90505f6104838261044a85888a8c610ca7565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061067d92505050565b90505f886001600160a01b0316633a7b7a396040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104c2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104e69190610f9c565b60405163b700961360e01b81526001600160a01b0384811660048301528b811660248301526001600160e01b031988166044830152919091169063b7009613906064016040805180830381865afa158015610543573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105679190610fbe565b5090508185826105a5576040516344b0689760e01b81526001600160a01b0390921660048301526001600160e01b03191660248201526044016103e5565b5050505050505050505050565b5f6105bc826106a5565b64ffffffffff1682610140015164ffffffffff16426105db9190610e27565b8361010001516105eb9190611002565b6105f5919061102d565b92915050565b5f610605826106a5565b64ffffffffff1682610140015164ffffffffff16426106249190610e27565b8361012001516105eb9190611002565b5f6105f5600160601b83611040565b5f61064e82516106bc565b8260405160200161066092919061106a565b604051602081830303815290604052805190602001209050919050565b5f5f5f5f61068b868661074c565b92509250925061069b8282610795565b5090949350505050565b5f8161014001518261016001516105f591906110ac565b60605f6106c883610851565b60010190505f8167ffffffffffffffff8111156106e7576106e7610cce565b6040519080825280601f01601f191660200182016040528015610711576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461071b57509392505050565b5f5f5f8351604103610783576020840151604085015160608601515f1a61077588828585610928565b95509550955050505061078e565b505081515f91506002905b9250925092565b5f8260038111156107a8576107a86110c9565b036107b1575050565b60018260038111156107c5576107c56110c9565b036107e35760405163f645eedf60e01b815260040160405180910390fd5b60028260038111156107f7576107f76110c9565b036108185760405163fce698f760e01b8152600481018290526024016103e5565b600382600381111561082c5761082c6110c9565b0361084d576040516335e2f38360e21b8152600481018290526024016103e5565b5050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061088f5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106108bb576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106108d957662386f26fc10000830492506010015b6305f5e10083106108f1576305f5e100830492506008015b612710831061090557612710830492506004015b60648310610917576064830492506002015b600a83106105f55760010192915050565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084111561096157505f915060039050826109e6565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa1580156109b2573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b0381166109dd57505f9250600191508290506109e6565b92505f91508190505b9450945094915050565b6040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b6001600160a01b0381168114610a67575f5ffd5b50565b5f5f5f60408486031215610a7c575f5ffd5b8335610a8781610a53565b9250602084013567ffffffffffffffff811115610aa2575f5ffd5b8401601f81018613610ab2575f5ffd5b803567ffffffffffffffff811115610ac8575f5ffd5b866020828401011115610ad9575f5ffd5b939660209190910195509293505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e0830152610100810151610100830152610120810151610120830152610140810151610b6661014084018264ffffffffff169052565b50610160810151610b8161016084018264ffffffffff169052565b505050565b6101e08101610b958287610aea565b84610180830152836101a0830152826101c083015295945050505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c08301525050565b6103008101610c06828a610aea565b87610180830152866101a0830152856101c083015264ffffffffff85166101e08301526bffffffffffffffffffffffff8416610200830152610c4c610220830184610bb3565b98975050505050505050565b868152602081018690526040810185905264ffffffffff841660608201526bffffffffffffffffffffffff831660808201526101808101610c9c60a0830184610bb3565b979650505050505050565b5f5f85851115610cb5575f5ffd5b83861115610cc1575f5ffd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b604051610180810167ffffffffffffffff81118282101715610d1257634e487b7160e01b5f52604160045260245ffd5b60405290565b803564ffffffffff81168114610d2c575f5ffd5b919050565b5f6101808284031215610d42575f5ffd5b610d4a610ce2565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e08084013590820152610100808401359082015261012080840135908201529050610db96101408301610d18565b610140820152610dcc6101608301610d18565b61016082015292915050565b5f5f5f5f6101e08587031215610dec575f5ffd5b610df68686610d31565b9661018086013596506101a0860135956101c00135945092505050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156105f5576105f5610e13565b808201808211156105f5576105f5610e13565b5f60e08284031215610e5d575f5ffd5b60405160e0810167ffffffffffffffff81118282101715610e8c57634e487b7160e01b5f52604160045260245ffd5b604090815283358252602080850135908301528381013590820152606080840135908201526080808401359082015260a0808401359082015260c0928301359281019290925250919050565b5f5f5f5f5f5f5f610300888a031215610eef575f5ffd5b610ef98989610d31565b965061018088013595506101a088013594506101c08801359350610f206101e08901610d18565b92506102008801359150610f38896102208a01610e4d565b905092959891949750929550565b5f5f5f5f5f5f6101808789031215610f5c575f5ffd5b863595506020870135945060408701359350610f7a60608801610d18565b925060808701359150610f908860a08901610e4d565b90509295509295509295565b5f60208284031215610fac575f5ffd5b8151610fb781610a53565b9392505050565b5f5f60408385031215610fcf575f5ffd5b82518015158114610fde575f5ffd5b602084015190925063ffffffff81168114610ff7575f5ffd5b809150509250929050565b80820281158282048414176105f5576105f5610e13565b634e487b7160e01b5f52601260045260245ffd5b5f8261103b5761103b611019565b500490565b5f8261104e5761104e611019565b500690565b5f81518060208401855e5f93019283525090919050565b7f19457468657265756d205369676e6564204d6573736167653a0a00000000000081525f6110a461109e601a840186611053565b84611053565b949350505050565b64ffffffffff82811682821603908111156105f5576105f5610e13565b634e487b7160e01b5f52602160045260245ffdfea264697066735822122075397f8810c513eb81847527721f73f4c79f361c85549cfb2515a72ed8be3cdd64736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1113 DUP1 PUSH2 0x1C PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x3F JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x32F857FA EQ PUSH2 0x43 JUMPI DUP1 PUSH4 0x9BA942D6 EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0xBA097A2A EQ PUSH2 0x95 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x56 PUSH2 0x51 CALLDATASIZE PUSH1 0x4 PUSH2 0xA6A JUMP JUMPDEST PUSH2 0xBA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xB86 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x82 PUSH2 0x7D CALLDATASIZE PUSH1 0x4 PUSH2 0xA6A JUMP JUMPDEST PUSH2 0x197 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xBF7 JUMP JUMPDEST PUSH2 0xA8 PUSH2 0xA3 CALLDATASIZE PUSH1 0x4 PUSH2 0xA6A JUMP JUMPDEST PUSH2 0x2BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xC58 JUMP JUMPDEST PUSH2 0xC2 PUSH2 0x9F0 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0xF4 DUP8 DUP8 DUP8 PUSH2 0x1E0 PUSH32 0xE1CC1AA1166FA42E3A9BF6F2E810DB30F295C27E6AEEF2638722D3726D751570 PUSH2 0x3A9 JUMP JUMPDEST PUSH2 0x102 PUSH2 0x1E0 PUSH0 DUP8 DUP10 PUSH2 0xCA7 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x10F SWAP2 SWAP1 PUSH2 0xDD8 JUMP JUMPDEST DUP4 MLOAD SWAP4 SWAP8 POP SWAP2 SWAP6 POP SWAP4 POP SWAP2 POP PUSH1 0x60 SHR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND EQ PUSH2 0x146 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B4BDE09 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 NOT DUP3 SUB PUSH2 0x16A JUMPI PUSH2 0x157 DUP5 PUSH2 0x5B2 JUMP JUMPDEST DUP5 PUSH2 0x100 ADD MLOAD PUSH2 0x167 SWAP2 SWAP1 PUSH2 0xE27 JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x18E JUMPI PUSH2 0x17B DUP5 PUSH2 0x5FB JUMP JUMPDEST DUP5 PUSH2 0x120 ADD MLOAD PUSH2 0x18B SWAP2 SWAP1 PUSH2 0xE27 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 POP SWAP4 JUMP JUMPDEST PUSH2 0x19F PUSH2 0x9F0 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1DD PUSH1 0x40 MLOAD DUP1 PUSH1 0xE0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0x215 DUP11 DUP11 DUP11 PUSH2 0x1EF PUSH2 0x180 DUP1 PUSH2 0xE3A JUMP JUMPDEST PUSH32 0xB8BF8ABEE956C23073A3F628100E45DA0CF4D7CA1E953D176E06C48753D2863E PUSH2 0x3A9 JUMP JUMPDEST PUSH0 DUP10 DUP2 DUP11 PUSH2 0x225 PUSH2 0x180 DUP1 PUSH2 0xE3A JUMP JUMPDEST SWAP3 PUSH2 0x232 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xCA7 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x23F SWAP2 SWAP1 PUSH2 0xED8 JUMP JUMPDEST SWAP6 SWAP14 POP SWAP4 SWAP12 POP SWAP2 SWAP10 POP SWAP8 POP SWAP6 POP SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND PUSH2 0x265 DUP3 PUSH1 0x60 SHR SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 ISZERO PUSH2 0x287 JUMPI POP DUP8 MLOAD PUSH1 0x60 SHR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND EQ JUMPDEST PUSH2 0x2A4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B4BDE09 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2AD DUP2 PUSH2 0x634 JUMP JUMPDEST SWAP3 POP POP SWAP4 SWAP8 POP SWAP4 SWAP8 POP SWAP4 SWAP8 SWAP1 SWAP5 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x2FB PUSH1 0x40 MLOAD DUP1 PUSH1 0xE0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0x32A DUP10 DUP10 DUP10 PUSH2 0x180 PUSH32 0x4568705DA1639073BE69AFEB2376D89CEF780C68EFD064AB4C2E8049BE434A18 PUSH2 0x3A9 JUMP JUMPDEST PUSH0 PUSH2 0x339 PUSH2 0x180 DUP3 DUP11 DUP13 PUSH2 0xCA7 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x346 SWAP2 SWAP1 PUSH2 0xF46 JUMP JUMPDEST SWAP5 SWAP12 POP SWAP3 SWAP10 POP SWAP1 SWAP8 POP SWAP6 POP SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND PUSH2 0x36A DUP3 PUSH1 0x60 SHR SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x391 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B4BDE09 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x39A DUP2 PUSH2 0x634 JUMP JUMPDEST SWAP3 POP POP SWAP4 SWAP8 POP SWAP4 SWAP8 SWAP2 SWAP6 POP SWAP4 POP JUMP JUMPDEST DUP3 PUSH2 0x3B5 PUSH1 0x41 DUP5 PUSH2 0xE3A JUMP JUMPDEST DUP2 EQ PUSH2 0x3EE JUMPI DUP1 PUSH2 0x3C7 PUSH1 0x41 DUP6 PUSH2 0xE3A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2C289141 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x437 PUSH2 0x3FE DUP6 DUP4 DUP9 DUP11 PUSH2 0xCA7 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x643 SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x483 DUP3 PUSH2 0x44A DUP6 DUP9 DUP11 DUP13 PUSH2 0xCA7 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x67D SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH0 DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3A7B7A39 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x4C2 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x4E6 SWAP2 SWAP1 PUSH2 0xF9C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xB7009613 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP12 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP9 AND PUSH1 0x44 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xB7009613 SWAP1 PUSH1 0x64 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x543 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x567 SWAP2 SWAP1 PUSH2 0xFBE JUMP JUMPDEST POP SWAP1 POP DUP2 DUP6 DUP3 PUSH2 0x5A5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x44B06897 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3E5 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x5BC DUP3 PUSH2 0x6A5 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x5DB SWAP2 SWAP1 PUSH2 0xE27 JUMP JUMPDEST DUP4 PUSH2 0x100 ADD MLOAD PUSH2 0x5EB SWAP2 SWAP1 PUSH2 0x1002 JUMP JUMPDEST PUSH2 0x5F5 SWAP2 SWAP1 PUSH2 0x102D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x605 DUP3 PUSH2 0x6A5 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x624 SWAP2 SWAP1 PUSH2 0xE27 JUMP JUMPDEST DUP4 PUSH2 0x120 ADD MLOAD PUSH2 0x5EB SWAP2 SWAP1 PUSH2 0x1002 JUMP JUMPDEST PUSH0 PUSH2 0x5F5 PUSH1 0x1 PUSH1 0x60 SHL DUP4 PUSH2 0x1040 JUMP JUMPDEST PUSH0 PUSH2 0x64E DUP3 MLOAD PUSH2 0x6BC JUMP JUMPDEST DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x660 SWAP3 SWAP2 SWAP1 PUSH2 0x106A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x68B DUP7 DUP7 PUSH2 0x74C JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x69B DUP3 DUP3 PUSH2 0x795 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x140 ADD MLOAD DUP3 PUSH2 0x160 ADD MLOAD PUSH2 0x5F5 SWAP2 SWAP1 PUSH2 0x10AC JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x6C8 DUP4 PUSH2 0x851 JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x6E7 JUMPI PUSH2 0x6E7 PUSH2 0xCCE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x711 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH2 0x71B JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x41 SUB PUSH2 0x783 JUMPI PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH0 BYTE PUSH2 0x775 DUP9 DUP3 DUP6 DUP6 PUSH2 0x928 JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP PUSH2 0x78E JUMP JUMPDEST POP POP DUP2 MLOAD PUSH0 SWAP2 POP PUSH1 0x2 SWAP1 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x7A8 JUMPI PUSH2 0x7A8 PUSH2 0x10C9 JUMP JUMPDEST SUB PUSH2 0x7B1 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x7C5 JUMPI PUSH2 0x7C5 PUSH2 0x10C9 JUMP JUMPDEST SUB PUSH2 0x7E3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x7F7 JUMPI PUSH2 0x7F7 PUSH2 0x10C9 JUMP JUMPDEST SUB PUSH2 0x818 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x3E5 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x82C JUMPI PUSH2 0x82C PUSH2 0x10C9 JUMP JUMPDEST SUB PUSH2 0x84D JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x3E5 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 LT PUSH2 0x88F JUMPI PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x8BB JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x8D9 JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x8F1 JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x905 JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x917 JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x5F5 JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0x961 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x9E6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x9B2 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x9DD JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x9E6 JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xA67 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xA7C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0xA87 DUP2 PUSH2 0xA53 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAA2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0xAB2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAC8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0xAD9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 POP SWAP3 SWAP4 POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0xB66 PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP2 ADD MLOAD PUSH2 0xB81 PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0xB95 DUP3 DUP8 PUSH2 0xAEA JUMP JUMPDEST DUP5 PUSH2 0x180 DUP4 ADD MSTORE DUP4 PUSH2 0x1A0 DUP4 ADD MSTORE DUP3 PUSH2 0x1C0 DUP4 ADD MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0xC06 DUP3 DUP11 PUSH2 0xAEA JUMP JUMPDEST DUP8 PUSH2 0x180 DUP4 ADD MSTORE DUP7 PUSH2 0x1A0 DUP4 ADD MSTORE DUP6 PUSH2 0x1C0 DUP4 ADD MSTORE PUSH5 0xFFFFFFFFFF DUP6 AND PUSH2 0x1E0 DUP4 ADD MSTORE PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND PUSH2 0x200 DUP4 ADD MSTORE PUSH2 0xC4C PUSH2 0x220 DUP4 ADD DUP5 PUSH2 0xBB3 JUMP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x40 DUP2 ADD DUP6 SWAP1 MSTORE PUSH5 0xFFFFFFFFFF DUP5 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP4 AND PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x180 DUP2 ADD PUSH2 0xC9C PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0xBB3 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0xCB5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0xCC1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xD12 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xD2C JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD42 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xD4A PUSH2 0xCE2 JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0xDB9 PUSH2 0x140 DUP4 ADD PUSH2 0xD18 JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0xDCC PUSH2 0x160 DUP4 ADD PUSH2 0xD18 JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xDEC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xDF6 DUP7 DUP7 PUSH2 0xD31 JUMP JUMPDEST SWAP7 PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP7 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP6 PUSH2 0x1C0 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x5F5 JUMPI PUSH2 0x5F5 PUSH2 0xE13 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x5F5 JUMPI PUSH2 0x5F5 PUSH2 0xE13 JUMP JUMPDEST PUSH0 PUSH1 0xE0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE5D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xE8C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 SWAP1 DUP2 MSTORE DUP4 CALLDATALOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP6 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE DUP4 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 SWAP3 DUP4 ADD CALLDATALOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x300 DUP9 DUP11 SUB SLT ISZERO PUSH2 0xEEF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xEF9 DUP10 DUP10 PUSH2 0xD31 JUMP JUMPDEST SWAP7 POP PUSH2 0x180 DUP9 ADD CALLDATALOAD SWAP6 POP PUSH2 0x1A0 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH2 0x1C0 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0xF20 PUSH2 0x1E0 DUP10 ADD PUSH2 0xD18 JUMP JUMPDEST SWAP3 POP PUSH2 0x200 DUP9 ADD CALLDATALOAD SWAP2 POP PUSH2 0xF38 DUP10 PUSH2 0x220 DUP11 ADD PUSH2 0xE4D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x180 DUP8 DUP10 SUB SLT ISZERO PUSH2 0xF5C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0xF7A PUSH1 0x60 DUP9 ADD PUSH2 0xD18 JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD SWAP2 POP PUSH2 0xF90 DUP9 PUSH1 0xA0 DUP10 ADD PUSH2 0xE4D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFAC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xFB7 DUP2 PUSH2 0xA53 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFCF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xFDE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xFF7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x5F5 JUMPI PUSH2 0x5F5 PUSH2 0xE13 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH2 0x103B JUMPI PUSH2 0x103B PUSH2 0x1019 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x104E JUMPI PUSH2 0x104E PUSH2 0x1019 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 PUSH1 0x20 DUP5 ADD DUP6 MCOPY PUSH0 SWAP4 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x19457468657265756D205369676E6564204D6573736167653A0A000000000000 DUP2 MSTORE PUSH0 PUSH2 0x10A4 PUSH2 0x109E PUSH1 0x1A DUP5 ADD DUP7 PUSH2 0x1053 JUMP JUMPDEST DUP5 PUSH2 0x1053 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x5F5 JUMPI PUSH2 0x5F5 PUSH2 0xE13 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH22 0x397F8810C513EB81847527721F73F4C79F361C85549C EXTSTATICCALL 0x25 ISZERO 0xA7 0x2E 0xD8 0xBE EXTCODECOPY 0xDD PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"722:5887:99:-:0;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_checkSignature_30961":{"entryPoint":937,"id":30961,"parameterSlots":5,"returnSlots":0},"@_throwError_13696":{"entryPoint":1941,"id":13696,"parameterSlots":2,"returnSlots":0},"@duration_22727":{"entryPoint":1701,"id":22727,"parameterSlots":1,"returnSlots":1},"@extractInternalId_22798":{"entryPoint":1588,"id":22798,"parameterSlots":1,"returnSlots":1},"@extractRiskModule_22779":{"entryPoint":null,"id":22779,"parameterSlots":1,"returnSlots":1},"@jrAccruedInterest_22661":{"entryPoint":1458,"id":22661,"parameterSlots":1,"returnSlots":1},"@log10_15725":{"entryPoint":2129,"id":15725,"parameterSlots":1,"returnSlots":1},"@priceNewPolicy_31041":{"entryPoint":701,"id":31041,"parameterSlots":3,"returnSlots":6},"@pricePolicyCancellation_31230":{"entryPoint":186,"id":31230,"parameterSlots":3,"returnSlots":4},"@pricePolicyReplacement_31135":{"entryPoint":407,"id":31135,"parameterSlots":3,"returnSlots":7},"@recover_13395":{"entryPoint":1661,"id":13395,"parameterSlots":2,"returnSlots":1},"@srAccruedInterest_22711":{"entryPoint":1531,"id":22711,"parameterSlots":1,"returnSlots":1},"@toEthSignedMessageHash_14005":{"entryPoint":1603,"id":14005,"parameterSlots":1,"returnSlots":1},"@toString_11874":{"entryPoint":1724,"id":11874,"parameterSlots":1,"returnSlots":1},"@tryRecover_13312":{"entryPoint":1868,"id":13312,"parameterSlots":2,"returnSlots":3},"@tryRecover_13583":{"entryPoint":2344,"id":13583,"parameterSlots":4,"returnSlots":3},"abi_decode_struct_Params":{"entryPoint":3661,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_struct_PolicyData":{"entryPoint":3377,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_bytes_calldata_ptr":{"entryPoint":2666,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_boolt_uint32_fromMemory":{"entryPoint":4030,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IAccessManager_$6119_fromMemory":{"entryPoint":3996,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256":{"entryPoint":3544,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint256t_struct$_Params_$22230_memory_ptr":{"entryPoint":3800,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint256t_struct$_Params_$22230_memory_ptr":{"entryPoint":3910,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_uint40":{"entryPoint":3352,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_bytes":{"entryPoint":4179,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_struct_Params":{"entryPoint":2995,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_struct_PolicyData":{"entryPoint":2794,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_packed_t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4_t_bytes_memory_ptr_t_bytes_memory_ptr__to_t_bytes26_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":4202,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_bytes4__to_t_address_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":2950,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__fromStack_reversed":{"entryPoint":3063,"id":null,"parameterSlots":8,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__to_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__fromStack_reversed":{"entryPoint":3160,"id":null,"parameterSlots":7,"returnSlots":1},"abi_encode_uint40":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"allocate_memory":{"entryPoint":3298,"id":null,"parameterSlots":0,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":3239,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_uint256":{"entryPoint":3642,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":4141,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":4098,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":3623,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint40":{"entryPoint":4268,"id":null,"parameterSlots":2,"returnSlots":1},"mod_t_uint256":{"entryPoint":4160,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":3603,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":4121,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":4297,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":3278,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":2643,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:14620:101","nodeType":"YulBlock","src":"0:14620:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"59:86:101","nodeType":"YulBlock","src":"59:86:101","statements":[{"body":{"nativeSrc":"123:16:101","nodeType":"YulBlock","src":"123:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:101","nodeType":"YulLiteral","src":"132:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:101","nodeType":"YulLiteral","src":"135:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:101","nodeType":"YulIdentifier","src":"125:6:101"},"nativeSrc":"125:12:101","nodeType":"YulFunctionCall","src":"125:12:101"},"nativeSrc":"125:12:101","nodeType":"YulExpressionStatement","src":"125:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"82:5:101","nodeType":"YulIdentifier","src":"82:5:101"},{"arguments":[{"name":"value","nativeSrc":"93:5:101","nodeType":"YulIdentifier","src":"93:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"108:3:101","nodeType":"YulLiteral","src":"108:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"113:1:101","nodeType":"YulLiteral","src":"113:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"104:3:101","nodeType":"YulIdentifier","src":"104:3:101"},"nativeSrc":"104:11:101","nodeType":"YulFunctionCall","src":"104:11:101"},{"kind":"number","nativeSrc":"117:1:101","nodeType":"YulLiteral","src":"117:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"100:3:101","nodeType":"YulIdentifier","src":"100:3:101"},"nativeSrc":"100:19:101","nodeType":"YulFunctionCall","src":"100:19:101"}],"functionName":{"name":"and","nativeSrc":"89:3:101","nodeType":"YulIdentifier","src":"89:3:101"},"nativeSrc":"89:31:101","nodeType":"YulFunctionCall","src":"89:31:101"}],"functionName":{"name":"eq","nativeSrc":"79:2:101","nodeType":"YulIdentifier","src":"79:2:101"},"nativeSrc":"79:42:101","nodeType":"YulFunctionCall","src":"79:42:101"}],"functionName":{"name":"iszero","nativeSrc":"72:6:101","nodeType":"YulIdentifier","src":"72:6:101"},"nativeSrc":"72:50:101","nodeType":"YulFunctionCall","src":"72:50:101"},"nativeSrc":"69:70:101","nodeType":"YulIf","src":"69:70:101"}]},"name":"validator_revert_address","nativeSrc":"14:131:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"48:5:101","nodeType":"YulTypedName","src":"48:5:101","type":""}],"src":"14:131:101"},{"body":{"nativeSrc":"256:615:101","nodeType":"YulBlock","src":"256:615:101","statements":[{"body":{"nativeSrc":"302:16:101","nodeType":"YulBlock","src":"302:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"311:1:101","nodeType":"YulLiteral","src":"311:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"314:1:101","nodeType":"YulLiteral","src":"314:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"304:6:101","nodeType":"YulIdentifier","src":"304:6:101"},"nativeSrc":"304:12:101","nodeType":"YulFunctionCall","src":"304:12:101"},"nativeSrc":"304:12:101","nodeType":"YulExpressionStatement","src":"304:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"277:7:101","nodeType":"YulIdentifier","src":"277:7:101"},{"name":"headStart","nativeSrc":"286:9:101","nodeType":"YulIdentifier","src":"286:9:101"}],"functionName":{"name":"sub","nativeSrc":"273:3:101","nodeType":"YulIdentifier","src":"273:3:101"},"nativeSrc":"273:23:101","nodeType":"YulFunctionCall","src":"273:23:101"},{"kind":"number","nativeSrc":"298:2:101","nodeType":"YulLiteral","src":"298:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"269:3:101","nodeType":"YulIdentifier","src":"269:3:101"},"nativeSrc":"269:32:101","nodeType":"YulFunctionCall","src":"269:32:101"},"nativeSrc":"266:52:101","nodeType":"YulIf","src":"266:52:101"},{"nativeSrc":"327:36:101","nodeType":"YulVariableDeclaration","src":"327:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"353:9:101","nodeType":"YulIdentifier","src":"353:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"340:12:101","nodeType":"YulIdentifier","src":"340:12:101"},"nativeSrc":"340:23:101","nodeType":"YulFunctionCall","src":"340:23:101"},"variables":[{"name":"value","nativeSrc":"331:5:101","nodeType":"YulTypedName","src":"331:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"397:5:101","nodeType":"YulIdentifier","src":"397:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"372:24:101","nodeType":"YulIdentifier","src":"372:24:101"},"nativeSrc":"372:31:101","nodeType":"YulFunctionCall","src":"372:31:101"},"nativeSrc":"372:31:101","nodeType":"YulExpressionStatement","src":"372:31:101"},{"nativeSrc":"412:15:101","nodeType":"YulAssignment","src":"412:15:101","value":{"name":"value","nativeSrc":"422:5:101","nodeType":"YulIdentifier","src":"422:5:101"},"variableNames":[{"name":"value0","nativeSrc":"412:6:101","nodeType":"YulIdentifier","src":"412:6:101"}]},{"nativeSrc":"436:46:101","nodeType":"YulVariableDeclaration","src":"436:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"467:9:101","nodeType":"YulIdentifier","src":"467:9:101"},{"kind":"number","nativeSrc":"478:2:101","nodeType":"YulLiteral","src":"478:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"463:3:101","nodeType":"YulIdentifier","src":"463:3:101"},"nativeSrc":"463:18:101","nodeType":"YulFunctionCall","src":"463:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"450:12:101","nodeType":"YulIdentifier","src":"450:12:101"},"nativeSrc":"450:32:101","nodeType":"YulFunctionCall","src":"450:32:101"},"variables":[{"name":"offset","nativeSrc":"440:6:101","nodeType":"YulTypedName","src":"440:6:101","type":""}]},{"body":{"nativeSrc":"525:16:101","nodeType":"YulBlock","src":"525:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"534:1:101","nodeType":"YulLiteral","src":"534:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"537:1:101","nodeType":"YulLiteral","src":"537:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"527:6:101","nodeType":"YulIdentifier","src":"527:6:101"},"nativeSrc":"527:12:101","nodeType":"YulFunctionCall","src":"527:12:101"},"nativeSrc":"527:12:101","nodeType":"YulExpressionStatement","src":"527:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"497:6:101","nodeType":"YulIdentifier","src":"497:6:101"},{"kind":"number","nativeSrc":"505:18:101","nodeType":"YulLiteral","src":"505:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"494:2:101","nodeType":"YulIdentifier","src":"494:2:101"},"nativeSrc":"494:30:101","nodeType":"YulFunctionCall","src":"494:30:101"},"nativeSrc":"491:50:101","nodeType":"YulIf","src":"491:50:101"},{"nativeSrc":"550:32:101","nodeType":"YulVariableDeclaration","src":"550:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"564:9:101","nodeType":"YulIdentifier","src":"564:9:101"},{"name":"offset","nativeSrc":"575:6:101","nodeType":"YulIdentifier","src":"575:6:101"}],"functionName":{"name":"add","nativeSrc":"560:3:101","nodeType":"YulIdentifier","src":"560:3:101"},"nativeSrc":"560:22:101","nodeType":"YulFunctionCall","src":"560:22:101"},"variables":[{"name":"_1","nativeSrc":"554:2:101","nodeType":"YulTypedName","src":"554:2:101","type":""}]},{"body":{"nativeSrc":"630:16:101","nodeType":"YulBlock","src":"630:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"639:1:101","nodeType":"YulLiteral","src":"639:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"642:1:101","nodeType":"YulLiteral","src":"642:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"632:6:101","nodeType":"YulIdentifier","src":"632:6:101"},"nativeSrc":"632:12:101","nodeType":"YulFunctionCall","src":"632:12:101"},"nativeSrc":"632:12:101","nodeType":"YulExpressionStatement","src":"632:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"609:2:101","nodeType":"YulIdentifier","src":"609:2:101"},{"kind":"number","nativeSrc":"613:4:101","nodeType":"YulLiteral","src":"613:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"605:3:101","nodeType":"YulIdentifier","src":"605:3:101"},"nativeSrc":"605:13:101","nodeType":"YulFunctionCall","src":"605:13:101"},{"name":"dataEnd","nativeSrc":"620:7:101","nodeType":"YulIdentifier","src":"620:7:101"}],"functionName":{"name":"slt","nativeSrc":"601:3:101","nodeType":"YulIdentifier","src":"601:3:101"},"nativeSrc":"601:27:101","nodeType":"YulFunctionCall","src":"601:27:101"}],"functionName":{"name":"iszero","nativeSrc":"594:6:101","nodeType":"YulIdentifier","src":"594:6:101"},"nativeSrc":"594:35:101","nodeType":"YulFunctionCall","src":"594:35:101"},"nativeSrc":"591:55:101","nodeType":"YulIf","src":"591:55:101"},{"nativeSrc":"655:30:101","nodeType":"YulVariableDeclaration","src":"655:30:101","value":{"arguments":[{"name":"_1","nativeSrc":"682:2:101","nodeType":"YulIdentifier","src":"682:2:101"}],"functionName":{"name":"calldataload","nativeSrc":"669:12:101","nodeType":"YulIdentifier","src":"669:12:101"},"nativeSrc":"669:16:101","nodeType":"YulFunctionCall","src":"669:16:101"},"variables":[{"name":"length","nativeSrc":"659:6:101","nodeType":"YulTypedName","src":"659:6:101","type":""}]},{"body":{"nativeSrc":"728:16:101","nodeType":"YulBlock","src":"728:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"737:1:101","nodeType":"YulLiteral","src":"737:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"740:1:101","nodeType":"YulLiteral","src":"740:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"730:6:101","nodeType":"YulIdentifier","src":"730:6:101"},"nativeSrc":"730:12:101","nodeType":"YulFunctionCall","src":"730:12:101"},"nativeSrc":"730:12:101","nodeType":"YulExpressionStatement","src":"730:12:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"700:6:101","nodeType":"YulIdentifier","src":"700:6:101"},{"kind":"number","nativeSrc":"708:18:101","nodeType":"YulLiteral","src":"708:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"697:2:101","nodeType":"YulIdentifier","src":"697:2:101"},"nativeSrc":"697:30:101","nodeType":"YulFunctionCall","src":"697:30:101"},"nativeSrc":"694:50:101","nodeType":"YulIf","src":"694:50:101"},{"body":{"nativeSrc":"794:16:101","nodeType":"YulBlock","src":"794:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"803:1:101","nodeType":"YulLiteral","src":"803:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"806:1:101","nodeType":"YulLiteral","src":"806:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"796:6:101","nodeType":"YulIdentifier","src":"796:6:101"},"nativeSrc":"796:12:101","nodeType":"YulFunctionCall","src":"796:12:101"},"nativeSrc":"796:12:101","nodeType":"YulExpressionStatement","src":"796:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"767:2:101","nodeType":"YulIdentifier","src":"767:2:101"},{"name":"length","nativeSrc":"771:6:101","nodeType":"YulIdentifier","src":"771:6:101"}],"functionName":{"name":"add","nativeSrc":"763:3:101","nodeType":"YulIdentifier","src":"763:3:101"},"nativeSrc":"763:15:101","nodeType":"YulFunctionCall","src":"763:15:101"},{"kind":"number","nativeSrc":"780:2:101","nodeType":"YulLiteral","src":"780:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"759:3:101","nodeType":"YulIdentifier","src":"759:3:101"},"nativeSrc":"759:24:101","nodeType":"YulFunctionCall","src":"759:24:101"},{"name":"dataEnd","nativeSrc":"785:7:101","nodeType":"YulIdentifier","src":"785:7:101"}],"functionName":{"name":"gt","nativeSrc":"756:2:101","nodeType":"YulIdentifier","src":"756:2:101"},"nativeSrc":"756:37:101","nodeType":"YulFunctionCall","src":"756:37:101"},"nativeSrc":"753:57:101","nodeType":"YulIf","src":"753:57:101"},{"nativeSrc":"819:21:101","nodeType":"YulAssignment","src":"819:21:101","value":{"arguments":[{"name":"_1","nativeSrc":"833:2:101","nodeType":"YulIdentifier","src":"833:2:101"},{"kind":"number","nativeSrc":"837:2:101","nodeType":"YulLiteral","src":"837:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"829:3:101","nodeType":"YulIdentifier","src":"829:3:101"},"nativeSrc":"829:11:101","nodeType":"YulFunctionCall","src":"829:11:101"},"variableNames":[{"name":"value1","nativeSrc":"819:6:101","nodeType":"YulIdentifier","src":"819:6:101"}]},{"nativeSrc":"849:16:101","nodeType":"YulAssignment","src":"849:16:101","value":{"name":"length","nativeSrc":"859:6:101","nodeType":"YulIdentifier","src":"859:6:101"},"variableNames":[{"name":"value2","nativeSrc":"849:6:101","nodeType":"YulIdentifier","src":"849:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptr","nativeSrc":"150:721:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"206:9:101","nodeType":"YulTypedName","src":"206:9:101","type":""},{"name":"dataEnd","nativeSrc":"217:7:101","nodeType":"YulTypedName","src":"217:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"229:6:101","nodeType":"YulTypedName","src":"229:6:101","type":""},{"name":"value1","nativeSrc":"237:6:101","nodeType":"YulTypedName","src":"237:6:101","type":""},{"name":"value2","nativeSrc":"245:6:101","nodeType":"YulTypedName","src":"245:6:101","type":""}],"src":"150:721:101"},{"body":{"nativeSrc":"919:53:101","nodeType":"YulBlock","src":"919:53:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"936:3:101","nodeType":"YulIdentifier","src":"936:3:101"},{"arguments":[{"name":"value","nativeSrc":"945:5:101","nodeType":"YulIdentifier","src":"945:5:101"},{"kind":"number","nativeSrc":"952:12:101","nodeType":"YulLiteral","src":"952:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"941:3:101","nodeType":"YulIdentifier","src":"941:3:101"},"nativeSrc":"941:24:101","nodeType":"YulFunctionCall","src":"941:24:101"}],"functionName":{"name":"mstore","nativeSrc":"929:6:101","nodeType":"YulIdentifier","src":"929:6:101"},"nativeSrc":"929:37:101","nodeType":"YulFunctionCall","src":"929:37:101"},"nativeSrc":"929:37:101","nodeType":"YulExpressionStatement","src":"929:37:101"}]},"name":"abi_encode_uint40","nativeSrc":"876:96:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"903:5:101","nodeType":"YulTypedName","src":"903:5:101","type":""},{"name":"pos","nativeSrc":"910:3:101","nodeType":"YulTypedName","src":"910:3:101","type":""}],"src":"876:96:101"},{"body":{"nativeSrc":"1031:781:101","nodeType":"YulBlock","src":"1031:781:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"1048:3:101","nodeType":"YulIdentifier","src":"1048:3:101"},{"arguments":[{"name":"value","nativeSrc":"1059:5:101","nodeType":"YulIdentifier","src":"1059:5:101"}],"functionName":{"name":"mload","nativeSrc":"1053:5:101","nodeType":"YulIdentifier","src":"1053:5:101"},"nativeSrc":"1053:12:101","nodeType":"YulFunctionCall","src":"1053:12:101"}],"functionName":{"name":"mstore","nativeSrc":"1041:6:101","nodeType":"YulIdentifier","src":"1041:6:101"},"nativeSrc":"1041:25:101","nodeType":"YulFunctionCall","src":"1041:25:101"},"nativeSrc":"1041:25:101","nodeType":"YulExpressionStatement","src":"1041:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1086:3:101","nodeType":"YulIdentifier","src":"1086:3:101"},{"kind":"number","nativeSrc":"1091:4:101","nodeType":"YulLiteral","src":"1091:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1082:3:101","nodeType":"YulIdentifier","src":"1082:3:101"},"nativeSrc":"1082:14:101","nodeType":"YulFunctionCall","src":"1082:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1108:5:101","nodeType":"YulIdentifier","src":"1108:5:101"},{"kind":"number","nativeSrc":"1115:4:101","nodeType":"YulLiteral","src":"1115:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1104:3:101","nodeType":"YulIdentifier","src":"1104:3:101"},"nativeSrc":"1104:16:101","nodeType":"YulFunctionCall","src":"1104:16:101"}],"functionName":{"name":"mload","nativeSrc":"1098:5:101","nodeType":"YulIdentifier","src":"1098:5:101"},"nativeSrc":"1098:23:101","nodeType":"YulFunctionCall","src":"1098:23:101"}],"functionName":{"name":"mstore","nativeSrc":"1075:6:101","nodeType":"YulIdentifier","src":"1075:6:101"},"nativeSrc":"1075:47:101","nodeType":"YulFunctionCall","src":"1075:47:101"},"nativeSrc":"1075:47:101","nodeType":"YulExpressionStatement","src":"1075:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1142:3:101","nodeType":"YulIdentifier","src":"1142:3:101"},{"kind":"number","nativeSrc":"1147:4:101","nodeType":"YulLiteral","src":"1147:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"1138:3:101","nodeType":"YulIdentifier","src":"1138:3:101"},"nativeSrc":"1138:14:101","nodeType":"YulFunctionCall","src":"1138:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1164:5:101","nodeType":"YulIdentifier","src":"1164:5:101"},{"kind":"number","nativeSrc":"1171:4:101","nodeType":"YulLiteral","src":"1171:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"1160:3:101","nodeType":"YulIdentifier","src":"1160:3:101"},"nativeSrc":"1160:16:101","nodeType":"YulFunctionCall","src":"1160:16:101"}],"functionName":{"name":"mload","nativeSrc":"1154:5:101","nodeType":"YulIdentifier","src":"1154:5:101"},"nativeSrc":"1154:23:101","nodeType":"YulFunctionCall","src":"1154:23:101"}],"functionName":{"name":"mstore","nativeSrc":"1131:6:101","nodeType":"YulIdentifier","src":"1131:6:101"},"nativeSrc":"1131:47:101","nodeType":"YulFunctionCall","src":"1131:47:101"},"nativeSrc":"1131:47:101","nodeType":"YulExpressionStatement","src":"1131:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1198:3:101","nodeType":"YulIdentifier","src":"1198:3:101"},{"kind":"number","nativeSrc":"1203:4:101","nodeType":"YulLiteral","src":"1203:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"1194:3:101","nodeType":"YulIdentifier","src":"1194:3:101"},"nativeSrc":"1194:14:101","nodeType":"YulFunctionCall","src":"1194:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1220:5:101","nodeType":"YulIdentifier","src":"1220:5:101"},{"kind":"number","nativeSrc":"1227:4:101","nodeType":"YulLiteral","src":"1227:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"1216:3:101","nodeType":"YulIdentifier","src":"1216:3:101"},"nativeSrc":"1216:16:101","nodeType":"YulFunctionCall","src":"1216:16:101"}],"functionName":{"name":"mload","nativeSrc":"1210:5:101","nodeType":"YulIdentifier","src":"1210:5:101"},"nativeSrc":"1210:23:101","nodeType":"YulFunctionCall","src":"1210:23:101"}],"functionName":{"name":"mstore","nativeSrc":"1187:6:101","nodeType":"YulIdentifier","src":"1187:6:101"},"nativeSrc":"1187:47:101","nodeType":"YulFunctionCall","src":"1187:47:101"},"nativeSrc":"1187:47:101","nodeType":"YulExpressionStatement","src":"1187:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1254:3:101","nodeType":"YulIdentifier","src":"1254:3:101"},{"kind":"number","nativeSrc":"1259:4:101","nodeType":"YulLiteral","src":"1259:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"1250:3:101","nodeType":"YulIdentifier","src":"1250:3:101"},"nativeSrc":"1250:14:101","nodeType":"YulFunctionCall","src":"1250:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1276:5:101","nodeType":"YulIdentifier","src":"1276:5:101"},{"kind":"number","nativeSrc":"1283:4:101","nodeType":"YulLiteral","src":"1283:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"1272:3:101","nodeType":"YulIdentifier","src":"1272:3:101"},"nativeSrc":"1272:16:101","nodeType":"YulFunctionCall","src":"1272:16:101"}],"functionName":{"name":"mload","nativeSrc":"1266:5:101","nodeType":"YulIdentifier","src":"1266:5:101"},"nativeSrc":"1266:23:101","nodeType":"YulFunctionCall","src":"1266:23:101"}],"functionName":{"name":"mstore","nativeSrc":"1243:6:101","nodeType":"YulIdentifier","src":"1243:6:101"},"nativeSrc":"1243:47:101","nodeType":"YulFunctionCall","src":"1243:47:101"},"nativeSrc":"1243:47:101","nodeType":"YulExpressionStatement","src":"1243:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1310:3:101","nodeType":"YulIdentifier","src":"1310:3:101"},{"kind":"number","nativeSrc":"1315:4:101","nodeType":"YulLiteral","src":"1315:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"1306:3:101","nodeType":"YulIdentifier","src":"1306:3:101"},"nativeSrc":"1306:14:101","nodeType":"YulFunctionCall","src":"1306:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1332:5:101","nodeType":"YulIdentifier","src":"1332:5:101"},{"kind":"number","nativeSrc":"1339:4:101","nodeType":"YulLiteral","src":"1339:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"1328:3:101","nodeType":"YulIdentifier","src":"1328:3:101"},"nativeSrc":"1328:16:101","nodeType":"YulFunctionCall","src":"1328:16:101"}],"functionName":{"name":"mload","nativeSrc":"1322:5:101","nodeType":"YulIdentifier","src":"1322:5:101"},"nativeSrc":"1322:23:101","nodeType":"YulFunctionCall","src":"1322:23:101"}],"functionName":{"name":"mstore","nativeSrc":"1299:6:101","nodeType":"YulIdentifier","src":"1299:6:101"},"nativeSrc":"1299:47:101","nodeType":"YulFunctionCall","src":"1299:47:101"},"nativeSrc":"1299:47:101","nodeType":"YulExpressionStatement","src":"1299:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1366:3:101","nodeType":"YulIdentifier","src":"1366:3:101"},{"kind":"number","nativeSrc":"1371:4:101","nodeType":"YulLiteral","src":"1371:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"1362:3:101","nodeType":"YulIdentifier","src":"1362:3:101"},"nativeSrc":"1362:14:101","nodeType":"YulFunctionCall","src":"1362:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1388:5:101","nodeType":"YulIdentifier","src":"1388:5:101"},{"kind":"number","nativeSrc":"1395:4:101","nodeType":"YulLiteral","src":"1395:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"1384:3:101","nodeType":"YulIdentifier","src":"1384:3:101"},"nativeSrc":"1384:16:101","nodeType":"YulFunctionCall","src":"1384:16:101"}],"functionName":{"name":"mload","nativeSrc":"1378:5:101","nodeType":"YulIdentifier","src":"1378:5:101"},"nativeSrc":"1378:23:101","nodeType":"YulFunctionCall","src":"1378:23:101"}],"functionName":{"name":"mstore","nativeSrc":"1355:6:101","nodeType":"YulIdentifier","src":"1355:6:101"},"nativeSrc":"1355:47:101","nodeType":"YulFunctionCall","src":"1355:47:101"},"nativeSrc":"1355:47:101","nodeType":"YulExpressionStatement","src":"1355:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1422:3:101","nodeType":"YulIdentifier","src":"1422:3:101"},{"kind":"number","nativeSrc":"1427:4:101","nodeType":"YulLiteral","src":"1427:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"1418:3:101","nodeType":"YulIdentifier","src":"1418:3:101"},"nativeSrc":"1418:14:101","nodeType":"YulFunctionCall","src":"1418:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1444:5:101","nodeType":"YulIdentifier","src":"1444:5:101"},{"kind":"number","nativeSrc":"1451:4:101","nodeType":"YulLiteral","src":"1451:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"1440:3:101","nodeType":"YulIdentifier","src":"1440:3:101"},"nativeSrc":"1440:16:101","nodeType":"YulFunctionCall","src":"1440:16:101"}],"functionName":{"name":"mload","nativeSrc":"1434:5:101","nodeType":"YulIdentifier","src":"1434:5:101"},"nativeSrc":"1434:23:101","nodeType":"YulFunctionCall","src":"1434:23:101"}],"functionName":{"name":"mstore","nativeSrc":"1411:6:101","nodeType":"YulIdentifier","src":"1411:6:101"},"nativeSrc":"1411:47:101","nodeType":"YulFunctionCall","src":"1411:47:101"},"nativeSrc":"1411:47:101","nodeType":"YulExpressionStatement","src":"1411:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1478:3:101","nodeType":"YulIdentifier","src":"1478:3:101"},{"kind":"number","nativeSrc":"1483:6:101","nodeType":"YulLiteral","src":"1483:6:101","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"1474:3:101","nodeType":"YulIdentifier","src":"1474:3:101"},"nativeSrc":"1474:16:101","nodeType":"YulFunctionCall","src":"1474:16:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1502:5:101","nodeType":"YulIdentifier","src":"1502:5:101"},{"kind":"number","nativeSrc":"1509:6:101","nodeType":"YulLiteral","src":"1509:6:101","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"1498:3:101","nodeType":"YulIdentifier","src":"1498:3:101"},"nativeSrc":"1498:18:101","nodeType":"YulFunctionCall","src":"1498:18:101"}],"functionName":{"name":"mload","nativeSrc":"1492:5:101","nodeType":"YulIdentifier","src":"1492:5:101"},"nativeSrc":"1492:25:101","nodeType":"YulFunctionCall","src":"1492:25:101"}],"functionName":{"name":"mstore","nativeSrc":"1467:6:101","nodeType":"YulIdentifier","src":"1467:6:101"},"nativeSrc":"1467:51:101","nodeType":"YulFunctionCall","src":"1467:51:101"},"nativeSrc":"1467:51:101","nodeType":"YulExpressionStatement","src":"1467:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1538:3:101","nodeType":"YulIdentifier","src":"1538:3:101"},{"kind":"number","nativeSrc":"1543:6:101","nodeType":"YulLiteral","src":"1543:6:101","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"1534:3:101","nodeType":"YulIdentifier","src":"1534:3:101"},"nativeSrc":"1534:16:101","nodeType":"YulFunctionCall","src":"1534:16:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1562:5:101","nodeType":"YulIdentifier","src":"1562:5:101"},{"kind":"number","nativeSrc":"1569:6:101","nodeType":"YulLiteral","src":"1569:6:101","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"1558:3:101","nodeType":"YulIdentifier","src":"1558:3:101"},"nativeSrc":"1558:18:101","nodeType":"YulFunctionCall","src":"1558:18:101"}],"functionName":{"name":"mload","nativeSrc":"1552:5:101","nodeType":"YulIdentifier","src":"1552:5:101"},"nativeSrc":"1552:25:101","nodeType":"YulFunctionCall","src":"1552:25:101"}],"functionName":{"name":"mstore","nativeSrc":"1527:6:101","nodeType":"YulIdentifier","src":"1527:6:101"},"nativeSrc":"1527:51:101","nodeType":"YulFunctionCall","src":"1527:51:101"},"nativeSrc":"1527:51:101","nodeType":"YulExpressionStatement","src":"1527:51:101"},{"nativeSrc":"1587:45:101","nodeType":"YulVariableDeclaration","src":"1587:45:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1617:5:101","nodeType":"YulIdentifier","src":"1617:5:101"},{"kind":"number","nativeSrc":"1624:6:101","nodeType":"YulLiteral","src":"1624:6:101","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"1613:3:101","nodeType":"YulIdentifier","src":"1613:3:101"},"nativeSrc":"1613:18:101","nodeType":"YulFunctionCall","src":"1613:18:101"}],"functionName":{"name":"mload","nativeSrc":"1607:5:101","nodeType":"YulIdentifier","src":"1607:5:101"},"nativeSrc":"1607:25:101","nodeType":"YulFunctionCall","src":"1607:25:101"},"variables":[{"name":"memberValue0","nativeSrc":"1591:12:101","nodeType":"YulTypedName","src":"1591:12:101","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"1659:12:101","nodeType":"YulIdentifier","src":"1659:12:101"},{"arguments":[{"name":"pos","nativeSrc":"1677:3:101","nodeType":"YulIdentifier","src":"1677:3:101"},{"kind":"number","nativeSrc":"1682:6:101","nodeType":"YulLiteral","src":"1682:6:101","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"1673:3:101","nodeType":"YulIdentifier","src":"1673:3:101"},"nativeSrc":"1673:16:101","nodeType":"YulFunctionCall","src":"1673:16:101"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"1641:17:101","nodeType":"YulIdentifier","src":"1641:17:101"},"nativeSrc":"1641:49:101","nodeType":"YulFunctionCall","src":"1641:49:101"},"nativeSrc":"1641:49:101","nodeType":"YulExpressionStatement","src":"1641:49:101"},{"nativeSrc":"1699:47:101","nodeType":"YulVariableDeclaration","src":"1699:47:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1731:5:101","nodeType":"YulIdentifier","src":"1731:5:101"},{"kind":"number","nativeSrc":"1738:6:101","nodeType":"YulLiteral","src":"1738:6:101","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"1727:3:101","nodeType":"YulIdentifier","src":"1727:3:101"},"nativeSrc":"1727:18:101","nodeType":"YulFunctionCall","src":"1727:18:101"}],"functionName":{"name":"mload","nativeSrc":"1721:5:101","nodeType":"YulIdentifier","src":"1721:5:101"},"nativeSrc":"1721:25:101","nodeType":"YulFunctionCall","src":"1721:25:101"},"variables":[{"name":"memberValue0_1","nativeSrc":"1703:14:101","nodeType":"YulTypedName","src":"1703:14:101","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nativeSrc":"1773:14:101","nodeType":"YulIdentifier","src":"1773:14:101"},{"arguments":[{"name":"pos","nativeSrc":"1793:3:101","nodeType":"YulIdentifier","src":"1793:3:101"},{"kind":"number","nativeSrc":"1798:6:101","nodeType":"YulLiteral","src":"1798:6:101","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"1789:3:101","nodeType":"YulIdentifier","src":"1789:3:101"},"nativeSrc":"1789:16:101","nodeType":"YulFunctionCall","src":"1789:16:101"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"1755:17:101","nodeType":"YulIdentifier","src":"1755:17:101"},"nativeSrc":"1755:51:101","nodeType":"YulFunctionCall","src":"1755:51:101"},"nativeSrc":"1755:51:101","nodeType":"YulExpressionStatement","src":"1755:51:101"}]},"name":"abi_encode_struct_PolicyData","nativeSrc":"977:835:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"1015:5:101","nodeType":"YulTypedName","src":"1015:5:101","type":""},{"name":"pos","nativeSrc":"1022:3:101","nodeType":"YulTypedName","src":"1022:3:101","type":""}],"src":"977:835:101"},{"body":{"nativeSrc":"2060:231:101","nodeType":"YulBlock","src":"2060:231:101","statements":[{"nativeSrc":"2070:27:101","nodeType":"YulAssignment","src":"2070:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"2082:9:101","nodeType":"YulIdentifier","src":"2082:9:101"},{"kind":"number","nativeSrc":"2093:3:101","nodeType":"YulLiteral","src":"2093:3:101","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"2078:3:101","nodeType":"YulIdentifier","src":"2078:3:101"},"nativeSrc":"2078:19:101","nodeType":"YulFunctionCall","src":"2078:19:101"},"variableNames":[{"name":"tail","nativeSrc":"2070:4:101","nodeType":"YulIdentifier","src":"2070:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"2135:6:101","nodeType":"YulIdentifier","src":"2135:6:101"},{"name":"headStart","nativeSrc":"2143:9:101","nodeType":"YulIdentifier","src":"2143:9:101"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"2106:28:101","nodeType":"YulIdentifier","src":"2106:28:101"},"nativeSrc":"2106:47:101","nodeType":"YulFunctionCall","src":"2106:47:101"},"nativeSrc":"2106:47:101","nodeType":"YulExpressionStatement","src":"2106:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2173:9:101","nodeType":"YulIdentifier","src":"2173:9:101"},{"kind":"number","nativeSrc":"2184:3:101","nodeType":"YulLiteral","src":"2184:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"2169:3:101","nodeType":"YulIdentifier","src":"2169:3:101"},"nativeSrc":"2169:19:101","nodeType":"YulFunctionCall","src":"2169:19:101"},{"name":"value1","nativeSrc":"2190:6:101","nodeType":"YulIdentifier","src":"2190:6:101"}],"functionName":{"name":"mstore","nativeSrc":"2162:6:101","nodeType":"YulIdentifier","src":"2162:6:101"},"nativeSrc":"2162:35:101","nodeType":"YulFunctionCall","src":"2162:35:101"},"nativeSrc":"2162:35:101","nodeType":"YulExpressionStatement","src":"2162:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2217:9:101","nodeType":"YulIdentifier","src":"2217:9:101"},{"kind":"number","nativeSrc":"2228:3:101","nodeType":"YulLiteral","src":"2228:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"2213:3:101","nodeType":"YulIdentifier","src":"2213:3:101"},"nativeSrc":"2213:19:101","nodeType":"YulFunctionCall","src":"2213:19:101"},{"name":"value2","nativeSrc":"2234:6:101","nodeType":"YulIdentifier","src":"2234:6:101"}],"functionName":{"name":"mstore","nativeSrc":"2206:6:101","nodeType":"YulIdentifier","src":"2206:6:101"},"nativeSrc":"2206:35:101","nodeType":"YulFunctionCall","src":"2206:35:101"},"nativeSrc":"2206:35:101","nodeType":"YulExpressionStatement","src":"2206:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2261:9:101","nodeType":"YulIdentifier","src":"2261:9:101"},{"kind":"number","nativeSrc":"2272:3:101","nodeType":"YulLiteral","src":"2272:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"2257:3:101","nodeType":"YulIdentifier","src":"2257:3:101"},"nativeSrc":"2257:19:101","nodeType":"YulFunctionCall","src":"2257:19:101"},{"name":"value3","nativeSrc":"2278:6:101","nodeType":"YulIdentifier","src":"2278:6:101"}],"functionName":{"name":"mstore","nativeSrc":"2250:6:101","nodeType":"YulIdentifier","src":"2250:6:101"},"nativeSrc":"2250:35:101","nodeType":"YulFunctionCall","src":"2250:35:101"},"nativeSrc":"2250:35:101","nodeType":"YulExpressionStatement","src":"2250:35:101"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"1817:474:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2005:9:101","nodeType":"YulTypedName","src":"2005:9:101","type":""},{"name":"value3","nativeSrc":"2016:6:101","nodeType":"YulTypedName","src":"2016:6:101","type":""},{"name":"value2","nativeSrc":"2024:6:101","nodeType":"YulTypedName","src":"2024:6:101","type":""},{"name":"value1","nativeSrc":"2032:6:101","nodeType":"YulTypedName","src":"2032:6:101","type":""},{"name":"value0","nativeSrc":"2040:6:101","nodeType":"YulTypedName","src":"2040:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2051:4:101","nodeType":"YulTypedName","src":"2051:4:101","type":""}],"src":"1817:474:101"},{"body":{"nativeSrc":"2346:377:101","nodeType":"YulBlock","src":"2346:377:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"2363:3:101","nodeType":"YulIdentifier","src":"2363:3:101"},{"arguments":[{"name":"value","nativeSrc":"2374:5:101","nodeType":"YulIdentifier","src":"2374:5:101"}],"functionName":{"name":"mload","nativeSrc":"2368:5:101","nodeType":"YulIdentifier","src":"2368:5:101"},"nativeSrc":"2368:12:101","nodeType":"YulFunctionCall","src":"2368:12:101"}],"functionName":{"name":"mstore","nativeSrc":"2356:6:101","nodeType":"YulIdentifier","src":"2356:6:101"},"nativeSrc":"2356:25:101","nodeType":"YulFunctionCall","src":"2356:25:101"},"nativeSrc":"2356:25:101","nodeType":"YulExpressionStatement","src":"2356:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2401:3:101","nodeType":"YulIdentifier","src":"2401:3:101"},{"kind":"number","nativeSrc":"2406:4:101","nodeType":"YulLiteral","src":"2406:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2397:3:101","nodeType":"YulIdentifier","src":"2397:3:101"},"nativeSrc":"2397:14:101","nodeType":"YulFunctionCall","src":"2397:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2423:5:101","nodeType":"YulIdentifier","src":"2423:5:101"},{"kind":"number","nativeSrc":"2430:4:101","nodeType":"YulLiteral","src":"2430:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2419:3:101","nodeType":"YulIdentifier","src":"2419:3:101"},"nativeSrc":"2419:16:101","nodeType":"YulFunctionCall","src":"2419:16:101"}],"functionName":{"name":"mload","nativeSrc":"2413:5:101","nodeType":"YulIdentifier","src":"2413:5:101"},"nativeSrc":"2413:23:101","nodeType":"YulFunctionCall","src":"2413:23:101"}],"functionName":{"name":"mstore","nativeSrc":"2390:6:101","nodeType":"YulIdentifier","src":"2390:6:101"},"nativeSrc":"2390:47:101","nodeType":"YulFunctionCall","src":"2390:47:101"},"nativeSrc":"2390:47:101","nodeType":"YulExpressionStatement","src":"2390:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2457:3:101","nodeType":"YulIdentifier","src":"2457:3:101"},{"kind":"number","nativeSrc":"2462:4:101","nodeType":"YulLiteral","src":"2462:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"2453:3:101","nodeType":"YulIdentifier","src":"2453:3:101"},"nativeSrc":"2453:14:101","nodeType":"YulFunctionCall","src":"2453:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2479:5:101","nodeType":"YulIdentifier","src":"2479:5:101"},{"kind":"number","nativeSrc":"2486:4:101","nodeType":"YulLiteral","src":"2486:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"2475:3:101","nodeType":"YulIdentifier","src":"2475:3:101"},"nativeSrc":"2475:16:101","nodeType":"YulFunctionCall","src":"2475:16:101"}],"functionName":{"name":"mload","nativeSrc":"2469:5:101","nodeType":"YulIdentifier","src":"2469:5:101"},"nativeSrc":"2469:23:101","nodeType":"YulFunctionCall","src":"2469:23:101"}],"functionName":{"name":"mstore","nativeSrc":"2446:6:101","nodeType":"YulIdentifier","src":"2446:6:101"},"nativeSrc":"2446:47:101","nodeType":"YulFunctionCall","src":"2446:47:101"},"nativeSrc":"2446:47:101","nodeType":"YulExpressionStatement","src":"2446:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2513:3:101","nodeType":"YulIdentifier","src":"2513:3:101"},{"kind":"number","nativeSrc":"2518:4:101","nodeType":"YulLiteral","src":"2518:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"2509:3:101","nodeType":"YulIdentifier","src":"2509:3:101"},"nativeSrc":"2509:14:101","nodeType":"YulFunctionCall","src":"2509:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2535:5:101","nodeType":"YulIdentifier","src":"2535:5:101"},{"kind":"number","nativeSrc":"2542:4:101","nodeType":"YulLiteral","src":"2542:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"2531:3:101","nodeType":"YulIdentifier","src":"2531:3:101"},"nativeSrc":"2531:16:101","nodeType":"YulFunctionCall","src":"2531:16:101"}],"functionName":{"name":"mload","nativeSrc":"2525:5:101","nodeType":"YulIdentifier","src":"2525:5:101"},"nativeSrc":"2525:23:101","nodeType":"YulFunctionCall","src":"2525:23:101"}],"functionName":{"name":"mstore","nativeSrc":"2502:6:101","nodeType":"YulIdentifier","src":"2502:6:101"},"nativeSrc":"2502:47:101","nodeType":"YulFunctionCall","src":"2502:47:101"},"nativeSrc":"2502:47:101","nodeType":"YulExpressionStatement","src":"2502:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2569:3:101","nodeType":"YulIdentifier","src":"2569:3:101"},{"kind":"number","nativeSrc":"2574:4:101","nodeType":"YulLiteral","src":"2574:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"2565:3:101","nodeType":"YulIdentifier","src":"2565:3:101"},"nativeSrc":"2565:14:101","nodeType":"YulFunctionCall","src":"2565:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2591:5:101","nodeType":"YulIdentifier","src":"2591:5:101"},{"kind":"number","nativeSrc":"2598:4:101","nodeType":"YulLiteral","src":"2598:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"2587:3:101","nodeType":"YulIdentifier","src":"2587:3:101"},"nativeSrc":"2587:16:101","nodeType":"YulFunctionCall","src":"2587:16:101"}],"functionName":{"name":"mload","nativeSrc":"2581:5:101","nodeType":"YulIdentifier","src":"2581:5:101"},"nativeSrc":"2581:23:101","nodeType":"YulFunctionCall","src":"2581:23:101"}],"functionName":{"name":"mstore","nativeSrc":"2558:6:101","nodeType":"YulIdentifier","src":"2558:6:101"},"nativeSrc":"2558:47:101","nodeType":"YulFunctionCall","src":"2558:47:101"},"nativeSrc":"2558:47:101","nodeType":"YulExpressionStatement","src":"2558:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2625:3:101","nodeType":"YulIdentifier","src":"2625:3:101"},{"kind":"number","nativeSrc":"2630:4:101","nodeType":"YulLiteral","src":"2630:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"2621:3:101","nodeType":"YulIdentifier","src":"2621:3:101"},"nativeSrc":"2621:14:101","nodeType":"YulFunctionCall","src":"2621:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2647:5:101","nodeType":"YulIdentifier","src":"2647:5:101"},{"kind":"number","nativeSrc":"2654:4:101","nodeType":"YulLiteral","src":"2654:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"2643:3:101","nodeType":"YulIdentifier","src":"2643:3:101"},"nativeSrc":"2643:16:101","nodeType":"YulFunctionCall","src":"2643:16:101"}],"functionName":{"name":"mload","nativeSrc":"2637:5:101","nodeType":"YulIdentifier","src":"2637:5:101"},"nativeSrc":"2637:23:101","nodeType":"YulFunctionCall","src":"2637:23:101"}],"functionName":{"name":"mstore","nativeSrc":"2614:6:101","nodeType":"YulIdentifier","src":"2614:6:101"},"nativeSrc":"2614:47:101","nodeType":"YulFunctionCall","src":"2614:47:101"},"nativeSrc":"2614:47:101","nodeType":"YulExpressionStatement","src":"2614:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2681:3:101","nodeType":"YulIdentifier","src":"2681:3:101"},{"kind":"number","nativeSrc":"2686:4:101","nodeType":"YulLiteral","src":"2686:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"2677:3:101","nodeType":"YulIdentifier","src":"2677:3:101"},"nativeSrc":"2677:14:101","nodeType":"YulFunctionCall","src":"2677:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2703:5:101","nodeType":"YulIdentifier","src":"2703:5:101"},{"kind":"number","nativeSrc":"2710:4:101","nodeType":"YulLiteral","src":"2710:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"2699:3:101","nodeType":"YulIdentifier","src":"2699:3:101"},"nativeSrc":"2699:16:101","nodeType":"YulFunctionCall","src":"2699:16:101"}],"functionName":{"name":"mload","nativeSrc":"2693:5:101","nodeType":"YulIdentifier","src":"2693:5:101"},"nativeSrc":"2693:23:101","nodeType":"YulFunctionCall","src":"2693:23:101"}],"functionName":{"name":"mstore","nativeSrc":"2670:6:101","nodeType":"YulIdentifier","src":"2670:6:101"},"nativeSrc":"2670:47:101","nodeType":"YulFunctionCall","src":"2670:47:101"},"nativeSrc":"2670:47:101","nodeType":"YulExpressionStatement","src":"2670:47:101"}]},"name":"abi_encode_struct_Params","nativeSrc":"2296:427:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"2330:5:101","nodeType":"YulTypedName","src":"2330:5:101","type":""},{"name":"pos","nativeSrc":"2337:3:101","nodeType":"YulTypedName","src":"2337:3:101","type":""}],"src":"2296:427:101"},{"body":{"nativeSrc":"3101:433:101","nodeType":"YulBlock","src":"3101:433:101","statements":[{"nativeSrc":"3111:27:101","nodeType":"YulAssignment","src":"3111:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3123:9:101","nodeType":"YulIdentifier","src":"3123:9:101"},{"kind":"number","nativeSrc":"3134:3:101","nodeType":"YulLiteral","src":"3134:3:101","type":"","value":"768"}],"functionName":{"name":"add","nativeSrc":"3119:3:101","nodeType":"YulIdentifier","src":"3119:3:101"},"nativeSrc":"3119:19:101","nodeType":"YulFunctionCall","src":"3119:19:101"},"variableNames":[{"name":"tail","nativeSrc":"3111:4:101","nodeType":"YulIdentifier","src":"3111:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"3176:6:101","nodeType":"YulIdentifier","src":"3176:6:101"},{"name":"headStart","nativeSrc":"3184:9:101","nodeType":"YulIdentifier","src":"3184:9:101"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"3147:28:101","nodeType":"YulIdentifier","src":"3147:28:101"},"nativeSrc":"3147:47:101","nodeType":"YulFunctionCall","src":"3147:47:101"},"nativeSrc":"3147:47:101","nodeType":"YulExpressionStatement","src":"3147:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3214:9:101","nodeType":"YulIdentifier","src":"3214:9:101"},{"kind":"number","nativeSrc":"3225:3:101","nodeType":"YulLiteral","src":"3225:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"3210:3:101","nodeType":"YulIdentifier","src":"3210:3:101"},"nativeSrc":"3210:19:101","nodeType":"YulFunctionCall","src":"3210:19:101"},{"name":"value1","nativeSrc":"3231:6:101","nodeType":"YulIdentifier","src":"3231:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3203:6:101","nodeType":"YulIdentifier","src":"3203:6:101"},"nativeSrc":"3203:35:101","nodeType":"YulFunctionCall","src":"3203:35:101"},"nativeSrc":"3203:35:101","nodeType":"YulExpressionStatement","src":"3203:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3258:9:101","nodeType":"YulIdentifier","src":"3258:9:101"},{"kind":"number","nativeSrc":"3269:3:101","nodeType":"YulLiteral","src":"3269:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"3254:3:101","nodeType":"YulIdentifier","src":"3254:3:101"},"nativeSrc":"3254:19:101","nodeType":"YulFunctionCall","src":"3254:19:101"},{"name":"value2","nativeSrc":"3275:6:101","nodeType":"YulIdentifier","src":"3275:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3247:6:101","nodeType":"YulIdentifier","src":"3247:6:101"},"nativeSrc":"3247:35:101","nodeType":"YulFunctionCall","src":"3247:35:101"},"nativeSrc":"3247:35:101","nodeType":"YulExpressionStatement","src":"3247:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3302:9:101","nodeType":"YulIdentifier","src":"3302:9:101"},{"kind":"number","nativeSrc":"3313:3:101","nodeType":"YulLiteral","src":"3313:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"3298:3:101","nodeType":"YulIdentifier","src":"3298:3:101"},"nativeSrc":"3298:19:101","nodeType":"YulFunctionCall","src":"3298:19:101"},{"name":"value3","nativeSrc":"3319:6:101","nodeType":"YulIdentifier","src":"3319:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3291:6:101","nodeType":"YulIdentifier","src":"3291:6:101"},"nativeSrc":"3291:35:101","nodeType":"YulFunctionCall","src":"3291:35:101"},"nativeSrc":"3291:35:101","nodeType":"YulExpressionStatement","src":"3291:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3346:9:101","nodeType":"YulIdentifier","src":"3346:9:101"},{"kind":"number","nativeSrc":"3357:3:101","nodeType":"YulLiteral","src":"3357:3:101","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"3342:3:101","nodeType":"YulIdentifier","src":"3342:3:101"},"nativeSrc":"3342:19:101","nodeType":"YulFunctionCall","src":"3342:19:101"},{"arguments":[{"name":"value4","nativeSrc":"3367:6:101","nodeType":"YulIdentifier","src":"3367:6:101"},{"kind":"number","nativeSrc":"3375:12:101","nodeType":"YulLiteral","src":"3375:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"3363:3:101","nodeType":"YulIdentifier","src":"3363:3:101"},"nativeSrc":"3363:25:101","nodeType":"YulFunctionCall","src":"3363:25:101"}],"functionName":{"name":"mstore","nativeSrc":"3335:6:101","nodeType":"YulIdentifier","src":"3335:6:101"},"nativeSrc":"3335:54:101","nodeType":"YulFunctionCall","src":"3335:54:101"},"nativeSrc":"3335:54:101","nodeType":"YulExpressionStatement","src":"3335:54:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3409:9:101","nodeType":"YulIdentifier","src":"3409:9:101"},{"kind":"number","nativeSrc":"3420:3:101","nodeType":"YulLiteral","src":"3420:3:101","type":"","value":"512"}],"functionName":{"name":"add","nativeSrc":"3405:3:101","nodeType":"YulIdentifier","src":"3405:3:101"},"nativeSrc":"3405:19:101","nodeType":"YulFunctionCall","src":"3405:19:101"},{"arguments":[{"name":"value5","nativeSrc":"3430:6:101","nodeType":"YulIdentifier","src":"3430:6:101"},{"kind":"number","nativeSrc":"3438:26:101","nodeType":"YulLiteral","src":"3438:26:101","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"3426:3:101","nodeType":"YulIdentifier","src":"3426:3:101"},"nativeSrc":"3426:39:101","nodeType":"YulFunctionCall","src":"3426:39:101"}],"functionName":{"name":"mstore","nativeSrc":"3398:6:101","nodeType":"YulIdentifier","src":"3398:6:101"},"nativeSrc":"3398:68:101","nodeType":"YulFunctionCall","src":"3398:68:101"},"nativeSrc":"3398:68:101","nodeType":"YulExpressionStatement","src":"3398:68:101"},{"expression":{"arguments":[{"name":"value6","nativeSrc":"3500:6:101","nodeType":"YulIdentifier","src":"3500:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"3512:9:101","nodeType":"YulIdentifier","src":"3512:9:101"},{"kind":"number","nativeSrc":"3523:3:101","nodeType":"YulLiteral","src":"3523:3:101","type":"","value":"544"}],"functionName":{"name":"add","nativeSrc":"3508:3:101","nodeType":"YulIdentifier","src":"3508:3:101"},"nativeSrc":"3508:19:101","nodeType":"YulFunctionCall","src":"3508:19:101"}],"functionName":{"name":"abi_encode_struct_Params","nativeSrc":"3475:24:101","nodeType":"YulIdentifier","src":"3475:24:101"},"nativeSrc":"3475:53:101","nodeType":"YulFunctionCall","src":"3475:53:101"},"nativeSrc":"3475:53:101","nodeType":"YulExpressionStatement","src":"3475:53:101"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__fromStack_reversed","nativeSrc":"2728:806:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3022:9:101","nodeType":"YulTypedName","src":"3022:9:101","type":""},{"name":"value6","nativeSrc":"3033:6:101","nodeType":"YulTypedName","src":"3033:6:101","type":""},{"name":"value5","nativeSrc":"3041:6:101","nodeType":"YulTypedName","src":"3041:6:101","type":""},{"name":"value4","nativeSrc":"3049:6:101","nodeType":"YulTypedName","src":"3049:6:101","type":""},{"name":"value3","nativeSrc":"3057:6:101","nodeType":"YulTypedName","src":"3057:6:101","type":""},{"name":"value2","nativeSrc":"3065:6:101","nodeType":"YulTypedName","src":"3065:6:101","type":""},{"name":"value1","nativeSrc":"3073:6:101","nodeType":"YulTypedName","src":"3073:6:101","type":""},{"name":"value0","nativeSrc":"3081:6:101","nodeType":"YulTypedName","src":"3081:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3092:4:101","nodeType":"YulTypedName","src":"3092:4:101","type":""}],"src":"2728:806:101"},{"body":{"nativeSrc":"3826:364:101","nodeType":"YulBlock","src":"3826:364:101","statements":[{"nativeSrc":"3836:27:101","nodeType":"YulAssignment","src":"3836:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3848:9:101","nodeType":"YulIdentifier","src":"3848:9:101"},{"kind":"number","nativeSrc":"3859:3:101","nodeType":"YulLiteral","src":"3859:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"3844:3:101","nodeType":"YulIdentifier","src":"3844:3:101"},"nativeSrc":"3844:19:101","nodeType":"YulFunctionCall","src":"3844:19:101"},"variableNames":[{"name":"tail","nativeSrc":"3836:4:101","nodeType":"YulIdentifier","src":"3836:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3879:9:101","nodeType":"YulIdentifier","src":"3879:9:101"},{"name":"value0","nativeSrc":"3890:6:101","nodeType":"YulIdentifier","src":"3890:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3872:6:101","nodeType":"YulIdentifier","src":"3872:6:101"},"nativeSrc":"3872:25:101","nodeType":"YulFunctionCall","src":"3872:25:101"},"nativeSrc":"3872:25:101","nodeType":"YulExpressionStatement","src":"3872:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3917:9:101","nodeType":"YulIdentifier","src":"3917:9:101"},{"kind":"number","nativeSrc":"3928:2:101","nodeType":"YulLiteral","src":"3928:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3913:3:101","nodeType":"YulIdentifier","src":"3913:3:101"},"nativeSrc":"3913:18:101","nodeType":"YulFunctionCall","src":"3913:18:101"},{"name":"value1","nativeSrc":"3933:6:101","nodeType":"YulIdentifier","src":"3933:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3906:6:101","nodeType":"YulIdentifier","src":"3906:6:101"},"nativeSrc":"3906:34:101","nodeType":"YulFunctionCall","src":"3906:34:101"},"nativeSrc":"3906:34:101","nodeType":"YulExpressionStatement","src":"3906:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3960:9:101","nodeType":"YulIdentifier","src":"3960:9:101"},{"kind":"number","nativeSrc":"3971:2:101","nodeType":"YulLiteral","src":"3971:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3956:3:101","nodeType":"YulIdentifier","src":"3956:3:101"},"nativeSrc":"3956:18:101","nodeType":"YulFunctionCall","src":"3956:18:101"},{"name":"value2","nativeSrc":"3976:6:101","nodeType":"YulIdentifier","src":"3976:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3949:6:101","nodeType":"YulIdentifier","src":"3949:6:101"},"nativeSrc":"3949:34:101","nodeType":"YulFunctionCall","src":"3949:34:101"},"nativeSrc":"3949:34:101","nodeType":"YulExpressionStatement","src":"3949:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4003:9:101","nodeType":"YulIdentifier","src":"4003:9:101"},{"kind":"number","nativeSrc":"4014:2:101","nodeType":"YulLiteral","src":"4014:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3999:3:101","nodeType":"YulIdentifier","src":"3999:3:101"},"nativeSrc":"3999:18:101","nodeType":"YulFunctionCall","src":"3999:18:101"},{"arguments":[{"name":"value3","nativeSrc":"4023:6:101","nodeType":"YulIdentifier","src":"4023:6:101"},{"kind":"number","nativeSrc":"4031:12:101","nodeType":"YulLiteral","src":"4031:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"4019:3:101","nodeType":"YulIdentifier","src":"4019:3:101"},"nativeSrc":"4019:25:101","nodeType":"YulFunctionCall","src":"4019:25:101"}],"functionName":{"name":"mstore","nativeSrc":"3992:6:101","nodeType":"YulIdentifier","src":"3992:6:101"},"nativeSrc":"3992:53:101","nodeType":"YulFunctionCall","src":"3992:53:101"},"nativeSrc":"3992:53:101","nodeType":"YulExpressionStatement","src":"3992:53:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4065:9:101","nodeType":"YulIdentifier","src":"4065:9:101"},{"kind":"number","nativeSrc":"4076:3:101","nodeType":"YulLiteral","src":"4076:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4061:3:101","nodeType":"YulIdentifier","src":"4061:3:101"},"nativeSrc":"4061:19:101","nodeType":"YulFunctionCall","src":"4061:19:101"},{"arguments":[{"name":"value4","nativeSrc":"4086:6:101","nodeType":"YulIdentifier","src":"4086:6:101"},{"kind":"number","nativeSrc":"4094:26:101","nodeType":"YulLiteral","src":"4094:26:101","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"4082:3:101","nodeType":"YulIdentifier","src":"4082:3:101"},"nativeSrc":"4082:39:101","nodeType":"YulFunctionCall","src":"4082:39:101"}],"functionName":{"name":"mstore","nativeSrc":"4054:6:101","nodeType":"YulIdentifier","src":"4054:6:101"},"nativeSrc":"4054:68:101","nodeType":"YulFunctionCall","src":"4054:68:101"},"nativeSrc":"4054:68:101","nodeType":"YulExpressionStatement","src":"4054:68:101"},{"expression":{"arguments":[{"name":"value5","nativeSrc":"4156:6:101","nodeType":"YulIdentifier","src":"4156:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"4168:9:101","nodeType":"YulIdentifier","src":"4168:9:101"},{"kind":"number","nativeSrc":"4179:3:101","nodeType":"YulLiteral","src":"4179:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"4164:3:101","nodeType":"YulIdentifier","src":"4164:3:101"},"nativeSrc":"4164:19:101","nodeType":"YulFunctionCall","src":"4164:19:101"}],"functionName":{"name":"abi_encode_struct_Params","nativeSrc":"4131:24:101","nodeType":"YulIdentifier","src":"4131:24:101"},"nativeSrc":"4131:53:101","nodeType":"YulFunctionCall","src":"4131:53:101"},"nativeSrc":"4131:53:101","nodeType":"YulExpressionStatement","src":"4131:53:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__to_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__fromStack_reversed","nativeSrc":"3539:651:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3755:9:101","nodeType":"YulTypedName","src":"3755:9:101","type":""},{"name":"value5","nativeSrc":"3766:6:101","nodeType":"YulTypedName","src":"3766:6:101","type":""},{"name":"value4","nativeSrc":"3774:6:101","nodeType":"YulTypedName","src":"3774:6:101","type":""},{"name":"value3","nativeSrc":"3782:6:101","nodeType":"YulTypedName","src":"3782:6:101","type":""},{"name":"value2","nativeSrc":"3790:6:101","nodeType":"YulTypedName","src":"3790:6:101","type":""},{"name":"value1","nativeSrc":"3798:6:101","nodeType":"YulTypedName","src":"3798:6:101","type":""},{"name":"value0","nativeSrc":"3806:6:101","nodeType":"YulTypedName","src":"3806:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3817:4:101","nodeType":"YulTypedName","src":"3817:4:101","type":""}],"src":"3539:651:101"},{"body":{"nativeSrc":"4325:201:101","nodeType":"YulBlock","src":"4325:201:101","statements":[{"body":{"nativeSrc":"4363:16:101","nodeType":"YulBlock","src":"4363:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4372:1:101","nodeType":"YulLiteral","src":"4372:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4375:1:101","nodeType":"YulLiteral","src":"4375:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4365:6:101","nodeType":"YulIdentifier","src":"4365:6:101"},"nativeSrc":"4365:12:101","nodeType":"YulFunctionCall","src":"4365:12:101"},"nativeSrc":"4365:12:101","nodeType":"YulExpressionStatement","src":"4365:12:101"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"4341:10:101","nodeType":"YulIdentifier","src":"4341:10:101"},{"name":"endIndex","nativeSrc":"4353:8:101","nodeType":"YulIdentifier","src":"4353:8:101"}],"functionName":{"name":"gt","nativeSrc":"4338:2:101","nodeType":"YulIdentifier","src":"4338:2:101"},"nativeSrc":"4338:24:101","nodeType":"YulFunctionCall","src":"4338:24:101"},"nativeSrc":"4335:44:101","nodeType":"YulIf","src":"4335:44:101"},{"body":{"nativeSrc":"4412:16:101","nodeType":"YulBlock","src":"4412:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4421:1:101","nodeType":"YulLiteral","src":"4421:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4424:1:101","nodeType":"YulLiteral","src":"4424:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4414:6:101","nodeType":"YulIdentifier","src":"4414:6:101"},"nativeSrc":"4414:12:101","nodeType":"YulFunctionCall","src":"4414:12:101"},"nativeSrc":"4414:12:101","nodeType":"YulExpressionStatement","src":"4414:12:101"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"4394:8:101","nodeType":"YulIdentifier","src":"4394:8:101"},{"name":"length","nativeSrc":"4404:6:101","nodeType":"YulIdentifier","src":"4404:6:101"}],"functionName":{"name":"gt","nativeSrc":"4391:2:101","nodeType":"YulIdentifier","src":"4391:2:101"},"nativeSrc":"4391:20:101","nodeType":"YulFunctionCall","src":"4391:20:101"},"nativeSrc":"4388:40:101","nodeType":"YulIf","src":"4388:40:101"},{"nativeSrc":"4437:36:101","nodeType":"YulAssignment","src":"4437:36:101","value":{"arguments":[{"name":"offset","nativeSrc":"4454:6:101","nodeType":"YulIdentifier","src":"4454:6:101"},{"name":"startIndex","nativeSrc":"4462:10:101","nodeType":"YulIdentifier","src":"4462:10:101"}],"functionName":{"name":"add","nativeSrc":"4450:3:101","nodeType":"YulIdentifier","src":"4450:3:101"},"nativeSrc":"4450:23:101","nodeType":"YulFunctionCall","src":"4450:23:101"},"variableNames":[{"name":"offsetOut","nativeSrc":"4437:9:101","nodeType":"YulIdentifier","src":"4437:9:101"}]},{"nativeSrc":"4482:38:101","nodeType":"YulAssignment","src":"4482:38:101","value":{"arguments":[{"name":"endIndex","nativeSrc":"4499:8:101","nodeType":"YulIdentifier","src":"4499:8:101"},{"name":"startIndex","nativeSrc":"4509:10:101","nodeType":"YulIdentifier","src":"4509:10:101"}],"functionName":{"name":"sub","nativeSrc":"4495:3:101","nodeType":"YulIdentifier","src":"4495:3:101"},"nativeSrc":"4495:25:101","nodeType":"YulFunctionCall","src":"4495:25:101"},"variableNames":[{"name":"lengthOut","nativeSrc":"4482:9:101","nodeType":"YulIdentifier","src":"4482:9:101"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"4195:331:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"4259:6:101","nodeType":"YulTypedName","src":"4259:6:101","type":""},{"name":"length","nativeSrc":"4267:6:101","nodeType":"YulTypedName","src":"4267:6:101","type":""},{"name":"startIndex","nativeSrc":"4275:10:101","nodeType":"YulTypedName","src":"4275:10:101","type":""},{"name":"endIndex","nativeSrc":"4287:8:101","nodeType":"YulTypedName","src":"4287:8:101","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"4300:9:101","nodeType":"YulTypedName","src":"4300:9:101","type":""},{"name":"lengthOut","nativeSrc":"4311:9:101","nodeType":"YulTypedName","src":"4311:9:101","type":""}],"src":"4195:331:101"},{"body":{"nativeSrc":"4563:95:101","nodeType":"YulBlock","src":"4563:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4580:1:101","nodeType":"YulLiteral","src":"4580:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4587:3:101","nodeType":"YulLiteral","src":"4587:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"4592:10:101","nodeType":"YulLiteral","src":"4592:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4583:3:101","nodeType":"YulIdentifier","src":"4583:3:101"},"nativeSrc":"4583:20:101","nodeType":"YulFunctionCall","src":"4583:20:101"}],"functionName":{"name":"mstore","nativeSrc":"4573:6:101","nodeType":"YulIdentifier","src":"4573:6:101"},"nativeSrc":"4573:31:101","nodeType":"YulFunctionCall","src":"4573:31:101"},"nativeSrc":"4573:31:101","nodeType":"YulExpressionStatement","src":"4573:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4620:1:101","nodeType":"YulLiteral","src":"4620:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"4623:4:101","nodeType":"YulLiteral","src":"4623:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"4613:6:101","nodeType":"YulIdentifier","src":"4613:6:101"},"nativeSrc":"4613:15:101","nodeType":"YulFunctionCall","src":"4613:15:101"},"nativeSrc":"4613:15:101","nodeType":"YulExpressionStatement","src":"4613:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4644:1:101","nodeType":"YulLiteral","src":"4644:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4647:4:101","nodeType":"YulLiteral","src":"4647:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4637:6:101","nodeType":"YulIdentifier","src":"4637:6:101"},"nativeSrc":"4637:15:101","nodeType":"YulFunctionCall","src":"4637:15:101"},"nativeSrc":"4637:15:101","nodeType":"YulExpressionStatement","src":"4637:15:101"}]},"name":"panic_error_0x41","nativeSrc":"4531:127:101","nodeType":"YulFunctionDefinition","src":"4531:127:101"},{"body":{"nativeSrc":"4704:306:101","nodeType":"YulBlock","src":"4704:306:101","statements":[{"nativeSrc":"4714:19:101","nodeType":"YulAssignment","src":"4714:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"4730:2:101","nodeType":"YulLiteral","src":"4730:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"4724:5:101","nodeType":"YulIdentifier","src":"4724:5:101"},"nativeSrc":"4724:9:101","nodeType":"YulFunctionCall","src":"4724:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"4714:6:101","nodeType":"YulIdentifier","src":"4714:6:101"}]},{"nativeSrc":"4742:37:101","nodeType":"YulVariableDeclaration","src":"4742:37:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"4764:6:101","nodeType":"YulIdentifier","src":"4764:6:101"},{"kind":"number","nativeSrc":"4772:6:101","nodeType":"YulLiteral","src":"4772:6:101","type":"","value":"0x0180"}],"functionName":{"name":"add","nativeSrc":"4760:3:101","nodeType":"YulIdentifier","src":"4760:3:101"},"nativeSrc":"4760:19:101","nodeType":"YulFunctionCall","src":"4760:19:101"},"variables":[{"name":"newFreePtr","nativeSrc":"4746:10:101","nodeType":"YulTypedName","src":"4746:10:101","type":""}]},{"body":{"nativeSrc":"4862:111:101","nodeType":"YulBlock","src":"4862:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4883:1:101","nodeType":"YulLiteral","src":"4883:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4890:3:101","nodeType":"YulLiteral","src":"4890:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"4895:10:101","nodeType":"YulLiteral","src":"4895:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4886:3:101","nodeType":"YulIdentifier","src":"4886:3:101"},"nativeSrc":"4886:20:101","nodeType":"YulFunctionCall","src":"4886:20:101"}],"functionName":{"name":"mstore","nativeSrc":"4876:6:101","nodeType":"YulIdentifier","src":"4876:6:101"},"nativeSrc":"4876:31:101","nodeType":"YulFunctionCall","src":"4876:31:101"},"nativeSrc":"4876:31:101","nodeType":"YulExpressionStatement","src":"4876:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4927:1:101","nodeType":"YulLiteral","src":"4927:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"4930:4:101","nodeType":"YulLiteral","src":"4930:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"4920:6:101","nodeType":"YulIdentifier","src":"4920:6:101"},"nativeSrc":"4920:15:101","nodeType":"YulFunctionCall","src":"4920:15:101"},"nativeSrc":"4920:15:101","nodeType":"YulExpressionStatement","src":"4920:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4955:1:101","nodeType":"YulLiteral","src":"4955:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4958:4:101","nodeType":"YulLiteral","src":"4958:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4948:6:101","nodeType":"YulIdentifier","src":"4948:6:101"},"nativeSrc":"4948:15:101","nodeType":"YulFunctionCall","src":"4948:15:101"},"nativeSrc":"4948:15:101","nodeType":"YulExpressionStatement","src":"4948:15:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"4797:10:101","nodeType":"YulIdentifier","src":"4797:10:101"},{"kind":"number","nativeSrc":"4809:18:101","nodeType":"YulLiteral","src":"4809:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4794:2:101","nodeType":"YulIdentifier","src":"4794:2:101"},"nativeSrc":"4794:34:101","nodeType":"YulFunctionCall","src":"4794:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"4833:10:101","nodeType":"YulIdentifier","src":"4833:10:101"},{"name":"memPtr","nativeSrc":"4845:6:101","nodeType":"YulIdentifier","src":"4845:6:101"}],"functionName":{"name":"lt","nativeSrc":"4830:2:101","nodeType":"YulIdentifier","src":"4830:2:101"},"nativeSrc":"4830:22:101","nodeType":"YulFunctionCall","src":"4830:22:101"}],"functionName":{"name":"or","nativeSrc":"4791:2:101","nodeType":"YulIdentifier","src":"4791:2:101"},"nativeSrc":"4791:62:101","nodeType":"YulFunctionCall","src":"4791:62:101"},"nativeSrc":"4788:185:101","nodeType":"YulIf","src":"4788:185:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4989:2:101","nodeType":"YulLiteral","src":"4989:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"4993:10:101","nodeType":"YulIdentifier","src":"4993:10:101"}],"functionName":{"name":"mstore","nativeSrc":"4982:6:101","nodeType":"YulIdentifier","src":"4982:6:101"},"nativeSrc":"4982:22:101","nodeType":"YulFunctionCall","src":"4982:22:101"},"nativeSrc":"4982:22:101","nodeType":"YulExpressionStatement","src":"4982:22:101"}]},"name":"allocate_memory","nativeSrc":"4663:347:101","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"4693:6:101","nodeType":"YulTypedName","src":"4693:6:101","type":""}],"src":"4663:347:101"},{"body":{"nativeSrc":"5063:117:101","nodeType":"YulBlock","src":"5063:117:101","statements":[{"nativeSrc":"5073:29:101","nodeType":"YulAssignment","src":"5073:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"5095:6:101","nodeType":"YulIdentifier","src":"5095:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"5082:12:101","nodeType":"YulIdentifier","src":"5082:12:101"},"nativeSrc":"5082:20:101","nodeType":"YulFunctionCall","src":"5082:20:101"},"variableNames":[{"name":"value","nativeSrc":"5073:5:101","nodeType":"YulIdentifier","src":"5073:5:101"}]},{"body":{"nativeSrc":"5158:16:101","nodeType":"YulBlock","src":"5158:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5167:1:101","nodeType":"YulLiteral","src":"5167:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5170:1:101","nodeType":"YulLiteral","src":"5170:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5160:6:101","nodeType":"YulIdentifier","src":"5160:6:101"},"nativeSrc":"5160:12:101","nodeType":"YulFunctionCall","src":"5160:12:101"},"nativeSrc":"5160:12:101","nodeType":"YulExpressionStatement","src":"5160:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5124:5:101","nodeType":"YulIdentifier","src":"5124:5:101"},{"arguments":[{"name":"value","nativeSrc":"5135:5:101","nodeType":"YulIdentifier","src":"5135:5:101"},{"kind":"number","nativeSrc":"5142:12:101","nodeType":"YulLiteral","src":"5142:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"5131:3:101","nodeType":"YulIdentifier","src":"5131:3:101"},"nativeSrc":"5131:24:101","nodeType":"YulFunctionCall","src":"5131:24:101"}],"functionName":{"name":"eq","nativeSrc":"5121:2:101","nodeType":"YulIdentifier","src":"5121:2:101"},"nativeSrc":"5121:35:101","nodeType":"YulFunctionCall","src":"5121:35:101"}],"functionName":{"name":"iszero","nativeSrc":"5114:6:101","nodeType":"YulIdentifier","src":"5114:6:101"},"nativeSrc":"5114:43:101","nodeType":"YulFunctionCall","src":"5114:43:101"},"nativeSrc":"5111:63:101","nodeType":"YulIf","src":"5111:63:101"}]},"name":"abi_decode_uint40","nativeSrc":"5015:165:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"5042:6:101","nodeType":"YulTypedName","src":"5042:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"5053:5:101","nodeType":"YulTypedName","src":"5053:5:101","type":""}],"src":"5015:165:101"},{"body":{"nativeSrc":"5252:1414:101","nodeType":"YulBlock","src":"5252:1414:101","statements":[{"body":{"nativeSrc":"5298:16:101","nodeType":"YulBlock","src":"5298:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5307:1:101","nodeType":"YulLiteral","src":"5307:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"5310:1:101","nodeType":"YulLiteral","src":"5310:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5300:6:101","nodeType":"YulIdentifier","src":"5300:6:101"},"nativeSrc":"5300:12:101","nodeType":"YulFunctionCall","src":"5300:12:101"},"nativeSrc":"5300:12:101","nodeType":"YulExpressionStatement","src":"5300:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"5273:3:101","nodeType":"YulIdentifier","src":"5273:3:101"},{"name":"headStart","nativeSrc":"5278:9:101","nodeType":"YulIdentifier","src":"5278:9:101"}],"functionName":{"name":"sub","nativeSrc":"5269:3:101","nodeType":"YulIdentifier","src":"5269:3:101"},"nativeSrc":"5269:19:101","nodeType":"YulFunctionCall","src":"5269:19:101"},{"kind":"number","nativeSrc":"5290:6:101","nodeType":"YulLiteral","src":"5290:6:101","type":"","value":"0x0180"}],"functionName":{"name":"slt","nativeSrc":"5265:3:101","nodeType":"YulIdentifier","src":"5265:3:101"},"nativeSrc":"5265:32:101","nodeType":"YulFunctionCall","src":"5265:32:101"},"nativeSrc":"5262:52:101","nodeType":"YulIf","src":"5262:52:101"},{"nativeSrc":"5323:26:101","nodeType":"YulAssignment","src":"5323:26:101","value":{"arguments":[],"functionName":{"name":"allocate_memory","nativeSrc":"5332:15:101","nodeType":"YulIdentifier","src":"5332:15:101"},"nativeSrc":"5332:17:101","nodeType":"YulFunctionCall","src":"5332:17:101"},"variableNames":[{"name":"value","nativeSrc":"5323:5:101","nodeType":"YulIdentifier","src":"5323:5:101"}]},{"nativeSrc":"5358:16:101","nodeType":"YulVariableDeclaration","src":"5358:16:101","value":{"kind":"number","nativeSrc":"5373:1:101","nodeType":"YulLiteral","src":"5373:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"5362:7:101","nodeType":"YulTypedName","src":"5362:7:101","type":""}]},{"nativeSrc":"5383:34:101","nodeType":"YulAssignment","src":"5383:34:101","value":{"arguments":[{"name":"headStart","nativeSrc":"5407:9:101","nodeType":"YulIdentifier","src":"5407:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"5394:12:101","nodeType":"YulIdentifier","src":"5394:12:101"},"nativeSrc":"5394:23:101","nodeType":"YulFunctionCall","src":"5394:23:101"},"variableNames":[{"name":"value_1","nativeSrc":"5383:7:101","nodeType":"YulIdentifier","src":"5383:7:101"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5433:5:101","nodeType":"YulIdentifier","src":"5433:5:101"},{"name":"value_1","nativeSrc":"5440:7:101","nodeType":"YulIdentifier","src":"5440:7:101"}],"functionName":{"name":"mstore","nativeSrc":"5426:6:101","nodeType":"YulIdentifier","src":"5426:6:101"},"nativeSrc":"5426:22:101","nodeType":"YulFunctionCall","src":"5426:22:101"},"nativeSrc":"5426:22:101","nodeType":"YulExpressionStatement","src":"5426:22:101"},{"nativeSrc":"5457:16:101","nodeType":"YulVariableDeclaration","src":"5457:16:101","value":{"kind":"number","nativeSrc":"5472:1:101","nodeType":"YulLiteral","src":"5472:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"5461:7:101","nodeType":"YulTypedName","src":"5461:7:101","type":""}]},{"nativeSrc":"5482:43:101","nodeType":"YulAssignment","src":"5482:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5510:9:101","nodeType":"YulIdentifier","src":"5510:9:101"},{"kind":"number","nativeSrc":"5521:2:101","nodeType":"YulLiteral","src":"5521:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5506:3:101","nodeType":"YulIdentifier","src":"5506:3:101"},"nativeSrc":"5506:18:101","nodeType":"YulFunctionCall","src":"5506:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"5493:12:101","nodeType":"YulIdentifier","src":"5493:12:101"},"nativeSrc":"5493:32:101","nodeType":"YulFunctionCall","src":"5493:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"5482:7:101","nodeType":"YulIdentifier","src":"5482:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5545:5:101","nodeType":"YulIdentifier","src":"5545:5:101"},{"kind":"number","nativeSrc":"5552:2:101","nodeType":"YulLiteral","src":"5552:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5541:3:101","nodeType":"YulIdentifier","src":"5541:3:101"},"nativeSrc":"5541:14:101","nodeType":"YulFunctionCall","src":"5541:14:101"},{"name":"value_2","nativeSrc":"5557:7:101","nodeType":"YulIdentifier","src":"5557:7:101"}],"functionName":{"name":"mstore","nativeSrc":"5534:6:101","nodeType":"YulIdentifier","src":"5534:6:101"},"nativeSrc":"5534:31:101","nodeType":"YulFunctionCall","src":"5534:31:101"},"nativeSrc":"5534:31:101","nodeType":"YulExpressionStatement","src":"5534:31:101"},{"nativeSrc":"5574:16:101","nodeType":"YulVariableDeclaration","src":"5574:16:101","value":{"kind":"number","nativeSrc":"5589:1:101","nodeType":"YulLiteral","src":"5589:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"5578:7:101","nodeType":"YulTypedName","src":"5578:7:101","type":""}]},{"nativeSrc":"5599:43:101","nodeType":"YulAssignment","src":"5599:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5627:9:101","nodeType":"YulIdentifier","src":"5627:9:101"},{"kind":"number","nativeSrc":"5638:2:101","nodeType":"YulLiteral","src":"5638:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5623:3:101","nodeType":"YulIdentifier","src":"5623:3:101"},"nativeSrc":"5623:18:101","nodeType":"YulFunctionCall","src":"5623:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"5610:12:101","nodeType":"YulIdentifier","src":"5610:12:101"},"nativeSrc":"5610:32:101","nodeType":"YulFunctionCall","src":"5610:32:101"},"variableNames":[{"name":"value_3","nativeSrc":"5599:7:101","nodeType":"YulIdentifier","src":"5599:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5662:5:101","nodeType":"YulIdentifier","src":"5662:5:101"},{"kind":"number","nativeSrc":"5669:2:101","nodeType":"YulLiteral","src":"5669:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5658:3:101","nodeType":"YulIdentifier","src":"5658:3:101"},"nativeSrc":"5658:14:101","nodeType":"YulFunctionCall","src":"5658:14:101"},{"name":"value_3","nativeSrc":"5674:7:101","nodeType":"YulIdentifier","src":"5674:7:101"}],"functionName":{"name":"mstore","nativeSrc":"5651:6:101","nodeType":"YulIdentifier","src":"5651:6:101"},"nativeSrc":"5651:31:101","nodeType":"YulFunctionCall","src":"5651:31:101"},"nativeSrc":"5651:31:101","nodeType":"YulExpressionStatement","src":"5651:31:101"},{"nativeSrc":"5691:16:101","nodeType":"YulVariableDeclaration","src":"5691:16:101","value":{"kind":"number","nativeSrc":"5706:1:101","nodeType":"YulLiteral","src":"5706:1:101","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"5695:7:101","nodeType":"YulTypedName","src":"5695:7:101","type":""}]},{"nativeSrc":"5716:43:101","nodeType":"YulAssignment","src":"5716:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5744:9:101","nodeType":"YulIdentifier","src":"5744:9:101"},{"kind":"number","nativeSrc":"5755:2:101","nodeType":"YulLiteral","src":"5755:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5740:3:101","nodeType":"YulIdentifier","src":"5740:3:101"},"nativeSrc":"5740:18:101","nodeType":"YulFunctionCall","src":"5740:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"5727:12:101","nodeType":"YulIdentifier","src":"5727:12:101"},"nativeSrc":"5727:32:101","nodeType":"YulFunctionCall","src":"5727:32:101"},"variableNames":[{"name":"value_4","nativeSrc":"5716:7:101","nodeType":"YulIdentifier","src":"5716:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5779:5:101","nodeType":"YulIdentifier","src":"5779:5:101"},{"kind":"number","nativeSrc":"5786:2:101","nodeType":"YulLiteral","src":"5786:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5775:3:101","nodeType":"YulIdentifier","src":"5775:3:101"},"nativeSrc":"5775:14:101","nodeType":"YulFunctionCall","src":"5775:14:101"},{"name":"value_4","nativeSrc":"5791:7:101","nodeType":"YulIdentifier","src":"5791:7:101"}],"functionName":{"name":"mstore","nativeSrc":"5768:6:101","nodeType":"YulIdentifier","src":"5768:6:101"},"nativeSrc":"5768:31:101","nodeType":"YulFunctionCall","src":"5768:31:101"},"nativeSrc":"5768:31:101","nodeType":"YulExpressionStatement","src":"5768:31:101"},{"nativeSrc":"5808:16:101","nodeType":"YulVariableDeclaration","src":"5808:16:101","value":{"kind":"number","nativeSrc":"5823:1:101","nodeType":"YulLiteral","src":"5823:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"5812:7:101","nodeType":"YulTypedName","src":"5812:7:101","type":""}]},{"nativeSrc":"5833:44:101","nodeType":"YulAssignment","src":"5833:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5861:9:101","nodeType":"YulIdentifier","src":"5861:9:101"},{"kind":"number","nativeSrc":"5872:3:101","nodeType":"YulLiteral","src":"5872:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"5857:3:101","nodeType":"YulIdentifier","src":"5857:3:101"},"nativeSrc":"5857:19:101","nodeType":"YulFunctionCall","src":"5857:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"5844:12:101","nodeType":"YulIdentifier","src":"5844:12:101"},"nativeSrc":"5844:33:101","nodeType":"YulFunctionCall","src":"5844:33:101"},"variableNames":[{"name":"value_5","nativeSrc":"5833:7:101","nodeType":"YulIdentifier","src":"5833:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5897:5:101","nodeType":"YulIdentifier","src":"5897:5:101"},{"kind":"number","nativeSrc":"5904:3:101","nodeType":"YulLiteral","src":"5904:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"5893:3:101","nodeType":"YulIdentifier","src":"5893:3:101"},"nativeSrc":"5893:15:101","nodeType":"YulFunctionCall","src":"5893:15:101"},{"name":"value_5","nativeSrc":"5910:7:101","nodeType":"YulIdentifier","src":"5910:7:101"}],"functionName":{"name":"mstore","nativeSrc":"5886:6:101","nodeType":"YulIdentifier","src":"5886:6:101"},"nativeSrc":"5886:32:101","nodeType":"YulFunctionCall","src":"5886:32:101"},"nativeSrc":"5886:32:101","nodeType":"YulExpressionStatement","src":"5886:32:101"},{"nativeSrc":"5927:16:101","nodeType":"YulVariableDeclaration","src":"5927:16:101","value":{"kind":"number","nativeSrc":"5942:1:101","nodeType":"YulLiteral","src":"5942:1:101","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"5931:7:101","nodeType":"YulTypedName","src":"5931:7:101","type":""}]},{"nativeSrc":"5952:44:101","nodeType":"YulAssignment","src":"5952:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5980:9:101","nodeType":"YulIdentifier","src":"5980:9:101"},{"kind":"number","nativeSrc":"5991:3:101","nodeType":"YulLiteral","src":"5991:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"5976:3:101","nodeType":"YulIdentifier","src":"5976:3:101"},"nativeSrc":"5976:19:101","nodeType":"YulFunctionCall","src":"5976:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"5963:12:101","nodeType":"YulIdentifier","src":"5963:12:101"},"nativeSrc":"5963:33:101","nodeType":"YulFunctionCall","src":"5963:33:101"},"variableNames":[{"name":"value_6","nativeSrc":"5952:7:101","nodeType":"YulIdentifier","src":"5952:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6016:5:101","nodeType":"YulIdentifier","src":"6016:5:101"},{"kind":"number","nativeSrc":"6023:3:101","nodeType":"YulLiteral","src":"6023:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"6012:3:101","nodeType":"YulIdentifier","src":"6012:3:101"},"nativeSrc":"6012:15:101","nodeType":"YulFunctionCall","src":"6012:15:101"},{"name":"value_6","nativeSrc":"6029:7:101","nodeType":"YulIdentifier","src":"6029:7:101"}],"functionName":{"name":"mstore","nativeSrc":"6005:6:101","nodeType":"YulIdentifier","src":"6005:6:101"},"nativeSrc":"6005:32:101","nodeType":"YulFunctionCall","src":"6005:32:101"},"nativeSrc":"6005:32:101","nodeType":"YulExpressionStatement","src":"6005:32:101"},{"nativeSrc":"6046:16:101","nodeType":"YulVariableDeclaration","src":"6046:16:101","value":{"kind":"number","nativeSrc":"6061:1:101","nodeType":"YulLiteral","src":"6061:1:101","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"6050:7:101","nodeType":"YulTypedName","src":"6050:7:101","type":""}]},{"nativeSrc":"6071:44:101","nodeType":"YulAssignment","src":"6071:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6099:9:101","nodeType":"YulIdentifier","src":"6099:9:101"},{"kind":"number","nativeSrc":"6110:3:101","nodeType":"YulLiteral","src":"6110:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"6095:3:101","nodeType":"YulIdentifier","src":"6095:3:101"},"nativeSrc":"6095:19:101","nodeType":"YulFunctionCall","src":"6095:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"6082:12:101","nodeType":"YulIdentifier","src":"6082:12:101"},"nativeSrc":"6082:33:101","nodeType":"YulFunctionCall","src":"6082:33:101"},"variableNames":[{"name":"value_7","nativeSrc":"6071:7:101","nodeType":"YulIdentifier","src":"6071:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6135:5:101","nodeType":"YulIdentifier","src":"6135:5:101"},{"kind":"number","nativeSrc":"6142:3:101","nodeType":"YulLiteral","src":"6142:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"6131:3:101","nodeType":"YulIdentifier","src":"6131:3:101"},"nativeSrc":"6131:15:101","nodeType":"YulFunctionCall","src":"6131:15:101"},{"name":"value_7","nativeSrc":"6148:7:101","nodeType":"YulIdentifier","src":"6148:7:101"}],"functionName":{"name":"mstore","nativeSrc":"6124:6:101","nodeType":"YulIdentifier","src":"6124:6:101"},"nativeSrc":"6124:32:101","nodeType":"YulFunctionCall","src":"6124:32:101"},"nativeSrc":"6124:32:101","nodeType":"YulExpressionStatement","src":"6124:32:101"},{"nativeSrc":"6165:16:101","nodeType":"YulVariableDeclaration","src":"6165:16:101","value":{"kind":"number","nativeSrc":"6180:1:101","nodeType":"YulLiteral","src":"6180:1:101","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"6169:7:101","nodeType":"YulTypedName","src":"6169:7:101","type":""}]},{"nativeSrc":"6190:44:101","nodeType":"YulAssignment","src":"6190:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6218:9:101","nodeType":"YulIdentifier","src":"6218:9:101"},{"kind":"number","nativeSrc":"6229:3:101","nodeType":"YulLiteral","src":"6229:3:101","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"6214:3:101","nodeType":"YulIdentifier","src":"6214:3:101"},"nativeSrc":"6214:19:101","nodeType":"YulFunctionCall","src":"6214:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"6201:12:101","nodeType":"YulIdentifier","src":"6201:12:101"},"nativeSrc":"6201:33:101","nodeType":"YulFunctionCall","src":"6201:33:101"},"variableNames":[{"name":"value_8","nativeSrc":"6190:7:101","nodeType":"YulIdentifier","src":"6190:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6254:5:101","nodeType":"YulIdentifier","src":"6254:5:101"},{"kind":"number","nativeSrc":"6261:3:101","nodeType":"YulLiteral","src":"6261:3:101","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"6250:3:101","nodeType":"YulIdentifier","src":"6250:3:101"},"nativeSrc":"6250:15:101","nodeType":"YulFunctionCall","src":"6250:15:101"},{"name":"value_8","nativeSrc":"6267:7:101","nodeType":"YulIdentifier","src":"6267:7:101"}],"functionName":{"name":"mstore","nativeSrc":"6243:6:101","nodeType":"YulIdentifier","src":"6243:6:101"},"nativeSrc":"6243:32:101","nodeType":"YulFunctionCall","src":"6243:32:101"},"nativeSrc":"6243:32:101","nodeType":"YulExpressionStatement","src":"6243:32:101"},{"nativeSrc":"6284:16:101","nodeType":"YulVariableDeclaration","src":"6284:16:101","value":{"kind":"number","nativeSrc":"6299:1:101","nodeType":"YulLiteral","src":"6299:1:101","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"6288:7:101","nodeType":"YulTypedName","src":"6288:7:101","type":""}]},{"nativeSrc":"6309:44:101","nodeType":"YulAssignment","src":"6309:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6337:9:101","nodeType":"YulIdentifier","src":"6337:9:101"},{"kind":"number","nativeSrc":"6348:3:101","nodeType":"YulLiteral","src":"6348:3:101","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"6333:3:101","nodeType":"YulIdentifier","src":"6333:3:101"},"nativeSrc":"6333:19:101","nodeType":"YulFunctionCall","src":"6333:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"6320:12:101","nodeType":"YulIdentifier","src":"6320:12:101"},"nativeSrc":"6320:33:101","nodeType":"YulFunctionCall","src":"6320:33:101"},"variableNames":[{"name":"value_9","nativeSrc":"6309:7:101","nodeType":"YulIdentifier","src":"6309:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6373:5:101","nodeType":"YulIdentifier","src":"6373:5:101"},{"kind":"number","nativeSrc":"6380:3:101","nodeType":"YulLiteral","src":"6380:3:101","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"6369:3:101","nodeType":"YulIdentifier","src":"6369:3:101"},"nativeSrc":"6369:15:101","nodeType":"YulFunctionCall","src":"6369:15:101"},{"name":"value_9","nativeSrc":"6386:7:101","nodeType":"YulIdentifier","src":"6386:7:101"}],"functionName":{"name":"mstore","nativeSrc":"6362:6:101","nodeType":"YulIdentifier","src":"6362:6:101"},"nativeSrc":"6362:32:101","nodeType":"YulFunctionCall","src":"6362:32:101"},"nativeSrc":"6362:32:101","nodeType":"YulExpressionStatement","src":"6362:32:101"},{"nativeSrc":"6403:17:101","nodeType":"YulVariableDeclaration","src":"6403:17:101","value":{"kind":"number","nativeSrc":"6419:1:101","nodeType":"YulLiteral","src":"6419:1:101","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"6407:8:101","nodeType":"YulTypedName","src":"6407:8:101","type":""}]},{"nativeSrc":"6429:45:101","nodeType":"YulAssignment","src":"6429:45:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6458:9:101","nodeType":"YulIdentifier","src":"6458:9:101"},{"kind":"number","nativeSrc":"6469:3:101","nodeType":"YulLiteral","src":"6469:3:101","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"6454:3:101","nodeType":"YulIdentifier","src":"6454:3:101"},"nativeSrc":"6454:19:101","nodeType":"YulFunctionCall","src":"6454:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"6441:12:101","nodeType":"YulIdentifier","src":"6441:12:101"},"nativeSrc":"6441:33:101","nodeType":"YulFunctionCall","src":"6441:33:101"},"variableNames":[{"name":"value_10","nativeSrc":"6429:8:101","nodeType":"YulIdentifier","src":"6429:8:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6494:5:101","nodeType":"YulIdentifier","src":"6494:5:101"},{"kind":"number","nativeSrc":"6501:3:101","nodeType":"YulLiteral","src":"6501:3:101","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"6490:3:101","nodeType":"YulIdentifier","src":"6490:3:101"},"nativeSrc":"6490:15:101","nodeType":"YulFunctionCall","src":"6490:15:101"},{"name":"value_10","nativeSrc":"6507:8:101","nodeType":"YulIdentifier","src":"6507:8:101"}],"functionName":{"name":"mstore","nativeSrc":"6483:6:101","nodeType":"YulIdentifier","src":"6483:6:101"},"nativeSrc":"6483:33:101","nodeType":"YulFunctionCall","src":"6483:33:101"},"nativeSrc":"6483:33:101","nodeType":"YulExpressionStatement","src":"6483:33:101"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6536:5:101","nodeType":"YulIdentifier","src":"6536:5:101"},{"kind":"number","nativeSrc":"6543:3:101","nodeType":"YulLiteral","src":"6543:3:101","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"6532:3:101","nodeType":"YulIdentifier","src":"6532:3:101"},"nativeSrc":"6532:15:101","nodeType":"YulFunctionCall","src":"6532:15:101"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6571:9:101","nodeType":"YulIdentifier","src":"6571:9:101"},{"kind":"number","nativeSrc":"6582:3:101","nodeType":"YulLiteral","src":"6582:3:101","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"6567:3:101","nodeType":"YulIdentifier","src":"6567:3:101"},"nativeSrc":"6567:19:101","nodeType":"YulFunctionCall","src":"6567:19:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"6549:17:101","nodeType":"YulIdentifier","src":"6549:17:101"},"nativeSrc":"6549:38:101","nodeType":"YulFunctionCall","src":"6549:38:101"}],"functionName":{"name":"mstore","nativeSrc":"6525:6:101","nodeType":"YulIdentifier","src":"6525:6:101"},"nativeSrc":"6525:63:101","nodeType":"YulFunctionCall","src":"6525:63:101"},"nativeSrc":"6525:63:101","nodeType":"YulExpressionStatement","src":"6525:63:101"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6608:5:101","nodeType":"YulIdentifier","src":"6608:5:101"},{"kind":"number","nativeSrc":"6615:3:101","nodeType":"YulLiteral","src":"6615:3:101","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"6604:3:101","nodeType":"YulIdentifier","src":"6604:3:101"},"nativeSrc":"6604:15:101","nodeType":"YulFunctionCall","src":"6604:15:101"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6643:9:101","nodeType":"YulIdentifier","src":"6643:9:101"},{"kind":"number","nativeSrc":"6654:3:101","nodeType":"YulLiteral","src":"6654:3:101","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"6639:3:101","nodeType":"YulIdentifier","src":"6639:3:101"},"nativeSrc":"6639:19:101","nodeType":"YulFunctionCall","src":"6639:19:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"6621:17:101","nodeType":"YulIdentifier","src":"6621:17:101"},"nativeSrc":"6621:38:101","nodeType":"YulFunctionCall","src":"6621:38:101"}],"functionName":{"name":"mstore","nativeSrc":"6597:6:101","nodeType":"YulIdentifier","src":"6597:6:101"},"nativeSrc":"6597:63:101","nodeType":"YulFunctionCall","src":"6597:63:101"},"nativeSrc":"6597:63:101","nodeType":"YulExpressionStatement","src":"6597:63:101"}]},"name":"abi_decode_struct_PolicyData","nativeSrc":"5185:1481:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5223:9:101","nodeType":"YulTypedName","src":"5223:9:101","type":""},{"name":"end","nativeSrc":"5234:3:101","nodeType":"YulTypedName","src":"5234:3:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"5242:5:101","nodeType":"YulTypedName","src":"5242:5:101","type":""}],"src":"5185:1481:101"},{"body":{"nativeSrc":"6821:442:101","nodeType":"YulBlock","src":"6821:442:101","statements":[{"body":{"nativeSrc":"6868:16:101","nodeType":"YulBlock","src":"6868:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6877:1:101","nodeType":"YulLiteral","src":"6877:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6880:1:101","nodeType":"YulLiteral","src":"6880:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6870:6:101","nodeType":"YulIdentifier","src":"6870:6:101"},"nativeSrc":"6870:12:101","nodeType":"YulFunctionCall","src":"6870:12:101"},"nativeSrc":"6870:12:101","nodeType":"YulExpressionStatement","src":"6870:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6842:7:101","nodeType":"YulIdentifier","src":"6842:7:101"},{"name":"headStart","nativeSrc":"6851:9:101","nodeType":"YulIdentifier","src":"6851:9:101"}],"functionName":{"name":"sub","nativeSrc":"6838:3:101","nodeType":"YulIdentifier","src":"6838:3:101"},"nativeSrc":"6838:23:101","nodeType":"YulFunctionCall","src":"6838:23:101"},{"kind":"number","nativeSrc":"6863:3:101","nodeType":"YulLiteral","src":"6863:3:101","type":"","value":"480"}],"functionName":{"name":"slt","nativeSrc":"6834:3:101","nodeType":"YulIdentifier","src":"6834:3:101"},"nativeSrc":"6834:33:101","nodeType":"YulFunctionCall","src":"6834:33:101"},"nativeSrc":"6831:53:101","nodeType":"YulIf","src":"6831:53:101"},{"nativeSrc":"6893:58:101","nodeType":"YulAssignment","src":"6893:58:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6932:9:101","nodeType":"YulIdentifier","src":"6932:9:101"},{"name":"dataEnd","nativeSrc":"6943:7:101","nodeType":"YulIdentifier","src":"6943:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"6903:28:101","nodeType":"YulIdentifier","src":"6903:28:101"},"nativeSrc":"6903:48:101","nodeType":"YulFunctionCall","src":"6903:48:101"},"variableNames":[{"name":"value0","nativeSrc":"6893:6:101","nodeType":"YulIdentifier","src":"6893:6:101"}]},{"nativeSrc":"6960:14:101","nodeType":"YulVariableDeclaration","src":"6960:14:101","value":{"kind":"number","nativeSrc":"6973:1:101","nodeType":"YulLiteral","src":"6973:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"6964:5:101","nodeType":"YulTypedName","src":"6964:5:101","type":""}]},{"nativeSrc":"6983:42:101","nodeType":"YulAssignment","src":"6983:42:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7009:9:101","nodeType":"YulIdentifier","src":"7009:9:101"},{"kind":"number","nativeSrc":"7020:3:101","nodeType":"YulLiteral","src":"7020:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"7005:3:101","nodeType":"YulIdentifier","src":"7005:3:101"},"nativeSrc":"7005:19:101","nodeType":"YulFunctionCall","src":"7005:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"6992:12:101","nodeType":"YulIdentifier","src":"6992:12:101"},"nativeSrc":"6992:33:101","nodeType":"YulFunctionCall","src":"6992:33:101"},"variableNames":[{"name":"value","nativeSrc":"6983:5:101","nodeType":"YulIdentifier","src":"6983:5:101"}]},{"nativeSrc":"7034:15:101","nodeType":"YulAssignment","src":"7034:15:101","value":{"name":"value","nativeSrc":"7044:5:101","nodeType":"YulIdentifier","src":"7044:5:101"},"variableNames":[{"name":"value1","nativeSrc":"7034:6:101","nodeType":"YulIdentifier","src":"7034:6:101"}]},{"nativeSrc":"7058:16:101","nodeType":"YulVariableDeclaration","src":"7058:16:101","value":{"kind":"number","nativeSrc":"7073:1:101","nodeType":"YulLiteral","src":"7073:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"7062:7:101","nodeType":"YulTypedName","src":"7062:7:101","type":""}]},{"nativeSrc":"7083:44:101","nodeType":"YulAssignment","src":"7083:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7111:9:101","nodeType":"YulIdentifier","src":"7111:9:101"},{"kind":"number","nativeSrc":"7122:3:101","nodeType":"YulLiteral","src":"7122:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"7107:3:101","nodeType":"YulIdentifier","src":"7107:3:101"},"nativeSrc":"7107:19:101","nodeType":"YulFunctionCall","src":"7107:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"7094:12:101","nodeType":"YulIdentifier","src":"7094:12:101"},"nativeSrc":"7094:33:101","nodeType":"YulFunctionCall","src":"7094:33:101"},"variableNames":[{"name":"value_1","nativeSrc":"7083:7:101","nodeType":"YulIdentifier","src":"7083:7:101"}]},{"nativeSrc":"7136:17:101","nodeType":"YulAssignment","src":"7136:17:101","value":{"name":"value_1","nativeSrc":"7146:7:101","nodeType":"YulIdentifier","src":"7146:7:101"},"variableNames":[{"name":"value2","nativeSrc":"7136:6:101","nodeType":"YulIdentifier","src":"7136:6:101"}]},{"nativeSrc":"7162:16:101","nodeType":"YulVariableDeclaration","src":"7162:16:101","value":{"kind":"number","nativeSrc":"7177:1:101","nodeType":"YulLiteral","src":"7177:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"7166:7:101","nodeType":"YulTypedName","src":"7166:7:101","type":""}]},{"nativeSrc":"7187:44:101","nodeType":"YulAssignment","src":"7187:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7215:9:101","nodeType":"YulIdentifier","src":"7215:9:101"},{"kind":"number","nativeSrc":"7226:3:101","nodeType":"YulLiteral","src":"7226:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"7211:3:101","nodeType":"YulIdentifier","src":"7211:3:101"},"nativeSrc":"7211:19:101","nodeType":"YulFunctionCall","src":"7211:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"7198:12:101","nodeType":"YulIdentifier","src":"7198:12:101"},"nativeSrc":"7198:33:101","nodeType":"YulFunctionCall","src":"7198:33:101"},"variableNames":[{"name":"value_2","nativeSrc":"7187:7:101","nodeType":"YulIdentifier","src":"7187:7:101"}]},{"nativeSrc":"7240:17:101","nodeType":"YulAssignment","src":"7240:17:101","value":{"name":"value_2","nativeSrc":"7250:7:101","nodeType":"YulIdentifier","src":"7250:7:101"},"variableNames":[{"name":"value3","nativeSrc":"7240:6:101","nodeType":"YulIdentifier","src":"7240:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256","nativeSrc":"6671:592:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6763:9:101","nodeType":"YulTypedName","src":"6763:9:101","type":""},{"name":"dataEnd","nativeSrc":"6774:7:101","nodeType":"YulTypedName","src":"6774:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6786:6:101","nodeType":"YulTypedName","src":"6786:6:101","type":""},{"name":"value1","nativeSrc":"6794:6:101","nodeType":"YulTypedName","src":"6794:6:101","type":""},{"name":"value2","nativeSrc":"6802:6:101","nodeType":"YulTypedName","src":"6802:6:101","type":""},{"name":"value3","nativeSrc":"6810:6:101","nodeType":"YulTypedName","src":"6810:6:101","type":""}],"src":"6671:592:101"},{"body":{"nativeSrc":"7300:95:101","nodeType":"YulBlock","src":"7300:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7317:1:101","nodeType":"YulLiteral","src":"7317:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"7324:3:101","nodeType":"YulLiteral","src":"7324:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"7329:10:101","nodeType":"YulLiteral","src":"7329:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"7320:3:101","nodeType":"YulIdentifier","src":"7320:3:101"},"nativeSrc":"7320:20:101","nodeType":"YulFunctionCall","src":"7320:20:101"}],"functionName":{"name":"mstore","nativeSrc":"7310:6:101","nodeType":"YulIdentifier","src":"7310:6:101"},"nativeSrc":"7310:31:101","nodeType":"YulFunctionCall","src":"7310:31:101"},"nativeSrc":"7310:31:101","nodeType":"YulExpressionStatement","src":"7310:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7357:1:101","nodeType":"YulLiteral","src":"7357:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"7360:4:101","nodeType":"YulLiteral","src":"7360:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"7350:6:101","nodeType":"YulIdentifier","src":"7350:6:101"},"nativeSrc":"7350:15:101","nodeType":"YulFunctionCall","src":"7350:15:101"},"nativeSrc":"7350:15:101","nodeType":"YulExpressionStatement","src":"7350:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7381:1:101","nodeType":"YulLiteral","src":"7381:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7384:4:101","nodeType":"YulLiteral","src":"7384:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"7374:6:101","nodeType":"YulIdentifier","src":"7374:6:101"},"nativeSrc":"7374:15:101","nodeType":"YulFunctionCall","src":"7374:15:101"},"nativeSrc":"7374:15:101","nodeType":"YulExpressionStatement","src":"7374:15:101"}]},"name":"panic_error_0x11","nativeSrc":"7268:127:101","nodeType":"YulFunctionDefinition","src":"7268:127:101"},{"body":{"nativeSrc":"7449:79:101","nodeType":"YulBlock","src":"7449:79:101","statements":[{"nativeSrc":"7459:17:101","nodeType":"YulAssignment","src":"7459:17:101","value":{"arguments":[{"name":"x","nativeSrc":"7471:1:101","nodeType":"YulIdentifier","src":"7471:1:101"},{"name":"y","nativeSrc":"7474:1:101","nodeType":"YulIdentifier","src":"7474:1:101"}],"functionName":{"name":"sub","nativeSrc":"7467:3:101","nodeType":"YulIdentifier","src":"7467:3:101"},"nativeSrc":"7467:9:101","nodeType":"YulFunctionCall","src":"7467:9:101"},"variableNames":[{"name":"diff","nativeSrc":"7459:4:101","nodeType":"YulIdentifier","src":"7459:4:101"}]},{"body":{"nativeSrc":"7500:22:101","nodeType":"YulBlock","src":"7500:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"7502:16:101","nodeType":"YulIdentifier","src":"7502:16:101"},"nativeSrc":"7502:18:101","nodeType":"YulFunctionCall","src":"7502:18:101"},"nativeSrc":"7502:18:101","nodeType":"YulExpressionStatement","src":"7502:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"7491:4:101","nodeType":"YulIdentifier","src":"7491:4:101"},{"name":"x","nativeSrc":"7497:1:101","nodeType":"YulIdentifier","src":"7497:1:101"}],"functionName":{"name":"gt","nativeSrc":"7488:2:101","nodeType":"YulIdentifier","src":"7488:2:101"},"nativeSrc":"7488:11:101","nodeType":"YulFunctionCall","src":"7488:11:101"},"nativeSrc":"7485:37:101","nodeType":"YulIf","src":"7485:37:101"}]},"name":"checked_sub_t_uint256","nativeSrc":"7400:128:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"7431:1:101","nodeType":"YulTypedName","src":"7431:1:101","type":""},{"name":"y","nativeSrc":"7434:1:101","nodeType":"YulTypedName","src":"7434:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"7440:4:101","nodeType":"YulTypedName","src":"7440:4:101","type":""}],"src":"7400:128:101"},{"body":{"nativeSrc":"7581:77:101","nodeType":"YulBlock","src":"7581:77:101","statements":[{"nativeSrc":"7591:16:101","nodeType":"YulAssignment","src":"7591:16:101","value":{"arguments":[{"name":"x","nativeSrc":"7602:1:101","nodeType":"YulIdentifier","src":"7602:1:101"},{"name":"y","nativeSrc":"7605:1:101","nodeType":"YulIdentifier","src":"7605:1:101"}],"functionName":{"name":"add","nativeSrc":"7598:3:101","nodeType":"YulIdentifier","src":"7598:3:101"},"nativeSrc":"7598:9:101","nodeType":"YulFunctionCall","src":"7598:9:101"},"variableNames":[{"name":"sum","nativeSrc":"7591:3:101","nodeType":"YulIdentifier","src":"7591:3:101"}]},{"body":{"nativeSrc":"7630:22:101","nodeType":"YulBlock","src":"7630:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"7632:16:101","nodeType":"YulIdentifier","src":"7632:16:101"},"nativeSrc":"7632:18:101","nodeType":"YulFunctionCall","src":"7632:18:101"},"nativeSrc":"7632:18:101","nodeType":"YulExpressionStatement","src":"7632:18:101"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"7622:1:101","nodeType":"YulIdentifier","src":"7622:1:101"},{"name":"sum","nativeSrc":"7625:3:101","nodeType":"YulIdentifier","src":"7625:3:101"}],"functionName":{"name":"gt","nativeSrc":"7619:2:101","nodeType":"YulIdentifier","src":"7619:2:101"},"nativeSrc":"7619:10:101","nodeType":"YulFunctionCall","src":"7619:10:101"},"nativeSrc":"7616:36:101","nodeType":"YulIf","src":"7616:36:101"}]},"name":"checked_add_t_uint256","nativeSrc":"7533:125:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"7564:1:101","nodeType":"YulTypedName","src":"7564:1:101","type":""},{"name":"y","nativeSrc":"7567:1:101","nodeType":"YulTypedName","src":"7567:1:101","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"7573:3:101","nodeType":"YulTypedName","src":"7573:3:101","type":""}],"src":"7533:125:101"},{"body":{"nativeSrc":"7726:1225:101","nodeType":"YulBlock","src":"7726:1225:101","statements":[{"body":{"nativeSrc":"7770:16:101","nodeType":"YulBlock","src":"7770:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7779:1:101","nodeType":"YulLiteral","src":"7779:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7782:1:101","nodeType":"YulLiteral","src":"7782:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7772:6:101","nodeType":"YulIdentifier","src":"7772:6:101"},"nativeSrc":"7772:12:101","nodeType":"YulFunctionCall","src":"7772:12:101"},"nativeSrc":"7772:12:101","nodeType":"YulExpressionStatement","src":"7772:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"7747:3:101","nodeType":"YulIdentifier","src":"7747:3:101"},{"name":"headStart","nativeSrc":"7752:9:101","nodeType":"YulIdentifier","src":"7752:9:101"}],"functionName":{"name":"sub","nativeSrc":"7743:3:101","nodeType":"YulIdentifier","src":"7743:3:101"},"nativeSrc":"7743:19:101","nodeType":"YulFunctionCall","src":"7743:19:101"},{"kind":"number","nativeSrc":"7764:4:101","nodeType":"YulLiteral","src":"7764:4:101","type":"","value":"0xe0"}],"functionName":{"name":"slt","nativeSrc":"7739:3:101","nodeType":"YulIdentifier","src":"7739:3:101"},"nativeSrc":"7739:30:101","nodeType":"YulFunctionCall","src":"7739:30:101"},"nativeSrc":"7736:50:101","nodeType":"YulIf","src":"7736:50:101"},{"nativeSrc":"7795:15:101","nodeType":"YulVariableDeclaration","src":"7795:15:101","value":{"kind":"number","nativeSrc":"7809:1:101","nodeType":"YulLiteral","src":"7809:1:101","type":"","value":"0"},"variables":[{"name":"memPtr","nativeSrc":"7799:6:101","nodeType":"YulTypedName","src":"7799:6:101","type":""}]},{"nativeSrc":"7819:19:101","nodeType":"YulAssignment","src":"7819:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"7835:2:101","nodeType":"YulLiteral","src":"7835:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"7829:5:101","nodeType":"YulIdentifier","src":"7829:5:101"},"nativeSrc":"7829:9:101","nodeType":"YulFunctionCall","src":"7829:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"7819:6:101","nodeType":"YulIdentifier","src":"7819:6:101"}]},{"nativeSrc":"7847:35:101","nodeType":"YulVariableDeclaration","src":"7847:35:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"7869:6:101","nodeType":"YulIdentifier","src":"7869:6:101"},{"kind":"number","nativeSrc":"7877:4:101","nodeType":"YulLiteral","src":"7877:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"7865:3:101","nodeType":"YulIdentifier","src":"7865:3:101"},"nativeSrc":"7865:17:101","nodeType":"YulFunctionCall","src":"7865:17:101"},"variables":[{"name":"newFreePtr","nativeSrc":"7851:10:101","nodeType":"YulTypedName","src":"7851:10:101","type":""}]},{"body":{"nativeSrc":"7965:111:101","nodeType":"YulBlock","src":"7965:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7986:1:101","nodeType":"YulLiteral","src":"7986:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"7993:3:101","nodeType":"YulLiteral","src":"7993:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"7998:10:101","nodeType":"YulLiteral","src":"7998:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"7989:3:101","nodeType":"YulIdentifier","src":"7989:3:101"},"nativeSrc":"7989:20:101","nodeType":"YulFunctionCall","src":"7989:20:101"}],"functionName":{"name":"mstore","nativeSrc":"7979:6:101","nodeType":"YulIdentifier","src":"7979:6:101"},"nativeSrc":"7979:31:101","nodeType":"YulFunctionCall","src":"7979:31:101"},"nativeSrc":"7979:31:101","nodeType":"YulExpressionStatement","src":"7979:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8030:1:101","nodeType":"YulLiteral","src":"8030:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"8033:4:101","nodeType":"YulLiteral","src":"8033:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"8023:6:101","nodeType":"YulIdentifier","src":"8023:6:101"},"nativeSrc":"8023:15:101","nodeType":"YulFunctionCall","src":"8023:15:101"},"nativeSrc":"8023:15:101","nodeType":"YulExpressionStatement","src":"8023:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8058:1:101","nodeType":"YulLiteral","src":"8058:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8061:4:101","nodeType":"YulLiteral","src":"8061:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"8051:6:101","nodeType":"YulIdentifier","src":"8051:6:101"},"nativeSrc":"8051:15:101","nodeType":"YulFunctionCall","src":"8051:15:101"},"nativeSrc":"8051:15:101","nodeType":"YulExpressionStatement","src":"8051:15:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"7900:10:101","nodeType":"YulIdentifier","src":"7900:10:101"},{"kind":"number","nativeSrc":"7912:18:101","nodeType":"YulLiteral","src":"7912:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7897:2:101","nodeType":"YulIdentifier","src":"7897:2:101"},"nativeSrc":"7897:34:101","nodeType":"YulFunctionCall","src":"7897:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"7936:10:101","nodeType":"YulIdentifier","src":"7936:10:101"},{"name":"memPtr","nativeSrc":"7948:6:101","nodeType":"YulIdentifier","src":"7948:6:101"}],"functionName":{"name":"lt","nativeSrc":"7933:2:101","nodeType":"YulIdentifier","src":"7933:2:101"},"nativeSrc":"7933:22:101","nodeType":"YulFunctionCall","src":"7933:22:101"}],"functionName":{"name":"or","nativeSrc":"7894:2:101","nodeType":"YulIdentifier","src":"7894:2:101"},"nativeSrc":"7894:62:101","nodeType":"YulFunctionCall","src":"7894:62:101"},"nativeSrc":"7891:185:101","nodeType":"YulIf","src":"7891:185:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8092:2:101","nodeType":"YulLiteral","src":"8092:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"8096:10:101","nodeType":"YulIdentifier","src":"8096:10:101"}],"functionName":{"name":"mstore","nativeSrc":"8085:6:101","nodeType":"YulIdentifier","src":"8085:6:101"},"nativeSrc":"8085:22:101","nodeType":"YulFunctionCall","src":"8085:22:101"},"nativeSrc":"8085:22:101","nodeType":"YulExpressionStatement","src":"8085:22:101"},{"nativeSrc":"8116:15:101","nodeType":"YulAssignment","src":"8116:15:101","value":{"name":"memPtr","nativeSrc":"8125:6:101","nodeType":"YulIdentifier","src":"8125:6:101"},"variableNames":[{"name":"value","nativeSrc":"8116:5:101","nodeType":"YulIdentifier","src":"8116:5:101"}]},{"nativeSrc":"8140:16:101","nodeType":"YulVariableDeclaration","src":"8140:16:101","value":{"kind":"number","nativeSrc":"8155:1:101","nodeType":"YulLiteral","src":"8155:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"8144:7:101","nodeType":"YulTypedName","src":"8144:7:101","type":""}]},{"nativeSrc":"8165:34:101","nodeType":"YulAssignment","src":"8165:34:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8189:9:101","nodeType":"YulIdentifier","src":"8189:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"8176:12:101","nodeType":"YulIdentifier","src":"8176:12:101"},"nativeSrc":"8176:23:101","nodeType":"YulFunctionCall","src":"8176:23:101"},"variableNames":[{"name":"value_1","nativeSrc":"8165:7:101","nodeType":"YulIdentifier","src":"8165:7:101"}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"8215:6:101","nodeType":"YulIdentifier","src":"8215:6:101"},{"name":"value_1","nativeSrc":"8223:7:101","nodeType":"YulIdentifier","src":"8223:7:101"}],"functionName":{"name":"mstore","nativeSrc":"8208:6:101","nodeType":"YulIdentifier","src":"8208:6:101"},"nativeSrc":"8208:23:101","nodeType":"YulFunctionCall","src":"8208:23:101"},"nativeSrc":"8208:23:101","nodeType":"YulExpressionStatement","src":"8208:23:101"},{"nativeSrc":"8240:16:101","nodeType":"YulVariableDeclaration","src":"8240:16:101","value":{"kind":"number","nativeSrc":"8255:1:101","nodeType":"YulLiteral","src":"8255:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"8244:7:101","nodeType":"YulTypedName","src":"8244:7:101","type":""}]},{"nativeSrc":"8265:43:101","nodeType":"YulAssignment","src":"8265:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8293:9:101","nodeType":"YulIdentifier","src":"8293:9:101"},{"kind":"number","nativeSrc":"8304:2:101","nodeType":"YulLiteral","src":"8304:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8289:3:101","nodeType":"YulIdentifier","src":"8289:3:101"},"nativeSrc":"8289:18:101","nodeType":"YulFunctionCall","src":"8289:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"8276:12:101","nodeType":"YulIdentifier","src":"8276:12:101"},"nativeSrc":"8276:32:101","nodeType":"YulFunctionCall","src":"8276:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"8265:7:101","nodeType":"YulIdentifier","src":"8265:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8328:6:101","nodeType":"YulIdentifier","src":"8328:6:101"},{"kind":"number","nativeSrc":"8336:2:101","nodeType":"YulLiteral","src":"8336:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8324:3:101","nodeType":"YulIdentifier","src":"8324:3:101"},"nativeSrc":"8324:15:101","nodeType":"YulFunctionCall","src":"8324:15:101"},{"name":"value_2","nativeSrc":"8341:7:101","nodeType":"YulIdentifier","src":"8341:7:101"}],"functionName":{"name":"mstore","nativeSrc":"8317:6:101","nodeType":"YulIdentifier","src":"8317:6:101"},"nativeSrc":"8317:32:101","nodeType":"YulFunctionCall","src":"8317:32:101"},"nativeSrc":"8317:32:101","nodeType":"YulExpressionStatement","src":"8317:32:101"},{"nativeSrc":"8358:16:101","nodeType":"YulVariableDeclaration","src":"8358:16:101","value":{"kind":"number","nativeSrc":"8373:1:101","nodeType":"YulLiteral","src":"8373:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"8362:7:101","nodeType":"YulTypedName","src":"8362:7:101","type":""}]},{"nativeSrc":"8383:43:101","nodeType":"YulAssignment","src":"8383:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8411:9:101","nodeType":"YulIdentifier","src":"8411:9:101"},{"kind":"number","nativeSrc":"8422:2:101","nodeType":"YulLiteral","src":"8422:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8407:3:101","nodeType":"YulIdentifier","src":"8407:3:101"},"nativeSrc":"8407:18:101","nodeType":"YulFunctionCall","src":"8407:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"8394:12:101","nodeType":"YulIdentifier","src":"8394:12:101"},"nativeSrc":"8394:32:101","nodeType":"YulFunctionCall","src":"8394:32:101"},"variableNames":[{"name":"value_3","nativeSrc":"8383:7:101","nodeType":"YulIdentifier","src":"8383:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8446:6:101","nodeType":"YulIdentifier","src":"8446:6:101"},{"kind":"number","nativeSrc":"8454:2:101","nodeType":"YulLiteral","src":"8454:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8442:3:101","nodeType":"YulIdentifier","src":"8442:3:101"},"nativeSrc":"8442:15:101","nodeType":"YulFunctionCall","src":"8442:15:101"},{"name":"value_3","nativeSrc":"8459:7:101","nodeType":"YulIdentifier","src":"8459:7:101"}],"functionName":{"name":"mstore","nativeSrc":"8435:6:101","nodeType":"YulIdentifier","src":"8435:6:101"},"nativeSrc":"8435:32:101","nodeType":"YulFunctionCall","src":"8435:32:101"},"nativeSrc":"8435:32:101","nodeType":"YulExpressionStatement","src":"8435:32:101"},{"nativeSrc":"8476:16:101","nodeType":"YulVariableDeclaration","src":"8476:16:101","value":{"kind":"number","nativeSrc":"8491:1:101","nodeType":"YulLiteral","src":"8491:1:101","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"8480:7:101","nodeType":"YulTypedName","src":"8480:7:101","type":""}]},{"nativeSrc":"8501:43:101","nodeType":"YulAssignment","src":"8501:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8529:9:101","nodeType":"YulIdentifier","src":"8529:9:101"},{"kind":"number","nativeSrc":"8540:2:101","nodeType":"YulLiteral","src":"8540:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8525:3:101","nodeType":"YulIdentifier","src":"8525:3:101"},"nativeSrc":"8525:18:101","nodeType":"YulFunctionCall","src":"8525:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"8512:12:101","nodeType":"YulIdentifier","src":"8512:12:101"},"nativeSrc":"8512:32:101","nodeType":"YulFunctionCall","src":"8512:32:101"},"variableNames":[{"name":"value_4","nativeSrc":"8501:7:101","nodeType":"YulIdentifier","src":"8501:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8564:6:101","nodeType":"YulIdentifier","src":"8564:6:101"},{"kind":"number","nativeSrc":"8572:2:101","nodeType":"YulLiteral","src":"8572:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8560:3:101","nodeType":"YulIdentifier","src":"8560:3:101"},"nativeSrc":"8560:15:101","nodeType":"YulFunctionCall","src":"8560:15:101"},{"name":"value_4","nativeSrc":"8577:7:101","nodeType":"YulIdentifier","src":"8577:7:101"}],"functionName":{"name":"mstore","nativeSrc":"8553:6:101","nodeType":"YulIdentifier","src":"8553:6:101"},"nativeSrc":"8553:32:101","nodeType":"YulFunctionCall","src":"8553:32:101"},"nativeSrc":"8553:32:101","nodeType":"YulExpressionStatement","src":"8553:32:101"},{"nativeSrc":"8594:16:101","nodeType":"YulVariableDeclaration","src":"8594:16:101","value":{"kind":"number","nativeSrc":"8609:1:101","nodeType":"YulLiteral","src":"8609:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"8598:7:101","nodeType":"YulTypedName","src":"8598:7:101","type":""}]},{"nativeSrc":"8619:44:101","nodeType":"YulAssignment","src":"8619:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8647:9:101","nodeType":"YulIdentifier","src":"8647:9:101"},{"kind":"number","nativeSrc":"8658:3:101","nodeType":"YulLiteral","src":"8658:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"8643:3:101","nodeType":"YulIdentifier","src":"8643:3:101"},"nativeSrc":"8643:19:101","nodeType":"YulFunctionCall","src":"8643:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"8630:12:101","nodeType":"YulIdentifier","src":"8630:12:101"},"nativeSrc":"8630:33:101","nodeType":"YulFunctionCall","src":"8630:33:101"},"variableNames":[{"name":"value_5","nativeSrc":"8619:7:101","nodeType":"YulIdentifier","src":"8619:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8683:6:101","nodeType":"YulIdentifier","src":"8683:6:101"},{"kind":"number","nativeSrc":"8691:3:101","nodeType":"YulLiteral","src":"8691:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"8679:3:101","nodeType":"YulIdentifier","src":"8679:3:101"},"nativeSrc":"8679:16:101","nodeType":"YulFunctionCall","src":"8679:16:101"},{"name":"value_5","nativeSrc":"8697:7:101","nodeType":"YulIdentifier","src":"8697:7:101"}],"functionName":{"name":"mstore","nativeSrc":"8672:6:101","nodeType":"YulIdentifier","src":"8672:6:101"},"nativeSrc":"8672:33:101","nodeType":"YulFunctionCall","src":"8672:33:101"},"nativeSrc":"8672:33:101","nodeType":"YulExpressionStatement","src":"8672:33:101"},{"nativeSrc":"8714:16:101","nodeType":"YulVariableDeclaration","src":"8714:16:101","value":{"kind":"number","nativeSrc":"8729:1:101","nodeType":"YulLiteral","src":"8729:1:101","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"8718:7:101","nodeType":"YulTypedName","src":"8718:7:101","type":""}]},{"nativeSrc":"8739:44:101","nodeType":"YulAssignment","src":"8739:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8767:9:101","nodeType":"YulIdentifier","src":"8767:9:101"},{"kind":"number","nativeSrc":"8778:3:101","nodeType":"YulLiteral","src":"8778:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"8763:3:101","nodeType":"YulIdentifier","src":"8763:3:101"},"nativeSrc":"8763:19:101","nodeType":"YulFunctionCall","src":"8763:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"8750:12:101","nodeType":"YulIdentifier","src":"8750:12:101"},"nativeSrc":"8750:33:101","nodeType":"YulFunctionCall","src":"8750:33:101"},"variableNames":[{"name":"value_6","nativeSrc":"8739:7:101","nodeType":"YulIdentifier","src":"8739:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8803:6:101","nodeType":"YulIdentifier","src":"8803:6:101"},{"kind":"number","nativeSrc":"8811:3:101","nodeType":"YulLiteral","src":"8811:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"8799:3:101","nodeType":"YulIdentifier","src":"8799:3:101"},"nativeSrc":"8799:16:101","nodeType":"YulFunctionCall","src":"8799:16:101"},{"name":"value_6","nativeSrc":"8817:7:101","nodeType":"YulIdentifier","src":"8817:7:101"}],"functionName":{"name":"mstore","nativeSrc":"8792:6:101","nodeType":"YulIdentifier","src":"8792:6:101"},"nativeSrc":"8792:33:101","nodeType":"YulFunctionCall","src":"8792:33:101"},"nativeSrc":"8792:33:101","nodeType":"YulExpressionStatement","src":"8792:33:101"},{"nativeSrc":"8834:16:101","nodeType":"YulVariableDeclaration","src":"8834:16:101","value":{"kind":"number","nativeSrc":"8849:1:101","nodeType":"YulLiteral","src":"8849:1:101","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"8838:7:101","nodeType":"YulTypedName","src":"8838:7:101","type":""}]},{"nativeSrc":"8859:44:101","nodeType":"YulAssignment","src":"8859:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8887:9:101","nodeType":"YulIdentifier","src":"8887:9:101"},{"kind":"number","nativeSrc":"8898:3:101","nodeType":"YulLiteral","src":"8898:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"8883:3:101","nodeType":"YulIdentifier","src":"8883:3:101"},"nativeSrc":"8883:19:101","nodeType":"YulFunctionCall","src":"8883:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"8870:12:101","nodeType":"YulIdentifier","src":"8870:12:101"},"nativeSrc":"8870:33:101","nodeType":"YulFunctionCall","src":"8870:33:101"},"variableNames":[{"name":"value_7","nativeSrc":"8859:7:101","nodeType":"YulIdentifier","src":"8859:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8923:6:101","nodeType":"YulIdentifier","src":"8923:6:101"},{"kind":"number","nativeSrc":"8931:3:101","nodeType":"YulLiteral","src":"8931:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"8919:3:101","nodeType":"YulIdentifier","src":"8919:3:101"},"nativeSrc":"8919:16:101","nodeType":"YulFunctionCall","src":"8919:16:101"},{"name":"value_7","nativeSrc":"8937:7:101","nodeType":"YulIdentifier","src":"8937:7:101"}],"functionName":{"name":"mstore","nativeSrc":"8912:6:101","nodeType":"YulIdentifier","src":"8912:6:101"},"nativeSrc":"8912:33:101","nodeType":"YulFunctionCall","src":"8912:33:101"},"nativeSrc":"8912:33:101","nodeType":"YulExpressionStatement","src":"8912:33:101"}]},"name":"abi_decode_struct_Params","nativeSrc":"7663:1288:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7697:9:101","nodeType":"YulTypedName","src":"7697:9:101","type":""},{"name":"end","nativeSrc":"7708:3:101","nodeType":"YulTypedName","src":"7708:3:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"7716:5:101","nodeType":"YulTypedName","src":"7716:5:101","type":""}],"src":"7663:1288:101"},{"body":{"nativeSrc":"9181:676:101","nodeType":"YulBlock","src":"9181:676:101","statements":[{"body":{"nativeSrc":"9228:16:101","nodeType":"YulBlock","src":"9228:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9237:1:101","nodeType":"YulLiteral","src":"9237:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9240:1:101","nodeType":"YulLiteral","src":"9240:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9230:6:101","nodeType":"YulIdentifier","src":"9230:6:101"},"nativeSrc":"9230:12:101","nodeType":"YulFunctionCall","src":"9230:12:101"},"nativeSrc":"9230:12:101","nodeType":"YulExpressionStatement","src":"9230:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9202:7:101","nodeType":"YulIdentifier","src":"9202:7:101"},{"name":"headStart","nativeSrc":"9211:9:101","nodeType":"YulIdentifier","src":"9211:9:101"}],"functionName":{"name":"sub","nativeSrc":"9198:3:101","nodeType":"YulIdentifier","src":"9198:3:101"},"nativeSrc":"9198:23:101","nodeType":"YulFunctionCall","src":"9198:23:101"},{"kind":"number","nativeSrc":"9223:3:101","nodeType":"YulLiteral","src":"9223:3:101","type":"","value":"768"}],"functionName":{"name":"slt","nativeSrc":"9194:3:101","nodeType":"YulIdentifier","src":"9194:3:101"},"nativeSrc":"9194:33:101","nodeType":"YulFunctionCall","src":"9194:33:101"},"nativeSrc":"9191:53:101","nodeType":"YulIf","src":"9191:53:101"},{"nativeSrc":"9253:58:101","nodeType":"YulAssignment","src":"9253:58:101","value":{"arguments":[{"name":"headStart","nativeSrc":"9292:9:101","nodeType":"YulIdentifier","src":"9292:9:101"},{"name":"dataEnd","nativeSrc":"9303:7:101","nodeType":"YulIdentifier","src":"9303:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"9263:28:101","nodeType":"YulIdentifier","src":"9263:28:101"},"nativeSrc":"9263:48:101","nodeType":"YulFunctionCall","src":"9263:48:101"},"variableNames":[{"name":"value0","nativeSrc":"9253:6:101","nodeType":"YulIdentifier","src":"9253:6:101"}]},{"nativeSrc":"9320:14:101","nodeType":"YulVariableDeclaration","src":"9320:14:101","value":{"kind":"number","nativeSrc":"9333:1:101","nodeType":"YulLiteral","src":"9333:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"9324:5:101","nodeType":"YulTypedName","src":"9324:5:101","type":""}]},{"nativeSrc":"9343:42:101","nodeType":"YulAssignment","src":"9343:42:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9369:9:101","nodeType":"YulIdentifier","src":"9369:9:101"},{"kind":"number","nativeSrc":"9380:3:101","nodeType":"YulLiteral","src":"9380:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"9365:3:101","nodeType":"YulIdentifier","src":"9365:3:101"},"nativeSrc":"9365:19:101","nodeType":"YulFunctionCall","src":"9365:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"9352:12:101","nodeType":"YulIdentifier","src":"9352:12:101"},"nativeSrc":"9352:33:101","nodeType":"YulFunctionCall","src":"9352:33:101"},"variableNames":[{"name":"value","nativeSrc":"9343:5:101","nodeType":"YulIdentifier","src":"9343:5:101"}]},{"nativeSrc":"9394:15:101","nodeType":"YulAssignment","src":"9394:15:101","value":{"name":"value","nativeSrc":"9404:5:101","nodeType":"YulIdentifier","src":"9404:5:101"},"variableNames":[{"name":"value1","nativeSrc":"9394:6:101","nodeType":"YulIdentifier","src":"9394:6:101"}]},{"nativeSrc":"9418:16:101","nodeType":"YulVariableDeclaration","src":"9418:16:101","value":{"kind":"number","nativeSrc":"9433:1:101","nodeType":"YulLiteral","src":"9433:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"9422:7:101","nodeType":"YulTypedName","src":"9422:7:101","type":""}]},{"nativeSrc":"9443:44:101","nodeType":"YulAssignment","src":"9443:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9471:9:101","nodeType":"YulIdentifier","src":"9471:9:101"},{"kind":"number","nativeSrc":"9482:3:101","nodeType":"YulLiteral","src":"9482:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"9467:3:101","nodeType":"YulIdentifier","src":"9467:3:101"},"nativeSrc":"9467:19:101","nodeType":"YulFunctionCall","src":"9467:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"9454:12:101","nodeType":"YulIdentifier","src":"9454:12:101"},"nativeSrc":"9454:33:101","nodeType":"YulFunctionCall","src":"9454:33:101"},"variableNames":[{"name":"value_1","nativeSrc":"9443:7:101","nodeType":"YulIdentifier","src":"9443:7:101"}]},{"nativeSrc":"9496:17:101","nodeType":"YulAssignment","src":"9496:17:101","value":{"name":"value_1","nativeSrc":"9506:7:101","nodeType":"YulIdentifier","src":"9506:7:101"},"variableNames":[{"name":"value2","nativeSrc":"9496:6:101","nodeType":"YulIdentifier","src":"9496:6:101"}]},{"nativeSrc":"9522:16:101","nodeType":"YulVariableDeclaration","src":"9522:16:101","value":{"kind":"number","nativeSrc":"9537:1:101","nodeType":"YulLiteral","src":"9537:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"9526:7:101","nodeType":"YulTypedName","src":"9526:7:101","type":""}]},{"nativeSrc":"9547:44:101","nodeType":"YulAssignment","src":"9547:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9575:9:101","nodeType":"YulIdentifier","src":"9575:9:101"},{"kind":"number","nativeSrc":"9586:3:101","nodeType":"YulLiteral","src":"9586:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"9571:3:101","nodeType":"YulIdentifier","src":"9571:3:101"},"nativeSrc":"9571:19:101","nodeType":"YulFunctionCall","src":"9571:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"9558:12:101","nodeType":"YulIdentifier","src":"9558:12:101"},"nativeSrc":"9558:33:101","nodeType":"YulFunctionCall","src":"9558:33:101"},"variableNames":[{"name":"value_2","nativeSrc":"9547:7:101","nodeType":"YulIdentifier","src":"9547:7:101"}]},{"nativeSrc":"9600:17:101","nodeType":"YulAssignment","src":"9600:17:101","value":{"name":"value_2","nativeSrc":"9610:7:101","nodeType":"YulIdentifier","src":"9610:7:101"},"variableNames":[{"name":"value3","nativeSrc":"9600:6:101","nodeType":"YulIdentifier","src":"9600:6:101"}]},{"nativeSrc":"9626:48:101","nodeType":"YulAssignment","src":"9626:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9658:9:101","nodeType":"YulIdentifier","src":"9658:9:101"},{"kind":"number","nativeSrc":"9669:3:101","nodeType":"YulLiteral","src":"9669:3:101","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"9654:3:101","nodeType":"YulIdentifier","src":"9654:3:101"},"nativeSrc":"9654:19:101","nodeType":"YulFunctionCall","src":"9654:19:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"9636:17:101","nodeType":"YulIdentifier","src":"9636:17:101"},"nativeSrc":"9636:38:101","nodeType":"YulFunctionCall","src":"9636:38:101"},"variableNames":[{"name":"value4","nativeSrc":"9626:6:101","nodeType":"YulIdentifier","src":"9626:6:101"}]},{"nativeSrc":"9683:16:101","nodeType":"YulVariableDeclaration","src":"9683:16:101","value":{"kind":"number","nativeSrc":"9698:1:101","nodeType":"YulLiteral","src":"9698:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"9687:7:101","nodeType":"YulTypedName","src":"9687:7:101","type":""}]},{"nativeSrc":"9708:44:101","nodeType":"YulAssignment","src":"9708:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9736:9:101","nodeType":"YulIdentifier","src":"9736:9:101"},{"kind":"number","nativeSrc":"9747:3:101","nodeType":"YulLiteral","src":"9747:3:101","type":"","value":"512"}],"functionName":{"name":"add","nativeSrc":"9732:3:101","nodeType":"YulIdentifier","src":"9732:3:101"},"nativeSrc":"9732:19:101","nodeType":"YulFunctionCall","src":"9732:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"9719:12:101","nodeType":"YulIdentifier","src":"9719:12:101"},"nativeSrc":"9719:33:101","nodeType":"YulFunctionCall","src":"9719:33:101"},"variableNames":[{"name":"value_3","nativeSrc":"9708:7:101","nodeType":"YulIdentifier","src":"9708:7:101"}]},{"nativeSrc":"9761:17:101","nodeType":"YulAssignment","src":"9761:17:101","value":{"name":"value_3","nativeSrc":"9771:7:101","nodeType":"YulIdentifier","src":"9771:7:101"},"variableNames":[{"name":"value5","nativeSrc":"9761:6:101","nodeType":"YulIdentifier","src":"9761:6:101"}]},{"nativeSrc":"9787:64:101","nodeType":"YulAssignment","src":"9787:64:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9826:9:101","nodeType":"YulIdentifier","src":"9826:9:101"},{"kind":"number","nativeSrc":"9837:3:101","nodeType":"YulLiteral","src":"9837:3:101","type":"","value":"544"}],"functionName":{"name":"add","nativeSrc":"9822:3:101","nodeType":"YulIdentifier","src":"9822:3:101"},"nativeSrc":"9822:19:101","nodeType":"YulFunctionCall","src":"9822:19:101"},{"name":"dataEnd","nativeSrc":"9843:7:101","nodeType":"YulIdentifier","src":"9843:7:101"}],"functionName":{"name":"abi_decode_struct_Params","nativeSrc":"9797:24:101","nodeType":"YulIdentifier","src":"9797:24:101"},"nativeSrc":"9797:54:101","nodeType":"YulFunctionCall","src":"9797:54:101"},"variableNames":[{"name":"value6","nativeSrc":"9787:6:101","nodeType":"YulIdentifier","src":"9787:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint256t_struct$_Params_$22230_memory_ptr","nativeSrc":"8956:901:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9099:9:101","nodeType":"YulTypedName","src":"9099:9:101","type":""},{"name":"dataEnd","nativeSrc":"9110:7:101","nodeType":"YulTypedName","src":"9110:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9122:6:101","nodeType":"YulTypedName","src":"9122:6:101","type":""},{"name":"value1","nativeSrc":"9130:6:101","nodeType":"YulTypedName","src":"9130:6:101","type":""},{"name":"value2","nativeSrc":"9138:6:101","nodeType":"YulTypedName","src":"9138:6:101","type":""},{"name":"value3","nativeSrc":"9146:6:101","nodeType":"YulTypedName","src":"9146:6:101","type":""},{"name":"value4","nativeSrc":"9154:6:101","nodeType":"YulTypedName","src":"9154:6:101","type":""},{"name":"value5","nativeSrc":"9162:6:101","nodeType":"YulTypedName","src":"9162:6:101","type":""},{"name":"value6","nativeSrc":"9170:6:101","nodeType":"YulTypedName","src":"9170:6:101","type":""}],"src":"8956:901:101"},{"body":{"nativeSrc":"10041:596:101","nodeType":"YulBlock","src":"10041:596:101","statements":[{"body":{"nativeSrc":"10088:16:101","nodeType":"YulBlock","src":"10088:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10097:1:101","nodeType":"YulLiteral","src":"10097:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"10100:1:101","nodeType":"YulLiteral","src":"10100:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10090:6:101","nodeType":"YulIdentifier","src":"10090:6:101"},"nativeSrc":"10090:12:101","nodeType":"YulFunctionCall","src":"10090:12:101"},"nativeSrc":"10090:12:101","nodeType":"YulExpressionStatement","src":"10090:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10062:7:101","nodeType":"YulIdentifier","src":"10062:7:101"},{"name":"headStart","nativeSrc":"10071:9:101","nodeType":"YulIdentifier","src":"10071:9:101"}],"functionName":{"name":"sub","nativeSrc":"10058:3:101","nodeType":"YulIdentifier","src":"10058:3:101"},"nativeSrc":"10058:23:101","nodeType":"YulFunctionCall","src":"10058:23:101"},{"kind":"number","nativeSrc":"10083:3:101","nodeType":"YulLiteral","src":"10083:3:101","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"10054:3:101","nodeType":"YulIdentifier","src":"10054:3:101"},"nativeSrc":"10054:33:101","nodeType":"YulFunctionCall","src":"10054:33:101"},"nativeSrc":"10051:53:101","nodeType":"YulIf","src":"10051:53:101"},{"nativeSrc":"10113:14:101","nodeType":"YulVariableDeclaration","src":"10113:14:101","value":{"kind":"number","nativeSrc":"10126:1:101","nodeType":"YulLiteral","src":"10126:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"10117:5:101","nodeType":"YulTypedName","src":"10117:5:101","type":""}]},{"nativeSrc":"10136:32:101","nodeType":"YulAssignment","src":"10136:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10158:9:101","nodeType":"YulIdentifier","src":"10158:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"10145:12:101","nodeType":"YulIdentifier","src":"10145:12:101"},"nativeSrc":"10145:23:101","nodeType":"YulFunctionCall","src":"10145:23:101"},"variableNames":[{"name":"value","nativeSrc":"10136:5:101","nodeType":"YulIdentifier","src":"10136:5:101"}]},{"nativeSrc":"10177:15:101","nodeType":"YulAssignment","src":"10177:15:101","value":{"name":"value","nativeSrc":"10187:5:101","nodeType":"YulIdentifier","src":"10187:5:101"},"variableNames":[{"name":"value0","nativeSrc":"10177:6:101","nodeType":"YulIdentifier","src":"10177:6:101"}]},{"nativeSrc":"10201:16:101","nodeType":"YulVariableDeclaration","src":"10201:16:101","value":{"kind":"number","nativeSrc":"10216:1:101","nodeType":"YulLiteral","src":"10216:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"10205:7:101","nodeType":"YulTypedName","src":"10205:7:101","type":""}]},{"nativeSrc":"10226:43:101","nodeType":"YulAssignment","src":"10226:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10254:9:101","nodeType":"YulIdentifier","src":"10254:9:101"},{"kind":"number","nativeSrc":"10265:2:101","nodeType":"YulLiteral","src":"10265:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10250:3:101","nodeType":"YulIdentifier","src":"10250:3:101"},"nativeSrc":"10250:18:101","nodeType":"YulFunctionCall","src":"10250:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"10237:12:101","nodeType":"YulIdentifier","src":"10237:12:101"},"nativeSrc":"10237:32:101","nodeType":"YulFunctionCall","src":"10237:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"10226:7:101","nodeType":"YulIdentifier","src":"10226:7:101"}]},{"nativeSrc":"10278:17:101","nodeType":"YulAssignment","src":"10278:17:101","value":{"name":"value_1","nativeSrc":"10288:7:101","nodeType":"YulIdentifier","src":"10288:7:101"},"variableNames":[{"name":"value1","nativeSrc":"10278:6:101","nodeType":"YulIdentifier","src":"10278:6:101"}]},{"nativeSrc":"10304:16:101","nodeType":"YulVariableDeclaration","src":"10304:16:101","value":{"kind":"number","nativeSrc":"10319:1:101","nodeType":"YulLiteral","src":"10319:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"10308:7:101","nodeType":"YulTypedName","src":"10308:7:101","type":""}]},{"nativeSrc":"10329:43:101","nodeType":"YulAssignment","src":"10329:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10357:9:101","nodeType":"YulIdentifier","src":"10357:9:101"},{"kind":"number","nativeSrc":"10368:2:101","nodeType":"YulLiteral","src":"10368:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10353:3:101","nodeType":"YulIdentifier","src":"10353:3:101"},"nativeSrc":"10353:18:101","nodeType":"YulFunctionCall","src":"10353:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"10340:12:101","nodeType":"YulIdentifier","src":"10340:12:101"},"nativeSrc":"10340:32:101","nodeType":"YulFunctionCall","src":"10340:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"10329:7:101","nodeType":"YulIdentifier","src":"10329:7:101"}]},{"nativeSrc":"10381:17:101","nodeType":"YulAssignment","src":"10381:17:101","value":{"name":"value_2","nativeSrc":"10391:7:101","nodeType":"YulIdentifier","src":"10391:7:101"},"variableNames":[{"name":"value2","nativeSrc":"10381:6:101","nodeType":"YulIdentifier","src":"10381:6:101"}]},{"nativeSrc":"10407:47:101","nodeType":"YulAssignment","src":"10407:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10439:9:101","nodeType":"YulIdentifier","src":"10439:9:101"},{"kind":"number","nativeSrc":"10450:2:101","nodeType":"YulLiteral","src":"10450:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"10435:3:101","nodeType":"YulIdentifier","src":"10435:3:101"},"nativeSrc":"10435:18:101","nodeType":"YulFunctionCall","src":"10435:18:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"10417:17:101","nodeType":"YulIdentifier","src":"10417:17:101"},"nativeSrc":"10417:37:101","nodeType":"YulFunctionCall","src":"10417:37:101"},"variableNames":[{"name":"value3","nativeSrc":"10407:6:101","nodeType":"YulIdentifier","src":"10407:6:101"}]},{"nativeSrc":"10463:16:101","nodeType":"YulVariableDeclaration","src":"10463:16:101","value":{"kind":"number","nativeSrc":"10478:1:101","nodeType":"YulLiteral","src":"10478:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"10467:7:101","nodeType":"YulTypedName","src":"10467:7:101","type":""}]},{"nativeSrc":"10488:44:101","nodeType":"YulAssignment","src":"10488:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10516:9:101","nodeType":"YulIdentifier","src":"10516:9:101"},{"kind":"number","nativeSrc":"10527:3:101","nodeType":"YulLiteral","src":"10527:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"10512:3:101","nodeType":"YulIdentifier","src":"10512:3:101"},"nativeSrc":"10512:19:101","nodeType":"YulFunctionCall","src":"10512:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"10499:12:101","nodeType":"YulIdentifier","src":"10499:12:101"},"nativeSrc":"10499:33:101","nodeType":"YulFunctionCall","src":"10499:33:101"},"variableNames":[{"name":"value_3","nativeSrc":"10488:7:101","nodeType":"YulIdentifier","src":"10488:7:101"}]},{"nativeSrc":"10541:17:101","nodeType":"YulAssignment","src":"10541:17:101","value":{"name":"value_3","nativeSrc":"10551:7:101","nodeType":"YulIdentifier","src":"10551:7:101"},"variableNames":[{"name":"value4","nativeSrc":"10541:6:101","nodeType":"YulIdentifier","src":"10541:6:101"}]},{"nativeSrc":"10567:64:101","nodeType":"YulAssignment","src":"10567:64:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10606:9:101","nodeType":"YulIdentifier","src":"10606:9:101"},{"kind":"number","nativeSrc":"10617:3:101","nodeType":"YulLiteral","src":"10617:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"10602:3:101","nodeType":"YulIdentifier","src":"10602:3:101"},"nativeSrc":"10602:19:101","nodeType":"YulFunctionCall","src":"10602:19:101"},{"name":"dataEnd","nativeSrc":"10623:7:101","nodeType":"YulIdentifier","src":"10623:7:101"}],"functionName":{"name":"abi_decode_struct_Params","nativeSrc":"10577:24:101","nodeType":"YulIdentifier","src":"10577:24:101"},"nativeSrc":"10577:54:101","nodeType":"YulFunctionCall","src":"10577:54:101"},"variableNames":[{"name":"value5","nativeSrc":"10567:6:101","nodeType":"YulIdentifier","src":"10567:6:101"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint256t_struct$_Params_$22230_memory_ptr","nativeSrc":"9862:775:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9967:9:101","nodeType":"YulTypedName","src":"9967:9:101","type":""},{"name":"dataEnd","nativeSrc":"9978:7:101","nodeType":"YulTypedName","src":"9978:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9990:6:101","nodeType":"YulTypedName","src":"9990:6:101","type":""},{"name":"value1","nativeSrc":"9998:6:101","nodeType":"YulTypedName","src":"9998:6:101","type":""},{"name":"value2","nativeSrc":"10006:6:101","nodeType":"YulTypedName","src":"10006:6:101","type":""},{"name":"value3","nativeSrc":"10014:6:101","nodeType":"YulTypedName","src":"10014:6:101","type":""},{"name":"value4","nativeSrc":"10022:6:101","nodeType":"YulTypedName","src":"10022:6:101","type":""},{"name":"value5","nativeSrc":"10030:6:101","nodeType":"YulTypedName","src":"10030:6:101","type":""}],"src":"9862:775:101"},{"body":{"nativeSrc":"10771:119:101","nodeType":"YulBlock","src":"10771:119:101","statements":[{"nativeSrc":"10781:26:101","nodeType":"YulAssignment","src":"10781:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"10793:9:101","nodeType":"YulIdentifier","src":"10793:9:101"},{"kind":"number","nativeSrc":"10804:2:101","nodeType":"YulLiteral","src":"10804:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10789:3:101","nodeType":"YulIdentifier","src":"10789:3:101"},"nativeSrc":"10789:18:101","nodeType":"YulFunctionCall","src":"10789:18:101"},"variableNames":[{"name":"tail","nativeSrc":"10781:4:101","nodeType":"YulIdentifier","src":"10781:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10823:9:101","nodeType":"YulIdentifier","src":"10823:9:101"},{"name":"value0","nativeSrc":"10834:6:101","nodeType":"YulIdentifier","src":"10834:6:101"}],"functionName":{"name":"mstore","nativeSrc":"10816:6:101","nodeType":"YulIdentifier","src":"10816:6:101"},"nativeSrc":"10816:25:101","nodeType":"YulFunctionCall","src":"10816:25:101"},"nativeSrc":"10816:25:101","nodeType":"YulExpressionStatement","src":"10816:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10861:9:101","nodeType":"YulIdentifier","src":"10861:9:101"},{"kind":"number","nativeSrc":"10872:2:101","nodeType":"YulLiteral","src":"10872:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10857:3:101","nodeType":"YulIdentifier","src":"10857:3:101"},"nativeSrc":"10857:18:101","nodeType":"YulFunctionCall","src":"10857:18:101"},{"name":"value1","nativeSrc":"10877:6:101","nodeType":"YulIdentifier","src":"10877:6:101"}],"functionName":{"name":"mstore","nativeSrc":"10850:6:101","nodeType":"YulIdentifier","src":"10850:6:101"},"nativeSrc":"10850:34:101","nodeType":"YulFunctionCall","src":"10850:34:101"},"nativeSrc":"10850:34:101","nodeType":"YulExpressionStatement","src":"10850:34:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"10642:248:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10732:9:101","nodeType":"YulTypedName","src":"10732:9:101","type":""},{"name":"value1","nativeSrc":"10743:6:101","nodeType":"YulTypedName","src":"10743:6:101","type":""},{"name":"value0","nativeSrc":"10751:6:101","nodeType":"YulTypedName","src":"10751:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10762:4:101","nodeType":"YulTypedName","src":"10762:4:101","type":""}],"src":"10642:248:101"},{"body":{"nativeSrc":"10999:170:101","nodeType":"YulBlock","src":"10999:170:101","statements":[{"body":{"nativeSrc":"11045:16:101","nodeType":"YulBlock","src":"11045:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11054:1:101","nodeType":"YulLiteral","src":"11054:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11057:1:101","nodeType":"YulLiteral","src":"11057:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11047:6:101","nodeType":"YulIdentifier","src":"11047:6:101"},"nativeSrc":"11047:12:101","nodeType":"YulFunctionCall","src":"11047:12:101"},"nativeSrc":"11047:12:101","nodeType":"YulExpressionStatement","src":"11047:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11020:7:101","nodeType":"YulIdentifier","src":"11020:7:101"},{"name":"headStart","nativeSrc":"11029:9:101","nodeType":"YulIdentifier","src":"11029:9:101"}],"functionName":{"name":"sub","nativeSrc":"11016:3:101","nodeType":"YulIdentifier","src":"11016:3:101"},"nativeSrc":"11016:23:101","nodeType":"YulFunctionCall","src":"11016:23:101"},{"kind":"number","nativeSrc":"11041:2:101","nodeType":"YulLiteral","src":"11041:2:101","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"11012:3:101","nodeType":"YulIdentifier","src":"11012:3:101"},"nativeSrc":"11012:32:101","nodeType":"YulFunctionCall","src":"11012:32:101"},"nativeSrc":"11009:52:101","nodeType":"YulIf","src":"11009:52:101"},{"nativeSrc":"11070:29:101","nodeType":"YulVariableDeclaration","src":"11070:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"11089:9:101","nodeType":"YulIdentifier","src":"11089:9:101"}],"functionName":{"name":"mload","nativeSrc":"11083:5:101","nodeType":"YulIdentifier","src":"11083:5:101"},"nativeSrc":"11083:16:101","nodeType":"YulFunctionCall","src":"11083:16:101"},"variables":[{"name":"value","nativeSrc":"11074:5:101","nodeType":"YulTypedName","src":"11074:5:101","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"11133:5:101","nodeType":"YulIdentifier","src":"11133:5:101"}],"functionName":{"name":"validator_revert_address","nativeSrc":"11108:24:101","nodeType":"YulIdentifier","src":"11108:24:101"},"nativeSrc":"11108:31:101","nodeType":"YulFunctionCall","src":"11108:31:101"},"nativeSrc":"11108:31:101","nodeType":"YulExpressionStatement","src":"11108:31:101"},{"nativeSrc":"11148:15:101","nodeType":"YulAssignment","src":"11148:15:101","value":{"name":"value","nativeSrc":"11158:5:101","nodeType":"YulIdentifier","src":"11158:5:101"},"variableNames":[{"name":"value0","nativeSrc":"11148:6:101","nodeType":"YulIdentifier","src":"11148:6:101"}]}]},"name":"abi_decode_tuple_t_contract$_IAccessManager_$6119_fromMemory","nativeSrc":"10895:274:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10965:9:101","nodeType":"YulTypedName","src":"10965:9:101","type":""},{"name":"dataEnd","nativeSrc":"10976:7:101","nodeType":"YulTypedName","src":"10976:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10988:6:101","nodeType":"YulTypedName","src":"10988:6:101","type":""}],"src":"10895:274:101"},{"body":{"nativeSrc":"11329:241:101","nodeType":"YulBlock","src":"11329:241:101","statements":[{"nativeSrc":"11339:26:101","nodeType":"YulAssignment","src":"11339:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"11351:9:101","nodeType":"YulIdentifier","src":"11351:9:101"},{"kind":"number","nativeSrc":"11362:2:101","nodeType":"YulLiteral","src":"11362:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"11347:3:101","nodeType":"YulIdentifier","src":"11347:3:101"},"nativeSrc":"11347:18:101","nodeType":"YulFunctionCall","src":"11347:18:101"},"variableNames":[{"name":"tail","nativeSrc":"11339:4:101","nodeType":"YulIdentifier","src":"11339:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11381:9:101","nodeType":"YulIdentifier","src":"11381:9:101"},{"arguments":[{"name":"value0","nativeSrc":"11396:6:101","nodeType":"YulIdentifier","src":"11396:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11412:3:101","nodeType":"YulLiteral","src":"11412:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"11417:1:101","nodeType":"YulLiteral","src":"11417:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11408:3:101","nodeType":"YulIdentifier","src":"11408:3:101"},"nativeSrc":"11408:11:101","nodeType":"YulFunctionCall","src":"11408:11:101"},{"kind":"number","nativeSrc":"11421:1:101","nodeType":"YulLiteral","src":"11421:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11404:3:101","nodeType":"YulIdentifier","src":"11404:3:101"},"nativeSrc":"11404:19:101","nodeType":"YulFunctionCall","src":"11404:19:101"}],"functionName":{"name":"and","nativeSrc":"11392:3:101","nodeType":"YulIdentifier","src":"11392:3:101"},"nativeSrc":"11392:32:101","nodeType":"YulFunctionCall","src":"11392:32:101"}],"functionName":{"name":"mstore","nativeSrc":"11374:6:101","nodeType":"YulIdentifier","src":"11374:6:101"},"nativeSrc":"11374:51:101","nodeType":"YulFunctionCall","src":"11374:51:101"},"nativeSrc":"11374:51:101","nodeType":"YulExpressionStatement","src":"11374:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11445:9:101","nodeType":"YulIdentifier","src":"11445:9:101"},{"kind":"number","nativeSrc":"11456:2:101","nodeType":"YulLiteral","src":"11456:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11441:3:101","nodeType":"YulIdentifier","src":"11441:3:101"},"nativeSrc":"11441:18:101","nodeType":"YulFunctionCall","src":"11441:18:101"},{"arguments":[{"name":"value1","nativeSrc":"11465:6:101","nodeType":"YulIdentifier","src":"11465:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11481:3:101","nodeType":"YulLiteral","src":"11481:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"11486:1:101","nodeType":"YulLiteral","src":"11486:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11477:3:101","nodeType":"YulIdentifier","src":"11477:3:101"},"nativeSrc":"11477:11:101","nodeType":"YulFunctionCall","src":"11477:11:101"},{"kind":"number","nativeSrc":"11490:1:101","nodeType":"YulLiteral","src":"11490:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11473:3:101","nodeType":"YulIdentifier","src":"11473:3:101"},"nativeSrc":"11473:19:101","nodeType":"YulFunctionCall","src":"11473:19:101"}],"functionName":{"name":"and","nativeSrc":"11461:3:101","nodeType":"YulIdentifier","src":"11461:3:101"},"nativeSrc":"11461:32:101","nodeType":"YulFunctionCall","src":"11461:32:101"}],"functionName":{"name":"mstore","nativeSrc":"11434:6:101","nodeType":"YulIdentifier","src":"11434:6:101"},"nativeSrc":"11434:60:101","nodeType":"YulFunctionCall","src":"11434:60:101"},"nativeSrc":"11434:60:101","nodeType":"YulExpressionStatement","src":"11434:60:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11514:9:101","nodeType":"YulIdentifier","src":"11514:9:101"},{"kind":"number","nativeSrc":"11525:2:101","nodeType":"YulLiteral","src":"11525:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11510:3:101","nodeType":"YulIdentifier","src":"11510:3:101"},"nativeSrc":"11510:18:101","nodeType":"YulFunctionCall","src":"11510:18:101"},{"arguments":[{"name":"value2","nativeSrc":"11534:6:101","nodeType":"YulIdentifier","src":"11534:6:101"},{"arguments":[{"kind":"number","nativeSrc":"11546:3:101","nodeType":"YulLiteral","src":"11546:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"11551:10:101","nodeType":"YulLiteral","src":"11551:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"11542:3:101","nodeType":"YulIdentifier","src":"11542:3:101"},"nativeSrc":"11542:20:101","nodeType":"YulFunctionCall","src":"11542:20:101"}],"functionName":{"name":"and","nativeSrc":"11530:3:101","nodeType":"YulIdentifier","src":"11530:3:101"},"nativeSrc":"11530:33:101","nodeType":"YulFunctionCall","src":"11530:33:101"}],"functionName":{"name":"mstore","nativeSrc":"11503:6:101","nodeType":"YulIdentifier","src":"11503:6:101"},"nativeSrc":"11503:61:101","nodeType":"YulFunctionCall","src":"11503:61:101"},"nativeSrc":"11503:61:101","nodeType":"YulExpressionStatement","src":"11503:61:101"}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"11174:396:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11282:9:101","nodeType":"YulTypedName","src":"11282:9:101","type":""},{"name":"value2","nativeSrc":"11293:6:101","nodeType":"YulTypedName","src":"11293:6:101","type":""},{"name":"value1","nativeSrc":"11301:6:101","nodeType":"YulTypedName","src":"11301:6:101","type":""},{"name":"value0","nativeSrc":"11309:6:101","nodeType":"YulTypedName","src":"11309:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11320:4:101","nodeType":"YulTypedName","src":"11320:4:101","type":""}],"src":"11174:396:101"},{"body":{"nativeSrc":"11669:348:101","nodeType":"YulBlock","src":"11669:348:101","statements":[{"body":{"nativeSrc":"11715:16:101","nodeType":"YulBlock","src":"11715:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11724:1:101","nodeType":"YulLiteral","src":"11724:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11727:1:101","nodeType":"YulLiteral","src":"11727:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11717:6:101","nodeType":"YulIdentifier","src":"11717:6:101"},"nativeSrc":"11717:12:101","nodeType":"YulFunctionCall","src":"11717:12:101"},"nativeSrc":"11717:12:101","nodeType":"YulExpressionStatement","src":"11717:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11690:7:101","nodeType":"YulIdentifier","src":"11690:7:101"},{"name":"headStart","nativeSrc":"11699:9:101","nodeType":"YulIdentifier","src":"11699:9:101"}],"functionName":{"name":"sub","nativeSrc":"11686:3:101","nodeType":"YulIdentifier","src":"11686:3:101"},"nativeSrc":"11686:23:101","nodeType":"YulFunctionCall","src":"11686:23:101"},{"kind":"number","nativeSrc":"11711:2:101","nodeType":"YulLiteral","src":"11711:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"11682:3:101","nodeType":"YulIdentifier","src":"11682:3:101"},"nativeSrc":"11682:32:101","nodeType":"YulFunctionCall","src":"11682:32:101"},"nativeSrc":"11679:52:101","nodeType":"YulIf","src":"11679:52:101"},{"nativeSrc":"11740:29:101","nodeType":"YulVariableDeclaration","src":"11740:29:101","value":{"arguments":[{"name":"headStart","nativeSrc":"11759:9:101","nodeType":"YulIdentifier","src":"11759:9:101"}],"functionName":{"name":"mload","nativeSrc":"11753:5:101","nodeType":"YulIdentifier","src":"11753:5:101"},"nativeSrc":"11753:16:101","nodeType":"YulFunctionCall","src":"11753:16:101"},"variables":[{"name":"value","nativeSrc":"11744:5:101","nodeType":"YulTypedName","src":"11744:5:101","type":""}]},{"body":{"nativeSrc":"11822:16:101","nodeType":"YulBlock","src":"11822:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11831:1:101","nodeType":"YulLiteral","src":"11831:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11834:1:101","nodeType":"YulLiteral","src":"11834:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11824:6:101","nodeType":"YulIdentifier","src":"11824:6:101"},"nativeSrc":"11824:12:101","nodeType":"YulFunctionCall","src":"11824:12:101"},"nativeSrc":"11824:12:101","nodeType":"YulExpressionStatement","src":"11824:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11791:5:101","nodeType":"YulIdentifier","src":"11791:5:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11812:5:101","nodeType":"YulIdentifier","src":"11812:5:101"}],"functionName":{"name":"iszero","nativeSrc":"11805:6:101","nodeType":"YulIdentifier","src":"11805:6:101"},"nativeSrc":"11805:13:101","nodeType":"YulFunctionCall","src":"11805:13:101"}],"functionName":{"name":"iszero","nativeSrc":"11798:6:101","nodeType":"YulIdentifier","src":"11798:6:101"},"nativeSrc":"11798:21:101","nodeType":"YulFunctionCall","src":"11798:21:101"}],"functionName":{"name":"eq","nativeSrc":"11788:2:101","nodeType":"YulIdentifier","src":"11788:2:101"},"nativeSrc":"11788:32:101","nodeType":"YulFunctionCall","src":"11788:32:101"}],"functionName":{"name":"iszero","nativeSrc":"11781:6:101","nodeType":"YulIdentifier","src":"11781:6:101"},"nativeSrc":"11781:40:101","nodeType":"YulFunctionCall","src":"11781:40:101"},"nativeSrc":"11778:60:101","nodeType":"YulIf","src":"11778:60:101"},{"nativeSrc":"11847:15:101","nodeType":"YulAssignment","src":"11847:15:101","value":{"name":"value","nativeSrc":"11857:5:101","nodeType":"YulIdentifier","src":"11857:5:101"},"variableNames":[{"name":"value0","nativeSrc":"11847:6:101","nodeType":"YulIdentifier","src":"11847:6:101"}]},{"nativeSrc":"11871:40:101","nodeType":"YulVariableDeclaration","src":"11871:40:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11896:9:101","nodeType":"YulIdentifier","src":"11896:9:101"},{"kind":"number","nativeSrc":"11907:2:101","nodeType":"YulLiteral","src":"11907:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11892:3:101","nodeType":"YulIdentifier","src":"11892:3:101"},"nativeSrc":"11892:18:101","nodeType":"YulFunctionCall","src":"11892:18:101"}],"functionName":{"name":"mload","nativeSrc":"11886:5:101","nodeType":"YulIdentifier","src":"11886:5:101"},"nativeSrc":"11886:25:101","nodeType":"YulFunctionCall","src":"11886:25:101"},"variables":[{"name":"value_1","nativeSrc":"11875:7:101","nodeType":"YulTypedName","src":"11875:7:101","type":""}]},{"body":{"nativeSrc":"11969:16:101","nodeType":"YulBlock","src":"11969:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11978:1:101","nodeType":"YulLiteral","src":"11978:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"11981:1:101","nodeType":"YulLiteral","src":"11981:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11971:6:101","nodeType":"YulIdentifier","src":"11971:6:101"},"nativeSrc":"11971:12:101","nodeType":"YulFunctionCall","src":"11971:12:101"},"nativeSrc":"11971:12:101","nodeType":"YulExpressionStatement","src":"11971:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"11933:7:101","nodeType":"YulIdentifier","src":"11933:7:101"},{"arguments":[{"name":"value_1","nativeSrc":"11946:7:101","nodeType":"YulIdentifier","src":"11946:7:101"},{"kind":"number","nativeSrc":"11955:10:101","nodeType":"YulLiteral","src":"11955:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"11942:3:101","nodeType":"YulIdentifier","src":"11942:3:101"},"nativeSrc":"11942:24:101","nodeType":"YulFunctionCall","src":"11942:24:101"}],"functionName":{"name":"eq","nativeSrc":"11930:2:101","nodeType":"YulIdentifier","src":"11930:2:101"},"nativeSrc":"11930:37:101","nodeType":"YulFunctionCall","src":"11930:37:101"}],"functionName":{"name":"iszero","nativeSrc":"11923:6:101","nodeType":"YulIdentifier","src":"11923:6:101"},"nativeSrc":"11923:45:101","nodeType":"YulFunctionCall","src":"11923:45:101"},"nativeSrc":"11920:65:101","nodeType":"YulIf","src":"11920:65:101"},{"nativeSrc":"11994:17:101","nodeType":"YulAssignment","src":"11994:17:101","value":{"name":"value_1","nativeSrc":"12004:7:101","nodeType":"YulIdentifier","src":"12004:7:101"},"variableNames":[{"name":"value1","nativeSrc":"11994:6:101","nodeType":"YulIdentifier","src":"11994:6:101"}]}]},"name":"abi_decode_tuple_t_boolt_uint32_fromMemory","nativeSrc":"11575:442:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11627:9:101","nodeType":"YulTypedName","src":"11627:9:101","type":""},{"name":"dataEnd","nativeSrc":"11638:7:101","nodeType":"YulTypedName","src":"11638:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11650:6:101","nodeType":"YulTypedName","src":"11650:6:101","type":""},{"name":"value1","nativeSrc":"11658:6:101","nodeType":"YulTypedName","src":"11658:6:101","type":""}],"src":"11575:442:101"},{"body":{"nativeSrc":"12149:172:101","nodeType":"YulBlock","src":"12149:172:101","statements":[{"nativeSrc":"12159:26:101","nodeType":"YulAssignment","src":"12159:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"12171:9:101","nodeType":"YulIdentifier","src":"12171:9:101"},{"kind":"number","nativeSrc":"12182:2:101","nodeType":"YulLiteral","src":"12182:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12167:3:101","nodeType":"YulIdentifier","src":"12167:3:101"},"nativeSrc":"12167:18:101","nodeType":"YulFunctionCall","src":"12167:18:101"},"variableNames":[{"name":"tail","nativeSrc":"12159:4:101","nodeType":"YulIdentifier","src":"12159:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12201:9:101","nodeType":"YulIdentifier","src":"12201:9:101"},{"arguments":[{"name":"value0","nativeSrc":"12216:6:101","nodeType":"YulIdentifier","src":"12216:6:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12232:3:101","nodeType":"YulLiteral","src":"12232:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"12237:1:101","nodeType":"YulLiteral","src":"12237:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12228:3:101","nodeType":"YulIdentifier","src":"12228:3:101"},"nativeSrc":"12228:11:101","nodeType":"YulFunctionCall","src":"12228:11:101"},{"kind":"number","nativeSrc":"12241:1:101","nodeType":"YulLiteral","src":"12241:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12224:3:101","nodeType":"YulIdentifier","src":"12224:3:101"},"nativeSrc":"12224:19:101","nodeType":"YulFunctionCall","src":"12224:19:101"}],"functionName":{"name":"and","nativeSrc":"12212:3:101","nodeType":"YulIdentifier","src":"12212:3:101"},"nativeSrc":"12212:32:101","nodeType":"YulFunctionCall","src":"12212:32:101"}],"functionName":{"name":"mstore","nativeSrc":"12194:6:101","nodeType":"YulIdentifier","src":"12194:6:101"},"nativeSrc":"12194:51:101","nodeType":"YulFunctionCall","src":"12194:51:101"},"nativeSrc":"12194:51:101","nodeType":"YulExpressionStatement","src":"12194:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12265:9:101","nodeType":"YulIdentifier","src":"12265:9:101"},{"kind":"number","nativeSrc":"12276:2:101","nodeType":"YulLiteral","src":"12276:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12261:3:101","nodeType":"YulIdentifier","src":"12261:3:101"},"nativeSrc":"12261:18:101","nodeType":"YulFunctionCall","src":"12261:18:101"},{"arguments":[{"name":"value1","nativeSrc":"12285:6:101","nodeType":"YulIdentifier","src":"12285:6:101"},{"arguments":[{"kind":"number","nativeSrc":"12297:3:101","nodeType":"YulLiteral","src":"12297:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"12302:10:101","nodeType":"YulLiteral","src":"12302:10:101","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"12293:3:101","nodeType":"YulIdentifier","src":"12293:3:101"},"nativeSrc":"12293:20:101","nodeType":"YulFunctionCall","src":"12293:20:101"}],"functionName":{"name":"and","nativeSrc":"12281:3:101","nodeType":"YulIdentifier","src":"12281:3:101"},"nativeSrc":"12281:33:101","nodeType":"YulFunctionCall","src":"12281:33:101"}],"functionName":{"name":"mstore","nativeSrc":"12254:6:101","nodeType":"YulIdentifier","src":"12254:6:101"},"nativeSrc":"12254:61:101","nodeType":"YulFunctionCall","src":"12254:61:101"},"nativeSrc":"12254:61:101","nodeType":"YulExpressionStatement","src":"12254:61:101"}]},"name":"abi_encode_tuple_t_address_t_bytes4__to_t_address_t_bytes4__fromStack_reversed","nativeSrc":"12022:299:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12110:9:101","nodeType":"YulTypedName","src":"12110:9:101","type":""},{"name":"value1","nativeSrc":"12121:6:101","nodeType":"YulTypedName","src":"12121:6:101","type":""},{"name":"value0","nativeSrc":"12129:6:101","nodeType":"YulTypedName","src":"12129:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12140:4:101","nodeType":"YulTypedName","src":"12140:4:101","type":""}],"src":"12022:299:101"},{"body":{"nativeSrc":"12378:116:101","nodeType":"YulBlock","src":"12378:116:101","statements":[{"nativeSrc":"12388:20:101","nodeType":"YulAssignment","src":"12388:20:101","value":{"arguments":[{"name":"x","nativeSrc":"12403:1:101","nodeType":"YulIdentifier","src":"12403:1:101"},{"name":"y","nativeSrc":"12406:1:101","nodeType":"YulIdentifier","src":"12406:1:101"}],"functionName":{"name":"mul","nativeSrc":"12399:3:101","nodeType":"YulIdentifier","src":"12399:3:101"},"nativeSrc":"12399:9:101","nodeType":"YulFunctionCall","src":"12399:9:101"},"variableNames":[{"name":"product","nativeSrc":"12388:7:101","nodeType":"YulIdentifier","src":"12388:7:101"}]},{"body":{"nativeSrc":"12466:22:101","nodeType":"YulBlock","src":"12466:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"12468:16:101","nodeType":"YulIdentifier","src":"12468:16:101"},"nativeSrc":"12468:18:101","nodeType":"YulFunctionCall","src":"12468:18:101"},"nativeSrc":"12468:18:101","nodeType":"YulExpressionStatement","src":"12468:18:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nativeSrc":"12437:1:101","nodeType":"YulIdentifier","src":"12437:1:101"}],"functionName":{"name":"iszero","nativeSrc":"12430:6:101","nodeType":"YulIdentifier","src":"12430:6:101"},"nativeSrc":"12430:9:101","nodeType":"YulFunctionCall","src":"12430:9:101"},{"arguments":[{"name":"y","nativeSrc":"12444:1:101","nodeType":"YulIdentifier","src":"12444:1:101"},{"arguments":[{"name":"product","nativeSrc":"12451:7:101","nodeType":"YulIdentifier","src":"12451:7:101"},{"name":"x","nativeSrc":"12460:1:101","nodeType":"YulIdentifier","src":"12460:1:101"}],"functionName":{"name":"div","nativeSrc":"12447:3:101","nodeType":"YulIdentifier","src":"12447:3:101"},"nativeSrc":"12447:15:101","nodeType":"YulFunctionCall","src":"12447:15:101"}],"functionName":{"name":"eq","nativeSrc":"12441:2:101","nodeType":"YulIdentifier","src":"12441:2:101"},"nativeSrc":"12441:22:101","nodeType":"YulFunctionCall","src":"12441:22:101"}],"functionName":{"name":"or","nativeSrc":"12427:2:101","nodeType":"YulIdentifier","src":"12427:2:101"},"nativeSrc":"12427:37:101","nodeType":"YulFunctionCall","src":"12427:37:101"}],"functionName":{"name":"iszero","nativeSrc":"12420:6:101","nodeType":"YulIdentifier","src":"12420:6:101"},"nativeSrc":"12420:45:101","nodeType":"YulFunctionCall","src":"12420:45:101"},"nativeSrc":"12417:71:101","nodeType":"YulIf","src":"12417:71:101"}]},"name":"checked_mul_t_uint256","nativeSrc":"12326:168:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"12357:1:101","nodeType":"YulTypedName","src":"12357:1:101","type":""},{"name":"y","nativeSrc":"12360:1:101","nodeType":"YulTypedName","src":"12360:1:101","type":""}],"returnVariables":[{"name":"product","nativeSrc":"12366:7:101","nodeType":"YulTypedName","src":"12366:7:101","type":""}],"src":"12326:168:101"},{"body":{"nativeSrc":"12531:95:101","nodeType":"YulBlock","src":"12531:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12548:1:101","nodeType":"YulLiteral","src":"12548:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"12555:3:101","nodeType":"YulLiteral","src":"12555:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"12560:10:101","nodeType":"YulLiteral","src":"12560:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"12551:3:101","nodeType":"YulIdentifier","src":"12551:3:101"},"nativeSrc":"12551:20:101","nodeType":"YulFunctionCall","src":"12551:20:101"}],"functionName":{"name":"mstore","nativeSrc":"12541:6:101","nodeType":"YulIdentifier","src":"12541:6:101"},"nativeSrc":"12541:31:101","nodeType":"YulFunctionCall","src":"12541:31:101"},"nativeSrc":"12541:31:101","nodeType":"YulExpressionStatement","src":"12541:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12588:1:101","nodeType":"YulLiteral","src":"12588:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"12591:4:101","nodeType":"YulLiteral","src":"12591:4:101","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"12581:6:101","nodeType":"YulIdentifier","src":"12581:6:101"},"nativeSrc":"12581:15:101","nodeType":"YulFunctionCall","src":"12581:15:101"},"nativeSrc":"12581:15:101","nodeType":"YulExpressionStatement","src":"12581:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12612:1:101","nodeType":"YulLiteral","src":"12612:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"12615:4:101","nodeType":"YulLiteral","src":"12615:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"12605:6:101","nodeType":"YulIdentifier","src":"12605:6:101"},"nativeSrc":"12605:15:101","nodeType":"YulFunctionCall","src":"12605:15:101"},"nativeSrc":"12605:15:101","nodeType":"YulExpressionStatement","src":"12605:15:101"}]},"name":"panic_error_0x12","nativeSrc":"12499:127:101","nodeType":"YulFunctionDefinition","src":"12499:127:101"},{"body":{"nativeSrc":"12677:74:101","nodeType":"YulBlock","src":"12677:74:101","statements":[{"body":{"nativeSrc":"12700:22:101","nodeType":"YulBlock","src":"12700:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"12702:16:101","nodeType":"YulIdentifier","src":"12702:16:101"},"nativeSrc":"12702:18:101","nodeType":"YulFunctionCall","src":"12702:18:101"},"nativeSrc":"12702:18:101","nodeType":"YulExpressionStatement","src":"12702:18:101"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"12697:1:101","nodeType":"YulIdentifier","src":"12697:1:101"}],"functionName":{"name":"iszero","nativeSrc":"12690:6:101","nodeType":"YulIdentifier","src":"12690:6:101"},"nativeSrc":"12690:9:101","nodeType":"YulFunctionCall","src":"12690:9:101"},"nativeSrc":"12687:35:101","nodeType":"YulIf","src":"12687:35:101"},{"nativeSrc":"12731:14:101","nodeType":"YulAssignment","src":"12731:14:101","value":{"arguments":[{"name":"x","nativeSrc":"12740:1:101","nodeType":"YulIdentifier","src":"12740:1:101"},{"name":"y","nativeSrc":"12743:1:101","nodeType":"YulIdentifier","src":"12743:1:101"}],"functionName":{"name":"div","nativeSrc":"12736:3:101","nodeType":"YulIdentifier","src":"12736:3:101"},"nativeSrc":"12736:9:101","nodeType":"YulFunctionCall","src":"12736:9:101"},"variableNames":[{"name":"r","nativeSrc":"12731:1:101","nodeType":"YulIdentifier","src":"12731:1:101"}]}]},"name":"checked_div_t_uint256","nativeSrc":"12631:120:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"12662:1:101","nodeType":"YulTypedName","src":"12662:1:101","type":""},{"name":"y","nativeSrc":"12665:1:101","nodeType":"YulTypedName","src":"12665:1:101","type":""}],"returnVariables":[{"name":"r","nativeSrc":"12671:1:101","nodeType":"YulTypedName","src":"12671:1:101","type":""}],"src":"12631:120:101"},{"body":{"nativeSrc":"12794:74:101","nodeType":"YulBlock","src":"12794:74:101","statements":[{"body":{"nativeSrc":"12817:22:101","nodeType":"YulBlock","src":"12817:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"12819:16:101","nodeType":"YulIdentifier","src":"12819:16:101"},"nativeSrc":"12819:18:101","nodeType":"YulFunctionCall","src":"12819:18:101"},"nativeSrc":"12819:18:101","nodeType":"YulExpressionStatement","src":"12819:18:101"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"12814:1:101","nodeType":"YulIdentifier","src":"12814:1:101"}],"functionName":{"name":"iszero","nativeSrc":"12807:6:101","nodeType":"YulIdentifier","src":"12807:6:101"},"nativeSrc":"12807:9:101","nodeType":"YulFunctionCall","src":"12807:9:101"},"nativeSrc":"12804:35:101","nodeType":"YulIf","src":"12804:35:101"},{"nativeSrc":"12848:14:101","nodeType":"YulAssignment","src":"12848:14:101","value":{"arguments":[{"name":"x","nativeSrc":"12857:1:101","nodeType":"YulIdentifier","src":"12857:1:101"},{"name":"y","nativeSrc":"12860:1:101","nodeType":"YulIdentifier","src":"12860:1:101"}],"functionName":{"name":"mod","nativeSrc":"12853:3:101","nodeType":"YulIdentifier","src":"12853:3:101"},"nativeSrc":"12853:9:101","nodeType":"YulFunctionCall","src":"12853:9:101"},"variableNames":[{"name":"r","nativeSrc":"12848:1:101","nodeType":"YulIdentifier","src":"12848:1:101"}]}]},"name":"mod_t_uint256","nativeSrc":"12756:112:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"12779:1:101","nodeType":"YulTypedName","src":"12779:1:101","type":""},{"name":"y","nativeSrc":"12782:1:101","nodeType":"YulTypedName","src":"12782:1:101","type":""}],"returnVariables":[{"name":"r","nativeSrc":"12788:1:101","nodeType":"YulTypedName","src":"12788:1:101","type":""}],"src":"12756:112:101"},{"body":{"nativeSrc":"12922:162:101","nodeType":"YulBlock","src":"12922:162:101","statements":[{"nativeSrc":"12932:26:101","nodeType":"YulVariableDeclaration","src":"12932:26:101","value":{"arguments":[{"name":"value","nativeSrc":"12952:5:101","nodeType":"YulIdentifier","src":"12952:5:101"}],"functionName":{"name":"mload","nativeSrc":"12946:5:101","nodeType":"YulIdentifier","src":"12946:5:101"},"nativeSrc":"12946:12:101","nodeType":"YulFunctionCall","src":"12946:12:101"},"variables":[{"name":"length","nativeSrc":"12936:6:101","nodeType":"YulTypedName","src":"12936:6:101","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"12973:3:101","nodeType":"YulIdentifier","src":"12973:3:101"},{"arguments":[{"name":"value","nativeSrc":"12982:5:101","nodeType":"YulIdentifier","src":"12982:5:101"},{"kind":"number","nativeSrc":"12989:4:101","nodeType":"YulLiteral","src":"12989:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12978:3:101","nodeType":"YulIdentifier","src":"12978:3:101"},"nativeSrc":"12978:16:101","nodeType":"YulFunctionCall","src":"12978:16:101"},{"name":"length","nativeSrc":"12996:6:101","nodeType":"YulIdentifier","src":"12996:6:101"}],"functionName":{"name":"mcopy","nativeSrc":"12967:5:101","nodeType":"YulIdentifier","src":"12967:5:101"},"nativeSrc":"12967:36:101","nodeType":"YulFunctionCall","src":"12967:36:101"},"nativeSrc":"12967:36:101","nodeType":"YulExpressionStatement","src":"12967:36:101"},{"nativeSrc":"13012:26:101","nodeType":"YulVariableDeclaration","src":"13012:26:101","value":{"arguments":[{"name":"pos","nativeSrc":"13026:3:101","nodeType":"YulIdentifier","src":"13026:3:101"},{"name":"length","nativeSrc":"13031:6:101","nodeType":"YulIdentifier","src":"13031:6:101"}],"functionName":{"name":"add","nativeSrc":"13022:3:101","nodeType":"YulIdentifier","src":"13022:3:101"},"nativeSrc":"13022:16:101","nodeType":"YulFunctionCall","src":"13022:16:101"},"variables":[{"name":"_1","nativeSrc":"13016:2:101","nodeType":"YulTypedName","src":"13016:2:101","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"13054:2:101","nodeType":"YulIdentifier","src":"13054:2:101"},{"kind":"number","nativeSrc":"13058:1:101","nodeType":"YulLiteral","src":"13058:1:101","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"13047:6:101","nodeType":"YulIdentifier","src":"13047:6:101"},"nativeSrc":"13047:13:101","nodeType":"YulFunctionCall","src":"13047:13:101"},"nativeSrc":"13047:13:101","nodeType":"YulExpressionStatement","src":"13047:13:101"},{"nativeSrc":"13069:9:101","nodeType":"YulAssignment","src":"13069:9:101","value":{"name":"_1","nativeSrc":"13076:2:101","nodeType":"YulIdentifier","src":"13076:2:101"},"variableNames":[{"name":"end","nativeSrc":"13069:3:101","nodeType":"YulIdentifier","src":"13069:3:101"}]}]},"name":"abi_encode_bytes","nativeSrc":"12873:211:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"12899:5:101","nodeType":"YulTypedName","src":"12899:5:101","type":""},{"name":"pos","nativeSrc":"12906:3:101","nodeType":"YulTypedName","src":"12906:3:101","type":""}],"returnVariables":[{"name":"end","nativeSrc":"12914:3:101","nodeType":"YulTypedName","src":"12914:3:101","type":""}],"src":"12873:211:101"},{"body":{"nativeSrc":"13363:175:101","nodeType":"YulBlock","src":"13363:175:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"13380:3:101","nodeType":"YulIdentifier","src":"13380:3:101"},{"kind":"number","nativeSrc":"13385:66:101","nodeType":"YulLiteral","src":"13385:66:101","type":"","value":"0x19457468657265756d205369676e6564204d6573736167653a0a000000000000"}],"functionName":{"name":"mstore","nativeSrc":"13373:6:101","nodeType":"YulIdentifier","src":"13373:6:101"},"nativeSrc":"13373:79:101","nodeType":"YulFunctionCall","src":"13373:79:101"},"nativeSrc":"13373:79:101","nodeType":"YulExpressionStatement","src":"13373:79:101"},{"nativeSrc":"13461:71:101","nodeType":"YulAssignment","src":"13461:71:101","value":{"arguments":[{"name":"value1","nativeSrc":"13485:6:101","nodeType":"YulIdentifier","src":"13485:6:101"},{"arguments":[{"name":"value0","nativeSrc":"13510:6:101","nodeType":"YulIdentifier","src":"13510:6:101"},{"arguments":[{"name":"pos","nativeSrc":"13522:3:101","nodeType":"YulIdentifier","src":"13522:3:101"},{"kind":"number","nativeSrc":"13527:2:101","nodeType":"YulLiteral","src":"13527:2:101","type":"","value":"26"}],"functionName":{"name":"add","nativeSrc":"13518:3:101","nodeType":"YulIdentifier","src":"13518:3:101"},"nativeSrc":"13518:12:101","nodeType":"YulFunctionCall","src":"13518:12:101"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"13493:16:101","nodeType":"YulIdentifier","src":"13493:16:101"},"nativeSrc":"13493:38:101","nodeType":"YulFunctionCall","src":"13493:38:101"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"13468:16:101","nodeType":"YulIdentifier","src":"13468:16:101"},"nativeSrc":"13468:64:101","nodeType":"YulFunctionCall","src":"13468:64:101"},"variableNames":[{"name":"end","nativeSrc":"13461:3:101","nodeType":"YulIdentifier","src":"13461:3:101"}]}]},"name":"abi_encode_tuple_packed_t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4_t_bytes_memory_ptr_t_bytes_memory_ptr__to_t_bytes26_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"13089:449:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"13331:3:101","nodeType":"YulTypedName","src":"13331:3:101","type":""},{"name":"value1","nativeSrc":"13336:6:101","nodeType":"YulTypedName","src":"13336:6:101","type":""},{"name":"value0","nativeSrc":"13344:6:101","nodeType":"YulTypedName","src":"13344:6:101","type":""}],"returnVariables":[{"name":"end","nativeSrc":"13355:3:101","nodeType":"YulTypedName","src":"13355:3:101","type":""}],"src":"13089:449:101"},{"body":{"nativeSrc":"13591:128:101","nodeType":"YulBlock","src":"13591:128:101","statements":[{"nativeSrc":"13601:55:101","nodeType":"YulAssignment","src":"13601:55:101","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"13617:1:101","nodeType":"YulIdentifier","src":"13617:1:101"},{"kind":"number","nativeSrc":"13620:12:101","nodeType":"YulLiteral","src":"13620:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"13613:3:101","nodeType":"YulIdentifier","src":"13613:3:101"},"nativeSrc":"13613:20:101","nodeType":"YulFunctionCall","src":"13613:20:101"},{"arguments":[{"name":"y","nativeSrc":"13639:1:101","nodeType":"YulIdentifier","src":"13639:1:101"},{"kind":"number","nativeSrc":"13642:12:101","nodeType":"YulLiteral","src":"13642:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"13635:3:101","nodeType":"YulIdentifier","src":"13635:3:101"},"nativeSrc":"13635:20:101","nodeType":"YulFunctionCall","src":"13635:20:101"}],"functionName":{"name":"sub","nativeSrc":"13609:3:101","nodeType":"YulIdentifier","src":"13609:3:101"},"nativeSrc":"13609:47:101","nodeType":"YulFunctionCall","src":"13609:47:101"},"variableNames":[{"name":"diff","nativeSrc":"13601:4:101","nodeType":"YulIdentifier","src":"13601:4:101"}]},{"body":{"nativeSrc":"13691:22:101","nodeType":"YulBlock","src":"13691:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"13693:16:101","nodeType":"YulIdentifier","src":"13693:16:101"},"nativeSrc":"13693:18:101","nodeType":"YulFunctionCall","src":"13693:18:101"},"nativeSrc":"13693:18:101","nodeType":"YulExpressionStatement","src":"13693:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"13671:4:101","nodeType":"YulIdentifier","src":"13671:4:101"},{"kind":"number","nativeSrc":"13677:12:101","nodeType":"YulLiteral","src":"13677:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"gt","nativeSrc":"13668:2:101","nodeType":"YulIdentifier","src":"13668:2:101"},"nativeSrc":"13668:22:101","nodeType":"YulFunctionCall","src":"13668:22:101"},"nativeSrc":"13665:48:101","nodeType":"YulIf","src":"13665:48:101"}]},"name":"checked_sub_t_uint40","nativeSrc":"13543:176:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"13573:1:101","nodeType":"YulTypedName","src":"13573:1:101","type":""},{"name":"y","nativeSrc":"13576:1:101","nodeType":"YulTypedName","src":"13576:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"13582:4:101","nodeType":"YulTypedName","src":"13582:4:101","type":""}],"src":"13543:176:101"},{"body":{"nativeSrc":"13756:95:101","nodeType":"YulBlock","src":"13756:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13773:1:101","nodeType":"YulLiteral","src":"13773:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"13780:3:101","nodeType":"YulLiteral","src":"13780:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"13785:10:101","nodeType":"YulLiteral","src":"13785:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"13776:3:101","nodeType":"YulIdentifier","src":"13776:3:101"},"nativeSrc":"13776:20:101","nodeType":"YulFunctionCall","src":"13776:20:101"}],"functionName":{"name":"mstore","nativeSrc":"13766:6:101","nodeType":"YulIdentifier","src":"13766:6:101"},"nativeSrc":"13766:31:101","nodeType":"YulFunctionCall","src":"13766:31:101"},"nativeSrc":"13766:31:101","nodeType":"YulExpressionStatement","src":"13766:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"13813:1:101","nodeType":"YulLiteral","src":"13813:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"13816:4:101","nodeType":"YulLiteral","src":"13816:4:101","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"13806:6:101","nodeType":"YulIdentifier","src":"13806:6:101"},"nativeSrc":"13806:15:101","nodeType":"YulFunctionCall","src":"13806:15:101"},"nativeSrc":"13806:15:101","nodeType":"YulExpressionStatement","src":"13806:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"13837:1:101","nodeType":"YulLiteral","src":"13837:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"13840:4:101","nodeType":"YulLiteral","src":"13840:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"13830:6:101","nodeType":"YulIdentifier","src":"13830:6:101"},"nativeSrc":"13830:15:101","nodeType":"YulFunctionCall","src":"13830:15:101"},"nativeSrc":"13830:15:101","nodeType":"YulExpressionStatement","src":"13830:15:101"}]},"name":"panic_error_0x21","nativeSrc":"13724:127:101","nodeType":"YulFunctionDefinition","src":"13724:127:101"},{"body":{"nativeSrc":"13957:76:101","nodeType":"YulBlock","src":"13957:76:101","statements":[{"nativeSrc":"13967:26:101","nodeType":"YulAssignment","src":"13967:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"13979:9:101","nodeType":"YulIdentifier","src":"13979:9:101"},{"kind":"number","nativeSrc":"13990:2:101","nodeType":"YulLiteral","src":"13990:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13975:3:101","nodeType":"YulIdentifier","src":"13975:3:101"},"nativeSrc":"13975:18:101","nodeType":"YulFunctionCall","src":"13975:18:101"},"variableNames":[{"name":"tail","nativeSrc":"13967:4:101","nodeType":"YulIdentifier","src":"13967:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14009:9:101","nodeType":"YulIdentifier","src":"14009:9:101"},{"name":"value0","nativeSrc":"14020:6:101","nodeType":"YulIdentifier","src":"14020:6:101"}],"functionName":{"name":"mstore","nativeSrc":"14002:6:101","nodeType":"YulIdentifier","src":"14002:6:101"},"nativeSrc":"14002:25:101","nodeType":"YulFunctionCall","src":"14002:25:101"},"nativeSrc":"14002:25:101","nodeType":"YulExpressionStatement","src":"14002:25:101"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"13856:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13926:9:101","nodeType":"YulTypedName","src":"13926:9:101","type":""},{"name":"value0","nativeSrc":"13937:6:101","nodeType":"YulTypedName","src":"13937:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13948:4:101","nodeType":"YulTypedName","src":"13948:4:101","type":""}],"src":"13856:177:101"},{"body":{"nativeSrc":"14139:76:101","nodeType":"YulBlock","src":"14139:76:101","statements":[{"nativeSrc":"14149:26:101","nodeType":"YulAssignment","src":"14149:26:101","value":{"arguments":[{"name":"headStart","nativeSrc":"14161:9:101","nodeType":"YulIdentifier","src":"14161:9:101"},{"kind":"number","nativeSrc":"14172:2:101","nodeType":"YulLiteral","src":"14172:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14157:3:101","nodeType":"YulIdentifier","src":"14157:3:101"},"nativeSrc":"14157:18:101","nodeType":"YulFunctionCall","src":"14157:18:101"},"variableNames":[{"name":"tail","nativeSrc":"14149:4:101","nodeType":"YulIdentifier","src":"14149:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14191:9:101","nodeType":"YulIdentifier","src":"14191:9:101"},{"name":"value0","nativeSrc":"14202:6:101","nodeType":"YulIdentifier","src":"14202:6:101"}],"functionName":{"name":"mstore","nativeSrc":"14184:6:101","nodeType":"YulIdentifier","src":"14184:6:101"},"nativeSrc":"14184:25:101","nodeType":"YulFunctionCall","src":"14184:25:101"},"nativeSrc":"14184:25:101","nodeType":"YulExpressionStatement","src":"14184:25:101"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"14038:177:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14108:9:101","nodeType":"YulTypedName","src":"14108:9:101","type":""},{"name":"value0","nativeSrc":"14119:6:101","nodeType":"YulTypedName","src":"14119:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14130:4:101","nodeType":"YulTypedName","src":"14130:4:101","type":""}],"src":"14038:177:101"},{"body":{"nativeSrc":"14401:217:101","nodeType":"YulBlock","src":"14401:217:101","statements":[{"nativeSrc":"14411:27:101","nodeType":"YulAssignment","src":"14411:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"14423:9:101","nodeType":"YulIdentifier","src":"14423:9:101"},{"kind":"number","nativeSrc":"14434:3:101","nodeType":"YulLiteral","src":"14434:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"14419:3:101","nodeType":"YulIdentifier","src":"14419:3:101"},"nativeSrc":"14419:19:101","nodeType":"YulFunctionCall","src":"14419:19:101"},"variableNames":[{"name":"tail","nativeSrc":"14411:4:101","nodeType":"YulIdentifier","src":"14411:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14454:9:101","nodeType":"YulIdentifier","src":"14454:9:101"},{"name":"value0","nativeSrc":"14465:6:101","nodeType":"YulIdentifier","src":"14465:6:101"}],"functionName":{"name":"mstore","nativeSrc":"14447:6:101","nodeType":"YulIdentifier","src":"14447:6:101"},"nativeSrc":"14447:25:101","nodeType":"YulFunctionCall","src":"14447:25:101"},"nativeSrc":"14447:25:101","nodeType":"YulExpressionStatement","src":"14447:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14492:9:101","nodeType":"YulIdentifier","src":"14492:9:101"},{"kind":"number","nativeSrc":"14503:2:101","nodeType":"YulLiteral","src":"14503:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14488:3:101","nodeType":"YulIdentifier","src":"14488:3:101"},"nativeSrc":"14488:18:101","nodeType":"YulFunctionCall","src":"14488:18:101"},{"arguments":[{"name":"value1","nativeSrc":"14512:6:101","nodeType":"YulIdentifier","src":"14512:6:101"},{"kind":"number","nativeSrc":"14520:4:101","nodeType":"YulLiteral","src":"14520:4:101","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"14508:3:101","nodeType":"YulIdentifier","src":"14508:3:101"},"nativeSrc":"14508:17:101","nodeType":"YulFunctionCall","src":"14508:17:101"}],"functionName":{"name":"mstore","nativeSrc":"14481:6:101","nodeType":"YulIdentifier","src":"14481:6:101"},"nativeSrc":"14481:45:101","nodeType":"YulFunctionCall","src":"14481:45:101"},"nativeSrc":"14481:45:101","nodeType":"YulExpressionStatement","src":"14481:45:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14546:9:101","nodeType":"YulIdentifier","src":"14546:9:101"},{"kind":"number","nativeSrc":"14557:2:101","nodeType":"YulLiteral","src":"14557:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14542:3:101","nodeType":"YulIdentifier","src":"14542:3:101"},"nativeSrc":"14542:18:101","nodeType":"YulFunctionCall","src":"14542:18:101"},{"name":"value2","nativeSrc":"14562:6:101","nodeType":"YulIdentifier","src":"14562:6:101"}],"functionName":{"name":"mstore","nativeSrc":"14535:6:101","nodeType":"YulIdentifier","src":"14535:6:101"},"nativeSrc":"14535:34:101","nodeType":"YulFunctionCall","src":"14535:34:101"},"nativeSrc":"14535:34:101","nodeType":"YulExpressionStatement","src":"14535:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14589:9:101","nodeType":"YulIdentifier","src":"14589:9:101"},{"kind":"number","nativeSrc":"14600:2:101","nodeType":"YulLiteral","src":"14600:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14585:3:101","nodeType":"YulIdentifier","src":"14585:3:101"},"nativeSrc":"14585:18:101","nodeType":"YulFunctionCall","src":"14585:18:101"},{"name":"value3","nativeSrc":"14605:6:101","nodeType":"YulIdentifier","src":"14605:6:101"}],"functionName":{"name":"mstore","nativeSrc":"14578:6:101","nodeType":"YulIdentifier","src":"14578:6:101"},"nativeSrc":"14578:34:101","nodeType":"YulFunctionCall","src":"14578:34:101"},"nativeSrc":"14578:34:101","nodeType":"YulExpressionStatement","src":"14578:34:101"}]},"name":"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"14220:398:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14346:9:101","nodeType":"YulTypedName","src":"14346:9:101","type":""},{"name":"value3","nativeSrc":"14357:6:101","nodeType":"YulTypedName","src":"14357:6:101","type":""},{"name":"value2","nativeSrc":"14365:6:101","nodeType":"YulTypedName","src":"14365:6:101","type":""},{"name":"value1","nativeSrc":"14373:6:101","nodeType":"YulTypedName","src":"14373:6:101","type":""},{"name":"value0","nativeSrc":"14381:6:101","nodeType":"YulTypedName","src":"14381:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14392:4:101","nodeType":"YulTypedName","src":"14392:4:101","type":""}],"src":"14220:398:101"}]},"contents":"{\n    { }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        value1 := add(_1, 32)\n        value2 := length\n    }\n    function abi_encode_uint40(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffff))\n    }\n    function abi_encode_struct_PolicyData(value, pos)\n    {\n        mstore(pos, mload(value))\n        mstore(add(pos, 0x20), mload(add(value, 0x20)))\n        mstore(add(pos, 0x40), mload(add(value, 0x40)))\n        mstore(add(pos, 0x60), mload(add(value, 0x60)))\n        mstore(add(pos, 0x80), mload(add(value, 0x80)))\n        mstore(add(pos, 0xa0), mload(add(value, 0xa0)))\n        mstore(add(pos, 0xc0), mload(add(value, 0xc0)))\n        mstore(add(pos, 0xe0), mload(add(value, 0xe0)))\n        mstore(add(pos, 0x0100), mload(add(value, 0x0100)))\n        mstore(add(pos, 0x0120), mload(add(value, 0x0120)))\n        let memberValue0 := mload(add(value, 0x0140))\n        abi_encode_uint40(memberValue0, add(pos, 0x0140))\n        let memberValue0_1 := mload(add(value, 0x0160))\n        abi_encode_uint40(memberValue0_1, add(pos, 0x0160))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 480)\n        abi_encode_struct_PolicyData(value0, headStart)\n        mstore(add(headStart, 384), value1)\n        mstore(add(headStart, 416), value2)\n        mstore(add(headStart, 448), value3)\n    }\n    function abi_encode_struct_Params(value, pos)\n    {\n        mstore(pos, mload(value))\n        mstore(add(pos, 0x20), mload(add(value, 0x20)))\n        mstore(add(pos, 0x40), mload(add(value, 0x40)))\n        mstore(add(pos, 0x60), mload(add(value, 0x60)))\n        mstore(add(pos, 0x80), mload(add(value, 0x80)))\n        mstore(add(pos, 0xa0), mload(add(value, 0xa0)))\n        mstore(add(pos, 0xc0), mload(add(value, 0xc0)))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__fromStack_reversed(headStart, value6, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 768)\n        abi_encode_struct_PolicyData(value0, headStart)\n        mstore(add(headStart, 384), value1)\n        mstore(add(headStart, 416), value2)\n        mstore(add(headStart, 448), value3)\n        mstore(add(headStart, 480), and(value4, 0xffffffffff))\n        mstore(add(headStart, 512), and(value5, 0xffffffffffffffffffffffff))\n        abi_encode_struct_Params(value6, add(headStart, 544))\n    }\n    function abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__to_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 384)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), and(value3, 0xffffffffff))\n        mstore(add(headStart, 128), and(value4, 0xffffffffffffffffffffffff))\n        abi_encode_struct_Params(value5, add(headStart, 160))\n    }\n    function calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n    {\n        if gt(startIndex, endIndex) { revert(0, 0) }\n        if gt(endIndex, length) { revert(0, 0) }\n        offsetOut := add(offset, startIndex)\n        lengthOut := sub(endIndex, startIndex)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function allocate_memory() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0180)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_uint40(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_struct_PolicyData(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0x0180) { revert(0, 0) }\n        value := allocate_memory()\n        let value_1 := 0\n        value_1 := calldataload(headStart)\n        mstore(value, value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 32))\n        mstore(add(value, 32), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 64))\n        mstore(add(value, 64), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 96))\n        mstore(add(value, 96), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(add(value, 128), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 160))\n        mstore(add(value, 160), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(value, 192), value_7)\n        let value_8 := 0\n        value_8 := calldataload(add(headStart, 224))\n        mstore(add(value, 224), value_8)\n        let value_9 := 0\n        value_9 := calldataload(add(headStart, 256))\n        mstore(add(value, 256), value_9)\n        let value_10 := 0\n        value_10 := calldataload(add(headStart, 288))\n        mstore(add(value, 288), value_10)\n        mstore(add(value, 320), abi_decode_uint40(add(headStart, 320)))\n        mstore(add(value, 352), abi_decode_uint40(add(headStart, 352)))\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 480) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData(headStart, dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 416))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 448))\n        value3 := value_2\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function abi_decode_struct_Params(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0xe0) { revert(0, 0) }\n        let memPtr := 0\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xe0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n        value := memPtr\n        let value_1 := 0\n        value_1 := calldataload(headStart)\n        mstore(memPtr, value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 32))\n        mstore(add(memPtr, 32), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 64))\n        mstore(add(memPtr, 64), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 96))\n        mstore(add(memPtr, 96), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(add(memPtr, 128), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 160))\n        mstore(add(memPtr, 160), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(memPtr, 192), value_7)\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint256t_struct$_Params_$22230_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 768) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData(headStart, dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 416))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 448))\n        value3 := value_2\n        value4 := abi_decode_uint40(add(headStart, 480))\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 512))\n        value5 := value_3\n        value6 := abi_decode_struct_Params(add(headStart, 544), dataEnd)\n    }\n    function abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint256t_struct$_Params_$22230_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 384) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        value3 := abi_decode_uint40(add(headStart, 96))\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 128))\n        value4 := value_3\n        value5 := abi_decode_struct_Params(add(headStart, 160), dataEnd)\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_decode_tuple_t_contract$_IAccessManager_$6119_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, shl(224, 0xffffffff)))\n    }\n    function abi_decode_tuple_t_boolt_uint32_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        if iszero(eq(value_1, and(value_1, 0xffffffff))) { revert(0, 0) }\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_address_t_bytes4__to_t_address_t_bytes4__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, shl(224, 0xffffffff)))\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        product := mul(x, y)\n        if iszero(or(iszero(x), eq(y, div(product, x)))) { panic_error_0x11() }\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := div(x, y)\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := mod(x, y)\n    }\n    function abi_encode_bytes(value, pos) -> end\n    {\n        let length := mload(value)\n        mcopy(pos, add(value, 0x20), length)\n        let _1 := add(pos, length)\n        mstore(_1, 0)\n        end := _1\n    }\n    function abi_encode_tuple_packed_t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4_t_bytes_memory_ptr_t_bytes_memory_ptr__to_t_bytes26_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        mstore(pos, 0x19457468657265756d205369676e6564204d6573736167653a0a000000000000)\n        end := abi_encode_bytes(value1, abi_encode_bytes(value0, add(pos, 26)))\n    }\n    function checked_sub_t_uint40(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffffff), and(y, 0xffffffffff))\n        if gt(diff, 0xffffffffff) { panic_error_0x11() }\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b506004361061003f575f3560e01c806332f857fa146100435780639ba942d61461006f578063ba097a2a14610095575b5f5ffd5b610056610051366004610a6a565b6100ba565b6040516100669493929190610b86565b60405180910390f35b61008261007d366004610a6a565b610197565b6040516100669796959493929190610bf7565b6100a86100a3366004610a6a565b6102bd565b60405161006696959493929190610c58565b6100c26109f0565b5f5f5f6100f48787876101e07fe1cc1aa1166fa42e3a9bf6f2e810db30f295c27e6aeef2638722d3726d7515706103a9565b6101026101e05f8789610ca7565b81019061010f9190610dd8565b83519397509195509350915060601c6001600160a01b0388161461014657604051634b4bde0960e11b815260040160405180910390fd5b5f19820361016a57610157846105b2565b8461010001516101679190610e27565b91505b5f19810361018e5761017b846105fb565b84610120015161018b9190610e27565b90505b93509350935093565b61019f6109f0565b5f5f5f5f5f6101dd6040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b6102158a8a8a6101ef61018080610e3a565b7fb8bf8abee956c23073a3f628100e45da0cf4d7ca1e953d176e06c48753d2863e6103a9565b5f89818a61022561018080610e3a565b9261023293929190610ca7565b81019061023f9190610ed8565b959d50939b509199509750955090925090506001600160a01b038b166102658260601c90565b6001600160a01b03161480156102875750875160601c6001600160a01b038c16145b6102a457604051634b4bde0960e11b815260040160405180910390fd5b6102ad81610634565b9250509397509397509397909450565b5f5f5f5f5f6102fb6040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b61032a8989896101807f4568705da1639073be69afeb2376d89cef780c68efd064ab4c2e8049be434a186103a9565b5f610339610180828a8c610ca7565b8101906103469190610f46565b949b50929950909750955090925090506001600160a01b038a1661036a8260601c90565b6001600160a01b03161461039157604051634b4bde0960e11b815260040160405180910390fd5b61039a81610634565b92505093975093979195509350565b826103b5604184610e3a565b81146103ee57806103c7604185610e3a565b604051632c28914160e11b8152600481019290925260248201526044015b60405180910390fd5b5f6104376103fe8583888a610ca7565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061064392505050565b90505f6104838261044a85888a8c610ca7565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061067d92505050565b90505f886001600160a01b0316633a7b7a396040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104c2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104e69190610f9c565b60405163b700961360e01b81526001600160a01b0384811660048301528b811660248301526001600160e01b031988166044830152919091169063b7009613906064016040805180830381865afa158015610543573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105679190610fbe565b5090508185826105a5576040516344b0689760e01b81526001600160a01b0390921660048301526001600160e01b03191660248201526044016103e5565b5050505050505050505050565b5f6105bc826106a5565b64ffffffffff1682610140015164ffffffffff16426105db9190610e27565b8361010001516105eb9190611002565b6105f5919061102d565b92915050565b5f610605826106a5565b64ffffffffff1682610140015164ffffffffff16426106249190610e27565b8361012001516105eb9190611002565b5f6105f5600160601b83611040565b5f61064e82516106bc565b8260405160200161066092919061106a565b604051602081830303815290604052805190602001209050919050565b5f5f5f5f61068b868661074c565b92509250925061069b8282610795565b5090949350505050565b5f8161014001518261016001516105f591906110ac565b60605f6106c883610851565b60010190505f8167ffffffffffffffff8111156106e7576106e7610cce565b6040519080825280601f01601f191660200182016040528015610711576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461071b57509392505050565b5f5f5f8351604103610783576020840151604085015160608601515f1a61077588828585610928565b95509550955050505061078e565b505081515f91506002905b9250925092565b5f8260038111156107a8576107a86110c9565b036107b1575050565b60018260038111156107c5576107c56110c9565b036107e35760405163f645eedf60e01b815260040160405180910390fd5b60028260038111156107f7576107f76110c9565b036108185760405163fce698f760e01b8152600481018290526024016103e5565b600382600381111561082c5761082c6110c9565b0361084d576040516335e2f38360e21b8152600481018290526024016103e5565b5050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061088f5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106108bb576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106108d957662386f26fc10000830492506010015b6305f5e10083106108f1576305f5e100830492506008015b612710831061090557612710830492506004015b60648310610917576064830492506002015b600a83106105f55760010192915050565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084111561096157505f915060039050826109e6565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa1580156109b2573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b0381166109dd57505f9250600191508290506109e6565b92505f91508190505b9450945094915050565b6040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b6001600160a01b0381168114610a67575f5ffd5b50565b5f5f5f60408486031215610a7c575f5ffd5b8335610a8781610a53565b9250602084013567ffffffffffffffff811115610aa2575f5ffd5b8401601f81018613610ab2575f5ffd5b803567ffffffffffffffff811115610ac8575f5ffd5b866020828401011115610ad9575f5ffd5b939660209190910195509293505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e0830152610100810151610100830152610120810151610120830152610140810151610b6661014084018264ffffffffff169052565b50610160810151610b8161016084018264ffffffffff169052565b505050565b6101e08101610b958287610aea565b84610180830152836101a0830152826101c083015295945050505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c08301525050565b6103008101610c06828a610aea565b87610180830152866101a0830152856101c083015264ffffffffff85166101e08301526bffffffffffffffffffffffff8416610200830152610c4c610220830184610bb3565b98975050505050505050565b868152602081018690526040810185905264ffffffffff841660608201526bffffffffffffffffffffffff831660808201526101808101610c9c60a0830184610bb3565b979650505050505050565b5f5f85851115610cb5575f5ffd5b83861115610cc1575f5ffd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b604051610180810167ffffffffffffffff81118282101715610d1257634e487b7160e01b5f52604160045260245ffd5b60405290565b803564ffffffffff81168114610d2c575f5ffd5b919050565b5f6101808284031215610d42575f5ffd5b610d4a610ce2565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e08084013590820152610100808401359082015261012080840135908201529050610db96101408301610d18565b610140820152610dcc6101608301610d18565b61016082015292915050565b5f5f5f5f6101e08587031215610dec575f5ffd5b610df68686610d31565b9661018086013596506101a0860135956101c00135945092505050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156105f5576105f5610e13565b808201808211156105f5576105f5610e13565b5f60e08284031215610e5d575f5ffd5b60405160e0810167ffffffffffffffff81118282101715610e8c57634e487b7160e01b5f52604160045260245ffd5b604090815283358252602080850135908301528381013590820152606080840135908201526080808401359082015260a0808401359082015260c0928301359281019290925250919050565b5f5f5f5f5f5f5f610300888a031215610eef575f5ffd5b610ef98989610d31565b965061018088013595506101a088013594506101c08801359350610f206101e08901610d18565b92506102008801359150610f38896102208a01610e4d565b905092959891949750929550565b5f5f5f5f5f5f6101808789031215610f5c575f5ffd5b863595506020870135945060408701359350610f7a60608801610d18565b925060808701359150610f908860a08901610e4d565b90509295509295509295565b5f60208284031215610fac575f5ffd5b8151610fb781610a53565b9392505050565b5f5f60408385031215610fcf575f5ffd5b82518015158114610fde575f5ffd5b602084015190925063ffffffff81168114610ff7575f5ffd5b809150509250929050565b80820281158282048414176105f5576105f5610e13565b634e487b7160e01b5f52601260045260245ffd5b5f8261103b5761103b611019565b500490565b5f8261104e5761104e611019565b500690565b5f81518060208401855e5f93019283525090919050565b7f19457468657265756d205369676e6564204d6573736167653a0a00000000000081525f6110a461109e601a840186611053565b84611053565b949350505050565b64ffffffffff82811682821603908111156105f5576105f5610e13565b634e487b7160e01b5f52602160045260245ffdfea264697066735822122075397f8810c513eb81847527721f73f4c79f361c85549cfb2515a72ed8be3cdd64736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x3F JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x32F857FA EQ PUSH2 0x43 JUMPI DUP1 PUSH4 0x9BA942D6 EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0xBA097A2A EQ PUSH2 0x95 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x56 PUSH2 0x51 CALLDATASIZE PUSH1 0x4 PUSH2 0xA6A JUMP JUMPDEST PUSH2 0xBA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xB86 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x82 PUSH2 0x7D CALLDATASIZE PUSH1 0x4 PUSH2 0xA6A JUMP JUMPDEST PUSH2 0x197 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xBF7 JUMP JUMPDEST PUSH2 0xA8 PUSH2 0xA3 CALLDATASIZE PUSH1 0x4 PUSH2 0xA6A JUMP JUMPDEST PUSH2 0x2BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xC58 JUMP JUMPDEST PUSH2 0xC2 PUSH2 0x9F0 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0xF4 DUP8 DUP8 DUP8 PUSH2 0x1E0 PUSH32 0xE1CC1AA1166FA42E3A9BF6F2E810DB30F295C27E6AEEF2638722D3726D751570 PUSH2 0x3A9 JUMP JUMPDEST PUSH2 0x102 PUSH2 0x1E0 PUSH0 DUP8 DUP10 PUSH2 0xCA7 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x10F SWAP2 SWAP1 PUSH2 0xDD8 JUMP JUMPDEST DUP4 MLOAD SWAP4 SWAP8 POP SWAP2 SWAP6 POP SWAP4 POP SWAP2 POP PUSH1 0x60 SHR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND EQ PUSH2 0x146 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B4BDE09 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 NOT DUP3 SUB PUSH2 0x16A JUMPI PUSH2 0x157 DUP5 PUSH2 0x5B2 JUMP JUMPDEST DUP5 PUSH2 0x100 ADD MLOAD PUSH2 0x167 SWAP2 SWAP1 PUSH2 0xE27 JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x18E JUMPI PUSH2 0x17B DUP5 PUSH2 0x5FB JUMP JUMPDEST DUP5 PUSH2 0x120 ADD MLOAD PUSH2 0x18B SWAP2 SWAP1 PUSH2 0xE27 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 POP SWAP4 JUMP JUMPDEST PUSH2 0x19F PUSH2 0x9F0 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1DD PUSH1 0x40 MLOAD DUP1 PUSH1 0xE0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0x215 DUP11 DUP11 DUP11 PUSH2 0x1EF PUSH2 0x180 DUP1 PUSH2 0xE3A JUMP JUMPDEST PUSH32 0xB8BF8ABEE956C23073A3F628100E45DA0CF4D7CA1E953D176E06C48753D2863E PUSH2 0x3A9 JUMP JUMPDEST PUSH0 DUP10 DUP2 DUP11 PUSH2 0x225 PUSH2 0x180 DUP1 PUSH2 0xE3A JUMP JUMPDEST SWAP3 PUSH2 0x232 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xCA7 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x23F SWAP2 SWAP1 PUSH2 0xED8 JUMP JUMPDEST SWAP6 SWAP14 POP SWAP4 SWAP12 POP SWAP2 SWAP10 POP SWAP8 POP SWAP6 POP SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND PUSH2 0x265 DUP3 PUSH1 0x60 SHR SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 ISZERO PUSH2 0x287 JUMPI POP DUP8 MLOAD PUSH1 0x60 SHR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND EQ JUMPDEST PUSH2 0x2A4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B4BDE09 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2AD DUP2 PUSH2 0x634 JUMP JUMPDEST SWAP3 POP POP SWAP4 SWAP8 POP SWAP4 SWAP8 POP SWAP4 SWAP8 SWAP1 SWAP5 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x2FB PUSH1 0x40 MLOAD DUP1 PUSH1 0xE0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0x32A DUP10 DUP10 DUP10 PUSH2 0x180 PUSH32 0x4568705DA1639073BE69AFEB2376D89CEF780C68EFD064AB4C2E8049BE434A18 PUSH2 0x3A9 JUMP JUMPDEST PUSH0 PUSH2 0x339 PUSH2 0x180 DUP3 DUP11 DUP13 PUSH2 0xCA7 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x346 SWAP2 SWAP1 PUSH2 0xF46 JUMP JUMPDEST SWAP5 SWAP12 POP SWAP3 SWAP10 POP SWAP1 SWAP8 POP SWAP6 POP SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND PUSH2 0x36A DUP3 PUSH1 0x60 SHR SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x391 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B4BDE09 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x39A DUP2 PUSH2 0x634 JUMP JUMPDEST SWAP3 POP POP SWAP4 SWAP8 POP SWAP4 SWAP8 SWAP2 SWAP6 POP SWAP4 POP JUMP JUMPDEST DUP3 PUSH2 0x3B5 PUSH1 0x41 DUP5 PUSH2 0xE3A JUMP JUMPDEST DUP2 EQ PUSH2 0x3EE JUMPI DUP1 PUSH2 0x3C7 PUSH1 0x41 DUP6 PUSH2 0xE3A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2C289141 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x437 PUSH2 0x3FE DUP6 DUP4 DUP9 DUP11 PUSH2 0xCA7 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x643 SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x483 DUP3 PUSH2 0x44A DUP6 DUP9 DUP11 DUP13 PUSH2 0xCA7 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x67D SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH0 DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3A7B7A39 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x4C2 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x4E6 SWAP2 SWAP1 PUSH2 0xF9C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xB7009613 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP12 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP9 AND PUSH1 0x44 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xB7009613 SWAP1 PUSH1 0x64 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x543 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x567 SWAP2 SWAP1 PUSH2 0xFBE JUMP JUMPDEST POP SWAP1 POP DUP2 DUP6 DUP3 PUSH2 0x5A5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x44B06897 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3E5 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x5BC DUP3 PUSH2 0x6A5 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x5DB SWAP2 SWAP1 PUSH2 0xE27 JUMP JUMPDEST DUP4 PUSH2 0x100 ADD MLOAD PUSH2 0x5EB SWAP2 SWAP1 PUSH2 0x1002 JUMP JUMPDEST PUSH2 0x5F5 SWAP2 SWAP1 PUSH2 0x102D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x605 DUP3 PUSH2 0x6A5 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x624 SWAP2 SWAP1 PUSH2 0xE27 JUMP JUMPDEST DUP4 PUSH2 0x120 ADD MLOAD PUSH2 0x5EB SWAP2 SWAP1 PUSH2 0x1002 JUMP JUMPDEST PUSH0 PUSH2 0x5F5 PUSH1 0x1 PUSH1 0x60 SHL DUP4 PUSH2 0x1040 JUMP JUMPDEST PUSH0 PUSH2 0x64E DUP3 MLOAD PUSH2 0x6BC JUMP JUMPDEST DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x660 SWAP3 SWAP2 SWAP1 PUSH2 0x106A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x68B DUP7 DUP7 PUSH2 0x74C JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x69B DUP3 DUP3 PUSH2 0x795 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x140 ADD MLOAD DUP3 PUSH2 0x160 ADD MLOAD PUSH2 0x5F5 SWAP2 SWAP1 PUSH2 0x10AC JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x6C8 DUP4 PUSH2 0x851 JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x6E7 JUMPI PUSH2 0x6E7 PUSH2 0xCCE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x711 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH2 0x71B JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x41 SUB PUSH2 0x783 JUMPI PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH0 BYTE PUSH2 0x775 DUP9 DUP3 DUP6 DUP6 PUSH2 0x928 JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP PUSH2 0x78E JUMP JUMPDEST POP POP DUP2 MLOAD PUSH0 SWAP2 POP PUSH1 0x2 SWAP1 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x7A8 JUMPI PUSH2 0x7A8 PUSH2 0x10C9 JUMP JUMPDEST SUB PUSH2 0x7B1 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x7C5 JUMPI PUSH2 0x7C5 PUSH2 0x10C9 JUMP JUMPDEST SUB PUSH2 0x7E3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x7F7 JUMPI PUSH2 0x7F7 PUSH2 0x10C9 JUMP JUMPDEST SUB PUSH2 0x818 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x3E5 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x82C JUMPI PUSH2 0x82C PUSH2 0x10C9 JUMP JUMPDEST SUB PUSH2 0x84D JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x3E5 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 LT PUSH2 0x88F JUMPI PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x8BB JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x8D9 JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x8F1 JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x905 JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x917 JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x5F5 JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0x961 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x9E6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x9B2 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x9DD JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x9E6 JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xA67 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xA7C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0xA87 DUP2 PUSH2 0xA53 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAA2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0xAB2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAC8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0xAD9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 POP SWAP3 SWAP4 POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0xB66 PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP2 ADD MLOAD PUSH2 0xB81 PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0xB95 DUP3 DUP8 PUSH2 0xAEA JUMP JUMPDEST DUP5 PUSH2 0x180 DUP4 ADD MSTORE DUP4 PUSH2 0x1A0 DUP4 ADD MSTORE DUP3 PUSH2 0x1C0 DUP4 ADD MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0xC06 DUP3 DUP11 PUSH2 0xAEA JUMP JUMPDEST DUP8 PUSH2 0x180 DUP4 ADD MSTORE DUP7 PUSH2 0x1A0 DUP4 ADD MSTORE DUP6 PUSH2 0x1C0 DUP4 ADD MSTORE PUSH5 0xFFFFFFFFFF DUP6 AND PUSH2 0x1E0 DUP4 ADD MSTORE PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND PUSH2 0x200 DUP4 ADD MSTORE PUSH2 0xC4C PUSH2 0x220 DUP4 ADD DUP5 PUSH2 0xBB3 JUMP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x40 DUP2 ADD DUP6 SWAP1 MSTORE PUSH5 0xFFFFFFFFFF DUP5 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP4 AND PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x180 DUP2 ADD PUSH2 0xC9C PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0xBB3 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0xCB5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0xCC1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xD12 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xD2C JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD42 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xD4A PUSH2 0xCE2 JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0xDB9 PUSH2 0x140 DUP4 ADD PUSH2 0xD18 JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0xDCC PUSH2 0x160 DUP4 ADD PUSH2 0xD18 JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xDEC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xDF6 DUP7 DUP7 PUSH2 0xD31 JUMP JUMPDEST SWAP7 PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP7 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP6 PUSH2 0x1C0 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x5F5 JUMPI PUSH2 0x5F5 PUSH2 0xE13 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x5F5 JUMPI PUSH2 0x5F5 PUSH2 0xE13 JUMP JUMPDEST PUSH0 PUSH1 0xE0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE5D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xE8C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 SWAP1 DUP2 MSTORE DUP4 CALLDATALOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP6 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE DUP4 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 SWAP3 DUP4 ADD CALLDATALOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x300 DUP9 DUP11 SUB SLT ISZERO PUSH2 0xEEF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xEF9 DUP10 DUP10 PUSH2 0xD31 JUMP JUMPDEST SWAP7 POP PUSH2 0x180 DUP9 ADD CALLDATALOAD SWAP6 POP PUSH2 0x1A0 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH2 0x1C0 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0xF20 PUSH2 0x1E0 DUP10 ADD PUSH2 0xD18 JUMP JUMPDEST SWAP3 POP PUSH2 0x200 DUP9 ADD CALLDATALOAD SWAP2 POP PUSH2 0xF38 DUP10 PUSH2 0x220 DUP11 ADD PUSH2 0xE4D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x180 DUP8 DUP10 SUB SLT ISZERO PUSH2 0xF5C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0xF7A PUSH1 0x60 DUP9 ADD PUSH2 0xD18 JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD SWAP2 POP PUSH2 0xF90 DUP9 PUSH1 0xA0 DUP10 ADD PUSH2 0xE4D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFAC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xFB7 DUP2 PUSH2 0xA53 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFCF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xFDE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xFF7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x5F5 JUMPI PUSH2 0x5F5 PUSH2 0xE13 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH2 0x103B JUMPI PUSH2 0x103B PUSH2 0x1019 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x104E JUMPI PUSH2 0x104E PUSH2 0x1019 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 PUSH1 0x20 DUP5 ADD DUP6 MCOPY PUSH0 SWAP4 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x19457468657265756D205369676E6564204D6573736167653A0A000000000000 DUP2 MSTORE PUSH0 PUSH2 0x10A4 PUSH2 0x109E PUSH1 0x1A DUP5 ADD DUP7 PUSH2 0x1053 JUMP JUMPDEST DUP5 PUSH2 0x1053 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x5F5 JUMPI PUSH2 0x5F5 PUSH2 0xE13 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH22 0x397F8810C513EB81847527721F73F4C79F361C85549C EXTSTATICCALL 0x25 ISZERO 0xA7 0x2E 0xD8 0xBE EXTCODECOPY 0xDD PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"722:5887:99:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5741:866;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;4835:871;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;:::i;4087:713::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;:::i;5741:866::-;5879:39;;:::i;:::-;5926:25;5959:19;5986;6020:81;6036:2;6040:9;;1332:29;1060:37;6020:15;:81::i;:::-;6189:36;1332:29;6199:1;6189:9;;:36;:::i;:::-;6171:114;;;;;;;:::i;:::-;6324:17;;;;-1:-1:-1;6107:178:99;;-1:-1:-1;6107:178:99;-1:-1:-1;6107:178:99;-1:-1:-1;11057:2:71;11045:14;-1:-1:-1;;;;;6299:49:99;;;6291:81;;;;-1:-1:-1;;;6291:81:99;;;;;;;;;;;;-1:-1:-1;;6382:11:99;:32;6378:109;;6453:34;:14;:32;:34::i;:::-;6430:14;:20;;;:57;;;;:::i;:::-;6416:71;;6378:109;-1:-1:-1;;6497:11:99;:32;6493:109;;6568:34;:14;:32;:34::i;:::-;6545:14;:20;;;:57;;;;:::i;:::-;6531:71;;6493:109;5741:866;;;;;;;:::o;4835:871::-;4972:34;;:::i;:::-;5014:14;5036:15;5059:16;5083:17;5108;5133:27;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5133:27:99;5175:83;5191:2;5195:9;;1234:30;1150:15;;1234:30;:::i;:::-;958:38;5175:15;:83::i;:::-;5264:16;5375:9;5264:16;5375:9;1234:30;1150:15;;1234:30;:::i;:::-;5375:37;;;;;;;:::i;:::-;5357:147;;;;;;;:::i;:::-;5286:218;;-1:-1:-1;5286:218:99;;-1:-1:-1;5286:218:99;;-1:-1:-1;5286:218:99;-1:-1:-1;5286:218:99;-1:-1:-1;5286:218:99;;-1:-1:-1;5286:218:99;-1:-1:-1;;;;;;5525:40:99;;:34;5286:218;11057:2:71;11045:14;;10939:127;5525:34:99;-1:-1:-1;;;;;5525:40:99;;:88;;;;-1:-1:-1;5594:12:99;;11057:2:71;11045:14;-1:-1:-1;;;;;5569:44:99;;;5525:88;5510:138;;;;-1:-1:-1;;;5510:138:99;;;;;;;;;;;;5667:34;5692:8;5667:24;:34::i;:::-;5654:47;;5169:537;4835:871;;;;;;;;;;;:::o;4087:713::-;4216:14;4238:15;4261:16;4285:17;4310;4335:27;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4335:27:99;4377:75;4393:2;4397:9;;1150:15;859:34;4377:15;:75::i;:::-;4458:16;4558:33;1150:15;4458:16;4558:9;;:33;:::i;:::-;4540:124;;;;;;;:::i;:::-;4480:184;;-1:-1:-1;4480:184:99;;-1:-1:-1;4480:184:99;;-1:-1:-1;4480:184:99;-1:-1:-1;4480:184:99;;-1:-1:-1;4480:184:99;-1:-1:-1;;;;;;4678:40:99;;:34;4480:184;11057:2:71;11045:14;;10939:127;4678:34:99;-1:-1:-1;;;;;4678:40:99;;4670:72;;;;-1:-1:-1;;;4670:72:99;;;;;;;;;;;;4761:34;4786:8;4761:24;:34::i;:::-;4748:47;;4371:429;4087:713;;;;;;;;;;:::o;3333:719::-;3498:9;3540:26;1407:2;3540:9;:26;:::i;:::-;3524:11;:43;3520:113;;3593:11;3606:26;1407:2;3606:9;:26;:::i;:::-;3576:57;;-1:-1:-1;;;3576:57:99;;;;;10816:25:101;;;;10857:18;;;10850:34;10789:18;;3576:57:99;;;;;;;;3520:113;3662:17;3682:63;3722:22;3734:9;3662:17;3722:9;;:22;:::i;:::-;3682:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3682:39:99;;-1:-1:-1;;;3682:63:99:i;:::-;3662:83;-1:-1:-1;3751:14:99;3768:58;3662:83;3793:32;3813:11;3803:9;3793;;:32;:::i;:::-;3768:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3768:13:99;;-1:-1:-1;;;3768:58:99:i;:::-;3751:75;;3879:14;3926:2;-1:-1:-1;;;;;3899:46:99;;:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:82;;-1:-1:-1;;;3899:82:99;;-1:-1:-1;;;;;11392:32:101;;;3899:82:99;;;11374:51:101;11461:32;;;11441:18;;;11434:60;-1:-1:-1;;;;;;11530:33:101;;11510:18;;;11503:61;3899:56:99;;;;;;;11347:18:101;;3899:82:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;3878:103:99;-1:-1:-1;4025:6:99;4033:12;3878:103;3987:60;;;;-1:-1:-1;;;3987:60:99;;-1:-1:-1;;;;;12212:32:101;;;3987:60:99;;;12194:51:101;-1:-1:-1;;;;;;12281:33:101;12261:18;;;12254:61;12167:18;;3987:60:99;12022:299:101;3987:60:99;;;3450:602;;;;3333:719;;;;;:::o;9199:171:71:-;9275:7;9349:16;9358:6;9349:8;:16::i;:::-;9297:68;;9332:6;:12;;;9314:30;;:15;:30;;;;:::i;:::-;9298:6;:12;;;:47;;;;:::i;:::-;9297:68;;;;:::i;:::-;9290:75;9199:171;-1:-1:-1;;9199:171:71:o;10226:::-;10302:7;10376:16;10385:6;10376:8;:16::i;:::-;10324:68;;10359:6;:12;;;10341:30;;:15;:30;;;;:::i;:::-;10325:6;:12;;;:47;;;;:::i;11139:122::-;11207:6;11235:20;-1:-1:-1;;;11235:8:71;:20;:::i;2171:229:60:-;2248:7;2349:32;2366:7;:14;2349:16;:32::i;:::-;2384:7;2296:96;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2286:107;;;;;;2267:126;;2171:229;;;:::o;5290:255:57:-;5368:7;5388:17;5407:18;5427:16;5447:27;5458:4;5464:9;5447:10;:27::i;:::-;5387:87;;;;;;5484:28;5496:5;5503:8;5484:11;:28::i;:::-;-1:-1:-1;5529:9:57;;5290:255;-1:-1:-1;;;;5290:255:57:o;10461:125:71:-;10528:6;10569;:12;;;10549:6;:17;;;:32;;;;:::i;1343:634:56:-;1399:13;1448:14;1465:17;1476:5;1465:10;:17::i;:::-;1485:1;1465:21;1448:38;;1500:20;1534:6;1523:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1523:18:56;-1:-1:-1;1500:41:56;-1:-1:-1;1630:30:56;;;1646:4;1630:30;1687:247;-1:-1:-1;;1718:5:56;-1:-1:-1;;;1817:2:56;1806:14;;1801:32;1718:5;1788:46;1878:2;1869:11;;;-1:-1:-1;1898:21:56;1687:247;1898:21;-1:-1:-1;1954:6:56;1343:634;-1:-1:-1;;;1343:634:56:o;2433:778:57:-;2536:17;2555:16;2573:14;2603:9;:16;2623:2;2603:22;2599:606;;2908:4;2893:20;;2887:27;2957:4;2942:20;;2936:27;3014:4;2999:20;;2993:27;2641:9;2985:36;3055:25;3066:4;2985:36;2887:27;2936;3055:10;:25::i;:::-;3048:32;;;;;;;;;;;2599:606;-1:-1:-1;;3176:16:57;;3127:1;;-1:-1:-1;3131:35:57;;2599:606;2433:778;;;;;:::o;11630:532::-;11725:20;11716:5;:29;;;;;;;;:::i;:::-;;11712:444;;11630:532;;:::o;11712:444::-;11821:29;11812:5;:38;;;;;;;;:::i;:::-;;11808:348;;11873:23;;-1:-1:-1;;;11873:23:57;;;;;;;;;;;11808:348;11926:35;11917:5;:44;;;;;;;;:::i;:::-;;11913:243;;11984:46;;-1:-1:-1;;;11984:46:57;;;;;14002:25:101;;;13975:18;;11984:46:57;13856:177:101;11913:243:57;12060:30;12051:5;:39;;;;;;;;:::i;:::-;;12047:109;;12113:32;;-1:-1:-1;;;12113:32:57;;;;;14002:25:101;;;13975:18;;12113:32:57;13856:177:101;12047:109:57;11630:532;;:::o;29170:916:63:-;29223:7;;-1:-1:-1;;;29298:17:63;;29294:103;;-1:-1:-1;;;29335:17:63;;;-1:-1:-1;29380:2:63;29370:12;29294:103;29423:8;29414:5;:17;29410:103;;29460:8;29451:17;;;-1:-1:-1;29496:2:63;29486:12;29410:103;29539:8;29530:5;:17;29526:103;;29576:8;29567:17;;;-1:-1:-1;29612:2:63;29602:12;29526:103;29655:7;29646:5;:16;29642:100;;29691:7;29682:16;;;-1:-1:-1;29726:1:63;29716:11;29642:100;29768:7;29759:5;:16;29755:100;;29804:7;29795:16;;;-1:-1:-1;29839:1:63;29829:11;29755:100;29881:7;29872:5;:16;29868:100;;29917:7;29908:16;;;-1:-1:-1;29952:1:63;29942:11;29868:100;29994:7;29985:5;:16;29981:66;;30031:1;30021:11;30073:6;29170:916;-1:-1:-1;;29170:916:63:o;7142:1551:57:-;7268:17;;;8222:66;8209:79;;8205:164;;;-1:-1:-1;8320:1:57;;-1:-1:-1;8324:30:57;;-1:-1:-1;8356:1:57;8304:54;;8205:164;8480:24;;;8463:14;8480:24;;;;;;;;;14447:25:101;;;14520:4;14508:17;;14488:18;;;14481:45;;;;14542:18;;;14535:34;;;14585:18;;;14578:34;;;8480:24:57;;14419:19:101;;8480:24:57;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8480:24:57;;-1:-1:-1;;8480:24:57;;;-1:-1:-1;;;;;;;8518:20:57;;8514:113;;-1:-1:-1;8570:1:57;;-1:-1:-1;8574:29:57;;-1:-1:-1;8570:1:57;;-1:-1:-1;8554:62:57;;8514:113;8645:6;-1:-1:-1;8653:20:57;;-1:-1:-1;8653:20:57;;-1:-1:-1;7142:1551:57;;;;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:131:101:-;-1:-1:-1;;;;;89:31:101;;79:42;;69:70;;135:1;132;125:12;69:70;14:131;:::o;150:721::-;229:6;237;245;298:2;286:9;277:7;273:23;269:32;266:52;;;314:1;311;304:12;266:52;353:9;340:23;372:31;397:5;372:31;:::i;:::-;422:5;-1:-1:-1;478:2:101;463:18;;450:32;505:18;494:30;;491:50;;;537:1;534;527:12;491:50;560:22;;613:4;605:13;;601:27;-1:-1:-1;591:55:101;;642:1;639;632:12;591:55;682:2;669:16;708:18;700:6;697:30;694:50;;;740:1;737;730:12;694:50;785:7;780:2;771:6;767:2;763:15;759:24;756:37;753:57;;;806:1;803;796:12;753:57;150:721;;837:2;829:11;;;;;-1:-1:-1;859:6:101;;-1:-1:-1;;;150:721:101:o;977:835::-;1059:5;1053:12;1048:3;1041:25;1115:4;1108:5;1104:16;1098:23;1091:4;1086:3;1082:14;1075:47;1171:4;1164:5;1160:16;1154:23;1147:4;1142:3;1138:14;1131:47;1227:4;1220:5;1216:16;1210:23;1203:4;1198:3;1194:14;1187:47;1283:4;1276:5;1272:16;1266:23;1259:4;1254:3;1250:14;1243:47;1339:4;1332:5;1328:16;1322:23;1315:4;1310:3;1306:14;1299:47;1395:4;1388:5;1384:16;1378:23;1371:4;1366:3;1362:14;1355:47;1451:4;1444:5;1440:16;1434:23;1427:4;1422:3;1418:14;1411:47;1509:6;1502:5;1498:18;1492:25;1483:6;1478:3;1474:16;1467:51;1569:6;1562:5;1558:18;1552:25;1543:6;1538:3;1534:16;1527:51;1624:6;1617:5;1613:18;1607:25;1641:49;1682:6;1677:3;1673:16;1659:12;952;941:24;929:37;;876:96;1641:49;;1738:6;1731:5;1727:18;1721:25;1755:51;1798:6;1793:3;1789:16;1773:14;952:12;941:24;929:37;;876:96;1755:51;;977:835;;:::o;1817:474::-;2093:3;2078:19;;2106:47;2082:9;2135:6;2106:47;:::i;:::-;2190:6;2184:3;2173:9;2169:19;2162:35;2234:6;2228:3;2217:9;2213:19;2206:35;2278:6;2272:3;2261:9;2257:19;2250:35;1817:474;;;;;;;:::o;2296:427::-;2374:5;2368:12;2363:3;2356:25;2430:4;2423:5;2419:16;2413:23;2406:4;2401:3;2397:14;2390:47;2486:4;2479:5;2475:16;2469:23;2462:4;2457:3;2453:14;2446:47;2542:4;2535:5;2531:16;2525:23;2518:4;2513:3;2509:14;2502:47;2598:4;2591:5;2587:16;2581:23;2574:4;2569:3;2565:14;2558:47;2654:4;2647:5;2643:16;2637:23;2630:4;2625:3;2621:14;2614:47;2710:4;2703:5;2699:16;2693:23;2686:4;2681:3;2677:14;2670:47;;;2296:427::o;2728:806::-;3134:3;3119:19;;3147:47;3123:9;3176:6;3147:47;:::i;:::-;3231:6;3225:3;3214:9;3210:19;3203:35;3275:6;3269:3;3258:9;3254:19;3247:35;3319:6;3313:3;3302:9;3298:19;3291:35;3375:12;3367:6;3363:25;3357:3;3346:9;3342:19;3335:54;3438:26;3430:6;3426:39;3420:3;3409:9;3405:19;3398:68;3475:53;3523:3;3512:9;3508:19;3500:6;3475:53;:::i;:::-;2728:806;;;;;;;;;;:::o;3539:651::-;3872:25;;;3928:2;3913:18;;3906:34;;;3971:2;3956:18;;3949:34;;;4031:12;4019:25;;4014:2;3999:18;;3992:53;4094:26;4082:39;;4076:3;4061:19;;4054:68;3859:3;3844:19;;4131:53;4179:3;4164:19;;4156:6;4131:53;:::i;:::-;3539:651;;;;;;;;;:::o;4195:331::-;4300:9;4311;4353:8;4341:10;4338:24;4335:44;;;4375:1;4372;4365:12;4335:44;4404:6;4394:8;4391:20;4388:40;;;4424:1;4421;4414:12;4388:40;-1:-1:-1;;4450:23:101;;;4495:25;;;;;-1:-1:-1;4195:331:101:o;4531:127::-;4592:10;4587:3;4583:20;4580:1;4573:31;4623:4;4620:1;4613:15;4647:4;4644:1;4637:15;4663:347;4730:2;4724:9;4772:6;4760:19;;4809:18;4794:34;;4830:22;;;4791:62;4788:185;;;4895:10;4890:3;4886:20;4883:1;4876:31;4930:4;4927:1;4920:15;4958:4;4955:1;4948:15;4788:185;4989:2;4982:22;4663:347;:::o;5015:165::-;5082:20;;5142:12;5131:24;;5121:35;;5111:63;;5170:1;5167;5160:12;5111:63;5015:165;;;:::o;5185:1481::-;5242:5;5290:6;5278:9;5273:3;5269:19;5265:32;5262:52;;;5310:1;5307;5300:12;5262:52;5332:17;;:::i;:::-;5394:23;;5426:22;;5521:2;5506:18;;;5493:32;5541:14;;;5534:31;5638:2;5623:18;;;5610:32;5658:14;;;5651:31;5755:2;5740:18;;;5727:32;5775:14;;;5768:31;5872:3;5857:19;;;5844:33;5893:15;;;5886:32;5991:3;5976:19;;;5963:33;6012:15;;;6005:32;6110:3;6095:19;;;6082:33;6131:15;;;6124:32;6229:3;6214:19;;;6201:33;6250:15;;;6243:32;6348:3;6333:19;;;6320:33;6369:15;;;6362:32;6469:3;6454:19;;;6441:33;6490:15;;;6483:33;5323:26;-1:-1:-1;6549:38:101;6582:3;6567:19;;6549:38;:::i;:::-;6543:3;6536:5;6532:15;6525:63;6621:38;6654:3;6643:9;6639:19;6621:38;:::i;:::-;6615:3;6608:5;6604:15;6597:63;5185:1481;;;;:::o;6671:592::-;6786:6;6794;6802;6810;6863:3;6851:9;6842:7;6838:23;6834:33;6831:53;;;6880:1;6877;6870:12;6831:53;6903:48;6943:7;6932:9;6903:48;:::i;:::-;6893:58;7020:3;7005:19;;6992:33;;-1:-1:-1;7122:3:101;7107:19;;7094:33;;7226:3;7211:19;7198:33;;-1:-1:-1;6671:592:101;-1:-1:-1;;;6671:592:101:o;7268:127::-;7329:10;7324:3;7320:20;7317:1;7310:31;7360:4;7357:1;7350:15;7384:4;7381:1;7374:15;7400:128;7467:9;;;7488:11;;;7485:37;;;7502:18;;:::i;7533:125::-;7598:9;;;7619:10;;;7616:36;;;7632:18;;:::i;7663:1288::-;7716:5;7764:4;7752:9;7747:3;7743:19;7739:30;7736:50;;;7782:1;7779;7772:12;7736:50;7835:2;7829:9;7877:4;7865:17;;7912:18;7897:34;;7933:22;;;7894:62;7891:185;;;7998:10;7993:3;7989:20;7986:1;7979:31;8033:4;8030:1;8023:15;8061:4;8058:1;8051:15;7891:185;8092:2;8085:22;;;8176:23;;8208;;8304:2;8289:18;;;8276:32;8324:15;;;8317:32;8407:18;;;8394:32;8442:15;;;8435:32;8540:2;8525:18;;;8512:32;8560:15;;;8553:32;8658:3;8643:19;;;8630:33;8679:16;;;8672:33;8778:3;8763:19;;;8750:33;8799:16;;;8792:33;8898:3;8883:19;;;8870:33;8919:16;;;8912:33;;;;-1:-1:-1;8125:6:101;7663:1288;-1:-1:-1;7663:1288:101:o;8956:901::-;9122:6;9130;9138;9146;9154;9162;9170;9223:3;9211:9;9202:7;9198:23;9194:33;9191:53;;;9240:1;9237;9230:12;9191:53;9263:48;9303:7;9292:9;9263:48;:::i;:::-;9253:58;-1:-1:-1;9380:3:101;9365:19;;9352:33;;-1:-1:-1;9482:3:101;9467:19;;9454:33;;-1:-1:-1;9586:3:101;9571:19;;9558:33;;-1:-1:-1;9636:38:101;9669:3;9654:19;;9636:38;:::i;:::-;9626:48;-1:-1:-1;9747:3:101;9732:19;;9719:33;;-1:-1:-1;9797:54:101;9843:7;9837:3;9822:19;;9797:54;:::i;:::-;9787:64;;8956:901;;;;;;;;;;:::o;9862:775::-;9990:6;9998;10006;10014;10022;10030;10083:3;10071:9;10062:7;10058:23;10054:33;10051:53;;;10100:1;10097;10090:12;10051:53;10145:23;;;-1:-1:-1;10265:2:101;10250:18;;10237:32;;-1:-1:-1;10368:2:101;10353:18;;10340:32;;-1:-1:-1;10417:37:101;10450:2;10435:18;;10417:37;:::i;:::-;10407:47;-1:-1:-1;10527:3:101;10512:19;;10499:33;;-1:-1:-1;10577:54:101;10623:7;10617:3;10602:19;;10577:54;:::i;:::-;10567:64;;9862:775;;;;;;;;:::o;10895:274::-;10988:6;11041:2;11029:9;11020:7;11016:23;11012:32;11009:52;;;11057:1;11054;11047:12;11009:52;11089:9;11083:16;11108:31;11133:5;11108:31;:::i;:::-;11158:5;10895:274;-1:-1:-1;;;10895:274:101:o;11575:442::-;11650:6;11658;11711:2;11699:9;11690:7;11686:23;11682:32;11679:52;;;11727:1;11724;11717:12;11679:52;11759:9;11753:16;11812:5;11805:13;11798:21;11791:5;11788:32;11778:60;;11834:1;11831;11824:12;11778:60;11907:2;11892:18;;11886:25;11857:5;;-1:-1:-1;11955:10:101;11942:24;;11930:37;;11920:65;;11981:1;11978;11971:12;11920:65;12004:7;11994:17;;;11575:442;;;;;:::o;12326:168::-;12399:9;;;12430;;12447:15;;;12441:22;;12427:37;12417:71;;12468:18;;:::i;12499:127::-;12560:10;12555:3;12551:20;12548:1;12541:31;12591:4;12588:1;12581:15;12615:4;12612:1;12605:15;12631:120;12671:1;12697;12687:35;;12702:18;;:::i;:::-;-1:-1:-1;12736:9:101;;12631:120::o;12756:112::-;12788:1;12814;12804:35;;12819:18;;:::i;:::-;-1:-1:-1;12853:9:101;;12756:112::o;12873:211::-;12914:3;12952:5;12946:12;12996:6;12989:4;12982:5;12978:16;12973:3;12967:36;13058:1;13022:16;;13047:13;;;-1:-1:-1;13022:16:101;;12873:211;-1:-1:-1;12873:211:101:o;13089:449::-;13385:66;13380:3;13373:79;13355:3;13468:64;13493:38;13527:2;13522:3;13518:12;13510:6;13493:38;:::i;:::-;13485:6;13468:64;:::i;:::-;13461:71;13089:449;-1:-1:-1;;;;13089:449:101:o;13543:176::-;13642:12;13635:20;;;13613;;;13609:47;;13668:22;;13665:48;;;13693:18;;:::i;13724:127::-;13785:10;13780:3;13776:20;13773:1;13766:31;13816:4;13813:1;13806:15;13840:4;13837:1;13830:15"},"methodIdentifiers":{"priceNewPolicy(address,bytes)":"ba097a2a","pricePolicyCancellation(address,bytes)":"32f857fa","pricePolicyReplacement(address,bytes)":"9ba942d6"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"actual\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expected\",\"type\":\"uint256\"}],\"name\":\"InvalidInputSize\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SignatureRmMismatch\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"UnauthorizedSigner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"rm\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"priceNewPolicy\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"moc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCollRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"collRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroPpFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCocFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrRoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srRoc\",\"type\":\"uint256\"}],\"internalType\":\"struct Policy.Params\",\"name\":\"params\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"rm\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"pricePolicyCancellation\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policyToCancel\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"rm\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"pricePolicyReplacement\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"oldPolicy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"moc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCollRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"collRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroPpFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCocFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrRoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srRoc\",\"type\":\"uint256\"}],\"internalType\":\"struct Policy.Params\",\"name\":\"params\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"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.\"}],\"InvalidInputSize(uint256,uint256)\":[{\"details\":\"The signature is expected to be exactly 65 bytes, so `inputData.length` must be `inputSize + 65`.\",\"params\":{\"actual\":\"The actual length of `inputData` in bytes.\",\"expected\":\"The expected length of `inputData` in bytes.\"}}],\"UnauthorizedSigner(address,bytes4)\":[{\"details\":\"`selector` is the permission/role identifier checked through the RM's AccessManager (one of `FULL_PRICE_*`).\",\"params\":{\"selector\":\"The required permission/role id for the operation.\",\"signer\":\"The address recovered from the appended ECDSA signature.\"}}]},\"kind\":\"dev\",\"methods\":{\"priceNewPolicy(address,bytes)\":{\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"expiration\":\" Policy expiration timestamp (seconds since epoch).\",\"internalId\":\" Unique id within `rm` used to derive the policy id.\",\"lossProb\":\"   Loss probability used for pricing/risk calculations.\",\"params\":\"     Additional policy parameters used by {Policy-initialize}.\",\"payout\":\"     The policy payout.\",\"premium\":\"    The total premium for the policy.\"}},\"pricePolicyCancellation(address,bytes)\":{\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"jrCocRefund\":\"      Amount to refund from junior CoC (or a sentinel value, if supported).\",\"policyToCancel\":\"   The policy to cancel (as {Policy-PolicyData}).\",\"purePremiumRefund\":\"Amount to refund from pure premium.\",\"srCocRefund\":\"      Amount to refund from senior CoC (or a sentinel value, if supported).\"}},\"pricePolicyReplacement(address,bytes)\":{\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"expiration\":\" Replacement policy expiration timestamp.\",\"internalId\":\" Unique id within `rm` for the replacement policy.\",\"lossProb\":\"   Loss probability used for pricing/risk calculations.\",\"oldPolicy\":\"  The policy being replaced (as {Policy-PolicyData}).\",\"params\":\"     Additional policy parameters used by {Policy-initialize}.\",\"payout\":\"     The replacement policy payout.\",\"premium\":\"    The replacement policy premium.\"}}},\"title\":\"FullSignedUW\",\"version\":1},\"userdoc\":{\"errors\":{\"InvalidInputSize(uint256,uint256)\":[{\"notice\":\"Thrown when `inputData` does not have the expected length: `payload || signature`.\"}],\"SignatureRmMismatch()\":[{\"notice\":\"Thrown when the received signature doesn't match the calling rm\"}],\"UnauthorizedSigner(address,bytes4)\":[{\"notice\":\"Thrown when the recovered signer is not authorized to perform the requested pricing operation on `rm`.\"}]},\"kind\":\"user\",\"methods\":{\"priceNewPolicy(address,bytes)\":{\"notice\":\"Prices a new policy request for RiskModule `rm`.\"},\"pricePolicyCancellation(address,bytes)\":{\"notice\":\"Prices a policy cancellation request for RiskModule `rm`.\"},\"pricePolicyReplacement(address,bytes)\":{\"notice\":\"Prices a policy replacement request for RiskModule `rm`.\"}},\"notice\":\"Underwriter that just decodes what it receives and checks it was signed by an authorized account.      The signer needs to have the specific selectors granted in the target RM\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/underwriters/FullSignedUW.sol\":\"FullSignedUW\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/access-managed-proxy/contracts/AMPUtils.sol\":{\"keccak256\":\"0x3f25097d759aa89ce9a7a94f98b854a3dc23c51f7f895b95a8d489e74d5f1d98\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://2912cf8c79b973d07fbb741e7d1048026f0a71489df2adf97552b83b23b427d7\",\"dweb:/ipfs/QmRTfFaqy72p4RfY99hKM1K9wH5kxaTnikH5VJjpL7K7sD\"]},\"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol\":{\"keccak256\":\"0x0d3a66feed9000ccbc8a8e6c597b7fe4659f56b5a4dfa2ab1eea314171ae9745\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fa3f292954915546ce72159da1dbcd44b8cdc19ea0b5b3fc6dbb47070451583c\",\"dweb:/ipfs/QmeL7krtsKLpuS9hy5w6eRoRsXU874XtgNWutUavxRKzmA\"]},\"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol\":{\"keccak256\":\"0x5a86ce7d2d1d7516c4d8b21d0d2fcf52ba1062a42d59c54284ed17a68d0990f9\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://52b0ce231eb4630b2486df38c272f78675f40c7aa880ff0db7e7d94b2ff12a4e\",\"dweb:/ipfs/QmYp9FzWwikko2oY3Jn2YyLeWh8UQAaZRUVhRLb948i76r\"]},\"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol\":{\"keccak256\":\"0xdd762bad2f6ad362f5a38fb333d2a953f6c9d0beea122dbaef0e333a7b83a054\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://a2bb86de08187cee5956393ca2cf096a09eb6ac694471e436ca12e377d97cb40\",\"dweb:/ipfs/Qmf6cNjug4swjsvTJYjbzhMMfAfSFdUuyJjkEf3b1cu2hn\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x71e3e350e83af0018a1683cc2ce4c13893cc01f78e5c9c305f6828608ffcfa18\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a7b521c9999007715c9bdedffaad2ef7d2ccfa07bca2a39ba9e0c2e8a944a63\",\"dweb:/ipfs/QmamPG6Y1p7iZh4cF8Hfp3oufowSRyB3S3DisTKkmVWSai\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa3066ff86b94128a9d3956a63a0511fa1aae41bd455772ab587b32ff322acb2e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bf7b192fd82acf6187970c80548f624b1b9c80425b62fa49e7fdb538a52de049\",\"dweb:/ipfs/QmWXG1YCde1tqDYTbNwjkZDWVgPEjzaQGSDqWkyKLzaNua\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0x80935e4fae2c414f4e7789e13a820d06901182a5733ab006f8d68b5b09db993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://752d991d6ca1087587b48103bc623f74888054f58581ff29166d90889c4765c5\",\"dweb:/ipfs/QmRBsa6K2ChKxVWYY54YiyYhDBPbmY5HyKCtij5LoWh56o\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x360cf86214a764694dae1522a38200b1737fe90e46dcf56a0f89de143071cc20\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e393290a46ca6d1fa1addb40709d26e1d250638ab6acdd103b5af21768ebc7b\",\"dweb:/ipfs/QmPwT3tXwQ9NbGtZ99XRq7sr8LCQP8XaCrzw49JdXGn7us\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x6abeed5940e1da7bb329e458db9a1c5c4ea6f86d651b952af99c6bddcd6bbb94\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fe75e9a6b759c5d7fd82fb59bd4f58c672b36f0a69b84f4789b7c7895d3e61c\",\"dweb:/ipfs/QmX28wsir8w5sS3acfJMNHcBwoPsDpqCu7WDkPnUWLMNiZ\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/interfaces/IUnderwriter.sol\":{\"keccak256\":\"0x2d2ed693a29e809ddc60c4669a6ea5bf8a74497593e8e099ea76c27505472acb\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4534e64481c50a88d782c615dce9ac3bda35509e0252ca306456665e57f26527\",\"dweb:/ipfs/QmdNGFXjRm2t8cZe5zi9C6YNh9BMHDnk4dfWNfHxmHgqwJ\"]},\"contracts/underwriters/FullSignedUW.sol\":{\"keccak256\":\"0x7452b0113c97105fc9a1dd1df7238733cc0039af32ae38fea918e0c6c77d4212\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://c03ade625828601ee93aa666b5e6f6d78f1b22e1b334765a6d0a72221feda540\",\"dweb:/ipfs/QmcXigemCo18657ZtraZrmEm4QGtVENHg7oa3izgX9Ldwd\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/underwriters/FullTrustedUW.sol":{"FullTrustedUW":{"abi":[{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"priceNewPolicy","outputs":[{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"uint96","name":"internalId","type":"uint96"},{"components":[{"internalType":"uint256","name":"moc","type":"uint256"},{"internalType":"uint256","name":"jrCollRatio","type":"uint256"},{"internalType":"uint256","name":"collRatio","type":"uint256"},{"internalType":"uint256","name":"ensuroPpFee","type":"uint256"},{"internalType":"uint256","name":"ensuroCocFee","type":"uint256"},{"internalType":"uint256","name":"jrRoc","type":"uint256"},{"internalType":"uint256","name":"srRoc","type":"uint256"}],"internalType":"struct Policy.Params","name":"params","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"pricePolicyCancellation","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policyToCancel","type":"tuple"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"pricePolicyReplacement","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"oldPolicy","type":"tuple"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"uint96","name":"internalId","type":"uint96"},{"components":[{"internalType":"uint256","name":"moc","type":"uint256"},{"internalType":"uint256","name":"jrCollRatio","type":"uint256"},{"internalType":"uint256","name":"collRatio","type":"uint256"},{"internalType":"uint256","name":"ensuroPpFee","type":"uint256"},{"internalType":"uint256","name":"ensuroCocFee","type":"uint256"},{"internalType":"uint256","name":"jrRoc","type":"uint256"},{"internalType":"uint256","name":"srRoc","type":"uint256"}],"internalType":"struct Policy.Params","name":"params","type":"tuple"}],"stateMutability":"pure","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"6080604052348015600e575f5ffd5b506108878061001c5f395ff3fe608060405234801561000f575f5ffd5b506004361061003f575f3560e01c806332f857fa146100435780639ba942d61461006f578063ba097a2a14610095575b5f5ffd5b6100566100513660046102f5565b6100ba565b604051610066949392919061041c565b60405180910390f35b61008261007d3660046102f5565b61012c565b604051610066979695949392919061048d565b6100a86100a33660046102f5565b610199565b604051610066969594939291906104e9565b6100c2610292565b5f80806100d185870187610629565b92965090945092509050600182016100ff576100ec846101f9565b8461010001516100fc9190610678565b91505b5f1981036101235761011084610242565b8461012001516101209190610678565b90505b93509350935093565b610134610292565b5f5f5f5f5f6101726040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b61017e888a018a61072c565b96509650965096509650965096509397509397509397909450565b5f5f5f5f5f6101d76040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b6101e3878901896107a1565b949e939d50919b50995097509095509350505050565b5f6102038261027b565b64ffffffffff1682610140015164ffffffffff16426102229190610678565b83610100015161023291906107fe565b61023c9190610815565b92915050565b5f61024c8261027b565b64ffffffffff1682610140015164ffffffffff164261026b9190610678565b83610120015161023291906107fe565b5f81610140015182610160015161023c9190610834565b6040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b5f5f5f60408486031215610307575f5ffd5b83356001600160a01b038116811461031d575f5ffd5b9250602084013567ffffffffffffffff811115610338575f5ffd5b8401601f81018613610348575f5ffd5b803567ffffffffffffffff81111561035e575f5ffd5b86602082840101111561036f575f5ffd5b939660209190910195509293505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e08301526101008101516101008301526101208101516101208301526101408101516103fc61014084018264ffffffffff169052565b5061016081015161041761016084018264ffffffffff169052565b505050565b6101e0810161042b8287610380565b84610180830152836101a0830152826101c083015295945050505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c08301525050565b610300810161049c828a610380565b87610180830152866101a0830152856101c083015264ffffffffff85166101e08301526001600160601b0384166102008301526104dd610220830184610449565b98975050505050505050565b868152602081018690526040810185905264ffffffffff841660608201526001600160601b0383166080820152610180810161052860a0830184610449565b979650505050505050565b604051610180810167ffffffffffffffff8111828210171561056357634e487b7160e01b5f52604160045260245ffd5b60405290565b803564ffffffffff8116811461057d575f5ffd5b919050565b5f6101808284031215610593575f5ffd5b61059b610533565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e0808401359082015261010080840135908201526101208084013590820152905061060a6101408301610569565b61014082015261061d6101608301610569565b61016082015292915050565b5f5f5f5f6101e0858703121561063d575f5ffd5b6106478686610582565b9661018086013596506101a0860135956101c00135945092505050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561023c5761023c610664565b80356001600160601b038116811461057d575f5ffd5b5f60e082840312156106b1575f5ffd5b60405160e0810167ffffffffffffffff811182821017156106e057634e487b7160e01b5f52604160045260245ffd5b604090815283358252602080850135908301528381013590820152606080840135908201526080808401359082015260a0808401359082015260c0928301359281019290925250919050565b5f5f5f5f5f5f5f610300888a031215610743575f5ffd5b61074d8989610582565b965061018088013595506101a088013594506101c088013593506107746101e08901610569565b9250610783610200890161068b565b9150610793896102208a016106a1565b905092959891949750929550565b5f5f5f5f5f5f61018087890312156107b7575f5ffd5b8635955060208701359450604087013593506107d560608801610569565b92506107e36080880161068b565b91506107f28860a089016106a1565b90509295509295509295565b808202811582820484141761023c5761023c610664565b5f8261082f57634e487b7160e01b5f52601260045260245ffd5b500490565b64ffffffffff828116828216039081111561023c5761023c61066456fea26469706673582212209199050338b0f1e1dac7fa841ef3095bbd5b6aeaaab9f4f7de04f7a1cfb5d92064736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x887 DUP1 PUSH2 0x1C PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x3F JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x32F857FA EQ PUSH2 0x43 JUMPI DUP1 PUSH4 0x9BA942D6 EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0xBA097A2A EQ PUSH2 0x95 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x56 PUSH2 0x51 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F5 JUMP JUMPDEST PUSH2 0xBA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x41C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x82 PUSH2 0x7D CALLDATASIZE PUSH1 0x4 PUSH2 0x2F5 JUMP JUMPDEST PUSH2 0x12C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x48D JUMP JUMPDEST PUSH2 0xA8 PUSH2 0xA3 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F5 JUMP JUMPDEST PUSH2 0x199 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4E9 JUMP JUMPDEST PUSH2 0xC2 PUSH2 0x292 JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0xD1 DUP6 DUP8 ADD DUP8 PUSH2 0x629 JUMP JUMPDEST SWAP3 SWAP7 POP SWAP1 SWAP5 POP SWAP3 POP SWAP1 POP PUSH1 0x1 DUP3 ADD PUSH2 0xFF JUMPI PUSH2 0xEC DUP5 PUSH2 0x1F9 JUMP JUMPDEST DUP5 PUSH2 0x100 ADD MLOAD PUSH2 0xFC SWAP2 SWAP1 PUSH2 0x678 JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x123 JUMPI PUSH2 0x110 DUP5 PUSH2 0x242 JUMP JUMPDEST DUP5 PUSH2 0x120 ADD MLOAD PUSH2 0x120 SWAP2 SWAP1 PUSH2 0x678 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 POP SWAP4 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x292 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x172 PUSH1 0x40 MLOAD DUP1 PUSH1 0xE0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0x17E DUP9 DUP11 ADD DUP11 PUSH2 0x72C JUMP JUMPDEST SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP4 SWAP8 POP SWAP4 SWAP8 POP SWAP4 SWAP8 SWAP1 SWAP5 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1D7 PUSH1 0x40 MLOAD DUP1 PUSH1 0xE0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0x1E3 DUP8 DUP10 ADD DUP10 PUSH2 0x7A1 JUMP JUMPDEST SWAP5 SWAP15 SWAP4 SWAP14 POP SWAP2 SWAP12 POP SWAP10 POP SWAP8 POP SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x203 DUP3 PUSH2 0x27B JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x222 SWAP2 SWAP1 PUSH2 0x678 JUMP JUMPDEST DUP4 PUSH2 0x100 ADD MLOAD PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x7FE JUMP JUMPDEST PUSH2 0x23C SWAP2 SWAP1 PUSH2 0x815 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x24C DUP3 PUSH2 0x27B JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x26B SWAP2 SWAP1 PUSH2 0x678 JUMP JUMPDEST DUP4 PUSH2 0x120 ADD MLOAD PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x7FE JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x140 ADD MLOAD DUP3 PUSH2 0x160 ADD MLOAD PUSH2 0x23C SWAP2 SWAP1 PUSH2 0x834 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x307 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x31D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x338 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x348 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x35E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x36F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 POP SWAP3 SWAP4 POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0x3FC PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP2 ADD MLOAD PUSH2 0x417 PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0x42B DUP3 DUP8 PUSH2 0x380 JUMP JUMPDEST DUP5 PUSH2 0x180 DUP4 ADD MSTORE DUP4 PUSH2 0x1A0 DUP4 ADD MSTORE DUP3 PUSH2 0x1C0 DUP4 ADD MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0x49C DUP3 DUP11 PUSH2 0x380 JUMP JUMPDEST DUP8 PUSH2 0x180 DUP4 ADD MSTORE DUP7 PUSH2 0x1A0 DUP4 ADD MSTORE DUP6 PUSH2 0x1C0 DUP4 ADD MSTORE PUSH5 0xFFFFFFFFFF DUP6 AND PUSH2 0x1E0 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP5 AND PUSH2 0x200 DUP4 ADD MSTORE PUSH2 0x4DD PUSH2 0x220 DUP4 ADD DUP5 PUSH2 0x449 JUMP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x40 DUP2 ADD DUP6 SWAP1 MSTORE PUSH5 0xFFFFFFFFFF DUP5 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP4 AND PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x180 DUP2 ADD PUSH2 0x528 PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0x449 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x563 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x57D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x593 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x59B PUSH2 0x533 JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0x60A PUSH2 0x140 DUP4 ADD PUSH2 0x569 JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x61D PUSH2 0x160 DUP4 ADD PUSH2 0x569 JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x63D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x647 DUP7 DUP7 PUSH2 0x582 JUMP JUMPDEST SWAP7 PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP7 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP6 PUSH2 0x1C0 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x23C JUMPI PUSH2 0x23C PUSH2 0x664 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x57D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xE0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x6E0 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 SWAP1 DUP2 MSTORE DUP4 CALLDATALOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP6 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE DUP4 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 SWAP3 DUP4 ADD CALLDATALOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x300 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x743 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x74D DUP10 DUP10 PUSH2 0x582 JUMP JUMPDEST SWAP7 POP PUSH2 0x180 DUP9 ADD CALLDATALOAD SWAP6 POP PUSH2 0x1A0 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH2 0x1C0 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0x774 PUSH2 0x1E0 DUP10 ADD PUSH2 0x569 JUMP JUMPDEST SWAP3 POP PUSH2 0x783 PUSH2 0x200 DUP10 ADD PUSH2 0x68B JUMP JUMPDEST SWAP2 POP PUSH2 0x793 DUP10 PUSH2 0x220 DUP11 ADD PUSH2 0x6A1 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x180 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x7B7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x7D5 PUSH1 0x60 DUP9 ADD PUSH2 0x569 JUMP JUMPDEST SWAP3 POP PUSH2 0x7E3 PUSH1 0x80 DUP9 ADD PUSH2 0x68B JUMP JUMPDEST SWAP2 POP PUSH2 0x7F2 DUP9 PUSH1 0xA0 DUP10 ADD PUSH2 0x6A1 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x23C JUMPI PUSH2 0x23C PUSH2 0x664 JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x82F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x23C JUMPI PUSH2 0x23C PUSH2 0x664 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP2 SWAP10 SDIV SUB CODESIZE 0xB0 CALL RJUMPI 0xDAC7 STATICCALL DUP5 0x1E RETURN MULMOD JUMPDEST 0xBD JUMPDEST PUSH11 0xEAAAB9F4F7DE04F7A1CFB5 0xD9 KECCAK256 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"382:1703:100:-:0;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@duration_22727":{"entryPoint":635,"id":22727,"parameterSlots":1,"returnSlots":1},"@jrAccruedInterest_22661":{"entryPoint":505,"id":22661,"parameterSlots":1,"returnSlots":1},"@priceNewPolicy_31285":{"entryPoint":409,"id":31285,"parameterSlots":3,"returnSlots":6},"@pricePolicyCancellation_31404":{"entryPoint":186,"id":31404,"parameterSlots":3,"returnSlots":4},"@pricePolicyReplacement_31331":{"entryPoint":300,"id":31331,"parameterSlots":3,"returnSlots":7},"@srAccruedInterest_22711":{"entryPoint":578,"id":22711,"parameterSlots":1,"returnSlots":1},"abi_decode_struct_Params":{"entryPoint":1697,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_struct_PolicyData":{"entryPoint":1410,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_bytes_calldata_ptr":{"entryPoint":757,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256":{"entryPoint":1577,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$22230_memory_ptr":{"entryPoint":1836,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$22230_memory_ptr":{"entryPoint":1953,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_uint40":{"entryPoint":1385,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint96":{"entryPoint":1675,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_struct_Params":{"entryPoint":1097,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_struct_PolicyData":{"entryPoint":896,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":1052,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__fromStack_reversed":{"entryPoint":1165,"id":null,"parameterSlots":8,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__to_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__fromStack_reversed":{"entryPoint":1257,"id":null,"parameterSlots":7,"returnSlots":1},"abi_encode_uint40":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"allocate_memory":{"entryPoint":1331,"id":null,"parameterSlots":0,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":2069,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":2046,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":1656,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint40":{"entryPoint":2100,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":1636,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:10608:101","nodeType":"YulBlock","src":"0:10608:101","statements":[{"nativeSrc":"6:3:101","nodeType":"YulBlock","src":"6:3:101","statements":[]},{"body":{"nativeSrc":"120:654:101","nodeType":"YulBlock","src":"120:654:101","statements":[{"body":{"nativeSrc":"166:16:101","nodeType":"YulBlock","src":"166:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"175:1:101","nodeType":"YulLiteral","src":"175:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"178:1:101","nodeType":"YulLiteral","src":"178:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"168:6:101","nodeType":"YulIdentifier","src":"168:6:101"},"nativeSrc":"168:12:101","nodeType":"YulFunctionCall","src":"168:12:101"},"nativeSrc":"168:12:101","nodeType":"YulExpressionStatement","src":"168:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"141:7:101","nodeType":"YulIdentifier","src":"141:7:101"},{"name":"headStart","nativeSrc":"150:9:101","nodeType":"YulIdentifier","src":"150:9:101"}],"functionName":{"name":"sub","nativeSrc":"137:3:101","nodeType":"YulIdentifier","src":"137:3:101"},"nativeSrc":"137:23:101","nodeType":"YulFunctionCall","src":"137:23:101"},{"kind":"number","nativeSrc":"162:2:101","nodeType":"YulLiteral","src":"162:2:101","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"133:3:101","nodeType":"YulIdentifier","src":"133:3:101"},"nativeSrc":"133:32:101","nodeType":"YulFunctionCall","src":"133:32:101"},"nativeSrc":"130:52:101","nodeType":"YulIf","src":"130:52:101"},{"nativeSrc":"191:36:101","nodeType":"YulVariableDeclaration","src":"191:36:101","value":{"arguments":[{"name":"headStart","nativeSrc":"217:9:101","nodeType":"YulIdentifier","src":"217:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"204:12:101","nodeType":"YulIdentifier","src":"204:12:101"},"nativeSrc":"204:23:101","nodeType":"YulFunctionCall","src":"204:23:101"},"variables":[{"name":"value","nativeSrc":"195:5:101","nodeType":"YulTypedName","src":"195:5:101","type":""}]},{"body":{"nativeSrc":"290:16:101","nodeType":"YulBlock","src":"290:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"299:1:101","nodeType":"YulLiteral","src":"299:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"302:1:101","nodeType":"YulLiteral","src":"302:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"292:6:101","nodeType":"YulIdentifier","src":"292:6:101"},"nativeSrc":"292:12:101","nodeType":"YulFunctionCall","src":"292:12:101"},"nativeSrc":"292:12:101","nodeType":"YulExpressionStatement","src":"292:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"249:5:101","nodeType":"YulIdentifier","src":"249:5:101"},{"arguments":[{"name":"value","nativeSrc":"260:5:101","nodeType":"YulIdentifier","src":"260:5:101"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"275:3:101","nodeType":"YulLiteral","src":"275:3:101","type":"","value":"160"},{"kind":"number","nativeSrc":"280:1:101","nodeType":"YulLiteral","src":"280:1:101","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"271:3:101","nodeType":"YulIdentifier","src":"271:3:101"},"nativeSrc":"271:11:101","nodeType":"YulFunctionCall","src":"271:11:101"},{"kind":"number","nativeSrc":"284:1:101","nodeType":"YulLiteral","src":"284:1:101","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"267:3:101","nodeType":"YulIdentifier","src":"267:3:101"},"nativeSrc":"267:19:101","nodeType":"YulFunctionCall","src":"267:19:101"}],"functionName":{"name":"and","nativeSrc":"256:3:101","nodeType":"YulIdentifier","src":"256:3:101"},"nativeSrc":"256:31:101","nodeType":"YulFunctionCall","src":"256:31:101"}],"functionName":{"name":"eq","nativeSrc":"246:2:101","nodeType":"YulIdentifier","src":"246:2:101"},"nativeSrc":"246:42:101","nodeType":"YulFunctionCall","src":"246:42:101"}],"functionName":{"name":"iszero","nativeSrc":"239:6:101","nodeType":"YulIdentifier","src":"239:6:101"},"nativeSrc":"239:50:101","nodeType":"YulFunctionCall","src":"239:50:101"},"nativeSrc":"236:70:101","nodeType":"YulIf","src":"236:70:101"},{"nativeSrc":"315:15:101","nodeType":"YulAssignment","src":"315:15:101","value":{"name":"value","nativeSrc":"325:5:101","nodeType":"YulIdentifier","src":"325:5:101"},"variableNames":[{"name":"value0","nativeSrc":"315:6:101","nodeType":"YulIdentifier","src":"315:6:101"}]},{"nativeSrc":"339:46:101","nodeType":"YulVariableDeclaration","src":"339:46:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"370:9:101","nodeType":"YulIdentifier","src":"370:9:101"},{"kind":"number","nativeSrc":"381:2:101","nodeType":"YulLiteral","src":"381:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"366:3:101","nodeType":"YulIdentifier","src":"366:3:101"},"nativeSrc":"366:18:101","nodeType":"YulFunctionCall","src":"366:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"353:12:101","nodeType":"YulIdentifier","src":"353:12:101"},"nativeSrc":"353:32:101","nodeType":"YulFunctionCall","src":"353:32:101"},"variables":[{"name":"offset","nativeSrc":"343:6:101","nodeType":"YulTypedName","src":"343:6:101","type":""}]},{"body":{"nativeSrc":"428:16:101","nodeType":"YulBlock","src":"428:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"437:1:101","nodeType":"YulLiteral","src":"437:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"440:1:101","nodeType":"YulLiteral","src":"440:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"430:6:101","nodeType":"YulIdentifier","src":"430:6:101"},"nativeSrc":"430:12:101","nodeType":"YulFunctionCall","src":"430:12:101"},"nativeSrc":"430:12:101","nodeType":"YulExpressionStatement","src":"430:12:101"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"400:6:101","nodeType":"YulIdentifier","src":"400:6:101"},{"kind":"number","nativeSrc":"408:18:101","nodeType":"YulLiteral","src":"408:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"397:2:101","nodeType":"YulIdentifier","src":"397:2:101"},"nativeSrc":"397:30:101","nodeType":"YulFunctionCall","src":"397:30:101"},"nativeSrc":"394:50:101","nodeType":"YulIf","src":"394:50:101"},{"nativeSrc":"453:32:101","nodeType":"YulVariableDeclaration","src":"453:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"467:9:101","nodeType":"YulIdentifier","src":"467:9:101"},{"name":"offset","nativeSrc":"478:6:101","nodeType":"YulIdentifier","src":"478:6:101"}],"functionName":{"name":"add","nativeSrc":"463:3:101","nodeType":"YulIdentifier","src":"463:3:101"},"nativeSrc":"463:22:101","nodeType":"YulFunctionCall","src":"463:22:101"},"variables":[{"name":"_1","nativeSrc":"457:2:101","nodeType":"YulTypedName","src":"457:2:101","type":""}]},{"body":{"nativeSrc":"533:16:101","nodeType":"YulBlock","src":"533:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"542:1:101","nodeType":"YulLiteral","src":"542:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"545:1:101","nodeType":"YulLiteral","src":"545:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"535:6:101","nodeType":"YulIdentifier","src":"535:6:101"},"nativeSrc":"535:12:101","nodeType":"YulFunctionCall","src":"535:12:101"},"nativeSrc":"535:12:101","nodeType":"YulExpressionStatement","src":"535:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"512:2:101","nodeType":"YulIdentifier","src":"512:2:101"},{"kind":"number","nativeSrc":"516:4:101","nodeType":"YulLiteral","src":"516:4:101","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"508:3:101","nodeType":"YulIdentifier","src":"508:3:101"},"nativeSrc":"508:13:101","nodeType":"YulFunctionCall","src":"508:13:101"},{"name":"dataEnd","nativeSrc":"523:7:101","nodeType":"YulIdentifier","src":"523:7:101"}],"functionName":{"name":"slt","nativeSrc":"504:3:101","nodeType":"YulIdentifier","src":"504:3:101"},"nativeSrc":"504:27:101","nodeType":"YulFunctionCall","src":"504:27:101"}],"functionName":{"name":"iszero","nativeSrc":"497:6:101","nodeType":"YulIdentifier","src":"497:6:101"},"nativeSrc":"497:35:101","nodeType":"YulFunctionCall","src":"497:35:101"},"nativeSrc":"494:55:101","nodeType":"YulIf","src":"494:55:101"},{"nativeSrc":"558:30:101","nodeType":"YulVariableDeclaration","src":"558:30:101","value":{"arguments":[{"name":"_1","nativeSrc":"585:2:101","nodeType":"YulIdentifier","src":"585:2:101"}],"functionName":{"name":"calldataload","nativeSrc":"572:12:101","nodeType":"YulIdentifier","src":"572:12:101"},"nativeSrc":"572:16:101","nodeType":"YulFunctionCall","src":"572:16:101"},"variables":[{"name":"length","nativeSrc":"562:6:101","nodeType":"YulTypedName","src":"562:6:101","type":""}]},{"body":{"nativeSrc":"631:16:101","nodeType":"YulBlock","src":"631:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"640:1:101","nodeType":"YulLiteral","src":"640:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"643:1:101","nodeType":"YulLiteral","src":"643:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"633:6:101","nodeType":"YulIdentifier","src":"633:6:101"},"nativeSrc":"633:12:101","nodeType":"YulFunctionCall","src":"633:12:101"},"nativeSrc":"633:12:101","nodeType":"YulExpressionStatement","src":"633:12:101"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"603:6:101","nodeType":"YulIdentifier","src":"603:6:101"},{"kind":"number","nativeSrc":"611:18:101","nodeType":"YulLiteral","src":"611:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"600:2:101","nodeType":"YulIdentifier","src":"600:2:101"},"nativeSrc":"600:30:101","nodeType":"YulFunctionCall","src":"600:30:101"},"nativeSrc":"597:50:101","nodeType":"YulIf","src":"597:50:101"},{"body":{"nativeSrc":"697:16:101","nodeType":"YulBlock","src":"697:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"706:1:101","nodeType":"YulLiteral","src":"706:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"709:1:101","nodeType":"YulLiteral","src":"709:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"699:6:101","nodeType":"YulIdentifier","src":"699:6:101"},"nativeSrc":"699:12:101","nodeType":"YulFunctionCall","src":"699:12:101"},"nativeSrc":"699:12:101","nodeType":"YulExpressionStatement","src":"699:12:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"670:2:101","nodeType":"YulIdentifier","src":"670:2:101"},{"name":"length","nativeSrc":"674:6:101","nodeType":"YulIdentifier","src":"674:6:101"}],"functionName":{"name":"add","nativeSrc":"666:3:101","nodeType":"YulIdentifier","src":"666:3:101"},"nativeSrc":"666:15:101","nodeType":"YulFunctionCall","src":"666:15:101"},{"kind":"number","nativeSrc":"683:2:101","nodeType":"YulLiteral","src":"683:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"662:3:101","nodeType":"YulIdentifier","src":"662:3:101"},"nativeSrc":"662:24:101","nodeType":"YulFunctionCall","src":"662:24:101"},{"name":"dataEnd","nativeSrc":"688:7:101","nodeType":"YulIdentifier","src":"688:7:101"}],"functionName":{"name":"gt","nativeSrc":"659:2:101","nodeType":"YulIdentifier","src":"659:2:101"},"nativeSrc":"659:37:101","nodeType":"YulFunctionCall","src":"659:37:101"},"nativeSrc":"656:57:101","nodeType":"YulIf","src":"656:57:101"},{"nativeSrc":"722:21:101","nodeType":"YulAssignment","src":"722:21:101","value":{"arguments":[{"name":"_1","nativeSrc":"736:2:101","nodeType":"YulIdentifier","src":"736:2:101"},{"kind":"number","nativeSrc":"740:2:101","nodeType":"YulLiteral","src":"740:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"732:3:101","nodeType":"YulIdentifier","src":"732:3:101"},"nativeSrc":"732:11:101","nodeType":"YulFunctionCall","src":"732:11:101"},"variableNames":[{"name":"value1","nativeSrc":"722:6:101","nodeType":"YulIdentifier","src":"722:6:101"}]},{"nativeSrc":"752:16:101","nodeType":"YulAssignment","src":"752:16:101","value":{"name":"length","nativeSrc":"762:6:101","nodeType":"YulIdentifier","src":"762:6:101"},"variableNames":[{"name":"value2","nativeSrc":"752:6:101","nodeType":"YulIdentifier","src":"752:6:101"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptr","nativeSrc":"14:760:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"70:9:101","nodeType":"YulTypedName","src":"70:9:101","type":""},{"name":"dataEnd","nativeSrc":"81:7:101","nodeType":"YulTypedName","src":"81:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"93:6:101","nodeType":"YulTypedName","src":"93:6:101","type":""},{"name":"value1","nativeSrc":"101:6:101","nodeType":"YulTypedName","src":"101:6:101","type":""},{"name":"value2","nativeSrc":"109:6:101","nodeType":"YulTypedName","src":"109:6:101","type":""}],"src":"14:760:101"},{"body":{"nativeSrc":"822:53:101","nodeType":"YulBlock","src":"822:53:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"839:3:101","nodeType":"YulIdentifier","src":"839:3:101"},{"arguments":[{"name":"value","nativeSrc":"848:5:101","nodeType":"YulIdentifier","src":"848:5:101"},{"kind":"number","nativeSrc":"855:12:101","nodeType":"YulLiteral","src":"855:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"844:3:101","nodeType":"YulIdentifier","src":"844:3:101"},"nativeSrc":"844:24:101","nodeType":"YulFunctionCall","src":"844:24:101"}],"functionName":{"name":"mstore","nativeSrc":"832:6:101","nodeType":"YulIdentifier","src":"832:6:101"},"nativeSrc":"832:37:101","nodeType":"YulFunctionCall","src":"832:37:101"},"nativeSrc":"832:37:101","nodeType":"YulExpressionStatement","src":"832:37:101"}]},"name":"abi_encode_uint40","nativeSrc":"779:96:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"806:5:101","nodeType":"YulTypedName","src":"806:5:101","type":""},{"name":"pos","nativeSrc":"813:3:101","nodeType":"YulTypedName","src":"813:3:101","type":""}],"src":"779:96:101"},{"body":{"nativeSrc":"934:781:101","nodeType":"YulBlock","src":"934:781:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"951:3:101","nodeType":"YulIdentifier","src":"951:3:101"},{"arguments":[{"name":"value","nativeSrc":"962:5:101","nodeType":"YulIdentifier","src":"962:5:101"}],"functionName":{"name":"mload","nativeSrc":"956:5:101","nodeType":"YulIdentifier","src":"956:5:101"},"nativeSrc":"956:12:101","nodeType":"YulFunctionCall","src":"956:12:101"}],"functionName":{"name":"mstore","nativeSrc":"944:6:101","nodeType":"YulIdentifier","src":"944:6:101"},"nativeSrc":"944:25:101","nodeType":"YulFunctionCall","src":"944:25:101"},"nativeSrc":"944:25:101","nodeType":"YulExpressionStatement","src":"944:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"989:3:101","nodeType":"YulIdentifier","src":"989:3:101"},{"kind":"number","nativeSrc":"994:4:101","nodeType":"YulLiteral","src":"994:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"985:3:101","nodeType":"YulIdentifier","src":"985:3:101"},"nativeSrc":"985:14:101","nodeType":"YulFunctionCall","src":"985:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1011:5:101","nodeType":"YulIdentifier","src":"1011:5:101"},{"kind":"number","nativeSrc":"1018:4:101","nodeType":"YulLiteral","src":"1018:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1007:3:101","nodeType":"YulIdentifier","src":"1007:3:101"},"nativeSrc":"1007:16:101","nodeType":"YulFunctionCall","src":"1007:16:101"}],"functionName":{"name":"mload","nativeSrc":"1001:5:101","nodeType":"YulIdentifier","src":"1001:5:101"},"nativeSrc":"1001:23:101","nodeType":"YulFunctionCall","src":"1001:23:101"}],"functionName":{"name":"mstore","nativeSrc":"978:6:101","nodeType":"YulIdentifier","src":"978:6:101"},"nativeSrc":"978:47:101","nodeType":"YulFunctionCall","src":"978:47:101"},"nativeSrc":"978:47:101","nodeType":"YulExpressionStatement","src":"978:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1045:3:101","nodeType":"YulIdentifier","src":"1045:3:101"},{"kind":"number","nativeSrc":"1050:4:101","nodeType":"YulLiteral","src":"1050:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"1041:3:101","nodeType":"YulIdentifier","src":"1041:3:101"},"nativeSrc":"1041:14:101","nodeType":"YulFunctionCall","src":"1041:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1067:5:101","nodeType":"YulIdentifier","src":"1067:5:101"},{"kind":"number","nativeSrc":"1074:4:101","nodeType":"YulLiteral","src":"1074:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"1063:3:101","nodeType":"YulIdentifier","src":"1063:3:101"},"nativeSrc":"1063:16:101","nodeType":"YulFunctionCall","src":"1063:16:101"}],"functionName":{"name":"mload","nativeSrc":"1057:5:101","nodeType":"YulIdentifier","src":"1057:5:101"},"nativeSrc":"1057:23:101","nodeType":"YulFunctionCall","src":"1057:23:101"}],"functionName":{"name":"mstore","nativeSrc":"1034:6:101","nodeType":"YulIdentifier","src":"1034:6:101"},"nativeSrc":"1034:47:101","nodeType":"YulFunctionCall","src":"1034:47:101"},"nativeSrc":"1034:47:101","nodeType":"YulExpressionStatement","src":"1034:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1101:3:101","nodeType":"YulIdentifier","src":"1101:3:101"},{"kind":"number","nativeSrc":"1106:4:101","nodeType":"YulLiteral","src":"1106:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"1097:3:101","nodeType":"YulIdentifier","src":"1097:3:101"},"nativeSrc":"1097:14:101","nodeType":"YulFunctionCall","src":"1097:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1123:5:101","nodeType":"YulIdentifier","src":"1123:5:101"},{"kind":"number","nativeSrc":"1130:4:101","nodeType":"YulLiteral","src":"1130:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"1119:3:101","nodeType":"YulIdentifier","src":"1119:3:101"},"nativeSrc":"1119:16:101","nodeType":"YulFunctionCall","src":"1119:16:101"}],"functionName":{"name":"mload","nativeSrc":"1113:5:101","nodeType":"YulIdentifier","src":"1113:5:101"},"nativeSrc":"1113:23:101","nodeType":"YulFunctionCall","src":"1113:23:101"}],"functionName":{"name":"mstore","nativeSrc":"1090:6:101","nodeType":"YulIdentifier","src":"1090:6:101"},"nativeSrc":"1090:47:101","nodeType":"YulFunctionCall","src":"1090:47:101"},"nativeSrc":"1090:47:101","nodeType":"YulExpressionStatement","src":"1090:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1157:3:101","nodeType":"YulIdentifier","src":"1157:3:101"},{"kind":"number","nativeSrc":"1162:4:101","nodeType":"YulLiteral","src":"1162:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"1153:3:101","nodeType":"YulIdentifier","src":"1153:3:101"},"nativeSrc":"1153:14:101","nodeType":"YulFunctionCall","src":"1153:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1179:5:101","nodeType":"YulIdentifier","src":"1179:5:101"},{"kind":"number","nativeSrc":"1186:4:101","nodeType":"YulLiteral","src":"1186:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"1175:3:101","nodeType":"YulIdentifier","src":"1175:3:101"},"nativeSrc":"1175:16:101","nodeType":"YulFunctionCall","src":"1175:16:101"}],"functionName":{"name":"mload","nativeSrc":"1169:5:101","nodeType":"YulIdentifier","src":"1169:5:101"},"nativeSrc":"1169:23:101","nodeType":"YulFunctionCall","src":"1169:23:101"}],"functionName":{"name":"mstore","nativeSrc":"1146:6:101","nodeType":"YulIdentifier","src":"1146:6:101"},"nativeSrc":"1146:47:101","nodeType":"YulFunctionCall","src":"1146:47:101"},"nativeSrc":"1146:47:101","nodeType":"YulExpressionStatement","src":"1146:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1213:3:101","nodeType":"YulIdentifier","src":"1213:3:101"},{"kind":"number","nativeSrc":"1218:4:101","nodeType":"YulLiteral","src":"1218:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"1209:3:101","nodeType":"YulIdentifier","src":"1209:3:101"},"nativeSrc":"1209:14:101","nodeType":"YulFunctionCall","src":"1209:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1235:5:101","nodeType":"YulIdentifier","src":"1235:5:101"},{"kind":"number","nativeSrc":"1242:4:101","nodeType":"YulLiteral","src":"1242:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"1231:3:101","nodeType":"YulIdentifier","src":"1231:3:101"},"nativeSrc":"1231:16:101","nodeType":"YulFunctionCall","src":"1231:16:101"}],"functionName":{"name":"mload","nativeSrc":"1225:5:101","nodeType":"YulIdentifier","src":"1225:5:101"},"nativeSrc":"1225:23:101","nodeType":"YulFunctionCall","src":"1225:23:101"}],"functionName":{"name":"mstore","nativeSrc":"1202:6:101","nodeType":"YulIdentifier","src":"1202:6:101"},"nativeSrc":"1202:47:101","nodeType":"YulFunctionCall","src":"1202:47:101"},"nativeSrc":"1202:47:101","nodeType":"YulExpressionStatement","src":"1202:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1269:3:101","nodeType":"YulIdentifier","src":"1269:3:101"},{"kind":"number","nativeSrc":"1274:4:101","nodeType":"YulLiteral","src":"1274:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"1265:3:101","nodeType":"YulIdentifier","src":"1265:3:101"},"nativeSrc":"1265:14:101","nodeType":"YulFunctionCall","src":"1265:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1291:5:101","nodeType":"YulIdentifier","src":"1291:5:101"},{"kind":"number","nativeSrc":"1298:4:101","nodeType":"YulLiteral","src":"1298:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"1287:3:101","nodeType":"YulIdentifier","src":"1287:3:101"},"nativeSrc":"1287:16:101","nodeType":"YulFunctionCall","src":"1287:16:101"}],"functionName":{"name":"mload","nativeSrc":"1281:5:101","nodeType":"YulIdentifier","src":"1281:5:101"},"nativeSrc":"1281:23:101","nodeType":"YulFunctionCall","src":"1281:23:101"}],"functionName":{"name":"mstore","nativeSrc":"1258:6:101","nodeType":"YulIdentifier","src":"1258:6:101"},"nativeSrc":"1258:47:101","nodeType":"YulFunctionCall","src":"1258:47:101"},"nativeSrc":"1258:47:101","nodeType":"YulExpressionStatement","src":"1258:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1325:3:101","nodeType":"YulIdentifier","src":"1325:3:101"},{"kind":"number","nativeSrc":"1330:4:101","nodeType":"YulLiteral","src":"1330:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"1321:3:101","nodeType":"YulIdentifier","src":"1321:3:101"},"nativeSrc":"1321:14:101","nodeType":"YulFunctionCall","src":"1321:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1347:5:101","nodeType":"YulIdentifier","src":"1347:5:101"},{"kind":"number","nativeSrc":"1354:4:101","nodeType":"YulLiteral","src":"1354:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"1343:3:101","nodeType":"YulIdentifier","src":"1343:3:101"},"nativeSrc":"1343:16:101","nodeType":"YulFunctionCall","src":"1343:16:101"}],"functionName":{"name":"mload","nativeSrc":"1337:5:101","nodeType":"YulIdentifier","src":"1337:5:101"},"nativeSrc":"1337:23:101","nodeType":"YulFunctionCall","src":"1337:23:101"}],"functionName":{"name":"mstore","nativeSrc":"1314:6:101","nodeType":"YulIdentifier","src":"1314:6:101"},"nativeSrc":"1314:47:101","nodeType":"YulFunctionCall","src":"1314:47:101"},"nativeSrc":"1314:47:101","nodeType":"YulExpressionStatement","src":"1314:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1381:3:101","nodeType":"YulIdentifier","src":"1381:3:101"},{"kind":"number","nativeSrc":"1386:6:101","nodeType":"YulLiteral","src":"1386:6:101","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"1377:3:101","nodeType":"YulIdentifier","src":"1377:3:101"},"nativeSrc":"1377:16:101","nodeType":"YulFunctionCall","src":"1377:16:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1405:5:101","nodeType":"YulIdentifier","src":"1405:5:101"},{"kind":"number","nativeSrc":"1412:6:101","nodeType":"YulLiteral","src":"1412:6:101","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"1401:3:101","nodeType":"YulIdentifier","src":"1401:3:101"},"nativeSrc":"1401:18:101","nodeType":"YulFunctionCall","src":"1401:18:101"}],"functionName":{"name":"mload","nativeSrc":"1395:5:101","nodeType":"YulIdentifier","src":"1395:5:101"},"nativeSrc":"1395:25:101","nodeType":"YulFunctionCall","src":"1395:25:101"}],"functionName":{"name":"mstore","nativeSrc":"1370:6:101","nodeType":"YulIdentifier","src":"1370:6:101"},"nativeSrc":"1370:51:101","nodeType":"YulFunctionCall","src":"1370:51:101"},"nativeSrc":"1370:51:101","nodeType":"YulExpressionStatement","src":"1370:51:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1441:3:101","nodeType":"YulIdentifier","src":"1441:3:101"},{"kind":"number","nativeSrc":"1446:6:101","nodeType":"YulLiteral","src":"1446:6:101","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"1437:3:101","nodeType":"YulIdentifier","src":"1437:3:101"},"nativeSrc":"1437:16:101","nodeType":"YulFunctionCall","src":"1437:16:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1465:5:101","nodeType":"YulIdentifier","src":"1465:5:101"},{"kind":"number","nativeSrc":"1472:6:101","nodeType":"YulLiteral","src":"1472:6:101","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"1461:3:101","nodeType":"YulIdentifier","src":"1461:3:101"},"nativeSrc":"1461:18:101","nodeType":"YulFunctionCall","src":"1461:18:101"}],"functionName":{"name":"mload","nativeSrc":"1455:5:101","nodeType":"YulIdentifier","src":"1455:5:101"},"nativeSrc":"1455:25:101","nodeType":"YulFunctionCall","src":"1455:25:101"}],"functionName":{"name":"mstore","nativeSrc":"1430:6:101","nodeType":"YulIdentifier","src":"1430:6:101"},"nativeSrc":"1430:51:101","nodeType":"YulFunctionCall","src":"1430:51:101"},"nativeSrc":"1430:51:101","nodeType":"YulExpressionStatement","src":"1430:51:101"},{"nativeSrc":"1490:45:101","nodeType":"YulVariableDeclaration","src":"1490:45:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1520:5:101","nodeType":"YulIdentifier","src":"1520:5:101"},{"kind":"number","nativeSrc":"1527:6:101","nodeType":"YulLiteral","src":"1527:6:101","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"1516:3:101","nodeType":"YulIdentifier","src":"1516:3:101"},"nativeSrc":"1516:18:101","nodeType":"YulFunctionCall","src":"1516:18:101"}],"functionName":{"name":"mload","nativeSrc":"1510:5:101","nodeType":"YulIdentifier","src":"1510:5:101"},"nativeSrc":"1510:25:101","nodeType":"YulFunctionCall","src":"1510:25:101"},"variables":[{"name":"memberValue0","nativeSrc":"1494:12:101","nodeType":"YulTypedName","src":"1494:12:101","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"1562:12:101","nodeType":"YulIdentifier","src":"1562:12:101"},{"arguments":[{"name":"pos","nativeSrc":"1580:3:101","nodeType":"YulIdentifier","src":"1580:3:101"},{"kind":"number","nativeSrc":"1585:6:101","nodeType":"YulLiteral","src":"1585:6:101","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"1576:3:101","nodeType":"YulIdentifier","src":"1576:3:101"},"nativeSrc":"1576:16:101","nodeType":"YulFunctionCall","src":"1576:16:101"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"1544:17:101","nodeType":"YulIdentifier","src":"1544:17:101"},"nativeSrc":"1544:49:101","nodeType":"YulFunctionCall","src":"1544:49:101"},"nativeSrc":"1544:49:101","nodeType":"YulExpressionStatement","src":"1544:49:101"},{"nativeSrc":"1602:47:101","nodeType":"YulVariableDeclaration","src":"1602:47:101","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1634:5:101","nodeType":"YulIdentifier","src":"1634:5:101"},{"kind":"number","nativeSrc":"1641:6:101","nodeType":"YulLiteral","src":"1641:6:101","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"1630:3:101","nodeType":"YulIdentifier","src":"1630:3:101"},"nativeSrc":"1630:18:101","nodeType":"YulFunctionCall","src":"1630:18:101"}],"functionName":{"name":"mload","nativeSrc":"1624:5:101","nodeType":"YulIdentifier","src":"1624:5:101"},"nativeSrc":"1624:25:101","nodeType":"YulFunctionCall","src":"1624:25:101"},"variables":[{"name":"memberValue0_1","nativeSrc":"1606:14:101","nodeType":"YulTypedName","src":"1606:14:101","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nativeSrc":"1676:14:101","nodeType":"YulIdentifier","src":"1676:14:101"},{"arguments":[{"name":"pos","nativeSrc":"1696:3:101","nodeType":"YulIdentifier","src":"1696:3:101"},{"kind":"number","nativeSrc":"1701:6:101","nodeType":"YulLiteral","src":"1701:6:101","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"1692:3:101","nodeType":"YulIdentifier","src":"1692:3:101"},"nativeSrc":"1692:16:101","nodeType":"YulFunctionCall","src":"1692:16:101"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"1658:17:101","nodeType":"YulIdentifier","src":"1658:17:101"},"nativeSrc":"1658:51:101","nodeType":"YulFunctionCall","src":"1658:51:101"},"nativeSrc":"1658:51:101","nodeType":"YulExpressionStatement","src":"1658:51:101"}]},"name":"abi_encode_struct_PolicyData","nativeSrc":"880:835:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"918:5:101","nodeType":"YulTypedName","src":"918:5:101","type":""},{"name":"pos","nativeSrc":"925:3:101","nodeType":"YulTypedName","src":"925:3:101","type":""}],"src":"880:835:101"},{"body":{"nativeSrc":"1963:231:101","nodeType":"YulBlock","src":"1963:231:101","statements":[{"nativeSrc":"1973:27:101","nodeType":"YulAssignment","src":"1973:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"1985:9:101","nodeType":"YulIdentifier","src":"1985:9:101"},{"kind":"number","nativeSrc":"1996:3:101","nodeType":"YulLiteral","src":"1996:3:101","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"1981:3:101","nodeType":"YulIdentifier","src":"1981:3:101"},"nativeSrc":"1981:19:101","nodeType":"YulFunctionCall","src":"1981:19:101"},"variableNames":[{"name":"tail","nativeSrc":"1973:4:101","nodeType":"YulIdentifier","src":"1973:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"2038:6:101","nodeType":"YulIdentifier","src":"2038:6:101"},{"name":"headStart","nativeSrc":"2046:9:101","nodeType":"YulIdentifier","src":"2046:9:101"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"2009:28:101","nodeType":"YulIdentifier","src":"2009:28:101"},"nativeSrc":"2009:47:101","nodeType":"YulFunctionCall","src":"2009:47:101"},"nativeSrc":"2009:47:101","nodeType":"YulExpressionStatement","src":"2009:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2076:9:101","nodeType":"YulIdentifier","src":"2076:9:101"},{"kind":"number","nativeSrc":"2087:3:101","nodeType":"YulLiteral","src":"2087:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"2072:3:101","nodeType":"YulIdentifier","src":"2072:3:101"},"nativeSrc":"2072:19:101","nodeType":"YulFunctionCall","src":"2072:19:101"},{"name":"value1","nativeSrc":"2093:6:101","nodeType":"YulIdentifier","src":"2093:6:101"}],"functionName":{"name":"mstore","nativeSrc":"2065:6:101","nodeType":"YulIdentifier","src":"2065:6:101"},"nativeSrc":"2065:35:101","nodeType":"YulFunctionCall","src":"2065:35:101"},"nativeSrc":"2065:35:101","nodeType":"YulExpressionStatement","src":"2065:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2120:9:101","nodeType":"YulIdentifier","src":"2120:9:101"},{"kind":"number","nativeSrc":"2131:3:101","nodeType":"YulLiteral","src":"2131:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"2116:3:101","nodeType":"YulIdentifier","src":"2116:3:101"},"nativeSrc":"2116:19:101","nodeType":"YulFunctionCall","src":"2116:19:101"},{"name":"value2","nativeSrc":"2137:6:101","nodeType":"YulIdentifier","src":"2137:6:101"}],"functionName":{"name":"mstore","nativeSrc":"2109:6:101","nodeType":"YulIdentifier","src":"2109:6:101"},"nativeSrc":"2109:35:101","nodeType":"YulFunctionCall","src":"2109:35:101"},"nativeSrc":"2109:35:101","nodeType":"YulExpressionStatement","src":"2109:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2164:9:101","nodeType":"YulIdentifier","src":"2164:9:101"},{"kind":"number","nativeSrc":"2175:3:101","nodeType":"YulLiteral","src":"2175:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"2160:3:101","nodeType":"YulIdentifier","src":"2160:3:101"},"nativeSrc":"2160:19:101","nodeType":"YulFunctionCall","src":"2160:19:101"},{"name":"value3","nativeSrc":"2181:6:101","nodeType":"YulIdentifier","src":"2181:6:101"}],"functionName":{"name":"mstore","nativeSrc":"2153:6:101","nodeType":"YulIdentifier","src":"2153:6:101"},"nativeSrc":"2153:35:101","nodeType":"YulFunctionCall","src":"2153:35:101"},"nativeSrc":"2153:35:101","nodeType":"YulExpressionStatement","src":"2153:35:101"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"1720:474:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1908:9:101","nodeType":"YulTypedName","src":"1908:9:101","type":""},{"name":"value3","nativeSrc":"1919:6:101","nodeType":"YulTypedName","src":"1919:6:101","type":""},{"name":"value2","nativeSrc":"1927:6:101","nodeType":"YulTypedName","src":"1927:6:101","type":""},{"name":"value1","nativeSrc":"1935:6:101","nodeType":"YulTypedName","src":"1935:6:101","type":""},{"name":"value0","nativeSrc":"1943:6:101","nodeType":"YulTypedName","src":"1943:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1954:4:101","nodeType":"YulTypedName","src":"1954:4:101","type":""}],"src":"1720:474:101"},{"body":{"nativeSrc":"2249:377:101","nodeType":"YulBlock","src":"2249:377:101","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"2266:3:101","nodeType":"YulIdentifier","src":"2266:3:101"},{"arguments":[{"name":"value","nativeSrc":"2277:5:101","nodeType":"YulIdentifier","src":"2277:5:101"}],"functionName":{"name":"mload","nativeSrc":"2271:5:101","nodeType":"YulIdentifier","src":"2271:5:101"},"nativeSrc":"2271:12:101","nodeType":"YulFunctionCall","src":"2271:12:101"}],"functionName":{"name":"mstore","nativeSrc":"2259:6:101","nodeType":"YulIdentifier","src":"2259:6:101"},"nativeSrc":"2259:25:101","nodeType":"YulFunctionCall","src":"2259:25:101"},"nativeSrc":"2259:25:101","nodeType":"YulExpressionStatement","src":"2259:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2304:3:101","nodeType":"YulIdentifier","src":"2304:3:101"},{"kind":"number","nativeSrc":"2309:4:101","nodeType":"YulLiteral","src":"2309:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2300:3:101","nodeType":"YulIdentifier","src":"2300:3:101"},"nativeSrc":"2300:14:101","nodeType":"YulFunctionCall","src":"2300:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2326:5:101","nodeType":"YulIdentifier","src":"2326:5:101"},{"kind":"number","nativeSrc":"2333:4:101","nodeType":"YulLiteral","src":"2333:4:101","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2322:3:101","nodeType":"YulIdentifier","src":"2322:3:101"},"nativeSrc":"2322:16:101","nodeType":"YulFunctionCall","src":"2322:16:101"}],"functionName":{"name":"mload","nativeSrc":"2316:5:101","nodeType":"YulIdentifier","src":"2316:5:101"},"nativeSrc":"2316:23:101","nodeType":"YulFunctionCall","src":"2316:23:101"}],"functionName":{"name":"mstore","nativeSrc":"2293:6:101","nodeType":"YulIdentifier","src":"2293:6:101"},"nativeSrc":"2293:47:101","nodeType":"YulFunctionCall","src":"2293:47:101"},"nativeSrc":"2293:47:101","nodeType":"YulExpressionStatement","src":"2293:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2360:3:101","nodeType":"YulIdentifier","src":"2360:3:101"},{"kind":"number","nativeSrc":"2365:4:101","nodeType":"YulLiteral","src":"2365:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"2356:3:101","nodeType":"YulIdentifier","src":"2356:3:101"},"nativeSrc":"2356:14:101","nodeType":"YulFunctionCall","src":"2356:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2382:5:101","nodeType":"YulIdentifier","src":"2382:5:101"},{"kind":"number","nativeSrc":"2389:4:101","nodeType":"YulLiteral","src":"2389:4:101","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"2378:3:101","nodeType":"YulIdentifier","src":"2378:3:101"},"nativeSrc":"2378:16:101","nodeType":"YulFunctionCall","src":"2378:16:101"}],"functionName":{"name":"mload","nativeSrc":"2372:5:101","nodeType":"YulIdentifier","src":"2372:5:101"},"nativeSrc":"2372:23:101","nodeType":"YulFunctionCall","src":"2372:23:101"}],"functionName":{"name":"mstore","nativeSrc":"2349:6:101","nodeType":"YulIdentifier","src":"2349:6:101"},"nativeSrc":"2349:47:101","nodeType":"YulFunctionCall","src":"2349:47:101"},"nativeSrc":"2349:47:101","nodeType":"YulExpressionStatement","src":"2349:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2416:3:101","nodeType":"YulIdentifier","src":"2416:3:101"},{"kind":"number","nativeSrc":"2421:4:101","nodeType":"YulLiteral","src":"2421:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"2412:3:101","nodeType":"YulIdentifier","src":"2412:3:101"},"nativeSrc":"2412:14:101","nodeType":"YulFunctionCall","src":"2412:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2438:5:101","nodeType":"YulIdentifier","src":"2438:5:101"},{"kind":"number","nativeSrc":"2445:4:101","nodeType":"YulLiteral","src":"2445:4:101","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"2434:3:101","nodeType":"YulIdentifier","src":"2434:3:101"},"nativeSrc":"2434:16:101","nodeType":"YulFunctionCall","src":"2434:16:101"}],"functionName":{"name":"mload","nativeSrc":"2428:5:101","nodeType":"YulIdentifier","src":"2428:5:101"},"nativeSrc":"2428:23:101","nodeType":"YulFunctionCall","src":"2428:23:101"}],"functionName":{"name":"mstore","nativeSrc":"2405:6:101","nodeType":"YulIdentifier","src":"2405:6:101"},"nativeSrc":"2405:47:101","nodeType":"YulFunctionCall","src":"2405:47:101"},"nativeSrc":"2405:47:101","nodeType":"YulExpressionStatement","src":"2405:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2472:3:101","nodeType":"YulIdentifier","src":"2472:3:101"},{"kind":"number","nativeSrc":"2477:4:101","nodeType":"YulLiteral","src":"2477:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"2468:3:101","nodeType":"YulIdentifier","src":"2468:3:101"},"nativeSrc":"2468:14:101","nodeType":"YulFunctionCall","src":"2468:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2494:5:101","nodeType":"YulIdentifier","src":"2494:5:101"},{"kind":"number","nativeSrc":"2501:4:101","nodeType":"YulLiteral","src":"2501:4:101","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"2490:3:101","nodeType":"YulIdentifier","src":"2490:3:101"},"nativeSrc":"2490:16:101","nodeType":"YulFunctionCall","src":"2490:16:101"}],"functionName":{"name":"mload","nativeSrc":"2484:5:101","nodeType":"YulIdentifier","src":"2484:5:101"},"nativeSrc":"2484:23:101","nodeType":"YulFunctionCall","src":"2484:23:101"}],"functionName":{"name":"mstore","nativeSrc":"2461:6:101","nodeType":"YulIdentifier","src":"2461:6:101"},"nativeSrc":"2461:47:101","nodeType":"YulFunctionCall","src":"2461:47:101"},"nativeSrc":"2461:47:101","nodeType":"YulExpressionStatement","src":"2461:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2528:3:101","nodeType":"YulIdentifier","src":"2528:3:101"},{"kind":"number","nativeSrc":"2533:4:101","nodeType":"YulLiteral","src":"2533:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"2524:3:101","nodeType":"YulIdentifier","src":"2524:3:101"},"nativeSrc":"2524:14:101","nodeType":"YulFunctionCall","src":"2524:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2550:5:101","nodeType":"YulIdentifier","src":"2550:5:101"},{"kind":"number","nativeSrc":"2557:4:101","nodeType":"YulLiteral","src":"2557:4:101","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"2546:3:101","nodeType":"YulIdentifier","src":"2546:3:101"},"nativeSrc":"2546:16:101","nodeType":"YulFunctionCall","src":"2546:16:101"}],"functionName":{"name":"mload","nativeSrc":"2540:5:101","nodeType":"YulIdentifier","src":"2540:5:101"},"nativeSrc":"2540:23:101","nodeType":"YulFunctionCall","src":"2540:23:101"}],"functionName":{"name":"mstore","nativeSrc":"2517:6:101","nodeType":"YulIdentifier","src":"2517:6:101"},"nativeSrc":"2517:47:101","nodeType":"YulFunctionCall","src":"2517:47:101"},"nativeSrc":"2517:47:101","nodeType":"YulExpressionStatement","src":"2517:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2584:3:101","nodeType":"YulIdentifier","src":"2584:3:101"},{"kind":"number","nativeSrc":"2589:4:101","nodeType":"YulLiteral","src":"2589:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"2580:3:101","nodeType":"YulIdentifier","src":"2580:3:101"},"nativeSrc":"2580:14:101","nodeType":"YulFunctionCall","src":"2580:14:101"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2606:5:101","nodeType":"YulIdentifier","src":"2606:5:101"},{"kind":"number","nativeSrc":"2613:4:101","nodeType":"YulLiteral","src":"2613:4:101","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"2602:3:101","nodeType":"YulIdentifier","src":"2602:3:101"},"nativeSrc":"2602:16:101","nodeType":"YulFunctionCall","src":"2602:16:101"}],"functionName":{"name":"mload","nativeSrc":"2596:5:101","nodeType":"YulIdentifier","src":"2596:5:101"},"nativeSrc":"2596:23:101","nodeType":"YulFunctionCall","src":"2596:23:101"}],"functionName":{"name":"mstore","nativeSrc":"2573:6:101","nodeType":"YulIdentifier","src":"2573:6:101"},"nativeSrc":"2573:47:101","nodeType":"YulFunctionCall","src":"2573:47:101"},"nativeSrc":"2573:47:101","nodeType":"YulExpressionStatement","src":"2573:47:101"}]},"name":"abi_encode_struct_Params","nativeSrc":"2199:427:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"2233:5:101","nodeType":"YulTypedName","src":"2233:5:101","type":""},{"name":"pos","nativeSrc":"2240:3:101","nodeType":"YulTypedName","src":"2240:3:101","type":""}],"src":"2199:427:101"},{"body":{"nativeSrc":"3004:433:101","nodeType":"YulBlock","src":"3004:433:101","statements":[{"nativeSrc":"3014:27:101","nodeType":"YulAssignment","src":"3014:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3026:9:101","nodeType":"YulIdentifier","src":"3026:9:101"},{"kind":"number","nativeSrc":"3037:3:101","nodeType":"YulLiteral","src":"3037:3:101","type":"","value":"768"}],"functionName":{"name":"add","nativeSrc":"3022:3:101","nodeType":"YulIdentifier","src":"3022:3:101"},"nativeSrc":"3022:19:101","nodeType":"YulFunctionCall","src":"3022:19:101"},"variableNames":[{"name":"tail","nativeSrc":"3014:4:101","nodeType":"YulIdentifier","src":"3014:4:101"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"3079:6:101","nodeType":"YulIdentifier","src":"3079:6:101"},{"name":"headStart","nativeSrc":"3087:9:101","nodeType":"YulIdentifier","src":"3087:9:101"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"3050:28:101","nodeType":"YulIdentifier","src":"3050:28:101"},"nativeSrc":"3050:47:101","nodeType":"YulFunctionCall","src":"3050:47:101"},"nativeSrc":"3050:47:101","nodeType":"YulExpressionStatement","src":"3050:47:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3117:9:101","nodeType":"YulIdentifier","src":"3117:9:101"},{"kind":"number","nativeSrc":"3128:3:101","nodeType":"YulLiteral","src":"3128:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"3113:3:101","nodeType":"YulIdentifier","src":"3113:3:101"},"nativeSrc":"3113:19:101","nodeType":"YulFunctionCall","src":"3113:19:101"},{"name":"value1","nativeSrc":"3134:6:101","nodeType":"YulIdentifier","src":"3134:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3106:6:101","nodeType":"YulIdentifier","src":"3106:6:101"},"nativeSrc":"3106:35:101","nodeType":"YulFunctionCall","src":"3106:35:101"},"nativeSrc":"3106:35:101","nodeType":"YulExpressionStatement","src":"3106:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3161:9:101","nodeType":"YulIdentifier","src":"3161:9:101"},{"kind":"number","nativeSrc":"3172:3:101","nodeType":"YulLiteral","src":"3172:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"3157:3:101","nodeType":"YulIdentifier","src":"3157:3:101"},"nativeSrc":"3157:19:101","nodeType":"YulFunctionCall","src":"3157:19:101"},{"name":"value2","nativeSrc":"3178:6:101","nodeType":"YulIdentifier","src":"3178:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3150:6:101","nodeType":"YulIdentifier","src":"3150:6:101"},"nativeSrc":"3150:35:101","nodeType":"YulFunctionCall","src":"3150:35:101"},"nativeSrc":"3150:35:101","nodeType":"YulExpressionStatement","src":"3150:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3205:9:101","nodeType":"YulIdentifier","src":"3205:9:101"},{"kind":"number","nativeSrc":"3216:3:101","nodeType":"YulLiteral","src":"3216:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"3201:3:101","nodeType":"YulIdentifier","src":"3201:3:101"},"nativeSrc":"3201:19:101","nodeType":"YulFunctionCall","src":"3201:19:101"},{"name":"value3","nativeSrc":"3222:6:101","nodeType":"YulIdentifier","src":"3222:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3194:6:101","nodeType":"YulIdentifier","src":"3194:6:101"},"nativeSrc":"3194:35:101","nodeType":"YulFunctionCall","src":"3194:35:101"},"nativeSrc":"3194:35:101","nodeType":"YulExpressionStatement","src":"3194:35:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3249:9:101","nodeType":"YulIdentifier","src":"3249:9:101"},{"kind":"number","nativeSrc":"3260:3:101","nodeType":"YulLiteral","src":"3260:3:101","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"3245:3:101","nodeType":"YulIdentifier","src":"3245:3:101"},"nativeSrc":"3245:19:101","nodeType":"YulFunctionCall","src":"3245:19:101"},{"arguments":[{"name":"value4","nativeSrc":"3270:6:101","nodeType":"YulIdentifier","src":"3270:6:101"},{"kind":"number","nativeSrc":"3278:12:101","nodeType":"YulLiteral","src":"3278:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"3266:3:101","nodeType":"YulIdentifier","src":"3266:3:101"},"nativeSrc":"3266:25:101","nodeType":"YulFunctionCall","src":"3266:25:101"}],"functionName":{"name":"mstore","nativeSrc":"3238:6:101","nodeType":"YulIdentifier","src":"3238:6:101"},"nativeSrc":"3238:54:101","nodeType":"YulFunctionCall","src":"3238:54:101"},"nativeSrc":"3238:54:101","nodeType":"YulExpressionStatement","src":"3238:54:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3312:9:101","nodeType":"YulIdentifier","src":"3312:9:101"},{"kind":"number","nativeSrc":"3323:3:101","nodeType":"YulLiteral","src":"3323:3:101","type":"","value":"512"}],"functionName":{"name":"add","nativeSrc":"3308:3:101","nodeType":"YulIdentifier","src":"3308:3:101"},"nativeSrc":"3308:19:101","nodeType":"YulFunctionCall","src":"3308:19:101"},{"arguments":[{"name":"value5","nativeSrc":"3333:6:101","nodeType":"YulIdentifier","src":"3333:6:101"},{"kind":"number","nativeSrc":"3341:26:101","nodeType":"YulLiteral","src":"3341:26:101","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"3329:3:101","nodeType":"YulIdentifier","src":"3329:3:101"},"nativeSrc":"3329:39:101","nodeType":"YulFunctionCall","src":"3329:39:101"}],"functionName":{"name":"mstore","nativeSrc":"3301:6:101","nodeType":"YulIdentifier","src":"3301:6:101"},"nativeSrc":"3301:68:101","nodeType":"YulFunctionCall","src":"3301:68:101"},"nativeSrc":"3301:68:101","nodeType":"YulExpressionStatement","src":"3301:68:101"},{"expression":{"arguments":[{"name":"value6","nativeSrc":"3403:6:101","nodeType":"YulIdentifier","src":"3403:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"3415:9:101","nodeType":"YulIdentifier","src":"3415:9:101"},{"kind":"number","nativeSrc":"3426:3:101","nodeType":"YulLiteral","src":"3426:3:101","type":"","value":"544"}],"functionName":{"name":"add","nativeSrc":"3411:3:101","nodeType":"YulIdentifier","src":"3411:3:101"},"nativeSrc":"3411:19:101","nodeType":"YulFunctionCall","src":"3411:19:101"}],"functionName":{"name":"abi_encode_struct_Params","nativeSrc":"3378:24:101","nodeType":"YulIdentifier","src":"3378:24:101"},"nativeSrc":"3378:53:101","nodeType":"YulFunctionCall","src":"3378:53:101"},"nativeSrc":"3378:53:101","nodeType":"YulExpressionStatement","src":"3378:53:101"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__fromStack_reversed","nativeSrc":"2631:806:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2925:9:101","nodeType":"YulTypedName","src":"2925:9:101","type":""},{"name":"value6","nativeSrc":"2936:6:101","nodeType":"YulTypedName","src":"2936:6:101","type":""},{"name":"value5","nativeSrc":"2944:6:101","nodeType":"YulTypedName","src":"2944:6:101","type":""},{"name":"value4","nativeSrc":"2952:6:101","nodeType":"YulTypedName","src":"2952:6:101","type":""},{"name":"value3","nativeSrc":"2960:6:101","nodeType":"YulTypedName","src":"2960:6:101","type":""},{"name":"value2","nativeSrc":"2968:6:101","nodeType":"YulTypedName","src":"2968:6:101","type":""},{"name":"value1","nativeSrc":"2976:6:101","nodeType":"YulTypedName","src":"2976:6:101","type":""},{"name":"value0","nativeSrc":"2984:6:101","nodeType":"YulTypedName","src":"2984:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2995:4:101","nodeType":"YulTypedName","src":"2995:4:101","type":""}],"src":"2631:806:101"},{"body":{"nativeSrc":"3729:364:101","nodeType":"YulBlock","src":"3729:364:101","statements":[{"nativeSrc":"3739:27:101","nodeType":"YulAssignment","src":"3739:27:101","value":{"arguments":[{"name":"headStart","nativeSrc":"3751:9:101","nodeType":"YulIdentifier","src":"3751:9:101"},{"kind":"number","nativeSrc":"3762:3:101","nodeType":"YulLiteral","src":"3762:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"3747:3:101","nodeType":"YulIdentifier","src":"3747:3:101"},"nativeSrc":"3747:19:101","nodeType":"YulFunctionCall","src":"3747:19:101"},"variableNames":[{"name":"tail","nativeSrc":"3739:4:101","nodeType":"YulIdentifier","src":"3739:4:101"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3782:9:101","nodeType":"YulIdentifier","src":"3782:9:101"},{"name":"value0","nativeSrc":"3793:6:101","nodeType":"YulIdentifier","src":"3793:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3775:6:101","nodeType":"YulIdentifier","src":"3775:6:101"},"nativeSrc":"3775:25:101","nodeType":"YulFunctionCall","src":"3775:25:101"},"nativeSrc":"3775:25:101","nodeType":"YulExpressionStatement","src":"3775:25:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3820:9:101","nodeType":"YulIdentifier","src":"3820:9:101"},{"kind":"number","nativeSrc":"3831:2:101","nodeType":"YulLiteral","src":"3831:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3816:3:101","nodeType":"YulIdentifier","src":"3816:3:101"},"nativeSrc":"3816:18:101","nodeType":"YulFunctionCall","src":"3816:18:101"},{"name":"value1","nativeSrc":"3836:6:101","nodeType":"YulIdentifier","src":"3836:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3809:6:101","nodeType":"YulIdentifier","src":"3809:6:101"},"nativeSrc":"3809:34:101","nodeType":"YulFunctionCall","src":"3809:34:101"},"nativeSrc":"3809:34:101","nodeType":"YulExpressionStatement","src":"3809:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3863:9:101","nodeType":"YulIdentifier","src":"3863:9:101"},{"kind":"number","nativeSrc":"3874:2:101","nodeType":"YulLiteral","src":"3874:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3859:3:101","nodeType":"YulIdentifier","src":"3859:3:101"},"nativeSrc":"3859:18:101","nodeType":"YulFunctionCall","src":"3859:18:101"},{"name":"value2","nativeSrc":"3879:6:101","nodeType":"YulIdentifier","src":"3879:6:101"}],"functionName":{"name":"mstore","nativeSrc":"3852:6:101","nodeType":"YulIdentifier","src":"3852:6:101"},"nativeSrc":"3852:34:101","nodeType":"YulFunctionCall","src":"3852:34:101"},"nativeSrc":"3852:34:101","nodeType":"YulExpressionStatement","src":"3852:34:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3906:9:101","nodeType":"YulIdentifier","src":"3906:9:101"},{"kind":"number","nativeSrc":"3917:2:101","nodeType":"YulLiteral","src":"3917:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3902:3:101","nodeType":"YulIdentifier","src":"3902:3:101"},"nativeSrc":"3902:18:101","nodeType":"YulFunctionCall","src":"3902:18:101"},{"arguments":[{"name":"value3","nativeSrc":"3926:6:101","nodeType":"YulIdentifier","src":"3926:6:101"},{"kind":"number","nativeSrc":"3934:12:101","nodeType":"YulLiteral","src":"3934:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"3922:3:101","nodeType":"YulIdentifier","src":"3922:3:101"},"nativeSrc":"3922:25:101","nodeType":"YulFunctionCall","src":"3922:25:101"}],"functionName":{"name":"mstore","nativeSrc":"3895:6:101","nodeType":"YulIdentifier","src":"3895:6:101"},"nativeSrc":"3895:53:101","nodeType":"YulFunctionCall","src":"3895:53:101"},"nativeSrc":"3895:53:101","nodeType":"YulExpressionStatement","src":"3895:53:101"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3968:9:101","nodeType":"YulIdentifier","src":"3968:9:101"},{"kind":"number","nativeSrc":"3979:3:101","nodeType":"YulLiteral","src":"3979:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"3964:3:101","nodeType":"YulIdentifier","src":"3964:3:101"},"nativeSrc":"3964:19:101","nodeType":"YulFunctionCall","src":"3964:19:101"},{"arguments":[{"name":"value4","nativeSrc":"3989:6:101","nodeType":"YulIdentifier","src":"3989:6:101"},{"kind":"number","nativeSrc":"3997:26:101","nodeType":"YulLiteral","src":"3997:26:101","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"3985:3:101","nodeType":"YulIdentifier","src":"3985:3:101"},"nativeSrc":"3985:39:101","nodeType":"YulFunctionCall","src":"3985:39:101"}],"functionName":{"name":"mstore","nativeSrc":"3957:6:101","nodeType":"YulIdentifier","src":"3957:6:101"},"nativeSrc":"3957:68:101","nodeType":"YulFunctionCall","src":"3957:68:101"},"nativeSrc":"3957:68:101","nodeType":"YulExpressionStatement","src":"3957:68:101"},{"expression":{"arguments":[{"name":"value5","nativeSrc":"4059:6:101","nodeType":"YulIdentifier","src":"4059:6:101"},{"arguments":[{"name":"headStart","nativeSrc":"4071:9:101","nodeType":"YulIdentifier","src":"4071:9:101"},{"kind":"number","nativeSrc":"4082:3:101","nodeType":"YulLiteral","src":"4082:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"4067:3:101","nodeType":"YulIdentifier","src":"4067:3:101"},"nativeSrc":"4067:19:101","nodeType":"YulFunctionCall","src":"4067:19:101"}],"functionName":{"name":"abi_encode_struct_Params","nativeSrc":"4034:24:101","nodeType":"YulIdentifier","src":"4034:24:101"},"nativeSrc":"4034:53:101","nodeType":"YulFunctionCall","src":"4034:53:101"},"nativeSrc":"4034:53:101","nodeType":"YulExpressionStatement","src":"4034:53:101"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__to_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__fromStack_reversed","nativeSrc":"3442:651:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3658:9:101","nodeType":"YulTypedName","src":"3658:9:101","type":""},{"name":"value5","nativeSrc":"3669:6:101","nodeType":"YulTypedName","src":"3669:6:101","type":""},{"name":"value4","nativeSrc":"3677:6:101","nodeType":"YulTypedName","src":"3677:6:101","type":""},{"name":"value3","nativeSrc":"3685:6:101","nodeType":"YulTypedName","src":"3685:6:101","type":""},{"name":"value2","nativeSrc":"3693:6:101","nodeType":"YulTypedName","src":"3693:6:101","type":""},{"name":"value1","nativeSrc":"3701:6:101","nodeType":"YulTypedName","src":"3701:6:101","type":""},{"name":"value0","nativeSrc":"3709:6:101","nodeType":"YulTypedName","src":"3709:6:101","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3720:4:101","nodeType":"YulTypedName","src":"3720:4:101","type":""}],"src":"3442:651:101"},{"body":{"nativeSrc":"4139:306:101","nodeType":"YulBlock","src":"4139:306:101","statements":[{"nativeSrc":"4149:19:101","nodeType":"YulAssignment","src":"4149:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"4165:2:101","nodeType":"YulLiteral","src":"4165:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"4159:5:101","nodeType":"YulIdentifier","src":"4159:5:101"},"nativeSrc":"4159:9:101","nodeType":"YulFunctionCall","src":"4159:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"4149:6:101","nodeType":"YulIdentifier","src":"4149:6:101"}]},{"nativeSrc":"4177:37:101","nodeType":"YulVariableDeclaration","src":"4177:37:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"4199:6:101","nodeType":"YulIdentifier","src":"4199:6:101"},{"kind":"number","nativeSrc":"4207:6:101","nodeType":"YulLiteral","src":"4207:6:101","type":"","value":"0x0180"}],"functionName":{"name":"add","nativeSrc":"4195:3:101","nodeType":"YulIdentifier","src":"4195:3:101"},"nativeSrc":"4195:19:101","nodeType":"YulFunctionCall","src":"4195:19:101"},"variables":[{"name":"newFreePtr","nativeSrc":"4181:10:101","nodeType":"YulTypedName","src":"4181:10:101","type":""}]},{"body":{"nativeSrc":"4297:111:101","nodeType":"YulBlock","src":"4297:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4318:1:101","nodeType":"YulLiteral","src":"4318:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4325:3:101","nodeType":"YulLiteral","src":"4325:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"4330:10:101","nodeType":"YulLiteral","src":"4330:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4321:3:101","nodeType":"YulIdentifier","src":"4321:3:101"},"nativeSrc":"4321:20:101","nodeType":"YulFunctionCall","src":"4321:20:101"}],"functionName":{"name":"mstore","nativeSrc":"4311:6:101","nodeType":"YulIdentifier","src":"4311:6:101"},"nativeSrc":"4311:31:101","nodeType":"YulFunctionCall","src":"4311:31:101"},"nativeSrc":"4311:31:101","nodeType":"YulExpressionStatement","src":"4311:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4362:1:101","nodeType":"YulLiteral","src":"4362:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"4365:4:101","nodeType":"YulLiteral","src":"4365:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"4355:6:101","nodeType":"YulIdentifier","src":"4355:6:101"},"nativeSrc":"4355:15:101","nodeType":"YulFunctionCall","src":"4355:15:101"},"nativeSrc":"4355:15:101","nodeType":"YulExpressionStatement","src":"4355:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4390:1:101","nodeType":"YulLiteral","src":"4390:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4393:4:101","nodeType":"YulLiteral","src":"4393:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4383:6:101","nodeType":"YulIdentifier","src":"4383:6:101"},"nativeSrc":"4383:15:101","nodeType":"YulFunctionCall","src":"4383:15:101"},"nativeSrc":"4383:15:101","nodeType":"YulExpressionStatement","src":"4383:15:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"4232:10:101","nodeType":"YulIdentifier","src":"4232:10:101"},{"kind":"number","nativeSrc":"4244:18:101","nodeType":"YulLiteral","src":"4244:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4229:2:101","nodeType":"YulIdentifier","src":"4229:2:101"},"nativeSrc":"4229:34:101","nodeType":"YulFunctionCall","src":"4229:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"4268:10:101","nodeType":"YulIdentifier","src":"4268:10:101"},{"name":"memPtr","nativeSrc":"4280:6:101","nodeType":"YulIdentifier","src":"4280:6:101"}],"functionName":{"name":"lt","nativeSrc":"4265:2:101","nodeType":"YulIdentifier","src":"4265:2:101"},"nativeSrc":"4265:22:101","nodeType":"YulFunctionCall","src":"4265:22:101"}],"functionName":{"name":"or","nativeSrc":"4226:2:101","nodeType":"YulIdentifier","src":"4226:2:101"},"nativeSrc":"4226:62:101","nodeType":"YulFunctionCall","src":"4226:62:101"},"nativeSrc":"4223:185:101","nodeType":"YulIf","src":"4223:185:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4424:2:101","nodeType":"YulLiteral","src":"4424:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"4428:10:101","nodeType":"YulIdentifier","src":"4428:10:101"}],"functionName":{"name":"mstore","nativeSrc":"4417:6:101","nodeType":"YulIdentifier","src":"4417:6:101"},"nativeSrc":"4417:22:101","nodeType":"YulFunctionCall","src":"4417:22:101"},"nativeSrc":"4417:22:101","nodeType":"YulExpressionStatement","src":"4417:22:101"}]},"name":"allocate_memory","nativeSrc":"4098:347:101","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"4128:6:101","nodeType":"YulTypedName","src":"4128:6:101","type":""}],"src":"4098:347:101"},{"body":{"nativeSrc":"4498:117:101","nodeType":"YulBlock","src":"4498:117:101","statements":[{"nativeSrc":"4508:29:101","nodeType":"YulAssignment","src":"4508:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"4530:6:101","nodeType":"YulIdentifier","src":"4530:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"4517:12:101","nodeType":"YulIdentifier","src":"4517:12:101"},"nativeSrc":"4517:20:101","nodeType":"YulFunctionCall","src":"4517:20:101"},"variableNames":[{"name":"value","nativeSrc":"4508:5:101","nodeType":"YulIdentifier","src":"4508:5:101"}]},{"body":{"nativeSrc":"4593:16:101","nodeType":"YulBlock","src":"4593:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4602:1:101","nodeType":"YulLiteral","src":"4602:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4605:1:101","nodeType":"YulLiteral","src":"4605:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4595:6:101","nodeType":"YulIdentifier","src":"4595:6:101"},"nativeSrc":"4595:12:101","nodeType":"YulFunctionCall","src":"4595:12:101"},"nativeSrc":"4595:12:101","nodeType":"YulExpressionStatement","src":"4595:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4559:5:101","nodeType":"YulIdentifier","src":"4559:5:101"},{"arguments":[{"name":"value","nativeSrc":"4570:5:101","nodeType":"YulIdentifier","src":"4570:5:101"},{"kind":"number","nativeSrc":"4577:12:101","nodeType":"YulLiteral","src":"4577:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"4566:3:101","nodeType":"YulIdentifier","src":"4566:3:101"},"nativeSrc":"4566:24:101","nodeType":"YulFunctionCall","src":"4566:24:101"}],"functionName":{"name":"eq","nativeSrc":"4556:2:101","nodeType":"YulIdentifier","src":"4556:2:101"},"nativeSrc":"4556:35:101","nodeType":"YulFunctionCall","src":"4556:35:101"}],"functionName":{"name":"iszero","nativeSrc":"4549:6:101","nodeType":"YulIdentifier","src":"4549:6:101"},"nativeSrc":"4549:43:101","nodeType":"YulFunctionCall","src":"4549:43:101"},"nativeSrc":"4546:63:101","nodeType":"YulIf","src":"4546:63:101"}]},"name":"abi_decode_uint40","nativeSrc":"4450:165:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"4477:6:101","nodeType":"YulTypedName","src":"4477:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"4488:5:101","nodeType":"YulTypedName","src":"4488:5:101","type":""}],"src":"4450:165:101"},{"body":{"nativeSrc":"4687:1414:101","nodeType":"YulBlock","src":"4687:1414:101","statements":[{"body":{"nativeSrc":"4733:16:101","nodeType":"YulBlock","src":"4733:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4742:1:101","nodeType":"YulLiteral","src":"4742:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"4745:1:101","nodeType":"YulLiteral","src":"4745:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4735:6:101","nodeType":"YulIdentifier","src":"4735:6:101"},"nativeSrc":"4735:12:101","nodeType":"YulFunctionCall","src":"4735:12:101"},"nativeSrc":"4735:12:101","nodeType":"YulExpressionStatement","src":"4735:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"4708:3:101","nodeType":"YulIdentifier","src":"4708:3:101"},{"name":"headStart","nativeSrc":"4713:9:101","nodeType":"YulIdentifier","src":"4713:9:101"}],"functionName":{"name":"sub","nativeSrc":"4704:3:101","nodeType":"YulIdentifier","src":"4704:3:101"},"nativeSrc":"4704:19:101","nodeType":"YulFunctionCall","src":"4704:19:101"},{"kind":"number","nativeSrc":"4725:6:101","nodeType":"YulLiteral","src":"4725:6:101","type":"","value":"0x0180"}],"functionName":{"name":"slt","nativeSrc":"4700:3:101","nodeType":"YulIdentifier","src":"4700:3:101"},"nativeSrc":"4700:32:101","nodeType":"YulFunctionCall","src":"4700:32:101"},"nativeSrc":"4697:52:101","nodeType":"YulIf","src":"4697:52:101"},{"nativeSrc":"4758:26:101","nodeType":"YulAssignment","src":"4758:26:101","value":{"arguments":[],"functionName":{"name":"allocate_memory","nativeSrc":"4767:15:101","nodeType":"YulIdentifier","src":"4767:15:101"},"nativeSrc":"4767:17:101","nodeType":"YulFunctionCall","src":"4767:17:101"},"variableNames":[{"name":"value","nativeSrc":"4758:5:101","nodeType":"YulIdentifier","src":"4758:5:101"}]},{"nativeSrc":"4793:16:101","nodeType":"YulVariableDeclaration","src":"4793:16:101","value":{"kind":"number","nativeSrc":"4808:1:101","nodeType":"YulLiteral","src":"4808:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"4797:7:101","nodeType":"YulTypedName","src":"4797:7:101","type":""}]},{"nativeSrc":"4818:34:101","nodeType":"YulAssignment","src":"4818:34:101","value":{"arguments":[{"name":"headStart","nativeSrc":"4842:9:101","nodeType":"YulIdentifier","src":"4842:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"4829:12:101","nodeType":"YulIdentifier","src":"4829:12:101"},"nativeSrc":"4829:23:101","nodeType":"YulFunctionCall","src":"4829:23:101"},"variableNames":[{"name":"value_1","nativeSrc":"4818:7:101","nodeType":"YulIdentifier","src":"4818:7:101"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4868:5:101","nodeType":"YulIdentifier","src":"4868:5:101"},{"name":"value_1","nativeSrc":"4875:7:101","nodeType":"YulIdentifier","src":"4875:7:101"}],"functionName":{"name":"mstore","nativeSrc":"4861:6:101","nodeType":"YulIdentifier","src":"4861:6:101"},"nativeSrc":"4861:22:101","nodeType":"YulFunctionCall","src":"4861:22:101"},"nativeSrc":"4861:22:101","nodeType":"YulExpressionStatement","src":"4861:22:101"},{"nativeSrc":"4892:16:101","nodeType":"YulVariableDeclaration","src":"4892:16:101","value":{"kind":"number","nativeSrc":"4907:1:101","nodeType":"YulLiteral","src":"4907:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"4896:7:101","nodeType":"YulTypedName","src":"4896:7:101","type":""}]},{"nativeSrc":"4917:43:101","nodeType":"YulAssignment","src":"4917:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4945:9:101","nodeType":"YulIdentifier","src":"4945:9:101"},{"kind":"number","nativeSrc":"4956:2:101","nodeType":"YulLiteral","src":"4956:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4941:3:101","nodeType":"YulIdentifier","src":"4941:3:101"},"nativeSrc":"4941:18:101","nodeType":"YulFunctionCall","src":"4941:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"4928:12:101","nodeType":"YulIdentifier","src":"4928:12:101"},"nativeSrc":"4928:32:101","nodeType":"YulFunctionCall","src":"4928:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"4917:7:101","nodeType":"YulIdentifier","src":"4917:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4980:5:101","nodeType":"YulIdentifier","src":"4980:5:101"},{"kind":"number","nativeSrc":"4987:2:101","nodeType":"YulLiteral","src":"4987:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4976:3:101","nodeType":"YulIdentifier","src":"4976:3:101"},"nativeSrc":"4976:14:101","nodeType":"YulFunctionCall","src":"4976:14:101"},{"name":"value_2","nativeSrc":"4992:7:101","nodeType":"YulIdentifier","src":"4992:7:101"}],"functionName":{"name":"mstore","nativeSrc":"4969:6:101","nodeType":"YulIdentifier","src":"4969:6:101"},"nativeSrc":"4969:31:101","nodeType":"YulFunctionCall","src":"4969:31:101"},"nativeSrc":"4969:31:101","nodeType":"YulExpressionStatement","src":"4969:31:101"},{"nativeSrc":"5009:16:101","nodeType":"YulVariableDeclaration","src":"5009:16:101","value":{"kind":"number","nativeSrc":"5024:1:101","nodeType":"YulLiteral","src":"5024:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"5013:7:101","nodeType":"YulTypedName","src":"5013:7:101","type":""}]},{"nativeSrc":"5034:43:101","nodeType":"YulAssignment","src":"5034:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5062:9:101","nodeType":"YulIdentifier","src":"5062:9:101"},{"kind":"number","nativeSrc":"5073:2:101","nodeType":"YulLiteral","src":"5073:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5058:3:101","nodeType":"YulIdentifier","src":"5058:3:101"},"nativeSrc":"5058:18:101","nodeType":"YulFunctionCall","src":"5058:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"5045:12:101","nodeType":"YulIdentifier","src":"5045:12:101"},"nativeSrc":"5045:32:101","nodeType":"YulFunctionCall","src":"5045:32:101"},"variableNames":[{"name":"value_3","nativeSrc":"5034:7:101","nodeType":"YulIdentifier","src":"5034:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5097:5:101","nodeType":"YulIdentifier","src":"5097:5:101"},{"kind":"number","nativeSrc":"5104:2:101","nodeType":"YulLiteral","src":"5104:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5093:3:101","nodeType":"YulIdentifier","src":"5093:3:101"},"nativeSrc":"5093:14:101","nodeType":"YulFunctionCall","src":"5093:14:101"},{"name":"value_3","nativeSrc":"5109:7:101","nodeType":"YulIdentifier","src":"5109:7:101"}],"functionName":{"name":"mstore","nativeSrc":"5086:6:101","nodeType":"YulIdentifier","src":"5086:6:101"},"nativeSrc":"5086:31:101","nodeType":"YulFunctionCall","src":"5086:31:101"},"nativeSrc":"5086:31:101","nodeType":"YulExpressionStatement","src":"5086:31:101"},{"nativeSrc":"5126:16:101","nodeType":"YulVariableDeclaration","src":"5126:16:101","value":{"kind":"number","nativeSrc":"5141:1:101","nodeType":"YulLiteral","src":"5141:1:101","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"5130:7:101","nodeType":"YulTypedName","src":"5130:7:101","type":""}]},{"nativeSrc":"5151:43:101","nodeType":"YulAssignment","src":"5151:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5179:9:101","nodeType":"YulIdentifier","src":"5179:9:101"},{"kind":"number","nativeSrc":"5190:2:101","nodeType":"YulLiteral","src":"5190:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5175:3:101","nodeType":"YulIdentifier","src":"5175:3:101"},"nativeSrc":"5175:18:101","nodeType":"YulFunctionCall","src":"5175:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"5162:12:101","nodeType":"YulIdentifier","src":"5162:12:101"},"nativeSrc":"5162:32:101","nodeType":"YulFunctionCall","src":"5162:32:101"},"variableNames":[{"name":"value_4","nativeSrc":"5151:7:101","nodeType":"YulIdentifier","src":"5151:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5214:5:101","nodeType":"YulIdentifier","src":"5214:5:101"},{"kind":"number","nativeSrc":"5221:2:101","nodeType":"YulLiteral","src":"5221:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5210:3:101","nodeType":"YulIdentifier","src":"5210:3:101"},"nativeSrc":"5210:14:101","nodeType":"YulFunctionCall","src":"5210:14:101"},{"name":"value_4","nativeSrc":"5226:7:101","nodeType":"YulIdentifier","src":"5226:7:101"}],"functionName":{"name":"mstore","nativeSrc":"5203:6:101","nodeType":"YulIdentifier","src":"5203:6:101"},"nativeSrc":"5203:31:101","nodeType":"YulFunctionCall","src":"5203:31:101"},"nativeSrc":"5203:31:101","nodeType":"YulExpressionStatement","src":"5203:31:101"},{"nativeSrc":"5243:16:101","nodeType":"YulVariableDeclaration","src":"5243:16:101","value":{"kind":"number","nativeSrc":"5258:1:101","nodeType":"YulLiteral","src":"5258:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"5247:7:101","nodeType":"YulTypedName","src":"5247:7:101","type":""}]},{"nativeSrc":"5268:44:101","nodeType":"YulAssignment","src":"5268:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5296:9:101","nodeType":"YulIdentifier","src":"5296:9:101"},{"kind":"number","nativeSrc":"5307:3:101","nodeType":"YulLiteral","src":"5307:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"5292:3:101","nodeType":"YulIdentifier","src":"5292:3:101"},"nativeSrc":"5292:19:101","nodeType":"YulFunctionCall","src":"5292:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"5279:12:101","nodeType":"YulIdentifier","src":"5279:12:101"},"nativeSrc":"5279:33:101","nodeType":"YulFunctionCall","src":"5279:33:101"},"variableNames":[{"name":"value_5","nativeSrc":"5268:7:101","nodeType":"YulIdentifier","src":"5268:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5332:5:101","nodeType":"YulIdentifier","src":"5332:5:101"},{"kind":"number","nativeSrc":"5339:3:101","nodeType":"YulLiteral","src":"5339:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"5328:3:101","nodeType":"YulIdentifier","src":"5328:3:101"},"nativeSrc":"5328:15:101","nodeType":"YulFunctionCall","src":"5328:15:101"},{"name":"value_5","nativeSrc":"5345:7:101","nodeType":"YulIdentifier","src":"5345:7:101"}],"functionName":{"name":"mstore","nativeSrc":"5321:6:101","nodeType":"YulIdentifier","src":"5321:6:101"},"nativeSrc":"5321:32:101","nodeType":"YulFunctionCall","src":"5321:32:101"},"nativeSrc":"5321:32:101","nodeType":"YulExpressionStatement","src":"5321:32:101"},{"nativeSrc":"5362:16:101","nodeType":"YulVariableDeclaration","src":"5362:16:101","value":{"kind":"number","nativeSrc":"5377:1:101","nodeType":"YulLiteral","src":"5377:1:101","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"5366:7:101","nodeType":"YulTypedName","src":"5366:7:101","type":""}]},{"nativeSrc":"5387:44:101","nodeType":"YulAssignment","src":"5387:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5415:9:101","nodeType":"YulIdentifier","src":"5415:9:101"},{"kind":"number","nativeSrc":"5426:3:101","nodeType":"YulLiteral","src":"5426:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"5411:3:101","nodeType":"YulIdentifier","src":"5411:3:101"},"nativeSrc":"5411:19:101","nodeType":"YulFunctionCall","src":"5411:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"5398:12:101","nodeType":"YulIdentifier","src":"5398:12:101"},"nativeSrc":"5398:33:101","nodeType":"YulFunctionCall","src":"5398:33:101"},"variableNames":[{"name":"value_6","nativeSrc":"5387:7:101","nodeType":"YulIdentifier","src":"5387:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5451:5:101","nodeType":"YulIdentifier","src":"5451:5:101"},{"kind":"number","nativeSrc":"5458:3:101","nodeType":"YulLiteral","src":"5458:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"5447:3:101","nodeType":"YulIdentifier","src":"5447:3:101"},"nativeSrc":"5447:15:101","nodeType":"YulFunctionCall","src":"5447:15:101"},{"name":"value_6","nativeSrc":"5464:7:101","nodeType":"YulIdentifier","src":"5464:7:101"}],"functionName":{"name":"mstore","nativeSrc":"5440:6:101","nodeType":"YulIdentifier","src":"5440:6:101"},"nativeSrc":"5440:32:101","nodeType":"YulFunctionCall","src":"5440:32:101"},"nativeSrc":"5440:32:101","nodeType":"YulExpressionStatement","src":"5440:32:101"},{"nativeSrc":"5481:16:101","nodeType":"YulVariableDeclaration","src":"5481:16:101","value":{"kind":"number","nativeSrc":"5496:1:101","nodeType":"YulLiteral","src":"5496:1:101","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"5485:7:101","nodeType":"YulTypedName","src":"5485:7:101","type":""}]},{"nativeSrc":"5506:44:101","nodeType":"YulAssignment","src":"5506:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5534:9:101","nodeType":"YulIdentifier","src":"5534:9:101"},{"kind":"number","nativeSrc":"5545:3:101","nodeType":"YulLiteral","src":"5545:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"5530:3:101","nodeType":"YulIdentifier","src":"5530:3:101"},"nativeSrc":"5530:19:101","nodeType":"YulFunctionCall","src":"5530:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"5517:12:101","nodeType":"YulIdentifier","src":"5517:12:101"},"nativeSrc":"5517:33:101","nodeType":"YulFunctionCall","src":"5517:33:101"},"variableNames":[{"name":"value_7","nativeSrc":"5506:7:101","nodeType":"YulIdentifier","src":"5506:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5570:5:101","nodeType":"YulIdentifier","src":"5570:5:101"},{"kind":"number","nativeSrc":"5577:3:101","nodeType":"YulLiteral","src":"5577:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"5566:3:101","nodeType":"YulIdentifier","src":"5566:3:101"},"nativeSrc":"5566:15:101","nodeType":"YulFunctionCall","src":"5566:15:101"},{"name":"value_7","nativeSrc":"5583:7:101","nodeType":"YulIdentifier","src":"5583:7:101"}],"functionName":{"name":"mstore","nativeSrc":"5559:6:101","nodeType":"YulIdentifier","src":"5559:6:101"},"nativeSrc":"5559:32:101","nodeType":"YulFunctionCall","src":"5559:32:101"},"nativeSrc":"5559:32:101","nodeType":"YulExpressionStatement","src":"5559:32:101"},{"nativeSrc":"5600:16:101","nodeType":"YulVariableDeclaration","src":"5600:16:101","value":{"kind":"number","nativeSrc":"5615:1:101","nodeType":"YulLiteral","src":"5615:1:101","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"5604:7:101","nodeType":"YulTypedName","src":"5604:7:101","type":""}]},{"nativeSrc":"5625:44:101","nodeType":"YulAssignment","src":"5625:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5653:9:101","nodeType":"YulIdentifier","src":"5653:9:101"},{"kind":"number","nativeSrc":"5664:3:101","nodeType":"YulLiteral","src":"5664:3:101","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"5649:3:101","nodeType":"YulIdentifier","src":"5649:3:101"},"nativeSrc":"5649:19:101","nodeType":"YulFunctionCall","src":"5649:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"5636:12:101","nodeType":"YulIdentifier","src":"5636:12:101"},"nativeSrc":"5636:33:101","nodeType":"YulFunctionCall","src":"5636:33:101"},"variableNames":[{"name":"value_8","nativeSrc":"5625:7:101","nodeType":"YulIdentifier","src":"5625:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5689:5:101","nodeType":"YulIdentifier","src":"5689:5:101"},{"kind":"number","nativeSrc":"5696:3:101","nodeType":"YulLiteral","src":"5696:3:101","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"5685:3:101","nodeType":"YulIdentifier","src":"5685:3:101"},"nativeSrc":"5685:15:101","nodeType":"YulFunctionCall","src":"5685:15:101"},{"name":"value_8","nativeSrc":"5702:7:101","nodeType":"YulIdentifier","src":"5702:7:101"}],"functionName":{"name":"mstore","nativeSrc":"5678:6:101","nodeType":"YulIdentifier","src":"5678:6:101"},"nativeSrc":"5678:32:101","nodeType":"YulFunctionCall","src":"5678:32:101"},"nativeSrc":"5678:32:101","nodeType":"YulExpressionStatement","src":"5678:32:101"},{"nativeSrc":"5719:16:101","nodeType":"YulVariableDeclaration","src":"5719:16:101","value":{"kind":"number","nativeSrc":"5734:1:101","nodeType":"YulLiteral","src":"5734:1:101","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"5723:7:101","nodeType":"YulTypedName","src":"5723:7:101","type":""}]},{"nativeSrc":"5744:44:101","nodeType":"YulAssignment","src":"5744:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5772:9:101","nodeType":"YulIdentifier","src":"5772:9:101"},{"kind":"number","nativeSrc":"5783:3:101","nodeType":"YulLiteral","src":"5783:3:101","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"5768:3:101","nodeType":"YulIdentifier","src":"5768:3:101"},"nativeSrc":"5768:19:101","nodeType":"YulFunctionCall","src":"5768:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"5755:12:101","nodeType":"YulIdentifier","src":"5755:12:101"},"nativeSrc":"5755:33:101","nodeType":"YulFunctionCall","src":"5755:33:101"},"variableNames":[{"name":"value_9","nativeSrc":"5744:7:101","nodeType":"YulIdentifier","src":"5744:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5808:5:101","nodeType":"YulIdentifier","src":"5808:5:101"},{"kind":"number","nativeSrc":"5815:3:101","nodeType":"YulLiteral","src":"5815:3:101","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"5804:3:101","nodeType":"YulIdentifier","src":"5804:3:101"},"nativeSrc":"5804:15:101","nodeType":"YulFunctionCall","src":"5804:15:101"},{"name":"value_9","nativeSrc":"5821:7:101","nodeType":"YulIdentifier","src":"5821:7:101"}],"functionName":{"name":"mstore","nativeSrc":"5797:6:101","nodeType":"YulIdentifier","src":"5797:6:101"},"nativeSrc":"5797:32:101","nodeType":"YulFunctionCall","src":"5797:32:101"},"nativeSrc":"5797:32:101","nodeType":"YulExpressionStatement","src":"5797:32:101"},{"nativeSrc":"5838:17:101","nodeType":"YulVariableDeclaration","src":"5838:17:101","value":{"kind":"number","nativeSrc":"5854:1:101","nodeType":"YulLiteral","src":"5854:1:101","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"5842:8:101","nodeType":"YulTypedName","src":"5842:8:101","type":""}]},{"nativeSrc":"5864:45:101","nodeType":"YulAssignment","src":"5864:45:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5893:9:101","nodeType":"YulIdentifier","src":"5893:9:101"},{"kind":"number","nativeSrc":"5904:3:101","nodeType":"YulLiteral","src":"5904:3:101","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"5889:3:101","nodeType":"YulIdentifier","src":"5889:3:101"},"nativeSrc":"5889:19:101","nodeType":"YulFunctionCall","src":"5889:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"5876:12:101","nodeType":"YulIdentifier","src":"5876:12:101"},"nativeSrc":"5876:33:101","nodeType":"YulFunctionCall","src":"5876:33:101"},"variableNames":[{"name":"value_10","nativeSrc":"5864:8:101","nodeType":"YulIdentifier","src":"5864:8:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5929:5:101","nodeType":"YulIdentifier","src":"5929:5:101"},{"kind":"number","nativeSrc":"5936:3:101","nodeType":"YulLiteral","src":"5936:3:101","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"5925:3:101","nodeType":"YulIdentifier","src":"5925:3:101"},"nativeSrc":"5925:15:101","nodeType":"YulFunctionCall","src":"5925:15:101"},{"name":"value_10","nativeSrc":"5942:8:101","nodeType":"YulIdentifier","src":"5942:8:101"}],"functionName":{"name":"mstore","nativeSrc":"5918:6:101","nodeType":"YulIdentifier","src":"5918:6:101"},"nativeSrc":"5918:33:101","nodeType":"YulFunctionCall","src":"5918:33:101"},"nativeSrc":"5918:33:101","nodeType":"YulExpressionStatement","src":"5918:33:101"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5971:5:101","nodeType":"YulIdentifier","src":"5971:5:101"},{"kind":"number","nativeSrc":"5978:3:101","nodeType":"YulLiteral","src":"5978:3:101","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"5967:3:101","nodeType":"YulIdentifier","src":"5967:3:101"},"nativeSrc":"5967:15:101","nodeType":"YulFunctionCall","src":"5967:15:101"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6006:9:101","nodeType":"YulIdentifier","src":"6006:9:101"},{"kind":"number","nativeSrc":"6017:3:101","nodeType":"YulLiteral","src":"6017:3:101","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"6002:3:101","nodeType":"YulIdentifier","src":"6002:3:101"},"nativeSrc":"6002:19:101","nodeType":"YulFunctionCall","src":"6002:19:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"5984:17:101","nodeType":"YulIdentifier","src":"5984:17:101"},"nativeSrc":"5984:38:101","nodeType":"YulFunctionCall","src":"5984:38:101"}],"functionName":{"name":"mstore","nativeSrc":"5960:6:101","nodeType":"YulIdentifier","src":"5960:6:101"},"nativeSrc":"5960:63:101","nodeType":"YulFunctionCall","src":"5960:63:101"},"nativeSrc":"5960:63:101","nodeType":"YulExpressionStatement","src":"5960:63:101"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6043:5:101","nodeType":"YulIdentifier","src":"6043:5:101"},{"kind":"number","nativeSrc":"6050:3:101","nodeType":"YulLiteral","src":"6050:3:101","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"6039:3:101","nodeType":"YulIdentifier","src":"6039:3:101"},"nativeSrc":"6039:15:101","nodeType":"YulFunctionCall","src":"6039:15:101"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6078:9:101","nodeType":"YulIdentifier","src":"6078:9:101"},{"kind":"number","nativeSrc":"6089:3:101","nodeType":"YulLiteral","src":"6089:3:101","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"6074:3:101","nodeType":"YulIdentifier","src":"6074:3:101"},"nativeSrc":"6074:19:101","nodeType":"YulFunctionCall","src":"6074:19:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"6056:17:101","nodeType":"YulIdentifier","src":"6056:17:101"},"nativeSrc":"6056:38:101","nodeType":"YulFunctionCall","src":"6056:38:101"}],"functionName":{"name":"mstore","nativeSrc":"6032:6:101","nodeType":"YulIdentifier","src":"6032:6:101"},"nativeSrc":"6032:63:101","nodeType":"YulFunctionCall","src":"6032:63:101"},"nativeSrc":"6032:63:101","nodeType":"YulExpressionStatement","src":"6032:63:101"}]},"name":"abi_decode_struct_PolicyData","nativeSrc":"4620:1481:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4658:9:101","nodeType":"YulTypedName","src":"4658:9:101","type":""},{"name":"end","nativeSrc":"4669:3:101","nodeType":"YulTypedName","src":"4669:3:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"4677:5:101","nodeType":"YulTypedName","src":"4677:5:101","type":""}],"src":"4620:1481:101"},{"body":{"nativeSrc":"6256:442:101","nodeType":"YulBlock","src":"6256:442:101","statements":[{"body":{"nativeSrc":"6303:16:101","nodeType":"YulBlock","src":"6303:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6312:1:101","nodeType":"YulLiteral","src":"6312:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6315:1:101","nodeType":"YulLiteral","src":"6315:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6305:6:101","nodeType":"YulIdentifier","src":"6305:6:101"},"nativeSrc":"6305:12:101","nodeType":"YulFunctionCall","src":"6305:12:101"},"nativeSrc":"6305:12:101","nodeType":"YulExpressionStatement","src":"6305:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6277:7:101","nodeType":"YulIdentifier","src":"6277:7:101"},{"name":"headStart","nativeSrc":"6286:9:101","nodeType":"YulIdentifier","src":"6286:9:101"}],"functionName":{"name":"sub","nativeSrc":"6273:3:101","nodeType":"YulIdentifier","src":"6273:3:101"},"nativeSrc":"6273:23:101","nodeType":"YulFunctionCall","src":"6273:23:101"},{"kind":"number","nativeSrc":"6298:3:101","nodeType":"YulLiteral","src":"6298:3:101","type":"","value":"480"}],"functionName":{"name":"slt","nativeSrc":"6269:3:101","nodeType":"YulIdentifier","src":"6269:3:101"},"nativeSrc":"6269:33:101","nodeType":"YulFunctionCall","src":"6269:33:101"},"nativeSrc":"6266:53:101","nodeType":"YulIf","src":"6266:53:101"},{"nativeSrc":"6328:58:101","nodeType":"YulAssignment","src":"6328:58:101","value":{"arguments":[{"name":"headStart","nativeSrc":"6367:9:101","nodeType":"YulIdentifier","src":"6367:9:101"},{"name":"dataEnd","nativeSrc":"6378:7:101","nodeType":"YulIdentifier","src":"6378:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"6338:28:101","nodeType":"YulIdentifier","src":"6338:28:101"},"nativeSrc":"6338:48:101","nodeType":"YulFunctionCall","src":"6338:48:101"},"variableNames":[{"name":"value0","nativeSrc":"6328:6:101","nodeType":"YulIdentifier","src":"6328:6:101"}]},{"nativeSrc":"6395:14:101","nodeType":"YulVariableDeclaration","src":"6395:14:101","value":{"kind":"number","nativeSrc":"6408:1:101","nodeType":"YulLiteral","src":"6408:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"6399:5:101","nodeType":"YulTypedName","src":"6399:5:101","type":""}]},{"nativeSrc":"6418:42:101","nodeType":"YulAssignment","src":"6418:42:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6444:9:101","nodeType":"YulIdentifier","src":"6444:9:101"},{"kind":"number","nativeSrc":"6455:3:101","nodeType":"YulLiteral","src":"6455:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"6440:3:101","nodeType":"YulIdentifier","src":"6440:3:101"},"nativeSrc":"6440:19:101","nodeType":"YulFunctionCall","src":"6440:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"6427:12:101","nodeType":"YulIdentifier","src":"6427:12:101"},"nativeSrc":"6427:33:101","nodeType":"YulFunctionCall","src":"6427:33:101"},"variableNames":[{"name":"value","nativeSrc":"6418:5:101","nodeType":"YulIdentifier","src":"6418:5:101"}]},{"nativeSrc":"6469:15:101","nodeType":"YulAssignment","src":"6469:15:101","value":{"name":"value","nativeSrc":"6479:5:101","nodeType":"YulIdentifier","src":"6479:5:101"},"variableNames":[{"name":"value1","nativeSrc":"6469:6:101","nodeType":"YulIdentifier","src":"6469:6:101"}]},{"nativeSrc":"6493:16:101","nodeType":"YulVariableDeclaration","src":"6493:16:101","value":{"kind":"number","nativeSrc":"6508:1:101","nodeType":"YulLiteral","src":"6508:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"6497:7:101","nodeType":"YulTypedName","src":"6497:7:101","type":""}]},{"nativeSrc":"6518:44:101","nodeType":"YulAssignment","src":"6518:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6546:9:101","nodeType":"YulIdentifier","src":"6546:9:101"},{"kind":"number","nativeSrc":"6557:3:101","nodeType":"YulLiteral","src":"6557:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"6542:3:101","nodeType":"YulIdentifier","src":"6542:3:101"},"nativeSrc":"6542:19:101","nodeType":"YulFunctionCall","src":"6542:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"6529:12:101","nodeType":"YulIdentifier","src":"6529:12:101"},"nativeSrc":"6529:33:101","nodeType":"YulFunctionCall","src":"6529:33:101"},"variableNames":[{"name":"value_1","nativeSrc":"6518:7:101","nodeType":"YulIdentifier","src":"6518:7:101"}]},{"nativeSrc":"6571:17:101","nodeType":"YulAssignment","src":"6571:17:101","value":{"name":"value_1","nativeSrc":"6581:7:101","nodeType":"YulIdentifier","src":"6581:7:101"},"variableNames":[{"name":"value2","nativeSrc":"6571:6:101","nodeType":"YulIdentifier","src":"6571:6:101"}]},{"nativeSrc":"6597:16:101","nodeType":"YulVariableDeclaration","src":"6597:16:101","value":{"kind":"number","nativeSrc":"6612:1:101","nodeType":"YulLiteral","src":"6612:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"6601:7:101","nodeType":"YulTypedName","src":"6601:7:101","type":""}]},{"nativeSrc":"6622:44:101","nodeType":"YulAssignment","src":"6622:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6650:9:101","nodeType":"YulIdentifier","src":"6650:9:101"},{"kind":"number","nativeSrc":"6661:3:101","nodeType":"YulLiteral","src":"6661:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"6646:3:101","nodeType":"YulIdentifier","src":"6646:3:101"},"nativeSrc":"6646:19:101","nodeType":"YulFunctionCall","src":"6646:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"6633:12:101","nodeType":"YulIdentifier","src":"6633:12:101"},"nativeSrc":"6633:33:101","nodeType":"YulFunctionCall","src":"6633:33:101"},"variableNames":[{"name":"value_2","nativeSrc":"6622:7:101","nodeType":"YulIdentifier","src":"6622:7:101"}]},{"nativeSrc":"6675:17:101","nodeType":"YulAssignment","src":"6675:17:101","value":{"name":"value_2","nativeSrc":"6685:7:101","nodeType":"YulIdentifier","src":"6685:7:101"},"variableNames":[{"name":"value3","nativeSrc":"6675:6:101","nodeType":"YulIdentifier","src":"6675:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256","nativeSrc":"6106:592:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6198:9:101","nodeType":"YulTypedName","src":"6198:9:101","type":""},{"name":"dataEnd","nativeSrc":"6209:7:101","nodeType":"YulTypedName","src":"6209:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6221:6:101","nodeType":"YulTypedName","src":"6221:6:101","type":""},{"name":"value1","nativeSrc":"6229:6:101","nodeType":"YulTypedName","src":"6229:6:101","type":""},{"name":"value2","nativeSrc":"6237:6:101","nodeType":"YulTypedName","src":"6237:6:101","type":""},{"name":"value3","nativeSrc":"6245:6:101","nodeType":"YulTypedName","src":"6245:6:101","type":""}],"src":"6106:592:101"},{"body":{"nativeSrc":"6735:95:101","nodeType":"YulBlock","src":"6735:95:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6752:1:101","nodeType":"YulLiteral","src":"6752:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"6759:3:101","nodeType":"YulLiteral","src":"6759:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"6764:10:101","nodeType":"YulLiteral","src":"6764:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"6755:3:101","nodeType":"YulIdentifier","src":"6755:3:101"},"nativeSrc":"6755:20:101","nodeType":"YulFunctionCall","src":"6755:20:101"}],"functionName":{"name":"mstore","nativeSrc":"6745:6:101","nodeType":"YulIdentifier","src":"6745:6:101"},"nativeSrc":"6745:31:101","nodeType":"YulFunctionCall","src":"6745:31:101"},"nativeSrc":"6745:31:101","nodeType":"YulExpressionStatement","src":"6745:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6792:1:101","nodeType":"YulLiteral","src":"6792:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"6795:4:101","nodeType":"YulLiteral","src":"6795:4:101","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"6785:6:101","nodeType":"YulIdentifier","src":"6785:6:101"},"nativeSrc":"6785:15:101","nodeType":"YulFunctionCall","src":"6785:15:101"},"nativeSrc":"6785:15:101","nodeType":"YulExpressionStatement","src":"6785:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6816:1:101","nodeType":"YulLiteral","src":"6816:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"6819:4:101","nodeType":"YulLiteral","src":"6819:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"6809:6:101","nodeType":"YulIdentifier","src":"6809:6:101"},"nativeSrc":"6809:15:101","nodeType":"YulFunctionCall","src":"6809:15:101"},"nativeSrc":"6809:15:101","nodeType":"YulExpressionStatement","src":"6809:15:101"}]},"name":"panic_error_0x11","nativeSrc":"6703:127:101","nodeType":"YulFunctionDefinition","src":"6703:127:101"},{"body":{"nativeSrc":"6884:79:101","nodeType":"YulBlock","src":"6884:79:101","statements":[{"nativeSrc":"6894:17:101","nodeType":"YulAssignment","src":"6894:17:101","value":{"arguments":[{"name":"x","nativeSrc":"6906:1:101","nodeType":"YulIdentifier","src":"6906:1:101"},{"name":"y","nativeSrc":"6909:1:101","nodeType":"YulIdentifier","src":"6909:1:101"}],"functionName":{"name":"sub","nativeSrc":"6902:3:101","nodeType":"YulIdentifier","src":"6902:3:101"},"nativeSrc":"6902:9:101","nodeType":"YulFunctionCall","src":"6902:9:101"},"variableNames":[{"name":"diff","nativeSrc":"6894:4:101","nodeType":"YulIdentifier","src":"6894:4:101"}]},{"body":{"nativeSrc":"6935:22:101","nodeType":"YulBlock","src":"6935:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"6937:16:101","nodeType":"YulIdentifier","src":"6937:16:101"},"nativeSrc":"6937:18:101","nodeType":"YulFunctionCall","src":"6937:18:101"},"nativeSrc":"6937:18:101","nodeType":"YulExpressionStatement","src":"6937:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"6926:4:101","nodeType":"YulIdentifier","src":"6926:4:101"},{"name":"x","nativeSrc":"6932:1:101","nodeType":"YulIdentifier","src":"6932:1:101"}],"functionName":{"name":"gt","nativeSrc":"6923:2:101","nodeType":"YulIdentifier","src":"6923:2:101"},"nativeSrc":"6923:11:101","nodeType":"YulFunctionCall","src":"6923:11:101"},"nativeSrc":"6920:37:101","nodeType":"YulIf","src":"6920:37:101"}]},"name":"checked_sub_t_uint256","nativeSrc":"6835:128:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"6866:1:101","nodeType":"YulTypedName","src":"6866:1:101","type":""},{"name":"y","nativeSrc":"6869:1:101","nodeType":"YulTypedName","src":"6869:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"6875:4:101","nodeType":"YulTypedName","src":"6875:4:101","type":""}],"src":"6835:128:101"},{"body":{"nativeSrc":"7016:131:101","nodeType":"YulBlock","src":"7016:131:101","statements":[{"nativeSrc":"7026:29:101","nodeType":"YulAssignment","src":"7026:29:101","value":{"arguments":[{"name":"offset","nativeSrc":"7048:6:101","nodeType":"YulIdentifier","src":"7048:6:101"}],"functionName":{"name":"calldataload","nativeSrc":"7035:12:101","nodeType":"YulIdentifier","src":"7035:12:101"},"nativeSrc":"7035:20:101","nodeType":"YulFunctionCall","src":"7035:20:101"},"variableNames":[{"name":"value","nativeSrc":"7026:5:101","nodeType":"YulIdentifier","src":"7026:5:101"}]},{"body":{"nativeSrc":"7125:16:101","nodeType":"YulBlock","src":"7125:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7134:1:101","nodeType":"YulLiteral","src":"7134:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7137:1:101","nodeType":"YulLiteral","src":"7137:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7127:6:101","nodeType":"YulIdentifier","src":"7127:6:101"},"nativeSrc":"7127:12:101","nodeType":"YulFunctionCall","src":"7127:12:101"},"nativeSrc":"7127:12:101","nodeType":"YulExpressionStatement","src":"7127:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7077:5:101","nodeType":"YulIdentifier","src":"7077:5:101"},{"arguments":[{"name":"value","nativeSrc":"7088:5:101","nodeType":"YulIdentifier","src":"7088:5:101"},{"kind":"number","nativeSrc":"7095:26:101","nodeType":"YulLiteral","src":"7095:26:101","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"7084:3:101","nodeType":"YulIdentifier","src":"7084:3:101"},"nativeSrc":"7084:38:101","nodeType":"YulFunctionCall","src":"7084:38:101"}],"functionName":{"name":"eq","nativeSrc":"7074:2:101","nodeType":"YulIdentifier","src":"7074:2:101"},"nativeSrc":"7074:49:101","nodeType":"YulFunctionCall","src":"7074:49:101"}],"functionName":{"name":"iszero","nativeSrc":"7067:6:101","nodeType":"YulIdentifier","src":"7067:6:101"},"nativeSrc":"7067:57:101","nodeType":"YulFunctionCall","src":"7067:57:101"},"nativeSrc":"7064:77:101","nodeType":"YulIf","src":"7064:77:101"}]},"name":"abi_decode_uint96","nativeSrc":"6968:179:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"6995:6:101","nodeType":"YulTypedName","src":"6995:6:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"7006:5:101","nodeType":"YulTypedName","src":"7006:5:101","type":""}],"src":"6968:179:101"},{"body":{"nativeSrc":"7215:1225:101","nodeType":"YulBlock","src":"7215:1225:101","statements":[{"body":{"nativeSrc":"7259:16:101","nodeType":"YulBlock","src":"7259:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7268:1:101","nodeType":"YulLiteral","src":"7268:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7271:1:101","nodeType":"YulLiteral","src":"7271:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7261:6:101","nodeType":"YulIdentifier","src":"7261:6:101"},"nativeSrc":"7261:12:101","nodeType":"YulFunctionCall","src":"7261:12:101"},"nativeSrc":"7261:12:101","nodeType":"YulExpressionStatement","src":"7261:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"7236:3:101","nodeType":"YulIdentifier","src":"7236:3:101"},{"name":"headStart","nativeSrc":"7241:9:101","nodeType":"YulIdentifier","src":"7241:9:101"}],"functionName":{"name":"sub","nativeSrc":"7232:3:101","nodeType":"YulIdentifier","src":"7232:3:101"},"nativeSrc":"7232:19:101","nodeType":"YulFunctionCall","src":"7232:19:101"},{"kind":"number","nativeSrc":"7253:4:101","nodeType":"YulLiteral","src":"7253:4:101","type":"","value":"0xe0"}],"functionName":{"name":"slt","nativeSrc":"7228:3:101","nodeType":"YulIdentifier","src":"7228:3:101"},"nativeSrc":"7228:30:101","nodeType":"YulFunctionCall","src":"7228:30:101"},"nativeSrc":"7225:50:101","nodeType":"YulIf","src":"7225:50:101"},{"nativeSrc":"7284:15:101","nodeType":"YulVariableDeclaration","src":"7284:15:101","value":{"kind":"number","nativeSrc":"7298:1:101","nodeType":"YulLiteral","src":"7298:1:101","type":"","value":"0"},"variables":[{"name":"memPtr","nativeSrc":"7288:6:101","nodeType":"YulTypedName","src":"7288:6:101","type":""}]},{"nativeSrc":"7308:19:101","nodeType":"YulAssignment","src":"7308:19:101","value":{"arguments":[{"kind":"number","nativeSrc":"7324:2:101","nodeType":"YulLiteral","src":"7324:2:101","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"7318:5:101","nodeType":"YulIdentifier","src":"7318:5:101"},"nativeSrc":"7318:9:101","nodeType":"YulFunctionCall","src":"7318:9:101"},"variableNames":[{"name":"memPtr","nativeSrc":"7308:6:101","nodeType":"YulIdentifier","src":"7308:6:101"}]},{"nativeSrc":"7336:35:101","nodeType":"YulVariableDeclaration","src":"7336:35:101","value":{"arguments":[{"name":"memPtr","nativeSrc":"7358:6:101","nodeType":"YulIdentifier","src":"7358:6:101"},{"kind":"number","nativeSrc":"7366:4:101","nodeType":"YulLiteral","src":"7366:4:101","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"7354:3:101","nodeType":"YulIdentifier","src":"7354:3:101"},"nativeSrc":"7354:17:101","nodeType":"YulFunctionCall","src":"7354:17:101"},"variables":[{"name":"newFreePtr","nativeSrc":"7340:10:101","nodeType":"YulTypedName","src":"7340:10:101","type":""}]},{"body":{"nativeSrc":"7454:111:101","nodeType":"YulBlock","src":"7454:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7475:1:101","nodeType":"YulLiteral","src":"7475:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"7482:3:101","nodeType":"YulLiteral","src":"7482:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"7487:10:101","nodeType":"YulLiteral","src":"7487:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"7478:3:101","nodeType":"YulIdentifier","src":"7478:3:101"},"nativeSrc":"7478:20:101","nodeType":"YulFunctionCall","src":"7478:20:101"}],"functionName":{"name":"mstore","nativeSrc":"7468:6:101","nodeType":"YulIdentifier","src":"7468:6:101"},"nativeSrc":"7468:31:101","nodeType":"YulFunctionCall","src":"7468:31:101"},"nativeSrc":"7468:31:101","nodeType":"YulExpressionStatement","src":"7468:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7519:1:101","nodeType":"YulLiteral","src":"7519:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"7522:4:101","nodeType":"YulLiteral","src":"7522:4:101","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"7512:6:101","nodeType":"YulIdentifier","src":"7512:6:101"},"nativeSrc":"7512:15:101","nodeType":"YulFunctionCall","src":"7512:15:101"},"nativeSrc":"7512:15:101","nodeType":"YulExpressionStatement","src":"7512:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7547:1:101","nodeType":"YulLiteral","src":"7547:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"7550:4:101","nodeType":"YulLiteral","src":"7550:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"7540:6:101","nodeType":"YulIdentifier","src":"7540:6:101"},"nativeSrc":"7540:15:101","nodeType":"YulFunctionCall","src":"7540:15:101"},"nativeSrc":"7540:15:101","nodeType":"YulExpressionStatement","src":"7540:15:101"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"7389:10:101","nodeType":"YulIdentifier","src":"7389:10:101"},{"kind":"number","nativeSrc":"7401:18:101","nodeType":"YulLiteral","src":"7401:18:101","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7386:2:101","nodeType":"YulIdentifier","src":"7386:2:101"},"nativeSrc":"7386:34:101","nodeType":"YulFunctionCall","src":"7386:34:101"},{"arguments":[{"name":"newFreePtr","nativeSrc":"7425:10:101","nodeType":"YulIdentifier","src":"7425:10:101"},{"name":"memPtr","nativeSrc":"7437:6:101","nodeType":"YulIdentifier","src":"7437:6:101"}],"functionName":{"name":"lt","nativeSrc":"7422:2:101","nodeType":"YulIdentifier","src":"7422:2:101"},"nativeSrc":"7422:22:101","nodeType":"YulFunctionCall","src":"7422:22:101"}],"functionName":{"name":"or","nativeSrc":"7383:2:101","nodeType":"YulIdentifier","src":"7383:2:101"},"nativeSrc":"7383:62:101","nodeType":"YulFunctionCall","src":"7383:62:101"},"nativeSrc":"7380:185:101","nodeType":"YulIf","src":"7380:185:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7581:2:101","nodeType":"YulLiteral","src":"7581:2:101","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"7585:10:101","nodeType":"YulIdentifier","src":"7585:10:101"}],"functionName":{"name":"mstore","nativeSrc":"7574:6:101","nodeType":"YulIdentifier","src":"7574:6:101"},"nativeSrc":"7574:22:101","nodeType":"YulFunctionCall","src":"7574:22:101"},"nativeSrc":"7574:22:101","nodeType":"YulExpressionStatement","src":"7574:22:101"},{"nativeSrc":"7605:15:101","nodeType":"YulAssignment","src":"7605:15:101","value":{"name":"memPtr","nativeSrc":"7614:6:101","nodeType":"YulIdentifier","src":"7614:6:101"},"variableNames":[{"name":"value","nativeSrc":"7605:5:101","nodeType":"YulIdentifier","src":"7605:5:101"}]},{"nativeSrc":"7629:16:101","nodeType":"YulVariableDeclaration","src":"7629:16:101","value":{"kind":"number","nativeSrc":"7644:1:101","nodeType":"YulLiteral","src":"7644:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"7633:7:101","nodeType":"YulTypedName","src":"7633:7:101","type":""}]},{"nativeSrc":"7654:34:101","nodeType":"YulAssignment","src":"7654:34:101","value":{"arguments":[{"name":"headStart","nativeSrc":"7678:9:101","nodeType":"YulIdentifier","src":"7678:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"7665:12:101","nodeType":"YulIdentifier","src":"7665:12:101"},"nativeSrc":"7665:23:101","nodeType":"YulFunctionCall","src":"7665:23:101"},"variableNames":[{"name":"value_1","nativeSrc":"7654:7:101","nodeType":"YulIdentifier","src":"7654:7:101"}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"7704:6:101","nodeType":"YulIdentifier","src":"7704:6:101"},{"name":"value_1","nativeSrc":"7712:7:101","nodeType":"YulIdentifier","src":"7712:7:101"}],"functionName":{"name":"mstore","nativeSrc":"7697:6:101","nodeType":"YulIdentifier","src":"7697:6:101"},"nativeSrc":"7697:23:101","nodeType":"YulFunctionCall","src":"7697:23:101"},"nativeSrc":"7697:23:101","nodeType":"YulExpressionStatement","src":"7697:23:101"},{"nativeSrc":"7729:16:101","nodeType":"YulVariableDeclaration","src":"7729:16:101","value":{"kind":"number","nativeSrc":"7744:1:101","nodeType":"YulLiteral","src":"7744:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"7733:7:101","nodeType":"YulTypedName","src":"7733:7:101","type":""}]},{"nativeSrc":"7754:43:101","nodeType":"YulAssignment","src":"7754:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7782:9:101","nodeType":"YulIdentifier","src":"7782:9:101"},{"kind":"number","nativeSrc":"7793:2:101","nodeType":"YulLiteral","src":"7793:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7778:3:101","nodeType":"YulIdentifier","src":"7778:3:101"},"nativeSrc":"7778:18:101","nodeType":"YulFunctionCall","src":"7778:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"7765:12:101","nodeType":"YulIdentifier","src":"7765:12:101"},"nativeSrc":"7765:32:101","nodeType":"YulFunctionCall","src":"7765:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"7754:7:101","nodeType":"YulIdentifier","src":"7754:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"7817:6:101","nodeType":"YulIdentifier","src":"7817:6:101"},{"kind":"number","nativeSrc":"7825:2:101","nodeType":"YulLiteral","src":"7825:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7813:3:101","nodeType":"YulIdentifier","src":"7813:3:101"},"nativeSrc":"7813:15:101","nodeType":"YulFunctionCall","src":"7813:15:101"},{"name":"value_2","nativeSrc":"7830:7:101","nodeType":"YulIdentifier","src":"7830:7:101"}],"functionName":{"name":"mstore","nativeSrc":"7806:6:101","nodeType":"YulIdentifier","src":"7806:6:101"},"nativeSrc":"7806:32:101","nodeType":"YulFunctionCall","src":"7806:32:101"},"nativeSrc":"7806:32:101","nodeType":"YulExpressionStatement","src":"7806:32:101"},{"nativeSrc":"7847:16:101","nodeType":"YulVariableDeclaration","src":"7847:16:101","value":{"kind":"number","nativeSrc":"7862:1:101","nodeType":"YulLiteral","src":"7862:1:101","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"7851:7:101","nodeType":"YulTypedName","src":"7851:7:101","type":""}]},{"nativeSrc":"7872:43:101","nodeType":"YulAssignment","src":"7872:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7900:9:101","nodeType":"YulIdentifier","src":"7900:9:101"},{"kind":"number","nativeSrc":"7911:2:101","nodeType":"YulLiteral","src":"7911:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7896:3:101","nodeType":"YulIdentifier","src":"7896:3:101"},"nativeSrc":"7896:18:101","nodeType":"YulFunctionCall","src":"7896:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"7883:12:101","nodeType":"YulIdentifier","src":"7883:12:101"},"nativeSrc":"7883:32:101","nodeType":"YulFunctionCall","src":"7883:32:101"},"variableNames":[{"name":"value_3","nativeSrc":"7872:7:101","nodeType":"YulIdentifier","src":"7872:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"7935:6:101","nodeType":"YulIdentifier","src":"7935:6:101"},{"kind":"number","nativeSrc":"7943:2:101","nodeType":"YulLiteral","src":"7943:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7931:3:101","nodeType":"YulIdentifier","src":"7931:3:101"},"nativeSrc":"7931:15:101","nodeType":"YulFunctionCall","src":"7931:15:101"},{"name":"value_3","nativeSrc":"7948:7:101","nodeType":"YulIdentifier","src":"7948:7:101"}],"functionName":{"name":"mstore","nativeSrc":"7924:6:101","nodeType":"YulIdentifier","src":"7924:6:101"},"nativeSrc":"7924:32:101","nodeType":"YulFunctionCall","src":"7924:32:101"},"nativeSrc":"7924:32:101","nodeType":"YulExpressionStatement","src":"7924:32:101"},{"nativeSrc":"7965:16:101","nodeType":"YulVariableDeclaration","src":"7965:16:101","value":{"kind":"number","nativeSrc":"7980:1:101","nodeType":"YulLiteral","src":"7980:1:101","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"7969:7:101","nodeType":"YulTypedName","src":"7969:7:101","type":""}]},{"nativeSrc":"7990:43:101","nodeType":"YulAssignment","src":"7990:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8018:9:101","nodeType":"YulIdentifier","src":"8018:9:101"},{"kind":"number","nativeSrc":"8029:2:101","nodeType":"YulLiteral","src":"8029:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8014:3:101","nodeType":"YulIdentifier","src":"8014:3:101"},"nativeSrc":"8014:18:101","nodeType":"YulFunctionCall","src":"8014:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"8001:12:101","nodeType":"YulIdentifier","src":"8001:12:101"},"nativeSrc":"8001:32:101","nodeType":"YulFunctionCall","src":"8001:32:101"},"variableNames":[{"name":"value_4","nativeSrc":"7990:7:101","nodeType":"YulIdentifier","src":"7990:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8053:6:101","nodeType":"YulIdentifier","src":"8053:6:101"},{"kind":"number","nativeSrc":"8061:2:101","nodeType":"YulLiteral","src":"8061:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8049:3:101","nodeType":"YulIdentifier","src":"8049:3:101"},"nativeSrc":"8049:15:101","nodeType":"YulFunctionCall","src":"8049:15:101"},{"name":"value_4","nativeSrc":"8066:7:101","nodeType":"YulIdentifier","src":"8066:7:101"}],"functionName":{"name":"mstore","nativeSrc":"8042:6:101","nodeType":"YulIdentifier","src":"8042:6:101"},"nativeSrc":"8042:32:101","nodeType":"YulFunctionCall","src":"8042:32:101"},"nativeSrc":"8042:32:101","nodeType":"YulExpressionStatement","src":"8042:32:101"},{"nativeSrc":"8083:16:101","nodeType":"YulVariableDeclaration","src":"8083:16:101","value":{"kind":"number","nativeSrc":"8098:1:101","nodeType":"YulLiteral","src":"8098:1:101","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"8087:7:101","nodeType":"YulTypedName","src":"8087:7:101","type":""}]},{"nativeSrc":"8108:44:101","nodeType":"YulAssignment","src":"8108:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8136:9:101","nodeType":"YulIdentifier","src":"8136:9:101"},{"kind":"number","nativeSrc":"8147:3:101","nodeType":"YulLiteral","src":"8147:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"8132:3:101","nodeType":"YulIdentifier","src":"8132:3:101"},"nativeSrc":"8132:19:101","nodeType":"YulFunctionCall","src":"8132:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"8119:12:101","nodeType":"YulIdentifier","src":"8119:12:101"},"nativeSrc":"8119:33:101","nodeType":"YulFunctionCall","src":"8119:33:101"},"variableNames":[{"name":"value_5","nativeSrc":"8108:7:101","nodeType":"YulIdentifier","src":"8108:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8172:6:101","nodeType":"YulIdentifier","src":"8172:6:101"},{"kind":"number","nativeSrc":"8180:3:101","nodeType":"YulLiteral","src":"8180:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"8168:3:101","nodeType":"YulIdentifier","src":"8168:3:101"},"nativeSrc":"8168:16:101","nodeType":"YulFunctionCall","src":"8168:16:101"},{"name":"value_5","nativeSrc":"8186:7:101","nodeType":"YulIdentifier","src":"8186:7:101"}],"functionName":{"name":"mstore","nativeSrc":"8161:6:101","nodeType":"YulIdentifier","src":"8161:6:101"},"nativeSrc":"8161:33:101","nodeType":"YulFunctionCall","src":"8161:33:101"},"nativeSrc":"8161:33:101","nodeType":"YulExpressionStatement","src":"8161:33:101"},{"nativeSrc":"8203:16:101","nodeType":"YulVariableDeclaration","src":"8203:16:101","value":{"kind":"number","nativeSrc":"8218:1:101","nodeType":"YulLiteral","src":"8218:1:101","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"8207:7:101","nodeType":"YulTypedName","src":"8207:7:101","type":""}]},{"nativeSrc":"8228:44:101","nodeType":"YulAssignment","src":"8228:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8256:9:101","nodeType":"YulIdentifier","src":"8256:9:101"},{"kind":"number","nativeSrc":"8267:3:101","nodeType":"YulLiteral","src":"8267:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"8252:3:101","nodeType":"YulIdentifier","src":"8252:3:101"},"nativeSrc":"8252:19:101","nodeType":"YulFunctionCall","src":"8252:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"8239:12:101","nodeType":"YulIdentifier","src":"8239:12:101"},"nativeSrc":"8239:33:101","nodeType":"YulFunctionCall","src":"8239:33:101"},"variableNames":[{"name":"value_6","nativeSrc":"8228:7:101","nodeType":"YulIdentifier","src":"8228:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8292:6:101","nodeType":"YulIdentifier","src":"8292:6:101"},{"kind":"number","nativeSrc":"8300:3:101","nodeType":"YulLiteral","src":"8300:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"8288:3:101","nodeType":"YulIdentifier","src":"8288:3:101"},"nativeSrc":"8288:16:101","nodeType":"YulFunctionCall","src":"8288:16:101"},{"name":"value_6","nativeSrc":"8306:7:101","nodeType":"YulIdentifier","src":"8306:7:101"}],"functionName":{"name":"mstore","nativeSrc":"8281:6:101","nodeType":"YulIdentifier","src":"8281:6:101"},"nativeSrc":"8281:33:101","nodeType":"YulFunctionCall","src":"8281:33:101"},"nativeSrc":"8281:33:101","nodeType":"YulExpressionStatement","src":"8281:33:101"},{"nativeSrc":"8323:16:101","nodeType":"YulVariableDeclaration","src":"8323:16:101","value":{"kind":"number","nativeSrc":"8338:1:101","nodeType":"YulLiteral","src":"8338:1:101","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"8327:7:101","nodeType":"YulTypedName","src":"8327:7:101","type":""}]},{"nativeSrc":"8348:44:101","nodeType":"YulAssignment","src":"8348:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8376:9:101","nodeType":"YulIdentifier","src":"8376:9:101"},{"kind":"number","nativeSrc":"8387:3:101","nodeType":"YulLiteral","src":"8387:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"8372:3:101","nodeType":"YulIdentifier","src":"8372:3:101"},"nativeSrc":"8372:19:101","nodeType":"YulFunctionCall","src":"8372:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"8359:12:101","nodeType":"YulIdentifier","src":"8359:12:101"},"nativeSrc":"8359:33:101","nodeType":"YulFunctionCall","src":"8359:33:101"},"variableNames":[{"name":"value_7","nativeSrc":"8348:7:101","nodeType":"YulIdentifier","src":"8348:7:101"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8412:6:101","nodeType":"YulIdentifier","src":"8412:6:101"},{"kind":"number","nativeSrc":"8420:3:101","nodeType":"YulLiteral","src":"8420:3:101","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"8408:3:101","nodeType":"YulIdentifier","src":"8408:3:101"},"nativeSrc":"8408:16:101","nodeType":"YulFunctionCall","src":"8408:16:101"},{"name":"value_7","nativeSrc":"8426:7:101","nodeType":"YulIdentifier","src":"8426:7:101"}],"functionName":{"name":"mstore","nativeSrc":"8401:6:101","nodeType":"YulIdentifier","src":"8401:6:101"},"nativeSrc":"8401:33:101","nodeType":"YulFunctionCall","src":"8401:33:101"},"nativeSrc":"8401:33:101","nodeType":"YulExpressionStatement","src":"8401:33:101"}]},"name":"abi_decode_struct_Params","nativeSrc":"7152:1288:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7186:9:101","nodeType":"YulTypedName","src":"7186:9:101","type":""},{"name":"end","nativeSrc":"7197:3:101","nodeType":"YulTypedName","src":"7197:3:101","type":""}],"returnVariables":[{"name":"value","nativeSrc":"7205:5:101","nodeType":"YulTypedName","src":"7205:5:101","type":""}],"src":"7152:1288:101"},{"body":{"nativeSrc":"8669:629:101","nodeType":"YulBlock","src":"8669:629:101","statements":[{"body":{"nativeSrc":"8716:16:101","nodeType":"YulBlock","src":"8716:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8725:1:101","nodeType":"YulLiteral","src":"8725:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"8728:1:101","nodeType":"YulLiteral","src":"8728:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8718:6:101","nodeType":"YulIdentifier","src":"8718:6:101"},"nativeSrc":"8718:12:101","nodeType":"YulFunctionCall","src":"8718:12:101"},"nativeSrc":"8718:12:101","nodeType":"YulExpressionStatement","src":"8718:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8690:7:101","nodeType":"YulIdentifier","src":"8690:7:101"},{"name":"headStart","nativeSrc":"8699:9:101","nodeType":"YulIdentifier","src":"8699:9:101"}],"functionName":{"name":"sub","nativeSrc":"8686:3:101","nodeType":"YulIdentifier","src":"8686:3:101"},"nativeSrc":"8686:23:101","nodeType":"YulFunctionCall","src":"8686:23:101"},{"kind":"number","nativeSrc":"8711:3:101","nodeType":"YulLiteral","src":"8711:3:101","type":"","value":"768"}],"functionName":{"name":"slt","nativeSrc":"8682:3:101","nodeType":"YulIdentifier","src":"8682:3:101"},"nativeSrc":"8682:33:101","nodeType":"YulFunctionCall","src":"8682:33:101"},"nativeSrc":"8679:53:101","nodeType":"YulIf","src":"8679:53:101"},{"nativeSrc":"8741:58:101","nodeType":"YulAssignment","src":"8741:58:101","value":{"arguments":[{"name":"headStart","nativeSrc":"8780:9:101","nodeType":"YulIdentifier","src":"8780:9:101"},{"name":"dataEnd","nativeSrc":"8791:7:101","nodeType":"YulIdentifier","src":"8791:7:101"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"8751:28:101","nodeType":"YulIdentifier","src":"8751:28:101"},"nativeSrc":"8751:48:101","nodeType":"YulFunctionCall","src":"8751:48:101"},"variableNames":[{"name":"value0","nativeSrc":"8741:6:101","nodeType":"YulIdentifier","src":"8741:6:101"}]},{"nativeSrc":"8808:14:101","nodeType":"YulVariableDeclaration","src":"8808:14:101","value":{"kind":"number","nativeSrc":"8821:1:101","nodeType":"YulLiteral","src":"8821:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"8812:5:101","nodeType":"YulTypedName","src":"8812:5:101","type":""}]},{"nativeSrc":"8831:42:101","nodeType":"YulAssignment","src":"8831:42:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8857:9:101","nodeType":"YulIdentifier","src":"8857:9:101"},{"kind":"number","nativeSrc":"8868:3:101","nodeType":"YulLiteral","src":"8868:3:101","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"8853:3:101","nodeType":"YulIdentifier","src":"8853:3:101"},"nativeSrc":"8853:19:101","nodeType":"YulFunctionCall","src":"8853:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"8840:12:101","nodeType":"YulIdentifier","src":"8840:12:101"},"nativeSrc":"8840:33:101","nodeType":"YulFunctionCall","src":"8840:33:101"},"variableNames":[{"name":"value","nativeSrc":"8831:5:101","nodeType":"YulIdentifier","src":"8831:5:101"}]},{"nativeSrc":"8882:15:101","nodeType":"YulAssignment","src":"8882:15:101","value":{"name":"value","nativeSrc":"8892:5:101","nodeType":"YulIdentifier","src":"8892:5:101"},"variableNames":[{"name":"value1","nativeSrc":"8882:6:101","nodeType":"YulIdentifier","src":"8882:6:101"}]},{"nativeSrc":"8906:16:101","nodeType":"YulVariableDeclaration","src":"8906:16:101","value":{"kind":"number","nativeSrc":"8921:1:101","nodeType":"YulLiteral","src":"8921:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"8910:7:101","nodeType":"YulTypedName","src":"8910:7:101","type":""}]},{"nativeSrc":"8931:44:101","nodeType":"YulAssignment","src":"8931:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8959:9:101","nodeType":"YulIdentifier","src":"8959:9:101"},{"kind":"number","nativeSrc":"8970:3:101","nodeType":"YulLiteral","src":"8970:3:101","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"8955:3:101","nodeType":"YulIdentifier","src":"8955:3:101"},"nativeSrc":"8955:19:101","nodeType":"YulFunctionCall","src":"8955:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"8942:12:101","nodeType":"YulIdentifier","src":"8942:12:101"},"nativeSrc":"8942:33:101","nodeType":"YulFunctionCall","src":"8942:33:101"},"variableNames":[{"name":"value_1","nativeSrc":"8931:7:101","nodeType":"YulIdentifier","src":"8931:7:101"}]},{"nativeSrc":"8984:17:101","nodeType":"YulAssignment","src":"8984:17:101","value":{"name":"value_1","nativeSrc":"8994:7:101","nodeType":"YulIdentifier","src":"8994:7:101"},"variableNames":[{"name":"value2","nativeSrc":"8984:6:101","nodeType":"YulIdentifier","src":"8984:6:101"}]},{"nativeSrc":"9010:16:101","nodeType":"YulVariableDeclaration","src":"9010:16:101","value":{"kind":"number","nativeSrc":"9025:1:101","nodeType":"YulLiteral","src":"9025:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"9014:7:101","nodeType":"YulTypedName","src":"9014:7:101","type":""}]},{"nativeSrc":"9035:44:101","nodeType":"YulAssignment","src":"9035:44:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9063:9:101","nodeType":"YulIdentifier","src":"9063:9:101"},{"kind":"number","nativeSrc":"9074:3:101","nodeType":"YulLiteral","src":"9074:3:101","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"9059:3:101","nodeType":"YulIdentifier","src":"9059:3:101"},"nativeSrc":"9059:19:101","nodeType":"YulFunctionCall","src":"9059:19:101"}],"functionName":{"name":"calldataload","nativeSrc":"9046:12:101","nodeType":"YulIdentifier","src":"9046:12:101"},"nativeSrc":"9046:33:101","nodeType":"YulFunctionCall","src":"9046:33:101"},"variableNames":[{"name":"value_2","nativeSrc":"9035:7:101","nodeType":"YulIdentifier","src":"9035:7:101"}]},{"nativeSrc":"9088:17:101","nodeType":"YulAssignment","src":"9088:17:101","value":{"name":"value_2","nativeSrc":"9098:7:101","nodeType":"YulIdentifier","src":"9098:7:101"},"variableNames":[{"name":"value3","nativeSrc":"9088:6:101","nodeType":"YulIdentifier","src":"9088:6:101"}]},{"nativeSrc":"9114:48:101","nodeType":"YulAssignment","src":"9114:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9146:9:101","nodeType":"YulIdentifier","src":"9146:9:101"},{"kind":"number","nativeSrc":"9157:3:101","nodeType":"YulLiteral","src":"9157:3:101","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"9142:3:101","nodeType":"YulIdentifier","src":"9142:3:101"},"nativeSrc":"9142:19:101","nodeType":"YulFunctionCall","src":"9142:19:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"9124:17:101","nodeType":"YulIdentifier","src":"9124:17:101"},"nativeSrc":"9124:38:101","nodeType":"YulFunctionCall","src":"9124:38:101"},"variableNames":[{"name":"value4","nativeSrc":"9114:6:101","nodeType":"YulIdentifier","src":"9114:6:101"}]},{"nativeSrc":"9171:48:101","nodeType":"YulAssignment","src":"9171:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9203:9:101","nodeType":"YulIdentifier","src":"9203:9:101"},{"kind":"number","nativeSrc":"9214:3:101","nodeType":"YulLiteral","src":"9214:3:101","type":"","value":"512"}],"functionName":{"name":"add","nativeSrc":"9199:3:101","nodeType":"YulIdentifier","src":"9199:3:101"},"nativeSrc":"9199:19:101","nodeType":"YulFunctionCall","src":"9199:19:101"}],"functionName":{"name":"abi_decode_uint96","nativeSrc":"9181:17:101","nodeType":"YulIdentifier","src":"9181:17:101"},"nativeSrc":"9181:38:101","nodeType":"YulFunctionCall","src":"9181:38:101"},"variableNames":[{"name":"value5","nativeSrc":"9171:6:101","nodeType":"YulIdentifier","src":"9171:6:101"}]},{"nativeSrc":"9228:64:101","nodeType":"YulAssignment","src":"9228:64:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9267:9:101","nodeType":"YulIdentifier","src":"9267:9:101"},{"kind":"number","nativeSrc":"9278:3:101","nodeType":"YulLiteral","src":"9278:3:101","type":"","value":"544"}],"functionName":{"name":"add","nativeSrc":"9263:3:101","nodeType":"YulIdentifier","src":"9263:3:101"},"nativeSrc":"9263:19:101","nodeType":"YulFunctionCall","src":"9263:19:101"},{"name":"dataEnd","nativeSrc":"9284:7:101","nodeType":"YulIdentifier","src":"9284:7:101"}],"functionName":{"name":"abi_decode_struct_Params","nativeSrc":"9238:24:101","nodeType":"YulIdentifier","src":"9238:24:101"},"nativeSrc":"9238:54:101","nodeType":"YulFunctionCall","src":"9238:54:101"},"variableNames":[{"name":"value6","nativeSrc":"9228:6:101","nodeType":"YulIdentifier","src":"9228:6:101"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$22230_memory_ptr","nativeSrc":"8445:853:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8587:9:101","nodeType":"YulTypedName","src":"8587:9:101","type":""},{"name":"dataEnd","nativeSrc":"8598:7:101","nodeType":"YulTypedName","src":"8598:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8610:6:101","nodeType":"YulTypedName","src":"8610:6:101","type":""},{"name":"value1","nativeSrc":"8618:6:101","nodeType":"YulTypedName","src":"8618:6:101","type":""},{"name":"value2","nativeSrc":"8626:6:101","nodeType":"YulTypedName","src":"8626:6:101","type":""},{"name":"value3","nativeSrc":"8634:6:101","nodeType":"YulTypedName","src":"8634:6:101","type":""},{"name":"value4","nativeSrc":"8642:6:101","nodeType":"YulTypedName","src":"8642:6:101","type":""},{"name":"value5","nativeSrc":"8650:6:101","nodeType":"YulTypedName","src":"8650:6:101","type":""},{"name":"value6","nativeSrc":"8658:6:101","nodeType":"YulTypedName","src":"8658:6:101","type":""}],"src":"8445:853:101"},{"body":{"nativeSrc":"9481:549:101","nodeType":"YulBlock","src":"9481:549:101","statements":[{"body":{"nativeSrc":"9528:16:101","nodeType":"YulBlock","src":"9528:16:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9537:1:101","nodeType":"YulLiteral","src":"9537:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"9540:1:101","nodeType":"YulLiteral","src":"9540:1:101","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9530:6:101","nodeType":"YulIdentifier","src":"9530:6:101"},"nativeSrc":"9530:12:101","nodeType":"YulFunctionCall","src":"9530:12:101"},"nativeSrc":"9530:12:101","nodeType":"YulExpressionStatement","src":"9530:12:101"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9502:7:101","nodeType":"YulIdentifier","src":"9502:7:101"},{"name":"headStart","nativeSrc":"9511:9:101","nodeType":"YulIdentifier","src":"9511:9:101"}],"functionName":{"name":"sub","nativeSrc":"9498:3:101","nodeType":"YulIdentifier","src":"9498:3:101"},"nativeSrc":"9498:23:101","nodeType":"YulFunctionCall","src":"9498:23:101"},{"kind":"number","nativeSrc":"9523:3:101","nodeType":"YulLiteral","src":"9523:3:101","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"9494:3:101","nodeType":"YulIdentifier","src":"9494:3:101"},"nativeSrc":"9494:33:101","nodeType":"YulFunctionCall","src":"9494:33:101"},"nativeSrc":"9491:53:101","nodeType":"YulIf","src":"9491:53:101"},{"nativeSrc":"9553:14:101","nodeType":"YulVariableDeclaration","src":"9553:14:101","value":{"kind":"number","nativeSrc":"9566:1:101","nodeType":"YulLiteral","src":"9566:1:101","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"9557:5:101","nodeType":"YulTypedName","src":"9557:5:101","type":""}]},{"nativeSrc":"9576:32:101","nodeType":"YulAssignment","src":"9576:32:101","value":{"arguments":[{"name":"headStart","nativeSrc":"9598:9:101","nodeType":"YulIdentifier","src":"9598:9:101"}],"functionName":{"name":"calldataload","nativeSrc":"9585:12:101","nodeType":"YulIdentifier","src":"9585:12:101"},"nativeSrc":"9585:23:101","nodeType":"YulFunctionCall","src":"9585:23:101"},"variableNames":[{"name":"value","nativeSrc":"9576:5:101","nodeType":"YulIdentifier","src":"9576:5:101"}]},{"nativeSrc":"9617:15:101","nodeType":"YulAssignment","src":"9617:15:101","value":{"name":"value","nativeSrc":"9627:5:101","nodeType":"YulIdentifier","src":"9627:5:101"},"variableNames":[{"name":"value0","nativeSrc":"9617:6:101","nodeType":"YulIdentifier","src":"9617:6:101"}]},{"nativeSrc":"9641:16:101","nodeType":"YulVariableDeclaration","src":"9641:16:101","value":{"kind":"number","nativeSrc":"9656:1:101","nodeType":"YulLiteral","src":"9656:1:101","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"9645:7:101","nodeType":"YulTypedName","src":"9645:7:101","type":""}]},{"nativeSrc":"9666:43:101","nodeType":"YulAssignment","src":"9666:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9694:9:101","nodeType":"YulIdentifier","src":"9694:9:101"},{"kind":"number","nativeSrc":"9705:2:101","nodeType":"YulLiteral","src":"9705:2:101","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9690:3:101","nodeType":"YulIdentifier","src":"9690:3:101"},"nativeSrc":"9690:18:101","nodeType":"YulFunctionCall","src":"9690:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"9677:12:101","nodeType":"YulIdentifier","src":"9677:12:101"},"nativeSrc":"9677:32:101","nodeType":"YulFunctionCall","src":"9677:32:101"},"variableNames":[{"name":"value_1","nativeSrc":"9666:7:101","nodeType":"YulIdentifier","src":"9666:7:101"}]},{"nativeSrc":"9718:17:101","nodeType":"YulAssignment","src":"9718:17:101","value":{"name":"value_1","nativeSrc":"9728:7:101","nodeType":"YulIdentifier","src":"9728:7:101"},"variableNames":[{"name":"value1","nativeSrc":"9718:6:101","nodeType":"YulIdentifier","src":"9718:6:101"}]},{"nativeSrc":"9744:16:101","nodeType":"YulVariableDeclaration","src":"9744:16:101","value":{"kind":"number","nativeSrc":"9759:1:101","nodeType":"YulLiteral","src":"9759:1:101","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"9748:7:101","nodeType":"YulTypedName","src":"9748:7:101","type":""}]},{"nativeSrc":"9769:43:101","nodeType":"YulAssignment","src":"9769:43:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9797:9:101","nodeType":"YulIdentifier","src":"9797:9:101"},{"kind":"number","nativeSrc":"9808:2:101","nodeType":"YulLiteral","src":"9808:2:101","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9793:3:101","nodeType":"YulIdentifier","src":"9793:3:101"},"nativeSrc":"9793:18:101","nodeType":"YulFunctionCall","src":"9793:18:101"}],"functionName":{"name":"calldataload","nativeSrc":"9780:12:101","nodeType":"YulIdentifier","src":"9780:12:101"},"nativeSrc":"9780:32:101","nodeType":"YulFunctionCall","src":"9780:32:101"},"variableNames":[{"name":"value_2","nativeSrc":"9769:7:101","nodeType":"YulIdentifier","src":"9769:7:101"}]},{"nativeSrc":"9821:17:101","nodeType":"YulAssignment","src":"9821:17:101","value":{"name":"value_2","nativeSrc":"9831:7:101","nodeType":"YulIdentifier","src":"9831:7:101"},"variableNames":[{"name":"value2","nativeSrc":"9821:6:101","nodeType":"YulIdentifier","src":"9821:6:101"}]},{"nativeSrc":"9847:47:101","nodeType":"YulAssignment","src":"9847:47:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9879:9:101","nodeType":"YulIdentifier","src":"9879:9:101"},{"kind":"number","nativeSrc":"9890:2:101","nodeType":"YulLiteral","src":"9890:2:101","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"9875:3:101","nodeType":"YulIdentifier","src":"9875:3:101"},"nativeSrc":"9875:18:101","nodeType":"YulFunctionCall","src":"9875:18:101"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"9857:17:101","nodeType":"YulIdentifier","src":"9857:17:101"},"nativeSrc":"9857:37:101","nodeType":"YulFunctionCall","src":"9857:37:101"},"variableNames":[{"name":"value3","nativeSrc":"9847:6:101","nodeType":"YulIdentifier","src":"9847:6:101"}]},{"nativeSrc":"9903:48:101","nodeType":"YulAssignment","src":"9903:48:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9935:9:101","nodeType":"YulIdentifier","src":"9935:9:101"},{"kind":"number","nativeSrc":"9946:3:101","nodeType":"YulLiteral","src":"9946:3:101","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"9931:3:101","nodeType":"YulIdentifier","src":"9931:3:101"},"nativeSrc":"9931:19:101","nodeType":"YulFunctionCall","src":"9931:19:101"}],"functionName":{"name":"abi_decode_uint96","nativeSrc":"9913:17:101","nodeType":"YulIdentifier","src":"9913:17:101"},"nativeSrc":"9913:38:101","nodeType":"YulFunctionCall","src":"9913:38:101"},"variableNames":[{"name":"value4","nativeSrc":"9903:6:101","nodeType":"YulIdentifier","src":"9903:6:101"}]},{"nativeSrc":"9960:64:101","nodeType":"YulAssignment","src":"9960:64:101","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9999:9:101","nodeType":"YulIdentifier","src":"9999:9:101"},{"kind":"number","nativeSrc":"10010:3:101","nodeType":"YulLiteral","src":"10010:3:101","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"9995:3:101","nodeType":"YulIdentifier","src":"9995:3:101"},"nativeSrc":"9995:19:101","nodeType":"YulFunctionCall","src":"9995:19:101"},{"name":"dataEnd","nativeSrc":"10016:7:101","nodeType":"YulIdentifier","src":"10016:7:101"}],"functionName":{"name":"abi_decode_struct_Params","nativeSrc":"9970:24:101","nodeType":"YulIdentifier","src":"9970:24:101"},"nativeSrc":"9970:54:101","nodeType":"YulFunctionCall","src":"9970:54:101"},"variableNames":[{"name":"value5","nativeSrc":"9960:6:101","nodeType":"YulIdentifier","src":"9960:6:101"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$22230_memory_ptr","nativeSrc":"9303:727:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9407:9:101","nodeType":"YulTypedName","src":"9407:9:101","type":""},{"name":"dataEnd","nativeSrc":"9418:7:101","nodeType":"YulTypedName","src":"9418:7:101","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9430:6:101","nodeType":"YulTypedName","src":"9430:6:101","type":""},{"name":"value1","nativeSrc":"9438:6:101","nodeType":"YulTypedName","src":"9438:6:101","type":""},{"name":"value2","nativeSrc":"9446:6:101","nodeType":"YulTypedName","src":"9446:6:101","type":""},{"name":"value3","nativeSrc":"9454:6:101","nodeType":"YulTypedName","src":"9454:6:101","type":""},{"name":"value4","nativeSrc":"9462:6:101","nodeType":"YulTypedName","src":"9462:6:101","type":""},{"name":"value5","nativeSrc":"9470:6:101","nodeType":"YulTypedName","src":"9470:6:101","type":""}],"src":"9303:727:101"},{"body":{"nativeSrc":"10087:116:101","nodeType":"YulBlock","src":"10087:116:101","statements":[{"nativeSrc":"10097:20:101","nodeType":"YulAssignment","src":"10097:20:101","value":{"arguments":[{"name":"x","nativeSrc":"10112:1:101","nodeType":"YulIdentifier","src":"10112:1:101"},{"name":"y","nativeSrc":"10115:1:101","nodeType":"YulIdentifier","src":"10115:1:101"}],"functionName":{"name":"mul","nativeSrc":"10108:3:101","nodeType":"YulIdentifier","src":"10108:3:101"},"nativeSrc":"10108:9:101","nodeType":"YulFunctionCall","src":"10108:9:101"},"variableNames":[{"name":"product","nativeSrc":"10097:7:101","nodeType":"YulIdentifier","src":"10097:7:101"}]},{"body":{"nativeSrc":"10175:22:101","nodeType":"YulBlock","src":"10175:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"10177:16:101","nodeType":"YulIdentifier","src":"10177:16:101"},"nativeSrc":"10177:18:101","nodeType":"YulFunctionCall","src":"10177:18:101"},"nativeSrc":"10177:18:101","nodeType":"YulExpressionStatement","src":"10177:18:101"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nativeSrc":"10146:1:101","nodeType":"YulIdentifier","src":"10146:1:101"}],"functionName":{"name":"iszero","nativeSrc":"10139:6:101","nodeType":"YulIdentifier","src":"10139:6:101"},"nativeSrc":"10139:9:101","nodeType":"YulFunctionCall","src":"10139:9:101"},{"arguments":[{"name":"y","nativeSrc":"10153:1:101","nodeType":"YulIdentifier","src":"10153:1:101"},{"arguments":[{"name":"product","nativeSrc":"10160:7:101","nodeType":"YulIdentifier","src":"10160:7:101"},{"name":"x","nativeSrc":"10169:1:101","nodeType":"YulIdentifier","src":"10169:1:101"}],"functionName":{"name":"div","nativeSrc":"10156:3:101","nodeType":"YulIdentifier","src":"10156:3:101"},"nativeSrc":"10156:15:101","nodeType":"YulFunctionCall","src":"10156:15:101"}],"functionName":{"name":"eq","nativeSrc":"10150:2:101","nodeType":"YulIdentifier","src":"10150:2:101"},"nativeSrc":"10150:22:101","nodeType":"YulFunctionCall","src":"10150:22:101"}],"functionName":{"name":"or","nativeSrc":"10136:2:101","nodeType":"YulIdentifier","src":"10136:2:101"},"nativeSrc":"10136:37:101","nodeType":"YulFunctionCall","src":"10136:37:101"}],"functionName":{"name":"iszero","nativeSrc":"10129:6:101","nodeType":"YulIdentifier","src":"10129:6:101"},"nativeSrc":"10129:45:101","nodeType":"YulFunctionCall","src":"10129:45:101"},"nativeSrc":"10126:71:101","nodeType":"YulIf","src":"10126:71:101"}]},"name":"checked_mul_t_uint256","nativeSrc":"10035:168:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"10066:1:101","nodeType":"YulTypedName","src":"10066:1:101","type":""},{"name":"y","nativeSrc":"10069:1:101","nodeType":"YulTypedName","src":"10069:1:101","type":""}],"returnVariables":[{"name":"product","nativeSrc":"10075:7:101","nodeType":"YulTypedName","src":"10075:7:101","type":""}],"src":"10035:168:101"},{"body":{"nativeSrc":"10254:171:101","nodeType":"YulBlock","src":"10254:171:101","statements":[{"body":{"nativeSrc":"10285:111:101","nodeType":"YulBlock","src":"10285:111:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10306:1:101","nodeType":"YulLiteral","src":"10306:1:101","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"10313:3:101","nodeType":"YulLiteral","src":"10313:3:101","type":"","value":"224"},{"kind":"number","nativeSrc":"10318:10:101","nodeType":"YulLiteral","src":"10318:10:101","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"10309:3:101","nodeType":"YulIdentifier","src":"10309:3:101"},"nativeSrc":"10309:20:101","nodeType":"YulFunctionCall","src":"10309:20:101"}],"functionName":{"name":"mstore","nativeSrc":"10299:6:101","nodeType":"YulIdentifier","src":"10299:6:101"},"nativeSrc":"10299:31:101","nodeType":"YulFunctionCall","src":"10299:31:101"},"nativeSrc":"10299:31:101","nodeType":"YulExpressionStatement","src":"10299:31:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"10350:1:101","nodeType":"YulLiteral","src":"10350:1:101","type":"","value":"4"},{"kind":"number","nativeSrc":"10353:4:101","nodeType":"YulLiteral","src":"10353:4:101","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"10343:6:101","nodeType":"YulIdentifier","src":"10343:6:101"},"nativeSrc":"10343:15:101","nodeType":"YulFunctionCall","src":"10343:15:101"},"nativeSrc":"10343:15:101","nodeType":"YulExpressionStatement","src":"10343:15:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"10378:1:101","nodeType":"YulLiteral","src":"10378:1:101","type":"","value":"0"},{"kind":"number","nativeSrc":"10381:4:101","nodeType":"YulLiteral","src":"10381:4:101","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"10371:6:101","nodeType":"YulIdentifier","src":"10371:6:101"},"nativeSrc":"10371:15:101","nodeType":"YulFunctionCall","src":"10371:15:101"},"nativeSrc":"10371:15:101","nodeType":"YulExpressionStatement","src":"10371:15:101"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"10274:1:101","nodeType":"YulIdentifier","src":"10274:1:101"}],"functionName":{"name":"iszero","nativeSrc":"10267:6:101","nodeType":"YulIdentifier","src":"10267:6:101"},"nativeSrc":"10267:9:101","nodeType":"YulFunctionCall","src":"10267:9:101"},"nativeSrc":"10264:132:101","nodeType":"YulIf","src":"10264:132:101"},{"nativeSrc":"10405:14:101","nodeType":"YulAssignment","src":"10405:14:101","value":{"arguments":[{"name":"x","nativeSrc":"10414:1:101","nodeType":"YulIdentifier","src":"10414:1:101"},{"name":"y","nativeSrc":"10417:1:101","nodeType":"YulIdentifier","src":"10417:1:101"}],"functionName":{"name":"div","nativeSrc":"10410:3:101","nodeType":"YulIdentifier","src":"10410:3:101"},"nativeSrc":"10410:9:101","nodeType":"YulFunctionCall","src":"10410:9:101"},"variableNames":[{"name":"r","nativeSrc":"10405:1:101","nodeType":"YulIdentifier","src":"10405:1:101"}]}]},"name":"checked_div_t_uint256","nativeSrc":"10208:217:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"10239:1:101","nodeType":"YulTypedName","src":"10239:1:101","type":""},{"name":"y","nativeSrc":"10242:1:101","nodeType":"YulTypedName","src":"10242:1:101","type":""}],"returnVariables":[{"name":"r","nativeSrc":"10248:1:101","nodeType":"YulTypedName","src":"10248:1:101","type":""}],"src":"10208:217:101"},{"body":{"nativeSrc":"10478:128:101","nodeType":"YulBlock","src":"10478:128:101","statements":[{"nativeSrc":"10488:55:101","nodeType":"YulAssignment","src":"10488:55:101","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"10504:1:101","nodeType":"YulIdentifier","src":"10504:1:101"},{"kind":"number","nativeSrc":"10507:12:101","nodeType":"YulLiteral","src":"10507:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"10500:3:101","nodeType":"YulIdentifier","src":"10500:3:101"},"nativeSrc":"10500:20:101","nodeType":"YulFunctionCall","src":"10500:20:101"},{"arguments":[{"name":"y","nativeSrc":"10526:1:101","nodeType":"YulIdentifier","src":"10526:1:101"},{"kind":"number","nativeSrc":"10529:12:101","nodeType":"YulLiteral","src":"10529:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"10522:3:101","nodeType":"YulIdentifier","src":"10522:3:101"},"nativeSrc":"10522:20:101","nodeType":"YulFunctionCall","src":"10522:20:101"}],"functionName":{"name":"sub","nativeSrc":"10496:3:101","nodeType":"YulIdentifier","src":"10496:3:101"},"nativeSrc":"10496:47:101","nodeType":"YulFunctionCall","src":"10496:47:101"},"variableNames":[{"name":"diff","nativeSrc":"10488:4:101","nodeType":"YulIdentifier","src":"10488:4:101"}]},{"body":{"nativeSrc":"10578:22:101","nodeType":"YulBlock","src":"10578:22:101","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"10580:16:101","nodeType":"YulIdentifier","src":"10580:16:101"},"nativeSrc":"10580:18:101","nodeType":"YulFunctionCall","src":"10580:18:101"},"nativeSrc":"10580:18:101","nodeType":"YulExpressionStatement","src":"10580:18:101"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"10558:4:101","nodeType":"YulIdentifier","src":"10558:4:101"},{"kind":"number","nativeSrc":"10564:12:101","nodeType":"YulLiteral","src":"10564:12:101","type":"","value":"0xffffffffff"}],"functionName":{"name":"gt","nativeSrc":"10555:2:101","nodeType":"YulIdentifier","src":"10555:2:101"},"nativeSrc":"10555:22:101","nodeType":"YulFunctionCall","src":"10555:22:101"},"nativeSrc":"10552:48:101","nodeType":"YulIf","src":"10552:48:101"}]},"name":"checked_sub_t_uint40","nativeSrc":"10430:176:101","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"10460:1:101","nodeType":"YulTypedName","src":"10460:1:101","type":""},{"name":"y","nativeSrc":"10463:1:101","nodeType":"YulTypedName","src":"10463:1:101","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"10469:4:101","nodeType":"YulTypedName","src":"10469:4:101","type":""}],"src":"10430:176:101"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_addresst_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        value1 := add(_1, 32)\n        value2 := length\n    }\n    function abi_encode_uint40(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffff))\n    }\n    function abi_encode_struct_PolicyData(value, pos)\n    {\n        mstore(pos, mload(value))\n        mstore(add(pos, 0x20), mload(add(value, 0x20)))\n        mstore(add(pos, 0x40), mload(add(value, 0x40)))\n        mstore(add(pos, 0x60), mload(add(value, 0x60)))\n        mstore(add(pos, 0x80), mload(add(value, 0x80)))\n        mstore(add(pos, 0xa0), mload(add(value, 0xa0)))\n        mstore(add(pos, 0xc0), mload(add(value, 0xc0)))\n        mstore(add(pos, 0xe0), mload(add(value, 0xe0)))\n        mstore(add(pos, 0x0100), mload(add(value, 0x0100)))\n        mstore(add(pos, 0x0120), mload(add(value, 0x0120)))\n        let memberValue0 := mload(add(value, 0x0140))\n        abi_encode_uint40(memberValue0, add(pos, 0x0140))\n        let memberValue0_1 := mload(add(value, 0x0160))\n        abi_encode_uint40(memberValue0_1, add(pos, 0x0160))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 480)\n        abi_encode_struct_PolicyData(value0, headStart)\n        mstore(add(headStart, 384), value1)\n        mstore(add(headStart, 416), value2)\n        mstore(add(headStart, 448), value3)\n    }\n    function abi_encode_struct_Params(value, pos)\n    {\n        mstore(pos, mload(value))\n        mstore(add(pos, 0x20), mload(add(value, 0x20)))\n        mstore(add(pos, 0x40), mload(add(value, 0x40)))\n        mstore(add(pos, 0x60), mload(add(value, 0x60)))\n        mstore(add(pos, 0x80), mload(add(value, 0x80)))\n        mstore(add(pos, 0xa0), mload(add(value, 0xa0)))\n        mstore(add(pos, 0xc0), mload(add(value, 0xc0)))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__to_t_struct$_PolicyData_$22256_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__fromStack_reversed(headStart, value6, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 768)\n        abi_encode_struct_PolicyData(value0, headStart)\n        mstore(add(headStart, 384), value1)\n        mstore(add(headStart, 416), value2)\n        mstore(add(headStart, 448), value3)\n        mstore(add(headStart, 480), and(value4, 0xffffffffff))\n        mstore(add(headStart, 512), and(value5, 0xffffffffffffffffffffffff))\n        abi_encode_struct_Params(value6, add(headStart, 544))\n    }\n    function abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__to_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$22230_memory_ptr__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 384)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), and(value3, 0xffffffffff))\n        mstore(add(headStart, 128), and(value4, 0xffffffffffffffffffffffff))\n        abi_encode_struct_Params(value5, add(headStart, 160))\n    }\n    function allocate_memory() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0180)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_uint40(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_struct_PolicyData(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0x0180) { revert(0, 0) }\n        value := allocate_memory()\n        let value_1 := 0\n        value_1 := calldataload(headStart)\n        mstore(value, value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 32))\n        mstore(add(value, 32), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 64))\n        mstore(add(value, 64), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 96))\n        mstore(add(value, 96), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(add(value, 128), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 160))\n        mstore(add(value, 160), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(value, 192), value_7)\n        let value_8 := 0\n        value_8 := calldataload(add(headStart, 224))\n        mstore(add(value, 224), value_8)\n        let value_9 := 0\n        value_9 := calldataload(add(headStart, 256))\n        mstore(add(value, 256), value_9)\n        let value_10 := 0\n        value_10 := calldataload(add(headStart, 288))\n        mstore(add(value, 288), value_10)\n        mstore(add(value, 320), abi_decode_uint40(add(headStart, 320)))\n        mstore(add(value, 352), abi_decode_uint40(add(headStart, 352)))\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 480) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData(headStart, dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 416))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 448))\n        value3 := value_2\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function abi_decode_uint96(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_struct_Params(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0xe0) { revert(0, 0) }\n        let memPtr := 0\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xe0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n        value := memPtr\n        let value_1 := 0\n        value_1 := calldataload(headStart)\n        mstore(memPtr, value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 32))\n        mstore(add(memPtr, 32), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 64))\n        mstore(add(memPtr, 64), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 96))\n        mstore(add(memPtr, 96), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(add(memPtr, 128), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 160))\n        mstore(add(memPtr, 160), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(memPtr, 192), value_7)\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$22256_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$22230_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 768) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData(headStart, dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 416))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 448))\n        value3 := value_2\n        value4 := abi_decode_uint40(add(headStart, 480))\n        value5 := abi_decode_uint96(add(headStart, 512))\n        value6 := abi_decode_struct_Params(add(headStart, 544), dataEnd)\n    }\n    function abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$22230_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 384) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        value3 := abi_decode_uint40(add(headStart, 96))\n        value4 := abi_decode_uint96(add(headStart, 128))\n        value5 := abi_decode_struct_Params(add(headStart, 160), dataEnd)\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        product := mul(x, y)\n        if iszero(or(iszero(x), eq(y, div(product, x)))) { panic_error_0x11() }\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function checked_sub_t_uint40(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffffff), and(y, 0xffffffffff))\n        if gt(diff, 0xffffffffff) { panic_error_0x11() }\n    }\n}","id":101,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b506004361061003f575f3560e01c806332f857fa146100435780639ba942d61461006f578063ba097a2a14610095575b5f5ffd5b6100566100513660046102f5565b6100ba565b604051610066949392919061041c565b60405180910390f35b61008261007d3660046102f5565b61012c565b604051610066979695949392919061048d565b6100a86100a33660046102f5565b610199565b604051610066969594939291906104e9565b6100c2610292565b5f80806100d185870187610629565b92965090945092509050600182016100ff576100ec846101f9565b8461010001516100fc9190610678565b91505b5f1981036101235761011084610242565b8461012001516101209190610678565b90505b93509350935093565b610134610292565b5f5f5f5f5f6101726040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b61017e888a018a61072c565b96509650965096509650965096509397509397509397909450565b5f5f5f5f5f6101d76040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b6101e3878901896107a1565b949e939d50919b50995097509095509350505050565b5f6102038261027b565b64ffffffffff1682610140015164ffffffffff16426102229190610678565b83610100015161023291906107fe565b61023c9190610815565b92915050565b5f61024c8261027b565b64ffffffffff1682610140015164ffffffffff164261026b9190610678565b83610120015161023291906107fe565b5f81610140015182610160015161023c9190610834565b6040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b5f5f5f60408486031215610307575f5ffd5b83356001600160a01b038116811461031d575f5ffd5b9250602084013567ffffffffffffffff811115610338575f5ffd5b8401601f81018613610348575f5ffd5b803567ffffffffffffffff81111561035e575f5ffd5b86602082840101111561036f575f5ffd5b939660209190910195509293505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e08301526101008101516101008301526101208101516101208301526101408101516103fc61014084018264ffffffffff169052565b5061016081015161041761016084018264ffffffffff169052565b505050565b6101e0810161042b8287610380565b84610180830152836101a0830152826101c083015295945050505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c08301525050565b610300810161049c828a610380565b87610180830152866101a0830152856101c083015264ffffffffff85166101e08301526001600160601b0384166102008301526104dd610220830184610449565b98975050505050505050565b868152602081018690526040810185905264ffffffffff841660608201526001600160601b0383166080820152610180810161052860a0830184610449565b979650505050505050565b604051610180810167ffffffffffffffff8111828210171561056357634e487b7160e01b5f52604160045260245ffd5b60405290565b803564ffffffffff8116811461057d575f5ffd5b919050565b5f6101808284031215610593575f5ffd5b61059b610533565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e0808401359082015261010080840135908201526101208084013590820152905061060a6101408301610569565b61014082015261061d6101608301610569565b61016082015292915050565b5f5f5f5f6101e0858703121561063d575f5ffd5b6106478686610582565b9661018086013596506101a0860135956101c00135945092505050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561023c5761023c610664565b80356001600160601b038116811461057d575f5ffd5b5f60e082840312156106b1575f5ffd5b60405160e0810167ffffffffffffffff811182821017156106e057634e487b7160e01b5f52604160045260245ffd5b604090815283358252602080850135908301528381013590820152606080840135908201526080808401359082015260a0808401359082015260c0928301359281019290925250919050565b5f5f5f5f5f5f5f610300888a031215610743575f5ffd5b61074d8989610582565b965061018088013595506101a088013594506101c088013593506107746101e08901610569565b9250610783610200890161068b565b9150610793896102208a016106a1565b905092959891949750929550565b5f5f5f5f5f5f61018087890312156107b7575f5ffd5b8635955060208701359450604087013593506107d560608801610569565b92506107e36080880161068b565b91506107f28860a089016106a1565b90509295509295509295565b808202811582820484141761023c5761023c610664565b5f8261082f57634e487b7160e01b5f52601260045260245ffd5b500490565b64ffffffffff828116828216039081111561023c5761023c61066456fea26469706673582212209199050338b0f1e1dac7fa841ef3095bbd5b6aeaaab9f4f7de04f7a1cfb5d92064736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x3F JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x32F857FA EQ PUSH2 0x43 JUMPI DUP1 PUSH4 0x9BA942D6 EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0xBA097A2A EQ PUSH2 0x95 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x56 PUSH2 0x51 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F5 JUMP JUMPDEST PUSH2 0xBA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x41C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x82 PUSH2 0x7D CALLDATASIZE PUSH1 0x4 PUSH2 0x2F5 JUMP JUMPDEST PUSH2 0x12C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x48D JUMP JUMPDEST PUSH2 0xA8 PUSH2 0xA3 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F5 JUMP JUMPDEST PUSH2 0x199 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4E9 JUMP JUMPDEST PUSH2 0xC2 PUSH2 0x292 JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0xD1 DUP6 DUP8 ADD DUP8 PUSH2 0x629 JUMP JUMPDEST SWAP3 SWAP7 POP SWAP1 SWAP5 POP SWAP3 POP SWAP1 POP PUSH1 0x1 DUP3 ADD PUSH2 0xFF JUMPI PUSH2 0xEC DUP5 PUSH2 0x1F9 JUMP JUMPDEST DUP5 PUSH2 0x100 ADD MLOAD PUSH2 0xFC SWAP2 SWAP1 PUSH2 0x678 JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x123 JUMPI PUSH2 0x110 DUP5 PUSH2 0x242 JUMP JUMPDEST DUP5 PUSH2 0x120 ADD MLOAD PUSH2 0x120 SWAP2 SWAP1 PUSH2 0x678 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 POP SWAP4 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x292 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x172 PUSH1 0x40 MLOAD DUP1 PUSH1 0xE0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0x17E DUP9 DUP11 ADD DUP11 PUSH2 0x72C JUMP JUMPDEST SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP4 SWAP8 POP SWAP4 SWAP8 POP SWAP4 SWAP8 SWAP1 SWAP5 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1D7 PUSH1 0x40 MLOAD DUP1 PUSH1 0xE0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0x1E3 DUP8 DUP10 ADD DUP10 PUSH2 0x7A1 JUMP JUMPDEST SWAP5 SWAP15 SWAP4 SWAP14 POP SWAP2 SWAP12 POP SWAP10 POP SWAP8 POP SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x203 DUP3 PUSH2 0x27B JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x222 SWAP2 SWAP1 PUSH2 0x678 JUMP JUMPDEST DUP4 PUSH2 0x100 ADD MLOAD PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x7FE JUMP JUMPDEST PUSH2 0x23C SWAP2 SWAP1 PUSH2 0x815 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x24C DUP3 PUSH2 0x27B JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x26B SWAP2 SWAP1 PUSH2 0x678 JUMP JUMPDEST DUP4 PUSH2 0x120 ADD MLOAD PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x7FE JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x140 ADD MLOAD DUP3 PUSH2 0x160 ADD MLOAD PUSH2 0x23C SWAP2 SWAP1 PUSH2 0x834 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x307 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x31D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x338 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x348 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x35E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x36F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 POP SWAP3 SWAP4 POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0x3FC PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP2 ADD MLOAD PUSH2 0x417 PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0x42B DUP3 DUP8 PUSH2 0x380 JUMP JUMPDEST DUP5 PUSH2 0x180 DUP4 ADD MSTORE DUP4 PUSH2 0x1A0 DUP4 ADD MSTORE DUP3 PUSH2 0x1C0 DUP4 ADD MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0x49C DUP3 DUP11 PUSH2 0x380 JUMP JUMPDEST DUP8 PUSH2 0x180 DUP4 ADD MSTORE DUP7 PUSH2 0x1A0 DUP4 ADD MSTORE DUP6 PUSH2 0x1C0 DUP4 ADD MSTORE PUSH5 0xFFFFFFFFFF DUP6 AND PUSH2 0x1E0 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP5 AND PUSH2 0x200 DUP4 ADD MSTORE PUSH2 0x4DD PUSH2 0x220 DUP4 ADD DUP5 PUSH2 0x449 JUMP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x40 DUP2 ADD DUP6 SWAP1 MSTORE PUSH5 0xFFFFFFFFFF DUP5 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP4 AND PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x180 DUP2 ADD PUSH2 0x528 PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0x449 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x563 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x57D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x593 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x59B PUSH2 0x533 JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0x60A PUSH2 0x140 DUP4 ADD PUSH2 0x569 JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x61D PUSH2 0x160 DUP4 ADD PUSH2 0x569 JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x63D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x647 DUP7 DUP7 PUSH2 0x582 JUMP JUMPDEST SWAP7 PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP7 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP6 PUSH2 0x1C0 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x23C JUMPI PUSH2 0x23C PUSH2 0x664 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x57D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xE0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x6E0 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 SWAP1 DUP2 MSTORE DUP4 CALLDATALOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP6 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE DUP4 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 SWAP3 DUP4 ADD CALLDATALOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x300 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x743 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x74D DUP10 DUP10 PUSH2 0x582 JUMP JUMPDEST SWAP7 POP PUSH2 0x180 DUP9 ADD CALLDATALOAD SWAP6 POP PUSH2 0x1A0 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH2 0x1C0 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0x774 PUSH2 0x1E0 DUP10 ADD PUSH2 0x569 JUMP JUMPDEST SWAP3 POP PUSH2 0x783 PUSH2 0x200 DUP10 ADD PUSH2 0x68B JUMP JUMPDEST SWAP2 POP PUSH2 0x793 DUP10 PUSH2 0x220 DUP11 ADD PUSH2 0x6A1 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x180 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x7B7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x7D5 PUSH1 0x60 DUP9 ADD PUSH2 0x569 JUMP JUMPDEST SWAP3 POP PUSH2 0x7E3 PUSH1 0x80 DUP9 ADD PUSH2 0x68B JUMP JUMPDEST SWAP2 POP PUSH2 0x7F2 DUP9 PUSH1 0xA0 DUP10 ADD PUSH2 0x6A1 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x23C JUMPI PUSH2 0x23C PUSH2 0x664 JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x82F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x23C JUMPI PUSH2 0x23C PUSH2 0x664 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP2 SWAP10 SDIV SUB CODESIZE 0xB0 CALL RJUMPI 0xDAC7 STATICCALL DUP5 0x1E RETURN MULMOD JUMPDEST 0xBD JUMPDEST PUSH11 0xEAAAB9F4F7DE04F7A1CFB5 0xD9 KECCAK256 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"382:1703:100:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1412:671;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;919:458;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;:::i;495:389::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;:::i;1412:671::-;1556:39;;:::i;:::-;1603:25;;;1761:87;;;;1779:9;1761:87;:::i;:::-;1697:151;;-1:-1:-1;1697:151:100;;-1:-1:-1;1697:151:100;-1:-1:-1;1697:151:100;-1:-1:-1;1858:32:100;;;1854:109;;1929:34;:14;:32;:34::i;:::-;1906:14;:20;;;:57;;;;:::i;:::-;1892:71;;1854:109;-1:-1:-1;;1973:11:100;:32;1969:109;;2044:34;:14;:32;:34::i;:::-;2021:14;:20;;;:57;;;;:::i;:::-;2007:71;;1969:109;1412:671;;;;;;;:::o;919:458::-;1062:34;;:::i;:::-;1104:14;1126:15;1149:16;1173:17;1198;1223:27;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1223:27:100;1272:100;;;;1283:9;1272:100;:::i;:::-;1265:107;;;;;;;;;;;;;;919:458;;;;;;;;;;;:::o;495:389::-;630:14;652:15;675:16;699:17;724;749:27;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;749:27:100;798:81;;;;809:9;798:81;:::i;:::-;791:88;;;;-1:-1:-1;791:88:100;;-1:-1:-1;791:88:100;-1:-1:-1;791:88:100;-1:-1:-1;791:88:100;;-1:-1:-1;495:389:100;-1:-1:-1;;;;495:389:100:o;9199:171:71:-;9275:7;9349:16;9358:6;9349:8;:16::i;:::-;9297:68;;9332:6;:12;;;9314:30;;:15;:30;;;;:::i;:::-;9298:6;:12;;;:47;;;;:::i;:::-;9297:68;;;;:::i;:::-;9290:75;9199:171;-1:-1:-1;;9199:171:71:o;10226:::-;10302:7;10376:16;10385:6;10376:8;:16::i;:::-;10324:68;;10359:6;:12;;;10341:30;;:15;:30;;;;:::i;:::-;10325:6;:12;;;:47;;;;:::i;10461:125::-;10528:6;10569;:12;;;10549:6;:17;;;:32;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:760:101:-;93:6;101;109;162:2;150:9;141:7;137:23;133:32;130:52;;;178:1;175;168:12;130:52;204:23;;-1:-1:-1;;;;;256:31:101;;246:42;;236:70;;302:1;299;292:12;236:70;325:5;-1:-1:-1;381:2:101;366:18;;353:32;408:18;397:30;;394:50;;;440:1;437;430:12;394:50;463:22;;516:4;508:13;;504:27;-1:-1:-1;494:55:101;;545:1;542;535:12;494:55;585:2;572:16;611:18;603:6;600:30;597:50;;;643:1;640;633:12;597:50;688:7;683:2;674:6;670:2;666:15;662:24;659:37;656:57;;;709:1;706;699:12;656:57;14:760;;740:2;732:11;;;;;-1:-1:-1;762:6:101;;-1:-1:-1;;;14:760:101:o;880:835::-;962:5;956:12;951:3;944:25;1018:4;1011:5;1007:16;1001:23;994:4;989:3;985:14;978:47;1074:4;1067:5;1063:16;1057:23;1050:4;1045:3;1041:14;1034:47;1130:4;1123:5;1119:16;1113:23;1106:4;1101:3;1097:14;1090:47;1186:4;1179:5;1175:16;1169:23;1162:4;1157:3;1153:14;1146:47;1242:4;1235:5;1231:16;1225:23;1218:4;1213:3;1209:14;1202:47;1298:4;1291:5;1287:16;1281:23;1274:4;1269:3;1265:14;1258:47;1354:4;1347:5;1343:16;1337:23;1330:4;1325:3;1321:14;1314:47;1412:6;1405:5;1401:18;1395:25;1386:6;1381:3;1377:16;1370:51;1472:6;1465:5;1461:18;1455:25;1446:6;1441:3;1437:16;1430:51;1527:6;1520:5;1516:18;1510:25;1544:49;1585:6;1580:3;1576:16;1562:12;855;844:24;832:37;;779:96;1544:49;;1641:6;1634:5;1630:18;1624:25;1658:51;1701:6;1696:3;1692:16;1676:14;855:12;844:24;832:37;;779:96;1658:51;;880:835;;:::o;1720:474::-;1996:3;1981:19;;2009:47;1985:9;2038:6;2009:47;:::i;:::-;2093:6;2087:3;2076:9;2072:19;2065:35;2137:6;2131:3;2120:9;2116:19;2109:35;2181:6;2175:3;2164:9;2160:19;2153:35;1720:474;;;;;;;:::o;2199:427::-;2277:5;2271:12;2266:3;2259:25;2333:4;2326:5;2322:16;2316:23;2309:4;2304:3;2300:14;2293:47;2389:4;2382:5;2378:16;2372:23;2365:4;2360:3;2356:14;2349:47;2445:4;2438:5;2434:16;2428:23;2421:4;2416:3;2412:14;2405:47;2501:4;2494:5;2490:16;2484:23;2477:4;2472:3;2468:14;2461:47;2557:4;2550:5;2546:16;2540:23;2533:4;2528:3;2524:14;2517:47;2613:4;2606:5;2602:16;2596:23;2589:4;2584:3;2580:14;2573:47;;;2199:427::o;2631:806::-;3037:3;3022:19;;3050:47;3026:9;3079:6;3050:47;:::i;:::-;3134:6;3128:3;3117:9;3113:19;3106:35;3178:6;3172:3;3161:9;3157:19;3150:35;3222:6;3216:3;3205:9;3201:19;3194:35;3278:12;3270:6;3266:25;3260:3;3249:9;3245:19;3238:54;-1:-1:-1;;;;;3333:6:101;3329:39;3323:3;3312:9;3308:19;3301:68;3378:53;3426:3;3415:9;3411:19;3403:6;3378:53;:::i;:::-;2631:806;;;;;;;;;;:::o;3442:651::-;3775:25;;;3831:2;3816:18;;3809:34;;;3874:2;3859:18;;3852:34;;;3934:12;3922:25;;3917:2;3902:18;;3895:53;-1:-1:-1;;;;;3985:39:101;;3979:3;3964:19;;3957:68;3762:3;3747:19;;4034:53;4082:3;4067:19;;4059:6;4034:53;:::i;:::-;3442:651;;;;;;;;;:::o;4098:347::-;4165:2;4159:9;4207:6;4195:19;;4244:18;4229:34;;4265:22;;;4226:62;4223:185;;;4330:10;4325:3;4321:20;4318:1;4311:31;4365:4;4362:1;4355:15;4393:4;4390:1;4383:15;4223:185;4424:2;4417:22;4098:347;:::o;4450:165::-;4517:20;;4577:12;4566:24;;4556:35;;4546:63;;4605:1;4602;4595:12;4546:63;4450:165;;;:::o;4620:1481::-;4677:5;4725:6;4713:9;4708:3;4704:19;4700:32;4697:52;;;4745:1;4742;4735:12;4697:52;4767:17;;:::i;:::-;4829:23;;4861:22;;4956:2;4941:18;;;4928:32;4976:14;;;4969:31;5073:2;5058:18;;;5045:32;5093:14;;;5086:31;5190:2;5175:18;;;5162:32;5210:14;;;5203:31;5307:3;5292:19;;;5279:33;5328:15;;;5321:32;5426:3;5411:19;;;5398:33;5447:15;;;5440:32;5545:3;5530:19;;;5517:33;5566:15;;;5559:32;5664:3;5649:19;;;5636:33;5685:15;;;5678:32;5783:3;5768:19;;;5755:33;5804:15;;;5797:32;5904:3;5889:19;;;5876:33;5925:15;;;5918:33;4758:26;-1:-1:-1;5984:38:101;6017:3;6002:19;;5984:38;:::i;:::-;5978:3;5971:5;5967:15;5960:63;6056:38;6089:3;6078:9;6074:19;6056:38;:::i;:::-;6050:3;6043:5;6039:15;6032:63;4620:1481;;;;:::o;6106:592::-;6221:6;6229;6237;6245;6298:3;6286:9;6277:7;6273:23;6269:33;6266:53;;;6315:1;6312;6305:12;6266:53;6338:48;6378:7;6367:9;6338:48;:::i;:::-;6328:58;6455:3;6440:19;;6427:33;;-1:-1:-1;6557:3:101;6542:19;;6529:33;;6661:3;6646:19;6633:33;;-1:-1:-1;6106:592:101;-1:-1:-1;;;6106:592:101:o;6703:127::-;6764:10;6759:3;6755:20;6752:1;6745:31;6795:4;6792:1;6785:15;6819:4;6816:1;6809:15;6835:128;6902:9;;;6923:11;;;6920:37;;;6937:18;;:::i;6968:179::-;7035:20;;-1:-1:-1;;;;;7084:38:101;;7074:49;;7064:77;;7137:1;7134;7127:12;7152:1288;7205:5;7253:4;7241:9;7236:3;7232:19;7228:30;7225:50;;;7271:1;7268;7261:12;7225:50;7324:2;7318:9;7366:4;7354:17;;7401:18;7386:34;;7422:22;;;7383:62;7380:185;;;7487:10;7482:3;7478:20;7475:1;7468:31;7522:4;7519:1;7512:15;7550:4;7547:1;7540:15;7380:185;7581:2;7574:22;;;7665:23;;7697;;7793:2;7778:18;;;7765:32;7813:15;;;7806:32;7896:18;;;7883:32;7931:15;;;7924:32;8029:2;8014:18;;;8001:32;8049:15;;;8042:32;8147:3;8132:19;;;8119:33;8168:16;;;8161:33;8267:3;8252:19;;;8239:33;8288:16;;;8281:33;8387:3;8372:19;;;8359:33;8408:16;;;8401:33;;;;-1:-1:-1;7614:6:101;7152:1288;-1:-1:-1;7152:1288:101:o;8445:853::-;8610:6;8618;8626;8634;8642;8650;8658;8711:3;8699:9;8690:7;8686:23;8682:33;8679:53;;;8728:1;8725;8718:12;8679:53;8751:48;8791:7;8780:9;8751:48;:::i;:::-;8741:58;-1:-1:-1;8868:3:101;8853:19;;8840:33;;-1:-1:-1;8970:3:101;8955:19;;8942:33;;-1:-1:-1;9074:3:101;9059:19;;9046:33;;-1:-1:-1;9124:38:101;9157:3;9142:19;;9124:38;:::i;:::-;9114:48;;9181:38;9214:3;9203:9;9199:19;9181:38;:::i;:::-;9171:48;;9238:54;9284:7;9278:3;9267:9;9263:19;9238:54;:::i;:::-;9228:64;;8445:853;;;;;;;;;;:::o;9303:727::-;9430:6;9438;9446;9454;9462;9470;9523:3;9511:9;9502:7;9498:23;9494:33;9491:53;;;9540:1;9537;9530:12;9491:53;9585:23;;;-1:-1:-1;9705:2:101;9690:18;;9677:32;;-1:-1:-1;9808:2:101;9793:18;;9780:32;;-1:-1:-1;9857:37:101;9890:2;9875:18;;9857:37;:::i;:::-;9847:47;;9913:38;9946:3;9935:9;9931:19;9913:38;:::i;:::-;9903:48;;9970:54;10016:7;10010:3;9999:9;9995:19;9970:54;:::i;:::-;9960:64;;9303:727;;;;;;;;:::o;10035:168::-;10108:9;;;10139;;10156:15;;;10150:22;;10136:37;10126:71;;10177:18;;:::i;10208:217::-;10248:1;10274;10264:132;;10318:10;10313:3;10309:20;10306:1;10299:31;10353:4;10350:1;10343:15;10381:4;10378:1;10371:15;10264:132;-1:-1:-1;10410:9:101;;10208:217::o;10430:176::-;10529:12;10522:20;;;10500;;;10496:47;;10555:22;;10552:48;;;10580:18;;:::i"},"methodIdentifiers":{"priceNewPolicy(address,bytes)":"ba097a2a","pricePolicyCancellation(address,bytes)":"32f857fa","pricePolicyReplacement(address,bytes)":"9ba942d6"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"priceNewPolicy\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"moc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCollRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"collRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroPpFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCocFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrRoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srRoc\",\"type\":\"uint256\"}],\"internalType\":\"struct Policy.Params\",\"name\":\"params\",\"type\":\"tuple\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"pricePolicyCancellation\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policyToCancel\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"pricePolicyReplacement\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"oldPolicy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"moc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCollRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"collRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroPpFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCocFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrRoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srRoc\",\"type\":\"uint256\"}],\"internalType\":\"struct Policy.Params\",\"name\":\"params\",\"type\":\"tuple\"}],\"stateMutability\":\"pure\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"kind\":\"dev\",\"methods\":{\"priceNewPolicy(address,bytes)\":{\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"expiration\":\" Policy expiration timestamp (seconds since epoch).\",\"internalId\":\" Unique id within `rm` used to derive the policy id.\",\"lossProb\":\"   Loss probability used for pricing/risk calculations.\",\"params\":\"     Additional policy parameters used by {Policy-initialize}.\",\"payout\":\"     The policy payout.\",\"premium\":\"    The total premium for the policy.\"}},\"pricePolicyCancellation(address,bytes)\":{\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"jrCocRefund\":\"      Amount to refund from junior CoC (or a sentinel value, if supported).\",\"policyToCancel\":\"   The policy to cancel (as {Policy-PolicyData}).\",\"purePremiumRefund\":\"Amount to refund from pure premium.\",\"srCocRefund\":\"      Amount to refund from senior CoC (or a sentinel value, if supported).\"}},\"pricePolicyReplacement(address,bytes)\":{\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"expiration\":\" Replacement policy expiration timestamp.\",\"internalId\":\" Unique id within `rm` for the replacement policy.\",\"lossProb\":\"   Loss probability used for pricing/risk calculations.\",\"oldPolicy\":\"  The policy being replaced (as {Policy-PolicyData}).\",\"params\":\"     Additional policy parameters used by {Policy-initialize}.\",\"payout\":\"     The replacement policy payout.\",\"premium\":\"    The replacement policy premium.\"}}},\"title\":\"FullTrustedUW\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"priceNewPolicy(address,bytes)\":{\"notice\":\"Prices a new policy request for RiskModule `rm`.\"},\"pricePolicyCancellation(address,bytes)\":{\"notice\":\"Prices a policy cancellation request for RiskModule `rm`.\"},\"pricePolicyReplacement(address,bytes)\":{\"notice\":\"Prices a policy replacement request for RiskModule `rm`.\"}},\"notice\":\"Underwriter that just decodes what it receives. The access validations should be done on risk module methods.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/underwriters/FullTrustedUW.sol\":\"FullTrustedUW\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"contracts/interfaces/IUnderwriter.sol\":{\"keccak256\":\"0x2d2ed693a29e809ddc60c4669a6ea5bf8a74497593e8e099ea76c27505472acb\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4534e64481c50a88d782c615dce9ac3bda35509e0252ca306456665e57f26527\",\"dweb:/ipfs/QmdNGFXjRm2t8cZe5zi9C6YNh9BMHDnk4dfWNfHxmHgqwJ\"]},\"contracts/underwriters/FullTrustedUW.sol\":{\"keccak256\":\"0xc9a41ee68004887de4fc7206e022868591414d003b391cb41e2fd280f35c9f4e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://46f845aae1e50c2d4eba9d2a114a0044b35e2d4f94d7ec1649c95ae1beb85565\",\"dweb:/ipfs/QmeANJLmWUt6GXRA5xbADFVWoeU7zVfE4opaWtyQ4mVGcX\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}}}}}